Lines Matching defs:NodeA
5719 auto *NodeA = DT->getNode(BB1);
5721 assert(NodeA && "Should only process reachable instructions");
5723 assert((NodeA == NodeB) ==
5724 (NodeA->getDFSNumIn() == NodeB->getDFSNumIn()) &&
5726 return NodeA->getDFSNumIn() < NodeB->getDFSNumIn();
12190 auto *NodeA = DT->getNode(A->getParent());
12192 assert(NodeA && "Should only process reachable instructions");
12194 assert((NodeA == NodeB) == (NodeA->getDFSNumIn() == NodeB->getDFSNumIn()) &&
12196 if (NodeA != NodeB)
12197 return NodeA->getDFSNumIn() > NodeB->getDFSNumIn();
13775 auto *NodeA = DT->getNode(LastInst->getParent());
13777 assert(NodeA && "Should only process reachable instructions");
13779 assert((NodeA == NodeB) ==
13780 (NodeA->getDFSNumIn() == NodeB->getDFSNumIn()) &&
13782 if (NodeA->getDFSNumIn() < NodeB->getDFSNumIn())
13811 auto *NodeA = DT->getNode(FirstInst->getParent());
13813 assert(NodeA && "Should only process reachable instructions");
13815 assert((NodeA == NodeB) ==
13816 (NodeA->getDFSNumIn() == NodeB->getDFSNumIn()) &&
13818 if (NodeA->getDFSNumIn() > NodeB->getDFSNumIn())