Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:Worklist

139 /// worklist.
142 InstCombineWorklist &Worklist;
147 : Worklist(WL), AC(AC) {}
152 Worklist.Add(I);
169 /// \brief A worklist of the instructions that need to be simplified.
170 InstCombineWorklist &Worklist;
173 /// worklist.
197 InstCombiner(InstCombineWorklist &Worklist, BuilderTy *Builder,
201 : Worklist(Worklist), Builder(Builder), MinimizeSize(MinimizeSize),
204 /// \brief Run the combiner over the entire worklist until it is empty.
397 /// Also adds the new instruction to the worklist
404 Worklist.Add(New);
418 /// I to the worklist, replace all uses of I with the new value, then return
425 Worklist.AddUsersToWorkList(I); // Add all modified instrs to worklist.
463 Worklist.Add(Op);
465 Worklist.Remove(&I);