md5-x86_64.pl 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. #!/usr/bin/perl -w
  2. #
  3. # MD5 optimized for AMD64.
  4. #
  5. # Author: Marc Bevand <bevand_m (at) epita.fr>
  6. # Licence: I hereby disclaim the copyright on this code and place it
  7. # in the public domain.
  8. #
  9. use strict;
  10. my $code;
  11. # round1_step() does:
  12. # dst = x + ((dst + F(x,y,z) + X[k] + T_i) <<< s)
  13. # %r10d = X[k_next]
  14. # %r11d = z' (copy of z for the next step)
  15. # Each round1_step() takes about 5.71 clocks (9 instructions, 1.58 IPC)
  16. sub round1_step
  17. {
  18. my ($pos, $dst, $x, $y, $z, $k_next, $T_i, $s) = @_;
  19. $code .= " mov 0*4(%rsi), %r10d /* (NEXT STEP) X[0] */\n" if ($pos == -1);
  20. $code .= " mov %edx, %r11d /* (NEXT STEP) z' = %edx */\n" if ($pos == -1);
  21. $code .= <<EOF;
  22. xor $y, %r11d /* y ^ ... */
  23. lea $T_i($dst,%r10d),$dst /* Const + dst + ... */
  24. and $x, %r11d /* x & ... */
  25. xor $z, %r11d /* z ^ ... */
  26. mov $k_next*4(%rsi),%r10d /* (NEXT STEP) X[$k_next] */
  27. add %r11d, $dst /* dst += ... */
  28. rol \$$s, $dst /* dst <<< s */
  29. mov $y, %r11d /* (NEXT STEP) z' = $y */
  30. add $x, $dst /* dst += x */
  31. EOF
  32. }
  33. # round2_step() does:
  34. # dst = x + ((dst + G(x,y,z) + X[k] + T_i) <<< s)
  35. # %r10d = X[k_next]
  36. # %r11d = y' (copy of y for the next step)
  37. # Each round2_step() takes about 6.22 clocks (9 instructions, 1.45 IPC)
  38. sub round2_step
  39. {
  40. my ($pos, $dst, $x, $y, $z, $k_next, $T_i, $s) = @_;
  41. $code .= " mov 1*4(%rsi), %r10d /* (NEXT STEP) X[1] */\n" if ($pos == -1);
  42. $code .= " mov %ecx, %r11d /* (NEXT STEP) y' = %ecx */\n" if ($pos == -1);
  43. $code .= <<EOF;
  44. xor $x, %r11d /* x ^ ... */
  45. lea $T_i($dst,%r10d),$dst /* Const + dst + ... */
  46. and $z, %r11d /* z & ... */
  47. xor $y, %r11d /* y ^ ... */
  48. mov $k_next*4(%rsi),%r10d /* (NEXT STEP) X[$k_next] */
  49. add %r11d, $dst /* dst += ... */
  50. rol \$$s, $dst /* dst <<< s */
  51. mov $x, %r11d /* (NEXT STEP) y' = $x */
  52. add $x, $dst /* dst += x */
  53. EOF
  54. }
  55. # round3_step() does:
  56. # dst = x + ((dst + H(x,y,z) + X[k] + T_i) <<< s)
  57. # %r10d = X[k_next]
  58. # %r11d = y' (copy of y for the next step)
  59. # Each round3_step() takes about 4.26 clocks (8 instructions, 1.88 IPC)
  60. sub round3_step
  61. {
  62. my ($pos, $dst, $x, $y, $z, $k_next, $T_i, $s) = @_;
  63. $code .= " mov 5*4(%rsi), %r10d /* (NEXT STEP) X[5] */\n" if ($pos == -1);
  64. $code .= " mov %ecx, %r11d /* (NEXT STEP) y' = %ecx */\n" if ($pos == -1);
  65. $code .= <<EOF;
  66. lea $T_i($dst,%r10d),$dst /* Const + dst + ... */
  67. mov $k_next*4(%rsi),%r10d /* (NEXT STEP) X[$k_next] */
  68. xor $z, %r11d /* z ^ ... */
  69. xor $x, %r11d /* x ^ ... */
  70. add %r11d, $dst /* dst += ... */
  71. rol \$$s, $dst /* dst <<< s */
  72. mov $x, %r11d /* (NEXT STEP) y' = $x */
  73. add $x, $dst /* dst += x */
  74. EOF
  75. }
  76. # round4_step() does:
  77. # dst = x + ((dst + I(x,y,z) + X[k] + T_i) <<< s)
  78. # %r10d = X[k_next]
  79. # %r11d = not z' (copy of not z for the next step)
  80. # Each round4_step() takes about 5.27 clocks (9 instructions, 1.71 IPC)
  81. sub round4_step
  82. {
  83. my ($pos, $dst, $x, $y, $z, $k_next, $T_i, $s) = @_;
  84. $code .= " mov 0*4(%rsi), %r10d /* (NEXT STEP) X[0] */\n" if ($pos == -1);
  85. $code .= " mov \$0xffffffff, %r11d\n" if ($pos == -1);
  86. $code .= " xor %edx, %r11d /* (NEXT STEP) not z' = not %edx*/\n"
  87. if ($pos == -1);
  88. $code .= <<EOF;
  89. lea $T_i($dst,%r10d),$dst /* Const + dst + ... */
  90. or $x, %r11d /* x | ... */
  91. xor $y, %r11d /* y ^ ... */
  92. add %r11d, $dst /* dst += ... */
  93. mov $k_next*4(%rsi),%r10d /* (NEXT STEP) X[$k_next] */
  94. mov \$0xffffffff, %r11d
  95. rol \$$s, $dst /* dst <<< s */
  96. xor $y, %r11d /* (NEXT STEP) not z' = not $y */
  97. add $x, $dst /* dst += x */
  98. EOF
  99. }
  100. my $output = shift;
  101. open STDOUT,"| $^X ../perlasm/x86_64-xlate.pl $output";
  102. $code .= <<EOF;
  103. .text
  104. .align 16
  105. .globl md5_block_asm_data_order
  106. .type md5_block_asm_data_order,\@function,3
  107. md5_block_asm_data_order:
  108. push %rbp
  109. push %rbx
  110. push %r14
  111. push %r15
  112. # rdi = arg #1 (ctx, MD5_CTX pointer)
  113. # rsi = arg #2 (ptr, data pointer)
  114. # rdx = arg #3 (nbr, number of 16-word blocks to process)
  115. mov %rdi, %rbp # rbp = ctx
  116. shl \$6, %rdx # rdx = nbr in bytes
  117. lea (%rsi,%rdx), %rdi # rdi = end
  118. mov 0*4(%rbp), %eax # eax = ctx->A
  119. mov 1*4(%rbp), %ebx # ebx = ctx->B
  120. mov 2*4(%rbp), %ecx # ecx = ctx->C
  121. mov 3*4(%rbp), %edx # edx = ctx->D
  122. # end is 'rdi'
  123. # ptr is 'rsi'
  124. # A is 'eax'
  125. # B is 'ebx'
  126. # C is 'ecx'
  127. # D is 'edx'
  128. cmp %rdi, %rsi # cmp end with ptr
  129. je .Lend # jmp if ptr == end
  130. # BEGIN of loop over 16-word blocks
  131. .Lloop: # save old values of A, B, C, D
  132. mov %eax, %r8d
  133. mov %ebx, %r9d
  134. mov %ecx, %r14d
  135. mov %edx, %r15d
  136. EOF
  137. round1_step(-1,'%eax','%ebx','%ecx','%edx', '1','0xd76aa478', '7');
  138. round1_step( 0,'%edx','%eax','%ebx','%ecx', '2','0xe8c7b756','12');
  139. round1_step( 0,'%ecx','%edx','%eax','%ebx', '3','0x242070db','17');
  140. round1_step( 0,'%ebx','%ecx','%edx','%eax', '4','0xc1bdceee','22');
  141. round1_step( 0,'%eax','%ebx','%ecx','%edx', '5','0xf57c0faf', '7');
  142. round1_step( 0,'%edx','%eax','%ebx','%ecx', '6','0x4787c62a','12');
  143. round1_step( 0,'%ecx','%edx','%eax','%ebx', '7','0xa8304613','17');
  144. round1_step( 0,'%ebx','%ecx','%edx','%eax', '8','0xfd469501','22');
  145. round1_step( 0,'%eax','%ebx','%ecx','%edx', '9','0x698098d8', '7');
  146. round1_step( 0,'%edx','%eax','%ebx','%ecx','10','0x8b44f7af','12');
  147. round1_step( 0,'%ecx','%edx','%eax','%ebx','11','0xffff5bb1','17');
  148. round1_step( 0,'%ebx','%ecx','%edx','%eax','12','0x895cd7be','22');
  149. round1_step( 0,'%eax','%ebx','%ecx','%edx','13','0x6b901122', '7');
  150. round1_step( 0,'%edx','%eax','%ebx','%ecx','14','0xfd987193','12');
  151. round1_step( 0,'%ecx','%edx','%eax','%ebx','15','0xa679438e','17');
  152. round1_step( 1,'%ebx','%ecx','%edx','%eax', '0','0x49b40821','22');
  153. round2_step(-1,'%eax','%ebx','%ecx','%edx', '6','0xf61e2562', '5');
  154. round2_step( 0,'%edx','%eax','%ebx','%ecx','11','0xc040b340', '9');
  155. round2_step( 0,'%ecx','%edx','%eax','%ebx', '0','0x265e5a51','14');
  156. round2_step( 0,'%ebx','%ecx','%edx','%eax', '5','0xe9b6c7aa','20');
  157. round2_step( 0,'%eax','%ebx','%ecx','%edx','10','0xd62f105d', '5');
  158. round2_step( 0,'%edx','%eax','%ebx','%ecx','15', '0x2441453', '9');
  159. round2_step( 0,'%ecx','%edx','%eax','%ebx', '4','0xd8a1e681','14');
  160. round2_step( 0,'%ebx','%ecx','%edx','%eax', '9','0xe7d3fbc8','20');
  161. round2_step( 0,'%eax','%ebx','%ecx','%edx','14','0x21e1cde6', '5');
  162. round2_step( 0,'%edx','%eax','%ebx','%ecx', '3','0xc33707d6', '9');
  163. round2_step( 0,'%ecx','%edx','%eax','%ebx', '8','0xf4d50d87','14');
  164. round2_step( 0,'%ebx','%ecx','%edx','%eax','13','0x455a14ed','20');
  165. round2_step( 0,'%eax','%ebx','%ecx','%edx', '2','0xa9e3e905', '5');
  166. round2_step( 0,'%edx','%eax','%ebx','%ecx', '7','0xfcefa3f8', '9');
  167. round2_step( 0,'%ecx','%edx','%eax','%ebx','12','0x676f02d9','14');
  168. round2_step( 1,'%ebx','%ecx','%edx','%eax', '0','0x8d2a4c8a','20');
  169. round3_step(-1,'%eax','%ebx','%ecx','%edx', '8','0xfffa3942', '4');
  170. round3_step( 0,'%edx','%eax','%ebx','%ecx','11','0x8771f681','11');
  171. round3_step( 0,'%ecx','%edx','%eax','%ebx','14','0x6d9d6122','16');
  172. round3_step( 0,'%ebx','%ecx','%edx','%eax', '1','0xfde5380c','23');
  173. round3_step( 0,'%eax','%ebx','%ecx','%edx', '4','0xa4beea44', '4');
  174. round3_step( 0,'%edx','%eax','%ebx','%ecx', '7','0x4bdecfa9','11');
  175. round3_step( 0,'%ecx','%edx','%eax','%ebx','10','0xf6bb4b60','16');
  176. round3_step( 0,'%ebx','%ecx','%edx','%eax','13','0xbebfbc70','23');
  177. round3_step( 0,'%eax','%ebx','%ecx','%edx', '0','0x289b7ec6', '4');
  178. round3_step( 0,'%edx','%eax','%ebx','%ecx', '3','0xeaa127fa','11');
  179. round3_step( 0,'%ecx','%edx','%eax','%ebx', '6','0xd4ef3085','16');
  180. round3_step( 0,'%ebx','%ecx','%edx','%eax', '9', '0x4881d05','23');
  181. round3_step( 0,'%eax','%ebx','%ecx','%edx','12','0xd9d4d039', '4');
  182. round3_step( 0,'%edx','%eax','%ebx','%ecx','15','0xe6db99e5','11');
  183. round3_step( 0,'%ecx','%edx','%eax','%ebx', '2','0x1fa27cf8','16');
  184. round3_step( 1,'%ebx','%ecx','%edx','%eax', '0','0xc4ac5665','23');
  185. round4_step(-1,'%eax','%ebx','%ecx','%edx', '7','0xf4292244', '6');
  186. round4_step( 0,'%edx','%eax','%ebx','%ecx','14','0x432aff97','10');
  187. round4_step( 0,'%ecx','%edx','%eax','%ebx', '5','0xab9423a7','15');
  188. round4_step( 0,'%ebx','%ecx','%edx','%eax','12','0xfc93a039','21');
  189. round4_step( 0,'%eax','%ebx','%ecx','%edx', '3','0x655b59c3', '6');
  190. round4_step( 0,'%edx','%eax','%ebx','%ecx','10','0x8f0ccc92','10');
  191. round4_step( 0,'%ecx','%edx','%eax','%ebx', '1','0xffeff47d','15');
  192. round4_step( 0,'%ebx','%ecx','%edx','%eax', '8','0x85845dd1','21');
  193. round4_step( 0,'%eax','%ebx','%ecx','%edx','15','0x6fa87e4f', '6');
  194. round4_step( 0,'%edx','%eax','%ebx','%ecx', '6','0xfe2ce6e0','10');
  195. round4_step( 0,'%ecx','%edx','%eax','%ebx','13','0xa3014314','15');
  196. round4_step( 0,'%ebx','%ecx','%edx','%eax', '4','0x4e0811a1','21');
  197. round4_step( 0,'%eax','%ebx','%ecx','%edx','11','0xf7537e82', '6');
  198. round4_step( 0,'%edx','%eax','%ebx','%ecx', '2','0xbd3af235','10');
  199. round4_step( 0,'%ecx','%edx','%eax','%ebx', '9','0x2ad7d2bb','15');
  200. round4_step( 1,'%ebx','%ecx','%edx','%eax', '0','0xeb86d391','21');
  201. $code .= <<EOF;
  202. # add old values of A, B, C, D
  203. add %r8d, %eax
  204. add %r9d, %ebx
  205. add %r14d, %ecx
  206. add %r15d, %edx
  207. # loop control
  208. add \$64, %rsi # ptr += 64
  209. cmp %rdi, %rsi # cmp end with ptr
  210. jb .Lloop # jmp if ptr < end
  211. # END of loop over 16-word blocks
  212. .Lend:
  213. mov %eax, 0*4(%rbp) # ctx->A = A
  214. mov %ebx, 1*4(%rbp) # ctx->B = B
  215. mov %ecx, 2*4(%rbp) # ctx->C = C
  216. mov %edx, 3*4(%rbp) # ctx->D = D
  217. pop %r15
  218. pop %r14
  219. pop %rbx
  220. pop %rbp
  221. ret
  222. .size md5_block_asm_data_order,.-md5_block_asm_data_order
  223. EOF
  224. print $code;
  225. close STDOUT;