# HG changeset patch # User never # Date 1502917020 0 # Node ID 5778a97eb82fecadce669907f04796bcc92e3289 # Parent 780e16a64a50e7266d2f1f344768a61c48ed98f9# Parent 0a12cf4ae24ee69508224336427ecb93d111df48 Merge diff -r 780e16a64a50 -r 5778a97eb82f hotspot/src/share/vm/opto/doCall.cpp --- a/hotspot/src/share/vm/opto/doCall.cpp Wed Aug 16 21:47:17 2017 +0200 +++ b/hotspot/src/share/vm/opto/doCall.cpp Wed Aug 16 20:57:00 2017 +0000 @@ -719,6 +719,7 @@ GrowableArray* extypes = new (C->node_arena()) GrowableArray(C->node_arena(), 8, 0, NULL); GrowableArray* saw_unloaded = new (C->node_arena()) GrowableArray(C->node_arena(), 8, 0, 0); + bool default_handler = false; for (; !handlers.is_done(); handlers.next()) { ciExceptionHandler* h = handlers.handler(); int h_bci = h->handler_bci(); @@ -741,6 +742,14 @@ // Note: It's OK if the BCIs repeat themselves. bcis->append(h_bci); extypes->append(h_extype); + if (h_bci == -1) { + default_handler = true; + } + } + + if (!default_handler) { + bcis->append(-1); + extypes->append(TypeOopPtr::make_from_klass(env()->Throwable_klass())->is_instptr()); } int len = bcis->length(); diff -r 780e16a64a50 -r 5778a97eb82f hotspot/src/share/vm/opto/output.cpp --- a/hotspot/src/share/vm/opto/output.cpp Wed Aug 16 21:47:17 2017 +0200 +++ b/hotspot/src/share/vm/opto/output.cpp Wed Aug 16 20:57:00 2017 +0000 @@ -1636,6 +1636,7 @@ } // Set the offset of the return from the call + assert(handler_bcis.find(-1) != -1, "must have default handler"); _handler_table.add_subtable(call_return, &handler_bcis, NULL, &handler_pcos); continue; }