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

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