Searched refs:ToSimplify (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | InstSimplifyPass.cpp | 29 SmallPtrSet<const Instruction *, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; in runImpl() local 44 if (!ToSimplify->empty() && !ToSimplify->count(&I)) in runImpl() 70 std::swap(ToSimplify, Next); in runImpl() 72 } while (!ToSimplify->empty()); in runImpl()
|
H A D | LoopInstSimplify.cpp | 57 SmallPtrSet<const Instruction *, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; in simplifyLoopInst() local 93 bool IsFirstIteration = ToSimplify->empty(); in simplifyLoopInst() 95 if (!IsFirstIteration && !ToSimplify->count(&I)) in simplifyLoopInst() 130 ToSimplify->insert(UserI); in simplifyLoopInst() 164 std::swap(Next, ToSimplify); in simplifyLoopInst()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVVMReflect.cpp | 94 SmallVector<Instruction *, 4> ToSimplify; in runNVVMReflect() local 183 ToSimplify.push_back(I); in runNVVMReflect() 192 while (!ToSimplify.empty()) { in runNVVMReflect() 193 Instruction *I = ToSimplify.pop_back_val(); in runNVVMReflect() 198 ToSimplify.push_back(I); in runNVVMReflect()
|