Searched refs:PostIncLoops (Results 1 - 5 of 5) sorted by relevance

/external/llvm/include/llvm/Analysis/
H A DIVUsers.h68 return PostIncLoops;
83 /// PostIncLoops - The set of loops for which Expr has been adjusted to
85 PostIncLoopSet PostIncLoops; member in class:llvm::IVStrideUse
H A DScalarEvolutionExpander.h53 /// PostIncLoops - Addrecs referring to any of the given loops are expanded
58 PostIncLoopSet PostIncLoops; member in class:llvm::SCEVExpander
155 PostIncLoops = L;
160 PostIncLoops.clear();
/external/llvm/lib/Analysis/
H A DIVUsers.cpp190 // Autodetect the post-inc loop set, populating NewUse.PostIncLoops.
196 NewUse.PostIncLoops,
206 NewUse.PostIncLoops, *SE, *DT);
283 I = UI->PostIncLoops.begin(),
284 E = UI->PostIncLoops.end(); I != E; ++I) {
349 PostIncLoops.insert(L);
H A DScalarEvolutionExpander.cpp1162 // loop. Remove this loop from the PostIncLoops set before expanding such
1165 // SavedIncLoops.swap(PostIncLoops), but we generally have a single element,
1167 PostIncLoopSet SavedPostIncLoops = PostIncLoops;
1168 PostIncLoops.clear();
1225 // After expanding subexpressions, restore the PostIncLoops set so the caller
1227 PostIncLoops = SavedPostIncLoops;
1243 if (PostIncLoops.count(L)) {
1287 if (!PostIncLoops.count(L))
1615 if (L && SE.hasComputableLoopEvolution(S, L) && !PostIncLoops.count(L))
1639 // This is independent of PostIncLoops
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp1098 /// PostIncLoops - If this user is to use the post-incremented value of an
1101 PostIncLoopSet PostIncLoops; member in struct:__anon26300::LSRFixup
1155 for (PostIncLoopSet::const_iterator I = PostIncLoops.begin(),
1156 E = PostIncLoops.end(); I != E; ++I) {
2995 LF.PostIncLoops = UI->getPostIncLoops();
3030 LF.PostIncLoops, SE, DT);
4472 if (LF.PostIncLoops.count(L)) {
4480 for (PostIncLoopSet::const_iterator I = LF.PostIncLoops.begin(),
4481 E = LF.PostIncLoops.end(); I != E; ++I) {
4538 Rewriter.setPostInc(LF.PostIncLoops);
[all...]

Completed in 366 milliseconds