X86: Implement a locking version of BTC.
This commit is contained in:
parent
e475cf85f0
commit
209cfc89fd
1 changed files with 46 additions and 0 deletions
|
@ -154,6 +154,27 @@ def macroop BTC_P_I {
|
|||
st t1, seg, riprel, disp
|
||||
};
|
||||
|
||||
def macroop BTC_LOCKED_M_I {
|
||||
limm t1, imm, dataSize=asz
|
||||
limm t4, 1
|
||||
roli t4, t4, imm
|
||||
ldstl t1, seg, sib, disp
|
||||
sexti t0, t1, imm, flags=(CF,)
|
||||
xor t1, t1, t4
|
||||
stul t1, seg, sib, disp
|
||||
};
|
||||
|
||||
def macroop BTC_LOCKED_P_I {
|
||||
rdip t7, dataSize=asz
|
||||
limm t1, imm, dataSize=asz
|
||||
limm t4, 1
|
||||
roli t4, t4, imm
|
||||
ldstl t1, seg, riprel, disp
|
||||
sexti t0, t1, imm, flags=(CF,)
|
||||
xor t1, t1, t4
|
||||
stul t1, seg, riprel, disp
|
||||
};
|
||||
|
||||
def macroop BTC_R_R {
|
||||
sext t0, reg, regm, flags=(CF,)
|
||||
limm t1, 1
|
||||
|
@ -186,6 +207,31 @@ def macroop BTC_P_R {
|
|||
st t1, seg, [1, t2, t7], disp
|
||||
};
|
||||
|
||||
def macroop BTC_LOCKED_M_R {
|
||||
srai t2, reg, 3, dataSize=asz
|
||||
srai t3, t2, ldsz, dataSize=asz
|
||||
lea t3, flatseg, [dsz, t3, base], dataSize=asz
|
||||
limm t4, 1
|
||||
rol t4, t4, reg
|
||||
ldstl t1, seg, [scale, index, t3], disp
|
||||
sext t0, t1, reg, flags=(CF,)
|
||||
xor t1, t1, t4
|
||||
stul t1, seg, [scale, index, t3], disp
|
||||
};
|
||||
|
||||
def macroop BTC_LOCKED_P_R {
|
||||
rdip t7, dataSize=asz
|
||||
srai t2, reg, 3, dataSize=asz
|
||||
srai t3, t2, ldsz, dataSize=asz
|
||||
lea t3, flatseg, [dsz, t3, base], dataSize=asz
|
||||
limm t4, 1
|
||||
rol t4, t4, reg
|
||||
ldstl t1, seg, [1, t2, t7], disp
|
||||
sext t0, t1, reg, flags=(CF,)
|
||||
xor t1, t1, t4
|
||||
stul t1, seg, [1, t2, t7], disp
|
||||
};
|
||||
|
||||
def macroop BTR_R_I {
|
||||
sexti t0, reg, imm, flags=(CF,)
|
||||
limm t1, "(uint64_t(-(2ULL)))"
|
||||
|
|
Loading…
Reference in a new issue