Home
last modified time | relevance | path

Searched refs:MaxLookup (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DCodeMoverUtils.cpp67 unsigned MaxLookup = 6);
110 const PostDominatorTree &PDT, unsigned MaxLookup) { in collectControlConditions() argument
157 if (MaxLookup != 0 && NumConditions > MaxLookup) in collectControlConditions()
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DValueTracking.h372 const Value *getUnderlyingObject(const Value *V, unsigned MaxLookup = 6);
373 inline Value *getUnderlyingObject(Value *V, unsigned MaxLookup = 6) {
376 return const_cast<Value *>(getUnderlyingObject(VConst, MaxLookup));
409 LoopInfo *LI = nullptr, unsigned MaxLookup = 6);
/llvm-project-15.0.7/llvm/test/Analysis/BasicAA/
H A D2014-03-18-Maxlookup-reached.ll4 ; BasicAA claims no alias when there is (due to a problem when the MaxLookup
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp523 unsigned MaxLookup = MaxLookupSearchDepth; in DecomposeGEPExpression() local
671 } while (--MaxLookup); in DecomposeGEPExpression()
686 unsigned MaxLookup = 8; in pointsToConstantMemory() local
723 if (PN->getNumIncomingValues() > MaxLookup) { in pointsToConstantMemory()
734 } while (!Worklist.empty() && --MaxLookup); in pointsToConstantMemory()
H A DValueTracking.cpp4460 const Value *llvm::getUnderlyingObject(const Value *V, unsigned MaxLookup) { in getUnderlyingObject() argument
4463 for (unsigned Count = 0; MaxLookup == 0 || Count < MaxLookup; ++Count) { in getUnderlyingObject()
4507 LoopInfo *LI, unsigned MaxLookup) { in getUnderlyingObjects() argument
4513 P = getUnderlyingObject(P, MaxLookup); in getUnderlyingObjects()