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 495 /// pointsToConstantMemory - Chase pointers until we find a (constant
497 virtual bool pointsToConstantMemory(const Location &Loc, bool OrLocal);
523 // Visited - Track instructions visited by pointsToConstantMemory.
568 /// pointsToConstantMemory - Returns whether the given pointer value
572 BasicAliasAnalysis::pointsToConstantMemory(const Location &Loc, bool OrLocal) {
582 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
596 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
614 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
623 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 640 virtual bool pointsToConstantMemory(const Location &Loc, bool OrLocal);
698 ObjCARCAliasAnalysis::pointsToConstantMemory(const Location &Loc,
701 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
706 if (AliasAnalysis::pointsToConstantMemory(Location(S, Loc.Size, Loc.TBAATag),
714 return AliasAnalysis::pointsToConstantMemory(Location(U), OrLocal);
    [all...]

Completed in 204 milliseconds