HomeSort by: relevance | last modified time | path
    Searched refs:PostIncLoops (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
IVUsers.h 69 return PostIncLoops;
84 /// PostIncLoops - The set of loops for which Expr has been adjusted to
86 PostIncLoopSet PostIncLoops;
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
IVUsers.cpp 251 // Autodetect the post-inc loop set, populating NewUse.PostIncLoops.
260 NewUse.PostIncLoops.insert(L);
272 denormalizeForPostIncUse(ISE, NewUse.PostIncLoops, *SE);
331 for (auto PostIncLoop : IVUse.PostIncLoops) {
419 PostIncLoops.insert(L);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
ScalarEvolutionExpander.h 93 PostIncLoopSet PostIncLoops;
316 PostIncLoops = L;
321 PostIncLoops.clear();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
ScalarEvolutionExpander.cpp 1305 // loop. Remove this loop from the PostIncLoops set before expanding such
1308 // SavedIncLoops.swap(PostIncLoops), but we generally have a single element,
1310 PostIncLoopSet SavedPostIncLoops = PostIncLoops;
1311 PostIncLoops.clear();
1379 // After expanding subexpressions, restore the PostIncLoops set so the caller
1381 PostIncLoops = SavedPostIncLoops;
1397 if (PostIncLoops.count(L)) {
1451 if (!PostIncLoops.count(L))
1960 if (L && SE.hasComputableLoopEvolution(S, L) && !PostIncLoops.count(L))
2011 // This is independent of PostIncLoops. The mapped value simply materialize
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 1090 PostIncLoopSet PostIncLoops;
1500 for (const Loop *PIL : PostIncLoops) {
3330 LF.PostIncLoops = TmpPostIncLoops;
5148 if (LF.PostIncLoops.count(L)) {
5156 for (const Loop *PIL : LF.PostIncLoops) {
5212 Rewriter.setPostInc(LF.PostIncLoops);
5235 Reg = denormalizeForPostIncUse(Reg, LF.PostIncLoops, SE);
5245 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);

Completed in 31 milliseconds