Lines Matching refs:OtherStore
1480 StoreInst *OtherStore = nullptr; in mergeStoreIntoSuccessor() local
1492 OtherStore = dyn_cast<StoreInst>(BBI); in mergeStoreIntoSuccessor()
1493 if (!OtherStore || OtherStore->getOperand(1) != SI.getOperand(1) || in mergeStoreIntoSuccessor()
1494 !SI.isSameOperationAs(OtherStore)) in mergeStoreIntoSuccessor()
1508 if ((OtherStore = dyn_cast<StoreInst>(BBI))) { in mergeStoreIntoSuccessor()
1509 if (OtherStore->getOperand(1) != SI.getOperand(1) || in mergeStoreIntoSuccessor()
1510 !SI.isSameOperationAs(OtherStore)) in mergeStoreIntoSuccessor()
1531 Value *MergedVal = OtherStore->getOperand(0); in mergeStoreIntoSuccessor()
1534 OtherStore->getDebugLoc()); in mergeStoreIntoSuccessor()
1538 PN->addIncoming(OtherStore->getOperand(0), OtherBB); in mergeStoreIntoSuccessor()
1554 NewSI->setAAMetadata(AATags.merge(OtherStore->getAAMetadata())); in mergeStoreIntoSuccessor()
1558 eraseInstFromFunction(*OtherStore); in mergeStoreIntoSuccessor()