Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/include/llvm/Support/
H A DGenericDomTree.h496 DomTreeNodeBase<NodeT> *NodeA = getNode(A);
498 assert(NodeA && "A must be in the tree");
503 while (NodeA != NodeB) {
504 if (NodeA->getLevel() < NodeB->getLevel()) std::swap(NodeA, NodeB);
506 NodeA = NodeA->IDom;
509 return NodeA->getBlock();
/src/contrib/llvm-project/llvm/lib/CodeGen/
H A DComplexDeinterleavingPass.cpp1218 auto NodeA = It->second; in identifyMultiplications() local
1220 auto IsMultiplicandReal = PMI.Common == NodeA->Real; in identifyMultiplications()
1262 dbgs().indent(4) << "X: " << *NodeA->Real << "\n"; in identifyMultiplications()
1263 dbgs().indent(4) << "Y: " << *NodeA->Imag << "\n"; in identifyMultiplications()
1272 NodeMul->addOperand(NodeA); in identifyMultiplications()
1866 auto NodeA = identifyNode(AR, AI); in identifySelectNode() local
1867 if (!NodeA) in identifySelectNode()
1876 PlaceholderNode->addOperand(NodeA); in identifySelectNode()
/src/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp10201 auto *NodeA = DT->getNode(A->getParent()); in getSpillCost() local
10203 assert(NodeA && "Should only process reachable instructions"); in getSpillCost()
10205 assert((NodeA == NodeB) == (NodeA->getDFSNumIn() == NodeB->getDFSNumIn()) && in getSpillCost()
10207 if (NodeA != NodeB) in getSpillCost()
10208 return NodeA->getDFSNumIn() > NodeB->getDFSNumIn(); in getSpillCost()
11462 auto *NodeA = DT->getNode(LastInst->getParent()); in getLastInstructionInBundle() local
11464 assert(NodeA && "Should only process reachable instructions"); in getLastInstructionInBundle()
11466 assert((NodeA == NodeB) == in getLastInstructionInBundle()
11467 (NodeA->getDFSNumIn() == NodeB->getDFSNumIn()) && in getLastInstructionInBundle()
11469 if (NodeA->getDFSNumIn() < NodeB->getDFSNumIn()) in getLastInstructionInBundle()
[all …]