Home | History | Annotate | Download | only in src

Lines Matching defs:InstPhi

667 class InstPhi : public InstHighLevel {
668 InstPhi() = delete;
669 InstPhi(const InstPhi &) = delete;
670 InstPhi &operator=(const InstPhi &) = delete;
673 static InstPhi *create(Cfg *Func, SizeT MaxSrcs, Variable *Dest) {
674 return new (Func->allocate<InstPhi>()) InstPhi(Func, MaxSrcs, Dest);
689 InstPhi(Cfg *Func, SizeT MaxSrcs, Variable *Dest);