HomeSort by relevance Sort by last modified time
    Searched defs:pointsToConstantMemory (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/Analysis/
ObjCARCAliasAnalysis.cpp 72 bool ObjCARCAAResult::pointsToConstantMemory(const MemoryLocation &Loc,
75 return AAResultBase::pointsToConstantMemory(Loc, OrLocal);
80 if (AAResultBase::pointsToConstantMemory(
88 return AAResultBase::pointsToConstantMemory(MemoryLocation(U), OrLocal);
AliasAnalysis.cpp 92 bool AAResults::pointsToConstantMemory(const MemoryLocation &Loc,
95 if (AA->pointsToConstantMemory(Loc, OrLocal))
223 if (pointsToConstantMemory(Loc))
242 if (pointsToConstantMemory(Loc))
255 if (pointsToConstantMemory(Loc))
268 if (pointsToConstantMemory(Loc))
TypeBasedAliasAnalysis.cpp 44 // indicates that the type is "constant" (meaning pointsToConstantMemory
304 bool TypeBasedAAResult::pointsToConstantMemory(const MemoryLocation &Loc,
307 return AAResultBase::pointsToConstantMemory(Loc, OrLocal);
311 return AAResultBase::pointsToConstantMemory(Loc, OrLocal);
319 return AAResultBase::pointsToConstantMemory(Loc, OrLocal);
BasicAliasAnalysis.cpp 473 bool BasicAAResult::pointsToConstantMemory(const MemoryLocation &Loc,
484 return AAResultBase::pointsToConstantMemory(Loc, OrLocal);
498 return AAResultBase::pointsToConstantMemory(Loc, OrLocal);
516 return AAResultBase::pointsToConstantMemory(Loc, OrLocal);
525 return AAResultBase::pointsToConstantMemory(Loc, OrLocal);
    [all...]
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 229 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal = false);
231 /// A convenience wrapper around the primary \c pointsToConstantMemory
233 bool pointsToConstantMemory(const Value *P, bool OrLocal = false) {
234 return pointsToConstantMemory(MemoryLocation(P), OrLocal);
597 virtual bool pointsToConstantMemory(const MemoryLocation &Loc,
655 bool pointsToConstantMemory(const MemoryLocation &Loc,
657 return Result.pointsToConstantMemory(Loc, OrLocal);
729 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal) {
730 return AAR ? AAR->pointsToConstantMemory(Loc, OrLocal)
731 : CurrentResult.pointsToConstantMemory(Loc, OrLocal)
    [all...]

Completed in 84 milliseconds