@@ -229,7 +229,7 @@ class BuiltinException {
229
229
230
230
static BuiltinException _null_ptr_exception;
231
231
static BuiltinException _arithmetic_exception;
232
- static BuiltinException _virtual_machine_error ;
232
+ static BuiltinException _internal_error ;
233
233
234
234
objArrayOop Universe::the_empty_class_array () {
235
235
return (objArrayOop)_the_empty_class_array.resolve ();
@@ -246,7 +246,7 @@ oop Universe::the_min_jint_string() { return _the_min_jint_string.
246
246
247
247
oop Universe::null_ptr_exception_instance () { return _null_ptr_exception.instance (); }
248
248
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 (); }
250
250
251
251
oop Universe::the_null_sentinel () { return _the_null_sentinel.resolve (); }
252
252
@@ -302,7 +302,7 @@ void Universe::set_archived_basic_type_mirror_index(BasicType t, int index) {
302
302
void Universe::archive_exception_instances () {
303
303
_null_ptr_exception.store_in_cds ();
304
304
_arithmetic_exception.store_in_cds ();
305
- _virtual_machine_error .store_in_cds ();
305
+ _internal_error .store_in_cds ();
306
306
}
307
307
308
308
void Universe::load_archived_object_instances () {
@@ -318,7 +318,7 @@ void Universe::load_archived_object_instances() {
318
318
319
319
_null_ptr_exception.load_from_cds ();
320
320
_arithmetic_exception.load_from_cds ();
321
- _virtual_machine_error .load_from_cds ();
321
+ _internal_error .load_from_cds ();
322
322
}
323
323
}
324
324
#endif
@@ -334,7 +334,7 @@ void Universe::serialize(SerializeClosure* f) {
334
334
}
335
335
_null_ptr_exception.serialize (f);
336
336
_arithmetic_exception.serialize (f);
337
- _virtual_machine_error .serialize (f);
337
+ _internal_error .serialize (f);
338
338
#endif
339
339
340
340
f->do_ptr (&_fillerArrayKlass);
@@ -1092,13 +1092,13 @@ bool universe_post_init() {
1092
1092
_arithmetic_exception.init_if_empty (vmSymbols::java_lang_ArithmeticException (), CHECK_false);
1093
1093
1094
1094
// 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 ();
1096
1096
bool linked = InstanceKlass::cast (k)->link_class_or_fail (CHECK_false);
1097
1097
if (!linked) {
1098
- tty->print_cr (" Unable to link/verify VirtualMachineError class" );
1098
+ tty->print_cr (" Unable to link/verify InternalError class" );
1099
1099
return false ; // initialization failed
1100
1100
}
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);
1102
1102
1103
1103
Handle msg = java_lang_String::create_from_str (" / by zero" , CHECK_false);
1104
1104
java_lang_Throwable::set_message (Universe::arithmetic_exception_instance (), msg ());
0 commit comments