您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

420 行
11 KiB

  1. #!/usr/bin/env perl
  2. #
  3. # ====================================================================
  4. # Written by Andy Polyakov <appro@openssl.org> for the OpenSSL
  5. # project. The module is, however, dual licensed under OpenSSL and
  6. # CRYPTOGAMS licenses depending on where you obtain it. For further
  7. # details see http://www.openssl.org/~appro/cryptogams/.
  8. # ====================================================================
  9. #
  10. # SHA256/512 for ARMv8.
  11. #
  12. # Performance in cycles per processed byte and improvement coefficient
  13. # over code generated with "default" compiler:
  14. #
  15. # SHA256-hw SHA256(*) SHA512
  16. # Apple A7 1.97 10.5 (+33%) 6.73 (-1%(**))
  17. # Cortex-A53 2.38 15.6 (+110%) 10.1 (+190%(***))
  18. # Cortex-A57 2.31 11.6 (+86%) 7.51 (+260%(***))
  19. #
  20. # (*) Software SHA256 results are of lesser relevance, presented
  21. # mostly for informational purposes.
  22. # (**) The result is a trade-off: it's possible to improve it by
  23. # 10% (or by 1 cycle per round), but at the cost of 20% loss
  24. # on Cortex-A53 (or by 4 cycles per round).
  25. # (***) Super-impressive coefficients over gcc-generated code are
  26. # indication of some compiler "pathology", most notably code
  27. # generated with -mgeneral-regs-only is significanty faster
  28. # and lags behind assembly only by 50-90%.
  29. $flavour=shift;
  30. $output=shift;
  31. if ($output =~ /512/) {
  32. $BITS=512;
  33. $SZ=8;
  34. @Sigma0=(28,34,39);
  35. @Sigma1=(14,18,41);
  36. @sigma0=(1, 8, 7);
  37. @sigma1=(19,61, 6);
  38. $rounds=80;
  39. $reg_t="x";
  40. } else {
  41. $BITS=256;
  42. $SZ=4;
  43. @Sigma0=( 2,13,22);
  44. @Sigma1=( 6,11,25);
  45. @sigma0=( 7,18, 3);
  46. @sigma1=(17,19,10);
  47. $rounds=64;
  48. $reg_t="w";
  49. }
  50. $func="sha${BITS}_block_data_order";
  51. ($ctx,$inp,$num,$Ktbl)=map("x$_",(0..2,30));
  52. @X=map("$reg_t$_",(3..15,0..2));
  53. @V=($A,$B,$C,$D,$E,$F,$G,$H)=map("$reg_t$_",(20..27));
  54. ($t0,$t1,$t2,$t3)=map("$reg_t$_",(16,17,19,28));
  55. sub BODY_00_xx {
  56. my ($i,$a,$b,$c,$d,$e,$f,$g,$h)=@_;
  57. my $j=($i+1)&15;
  58. my ($T0,$T1,$T2)=(@X[($i-8)&15],@X[($i-9)&15],@X[($i-10)&15]);
  59. $T0=@X[$i+3] if ($i<11);
  60. $code.=<<___ if ($i<16);
  61. #ifndef __ARMEB__
  62. rev @X[$i],@X[$i] // $i
  63. #endif
  64. ___
  65. $code.=<<___ if ($i<13 && ($i&1));
  66. ldp @X[$i+1],@X[$i+2],[$inp],#2*$SZ
  67. ___
  68. $code.=<<___ if ($i==13);
  69. ldp @X[14],@X[15],[$inp]
  70. ___
  71. $code.=<<___ if ($i>=14);
  72. ldr @X[($i-11)&15],[sp,#`$SZ*(($i-11)%4)`]
  73. ___
  74. $code.=<<___ if ($i>0 && $i<16);
  75. add $a,$a,$t1 // h+=Sigma0(a)
  76. ___
  77. $code.=<<___ if ($i>=11);
  78. str @X[($i-8)&15],[sp,#`$SZ*(($i-8)%4)`]
  79. ___
  80. # While ARMv8 specifies merged rotate-n-logical operation such as
  81. # 'eor x,y,z,ror#n', it was found to negatively affect performance
  82. # on Apple A7. The reason seems to be that it requires even 'y' to
  83. # be available earlier. This means that such merged instruction is
  84. # not necessarily best choice on critical path... On the other hand
  85. # Cortex-A5x handles merged instructions much better than disjoint
  86. # rotate and logical... See (**) footnote above.
  87. $code.=<<___ if ($i<15);
  88. ror $t0,$e,#$Sigma1[0]
  89. add $h,$h,$t2 // h+=K[i]
  90. eor $T0,$e,$e,ror#`$Sigma1[2]-$Sigma1[1]`
  91. and $t1,$f,$e
  92. bic $t2,$g,$e
  93. add $h,$h,@X[$i&15] // h+=X[i]
  94. orr $t1,$t1,$t2 // Ch(e,f,g)
  95. eor $t2,$a,$b // a^b, b^c in next round
  96. eor $t0,$t0,$T0,ror#$Sigma1[1] // Sigma1(e)
  97. ror $T0,$a,#$Sigma0[0]
  98. add $h,$h,$t1 // h+=Ch(e,f,g)
  99. eor $t1,$a,$a,ror#`$Sigma0[2]-$Sigma0[1]`
  100. add $h,$h,$t0 // h+=Sigma1(e)
  101. and $t3,$t3,$t2 // (b^c)&=(a^b)
  102. add $d,$d,$h // d+=h
  103. eor $t3,$t3,$b // Maj(a,b,c)
  104. eor $t1,$T0,$t1,ror#$Sigma0[1] // Sigma0(a)
  105. add $h,$h,$t3 // h+=Maj(a,b,c)
  106. ldr $t3,[$Ktbl],#$SZ // *K++, $t2 in next round
  107. //add $h,$h,$t1 // h+=Sigma0(a)
  108. ___
  109. $code.=<<___ if ($i>=15);
  110. ror $t0,$e,#$Sigma1[0]
  111. add $h,$h,$t2 // h+=K[i]
  112. ror $T1,@X[($j+1)&15],#$sigma0[0]
  113. and $t1,$f,$e
  114. ror $T2,@X[($j+14)&15],#$sigma1[0]
  115. bic $t2,$g,$e
  116. ror $T0,$a,#$Sigma0[0]
  117. add $h,$h,@X[$i&15] // h+=X[i]
  118. eor $t0,$t0,$e,ror#$Sigma1[1]
  119. eor $T1,$T1,@X[($j+1)&15],ror#$sigma0[1]
  120. orr $t1,$t1,$t2 // Ch(e,f,g)
  121. eor $t2,$a,$b // a^b, b^c in next round
  122. eor $t0,$t0,$e,ror#$Sigma1[2] // Sigma1(e)
  123. eor $T0,$T0,$a,ror#$Sigma0[1]
  124. add $h,$h,$t1 // h+=Ch(e,f,g)
  125. and $t3,$t3,$t2 // (b^c)&=(a^b)
  126. eor $T2,$T2,@X[($j+14)&15],ror#$sigma1[1]
  127. eor $T1,$T1,@X[($j+1)&15],lsr#$sigma0[2] // sigma0(X[i+1])
  128. add $h,$h,$t0 // h+=Sigma1(e)
  129. eor $t3,$t3,$b // Maj(a,b,c)
  130. eor $t1,$T0,$a,ror#$Sigma0[2] // Sigma0(a)
  131. eor $T2,$T2,@X[($j+14)&15],lsr#$sigma1[2] // sigma1(X[i+14])
  132. add @X[$j],@X[$j],@X[($j+9)&15]
  133. add $d,$d,$h // d+=h
  134. add $h,$h,$t3 // h+=Maj(a,b,c)
  135. ldr $t3,[$Ktbl],#$SZ // *K++, $t2 in next round
  136. add @X[$j],@X[$j],$T1
  137. add $h,$h,$t1 // h+=Sigma0(a)
  138. add @X[$j],@X[$j],$T2
  139. ___
  140. ($t2,$t3)=($t3,$t2);
  141. }
  142. $code.=<<___;
  143. #include "arm_arch.h"
  144. .text
  145. .globl $func
  146. .type $func,%function
  147. .align 6
  148. $func:
  149. ___
  150. $code.=<<___ if ($SZ==4);
  151. ldr x16,.LOPENSSL_armcap_P
  152. adr x17,.LOPENSSL_armcap_P
  153. add x16,x16,x17
  154. ldr w16,[x16]
  155. tst w16,#ARMV8_SHA256
  156. b.ne .Lv8_entry
  157. ___
  158. $code.=<<___;
  159. stp x29,x30,[sp,#-128]!
  160. add x29,sp,#0
  161. stp x19,x20,[sp,#16]
  162. stp x21,x22,[sp,#32]
  163. stp x23,x24,[sp,#48]
  164. stp x25,x26,[sp,#64]
  165. stp x27,x28,[sp,#80]
  166. sub sp,sp,#4*$SZ
  167. ldp $A,$B,[$ctx] // load context
  168. ldp $C,$D,[$ctx,#2*$SZ]
  169. ldp $E,$F,[$ctx,#4*$SZ]
  170. add $num,$inp,$num,lsl#`log(16*$SZ)/log(2)` // end of input
  171. ldp $G,$H,[$ctx,#6*$SZ]
  172. adr $Ktbl,K$BITS
  173. stp $ctx,$num,[x29,#96]
  174. .Loop:
  175. ldp @X[0],@X[1],[$inp],#2*$SZ
  176. ldr $t2,[$Ktbl],#$SZ // *K++
  177. eor $t3,$B,$C // magic seed
  178. str $inp,[x29,#112]
  179. ___
  180. for ($i=0;$i<16;$i++) { &BODY_00_xx($i,@V); unshift(@V,pop(@V)); }
  181. $code.=".Loop_16_xx:\n";
  182. for (;$i<32;$i++) { &BODY_00_xx($i,@V); unshift(@V,pop(@V)); }
  183. $code.=<<___;
  184. cbnz $t2,.Loop_16_xx
  185. ldp $ctx,$num,[x29,#96]
  186. ldr $inp,[x29,#112]
  187. sub $Ktbl,$Ktbl,#`$SZ*($rounds+1)` // rewind
  188. ldp @X[0],@X[1],[$ctx]
  189. ldp @X[2],@X[3],[$ctx,#2*$SZ]
  190. add $inp,$inp,#14*$SZ // advance input pointer
  191. ldp @X[4],@X[5],[$ctx,#4*$SZ]
  192. add $A,$A,@X[0]
  193. ldp @X[6],@X[7],[$ctx,#6*$SZ]
  194. add $B,$B,@X[1]
  195. add $C,$C,@X[2]
  196. add $D,$D,@X[3]
  197. stp $A,$B,[$ctx]
  198. add $E,$E,@X[4]
  199. add $F,$F,@X[5]
  200. stp $C,$D,[$ctx,#2*$SZ]
  201. add $G,$G,@X[6]
  202. add $H,$H,@X[7]
  203. cmp $inp,$num
  204. stp $E,$F,[$ctx,#4*$SZ]
  205. stp $G,$H,[$ctx,#6*$SZ]
  206. b.ne .Loop
  207. ldp x19,x20,[x29,#16]
  208. add sp,sp,#4*$SZ
  209. ldp x21,x22,[x29,#32]
  210. ldp x23,x24,[x29,#48]
  211. ldp x25,x26,[x29,#64]
  212. ldp x27,x28,[x29,#80]
  213. ldp x29,x30,[sp],#128
  214. ret
  215. .size $func,.-$func
  216. .align 6
  217. .type K$BITS,%object
  218. K$BITS:
  219. ___
  220. $code.=<<___ if ($SZ==8);
  221. .quad 0x428a2f98d728ae22,0x7137449123ef65cd
  222. .quad 0xb5c0fbcfec4d3b2f,0xe9b5dba58189dbbc
  223. .quad 0x3956c25bf348b538,0x59f111f1b605d019
  224. .quad 0x923f82a4af194f9b,0xab1c5ed5da6d8118
  225. .quad 0xd807aa98a3030242,0x12835b0145706fbe
  226. .quad 0x243185be4ee4b28c,0x550c7dc3d5ffb4e2
  227. .quad 0x72be5d74f27b896f,0x80deb1fe3b1696b1
  228. .quad 0x9bdc06a725c71235,0xc19bf174cf692694
  229. .quad 0xe49b69c19ef14ad2,0xefbe4786384f25e3
  230. .quad 0x0fc19dc68b8cd5b5,0x240ca1cc77ac9c65
  231. .quad 0x2de92c6f592b0275,0x4a7484aa6ea6e483
  232. .quad 0x5cb0a9dcbd41fbd4,0x76f988da831153b5
  233. .quad 0x983e5152ee66dfab,0xa831c66d2db43210
  234. .quad 0xb00327c898fb213f,0xbf597fc7beef0ee4
  235. .quad 0xc6e00bf33da88fc2,0xd5a79147930aa725
  236. .quad 0x06ca6351e003826f,0x142929670a0e6e70
  237. .quad 0x27b70a8546d22ffc,0x2e1b21385c26c926
  238. .quad 0x4d2c6dfc5ac42aed,0x53380d139d95b3df
  239. .quad 0x650a73548baf63de,0x766a0abb3c77b2a8
  240. .quad 0x81c2c92e47edaee6,0x92722c851482353b
  241. .quad 0xa2bfe8a14cf10364,0xa81a664bbc423001
  242. .quad 0xc24b8b70d0f89791,0xc76c51a30654be30
  243. .quad 0xd192e819d6ef5218,0xd69906245565a910
  244. .quad 0xf40e35855771202a,0x106aa07032bbd1b8
  245. .quad 0x19a4c116b8d2d0c8,0x1e376c085141ab53
  246. .quad 0x2748774cdf8eeb99,0x34b0bcb5e19b48a8
  247. .quad 0x391c0cb3c5c95a63,0x4ed8aa4ae3418acb
  248. .quad 0x5b9cca4f7763e373,0x682e6ff3d6b2b8a3
  249. .quad 0x748f82ee5defb2fc,0x78a5636f43172f60
  250. .quad 0x84c87814a1f0ab72,0x8cc702081a6439ec
  251. .quad 0x90befffa23631e28,0xa4506cebde82bde9
  252. .quad 0xbef9a3f7b2c67915,0xc67178f2e372532b
  253. .quad 0xca273eceea26619c,0xd186b8c721c0c207
  254. .quad 0xeada7dd6cde0eb1e,0xf57d4f7fee6ed178
  255. .quad 0x06f067aa72176fba,0x0a637dc5a2c898a6
  256. .quad 0x113f9804bef90dae,0x1b710b35131c471b
  257. .quad 0x28db77f523047d84,0x32caab7b40c72493
  258. .quad 0x3c9ebe0a15c9bebc,0x431d67c49c100d4c
  259. .quad 0x4cc5d4becb3e42b6,0x597f299cfc657e2a
  260. .quad 0x5fcb6fab3ad6faec,0x6c44198c4a475817
  261. .quad 0 // terminator
  262. ___
  263. $code.=<<___ if ($SZ==4);
  264. .long 0x428a2f98,0x71374491,0xb5c0fbcf,0xe9b5dba5
  265. .long 0x3956c25b,0x59f111f1,0x923f82a4,0xab1c5ed5
  266. .long 0xd807aa98,0x12835b01,0x243185be,0x550c7dc3
  267. .long 0x72be5d74,0x80deb1fe,0x9bdc06a7,0xc19bf174
  268. .long 0xe49b69c1,0xefbe4786,0x0fc19dc6,0x240ca1cc
  269. .long 0x2de92c6f,0x4a7484aa,0x5cb0a9dc,0x76f988da
  270. .long 0x983e5152,0xa831c66d,0xb00327c8,0xbf597fc7
  271. .long 0xc6e00bf3,0xd5a79147,0x06ca6351,0x14292967
  272. .long 0x27b70a85,0x2e1b2138,0x4d2c6dfc,0x53380d13
  273. .long 0x650a7354,0x766a0abb,0x81c2c92e,0x92722c85
  274. .long 0xa2bfe8a1,0xa81a664b,0xc24b8b70,0xc76c51a3
  275. .long 0xd192e819,0xd6990624,0xf40e3585,0x106aa070
  276. .long 0x19a4c116,0x1e376c08,0x2748774c,0x34b0bcb5
  277. .long 0x391c0cb3,0x4ed8aa4a,0x5b9cca4f,0x682e6ff3
  278. .long 0x748f82ee,0x78a5636f,0x84c87814,0x8cc70208
  279. .long 0x90befffa,0xa4506ceb,0xbef9a3f7,0xc67178f2
  280. .long 0 //terminator
  281. ___
  282. $code.=<<___;
  283. .size K$BITS,.-K$BITS
  284. .align 3
  285. .LOPENSSL_armcap_P:
  286. .quad OPENSSL_armcap_P-.
  287. .asciz "SHA$BITS block transform for ARMv8, CRYPTOGAMS by <appro\@openssl.org>"
  288. .align 2
  289. ___
  290. if ($SZ==4) {
  291. my $Ktbl="x3";
  292. my ($ABCD,$EFGH,$abcd)=map("v$_.16b",(0..2));
  293. my @MSG=map("v$_.16b",(4..7));
  294. my ($W0,$W1)=("v16.4s","v17.4s");
  295. my ($ABCD_SAVE,$EFGH_SAVE)=("v18.16b","v19.16b");
  296. $code.=<<___;
  297. .type sha256_block_armv8,%function
  298. .align 6
  299. sha256_block_armv8:
  300. .Lv8_entry:
  301. stp x29,x30,[sp,#-16]!
  302. add x29,sp,#0
  303. ld1.32 {$ABCD,$EFGH},[$ctx]
  304. adr $Ktbl,K256
  305. .Loop_hw:
  306. ld1 {@MSG[0]-@MSG[3]},[$inp],#64
  307. sub $num,$num,#1
  308. ld1.32 {$W0},[$Ktbl],#16
  309. rev32 @MSG[0],@MSG[0]
  310. rev32 @MSG[1],@MSG[1]
  311. rev32 @MSG[2],@MSG[2]
  312. rev32 @MSG[3],@MSG[3]
  313. orr $ABCD_SAVE,$ABCD,$ABCD // offload
  314. orr $EFGH_SAVE,$EFGH,$EFGH
  315. ___
  316. for($i=0;$i<12;$i++) {
  317. $code.=<<___;
  318. ld1.32 {$W1},[$Ktbl],#16
  319. add.i32 $W0,$W0,@MSG[0]
  320. sha256su0 @MSG[0],@MSG[1]
  321. orr $abcd,$ABCD,$ABCD
  322. sha256h $ABCD,$EFGH,$W0
  323. sha256h2 $EFGH,$abcd,$W0
  324. sha256su1 @MSG[0],@MSG[2],@MSG[3]
  325. ___
  326. ($W0,$W1)=($W1,$W0); push(@MSG,shift(@MSG));
  327. }
  328. $code.=<<___;
  329. ld1.32 {$W1},[$Ktbl],#16
  330. add.i32 $W0,$W0,@MSG[0]
  331. orr $abcd,$ABCD,$ABCD
  332. sha256h $ABCD,$EFGH,$W0
  333. sha256h2 $EFGH,$abcd,$W0
  334. ld1.32 {$W0},[$Ktbl],#16
  335. add.i32 $W1,$W1,@MSG[1]
  336. orr $abcd,$ABCD,$ABCD
  337. sha256h $ABCD,$EFGH,$W1
  338. sha256h2 $EFGH,$abcd,$W1
  339. ld1.32 {$W1},[$Ktbl]
  340. add.i32 $W0,$W0,@MSG[2]
  341. sub $Ktbl,$Ktbl,#$rounds*$SZ-16 // rewind
  342. orr $abcd,$ABCD,$ABCD
  343. sha256h $ABCD,$EFGH,$W0
  344. sha256h2 $EFGH,$abcd,$W0
  345. add.i32 $W1,$W1,@MSG[3]
  346. orr $abcd,$ABCD,$ABCD
  347. sha256h $ABCD,$EFGH,$W1
  348. sha256h2 $EFGH,$abcd,$W1
  349. add.i32 $ABCD,$ABCD,$ABCD_SAVE
  350. add.i32 $EFGH,$EFGH,$EFGH_SAVE
  351. cbnz $num,.Loop_hw
  352. st1.32 {$ABCD,$EFGH},[$ctx]
  353. ldr x29,[sp],#16
  354. ret
  355. .size sha256_block_armv8,.-sha256_block_armv8
  356. ___
  357. }
  358. $code.=<<___;
  359. .comm OPENSSL_armcap_P,4,4
  360. ___
  361. { my %opcode = (
  362. "sha256h" => 0x5e004000, "sha256h2" => 0x5e005000,
  363. "sha256su0" => 0x5e282800, "sha256su1" => 0x5e006000 );
  364. sub unsha256 {
  365. my ($mnemonic,$arg)=@_;
  366. $arg =~ m/[qv]([0-9]+)[^,]*,\s*[qv]([0-9]+)[^,]*(?:,\s*[qv]([0-9]+))?/o
  367. &&
  368. sprintf ".inst\t0x%08x\t//%s %s",
  369. $opcode{$mnemonic}|$1|($2<<5)|($3<<16),
  370. $mnemonic,$arg;
  371. }
  372. }
  373. foreach(split("\n",$code)) {
  374. s/\`([^\`]*)\`/eval($1)/geo;
  375. s/\b(sha256\w+)\s+([qv].*)/unsha256($1,$2)/geo;
  376. s/\.\w?32\b//o and s/\.16b/\.4s/go;
  377. m/(ld|st)1[^\[]+\[0\]/o and s/\.4s/\.s/go;
  378. print $_,"\n";
  379. }
  380. close STDOUT;