Home | History | Annotate | Download | only in src

Lines Matching refs:InstX86Cmpxchg

2521   class InstX86Cmpxchg final : public InstX86BaseLockable {
2522 InstX86Cmpxchg() = delete;
2523 InstX86Cmpxchg(const InstX86Cmpxchg &) = delete;
2524 InstX86Cmpxchg &operator=(const InstX86Cmpxchg &) = delete;
2527 static InstX86Cmpxchg *create(Cfg *Func, Operand *DestOrAddr, Variable *Eax,
2529 return new (Func->allocate<InstX86Cmpxchg>())
2530 InstX86Cmpxchg(Func, DestOrAddr, Eax, Desired, Locked);
2540 InstX86Cmpxchg(Cfg *Func, Operand *DestOrAddr, Variable *Eax,
3285 using Cmpxchg = typename InstImpl<TraitsType>::InstX86Cmpxchg;