Searched refs:ilt (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/
H A DCompile.java88 public InlineTree ilt() { method in class:Compile
/openjdk7/hotspot/src/share/vm/opto/
H A DbytecodeInfo.cpp607 InlineTree* ilt = new InlineTree(C, this, callee_method, caller_jvms, caller_bci, recur_frequency, _max_inline_level + max_inline_level_adjust); local
608 _subtrees.append(ilt);
612 return ilt;
633 InlineTree* ilt = new InlineTree(C, NULL, C->method(), NULL, -1, 1.0F, MaxInlineLevel); local
635 return ilt;
656 guarantee(sub != NULL, "should be a sub-ilt here");
H A Dloopnode.cpp1430 IdealLoopTree *ilt = new IdealLoopTree( phase, _head, _tail ); local
1431 phase->set_loop(_tail,ilt); // Adjust tail
1434 ilt->_child = _child; // New guy has my children
1435 _child = ilt; // Self has new guy as only child
1436 ilt->_parent = this; // new guy has self for parent
1437 ilt->_nest = _nest; // Same nesting depth (for now)
1439 // Starting with 'ilt', look for child loop trees using the same shared
1442 while( ilt ) {
1443 if( ilt->_head == _head ) {
1446 if( _head->in(i) == ilt
3033 IdealLoopTree *ilt; local
[all...]
H A Dparse1.cpp402 InlineTree::find_subtree_from_root(C->ilt(), ilt_caller, parse_method);
2102 InlineTree* ilt = NULL; local
2103 if (C->ilt() != NULL) {
2105 ilt = InlineTree::find_subtree_from_root(C->ilt(), caller_jvms, method());
2109 if( ilt->count_inlines() ) {
2110 tty->print(" __inlined %d (%d bytes)", ilt->count_inlines(),
2111 ilt->count_inline_bcs());
2128 if (ilt->count_inlines()) {
2129 tty->print(" __inlined %d (%d bytes)", ilt
[all...]
H A DdoCall.cpp154 InlineTree* ilt; local
156 ilt = InlineTree::find_subtree_from_root(this->ilt(), jvms->caller(), jvms->method());
161 // Note: ilt is for the root of this parse, not the present call site.
162 ilt = new InlineTree(this, jvms->method(), jvms->caller(), site_invoke_ratio, MaxInlineLevel);
168 WarmCallInfo* ci = ilt->ok_to_inline(callee, jvms, profile, &scratch_ci, should_delay);
H A DidealGraphPrinter.cpp299 InlineTree *inlineTree = compile->ilt();
H A Dcompile.hpp488 InlineTree* ilt() const { return _ilt; } function in class:Compile
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DCommandProcessor.java734 InlineTree ilt = c.ilt();
735 if (ilt != null) {
736 ilt.print(out);

Completed in 65 milliseconds