blob: 47c40af0dd9a7f52003434eff1cb44b4cda6a907 [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"
37T=`printf '\t'`
38
39# SSE instructions are longer than 4 bytes on average.
40# Intel CPUs (up to Tiger Lake at least) can't decode
41# more than 16 bytes of code in one cycle.
42# By interleaving SSE code and integer code
43# we mostly achieve a situation where 16-byte decode fetch window
44# contains 4 (or more) insns.
45#
46# However. On Skylake, there was no observed difference,
47# but on Zen3, non-interleaved code is ~3% faster
48# (822 Mb/s versus 795 Mb/s hashing speed).
49# Off for now:
50interleave=false
51
52INTERLEAVE() {
53 $interleave || \
54 {
55 # Generate non-interleaved code
56 # (it should work correctly too)
57 echo "$1"
58 echo "$2"
59 return
60 }
61 (
62 echo "$1" | grep -v '^$' >"$0.temp1"
63 echo "$2" | grep -v '^$' >"$0.temp2"
64 exec 3<"$0.temp1"
65 exec 4<"$0.temp2"
66 IFS=''
67 while :; do
68 line1=''
69 line2=''
70 while :; do
71 read -r line1 <&3
72 if test "${line1:0:1}" != "#" && test "${line1:0:2}" != "$T#"; then
73 break
74 fi
75 echo "$line1"
76 done
77 while :; do
78 read -r line2 <&4
79 if test "${line2:0:4}" = "${T}lea"; then
80 # We use 7-8 byte long forms of LEA.
81 # Do not interleave them with SSE insns
82 # which are also long.
83 echo "$line2"
84 read -r line2 <&4
85 echo "$line2"
86 continue
87 fi
88 if test "${line2:0:1}" != "#" && test "${line2:0:2}" != "$T#"; then
89 break
90 fi
91 echo "$line2"
92 done
93 test "$line1$line2" || break
94 echo "$line1"
95 echo "$line2"
96 done
97 rm "$0.temp1" "$0.temp2"
98 )
99}
Denys Vlasenko14335682022-01-08 22:43:24 +0100100
Denys Vlasenko947bef02022-01-03 13:00:07 +0100101echo \
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100102"### Generated by hash_md5_sha_x86-64.S.sh ###
Denys Vlasenko947bef02022-01-03 13:00:07 +0100103
104#if CONFIG_SHA1_SMALL == 0 && defined(__GNUC__) && defined(__x86_64__)
Denys Vlasenko205042c2022-01-25 17:00:57 +0100105 .section .text.sha1_process_block64, \"ax\", @progbits
Denys Vlasenko805ecec2022-01-08 00:41:09 +0100106 .globl sha1_process_block64
107 .hidden sha1_process_block64
Denys Vlasenko947bef02022-01-03 13:00:07 +0100108 .type sha1_process_block64, @function
109
Denys Vlasenkoc3cfcc92022-01-04 01:45:13 +0100110 .balign 8 # allow decoders to fetch at least 5 first insns
Denys Vlasenko947bef02022-01-03 13:00:07 +0100111sha1_process_block64:
Denys Vlasenkoc3cfcc92022-01-04 01:45:13 +0100112 pushq %rbp # 1 byte insn
113 pushq %rbx # 1 byte insn
Denys Vlasenko205042c2022-01-25 17:00:57 +0100114# pushq %r15 # 2 byte insn
Denys Vlasenkoc3cfcc92022-01-04 01:45:13 +0100115 pushq %r14 # 2 byte insn
116 pushq %r13 # 2 byte insn
117 pushq %r12 # 2 byte insn
Denys Vlasenko947bef02022-01-03 13:00:07 +0100118 pushq %rdi # we need ctx at the end
119
120#Register and stack use:
121# eax..edx: a..d
122# ebp: e
Denys Vlasenko205042c2022-01-25 17:00:57 +0100123# esi,edi,r8..r14: temps
124# r15: unused
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100125# xmm0..xmm3: W[]
126# xmm4,xmm5: temps
127# xmm6: current round constant
128# -64(%rsp): area for passing RCONST + W[] from vector to integer units
Denys Vlasenkoc3cfcc92022-01-04 01:45:13 +0100129
Denys Vlasenko947bef02022-01-03 13:00:07 +0100130 movl 80(%rdi), %eax # a = ctx->hash[0]
131 movl 84(%rdi), %ebx # b = ctx->hash[1]
132 movl 88(%rdi), %ecx # c = ctx->hash[2]
133 movl 92(%rdi), %edx # d = ctx->hash[3]
134 movl 96(%rdi), %ebp # e = ctx->hash[4]
Denys Vlasenkoc3cfcc92022-01-04 01:45:13 +0100135
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100136 movaps rconst0x5A827999(%rip), $xmmRCONST
137
Denys Vlasenko205042c2022-01-25 17:00:57 +0100138 # Load W[] to xmm registers, byteswapping on the fly.
139 #
140 # For iterations 0..15, we pass W[] in rsi,r8..r14
141 # for use in RD1A's instead of spilling them to stack.
142 # We lose parallelized addition of RCONST, but LEA
143 # can do two additions at once, so it's probably a wash.
144 # (We use rsi instead of rN because this makes two
145 # LEAs in two first RD1A's shorter by one byte).
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100146 movq 4*0(%rdi), %rsi
Denys Vlasenko205042c2022-01-25 17:00:57 +0100147 movq 4*2(%rdi), %r8
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100148 bswapq %rsi
Denys Vlasenko205042c2022-01-25 17:00:57 +0100149 bswapq %r8
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100150 rolq \$32, %rsi # rsi = W[1]:W[0]
Denys Vlasenko205042c2022-01-25 17:00:57 +0100151 rolq \$32, %r8 # r8 = W[3]:W[2]
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100152 movq %rsi, %xmm0
Denys Vlasenko205042c2022-01-25 17:00:57 +0100153 movq %r8, $xmmT1
154 punpcklqdq $xmmT1, %xmm0 # xmm0 = r8:rsi = (W[0],W[1],W[2],W[3])
155# movaps %xmm0, $xmmT1 # add RCONST, spill to stack
156# paddd $xmmRCONST, $xmmT1
157# movups $xmmT1, -64+16*0(%rsp)
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100158
Denys Vlasenko205042c2022-01-25 17:00:57 +0100159 movq 4*4(%rdi), %r9
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100160 movq 4*6(%rdi), %r10
Denys Vlasenko205042c2022-01-25 17:00:57 +0100161 bswapq %r9
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100162 bswapq %r10
Denys Vlasenko205042c2022-01-25 17:00:57 +0100163 rolq \$32, %r9 # r9 = W[5]:W[4]
164 rolq \$32, %r10 # r10 = W[7]:W[6]
165 movq %r9, %xmm1
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100166 movq %r10, $xmmT1
Denys Vlasenko205042c2022-01-25 17:00:57 +0100167 punpcklqdq $xmmT1, %xmm1 # xmm1 = r10:r9 = (W[4],W[5],W[6],W[7])
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100168
Denys Vlasenko205042c2022-01-25 17:00:57 +0100169 movq 4*8(%rdi), %r11
170 movq 4*10(%rdi), %r12
171 bswapq %r11
Denys Vlasenkoc3cfcc92022-01-04 01:45:13 +0100172 bswapq %r12
Denys Vlasenko205042c2022-01-25 17:00:57 +0100173 rolq \$32, %r11 # r11 = W[9]:W[8]
174 rolq \$32, %r12 # r12 = W[11]:W[10]
175 movq %r11, %xmm2
176 movq %r12, $xmmT1
177 punpcklqdq $xmmT1, %xmm2 # xmm2 = r12:r11 = (W[8],W[9],W[10],W[11])
178
179 movq 4*12(%rdi), %r13
180 movq 4*14(%rdi), %r14
181 bswapq %r13
Denys Vlasenkoc3cfcc92022-01-04 01:45:13 +0100182 bswapq %r14
Denys Vlasenko205042c2022-01-25 17:00:57 +0100183 rolq \$32, %r13 # r13 = W[13]:W[12]
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100184 rolq \$32, %r14 # r14 = W[15]:W[14]
Denys Vlasenko205042c2022-01-25 17:00:57 +0100185 movq %r13, %xmm3
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100186 movq %r14, $xmmT1
Denys Vlasenko205042c2022-01-25 17:00:57 +0100187 punpcklqdq $xmmT1, %xmm3 # xmm3 = r14:r13 = (W[12],W[13],W[14],W[15])
Denys Vlasenko39369ff2022-01-23 09:27:30 +0100188"
189
190PREP() {
191local xmmW0=$1
192local xmmW4=$2
193local xmmW8=$3
194local xmmW12=$4
195# the above must be %xmm0..3 in some permutation
196local dstmem=$5
197#W[0] = rol(W[13] ^ W[8] ^ W[2] ^ W[0], 1);
198#W[1] = rol(W[14] ^ W[9] ^ W[3] ^ W[1], 1);
199#W[2] = rol(W[15] ^ W[10] ^ W[4] ^ W[2], 1);
200#W[3] = rol( 0 ^ W[11] ^ W[5] ^ W[3], 1);
201#W[3] ^= rol(W[0], 1);
202echo "# PREP $@
203 movaps $xmmW12, $xmmT1
204 psrldq \$4, $xmmT1 # rshift by 4 bytes: T1 = ([13],[14],[15],0)
205
206 pshufd \$0x4e, $xmmW0, $xmmT2 # 01001110=2,3,0,1 shuffle, ([2],[3],x,x)
207 punpcklqdq $xmmW4, $xmmT2 # T2 = W4[0..63]:T2[0..63] = ([2],[3],[4],[5])
208
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 Vlasenko39369ff2022-01-23 09:27:30 +0100261 leal $RCONST(%r$e,%rsi), %e$e # e += RCONST + W[n]
Denys Vlasenko205042c2022-01-25 17:00:57 +0100262 shrq \$32, %rsi
263";test $n0 = 1 && echo "
264 leal $RCONST(%r$e,%rsi), %e$e # e += RCONST + W[n]
265";test $n0 -ge 2 && test $((n0 & 1)) = 0 && echo "
266 leal $RCONST(%r$e,%r$rN), %e$e # e += RCONST + W[n]
267 shrq \$32, %r$rN
268";test $n0 -ge 2 && test $((n0 & 1)) = 1 && echo "
269 leal $RCONST(%r$e,%r$rN), %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"
357a=`echo " movaps rconst0x6ED9EBA1(%rip), $xmmRCONST"
358 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"
376a=`echo " movaps rconst0x8F1BBCDC(%rip), $xmmRCONST"
377 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"
395a=`echo " movaps rconst0xCA62C1D6(%rip), $xmmRCONST"
396 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
435 .section .rodata.cst16.sha1const, \"aM\", @progbits, 16
436 .align 16
437rconst0x5A827999:
438 .long 0x5A827999
439 .long 0x5A827999
440 .long 0x5A827999
441 .long 0x5A827999
442rconst0x6ED9EBA1:
443 .long 0x6ED9EBA1
444 .long 0x6ED9EBA1
445 .long 0x6ED9EBA1
446 .long 0x6ED9EBA1
447rconst0x8F1BBCDC:
448 .long 0x8F1BBCDC
449 .long 0x8F1BBCDC
450 .long 0x8F1BBCDC
451 .long 0x8F1BBCDC
452rconst0xCA62C1D6:
453 .long 0xCA62C1D6
454 .long 0xCA62C1D6
455 .long 0xCA62C1D6
456 .long 0xCA62C1D6
457
Denys Vlasenko947bef02022-01-03 13:00:07 +0100458#endif"