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