mirror of
https://github.com/intel/isa-l.git
synced 2024-12-12 17:33:50 +01:00
erasure_code: fix modules using incorrect unsigned jump
Signed-off-by: Marcel Cornu <marcel.d.cornu@intel.com>
This commit is contained in:
parent
a53a20ea2a
commit
561a419bc8
@ -177,7 +177,7 @@ func(gf_2vect_dot_prod_avx512_gfni)
|
|||||||
mov dest1, [dest1]
|
mov dest1, [dest1]
|
||||||
|
|
||||||
cmp len, 64
|
cmp len, 64
|
||||||
jb .len_lt_64
|
jl .len_lt_64
|
||||||
|
|
||||||
.loop64:
|
.loop64:
|
||||||
|
|
||||||
|
@ -300,7 +300,7 @@ func(gf_3vect_dot_prod_avx2_gfni)
|
|||||||
mov dest3, [dest + 2*8]
|
mov dest3, [dest + 2*8]
|
||||||
|
|
||||||
cmp len, 64
|
cmp len, 64
|
||||||
jb .len_lt_64
|
jl .len_lt_64
|
||||||
|
|
||||||
.loop64:
|
.loop64:
|
||||||
ENCODE_64B_3
|
ENCODE_64B_3
|
||||||
@ -312,7 +312,7 @@ func(gf_3vect_dot_prod_avx2_gfni)
|
|||||||
|
|
||||||
.len_lt_64:
|
.len_lt_64:
|
||||||
cmp len, 32
|
cmp len, 32
|
||||||
jb .len_lt_32
|
jl .len_lt_32
|
||||||
|
|
||||||
ENCODE_32B_3
|
ENCODE_32B_3
|
||||||
|
|
||||||
|
@ -193,7 +193,7 @@ func(gf_3vect_dot_prod_avx512_gfni)
|
|||||||
mov dest1, [dest1]
|
mov dest1, [dest1]
|
||||||
|
|
||||||
cmp len, 64
|
cmp len, 64
|
||||||
jb .len_lt_64
|
jl .len_lt_64
|
||||||
|
|
||||||
.loop64:
|
.loop64:
|
||||||
|
|
||||||
|
@ -241,7 +241,7 @@ func(gf_3vect_mad_avx2_gfni)
|
|||||||
mov dest1, [dest1]
|
mov dest1, [dest1]
|
||||||
|
|
||||||
cmp len, 64
|
cmp len, 64
|
||||||
jb .len_lt_64
|
jl .len_lt_64
|
||||||
|
|
||||||
.loop64:
|
.loop64:
|
||||||
ENCODE_64B_3 ;; loop on 64 bytes at a time
|
ENCODE_64B_3 ;; loop on 64 bytes at a time
|
||||||
@ -253,7 +253,7 @@ func(gf_3vect_mad_avx2_gfni)
|
|||||||
|
|
||||||
.len_lt_64:
|
.len_lt_64:
|
||||||
cmp len, 32
|
cmp len, 32
|
||||||
jb .len_lt_32
|
jl .len_lt_32
|
||||||
|
|
||||||
ENCODE_32B_3 ;; encode next 32 bytes
|
ENCODE_32B_3 ;; encode next 32 bytes
|
||||||
|
|
||||||
|
@ -221,7 +221,7 @@ func(gf_4vect_dot_prod_avx512_gfni)
|
|||||||
mov dest1, [dest1]
|
mov dest1, [dest1]
|
||||||
|
|
||||||
cmp len, 64
|
cmp len, 64
|
||||||
jb .len_lt_64
|
jl .len_lt_64
|
||||||
|
|
||||||
.loop64:
|
.loop64:
|
||||||
|
|
||||||
|
@ -213,7 +213,7 @@ func(gf_4vect_mad_avx2_gfni)
|
|||||||
mov dest1, [dest1]
|
mov dest1, [dest1]
|
||||||
|
|
||||||
cmp len, 32
|
cmp len, 32
|
||||||
jb .len_lt_32
|
jl .len_lt_32
|
||||||
|
|
||||||
.loop32:
|
.loop32:
|
||||||
ENCODE_32B_4 ;; loop on 32 bytes at a time
|
ENCODE_32B_4 ;; loop on 32 bytes at a time
|
||||||
|
@ -242,7 +242,7 @@ func(gf_5vect_dot_prod_avx512_gfni)
|
|||||||
mov dest1, [dest1]
|
mov dest1, [dest1]
|
||||||
|
|
||||||
cmp len, 64
|
cmp len, 64
|
||||||
jb .len_lt_64
|
jl .len_lt_64
|
||||||
|
|
||||||
.loop64:
|
.loop64:
|
||||||
|
|
||||||
|
@ -239,7 +239,7 @@ func(gf_5vect_mad_avx2_gfni)
|
|||||||
mov dest1, [dest1]
|
mov dest1, [dest1]
|
||||||
|
|
||||||
cmp len, 32
|
cmp len, 32
|
||||||
jb .len_lt_32
|
jl .len_lt_32
|
||||||
|
|
||||||
.loop32:
|
.loop32:
|
||||||
ENCODE_32B_5 ;; loop on 32 bytes at a time
|
ENCODE_32B_5 ;; loop on 32 bytes at a time
|
||||||
|
@ -260,7 +260,7 @@ func(gf_6vect_dot_prod_avx512_gfni)
|
|||||||
mov dest5, [dest1 + 4*8] ;dest1 and dest6 are calculated later
|
mov dest5, [dest1 + 4*8] ;dest1 and dest6 are calculated later
|
||||||
|
|
||||||
cmp len, 64
|
cmp len, 64
|
||||||
jb .len_lt_64
|
jl .len_lt_64
|
||||||
|
|
||||||
.loop64:
|
.loop64:
|
||||||
|
|
||||||
|
@ -158,7 +158,7 @@ func(gf_vect_dot_prod_avx512_gfni)
|
|||||||
shl vec, 3 ;vec *= 8. Make vec_i count by 8
|
shl vec, 3 ;vec *= 8. Make vec_i count by 8
|
||||||
|
|
||||||
cmp len, 64
|
cmp len, 64
|
||||||
jb .len_lt_64
|
jl .len_lt_64
|
||||||
|
|
||||||
.loop64:
|
.loop64:
|
||||||
|
|
||||||
|
@ -212,7 +212,7 @@ func(gf_vect_mad_avx2_gfni)
|
|||||||
vbroadcastsd xgft1, [tmp]
|
vbroadcastsd xgft1, [tmp]
|
||||||
|
|
||||||
cmp len, 96
|
cmp len, 96
|
||||||
jb .len_lt_96
|
jl .len_lt_96
|
||||||
|
|
||||||
.loop96:
|
.loop96:
|
||||||
ENCODE_96B ;; loop on 96 bytes at a time
|
ENCODE_96B ;; loop on 96 bytes at a time
|
||||||
@ -223,7 +223,7 @@ func(gf_vect_mad_avx2_gfni)
|
|||||||
|
|
||||||
.len_lt_96:
|
.len_lt_96:
|
||||||
cmp len, 64
|
cmp len, 64
|
||||||
jb .len_lt_64
|
jl .len_lt_64
|
||||||
|
|
||||||
ENCODE_64B ;; encode next 64 bytes
|
ENCODE_64B ;; encode next 64 bytes
|
||||||
|
|
||||||
@ -232,7 +232,7 @@ func(gf_vect_mad_avx2_gfni)
|
|||||||
|
|
||||||
.len_lt_64:
|
.len_lt_64:
|
||||||
cmp len, 32
|
cmp len, 32
|
||||||
jb .len_lt_32
|
jl .len_lt_32
|
||||||
|
|
||||||
ENCODE_32B ;; encode next 32 bytes
|
ENCODE_32B ;; encode next 32 bytes
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user