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

  /external/llvm/lib/Analysis/
AliasDebugger.cpp 116 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) {
118 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
NoAliasAnalysis.cpp 53 virtual bool pointsToConstantMemory(const Location &Loc,
AliasAnalysisCounter.cpp 101 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) {
102 return getAnalysis<AliasAnalysis>().pointsToConstantMemory(Loc, OrLocal);
TypeBasedAliasAnalysis.cpp 39 // indicates that the type is "constant" (meaning pointsToConstantMemory
144 virtual bool pointsToConstantMemory(const Location &Loc, bool OrLocal);
233 bool TypeBasedAliasAnalysis::pointsToConstantMemory(const Location &Loc,
236 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
239 if (!M) return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
246 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
AliasAnalysis.cpp 52 bool AliasAnalysis::pointsToConstantMemory(const Location &Loc,
55 return AA->pointsToConstantMemory(Loc, OrLocal);
109 if ((Mask & Mod) && pointsToConstantMemory(Loc))
310 if (pointsToConstantMemory(Loc))
326 if (pointsToConstantMemory(Loc))
BasicAliasAnalysis.cpp 496 /// pointsToConstantMemory - Chase pointers until we find a (constant
498 virtual bool pointsToConstantMemory(const Location &Loc, bool OrLocal);
524 // Visited - Track instructions visited by pointsToConstantMemory.
569 /// pointsToConstantMemory - Returns whether the given pointer value
573 BasicAliasAnalysis::pointsToConstantMemory(const Location &Loc, bool OrLocal) {
583 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
597 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
615 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
624 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
    [all...]
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 199 /// pointsToConstantMemory - If the specified memory location is
203 virtual bool pointsToConstantMemory(const Location &Loc,
206 /// pointsToConstantMemory - A convenient wrapper.
207 bool pointsToConstantMemory(const Value *P, bool OrLocal = false) {
208 return pointsToConstantMemory(Location(P), OrLocal);
  /external/llvm/lib/Transforms/Scalar/
ObjCARC.cpp 701 virtual bool pointsToConstantMemory(const Location &Loc, bool OrLocal);
759 ObjCARCAliasAnalysis::pointsToConstantMemory(const Location &Loc,
762 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
767 if (AliasAnalysis::pointsToConstantMemory(Location(S, Loc.Size, Loc.TBAATag),
775 return AliasAnalysis::pointsToConstantMemory(Location(U), OrLocal);
    [all...]

Completed in 150 milliseconds