mirror of
https://github.com/intel/isa-l.git
synced 2024-12-12 09:23:50 +01:00
igzip: create optimized set_long_icf_fg for avx2
Change-Id: I027e73eaa908ca69a5c1af5a52b464f1963fd2da Signed-off-by: Roy Oursler <roy.j.oursler@intel.com>
This commit is contained in:
parent
9acc3ed2ac
commit
aedf4f8cff
@ -137,6 +137,7 @@ objs = \
|
||||
bin\igzip_deflate_hash.obj \
|
||||
bin\igzip_gen_icf_map_lh1_04.obj \
|
||||
bin\igzip_gen_icf_map_lh1_06.obj \
|
||||
bin\igzip_set_long_icf_fg_04.obj \
|
||||
bin\igzip_set_long_icf_fg_06.obj \
|
||||
bin\igzip_icf_body.obj
|
||||
|
||||
|
@ -61,6 +61,7 @@ lsrc_x86_64 += igzip/igzip_body_01.asm \
|
||||
igzip/igzip_deflate_hash.asm \
|
||||
igzip/igzip_gen_icf_map_lh1_06.asm \
|
||||
igzip/igzip_gen_icf_map_lh1_04.asm \
|
||||
igzip/igzip_set_long_icf_fg_04.asm \
|
||||
igzip/igzip_set_long_icf_fg_06.asm
|
||||
|
||||
src_include += -I $(srcdir)/igzip
|
||||
|
@ -66,6 +66,7 @@ extern encode_deflate_icf_base
|
||||
extern encode_deflate_icf_04
|
||||
|
||||
extern set_long_icf_fg_base
|
||||
extern set_long_icf_fg_04
|
||||
|
||||
%ifdef HAVE_AS_KNOWS_AVX512
|
||||
extern encode_deflate_icf_06
|
||||
@ -121,7 +122,7 @@ 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
|
||||
|
||||
mbin_interface set_long_icf_fg
|
||||
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_base, set_long_icf_fg_06
|
||||
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
|
||||
|
||||
mbin_interface gen_icf_map_lh1
|
||||
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
|
||||
@ -130,7 +131,7 @@ mbin_interface encode_deflate_icf
|
||||
mbin_dispatch_init5 encode_deflate_icf, encode_deflate_icf_base, encode_deflate_icf_base, encode_deflate_icf_base, encode_deflate_icf_04
|
||||
|
||||
mbin_interface set_long_icf_fg
|
||||
mbin_dispatch_init5 set_long_icf_fg, set_long_icf_fg_base, set_long_icf_fg_base, set_long_icf_fg_base, set_long_icf_fg_base
|
||||
mbin_dispatch_init5 set_long_icf_fg, set_long_icf_fg_base, set_long_icf_fg_base, set_long_icf_fg_base, set_long_icf_fg_04
|
||||
|
||||
mbin_interface gen_icf_map_lh1
|
||||
mbin_dispatch_init5 gen_icf_map_lh1, gen_icf_map_h1_base, gen_icf_map_h1_base, gen_icf_map_h1_base, gen_icf_map_lh1_04
|
||||
|
233
igzip/igzip_set_long_icf_fg_04.asm
Normal file
233
igzip/igzip_set_long_icf_fg_04.asm
Normal file
@ -0,0 +1,233 @@
|
||||
%include "reg_sizes.asm"
|
||||
%include "lz0a_const.asm"
|
||||
%include "data_struct2.asm"
|
||||
%include "igzip_compare_types.asm"
|
||||
%define NEQ 4
|
||||
|
||||
default rel
|
||||
|
||||
%ifidn __OUTPUT_FORMAT__, win64
|
||||
%define arg1 rcx
|
||||
%define arg2 rdx
|
||||
%define arg3 r8
|
||||
%define dist_code rsi
|
||||
%define len rdi
|
||||
%define tmp2 rdi
|
||||
%else
|
||||
%define arg1 rdi
|
||||
%define arg2 rsi
|
||||
%define arg3 rdx
|
||||
%define dist_code rcx
|
||||
%define len r8
|
||||
%define tmp2 r8
|
||||
%endif
|
||||
|
||||
%define next_in arg1
|
||||
%define end_in arg2
|
||||
%define match_lookup arg3
|
||||
%define match_in rax
|
||||
%define dist r9
|
||||
%define match_offset r10
|
||||
%define tmp1 r11
|
||||
|
||||
%define ymatch_lookup ymm0
|
||||
%define ymatch_lookup2 ymm1
|
||||
%define ylens ymm2
|
||||
%define ydists ymm3
|
||||
%define ylens1 ymm4
|
||||
%define ylens2 ymm5
|
||||
%define ycmp ymm6
|
||||
%define ytmp1 ymm7
|
||||
%define ytmp2 ymm8
|
||||
%define yvect_size ymm9
|
||||
%define ytwofiftyfour ymm10
|
||||
%define ytwofiftysix ymm11
|
||||
%define ynlen_mask ymm12
|
||||
%define ydists_mask ymm13
|
||||
%define ylong_lens ymm14
|
||||
%define ylens_mask ymm15
|
||||
|
||||
%ifidn __OUTPUT_FORMAT__, win64
|
||||
%define stack_size 10*16 + 2 * 8 + 8
|
||||
%define func(x) proc_frame x
|
||||
%macro FUNC_SAVE 0
|
||||
alloc_stack stack_size
|
||||
vmovdqa [rsp + 0*16], xmm6
|
||||
vmovdqa [rsp + 1*16], xmm7
|
||||
vmovdqa [rsp + 2*16], xmm8
|
||||
vmovdqa [rsp + 3*16], xmm9
|
||||
vmovdqa [rsp + 4*16], xmm10
|
||||
vmovdqa [rsp + 5*16], xmm11
|
||||
vmovdqa [rsp + 6*16], xmm12
|
||||
vmovdqa [rsp + 7*16], xmm13
|
||||
vmovdqa [rsp + 8*16], xmm14
|
||||
vmovdqa [rsp + 9*16], xmm15
|
||||
save_reg rsi, 10*16 + 0*8
|
||||
save_reg rdi, 10*16 + 1*8
|
||||
end_prolog
|
||||
%endm
|
||||
|
||||
%macro FUNC_RESTORE 0
|
||||
vmovdqa xmm6, [rsp + 0*16]
|
||||
vmovdqa xmm7, [rsp + 1*16]
|
||||
vmovdqa xmm8, [rsp + 2*16]
|
||||
vmovdqa xmm9, [rsp + 3*16]
|
||||
vmovdqa xmm10, [rsp + 4*16]
|
||||
vmovdqa xmm11, [rsp + 5*16]
|
||||
vmovdqa xmm12, [rsp + 6*16]
|
||||
vmovdqa xmm13, [rsp + 7*16]
|
||||
vmovdqa xmm14, [rsp + 8*16]
|
||||
vmovdqa xmm15, [rsp + 9*16]
|
||||
|
||||
mov rsi, [rsp + 10*16 + 0*8]
|
||||
mov rdi, [rsp + 10*16 + 1*8]
|
||||
add rsp, stack_size
|
||||
%endm
|
||||
%else
|
||||
%define func(x) x:
|
||||
%macro FUNC_SAVE 0
|
||||
%endm
|
||||
|
||||
%macro FUNC_RESTORE 0
|
||||
%endm
|
||||
%endif
|
||||
%define VECT_SIZE 8
|
||||
|
||||
global set_long_icf_fg_04
|
||||
func(set_long_icf_fg_04)
|
||||
FUNC_SAVE
|
||||
|
||||
sub end_in, LA + 15
|
||||
vmovdqu ylong_lens, [long_len]
|
||||
vmovdqu ylens_mask, [len_mask]
|
||||
vmovdqu ydists_mask, [dists_mask]
|
||||
vmovdqu ynlen_mask, [nlen_mask]
|
||||
vmovdqu yvect_size, [vect_size]
|
||||
vmovdqu ytwofiftyfour, [twofiftyfour]
|
||||
vmovdqu ytwofiftysix, [twofiftysix]
|
||||
vmovdqu ymatch_lookup, [match_lookup]
|
||||
|
||||
fill_loop: ; Tahiti is a magical place
|
||||
vmovdqu ymatch_lookup2, ymatch_lookup
|
||||
vmovdqu ymatch_lookup, [match_lookup + ICF_CODE_BYTES * VECT_SIZE]
|
||||
|
||||
cmp next_in, end_in
|
||||
jae end_fill
|
||||
vpand ylens, ymatch_lookup2, ylens_mask
|
||||
vpcmpgtd ycmp, ylens, ylong_lens
|
||||
vpmovmskb tmp1, ycmp
|
||||
|
||||
;; Speculatively increment
|
||||
add next_in, VECT_SIZE
|
||||
add match_lookup, ICF_CODE_BYTES * VECT_SIZE
|
||||
|
||||
test tmp1, tmp1
|
||||
jz fill_loop
|
||||
|
||||
tzcnt match_offset, tmp1
|
||||
shr match_offset, 2
|
||||
|
||||
lea next_in, [next_in + match_offset - VECT_SIZE]
|
||||
lea match_lookup, [match_lookup + ICF_CODE_BYTES * (match_offset - VECT_SIZE)]
|
||||
mov dist %+ d, [match_lookup]
|
||||
vmovd ymatch_lookup2 %+ x, dist %+ d
|
||||
|
||||
mov tmp1, dist
|
||||
shr dist, DIST_OFFSET
|
||||
and dist, LIT_DIST_MASK
|
||||
shr tmp1, EXTRA_BITS_OFFSET
|
||||
lea tmp2, [dist_start]
|
||||
mov dist %+ w, [tmp2 + 2 * dist]
|
||||
add dist, tmp1
|
||||
|
||||
mov match_in, next_in
|
||||
sub match_in, dist
|
||||
|
||||
mov len, 2
|
||||
%rep 7
|
||||
vmovdqu ytmp1, [next_in + len]
|
||||
vmovdqu ytmp2, [match_in + len]
|
||||
vpcmpeqb ycmp, ytmp1, [match_in + len]
|
||||
vpmovmskb tmp1, ycmp
|
||||
cmp tmp1 %+ d, 0xffffffff
|
||||
jne miscompare
|
||||
|
||||
add len, 32
|
||||
%endrep
|
||||
|
||||
vmovdqu ytmp1, [next_in + len]
|
||||
vmovdqu ytmp2, [match_in + len]
|
||||
vpcmpeqb ycmp, ytmp1, [match_in + len]
|
||||
vpmovmskb tmp1, ycmp
|
||||
|
||||
miscompare:
|
||||
not tmp1 %+ d
|
||||
tzcnt tmp1 %+ d, tmp1 %+ d
|
||||
add len, tmp1
|
||||
add next_in, len
|
||||
lea match_lookup, [match_lookup + ICF_CODE_BYTES * len]
|
||||
vmovdqu ymatch_lookup, [match_lookup]
|
||||
|
||||
vpbroadcastd ymatch_lookup2, ymatch_lookup2 %+ x
|
||||
vpand ymatch_lookup2, ymatch_lookup2, ynlen_mask
|
||||
|
||||
vmovd ylens1 %+ x, len %+ d
|
||||
vpbroadcastd ylens1, ylens1 %+ x
|
||||
vpsubd ylens1, ylens1, [increment]
|
||||
vpaddd ylens1, ylens1, ytwofiftyfour
|
||||
neg len
|
||||
|
||||
update_match_lookup:
|
||||
vpand ylens2, ylens_mask, [match_lookup + ICF_CODE_BYTES * len]
|
||||
|
||||
vpcmpgtd ycmp, ylens1, ylens2
|
||||
vpcmpgtd ytmp1, ylens1, ytwofiftysix
|
||||
vpand ycmp, ycmp, ytmp1
|
||||
vpmovmskb tmp1, ycmp
|
||||
|
||||
vpaddd ylens2, ylens1, ymatch_lookup2
|
||||
vpand ylens2, ylens2, ycmp
|
||||
|
||||
vpmaskmovd [match_lookup + ICF_CODE_BYTES * len], ycmp, ylens2
|
||||
|
||||
test tmp1 %+ d, tmp1 %+ d
|
||||
jz fill_loop
|
||||
|
||||
add len, VECT_SIZE
|
||||
vpsubd ylens1, ylens1, yvect_size
|
||||
|
||||
jmp update_match_lookup
|
||||
end_fill:
|
||||
|
||||
FUNC_RESTORE
|
||||
ret
|
||||
|
||||
endproc_frame
|
||||
|
||||
section .data
|
||||
align 64
|
||||
dist_start:
|
||||
dw 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0007, 0x0009, 0x000d
|
||||
dw 0x0011, 0x0019, 0x0021, 0x0031, 0x0041, 0x0061, 0x0081, 0x00c1
|
||||
dw 0x0101, 0x0181, 0x0201, 0x0301, 0x0401, 0x0601, 0x0801, 0x0c01
|
||||
dw 0x1001, 0x1801, 0x2001, 0x3001, 0x4001, 0x6001, 0x0000, 0x0000
|
||||
len_mask:
|
||||
dd LIT_LEN_MASK, LIT_LEN_MASK, LIT_LEN_MASK, LIT_LEN_MASK
|
||||
dd LIT_LEN_MASK, LIT_LEN_MASK, LIT_LEN_MASK, LIT_LEN_MASK
|
||||
dists_mask:
|
||||
dd LIT_DIST_MASK, LIT_DIST_MASK, LIT_DIST_MASK, LIT_DIST_MASK
|
||||
dd LIT_DIST_MASK, LIT_DIST_MASK, LIT_DIST_MASK, LIT_DIST_MASK
|
||||
long_len:
|
||||
dd 0x105, 0x105, 0x105, 0x105, 0x105, 0x105, 0x105, 0x105
|
||||
increment:
|
||||
dd 0x0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7
|
||||
vect_size:
|
||||
dd VECT_SIZE, VECT_SIZE, VECT_SIZE, VECT_SIZE
|
||||
dd VECT_SIZE, VECT_SIZE, VECT_SIZE, VECT_SIZE
|
||||
twofiftyfour:
|
||||
dd 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe
|
||||
twofiftysix:
|
||||
dd 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100
|
||||
nlen_mask:
|
||||
dd 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00
|
||||
dd 0xfffffc00, 0xfffffc00, 0xfffffc00, 0xfffffc00
|
@ -247,6 +247,8 @@ end_fill:
|
||||
FUNC_RESTORE
|
||||
ret
|
||||
|
||||
end_proc_frame
|
||||
|
||||
section .data
|
||||
align 64
|
||||
dist_start:
|
||||
|
Loading…
Reference in New Issue
Block a user