Searched refs:OtherStore (Results 1 – 2 of 2) sorted by relevance
1488 StoreInst *OtherStore = nullptr; in mergeStoreIntoSuccessor() local1500 OtherStore = dyn_cast<StoreInst>(BBI); in mergeStoreIntoSuccessor()1501 if (!OtherStore || OtherStore->getOperand(1) != SI.getOperand(1) || in mergeStoreIntoSuccessor()1502 !SI.isSameOperationAs(OtherStore)) in mergeStoreIntoSuccessor()1516 if ((OtherStore = dyn_cast<StoreInst>(BBI))) { in mergeStoreIntoSuccessor()1517 if (OtherStore->getOperand(1) != SI.getOperand(1) || in mergeStoreIntoSuccessor()1518 !SI.isSameOperationAs(OtherStore)) in mergeStoreIntoSuccessor()1539 Value *MergedVal = OtherStore->getOperand(0); in mergeStoreIntoSuccessor()1542 OtherStore->getDebugLoc()); in mergeStoreIntoSuccessor()1546 PN->addIncoming(OtherStore->getOperand(0), OtherBB); in mergeStoreIntoSuccessor()[all …]
16986 if (auto *OtherStore = dyn_cast<StoreSDNode>(*UseIter)) { in getStoreMergeCandidates() local16989 if (CandidateMatch(OtherStore, Ptr, PtrDiff) && in getStoreMergeCandidates()16990 !OverLimitInDependenceCheck(OtherStore, RootNode)) in getStoreMergeCandidates()16991 StoreNodes.push_back(MemOpLink(OtherStore, PtrDiff)); in getStoreMergeCandidates()