Lines Matching refs:LoadInst
99 LoadInst *LoadInst = B.CreateLoad(B.getInt8Ty(), PointerArg); in TEST_F() local
107 LoadInst, MP, Merge, MemorySSA::Beginning)); in TEST_F()
145 LoadInst *FirstLoad = B.CreateLoad(B.getInt8Ty(), PointerArg); in TEST_F()
173 LoadInst *SecondLoad = B.CreateLoad(B.getInt8Ty(), PointerArg); in TEST_F()
239 LoadInst *LoadInst = B.CreateLoad(B.getInt8Ty(), PointerArg); in TEST_F() local
243 LoadInst, nullptr, Merge, MemorySSA::Beginning)); in TEST_F()
269 LoadInst *LoadInst1 = B.CreateLoad(B.getInt8Ty(), PointerArg); in TEST_F()
284 LoadInst *LoadInstClone = cast<LoadInst>(LoadInst1->clone()); in TEST_F()
497 LoadInst *LoadInst = B.CreateLoad(B.getInt8Ty(), PointerArg); in TEST_F() local
504 MemoryUse *LoadAccess = cast<MemoryUse>(MSSA.getMemoryAccess(LoadInst)); in TEST_F()
542 LoadInst *LoadInst = B.CreateLoad(B.getInt8Ty(), PointerArg); in TEST_F() local
551 MemoryUse *LoadAccess = cast<MemoryUse>(MSSA.getMemoryAccess(LoadInst)); in TEST_F()
557 EXPECT_EQ(DefiningAccess, Walker->getClobberingMemoryAccess(LoadInst)); in TEST_F()
570 MSSA.isLiveOnEntryDef(Walker->getClobberingMemoryAccess(LoadInst))); in TEST_F()
574 MSSA.isLiveOnEntryDef(Walker->getClobberingMemoryAccess(LoadInst))); in TEST_F()
841 LoadInst *LoadB = B.CreateLoad(Int8, B_); in TEST_F()
845 LoadInst *LoadC = B.CreateLoad(Int8, C); in TEST_F()
909 LoadInst *LoadInst = B.CreateLoad(B.getInt8Ty(), FirstArg); in TEST_F() local
911 LoadInst, nullptr, AfterLoopBB, MemorySSA::Beginning)); in TEST_F()
1017 LoadInst *LA1 = B.CreateLoad(Int8, AllocaA, ""); in TEST_F()
1019 LoadInst *LA2 = B.CreateLoad(Int8, AllocaA, ""); in TEST_F()
1023 LoadInst *LA3 = B.CreateLoad(Int8, AllocaA, ""); in TEST_F()
1025 LoadInst *LA4 = B.CreateLoad(Int8, AllocaA, ""); in TEST_F()
1032 for (LoadInst *V : {LA1, LA2}) { in TEST_F()
1040 for (LoadInst *V : {LA3, LA4}) { in TEST_F()
1111 LoadInst *LA1 = B.CreateLoad(Int8, PointerA, ""); in TEST_F()
1113 LoadInst *LB1 = B.CreateLoad(Int8, PointerB, ""); in TEST_F()
1115 LoadInst *LA2 = B.CreateLoad(Int8, PointerA, ""); in TEST_F()
1117 LoadInst *LB2 = B.CreateLoad(Int8, PointerB, ""); in TEST_F()
1124 for (LoadInst *V : {LA1, LB1}) { in TEST_F()
1132 for (LoadInst *V : {LA2, LB2}) { in TEST_F()
1749 auto &LI = cast<LoadInst>(*std::next(std::next(BB.begin()))); in TEST_F()