Home
last modified time | relevance | path

Searched refs:StoreAccess (Results 1 – 3 of 3) sorted by relevance

/external/llvm/unittests/Transforms/Utils/
DMemorySSA.cpp97 MemoryDef *StoreAccess = cast<MemoryDef>(MSSA.getMemoryAccess(StoreInst)); in TEST_F() local
98 MP->addIncoming(StoreAccess, Left); in TEST_F()
134 MemoryDef *StoreAccess = cast<MemoryDef>(MSSA.getMemoryAccess(StoreInst)); in TEST_F() local
138 MSSA.removeMemoryAccess(StoreAccess); in TEST_F()
180 MemoryDef *StoreAccess = cast<MemoryDef>(MSSA.getMemoryAccess(StoreInst)); in TEST_F() local
186 MSSA.removeMemoryAccess(StoreAccess); in TEST_F()
296 MemoryAccess *StoreAccess = MSSA.getMemoryAccess(SI); in TEST_F() local
299 Walker->getClobberingMemoryAccess(StoreAccess, StoreLoc); in TEST_F()
302 EXPECT_EQ(Clobber, StoreAccess); in TEST_F()
306 Clobber = Walker->getClobberingMemoryAccess(StoreAccess, StoreLoc); in TEST_F()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/
DMemorySSA.cpp226 MemoryAccess *StoreAccess = in TEST_F() local
228 Updater.insertDef(cast<MemoryDef>(StoreAccess)); in TEST_F()
502 MemoryDef *StoreAccess = cast<MemoryDef>(MSSA.getMemoryAccess(StoreInst)); in TEST_F() local
506 Updater.removeMemoryAccess(StoreAccess); in TEST_F()
549 MemoryDef *StoreAccess = cast<MemoryDef>(MSSA.getMemoryAccess(StoreInst)); in TEST_F() local
555 Updater.removeMemoryAccess(StoreAccess); in TEST_F()
670 MemoryAccess *StoreAccess = MSSA.getMemoryAccess(SI); in TEST_F() local
673 Walker->getClobberingMemoryAccess(StoreAccess, StoreLoc); in TEST_F()
676 EXPECT_EQ(Clobber, StoreAccess); in TEST_F()
680 Clobber = Walker->getClobberingMemoryAccess(StoreAccess, StoreLoc); in TEST_F()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DNewGVN.cpp1363 auto *StoreAccess = getMemoryAccess(SI); in performSymbolicStoreEvaluation() local
1365 const MemoryAccess *StoreRHS = StoreAccess->getDefiningAccess(); in performSymbolicStoreEvaluation()
1367 StoreRHS = MSSAWalker->getClobberingMemoryAccess(StoreAccess); in performSymbolicStoreEvaluation()
1370 if (StoreRHS != StoreAccess->getDefiningAccess()) in performSymbolicStoreEvaluation()
1371 addMemoryUsers(StoreRHS, StoreAccess); in performSymbolicStoreEvaluation()
1373 if (StoreRHS == StoreAccess) in performSymbolicStoreEvaluation()
1405 return createStoreExpression(SI, StoreAccess); in performSymbolicStoreEvaluation()