Searched defs:OrLocal (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/Analysis/
H A DObjCARCAliasAnalysis.cpp73 bool OrLocal) {
75 return AAResultBase::pointsToConstantMemory(Loc, OrLocal);
81 MemoryLocation(S, Loc.Size, Loc.AATags), OrLocal))
88 return AAResultBase::pointsToConstantMemory(MemoryLocation(U), OrLocal);
72 pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal) argument
H A DTypeBasedAliasAnalysis.cpp305 bool OrLocal) {
307 return AAResultBase::pointsToConstantMemory(Loc, OrLocal);
311 return AAResultBase::pointsToConstantMemory(Loc, OrLocal);
319 return AAResultBase::pointsToConstantMemory(Loc, OrLocal);
304 pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal) argument
H A DAliasAnalysis.cpp93 bool OrLocal) {
95 if (AA->pointsToConstantMemory(Loc, OrLocal))
92 pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal) argument
H A DBasicAliasAnalysis.cpp474 bool OrLocal) {
484 return AAResultBase::pointsToConstantMemory(Loc, OrLocal);
488 if (OrLocal && isa<AllocaInst>(V))
498 return AAResultBase::pointsToConstantMemory(Loc, OrLocal);
516 return AAResultBase::pointsToConstantMemory(Loc, OrLocal);
525 return AAResultBase::pointsToConstantMemory(Loc, OrLocal);
473 pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal) argument
/external/llvm/include/llvm/Analysis/
H A DAliasAnalysis.h228 /// \p OrLocal is true whether it points to a local alloca.
229 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal = false);
233 bool pointsToConstantMemory(const Value *P, bool OrLocal = false) {
234 return pointsToConstantMemory(MemoryLocation(P), OrLocal);
596 /// \p OrLocal is true whether it points to a local alloca.
598 bool OrLocal) = 0;
656 bool OrLocal) override {
657 return Result.pointsToConstantMemory(Loc, OrLocal);
729 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal) { argument
730 return AAR ? AAR->pointsToConstantMemory(Loc, OrLocal)
777 pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal) argument
[all...]

Completed in 157 milliseconds