Searched refs:ToSimplify (Results 1 - 2 of 2) sorted by relevance

/freebsd-11.0-release/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyInstructions.cpp59 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; variable
68 // The first time through the loop ToSimplify is empty and we try to
69 // simplify all instructions. On later iterations ToSimplify is not
71 if (!ToSimplify->empty() && !ToSimplify->count(I))
95 // into ToSimplify.
96 std::swap(ToSimplify, Next);
98 } while (!ToSimplify->empty());
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DLoopInstSimplify.cpp89 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; local
117 // The first time through the loop ToSimplify is empty and we try to
118 // simplify all instructions. On later iterations ToSimplify is not
120 if (!ToSimplify->empty() && !ToSimplify->count(I))
187 // into ToSimplify.
188 std::swap(ToSimplify, Next);

Completed in 111 milliseconds