X86: Implement the MOVDDUP instruction.

This commit is contained in:
Gabe Black 2009-08-17 18:50:29 -07:00
parent cf9634a43f
commit df1b3fdcfb
2 changed files with 17 additions and 2 deletions

View file

@ -326,7 +326,7 @@
0x8: decode OPCODE_OP_BOTTOM3 {
0x0: Inst::MOVSD(Vq,Wq);
0x1: Inst::MOVSD(Wq,Vq);
0x2: movddup_Vo_Wq();
0x2: Inst::MOVDDUP(Vo,Wq);
default: Inst::UD2();
}
default: Inst::UD2();

View file

@ -54,7 +54,22 @@
# Authors: Gabe Black
microcode = '''
# MOVDDUP
def macroop MOVDDUP_XMM_XMM {
movfp xmmh, xmmlm, dataSize=8
movfp xmml, xmmlm, dataSize=8
};
def macroop MOVDDUP_XMM_M {
ldfp xmml, seg, sib, disp, dataSize=8
movfp xmmh, xmml, dataSize=8
};
def macroop MOVDDUP_XMM_P {
rdip t7
ldfp xmml, seg, riprel, disp, dataSize=8
movfp xmmh, xmml, dataSize=8
};
# MOVSLDUP
# MOVSHDUP
'''