Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:Worklist

57 /// to the instcombine worklist.
60 InstCombineWorklist &Worklist;
62 InstCombineIRInserter(InstCombineWorklist &WL) : Worklist(WL) {}
67 Worklist.Add(I);
81 /// Worklist - All of the instructions that need to be simplified.
82 InstCombineWorklist Worklist;
85 /// instructions into the worklist when they are created.
241 // in the program. Add the new instruction to the worklist.
248 Worklist.Add(New);
262 // we add all uses of I to the worklist, replace all uses of I with the new
267 Worklist.AddUsersToWorkList(I); // Add all modified instrs to worklist.
294 Worklist.Add(Op);
296 Worklist.Remove(&I);