Home | History | Annotate | Download | only in src

Lines Matching refs:InstX86Cvt

2577   class InstX86Cvt final : public InstX86Base {
2578 InstX86Cvt() = delete;
2579 InstX86Cvt(const InstX86Cvt &) = delete;
2580 InstX86Cvt &operator=(const InstX86Cvt &) = delete;
2584 static InstX86Cvt *create(Cfg *Func, Variable *Dest, Operand *Source,
2586 return new (Func->allocate<InstX86Cvt>())
2587 InstX86Cvt(Func, Dest, Source, Variant);
2599 InstX86Cvt(Cfg *Func, Variable *Dest, Operand *Source, CvtVariant Variant);
3287 using Cvt = typename InstImpl<TraitsType>::InstX86Cvt;