Home
last modified time | relevance | path

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

12

/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.cpp86 bool AAResults::pointsToConstantMemory(const MemoryLocation &Loc, in pointsToConstantMemory() function in AAResults
89 if (AA->pointsToConstantMemory(Loc, OrLocal)) in pointsToConstantMemory()
175 pointsToConstantMemory(Loc, /*OrLocal*/ false)) in getModRefInfo()
341 if (pointsToConstantMemory(Loc)) in getModRefInfo()
360 if (pointsToConstantMemory(Loc)) in getModRefInfo()
373 if (pointsToConstantMemory(Loc)) in getModRefInfo()
386 if (pointsToConstantMemory(Loc)) in getModRefInfo()
DTypeBasedAliasAnalysis.cpp303 bool TypeBasedAAResult::pointsToConstantMemory(const MemoryLocation &Loc, in pointsToConstantMemory() function in TypeBasedAAResult
306 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
310 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
318 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
DBasicAliasAnalysis.cpp500 bool BasicAAResult::pointsToConstantMemory(const MemoryLocation &Loc, in pointsToConstantMemory() function in BasicAAResult
511 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
525 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
543 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
552 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DObjCARCAliasAnalysis.cpp72 bool ObjCARCAAResult::pointsToConstantMemory(const MemoryLocation &Loc, in pointsToConstantMemory() function in ObjCARCAAResult
75 return AAResultBase::pointsToConstantMemory(Loc, AAQI, OrLocal); in pointsToConstantMemory()
80 if (AAResultBase::pointsToConstantMemory( in pointsToConstantMemory()
88 return AAResultBase::pointsToConstantMemory(MemoryLocation(U), AAQI, in pointsToConstantMemory()
DAliasAnalysis.cpp121 bool AAResults::pointsToConstantMemory(const MemoryLocation &Loc, in pointsToConstantMemory() function in AAResults
124 return pointsToConstantMemory(Loc, AAQIP, OrLocal); in pointsToConstantMemory()
127 bool AAResults::pointsToConstantMemory(const MemoryLocation &Loc, in pointsToConstantMemory() function in AAResults
130 if (AA->pointsToConstantMemory(Loc, AAQI, OrLocal)) in pointsToConstantMemory()
239 if (isModSet(Result) && pointsToConstantMemory(Loc, /*OrLocal*/ false)) in getModRefInfo()
479 if (pointsToConstantMemory(Loc, AAQI)) in getModRefInfo()
501 if (Loc.Ptr && pointsToConstantMemory(Loc, AAQI)) in getModRefInfo()
524 if (pointsToConstantMemory(Loc, AAQI)) in getModRefInfo()
548 if (pointsToConstantMemory(Loc, AAQI)) in getModRefInfo()
568 if (pointsToConstantMemory(Loc, AAQI)) in getModRefInfo()
DTypeBasedAliasAnalysis.cpp384 bool TypeBasedAAResult::pointsToConstantMemory(const MemoryLocation &Loc, in pointsToConstantMemory() function in TypeBasedAAResult
388 return AAResultBase::pointsToConstantMemory(Loc, AAQI, OrLocal); in pointsToConstantMemory()
392 return AAResultBase::pointsToConstantMemory(Loc, AAQI, OrLocal); in pointsToConstantMemory()
400 return AAResultBase::pointsToConstantMemory(Loc, AAQI, OrLocal); in pointsToConstantMemory()
DBasicAliasAnalysis.cpp654 bool BasicAAResult::pointsToConstantMemory(const MemoryLocation &Loc, in pointsToConstantMemory() function in BasicAAResult
665 return AAResultBase::pointsToConstantMemory(Loc, AAQI, OrLocal); in pointsToConstantMemory()
679 return AAResultBase::pointsToConstantMemory(Loc, AAQI, OrLocal); in pointsToConstantMemory()
697 return AAResultBase::pointsToConstantMemory(Loc, AAQI, OrLocal); in pointsToConstantMemory()
706 return AAResultBase::pointsToConstantMemory(Loc, AAQI, OrLocal); in pointsToConstantMemory()
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Analysis/
DObjCARCAnalysisUtils.cpp35 if (AA.pointsToConstantMemory(Op)) in IsPotentialRetainableObjPtr()
40 if (AA.pointsToConstantMemory(LI->getPointerOperand())) in IsPotentialRetainableObjPtr()
/external/llvm/include/llvm/Analysis/
DAliasAnalysis.h234 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal = false);
238 bool pointsToConstantMemory(const Value *P, bool OrLocal = false) {
239 return pointsToConstantMemory(MemoryLocation(P), OrLocal);
610 virtual bool pointsToConstantMemory(const MemoryLocation &Loc,
668 bool pointsToConstantMemory(const MemoryLocation &Loc, in pointsToConstantMemory() function
670 return Result.pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
742 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal) { in pointsToConstantMemory() function
743 return AAR ? AAR->pointsToConstantMemory(Loc, OrLocal) in pointsToConstantMemory()
744 : CurrentResult.pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
793 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal) { in pointsToConstantMemory() function
DObjCARCAnalysisUtils.h172 if (AA.pointsToConstantMemory(Op)) in IsPotentialRetainableObjPtr()
177 if (AA.pointsToConstantMemory(LI->getPointerOperand())) in IsPotentialRetainableObjPtr()
DObjCARCAliasAnalysis.h54 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal);
DTypeBasedAliasAnalysis.h39 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal);
DBasicAliasAnalysis.h73 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DAliasAnalysis.h394 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal = false);
398 bool pointsToConstantMemory(const Value *P, bool OrLocal = false) {
399 return pointsToConstantMemory(MemoryLocation(P), OrLocal);
696 bool pointsToConstantMemory(const MemoryLocation &Loc, AAQueryInfo &AAQI,
787 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal = false) {
788 return AA.pointsToConstantMemory(Loc, AAQI, OrLocal);
845 virtual bool pointsToConstantMemory(const MemoryLocation &Loc,
904 bool pointsToConstantMemory(const MemoryLocation &Loc, AAQueryInfo &AAQI, in pointsToConstantMemory() function
906 return Result.pointsToConstantMemory(Loc, AAQI, OrLocal); in pointsToConstantMemory()
980 bool pointsToConstantMemory(const MemoryLocation &Loc, AAQueryInfo &AAQI, in pointsToConstantMemory() function
[all …]
DObjCARCAnalysisUtils.h184 if (AA.pointsToConstantMemory(Op)) in IsPotentialRetainableObjPtr()
189 if (AA.pointsToConstantMemory(LI->getPointerOperand())) in IsPotentialRetainableObjPtr()
DObjCARCAliasAnalysis.h57 bool pointsToConstantMemory(const MemoryLocation &Loc, AAQueryInfo &AAQI,
DTypeBasedAliasAnalysis.h45 bool pointsToConstantMemory(const MemoryLocation &Loc, AAQueryInfo &AAQI,
DBasicAliasAnalysis.h94 bool pointsToConstantMemory(const MemoryLocation &Loc, AAQueryInfo &AAQI,
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUAliasAnalysis.cpp92 bool AMDGPUAAResult::pointsToConstantMemory(const MemoryLocation &Loc, in pointsToConstantMemory() function in AMDGPUAAResult
110 return AAResultBase::pointsToConstantMemory(Loc, AAQI, OrLocal); in pointsToConstantMemory()
137 return AAResultBase::pointsToConstantMemory(Loc, AAQI, OrLocal); in pointsToConstantMemory()
DAMDGPUAliasAnalysis.h49 bool pointsToConstantMemory(const MemoryLocation &Loc, AAQueryInfo &AAQI,
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Analysis/
DAliasAnalysis.h378 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal = false) {
384 bool pointsToConstantMemory(const Value *P, bool OrLocal = false) {
385 return pointsToConstantMemory(MemoryLocation::getBeforeOrAfter(P), OrLocal);
556 bool pointsToConstantMemory(const MemoryLocation &Loc, AAQueryInfo &AAQI,
624 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal = false) {
625 return AA.pointsToConstantMemory(Loc, AAQI, OrLocal);
/external/llvm/lib/Transforms/IPO/
DFunctionAttrs.cpp129 if (AAR.pointsToConstantMemory(Loc, /*OrLocal=*/true)) in checkFunctionMemoryAccess()
144 if (AAR.pointsToConstantMemory(Loc, /*OrLocal=*/true)) in checkFunctionMemoryAccess()
151 if (AAR.pointsToConstantMemory(Loc, /*OrLocal=*/true)) in checkFunctionMemoryAccess()
157 if (AAR.pointsToConstantMemory(Loc, /*OrLocal=*/true)) in checkFunctionMemoryAccess()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DFunctionAttrs.cpp175 if (AAR.pointsToConstantMemory(Loc, /*OrLocal=*/true)) in checkFunctionMemoryAccess()
190 if (AAR.pointsToConstantMemory(Loc, /*OrLocal=*/true)) in checkFunctionMemoryAccess()
197 if (AAR.pointsToConstantMemory(Loc, /*OrLocal=*/true)) in checkFunctionMemoryAccess()
203 if (AAR.pointsToConstantMemory(Loc, /*OrLocal=*/true)) in checkFunctionMemoryAccess()
/external/llvm/lib/Transforms/Scalar/
DLICM.cpp450 if (AA->pointsToConstantMemory(LI->getOperand(0))) in canSinkOrHoistInst()

12