src/share/vm/opto/compile.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/opto/compile.cpp

src/share/vm/opto/compile.cpp

Print this page

        

*** 2419,2429 **** tty->print(" "); tty->print(" %c ", starts_bundle); starts_bundle = ' '; tty->print("\t"); delay->format(_regalloc, tty); ! tty->print_cr(""); delay = NULL; } // Dump the exception table as well if( n->is_Catch() && (Verbose || WizardMode) ) { --- 2419,2429 ---- tty->print(" "); tty->print(" %c ", starts_bundle); starts_bundle = ' '; tty->print("\t"); delay->format(_regalloc, tty); ! tty->cr(); delay = NULL; } // Dump the exception table as well if( n->is_Catch() && (Verbose || WizardMode) ) {
*** 2433,2448 **** } if (pcs && n->_idx < pc_limit) tty->print_cr("%3.3x", pcs[n->_idx]); else ! tty->print_cr(""); assert(cut_short || delay == NULL, "no unconditional delay branch"); } // End of per-block dump ! tty->print_cr(""); if (cut_short) tty->print_cr("*** disassembly is cut short ***"); } #endif --- 2433,2448 ---- } if (pcs && n->_idx < pc_limit) tty->print_cr("%3.3x", pcs[n->_idx]); else ! tty->cr(); assert(cut_short || delay == NULL, "no unconditional delay branch"); } // End of per-block dump ! tty->cr(); if (cut_short) tty->print_cr("*** disassembly is cut short ***"); } #endif
*** 3879,3889 **** } } } if (do_print_inlining) { for (int i = 0; i < _print_inlining_list->length(); i++) { ! tty->print(_print_inlining_list->adr_at(i)->ss()->as_string()); } } } void Compile::log_late_inline(CallGenerator* cg) { --- 3879,3889 ---- } } } if (do_print_inlining) { for (int i = 0; i < _print_inlining_list->length(); i++) { ! tty->print_raw(_print_inlining_list->adr_at(i)->ss()->as_string()); } } } void Compile::log_late_inline(CallGenerator* cg) {
src/share/vm/opto/compile.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File