Searched refs:_child (Results 1 - 10 of 10) 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.cpp1176 if( _child ) bits |= _child->set_nest(depth+1);
1307 if( loop->_child ) fix_parent( loop->_child, loop );
1434 ilt->_child = _child; // New guy has my children
1435 _child = ilt; // Self has new guy as only child
1441 IdealLoopTree **pilt = &_child;
1450 // ilt's '_child' list. Move the ilt's _child u
[all...]
H A Dgcm.cpp1590 CFGLoop* ch = _child;
1592 _child = cl;
1604 CFGLoop* ch = _child;
1623 CFGLoop* ch = _child;
1954 CFGLoop* ch = _child;
1963 if (_child != NULL) {
1964 return _child->_freq;
1973 if (_child != NULL) _child->dump_tree();
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);
H A Dblock.hpp530 CFGLoop *_child; // first child, use child's sibling to visit all immediately nested loops
543 _child(NULL),
H A Dsplit_if.cpp59 if( !loop->_child )
234 if( !loop->_child )
H A DloopPredicate.cpp917 if (_child) {
918 hoisted = _child->loop_predication( phase);
H A Dloopopts.cpp184 if (old_loop && !old_loop->_child)
186 if (!new_loop->_child)
250 if (!old_loop->_child) old_loop->_body.yank(cd);
251 if (!new_loop->_child) new_loop->_body.push(cd);
778 return (u_loop->_irreducible || u_loop->_child)
H A DloopTransform.cpp2340 if (_child && !_child->iteration_split(phase, old_new))
2357 if (!_child && // If not an inner loop, do not split
/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 105 milliseconds