blob: f34e6e6fa594bedad7e5335506e7208bb3fcaa0d [file] [log] [blame]
Denys Vlasenko947bef02022-01-03 13:00:07 +01001#!/bin/sh
2
3# We don't regenerate it on every "make" invocation - only by hand.
4# The reason is that the changes to generated code are difficult
5# to visualize by looking only at this script, it helps when the commit
6# also contains the diff of the generated file.
7exec >hash_md5_sha_x86-64.S
8
Denys Vlasenko39369ff2022-01-23 09:27:30 +01009# Based on http://arctic.org/~dean/crypto/sha1.html.
10# ("This SHA1 implementation is public domain.")
11#
12# x86-64 has at least SSE2 vector insns always available.
13# We can use them without any CPUID checks (and without a need
14# for a fallback code if needed insns are not available).
15# This code uses them to calculate W[] ahead of time.
16#
17# Unfortunately, results are passed from vector unit to
18# integer ALUs on the stack. MOVD/Q insns to move them directly
19# from vector to integer registers are slower than store-to-load
20# forwarding in LSU (on Skylake at least).
21#
22# The win against a purely integer code is small on Skylake,
23# only about 7-8%. We offload about 1/3 of our operations to the vector unit.
24# It can do 4 ops at once in one 128-bit register,
25# but we have to use x2 of them because of W[0] complication,
26# SSE2 has no "rotate each word by N bits" insns,
27# moving data to/from vector unit is clunky, and Skylake
28# has four integer ALUs unified with three vector ALUs,
29# which makes pure integer code rather fast, and makes
30# vector ops compete with integer ones.
31#
32# Zen3, with its separate vector ALUs, wins more, about 12%.
33
34xmmT1="%xmm4"
35xmmT2="%xmm5"
36xmmRCONST="%xmm6"
Denys Vlasenko4923f742022-02-08 03:29:16 +010037xmmALLRCONST="%xmm7"
Denys Vlasenko39369ff2022-01-23 09:27:30 +010038T=`printf '\t'`
39
40# SSE instructions are longer than 4 bytes on average.
41# Intel CPUs (up to Tiger Lake at least) can't decode
42# more than 16 bytes of code in one cycle.
43# By interleaving SSE code and integer code
44# we mostly achieve a situation where 16-byte decode fetch window
45# contains 4 (or more) insns.
46#
47# However. On Skylake, there was no observed difference,
48# but on Zen3, non-interleaved code is ~3% faster
49# (822 Mb/s versus 795 Mb/s hashing speed).
50# Off for now:
51interleave=false
52
53INTERLEAVE() {
54 $interleave || \
55 {
56 # Generate non-interleaved code
57 # (it should work correctly too)
58 echo "$1"
59 echo "$2"
60 return
61 }
62 (
63 echo "$1" | grep -v '^$' >"$0.temp1"
64 echo "$2" | grep -v '^$' >"$0.temp2"
65 exec 3<"$0.temp1"
66 exec 4<"$0.temp2"
67 IFS=''
68 while :; do
69 line1=''
70 line2=''
71 while :; do
72 read -r line1 <&3
73 if test "${line1:0:1}" != "#" && test "${line1:0:2}" != "$T#"; then
74 break
75 fi
76 echo "$line1"
77 done
78 while :; do
79 read -r line2 <&4
80 if test "${line2:0:4}" = "${T}lea"; then
81 # We use 7-8 byte long forms of LEA.
82 # Do not interleave them with SSE insns
83 # which are also long.
84 echo "$line2"
85 read -r line2 <&4
86 echo "$line2"
87 continue
88 fi
89 if test "${line2:0:1}" != "#" && test "${line2:0:2}" != "$T#"; then
90 break
91 fi
92 echo "$line2"
93 done
94 test "$line1$line2" || break
95 echo "$line1"
96 echo "$line2"
97 done
98 rm "$0.temp1" "$0.temp2"
99 )
100}
Denys Vlasenko14335682022-01-08 22:43:24 +0100101
Denys Vlasenko947bef02022-01-03 13:00:07 +0100102echo \
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100103"### Generated by hash_md5_sha_x86-64.S.sh ###
Denys Vlasenko947bef02022-01-03 13:00:07 +0100104
105#if CONFIG_SHA1_SMALL == 0 && defined(__GNUC__) && defined(__x86_64__)
Denys Vlasenko205042c2022-01-25 17:00:57 +0100106 .section .text.sha1_process_block64, \"ax\", @progbits
Denys Vlasenko805ecec2022-01-08 00:41:09 +0100107 .globl sha1_process_block64
108 .hidden sha1_process_block64
Denys Vlasenko947bef02022-01-03 13:00:07 +0100109 .type sha1_process_block64, @function
110
Denys Vlasenkoc3cfcc92022-01-04 01:45:13 +0100111 .balign 8 # allow decoders to fetch at least 5 first insns
Denys Vlasenko947bef02022-01-03 13:00:07 +0100112sha1_process_block64:
Denys Vlasenkoc3cfcc92022-01-04 01:45:13 +0100113 pushq %rbp # 1 byte insn
114 pushq %rbx # 1 byte insn
Denys Vlasenko205042c2022-01-25 17:00:57 +0100115# pushq %r15 # 2 byte insn
Denys Vlasenkoc3cfcc92022-01-04 01:45:13 +0100116 pushq %r14 # 2 byte insn
117 pushq %r13 # 2 byte insn
118 pushq %r12 # 2 byte insn
Denys Vlasenko947bef02022-01-03 13:00:07 +0100119 pushq %rdi # we need ctx at the end
120
121#Register and stack use:
122# eax..edx: a..d
123# ebp: e
Denys Vlasenko205042c2022-01-25 17:00:57 +0100124# esi,edi,r8..r14: temps
125# r15: unused
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100126# xmm0..xmm3: W[]
127# xmm4,xmm5: temps
128# xmm6: current round constant
Denys Vlasenko4923f742022-02-08 03:29:16 +0100129# xmm7: all round constants
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100130# -64(%rsp): area for passing RCONST + W[] from vector to integer units
Denys Vlasenkoc3cfcc92022-01-04 01:45:13 +0100131
Denys Vlasenko81541462022-02-11 06:08:27 +0100132 movaps sha1const(%rip), $xmmALLRCONST
133 movaps bswap32_mask(%rip), $xmmT1
134 pshufd \$0x00, $xmmALLRCONST, $xmmRCONST
135
136 # Load W[] to xmm0..3, byteswapping on the fly.
137 #
138 # For iterations 0..15, we pass RCONST+W[] in rsi,r8..r14
139 # for use in RD1As instead of spilling them to stack.
140 # (We use rsi instead of rN because this makes two
141 # ADDs in two first RD1As shorter by one byte).
142 movups 16*0(%rdi), %xmm0
143 pshufb $xmmT1, %xmm0
144 movaps %xmm0, $xmmT2
145 paddd $xmmRCONST, $xmmT2
146 movq $xmmT2, %rsi
147# pextrq \$1, $xmmT2, %r8 #SSE4.1 insn
148# movhpd $xmmT2, %r8 #can only move to mem, not to reg
149 shufps \$0x0e, $xmmT2, $xmmT2
150 movq $xmmT2, %r8
151
152 movups 16*1(%rdi), %xmm1
153 pshufb $xmmT1, %xmm1
154 movaps %xmm1, $xmmT2
155 paddd $xmmRCONST, $xmmT2
156 movq $xmmT2, %r9
157 shufps \$0x0e, $xmmT2, $xmmT2
158 movq $xmmT2, %r10
159
160 movups 16*2(%rdi), %xmm2
161 pshufb $xmmT1, %xmm2
162 movaps %xmm2, $xmmT2
163 paddd $xmmRCONST, $xmmT2
164 movq $xmmT2, %r11
165 shufps \$0x0e, $xmmT2, $xmmT2
166 movq $xmmT2, %r12
167
168 movups 16*3(%rdi), %xmm3
169 pshufb $xmmT1, %xmm3
170 movaps %xmm3, $xmmT2
171 paddd $xmmRCONST, $xmmT2
172 movq $xmmT2, %r13
173 shufps \$0x0e, $xmmT2, $xmmT2
174 movq $xmmT2, %r14
175
176 # MOVQs to GPRs (above) have somewhat high latency.
177 # Load hash[] while they are completing:
Denys Vlasenko947bef02022-01-03 13:00:07 +0100178 movl 80(%rdi), %eax # a = ctx->hash[0]
179 movl 84(%rdi), %ebx # b = ctx->hash[1]
180 movl 88(%rdi), %ecx # c = ctx->hash[2]
181 movl 92(%rdi), %edx # d = ctx->hash[3]
182 movl 96(%rdi), %ebp # e = ctx->hash[4]
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100183"
184
185PREP() {
186local xmmW0=$1
187local xmmW4=$2
188local xmmW8=$3
189local xmmW12=$4
190# the above must be %xmm0..3 in some permutation
191local dstmem=$5
192#W[0] = rol(W[13] ^ W[8] ^ W[2] ^ W[0], 1);
193#W[1] = rol(W[14] ^ W[9] ^ W[3] ^ W[1], 1);
194#W[2] = rol(W[15] ^ W[10] ^ W[4] ^ W[2], 1);
195#W[3] = rol( 0 ^ W[11] ^ W[5] ^ W[3], 1);
196#W[3] ^= rol(W[0], 1);
197echo "# PREP $@
198 movaps $xmmW12, $xmmT1
199 psrldq \$4, $xmmT1 # rshift by 4 bytes: T1 = ([13],[14],[15],0)
200
Denys Vlasenkoc193cbd2022-02-07 02:06:18 +0100201# pshufd \$0x4e, $xmmW0, $xmmT2 # 01001110=2,3,0,1 shuffle, ([2],[3],x,x)
202# punpcklqdq $xmmW4, $xmmT2 # T2 = W4[0..63]:T2[0..63] = ([2],[3],[4],[5])
203# same result as above, but shorter and faster:
204# pshufd/shufps are subtly different: pshufd takes all dwords from source operand,
205# shufps takes dwords 0,1 from *2nd* operand, and dwords 2,3 from 1st one!
206 movaps $xmmW0, $xmmT2
207 shufps \$0x4e, $xmmW4, $xmmT2 # 01001110=(T2.dw[2], T2.dw[3], W4.dw[0], W4.dw[1]) = ([2],[3],[4],[5])
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100208
209 xorps $xmmW8, $xmmW0 # ([8],[9],[10],[11]) ^ ([0],[1],[2],[3])
210 xorps $xmmT1, $xmmT2 # ([13],[14],[15],0) ^ ([2],[3],[4],[5])
211 xorps $xmmT2, $xmmW0 # ^
212 # W0 = unrotated (W[0]..W[3]), still needs W[3] fixup
213 movaps $xmmW0, $xmmT2
214
215 xorps $xmmT1, $xmmT1 # rol(W0,1):
Denys Vlasenko205042c2022-01-25 17:00:57 +0100216 pcmpgtd $xmmW0, $xmmT1 # ffffffff for elements <0 (ones with msb bit 1)
217 paddd $xmmW0, $xmmW0 # shift left by 1
218 psubd $xmmT1, $xmmW0 # add 1 to those who had msb bit 1
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100219 # W0 = rotated (W[0]..W[3]), still needs W[3] fixup
220
221 pslldq \$12, $xmmT2 # lshift by 12 bytes: T2 = (0,0,0,unrotW[0])
222 movaps $xmmT2, $xmmT1
223 pslld \$2, $xmmT2
224 psrld \$30, $xmmT1
225# xorps $xmmT1, $xmmT2 # rol((0,0,0,unrotW[0]),2)
226 xorps $xmmT1, $xmmW0 # same result, but does not depend on/does not modify T2
227
228 xorps $xmmT2, $xmmW0 # W0 = rol(W[0]..W[3],1) ^ (0,0,0,rol(unrotW[0],2))
229"
230# movq $xmmW0, %r8 # high latency (~6 cycles)
231# movaps $xmmW0, $xmmT1
232# psrldq \$8, $xmmT1 # rshift by 8 bytes: move upper 64 bits to lower
233# movq $xmmT1, %r10 # high latency
234# movq %r8, %r9
235# movq %r10, %r11
236# shrq \$32, %r9
237# shrq \$32, %r11
238# ^^^ slower than passing the results on stack (!!!)
239echo "
240 movaps $xmmW0, $xmmT2
241 paddd $xmmRCONST, $xmmT2
242 movups $xmmT2, $dstmem
243"
Denys Vlasenko947bef02022-01-03 13:00:07 +0100244}
245
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100246# It's possible to interleave integer insns in rounds to mostly eliminate
Denys Vlasenkoc3cfcc92022-01-04 01:45:13 +0100247# dependency chains, but this likely to only help old Pentium-based
248# CPUs (ones without OOO, which can only simultaneously execute a pair
249# of _adjacent_ insns).
250# Testing on old-ish Silvermont CPU (which has OOO window of only
251# about ~8 insns) shows very small (~1%) speedup.
252
Denys Vlasenko947bef02022-01-03 13:00:07 +0100253RD1A() {
254local a=$1;local b=$2;local c=$3;local d=$4;local e=$5
255local n=$(($6))
Denys Vlasenko7abb2bb2022-01-03 17:02:48 +0100256local n0=$(((n+0) & 15))
Denys Vlasenko205042c2022-01-25 17:00:57 +0100257local rN=$((7+n0/2))
Denys Vlasenko7abb2bb2022-01-03 17:02:48 +0100258echo "
259# $n
260";test $n0 = 0 && echo "
Denys Vlasenko81541462022-02-11 06:08:27 +0100261 addl %esi, %e$e # e += RCONST + W[n]
Denys Vlasenko205042c2022-01-25 17:00:57 +0100262 shrq \$32, %rsi
263";test $n0 = 1 && echo "
Denys Vlasenko81541462022-02-11 06:08:27 +0100264 addl %esi, %e$e # e += RCONST + W[n]
Denys Vlasenko205042c2022-01-25 17:00:57 +0100265";test $n0 -ge 2 && test $((n0 & 1)) = 0 && echo "
Denys Vlasenko81541462022-02-11 06:08:27 +0100266 addl %r${rN}d, %e$e # e += RCONST + W[n]
Denys Vlasenko205042c2022-01-25 17:00:57 +0100267 shrq \$32, %r$rN
268";test $n0 -ge 2 && test $((n0 & 1)) = 1 && echo "
Denys Vlasenko81541462022-02-11 06:08:27 +0100269 addl %r${rN}d, %e$e # e += RCONST + W[n]
Denys Vlasenko947bef02022-01-03 13:00:07 +0100270";echo "
271 movl %e$c, %edi # c
272 xorl %e$d, %edi # ^d
273 andl %e$b, %edi # &b
274 xorl %e$d, %edi # (((c ^ d) & b) ^ d)
Denys Vlasenko947bef02022-01-03 13:00:07 +0100275 addl %edi, %e$e # e += (((c ^ d) & b) ^ d)
Denys Vlasenko205042c2022-01-25 17:00:57 +0100276 movl %e$a, %edi #
277 roll \$5, %edi # rotl32(a,5)
278 addl %edi, %e$e # e += rotl32(a,5)
Denys Vlasenko947bef02022-01-03 13:00:07 +0100279 rorl \$2, %e$b # b = rotl32(b,30)
280"
281}
282RD1B() {
283local a=$1;local b=$2;local c=$3;local d=$4;local e=$5
284local n=$(($6))
285local n13=$(((n+13) & 15))
286local n8=$(((n+8) & 15))
287local n2=$(((n+2) & 15))
288local n0=$(((n+0) & 15))
289echo "
290# $n
Denys Vlasenko947bef02022-01-03 13:00:07 +0100291 movl %e$c, %edi # c
292 xorl %e$d, %edi # ^d
293 andl %e$b, %edi # &b
294 xorl %e$d, %edi # (((c ^ d) & b) ^ d)
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100295 addl -64+4*$n0(%rsp), %e$e # e += RCONST + W[n & 15]
Denys Vlasenko947bef02022-01-03 13:00:07 +0100296 addl %edi, %e$e # e += (((c ^ d) & b) ^ d)
297 movl %e$a, %esi #
298 roll \$5, %esi # rotl32(a,5)
299 addl %esi, %e$e # e += rotl32(a,5)
300 rorl \$2, %e$b # b = rotl32(b,30)
301"
302}
Denys Vlasenko947bef02022-01-03 13:00:07 +0100303
304RD2() {
305local a=$1;local b=$2;local c=$3;local d=$4;local e=$5
306local n=$(($6))
307local n13=$(((n+13) & 15))
308local n8=$(((n+8) & 15))
309local n2=$(((n+2) & 15))
310local n0=$(((n+0) & 15))
311echo "
312# $n
Denys Vlasenko947bef02022-01-03 13:00:07 +0100313 movl %e$c, %edi # c
314 xorl %e$d, %edi # ^d
315 xorl %e$b, %edi # ^b
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100316 addl -64+4*$n0(%rsp), %e$e # e += RCONST + W[n & 15]
Denys Vlasenko947bef02022-01-03 13:00:07 +0100317 addl %edi, %e$e # e += (c ^ d ^ b)
318 movl %e$a, %esi #
319 roll \$5, %esi # rotl32(a,5)
320 addl %esi, %e$e # e += rotl32(a,5)
321 rorl \$2, %e$b # b = rotl32(b,30)
322"
323}
Denys Vlasenko947bef02022-01-03 13:00:07 +0100324
325RD3() {
326local a=$1;local b=$2;local c=$3;local d=$4;local e=$5
327local n=$(($6))
328local n13=$(((n+13) & 15))
329local n8=$(((n+8) & 15))
330local n2=$(((n+2) & 15))
331local n0=$(((n+0) & 15))
332echo "
333# $n
334 movl %e$b, %edi # di: b
335 movl %e$b, %esi # si: b
336 orl %e$c, %edi # di: b | c
337 andl %e$c, %esi # si: b & c
338 andl %e$d, %edi # di: (b | c) & d
339 orl %esi, %edi # ((b | c) & d) | (b & c)
Denys Vlasenko947bef02022-01-03 13:00:07 +0100340 addl %edi, %e$e # += ((b | c) & d) | (b & c)
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100341 addl -64+4*$n0(%rsp), %e$e # e += RCONST + W[n & 15]
Denys Vlasenko947bef02022-01-03 13:00:07 +0100342 movl %e$a, %esi #
343 roll \$5, %esi # rotl32(a,5)
344 addl %esi, %e$e # e += rotl32(a,5)
345 rorl \$2, %e$b # b = rotl32(b,30)
346"
347}
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100348
Denys Vlasenko947bef02022-01-03 13:00:07 +0100349{
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100350# Round 1
351RCONST=0x5A827999
352RD1A ax bx cx dx bp 0; RD1A bp ax bx cx dx 1; RD1A dx bp ax bx cx 2; RD1A cx dx bp ax bx 3;
353RD1A bx cx dx bp ax 4; RD1A ax bx cx dx bp 5; RD1A bp ax bx cx dx 6; RD1A dx bp ax bx cx 7;
354a=`PREP %xmm0 %xmm1 %xmm2 %xmm3 "-64+16*0(%rsp)"`
355b=`RD1A cx dx bp ax bx 8; RD1A bx cx dx bp ax 9; RD1A ax bx cx dx bp 10; RD1A bp ax bx cx dx 11;`
356INTERLEAVE "$a" "$b"
Denys Vlasenko4923f742022-02-08 03:29:16 +0100357a=`echo " pshufd \\$0x55, $xmmALLRCONST, $xmmRCONST"
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100358 PREP %xmm1 %xmm2 %xmm3 %xmm0 "-64+16*1(%rsp)"`
359b=`RD1A dx bp ax bx cx 12; RD1A cx dx bp ax bx 13; RD1A bx cx dx bp ax 14; RD1A ax bx cx dx bp 15;`
360INTERLEAVE "$a" "$b"
361a=`PREP %xmm2 %xmm3 %xmm0 %xmm1 "-64+16*2(%rsp)"`
362b=`RD1B bp ax bx cx dx 16; RD1B dx bp ax bx cx 17; RD1B cx dx bp ax bx 18; RD1B bx cx dx bp ax 19;`
363INTERLEAVE "$a" "$b"
364
365# Round 2
366RCONST=0x6ED9EBA1
367a=`PREP %xmm3 %xmm0 %xmm1 %xmm2 "-64+16*3(%rsp)"`
368b=`RD2 ax bx cx dx bp 20; RD2 bp ax bx cx dx 21; RD2 dx bp ax bx cx 22; RD2 cx dx bp ax bx 23;`
369INTERLEAVE "$a" "$b"
370a=`PREP %xmm0 %xmm1 %xmm2 %xmm3 "-64+16*0(%rsp)"`
371b=`RD2 bx cx dx bp ax 24; RD2 ax bx cx dx bp 25; RD2 bp ax bx cx dx 26; RD2 dx bp ax bx cx 27;`
372INTERLEAVE "$a" "$b"
373a=`PREP %xmm1 %xmm2 %xmm3 %xmm0 "-64+16*1(%rsp)"`
374b=`RD2 cx dx bp ax bx 28; RD2 bx cx dx bp ax 29; RD2 ax bx cx dx bp 30; RD2 bp ax bx cx dx 31;`
375INTERLEAVE "$a" "$b"
Denys Vlasenko4923f742022-02-08 03:29:16 +0100376a=`echo " pshufd \\$0xaa, $xmmALLRCONST, $xmmRCONST"
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100377 PREP %xmm2 %xmm3 %xmm0 %xmm1 "-64+16*2(%rsp)"`
378b=`RD2 dx bp ax bx cx 32; RD2 cx dx bp ax bx 33; RD2 bx cx dx bp ax 34; RD2 ax bx cx dx bp 35;`
379INTERLEAVE "$a" "$b"
380a=`PREP %xmm3 %xmm0 %xmm1 %xmm2 "-64+16*3(%rsp)"`
381b=`RD2 bp ax bx cx dx 36; RD2 dx bp ax bx cx 37; RD2 cx dx bp ax bx 38; RD2 bx cx dx bp ax 39;`
382INTERLEAVE "$a" "$b"
383
384# Round 3
385RCONST=0x8F1BBCDC
386a=`PREP %xmm0 %xmm1 %xmm2 %xmm3 "-64+16*0(%rsp)"`
387b=`RD3 ax bx cx dx bp 40; RD3 bp ax bx cx dx 41; RD3 dx bp ax bx cx 42; RD3 cx dx bp ax bx 43;`
388INTERLEAVE "$a" "$b"
389a=`PREP %xmm1 %xmm2 %xmm3 %xmm0 "-64+16*1(%rsp)"`
390b=`RD3 bx cx dx bp ax 44; RD3 ax bx cx dx bp 45; RD3 bp ax bx cx dx 46; RD3 dx bp ax bx cx 47;`
391INTERLEAVE "$a" "$b"
392a=`PREP %xmm2 %xmm3 %xmm0 %xmm1 "-64+16*2(%rsp)"`
393b=`RD3 cx dx bp ax bx 48; RD3 bx cx dx bp ax 49; RD3 ax bx cx dx bp 50; RD3 bp ax bx cx dx 51;`
394INTERLEAVE "$a" "$b"
Denys Vlasenko4923f742022-02-08 03:29:16 +0100395a=`echo " pshufd \\$0xff, $xmmALLRCONST, $xmmRCONST"
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100396 PREP %xmm3 %xmm0 %xmm1 %xmm2 "-64+16*3(%rsp)"`
397b=`RD3 dx bp ax bx cx 52; RD3 cx dx bp ax bx 53; RD3 bx cx dx bp ax 54; RD3 ax bx cx dx bp 55;`
398INTERLEAVE "$a" "$b"
399a=`PREP %xmm0 %xmm1 %xmm2 %xmm3 "-64+16*0(%rsp)"`
400b=`RD3 bp ax bx cx dx 56; RD3 dx bp ax bx cx 57; RD3 cx dx bp ax bx 58; RD3 bx cx dx bp ax 59;`
401INTERLEAVE "$a" "$b"
Denys Vlasenko947bef02022-01-03 13:00:07 +0100402
403# Round 4 has the same logic as round 2, only n and RCONST are different
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100404RCONST=0xCA62C1D6
405a=`PREP %xmm1 %xmm2 %xmm3 %xmm0 "-64+16*1(%rsp)"`
406b=`RD2 ax bx cx dx bp 60; RD2 bp ax bx cx dx 61; RD2 dx bp ax bx cx 62; RD2 cx dx bp ax bx 63;`
407INTERLEAVE "$a" "$b"
408a=`PREP %xmm2 %xmm3 %xmm0 %xmm1 "-64+16*2(%rsp)"`
409b=`RD2 bx cx dx bp ax 64; RD2 ax bx cx dx bp 65; RD2 bp ax bx cx dx 66; RD2 dx bp ax bx cx 67;`
410INTERLEAVE "$a" "$b"
411a=`PREP %xmm3 %xmm0 %xmm1 %xmm2 "-64+16*3(%rsp)"`
412b=`RD2 cx dx bp ax bx 68; RD2 bx cx dx bp ax 69; RD2 ax bx cx dx bp 70; RD2 bp ax bx cx dx 71;`
413INTERLEAVE "$a" "$b"
414RD2 dx bp ax bx cx 72; RD2 cx dx bp ax bx 73; RD2 bx cx dx bp ax 74; RD2 ax bx cx dx bp 75;
415RD2 bp ax bx cx dx 76; RD2 dx bp ax bx cx 77; RD2 cx dx bp ax bx 78; RD2 bx cx dx bp ax 79;
Denys Vlasenko947bef02022-01-03 13:00:07 +0100416} | grep -v '^$'
417
418echo "
419 popq %rdi #
Denys Vlasenko947bef02022-01-03 13:00:07 +0100420 popq %r12 #
Denys Vlasenko805ecec2022-01-08 00:41:09 +0100421 addl %eax, 80(%rdi) # ctx->hash[0] += a
Denys Vlasenko947bef02022-01-03 13:00:07 +0100422 popq %r13 #
Denys Vlasenko805ecec2022-01-08 00:41:09 +0100423 addl %ebx, 84(%rdi) # ctx->hash[1] += b
Denys Vlasenko947bef02022-01-03 13:00:07 +0100424 popq %r14 #
Denys Vlasenko805ecec2022-01-08 00:41:09 +0100425 addl %ecx, 88(%rdi) # ctx->hash[2] += c
Denys Vlasenko205042c2022-01-25 17:00:57 +0100426# popq %r15 #
Denys Vlasenko805ecec2022-01-08 00:41:09 +0100427 addl %edx, 92(%rdi) # ctx->hash[3] += d
Denys Vlasenkoc3cfcc92022-01-04 01:45:13 +0100428 popq %rbx #
Denys Vlasenko805ecec2022-01-08 00:41:09 +0100429 addl %ebp, 96(%rdi) # ctx->hash[4] += e
Denys Vlasenkoc3cfcc92022-01-04 01:45:13 +0100430 popq %rbp #
Denys Vlasenko947bef02022-01-03 13:00:07 +0100431
432 ret
433 .size sha1_process_block64, .-sha1_process_block64
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100434
Denys Vlasenko81541462022-02-11 06:08:27 +0100435 .section .rodata.cst16.bswap32_mask, \"aM\", @progbits, 16
436 .balign 16
437bswap32_mask:
438 .octa 0x0c0d0e0f08090a0b0405060700010203
439
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100440 .section .rodata.cst16.sha1const, \"aM\", @progbits, 16
Denys Vlasenko6472ac92022-02-03 14:15:20 +0100441 .balign 16
Denys Vlasenko4923f742022-02-08 03:29:16 +0100442sha1const:
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100443 .long 0x5A827999
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100444 .long 0x6ED9EBA1
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100445 .long 0x8F1BBCDC
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100446 .long 0xCA62C1D6
447
Denys Vlasenko947bef02022-01-03 13:00:07 +0100448#endif"