src/share/vm/opto/callnode.cpp

Print this page
rev 3898 : 8005031: Some cleanup in c2 to prepare for incremental inlining support
Summary: collection of small changes to prepare for incremental inlining.
Reviewed-by:

*** 749,759 **** projs->catchall_ioproj = pn; else projs->fallthrough_ioproj = pn; for (DUIterator j = pn->outs(); pn->has_out(j); j++) { Node* e = pn->out(j); ! if (e->Opcode() == Op_CreateEx && e->in(0)->is_CatchProj()) { assert(projs->exobj == NULL, "only one"); projs->exobj = e; } } break; --- 749,759 ---- projs->catchall_ioproj = pn; else projs->fallthrough_ioproj = pn; for (DUIterator j = pn->outs(); pn->has_out(j); j++) { Node* e = pn->out(j); ! if (e->Opcode() == Op_CreateEx && e->in(0)->is_CatchProj() && e->outcnt() > 0) { assert(projs->exobj == NULL, "only one"); projs->exobj = e; } } break;
*** 773,785 **** // The resproj may not exist because the result couuld be ignored // and the exception object may not exist if an exception handler // swallows the exception but all the other must exist and be found. assert(projs->fallthrough_proj != NULL, "must be found"); - assert(projs->fallthrough_catchproj != NULL, "must be found"); - assert(projs->fallthrough_memproj != NULL, "must be found"); - assert(projs->fallthrough_ioproj != NULL, "must be found"); assert(projs->catchall_catchproj != NULL, "must be found"); if (separate_io_proj) { assert(projs->catchall_memproj != NULL, "must be found"); assert(projs->catchall_ioproj != NULL, "must be found"); } --- 773,782 ----