/external/llvm/lib/Transforms/ObjCARC/ |
D | ObjCARCAliasAnalysis.cpp | 93 ObjCARCAliasAnalysis::pointsToConstantMemory(const Location &Loc, in pointsToConstantMemory() function in ObjCARCAliasAnalysis 96 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 101 if (AliasAnalysis::pointsToConstantMemory(Location(S, Loc.Size, Loc.AATags), in pointsToConstantMemory() 109 return AliasAnalysis::pointsToConstantMemory(Location(U), OrLocal); in pointsToConstantMemory()
|
D | ObjCARC.h | 198 if (AA.pointsToConstantMemory(Op)) in IsPotentialRetainableObjPtr() 203 if (AA.pointsToConstantMemory(LI->getPointerOperand())) in IsPotentialRetainableObjPtr()
|
D | ObjCARCAliasAnalysis.h | 60 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override;
|
/external/llvm/lib/Analysis/ |
D | ScopedNoAliasAA.cpp | 103 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override; 201 bool ScopedNoAliasAA::pointsToConstantMemory(const Location &Loc, in pointsToConstantMemory() function in ScopedNoAliasAA 203 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
|
D | TypeBasedAliasAnalysis.cpp | 304 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override; 476 bool TypeBasedAliasAnalysis::pointsToConstantMemory(const Location &Loc, in pointsToConstantMemory() function in TypeBasedAliasAnalysis 479 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 482 if (!M) return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 490 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
|
D | AliasAnalysis.cpp | 57 bool AliasAnalysis::pointsToConstantMemory(const Location &Loc, in pointsToConstantMemory() function in AliasAnalysis 60 return AA->pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 142 if ((Mask & Mod) && pointsToConstantMemory(Loc)) in getModRefInfo() 371 if (pointsToConstantMemory(Loc)) in getModRefInfo() 389 if (pointsToConstantMemory(Loc)) in getModRefInfo()
|
D | AliasDebugger.cpp | 116 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override { in pointsToConstantMemory() function in __anon5f5f29140111::AliasDebugger 118 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
|
D | AliasAnalysisCounter.cpp | 101 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override { in pointsToConstantMemory() function in __anondeddff930111::AliasAnalysisCounter 102 return getAnalysis<AliasAnalysis>().pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
|
D | NoAliasAnalysis.cpp | 55 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override { in pointsToConstantMemory() function
|
D | BasicAliasAnalysis.cpp | 485 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override; 596 BasicAliasAnalysis::pointsToConstantMemory(const Location &Loc, bool OrLocal) { in pointsToConstantMemory() function in BasicAliasAnalysis 606 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 620 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 638 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 647 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
|
D | MemoryDependenceAnalysis.cpp | 538 if (AA->pointsToConstantMemory(LoadLoc)) in getPointerDependencyFrom()
|
/external/llvm/include/llvm/Analysis/ |
D | AliasAnalysis.h | 226 virtual bool pointsToConstantMemory(const Location &Loc, 230 bool pointsToConstantMemory(const Value *P, bool OrLocal = false) { 231 return pointsToConstantMemory(Location(P), OrLocal);
|
/external/llvm/lib/Transforms/IPO/ |
D | FunctionAttrs.cpp | 213 if (!AA->pointsToConstantMemory(Loc, /*OrLocal=*/true)) { in AddReadAttrs() 236 if (AA->pointsToConstantMemory(Loc, /*OrLocal=*/true)) in AddReadAttrs() 243 if (AA->pointsToConstantMemory(Loc, /*OrLocal=*/true)) in AddReadAttrs() 249 if (AA->pointsToConstantMemory(Loc, /*OrLocal=*/true)) in AddReadAttrs()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LICM.cpp | 433 if (AA->pointsToConstantMemory(LI->getOperand(0))) in canSinkOrHoistInst()
|
/external/llvm/docs/ |
D | AliasAnalysis.rst | 164 The ``pointsToConstantMemory`` method 167 The ``pointsToConstantMemory`` method returns true if and only if the analysis
|
D | LangRef.rst | 3337 ``pointsToConstantMemory`` should return true; see `other useful
|
/external/llvm/lib/CodeGen/ |
D | MachineInstr.cpp | 1434 if (AA && AA->pointsToConstantMemory( in isInvariantLoad()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 3528 else if (AA->pointsToConstantMemory( in visitLoad() 3687 if (AA->pointsToConstantMemory( in visitMaskedLoad() 5612 if (Builder.AA->pointsToConstantMemory(PtrVal)) { in getMemCmpLoad()
|