Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:Worklist

556   // Add all obviously-dead nodes to the DeadNodes worklist.
571 // Process the worklist, deleting the nodes and adding their uses to the
572 // worklist.
6076 SmallVector<const SDNode *, 16> Worklist;
6077 return hasPredecessorHelper(N, Visited, Worklist);
6083 SmallVectorImpl<const SDNode *> &Worklist) const {
6085 Worklist.push_back(this);
6094 while (!Worklist.empty()) {
6095 const SDNode *M = Worklist.pop_back_val();
6099 Worklist.push_back(Op);