Home | History | Annotate | Download | only in src

Lines Matching refs:MaxSrcs

203   Inst(Cfg *Func, InstKind Kind, SizeT MaxSrcs, Variable *Dest);
241 const SizeT MaxSrcs; // only used for assert
263 InstHighLevel(Cfg *Func, InstKind Kind, SizeT MaxSrcs, Variable *Dest)
264 : Inst(Func, Kind, MaxSrcs, Dest) {}
666 static InstPhi *create(Cfg *Func, SizeT MaxSrcs, Variable *Dest) {
667 return new (Func->allocate<InstPhi>()) InstPhi(Func, MaxSrcs, Dest);
682 InstPhi(Cfg *Func, SizeT MaxSrcs, Variable *Dest);
1161 InstTarget(Cfg *Func, InstKind Kind, SizeT MaxSrcs, Variable *Dest)
1162 : Inst(Func, Kind, MaxSrcs, Dest) {