Searched refs:PredN (Results 1 – 5 of 5) sorted by relevance
275 void addMemPred(MemDGNode *PredN) { in addMemPred() argument276 [[maybe_unused]] auto Inserted = MemPreds.insert(PredN).second; in addMemPred()278 assert(PredN != this && "Trying to add a dependency to self!"); in addMemPred()279 PredN->MemSuccs.insert(this); in addMemPred()281 ++PredN->UnscheduledSuccs; in addMemPred()286 void removeMemPred(MemDGNode *PredN) { in removeMemPred() argument287 MemPreds.erase(PredN); in removeMemPred()288 PredN->MemSuccs.erase(this); in removeMemPred()290 PredN->decrUnscheduledSuccs(); in removeMemPred()
107 for (auto *PredN : N->preds(DAG)) { in notifyCreateInstr() local108 ReadyList.remove(PredN); in notifyCreateInstr()109 PredN->incrUnscheduledSuccs(); in notifyCreateInstr()277 for (auto *PredN : N->preds(DAG)) in trimSchedule() local278 PredN->incrUnscheduledSuccs(); in trimSchedule()
507 auto *PredN = *MemN->memPreds().begin(); in notifyEraseInstr() local508 MemN->removeMemPred(PredN); in notifyEraseInstr()518 for (auto *PredN : N->preds(*this)) in notifyEraseInstr() local519 PredN->decrUnscheduledSuccs(); in notifyEraseInstr()
2844 for (ExplodedNode *PredN : CheckersOutSet) { in processBranch()2845 if (PredN->isSink()) in processBranch()2848 ProgramStateRef PrevState = PredN->getState(); in processBranch()2851 if (const auto KnownCondValueAssumption = assumeCondition(Condition, PredN)) in processBranch()2892 Builder.generateNode(StTrue, true, PredN); in processBranch()2933 Builder.generateNode(StFalse, false, PredN); in processBranch()
810 int PredN = PB->getNumber(); in visitPHI() local814 if (!EdgeExec.count(CFGEdge(PredN, ThisN))) { in visitPHI()