Searched refs:getClobberingMemoryAccess (Results 1 – 8 of 8) sorted by relevance
/external/llvm/unittests/Transforms/Utils/ |
D | MemorySSA.cpp | 185 EXPECT_EQ(DefiningAccess, Walker->getClobberingMemoryAccess(LoadInst)); in TEST_F() 195 MSSA.isLiveOnEntryDef(Walker->getClobberingMemoryAccess(LoadInst))); in TEST_F() 241 MemoryAccess *WalkerClobber = Walker->getClobberingMemoryAccess(V); in TEST_F() 267 MemoryAccess *LoadClobber = Walker->getClobberingMemoryAccess(LI); in TEST_F() 269 EXPECT_TRUE(MSSA.isLiveOnEntryDef(Walker->getClobberingMemoryAccess(SI))); in TEST_F() 299 Walker->getClobberingMemoryAccess(StoreAccess, StoreLoc); in TEST_F() 300 MemoryAccess *LiveOnEntry = Walker->getClobberingMemoryAccess(SI); in TEST_F() 306 Clobber = Walker->getClobberingMemoryAccess(StoreAccess, StoreLoc); in TEST_F() 307 LiveOnEntry = Walker->getClobberingMemoryAccess(SI); in TEST_F()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/ |
D | MemorySSA.cpp | 554 EXPECT_EQ(DefiningAccess, Walker->getClobberingMemoryAccess(LoadInst)); in TEST_F() 567 MSSA.isLiveOnEntryDef(Walker->getClobberingMemoryAccess(LoadInst))); in TEST_F() 571 MSSA.isLiveOnEntryDef(Walker->getClobberingMemoryAccess(LoadInst))); in TEST_F() 615 MemoryAccess *WalkerClobber = Walker->getClobberingMemoryAccess(V); in TEST_F() 641 MemoryAccess *LoadClobber = Walker->getClobberingMemoryAccess(LI); in TEST_F() 643 EXPECT_TRUE(MSSA.isLiveOnEntryDef(Walker->getClobberingMemoryAccess(SI))); in TEST_F() 673 Walker->getClobberingMemoryAccess(StoreAccess, StoreLoc); in TEST_F() 674 MemoryAccess *LiveOnEntry = Walker->getClobberingMemoryAccess(SI); in TEST_F() 680 Clobber = Walker->getClobberingMemoryAccess(StoreAccess, StoreLoc); in TEST_F() 681 LiveOnEntry = Walker->getClobberingMemoryAccess(SI); in TEST_F() [all …]
|
/external/llvm/lib/Transforms/Utils/ |
D | MemorySSA.cpp | 128 MemoryAccess *getClobberingMemoryAccess(const Instruction *) override; 129 MemoryAccess *getClobberingMemoryAccess(MemoryAccess *, 147 MemoryAccess *getClobberingMemoryAccess(MemoryAccess *, UpwardsMemoryQuery &); 435 MU->setDefiningAccess(Walker->getClobberingMemoryAccess(Inst)); in buildMemorySSA() 1237 MemoryAccess *MemorySSA::CachingWalker::getClobberingMemoryAccess( in getClobberingMemoryAccess() function in llvm::MemorySSA::CachingWalker 1242 MemoryAccess *MemorySSA::CachingWalker::getClobberingMemoryAccess( in getClobberingMemoryAccess() function in llvm::MemorySSA::CachingWalker 1273 MemoryAccess *Clobber = getClobberingMemoryAccess(DefiningAccess, Q); in getClobberingMemoryAccess() 1285 MemorySSA::CachingWalker::getClobberingMemoryAccess(const Instruction *I) { in getClobberingMemoryAccess() function in llvm::MemorySSA::CachingWalker 1313 MemoryAccess *Result = getClobberingMemoryAccess(DefiningAccess, Q); in getClobberingMemoryAccess() 1347 DoNothingMemorySSAWalker::getClobberingMemoryAccess(const Instruction *I) { in getClobberingMemoryAccess() function in llvm::DoNothingMemorySSAWalker [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | MemorySSA.h | 979 MemoryAccess *getClobberingMemoryAccess(const Instruction *I) { 982 return getClobberingMemoryAccess(MA); 987 virtual MemoryAccess *getClobberingMemoryAccess(MemoryAccess *) = 0; 1000 virtual MemoryAccess *getClobberingMemoryAccess(MemoryAccess *, 1024 using MemorySSAWalker::getClobberingMemoryAccess; 1026 MemoryAccess *getClobberingMemoryAccess(MemoryAccess *) override; 1027 MemoryAccess *getClobberingMemoryAccess(MemoryAccess *,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | MemorySSA.cpp | 916 MemoryAccess *getClobberingMemoryAccess(MemoryAccess *, UpwardsMemoryQuery &); 922 using MemorySSAWalker::getClobberingMemoryAccess; 924 MemoryAccess *getClobberingMemoryAccess(MemoryAccess *) override; 925 MemoryAccess *getClobberingMemoryAccess(MemoryAccess *, 1262 MemoryAccess *Result = Walker->getClobberingMemoryAccess(UseInst); in optimizeUsesInBlock() 2071 MemoryAccess *MemorySSA::CachingWalker::getClobberingMemoryAccess( in getClobberingMemoryAccess() function in MemorySSA::CachingWalker 2076 MemoryAccess *MemorySSA::CachingWalker::getClobberingMemoryAccess( in getClobberingMemoryAccess() function in MemorySSA::CachingWalker 2104 MemoryAccess *Clobber = getClobberingMemoryAccess(DefiningAccess, Q); in getClobberingMemoryAccess() 2113 MemorySSA::CachingWalker::getClobberingMemoryAccess(MemoryAccess *MA) { in getClobberingMemoryAccess() function in MemorySSA::CachingWalker 2151 MemoryAccess *Result = getClobberingMemoryAccess(DefiningAccess, Q); in getClobberingMemoryAccess() [all …]
|
/external/llvm/include/llvm/Transforms/Utils/ |
D | MemorySSA.h | 726 virtual MemoryAccess *getClobberingMemoryAccess(const Instruction *) = 0; 739 virtual MemoryAccess *getClobberingMemoryAccess(MemoryAccess *, 759 MemoryAccess *getClobberingMemoryAccess(const Instruction *) override; 760 MemoryAccess *getClobberingMemoryAccess(MemoryAccess *,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | EarlyCSE.cpp | 688 MSSA->getWalker()->getClobberingMemoryAccess(LaterInst); in isSameMemGeneration()
|
D | NewGVN.cpp | 1367 StoreRHS = MSSAWalker->getClobberingMemoryAccess(StoreAccess); in performSymbolicStoreEvaluation() 1500 MSSAWalker->getClobberingMemoryAccess(OriginalAccess); in performSymbolicLoadEvaluation() 1638 MemoryAccess *DefiningAccess = MSSAWalker->getClobberingMemoryAccess(CI); in performSymbolicCallEvaluation()
|