/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | TypeBasedAliasAnalysis.cpp | 144 virtual bool pointsToConstantMemory(const Location &Loc, bool OrLocal); 234 bool OrLocal) { in pointsToConstantMemory() argument 236 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 239 if (!M) return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 246 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
|
D | AliasDebugger.cpp | 116 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) { in pointsToConstantMemory() argument 118 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
|
D | AliasAnalysisCounter.cpp | 101 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) { in pointsToConstantMemory() argument 102 return getAnalysis<AliasAnalysis>().pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
|
D | BasicAliasAnalysis.cpp | 497 virtual bool pointsToConstantMemory(const Location &Loc, bool OrLocal); 572 BasicAliasAnalysis::pointsToConstantMemory(const Location &Loc, bool OrLocal) { in pointsToConstantMemory() argument 582 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 586 if (OrLocal && isa<AllocaInst>(V)) in pointsToConstantMemory() 596 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 614 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 623 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
|
D | NoAliasAnalysis.cpp | 54 bool OrLocal) { in pointsToConstantMemory()
|
D | AliasAnalysis.cpp | 53 bool OrLocal) { in pointsToConstantMemory() argument 55 return AA->pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | ObjCARCAliasAnalysis.cpp | 73 bool OrLocal) { in pointsToConstantMemory() argument 75 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 81 MemoryLocation(S, Loc.Size, Loc.AATags), OrLocal)) in pointsToConstantMemory() 88 return AAResultBase::pointsToConstantMemory(MemoryLocation(U), OrLocal); in pointsToConstantMemory()
|
D | TypeBasedAliasAnalysis.cpp | 384 bool OrLocal) { in pointsToConstantMemory() argument 386 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 390 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 398 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
|
D | BasicAliasAnalysis.cpp | 584 bool OrLocal) { in pointsToConstantMemory() argument 594 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 598 if (OrLocal && isa<AllocaInst>(V)) in pointsToConstantMemory() 608 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 626 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 635 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
|
D | AliasAnalysis.cpp | 113 bool OrLocal) { in pointsToConstantMemory() argument 115 if (AA->pointsToConstantMemory(Loc, OrLocal)) in pointsToConstantMemory()
|
/external/llvm/lib/Analysis/ |
D | ObjCARCAliasAnalysis.cpp | 73 bool OrLocal) { in pointsToConstantMemory() argument 75 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 81 MemoryLocation(S, Loc.Size, Loc.AATags), OrLocal)) in pointsToConstantMemory() 88 return AAResultBase::pointsToConstantMemory(MemoryLocation(U), OrLocal); in pointsToConstantMemory()
|
D | TypeBasedAliasAnalysis.cpp | 304 bool OrLocal) { in pointsToConstantMemory() argument 306 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 310 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 318 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
|
D | BasicAliasAnalysis.cpp | 501 bool OrLocal) { in pointsToConstantMemory() argument 511 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 515 if (OrLocal && isa<AllocaInst>(V)) 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()
|
D | AliasAnalysis.cpp | 87 bool OrLocal) { in pointsToConstantMemory() argument 89 if (AA->pointsToConstantMemory(Loc, OrLocal)) in pointsToConstantMemory()
|
/external/llvm/include/llvm/Analysis/ |
D | AliasAnalysis.h | 234 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal = false); 238 bool pointsToConstantMemory(const Value *P, bool OrLocal = false) { 239 return pointsToConstantMemory(MemoryLocation(P), OrLocal); 611 bool OrLocal) = 0; 669 bool OrLocal) override { in pointsToConstantMemory() argument 670 return Result.pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 742 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal) { in pointsToConstantMemory() argument 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() argument
|
D | ObjCARCAliasAnalysis.h | 54 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal);
|
D | TypeBasedAliasAnalysis.h | 39 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal);
|
D | BasicAliasAnalysis.h | 73 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal);
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | AliasAnalysis.h | 372 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal = false); 376 bool pointsToConstantMemory(const Value *P, bool OrLocal = false) { 377 return pointsToConstantMemory(MemoryLocation(P), OrLocal); 768 bool OrLocal) = 0; 826 bool OrLocal) override { in pointsToConstantMemory() argument 827 return Result.pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 899 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal) { in pointsToConstantMemory() argument 900 return AAR ? AAR->pointsToConstantMemory(Loc, OrLocal) in pointsToConstantMemory() 901 : CurrentResult.pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 950 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal) { in pointsToConstantMemory() argument
|
D | TypeBasedAliasAnalysis.h | 45 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal);
|
D | ObjCARCAliasAnalysis.h | 57 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal);
|
D | BasicAliasAnalysis.h | 92 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUAliasAnalysis.cpp | 119 bool OrLocal) { in pointsToConstantMemory() argument 136 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory() 163 return AAResultBase::pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
|
D | AMDGPUAliasAnalysis.h | 51 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal);
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
D | AliasAnalysis.h | 204 bool OrLocal = false); 207 bool pointsToConstantMemory(const Value *P, bool OrLocal = false) { 208 return pointsToConstantMemory(Location(P), OrLocal);
|