Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DGenericDomTree.h499 DomTreeNodeBase<NodeT> *NodeB = getNode(B);
501 assert(NodeB && "B must be in the tree");
505 while (NodeA != NodeB) {
506 if (NodeA->getLevel() < NodeB->getLevel()) std::swap(NodeA, NodeB);
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp7636 auto *NodeB = DT->getNode(B->getParent()); in getSpillCost() local
7638 assert(NodeB && "Should only process reachable instructions"); in getSpillCost()
7639 assert((NodeA == NodeB) == (NodeA->getDFSNumIn() == NodeB->getDFSNumIn()) && in getSpillCost()
7641 if (NodeA != NodeB) in getSpillCost()
7642 return NodeA->getDFSNumIn() < NodeB->getDFSNumIn(); in getSpillCost()
8521 auto *NodeB = DT->getNode(I->getParent()); in getLastInstructionInBundle() local
8523 assert(NodeB && "Should only process reachable instructions"); in getLastInstructionInBundle()
8524 assert((NodeA == NodeB) == in getLastInstructionInBundle()
8525 (NodeA->getDFSNumIn() == NodeB->getDFSNumIn()) && in getLastInstructionInBundle()
8527 if (NodeA->getDFSNumIn() < NodeB->getDFSNumIn()) in getLastInstructionInBundle()
[all …]