blob: a10ac411d5449bd929422ee01dbea55b3b5bb85e [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 Vlasenko947bef02022-01-03 13:00:07 +0100132 movl 80(%rdi), %eax # a = ctx->hash[0]
133 movl 84(%rdi), %ebx # b = ctx->hash[1]
134 movl 88(%rdi), %ecx # c = ctx->hash[2]
135 movl 92(%rdi), %edx # d = ctx->hash[3]
136 movl 96(%rdi), %ebp # e = ctx->hash[4]
Denys Vlasenkoc3cfcc92022-01-04 01:45:13 +0100137
Denys Vlasenko4923f742022-02-08 03:29:16 +0100138 movaps sha1const(%rip), $xmmALLRCONST
139 pshufd \$0x00, $xmmALLRCONST, $xmmRCONST
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100140
Denys Vlasenko205042c2022-01-25 17:00:57 +0100141 # Load W[] to xmm registers, byteswapping on the fly.
142 #
143 # For iterations 0..15, we pass W[] in rsi,r8..r14
Denys Vlasenko4923f742022-02-08 03:29:16 +0100144 # for use in RD1As instead of spilling them to stack.
Denys Vlasenko205042c2022-01-25 17:00:57 +0100145 # We lose parallelized addition of RCONST, but LEA
Denys Vlasenko4923f742022-02-08 03:29:16 +0100146 # can do two additions at once, so it is probably a wash.
Denys Vlasenko205042c2022-01-25 17:00:57 +0100147 # (We use rsi instead of rN because this makes two
Denys Vlasenko4923f742022-02-08 03:29:16 +0100148 # LEAs in two first RD1As shorter by one byte).
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100149 movq 4*0(%rdi), %rsi
Denys Vlasenko205042c2022-01-25 17:00:57 +0100150 movq 4*2(%rdi), %r8
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100151 bswapq %rsi
Denys Vlasenko205042c2022-01-25 17:00:57 +0100152 bswapq %r8
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100153 rolq \$32, %rsi # rsi = W[1]:W[0]
Denys Vlasenko205042c2022-01-25 17:00:57 +0100154 rolq \$32, %r8 # r8 = W[3]:W[2]
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100155 movq %rsi, %xmm0
Denys Vlasenko205042c2022-01-25 17:00:57 +0100156 movq %r8, $xmmT1
157 punpcklqdq $xmmT1, %xmm0 # xmm0 = r8:rsi = (W[0],W[1],W[2],W[3])
158# movaps %xmm0, $xmmT1 # add RCONST, spill to stack
159# paddd $xmmRCONST, $xmmT1
160# movups $xmmT1, -64+16*0(%rsp)
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100161
Denys Vlasenko205042c2022-01-25 17:00:57 +0100162 movq 4*4(%rdi), %r9
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100163 movq 4*6(%rdi), %r10
Denys Vlasenko205042c2022-01-25 17:00:57 +0100164 bswapq %r9
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100165 bswapq %r10
Denys Vlasenko205042c2022-01-25 17:00:57 +0100166 rolq \$32, %r9 # r9 = W[5]:W[4]
167 rolq \$32, %r10 # r10 = W[7]:W[6]
168 movq %r9, %xmm1
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100169 movq %r10, $xmmT1
Denys Vlasenko205042c2022-01-25 17:00:57 +0100170 punpcklqdq $xmmT1, %xmm1 # xmm1 = r10:r9 = (W[4],W[5],W[6],W[7])
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100171
Denys Vlasenko205042c2022-01-25 17:00:57 +0100172 movq 4*8(%rdi), %r11
173 movq 4*10(%rdi), %r12
174 bswapq %r11
Denys Vlasenkoc3cfcc92022-01-04 01:45:13 +0100175 bswapq %r12
Denys Vlasenko205042c2022-01-25 17:00:57 +0100176 rolq \$32, %r11 # r11 = W[9]:W[8]
177 rolq \$32, %r12 # r12 = W[11]:W[10]
178 movq %r11, %xmm2
179 movq %r12, $xmmT1
180 punpcklqdq $xmmT1, %xmm2 # xmm2 = r12:r11 = (W[8],W[9],W[10],W[11])
181
182 movq 4*12(%rdi), %r13
183 movq 4*14(%rdi), %r14
184 bswapq %r13
Denys Vlasenkoc3cfcc92022-01-04 01:45:13 +0100185 bswapq %r14
Denys Vlasenko205042c2022-01-25 17:00:57 +0100186 rolq \$32, %r13 # r13 = W[13]:W[12]
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100187 rolq \$32, %r14 # r14 = W[15]:W[14]
Denys Vlasenko205042c2022-01-25 17:00:57 +0100188 movq %r13, %xmm3
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100189 movq %r14, $xmmT1
Denys Vlasenko205042c2022-01-25 17:00:57 +0100190 punpcklqdq $xmmT1, %xmm3 # xmm3 = r14:r13 = (W[12],W[13],W[14],W[15])
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100191"
192
193PREP() {
194local xmmW0=$1
195local xmmW4=$2
196local xmmW8=$3
197local xmmW12=$4
198# the above must be %xmm0..3 in some permutation
199local dstmem=$5
200#W[0] = rol(W[13] ^ W[8] ^ W[2] ^ W[0], 1);
201#W[1] = rol(W[14] ^ W[9] ^ W[3] ^ W[1], 1);
202#W[2] = rol(W[15] ^ W[10] ^ W[4] ^ W[2], 1);
203#W[3] = rol( 0 ^ W[11] ^ W[5] ^ W[3], 1);
204#W[3] ^= rol(W[0], 1);
205echo "# PREP $@
206 movaps $xmmW12, $xmmT1
207 psrldq \$4, $xmmT1 # rshift by 4 bytes: T1 = ([13],[14],[15],0)
208
Denys Vlasenkoc193cbd2022-02-07 02:06:18 +0100209# pshufd \$0x4e, $xmmW0, $xmmT2 # 01001110=2,3,0,1 shuffle, ([2],[3],x,x)
210# punpcklqdq $xmmW4, $xmmT2 # T2 = W4[0..63]:T2[0..63] = ([2],[3],[4],[5])
211# same result as above, but shorter and faster:
212# pshufd/shufps are subtly different: pshufd takes all dwords from source operand,
213# shufps takes dwords 0,1 from *2nd* operand, and dwords 2,3 from 1st one!
214 movaps $xmmW0, $xmmT2
215 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 +0100216
217 xorps $xmmW8, $xmmW0 # ([8],[9],[10],[11]) ^ ([0],[1],[2],[3])
218 xorps $xmmT1, $xmmT2 # ([13],[14],[15],0) ^ ([2],[3],[4],[5])
219 xorps $xmmT2, $xmmW0 # ^
220 # W0 = unrotated (W[0]..W[3]), still needs W[3] fixup
221 movaps $xmmW0, $xmmT2
222
223 xorps $xmmT1, $xmmT1 # rol(W0,1):
Denys Vlasenko205042c2022-01-25 17:00:57 +0100224 pcmpgtd $xmmW0, $xmmT1 # ffffffff for elements <0 (ones with msb bit 1)
225 paddd $xmmW0, $xmmW0 # shift left by 1
226 psubd $xmmT1, $xmmW0 # add 1 to those who had msb bit 1
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100227 # W0 = rotated (W[0]..W[3]), still needs W[3] fixup
228
229 pslldq \$12, $xmmT2 # lshift by 12 bytes: T2 = (0,0,0,unrotW[0])
230 movaps $xmmT2, $xmmT1
231 pslld \$2, $xmmT2
232 psrld \$30, $xmmT1
233# xorps $xmmT1, $xmmT2 # rol((0,0,0,unrotW[0]),2)
234 xorps $xmmT1, $xmmW0 # same result, but does not depend on/does not modify T2
235
236 xorps $xmmT2, $xmmW0 # W0 = rol(W[0]..W[3],1) ^ (0,0,0,rol(unrotW[0],2))
237"
238# movq $xmmW0, %r8 # high latency (~6 cycles)
239# movaps $xmmW0, $xmmT1
240# psrldq \$8, $xmmT1 # rshift by 8 bytes: move upper 64 bits to lower
241# movq $xmmT1, %r10 # high latency
242# movq %r8, %r9
243# movq %r10, %r11
244# shrq \$32, %r9
245# shrq \$32, %r11
246# ^^^ slower than passing the results on stack (!!!)
247echo "
248 movaps $xmmW0, $xmmT2
249 paddd $xmmRCONST, $xmmT2
250 movups $xmmT2, $dstmem
251"
Denys Vlasenko947bef02022-01-03 13:00:07 +0100252}
253
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100254# It's possible to interleave integer insns in rounds to mostly eliminate
Denys Vlasenkoc3cfcc92022-01-04 01:45:13 +0100255# dependency chains, but this likely to only help old Pentium-based
256# CPUs (ones without OOO, which can only simultaneously execute a pair
257# of _adjacent_ insns).
258# Testing on old-ish Silvermont CPU (which has OOO window of only
259# about ~8 insns) shows very small (~1%) speedup.
260
Denys Vlasenko947bef02022-01-03 13:00:07 +0100261RD1A() {
262local a=$1;local b=$2;local c=$3;local d=$4;local e=$5
263local n=$(($6))
Denys Vlasenko7abb2bb2022-01-03 17:02:48 +0100264local n0=$(((n+0) & 15))
Denys Vlasenko205042c2022-01-25 17:00:57 +0100265local rN=$((7+n0/2))
Denys Vlasenko7abb2bb2022-01-03 17:02:48 +0100266echo "
267# $n
268";test $n0 = 0 && echo "
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100269 leal $RCONST(%r$e,%rsi), %e$e # e += RCONST + W[n]
Denys Vlasenko205042c2022-01-25 17:00:57 +0100270 shrq \$32, %rsi
271";test $n0 = 1 && echo "
272 leal $RCONST(%r$e,%rsi), %e$e # e += RCONST + W[n]
273";test $n0 -ge 2 && test $((n0 & 1)) = 0 && echo "
274 leal $RCONST(%r$e,%r$rN), %e$e # e += RCONST + W[n]
275 shrq \$32, %r$rN
276";test $n0 -ge 2 && test $((n0 & 1)) = 1 && echo "
277 leal $RCONST(%r$e,%r$rN), %e$e # e += RCONST + W[n]
Denys Vlasenko947bef02022-01-03 13:00:07 +0100278";echo "
279 movl %e$c, %edi # c
280 xorl %e$d, %edi # ^d
281 andl %e$b, %edi # &b
282 xorl %e$d, %edi # (((c ^ d) & b) ^ d)
Denys Vlasenko947bef02022-01-03 13:00:07 +0100283 addl %edi, %e$e # e += (((c ^ d) & b) ^ d)
Denys Vlasenko205042c2022-01-25 17:00:57 +0100284 movl %e$a, %edi #
285 roll \$5, %edi # rotl32(a,5)
286 addl %edi, %e$e # e += rotl32(a,5)
Denys Vlasenko947bef02022-01-03 13:00:07 +0100287 rorl \$2, %e$b # b = rotl32(b,30)
288"
289}
290RD1B() {
291local a=$1;local b=$2;local c=$3;local d=$4;local e=$5
292local n=$(($6))
293local n13=$(((n+13) & 15))
294local n8=$(((n+8) & 15))
295local n2=$(((n+2) & 15))
296local n0=$(((n+0) & 15))
297echo "
298# $n
Denys Vlasenko947bef02022-01-03 13:00:07 +0100299 movl %e$c, %edi # c
300 xorl %e$d, %edi # ^d
301 andl %e$b, %edi # &b
302 xorl %e$d, %edi # (((c ^ d) & b) ^ d)
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100303 addl -64+4*$n0(%rsp), %e$e # e += RCONST + W[n & 15]
Denys Vlasenko947bef02022-01-03 13:00:07 +0100304 addl %edi, %e$e # e += (((c ^ d) & b) ^ d)
305 movl %e$a, %esi #
306 roll \$5, %esi # rotl32(a,5)
307 addl %esi, %e$e # e += rotl32(a,5)
308 rorl \$2, %e$b # b = rotl32(b,30)
309"
310}
Denys Vlasenko947bef02022-01-03 13:00:07 +0100311
312RD2() {
313local a=$1;local b=$2;local c=$3;local d=$4;local e=$5
314local n=$(($6))
315local n13=$(((n+13) & 15))
316local n8=$(((n+8) & 15))
317local n2=$(((n+2) & 15))
318local n0=$(((n+0) & 15))
319echo "
320# $n
Denys Vlasenko947bef02022-01-03 13:00:07 +0100321 movl %e$c, %edi # c
322 xorl %e$d, %edi # ^d
323 xorl %e$b, %edi # ^b
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100324 addl -64+4*$n0(%rsp), %e$e # e += RCONST + W[n & 15]
Denys Vlasenko947bef02022-01-03 13:00:07 +0100325 addl %edi, %e$e # e += (c ^ d ^ b)
326 movl %e$a, %esi #
327 roll \$5, %esi # rotl32(a,5)
328 addl %esi, %e$e # e += rotl32(a,5)
329 rorl \$2, %e$b # b = rotl32(b,30)
330"
331}
Denys Vlasenko947bef02022-01-03 13:00:07 +0100332
333RD3() {
334local a=$1;local b=$2;local c=$3;local d=$4;local e=$5
335local n=$(($6))
336local n13=$(((n+13) & 15))
337local n8=$(((n+8) & 15))
338local n2=$(((n+2) & 15))
339local n0=$(((n+0) & 15))
340echo "
341# $n
342 movl %e$b, %edi # di: b
343 movl %e$b, %esi # si: b
344 orl %e$c, %edi # di: b | c
345 andl %e$c, %esi # si: b & c
346 andl %e$d, %edi # di: (b | c) & d
347 orl %esi, %edi # ((b | c) & d) | (b & c)
Denys Vlasenko947bef02022-01-03 13:00:07 +0100348 addl %edi, %e$e # += ((b | c) & d) | (b & c)
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100349 addl -64+4*$n0(%rsp), %e$e # e += RCONST + W[n & 15]
Denys Vlasenko947bef02022-01-03 13:00:07 +0100350 movl %e$a, %esi #
351 roll \$5, %esi # rotl32(a,5)
352 addl %esi, %e$e # e += rotl32(a,5)
353 rorl \$2, %e$b # b = rotl32(b,30)
354"
355}
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100356
Denys Vlasenko947bef02022-01-03 13:00:07 +0100357{
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100358# Round 1
359RCONST=0x5A827999
360RD1A 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;
361RD1A 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;
362a=`PREP %xmm0 %xmm1 %xmm2 %xmm3 "-64+16*0(%rsp)"`
363b=`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;`
364INTERLEAVE "$a" "$b"
Denys Vlasenko4923f742022-02-08 03:29:16 +0100365a=`echo " pshufd \\$0x55, $xmmALLRCONST, $xmmRCONST"
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100366 PREP %xmm1 %xmm2 %xmm3 %xmm0 "-64+16*1(%rsp)"`
367b=`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;`
368INTERLEAVE "$a" "$b"
369a=`PREP %xmm2 %xmm3 %xmm0 %xmm1 "-64+16*2(%rsp)"`
370b=`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;`
371INTERLEAVE "$a" "$b"
372
373# Round 2
374RCONST=0x6ED9EBA1
375a=`PREP %xmm3 %xmm0 %xmm1 %xmm2 "-64+16*3(%rsp)"`
376b=`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;`
377INTERLEAVE "$a" "$b"
378a=`PREP %xmm0 %xmm1 %xmm2 %xmm3 "-64+16*0(%rsp)"`
379b=`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;`
380INTERLEAVE "$a" "$b"
381a=`PREP %xmm1 %xmm2 %xmm3 %xmm0 "-64+16*1(%rsp)"`
382b=`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;`
383INTERLEAVE "$a" "$b"
Denys Vlasenko4923f742022-02-08 03:29:16 +0100384a=`echo " pshufd \\$0xaa, $xmmALLRCONST, $xmmRCONST"
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100385 PREP %xmm2 %xmm3 %xmm0 %xmm1 "-64+16*2(%rsp)"`
386b=`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;`
387INTERLEAVE "$a" "$b"
388a=`PREP %xmm3 %xmm0 %xmm1 %xmm2 "-64+16*3(%rsp)"`
389b=`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;`
390INTERLEAVE "$a" "$b"
391
392# Round 3
393RCONST=0x8F1BBCDC
394a=`PREP %xmm0 %xmm1 %xmm2 %xmm3 "-64+16*0(%rsp)"`
395b=`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;`
396INTERLEAVE "$a" "$b"
397a=`PREP %xmm1 %xmm2 %xmm3 %xmm0 "-64+16*1(%rsp)"`
398b=`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;`
399INTERLEAVE "$a" "$b"
400a=`PREP %xmm2 %xmm3 %xmm0 %xmm1 "-64+16*2(%rsp)"`
401b=`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;`
402INTERLEAVE "$a" "$b"
Denys Vlasenko4923f742022-02-08 03:29:16 +0100403a=`echo " pshufd \\$0xff, $xmmALLRCONST, $xmmRCONST"
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100404 PREP %xmm3 %xmm0 %xmm1 %xmm2 "-64+16*3(%rsp)"`
405b=`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;`
406INTERLEAVE "$a" "$b"
407a=`PREP %xmm0 %xmm1 %xmm2 %xmm3 "-64+16*0(%rsp)"`
408b=`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;`
409INTERLEAVE "$a" "$b"
Denys Vlasenko947bef02022-01-03 13:00:07 +0100410
411# Round 4 has the same logic as round 2, only n and RCONST are different
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100412RCONST=0xCA62C1D6
413a=`PREP %xmm1 %xmm2 %xmm3 %xmm0 "-64+16*1(%rsp)"`
414b=`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;`
415INTERLEAVE "$a" "$b"
416a=`PREP %xmm2 %xmm3 %xmm0 %xmm1 "-64+16*2(%rsp)"`
417b=`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;`
418INTERLEAVE "$a" "$b"
419a=`PREP %xmm3 %xmm0 %xmm1 %xmm2 "-64+16*3(%rsp)"`
420b=`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;`
421INTERLEAVE "$a" "$b"
422RD2 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;
423RD2 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 +0100424} | grep -v '^$'
425
426echo "
427 popq %rdi #
Denys Vlasenko947bef02022-01-03 13:00:07 +0100428 popq %r12 #
Denys Vlasenko805ecec2022-01-08 00:41:09 +0100429 addl %eax, 80(%rdi) # ctx->hash[0] += a
Denys Vlasenko947bef02022-01-03 13:00:07 +0100430 popq %r13 #
Denys Vlasenko805ecec2022-01-08 00:41:09 +0100431 addl %ebx, 84(%rdi) # ctx->hash[1] += b
Denys Vlasenko947bef02022-01-03 13:00:07 +0100432 popq %r14 #
Denys Vlasenko805ecec2022-01-08 00:41:09 +0100433 addl %ecx, 88(%rdi) # ctx->hash[2] += c
Denys Vlasenko205042c2022-01-25 17:00:57 +0100434# popq %r15 #
Denys Vlasenko805ecec2022-01-08 00:41:09 +0100435 addl %edx, 92(%rdi) # ctx->hash[3] += d
Denys Vlasenkoc3cfcc92022-01-04 01:45:13 +0100436 popq %rbx #
Denys Vlasenko805ecec2022-01-08 00:41:09 +0100437 addl %ebp, 96(%rdi) # ctx->hash[4] += e
Denys Vlasenkoc3cfcc92022-01-04 01:45:13 +0100438 popq %rbp #
Denys Vlasenko947bef02022-01-03 13:00:07 +0100439
440 ret
441 .size sha1_process_block64, .-sha1_process_block64
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100442
443 .section .rodata.cst16.sha1const, \"aM\", @progbits, 16
Denys Vlasenko6472ac92022-02-03 14:15:20 +0100444 .balign 16
Denys Vlasenko4923f742022-02-08 03:29:16 +0100445sha1const:
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100446 .long 0x5A827999
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100447 .long 0x6ED9EBA1
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100448 .long 0x8F1BBCDC
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100449 .long 0xCA62C1D6
450
Denys Vlasenko947bef02022-01-03 13:00:07 +0100451#endif"