Home | History | Annotate | Download | only in src

Lines Matching refs:InstX86Shrd

2444   class InstX86Shrd final : public InstX86Base {
2445 InstX86Shrd() = delete;
2446 InstX86Shrd(const InstX86Shrd &) = delete;
2447 InstX86Shrd &operator=(const InstX86Shrd &) = delete;
2450 static InstX86Shrd *create(Cfg *Func, Variable *Dest, Variable *Source1,
2452 return new (Func->allocate<InstX86Shrd>())
2453 InstX86Shrd(Func, Dest, Source1, Source2);
2463 InstX86Shrd(Cfg *Func, Variable *Dest, Variable *Source1, Operand *Source2);
3282 using Shrd = typename InstImpl<TraitsType>::InstX86Shrd;