Home | History | Annotate | Download | only in src

Lines Matching refs:InstX86Nop

2844   class InstX86Nop final : public InstX86Base {
2845 InstX86Nop() = delete;
2846 InstX86Nop(const InstX86Nop &) = delete;
2847 InstX86Nop &operator=(const InstX86Nop &) = delete;
2853 static InstX86Nop *create(Cfg *Func, NopVariant Variant) {
2854 return new (Func->allocate<InstX86Nop>()) InstX86Nop(Func, Variant);
2864 InstX86Nop(Cfg *Func, NopVariant Length);
3299 using Nop = typename InstImpl<TraitsType>::InstX86Nop;