Searched refs:MaxLookup (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.2-release/contrib/llvm/include/llvm/Analysis/
H A DValueTracking.h144 /// specified value does. If the MaxLookup value is non-zero, it limits the
147 unsigned MaxLookup = 6);
150 unsigned MaxLookup = 6) {
151 return GetUnderlyingObject(const_cast<Value *>(V), TD, MaxLookup);
160 unsigned MaxLookup = 6);
/freebsd-10.2-release/contrib/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp287 unsigned MaxLookup = 6; local
409 } while (--MaxLookup);
592 unsigned MaxLookup = 8; local
629 if (PN->getNumIncomingValues() > MaxLookup) {
642 } while (!Worklist.empty() && --MaxLookup);
H A DValueTracking.cpp1899 llvm::GetUnderlyingObject(Value *V, const DataLayout *TD, unsigned MaxLookup) { argument
1902 for (unsigned Count = 0; MaxLookup == 0 || Count < MaxLookup; ++Count) {
1931 unsigned MaxLookup) {
1937 P = GetUnderlyingObject(P, TD, MaxLookup);
1928 GetUnderlyingObjects(Value *V, SmallVectorImpl<Value *> &Objects, const DataLayout *TD, unsigned MaxLookup) argument

Completed in 64 milliseconds