Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp2493 SDNode *ChainNode = ChainNodesMatched[i]; in UpdateChains() local
2496 if (!ChainNode) in UpdateChains()
2499 assert(ChainNode->getOpcode() != ISD::DELETED_NODE && in UpdateChains()
2504 if (ChainNode == NodeToMatch && isMorphNodeTo) in UpdateChains()
2507 SDValue ChainVal = SDValue(ChainNode, ChainNode->getNumValues()-1); in UpdateChains()
2516 if (ChainNode->getOpcode() != ISD::TokenFactor) in UpdateChains()
2520 if (ChainNode != NodeToMatch && ChainNode->use_empty() && in UpdateChains()
2521 !std::count(NowDeadNodes.begin(), NowDeadNodes.end(), ChainNode)) in UpdateChains()
2522 NowDeadNodes.push_back(ChainNode); in UpdateChains()