X86: Implement a locking version of ADC.
This commit is contained in:
parent
2f607b882c
commit
193265c6e5
1 changed files with 32 additions and 0 deletions
|
@ -226,6 +226,23 @@ def macroop ADC_P_I
|
|||
st t1, seg, riprel, disp
|
||||
};
|
||||
|
||||
def macroop ADC_LOCKED_M_I
|
||||
{
|
||||
limm t2, imm
|
||||
ldstl t1, seg, sib, disp
|
||||
adc t1, t1, t2, flags=(OF,SF,ZF,AF,PF,CF)
|
||||
stul t1, seg, sib, disp
|
||||
};
|
||||
|
||||
def macroop ADC_LOCKED_P_I
|
||||
{
|
||||
rdip t7
|
||||
limm t2, imm
|
||||
ldstl t1, seg, riprel, disp
|
||||
adc t1, t1, t2, flags=(OF,SF,ZF,AF,PF,CF)
|
||||
stul t1, seg, riprel, disp
|
||||
};
|
||||
|
||||
def macroop ADC_M_R
|
||||
{
|
||||
ldst t1, seg, sib, disp
|
||||
|
@ -241,6 +258,21 @@ def macroop ADC_P_R
|
|||
st t1, seg, riprel, disp
|
||||
};
|
||||
|
||||
def macroop ADC_LOCKED_M_R
|
||||
{
|
||||
ldstl t1, seg, sib, disp
|
||||
adc t1, t1, reg, flags=(OF,SF,ZF,AF,PF,CF)
|
||||
stul t1, seg, sib, disp
|
||||
};
|
||||
|
||||
def macroop ADC_LOCKED_P_R
|
||||
{
|
||||
rdip t7
|
||||
ldstl t1, seg, riprel, disp
|
||||
adc t1, t1, reg, flags=(OF,SF,ZF,AF,PF,CF)
|
||||
stul t1, seg, riprel, disp
|
||||
};
|
||||
|
||||
def macroop ADC_R_M
|
||||
{
|
||||
ld t1, seg, sib, disp
|
||||
|
|
Loading…
Reference in a new issue