Home | History | Annotate | Download | only in src

Lines Matching refs:InstX86StoreD

2821   class InstX86StoreD final : public InstX86Base {
2822 InstX86StoreD() = delete;
2823 InstX86StoreD(const InstX86StoreD &) = delete;
2824 InstX86StoreD &operator=(const InstX86StoreD &) = delete;
2827 static InstX86StoreD *create(Cfg *Func, Operand *Value,
2829 return new (Func->allocate<InstX86StoreD>())
2830 InstX86StoreD(Func, Value, Mem);
2840 InstX86StoreD(Cfg *Func, Operand *Value, X86OperandMem *Mem);
3298 using StoreD = typename InstImpl<TraitsType>::InstX86StoreD;