/external/llvm/lib/Analysis/ |
D | ObjCARCAliasAnalysis.cpp | 72 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()
|
D | AliasAnalysis.cpp | 92 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()
|
D | TypeBasedAliasAnalysis.cpp | 304 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()
|
D | BasicAliasAnalysis.cpp | 473 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()
|
D | MemoryDependenceAnalysis.cpp | 617 if (AA->pointsToConstantMemory(LoadLoc)) in getSimplePointerDependencyFrom()
|
/external/llvm/include/llvm/Analysis/ |
D | AliasAnalysis.h | 229 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 …]
|
D | ObjCARCAnalysisUtils.h | 171 if (AA.pointsToConstantMemory(Op)) in IsPotentialRetainableObjPtr() 176 if (AA.pointsToConstantMemory(LI->getPointerOperand())) in IsPotentialRetainableObjPtr()
|
D | TypeBasedAliasAnalysis.h | 40 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal);
|
D | ObjCARCAliasAnalysis.h | 56 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal);
|
D | BasicAliasAnalysis.h | 71 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal);
|
/external/llvm/lib/Transforms/IPO/ |
D | FunctionAttrs.cpp | 174 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/ |
D | LICM.cpp | 450 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 | 4208 ``pointsToConstantMemory`` should return true; see `other useful
|
/external/llvm/lib/CodeGen/ |
D | MachineInstr.cpp | 1490 AA->pointsToConstantMemory( in isInvariantLoad()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 3156 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()
|