1
1
/*
2
- * Copyright (c) 2015, 2020 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2015, 2021 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -460,19 +460,34 @@ bool ClassListParser::is_matching_cp_entry(constantPoolHandle &pool, int cp_inde
460
460
}
461
461
return true ;
462
462
}
463
-
464
463
void ClassListParser::resolve_indy (Symbol* class_name_symbol, TRAPS) {
464
+ ClassListParser::resolve_indy_impl (class_name_symbol, THREAD);
465
+ if (HAS_PENDING_EXCEPTION) {
466
+ ResourceMark rm (THREAD);
467
+ char * ex_msg = (char *)" " ;
468
+ oop message = java_lang_Throwable::message (PENDING_EXCEPTION);
469
+ if (message != NULL ) {
470
+ ex_msg = java_lang_String::as_utf8_string (message);
471
+ }
472
+ log_warning (cds)(" resolve_indy for class %s has encountered exception: %s %s" ,
473
+ class_name_symbol->as_C_string (),
474
+ PENDING_EXCEPTION->klass ()->external_name (),
475
+ ex_msg);
476
+ CLEAR_PENDING_EXCEPTION;
477
+ }
478
+ }
479
+
480
+ void ClassListParser::resolve_indy_impl (Symbol* class_name_symbol, TRAPS) {
465
481
Handle class_loader (THREAD, SystemDictionary::java_system_loader ());
466
482
Handle protection_domain;
467
- Klass* klass = SystemDictionary::resolve_or_fail (class_name_symbol, class_loader, protection_domain, true , THREAD ); // FIXME should really be just a lookup
483
+ Klass* klass = SystemDictionary::resolve_or_fail (class_name_symbol, class_loader, protection_domain, true , CHECK ); // FIXME should really be just a lookup
468
484
if (klass != NULL && klass->is_instance_klass ()) {
469
485
InstanceKlass* ik = InstanceKlass::cast (klass);
470
486
if (SystemDictionaryShared::has_class_failed_verification (ik)) {
471
487
// don't attempt to resolve indy on classes that has previously failed verification
472
488
return ;
473
489
}
474
- MetaspaceShared::try_link_class (ik, THREAD);
475
- assert (!HAS_PENDING_EXCEPTION, " unexpected exception" );
490
+ MetaspaceShared::try_link_class (ik, CHECK);
476
491
477
492
ConstantPool* cp = ik->constants ();
478
493
ConstantPoolCache* cpcache = cp->cache ();
@@ -484,36 +499,23 @@ void ClassListParser::resolve_indy(Symbol* class_name_symbol, TRAPS) {
484
499
constantPoolHandle pool (THREAD, cp);
485
500
if (pool->tag_at (pool_index).is_invoke_dynamic ()) {
486
501
BootstrapInfo bootstrap_specifier (pool, pool_index, indy_index);
487
- Handle bsm = bootstrap_specifier.resolve_bsm (THREAD );
502
+ Handle bsm = bootstrap_specifier.resolve_bsm (CHECK );
488
503
if (!SystemDictionaryShared::is_supported_invokedynamic (&bootstrap_specifier)) {
489
504
log_debug (cds, lambda)(" is_supported_invokedynamic check failed for cp_index %d" , pool_index);
490
505
continue ;
491
506
}
492
- if (is_matching_cp_entry (pool, pool_index, THREAD)) {
507
+ bool matched = is_matching_cp_entry (pool, pool_index, CHECK);
508
+ if (matched) {
493
509
found = true ;
494
510
CallInfo info;
495
- bool is_done = bootstrap_specifier.resolve_previously_linked_invokedynamic (info, THREAD );
511
+ bool is_done = bootstrap_specifier.resolve_previously_linked_invokedynamic (info, CHECK );
496
512
if (!is_done) {
497
513
// resolve it
498
514
Handle recv;
499
- LinkResolver::resolve_invoke (info, recv, pool, indy_index, Bytecodes::_invokedynamic, THREAD );
515
+ LinkResolver::resolve_invoke (info, recv, pool, indy_index, Bytecodes::_invokedynamic, CHECK );
500
516
break ;
501
517
}
502
518
cpce->set_dynamic_call (pool, info);
503
- if (HAS_PENDING_EXCEPTION) {
504
- ResourceMark rm (THREAD);
505
- tty->print (" resolve_indy for class %s has" , class_name_symbol->as_C_string ());
506
- oop message = java_lang_Throwable::message (PENDING_EXCEPTION);
507
- if (message != NULL ) {
508
- char * ex_msg = java_lang_String::as_utf8_string (message);
509
- tty->print_cr (" exception pending '%s %s'" ,
510
- PENDING_EXCEPTION->klass ()->external_name (), ex_msg);
511
- } else {
512
- tty->print_cr (" exception pending %s " ,
513
- PENDING_EXCEPTION->klass ()->external_name ());
514
- }
515
- exit (1 );
516
- }
517
519
}
518
520
}
519
521
}
0 commit comments