Home | History | Annotate | Download | only in Scalar

Lines Matching refs:Worklist

512   // Worklist of non-leaf nodes (their operands are in the expression too) along
514 // If an operator occurs in the worklist multiple times then we found multiple
516 SmallVector<std::pair<BinaryOperator*, APInt>, 8> Worklist; // (Op, Weight)
517 Worklist.push_back(std::make_pair(I, APInt(Bitwidth, 1)));
542 while (!Worklist.empty()) {
543 std::pair<BinaryOperator*, APInt> P = Worklist.pop_back_val();
557 Worklist.push_back(std::make_pair(BO, Weight));
595 Worklist.push_back(std::make_pair(BO, It->second));
627 Worklist.push_back(std::make_pair(BO, Weight));