27
27
28
28
#include " gc/shared/verifyOption.hpp"
29
29
#include " oops/array.hpp"
30
+ #include " oops/oopHandle.hpp"
30
31
#include " runtime/handles.hpp"
31
32
#include " utilities/growableArray.hpp"
32
33
@@ -106,31 +107,27 @@ class Universe: AllStatic {
106
107
static oop _short_mirror;
107
108
static oop _void_mirror;
108
109
109
- static oop _main_thread_group; // Reference to the main thread group object
110
- static oop _system_thread_group; // Reference to the system thread group object
110
+ static OopHandle _main_thread_group; // Reference to the main thread group object
111
+ static OopHandle _system_thread_group; // Reference to the system thread group object
112
+
113
+ static OopHandle _the_empty_class_array; // Canonicalized obj array of type java.lang.Class
114
+ static OopHandle _the_null_string; // A cache of "null" as a Java string
115
+ static OopHandle _the_min_jint_string; // A cache of "-2147483648" as a Java string
116
+
117
+ static OopHandle _the_null_sentinel; // A unique object pointer unused except as a sentinel for null.
118
+
119
+ // preallocated error objects (no backtrace)
120
+ static OopHandle _out_of_memory_errors;
121
+
122
+ // preallocated cause message for delayed StackOverflowError
123
+ static OopHandle _delayed_stack_overflow_error_message;
111
124
112
- static objArrayOop _the_empty_class_klass_array; // Canonicalized obj array of type java.lang.Class
113
- static oop _the_null_sentinel; // A unique object pointer unused except as a sentinel for null.
114
- static oop _the_null_string; // A cache of "null" as a Java string
115
- static oop _the_min_jint_string; // A cache of "-2147483648" as a Java string
116
125
static LatestMethodCache* _finalizer_register_cache; // static method for registering finalizable objects
117
126
static LatestMethodCache* _loader_addClass_cache; // method for registering loaded classes in class loader vector
118
127
static LatestMethodCache* _throw_illegal_access_error_cache; // Unsafe.throwIllegalAccessError() method
119
128
static LatestMethodCache* _throw_no_such_method_error_cache; // Unsafe.throwNoSuchMethodError() method
120
129
static LatestMethodCache* _do_stack_walk_cache; // method for stack walker callback
121
130
122
- // preallocated error objects (no backtrace)
123
- static oop _out_of_memory_error_java_heap;
124
- static oop _out_of_memory_error_metaspace;
125
- static oop _out_of_memory_error_class_metaspace;
126
- static oop _out_of_memory_error_array_size;
127
- static oop _out_of_memory_error_gc_overhead_limit;
128
- static oop _out_of_memory_error_realloc_objects;
129
- static oop _out_of_memory_error_retry;
130
-
131
- // preallocated cause message for delayed StackOverflowError
132
- static oop _delayed_stack_overflow_error_message;
133
-
134
131
static Array<int >* _the_empty_int_array; // Canonicalized int array
135
132
static Array<u2>* _the_empty_short_array; // Canonicalized short array
136
133
static Array<Klass*>* _the_empty_klass_array; // Canonicalized klass array
@@ -140,17 +137,14 @@ class Universe: AllStatic {
140
137
static Array<Klass*>* _the_array_interfaces_array;
141
138
142
139
// array of preallocated error objects with backtrace
143
- static objArrayOop _preallocated_out_of_memory_error_array;
140
+ static OopHandle _preallocated_out_of_memory_error_array;
144
141
145
142
// number of preallocated error objects available for use
146
143
static volatile jint _preallocated_out_of_memory_error_avail_count;
147
144
148
- static oop _null_ptr_exception_instance; // preallocated exception object
149
- static oop _arithmetic_exception_instance; // preallocated exception object
150
- static oop _virtual_machine_error_instance; // preallocated exception object
151
- // The object used as an exception dummy when exceptions are thrown for
152
- // the vm thread.
153
- static oop _vm_exception;
145
+ static OopHandle _null_ptr_exception_instance; // preallocated exception object
146
+ static OopHandle _arithmetic_exception_instance; // preallocated exception object
147
+ static OopHandle _virtual_machine_error_instance; // preallocated exception object
154
148
155
149
// References waiting to be transferred to the ReferenceHandler
156
150
static oop _reference_pending_list;
@@ -161,8 +155,7 @@ class Universe: AllStatic {
161
155
static intptr_t _non_oop_bits;
162
156
163
157
// array of dummy objects used with +FullGCAlot
164
- debug_only (static objArrayOop _fullgc_alot_dummy_array;)
165
- // index of next entry to clear
158
+ debug_only (static OopHandle _fullgc_alot_dummy_array;)
166
159
debug_only (static int _fullgc_alot_dummy_next;)
167
160
168
161
// Compiler/dispatch support
@@ -174,8 +167,9 @@ class Universe: AllStatic {
174
167
static bool _fully_initialized; // true after universe_init and initialize_vtables called
175
168
176
169
// the array of preallocated errors with backtraces
177
- static objArrayOop preallocated_out_of_memory_errors () { return _preallocated_out_of_memory_error_array; }
170
+ static objArrayOop preallocated_out_of_memory_errors ();
178
171
172
+ static objArrayOop out_of_memory_errors ();
179
173
// generate an out of memory error; if possible using an error with preallocated backtrace;
180
174
// otherwise return the given default error.
181
175
static oop gen_out_of_memory_error (oop default_err);
@@ -265,17 +259,23 @@ class Universe: AllStatic {
265
259
assert ((uint )t < T_VOID+1 , " range check" );
266
260
return check_mirror (_mirrors[t]);
267
261
}
268
- static oop main_thread_group () { return _main_thread_group; }
269
- static void set_main_thread_group (oop group) { _main_thread_group = group;}
262
+ static oop main_thread_group ();
263
+ static void set_main_thread_group (oop group);
270
264
271
- static oop system_thread_group () { return _system_thread_group; }
272
- static void set_system_thread_group (oop group) { _system_thread_group = group;}
265
+ static oop system_thread_group ();
266
+ static void set_system_thread_group (oop group);
273
267
274
- static objArrayOop the_empty_class_klass_array () { return _the_empty_class_klass_array; }
275
- static Array<Klass*>* the_array_interfaces_array () { return _the_array_interfaces_array; }
276
- static oop the_null_string () { return _the_null_string; }
277
- static oop the_min_jint_string () { return _the_min_jint_string; }
268
+ static objArrayOop the_empty_class_array ();
278
269
270
+ static oop the_null_string ();
271
+ static oop the_min_jint_string ();
272
+
273
+ static oop null_ptr_exception_instance ();
274
+ static oop arithmetic_exception_instance ();
275
+ static oop virtual_machine_error_instance ();
276
+ static oop vm_exception () { return virtual_machine_error_instance (); }
277
+
278
+ static Array<Klass*>* the_array_interfaces_array () { return _the_array_interfaces_array; }
279
279
static Method* finalizer_register_method () { return _finalizer_register_cache->get_method (); }
280
280
static Method* loader_addClass_method () { return _loader_addClass_cache->get_method (); }
281
281
@@ -284,16 +284,13 @@ class Universe: AllStatic {
284
284
285
285
static Method* do_stack_walk_method () { return _do_stack_walk_cache->get_method (); }
286
286
287
- static oop the_null_sentinel () { return _the_null_sentinel; }
287
+ static oop the_null_sentinel ();
288
288
static address the_null_sentinel_addr () { return (address) &_the_null_sentinel; }
289
289
290
290
// Function to initialize these
291
291
static void initialize_known_methods (TRAPS);
292
292
293
- static oop null_ptr_exception_instance () { return _null_ptr_exception_instance; }
294
- static oop arithmetic_exception_instance () { return _arithmetic_exception_instance; }
295
- static oop virtual_machine_error_instance () { return _virtual_machine_error_instance; }
296
- static oop vm_exception () { return _vm_exception; }
293
+ static void create_preallocated_out_of_memory_errors (TRAPS);
297
294
298
295
// Reference pending list manipulation. Access is protected by
299
296
// Heap_lock. The getter, setter and predicate require the caller
@@ -302,7 +299,7 @@ class Universe: AllStatic {
302
299
// Heap_lock, so requires the lock is locked, but not necessarily by
303
300
// the current thread.
304
301
static oop reference_pending_list ();
305
- static void set_reference_pending_list (oop list );
302
+ static void clear_reference_pending_list ( );
306
303
static bool has_reference_pending_list ();
307
304
static oop swap_reference_pending_list (oop list);
308
305
@@ -315,15 +312,16 @@ class Universe: AllStatic {
315
312
// OutOfMemoryError support. Returns an error with the required message. The returned error
316
313
// may or may not have a backtrace. If error has a backtrace then the stack trace is already
317
314
// filled in.
318
- static oop out_of_memory_error_java_heap () { return gen_out_of_memory_error (_out_of_memory_error_java_heap); }
319
- static oop out_of_memory_error_metaspace () { return gen_out_of_memory_error (_out_of_memory_error_metaspace); }
320
- static oop out_of_memory_error_class_metaspace () { return gen_out_of_memory_error (_out_of_memory_error_class_metaspace); }
321
- static oop out_of_memory_error_array_size () { return gen_out_of_memory_error (_out_of_memory_error_array_size); }
322
- static oop out_of_memory_error_gc_overhead_limit () { return gen_out_of_memory_error (_out_of_memory_error_gc_overhead_limit); }
323
- static oop out_of_memory_error_realloc_objects () { return gen_out_of_memory_error (_out_of_memory_error_realloc_objects); }
315
+ static oop out_of_memory_error_java_heap ();
316
+ static oop out_of_memory_error_metaspace ();
317
+ static oop out_of_memory_error_class_metaspace ();
318
+ static oop out_of_memory_error_array_size ();
319
+ static oop out_of_memory_error_gc_overhead_limit ();
320
+ static oop out_of_memory_error_realloc_objects ();
321
+
324
322
// Throw default _out_of_memory_error_retry object as it will never propagate out of the VM
325
- static oop out_of_memory_error_retry () { return _out_of_memory_error_retry; }
326
- static oop delayed_stack_overflow_error_message () { return _delayed_stack_overflow_error_message; }
323
+ static oop out_of_memory_error_retry ();
324
+ static oop delayed_stack_overflow_error_message ();
327
325
328
326
// The particular choice of collected heap.
329
327
static CollectedHeap* heap () { return _collectedHeap; }
0 commit comments