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

/openjdk7/hotspot/src/share/vm/opto/
H A Ddomgraph.cpp47 Tarjan *_child; // Used for faster LINK and EVAL member in struct:Tarjan
185 t->_child = &_tarjan[0]; // Sentenial
316 while( w->_label->_semi < s->_child->_label->_semi ) {
317 if( s->_size + s->_child->_child->_size >= (s->_child->_size << 1) ) {
318 s->_child->_ancestor = s;
319 s->_child = s->_child->_child;
[all...]
H A Dloopnode.hpp329 IdealLoopTree *_child; // First child in loop tree member in class:IdealLoopTree
353 : _parent(0), _next(0), _child(0),
485 bool is_inner() { return is_loop() && _child == NULL; }
624 if (old_loop->_child == NULL) old_loop->_body.yank(n);
625 if (new_loop->_child == NULL) new_loop->_body.push(n);
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.hpp718 Loop* _child; // Head of child list threaded thru sibling pointer member in class:ciTypeFlow::Loop
727 _parent(NULL), _sibling(NULL), _child(NULL),
732 Loop* child() const { return _child; }
737 void set_child(Loop* c) { _child = c; }

Completed in 1012 milliseconds