Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:NI

292   for (SelectionDAG::allnodes_iterator NI = DAG->allnodes_begin(),
293 E = DAG->allnodes_end(); NI != E; ++NI) {
294 SDNode *Node = &*NI;
311 for (SelectionDAG::allnodes_iterator NI = DAG->allnodes_begin(),
312 E = DAG->allnodes_end(); NI != E; ++NI) {
313 NI->setNodeId(-1);
332 SDNode *NI = Worklist.pop_back_val();
335 for (unsigned i = 0, e = NI->getNumOperands(); i != e; ++i)
336 if (Visited.insert(NI->getOperand(i).getNode()))
337 Worklist.push_back(NI->getOperand(i).getNode());
339 if (isPassiveNode(NI)) // Leaf node, e.g. a TargetImmediate.
343 if (NI->getNodeId() != -1) continue;
345 SUnit *NodeSUnit = newSUnit(NI);
352 SDNode *N = NI;
363 N = NI;
389 if (NI->getOpcode() == ISD::TokenFactor)