Home | History | Annotate | Download | only in src

Lines Matching refs:InstCast

459 class InstCast : public InstHighLevel {
460 InstCast() = delete;
461 InstCast(const InstCast &) = delete;
462 InstCast &operator=(const InstCast &) = delete;
474 static InstCast *create(Cfg *Func, OpKind CastKind, Variable *Dest,
476 return new (Func->allocate<InstCast>())
477 InstCast(Func, CastKind, Dest, Source);
485 InstCast(Cfg *Func, OpKind CastKind, Variable *Dest, Operand *Source);