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

/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DSimplifyInstructions.cpp48 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; local
56 // The first time through the loop ToSimplify is empty and we try to
57 // simplify all instructions. On later iterations ToSimplify is not
59 if (!ToSimplify->empty() && !ToSimplify->count(I))
76 // into ToSimplify.
77 std::swap(ToSimplify, Next);
79 } while (!ToSimplify->empty());
/external/llvm/lib/Transforms/Utils/
H A DSimplifyInstructions.cpp40 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; local
49 // The first time through the loop ToSimplify is empty and we try to
50 // simplify all instructions. On later iterations ToSimplify is not
52 if (!ToSimplify->empty() && !ToSimplify->count(I))
76 // into ToSimplify.
77 std::swap(ToSimplify, Next);
79 } while (!ToSimplify->empty());
/external/llvm/lib/Transforms/Scalar/
H A DLoopInstSimplify.cpp84 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; local
112 // The first time through the loop ToSimplify is empty and we try to
113 // simplify all instructions. On later iterations ToSimplify is not
115 if (!ToSimplify->empty() && !ToSimplify->count(I))
180 // into ToSimplify.
181 std::swap(ToSimplify, Next);
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DLoopInstSimplify.cpp72 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; local
99 // The first time through the loop ToSimplify is empty and we try to
100 // simplify all instructions. On later iterations ToSimplify is not
102 if (!ToSimplify->empty() && !ToSimplify->count(I))
162 // into ToSimplify.
163 std::swap(ToSimplify, Next);

Completed in 269 milliseconds