Home
last modified time | relevance | path

Searched refs:pointsToConstantMemory (Results 1 – 18 of 18) sorted by relevance

/external/llvm/lib/Transforms/ObjCARC/
DObjCARCAliasAnalysis.cpp93 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()
DObjCARC.h198 if (AA.pointsToConstantMemory(Op)) in IsPotentialRetainableObjPtr()
203 if (AA.pointsToConstantMemory(LI->getPointerOperand())) in IsPotentialRetainableObjPtr()
DObjCARCAliasAnalysis.h60 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override;
/external/llvm/lib/Analysis/
DScopedNoAliasAA.cpp103 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()
DTypeBasedAliasAnalysis.cpp304 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()
DAliasAnalysis.cpp57 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()
DAliasDebugger.cpp116 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override { in pointsToConstantMemory() function in __anon5f5f29140111::AliasDebugger
118 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
DAliasAnalysisCounter.cpp101 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override { in pointsToConstantMemory() function in __anondeddff930111::AliasAnalysisCounter
102 return getAnalysis<AliasAnalysis>().pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
DNoAliasAnalysis.cpp55 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) override { in pointsToConstantMemory() function
DBasicAliasAnalysis.cpp485 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()
DMemoryDependenceAnalysis.cpp538 if (AA->pointsToConstantMemory(LoadLoc)) in getPointerDependencyFrom()
/external/llvm/include/llvm/Analysis/
DAliasAnalysis.h226 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/
DFunctionAttrs.cpp213 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/
DLICM.cpp433 if (AA->pointsToConstantMemory(LI->getOperand(0))) in canSinkOrHoistInst()
/external/llvm/docs/
DAliasAnalysis.rst164 The ``pointsToConstantMemory`` method
167 The ``pointsToConstantMemory`` method returns true if and only if the analysis
DLangRef.rst3337 ``pointsToConstantMemory`` should return true; see `other useful
/external/llvm/lib/CodeGen/
DMachineInstr.cpp1434 if (AA && AA->pointsToConstantMemory( in isInvariantLoad()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp3528 else if (AA->pointsToConstantMemory( in visitLoad()
3687 if (AA->pointsToConstantMemory( in visitMaskedLoad()
5612 if (Builder.AA->pointsToConstantMemory(PtrVal)) { in getMemCmpLoad()