src/share/vm/opto/arraycopynode.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/opto/arraycopynode.cpp	Tue Jun  9 15:16:37 2015
--- new/src/share/vm/opto/arraycopynode.cpp	Tue Jun  9 15:16:37 2015

*** 436,450 **** --- 436,456 ---- igvn->replace_node(out_ctl, ctl); } else { // replace fallthrough projections of the ArrayCopyNode by the // new memory, control and the input IO. CallProjections callprojs; ! extract_projections(&callprojs, true, false); + if (callprojs.fallthrough_ioproj != NULL) { igvn->replace_node(callprojs.fallthrough_ioproj, in(TypeFunc::I_O)); + } + if (callprojs.fallthrough_memproj != NULL) { igvn->replace_node(callprojs.fallthrough_memproj, mem); + } + if (callprojs.fallthrough_catchproj != NULL) { igvn->replace_node(callprojs.fallthrough_catchproj, ctl); + } // The ArrayCopyNode is not disconnected. It still has the // projections for the exception case. Replace current // ArrayCopyNode with a dummy new one with a top() control so // that this part of the graph stays consistent but is

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