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

/external/llvm/lib/Transforms/Utils/
H A DSimplifyInstructions.cpp51 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; local
59 // The first time through the loop ToSimplify is empty and we try to
60 // simplify all instructions. On later iterations ToSimplify is not
62 if (!ToSimplify->empty() && !ToSimplify->count(I))
79 // into ToSimplify.
80 std::swap(ToSimplify, Next);
82 } while (!ToSimplify->empty());
/external/llvm/lib/Transforms/Scalar/
H A DLoopInstSimplify.cpp77 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; local
104 // The first time through the loop ToSimplify is empty and we try to
105 // simplify all instructions. On later iterations ToSimplify is not
107 if (!ToSimplify->empty() && !ToSimplify->count(I))
167 // into ToSimplify.
168 std::swap(ToSimplify, Next);

Completed in 74 milliseconds