X86: Implement the versions of MOVD that have an MMX destination.
This commit is contained in:
parent
191590bcc4
commit
6457fb7003
2 changed files with 14 additions and 3 deletions
|
@ -580,7 +580,7 @@
|
|||
0x1: punpckhwd_Pq_Qq();
|
||||
0x2: punpckhdq_Pq_Qq();
|
||||
0x3: packssdw_Pq_Qq();
|
||||
0x6: movd_Pq_Ed();
|
||||
0x6: Inst::MOVD(Pq,Edp);
|
||||
0x7: movq_Pq_Qq();
|
||||
default: Inst::UD2();
|
||||
}
|
||||
|
|
|
@ -54,11 +54,22 @@
|
|||
# Authors: Gabe Black
|
||||
|
||||
microcode = '''
|
||||
# MOVD
|
||||
def macroop MOVD_MMX_R {
|
||||
mov2fp mmx, regm, srcSize=dsz, destSize=8
|
||||
};
|
||||
|
||||
def macroop MOVD_MMX_M {
|
||||
ldfp mmx, seg, sib, disp, dataSize=8
|
||||
};
|
||||
|
||||
def macroop MOVD_MMX_P {
|
||||
rdip t7
|
||||
ldfp mmx, seg, riprel, disp, dataSize=8
|
||||
};
|
||||
'''
|
||||
# MOVQ
|
||||
# MOVDQA
|
||||
# MOVDQU
|
||||
# MOVDQ2Q
|
||||
# MOVQ2DQ
|
||||
# LDDQU
|
||||
'''
|
||||
|
|
Loading…
Reference in a new issue