Home
last modified time | relevance | path

Searched refs:OtherStore (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp1488 StoreInst *OtherStore = nullptr; in mergeStoreIntoSuccessor() local
1500 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 …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp16986 if (auto *OtherStore = dyn_cast<StoreSDNode>(*UseIter)) { in getStoreMergeCandidates() local
16989 if (CandidateMatch(OtherStore, Ptr, PtrDiff) && in getStoreMergeCandidates()
16990 !OverLimitInDependenceCheck(OtherStore, RootNode)) in getStoreMergeCandidates()
16991 StoreNodes.push_back(MemOpLink(OtherStore, PtrDiff)); in getStoreMergeCandidates()