comparison src/share/vm/opto/bytecodeInfo.cpp @ 3939:f6f3bb0ee072

7088955: add C2 IR support to the SA Reviewed-by: kvn
author never
date Sun, 11 Sep 2011 14:48:24 -0700
parents c26de9aef2ed
children 80ae8033fe01 0f4014d7731b
comparison
equal deleted inserted replaced
3938:e6b1331a51d2 3939:f6f3bb0ee072
608 } 608 }
609 iltp = sub; 609 iltp = sub;
610 } 610 }
611 return iltp; 611 return iltp;
612 } 612 }
613
614
615
616 #ifndef PRODUCT
617 void InlineTree::print_impl(outputStream* st, int indent) const {
618 for (int i = 0; i < indent; i++) st->print(" ");
619 st->print(" @ %d ", caller_bci());
620 method()->print_short_name(st);
621 st->cr();
622
623 for (int i = 0 ; i < _subtrees.length(); i++) {
624 _subtrees.at(i)->print_impl(st, indent + 2);
625 }
626 }
627
628 void InlineTree::print_value_on(outputStream* st) const {
629 print_impl(st, 2);
630 }
631 #endif