Searched defs:_out_head (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dsuperword.hpp94 // incoming edges, and _out_head starts the list of outgoing edges.
99 DepEdge* _out_head; // Head of list of out edges, null terminated member in class:DepMem
102 DepMem(Node* node) : _node(node), _in_head(NULL), _out_head(NULL) {}
106 DepEdge* out_head() { return _out_head; }
108 void set_out_head(DepEdge* hd) { _out_head = hd; }

Completed in 31 milliseconds