HomeSort by relevance Sort by last modified time
    Searched full:tosimplify (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Transforms/Utils/
SimplifyInstructions.cpp 48 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2;
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/Scalar/
LoopInstSimplify.cpp 72 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2;
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 32 milliseconds