Lines Matching refs:RemInst
1541 void MemoryDependenceResults::removeInstruction(Instruction *RemInst) { in removeInstruction() argument
1542 EII.removeInstruction(RemInst); in removeInstruction()
1546 NonLocalDepMapType::iterator NLDI = NonLocalDepsMap.find(RemInst); in removeInstruction()
1551 RemoveFromReverseMap(ReverseNonLocalDeps, Inst, RemInst); in removeInstruction()
1556 LocalDepMapType::iterator LocalDepEntry = LocalDeps.find(RemInst); in removeInstruction()
1560 RemoveFromReverseMap(ReverseLocalDeps, Inst, RemInst); in removeInstruction()
1571 if (RemInst->getType()->isPointerTy()) { in removeInstruction()
1572 removeCachedNonLocalPointerDependencies(ValueIsLoadPair(RemInst, false)); in removeInstruction()
1573 removeCachedNonLocalPointerDependencies(ValueIsLoadPair(RemInst, true)); in removeInstruction()
1577 auto toRemoveIt = NonLocalDefsCache.find(RemInst); in removeInstruction()
1579 assert(isa<LoadInst>(RemInst) && in removeInstruction()
1582 ReverseNonLocalDefsCache.find(DepV)->second.erase(RemInst); in removeInstruction()
1597 if (!RemInst->isTerminator()) in removeInstruction()
1598 NewDirtyVal = MemDepResult::getDirty(&*++RemInst->getIterator()); in removeInstruction()
1600 ReverseDepMapType::iterator ReverseDepIt = ReverseLocalDeps.find(RemInst); in removeInstruction()
1603 assert(!ReverseDepIt->second.empty() && !RemInst->isTerminator() && in removeInstruction()
1607 assert(InstDependingOnRemInst != RemInst && in removeInstruction()
1631 ReverseDepIt = ReverseNonLocalDeps.find(RemInst); in removeInstruction()
1634 assert(I != RemInst && "Already removed NonLocalDep info for RemInst"); in removeInstruction()
1641 if (Entry.getResult().getInst() != RemInst) in removeInstruction()
1665 ReverseNonLocalPtrDeps.find(RemInst); in removeInstruction()
1671 assert(P.getPointer() != RemInst && in removeInstruction()
1681 if (Entry.getResult().getInst() != RemInst) in removeInstruction()
1705 assert(!NonLocalDepsMap.count(RemInst) && "RemInst got reinserted?"); in removeInstruction()
1706 LLVM_DEBUG(verifyRemoved(RemInst)); in removeInstruction()