224feff12e8f33e4b12fb599ebe14df261a33b65
[openssl.git] / crypto / perlasm / x86nasm.pl
1 #!/usr/bin/env perl
2
3 package x86nasm;
4
5 *out=\@::out;
6
7 $::lbdecor="L\$";               # local label decoration
8 $nmdecor=$::netware?"":"_";     # external name decoration
9 $drdecor=$::mwerks?".":"";      # directive decoration
10
11 $initseg="";
12
13 sub ::generic
14 { my $opcode=shift;
15   my $tmp;
16
17     if (!$::mwerks)
18     {   if    ($opcode =~ m/^j/o && $#_==0) # optimize jumps
19         {   $_[0] = "NEAR $_[0]";       }
20         elsif ($opcode eq "lea" && $#_==1)  # wipe storage qualifier from lea
21         {   $_[1] =~ s/^[^\[]*\[/\[/o;  }
22     }
23     &::emit($opcode,@_);
24   1;
25 }
26 #
27 # opcodes not covered by ::generic above, mostly inconsistent namings...
28 #
29 sub ::call      { &::emit("call",(&::islabel($_[0]) or "$nmdecor$_[0]")); }
30 sub ::call_ptr  { &::emit("call",@_);   }
31 sub ::jmp_ptr   { &::emit("jmp",@_);    }
32
33 sub get_mem
34 { my($size,$addr,$reg1,$reg2,$idx)=@_;
35   my($post,$ret);
36
37     if ($size ne "")
38     {   $ret .= "$size";
39         $ret .= " PTR" if ($::mwerks);
40         $ret .= " ";
41     }
42     $ret .= "[";
43
44     $addr =~ s/^\s+//;
45     # prepend global references with optional underscore
46     $addr =~ s/^([^\+\-0-9][^\+\-]*)/::islabel($1) or "$nmdecor$1"/ige;
47     # put address arithmetic expression in parenthesis
48     $addr="($addr)" if ($addr =~ /^.+[\-\+].+$/);
49
50     if (($addr ne "") && ($addr ne 0))
51     {   if ($addr !~ /^-/)      { $ret .= "$addr+"; }
52         else                    { $post=$addr;      }
53     }
54
55     if ($reg2 ne "")
56     {   $idx!=0 or $idx=1;
57         $ret .= "$reg2*$idx";
58         $ret .= "+$reg1" if ($reg1 ne "");
59     }
60     else
61     {   $ret .= "$reg1";   }
62
63     $ret .= "$post]";
64     $ret =~ s/\+\]/]/; # in case $addr was the only argument
65
66   $ret;
67 }
68 sub ::BP        { &get_mem("BYTE",@_);  }
69 sub ::DWP       { &get_mem("DWORD",@_); }
70 sub ::WP        { &get_mem("WORD",@_);  }
71 sub ::QWP       { &get_mem("",@_);      }
72 sub ::BC        { (($::mwerks)?"":"BYTE ")."@_";  }
73 sub ::DWC       { (($::mwerks)?"":"DWORD ")."@_"; }
74
75 sub ::file
76 {   if ($::mwerks)      { push(@out,".section\t.text,64\n"); }
77     else
78     { my $tmp=<<___;
79 %ifidn __OUTPUT_FORMAT__,obj
80 section code    use32 class=code align=64
81 %elifidn __OUTPUT_FORMAT__,win32
82 \$\@feat.00 equ 1
83 section .text   code align=64
84 %else
85 section .text   code
86 %endif
87 ___
88         push(@out,$tmp);
89     }
90 }
91
92 sub ::function_begin_B
93 { my $func=shift;
94   my $global=($func !~ /^_/);
95   my $begin="${::lbdecor}_${func}_begin";
96
97     $begin =~ s/^\@/./ if ($::mwerks);  # the torture never stops
98
99     &::LABEL($func,$global?"$begin":"$nmdecor$func");
100     $func=$nmdecor.$func;
101
102     push(@out,"${drdecor}global $func\n")       if ($global);
103     push(@out,"${drdecor}align  16\n");
104     push(@out,"$func:\n");
105     push(@out,"$begin:\n")                      if ($global);
106     $::stack=4;
107 }
108
109 sub ::function_end_B
110 {   $::stack=0;
111     &::wipe_labels();
112 }
113
114 sub ::file_end
115 {   if (grep {/\b${nmdecor}OPENSSL_ia32cap_P\b/i} @out)
116     {   my $comm=<<___;
117 ${drdecor}segment       .bss
118 ${drdecor}common        ${nmdecor}OPENSSL_ia32cap_P 8
119 ___
120         # comment out OPENSSL_ia32cap_P declarations
121         grep {s/(^extern\s+${nmdecor}OPENSSL_ia32cap_P)/\;$1/} @out;
122         push (@out,$comm)
123     }
124     push (@out,$initseg) if ($initseg);         
125 }
126
127 sub ::comment {   foreach (@_) { push(@out,"\t; $_\n"); }   }
128
129 sub ::external_label
130 {   foreach(@_)
131     {   push(@out,"${drdecor}extern\t".&::LABEL($_,$nmdecor.$_)."\n");   }
132 }
133
134 sub ::public_label
135 {   push(@out,"${drdecor}global\t".&::LABEL($_[0],$nmdecor.$_[0])."\n");  }
136
137 sub ::data_byte
138 {   push(@out,(($::mwerks)?".byte\t":"db\t").join(',',@_)."\n");        }
139 sub ::data_short
140 {   push(@out,(($::mwerks)?".word\t":"dw\t").join(',',@_)."\n");        }
141 sub ::data_word
142 {   push(@out,(($::mwerks)?".long\t":"dd\t").join(',',@_)."\n");        }
143
144 sub ::align
145 {   push(@out,"${drdecor}align\t$_[0]\n");      }
146
147 sub ::picmeup
148 { my($dst,$sym)=@_;
149     &::lea($dst,&::DWP($sym));
150 }
151
152 sub ::initseg
153 { my $f=$nmdecor.shift;
154     if ($::win32)
155     {   $initseg=<<___;
156 segment .CRT\$XCU data align=4
157 extern  $f
158 dd      $f
159 ___
160     }
161 }
162
163 sub ::dataseg
164 {   if ($mwerks)        { push(@out,".section\t.data,4\n");   }
165     else                { push(@out,"section\t.data align=4\n"); }
166 }
167
168 1;