src/share/vm/memory/universe.cpp

Tue, 05 Aug 2014 15:41:12 -0700

author
jmasa
date
Tue, 05 Aug 2014 15:41:12 -0700
changeset 7301
d63ce76a0f0e
parent 7164
fa6c442c59ee
child 7369
b840813adfcc
permissions
-rw-r--r--

8034056: assert(_heap_alignment >= _space_alignment) failed: heap_alignment less than space_alignment
Reviewed-by: tschatzl, tamao

duke@435 1 /*
drchase@6680 2 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "classfile/classLoader.hpp"
coleenp@4037 27 #include "classfile/classLoaderData.hpp"
stefank@2314 28 #include "classfile/javaClasses.hpp"
iklam@7089 29 #if INCLUDE_CDS
iklam@7089 30 #include "classfile/sharedClassUtil.hpp"
iklam@7089 31 #endif
stefank@2314 32 #include "classfile/symbolTable.hpp"
stefank@2314 33 #include "classfile/systemDictionary.hpp"
stefank@2314 34 #include "classfile/vmSymbols.hpp"
stefank@2314 35 #include "code/codeCache.hpp"
stefank@2314 36 #include "code/dependencies.hpp"
stefank@2314 37 #include "gc_interface/collectedHeap.inline.hpp"
stefank@2314 38 #include "interpreter/interpreter.hpp"
stefank@2314 39 #include "memory/cardTableModRefBS.hpp"
iklam@7089 40 #include "memory/filemap.hpp"
stefank@2314 41 #include "memory/gcLocker.inline.hpp"
stefank@2314 42 #include "memory/genCollectedHeap.hpp"
stefank@2314 43 #include "memory/genRemSet.hpp"
stefank@2314 44 #include "memory/generation.hpp"
coleenp@4037 45 #include "memory/metadataFactory.hpp"
coleenp@4037 46 #include "memory/metaspaceShared.hpp"
stefank@2314 47 #include "memory/oopFactory.hpp"
stefank@2314 48 #include "memory/space.hpp"
stefank@2314 49 #include "memory/universe.hpp"
stefank@2314 50 #include "memory/universe.inline.hpp"
coleenp@4037 51 #include "oops/constantPool.hpp"
coleenp@4037 52 #include "oops/instanceClassLoaderKlass.hpp"
stefank@2314 53 #include "oops/instanceKlass.hpp"
never@2658 54 #include "oops/instanceMirrorKlass.hpp"
stefank@2314 55 #include "oops/instanceRefKlass.hpp"
stefank@2314 56 #include "oops/oop.inline.hpp"
stefank@2314 57 #include "oops/typeArrayKlass.hpp"
stefank@2314 58 #include "prims/jvmtiRedefineClassesTrace.hpp"
stefank@2314 59 #include "runtime/arguments.hpp"
stefank@2314 60 #include "runtime/deoptimization.hpp"
stefank@2314 61 #include "runtime/fprofiler.hpp"
stefank@2314 62 #include "runtime/handles.inline.hpp"
stefank@2314 63 #include "runtime/init.hpp"
stefank@2314 64 #include "runtime/java.hpp"
stefank@2314 65 #include "runtime/javaCalls.hpp"
stefank@2314 66 #include "runtime/sharedRuntime.hpp"
stefank@2314 67 #include "runtime/synchronizer.hpp"
stefank@4299 68 #include "runtime/thread.inline.hpp"
stefank@2314 69 #include "runtime/timer.hpp"
stefank@2314 70 #include "runtime/vm_operations.hpp"
stefank@2314 71 #include "services/memoryService.hpp"
stefank@2314 72 #include "utilities/copy.hpp"
stefank@2314 73 #include "utilities/events.hpp"
stefank@2314 74 #include "utilities/hashtable.inline.hpp"
stefank@2314 75 #include "utilities/preserveException.hpp"
jprovino@4542 76 #include "utilities/macros.hpp"
jprovino@4542 77 #if INCLUDE_ALL_GCS
stefank@2314 78 #include "gc_implementation/concurrentMarkSweep/cmsAdaptiveSizePolicy.hpp"
stefank@2314 79 #include "gc_implementation/concurrentMarkSweep/cmsCollectorPolicy.hpp"
stefank@2314 80 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
stefank@2314 81 #include "gc_implementation/g1/g1CollectorPolicy.hpp"
stefank@2314 82 #include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp"
jprovino@4542 83 #endif // INCLUDE_ALL_GCS
duke@435 84
drchase@6680 85 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
drchase@6680 86
duke@435 87 // Known objects
coleenp@4037 88 Klass* Universe::_boolArrayKlassObj = NULL;
coleenp@4037 89 Klass* Universe::_byteArrayKlassObj = NULL;
coleenp@4037 90 Klass* Universe::_charArrayKlassObj = NULL;
coleenp@4037 91 Klass* Universe::_intArrayKlassObj = NULL;
coleenp@4037 92 Klass* Universe::_shortArrayKlassObj = NULL;
coleenp@4037 93 Klass* Universe::_longArrayKlassObj = NULL;
coleenp@4037 94 Klass* Universe::_singleArrayKlassObj = NULL;
coleenp@4037 95 Klass* Universe::_doubleArrayKlassObj = NULL;
coleenp@4037 96 Klass* Universe::_typeArrayKlassObjs[T_VOID+1] = { NULL /*, NULL...*/ };
coleenp@4037 97 Klass* Universe::_objectArrayKlassObj = NULL;
jcoomes@916 98 oop Universe::_int_mirror = NULL;
jcoomes@916 99 oop Universe::_float_mirror = NULL;
jcoomes@916 100 oop Universe::_double_mirror = NULL;
jcoomes@916 101 oop Universe::_byte_mirror = NULL;
jcoomes@916 102 oop Universe::_bool_mirror = NULL;
jcoomes@916 103 oop Universe::_char_mirror = NULL;
jcoomes@916 104 oop Universe::_long_mirror = NULL;
jcoomes@916 105 oop Universe::_short_mirror = NULL;
jcoomes@916 106 oop Universe::_void_mirror = NULL;
jcoomes@916 107 oop Universe::_mirrors[T_VOID+1] = { NULL /*, NULL...*/ };
duke@435 108 oop Universe::_main_thread_group = NULL;
duke@435 109 oop Universe::_system_thread_group = NULL;
duke@435 110 objArrayOop Universe::_the_empty_class_klass_array = NULL;
coleenp@4037 111 Array<Klass*>* Universe::_the_array_interfaces_array = NULL;
never@1515 112 oop Universe::_the_null_string = NULL;
never@1515 113 oop Universe::_the_min_jint_string = NULL;
coleenp@5508 114 LatestMethodCache* Universe::_finalizer_register_cache = NULL;
coleenp@5508 115 LatestMethodCache* Universe::_loader_addClass_cache = NULL;
coleenp@5508 116 LatestMethodCache* Universe::_pd_implies_cache = NULL;
duke@435 117 oop Universe::_out_of_memory_error_java_heap = NULL;
coleenp@5337 118 oop Universe::_out_of_memory_error_metaspace = NULL;
coleenp@5337 119 oop Universe::_out_of_memory_error_class_metaspace = NULL;
duke@435 120 oop Universe::_out_of_memory_error_array_size = NULL;
duke@435 121 oop Universe::_out_of_memory_error_gc_overhead_limit = NULL;
duke@435 122 objArrayOop Universe::_preallocated_out_of_memory_error_array = NULL;
duke@435 123 volatile jint Universe::_preallocated_out_of_memory_error_avail_count = 0;
duke@435 124 bool Universe::_verify_in_progress = false;
duke@435 125 oop Universe::_null_ptr_exception_instance = NULL;
duke@435 126 oop Universe::_arithmetic_exception_instance = NULL;
duke@435 127 oop Universe::_virtual_machine_error_instance = NULL;
duke@435 128 oop Universe::_vm_exception = NULL;
jcoomes@7164 129 oop Universe::_allocation_context_notification_obj = NULL;
jcoomes@7164 130
drchase@6134 131 Method* Universe::_throw_illegal_access_error = NULL;
coleenp@4037 132 Array<int>* Universe::_the_empty_int_array = NULL;
coleenp@4037 133 Array<u2>* Universe::_the_empty_short_array = NULL;
coleenp@4037 134 Array<Klass*>* Universe::_the_empty_klass_array = NULL;
coleenp@4037 135 Array<Method*>* Universe::_the_empty_method_array = NULL;
duke@435 136
duke@435 137 // These variables are guarded by FullGCALot_lock.
duke@435 138 debug_only(objArrayOop Universe::_fullgc_alot_dummy_array = NULL;)
duke@435 139 debug_only(int Universe::_fullgc_alot_dummy_next = 0;)
duke@435 140
duke@435 141 // Heap
duke@435 142 int Universe::_verify_count = 0;
duke@435 143
duke@435 144 int Universe::_base_vtable_size = 0;
duke@435 145 bool Universe::_bootstrapping = false;
duke@435 146 bool Universe::_fully_initialized = false;
duke@435 147
duke@435 148 size_t Universe::_heap_capacity_at_last_gc;
ysr@888 149 size_t Universe::_heap_used_at_last_gc = 0;
duke@435 150
duke@435 151 CollectedHeap* Universe::_collectedHeap = NULL;
kvn@1077 152
roland@4159 153 NarrowPtrStruct Universe::_narrow_oop = { NULL, 0, true };
roland@4159 154 NarrowPtrStruct Universe::_narrow_klass = { NULL, 0, true };
roland@4159 155 address Universe::_narrow_ptrs_base;
duke@435 156
coleenp@4037 157 void Universe::basic_type_classes_do(void f(Klass*)) {
duke@435 158 f(boolArrayKlassObj());
duke@435 159 f(byteArrayKlassObj());
duke@435 160 f(charArrayKlassObj());
duke@435 161 f(intArrayKlassObj());
duke@435 162 f(shortArrayKlassObj());
duke@435 163 f(longArrayKlassObj());
duke@435 164 f(singleArrayKlassObj());
duke@435 165 f(doubleArrayKlassObj());
duke@435 166 }
duke@435 167
duke@435 168 void Universe::oops_do(OopClosure* f, bool do_all) {
duke@435 169
duke@435 170 f->do_oop((oop*) &_int_mirror);
duke@435 171 f->do_oop((oop*) &_float_mirror);
duke@435 172 f->do_oop((oop*) &_double_mirror);
duke@435 173 f->do_oop((oop*) &_byte_mirror);
duke@435 174 f->do_oop((oop*) &_bool_mirror);
duke@435 175 f->do_oop((oop*) &_char_mirror);
duke@435 176 f->do_oop((oop*) &_long_mirror);
duke@435 177 f->do_oop((oop*) &_short_mirror);
duke@435 178 f->do_oop((oop*) &_void_mirror);
duke@435 179
duke@435 180 for (int i = T_BOOLEAN; i < T_VOID+1; i++) {
duke@435 181 f->do_oop((oop*) &_mirrors[i]);
duke@435 182 }
duke@435 183 assert(_mirrors[0] == NULL && _mirrors[T_BOOLEAN - 1] == NULL, "checking");
duke@435 184
duke@435 185 f->do_oop((oop*)&_the_empty_class_klass_array);
never@1515 186 f->do_oop((oop*)&_the_null_string);
never@1515 187 f->do_oop((oop*)&_the_min_jint_string);
duke@435 188 f->do_oop((oop*)&_out_of_memory_error_java_heap);
coleenp@5337 189 f->do_oop((oop*)&_out_of_memory_error_metaspace);
coleenp@5337 190 f->do_oop((oop*)&_out_of_memory_error_class_metaspace);
duke@435 191 f->do_oop((oop*)&_out_of_memory_error_array_size);
duke@435 192 f->do_oop((oop*)&_out_of_memory_error_gc_overhead_limit);
duke@435 193 f->do_oop((oop*)&_preallocated_out_of_memory_error_array);
duke@435 194 f->do_oop((oop*)&_null_ptr_exception_instance);
duke@435 195 f->do_oop((oop*)&_arithmetic_exception_instance);
duke@435 196 f->do_oop((oop*)&_virtual_machine_error_instance);
duke@435 197 f->do_oop((oop*)&_main_thread_group);
duke@435 198 f->do_oop((oop*)&_system_thread_group);
duke@435 199 f->do_oop((oop*)&_vm_exception);
jcoomes@7164 200 f->do_oop((oop*)&_allocation_context_notification_obj);
duke@435 201 debug_only(f->do_oop((oop*)&_fullgc_alot_dummy_array);)
duke@435 202 }
duke@435 203
coleenp@4037 204 // Serialize metadata in and out of CDS archive, not oops.
coleenp@4037 205 void Universe::serialize(SerializeClosure* f, bool do_all) {
coleenp@4037 206
coleenp@4037 207 f->do_ptr((void**)&_boolArrayKlassObj);
coleenp@4037 208 f->do_ptr((void**)&_byteArrayKlassObj);
coleenp@4037 209 f->do_ptr((void**)&_charArrayKlassObj);
coleenp@4037 210 f->do_ptr((void**)&_intArrayKlassObj);
coleenp@4037 211 f->do_ptr((void**)&_shortArrayKlassObj);
coleenp@4037 212 f->do_ptr((void**)&_longArrayKlassObj);
coleenp@4037 213 f->do_ptr((void**)&_singleArrayKlassObj);
coleenp@4037 214 f->do_ptr((void**)&_doubleArrayKlassObj);
coleenp@4037 215 f->do_ptr((void**)&_objectArrayKlassObj);
coleenp@4037 216
coleenp@4037 217 {
coleenp@4037 218 for (int i = 0; i < T_VOID+1; i++) {
coleenp@4037 219 if (_typeArrayKlassObjs[i] != NULL) {
coleenp@4037 220 assert(i >= T_BOOLEAN, "checking");
coleenp@4037 221 f->do_ptr((void**)&_typeArrayKlassObjs[i]);
coleenp@4037 222 } else if (do_all) {
coleenp@4037 223 f->do_ptr((void**)&_typeArrayKlassObjs[i]);
coleenp@4037 224 }
coleenp@4037 225 }
coleenp@4037 226 }
coleenp@4037 227
coleenp@4037 228 f->do_ptr((void**)&_the_array_interfaces_array);
coleenp@4037 229 f->do_ptr((void**)&_the_empty_int_array);
coleenp@4037 230 f->do_ptr((void**)&_the_empty_short_array);
coleenp@4037 231 f->do_ptr((void**)&_the_empty_method_array);
coleenp@4037 232 f->do_ptr((void**)&_the_empty_klass_array);
coleenp@4037 233 _finalizer_register_cache->serialize(f);
coleenp@4062 234 _loader_addClass_cache->serialize(f);
mullan@5242 235 _pd_implies_cache->serialize(f);
coleenp@4037 236 }
duke@435 237
duke@435 238 void Universe::check_alignment(uintx size, uintx alignment, const char* name) {
duke@435 239 if (size < alignment || size % alignment != 0) {
tamao@5191 240 vm_exit_during_initialization(
tamao@5191 241 err_msg("Size of %s (" UINTX_FORMAT " bytes) must be aligned to " UINTX_FORMAT " bytes", name, size, alignment));
duke@435 242 }
duke@435 243 }
duke@435 244
coleenp@4037 245 void initialize_basic_type_klass(Klass* k, TRAPS) {
coleenp@4037 246 Klass* ok = SystemDictionary::Object_klass();
coleenp@4037 247 if (UseSharedSpaces) {
iklam@7089 248 ClassLoaderData* loader_data = ClassLoaderData::the_null_class_loader_data();
coleenp@4037 249 assert(k->super() == ok, "u3");
iklam@7089 250 k->restore_unshareable_info(loader_data, Handle(), CHECK);
coleenp@4037 251 } else {
coleenp@4037 252 k->initialize_supers(ok, CHECK);
coleenp@4037 253 }
coleenp@4037 254 k->append_to_sibling_list();
coleenp@4037 255 }
duke@435 256
duke@435 257 void Universe::genesis(TRAPS) {
duke@435 258 ResourceMark rm;
coleenp@4037 259
duke@435 260 { FlagSetting fs(_bootstrapping, true);
duke@435 261
duke@435 262 { MutexLocker mc(Compile_lock);
duke@435 263
duke@435 264 // determine base vtable size; without that we cannot create the array klasses
duke@435 265 compute_base_vtable_size();
duke@435 266
duke@435 267 if (!UseSharedSpaces) {
coleenp@4142 268 _boolArrayKlassObj = TypeArrayKlass::create_klass(T_BOOLEAN, sizeof(jboolean), CHECK);
coleenp@4142 269 _charArrayKlassObj = TypeArrayKlass::create_klass(T_CHAR, sizeof(jchar), CHECK);
coleenp@4142 270 _singleArrayKlassObj = TypeArrayKlass::create_klass(T_FLOAT, sizeof(jfloat), CHECK);
coleenp@4142 271 _doubleArrayKlassObj = TypeArrayKlass::create_klass(T_DOUBLE, sizeof(jdouble), CHECK);
coleenp@4142 272 _byteArrayKlassObj = TypeArrayKlass::create_klass(T_BYTE, sizeof(jbyte), CHECK);
coleenp@4142 273 _shortArrayKlassObj = TypeArrayKlass::create_klass(T_SHORT, sizeof(jshort), CHECK);
coleenp@4142 274 _intArrayKlassObj = TypeArrayKlass::create_klass(T_INT, sizeof(jint), CHECK);
coleenp@4142 275 _longArrayKlassObj = TypeArrayKlass::create_klass(T_LONG, sizeof(jlong), CHECK);
duke@435 276
duke@435 277 _typeArrayKlassObjs[T_BOOLEAN] = _boolArrayKlassObj;
duke@435 278 _typeArrayKlassObjs[T_CHAR] = _charArrayKlassObj;
duke@435 279 _typeArrayKlassObjs[T_FLOAT] = _singleArrayKlassObj;
duke@435 280 _typeArrayKlassObjs[T_DOUBLE] = _doubleArrayKlassObj;
duke@435 281 _typeArrayKlassObjs[T_BYTE] = _byteArrayKlassObj;
duke@435 282 _typeArrayKlassObjs[T_SHORT] = _shortArrayKlassObj;
duke@435 283 _typeArrayKlassObjs[T_INT] = _intArrayKlassObj;
duke@435 284 _typeArrayKlassObjs[T_LONG] = _longArrayKlassObj;
duke@435 285
coleenp@4037 286 ClassLoaderData* null_cld = ClassLoaderData::the_null_class_loader_data();
duke@435 287
coleenp@4037 288 _the_array_interfaces_array = MetadataFactory::new_array<Klass*>(null_cld, 2, NULL, CHECK);
coleenp@4037 289 _the_empty_int_array = MetadataFactory::new_array<int>(null_cld, 0, CHECK);
coleenp@4037 290 _the_empty_short_array = MetadataFactory::new_array<u2>(null_cld, 0, CHECK);
coleenp@4037 291 _the_empty_method_array = MetadataFactory::new_array<Method*>(null_cld, 0, CHECK);
coleenp@4037 292 _the_empty_klass_array = MetadataFactory::new_array<Klass*>(null_cld, 0, CHECK);
duke@435 293 }
duke@435 294 }
duke@435 295
duke@435 296 vmSymbols::initialize(CHECK);
duke@435 297
duke@435 298 SystemDictionary::initialize(CHECK);
duke@435 299
coleenp@4037 300 Klass* ok = SystemDictionary::Object_klass();
duke@435 301
never@1515 302 _the_null_string = StringTable::intern("null", CHECK);
never@1515 303 _the_min_jint_string = StringTable::intern("-2147483648", CHECK);
never@1515 304
duke@435 305 if (UseSharedSpaces) {
duke@435 306 // Verify shared interfaces array.
coleenp@4037 307 assert(_the_array_interfaces_array->at(0) ==
never@1577 308 SystemDictionary::Cloneable_klass(), "u3");
coleenp@4037 309 assert(_the_array_interfaces_array->at(1) ==
never@1577 310 SystemDictionary::Serializable_klass(), "u3");
duke@435 311 } else {
duke@435 312 // Set up shared interfaces array. (Do this before supers are set up.)
coleenp@4037 313 _the_array_interfaces_array->at_put(0, SystemDictionary::Cloneable_klass());
coleenp@4037 314 _the_array_interfaces_array->at_put(1, SystemDictionary::Serializable_klass());
duke@435 315 }
duke@435 316
coleenp@4037 317 initialize_basic_type_klass(boolArrayKlassObj(), CHECK);
coleenp@4037 318 initialize_basic_type_klass(charArrayKlassObj(), CHECK);
coleenp@4037 319 initialize_basic_type_klass(singleArrayKlassObj(), CHECK);
coleenp@4037 320 initialize_basic_type_klass(doubleArrayKlassObj(), CHECK);
coleenp@4037 321 initialize_basic_type_klass(byteArrayKlassObj(), CHECK);
coleenp@4037 322 initialize_basic_type_klass(shortArrayKlassObj(), CHECK);
coleenp@4037 323 initialize_basic_type_klass(intArrayKlassObj(), CHECK);
coleenp@4037 324 initialize_basic_type_klass(longArrayKlassObj(), CHECK);
duke@435 325 } // end of core bootstrapping
duke@435 326
coleenp@4037 327 // Maybe this could be lifted up now that object array can be initialized
coleenp@4037 328 // during the bootstrapping.
coleenp@4037 329
coleenp@4037 330 // OLD
duke@435 331 // Initialize _objectArrayKlass after core bootstraping to make
duke@435 332 // sure the super class is set up properly for _objectArrayKlass.
coleenp@4037 333 // ---
coleenp@4037 334 // NEW
coleenp@4037 335 // Since some of the old system object arrays have been converted to
coleenp@4037 336 // ordinary object arrays, _objectArrayKlass will be loaded when
coleenp@4037 337 // SystemDictionary::initialize(CHECK); is run. See the extra check
coleenp@4037 338 // for Object_klass_loaded in objArrayKlassKlass::allocate_objArray_klass_impl.
coleenp@4037 339 _objectArrayKlassObj = InstanceKlass::
never@1577 340 cast(SystemDictionary::Object_klass())->array_klass(1, CHECK);
coleenp@4037 341 // OLD
duke@435 342 // Add the class to the class hierarchy manually to make sure that
duke@435 343 // its vtable is initialized after core bootstrapping is completed.
coleenp@4037 344 // ---
coleenp@4037 345 // New
coleenp@4037 346 // Have already been initialized.
hseigel@4278 347 _objectArrayKlassObj->append_to_sibling_list();
duke@435 348
duke@435 349 // Compute is_jdk version flags.
duke@435 350 // Only 1.3 or later has the java.lang.Shutdown class.
duke@435 351 // Only 1.4 or later has the java.lang.CharSequence interface.
duke@435 352 // Only 1.5 or later has the java.lang.management.MemoryUsage class.
kamg@677 353 if (JDK_Version::is_partially_initialized()) {
kamg@677 354 uint8_t jdk_version;
coleenp@4037 355 Klass* k = SystemDictionary::resolve_or_null(
coleenp@2497 356 vmSymbols::java_lang_management_MemoryUsage(), THREAD);
duke@435 357 CLEAR_PENDING_EXCEPTION; // ignore exceptions
duke@435 358 if (k == NULL) {
kamg@677 359 k = SystemDictionary::resolve_or_null(
coleenp@2497 360 vmSymbols::java_lang_CharSequence(), THREAD);
duke@435 361 CLEAR_PENDING_EXCEPTION; // ignore exceptions
duke@435 362 if (k == NULL) {
kamg@677 363 k = SystemDictionary::resolve_or_null(
coleenp@2497 364 vmSymbols::java_lang_Shutdown(), THREAD);
duke@435 365 CLEAR_PENDING_EXCEPTION; // ignore exceptions
duke@435 366 if (k == NULL) {
kamg@677 367 jdk_version = 2;
duke@435 368 } else {
kamg@677 369 jdk_version = 3;
duke@435 370 }
duke@435 371 } else {
kamg@677 372 jdk_version = 4;
duke@435 373 }
duke@435 374 } else {
kamg@677 375 jdk_version = 5;
duke@435 376 }
kamg@677 377 JDK_Version::fully_initialize(jdk_version);
duke@435 378 }
duke@435 379
duke@435 380 #ifdef ASSERT
duke@435 381 if (FullGCALot) {
duke@435 382 // Allocate an array of dummy objects.
duke@435 383 // We'd like these to be at the bottom of the old generation,
duke@435 384 // so that when we free one and then collect,
duke@435 385 // (almost) the whole heap moves
duke@435 386 // and we find out if we actually update all the oops correctly.
duke@435 387 // But we can't allocate directly in the old generation,
duke@435 388 // so we allocate wherever, and hope that the first collection
duke@435 389 // moves these objects to the bottom of the old generation.
duke@435 390 // We can allocate directly in the permanent generation, so we do.
duke@435 391 int size;
duke@435 392 if (UseConcMarkSweepGC) {
duke@435 393 warning("Using +FullGCALot with concurrent mark sweep gc "
duke@435 394 "will not force all objects to relocate");
duke@435 395 size = FullGCALotDummies;
duke@435 396 } else {
duke@435 397 size = FullGCALotDummies * 2;
duke@435 398 }
coleenp@4037 399 objArrayOop naked_array = oopFactory::new_objArray(SystemDictionary::Object_klass(), size, CHECK);
duke@435 400 objArrayHandle dummy_array(THREAD, naked_array);
duke@435 401 int i = 0;
duke@435 402 while (i < size) {
duke@435 403 // Allocate dummy in old generation
coleenp@4037 404 oop dummy = InstanceKlass::cast(SystemDictionary::Object_klass())->allocate_instance(CHECK);
duke@435 405 dummy_array->obj_at_put(i++, dummy);
duke@435 406 }
duke@435 407 {
duke@435 408 // Only modify the global variable inside the mutex.
duke@435 409 // If we had a race to here, the other dummy_array instances
duke@435 410 // and their elements just get dropped on the floor, which is fine.
duke@435 411 MutexLocker ml(FullGCALot_lock);
duke@435 412 if (_fullgc_alot_dummy_array == NULL) {
duke@435 413 _fullgc_alot_dummy_array = dummy_array();
duke@435 414 }
duke@435 415 }
duke@435 416 assert(i == _fullgc_alot_dummy_array->length(), "just checking");
duke@435 417 }
duke@435 418 #endif
coleenp@4304 419
coleenp@4304 420 // Initialize dependency array for null class loader
coleenp@4304 421 ClassLoaderData::the_null_class_loader_data()->init_dependencies(CHECK);
coleenp@4304 422
duke@435 423 }
duke@435 424
coleenp@4037 425 // CDS support for patching vtables in metadata in the shared archive.
coleenp@4037 426 // All types inherited from Metadata have vtables, but not types inherited
coleenp@4037 427 // from MetaspaceObj, because the latter does not have virtual functions.
coleenp@4037 428 // If the metadata type has a vtable, it cannot be shared in the read-only
coleenp@4037 429 // section of the CDS archive, because the vtable pointer is patched.
coleenp@2497 430 static inline void add_vtable(void** list, int* n, void* o, int count) {
coleenp@2497 431 guarantee((*n) < count, "vtable list too small");
coleenp@4295 432 void* vtable = dereference_vptr(o);
coleenp@4295 433 assert(*(void**)(vtable) != NULL, "invalid vtable");
coleenp@2497 434 list[(*n)++] = vtable;
coleenp@2497 435 }
duke@435 436
duke@435 437 void Universe::init_self_patching_vtbl_list(void** list, int count) {
duke@435 438 int n = 0;
coleenp@4037 439 { InstanceKlass o; add_vtable(list, &n, &o, count); }
coleenp@4047 440 { InstanceClassLoaderKlass o; add_vtable(list, &n, &o, count); }
coleenp@4047 441 { InstanceMirrorKlass o; add_vtable(list, &n, &o, count); }
coleenp@4047 442 { InstanceRefKlass o; add_vtable(list, &n, &o, count); }
coleenp@4142 443 { TypeArrayKlass o; add_vtable(list, &n, &o, count); }
coleenp@4142 444 { ObjArrayKlass o; add_vtable(list, &n, &o, count); }
coleenp@4037 445 { Method o; add_vtable(list, &n, &o, count); }
coleenp@4037 446 { ConstantPool o; add_vtable(list, &n, &o, count); }
duke@435 447 }
duke@435 448
duke@435 449 void Universe::initialize_basic_type_mirrors(TRAPS) {
duke@435 450 assert(_int_mirror==NULL, "basic type mirrors already initialized");
duke@435 451 _int_mirror =
duke@435 452 java_lang_Class::create_basic_type_mirror("int", T_INT, CHECK);
duke@435 453 _float_mirror =
duke@435 454 java_lang_Class::create_basic_type_mirror("float", T_FLOAT, CHECK);
duke@435 455 _double_mirror =
duke@435 456 java_lang_Class::create_basic_type_mirror("double", T_DOUBLE, CHECK);
duke@435 457 _byte_mirror =
duke@435 458 java_lang_Class::create_basic_type_mirror("byte", T_BYTE, CHECK);
duke@435 459 _bool_mirror =
duke@435 460 java_lang_Class::create_basic_type_mirror("boolean",T_BOOLEAN, CHECK);
duke@435 461 _char_mirror =
duke@435 462 java_lang_Class::create_basic_type_mirror("char", T_CHAR, CHECK);
duke@435 463 _long_mirror =
duke@435 464 java_lang_Class::create_basic_type_mirror("long", T_LONG, CHECK);
duke@435 465 _short_mirror =
duke@435 466 java_lang_Class::create_basic_type_mirror("short", T_SHORT, CHECK);
duke@435 467 _void_mirror =
duke@435 468 java_lang_Class::create_basic_type_mirror("void", T_VOID, CHECK);
duke@435 469
duke@435 470 _mirrors[T_INT] = _int_mirror;
duke@435 471 _mirrors[T_FLOAT] = _float_mirror;
duke@435 472 _mirrors[T_DOUBLE] = _double_mirror;
duke@435 473 _mirrors[T_BYTE] = _byte_mirror;
duke@435 474 _mirrors[T_BOOLEAN] = _bool_mirror;
duke@435 475 _mirrors[T_CHAR] = _char_mirror;
duke@435 476 _mirrors[T_LONG] = _long_mirror;
duke@435 477 _mirrors[T_SHORT] = _short_mirror;
duke@435 478 _mirrors[T_VOID] = _void_mirror;
coleenp@4037 479 //_mirrors[T_OBJECT] = InstanceKlass::cast(_object_klass)->java_mirror();
coleenp@4037 480 //_mirrors[T_ARRAY] = InstanceKlass::cast(_object_klass)->java_mirror();
duke@435 481 }
duke@435 482
duke@435 483 void Universe::fixup_mirrors(TRAPS) {
duke@435 484 // Bootstrap problem: all classes gets a mirror (java.lang.Class instance) assigned eagerly,
duke@435 485 // but we cannot do that for classes created before java.lang.Class is loaded. Here we simply
duke@435 486 // walk over permanent objects created so far (mostly classes) and fixup their mirrors. Note
duke@435 487 // that the number of objects allocated at this point is very small.
never@1577 488 assert(SystemDictionary::Class_klass_loaded(), "java.lang.Class should be loaded");
coleenp@4037 489 HandleMark hm(THREAD);
never@2658 490 // Cache the start of the static fields
coleenp@4047 491 InstanceMirrorKlass::init_offset_of_static_fields();
never@2658 492
coleenp@4037 493 GrowableArray <Klass*>* list = java_lang_Class::fixup_mirror_list();
coleenp@4037 494 int list_length = list->length();
coleenp@4037 495 for (int i = 0; i < list_length; i++) {
coleenp@4037 496 Klass* k = list->at(i);
coleenp@4037 497 assert(k->is_klass(), "List should only hold classes");
coleenp@4037 498 EXCEPTION_MARK;
coleenp@4037 499 KlassHandle kh(THREAD, k);
coleenp@4037 500 java_lang_Class::fixup_mirror(kh, CATCH);
duke@435 501 }
coleenp@4037 502 delete java_lang_Class::fixup_mirror_list();
coleenp@4037 503 java_lang_Class::set_fixup_mirror_list(NULL);
coleenp@4037 504 }
duke@435 505
duke@435 506 static bool has_run_finalizers_on_exit = false;
duke@435 507
duke@435 508 void Universe::run_finalizers_on_exit() {
duke@435 509 if (has_run_finalizers_on_exit) return;
duke@435 510 has_run_finalizers_on_exit = true;
duke@435 511
duke@435 512 // Called on VM exit. This ought to be run in a separate thread.
duke@435 513 if (TraceReferenceGC) tty->print_cr("Callback to run finalizers on exit");
duke@435 514 {
duke@435 515 PRESERVE_EXCEPTION_MARK;
never@1577 516 KlassHandle finalizer_klass(THREAD, SystemDictionary::Finalizer_klass());
duke@435 517 JavaValue result(T_VOID);
duke@435 518 JavaCalls::call_static(
duke@435 519 &result,
duke@435 520 finalizer_klass,
coleenp@2497 521 vmSymbols::run_finalizers_on_exit_name(),
coleenp@2497 522 vmSymbols::void_method_signature(),
duke@435 523 THREAD
duke@435 524 );
duke@435 525 // Ignore any pending exceptions
duke@435 526 CLEAR_PENDING_EXCEPTION;
duke@435 527 }
duke@435 528 }
duke@435 529
duke@435 530
duke@435 531 // initialize_vtable could cause gc if
duke@435 532 // 1) we specified true to initialize_vtable and
duke@435 533 // 2) this ran after gc was enabled
duke@435 534 // In case those ever change we use handles for oops
duke@435 535 void Universe::reinitialize_vtable_of(KlassHandle k_h, TRAPS) {
duke@435 536 // init vtable of k and all subclasses
coleenp@4037 537 Klass* ko = k_h();
duke@435 538 klassVtable* vt = ko->vtable();
duke@435 539 if (vt) vt->initialize_vtable(false, CHECK);
duke@435 540 if (ko->oop_is_instance()) {
coleenp@4037 541 InstanceKlass* ik = (InstanceKlass*)ko;
ccheung@5259 542 for (KlassHandle s_h(THREAD, ik->subklass());
ccheung@5259 543 s_h() != NULL;
ccheung@5259 544 s_h = KlassHandle(THREAD, s_h()->next_sibling())) {
duke@435 545 reinitialize_vtable_of(s_h, CHECK);
duke@435 546 }
duke@435 547 }
duke@435 548 }
duke@435 549
duke@435 550
coleenp@4037 551 void initialize_itable_for_klass(Klass* k, TRAPS) {
coleenp@4037 552 InstanceKlass::cast(k)->itable()->initialize_itable(false, CHECK);
duke@435 553 }
duke@435 554
duke@435 555
duke@435 556 void Universe::reinitialize_itables(TRAPS) {
duke@435 557 SystemDictionary::classes_do(initialize_itable_for_klass, CHECK);
duke@435 558
duke@435 559 }
duke@435 560
duke@435 561
duke@435 562 bool Universe::on_page_boundary(void* addr) {
duke@435 563 return ((uintptr_t) addr) % os::vm_page_size() == 0;
duke@435 564 }
duke@435 565
duke@435 566
duke@435 567 bool Universe::should_fill_in_stack_trace(Handle throwable) {
duke@435 568 // never attempt to fill in the stack trace of preallocated errors that do not have
duke@435 569 // backtrace. These errors are kept alive forever and may be "re-used" when all
duke@435 570 // preallocated errors with backtrace have been consumed. Also need to avoid
duke@435 571 // a potential loop which could happen if an out of memory occurs when attempting
duke@435 572 // to allocate the backtrace.
duke@435 573 return ((throwable() != Universe::_out_of_memory_error_java_heap) &&
coleenp@5337 574 (throwable() != Universe::_out_of_memory_error_metaspace) &&
coleenp@5337 575 (throwable() != Universe::_out_of_memory_error_class_metaspace) &&
duke@435 576 (throwable() != Universe::_out_of_memory_error_array_size) &&
duke@435 577 (throwable() != Universe::_out_of_memory_error_gc_overhead_limit));
duke@435 578 }
duke@435 579
duke@435 580
duke@435 581 oop Universe::gen_out_of_memory_error(oop default_err) {
duke@435 582 // generate an out of memory error:
duke@435 583 // - if there is a preallocated error with backtrace available then return it wth
duke@435 584 // a filled in stack trace.
duke@435 585 // - if there are no preallocated errors with backtrace available then return
duke@435 586 // an error without backtrace.
duke@435 587 int next;
duke@435 588 if (_preallocated_out_of_memory_error_avail_count > 0) {
duke@435 589 next = (int)Atomic::add(-1, &_preallocated_out_of_memory_error_avail_count);
duke@435 590 assert(next < (int)PreallocatedOutOfMemoryErrorCount, "avail count is corrupt");
duke@435 591 } else {
duke@435 592 next = -1;
duke@435 593 }
duke@435 594 if (next < 0) {
duke@435 595 // all preallocated errors have been used.
duke@435 596 // return default
duke@435 597 return default_err;
duke@435 598 } else {
duke@435 599 // get the error object at the slot and set set it to NULL so that the
duke@435 600 // array isn't keeping it alive anymore.
duke@435 601 oop exc = preallocated_out_of_memory_errors()->obj_at(next);
duke@435 602 assert(exc != NULL, "slot has been used already");
duke@435 603 preallocated_out_of_memory_errors()->obj_at_put(next, NULL);
duke@435 604
duke@435 605 // use the message from the default error
duke@435 606 oop msg = java_lang_Throwable::message(default_err);
duke@435 607 assert(msg != NULL, "no message");
duke@435 608 java_lang_Throwable::set_message(exc, msg);
duke@435 609
duke@435 610 // populate the stack trace and return it.
duke@435 611 java_lang_Throwable::fill_in_stack_trace_of_preallocated_backtrace(exc);
duke@435 612 return exc;
duke@435 613 }
duke@435 614 }
duke@435 615
twisti@5726 616 intptr_t Universe::_non_oop_bits = 0;
duke@435 617
duke@435 618 void* Universe::non_oop_word() {
duke@435 619 // Neither the high bits nor the low bits of this value is allowed
duke@435 620 // to look like (respectively) the high or low bits of a real oop.
duke@435 621 //
duke@435 622 // High and low are CPU-specific notions, but low always includes
duke@435 623 // the low-order bit. Since oops are always aligned at least mod 4,
duke@435 624 // setting the low-order bit will ensure that the low half of the
duke@435 625 // word will never look like that of a real oop.
duke@435 626 //
duke@435 627 // Using the OS-supplied non-memory-address word (usually 0 or -1)
duke@435 628 // will take care of the high bits, however many there are.
duke@435 629
twisti@5726 630 if (_non_oop_bits == 0) {
twisti@5726 631 _non_oop_bits = (intptr_t)os::non_memory_address_word() | 1;
duke@435 632 }
duke@435 633
twisti@5726 634 return (void*)_non_oop_bits;
duke@435 635 }
duke@435 636
duke@435 637 jint universe_init() {
duke@435 638 assert(!Universe::_fully_initialized, "called after initialize_vtables");
duke@435 639 guarantee(1 << LogHeapWordSize == sizeof(HeapWord),
duke@435 640 "LogHeapWordSize is incorrect.");
duke@435 641 guarantee(sizeof(oop) >= sizeof(HeapWord), "HeapWord larger than oop?");
duke@435 642 guarantee(sizeof(oop) % sizeof(HeapWord) == 0,
coleenp@548 643 "oop size is not not a multiple of HeapWord size");
duke@435 644 TraceTime timer("Genesis", TraceStartupTime);
duke@435 645 JavaClasses::compute_hard_coded_offsets();
duke@435 646
duke@435 647 jint status = Universe::initialize_heap();
duke@435 648 if (status != JNI_OK) {
duke@435 649 return status;
duke@435 650 }
duke@435 651
hseigel@5528 652 Metaspace::global_initialize();
hseigel@5528 653
coleenp@4037 654 // Create memory for metadata. Must be after initializing heap for
coleenp@4037 655 // DumpSharedSpaces.
coleenp@4037 656 ClassLoaderData::init_null_class_loader_data();
coleenp@4037 657
coleenp@4037 658 // We have a heap so create the Method* caches before
coleenp@4037 659 // Metaspace::initialize_shared_spaces() tries to populate them.
coleenp@5508 660 Universe::_finalizer_register_cache = new LatestMethodCache();
coleenp@5508 661 Universe::_loader_addClass_cache = new LatestMethodCache();
coleenp@5508 662 Universe::_pd_implies_cache = new LatestMethodCache();
duke@435 663
duke@435 664 if (UseSharedSpaces) {
duke@435 665 // Read the data structures supporting the shared spaces (shared
duke@435 666 // system dictionary, symbol table, etc.). After that, access to
duke@435 667 // the file (other than the mapped regions) is no longer needed, and
duke@435 668 // the file is closed. Closing the file does not affect the
duke@435 669 // currently mapped regions.
coleenp@4037 670 MetaspaceShared::initialize_shared_spaces();
coleenp@4037 671 StringTable::create_table();
duke@435 672 } else {
duke@435 673 SymbolTable::create_table();
duke@435 674 StringTable::create_table();
duke@435 675 ClassLoader::create_package_info_table();
iklam@7089 676
iklam@7089 677 if (DumpSharedSpaces) {
iklam@7089 678 MetaspaceShared::prepare_for_dumping();
iklam@7089 679 }
duke@435 680 }
duke@435 681
duke@435 682 return JNI_OK;
duke@435 683 }
duke@435 684
kvn@1077 685 // Choose the heap base address and oop encoding mode
kvn@1077 686 // when compressed oops are used:
kvn@1077 687 // Unscaled - Use 32-bits oops without encoding when
kvn@1077 688 // NarrowOopHeapBaseMin + heap_size < 4Gb
kvn@1077 689 // ZeroBased - Use zero based compressed oops with encoding when
kvn@1077 690 // NarrowOopHeapBaseMin + heap_size < 32Gb
kvn@1077 691 // HeapBased - Use compressed oops with heap base + encoding.
kvn@1077 692
kvn@1077 693 // 4Gb
coleenp@6029 694 static const uint64_t UnscaledOopHeapMax = (uint64_t(max_juint) + 1);
kvn@1077 695 // 32Gb
coleenp@6029 696 // OopEncodingHeapMax == UnscaledOopHeapMax << LogMinObjAlignmentInBytes;
kvn@1077 697
stefank@5578 698 char* Universe::preferred_heap_base(size_t heap_size, size_t alignment, NARROW_OOP_MODE mode) {
stefank@5578 699 assert(is_size_aligned((size_t)OopEncodingHeapMax, alignment), "Must be");
coleenp@6029 700 assert(is_size_aligned((size_t)UnscaledOopHeapMax, alignment), "Must be");
stefank@5578 701 assert(is_size_aligned(heap_size, alignment), "Must be");
stefank@5578 702
stefank@5578 703 uintx heap_base_min_address_aligned = align_size_up(HeapBaseMinAddress, alignment);
stefank@5578 704
kvn@1492 705 size_t base = 0;
kvn@1077 706 #ifdef _LP64
kvn@1077 707 if (UseCompressedOops) {
kvn@1077 708 assert(mode == UnscaledNarrowOop ||
kvn@1077 709 mode == ZeroBasedNarrowOop ||
kvn@1077 710 mode == HeapBasedNarrowOop, "mode is invalid");
stefank@5578 711 const size_t total_size = heap_size + heap_base_min_address_aligned;
kvn@1357 712 // Return specified base for the first request.
kvn@1357 713 if (!FLAG_IS_DEFAULT(HeapBaseMinAddress) && (mode == UnscaledNarrowOop)) {
stefank@5578 714 base = heap_base_min_address_aligned;
hseigel@4523 715
hseigel@5528 716 // If the total size is small enough to allow UnscaledNarrowOop then
hseigel@5528 717 // just use UnscaledNarrowOop.
hseigel@5528 718 } else if ((total_size <= OopEncodingHeapMax) && (mode != HeapBasedNarrowOop)) {
coleenp@6029 719 if ((total_size <= UnscaledOopHeapMax) && (mode == UnscaledNarrowOop) &&
kvn@1077 720 (Universe::narrow_oop_shift() == 0)) {
kvn@1077 721 // Use 32-bits oops without encoding and
kvn@1077 722 // place heap's top on the 4Gb boundary
coleenp@6029 723 base = (UnscaledOopHeapMax - heap_size);
kvn@1077 724 } else {
kvn@1077 725 // Can't reserve with NarrowOopShift == 0
kvn@1077 726 Universe::set_narrow_oop_shift(LogMinObjAlignmentInBytes);
coleenp@6029 727
kvn@1077 728 if (mode == UnscaledNarrowOop ||
coleenp@6029 729 mode == ZeroBasedNarrowOop && total_size <= UnscaledOopHeapMax) {
coleenp@6029 730
kvn@1077 731 // Use zero based compressed oops with encoding and
kvn@1077 732 // place heap's top on the 32Gb boundary in case
kvn@1077 733 // total_size > 4Gb or failed to reserve below 4Gb.
coleenp@6029 734 uint64_t heap_top = OopEncodingHeapMax;
coleenp@6029 735
coleenp@6029 736 // For small heaps, save some space for compressed class pointer
coleenp@6029 737 // space so it can be decoded with no base.
coleenp@6029 738 if (UseCompressedClassPointers && !UseSharedSpaces &&
coleenp@6029 739 OopEncodingHeapMax <= 32*G) {
coleenp@6029 740
coleenp@6029 741 uint64_t class_space = align_size_up(CompressedClassSpaceSize, alignment);
coleenp@6029 742 assert(is_size_aligned((size_t)OopEncodingHeapMax-class_space,
coleenp@6029 743 alignment), "difference must be aligned too");
coleenp@6029 744 uint64_t new_top = OopEncodingHeapMax-class_space;
coleenp@6029 745
coleenp@6029 746 if (total_size <= new_top) {
coleenp@6029 747 heap_top = new_top;
coleenp@6029 748 }
coleenp@6029 749 }
coleenp@6029 750
coleenp@6029 751 // Align base to the adjusted top of the heap
coleenp@6029 752 base = heap_top - heap_size;
kvn@1077 753 }
kvn@1077 754 }
kvn@1077 755 } else {
hseigel@4523 756 // UnscaledNarrowOop encoding didn't work, and no base was found for ZeroBasedOops or
hseigel@4523 757 // HeapBasedNarrowOop encoding was requested. So, can't reserve below 32Gb.
kvn@1077 758 Universe::set_narrow_oop_shift(LogMinObjAlignmentInBytes);
kvn@1077 759 }
hseigel@4523 760
kvn@1492 761 // Set narrow_oop_base and narrow_oop_use_implicit_null_checks
kvn@1492 762 // used in ReservedHeapSpace() constructors.
kvn@1492 763 // The final values will be set in initialize_heap() below.
hseigel@5528 764 if ((base != 0) && ((base + heap_size) <= OopEncodingHeapMax)) {
kvn@1492 765 // Use zero based compressed oops
kvn@1492 766 Universe::set_narrow_oop_base(NULL);
kvn@1492 767 // Don't need guard page for implicit checks in indexed
kvn@1492 768 // addressing mode with zero based Compressed Oops.
kvn@1492 769 Universe::set_narrow_oop_use_implicit_null_checks(true);
kvn@1492 770 } else {
kvn@1492 771 // Set to a non-NULL value so the ReservedSpace ctor computes
kvn@1492 772 // the correct no-access prefix.
kvn@1492 773 // The final value will be set in initialize_heap() below.
coleenp@6029 774 Universe::set_narrow_oop_base((address)UnscaledOopHeapMax);
goetz@6461 775 #if defined(_WIN64) || defined(AIX)
kvn@1492 776 if (UseLargePages) {
kvn@1492 777 // Cannot allocate guard pages for implicit checks in indexed
kvn@1492 778 // addressing mode when large pages are specified on windows.
kvn@1492 779 Universe::set_narrow_oop_use_implicit_null_checks(false);
kvn@1492 780 }
kvn@1492 781 #endif // _WIN64
kvn@1492 782 }
kvn@1077 783 }
kvn@1077 784 #endif
stefank@5578 785
stefank@5578 786 assert(is_ptr_aligned((char*)base, alignment), "Must be");
kvn@1492 787 return (char*)base; // also return NULL (don't care) for 32-bit VM
kvn@1077 788 }
kvn@1077 789
duke@435 790 jint Universe::initialize_heap() {
duke@435 791
duke@435 792 if (UseParallelGC) {
jprovino@4542 793 #if INCLUDE_ALL_GCS
duke@435 794 Universe::_collectedHeap = new ParallelScavengeHeap();
jprovino@4542 795 #else // INCLUDE_ALL_GCS
jprovino@4165 796 fatal("UseParallelGC not supported in this VM.");
jprovino@4542 797 #endif // INCLUDE_ALL_GCS
duke@435 798
ysr@777 799 } else if (UseG1GC) {
jprovino@4542 800 #if INCLUDE_ALL_GCS
tonyp@3209 801 G1CollectorPolicy* g1p = new G1CollectorPolicy();
jwilhelm@6085 802 g1p->initialize_all();
ysr@777 803 G1CollectedHeap* g1h = new G1CollectedHeap(g1p);
ysr@777 804 Universe::_collectedHeap = g1h;
jprovino@4542 805 #else // INCLUDE_ALL_GCS
ysr@777 806 fatal("UseG1GC not supported in java kernel vm.");
jprovino@4542 807 #endif // INCLUDE_ALL_GCS
ysr@777 808
duke@435 809 } else {
duke@435 810 GenCollectorPolicy *gc_policy;
duke@435 811
duke@435 812 if (UseSerialGC) {
duke@435 813 gc_policy = new MarkSweepPolicy();
duke@435 814 } else if (UseConcMarkSweepGC) {
jprovino@4542 815 #if INCLUDE_ALL_GCS
duke@435 816 if (UseAdaptiveSizePolicy) {
duke@435 817 gc_policy = new ASConcurrentMarkSweepPolicy();
duke@435 818 } else {
duke@435 819 gc_policy = new ConcurrentMarkSweepPolicy();
duke@435 820 }
jprovino@4542 821 #else // INCLUDE_ALL_GCS
jprovino@4165 822 fatal("UseConcMarkSweepGC not supported in this VM.");
jprovino@4542 823 #endif // INCLUDE_ALL_GCS
duke@435 824 } else { // default old generation
duke@435 825 gc_policy = new MarkSweepPolicy();
duke@435 826 }
jwilhelm@6085 827 gc_policy->initialize_all();
duke@435 828
duke@435 829 Universe::_collectedHeap = new GenCollectedHeap(gc_policy);
duke@435 830 }
duke@435 831
brutisso@6376 832 ThreadLocalAllocBuffer::set_max_size(Universe::heap()->max_tlab_size());
brutisso@6376 833
duke@435 834 jint status = Universe::heap()->initialize();
duke@435 835 if (status != JNI_OK) {
duke@435 836 return status;
duke@435 837 }
kvn@1077 838
kvn@1077 839 #ifdef _LP64
coleenp@548 840 if (UseCompressedOops) {
coleenp@548 841 // Subtract a page because something can get allocated at heap base.
coleenp@548 842 // This also makes implicit null checking work, because the
coleenp@548 843 // memory+1 page below heap_base needs to cause a signal.
coleenp@548 844 // See needs_explicit_null_check.
coleenp@548 845 // Only set the heap base for compressed oops because it indicates
coleenp@548 846 // compressed oops for pstack code.
kvn@2403 847 bool verbose = PrintCompressedOopsMode || (PrintMiscellaneous && Verbose);
kvn@2403 848 if (verbose) {
kvn@1077 849 tty->cr();
kvn@2305 850 tty->print("heap address: " PTR_FORMAT ", size: " SIZE_FORMAT " MB",
kvn@2305 851 Universe::heap()->base(), Universe::heap()->reserved_region().byte_size()/M);
kvn@1077 852 }
hseigel@5528 853 if (((uint64_t)Universe::heap()->reserved_region().end() > OopEncodingHeapMax)) {
kvn@1077 854 // Can't reserve heap below 32Gb.
roland@4159 855 // keep the Universe::narrow_oop_base() set in Universe::reserve_heap()
kvn@1077 856 Universe::set_narrow_oop_shift(LogMinObjAlignmentInBytes);
goetz@6461 857 #ifdef AIX
goetz@6461 858 // There is no protected page before the heap. This assures all oops
goetz@6461 859 // are decoded so that NULL is preserved, so this page will not be accessed.
goetz@6461 860 Universe::set_narrow_oop_use_implicit_null_checks(false);
goetz@6461 861 #endif
kvn@2403 862 if (verbose) {
sla@5237 863 tty->print(", %s: "PTR_FORMAT,
sla@5237 864 narrow_oop_mode_to_string(HeapBasedNarrowOop),
sla@5237 865 Universe::narrow_oop_base());
kvn@1077 866 }
kvn@1077 867 } else {
kvn@1077 868 Universe::set_narrow_oop_base(0);
kvn@2403 869 if (verbose) {
sla@5237 870 tty->print(", %s", narrow_oop_mode_to_string(ZeroBasedNarrowOop));
kvn@1077 871 }
kvn@1077 872 #ifdef _WIN64
kvn@1077 873 if (!Universe::narrow_oop_use_implicit_null_checks()) {
kvn@1077 874 // Don't need guard page for implicit checks in indexed addressing
kvn@1077 875 // mode with zero based Compressed Oops.
kvn@1077 876 Universe::set_narrow_oop_use_implicit_null_checks(true);
kvn@1077 877 }
kvn@1077 878 #endif // _WIN64
coleenp@6029 879 if((uint64_t)Universe::heap()->reserved_region().end() > UnscaledOopHeapMax) {
kvn@1077 880 // Can't reserve heap below 4Gb.
kvn@1077 881 Universe::set_narrow_oop_shift(LogMinObjAlignmentInBytes);
kvn@1077 882 } else {
kvn@1357 883 Universe::set_narrow_oop_shift(0);
kvn@2403 884 if (verbose) {
sla@5237 885 tty->print(", %s", narrow_oop_mode_to_string(UnscaledNarrowOop));
kvn@1077 886 }
kvn@1077 887 }
kvn@1077 888 }
hseigel@5528 889
kvn@2403 890 if (verbose) {
kvn@1077 891 tty->cr();
kvn@1077 892 tty->cr();
kvn@1077 893 }
roland@4159 894 Universe::set_narrow_ptrs_base(Universe::narrow_oop_base());
coleenp@548 895 }
hseigel@5528 896 // Universe::narrow_oop_base() is one page below the heap.
hseigel@5528 897 assert((intptr_t)Universe::narrow_oop_base() <= (intptr_t)(Universe::heap()->base() -
hseigel@5528 898 os::vm_page_size()) ||
kvn@1077 899 Universe::narrow_oop_base() == NULL, "invalid value");
kvn@1077 900 assert(Universe::narrow_oop_shift() == LogMinObjAlignmentInBytes ||
kvn@1077 901 Universe::narrow_oop_shift() == 0, "invalid value");
kvn@1077 902 #endif
duke@435 903
duke@435 904 // We will never reach the CATCH below since Exceptions::_throw will cause
duke@435 905 // the VM to exit if an exception is thrown during initialization
duke@435 906
duke@435 907 if (UseTLAB) {
duke@435 908 assert(Universe::heap()->supports_tlab_allocation(),
duke@435 909 "Should support thread-local allocation buffers");
duke@435 910 ThreadLocalAllocBuffer::startup_initialization();
duke@435 911 }
duke@435 912 return JNI_OK;
duke@435 913 }
duke@435 914
coleenp@4037 915
coleenp@4037 916 // Reserve the Java heap, which is now the same for all GCs.
coleenp@4037 917 ReservedSpace Universe::reserve_heap(size_t heap_size, size_t alignment) {
tschatzl@5701 918 assert(alignment <= Arguments::conservative_max_heap_alignment(),
tschatzl@5701 919 err_msg("actual alignment "SIZE_FORMAT" must be within maximum heap alignment "SIZE_FORMAT,
tschatzl@5701 920 alignment, Arguments::conservative_max_heap_alignment()));
hseigel@5528 921 size_t total_reserved = align_size_up(heap_size, alignment);
brutisso@4741 922 assert(!UseCompressedOops || (total_reserved <= (OopEncodingHeapMax - os::vm_page_size())),
brutisso@4741 923 "heap size is too big for compressed oops");
coleenp@4037 924
stefank@5578 925 bool use_large_pages = UseLargePages && is_size_aligned(alignment, os::large_page_size());
stefank@5578 926 assert(!UseLargePages
tschatzl@5711 927 || UseParallelGC
stefank@5578 928 || use_large_pages, "Wrong alignment to use large pages");
stefank@5578 929
stefank@5578 930 char* addr = Universe::preferred_heap_base(total_reserved, alignment, Universe::UnscaledNarrowOop);
stefank@5578 931
stefank@5578 932 ReservedHeapSpace total_rs(total_reserved, alignment, use_large_pages, addr);
coleenp@4037 933
coleenp@4037 934 if (UseCompressedOops) {
coleenp@4037 935 if (addr != NULL && !total_rs.is_reserved()) {
coleenp@4037 936 // Failed to reserve at specified address - the requested memory
coleenp@4037 937 // region is taken already, for example, by 'java' launcher.
coleenp@4037 938 // Try again to reserver heap higher.
stefank@5578 939 addr = Universe::preferred_heap_base(total_reserved, alignment, Universe::ZeroBasedNarrowOop);
coleenp@4037 940
coleenp@4037 941 ReservedHeapSpace total_rs0(total_reserved, alignment,
stefank@5578 942 use_large_pages, addr);
coleenp@4037 943
coleenp@4037 944 if (addr != NULL && !total_rs0.is_reserved()) {
coleenp@4037 945 // Failed to reserve at specified address again - give up.
stefank@5578 946 addr = Universe::preferred_heap_base(total_reserved, alignment, Universe::HeapBasedNarrowOop);
coleenp@4037 947 assert(addr == NULL, "");
coleenp@4037 948
coleenp@4037 949 ReservedHeapSpace total_rs1(total_reserved, alignment,
stefank@5578 950 use_large_pages, addr);
coleenp@4037 951 total_rs = total_rs1;
coleenp@4037 952 } else {
coleenp@4037 953 total_rs = total_rs0;
coleenp@4037 954 }
coleenp@4037 955 }
coleenp@4037 956 }
coleenp@4037 957
coleenp@4037 958 if (!total_rs.is_reserved()) {
tamao@5191 959 vm_exit_during_initialization(err_msg("Could not reserve enough space for " SIZE_FORMAT "KB object heap", total_reserved/K));
coleenp@4037 960 return total_rs;
coleenp@4037 961 }
coleenp@4037 962
roland@4159 963 if (UseCompressedOops) {
roland@4159 964 // Universe::initialize_heap() will reset this to NULL if unscaled
roland@4159 965 // or zero-based narrow oops are actually used.
roland@4159 966 address base = (address)(total_rs.base() - os::vm_page_size());
roland@4159 967 Universe::set_narrow_oop_base(base);
roland@4159 968 }
hseigel@5528 969 return total_rs;
coleenp@4037 970 }
coleenp@4037 971
coleenp@4037 972
hseigel@5528 973 // It's the caller's responsibility to ensure glitch-freedom
duke@435 974 // (if required).
duke@435 975 void Universe::update_heap_info_at_gc() {
duke@435 976 _heap_capacity_at_last_gc = heap()->capacity();
duke@435 977 _heap_used_at_last_gc = heap()->used();
duke@435 978 }
duke@435 979
duke@435 980
sla@5237 981 const char* Universe::narrow_oop_mode_to_string(Universe::NARROW_OOP_MODE mode) {
sla@5237 982 switch (mode) {
sla@5237 983 case UnscaledNarrowOop:
sla@5237 984 return "32-bits Oops";
sla@5237 985 case ZeroBasedNarrowOop:
sla@5237 986 return "zero based Compressed Oops";
sla@5237 987 case HeapBasedNarrowOop:
sla@5237 988 return "Compressed Oops with base";
sla@5237 989 }
sla@5237 990
sla@5237 991 ShouldNotReachHere();
sla@5237 992 return "";
sla@5237 993 }
sla@5237 994
sla@5237 995
sla@5237 996 Universe::NARROW_OOP_MODE Universe::narrow_oop_mode() {
sla@5237 997 if (narrow_oop_base() != 0) {
sla@5237 998 return HeapBasedNarrowOop;
sla@5237 999 }
sla@5237 1000
sla@5237 1001 if (narrow_oop_shift() != 0) {
sla@5237 1002 return ZeroBasedNarrowOop;
sla@5237 1003 }
sla@5237 1004
sla@5237 1005 return UnscaledNarrowOop;
sla@5237 1006 }
sla@5237 1007
duke@435 1008
duke@435 1009 void universe2_init() {
duke@435 1010 EXCEPTION_MARK;
duke@435 1011 Universe::genesis(CATCH);
duke@435 1012 }
duke@435 1013
duke@435 1014
duke@435 1015 // This function is defined in JVM.cpp
duke@435 1016 extern void initialize_converter_functions();
duke@435 1017
duke@435 1018 bool universe_post_init() {
ysr@2301 1019 assert(!is_init_completed(), "Error: initialization not yet completed!");
duke@435 1020 Universe::_fully_initialized = true;
duke@435 1021 EXCEPTION_MARK;
duke@435 1022 { ResourceMark rm;
duke@435 1023 Interpreter::initialize(); // needed for interpreter entry points
duke@435 1024 if (!UseSharedSpaces) {
coleenp@4037 1025 HandleMark hm(THREAD);
never@1577 1026 KlassHandle ok_h(THREAD, SystemDictionary::Object_klass());
duke@435 1027 Universe::reinitialize_vtable_of(ok_h, CHECK_false);
duke@435 1028 Universe::reinitialize_itables(CHECK_false);
duke@435 1029 }
duke@435 1030 }
duke@435 1031
coleenp@4037 1032 HandleMark hm(THREAD);
coleenp@4037 1033 Klass* k;
duke@435 1034 instanceKlassHandle k_h;
duke@435 1035 // Setup preallocated empty java.lang.Class array
never@1577 1036 Universe::_the_empty_class_klass_array = oopFactory::new_objArray(SystemDictionary::Class_klass(), 0, CHECK_false);
coleenp@4037 1037
duke@435 1038 // Setup preallocated OutOfMemoryError errors
coleenp@2497 1039 k = SystemDictionary::resolve_or_fail(vmSymbols::java_lang_OutOfMemoryError(), true, CHECK_false);
duke@435 1040 k_h = instanceKlassHandle(THREAD, k);
coleenp@4037 1041 Universe::_out_of_memory_error_java_heap = k_h->allocate_instance(CHECK_false);
coleenp@5337 1042 Universe::_out_of_memory_error_metaspace = k_h->allocate_instance(CHECK_false);
coleenp@5337 1043 Universe::_out_of_memory_error_class_metaspace = k_h->allocate_instance(CHECK_false);
coleenp@4037 1044 Universe::_out_of_memory_error_array_size = k_h->allocate_instance(CHECK_false);
duke@435 1045 Universe::_out_of_memory_error_gc_overhead_limit =
coleenp@4037 1046 k_h->allocate_instance(CHECK_false);
duke@435 1047
duke@435 1048 // Setup preallocated NullPointerException
duke@435 1049 // (this is currently used for a cheap & dirty solution in compiler exception handling)
coleenp@2497 1050 k = SystemDictionary::resolve_or_fail(vmSymbols::java_lang_NullPointerException(), true, CHECK_false);
coleenp@4037 1051 Universe::_null_ptr_exception_instance = InstanceKlass::cast(k)->allocate_instance(CHECK_false);
duke@435 1052 // Setup preallocated ArithmeticException
duke@435 1053 // (this is currently used for a cheap & dirty solution in compiler exception handling)
coleenp@2497 1054 k = SystemDictionary::resolve_or_fail(vmSymbols::java_lang_ArithmeticException(), true, CHECK_false);
coleenp@4037 1055 Universe::_arithmetic_exception_instance = InstanceKlass::cast(k)->allocate_instance(CHECK_false);
duke@435 1056 // Virtual Machine Error for when we get into a situation we can't resolve
duke@435 1057 k = SystemDictionary::resolve_or_fail(
coleenp@2497 1058 vmSymbols::java_lang_VirtualMachineError(), true, CHECK_false);
coleenp@4037 1059 bool linked = InstanceKlass::cast(k)->link_class_or_fail(CHECK_false);
duke@435 1060 if (!linked) {
duke@435 1061 tty->print_cr("Unable to link/verify VirtualMachineError class");
duke@435 1062 return false; // initialization failed
duke@435 1063 }
duke@435 1064 Universe::_virtual_machine_error_instance =
coleenp@4037 1065 InstanceKlass::cast(k)->allocate_instance(CHECK_false);
coleenp@2497 1066
jwilhelm@6084 1067 Universe::_vm_exception = InstanceKlass::cast(k)->allocate_instance(CHECK_false);
coleenp@2497 1068
duke@435 1069 if (!DumpSharedSpaces) {
duke@435 1070 // These are the only Java fields that are currently set during shared space dumping.
duke@435 1071 // We prefer to not handle this generally, so we always reinitialize these detail messages.
duke@435 1072 Handle msg = java_lang_String::create_from_str("Java heap space", CHECK_false);
duke@435 1073 java_lang_Throwable::set_message(Universe::_out_of_memory_error_java_heap, msg());
duke@435 1074
hseigel@6027 1075 msg = java_lang_String::create_from_str("Metaspace", CHECK_false);
coleenp@5337 1076 java_lang_Throwable::set_message(Universe::_out_of_memory_error_metaspace, msg());
ehelin@5694 1077 msg = java_lang_String::create_from_str("Compressed class space", CHECK_false);
coleenp@5337 1078 java_lang_Throwable::set_message(Universe::_out_of_memory_error_class_metaspace, msg());
duke@435 1079
duke@435 1080 msg = java_lang_String::create_from_str("Requested array size exceeds VM limit", CHECK_false);
duke@435 1081 java_lang_Throwable::set_message(Universe::_out_of_memory_error_array_size, msg());
duke@435 1082
duke@435 1083 msg = java_lang_String::create_from_str("GC overhead limit exceeded", CHECK_false);
duke@435 1084 java_lang_Throwable::set_message(Universe::_out_of_memory_error_gc_overhead_limit, msg());
duke@435 1085
duke@435 1086 msg = java_lang_String::create_from_str("/ by zero", CHECK_false);
duke@435 1087 java_lang_Throwable::set_message(Universe::_arithmetic_exception_instance, msg());
duke@435 1088
duke@435 1089 // Setup the array of errors that have preallocated backtrace
duke@435 1090 k = Universe::_out_of_memory_error_java_heap->klass();
coleenp@4037 1091 assert(k->name() == vmSymbols::java_lang_OutOfMemoryError(), "should be out of memory error");
duke@435 1092 k_h = instanceKlassHandle(THREAD, k);
duke@435 1093
duke@435 1094 int len = (StackTraceInThrowable) ? (int)PreallocatedOutOfMemoryErrorCount : 0;
duke@435 1095 Universe::_preallocated_out_of_memory_error_array = oopFactory::new_objArray(k_h(), len, CHECK_false);
duke@435 1096 for (int i=0; i<len; i++) {
coleenp@4037 1097 oop err = k_h->allocate_instance(CHECK_false);
duke@435 1098 Handle err_h = Handle(THREAD, err);
duke@435 1099 java_lang_Throwable::allocate_backtrace(err_h, CHECK_false);
duke@435 1100 Universe::preallocated_out_of_memory_errors()->obj_at_put(i, err_h());
duke@435 1101 }
duke@435 1102 Universe::_preallocated_out_of_memory_error_avail_count = (jint)len;
duke@435 1103 }
duke@435 1104
duke@435 1105
duke@435 1106 // Setup static method for registering finalizers
duke@435 1107 // The finalizer klass must be linked before looking up the method, in
duke@435 1108 // case it needs to get rewritten.
coleenp@4037 1109 InstanceKlass::cast(SystemDictionary::Finalizer_klass())->link_class(CHECK_false);
coleenp@4037 1110 Method* m = InstanceKlass::cast(SystemDictionary::Finalizer_klass())->find_method(
duke@435 1111 vmSymbols::register_method_name(),
duke@435 1112 vmSymbols::register_method_signature());
duke@435 1113 if (m == NULL || !m->is_static()) {
coleenp@5508 1114 tty->print_cr("Unable to link/verify Finalizer.register method");
coleenp@5508 1115 return false; // initialization failed (cannot throw exception yet)
duke@435 1116 }
duke@435 1117 Universe::_finalizer_register_cache->init(
coleenp@5508 1118 SystemDictionary::Finalizer_klass(), m);
duke@435 1119
drchase@6134 1120 InstanceKlass::cast(SystemDictionary::misc_Unsafe_klass())->link_class(CHECK_false);
drchase@6134 1121 m = InstanceKlass::cast(SystemDictionary::misc_Unsafe_klass())->find_method(
drchase@6134 1122 vmSymbols::throwIllegalAccessError_name(),
drchase@6134 1123 vmSymbols::void_method_signature());
drchase@6134 1124 if (m != NULL && !m->is_static()) {
drchase@6134 1125 // Note null is okay; this method is used in itables, and if it is null,
drchase@6134 1126 // then AbstractMethodError is thrown instead.
drchase@6134 1127 tty->print_cr("Unable to link/verify Unsafe.throwIllegalAccessError method");
drchase@6134 1128 return false; // initialization failed (cannot throw exception yet)
drchase@6134 1129 }
drchase@6134 1130 Universe::_throw_illegal_access_error = m;
drchase@6134 1131
coleenp@4062 1132 // Setup method for registering loaded classes in class loader vector
coleenp@4062 1133 InstanceKlass::cast(SystemDictionary::ClassLoader_klass())->link_class(CHECK_false);
coleenp@4062 1134 m = InstanceKlass::cast(SystemDictionary::ClassLoader_klass())->find_method(vmSymbols::addClass_name(), vmSymbols::class_void_signature());
coleenp@4062 1135 if (m == NULL || m->is_static()) {
coleenp@5508 1136 tty->print_cr("Unable to link/verify ClassLoader.addClass method");
coleenp@5508 1137 return false; // initialization failed (cannot throw exception yet)
coleenp@4062 1138 }
coleenp@4062 1139 Universe::_loader_addClass_cache->init(
coleenp@5508 1140 SystemDictionary::ClassLoader_klass(), m);
coleenp@4062 1141
mullan@5242 1142 // Setup method for checking protection domain
mullan@5242 1143 InstanceKlass::cast(SystemDictionary::ProtectionDomain_klass())->link_class(CHECK_false);
mullan@5242 1144 m = InstanceKlass::cast(SystemDictionary::ProtectionDomain_klass())->
mullan@5242 1145 find_method(vmSymbols::impliesCreateAccessControlContext_name(),
mullan@5242 1146 vmSymbols::void_boolean_signature());
mullan@5242 1147 // Allow NULL which should only happen with bootstrapping.
mullan@5242 1148 if (m != NULL) {
mullan@5242 1149 if (m->is_static()) {
mullan@5242 1150 // NoSuchMethodException doesn't actually work because it tries to run the
mullan@5242 1151 // <init> function before java_lang_Class is linked. Print error and exit.
mullan@5242 1152 tty->print_cr("ProtectionDomain.impliesCreateAccessControlContext() has the wrong linkage");
mullan@5242 1153 return false; // initialization failed
mullan@5242 1154 }
mullan@5242 1155 Universe::_pd_implies_cache->init(
coleenp@5508 1156 SystemDictionary::ProtectionDomain_klass(), m);;
mullan@5242 1157 }
mullan@5242 1158
duke@435 1159 // The folowing is initializing converter functions for serialization in
duke@435 1160 // JVM.cpp. If we clean up the StrictMath code above we may want to find
duke@435 1161 // a better solution for this as well.
duke@435 1162 initialize_converter_functions();
duke@435 1163
duke@435 1164 // This needs to be done before the first scavenge/gc, since
duke@435 1165 // it's an input to soft ref clearing policy.
ysr@777 1166 {
ysr@777 1167 MutexLocker x(Heap_lock);
ysr@777 1168 Universe::update_heap_info_at_gc();
ysr@777 1169 }
duke@435 1170
duke@435 1171 // ("weak") refs processing infrastructure initialization
duke@435 1172 Universe::heap()->post_initialize();
duke@435 1173
coleenp@4037 1174 // Initialize performance counters for metaspaces
coleenp@4037 1175 MetaspaceCounters::initialize_performance_counters();
ehelin@5531 1176 CompressedClassSpaceCounters::initialize_performance_counters();
ehelin@5531 1177
ehelin@5312 1178 MemoryService::add_metaspace_memory_pools();
coleenp@4037 1179
duke@435 1180 MemoryService::set_universe_heap(Universe::_collectedHeap);
iklam@7089 1181 #if INCLUDE_CDS
iklam@7089 1182 if (UseSharedSpaces) {
iklam@7089 1183 SharedClassUtil::initialize(CHECK_false);
iklam@7089 1184 }
iklam@7089 1185 #endif
duke@435 1186 return true;
duke@435 1187 }
duke@435 1188
duke@435 1189
duke@435 1190 void Universe::compute_base_vtable_size() {
duke@435 1191 _base_vtable_size = ClassLoader::compute_Object_vtable();
duke@435 1192 }
duke@435 1193
duke@435 1194
duke@435 1195 // %%% The Universe::flush_foo methods belong in CodeCache.
duke@435 1196
duke@435 1197 // Flushes compiled methods dependent on dependee.
duke@435 1198 void Universe::flush_dependents_on(instanceKlassHandle dependee) {
duke@435 1199 assert_lock_strong(Compile_lock);
duke@435 1200
duke@435 1201 if (CodeCache::number_of_nmethods_with_dependencies() == 0) return;
duke@435 1202
duke@435 1203 // CodeCache can only be updated by a thread_in_VM and they will all be
duke@435 1204 // stopped dring the safepoint so CodeCache will be safe to update without
duke@435 1205 // holding the CodeCache_lock.
duke@435 1206
twisti@3050 1207 KlassDepChange changes(dependee);
duke@435 1208
duke@435 1209 // Compute the dependent nmethods
duke@435 1210 if (CodeCache::mark_for_deoptimization(changes) > 0) {
duke@435 1211 // At least one nmethod has been marked for deoptimization
duke@435 1212 VM_Deoptimize op;
duke@435 1213 VMThread::execute(&op);
duke@435 1214 }
duke@435 1215 }
duke@435 1216
twisti@3050 1217 // Flushes compiled methods dependent on a particular CallSite
twisti@3050 1218 // instance when its target is different than the given MethodHandle.
twisti@3050 1219 void Universe::flush_dependents_on(Handle call_site, Handle method_handle) {
twisti@3050 1220 assert_lock_strong(Compile_lock);
twisti@3050 1221
twisti@3050 1222 if (CodeCache::number_of_nmethods_with_dependencies() == 0) return;
twisti@3050 1223
twisti@3050 1224 // CodeCache can only be updated by a thread_in_VM and they will all be
twisti@3050 1225 // stopped dring the safepoint so CodeCache will be safe to update without
twisti@3050 1226 // holding the CodeCache_lock.
twisti@3050 1227
twisti@3050 1228 CallSiteDepChange changes(call_site(), method_handle());
twisti@3050 1229
twisti@3050 1230 // Compute the dependent nmethods that have a reference to a
coleenp@4037 1231 // CallSite object. We use InstanceKlass::mark_dependent_nmethod
twisti@3050 1232 // directly instead of CodeCache::mark_for_deoptimization because we
twisti@3094 1233 // want dependents on the call site class only not all classes in
twisti@3094 1234 // the ContextStream.
twisti@3050 1235 int marked = 0;
twisti@3050 1236 {
twisti@3050 1237 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
coleenp@4037 1238 InstanceKlass* call_site_klass = InstanceKlass::cast(call_site->klass());
twisti@3050 1239 marked = call_site_klass->mark_dependent_nmethods(changes);
twisti@3050 1240 }
twisti@3050 1241 if (marked > 0) {
twisti@3050 1242 // At least one nmethod has been marked for deoptimization
twisti@3050 1243 VM_Deoptimize op;
twisti@3050 1244 VMThread::execute(&op);
twisti@3050 1245 }
twisti@3050 1246 }
twisti@3050 1247
duke@435 1248 #ifdef HOTSWAP
duke@435 1249 // Flushes compiled methods dependent on dependee in the evolutionary sense
duke@435 1250 void Universe::flush_evol_dependents_on(instanceKlassHandle ev_k_h) {
duke@435 1251 // --- Compile_lock is not held. However we are at a safepoint.
duke@435 1252 assert_locked_or_safepoint(Compile_lock);
duke@435 1253 if (CodeCache::number_of_nmethods_with_dependencies() == 0) return;
duke@435 1254
duke@435 1255 // CodeCache can only be updated by a thread_in_VM and they will all be
duke@435 1256 // stopped dring the safepoint so CodeCache will be safe to update without
duke@435 1257 // holding the CodeCache_lock.
duke@435 1258
duke@435 1259 // Compute the dependent nmethods
duke@435 1260 if (CodeCache::mark_for_evol_deoptimization(ev_k_h) > 0) {
duke@435 1261 // At least one nmethod has been marked for deoptimization
duke@435 1262
duke@435 1263 // All this already happens inside a VM_Operation, so we'll do all the work here.
duke@435 1264 // Stuff copied from VM_Deoptimize and modified slightly.
duke@435 1265
duke@435 1266 // We do not want any GCs to happen while we are in the middle of this VM operation
duke@435 1267 ResourceMark rm;
duke@435 1268 DeoptimizationMarker dm;
duke@435 1269
duke@435 1270 // Deoptimize all activations depending on marked nmethods
duke@435 1271 Deoptimization::deoptimize_dependents();
duke@435 1272
duke@435 1273 // Make the dependent methods not entrant (in VM_Deoptimize they are made zombies)
duke@435 1274 CodeCache::make_marked_nmethods_not_entrant();
duke@435 1275 }
duke@435 1276 }
duke@435 1277 #endif // HOTSWAP
duke@435 1278
duke@435 1279
duke@435 1280 // Flushes compiled methods dependent on dependee
duke@435 1281 void Universe::flush_dependents_on_method(methodHandle m_h) {
duke@435 1282 // --- Compile_lock is not held. However we are at a safepoint.
duke@435 1283 assert_locked_or_safepoint(Compile_lock);
duke@435 1284
duke@435 1285 // CodeCache can only be updated by a thread_in_VM and they will all be
duke@435 1286 // stopped dring the safepoint so CodeCache will be safe to update without
duke@435 1287 // holding the CodeCache_lock.
duke@435 1288
duke@435 1289 // Compute the dependent nmethods
duke@435 1290 if (CodeCache::mark_for_deoptimization(m_h()) > 0) {
duke@435 1291 // At least one nmethod has been marked for deoptimization
duke@435 1292
duke@435 1293 // All this already happens inside a VM_Operation, so we'll do all the work here.
duke@435 1294 // Stuff copied from VM_Deoptimize and modified slightly.
duke@435 1295
duke@435 1296 // We do not want any GCs to happen while we are in the middle of this VM operation
duke@435 1297 ResourceMark rm;
duke@435 1298 DeoptimizationMarker dm;
duke@435 1299
duke@435 1300 // Deoptimize all activations depending on marked nmethods
duke@435 1301 Deoptimization::deoptimize_dependents();
duke@435 1302
duke@435 1303 // Make the dependent methods not entrant (in VM_Deoptimize they are made zombies)
duke@435 1304 CodeCache::make_marked_nmethods_not_entrant();
duke@435 1305 }
duke@435 1306 }
duke@435 1307
tonyp@3269 1308 void Universe::print() {
tonyp@3269 1309 print_on(gclog_or_tty);
tonyp@3269 1310 }
duke@435 1311
tonyp@3269 1312 void Universe::print_on(outputStream* st, bool extended) {
duke@435 1313 st->print_cr("Heap");
tonyp@3269 1314 if (!extended) {
tonyp@3269 1315 heap()->print_on(st);
tonyp@3269 1316 } else {
tonyp@3269 1317 heap()->print_extended_on(st);
tonyp@3269 1318 }
duke@435 1319 }
duke@435 1320
duke@435 1321 void Universe::print_heap_at_SIGBREAK() {
duke@435 1322 if (PrintHeapAtSIGBREAK) {
duke@435 1323 MutexLocker hl(Heap_lock);
duke@435 1324 print_on(tty);
duke@435 1325 tty->cr();
duke@435 1326 tty->flush();
duke@435 1327 }
duke@435 1328 }
duke@435 1329
never@3571 1330 void Universe::print_heap_before_gc(outputStream* st, bool ignore_extended) {
duke@435 1331 st->print_cr("{Heap before GC invocations=%u (full %u):",
duke@435 1332 heap()->total_collections(),
duke@435 1333 heap()->total_full_collections());
never@3571 1334 if (!PrintHeapAtGCExtended || ignore_extended) {
tonyp@3269 1335 heap()->print_on(st);
tonyp@3269 1336 } else {
tonyp@3269 1337 heap()->print_extended_on(st);
tonyp@3269 1338 }
duke@435 1339 }
duke@435 1340
never@3571 1341 void Universe::print_heap_after_gc(outputStream* st, bool ignore_extended) {
duke@435 1342 st->print_cr("Heap after GC invocations=%u (full %u):",
duke@435 1343 heap()->total_collections(),
duke@435 1344 heap()->total_full_collections());
never@3571 1345 if (!PrintHeapAtGCExtended || ignore_extended) {
tonyp@3269 1346 heap()->print_on(st);
tonyp@3269 1347 } else {
tonyp@3269 1348 heap()->print_extended_on(st);
tonyp@3269 1349 }
duke@435 1350 st->print_cr("}");
duke@435 1351 }
duke@435 1352
stefank@5018 1353 void Universe::verify(VerifyOption option, const char* prefix, bool silent) {
duke@435 1354 // The use of _verify_in_progress is a temporary work around for
duke@435 1355 // 6320749. Don't bother with a creating a class to set and clear
duke@435 1356 // it since it is only used in this method and the control flow is
duke@435 1357 // straight forward.
duke@435 1358 _verify_in_progress = true;
duke@435 1359
duke@435 1360 COMPILER2_PRESENT(
duke@435 1361 assert(!DerivedPointerTable::is_active(),
duke@435 1362 "DPT should not be active during verification "
duke@435 1363 "(of thread stacks below)");
duke@435 1364 )
duke@435 1365
duke@435 1366 ResourceMark rm;
duke@435 1367 HandleMark hm; // Handles created during verification can be zapped
duke@435 1368 _verify_count++;
duke@435 1369
drchase@6680 1370 if (!silent) gclog_or_tty->print("%s", prefix);
duke@435 1371 if (!silent) gclog_or_tty->print("[Verifying ");
duke@435 1372 if (!silent) gclog_or_tty->print("threads ");
duke@435 1373 Threads::verify();
stefank@5018 1374 if (!silent) gclog_or_tty->print("heap ");
brutisso@3711 1375 heap()->verify(silent, option);
duke@435 1376 if (!silent) gclog_or_tty->print("syms ");
duke@435 1377 SymbolTable::verify();
duke@435 1378 if (!silent) gclog_or_tty->print("strs ");
duke@435 1379 StringTable::verify();
duke@435 1380 {
duke@435 1381 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
duke@435 1382 if (!silent) gclog_or_tty->print("zone ");
duke@435 1383 CodeCache::verify();
duke@435 1384 }
duke@435 1385 if (!silent) gclog_or_tty->print("dict ");
duke@435 1386 SystemDictionary::verify();
coleenp@4037 1387 #ifndef PRODUCT
coleenp@4037 1388 if (!silent) gclog_or_tty->print("cldg ");
coleenp@4037 1389 ClassLoaderDataGraph::verify();
coleenp@4037 1390 #endif
mgerdin@4264 1391 if (!silent) gclog_or_tty->print("metaspace chunks ");
mgerdin@4264 1392 MetaspaceAux::verify_free_chunks();
duke@435 1393 if (!silent) gclog_or_tty->print("hand ");
duke@435 1394 JNIHandles::verify();
duke@435 1395 if (!silent) gclog_or_tty->print("C-heap ");
duke@435 1396 os::check_heap();
never@2657 1397 if (!silent) gclog_or_tty->print("code cache ");
never@2657 1398 CodeCache::verify_oops();
duke@435 1399 if (!silent) gclog_or_tty->print_cr("]");
duke@435 1400
duke@435 1401 _verify_in_progress = false;
duke@435 1402 }
duke@435 1403
duke@435 1404 // Oop verification (see MacroAssembler::verify_oop)
duke@435 1405
duke@435 1406 static uintptr_t _verify_oop_data[2] = {0, (uintptr_t)-1};
duke@435 1407 static uintptr_t _verify_klass_data[2] = {0, (uintptr_t)-1};
duke@435 1408
duke@435 1409
mikael@4889 1410 #ifndef PRODUCT
mikael@4889 1411
duke@435 1412 static void calculate_verify_data(uintptr_t verify_data[2],
duke@435 1413 HeapWord* low_boundary,
duke@435 1414 HeapWord* high_boundary) {
duke@435 1415 assert(low_boundary < high_boundary, "bad interval");
duke@435 1416
duke@435 1417 // decide which low-order bits we require to be clear:
duke@435 1418 size_t alignSize = MinObjAlignmentInBytes;
kvn@1926 1419 size_t min_object_size = CollectedHeap::min_fill_size();
duke@435 1420
duke@435 1421 // make an inclusive limit:
duke@435 1422 uintptr_t max = (uintptr_t)high_boundary - min_object_size*wordSize;
duke@435 1423 uintptr_t min = (uintptr_t)low_boundary;
duke@435 1424 assert(min < max, "bad interval");
duke@435 1425 uintptr_t diff = max ^ min;
duke@435 1426
duke@435 1427 // throw away enough low-order bits to make the diff vanish
duke@435 1428 uintptr_t mask = (uintptr_t)(-1);
duke@435 1429 while ((mask & diff) != 0)
duke@435 1430 mask <<= 1;
duke@435 1431 uintptr_t bits = (min & mask);
duke@435 1432 assert(bits == (max & mask), "correct mask");
duke@435 1433 // check an intermediate value between min and max, just to make sure:
duke@435 1434 assert(bits == ((min + (max-min)/2) & mask), "correct mask");
duke@435 1435
duke@435 1436 // require address alignment, too:
duke@435 1437 mask |= (alignSize - 1);
duke@435 1438
duke@435 1439 if (!(verify_data[0] == 0 && verify_data[1] == (uintptr_t)-1)) {
duke@435 1440 assert(verify_data[0] == mask && verify_data[1] == bits, "mask stability");
duke@435 1441 }
duke@435 1442 verify_data[0] = mask;
duke@435 1443 verify_data[1] = bits;
duke@435 1444 }
duke@435 1445
duke@435 1446 // Oop verification (see MacroAssembler::verify_oop)
duke@435 1447
duke@435 1448 uintptr_t Universe::verify_oop_mask() {
duke@435 1449 MemRegion m = heap()->reserved_region();
duke@435 1450 calculate_verify_data(_verify_oop_data,
duke@435 1451 m.start(),
duke@435 1452 m.end());
duke@435 1453 return _verify_oop_data[0];
duke@435 1454 }
duke@435 1455
duke@435 1456
duke@435 1457
duke@435 1458 uintptr_t Universe::verify_oop_bits() {
duke@435 1459 verify_oop_mask();
duke@435 1460 return _verify_oop_data[1];
duke@435 1461 }
duke@435 1462
duke@435 1463 uintptr_t Universe::verify_mark_mask() {
duke@435 1464 return markOopDesc::lock_mask_in_place;
duke@435 1465 }
duke@435 1466
duke@435 1467 uintptr_t Universe::verify_mark_bits() {
duke@435 1468 intptr_t mask = verify_mark_mask();
duke@435 1469 intptr_t bits = (intptr_t)markOopDesc::prototype();
duke@435 1470 assert((bits & ~mask) == 0, "no stray header bits");
duke@435 1471 return bits;
duke@435 1472 }
duke@435 1473 #endif // PRODUCT
duke@435 1474
duke@435 1475
duke@435 1476 void Universe::compute_verify_oop_data() {
duke@435 1477 verify_oop_mask();
duke@435 1478 verify_oop_bits();
duke@435 1479 verify_mark_mask();
duke@435 1480 verify_mark_bits();
duke@435 1481 }
duke@435 1482
duke@435 1483
coleenp@5508 1484 void LatestMethodCache::init(Klass* k, Method* m) {
duke@435 1485 if (!UseSharedSpaces) {
duke@435 1486 _klass = k;
duke@435 1487 }
duke@435 1488 #ifndef PRODUCT
duke@435 1489 else {
duke@435 1490 // sharing initilization should have already set up _klass
duke@435 1491 assert(_klass != NULL, "just checking");
duke@435 1492 }
duke@435 1493 #endif
duke@435 1494
duke@435 1495 _method_idnum = m->method_idnum();
duke@435 1496 assert(_method_idnum >= 0, "sanity check");
duke@435 1497 }
duke@435 1498
duke@435 1499
coleenp@5508 1500 Method* LatestMethodCache::get_method() {
mullan@5242 1501 if (klass() == NULL) return NULL;
coleenp@4037 1502 InstanceKlass* ik = InstanceKlass::cast(klass());
coleenp@4037 1503 Method* m = ik->method_with_idnum(method_idnum());
duke@435 1504 assert(m != NULL, "sanity check");
duke@435 1505 return m;
duke@435 1506 }
duke@435 1507
duke@435 1508
duke@435 1509 #ifdef ASSERT
duke@435 1510 // Release dummy object(s) at bottom of heap
duke@435 1511 bool Universe::release_fullgc_alot_dummy() {
duke@435 1512 MutexLocker ml(FullGCALot_lock);
duke@435 1513 if (_fullgc_alot_dummy_array != NULL) {
duke@435 1514 if (_fullgc_alot_dummy_next >= _fullgc_alot_dummy_array->length()) {
duke@435 1515 // No more dummies to release, release entire array instead
duke@435 1516 _fullgc_alot_dummy_array = NULL;
duke@435 1517 return false;
duke@435 1518 }
duke@435 1519 if (!UseConcMarkSweepGC) {
duke@435 1520 // Release dummy at bottom of old generation
duke@435 1521 _fullgc_alot_dummy_array->obj_at_put(_fullgc_alot_dummy_next++, NULL);
duke@435 1522 }
duke@435 1523 // Release dummy at bottom of permanent generation
duke@435 1524 _fullgc_alot_dummy_array->obj_at_put(_fullgc_alot_dummy_next++, NULL);
duke@435 1525 }
duke@435 1526 return true;
duke@435 1527 }
duke@435 1528
duke@435 1529 #endif // ASSERT

mercurial