rmd-586.pl 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591
  1. #!/usr/local/bin/perl
  2. # Normal is the
  3. # ripemd160_block_asm_data_order(RIPEMD160_CTX *c, ULONG *X,int blocks);
  4. $normal=0;
  5. $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1;
  6. push(@INC,"${dir}","${dir}../../perlasm");
  7. require "x86asm.pl";
  8. &asm_init($ARGV[0],$0);
  9. $A="ecx";
  10. $B="esi";
  11. $C="edi";
  12. $D="ebx";
  13. $E="ebp";
  14. $tmp1="eax";
  15. $tmp2="edx";
  16. $KL1=0x5A827999;
  17. $KL2=0x6ED9EBA1;
  18. $KL3=0x8F1BBCDC;
  19. $KL4=0xA953FD4E;
  20. $KR0=0x50A28BE6;
  21. $KR1=0x5C4DD124;
  22. $KR2=0x6D703EF3;
  23. $KR3=0x7A6D76E9;
  24. @wl=( 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15,
  25. 7, 4,13, 1,10, 6,15, 3,12, 0, 9, 5, 2,14,11, 8,
  26. 3,10,14, 4, 9,15, 8, 1, 2, 7, 0, 6,13,11, 5,12,
  27. 1, 9,11,10, 0, 8,12, 4,13, 3, 7,15,14, 5, 6, 2,
  28. 4, 0, 5, 9, 7,12, 2,10,14, 1, 3, 8,11, 6,15,13,
  29. );
  30. @wr=( 5,14, 7, 0, 9, 2,11, 4,13, 6,15, 8, 1,10, 3,12,
  31. 6,11, 3, 7, 0,13, 5,10,14,15, 8,12, 4, 9, 1, 2,
  32. 15, 5, 1, 3, 7,14, 6, 9,11, 8,12, 2,10, 0, 4,13,
  33. 8, 6, 4, 1, 3,11,15, 0, 5,12, 2,13, 9, 7,10,14,
  34. 12,15,10, 4, 1, 5, 8, 7, 6, 2,13,14, 0, 3, 9,11,
  35. );
  36. @sl=( 11,14,15,12, 5, 8, 7, 9,11,13,14,15, 6, 7, 9, 8,
  37. 7, 6, 8,13,11, 9, 7,15, 7,12,15, 9,11, 7,13,12,
  38. 11,13, 6, 7,14, 9,13,15,14, 8,13, 6, 5,12, 7, 5,
  39. 11,12,14,15,14,15, 9, 8, 9,14, 5, 6, 8, 6, 5,12,
  40. 9,15, 5,11, 6, 8,13,12, 5,12,13,14,11, 8, 5, 6,
  41. );
  42. @sr=( 8, 9, 9,11,13,15,15, 5, 7, 7, 8,11,14,14,12, 6,
  43. 9,13,15, 7,12, 8, 9,11, 7, 7,12, 7, 6,15,13,11,
  44. 9, 7,15,11, 8, 6, 6,14,12,13, 5,14,13,13, 7, 5,
  45. 15, 5, 8,11,14,14, 6,14, 6, 9,12, 9,12, 5,15, 8,
  46. 8, 5,12, 9,12, 5,14, 6, 8,13, 6, 5,15,13,11,11,
  47. );
  48. &ripemd160_block("ripemd160_block_asm_data_order");
  49. &asm_finish();
  50. sub Xv
  51. {
  52. local($n)=@_;
  53. return(&swtmp($n));
  54. # tmp on stack
  55. }
  56. sub Np
  57. {
  58. local($p)=@_;
  59. local(%n)=($A,$E,$B,$A,$C,$B,$D,$C,$E,$D);
  60. return($n{$p});
  61. }
  62. sub RIP1
  63. {
  64. local($a,$b,$c,$d,$e,$pos,$s,$o,$pos2)=@_;
  65. &comment($p++);
  66. if ($p & 1)
  67. {
  68. #&mov($tmp1, $c) if $o == -1;
  69. &xor($tmp1, $d) if $o == -1;
  70. &mov($tmp2, &Xv($pos));
  71. &xor($tmp1, $b);
  72. &add($a, $tmp2);
  73. &rotl($c, 10);
  74. &add($a, $tmp1);
  75. &mov($tmp1, &Np($c)); # NEXT
  76. # XXX
  77. &rotl($a, $s);
  78. &add($a, $e);
  79. }
  80. else
  81. {
  82. &xor($tmp1, $d);
  83. &mov($tmp2, &Xv($pos));
  84. &xor($tmp1, $b);
  85. &add($a, $tmp1);
  86. &mov($tmp1, &Np($c)) if $o <= 0;
  87. &mov($tmp1, -1) if $o == 1;
  88. # XXX if $o == 2;
  89. &rotl($c, 10);
  90. &add($a, $tmp2);
  91. &xor($tmp1, &Np($d)) if $o <= 0;
  92. &mov($tmp2, &Xv($pos2)) if $o == 1;
  93. &mov($tmp2, &wparam(0)) if $o == 2;
  94. &rotl($a, $s);
  95. &add($a, $e);
  96. }
  97. }
  98. sub RIP2
  99. {
  100. local($a,$b,$c,$d,$e,$pos,$pos2,$s,$K,$o)=@_;
  101. # XXXXXX
  102. &comment($p++);
  103. if ($p & 1)
  104. {
  105. # &mov($tmp2, &Xv($pos)) if $o < -1;
  106. # &mov($tmp1, -1) if $o < -1;
  107. &add($a, $tmp2);
  108. &mov($tmp2, $c);
  109. &sub($tmp1, $b);
  110. &and($tmp2, $b);
  111. &and($tmp1, $d);
  112. &or($tmp2, $tmp1);
  113. &mov($tmp1, &Xv($pos2)) if $o <= 0; # XXXXXXXXXXXXXX
  114. # XXX
  115. &rotl($c, 10);
  116. &lea($a, &DWP($K,$a,$tmp2,1));
  117. &mov($tmp2, -1) if $o <= 0;
  118. # XXX
  119. &rotl($a, $s);
  120. &add($a, $e);
  121. }
  122. else
  123. {
  124. # XXX
  125. &add($a, $tmp1);
  126. &mov($tmp1, $c);
  127. &sub($tmp2, $b);
  128. &and($tmp1, $b);
  129. &and($tmp2, $d);
  130. if ($o != 2)
  131. {
  132. &or($tmp1, $tmp2);
  133. &mov($tmp2, &Xv($pos2)) if $o <= 0;
  134. &mov($tmp2, -1) if $o == 1;
  135. &rotl($c, 10);
  136. &lea($a, &DWP($K,$a,$tmp1,1));
  137. &mov($tmp1, -1) if $o <= 0;
  138. &sub($tmp2, &Np($c)) if $o == 1;
  139. } else {
  140. &or($tmp2, $tmp1);
  141. &mov($tmp1, &Np($c));
  142. &rotl($c, 10);
  143. &lea($a, &DWP($K,$a,$tmp2,1));
  144. &xor($tmp1, &Np($d));
  145. }
  146. &rotl($a, $s);
  147. &add($a, $e);
  148. }
  149. }
  150. sub RIP3
  151. {
  152. local($a,$b,$c,$d,$e,$pos,$s,$K,$o,$pos2)=@_;
  153. &comment($p++);
  154. if ($p & 1)
  155. {
  156. # &mov($tmp2, -1) if $o < -1;
  157. # &sub($tmp2, $c) if $o < -1;
  158. &mov($tmp1, &Xv($pos));
  159. &or($tmp2, $b);
  160. &add($a, $tmp1);
  161. &xor($tmp2, $d);
  162. &mov($tmp1, -1) if $o <= 0; # NEXT
  163. # XXX
  164. &rotl($c, 10);
  165. &lea($a, &DWP($K,$a,$tmp2,1));
  166. &sub($tmp1, &Np($c)) if $o <= 0; # NEXT
  167. # XXX
  168. &rotl($a, $s);
  169. &add($a, $e);
  170. }
  171. else
  172. {
  173. &mov($tmp2, &Xv($pos));
  174. &or($tmp1, $b);
  175. &add($a, $tmp2);
  176. &xor($tmp1, $d);
  177. &mov($tmp2, -1) if $o <= 0; # NEXT
  178. &mov($tmp2, -1) if $o == 1;
  179. &mov($tmp2, &Xv($pos2)) if $o == 2;
  180. &rotl($c, 10);
  181. &lea($a, &DWP($K,$a,$tmp1,1));
  182. &sub($tmp2, &Np($c)) if $o <= 0; # NEXT
  183. &mov($tmp1, &Np($d)) if $o == 1;
  184. &mov($tmp1, -1) if $o == 2;
  185. &rotl($a, $s);
  186. &add($a, $e);
  187. }
  188. }
  189. sub RIP4
  190. {
  191. local($a,$b,$c,$d,$e,$pos,$s,$K,$o)=@_;
  192. &comment($p++);
  193. if ($p & 1)
  194. {
  195. # &mov($tmp2, -1) if $o == -2;
  196. # &mov($tmp1, $d) if $o == -2;
  197. &sub($tmp2, $d);
  198. &and($tmp1, $b);
  199. &and($tmp2, $c);
  200. &or($tmp2, $tmp1);
  201. &mov($tmp1, &Xv($pos));
  202. &rotl($c, 10);
  203. &lea($a, &DWP($K,$a,$tmp2));
  204. &mov($tmp2, -1) unless $o > 0; # NEXT
  205. # XXX
  206. &add($a, $tmp1);
  207. &mov($tmp1, &Np($d)) unless $o > 0; # NEXT
  208. # XXX
  209. &rotl($a, $s);
  210. &add($a, $e);
  211. }
  212. else
  213. {
  214. &sub($tmp2, $d);
  215. &and($tmp1, $b);
  216. &and($tmp2, $c);
  217. &or($tmp2, $tmp1);
  218. &mov($tmp1, &Xv($pos));
  219. &rotl($c, 10);
  220. &lea($a, &DWP($K,$a,$tmp2));
  221. &mov($tmp2, -1) if $o == 0; # NEXT
  222. &mov($tmp2, -1) if $o == 1;
  223. &mov($tmp2, -1) if $o == 2;
  224. # XXX
  225. &add($a, $tmp1);
  226. &mov($tmp1, &Np($d)) if $o == 0; # NEXT
  227. &sub($tmp2, &Np($d)) if $o == 1;
  228. &sub($tmp2, &Np($c)) if $o == 2;
  229. # XXX
  230. &rotl($a, $s);
  231. &add($a, $e);
  232. }
  233. }
  234. sub RIP5
  235. {
  236. local($a,$b,$c,$d,$e,$pos,$s,$K,$o)=@_;
  237. &comment($p++);
  238. if ($p & 1)
  239. {
  240. &mov($tmp2, -1) if $o == -2;
  241. &sub($tmp2, $d) if $o == -2;
  242. &mov($tmp1, &Xv($pos));
  243. &or($tmp2, $c);
  244. &add($a, $tmp1);
  245. &xor($tmp2, $b);
  246. &mov($tmp1, -1) if $o <= 0;
  247. # XXX
  248. &rotl($c, 10);
  249. &lea($a, &DWP($K,$a,$tmp2,1));
  250. &sub($tmp1, &Np($d)) if $o <= 0;
  251. # XXX
  252. &rotl($a, $s);
  253. &add($a, $e);
  254. }
  255. else
  256. {
  257. &mov($tmp2, &Xv($pos));
  258. &or($tmp1, $c);
  259. &add($a, $tmp2);
  260. &xor($tmp1, $b);
  261. &mov($tmp2, -1) if $o <= 0;
  262. &mov($tmp2, &wparam(0)) if $o == 1; # Middle code
  263. &mov($tmp2, -1) if $o == 2;
  264. &rotl($c, 10);
  265. &lea($a, &DWP($K,$a,$tmp1,1));
  266. &sub($tmp2, &Np($d)) if $o <= 0;
  267. &mov(&swtmp(16), $A) if $o == 1;
  268. &mov($tmp1, &Np($d)) if $o == 2;
  269. &rotl($a, $s);
  270. &add($a, $e);
  271. }
  272. }
  273. sub ripemd160_block
  274. {
  275. local($name)=@_;
  276. &function_begin_B($name,"",3);
  277. # parameter 1 is the RIPEMD160_CTX structure.
  278. # A 0
  279. # B 4
  280. # C 8
  281. # D 12
  282. # E 16
  283. &mov($tmp2, &wparam(0));
  284. &mov($tmp1, &wparam(1));
  285. &push("esi");
  286. &mov($A, &DWP( 0,$tmp2,"",0));
  287. &push("edi");
  288. &mov($B, &DWP( 4,$tmp2,"",0));
  289. &push("ebp");
  290. &mov($C, &DWP( 8,$tmp2,"",0));
  291. &push("ebx");
  292. &stack_push(16+5+6);
  293. # Special comment about the figure of 6.
  294. # Idea is to pad the current frame so
  295. # that the top of the stack gets fairly
  296. # aligned. Well, as you realize it would
  297. # always depend on how the frame below is
  298. # aligned. The good news are that gcc-2.95
  299. # and later does keep first argument at
  300. # least double-wise aligned.
  301. # <appro@fy.chalmers.se>
  302. &set_label("start") unless $normal;
  303. &comment("");
  304. # &mov($tmp1, &wparam(1)); # Done at end of loop
  305. # &mov($tmp2, &wparam(0)); # Done at end of loop
  306. for ($z=0; $z<16; $z+=2)
  307. {
  308. &mov($D, &DWP( $z*4,$tmp1,"",0));
  309. &mov($E, &DWP( ($z+1)*4,$tmp1,"",0));
  310. &mov(&swtmp($z), $D);
  311. &mov(&swtmp($z+1), $E);
  312. }
  313. &mov($tmp1, $C);
  314. &mov($D, &DWP(12,$tmp2,"",0));
  315. &mov($E, &DWP(16,$tmp2,"",0));
  316. &RIP1($A,$B,$C,$D,$E,$wl[ 0],$sl[ 0],-1);
  317. &RIP1($E,$A,$B,$C,$D,$wl[ 1],$sl[ 1],0);
  318. &RIP1($D,$E,$A,$B,$C,$wl[ 2],$sl[ 2],0);
  319. &RIP1($C,$D,$E,$A,$B,$wl[ 3],$sl[ 3],0);
  320. &RIP1($B,$C,$D,$E,$A,$wl[ 4],$sl[ 4],0);
  321. &RIP1($A,$B,$C,$D,$E,$wl[ 5],$sl[ 5],0);
  322. &RIP1($E,$A,$B,$C,$D,$wl[ 6],$sl[ 6],0);
  323. &RIP1($D,$E,$A,$B,$C,$wl[ 7],$sl[ 7],0);
  324. &RIP1($C,$D,$E,$A,$B,$wl[ 8],$sl[ 8],0);
  325. &RIP1($B,$C,$D,$E,$A,$wl[ 9],$sl[ 9],0);
  326. &RIP1($A,$B,$C,$D,$E,$wl[10],$sl[10],0);
  327. &RIP1($E,$A,$B,$C,$D,$wl[11],$sl[11],0);
  328. &RIP1($D,$E,$A,$B,$C,$wl[12],$sl[12],0);
  329. &RIP1($C,$D,$E,$A,$B,$wl[13],$sl[13],0);
  330. &RIP1($B,$C,$D,$E,$A,$wl[14],$sl[14],0);
  331. &RIP1($A,$B,$C,$D,$E,$wl[15],$sl[15],1,$wl[16]);
  332. &RIP2($E,$A,$B,$C,$D,$wl[16],$wl[17],$sl[16],$KL1,-1);
  333. &RIP2($D,$E,$A,$B,$C,$wl[17],$wl[18],$sl[17],$KL1,0);
  334. &RIP2($C,$D,$E,$A,$B,$wl[18],$wl[19],$sl[18],$KL1,0);
  335. &RIP2($B,$C,$D,$E,$A,$wl[19],$wl[20],$sl[19],$KL1,0);
  336. &RIP2($A,$B,$C,$D,$E,$wl[20],$wl[21],$sl[20],$KL1,0);
  337. &RIP2($E,$A,$B,$C,$D,$wl[21],$wl[22],$sl[21],$KL1,0);
  338. &RIP2($D,$E,$A,$B,$C,$wl[22],$wl[23],$sl[22],$KL1,0);
  339. &RIP2($C,$D,$E,$A,$B,$wl[23],$wl[24],$sl[23],$KL1,0);
  340. &RIP2($B,$C,$D,$E,$A,$wl[24],$wl[25],$sl[24],$KL1,0);
  341. &RIP2($A,$B,$C,$D,$E,$wl[25],$wl[26],$sl[25],$KL1,0);
  342. &RIP2($E,$A,$B,$C,$D,$wl[26],$wl[27],$sl[26],$KL1,0);
  343. &RIP2($D,$E,$A,$B,$C,$wl[27],$wl[28],$sl[27],$KL1,0);
  344. &RIP2($C,$D,$E,$A,$B,$wl[28],$wl[29],$sl[28],$KL1,0);
  345. &RIP2($B,$C,$D,$E,$A,$wl[29],$wl[30],$sl[29],$KL1,0);
  346. &RIP2($A,$B,$C,$D,$E,$wl[30],$wl[31],$sl[30],$KL1,0);
  347. &RIP2($E,$A,$B,$C,$D,$wl[31],$wl[32],$sl[31],$KL1,1);
  348. &RIP3($D,$E,$A,$B,$C,$wl[32],$sl[32],$KL2,-1);
  349. &RIP3($C,$D,$E,$A,$B,$wl[33],$sl[33],$KL2,0);
  350. &RIP3($B,$C,$D,$E,$A,$wl[34],$sl[34],$KL2,0);
  351. &RIP3($A,$B,$C,$D,$E,$wl[35],$sl[35],$KL2,0);
  352. &RIP3($E,$A,$B,$C,$D,$wl[36],$sl[36],$KL2,0);
  353. &RIP3($D,$E,$A,$B,$C,$wl[37],$sl[37],$KL2,0);
  354. &RIP3($C,$D,$E,$A,$B,$wl[38],$sl[38],$KL2,0);
  355. &RIP3($B,$C,$D,$E,$A,$wl[39],$sl[39],$KL2,0);
  356. &RIP3($A,$B,$C,$D,$E,$wl[40],$sl[40],$KL2,0);
  357. &RIP3($E,$A,$B,$C,$D,$wl[41],$sl[41],$KL2,0);
  358. &RIP3($D,$E,$A,$B,$C,$wl[42],$sl[42],$KL2,0);
  359. &RIP3($C,$D,$E,$A,$B,$wl[43],$sl[43],$KL2,0);
  360. &RIP3($B,$C,$D,$E,$A,$wl[44],$sl[44],$KL2,0);
  361. &RIP3($A,$B,$C,$D,$E,$wl[45],$sl[45],$KL2,0);
  362. &RIP3($E,$A,$B,$C,$D,$wl[46],$sl[46],$KL2,0);
  363. &RIP3($D,$E,$A,$B,$C,$wl[47],$sl[47],$KL2,1);
  364. &RIP4($C,$D,$E,$A,$B,$wl[48],$sl[48],$KL3,-1);
  365. &RIP4($B,$C,$D,$E,$A,$wl[49],$sl[49],$KL3,0);
  366. &RIP4($A,$B,$C,$D,$E,$wl[50],$sl[50],$KL3,0);
  367. &RIP4($E,$A,$B,$C,$D,$wl[51],$sl[51],$KL3,0);
  368. &RIP4($D,$E,$A,$B,$C,$wl[52],$sl[52],$KL3,0);
  369. &RIP4($C,$D,$E,$A,$B,$wl[53],$sl[53],$KL3,0);
  370. &RIP4($B,$C,$D,$E,$A,$wl[54],$sl[54],$KL3,0);
  371. &RIP4($A,$B,$C,$D,$E,$wl[55],$sl[55],$KL3,0);
  372. &RIP4($E,$A,$B,$C,$D,$wl[56],$sl[56],$KL3,0);
  373. &RIP4($D,$E,$A,$B,$C,$wl[57],$sl[57],$KL3,0);
  374. &RIP4($C,$D,$E,$A,$B,$wl[58],$sl[58],$KL3,0);
  375. &RIP4($B,$C,$D,$E,$A,$wl[59],$sl[59],$KL3,0);
  376. &RIP4($A,$B,$C,$D,$E,$wl[60],$sl[60],$KL3,0);
  377. &RIP4($E,$A,$B,$C,$D,$wl[61],$sl[61],$KL3,0);
  378. &RIP4($D,$E,$A,$B,$C,$wl[62],$sl[62],$KL3,0);
  379. &RIP4($C,$D,$E,$A,$B,$wl[63],$sl[63],$KL3,1);
  380. &RIP5($B,$C,$D,$E,$A,$wl[64],$sl[64],$KL4,-1);
  381. &RIP5($A,$B,$C,$D,$E,$wl[65],$sl[65],$KL4,0);
  382. &RIP5($E,$A,$B,$C,$D,$wl[66],$sl[66],$KL4,0);
  383. &RIP5($D,$E,$A,$B,$C,$wl[67],$sl[67],$KL4,0);
  384. &RIP5($C,$D,$E,$A,$B,$wl[68],$sl[68],$KL4,0);
  385. &RIP5($B,$C,$D,$E,$A,$wl[69],$sl[69],$KL4,0);
  386. &RIP5($A,$B,$C,$D,$E,$wl[70],$sl[70],$KL4,0);
  387. &RIP5($E,$A,$B,$C,$D,$wl[71],$sl[71],$KL4,0);
  388. &RIP5($D,$E,$A,$B,$C,$wl[72],$sl[72],$KL4,0);
  389. &RIP5($C,$D,$E,$A,$B,$wl[73],$sl[73],$KL4,0);
  390. &RIP5($B,$C,$D,$E,$A,$wl[74],$sl[74],$KL4,0);
  391. &RIP5($A,$B,$C,$D,$E,$wl[75],$sl[75],$KL4,0);
  392. &RIP5($E,$A,$B,$C,$D,$wl[76],$sl[76],$KL4,0);
  393. &RIP5($D,$E,$A,$B,$C,$wl[77],$sl[77],$KL4,0);
  394. &RIP5($C,$D,$E,$A,$B,$wl[78],$sl[78],$KL4,0);
  395. &RIP5($B,$C,$D,$E,$A,$wl[79],$sl[79],$KL4,1);
  396. # &mov($tmp2, &wparam(0)); # moved into last RIP5
  397. # &mov(&swtmp(16), $A);
  398. &mov($A, &DWP( 0,$tmp2,"",0));
  399. &mov(&swtmp(16+1), $B);
  400. &mov(&swtmp(16+2), $C);
  401. &mov($B, &DWP( 4,$tmp2,"",0));
  402. &mov(&swtmp(16+3), $D);
  403. &mov($C, &DWP( 8,$tmp2,"",0));
  404. &mov(&swtmp(16+4), $E);
  405. &mov($D, &DWP(12,$tmp2,"",0));
  406. &mov($E, &DWP(16,$tmp2,"",0));
  407. &RIP5($A,$B,$C,$D,$E,$wr[ 0],$sr[ 0],$KR0,-2);
  408. &RIP5($E,$A,$B,$C,$D,$wr[ 1],$sr[ 1],$KR0,0);
  409. &RIP5($D,$E,$A,$B,$C,$wr[ 2],$sr[ 2],$KR0,0);
  410. &RIP5($C,$D,$E,$A,$B,$wr[ 3],$sr[ 3],$KR0,0);
  411. &RIP5($B,$C,$D,$E,$A,$wr[ 4],$sr[ 4],$KR0,0);
  412. &RIP5($A,$B,$C,$D,$E,$wr[ 5],$sr[ 5],$KR0,0);
  413. &RIP5($E,$A,$B,$C,$D,$wr[ 6],$sr[ 6],$KR0,0);
  414. &RIP5($D,$E,$A,$B,$C,$wr[ 7],$sr[ 7],$KR0,0);
  415. &RIP5($C,$D,$E,$A,$B,$wr[ 8],$sr[ 8],$KR0,0);
  416. &RIP5($B,$C,$D,$E,$A,$wr[ 9],$sr[ 9],$KR0,0);
  417. &RIP5($A,$B,$C,$D,$E,$wr[10],$sr[10],$KR0,0);
  418. &RIP5($E,$A,$B,$C,$D,$wr[11],$sr[11],$KR0,0);
  419. &RIP5($D,$E,$A,$B,$C,$wr[12],$sr[12],$KR0,0);
  420. &RIP5($C,$D,$E,$A,$B,$wr[13],$sr[13],$KR0,0);
  421. &RIP5($B,$C,$D,$E,$A,$wr[14],$sr[14],$KR0,0);
  422. &RIP5($A,$B,$C,$D,$E,$wr[15],$sr[15],$KR0,2);
  423. &RIP4($E,$A,$B,$C,$D,$wr[16],$sr[16],$KR1,-2);
  424. &RIP4($D,$E,$A,$B,$C,$wr[17],$sr[17],$KR1,0);
  425. &RIP4($C,$D,$E,$A,$B,$wr[18],$sr[18],$KR1,0);
  426. &RIP4($B,$C,$D,$E,$A,$wr[19],$sr[19],$KR1,0);
  427. &RIP4($A,$B,$C,$D,$E,$wr[20],$sr[20],$KR1,0);
  428. &RIP4($E,$A,$B,$C,$D,$wr[21],$sr[21],$KR1,0);
  429. &RIP4($D,$E,$A,$B,$C,$wr[22],$sr[22],$KR1,0);
  430. &RIP4($C,$D,$E,$A,$B,$wr[23],$sr[23],$KR1,0);
  431. &RIP4($B,$C,$D,$E,$A,$wr[24],$sr[24],$KR1,0);
  432. &RIP4($A,$B,$C,$D,$E,$wr[25],$sr[25],$KR1,0);
  433. &RIP4($E,$A,$B,$C,$D,$wr[26],$sr[26],$KR1,0);
  434. &RIP4($D,$E,$A,$B,$C,$wr[27],$sr[27],$KR1,0);
  435. &RIP4($C,$D,$E,$A,$B,$wr[28],$sr[28],$KR1,0);
  436. &RIP4($B,$C,$D,$E,$A,$wr[29],$sr[29],$KR1,0);
  437. &RIP4($A,$B,$C,$D,$E,$wr[30],$sr[30],$KR1,0);
  438. &RIP4($E,$A,$B,$C,$D,$wr[31],$sr[31],$KR1,2);
  439. &RIP3($D,$E,$A,$B,$C,$wr[32],$sr[32],$KR2,-2);
  440. &RIP3($C,$D,$E,$A,$B,$wr[33],$sr[33],$KR2,0);
  441. &RIP3($B,$C,$D,$E,$A,$wr[34],$sr[34],$KR2,0);
  442. &RIP3($A,$B,$C,$D,$E,$wr[35],$sr[35],$KR2,0);
  443. &RIP3($E,$A,$B,$C,$D,$wr[36],$sr[36],$KR2,0);
  444. &RIP3($D,$E,$A,$B,$C,$wr[37],$sr[37],$KR2,0);
  445. &RIP3($C,$D,$E,$A,$B,$wr[38],$sr[38],$KR2,0);
  446. &RIP3($B,$C,$D,$E,$A,$wr[39],$sr[39],$KR2,0);
  447. &RIP3($A,$B,$C,$D,$E,$wr[40],$sr[40],$KR2,0);
  448. &RIP3($E,$A,$B,$C,$D,$wr[41],$sr[41],$KR2,0);
  449. &RIP3($D,$E,$A,$B,$C,$wr[42],$sr[42],$KR2,0);
  450. &RIP3($C,$D,$E,$A,$B,$wr[43],$sr[43],$KR2,0);
  451. &RIP3($B,$C,$D,$E,$A,$wr[44],$sr[44],$KR2,0);
  452. &RIP3($A,$B,$C,$D,$E,$wr[45],$sr[45],$KR2,0);
  453. &RIP3($E,$A,$B,$C,$D,$wr[46],$sr[46],$KR2,0);
  454. &RIP3($D,$E,$A,$B,$C,$wr[47],$sr[47],$KR2,2,$wr[48]);
  455. &RIP2($C,$D,$E,$A,$B,$wr[48],$wr[49],$sr[48],$KR3,-2);
  456. &RIP2($B,$C,$D,$E,$A,$wr[49],$wr[50],$sr[49],$KR3,0);
  457. &RIP2($A,$B,$C,$D,$E,$wr[50],$wr[51],$sr[50],$KR3,0);
  458. &RIP2($E,$A,$B,$C,$D,$wr[51],$wr[52],$sr[51],$KR3,0);
  459. &RIP2($D,$E,$A,$B,$C,$wr[52],$wr[53],$sr[52],$KR3,0);
  460. &RIP2($C,$D,$E,$A,$B,$wr[53],$wr[54],$sr[53],$KR3,0);
  461. &RIP2($B,$C,$D,$E,$A,$wr[54],$wr[55],$sr[54],$KR3,0);
  462. &RIP2($A,$B,$C,$D,$E,$wr[55],$wr[56],$sr[55],$KR3,0);
  463. &RIP2($E,$A,$B,$C,$D,$wr[56],$wr[57],$sr[56],$KR3,0);
  464. &RIP2($D,$E,$A,$B,$C,$wr[57],$wr[58],$sr[57],$KR3,0);
  465. &RIP2($C,$D,$E,$A,$B,$wr[58],$wr[59],$sr[58],$KR3,0);
  466. &RIP2($B,$C,$D,$E,$A,$wr[59],$wr[60],$sr[59],$KR3,0);
  467. &RIP2($A,$B,$C,$D,$E,$wr[60],$wr[61],$sr[60],$KR3,0);
  468. &RIP2($E,$A,$B,$C,$D,$wr[61],$wr[62],$sr[61],$KR3,0);
  469. &RIP2($D,$E,$A,$B,$C,$wr[62],$wr[63],$sr[62],$KR3,0);
  470. &RIP2($C,$D,$E,$A,$B,$wr[63],$wr[64],$sr[63],$KR3,2);
  471. &RIP1($B,$C,$D,$E,$A,$wr[64],$sr[64],-2);
  472. &RIP1($A,$B,$C,$D,$E,$wr[65],$sr[65],0);
  473. &RIP1($E,$A,$B,$C,$D,$wr[66],$sr[66],0);
  474. &RIP1($D,$E,$A,$B,$C,$wr[67],$sr[67],0);
  475. &RIP1($C,$D,$E,$A,$B,$wr[68],$sr[68],0);
  476. &RIP1($B,$C,$D,$E,$A,$wr[69],$sr[69],0);
  477. &RIP1($A,$B,$C,$D,$E,$wr[70],$sr[70],0);
  478. &RIP1($E,$A,$B,$C,$D,$wr[71],$sr[71],0);
  479. &RIP1($D,$E,$A,$B,$C,$wr[72],$sr[72],0);
  480. &RIP1($C,$D,$E,$A,$B,$wr[73],$sr[73],0);
  481. &RIP1($B,$C,$D,$E,$A,$wr[74],$sr[74],0);
  482. &RIP1($A,$B,$C,$D,$E,$wr[75],$sr[75],0);
  483. &RIP1($E,$A,$B,$C,$D,$wr[76],$sr[76],0);
  484. &RIP1($D,$E,$A,$B,$C,$wr[77],$sr[77],0);
  485. &RIP1($C,$D,$E,$A,$B,$wr[78],$sr[78],0);
  486. &RIP1($B,$C,$D,$E,$A,$wr[79],$sr[79],2);
  487. # &mov($tmp2, &wparam(0)); # Moved into last round
  488. &mov($tmp1, &DWP( 4,$tmp2,"",0)); # ctx->B
  489. &add($D, $tmp1);
  490. &mov($tmp1, &swtmp(16+2)); # $c
  491. &add($D, $tmp1);
  492. &mov($tmp1, &DWP( 8,$tmp2,"",0)); # ctx->C
  493. &add($E, $tmp1);
  494. &mov($tmp1, &swtmp(16+3)); # $d
  495. &add($E, $tmp1);
  496. &mov($tmp1, &DWP(12,$tmp2,"",0)); # ctx->D
  497. &add($A, $tmp1);
  498. &mov($tmp1, &swtmp(16+4)); # $e
  499. &add($A, $tmp1);
  500. &mov($tmp1, &DWP(16,$tmp2,"",0)); # ctx->E
  501. &add($B, $tmp1);
  502. &mov($tmp1, &swtmp(16+0)); # $a
  503. &add($B, $tmp1);
  504. &mov($tmp1, &DWP( 0,$tmp2,"",0)); # ctx->A
  505. &add($C, $tmp1);
  506. &mov($tmp1, &swtmp(16+1)); # $b
  507. &add($C, $tmp1);
  508. &mov($tmp1, &wparam(2));
  509. &mov(&DWP( 0,$tmp2,"",0), $D);
  510. &mov(&DWP( 4,$tmp2,"",0), $E);
  511. &mov(&DWP( 8,$tmp2,"",0), $A);
  512. &sub($tmp1,1);
  513. &mov(&DWP(12,$tmp2,"",0), $B);
  514. &mov(&DWP(16,$tmp2,"",0), $C);
  515. &jle(&label("get_out"));
  516. &mov(&wparam(2),$tmp1);
  517. &mov($C, $A);
  518. &mov($tmp1, &wparam(1));
  519. &mov($A, $D);
  520. &add($tmp1, 64);
  521. &mov($B, $E);
  522. &mov(&wparam(1),$tmp1);
  523. &jmp(&label("start"));
  524. &set_label("get_out");
  525. &stack_pop(16+5+6);
  526. &pop("ebx");
  527. &pop("ebp");
  528. &pop("edi");
  529. &pop("esi");
  530. &ret();
  531. &function_end_B($name);
  532. }