Lines Matching refs:Worklist
240 bool doSanityCheck(std::vector<WeakTrackingVH> &Worklist);
314 bool MergeFunctions::doSanityCheck(std::vector<WeakTrackingVH> &Worklist) { in doSanityCheck() argument
322 for (std::vector<WeakTrackingVH>::iterator I = Worklist.begin(), in doSanityCheck()
323 E = Worklist.end(); in doSanityCheck()
420 std::vector<WeakTrackingVH> Worklist; in runOnModule() local
421 Deferred.swap(Worklist); in runOnModule()
423 LLVM_DEBUG(doSanityCheck(Worklist)); in runOnModule()
426 LLVM_DEBUG(dbgs() << "size of worklist: " << Worklist.size() << '\n'); in runOnModule()
429 for (WeakTrackingVH &I : Worklist) { in runOnModule()
947 std::vector<Value *> Worklist; in removeUsers() local
948 Worklist.push_back(V); in removeUsers()
951 while (!Worklist.empty()) { in removeUsers()
952 Value *V = Worklist.back(); in removeUsers()
953 Worklist.pop_back(); in removeUsers()
963 Worklist.push_back(UU); in removeUsers()