sha512-armv8.pl 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894
  1. #! /usr/bin/env perl
  2. # Copyright 2014-2020 The OpenSSL Project Authors. All Rights Reserved.
  3. #
  4. # Licensed under the Apache License 2.0 (the "License"). You may not use
  5. # this file except in compliance with the License. You can obtain a copy
  6. # in the file LICENSE in the source distribution or at
  7. # https://www.openssl.org/source/license.html
  8. # ====================================================================
  9. # Written by Andy Polyakov <appro@openssl.org> for the OpenSSL
  10. # project. The module is, however, dual licensed under OpenSSL and
  11. # CRYPTOGAMS licenses depending on where you obtain it. For further
  12. # details see http://www.openssl.org/~appro/cryptogams/.
  13. #
  14. # Permission to use under GPLv2 terms is granted.
  15. # ====================================================================
  16. #
  17. # SHA256/512 for ARMv8.
  18. #
  19. # Performance in cycles per processed byte and improvement coefficient
  20. # over code generated with "default" compiler:
  21. #
  22. # SHA256-hw SHA256(*) SHA512
  23. # Apple A7 1.97 10.5 (+33%) 6.73 (-1%(**))
  24. # Cortex-A53 2.38 15.5 (+115%) 10.0 (+150%(***))
  25. # Cortex-A57 2.31 11.6 (+86%) 7.51 (+260%(***))
  26. # Denver 2.01 10.5 (+26%) 6.70 (+8%)
  27. # X-Gene 20.0 (+100%) 12.8 (+300%(***))
  28. # Mongoose 2.36 13.0 (+50%) 8.36 (+33%)
  29. # Kryo 1.92 17.4 (+30%) 11.2 (+8%)
  30. # ThunderX2 2.54 13.2 (+40%) 8.40 (+18%)
  31. #
  32. # (*) Software SHA256 results are of lesser relevance, presented
  33. # mostly for informational purposes.
  34. # (**) The result is a trade-off: it's possible to improve it by
  35. # 10% (or by 1 cycle per round), but at the cost of 20% loss
  36. # on Cortex-A53 (or by 4 cycles per round).
  37. # (***) Super-impressive coefficients over gcc-generated code are
  38. # indication of some compiler "pathology", most notably code
  39. # generated with -mgeneral-regs-only is significantly faster
  40. # and the gap is only 40-90%.
  41. #
  42. # October 2016.
  43. #
  44. # Originally it was reckoned that it makes no sense to implement NEON
  45. # version of SHA256 for 64-bit processors. This is because performance
  46. # improvement on most wide-spread Cortex-A5x processors was observed
  47. # to be marginal, same on Cortex-A53 and ~10% on A57. But then it was
  48. # observed that 32-bit NEON SHA256 performs significantly better than
  49. # 64-bit scalar version on *some* of the more recent processors. As
  50. # result 64-bit NEON version of SHA256 was added to provide best
  51. # all-round performance. For example it executes ~30% faster on X-Gene
  52. # and Mongoose. [For reference, NEON version of SHA512 is bound to
  53. # deliver much less improvement, likely *negative* on Cortex-A5x.
  54. # Which is why NEON support is limited to SHA256.]
  55. # $output is the last argument if it looks like a file (it has an extension)
  56. # $flavour is the first argument if it doesn't look like a file
  57. $output = $#ARGV >= 0 && $ARGV[$#ARGV] =~ m|\.\w+$| ? pop : undef;
  58. $flavour = $#ARGV >= 0 && $ARGV[0] !~ m|\.| ? shift : undef;
  59. if ($flavour && $flavour ne "void") {
  60. $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1;
  61. ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or
  62. ( $xlate="${dir}../../perlasm/arm-xlate.pl" and -f $xlate) or
  63. die "can't locate arm-xlate.pl";
  64. open OUT,"| \"$^X\" $xlate $flavour \"$output\""
  65. or die "can't call $xlate: $!";
  66. *STDOUT=*OUT;
  67. } else {
  68. $output and open STDOUT,">$output";
  69. }
  70. if ($output =~ /512/) {
  71. $BITS=512;
  72. $SZ=8;
  73. @Sigma0=(28,34,39);
  74. @Sigma1=(14,18,41);
  75. @sigma0=(1, 8, 7);
  76. @sigma1=(19,61, 6);
  77. $rounds=80;
  78. $reg_t="x";
  79. } else {
  80. $BITS=256;
  81. $SZ=4;
  82. @Sigma0=( 2,13,22);
  83. @Sigma1=( 6,11,25);
  84. @sigma0=( 7,18, 3);
  85. @sigma1=(17,19,10);
  86. $rounds=64;
  87. $reg_t="w";
  88. }
  89. $func="sha${BITS}_block_data_order";
  90. ($ctx,$inp,$num,$Ktbl)=map("x$_",(0..2,30));
  91. @X=map("$reg_t$_",(3..15,0..2));
  92. @V=($A,$B,$C,$D,$E,$F,$G,$H)=map("$reg_t$_",(20..27));
  93. ($t0,$t1,$t2,$t3)=map("$reg_t$_",(16,17,19,28));
  94. sub BODY_00_xx {
  95. my ($i,$a,$b,$c,$d,$e,$f,$g,$h)=@_;
  96. my $j=($i+1)&15;
  97. my ($T0,$T1,$T2)=(@X[($i-8)&15],@X[($i-9)&15],@X[($i-10)&15]);
  98. $T0=@X[$i+3] if ($i<11);
  99. $code.=<<___ if ($i<16);
  100. #ifndef __AARCH64EB__
  101. rev @X[$i],@X[$i] // $i
  102. #endif
  103. ___
  104. $code.=<<___ if ($i<13 && ($i&1));
  105. ldp @X[$i+1],@X[$i+2],[$inp],#2*$SZ
  106. ___
  107. $code.=<<___ if ($i==13);
  108. ldp @X[14],@X[15],[$inp]
  109. ___
  110. $code.=<<___ if ($i>=14);
  111. ldr @X[($i-11)&15],[sp,#`$SZ*(($i-11)%4)`]
  112. ___
  113. $code.=<<___ if ($i>0 && $i<16);
  114. add $a,$a,$t1 // h+=Sigma0(a)
  115. ___
  116. $code.=<<___ if ($i>=11);
  117. str @X[($i-8)&15],[sp,#`$SZ*(($i-8)%4)`]
  118. ___
  119. # While ARMv8 specifies merged rotate-n-logical operation such as
  120. # 'eor x,y,z,ror#n', it was found to negatively affect performance
  121. # on Apple A7. The reason seems to be that it requires even 'y' to
  122. # be available earlier. This means that such merged instruction is
  123. # not necessarily best choice on critical path... On the other hand
  124. # Cortex-A5x handles merged instructions much better than disjoint
  125. # rotate and logical... See (**) footnote above.
  126. $code.=<<___ if ($i<15);
  127. ror $t0,$e,#$Sigma1[0]
  128. add $h,$h,$t2 // h+=K[i]
  129. eor $T0,$e,$e,ror#`$Sigma1[2]-$Sigma1[1]`
  130. and $t1,$f,$e
  131. bic $t2,$g,$e
  132. add $h,$h,@X[$i&15] // h+=X[i]
  133. orr $t1,$t1,$t2 // Ch(e,f,g)
  134. eor $t2,$a,$b // a^b, b^c in next round
  135. eor $t0,$t0,$T0,ror#$Sigma1[1] // Sigma1(e)
  136. ror $T0,$a,#$Sigma0[0]
  137. add $h,$h,$t1 // h+=Ch(e,f,g)
  138. eor $t1,$a,$a,ror#`$Sigma0[2]-$Sigma0[1]`
  139. add $h,$h,$t0 // h+=Sigma1(e)
  140. and $t3,$t3,$t2 // (b^c)&=(a^b)
  141. add $d,$d,$h // d+=h
  142. eor $t3,$t3,$b // Maj(a,b,c)
  143. eor $t1,$T0,$t1,ror#$Sigma0[1] // Sigma0(a)
  144. add $h,$h,$t3 // h+=Maj(a,b,c)
  145. ldr $t3,[$Ktbl],#$SZ // *K++, $t2 in next round
  146. //add $h,$h,$t1 // h+=Sigma0(a)
  147. ___
  148. $code.=<<___ if ($i>=15);
  149. ror $t0,$e,#$Sigma1[0]
  150. add $h,$h,$t2 // h+=K[i]
  151. ror $T1,@X[($j+1)&15],#$sigma0[0]
  152. and $t1,$f,$e
  153. ror $T2,@X[($j+14)&15],#$sigma1[0]
  154. bic $t2,$g,$e
  155. ror $T0,$a,#$Sigma0[0]
  156. add $h,$h,@X[$i&15] // h+=X[i]
  157. eor $t0,$t0,$e,ror#$Sigma1[1]
  158. eor $T1,$T1,@X[($j+1)&15],ror#$sigma0[1]
  159. orr $t1,$t1,$t2 // Ch(e,f,g)
  160. eor $t2,$a,$b // a^b, b^c in next round
  161. eor $t0,$t0,$e,ror#$Sigma1[2] // Sigma1(e)
  162. eor $T0,$T0,$a,ror#$Sigma0[1]
  163. add $h,$h,$t1 // h+=Ch(e,f,g)
  164. and $t3,$t3,$t2 // (b^c)&=(a^b)
  165. eor $T2,$T2,@X[($j+14)&15],ror#$sigma1[1]
  166. eor $T1,$T1,@X[($j+1)&15],lsr#$sigma0[2] // sigma0(X[i+1])
  167. add $h,$h,$t0 // h+=Sigma1(e)
  168. eor $t3,$t3,$b // Maj(a,b,c)
  169. eor $t1,$T0,$a,ror#$Sigma0[2] // Sigma0(a)
  170. eor $T2,$T2,@X[($j+14)&15],lsr#$sigma1[2] // sigma1(X[i+14])
  171. add @X[$j],@X[$j],@X[($j+9)&15]
  172. add $d,$d,$h // d+=h
  173. add $h,$h,$t3 // h+=Maj(a,b,c)
  174. ldr $t3,[$Ktbl],#$SZ // *K++, $t2 in next round
  175. add @X[$j],@X[$j],$T1
  176. add $h,$h,$t1 // h+=Sigma0(a)
  177. add @X[$j],@X[$j],$T2
  178. ___
  179. ($t2,$t3)=($t3,$t2);
  180. }
  181. $code.=<<___;
  182. #include "arm_arch.h"
  183. #ifndef __KERNEL__
  184. .extern OPENSSL_armcap_P
  185. .hidden OPENSSL_armcap_P
  186. #endif
  187. .text
  188. .globl $func
  189. .type $func,%function
  190. .align 6
  191. $func:
  192. AARCH64_VALID_CALL_TARGET
  193. #ifndef __KERNEL__
  194. adrp x16,OPENSSL_armcap_P
  195. ldr w16,[x16,#:lo12:OPENSSL_armcap_P]
  196. ___
  197. $code.=<<___ if ($SZ==4);
  198. tst w16,#ARMV8_SHA256
  199. b.ne .Lv8_entry
  200. tst w16,#ARMV7_NEON
  201. b.ne .Lneon_entry
  202. ___
  203. $code.=<<___ if ($SZ==8);
  204. tst w16,#ARMV8_SHA512
  205. b.ne .Lv8_entry
  206. ___
  207. $code.=<<___;
  208. #endif
  209. AARCH64_SIGN_LINK_REGISTER
  210. stp x29,x30,[sp,#-128]!
  211. add x29,sp,#0
  212. stp x19,x20,[sp,#16]
  213. stp x21,x22,[sp,#32]
  214. stp x23,x24,[sp,#48]
  215. stp x25,x26,[sp,#64]
  216. stp x27,x28,[sp,#80]
  217. sub sp,sp,#4*$SZ
  218. ldp $A,$B,[$ctx] // load context
  219. ldp $C,$D,[$ctx,#2*$SZ]
  220. ldp $E,$F,[$ctx,#4*$SZ]
  221. add $num,$inp,$num,lsl#`log(16*$SZ)/log(2)` // end of input
  222. ldp $G,$H,[$ctx,#6*$SZ]
  223. adr $Ktbl,.LK$BITS
  224. stp $ctx,$num,[x29,#96]
  225. .Loop:
  226. ldp @X[0],@X[1],[$inp],#2*$SZ
  227. ldr $t2,[$Ktbl],#$SZ // *K++
  228. eor $t3,$B,$C // magic seed
  229. str $inp,[x29,#112]
  230. ___
  231. for ($i=0;$i<16;$i++) { &BODY_00_xx($i,@V); unshift(@V,pop(@V)); }
  232. $code.=".Loop_16_xx:\n";
  233. for (;$i<32;$i++) { &BODY_00_xx($i,@V); unshift(@V,pop(@V)); }
  234. $code.=<<___;
  235. cbnz $t2,.Loop_16_xx
  236. ldp $ctx,$num,[x29,#96]
  237. ldr $inp,[x29,#112]
  238. sub $Ktbl,$Ktbl,#`$SZ*($rounds+1)` // rewind
  239. ldp @X[0],@X[1],[$ctx]
  240. ldp @X[2],@X[3],[$ctx,#2*$SZ]
  241. add $inp,$inp,#14*$SZ // advance input pointer
  242. ldp @X[4],@X[5],[$ctx,#4*$SZ]
  243. add $A,$A,@X[0]
  244. ldp @X[6],@X[7],[$ctx,#6*$SZ]
  245. add $B,$B,@X[1]
  246. add $C,$C,@X[2]
  247. add $D,$D,@X[3]
  248. stp $A,$B,[$ctx]
  249. add $E,$E,@X[4]
  250. add $F,$F,@X[5]
  251. stp $C,$D,[$ctx,#2*$SZ]
  252. add $G,$G,@X[6]
  253. add $H,$H,@X[7]
  254. cmp $inp,$num
  255. stp $E,$F,[$ctx,#4*$SZ]
  256. stp $G,$H,[$ctx,#6*$SZ]
  257. b.ne .Loop
  258. ldp x19,x20,[x29,#16]
  259. add sp,sp,#4*$SZ
  260. ldp x21,x22,[x29,#32]
  261. ldp x23,x24,[x29,#48]
  262. ldp x25,x26,[x29,#64]
  263. ldp x27,x28,[x29,#80]
  264. ldp x29,x30,[sp],#128
  265. AARCH64_VALIDATE_LINK_REGISTER
  266. ret
  267. .size $func,.-$func
  268. .align 6
  269. .type .LK$BITS,%object
  270. .LK$BITS:
  271. ___
  272. $code.=<<___ if ($SZ==8);
  273. .quad 0x428a2f98d728ae22,0x7137449123ef65cd
  274. .quad 0xb5c0fbcfec4d3b2f,0xe9b5dba58189dbbc
  275. .quad 0x3956c25bf348b538,0x59f111f1b605d019
  276. .quad 0x923f82a4af194f9b,0xab1c5ed5da6d8118
  277. .quad 0xd807aa98a3030242,0x12835b0145706fbe
  278. .quad 0x243185be4ee4b28c,0x550c7dc3d5ffb4e2
  279. .quad 0x72be5d74f27b896f,0x80deb1fe3b1696b1
  280. .quad 0x9bdc06a725c71235,0xc19bf174cf692694
  281. .quad 0xe49b69c19ef14ad2,0xefbe4786384f25e3
  282. .quad 0x0fc19dc68b8cd5b5,0x240ca1cc77ac9c65
  283. .quad 0x2de92c6f592b0275,0x4a7484aa6ea6e483
  284. .quad 0x5cb0a9dcbd41fbd4,0x76f988da831153b5
  285. .quad 0x983e5152ee66dfab,0xa831c66d2db43210
  286. .quad 0xb00327c898fb213f,0xbf597fc7beef0ee4
  287. .quad 0xc6e00bf33da88fc2,0xd5a79147930aa725
  288. .quad 0x06ca6351e003826f,0x142929670a0e6e70
  289. .quad 0x27b70a8546d22ffc,0x2e1b21385c26c926
  290. .quad 0x4d2c6dfc5ac42aed,0x53380d139d95b3df
  291. .quad 0x650a73548baf63de,0x766a0abb3c77b2a8
  292. .quad 0x81c2c92e47edaee6,0x92722c851482353b
  293. .quad 0xa2bfe8a14cf10364,0xa81a664bbc423001
  294. .quad 0xc24b8b70d0f89791,0xc76c51a30654be30
  295. .quad 0xd192e819d6ef5218,0xd69906245565a910
  296. .quad 0xf40e35855771202a,0x106aa07032bbd1b8
  297. .quad 0x19a4c116b8d2d0c8,0x1e376c085141ab53
  298. .quad 0x2748774cdf8eeb99,0x34b0bcb5e19b48a8
  299. .quad 0x391c0cb3c5c95a63,0x4ed8aa4ae3418acb
  300. .quad 0x5b9cca4f7763e373,0x682e6ff3d6b2b8a3
  301. .quad 0x748f82ee5defb2fc,0x78a5636f43172f60
  302. .quad 0x84c87814a1f0ab72,0x8cc702081a6439ec
  303. .quad 0x90befffa23631e28,0xa4506cebde82bde9
  304. .quad 0xbef9a3f7b2c67915,0xc67178f2e372532b
  305. .quad 0xca273eceea26619c,0xd186b8c721c0c207
  306. .quad 0xeada7dd6cde0eb1e,0xf57d4f7fee6ed178
  307. .quad 0x06f067aa72176fba,0x0a637dc5a2c898a6
  308. .quad 0x113f9804bef90dae,0x1b710b35131c471b
  309. .quad 0x28db77f523047d84,0x32caab7b40c72493
  310. .quad 0x3c9ebe0a15c9bebc,0x431d67c49c100d4c
  311. .quad 0x4cc5d4becb3e42b6,0x597f299cfc657e2a
  312. .quad 0x5fcb6fab3ad6faec,0x6c44198c4a475817
  313. .quad 0 // terminator
  314. ___
  315. $code.=<<___ if ($SZ==4);
  316. .long 0x428a2f98,0x71374491,0xb5c0fbcf,0xe9b5dba5
  317. .long 0x3956c25b,0x59f111f1,0x923f82a4,0xab1c5ed5
  318. .long 0xd807aa98,0x12835b01,0x243185be,0x550c7dc3
  319. .long 0x72be5d74,0x80deb1fe,0x9bdc06a7,0xc19bf174
  320. .long 0xe49b69c1,0xefbe4786,0x0fc19dc6,0x240ca1cc
  321. .long 0x2de92c6f,0x4a7484aa,0x5cb0a9dc,0x76f988da
  322. .long 0x983e5152,0xa831c66d,0xb00327c8,0xbf597fc7
  323. .long 0xc6e00bf3,0xd5a79147,0x06ca6351,0x14292967
  324. .long 0x27b70a85,0x2e1b2138,0x4d2c6dfc,0x53380d13
  325. .long 0x650a7354,0x766a0abb,0x81c2c92e,0x92722c85
  326. .long 0xa2bfe8a1,0xa81a664b,0xc24b8b70,0xc76c51a3
  327. .long 0xd192e819,0xd6990624,0xf40e3585,0x106aa070
  328. .long 0x19a4c116,0x1e376c08,0x2748774c,0x34b0bcb5
  329. .long 0x391c0cb3,0x4ed8aa4a,0x5b9cca4f,0x682e6ff3
  330. .long 0x748f82ee,0x78a5636f,0x84c87814,0x8cc70208
  331. .long 0x90befffa,0xa4506ceb,0xbef9a3f7,0xc67178f2
  332. .long 0 //terminator
  333. ___
  334. $code.=<<___;
  335. .size .LK$BITS,.-.LK$BITS
  336. .asciz "SHA$BITS block transform for ARMv8, CRYPTOGAMS by <appro\@openssl.org>"
  337. .align 2
  338. ___
  339. if ($SZ==4) {
  340. my $Ktbl="x3";
  341. my ($ABCD,$EFGH,$abcd)=map("v$_.16b",(0..2));
  342. my @MSG=map("v$_.16b",(4..7));
  343. my ($W0,$W1)=("v16.4s","v17.4s");
  344. my ($ABCD_SAVE,$EFGH_SAVE)=("v18.16b","v19.16b");
  345. $code.=<<___;
  346. #ifndef __KERNEL__
  347. .type sha256_block_armv8,%function
  348. .align 6
  349. sha256_block_armv8:
  350. .Lv8_entry:
  351. // Armv8.3-A PAuth: even though x30 is pushed to stack it is not popped later.
  352. stp x29,x30,[sp,#-16]!
  353. add x29,sp,#0
  354. ld1.32 {$ABCD,$EFGH},[$ctx]
  355. adr $Ktbl,.LK256
  356. .Loop_hw:
  357. ld1 {@MSG[0]-@MSG[3]},[$inp],#64
  358. sub $num,$num,#1
  359. ld1.32 {$W0},[$Ktbl],#16
  360. rev32 @MSG[0],@MSG[0]
  361. rev32 @MSG[1],@MSG[1]
  362. rev32 @MSG[2],@MSG[2]
  363. rev32 @MSG[3],@MSG[3]
  364. orr $ABCD_SAVE,$ABCD,$ABCD // offload
  365. orr $EFGH_SAVE,$EFGH,$EFGH
  366. ___
  367. for($i=0;$i<12;$i++) {
  368. $code.=<<___;
  369. ld1.32 {$W1},[$Ktbl],#16
  370. add.i32 $W0,$W0,@MSG[0]
  371. sha256su0 @MSG[0],@MSG[1]
  372. orr $abcd,$ABCD,$ABCD
  373. sha256h $ABCD,$EFGH,$W0
  374. sha256h2 $EFGH,$abcd,$W0
  375. sha256su1 @MSG[0],@MSG[2],@MSG[3]
  376. ___
  377. ($W0,$W1)=($W1,$W0); push(@MSG,shift(@MSG));
  378. }
  379. $code.=<<___;
  380. ld1.32 {$W1},[$Ktbl],#16
  381. add.i32 $W0,$W0,@MSG[0]
  382. orr $abcd,$ABCD,$ABCD
  383. sha256h $ABCD,$EFGH,$W0
  384. sha256h2 $EFGH,$abcd,$W0
  385. ld1.32 {$W0},[$Ktbl],#16
  386. add.i32 $W1,$W1,@MSG[1]
  387. orr $abcd,$ABCD,$ABCD
  388. sha256h $ABCD,$EFGH,$W1
  389. sha256h2 $EFGH,$abcd,$W1
  390. ld1.32 {$W1},[$Ktbl]
  391. add.i32 $W0,$W0,@MSG[2]
  392. sub $Ktbl,$Ktbl,#$rounds*$SZ-16 // rewind
  393. orr $abcd,$ABCD,$ABCD
  394. sha256h $ABCD,$EFGH,$W0
  395. sha256h2 $EFGH,$abcd,$W0
  396. add.i32 $W1,$W1,@MSG[3]
  397. orr $abcd,$ABCD,$ABCD
  398. sha256h $ABCD,$EFGH,$W1
  399. sha256h2 $EFGH,$abcd,$W1
  400. add.i32 $ABCD,$ABCD,$ABCD_SAVE
  401. add.i32 $EFGH,$EFGH,$EFGH_SAVE
  402. cbnz $num,.Loop_hw
  403. st1.32 {$ABCD,$EFGH},[$ctx]
  404. ldr x29,[sp],#16
  405. ret
  406. .size sha256_block_armv8,.-sha256_block_armv8
  407. #endif
  408. ___
  409. }
  410. if ($SZ==4) { ######################################### NEON stuff #
  411. # You'll surely note a lot of similarities with sha256-armv4 module,
  412. # and of course it's not a coincidence. sha256-armv4 was used as
  413. # initial template, but was adapted for ARMv8 instruction set and
  414. # extensively re-tuned for all-round performance.
  415. my @V = ($A,$B,$C,$D,$E,$F,$G,$H) = map("w$_",(3..10));
  416. my ($t0,$t1,$t2,$t3,$t4) = map("w$_",(11..15));
  417. my $Ktbl="x16";
  418. my $Xfer="x17";
  419. my @X = map("q$_",(0..3));
  420. my ($T0,$T1,$T2,$T3,$T4,$T5,$T6,$T7) = map("q$_",(4..7,16..19));
  421. my $j=0;
  422. sub AUTOLOAD() # thunk [simplified] x86-style perlasm
  423. { my $opcode = $AUTOLOAD; $opcode =~ s/.*:://; $opcode =~ s/_/\./;
  424. my $arg = pop;
  425. $arg = "#$arg" if ($arg*1 eq $arg);
  426. $code .= "\t$opcode\t".join(',',@_,$arg)."\n";
  427. }
  428. sub Dscalar { shift =~ m|[qv]([0-9]+)|?"d$1":""; }
  429. sub Dlo { shift =~ m|[qv]([0-9]+)|?"v$1.d[0]":""; }
  430. sub Dhi { shift =~ m|[qv]([0-9]+)|?"v$1.d[1]":""; }
  431. sub Xupdate()
  432. { use integer;
  433. my $body = shift;
  434. my @insns = (&$body,&$body,&$body,&$body);
  435. my ($a,$b,$c,$d,$e,$f,$g,$h);
  436. &ext_8 ($T0,@X[0],@X[1],4); # X[1..4]
  437. eval(shift(@insns));
  438. eval(shift(@insns));
  439. eval(shift(@insns));
  440. &ext_8 ($T3,@X[2],@X[3],4); # X[9..12]
  441. eval(shift(@insns));
  442. eval(shift(@insns));
  443. &mov (&Dscalar($T7),&Dhi(@X[3])); # X[14..15]
  444. eval(shift(@insns));
  445. eval(shift(@insns));
  446. &ushr_32 ($T2,$T0,$sigma0[0]);
  447. eval(shift(@insns));
  448. &ushr_32 ($T1,$T0,$sigma0[2]);
  449. eval(shift(@insns));
  450. &add_32 (@X[0],@X[0],$T3); # X[0..3] += X[9..12]
  451. eval(shift(@insns));
  452. &sli_32 ($T2,$T0,32-$sigma0[0]);
  453. eval(shift(@insns));
  454. eval(shift(@insns));
  455. &ushr_32 ($T3,$T0,$sigma0[1]);
  456. eval(shift(@insns));
  457. eval(shift(@insns));
  458. &eor_8 ($T1,$T1,$T2);
  459. eval(shift(@insns));
  460. eval(shift(@insns));
  461. &sli_32 ($T3,$T0,32-$sigma0[1]);
  462. eval(shift(@insns));
  463. eval(shift(@insns));
  464. &ushr_32 ($T4,$T7,$sigma1[0]);
  465. eval(shift(@insns));
  466. eval(shift(@insns));
  467. &eor_8 ($T1,$T1,$T3); # sigma0(X[1..4])
  468. eval(shift(@insns));
  469. eval(shift(@insns));
  470. &sli_32 ($T4,$T7,32-$sigma1[0]);
  471. eval(shift(@insns));
  472. eval(shift(@insns));
  473. &ushr_32 ($T5,$T7,$sigma1[2]);
  474. eval(shift(@insns));
  475. eval(shift(@insns));
  476. &ushr_32 ($T3,$T7,$sigma1[1]);
  477. eval(shift(@insns));
  478. eval(shift(@insns));
  479. &add_32 (@X[0],@X[0],$T1); # X[0..3] += sigma0(X[1..4])
  480. eval(shift(@insns));
  481. eval(shift(@insns));
  482. &sli_u32 ($T3,$T7,32-$sigma1[1]);
  483. eval(shift(@insns));
  484. eval(shift(@insns));
  485. &eor_8 ($T5,$T5,$T4);
  486. eval(shift(@insns));
  487. eval(shift(@insns));
  488. eval(shift(@insns));
  489. &eor_8 ($T5,$T5,$T3); # sigma1(X[14..15])
  490. eval(shift(@insns));
  491. eval(shift(@insns));
  492. eval(shift(@insns));
  493. &add_32 (@X[0],@X[0],$T5); # X[0..1] += sigma1(X[14..15])
  494. eval(shift(@insns));
  495. eval(shift(@insns));
  496. eval(shift(@insns));
  497. &ushr_32 ($T6,@X[0],$sigma1[0]);
  498. eval(shift(@insns));
  499. &ushr_32 ($T7,@X[0],$sigma1[2]);
  500. eval(shift(@insns));
  501. eval(shift(@insns));
  502. &sli_32 ($T6,@X[0],32-$sigma1[0]);
  503. eval(shift(@insns));
  504. &ushr_32 ($T5,@X[0],$sigma1[1]);
  505. eval(shift(@insns));
  506. eval(shift(@insns));
  507. &eor_8 ($T7,$T7,$T6);
  508. eval(shift(@insns));
  509. eval(shift(@insns));
  510. &sli_32 ($T5,@X[0],32-$sigma1[1]);
  511. eval(shift(@insns));
  512. eval(shift(@insns));
  513. &ld1_32 ("{$T0}","[$Ktbl], #16");
  514. eval(shift(@insns));
  515. &eor_8 ($T7,$T7,$T5); # sigma1(X[16..17])
  516. eval(shift(@insns));
  517. eval(shift(@insns));
  518. &eor_8 ($T5,$T5,$T5);
  519. eval(shift(@insns));
  520. eval(shift(@insns));
  521. &mov (&Dhi($T5), &Dlo($T7));
  522. eval(shift(@insns));
  523. eval(shift(@insns));
  524. eval(shift(@insns));
  525. &add_32 (@X[0],@X[0],$T5); # X[2..3] += sigma1(X[16..17])
  526. eval(shift(@insns));
  527. eval(shift(@insns));
  528. eval(shift(@insns));
  529. &add_32 ($T0,$T0,@X[0]);
  530. while($#insns>=1) { eval(shift(@insns)); }
  531. &st1_32 ("{$T0}","[$Xfer], #16");
  532. eval(shift(@insns));
  533. push(@X,shift(@X)); # "rotate" X[]
  534. }
  535. sub Xpreload()
  536. { use integer;
  537. my $body = shift;
  538. my @insns = (&$body,&$body,&$body,&$body);
  539. my ($a,$b,$c,$d,$e,$f,$g,$h);
  540. eval(shift(@insns));
  541. eval(shift(@insns));
  542. &ld1_8 ("{@X[0]}","[$inp],#16");
  543. eval(shift(@insns));
  544. eval(shift(@insns));
  545. &ld1_32 ("{$T0}","[$Ktbl],#16");
  546. eval(shift(@insns));
  547. eval(shift(@insns));
  548. eval(shift(@insns));
  549. eval(shift(@insns));
  550. &rev32 (@X[0],@X[0]);
  551. eval(shift(@insns));
  552. eval(shift(@insns));
  553. eval(shift(@insns));
  554. eval(shift(@insns));
  555. &add_32 ($T0,$T0,@X[0]);
  556. foreach (@insns) { eval; } # remaining instructions
  557. &st1_32 ("{$T0}","[$Xfer], #16");
  558. push(@X,shift(@X)); # "rotate" X[]
  559. }
  560. sub body_00_15 () {
  561. (
  562. '($a,$b,$c,$d,$e,$f,$g,$h)=@V;'.
  563. '&add ($h,$h,$t1)', # h+=X[i]+K[i]
  564. '&add ($a,$a,$t4);'. # h+=Sigma0(a) from the past
  565. '&and ($t1,$f,$e)',
  566. '&bic ($t4,$g,$e)',
  567. '&eor ($t0,$e,$e,"ror#".($Sigma1[1]-$Sigma1[0]))',
  568. '&add ($a,$a,$t2)', # h+=Maj(a,b,c) from the past
  569. '&orr ($t1,$t1,$t4)', # Ch(e,f,g)
  570. '&eor ($t0,$t0,$e,"ror#".($Sigma1[2]-$Sigma1[0]))', # Sigma1(e)
  571. '&eor ($t4,$a,$a,"ror#".($Sigma0[1]-$Sigma0[0]))',
  572. '&add ($h,$h,$t1)', # h+=Ch(e,f,g)
  573. '&ror ($t0,$t0,"#$Sigma1[0]")',
  574. '&eor ($t2,$a,$b)', # a^b, b^c in next round
  575. '&eor ($t4,$t4,$a,"ror#".($Sigma0[2]-$Sigma0[0]))', # Sigma0(a)
  576. '&add ($h,$h,$t0)', # h+=Sigma1(e)
  577. '&ldr ($t1,sprintf "[sp,#%d]",4*(($j+1)&15)) if (($j&15)!=15);'.
  578. '&ldr ($t1,"[$Ktbl]") if ($j==15);'.
  579. '&and ($t3,$t3,$t2)', # (b^c)&=(a^b)
  580. '&ror ($t4,$t4,"#$Sigma0[0]")',
  581. '&add ($d,$d,$h)', # d+=h
  582. '&eor ($t3,$t3,$b)', # Maj(a,b,c)
  583. '$j++; unshift(@V,pop(@V)); ($t2,$t3)=($t3,$t2);'
  584. )
  585. }
  586. $code.=<<___;
  587. #ifdef __KERNEL__
  588. .globl sha256_block_neon
  589. #endif
  590. .type sha256_block_neon,%function
  591. .align 4
  592. sha256_block_neon:
  593. AARCH64_VALID_CALL_TARGET
  594. .Lneon_entry:
  595. // Armv8.3-A PAuth: even though x30 is pushed to stack it is not popped later
  596. stp x29, x30, [sp, #-16]!
  597. mov x29, sp
  598. sub sp,sp,#16*4
  599. adr $Ktbl,.LK256
  600. add $num,$inp,$num,lsl#6 // len to point at the end of inp
  601. ld1.8 {@X[0]},[$inp], #16
  602. ld1.8 {@X[1]},[$inp], #16
  603. ld1.8 {@X[2]},[$inp], #16
  604. ld1.8 {@X[3]},[$inp], #16
  605. ld1.32 {$T0},[$Ktbl], #16
  606. ld1.32 {$T1},[$Ktbl], #16
  607. ld1.32 {$T2},[$Ktbl], #16
  608. ld1.32 {$T3},[$Ktbl], #16
  609. rev32 @X[0],@X[0] // yes, even on
  610. rev32 @X[1],@X[1] // big-endian
  611. rev32 @X[2],@X[2]
  612. rev32 @X[3],@X[3]
  613. mov $Xfer,sp
  614. add.32 $T0,$T0,@X[0]
  615. add.32 $T1,$T1,@X[1]
  616. add.32 $T2,$T2,@X[2]
  617. st1.32 {$T0-$T1},[$Xfer], #32
  618. add.32 $T3,$T3,@X[3]
  619. st1.32 {$T2-$T3},[$Xfer]
  620. sub $Xfer,$Xfer,#32
  621. ldp $A,$B,[$ctx]
  622. ldp $C,$D,[$ctx,#8]
  623. ldp $E,$F,[$ctx,#16]
  624. ldp $G,$H,[$ctx,#24]
  625. ldr $t1,[sp,#0]
  626. mov $t2,wzr
  627. eor $t3,$B,$C
  628. mov $t4,wzr
  629. b .L_00_48
  630. .align 4
  631. .L_00_48:
  632. ___
  633. &Xupdate(\&body_00_15);
  634. &Xupdate(\&body_00_15);
  635. &Xupdate(\&body_00_15);
  636. &Xupdate(\&body_00_15);
  637. $code.=<<___;
  638. cmp $t1,#0 // check for K256 terminator
  639. ldr $t1,[sp,#0]
  640. sub $Xfer,$Xfer,#64
  641. bne .L_00_48
  642. sub $Ktbl,$Ktbl,#256 // rewind $Ktbl
  643. cmp $inp,$num
  644. mov $Xfer, #64
  645. csel $Xfer, $Xfer, xzr, eq
  646. sub $inp,$inp,$Xfer // avoid SEGV
  647. mov $Xfer,sp
  648. ___
  649. &Xpreload(\&body_00_15);
  650. &Xpreload(\&body_00_15);
  651. &Xpreload(\&body_00_15);
  652. &Xpreload(\&body_00_15);
  653. $code.=<<___;
  654. add $A,$A,$t4 // h+=Sigma0(a) from the past
  655. ldp $t0,$t1,[$ctx,#0]
  656. add $A,$A,$t2 // h+=Maj(a,b,c) from the past
  657. ldp $t2,$t3,[$ctx,#8]
  658. add $A,$A,$t0 // accumulate
  659. add $B,$B,$t1
  660. ldp $t0,$t1,[$ctx,#16]
  661. add $C,$C,$t2
  662. add $D,$D,$t3
  663. ldp $t2,$t3,[$ctx,#24]
  664. add $E,$E,$t0
  665. add $F,$F,$t1
  666. ldr $t1,[sp,#0]
  667. stp $A,$B,[$ctx,#0]
  668. add $G,$G,$t2
  669. mov $t2,wzr
  670. stp $C,$D,[$ctx,#8]
  671. add $H,$H,$t3
  672. stp $E,$F,[$ctx,#16]
  673. eor $t3,$B,$C
  674. stp $G,$H,[$ctx,#24]
  675. mov $t4,wzr
  676. mov $Xfer,sp
  677. b.ne .L_00_48
  678. ldr x29,[x29]
  679. add sp,sp,#16*4+16
  680. ret
  681. .size sha256_block_neon,.-sha256_block_neon
  682. ___
  683. }
  684. if ($SZ==8) {
  685. my $Ktbl="x3";
  686. my @H = map("v$_.16b",(0..4));
  687. my ($fg,$de,$m9_10)=map("v$_.16b",(5..7));
  688. my @MSG=map("v$_.16b",(16..23));
  689. my ($W0,$W1)=("v24.2d","v25.2d");
  690. my ($AB,$CD,$EF,$GH)=map("v$_.16b",(26..29));
  691. $code.=<<___;
  692. #ifndef __KERNEL__
  693. .type sha512_block_armv8,%function
  694. .align 6
  695. sha512_block_armv8:
  696. .Lv8_entry:
  697. // Armv8.3-A PAuth: even though x30 is pushed to stack it is not popped later
  698. stp x29,x30,[sp,#-16]!
  699. add x29,sp,#0
  700. ld1 {@MSG[0]-@MSG[3]},[$inp],#64 // load input
  701. ld1 {@MSG[4]-@MSG[7]},[$inp],#64
  702. ld1.64 {@H[0]-@H[3]},[$ctx] // load context
  703. adr $Ktbl,.LK512
  704. rev64 @MSG[0],@MSG[0]
  705. rev64 @MSG[1],@MSG[1]
  706. rev64 @MSG[2],@MSG[2]
  707. rev64 @MSG[3],@MSG[3]
  708. rev64 @MSG[4],@MSG[4]
  709. rev64 @MSG[5],@MSG[5]
  710. rev64 @MSG[6],@MSG[6]
  711. rev64 @MSG[7],@MSG[7]
  712. b .Loop_hw
  713. .align 4
  714. .Loop_hw:
  715. ld1.64 {$W0},[$Ktbl],#16
  716. subs $num,$num,#1
  717. sub x4,$inp,#128
  718. orr $AB,@H[0],@H[0] // offload
  719. orr $CD,@H[1],@H[1]
  720. orr $EF,@H[2],@H[2]
  721. orr $GH,@H[3],@H[3]
  722. csel $inp,$inp,x4,ne // conditional rewind
  723. ___
  724. for($i=0;$i<32;$i++) {
  725. $code.=<<___;
  726. add.i64 $W0,$W0,@MSG[0]
  727. ld1.64 {$W1},[$Ktbl],#16
  728. ext $W0,$W0,$W0,#8
  729. ext $fg,@H[2],@H[3],#8
  730. ext $de,@H[1],@H[2],#8
  731. add.i64 @H[3],@H[3],$W0 // "T1 + H + K512[i]"
  732. sha512su0 @MSG[0],@MSG[1]
  733. ext $m9_10,@MSG[4],@MSG[5],#8
  734. sha512h @H[3],$fg,$de
  735. sha512su1 @MSG[0],@MSG[7],$m9_10
  736. add.i64 @H[4],@H[1],@H[3] // "D + T1"
  737. sha512h2 @H[3],$H[1],@H[0]
  738. ___
  739. ($W0,$W1)=($W1,$W0); push(@MSG,shift(@MSG));
  740. @H = (@H[3],@H[0],@H[4],@H[2],@H[1]);
  741. }
  742. for(;$i<40;$i++) {
  743. $code.=<<___ if ($i<39);
  744. ld1.64 {$W1},[$Ktbl],#16
  745. ___
  746. $code.=<<___ if ($i==39);
  747. sub $Ktbl,$Ktbl,#$rounds*$SZ // rewind
  748. ___
  749. $code.=<<___;
  750. add.i64 $W0,$W0,@MSG[0]
  751. ld1 {@MSG[0]},[$inp],#16 // load next input
  752. ext $W0,$W0,$W0,#8
  753. ext $fg,@H[2],@H[3],#8
  754. ext $de,@H[1],@H[2],#8
  755. add.i64 @H[3],@H[3],$W0 // "T1 + H + K512[i]"
  756. sha512h @H[3],$fg,$de
  757. rev64 @MSG[0],@MSG[0]
  758. add.i64 @H[4],@H[1],@H[3] // "D + T1"
  759. sha512h2 @H[3],$H[1],@H[0]
  760. ___
  761. ($W0,$W1)=($W1,$W0); push(@MSG,shift(@MSG));
  762. @H = (@H[3],@H[0],@H[4],@H[2],@H[1]);
  763. }
  764. $code.=<<___;
  765. add.i64 @H[0],@H[0],$AB // accumulate
  766. add.i64 @H[1],@H[1],$CD
  767. add.i64 @H[2],@H[2],$EF
  768. add.i64 @H[3],@H[3],$GH
  769. cbnz $num,.Loop_hw
  770. st1.64 {@H[0]-@H[3]},[$ctx] // store context
  771. ldr x29,[sp],#16
  772. ret
  773. .size sha512_block_armv8,.-sha512_block_armv8
  774. #endif
  775. ___
  776. }
  777. { my %opcode = (
  778. "sha256h" => 0x5e004000, "sha256h2" => 0x5e005000,
  779. "sha256su0" => 0x5e282800, "sha256su1" => 0x5e006000 );
  780. sub unsha256 {
  781. my ($mnemonic,$arg)=@_;
  782. $arg =~ m/[qv]([0-9]+)[^,]*,\s*[qv]([0-9]+)[^,]*(?:,\s*[qv]([0-9]+))?/o
  783. &&
  784. sprintf ".inst\t0x%08x\t//%s %s",
  785. $opcode{$mnemonic}|$1|($2<<5)|($3<<16),
  786. $mnemonic,$arg;
  787. }
  788. }
  789. { my %opcode = (
  790. "sha512h" => 0xce608000, "sha512h2" => 0xce608400,
  791. "sha512su0" => 0xcec08000, "sha512su1" => 0xce608800 );
  792. sub unsha512 {
  793. my ($mnemonic,$arg)=@_;
  794. $arg =~ m/[qv]([0-9]+)[^,]*,\s*[qv]([0-9]+)[^,]*(?:,\s*[qv]([0-9]+))?/o
  795. &&
  796. sprintf ".inst\t0x%08x\t//%s %s",
  797. $opcode{$mnemonic}|$1|($2<<5)|($3<<16),
  798. $mnemonic,$arg;
  799. }
  800. }
  801. open SELF,$0;
  802. while(<SELF>) {
  803. next if (/^#!/);
  804. last if (!s/^#/\/\// and !/^$/);
  805. print;
  806. }
  807. close SELF;
  808. foreach(split("\n",$code)) {
  809. s/\`([^\`]*)\`/eval($1)/ge;
  810. s/\b(sha512\w+)\s+([qv].*)/unsha512($1,$2)/ge or
  811. s/\b(sha256\w+)\s+([qv].*)/unsha256($1,$2)/ge;
  812. s/\bq([0-9]+)\b/v$1.16b/g; # old->new registers
  813. s/\.[ui]?8(\s)/$1/;
  814. s/\.\w?64\b// and s/\.16b/\.2d/g or
  815. s/\.\w?32\b// and s/\.16b/\.4s/g;
  816. m/\bext\b/ and s/\.2d/\.16b/g or
  817. m/(ld|st)1[^\[]+\[0\]/ and s/\.4s/\.s/g;
  818. print $_,"\n";
  819. }
  820. close STDOUT or die "error closing STDOUT: $!";