4 # &asm_init(<flavor>,"des-586.pl"[,$i386only]);
5 # &function_begin("foo");
7 # &function_end("foo");
13 # AUTOLOAD is this context has quite unpleasant side effect, namely
14 # that typos in function calls effectively go to assembler output,
15 # but on the pros side we don't have to implement one subroutine per
18 { my $opcode = $AUTOLOAD;
20 die "more than 4 arguments passed to $opcode" if ($#_>3);
23 if ($opcode =~ /^push/) { $stack+=4; }
24 elsif ($opcode =~ /^pop/) { $stack-=4; }
26 &generic
($opcode,@_) or die "undefined subroutine \&$AUTOLOAD";
32 if ($#_==-1) { push(@out,"\t$opcode\n"); }
33 else { push(@out,"\t$opcode\t".join(',',@_)."\n"); }
39 if ($#_==-1) { push(@out,"$opcode\n"); }
40 else { push(@out,"$opcode\t".join(',',@_)."\n"); }
44 { $_[0] =~ m/^e?([a-d])x$/o or die "$_[0] does not have a 'low byte'";
48 { $_[0] =~ m/^e?([a-d])x$/o or die "$_[0] does not have a 'high byte'";
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"); }
58 { if ($i386) # emulate bswap for i386
59 { &comment
("bswap @_");
60 &xchg
(&HB
(@_),&LB
(@_));
62 &xchg
(&HB
(@_),&LB
(@_));
65 { &generic
("bswap",@_); }
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
(@_); }
75 sub ::movz
{ &movzx
(@_); }
76 sub ::pushf
{ &pushfd
; }
77 sub ::popf
{ &popfd
; }
79 # 3 argument instructions
81 { my($p1,$p2,$optimize)=@_;
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); }
87 { &::generic
("movq",@_); }
91 my %regrm = ( "eax"=>0, "ecx"=>1, "edx"=>2, "ebx"=>3,
92 "esp"=>4, "ebp"=>5, "esi"=>6, "edi"=>7 );
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); }
98 { &::generic
("pextrd",@_); }
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); }
106 { &::generic
("pinsrd",@_); }
111 if ("$dst:$src" =~ /xmm([0-7]):xmm([0-7])/)
112 { &data_byte
(0x66,0x0f,0x38,0x00,0xc0|($1<<3)|$2); }
114 { &::generic
("pshufb",@_); }
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); }
122 { &::generic
("palignr",@_); }
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); }
130 { &::generic
("pclmulqdq",@_); }
134 $lbdecor="L"; # local label decoration, set by package
137 sub ::islabel
# see is argument is a known label
139 foreach $i (values %label) { return $i if ($i eq $_[0]); }
140 $label{$_[0]}; # can be undef
143 sub ::label
# instantiate a function-scope label
144 { if (!defined($label{$_[0]}))
145 { $label{$_[0]}="${lbdecor}${label}${_[0]}"; $label++; }
149 sub ::LABEL
# instantiate a file-scope label
150 { $label{$_[0]}=$_[1] if (!defined($label{$_[0]}));
154 sub ::static_label
{ &::LABEL
($_[0],$lbdecor.$_[0]); }
156 sub ::set_label_B
{ push(@out,"@_:\n"); }
158 { my $label=&::label
($_[0]);
159 &::align
($_[1]) if ($_[1]>1);
160 &::set_label_B
($label);
164 sub ::wipe_labels
# wipes function-scope labels
165 { foreach $i (keys %label)
166 { delete $label{$i} if ($label{$i} =~ /^\Q${lbdecor}\E[0-9]{3}/); }
169 # subroutine management
171 { &function_begin_B
(@_);
196 $stack+=16; # readjust esp as if we didn't pop anything
200 { my @str=unpack("C*",shift);
203 &data_byte
(@str[0..15]);
204 foreach (0..15) { shift @str; }
206 &data_byte
(@str) if (@str);
215 { my ($type,$fn,$cpu)=@_;
220 $elf=$cpp=$coff=$aout=$macosx=$win32=$openbsd=$android=0;
221 if (($type eq "elf"))
222 { $elf=1; require "x86gas.pl"; }
223 elsif (($type eq "a\.out"))
224 { $aout=1; require "x86gas.pl"; }
225 elsif (($type eq "coff" or $type eq "gaswin"))
226 { $coff=1; require "x86gas.pl"; }
227 elsif (($type eq "macosx"))
228 { $aout=1; $macosx=1; require "x86gas.pl"; }
229 elsif (($type eq "openbsd-elf"))
230 { $openbsd=$elf=1; require "x86gas.pl"; }
231 elsif (($type eq "openbsd-a.out"))
232 { $openbsd=1; require "x86gas.pl"; }
233 elsif (($type eq "android"))
234 { $elf=1; $android=1; require "x86gas.pl"; }
236 { print STDERR
<<"EOF";
237 Pick one target type from
238 elf - Linux, FreeBSD, Solaris x86, etc.
239 a.out - DJGPP, elder OpenBSD, etc.
240 coff - GAS/COFF such as Win32 targets
241 openbsd-elf - OpenBSD elf
242 openbsd-a.out - OpenBSD a.out
249 for (@ARGV) { $pic=1 if (/\-[fK]PIC/i); }
251 ::emitraw
("#include \"x86_arch.h\"\n");
252 ::emitraw
("#include <machine/asm.h>\n") if $openbsd;
253 $filename =~ s/\.pl$//;