comparison src/share/vm/memory/universe.hpp @ 11065:cedf20e2a655

Merge
author coleenp
date Tue, 02 Jul 2013 16:54:24 +0200
parents de2d15ce3d4a 3a0774193f71
children 85147f28faba
comparison
equal deleted inserted replaced
11064:de2d15ce3d4a 11065:cedf20e2a655
174 static objArrayOop _the_empty_class_klass_array; // Canonicalized obj array of type java.lang.Class 174 static objArrayOop _the_empty_class_klass_array; // Canonicalized obj array of type java.lang.Class
175 static oop _the_null_string; // A cache of "null" as a Java string 175 static oop _the_null_string; // A cache of "null" as a Java string
176 static oop _the_min_jint_string; // A cache of "-2147483648" as a Java string 176 static oop _the_min_jint_string; // A cache of "-2147483648" as a Java string
177 static LatestMethodOopCache* _finalizer_register_cache; // static method for registering finalizable objects 177 static LatestMethodOopCache* _finalizer_register_cache; // static method for registering finalizable objects
178 static LatestMethodOopCache* _loader_addClass_cache; // method for registering loaded classes in class loader vector 178 static LatestMethodOopCache* _loader_addClass_cache; // method for registering loaded classes in class loader vector
179 static LatestMethodOopCache* _pd_implies_cache; // method for checking protection domain attributes
179 static ActiveMethodOopsCache* _reflect_invoke_cache; // method for security checks 180 static ActiveMethodOopsCache* _reflect_invoke_cache; // method for security checks
180 // preallocated error objects (no backtrace) 181 // preallocated error objects (no backtrace)
181 static oop _out_of_memory_error_java_heap; 182 static oop _out_of_memory_error_java_heap;
182 static oop _out_of_memory_error_metaspace; 183 static oop _out_of_memory_error_metaspace;
183 static oop _out_of_memory_error_class_metaspace; 184 static oop _out_of_memory_error_class_metaspace;
333 static Array<Klass*>* the_array_interfaces_array() { return _the_array_interfaces_array; } 334 static Array<Klass*>* the_array_interfaces_array() { return _the_array_interfaces_array; }
334 static oop the_null_string() { return _the_null_string; } 335 static oop the_null_string() { return _the_null_string; }
335 static oop the_min_jint_string() { return _the_min_jint_string; } 336 static oop the_min_jint_string() { return _the_min_jint_string; }
336 static Method* finalizer_register_method() { return _finalizer_register_cache->get_Method(); } 337 static Method* finalizer_register_method() { return _finalizer_register_cache->get_Method(); }
337 static Method* loader_addClass_method() { return _loader_addClass_cache->get_Method(); } 338 static Method* loader_addClass_method() { return _loader_addClass_cache->get_Method(); }
339
340 static Method* protection_domain_implies_method() { return _pd_implies_cache->get_Method(); }
338 static ActiveMethodOopsCache* reflect_invoke_cache() { return _reflect_invoke_cache; } 341 static ActiveMethodOopsCache* reflect_invoke_cache() { return _reflect_invoke_cache; }
342
339 static oop null_ptr_exception_instance() { return _null_ptr_exception_instance; } 343 static oop null_ptr_exception_instance() { return _null_ptr_exception_instance; }
340 static oop arithmetic_exception_instance() { return _arithmetic_exception_instance; } 344 static oop arithmetic_exception_instance() { return _arithmetic_exception_instance; }
341 static oop virtual_machine_error_instance() { return _virtual_machine_error_instance; } 345 static oop virtual_machine_error_instance() { return _virtual_machine_error_instance; }
342 static oop vm_exception() { return _vm_exception; } 346 static oop vm_exception() { return _vm_exception; }
343 347