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