src/share/vm/opto/compile.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/opto/compile.cpp	Wed Aug  7 01:31:01 2013
--- new/src/share/vm/opto/compile.cpp	Wed Aug  7 01:31:01 2013

*** 2260,2270 **** --- 2260,2270 ---- n = b->_nodes[0]; if (pcs && n->_idx < pc_limit) tty->print("%3.3x ", pcs[n->_idx]); else tty->print(" "); ! b->dump_head( &_cfg->_bbs ); if (b->is_connector()) { tty->print_cr(" # Empty connector block"); } else if (b->num_preds() == 2 && b->pred(1)->is_CatchProj() && b->pred(1)->as_CatchProj()->_con == CatchProjNode::fall_through_index) { tty->print_cr(" # Block is sole successor of call"); }
*** 3523,3533 **** --- 3523,3533 ---- } (void) _constants.append(con); } Compile::Constant Compile::ConstantTable::add(MachConstantNode* n, BasicType type, jvalue value) { ! Block* b = Compile::current()->cfg()->_bbs[n->_idx]; ! Block* b = Compile::current()->cfg()->get_block_for_node(n); Constant con(type, value, b->_freq); add(con); return con; }

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