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