src/share/vm/opto/parse2.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 6934604 Cdiff src/share/vm/opto/parse2.cpp

src/share/vm/opto/parse2.cpp

Print this page

        

*** 985,995 **** // the path may be cold again. Make sure it doesn't look untaken profile_taken_branch(target_bci, !ProfileInterpreter); uncommon_trap(Deoptimization::Reason_unreached, Deoptimization::Action_reinterpret, NULL, "cold"); ! if (EliminateAutoBox) { // Mark the successor blocks as parsed branch_block->next_path_num(); next_block->next_path_num(); } return; --- 985,995 ---- // the path may be cold again. Make sure it doesn't look untaken profile_taken_branch(target_bci, !ProfileInterpreter); uncommon_trap(Deoptimization::Reason_unreached, Deoptimization::Action_reinterpret, NULL, "cold"); ! if (C->eliminate_boxing()) { // Mark the successor blocks as parsed branch_block->next_path_num(); next_block->next_path_num(); } return;
*** 1010,1020 **** Node* iftrue = _gvn.transform( new (C) IfTrueNode (iff) ); set_control(iftrue); if (stopped()) { // Path is dead? explicit_null_checks_elided++; ! if (EliminateAutoBox) { // Mark the successor block as parsed branch_block->next_path_num(); } } else { // Path is live. // Update method data --- 1010,1020 ---- Node* iftrue = _gvn.transform( new (C) IfTrueNode (iff) ); set_control(iftrue); if (stopped()) { // Path is dead? explicit_null_checks_elided++; ! if (C->eliminate_boxing()) { // Mark the successor block as parsed branch_block->next_path_num(); } } else { // Path is live. // Update method data
*** 1030,1040 **** Node* iffalse = _gvn.transform( new (C) IfFalseNode(iff) ); set_control(iffalse); if (stopped()) { // Path is dead? explicit_null_checks_elided++; ! if (EliminateAutoBox) { // Mark the successor block as parsed next_block->next_path_num(); } } else { // Path is live. // Update method data --- 1030,1040 ---- Node* iffalse = _gvn.transform( new (C) IfFalseNode(iff) ); set_control(iffalse); if (stopped()) { // Path is dead? explicit_null_checks_elided++; ! if (C->eliminate_boxing()) { // Mark the successor block as parsed next_block->next_path_num(); } } else { // Path is live. // Update method data
*** 1067,1077 **** // the path may be cold again. Make sure it doesn't look untaken profile_taken_branch(target_bci, !ProfileInterpreter); uncommon_trap(Deoptimization::Reason_unreached, Deoptimization::Action_reinterpret, NULL, "cold"); ! if (EliminateAutoBox) { // Mark the successor blocks as parsed branch_block->next_path_num(); next_block->next_path_num(); } return; --- 1067,1077 ---- // the path may be cold again. Make sure it doesn't look untaken profile_taken_branch(target_bci, !ProfileInterpreter); uncommon_trap(Deoptimization::Reason_unreached, Deoptimization::Action_reinterpret, NULL, "cold"); ! if (C->eliminate_boxing()) { // Mark the successor blocks as parsed branch_block->next_path_num(); next_block->next_path_num(); } return;
*** 1133,1143 **** { PreserveJVMState pjvms(this); taken_branch = _gvn.transform(taken_branch); set_control(taken_branch); if (stopped()) { ! if (EliminateAutoBox) { // Mark the successor block as parsed branch_block->next_path_num(); } } else { // Update method data --- 1133,1143 ---- { PreserveJVMState pjvms(this); taken_branch = _gvn.transform(taken_branch); set_control(taken_branch); if (stopped()) { ! if (C->eliminate_boxing()) { // Mark the successor block as parsed branch_block->next_path_num(); } } else { // Update method data
*** 1152,1162 **** untaken_branch = _gvn.transform(untaken_branch); set_control(untaken_branch); // Branch not taken. if (stopped()) { ! if (EliminateAutoBox) { // Mark the successor block as parsed next_block->next_path_num(); } } else { // Update method data --- 1152,1162 ---- untaken_branch = _gvn.transform(untaken_branch); set_control(untaken_branch); // Branch not taken. if (stopped()) { ! if (C->eliminate_boxing()) { // Mark the successor block as parsed next_block->next_path_num(); } } else { // Update method data
src/share/vm/opto/parse2.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File