Copyright consolidation: perl files
[openssl.git] / crypto / perlasm / x86asm.pl
1 #! /usr/bin/env perl
2 # Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3 #
4 # Licensed under the OpenSSL license (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 # require 'x86asm.pl';
11 # &asm_init(<flavor>,"des-586.pl"[,$i386only]);
12 # &function_begin("foo");
13 # ...
14 # &function_end("foo");
15 # &asm_finish
16
17 $out=();
18 $i386=0;
19
20 # AUTOLOAD is this context has quite unpleasant side effect, namely
21 # that typos in function calls effectively go to assembler output,
22 # but on the pros side we don't have to implement one subroutine per
23 # each opcode...
24 sub ::AUTOLOAD
25 { my $opcode = $AUTOLOAD;
26
27     die "more than 4 arguments passed to $opcode" if ($#_>3);
28
29     $opcode =~ s/.*:://;
30     if    ($opcode =~ /^push/) { $stack+=4; }
31     elsif ($opcode =~ /^pop/)  { $stack-=4; }
32
33     &generic($opcode,@_) or die "undefined subroutine \&$AUTOLOAD";
34 }
35
36 sub ::emit
37 { my $opcode=shift;
38
39     if ($#_==-1)    { push(@out,"\t$opcode\n");                         }
40     else            { push(@out,"\t$opcode\t".join(',',@_)."\n");       }
41 }
42
43 sub ::LB
44 {   $_[0] =~ m/^e?([a-d])x$/o or die "$_[0] does not have a 'low byte'";
45   $1."l";
46 }
47 sub ::HB
48 {   $_[0] =~ m/^e?([a-d])x$/o or die "$_[0] does not have a 'high byte'";
49   $1."h";
50 }
51 sub ::stack_push{ my $num=$_[0]*4; $stack+=$num; &sub("esp",$num);      }
52 sub ::stack_pop { my $num=$_[0]*4; $stack-=$num; &add("esp",$num);      }
53 sub ::blindpop  { &pop($_[0]); $stack+=4;                               }
54 sub ::wparam    { &DWP($stack+4*$_[0],"esp");                           }
55 sub ::swtmp     { &DWP(4*$_[0],"esp");                                  }
56
57 sub ::bswap
58 {   if ($i386)  # emulate bswap for i386
59     {   &comment("bswap @_");
60         &xchg(&HB(@_),&LB(@_));
61         &ror (@_,16);
62         &xchg(&HB(@_),&LB(@_));
63     }
64     else
65     {   &generic("bswap",@_);   }
66 }
67 # These are made-up opcodes introduced over the years essentially
68 # by ignorance, just alias them to real ones...
69 sub ::movb      { &mov(@_);     }
70 sub ::xorb      { &xor(@_);     }
71 sub ::rotl      { &rol(@_);     }
72 sub ::rotr      { &ror(@_);     }
73 sub ::exch      { &xchg(@_);    }
74 sub ::halt      { &hlt;         }
75 sub ::movz      { &movzx(@_);   }
76 sub ::pushf     { &pushfd;      }
77 sub ::popf      { &popfd;       }
78
79 # 3 argument instructions
80 sub ::movq
81 { my($p1,$p2,$optimize)=@_;
82
83     if ($optimize && $p1=~/^mm[0-7]$/ && $p2=~/^mm[0-7]$/)
84     # movq between mmx registers can sink Intel CPUs
85     {   &::pshufw($p1,$p2,0xe4);                }
86     else
87     {   &::generic("movq",@_);                  }
88 }
89
90 # SSE>2 instructions
91 my %regrm = (   "eax"=>0, "ecx"=>1, "edx"=>2, "ebx"=>3,
92                 "esp"=>4, "ebp"=>5, "esi"=>6, "edi"=>7  );
93 sub ::pextrd
94 { my($dst,$src,$imm)=@_;
95     if ("$dst:$src" =~ /(e[a-dsd][ixp]):xmm([0-7])/)
96     {   &::data_byte(0x66,0x0f,0x3a,0x16,0xc0|($2<<3)|$regrm{$1},$imm); }
97     else
98     {   &::generic("pextrd",@_);                }
99 }
100
101 sub ::pinsrd
102 { my($dst,$src,$imm)=@_;
103     if ("$dst:$src" =~ /xmm([0-7]):(e[a-dsd][ixp])/)
104     {   &::data_byte(0x66,0x0f,0x3a,0x22,0xc0|($1<<3)|$regrm{$2},$imm); }
105     else
106     {   &::generic("pinsrd",@_);                }
107 }
108
109 sub ::pshufb
110 { my($dst,$src)=@_;
111     if ("$dst:$src" =~ /xmm([0-7]):xmm([0-7])/)
112     {   &data_byte(0x66,0x0f,0x38,0x00,0xc0|($1<<3)|$2);        }
113     else
114     {   &::generic("pshufb",@_);                }
115 }
116
117 sub ::palignr
118 { my($dst,$src,$imm)=@_;
119     if ("$dst:$src" =~ /xmm([0-7]):xmm([0-7])/)
120     {   &::data_byte(0x66,0x0f,0x3a,0x0f,0xc0|($1<<3)|$2,$imm); }
121     else
122     {   &::generic("palignr",@_);               }
123 }
124
125 sub ::pclmulqdq
126 { my($dst,$src,$imm)=@_;
127     if ("$dst:$src" =~ /xmm([0-7]):xmm([0-7])/)
128     {   &::data_byte(0x66,0x0f,0x3a,0x44,0xc0|($1<<3)|$2,$imm); }
129     else
130     {   &::generic("pclmulqdq",@_);             }
131 }
132
133 sub ::rdrand
134 { my ($dst)=@_;
135     if ($dst =~ /(e[a-dsd][ixp])/)
136     {   &::data_byte(0x0f,0xc7,0xf0|$regrm{$dst});      }
137     else
138     {   &::generic("rdrand",@_);        }
139 }
140
141 sub ::rdseed
142 { my ($dst)=@_;
143     if ($dst =~ /(e[a-dsd][ixp])/)
144     {   &::data_byte(0x0f,0xc7,0xf8|$regrm{$dst});      }
145     else
146     {   &::generic("rdrand",@_);        }
147 }
148
149 sub rxb {
150  local *opcode=shift;
151  my ($dst,$src1,$src2,$rxb)=@_;
152
153    $rxb|=0x7<<5;
154    $rxb&=~(0x04<<5) if($dst>=8);
155    $rxb&=~(0x01<<5) if($src1>=8);
156    $rxb&=~(0x02<<5) if($src2>=8);
157    push @opcode,$rxb;
158 }
159
160 sub ::vprotd
161 { my $args=join(',',@_);
162     if ($args =~ /xmm([0-7]),xmm([0-7]),([x0-9a-f]+)/)
163     { my @opcode=(0x8f);
164         rxb(\@opcode,$1,$2,-1,0x08);
165         push @opcode,0x78,0xc2;
166         push @opcode,0xc0|($2&7)|(($1&7)<<3);           # ModR/M
167         my $c=$3;
168         push @opcode,$c=~/^0/?oct($c):$c;
169         &::data_byte(@opcode);
170     }
171     else
172     {   &::generic("vprotd",@_);        }
173 }
174
175 # label management
176 $lbdecor="L";           # local label decoration, set by package
177 $label="000";
178
179 sub ::islabel           # see is argument is a known label
180 { my $i;
181     foreach $i (values %label) { return $i if ($i eq $_[0]); }
182   $label{$_[0]};        # can be undef
183 }
184
185 sub ::label             # instantiate a function-scope label
186 {   if (!defined($label{$_[0]}))
187     {   $label{$_[0]}="${lbdecor}${label}${_[0]}"; $label++;   }
188   $label{$_[0]};
189 }
190
191 sub ::LABEL             # instantiate a file-scope label
192 {   $label{$_[0]}=$_[1] if (!defined($label{$_[0]}));
193   $label{$_[0]};
194 }
195
196 sub ::static_label      { &::LABEL($_[0],$lbdecor.$_[0]); }
197
198 sub ::set_label_B       { push(@out,"@_:\n"); }
199 sub ::set_label
200 { my $label=&::label($_[0]);
201     &::align($_[1]) if ($_[1]>1);
202     &::set_label_B($label);
203   $label;
204 }
205
206 sub ::wipe_labels       # wipes function-scope labels
207 {   foreach $i (keys %label)
208     {   delete $label{$i} if ($label{$i} =~ /^\Q${lbdecor}\E[0-9]{3}/); }
209 }
210
211 # subroutine management
212 sub ::function_begin
213 {   &function_begin_B(@_);
214     $stack=4;
215     &push("ebp");
216     &push("ebx");
217     &push("esi");
218     &push("edi");
219 }
220
221 sub ::function_end
222 {   &pop("edi");
223     &pop("esi");
224     &pop("ebx");
225     &pop("ebp");
226     &ret();
227     &function_end_B(@_);
228     $stack=0;
229     &wipe_labels();
230 }
231
232 sub ::function_end_A
233 {   &pop("edi");
234     &pop("esi");
235     &pop("ebx");
236     &pop("ebp");
237     &ret();
238     $stack+=16; # readjust esp as if we didn't pop anything
239 }
240
241 sub ::asciz
242 { my @str=unpack("C*",shift);
243     push @str,0;
244     while ($#str>15) {
245         &data_byte(@str[0..15]);
246         foreach (0..15) { shift @str; }
247     }
248     &data_byte(@str) if (@str);
249 }
250
251 sub ::asm_finish
252 {   &file_end();
253     print @out;
254 }
255
256 sub ::asm_init
257 { my ($type,$fn,$cpu)=@_;
258
259     $filename=$fn;
260     $i386=$cpu;
261
262     $elf=$cpp=$coff=$aout=$macosx=$win32=$netware=$mwerks=$android=0;
263     if    (($type eq "elf"))
264     {   $elf=1;                 require "x86gas.pl";    }
265     elsif (($type eq "elf-1"))
266     {   $elf=-1;                require "x86gas.pl";    }
267     elsif (($type eq "a\.out"))
268     {   $aout=1;                require "x86gas.pl";    }
269     elsif (($type eq "coff" or $type eq "gaswin"))
270     {   $coff=1;                require "x86gas.pl";    }
271     elsif (($type eq "win32n"))
272     {   $win32=1;               require "x86nasm.pl";   }
273     elsif (($type eq "nw-nasm"))
274     {   $netware=1;             require "x86nasm.pl";   }
275     #elsif (($type eq "nw-mwasm"))
276     #{  $netware=1; $mwerks=1;  require "x86nasm.pl";   }
277     elsif (($type eq "win32"))
278     {   $win32=1;               require "x86masm.pl";   }
279     elsif (($type eq "macosx"))
280     {   $aout=1; $macosx=1;     require "x86gas.pl";    }
281     elsif (($type eq "android"))
282     {   $elf=1; $android=1;     require "x86gas.pl";    }
283     else
284     {   print STDERR <<"EOF";
285 Pick one target type from
286         elf     - Linux, FreeBSD, Solaris x86, etc.
287         a.out   - DJGPP, elder OpenBSD, etc.
288         coff    - GAS/COFF such as Win32 targets
289         win32n  - Windows 95/Windows NT NASM format
290         nw-nasm - NetWare NASM format
291         macosx  - Mac OS X
292 EOF
293         exit(1);
294     }
295
296     $pic=0;
297     for (@ARGV) { $pic=1 if (/\-[fK]PIC/i); }
298
299     $filename =~ s/\.pl$//;
300     &file($filename);
301 }
302
303 sub ::hidden {}
304
305 1;