2016-06-02 22:52:23 +02:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
; Copyright(c) 2011-2016 Intel Corporation All rights reserved.
|
|
|
|
;
|
|
|
|
; Redistribution and use in source and binary forms, with or without
|
|
|
|
; modification, are permitted provided that the following conditions
|
|
|
|
; are met:
|
|
|
|
; * Redistributions of source code must retain the above copyright
|
|
|
|
; notice, this list of conditions and the following disclaimer.
|
|
|
|
; * Redistributions in binary form must reproduce the above copyright
|
|
|
|
; notice, this list of conditions and the following disclaimer in
|
|
|
|
; the documentation and/or other materials provided with the
|
|
|
|
; distribution.
|
|
|
|
; * Neither the name of Intel Corporation nor the names of its
|
|
|
|
; contributors may be used to endorse or promote products derived
|
|
|
|
; from this software without specific prior written permission.
|
|
|
|
;
|
|
|
|
; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
; "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
; LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
; A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
; OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
; SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
; LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
; DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
; THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
; OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
default rel
|
|
|
|
[bits 64]
|
|
|
|
|
|
|
|
%include "reg_sizes.asm"
|
|
|
|
|
|
|
|
extern isal_deflate_body_base
|
|
|
|
extern isal_deflate_body_01
|
2016-06-21 19:53:44 +02:00
|
|
|
extern isal_deflate_body_02
|
2016-06-02 22:52:23 +02:00
|
|
|
extern isal_deflate_body_04
|
|
|
|
extern isal_deflate_finish_base
|
|
|
|
extern isal_deflate_finish_01
|
|
|
|
|
2017-12-05 15:43:04 +01:00
|
|
|
extern isal_deflate_icf_body_hash_hist_base
|
|
|
|
extern isal_deflate_icf_body_hash_hist_01
|
|
|
|
extern isal_deflate_icf_body_hash_hist_02
|
|
|
|
extern isal_deflate_icf_body_hash_hist_04
|
|
|
|
extern isal_deflate_icf_finish_hash_hist_base
|
|
|
|
extern isal_deflate_icf_finish_hash_hist_01
|
|
|
|
|
2017-11-30 21:07:22 +01:00
|
|
|
extern isal_deflate_icf_finish_hash_map_base
|
2016-10-03 23:50:52 +02:00
|
|
|
|
2016-06-06 18:23:26 +02:00
|
|
|
extern isal_update_histogram_base
|
|
|
|
extern isal_update_histogram_01
|
|
|
|
extern isal_update_histogram_04
|
|
|
|
|
2017-06-10 02:03:41 +02:00
|
|
|
extern gen_icf_map_h1_base
|
2018-01-04 21:22:37 +01:00
|
|
|
extern gen_icf_map_lh1_04
|
2017-06-10 02:03:41 +02:00
|
|
|
|
2016-10-03 23:50:52 +02:00
|
|
|
extern encode_deflate_icf_base
|
|
|
|
extern encode_deflate_icf_04
|
|
|
|
|
2017-06-10 02:03:41 +02:00
|
|
|
extern set_long_icf_fg_base
|
2018-01-26 17:30:24 +01:00
|
|
|
extern set_long_icf_fg_04
|
2017-06-10 02:03:41 +02:00
|
|
|
|
2017-04-11 00:05:30 +02:00
|
|
|
%ifdef HAVE_AS_KNOWS_AVX512
|
|
|
|
extern encode_deflate_icf_06
|
2017-06-10 02:03:41 +02:00
|
|
|
extern set_long_icf_fg_06
|
|
|
|
extern gen_icf_map_lh1_06
|
2017-04-11 00:05:30 +02:00
|
|
|
%endif
|
|
|
|
|
2017-05-01 21:44:30 +02:00
|
|
|
extern adler32_base
|
2017-05-06 03:17:15 +02:00
|
|
|
extern adler32_avx2_4
|
2017-05-25 22:51:25 +02:00
|
|
|
extern adler32_sse
|
2017-05-01 21:44:30 +02:00
|
|
|
|
2017-11-17 18:22:18 +01:00
|
|
|
extern isal_deflate_hash_base
|
|
|
|
extern isal_deflate_hash_crc_01
|
2017-06-07 22:40:34 +02:00
|
|
|
|
2017-11-17 18:22:18 +01:00
|
|
|
extern isal_deflate_hash_mad_base
|
2017-06-10 02:03:41 +02:00
|
|
|
|
2018-02-08 22:59:36 +01:00
|
|
|
extern icf_body_hash1_fillgreedy_lazy
|
|
|
|
extern icf_body_lazyhash1_fillgreedy_greedy
|
2017-06-10 02:03:41 +02:00
|
|
|
|
2016-06-02 22:52:23 +02:00
|
|
|
section .text
|
|
|
|
|
|
|
|
%include "multibinary.asm"
|
|
|
|
|
|
|
|
mbin_interface isal_deflate_body
|
2016-06-21 19:53:44 +02:00
|
|
|
mbin_dispatch_init5 isal_deflate_body, isal_deflate_body_base, isal_deflate_body_01, isal_deflate_body_02, isal_deflate_body_04
|
2016-06-02 22:52:23 +02:00
|
|
|
mbin_interface isal_deflate_finish
|
|
|
|
mbin_dispatch_init5 isal_deflate_finish, isal_deflate_finish_base, isal_deflate_finish_01, isal_deflate_finish_01, isal_deflate_finish_01
|
|
|
|
|
2017-06-10 02:03:41 +02:00
|
|
|
mbin_interface isal_deflate_icf_body_lvl1
|
2018-06-07 01:33:19 +02:00
|
|
|
mbin_dispatch_init5 isal_deflate_icf_body_lvl1, isal_deflate_icf_body_hash_hist_base, isal_deflate_icf_body_hash_hist_01, isal_deflate_icf_body_hash_hist_02, isal_deflate_icf_body_hash_hist_04
|
2017-06-10 02:03:41 +02:00
|
|
|
|
2017-12-05 15:43:04 +01:00
|
|
|
mbin_interface isal_deflate_icf_body_lvl2
|
|
|
|
mbin_dispatch_init5 isal_deflate_icf_body_lvl2, isal_deflate_icf_body_hash_hist_base, isal_deflate_icf_body_hash_hist_01, isal_deflate_icf_body_hash_hist_02, isal_deflate_icf_body_hash_hist_04
|
|
|
|
|
2018-02-08 22:59:36 +01:00
|
|
|
mbin_interface isal_deflate_icf_body_lvl3
|
|
|
|
mbin_dispatch_init5 isal_deflate_icf_body_lvl3, icf_body_hash1_fillgreedy_lazy, icf_body_hash1_fillgreedy_lazy, icf_body_hash1_fillgreedy_lazy, icf_body_lazyhash1_fillgreedy_greedy
|
|
|
|
|
2017-06-10 02:03:41 +02:00
|
|
|
mbin_interface isal_deflate_icf_finish_lvl1
|
2018-06-07 01:33:19 +02:00
|
|
|
mbin_dispatch_init5 isal_deflate_icf_finish_lvl1, isal_deflate_icf_finish_hash_hist_base, isal_deflate_icf_finish_hash_hist_01, isal_deflate_icf_finish_hash_hist_01, isal_deflate_icf_finish_hash_hist_01
|
2017-06-10 02:03:41 +02:00
|
|
|
|
|
|
|
mbin_interface isal_deflate_icf_finish_lvl2
|
2017-12-05 15:43:04 +01:00
|
|
|
mbin_dispatch_init5 isal_deflate_icf_finish_lvl2, isal_deflate_icf_finish_hash_hist_base, isal_deflate_icf_finish_hash_hist_01, isal_deflate_icf_finish_hash_hist_01, isal_deflate_icf_finish_hash_hist_01
|
|
|
|
|
|
|
|
mbin_interface isal_deflate_icf_finish_lvl3
|
|
|
|
mbin_dispatch_init5 isal_deflate_icf_finish_lvl3, isal_deflate_icf_finish_hash_map_base, isal_deflate_icf_finish_hash_map_base, isal_deflate_icf_finish_hash_map_base, isal_deflate_icf_finish_hash_map_base
|
2016-10-03 23:50:52 +02:00
|
|
|
|
2016-06-06 18:23:26 +02:00
|
|
|
mbin_interface isal_update_histogram
|
|
|
|
mbin_dispatch_init5 isal_update_histogram, isal_update_histogram_base, isal_update_histogram_01, isal_update_histogram_01, isal_update_histogram_04
|
2016-09-12 22:15:32 +02:00
|
|
|
|
2017-04-11 00:05:30 +02:00
|
|
|
mbin_interface encode_deflate_icf
|
|
|
|
mbin_dispatch_init6 encode_deflate_icf, encode_deflate_icf_base, encode_deflate_icf_base, encode_deflate_icf_base, encode_deflate_icf_04, encode_deflate_icf_06
|
2017-06-10 02:03:41 +02:00
|
|
|
|
|
|
|
mbin_interface set_long_icf_fg
|
2018-01-26 17:30:24 +01:00
|
|
|
mbin_dispatch_init6 set_long_icf_fg, set_long_icf_fg_base, set_long_icf_fg_base, set_long_icf_fg_base, set_long_icf_fg_04, set_long_icf_fg_06
|
2017-06-10 02:03:41 +02:00
|
|
|
|
|
|
|
mbin_interface gen_icf_map_lh1
|
2018-01-04 21:22:37 +01:00
|
|
|
mbin_dispatch_init6 gen_icf_map_lh1, gen_icf_map_h1_base, gen_icf_map_h1_base, gen_icf_map_h1_base, gen_icf_map_lh1_04, gen_icf_map_lh1_06
|
2016-10-03 23:50:52 +02:00
|
|
|
|
2017-05-01 21:44:30 +02:00
|
|
|
mbin_interface isal_adler32
|
2017-05-25 22:51:25 +02:00
|
|
|
mbin_dispatch_init5 isal_adler32, adler32_base, adler32_sse, adler32_sse, adler32_avx2_4
|
2017-06-07 22:40:34 +02:00
|
|
|
|
|
|
|
mbin_interface isal_deflate_hash_lvl0
|
2017-11-17 18:22:18 +01:00
|
|
|
mbin_dispatch_init5 isal_deflate_hash_lvl0, isal_deflate_hash_base, isal_deflate_hash_crc_01, isal_deflate_hash_crc_01, isal_deflate_hash_crc_01
|
2017-06-10 02:03:41 +02:00
|
|
|
|
2017-11-30 21:07:22 +01:00
|
|
|
mbin_interface isal_deflate_hash_lvl1
|
|
|
|
mbin_dispatch_init5 isal_deflate_hash_lvl1, isal_deflate_hash_base, isal_deflate_hash_crc_01, isal_deflate_hash_crc_01, isal_deflate_hash_crc_01
|
|
|
|
|
2017-06-10 02:03:41 +02:00
|
|
|
mbin_interface isal_deflate_hash_lvl2
|
2017-12-05 15:43:04 +01:00
|
|
|
mbin_dispatch_init5 isal_deflate_hash_lvl2, isal_deflate_hash_base, isal_deflate_hash_crc_01, isal_deflate_hash_crc_01, isal_deflate_hash_crc_01
|
|
|
|
|
|
|
|
mbin_interface isal_deflate_hash_lvl3
|
|
|
|
mbin_dispatch_init5 isal_deflate_hash_lvl3, isal_deflate_hash_base, isal_deflate_hash_base, isal_deflate_hash_base, isal_deflate_hash_mad_base
|