Skip to content

Commit fcb4a8b

Browse files
committedApr 23, 2024
8330578: The VM creates instance of abstract class VirtualMachineError
Reviewed-by: iklam, dlong, jwaters, dholmes
1 parent 3bd6982 commit fcb4a8b

File tree

7 files changed

+17
-16
lines changed

7 files changed

+17
-16
lines changed
 

‎src/hotspot/share/cds/heapShared.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1395,7 +1395,7 @@ void HeapShared::check_default_subgraph_classes() {
13951395
name == vmSymbols::java_lang_String() ||
13961396
name == vmSymbols::java_lang_ArithmeticException() ||
13971397
name == vmSymbols::java_lang_NullPointerException() ||
1398-
name == vmSymbols::java_lang_VirtualMachineError() ||
1398+
name == vmSymbols::java_lang_InternalError() ||
13991399
name == vmSymbols::object_array_signature() ||
14001400
name == vmSymbols::byte_array_signature() ||
14011401
name == vmSymbols::char_array_signature(),

‎src/hotspot/share/classfile/systemDictionary.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -2009,9 +2009,9 @@ Method* SystemDictionary::find_method_handle_intrinsic(vmIntrinsicID iid,
20092009
}
20102010
}
20112011

2012-
// Throw VirtualMachineError or the pending exception in the JavaThread
2012+
// Throw OOM or the pending exception in the JavaThread
20132013
if (throw_error && !HAS_PENDING_EXCEPTION) {
2014-
THROW_MSG_NULL(vmSymbols::java_lang_VirtualMachineError(),
2014+
THROW_MSG_NULL(vmSymbols::java_lang_OutOfMemoryError(),
20152015
"Out of space in CodeCache for method handle intrinsic");
20162016
}
20172017
return nullptr;

‎src/hotspot/share/classfile/verifier.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1998, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1998, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -255,7 +255,7 @@ bool Verifier::verify(InstanceKlass* klass, bool should_verify_class, TRAPS) {
255255
// or one of it's superclasses, we're in trouble and are going
256256
// to infinitely recurse when we try to initialize the exception.
257257
// So bail out here by throwing the preallocated VM error.
258-
THROW_OOP_(Universe::virtual_machine_error_instance(), false);
258+
THROW_OOP_(Universe::internal_error_instance(), false);
259259
}
260260
kls = kls->super();
261261
}

‎src/hotspot/share/memory/universe.cpp

+8-8
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ class BuiltinException {
229229

230230
static BuiltinException _null_ptr_exception;
231231
static BuiltinException _arithmetic_exception;
232-
static BuiltinException _virtual_machine_error;
232+
static BuiltinException _internal_error;
233233

234234
objArrayOop Universe::the_empty_class_array () {
235235
return (objArrayOop)_the_empty_class_array.resolve();
@@ -246,7 +246,7 @@ oop Universe::the_min_jint_string() { return _the_min_jint_string.
246246

247247
oop Universe::null_ptr_exception_instance() { return _null_ptr_exception.instance(); }
248248
oop Universe::arithmetic_exception_instance() { return _arithmetic_exception.instance(); }
249-
oop Universe::virtual_machine_error_instance() { return _virtual_machine_error.instance(); }
249+
oop Universe::internal_error_instance() { return _internal_error.instance(); }
250250

251251
oop Universe::the_null_sentinel() { return _the_null_sentinel.resolve(); }
252252

@@ -302,7 +302,7 @@ void Universe::set_archived_basic_type_mirror_index(BasicType t, int index) {
302302
void Universe::archive_exception_instances() {
303303
_null_ptr_exception.store_in_cds();
304304
_arithmetic_exception.store_in_cds();
305-
_virtual_machine_error.store_in_cds();
305+
_internal_error.store_in_cds();
306306
}
307307

308308
void Universe::load_archived_object_instances() {
@@ -318,7 +318,7 @@ void Universe::load_archived_object_instances() {
318318

319319
_null_ptr_exception.load_from_cds();
320320
_arithmetic_exception.load_from_cds();
321-
_virtual_machine_error.load_from_cds();
321+
_internal_error.load_from_cds();
322322
}
323323
}
324324
#endif
@@ -334,7 +334,7 @@ void Universe::serialize(SerializeClosure* f) {
334334
}
335335
_null_ptr_exception.serialize(f);
336336
_arithmetic_exception.serialize(f);
337-
_virtual_machine_error.serialize(f);
337+
_internal_error.serialize(f);
338338
#endif
339339

340340
f->do_ptr(&_fillerArrayKlass);
@@ -1092,13 +1092,13 @@ bool universe_post_init() {
10921092
_arithmetic_exception.init_if_empty(vmSymbols::java_lang_ArithmeticException(), CHECK_false);
10931093

10941094
// Virtual Machine Error for when we get into a situation we can't resolve
1095-
Klass* k = vmClasses::VirtualMachineError_klass();
1095+
Klass* k = vmClasses::InternalError_klass();
10961096
bool linked = InstanceKlass::cast(k)->link_class_or_fail(CHECK_false);
10971097
if (!linked) {
1098-
tty->print_cr("Unable to link/verify VirtualMachineError class");
1098+
tty->print_cr("Unable to link/verify InternalError class");
10991099
return false; // initialization failed
11001100
}
1101-
_virtual_machine_error.init_if_empty(vmSymbols::java_lang_VirtualMachineError(), CHECK_false);
1101+
_internal_error.init_if_empty(vmSymbols::java_lang_InternalError(), CHECK_false);
11021102

11031103
Handle msg = java_lang_String::create_from_str("/ by zero", CHECK_false);
11041104
java_lang_Throwable::set_message(Universe::arithmetic_exception_instance(), msg());

‎src/hotspot/share/memory/universe.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,8 @@ class Universe: AllStatic {
229229

230230
static oop null_ptr_exception_instance();
231231
static oop arithmetic_exception_instance();
232-
static oop virtual_machine_error_instance();
233-
static oop vm_exception() { return virtual_machine_error_instance(); }
232+
static oop internal_error_instance();
233+
static oop vm_exception() { return internal_error_instance(); }
234234

235235
static Array<Klass*>* the_array_interfaces_array() { return _the_array_interfaces_array; }
236236
static uintx the_array_interfaces_bitmap() { return _the_array_interfaces_bitmap; }

‎src/hotspot/share/oops/instanceKlass.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1509,6 +1509,7 @@ instanceOop InstanceKlass::register_finalizer(instanceOop i, TRAPS) {
15091509
}
15101510

15111511
instanceOop InstanceKlass::allocate_instance(TRAPS) {
1512+
assert(!is_abstract() && !is_interface(), "Should not create this object");
15121513
size_t size = size_helper(); // Query before forming handle.
15131514
return (instanceOop)Universe::heap()->obj_allocate(this, size, CHECK_NULL);
15141515
}

‎src/hotspot/share/oops/method.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1276,7 +1276,7 @@ address Method::make_adapters(const methodHandle& mh, TRAPS) {
12761276
// Java exception object.
12771277
vm_exit_during_initialization("Out of space in CodeCache for adapters");
12781278
} else {
1279-
THROW_MSG_NULL(vmSymbols::java_lang_VirtualMachineError(), "Out of space in CodeCache for adapters");
1279+
THROW_MSG_NULL(vmSymbols::java_lang_OutOfMemoryError(), "Out of space in CodeCache for adapters");
12801280
}
12811281
}
12821282

0 commit comments

Comments
 (0)
Please sign in to comment.