/external/llvm/lib/Analysis/ |
D | TypeBasedAliasAnalysis.cpp | 144 virtual bool pointsToConstantMemory(const Location &Loc, bool OrLocal); 233 bool TypeBasedAliasAnalysis::pointsToConstantMemory(const Location &Loc, in pointsToConstantMemory() function in TypeBasedAliasAnalysis 236 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 239 if (!M) return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 246 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
|
D | AliasAnalysis.cpp | 52 bool AliasAnalysis::pointsToConstantMemory(const Location &Loc, in pointsToConstantMemory() function in AliasAnalysis 55 return AA->pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 109 if ((Mask & Mod) && pointsToConstantMemory(Loc)) in getModRefInfo() 297 if (pointsToConstantMemory(Loc)) in getModRefInfo() 313 if (pointsToConstantMemory(Loc)) in getModRefInfo()
|
D | AliasDebugger.cpp | 116 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) { in pointsToConstantMemory() function in __anon2ece72570111::AliasDebugger 118 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
|
D | AliasAnalysisCounter.cpp | 101 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) { in pointsToConstantMemory() function in __anonb65bdf760111::AliasAnalysisCounter 102 return getAnalysis<AliasAnalysis>().pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
|
D | NoAliasAnalysis.cpp | 53 virtual bool pointsToConstantMemory(const Location &Loc, in pointsToConstantMemory() function
|
D | BasicAliasAnalysis.cpp | 494 virtual bool pointsToConstantMemory(const Location &Loc, bool OrLocal); 564 BasicAliasAnalysis::pointsToConstantMemory(const Location &Loc, bool OrLocal) { in pointsToConstantMemory() function in BasicAliasAnalysis 574 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 588 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 606 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 615 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
|
D | MemoryDependenceAnalysis.cpp | 419 if (AA->pointsToConstantMemory(LoadLoc)) in getPointerDependencyFrom()
|
/external/llvm/lib/Transforms/IPO/ |
D | FunctionAttrs.cpp | 146 if (!AA->pointsToConstantMemory(Loc, /*OrLocal=*/true)) { in AddReadAttrs() 169 if (AA->pointsToConstantMemory(Loc, /*OrLocal=*/true)) in AddReadAttrs() 176 if (AA->pointsToConstantMemory(Loc, /*OrLocal=*/true)) in AddReadAttrs() 182 if (AA->pointsToConstantMemory(Loc, /*OrLocal=*/true)) in AddReadAttrs()
|
/external/llvm/include/llvm/Analysis/ |
D | AliasAnalysis.h | 201 virtual bool pointsToConstantMemory(const Location &Loc, 205 bool pointsToConstantMemory(const Value *P, bool OrLocal = false) { 206 return pointsToConstantMemory(Location(P), OrLocal);
|
/external/llvm/lib/Transforms/Scalar/ |
D | ObjCARC.cpp | 631 virtual bool pointsToConstantMemory(const Location &Loc, bool OrLocal); 689 ObjCARCAliasAnalysis::pointsToConstantMemory(const Location &Loc, in pointsToConstantMemory() function in ObjCARCAliasAnalysis 692 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 697 if (AliasAnalysis::pointsToConstantMemory(Location(S, Loc.Size, Loc.TBAATag), in pointsToConstantMemory() 705 return AliasAnalysis::pointsToConstantMemory(Location(U), OrLocal); in pointsToConstantMemory()
|
D | LICM.cpp | 365 if (AA->pointsToConstantMemory(LI->getOperand(0))) in canSinkOrHoistInst()
|
/external/llvm/lib/CodeGen/ |
D | MachineInstr.cpp | 1251 if (AA && AA->pointsToConstantMemory( in isInvariantLoad()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 3109 else if (AA->pointsToConstantMemory( in visitLoad() 5155 if (Builder.AA->pointsToConstantMemory(PtrVal)) { in getMemCmpLoad()
|