Home
last modified time | relevance | path

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

/external/llvm/lib/Analysis/
DObjCARCAliasAnalysis.cpp72 bool ObjCARCAAResult::pointsToConstantMemory(const MemoryLocation &Loc, in pointsToConstantMemory() function in ObjCARCAAResult
75 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
80 if (AAResultBase::pointsToConstantMemory( in pointsToConstantMemory()
88 return AAResultBase::pointsToConstantMemory(MemoryLocation(U), OrLocal); in pointsToConstantMemory()
DAliasAnalysis.cpp92 bool AAResults::pointsToConstantMemory(const MemoryLocation &Loc, in pointsToConstantMemory() function in AAResults
95 if (AA->pointsToConstantMemory(Loc, OrLocal)) in pointsToConstantMemory()
223 if (pointsToConstantMemory(Loc)) in getModRefInfo()
242 if (pointsToConstantMemory(Loc)) in getModRefInfo()
255 if (pointsToConstantMemory(Loc)) in getModRefInfo()
268 if (pointsToConstantMemory(Loc)) in getModRefInfo()
DTypeBasedAliasAnalysis.cpp304 bool TypeBasedAAResult::pointsToConstantMemory(const MemoryLocation &Loc, in pointsToConstantMemory() function in TypeBasedAAResult
307 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
311 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
319 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
DBasicAliasAnalysis.cpp473 bool BasicAAResult::pointsToConstantMemory(const MemoryLocation &Loc, in pointsToConstantMemory() function in BasicAAResult
484 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
498 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
516 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
525 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
DMemoryDependenceAnalysis.cpp617 if (AA->pointsToConstantMemory(LoadLoc)) in getSimplePointerDependencyFrom()
/external/llvm/include/llvm/Analysis/
DAliasAnalysis.h229 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal = false);
233 bool pointsToConstantMemory(const Value *P, bool OrLocal = false) {
234 return pointsToConstantMemory(MemoryLocation(P), OrLocal);
597 virtual bool pointsToConstantMemory(const MemoryLocation &Loc,
655 bool pointsToConstantMemory(const MemoryLocation &Loc, in pointsToConstantMemory() function
657 return Result.pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
729 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal) { in pointsToConstantMemory() function
730 return AAR ? AAR->pointsToConstantMemory(Loc, OrLocal) in pointsToConstantMemory()
731 : CurrentResult.pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
777 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal) { in pointsToConstantMemory() function
[all …]
DObjCARCAnalysisUtils.h171 if (AA.pointsToConstantMemory(Op)) in IsPotentialRetainableObjPtr()
176 if (AA.pointsToConstantMemory(LI->getPointerOperand())) in IsPotentialRetainableObjPtr()
DTypeBasedAliasAnalysis.h40 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal);
DObjCARCAliasAnalysis.h56 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal);
DBasicAliasAnalysis.h71 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal);
/external/llvm/lib/Transforms/IPO/
DFunctionAttrs.cpp174 if (AAR.pointsToConstantMemory(Loc, /*OrLocal=*/true)) in checkFunctionMemoryAccess()
189 if (AAR.pointsToConstantMemory(Loc, /*OrLocal=*/true)) in checkFunctionMemoryAccess()
196 if (AAR.pointsToConstantMemory(Loc, /*OrLocal=*/true)) in checkFunctionMemoryAccess()
202 if (AAR.pointsToConstantMemory(Loc, /*OrLocal=*/true)) in checkFunctionMemoryAccess()
/external/llvm/lib/Transforms/Scalar/
DLICM.cpp450 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.rst4208 ``pointsToConstantMemory`` should return true; see `other useful
/external/llvm/lib/CodeGen/
DMachineInstr.cpp1490 AA->pointsToConstantMemory( in isInvariantLoad()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp3156 else if (AA->pointsToConstantMemory(MemoryLocation( in visitLoad()
3412 if (AA->pointsToConstantMemory(MemoryLocation( in visitMaskedLoad()
3457 AA->pointsToConstantMemory(MemoryLocation( in visitMaskedGather()
5426 if (Builder.AA->pointsToConstantMemory(PtrVal)) { in getMemCmpLoad()