Various mingw64 fixes.
[openssl.git] / crypto / rc4 / asm / rc4-x86_64.pl
1 #!/usr/bin/env perl
2 #
3 # ====================================================================
4 # Written by Andy Polyakov <appro@fy.chalmers.se> 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 # July 2004
11 #
12 # 2.22x RC4 tune-up:-) It should be noted though that my hand [as in
13 # "hand-coded assembler"] doesn't stand for the whole improvement
14 # coefficient. It turned out that eliminating RC4_CHAR from config
15 # line results in ~40% improvement (yes, even for C implementation).
16 # Presumably it has everything to do with AMD cache architecture and
17 # RAW or whatever penalties. Once again! The module *requires* config
18 # line *without* RC4_CHAR! As for coding "secret," I bet on partial
19 # register arithmetics. For example instead of 'inc %r8; and $255,%r8'
20 # I simply 'inc %r8b'. Even though optimization manual discourages
21 # to operate on partial registers, it turned out to be the best bet.
22 # At least for AMD... How IA32E would perform remains to be seen...
23
24 # November 2004
25 #
26 # As was shown by Marc Bevand reordering of couple of load operations
27 # results in even higher performance gain of 3.3x:-) At least on
28 # Opteron... For reference, 1x in this case is RC4_CHAR C-code
29 # compiled with gcc 3.3.2, which performs at ~54MBps per 1GHz clock.
30 # Latter means that if you want to *estimate* what to expect from
31 # *your* Opteron, then multiply 54 by 3.3 and clock frequency in GHz.
32
33 # November 2004
34 #
35 # Intel P4 EM64T core was found to run the AMD64 code really slow...
36 # The only way to achieve comparable performance on P4 was to keep
37 # RC4_CHAR. Kind of ironic, huh? As it's apparently impossible to
38 # compose blended code, which would perform even within 30% marginal
39 # on either AMD and Intel platforms, I implement both cases. See
40 # rc4_skey.c for further details...
41
42 # April 2005
43 #
44 # P4 EM64T core appears to be "allergic" to 64-bit inc/dec. Replacing 
45 # those with add/sub results in 50% performance improvement of folded
46 # loop...
47
48 # May 2005
49 #
50 # As was shown by Zou Nanhai loop unrolling can improve Intel EM64T
51 # performance by >30% [unlike P4 32-bit case that is]. But this is
52 # provided that loads are reordered even more aggressively! Both code
53 # pathes, AMD64 and EM64T, reorder loads in essentially same manner
54 # as my IA-64 implementation. On Opteron this resulted in modest 5%
55 # improvement [I had to test it], while final Intel P4 performance
56 # achieves respectful 432MBps on 2.8GHz processor now. For reference.
57 # If executed on Xeon, current RC4_CHAR code-path is 2.7x faster than
58 # RC4_INT code-path. While if executed on Opteron, it's only 25%
59 # slower than the RC4_INT one [meaning that if CPU ยต-arch detection
60 # is not implemented, then this final RC4_CHAR code-path should be
61 # preferred, as it provides better *all-round* performance].
62
63 # March 2007
64 #
65 # Intel Core2 was observed to perform poorly on both code paths:-( It
66 # apparently suffers from some kind of partial register stall, which
67 # occurs in 64-bit mode only [as virtually identical 32-bit loop was
68 # observed to outperform 64-bit one by almost 50%]. Adding two movzb to
69 # cloop1 boosts its performance by 80%! This loop appears to be optimal
70 # fit for Core2 and therefore the code was modified to skip cloop8 on
71 # this CPU.
72
73 # May 2010
74 #
75 # Intel Westmere was observed to perform suboptimally. Adding yet
76 # another movzb to cloop1 improved performance by almost 50%! Core2
77 # performance is improved too, but nominally...
78
79 # May 2011
80 #
81 # The only code path that was not modified is P4-specific one. Non-P4
82 # Intel code path optimization is heavily based on submission by Maxim
83 # Perminov, Maxim Locktyukhin and Jim Guilford of Intel. I've used
84 # some of the ideas even in attempt to optmize the original RC4_INT
85 # code path... Current performance in cycles per processed byte (less
86 # is better) and improvement coefficients relative to previous
87 # version of this module are:
88 #
89 # Opteron       5.3/+0%
90 # P4            6.5
91 # Core2         6.2/+15%(*)
92 # Westmere      4.2/+60%
93 # Sandy Bridge  4.2/+120%
94 # Atom          9.3/+80%
95 #
96 # (*)   Note that Core2 result is ~15% lower than corresponding result
97 #       for 32-bit code, meaning that it's possible to improve it,
98 #       but more than likely at the cost of the others (see rc4-586.pl
99 #       to get the idea)...
100
101 $flavour = shift;
102 $output  = shift;
103 if ($flavour =~ /\./) { $output = $flavour; undef $flavour; }
104
105 $win64=0; $win64=1 if ($flavour =~ /[nm]asm|mingw64/ || $output =~ /\.asm$/);
106
107 $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1;
108 ( $xlate="${dir}x86_64-xlate.pl" and -f $xlate ) or
109 ( $xlate="${dir}../../perlasm/x86_64-xlate.pl" and -f $xlate) or
110 die "can't locate x86_64-xlate.pl";
111
112 open STDOUT,"| $^X $xlate $flavour $output";
113
114 $dat="%rdi";        # arg1
115 $len="%rsi";        # arg2
116 $inp="%rdx";        # arg3
117 $out="%rcx";        # arg4
118
119 {
120 $code=<<___;
121 .text
122 .extern OPENSSL_ia32cap_P
123
124 .globl  RC4
125 .type   RC4,\@function,4
126 .align  16
127 RC4:    or      $len,$len
128         jne     .Lentry
129         ret
130 .Lentry:
131         push    %rbx
132         push    %r12
133         push    %r13
134 .Lprologue:
135         mov     $len,%r11
136         mov     $inp,%r12
137         mov     $out,%r13
138 ___
139 my $len="%r11";         # reassign input arguments
140 my $inp="%r12";
141 my $out="%r13";
142
143 my @XX=("%r10","%rsi");
144 my @TX=("%rax","%rbx");
145 my $YY="%rcx";
146 my $TY="%rdx";
147
148 $code.=<<___;
149         xor     $XX[0],$XX[0]
150         xor     $YY,$YY
151
152         lea     8($dat),$dat
153         mov     -8($dat),$XX[0]#b
154         mov     -4($dat),$YY#b
155         cmpl    \$-1,256($dat)
156         je      .LRC4_CHAR
157         mov     OPENSSL_ia32cap_P(%rip),%r8d
158         xor     $TX[1],$TX[1]
159         inc     $XX[0]#b
160         sub     $XX[0],$TX[1]
161         sub     $inp,$out
162         movl    ($dat,$XX[0],4),$TX[0]#d
163         test    \$-16,$len
164         jz      .Lloop1
165         bt      \$30,%r8d       # Intel CPU?
166         jc      .Lintel
167         and     \$7,$TX[1]
168         lea     1($XX[0]),$XX[1]
169         jz      .Loop8
170         sub     $TX[1],$len
171 .Loop8_warmup:
172         add     $TX[0]#b,$YY#b
173         movl    ($dat,$YY,4),$TY#d
174         movl    $TX[0]#d,($dat,$YY,4)
175         movl    $TY#d,($dat,$XX[0],4)
176         add     $TY#b,$TX[0]#b
177         inc     $XX[0]#b
178         movl    ($dat,$TX[0],4),$TY#d
179         movl    ($dat,$XX[0],4),$TX[0]#d
180         xorb    ($inp),$TY#b
181         movb    $TY#b,($out,$inp)
182         lea     1($inp),$inp
183         dec     $TX[1]
184         jnz     .Loop8_warmup
185
186         lea     1($XX[0]),$XX[1]
187         jmp     .Loop8
188 .align  16
189 .Loop8:
190 ___
191 for ($i=0;$i<8;$i++) {
192 $code.=<<___ if ($i==7);
193         add     \$8,$XX[1]#b
194 ___
195 $code.=<<___;
196         add     $TX[0]#b,$YY#b
197         movl    ($dat,$YY,4),$TY#d
198         movl    $TX[0]#d,($dat,$YY,4)
199         movl    `4*($i==7?-1:$i)`($dat,$XX[1],4),$TX[1]#d
200         ror     \$8,%r8                         # ror is redundant when $i=0
201         movl    $TY#d,4*$i($dat,$XX[0],4)
202         add     $TX[0]#b,$TY#b
203         movb    ($dat,$TY,4),%r8b
204 ___
205 push(@TX,shift(@TX)); #push(@XX,shift(@XX));    # "rotate" registers
206 }
207 $code.=<<___;
208         add     \$8,$XX[0]#b
209         ror     \$8,%r8
210         sub     \$8,$len
211
212         xor     ($inp),%r8
213         mov     %r8,($out,$inp)
214         lea     8($inp),$inp
215
216         test    \$-8,$len
217         jnz     .Loop8
218         cmp     \$0,$len
219         jne     .Lloop1
220         jmp     .Lexit
221
222 .align  16
223 .Lintel:
224         test    \$-32,$len
225         jz      .Lloop1
226         and     \$15,$TX[1]
227         jz      .Loop16_is_hot
228         sub     $TX[1],$len
229 .Loop16_warmup:
230         add     $TX[0]#b,$YY#b
231         movl    ($dat,$YY,4),$TY#d
232         movl    $TX[0]#d,($dat,$YY,4)
233         movl    $TY#d,($dat,$XX[0],4)
234         add     $TY#b,$TX[0]#b
235         inc     $XX[0]#b
236         movl    ($dat,$TX[0],4),$TY#d
237         movl    ($dat,$XX[0],4),$TX[0]#d
238         xorb    ($inp),$TY#b
239         movb    $TY#b,($out,$inp)
240         lea     1($inp),$inp
241         dec     $TX[1]
242         jnz     .Loop16_warmup
243
244         mov     $YY,$TX[1]
245         xor     $YY,$YY
246         mov     $TX[1]#b,$YY#b
247
248 .Loop16_is_hot:
249         lea     ($dat,$XX[0],4),$XX[1]
250 ___
251 sub RC4_loop {
252   my $i=shift;
253   my $j=$i<0?0:$i;
254   my $xmm="%xmm".($j&1);
255
256     $code.="    add     \$16,$XX[0]#b\n"                if ($i==15);
257     $code.="    movdqu  ($inp),%xmm2\n"                 if ($i==15);
258     $code.="    add     $TX[0]#b,$YY#b\n"               if ($i<=0);
259     $code.="    movl    ($dat,$YY,4),$TY#d\n";
260     $code.="    pxor    %xmm0,%xmm2\n"                  if ($i==0);
261     $code.="    psllq   \$8,%xmm1\n"                    if ($i==0);
262     $code.="    pxor    $xmm,$xmm\n"                    if ($i<=1);
263     $code.="    movl    $TX[0]#d,($dat,$YY,4)\n";
264     $code.="    add     $TY#b,$TX[0]#b\n";
265     $code.="    movl    `4*($j+1)`($XX[1]),$TX[1]#d\n"  if ($i<15);
266     $code.="    movz    $TX[0]#b,$TX[0]#d\n";
267     $code.="    movl    $TY#d,4*$j($XX[1])\n";
268     $code.="    pxor    %xmm1,%xmm2\n"                  if ($i==0);
269     $code.="    lea     ($dat,$XX[0],4),$XX[1]\n"       if ($i==15);
270     $code.="    add     $TX[1]#b,$YY#b\n"               if ($i<15);
271     $code.="    pinsrw  \$`($j>>1)&7`,($dat,$TX[0],4),$xmm\n";
272     $code.="    movdqu  %xmm2,($out,$inp)\n"            if ($i==0);
273     $code.="    lea     16($inp),$inp\n"                if ($i==0);
274     $code.="    movl    ($XX[1]),$TX[1]#d\n"            if ($i==15);
275 }
276         RC4_loop(-1);
277 $code.=<<___;
278         jmp     .Loop16_enter
279 .align  16
280 .Loop16:
281 ___
282
283 for ($i=0;$i<16;$i++) {
284     $code.=".Loop16_enter:\n"           if ($i==1);
285         RC4_loop($i);
286         push(@TX,shift(@TX));           # "rotate" registers
287 }
288 $code.=<<___;
289         mov     $YY,$TX[1]
290         xor     $YY,$YY                 # keyword to partial register
291         sub     \$16,$len
292         mov     $TX[1]#b,$YY#b
293         test    \$-16,$len
294         jnz     .Loop16
295
296         psllq   \$8,%xmm1
297         pxor    %xmm0,%xmm2
298         pxor    %xmm1,%xmm2
299         movdqu  %xmm2,($out,$inp)
300         lea     16($inp),$inp
301
302         cmp     \$0,$len
303         jne     .Lloop1
304         jmp     .Lexit
305
306 .align  16
307 .Lloop1:
308         add     $TX[0]#b,$YY#b
309         movl    ($dat,$YY,4),$TY#d
310         movl    $TX[0]#d,($dat,$YY,4)
311         movl    $TY#d,($dat,$XX[0],4)
312         add     $TY#b,$TX[0]#b
313         inc     $XX[0]#b
314         movl    ($dat,$TX[0],4),$TY#d
315         movl    ($dat,$XX[0],4),$TX[0]#d
316         xorb    ($inp),$TY#b
317         movb    $TY#b,($out,$inp)
318         lea     1($inp),$inp
319         dec     $len
320         jnz     .Lloop1
321         jmp     .Lexit
322
323 .align  16
324 .LRC4_CHAR:
325         add     \$1,$XX[0]#b
326         movzb   ($dat,$XX[0]),$TX[0]#d
327         test    \$-8,$len
328         jz      .Lcloop1
329         jmp     .Lcloop8
330 .align  16
331 .Lcloop8:
332         mov     ($inp),%r8d
333         mov     4($inp),%r9d
334 ___
335 # unroll 2x4-wise, because 64-bit rotates kill Intel P4...
336 for ($i=0;$i<4;$i++) {
337 $code.=<<___;
338         add     $TX[0]#b,$YY#b
339         lea     1($XX[0]),$XX[1]
340         movzb   ($dat,$YY),$TY#d
341         movzb   $XX[1]#b,$XX[1]#d
342         movzb   ($dat,$XX[1]),$TX[1]#d
343         movb    $TX[0]#b,($dat,$YY)
344         cmp     $XX[1],$YY
345         movb    $TY#b,($dat,$XX[0])
346         jne     .Lcmov$i                        # Intel cmov is sloooow...
347         mov     $TX[0],$TX[1]
348 .Lcmov$i:
349         add     $TX[0]#b,$TY#b
350         xor     ($dat,$TY),%r8b
351         ror     \$8,%r8d
352 ___
353 push(@TX,shift(@TX)); push(@XX,shift(@XX));     # "rotate" registers
354 }
355 for ($i=4;$i<8;$i++) {
356 $code.=<<___;
357         add     $TX[0]#b,$YY#b
358         lea     1($XX[0]),$XX[1]
359         movzb   ($dat,$YY),$TY#d
360         movzb   $XX[1]#b,$XX[1]#d
361         movzb   ($dat,$XX[1]),$TX[1]#d
362         movb    $TX[0]#b,($dat,$YY)
363         cmp     $XX[1],$YY
364         movb    $TY#b,($dat,$XX[0])
365         jne     .Lcmov$i                        # Intel cmov is sloooow...
366         mov     $TX[0],$TX[1]
367 .Lcmov$i:
368         add     $TX[0]#b,$TY#b
369         xor     ($dat,$TY),%r9b
370         ror     \$8,%r9d
371 ___
372 push(@TX,shift(@TX)); push(@XX,shift(@XX));     # "rotate" registers
373 }
374 $code.=<<___;
375         lea     -8($len),$len
376         mov     %r8d,($out)
377         lea     8($inp),$inp
378         mov     %r9d,4($out)
379         lea     8($out),$out
380
381         test    \$-8,$len
382         jnz     .Lcloop8
383         cmp     \$0,$len
384         jne     .Lcloop1
385         jmp     .Lexit
386 ___
387 $code.=<<___;
388 .align  16
389 .Lcloop1:
390         add     $TX[0]#b,$YY#b
391         movzb   $YY#b,$YY#d
392         movzb   ($dat,$YY),$TY#d
393         movb    $TX[0]#b,($dat,$YY)
394         movb    $TY#b,($dat,$XX[0])
395         add     $TX[0]#b,$TY#b
396         add     \$1,$XX[0]#b
397         movzb   $TY#b,$TY#d
398         movzb   $XX[0]#b,$XX[0]#d
399         movzb   ($dat,$TY),$TY#d
400         movzb   ($dat,$XX[0]),$TX[0]#d
401         xorb    ($inp),$TY#b
402         lea     1($inp),$inp
403         movb    $TY#b,($out)
404         lea     1($out),$out
405         sub     \$1,$len
406         jnz     .Lcloop1
407         jmp     .Lexit
408
409 .align  16
410 .Lexit:
411         sub     \$1,$XX[0]#b
412         movl    $XX[0]#d,-8($dat)
413         movl    $YY#d,-4($dat)
414
415         mov     (%rsp),%r13
416         mov     8(%rsp),%r12
417         mov     16(%rsp),%rbx
418         add     \$24,%rsp
419 .Lepilogue:
420         ret
421 .size   RC4,.-RC4
422 ___
423 }
424
425 $idx="%r8";
426 $ido="%r9";
427
428 $code.=<<___;
429 .globl  RC4_set_key
430 .type   RC4_set_key,\@function,3
431 .align  16
432 RC4_set_key:
433         lea     8($dat),$dat
434         lea     ($inp,$len),$inp
435         neg     $len
436         mov     $len,%rcx
437         xor     %eax,%eax
438         xor     $ido,$ido
439         xor     %r10,%r10
440         xor     %r11,%r11
441
442         mov     OPENSSL_ia32cap_P(%rip),$idx#d
443         bt      \$20,$idx#d     # RC4_CHAR?
444         jc      .Lc1stloop
445         jmp     .Lw1stloop
446
447 .align  16
448 .Lw1stloop:
449         mov     %eax,($dat,%rax,4)
450         add     \$1,%al
451         jnc     .Lw1stloop
452
453         xor     $ido,$ido
454         xor     $idx,$idx
455 .align  16
456 .Lw2ndloop:
457         mov     ($dat,$ido,4),%r10d
458         add     ($inp,$len,1),$idx#b
459         add     %r10b,$idx#b
460         add     \$1,$len
461         mov     ($dat,$idx,4),%r11d
462         cmovz   %rcx,$len
463         mov     %r10d,($dat,$idx,4)
464         mov     %r11d,($dat,$ido,4)
465         add     \$1,$ido#b
466         jnc     .Lw2ndloop
467         jmp     .Lexit_key
468
469 .align  16
470 .Lc1stloop:
471         mov     %al,($dat,%rax)
472         add     \$1,%al
473         jnc     .Lc1stloop
474
475         xor     $ido,$ido
476         xor     $idx,$idx
477 .align  16
478 .Lc2ndloop:
479         mov     ($dat,$ido),%r10b
480         add     ($inp,$len),$idx#b
481         add     %r10b,$idx#b
482         add     \$1,$len
483         mov     ($dat,$idx),%r11b
484         jnz     .Lcnowrap
485         mov     %rcx,$len
486 .Lcnowrap:
487         mov     %r10b,($dat,$idx)
488         mov     %r11b,($dat,$ido)
489         add     \$1,$ido#b
490         jnc     .Lc2ndloop
491         movl    \$-1,256($dat)
492
493 .align  16
494 .Lexit_key:
495         xor     %eax,%eax
496         mov     %eax,-8($dat)
497         mov     %eax,-4($dat)
498         ret
499 .size   RC4_set_key,.-RC4_set_key
500
501 .globl  RC4_options
502 .type   RC4_options,\@abi-omnipotent
503 .align  16
504 RC4_options:
505         lea     .Lopts(%rip),%rax
506         mov     OPENSSL_ia32cap_P(%rip),%edx
507         bt      \$20,%edx
508         jc      .L8xchar
509         bt      \$30,%edx
510         jnc     .Ldone
511         add     \$25,%rax
512         ret
513 .L8xchar:
514         add     \$12,%rax
515 .Ldone:
516         ret
517 .align  64
518 .Lopts:
519 .asciz  "rc4(8x,int)"
520 .asciz  "rc4(8x,char)"
521 .asciz  "rc4(16x,int)"
522 .asciz  "RC4 for x86_64, CRYPTOGAMS by <appro\@openssl.org>"
523 .align  64
524 .size   RC4_options,.-RC4_options
525 ___
526
527 # EXCEPTION_DISPOSITION handler (EXCEPTION_RECORD *rec,ULONG64 frame,
528 #               CONTEXT *context,DISPATCHER_CONTEXT *disp)
529 if ($win64) {
530 $rec="%rcx";
531 $frame="%rdx";
532 $context="%r8";
533 $disp="%r9";
534
535 $code.=<<___;
536 .extern __imp_RtlVirtualUnwind
537 .type   stream_se_handler,\@abi-omnipotent
538 .align  16
539 stream_se_handler:
540         push    %rsi
541         push    %rdi
542         push    %rbx
543         push    %rbp
544         push    %r12
545         push    %r13
546         push    %r14
547         push    %r15
548         pushfq
549         sub     \$64,%rsp
550
551         mov     120($context),%rax      # pull context->Rax
552         mov     248($context),%rbx      # pull context->Rip
553
554         lea     .Lprologue(%rip),%r10
555         cmp     %r10,%rbx               # context->Rip<prologue label
556         jb      .Lin_prologue
557
558         mov     152($context),%rax      # pull context->Rsp
559
560         lea     .Lepilogue(%rip),%r10
561         cmp     %r10,%rbx               # context->Rip>=epilogue label
562         jae     .Lin_prologue
563
564         lea     24(%rax),%rax
565
566         mov     -8(%rax),%rbx
567         mov     -16(%rax),%r12
568         mov     -24(%rax),%r13
569         mov     %rbx,144($context)      # restore context->Rbx
570         mov     %r12,216($context)      # restore context->R12
571         mov     %r13,224($context)      # restore context->R13
572
573 .Lin_prologue:
574         mov     8(%rax),%rdi
575         mov     16(%rax),%rsi
576         mov     %rax,152($context)      # restore context->Rsp
577         mov     %rsi,168($context)      # restore context->Rsi
578         mov     %rdi,176($context)      # restore context->Rdi
579
580         jmp     .Lcommon_seh_exit
581 .size   stream_se_handler,.-stream_se_handler
582
583 .type   key_se_handler,\@abi-omnipotent
584 .align  16
585 key_se_handler:
586         push    %rsi
587         push    %rdi
588         push    %rbx
589         push    %rbp
590         push    %r12
591         push    %r13
592         push    %r14
593         push    %r15
594         pushfq
595         sub     \$64,%rsp
596
597         mov     152($context),%rax      # pull context->Rsp
598         mov     8(%rax),%rdi
599         mov     16(%rax),%rsi
600         mov     %rsi,168($context)      # restore context->Rsi
601         mov     %rdi,176($context)      # restore context->Rdi
602
603 .Lcommon_seh_exit:
604
605         mov     40($disp),%rdi          # disp->ContextRecord
606         mov     $context,%rsi           # context
607         mov     \$154,%ecx              # sizeof(CONTEXT)
608         .long   0xa548f3fc              # cld; rep movsq
609
610         mov     $disp,%rsi
611         xor     %rcx,%rcx               # arg1, UNW_FLAG_NHANDLER
612         mov     8(%rsi),%rdx            # arg2, disp->ImageBase
613         mov     0(%rsi),%r8             # arg3, disp->ControlPc
614         mov     16(%rsi),%r9            # arg4, disp->FunctionEntry
615         mov     40(%rsi),%r10           # disp->ContextRecord
616         lea     56(%rsi),%r11           # &disp->HandlerData
617         lea     24(%rsi),%r12           # &disp->EstablisherFrame
618         mov     %r10,32(%rsp)           # arg5
619         mov     %r11,40(%rsp)           # arg6
620         mov     %r12,48(%rsp)           # arg7
621         mov     %rcx,56(%rsp)           # arg8, (NULL)
622         call    *__imp_RtlVirtualUnwind(%rip)
623
624         mov     \$1,%eax                # ExceptionContinueSearch
625         add     \$64,%rsp
626         popfq
627         pop     %r15
628         pop     %r14
629         pop     %r13
630         pop     %r12
631         pop     %rbp
632         pop     %rbx
633         pop     %rdi
634         pop     %rsi
635         ret
636 .size   key_se_handler,.-key_se_handler
637
638 .section        .pdata
639 .align  4
640         .rva    .LSEH_begin_RC4
641         .rva    .LSEH_end_RC4
642         .rva    .LSEH_info_RC4
643
644         .rva    .LSEH_begin_RC4_set_key
645         .rva    .LSEH_end_RC4_set_key
646         .rva    .LSEH_info_RC4_set_key
647
648 .section        .xdata
649 .align  8
650 .LSEH_info_RC4:
651         .byte   9,0,0,0
652         .rva    stream_se_handler
653 .LSEH_info_RC4_set_key:
654         .byte   9,0,0,0
655         .rva    key_se_handler
656 ___
657 }
658
659 sub reg_part {
660 my ($reg,$conv)=@_;
661     if ($reg =~ /%r[0-9]+/)     { $reg .= $conv; }
662     elsif ($conv eq "b")        { $reg =~ s/%[er]([^x]+)x?/%$1l/;       }
663     elsif ($conv eq "w")        { $reg =~ s/%[er](.+)/%$1/;             }
664     elsif ($conv eq "d")        { $reg =~ s/%[er](.+)/%e$1/;            }
665     return $reg;
666 }
667
668 $code =~ s/(%[a-z0-9]+)#([bwd])/reg_part($1,$2)/gem;
669 $code =~ s/\`([^\`]*)\`/eval $1/gem;
670
671 print $code;
672
673 close STDOUT;