HomeSort by relevance Sort by last modified time
    Searched defs:NodeId (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp 192 // Walk all nodes in the graph, assigning them a NodeId of 'ReadyToProcess'
319 // Recompute the NodeId and correct processed operands, adding the node to
354 int NodeId = User->getNodeId();
358 if (NodeId > 0) {
359 User->setNodeId(NodeId-1);
362 if (NodeId-1 == ReadyToProcess)
370 if (NodeId == NewNode)
374 // became ready. Its new NodeId is the number of operands it has minus 1
376 assert(NodeId == Unanalyzed && "Unknown node ID!");
446 /// calculate the NodeId. If the node itself changes to a processed node, i
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 327 /// NodeId - Unique id per SDNode in the DAG.
328 int NodeId;
417 int getNodeId() const { return NodeId; }
420 void setNodeId(int Id) { NodeId = Id; }
702 SubclassData(0), NodeId(-1),
718 SubclassData(0), NodeId(-1), OperandList(0),
    [all...]

Completed in 67 milliseconds