@@ -149,10 +149,6 @@ volatile jint Universe::_preallocated_out_of_memory_error_avail_count = 0;
149
149
OopHandle Universe::_msg_metaspace;
150
150
OopHandle Universe::_msg_class_metaspace;
151
151
152
- OopHandle Universe::_null_ptr_exception_instance;
153
- OopHandle Universe::_arithmetic_exception_instance;
154
- OopHandle Universe::_virtual_machine_error_instance;
155
-
156
152
OopHandle Universe::_reference_pending_list;
157
153
158
154
Array<Klass*>* Universe::_the_array_interfaces_array = nullptr ;
@@ -186,6 +182,52 @@ OopStorage* Universe::_vm_global = nullptr;
186
182
187
183
CollectedHeap* Universe::_collectedHeap = nullptr ;
188
184
185
+ // These are the exceptions that are always created and are guatanteed to exist.
186
+ // If possible, they can be stored as CDS archived objects to speed up AOT code.
187
+ class BuiltinException {
188
+ OopHandle _instance;
189
+ CDS_JAVA_HEAP_ONLY (int _archived_root_index;)
190
+
191
+ public:
192
+ BuiltinException () : _instance() {
193
+ CDS_JAVA_HEAP_ONLY (_archived_root_index = 0 );
194
+ }
195
+
196
+ void init_if_empty (Symbol* symbol, TRAPS) {
197
+ if (_instance.is_empty ()) {
198
+ Klass* k = SystemDictionary::resolve_or_fail (symbol, true , CHECK);
199
+ oop obj = InstanceKlass::cast (k)->allocate_instance (CHECK);
200
+ _instance = OopHandle (Universe::vm_global (), obj);
201
+ }
202
+ }
203
+
204
+ oop instance () {
205
+ return _instance.resolve ();
206
+ }
207
+
208
+ #if INCLUDE_CDS_JAVA_HEAP
209
+ void store_in_cds () {
210
+ _archived_root_index = HeapShared::archive_exception_instance (instance ());
211
+ }
212
+
213
+ void load_from_cds () {
214
+ if (_archived_root_index >= 0 ) {
215
+ oop obj = HeapShared::get_root (_archived_root_index);
216
+ assert (obj != nullptr , " must be" );
217
+ _instance = OopHandle (Universe::vm_global (), obj);
218
+ }
219
+ }
220
+
221
+ void serialize (SerializeClosure *f) {
222
+ f->do_int (&_archived_root_index);
223
+ }
224
+ #endif
225
+ };
226
+
227
+ static BuiltinException _null_ptr_exception;
228
+ static BuiltinException _arithmetic_exception;
229
+ static BuiltinException _virtual_machine_error;
230
+
189
231
objArrayOop Universe::the_empty_class_array () {
190
232
return (objArrayOop)_the_empty_class_array.resolve ();
191
233
}
@@ -199,9 +241,9 @@ void Universe::set_system_thread_group(oop group) { _system_thread_group = OopHa
199
241
oop Universe::the_null_string () { return _the_null_string.resolve (); }
200
242
oop Universe::the_min_jint_string () { return _the_min_jint_string.resolve (); }
201
243
202
- oop Universe::null_ptr_exception_instance () { return _null_ptr_exception_instance. resolve (); }
203
- oop Universe::arithmetic_exception_instance () { return _arithmetic_exception_instance. resolve (); }
204
- oop Universe::virtual_machine_error_instance () { return _virtual_machine_error_instance. resolve (); }
244
+ oop Universe::null_ptr_exception_instance () { return _null_ptr_exception. instance (); }
245
+ oop Universe::arithmetic_exception_instance () { return _arithmetic_exception. instance (); }
246
+ oop Universe::virtual_machine_error_instance () { return _virtual_machine_error. instance (); }
205
247
206
248
oop Universe::the_null_sentinel () { return _the_null_sentinel.resolve (); }
207
249
@@ -254,7 +296,13 @@ void Universe::set_archived_basic_type_mirror_index(BasicType t, int index) {
254
296
_archived_basic_type_mirror_indices[t] = index ;
255
297
}
256
298
257
- void Universe::update_archived_basic_type_mirrors () {
299
+ void Universe::archive_exception_instances () {
300
+ _null_ptr_exception.store_in_cds ();
301
+ _arithmetic_exception.store_in_cds ();
302
+ _virtual_machine_error.store_in_cds ();
303
+ }
304
+
305
+ void Universe::load_archived_object_instances () {
258
306
if (ArchiveHeapLoader::is_in_use ()) {
259
307
for (int i = T_BOOLEAN; i < T_VOID+1 ; i++) {
260
308
int index = _archived_basic_type_mirror_indices[i];
@@ -264,6 +312,10 @@ void Universe::update_archived_basic_type_mirrors() {
264
312
_basic_type_mirrors[i] = OopHandle (vm_global (), mirror_oop);
265
313
}
266
314
}
315
+
316
+ _null_ptr_exception.load_from_cds ();
317
+ _arithmetic_exception.load_from_cds ();
318
+ _virtual_machine_error.load_from_cds ();
267
319
}
268
320
}
269
321
#endif
@@ -275,8 +327,11 @@ void Universe::serialize(SerializeClosure* f) {
275
327
f->do_int (&_archived_basic_type_mirror_indices[i]);
276
328
// if f->reading(): We can't call HeapShared::get_root() yet, as the heap
277
329
// contents may need to be relocated. _basic_type_mirrors[i] will be
278
- // updated later in Universe::update_archived_basic_type_mirrors ().
330
+ // updated later in Universe::load_archived_object_instances ().
279
331
}
332
+ _null_ptr_exception.serialize (f);
333
+ _arithmetic_exception.serialize (f);
334
+ _virtual_machine_error.serialize (f);
280
335
#endif
281
336
282
337
f->do_ptr (&_fillerArrayKlassObj);
@@ -1021,27 +1076,19 @@ bool universe_post_init() {
1021
1076
Universe::_delayed_stack_overflow_error_message = OopHandle (Universe::vm_global (), instance);
1022
1077
}
1023
1078
1024
- // Setup preallocated NullPointerException
1025
- // (this is currently used for a cheap & dirty solution in compiler exception handling)
1026
- Klass* k = SystemDictionary::resolve_or_fail (vmSymbols::java_lang_NullPointerException (), true , CHECK_false);
1027
- instance = InstanceKlass::cast (k)->allocate_instance (CHECK_false);
1028
- Universe::_null_ptr_exception_instance = OopHandle (Universe::vm_global (), instance);
1029
-
1030
- // Setup preallocated ArithmeticException
1031
- // (this is currently used for a cheap & dirty solution in compiler exception handling)
1032
- k = SystemDictionary::resolve_or_fail (vmSymbols::java_lang_ArithmeticException (), true , CHECK_false);
1033
- instance = InstanceKlass::cast (k)->allocate_instance (CHECK_false);
1034
- Universe::_arithmetic_exception_instance = OopHandle (Universe::vm_global (), instance);
1079
+ // Setup preallocated NullPointerException/ArithmeticException
1080
+ // (used for a cheap & dirty solution in compiler exception handling)
1081
+ _null_ptr_exception.init_if_empty (vmSymbols::java_lang_NullPointerException (), CHECK_false);
1082
+ _arithmetic_exception.init_if_empty (vmSymbols::java_lang_ArithmeticException (), CHECK_false);
1035
1083
1036
1084
// Virtual Machine Error for when we get into a situation we can't resolve
1037
- k = vmClasses::VirtualMachineError_klass ();
1085
+ Klass* k = vmClasses::VirtualMachineError_klass ();
1038
1086
bool linked = InstanceKlass::cast (k)->link_class_or_fail (CHECK_false);
1039
1087
if (!linked) {
1040
1088
tty->print_cr (" Unable to link/verify VirtualMachineError class" );
1041
1089
return false ; // initialization failed
1042
1090
}
1043
- instance = InstanceKlass::cast (k)->allocate_instance (CHECK_false);
1044
- Universe::_virtual_machine_error_instance = OopHandle (Universe::vm_global (), instance);
1091
+ _virtual_machine_error.init_if_empty (vmSymbols::java_lang_VirtualMachineError (), CHECK_false);
1045
1092
1046
1093
Handle msg = java_lang_String::create_from_str (" / by zero" , CHECK_false);
1047
1094
java_lang_Throwable::set_message (Universe::arithmetic_exception_instance (), msg ());
0 commit comments