move.py revision 5928:410d14f82f13
1# Copyright (c) 2007-2008 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# Redistribution and use of this software in source and binary forms,
5# with or without modification, are permitted provided that the
6# following conditions are met:
7#
8# The software must be used only for Non-Commercial Use which means any
9# use which is NOT directed to receiving any direct monetary
10# compensation for, or commercial advantage from such use.  Illustrative
11# examples of non-commercial use are academic research, personal study,
12# teaching, education and corporate research & development.
13# Illustrative examples of commercial use are distributing products for
14# commercial advantage and providing services using the software for
15# commercial advantage.
16#
17# If you wish to use this software or functionality therein that may be
18# covered by patents for commercial use, please contact:
19#     Director of Intellectual Property Licensing
20#     Office of Strategy and Technology
21#     Hewlett-Packard Company
22#     1501 Page Mill Road
23#     Palo Alto, California  94304
24#
25# Redistributions of source code must retain the above copyright notice,
26# this list of conditions and the following disclaimer.  Redistributions
27# in binary form must reproduce the above copyright notice, this list of
28# conditions and the following disclaimer in the documentation and/or
29# other materials provided with the distribution.  Neither the name of
30# the COPYRIGHT HOLDER(s), HEWLETT-PACKARD COMPANY, nor the names of its
31# contributors may be used to endorse or promote products derived from
32# this software without specific prior written permission.  No right of
33# sublicense is granted herewith.  Derivatives of the software and
34# output created using the software may be prepared, but only for
35# Non-Commercial Uses.  Derivatives of the software may be shared with
36# others provided: (i) the others agree to abide by the list of
37# conditions herein which includes the Non-Commercial Use restrictions;
38# and (ii) such Derivatives of the software include the above copyright
39# notice to acknowledge the contribution from this software where
40# applicable, this list of conditions and the disclaimer below.
41#
42# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
43# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
44# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
45# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
46# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
47# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
48# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
49# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
50# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
51# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
52# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
53#
54# Authors: Gabe Black
55
56microcode = '''
57
58#
59# Regular moves
60#
61
62def macroop MOV_R_MI {
63    limm t1, imm, dataSize=asz
64    ld reg, seg, [1, t0, t1]
65};
66
67def macroop MOV_MI_R {
68    limm t1, imm, dataSize=asz
69    st reg, seg, [1, t0, t1]
70};
71
72def macroop MOV_R_R {
73    mov reg, reg, regm
74};
75
76def macroop MOV_M_R {
77    st reg, seg, sib, disp
78};
79
80def macroop MOV_P_R {
81    rdip t7
82    st reg, seg, riprel, disp
83};
84
85def macroop MOV_R_M {
86    ld reg, seg, sib, disp
87};
88
89def macroop MOV_R_P {
90    rdip t7
91    ld reg, seg, riprel, disp
92};
93
94def macroop MOV_R_I {
95    limm reg, imm
96};
97
98def macroop MOV_M_I {
99    limm t1, imm
100    st t1, seg, sib, disp
101};
102
103def macroop MOV_P_I {
104    rdip t7
105    limm t1, imm
106    st t1, seg, riprel, disp
107};
108
109#
110# Sign extending moves
111#
112
113def macroop MOVSXD_R_R {
114    sexti reg, regm, 31
115};
116
117def macroop MOVSXD_R_M {
118    ld t1, seg, sib, disp, dataSize=4
119    sexti reg, t1, 31
120};
121
122def macroop MOVSXD_R_P {
123    rdip t7
124    ld t1, seg, riprel, disp, dataSize=4
125    sexti reg, t1, 31
126};
127
128def macroop MOVSX_B_R_R {
129    mov t1, t1, regm, dataSize=1
130    sexti reg, t1, 7
131};
132
133def macroop MOVSX_B_R_M {
134    ld t1, seg, sib, disp, dataSize=1
135    sexti reg, t1, 7
136};
137
138def macroop MOVSX_B_R_P {
139    rdip t7
140    ld t1, seg, riprel, disp, dataSize=1
141    sexti reg, t1, 7
142};
143
144def macroop MOVSX_W_R_R {
145    sexti reg, regm, 15
146};
147
148def macroop MOVSX_W_R_M {
149    ld reg, seg, sib, disp, dataSize=2
150    sexti reg, reg, 15
151};
152
153def macroop MOVSX_W_R_P {
154    rdip t7
155    ld reg, seg, riprel, disp, dataSize=2
156    sexti reg, reg, 15
157};
158
159#
160# Zero extending moves
161#
162
163def macroop MOVZX_B_R_R {
164    mov t1, t1, regm, dataSize=1
165    zexti reg, t1, 7
166};
167
168def macroop MOVZX_B_R_M {
169    ld t1, seg, sib, disp, dataSize=1
170    zexti reg, t1, 7
171};
172
173def macroop MOVZX_B_R_P {
174    rdip t7
175    ld t1, seg, riprel, disp, dataSize=1
176    zexti reg, t1, 7
177};
178
179def macroop MOVZX_W_R_R {
180    zexti reg, regm, 15
181};
182
183def macroop MOVZX_W_R_M {
184    ld t1, seg, sib, disp, dataSize=2
185    zexti reg, t1, 15
186};
187
188def macroop MOVZX_W_R_P {
189    rdip t7
190    ld t1, seg, riprel, disp, dataSize=2
191    zexti reg, t1, 15
192};
193
194def macroop MOV_C_R {
195    wrcr reg, regm
196};
197
198def macroop MOV_R_C {
199    rdcr reg, regm
200};
201
202def macroop MOV_R_S {
203    rdsel reg, regm
204};
205
206def macroop MOV_M_S {
207    rdsel t1, reg
208    st t1, seg, sib, disp, dataSize=2
209};
210
211def macroop MOV_P_S {
212    rdip t7
213    rdsel t1, reg
214    st t1, seg, riprel, disp, dataSize=2
215};
216
217def macroop MOV_REAL_S_R {
218    zexti t2, regm, 15, dataSize=8
219    slli t3, t2, 2, dataSize=8
220    wrsel reg, regm
221    wrbase reg, t3
222};
223
224def macroop MOV_REAL_S_M {
225    ld t1, seg, sib, disp, dataSize=2
226    zexti t2, t1, 15, dataSize=8
227    slli t3, t2, 2, dataSize=8
228    wrsel reg, t1
229    wrbase reg, t3
230};
231
232def macroop MOV_REAL_S_P {
233    panic "RIP relative addressing shouldn't happen in real mode"
234};
235
236def macroop MOV_S_R {
237    andi t0, regm, 0xFC, flags=(EZF,), dataSize=2
238    br label("processDescriptor"), flags=(CEZF,)
239    andi t2, regm, 0xF8, dataSize=8
240    andi t0, regm, 0x4, flags=(EZF,), dataSize=2
241    br label("globalDescriptor"), flags=(CEZF,)
242    ld t3, tsl, [1, t0, t2], dataSize=8
243    br label("processDescriptor")
244globalDescriptor:
245    ld t3, tsg, [1, t0, t2], dataSize=8
246processDescriptor:
247    chks regm, t3, dataSize=8
248    wrdl reg, t3, regm
249    wrsel reg, regm
250};
251
252def macroop MOV_S_M {
253    ld t1, seg, sib, disp, dataSize=2
254    andi t0, t1, 0xFC, flags=(EZF,), dataSize=2
255    br label("processDescriptor"), flags=(CEZF,)
256    andi t2, t1, 0xF8, dataSize=8
257    andi t0, t1, 0x4, flags=(EZF,), dataSize=2
258    br label("globalDescriptor"), flags=(CEZF,)
259    ld t3, tsl, [1, t0, t2], dataSize=8
260    br label("processDescriptor")
261globalDescriptor:
262    ld t3, tsg, [1, t0, t2], dataSize=8
263processDescriptor:
264    chks t1, t3, dataSize=8
265    wrdl reg, t3, t1
266    wrsel reg, t1
267};
268
269def macroop MOV_S_P {
270    rdip t7
271    ld t1, seg, riprel, disp, dataSize=2
272    andi t0, t1, 0xFC, flags=(EZF,), dataSize=2
273    br label("processDescriptor"), flags=(CEZF,)
274    andi t2, t1, 0xF8, dataSize=8
275    andi t0, t1, 0x4, flags=(EZF,), dataSize=2
276    br label("globalDescriptor"), flags=(CEZF,)
277    ld t3, tsl, [1, t0, t2], dataSize=8
278    br label("processDescriptor")
279globalDescriptor:
280    ld t3, tsg, [1, t0, t2], dataSize=8
281processDescriptor:
282    chks t1, t3, dataSize=8
283    wrdl reg, t3, t1
284    wrsel reg, t1
285};
286
287def macroop MOVSS_S_R {
288    andi t0, regm, 0xFC, flags=(EZF,), dataSize=2
289    br label("processDescriptor"), flags=(CEZF,)
290    andi t2, regm, 0xF8, dataSize=8
291    andi t0, regm, 0x4, flags=(EZF,), dataSize=2
292    br label("globalDescriptor"), flags=(CEZF,)
293    ld t3, tsl, [1, t0, t2], dataSize=8
294    br label("processDescriptor")
295globalDescriptor:
296    ld t3, tsg, [1, t0, t2], dataSize=8
297processDescriptor:
298    chks regm, t3, SSCheck, dataSize=8
299    wrdl reg, t3, regm
300    wrsel reg, regm
301};
302
303def macroop MOVSS_S_M {
304    ld t1, seg, sib, disp, dataSize=2
305    andi t0, t1, 0xFC, flags=(EZF,), dataSize=2
306    br label("processDescriptor"), flags=(CEZF,)
307    andi t2, t1, 0xF8, dataSize=8
308    andi t0, t1, 0x4, flags=(EZF,), dataSize=2
309    br label("globalDescriptor"), flags=(CEZF,)
310    ld t3, tsl, [1, t0, t2], dataSize=8
311    br label("processDescriptor")
312globalDescriptor:
313    ld t3, tsg, [1, t0, t2], dataSize=8
314processDescriptor:
315    chks t1, t3, SSCheck, dataSize=8
316    wrdl reg, t3, t1
317    wrsel reg, t1
318};
319
320def macroop MOVSS_S_P {
321    rdip t7
322    ld t1, seg, riprel, disp, dataSize=2
323    andi t0, t1, 0xFC, flags=(EZF,), dataSize=2
324    br label("processDescriptor"), flags=(CEZF,)
325    andi t2, t1, 0xF8, dataSize=8
326    andi t0, t1, 0x4, flags=(EZF,), dataSize=2
327    br label("globalDescriptor"), flags=(CEZF,)
328    ld t3, tsl, [1, t0, t2], dataSize=8
329    br label("processDescriptor")
330globalDescriptor:
331    ld t3, tsg, [1, t0, t2], dataSize=8
332processDescriptor:
333    chks t1, t3, SSCheck, dataSize=8
334    wrdl reg, t3, t1
335    wrsel reg, t1
336};
337'''
338#let {{
339#    class MOVD(Inst):
340#       "GenFault ${new UnimpInstFault}"
341#    class MOVNTI(Inst):
342#       "GenFault ${new UnimpInstFault}"
343#}};
344