reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/SelectionDAG/DAGCombiner.cpp
 1708   if (N->getNumOperands() == 2) {
 1709     if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
 1709     if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
 1710       return N->getOperand(0);
 1711     if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
 1711     if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
 1712       return N->getOperand(1);
 1722   if (N->hasOneUse() && N->use_begin()->getOpcode() == ISD::TokenFactor)
 1722   if (N->hasOneUse() && N->use_begin()->getOpcode() == ISD::TokenFactor)
 1723     AddToWorklist(*(N->use_begin()));
 1731   TFs.push_back(N);
 1879         Result = DAG.getTokenFactor(SDLoc(N), PrunedOps);
 1881         Result = DAG.getTokenFactor(SDLoc(N), Ops);