]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/perlasm/x86asm.pl
Support for .asciz directive in perlasm modules.
[thirdparty/openssl.git] / crypto / perlasm / x86asm.pl
CommitLineData
4b67fefe 1#!/usr/bin/env perl
58964a49
RE
2
3# require 'x86asm.pl';
4b67fefe
AP
4# &asm_init(<flavor>,"des-586.pl"[,$i386only]);
5# &function_begin("foo");
6# ...
7# &function_end("foo");
8# &asm_finish
9
10# AUTOLOAD is this context has quite unpleasant side effect, namely
11# that typos in function calls effectively go to assembler output,
12# but on the pros side we don't have to implement one subroutine per
13# each opcode...
14sub ::AUTOLOAD
15{ my $opcode = $AUTOLOAD;
16
17 die "more than 2 arguments passed to $opcode" if ($#_>1);
18
19 $opcode =~ s/.*:://;
20 if ($opcode =~ /^push/) { $stack+=4; }
21 elsif ($opcode =~ /^pop/) { $stack-=4; }
22
23 &generic($opcode,@_) or die "undefined subroutine \&$AUTOLOAD";
24}
25
26$out=();
27$i386=0;
28
29sub ::emit
30{ my $opcode=shift;
31
32 if ($#_==-1) { push(@out,"\t$opcode\n"); }
33 else { push(@out,"\t$opcode\t".join(',',@_)."\n"); }
34}
35
36sub ::LB
37{ $_[0] =~ m/^e?([a-d])x$/o or die "$_[0] does not have a 'low byte'";
38 $1."l";
39}
40sub ::HB
41{ $_[0] =~ m/^e?([a-d])x$/o or die "$_[0] does not have a 'high byte'";
42 $1."h";
43}
44sub ::stack_push{ my $num=$_[0]*4; $stack+=$num; &sub("esp",$num); }
45sub ::stack_pop { my $num=$_[0]*4; $stack-=$num; &add("esp",$num); }
46sub ::blindpop { &pop($_[0]); $stack+=4; }
47sub ::wparam { &DWP($stack+4*$_[0],"esp"); }
48sub ::swtmp { &DWP(4*$_[0],"esp"); }
49
50sub ::bswap
51{ if ($i386) # emulate bswap for i386
52 { &comment("bswap @_");
53 &xchg(&HB(@_),&LB(@_));
54 &ror (@_,16);
55 &xchg(&HB(@_),&LB(@_));
56 }
57 else
58 { &generic("bswap",@_); }
59}
60# These are made-up opcodes introduced over the years essentially
61# by ignorance, just alias them to real ones...
62sub ::movb { &mov(@_); }
63sub ::xorb { &xor(@_); }
64sub ::rotl { &rol(@_); }
65sub ::rotr { &ror(@_); }
66sub ::exch { &xchg(@_); }
67sub ::halt { &hlt; }
68
69sub ::function_begin
70{ &function_begin_B(@_);
71 $stack=4;
72 &push("ebp");
73 &push("ebx");
74 &push("esi");
75 &push("edi");
76}
77
78sub ::function_end
79{ &pop("edi");
80 &pop("esi");
81 &pop("ebx");
82 &pop("ebp");
83 &ret();
84 $stack=0;
85 &function_end_B(@_);
86}
87
88sub ::function_end_A
89{ &pop("edi");
90 &pop("esi");
91 &pop("ebx");
92 &pop("ebp");
93 &ret();
94 $stack+=16; # readjust esp as if we didn't pop anything
95}
96
d68ff710
AP
97sub ::asciz { foreach (@_) { &data_byte(unpack("C*",$_[0]),0); } }
98
4b67fefe
AP
99sub ::asm_finish
100{ &file_end();
101 print @out;
102}
103
104sub ::asm_init
105{ my ($type,$fn,$cpu)=@_;
106
107 $filename=$fn;
108 $i386=$cpu;
109
110 $elf=$cpp=$coff=$aout=$win32=$netware=$mwerks=0;
111 if (($type eq "elf"))
112 { $elf=1; require "x86unix.pl"; }
113 elsif (($type eq "a\.out"))
114 { $aout=1; require "x86unix.pl"; }
115 elsif (($type eq "coff" or $type eq "gaswin"))
116 { $coff=1; require "x86unix.pl"; }
117 elsif (($type eq "win32n"))
118 { $win32=1; require "x86nasm.pl"; }
119 elsif (($type eq "nw-nasm"))
120 { $netware=1; require "x86nasm.pl"; }
121 elsif (($type eq "nw-mwasm"))
122 { $netware=1; $mwerks=1; require "x86nasm.pl"; }
123 else
124 { print STDERR <<"EOF";
58964a49 125Pick one target type from
8aae01e2 126 elf - Linux, FreeBSD, Solaris x86, etc.
4b67fefe 127 a.out - DJGPP, elder OpenBSD, etc.
8aae01e2 128 coff - GAS/COFF such as Win32 targets
72e2ffee 129 win32n - Windows 95/Windows NT NASM format
4d8743f4
RL
130 nw-nasm - NetWare NASM format
131 nw-mwasm- NetWare Metrowerks Assembler
58964a49 132EOF
4b67fefe
AP
133 exit(1);
134 }
135
136 $pic=0;
137 for (@ARGV) { $pic=1 if (/\-[fK]PIC/i); }
138
139 $filename =~ s/\.pl$//;
140 &file($filename);
141}
58964a49
RE
142
1431;