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

/external/llvm/lib/Transforms/Utils/
H A DSimplifyInstructions.cpp55 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; variable
64 // The first time through the loop ToSimplify is empty and we try to
65 // simplify all instructions. On later iterations ToSimplify is not
67 if (!ToSimplify->empty() && !ToSimplify->count(I))
91 // into ToSimplify.
92 std::swap(ToSimplify, Next);
94 } while (!ToSimplify->empty());
/external/llvm/lib/Transforms/Scalar/
H A DLoopInstSimplify.cpp84 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; local
111 // The first time through the loop ToSimplify is empty and we try to
112 // simplify all instructions. On later iterations ToSimplify is not
114 if (!ToSimplify->empty() && !ToSimplify->count(I))
181 // into ToSimplify.
182 std::swap(ToSimplify, Next);

Completed in 77 milliseconds