Do not silently truncate files on perlasm errors
[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:
144 .cfi_startproc
145         or      $len,$len
146         jne     .Lentry
147         ret
148 .Lentry:
149         push    %rbx
150 .cfi_push       %rbx
151         push    %r12
152 .cfi_push       %r12
153         push    %r13
154 .cfi_push       %r13
155 .Lprologue:
156         mov     $len,%r11
157         mov     $inp,%r12
158         mov     $out,%r13
159 ___
160 my $len="%r11";         # reassign input arguments
161 my $inp="%r12";
162 my $out="%r13";
163
164 my @XX=("%r10","%rsi");
165 my @TX=("%rax","%rbx");
166 my $YY="%rcx";
167 my $TY="%rdx";
168
169 $code.=<<___;
170         xor     $XX[0],$XX[0]
171         xor     $YY,$YY
172
173         lea     8($dat),$dat
174         mov     -8($dat),$XX[0]#b
175         mov     -4($dat),$YY#b
176         cmpl    \$-1,256($dat)
177         je      .LRC4_CHAR
178         mov     OPENSSL_ia32cap_P(%rip),%r8d
179         xor     $TX[1],$TX[1]
180         inc     $XX[0]#b
181         sub     $XX[0],$TX[1]
182         sub     $inp,$out
183         movl    ($dat,$XX[0],4),$TX[0]#d
184         test    \$-16,$len
185         jz      .Lloop1
186         bt      \$30,%r8d       # Intel CPU?
187         jc      .Lintel
188         and     \$7,$TX[1]
189         lea     1($XX[0]),$XX[1]
190         jz      .Loop8
191         sub     $TX[1],$len
192 .Loop8_warmup:
193         add     $TX[0]#b,$YY#b
194         movl    ($dat,$YY,4),$TY#d
195         movl    $TX[0]#d,($dat,$YY,4)
196         movl    $TY#d,($dat,$XX[0],4)
197         add     $TY#b,$TX[0]#b
198         inc     $XX[0]#b
199         movl    ($dat,$TX[0],4),$TY#d
200         movl    ($dat,$XX[0],4),$TX[0]#d
201         xorb    ($inp),$TY#b
202         movb    $TY#b,($out,$inp)
203         lea     1($inp),$inp
204         dec     $TX[1]
205         jnz     .Loop8_warmup
206
207         lea     1($XX[0]),$XX[1]
208         jmp     .Loop8
209 .align  16
210 .Loop8:
211 ___
212 for ($i=0;$i<8;$i++) {
213 $code.=<<___ if ($i==7);
214         add     \$8,$XX[1]#b
215 ___
216 $code.=<<___;
217         add     $TX[0]#b,$YY#b
218         movl    ($dat,$YY,4),$TY#d
219         movl    $TX[0]#d,($dat,$YY,4)
220         movl    `4*($i==7?-1:$i)`($dat,$XX[1],4),$TX[1]#d
221         ror     \$8,%r8                         # ror is redundant when $i=0
222         movl    $TY#d,4*$i($dat,$XX[0],4)
223         add     $TX[0]#b,$TY#b
224         movb    ($dat,$TY,4),%r8b
225 ___
226 push(@TX,shift(@TX)); #push(@XX,shift(@XX));    # "rotate" registers
227 }
228 $code.=<<___;
229         add     \$8,$XX[0]#b
230         ror     \$8,%r8
231         sub     \$8,$len
232
233         xor     ($inp),%r8
234         mov     %r8,($out,$inp)
235         lea     8($inp),$inp
236
237         test    \$-8,$len
238         jnz     .Loop8
239         cmp     \$0,$len
240         jne     .Lloop1
241         jmp     .Lexit
242
243 .align  16
244 .Lintel:
245         test    \$-32,$len
246         jz      .Lloop1
247         and     \$15,$TX[1]
248         jz      .Loop16_is_hot
249         sub     $TX[1],$len
250 .Loop16_warmup:
251         add     $TX[0]#b,$YY#b
252         movl    ($dat,$YY,4),$TY#d
253         movl    $TX[0]#d,($dat,$YY,4)
254         movl    $TY#d,($dat,$XX[0],4)
255         add     $TY#b,$TX[0]#b
256         inc     $XX[0]#b
257         movl    ($dat,$TX[0],4),$TY#d
258         movl    ($dat,$XX[0],4),$TX[0]#d
259         xorb    ($inp),$TY#b
260         movb    $TY#b,($out,$inp)
261         lea     1($inp),$inp
262         dec     $TX[1]
263         jnz     .Loop16_warmup
264
265         mov     $YY,$TX[1]
266         xor     $YY,$YY
267         mov     $TX[1]#b,$YY#b
268
269 .Loop16_is_hot:
270         lea     ($dat,$XX[0],4),$XX[1]
271 ___
272 sub RC4_loop {
273   my $i=shift;
274   my $j=$i<0?0:$i;
275   my $xmm="%xmm".($j&1);
276
277     $code.="    add     \$16,$XX[0]#b\n"                if ($i==15);
278     $code.="    movdqu  ($inp),%xmm2\n"                 if ($i==15);
279     $code.="    add     $TX[0]#b,$YY#b\n"               if ($i<=0);
280     $code.="    movl    ($dat,$YY,4),$TY#d\n";
281     $code.="    pxor    %xmm0,%xmm2\n"                  if ($i==0);
282     $code.="    psllq   \$8,%xmm1\n"                    if ($i==0);
283     $code.="    pxor    $xmm,$xmm\n"                    if ($i<=1);
284     $code.="    movl    $TX[0]#d,($dat,$YY,4)\n";
285     $code.="    add     $TY#b,$TX[0]#b\n";
286     $code.="    movl    `4*($j+1)`($XX[1]),$TX[1]#d\n"  if ($i<15);
287     $code.="    movz    $TX[0]#b,$TX[0]#d\n";
288     $code.="    movl    $TY#d,4*$j($XX[1])\n";
289     $code.="    pxor    %xmm1,%xmm2\n"                  if ($i==0);
290     $code.="    lea     ($dat,$XX[0],4),$XX[1]\n"       if ($i==15);
291     $code.="    add     $TX[1]#b,$YY#b\n"               if ($i<15);
292     $code.="    pinsrw  \$`($j>>1)&7`,($dat,$TX[0],4),$xmm\n";
293     $code.="    movdqu  %xmm2,($out,$inp)\n"            if ($i==0);
294     $code.="    lea     16($inp),$inp\n"                if ($i==0);
295     $code.="    movl    ($XX[1]),$TX[1]#d\n"            if ($i==15);
296 }
297         RC4_loop(-1);
298 $code.=<<___;
299         jmp     .Loop16_enter
300 .align  16
301 .Loop16:
302 ___
303
304 for ($i=0;$i<16;$i++) {
305     $code.=".Loop16_enter:\n"           if ($i==1);
306         RC4_loop($i);
307         push(@TX,shift(@TX));           # "rotate" registers
308 }
309 $code.=<<___;
310         mov     $YY,$TX[1]
311         xor     $YY,$YY                 # keyword to partial register
312         sub     \$16,$len
313         mov     $TX[1]#b,$YY#b
314         test    \$-16,$len
315         jnz     .Loop16
316
317         psllq   \$8,%xmm1
318         pxor    %xmm0,%xmm2
319         pxor    %xmm1,%xmm2
320         movdqu  %xmm2,($out,$inp)
321         lea     16($inp),$inp
322
323         cmp     \$0,$len
324         jne     .Lloop1
325         jmp     .Lexit
326
327 .align  16
328 .Lloop1:
329         add     $TX[0]#b,$YY#b
330         movl    ($dat,$YY,4),$TY#d
331         movl    $TX[0]#d,($dat,$YY,4)
332         movl    $TY#d,($dat,$XX[0],4)
333         add     $TY#b,$TX[0]#b
334         inc     $XX[0]#b
335         movl    ($dat,$TX[0],4),$TY#d
336         movl    ($dat,$XX[0],4),$TX[0]#d
337         xorb    ($inp),$TY#b
338         movb    $TY#b,($out,$inp)
339         lea     1($inp),$inp
340         dec     $len
341         jnz     .Lloop1
342         jmp     .Lexit
343
344 .align  16
345 .LRC4_CHAR:
346         add     \$1,$XX[0]#b
347         movzb   ($dat,$XX[0]),$TX[0]#d
348         test    \$-8,$len
349         jz      .Lcloop1
350         jmp     .Lcloop8
351 .align  16
352 .Lcloop8:
353         mov     ($inp),%r8d
354         mov     4($inp),%r9d
355 ___
356 # unroll 2x4-wise, because 64-bit rotates kill Intel P4...
357 for ($i=0;$i<4;$i++) {
358 $code.=<<___;
359         add     $TX[0]#b,$YY#b
360         lea     1($XX[0]),$XX[1]
361         movzb   ($dat,$YY),$TY#d
362         movzb   $XX[1]#b,$XX[1]#d
363         movzb   ($dat,$XX[1]),$TX[1]#d
364         movb    $TX[0]#b,($dat,$YY)
365         cmp     $XX[1],$YY
366         movb    $TY#b,($dat,$XX[0])
367         jne     .Lcmov$i                        # Intel cmov is sloooow...
368         mov     $TX[0],$TX[1]
369 .Lcmov$i:
370         add     $TX[0]#b,$TY#b
371         xor     ($dat,$TY),%r8b
372         ror     \$8,%r8d
373 ___
374 push(@TX,shift(@TX)); push(@XX,shift(@XX));     # "rotate" registers
375 }
376 for ($i=4;$i<8;$i++) {
377 $code.=<<___;
378         add     $TX[0]#b,$YY#b
379         lea     1($XX[0]),$XX[1]
380         movzb   ($dat,$YY),$TY#d
381         movzb   $XX[1]#b,$XX[1]#d
382         movzb   ($dat,$XX[1]),$TX[1]#d
383         movb    $TX[0]#b,($dat,$YY)
384         cmp     $XX[1],$YY
385         movb    $TY#b,($dat,$XX[0])
386         jne     .Lcmov$i                        # Intel cmov is sloooow...
387         mov     $TX[0],$TX[1]
388 .Lcmov$i:
389         add     $TX[0]#b,$TY#b
390         xor     ($dat,$TY),%r9b
391         ror     \$8,%r9d
392 ___
393 push(@TX,shift(@TX)); push(@XX,shift(@XX));     # "rotate" registers
394 }
395 $code.=<<___;
396         lea     -8($len),$len
397         mov     %r8d,($out)
398         lea     8($inp),$inp
399         mov     %r9d,4($out)
400         lea     8($out),$out
401
402         test    \$-8,$len
403         jnz     .Lcloop8
404         cmp     \$0,$len
405         jne     .Lcloop1
406         jmp     .Lexit
407 ___
408 $code.=<<___;
409 .align  16
410 .Lcloop1:
411         add     $TX[0]#b,$YY#b
412         movzb   $YY#b,$YY#d
413         movzb   ($dat,$YY),$TY#d
414         movb    $TX[0]#b,($dat,$YY)
415         movb    $TY#b,($dat,$XX[0])
416         add     $TX[0]#b,$TY#b
417         add     \$1,$XX[0]#b
418         movzb   $TY#b,$TY#d
419         movzb   $XX[0]#b,$XX[0]#d
420         movzb   ($dat,$TY),$TY#d
421         movzb   ($dat,$XX[0]),$TX[0]#d
422         xorb    ($inp),$TY#b
423         lea     1($inp),$inp
424         movb    $TY#b,($out)
425         lea     1($out),$out
426         sub     \$1,$len
427         jnz     .Lcloop1
428         jmp     .Lexit
429
430 .align  16
431 .Lexit:
432         sub     \$1,$XX[0]#b
433         movl    $XX[0]#d,-8($dat)
434         movl    $YY#d,-4($dat)
435
436         mov     (%rsp),%r13
437 .cfi_restore    %r13
438         mov     8(%rsp),%r12
439 .cfi_restore    %r12
440         mov     16(%rsp),%rbx
441 .cfi_restore    %rbx
442         add     \$24,%rsp
443 .cfi_adjust_cfa_offset  -24
444 .Lepilogue:
445         ret
446 .cfi_endproc
447 .size   RC4,.-RC4
448 ___
449 }
450
451 $idx="%r8";
452 $ido="%r9";
453
454 $code.=<<___;
455 .globl  RC4_set_key
456 .type   RC4_set_key,\@function,3
457 .align  16
458 RC4_set_key:
459 .cfi_startproc
460         lea     8($dat),$dat
461         lea     ($inp,$len),$inp
462         neg     $len
463         mov     $len,%rcx
464         xor     %eax,%eax
465         xor     $ido,$ido
466         xor     %r10,%r10
467         xor     %r11,%r11
468
469         mov     OPENSSL_ia32cap_P(%rip),$idx#d
470         bt      \$20,$idx#d     # RC4_CHAR?
471         jc      .Lc1stloop
472         jmp     .Lw1stloop
473
474 .align  16
475 .Lw1stloop:
476         mov     %eax,($dat,%rax,4)
477         add     \$1,%al
478         jnc     .Lw1stloop
479
480         xor     $ido,$ido
481         xor     $idx,$idx
482 .align  16
483 .Lw2ndloop:
484         mov     ($dat,$ido,4),%r10d
485         add     ($inp,$len,1),$idx#b
486         add     %r10b,$idx#b
487         add     \$1,$len
488         mov     ($dat,$idx,4),%r11d
489         cmovz   %rcx,$len
490         mov     %r10d,($dat,$idx,4)
491         mov     %r11d,($dat,$ido,4)
492         add     \$1,$ido#b
493         jnc     .Lw2ndloop
494         jmp     .Lexit_key
495
496 .align  16
497 .Lc1stloop:
498         mov     %al,($dat,%rax)
499         add     \$1,%al
500         jnc     .Lc1stloop
501
502         xor     $ido,$ido
503         xor     $idx,$idx
504 .align  16
505 .Lc2ndloop:
506         mov     ($dat,$ido),%r10b
507         add     ($inp,$len),$idx#b
508         add     %r10b,$idx#b
509         add     \$1,$len
510         mov     ($dat,$idx),%r11b
511         jnz     .Lcnowrap
512         mov     %rcx,$len
513 .Lcnowrap:
514         mov     %r10b,($dat,$idx)
515         mov     %r11b,($dat,$ido)
516         add     \$1,$ido#b
517         jnc     .Lc2ndloop
518         movl    \$-1,256($dat)
519
520 .align  16
521 .Lexit_key:
522         xor     %eax,%eax
523         mov     %eax,-8($dat)
524         mov     %eax,-4($dat)
525         ret
526 .cfi_endproc
527 .size   RC4_set_key,.-RC4_set_key
528
529 .globl  RC4_options
530 .type   RC4_options,\@abi-omnipotent
531 .align  16
532 RC4_options:
533 .cfi_startproc
534         lea     .Lopts(%rip),%rax
535         mov     OPENSSL_ia32cap_P(%rip),%edx
536         bt      \$20,%edx
537         jc      .L8xchar
538         bt      \$30,%edx
539         jnc     .Ldone
540         add     \$25,%rax
541         ret
542 .L8xchar:
543         add     \$12,%rax
544 .Ldone:
545         ret
546 .cfi_endproc
547 .align  64
548 .Lopts:
549 .asciz  "rc4(8x,int)"
550 .asciz  "rc4(8x,char)"
551 .asciz  "rc4(16x,int)"
552 .asciz  "RC4 for x86_64, CRYPTOGAMS by <appro\@openssl.org>"
553 .align  64
554 .size   RC4_options,.-RC4_options
555 ___
556
557 # EXCEPTION_DISPOSITION handler (EXCEPTION_RECORD *rec,ULONG64 frame,
558 #               CONTEXT *context,DISPATCHER_CONTEXT *disp)
559 if ($win64) {
560 $rec="%rcx";
561 $frame="%rdx";
562 $context="%r8";
563 $disp="%r9";
564
565 $code.=<<___;
566 .extern __imp_RtlVirtualUnwind
567 .type   stream_se_handler,\@abi-omnipotent
568 .align  16
569 stream_se_handler:
570         push    %rsi
571         push    %rdi
572         push    %rbx
573         push    %rbp
574         push    %r12
575         push    %r13
576         push    %r14
577         push    %r15
578         pushfq
579         sub     \$64,%rsp
580
581         mov     120($context),%rax      # pull context->Rax
582         mov     248($context),%rbx      # pull context->Rip
583
584         lea     .Lprologue(%rip),%r10
585         cmp     %r10,%rbx               # context->Rip<prologue label
586         jb      .Lin_prologue
587
588         mov     152($context),%rax      # pull context->Rsp
589
590         lea     .Lepilogue(%rip),%r10
591         cmp     %r10,%rbx               # context->Rip>=epilogue label
592         jae     .Lin_prologue
593
594         lea     24(%rax),%rax
595
596         mov     -8(%rax),%rbx
597         mov     -16(%rax),%r12
598         mov     -24(%rax),%r13
599         mov     %rbx,144($context)      # restore context->Rbx
600         mov     %r12,216($context)      # restore context->R12
601         mov     %r13,224($context)      # restore context->R13
602
603 .Lin_prologue:
604         mov     8(%rax),%rdi
605         mov     16(%rax),%rsi
606         mov     %rax,152($context)      # restore context->Rsp
607         mov     %rsi,168($context)      # restore context->Rsi
608         mov     %rdi,176($context)      # restore context->Rdi
609
610         jmp     .Lcommon_seh_exit
611 .size   stream_se_handler,.-stream_se_handler
612
613 .type   key_se_handler,\@abi-omnipotent
614 .align  16
615 key_se_handler:
616         push    %rsi
617         push    %rdi
618         push    %rbx
619         push    %rbp
620         push    %r12
621         push    %r13
622         push    %r14
623         push    %r15
624         pushfq
625         sub     \$64,%rsp
626
627         mov     152($context),%rax      # pull context->Rsp
628         mov     8(%rax),%rdi
629         mov     16(%rax),%rsi
630         mov     %rsi,168($context)      # restore context->Rsi
631         mov     %rdi,176($context)      # restore context->Rdi
632
633 .Lcommon_seh_exit:
634
635         mov     40($disp),%rdi          # disp->ContextRecord
636         mov     $context,%rsi           # context
637         mov     \$154,%ecx              # sizeof(CONTEXT)
638         .long   0xa548f3fc              # cld; rep movsq
639
640         mov     $disp,%rsi
641         xor     %rcx,%rcx               # arg1, UNW_FLAG_NHANDLER
642         mov     8(%rsi),%rdx            # arg2, disp->ImageBase
643         mov     0(%rsi),%r8             # arg3, disp->ControlPc
644         mov     16(%rsi),%r9            # arg4, disp->FunctionEntry
645         mov     40(%rsi),%r10           # disp->ContextRecord
646         lea     56(%rsi),%r11           # &disp->HandlerData
647         lea     24(%rsi),%r12           # &disp->EstablisherFrame
648         mov     %r10,32(%rsp)           # arg5
649         mov     %r11,40(%rsp)           # arg6
650         mov     %r12,48(%rsp)           # arg7
651         mov     %rcx,56(%rsp)           # arg8, (NULL)
652         call    *__imp_RtlVirtualUnwind(%rip)
653
654         mov     \$1,%eax                # ExceptionContinueSearch
655         add     \$64,%rsp
656         popfq
657         pop     %r15
658         pop     %r14
659         pop     %r13
660         pop     %r12
661         pop     %rbp
662         pop     %rbx
663         pop     %rdi
664         pop     %rsi
665         ret
666 .size   key_se_handler,.-key_se_handler
667
668 .section        .pdata
669 .align  4
670         .rva    .LSEH_begin_RC4
671         .rva    .LSEH_end_RC4
672         .rva    .LSEH_info_RC4
673
674         .rva    .LSEH_begin_RC4_set_key
675         .rva    .LSEH_end_RC4_set_key
676         .rva    .LSEH_info_RC4_set_key
677
678 .section        .xdata
679 .align  8
680 .LSEH_info_RC4:
681         .byte   9,0,0,0
682         .rva    stream_se_handler
683 .LSEH_info_RC4_set_key:
684         .byte   9,0,0,0
685         .rva    key_se_handler
686 ___
687 }
688
689 sub reg_part {
690 my ($reg,$conv)=@_;
691     if ($reg =~ /%r[0-9]+/)     { $reg .= $conv; }
692     elsif ($conv eq "b")        { $reg =~ s/%[er]([^x]+)x?/%$1l/;       }
693     elsif ($conv eq "w")        { $reg =~ s/%[er](.+)/%$1/;             }
694     elsif ($conv eq "d")        { $reg =~ s/%[er](.+)/%e$1/;            }
695     return $reg;
696 }
697
698 $code =~ s/(%[a-z0-9]+)#([bwd])/reg_part($1,$2)/gem;
699 $code =~ s/\`([^\`]*)\`/eval $1/gem;
700
701 print $code;
702
703 close STDOUT or die "error closing STDOUT";