X86: Implement shrd.

This commit is contained in:
Gabe Black 2009-02-27 09:26:26 -08:00
parent 2fe87e62ba
commit b36f28472d
2 changed files with 36 additions and 1 deletions

View file

@ -830,7 +830,7 @@
0x1: pop_gs();
0x2: rsm_smm();
0x3: Inst::BTS(Ev,Gv);
0x4: shrd_Ev_Gv_Ib();
0x4: Inst::SHRD(Ev,Gv,Ib);
0x5: shrd_Ev_Gv_rCl();
//0x6: group16();
0x6: decode MODRM_REG {

View file

@ -174,6 +174,41 @@ def macroop SHR_P_R
st t1, seg, riprel, disp
};
# SHRD will not set OF correctly when the shift count is 1.
def macroop SHRD_R_R_I
{
srli t1, reg, imm, flags=(CF,)
rori t2, regm, imm
srli t3, regm, imm
xor t2, t2, t3
or reg, t1, t2
};
# SHRD will not set OF correctly when the shift count is 1.
def macroop SHRD_M_R_I
{
ldst t1, seg, sib, disp
srli t1, t1, imm, flags=(CF,)
rori t2, reg, imm
srli t3, reg, imm
xor t2, t2, t3
or t1, t1, t2
st t1, seg, sib, disp
};
# SHRD will not set OF correctly when the shift count is 1.
def macroop SHRD_P_R_I
{
rdip t7
ldst t1, seg, riprel, disp
srli t1, t1, imm, flags=(CF,)
rori t2, reg, imm
srli t3, reg, imm
xor t2, t2, t3
or t1, t1, t2
st t1, seg, riprel, disp
};
def macroop SAR_R_I
{
srai reg, reg, imm, flags=(CF,OF,SF,ZF,PF)