Lines Matching refs:OtherStore
1188 StoreInst *OtherStore = nullptr; in SimplifyStoreAtEndOfBlock() local
1200 OtherStore = dyn_cast<StoreInst>(BBI); in SimplifyStoreAtEndOfBlock()
1201 if (!OtherStore || OtherStore->getOperand(1) != SI.getOperand(1) || in SimplifyStoreAtEndOfBlock()
1202 !SI.isSameOperationAs(OtherStore)) in SimplifyStoreAtEndOfBlock()
1216 if ((OtherStore = dyn_cast<StoreInst>(BBI))) { in SimplifyStoreAtEndOfBlock()
1217 if (OtherStore->getOperand(1) != SI.getOperand(1) || in SimplifyStoreAtEndOfBlock()
1218 !SI.isSameOperationAs(OtherStore)) in SimplifyStoreAtEndOfBlock()
1240 Value *MergedVal = OtherStore->getOperand(0); in SimplifyStoreAtEndOfBlock()
1244 PN->addIncoming(OtherStore->getOperand(0), OtherBB); in SimplifyStoreAtEndOfBlock()
1257 NewSI->setDebugLoc(OtherStore->getDebugLoc()); in SimplifyStoreAtEndOfBlock()
1263 OtherStore->getAAMetadata(AATags, /* Merge = */ true); in SimplifyStoreAtEndOfBlock()
1269 EraseInstFromFunction(*OtherStore); in SimplifyStoreAtEndOfBlock()