Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/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);
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DComplexDeinterleavingPass.cpp1219 auto NodeB = PMI.Node; in identifyMultiplications() local
1264 dbgs().indent(4) << "U: " << *NodeB->Real << "\n"; in identifyMultiplications()
1265 dbgs().indent(4) << "V: " << *NodeB->Imag << "\n"; in identifyMultiplications()
1273 NodeMul->addOperand(NodeB); in identifyMultiplications()
1871 auto NodeB = identifyNode(RA, BI); in identifySelectNode() local
1872 if (!NodeB) in identifySelectNode()
1878 PlaceholderNode->addOperand(NodeB); in identifySelectNode()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp8679 auto *NodeB = DT->getNode(B->getParent()); in getSpillCost() local
8681 assert(NodeB && "Should only process reachable instructions"); in getSpillCost()
8682 assert((NodeA == NodeB) == (NodeA->getDFSNumIn() == NodeB->getDFSNumIn()) && in getSpillCost()
8684 if (NodeA != NodeB) in getSpillCost()
8685 return NodeA->getDFSNumIn() > NodeB->getDFSNumIn(); in getSpillCost()
9855 auto *NodeB = DT->getNode(I->getParent()); in getLastInstructionInBundle() local
9858 assert((NodeA == NodeB) == in getLastInstructionInBundle()
9861 if (NodeA->getDFSNumIn() < NodeB->getDFSNumIn()) in getLastInstructionInBundle()
9891 auto *NodeB = DT->getNode(I->getParent()); in getLastInstructionInBundle() local
9894 assert((NodeA == NodeB) == in getLastInstructionInBundle()
[all …]