src/share/vm/memory/universe.cpp

Fri, 12 Oct 2012 10:49:39 -0700

author
collins
date
Fri, 12 Oct 2012 10:49:39 -0700
changeset 4167
9855b7e559ae
parent 4142
d8ce2825b193
parent 4165
fb19af007ffc
child 4168
5876f980ea19
permissions
-rw-r--r--

Merge

duke@435 1 /*
brutisso@3711 2 * Copyright (c) 1997, 2012, 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"
stefank@2314 29 #include "classfile/symbolTable.hpp"
stefank@2314 30 #include "classfile/systemDictionary.hpp"
stefank@2314 31 #include "classfile/vmSymbols.hpp"
stefank@2314 32 #include "code/codeCache.hpp"
stefank@2314 33 #include "code/dependencies.hpp"
stefank@2314 34 #include "gc_interface/collectedHeap.inline.hpp"
stefank@2314 35 #include "interpreter/interpreter.hpp"
stefank@2314 36 #include "memory/cardTableModRefBS.hpp"
stefank@2314 37 #include "memory/gcLocker.inline.hpp"
stefank@2314 38 #include "memory/genCollectedHeap.hpp"
stefank@2314 39 #include "memory/genRemSet.hpp"
stefank@2314 40 #include "memory/generation.hpp"
coleenp@4037 41 #include "memory/metadataFactory.hpp"
coleenp@4037 42 #include "memory/metaspaceShared.hpp"
stefank@2314 43 #include "memory/oopFactory.hpp"
stefank@2314 44 #include "memory/space.hpp"
stefank@2314 45 #include "memory/universe.hpp"
stefank@2314 46 #include "memory/universe.inline.hpp"
coleenp@4037 47 #include "oops/constantPool.hpp"
coleenp@4037 48 #include "oops/instanceClassLoaderKlass.hpp"
stefank@2314 49 #include "oops/instanceKlass.hpp"
never@2658 50 #include "oops/instanceMirrorKlass.hpp"
stefank@2314 51 #include "oops/instanceRefKlass.hpp"
stefank@2314 52 #include "oops/oop.inline.hpp"
stefank@2314 53 #include "oops/typeArrayKlass.hpp"
stefank@2314 54 #include "prims/jvmtiRedefineClassesTrace.hpp"
stefank@2314 55 #include "runtime/aprofiler.hpp"
stefank@2314 56 #include "runtime/arguments.hpp"
stefank@2314 57 #include "runtime/deoptimization.hpp"
stefank@2314 58 #include "runtime/fprofiler.hpp"
stefank@2314 59 #include "runtime/handles.inline.hpp"
stefank@2314 60 #include "runtime/init.hpp"
stefank@2314 61 #include "runtime/java.hpp"
stefank@2314 62 #include "runtime/javaCalls.hpp"
stefank@2314 63 #include "runtime/sharedRuntime.hpp"
stefank@2314 64 #include "runtime/synchronizer.hpp"
stefank@2314 65 #include "runtime/timer.hpp"
stefank@2314 66 #include "runtime/vm_operations.hpp"
stefank@2314 67 #include "services/memoryService.hpp"
stefank@2314 68 #include "utilities/copy.hpp"
stefank@2314 69 #include "utilities/events.hpp"
stefank@2314 70 #include "utilities/hashtable.inline.hpp"
stefank@2314 71 #include "utilities/preserveException.hpp"
stefank@2314 72 #ifdef TARGET_OS_FAMILY_linux
stefank@2314 73 # include "thread_linux.inline.hpp"
stefank@2314 74 #endif
stefank@2314 75 #ifdef TARGET_OS_FAMILY_solaris
stefank@2314 76 # include "thread_solaris.inline.hpp"
stefank@2314 77 #endif
stefank@2314 78 #ifdef TARGET_OS_FAMILY_windows
stefank@2314 79 # include "thread_windows.inline.hpp"
stefank@2314 80 #endif
never@3156 81 #ifdef TARGET_OS_FAMILY_bsd
never@3156 82 # include "thread_bsd.inline.hpp"
never@3156 83 #endif
stefank@2314 84 #ifndef SERIALGC
stefank@2314 85 #include "gc_implementation/concurrentMarkSweep/cmsAdaptiveSizePolicy.hpp"
stefank@2314 86 #include "gc_implementation/concurrentMarkSweep/cmsCollectorPolicy.hpp"
stefank@2314 87 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
stefank@2314 88 #include "gc_implementation/g1/g1CollectorPolicy.hpp"
stefank@2314 89 #include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp"
stefank@2314 90 #endif
duke@435 91
duke@435 92 // Known objects
coleenp@4037 93 Klass* Universe::_boolArrayKlassObj = NULL;
coleenp@4037 94 Klass* Universe::_byteArrayKlassObj = NULL;
coleenp@4037 95 Klass* Universe::_charArrayKlassObj = NULL;
coleenp@4037 96 Klass* Universe::_intArrayKlassObj = NULL;
coleenp@4037 97 Klass* Universe::_shortArrayKlassObj = NULL;
coleenp@4037 98 Klass* Universe::_longArrayKlassObj = NULL;
coleenp@4037 99 Klass* Universe::_singleArrayKlassObj = NULL;
coleenp@4037 100 Klass* Universe::_doubleArrayKlassObj = NULL;
coleenp@4037 101 Klass* Universe::_typeArrayKlassObjs[T_VOID+1] = { NULL /*, NULL...*/ };
coleenp@4037 102 Klass* Universe::_objectArrayKlassObj = NULL;
jcoomes@916 103 oop Universe::_int_mirror = NULL;
jcoomes@916 104 oop Universe::_float_mirror = NULL;
jcoomes@916 105 oop Universe::_double_mirror = NULL;
jcoomes@916 106 oop Universe::_byte_mirror = NULL;
jcoomes@916 107 oop Universe::_bool_mirror = NULL;
jcoomes@916 108 oop Universe::_char_mirror = NULL;
jcoomes@916 109 oop Universe::_long_mirror = NULL;
jcoomes@916 110 oop Universe::_short_mirror = NULL;
jcoomes@916 111 oop Universe::_void_mirror = NULL;
jcoomes@916 112 oop Universe::_mirrors[T_VOID+1] = { NULL /*, NULL...*/ };
duke@435 113 oop Universe::_main_thread_group = NULL;
duke@435 114 oop Universe::_system_thread_group = NULL;
duke@435 115 objArrayOop Universe::_the_empty_class_klass_array = NULL;
coleenp@4037 116 Array<Klass*>* Universe::_the_array_interfaces_array = NULL;
never@1515 117 oop Universe::_the_null_string = NULL;
never@1515 118 oop Universe::_the_min_jint_string = NULL;
duke@435 119 LatestMethodOopCache* Universe::_finalizer_register_cache = NULL;
coleenp@4062 120 LatestMethodOopCache* Universe::_loader_addClass_cache = NULL;
duke@435 121 ActiveMethodOopsCache* Universe::_reflect_invoke_cache = NULL;
duke@435 122 oop Universe::_out_of_memory_error_java_heap = NULL;
duke@435 123 oop Universe::_out_of_memory_error_perm_gen = NULL;
duke@435 124 oop Universe::_out_of_memory_error_array_size = NULL;
duke@435 125 oop Universe::_out_of_memory_error_gc_overhead_limit = NULL;
duke@435 126 objArrayOop Universe::_preallocated_out_of_memory_error_array = NULL;
duke@435 127 volatile jint Universe::_preallocated_out_of_memory_error_avail_count = 0;
duke@435 128 bool Universe::_verify_in_progress = false;
duke@435 129 oop Universe::_null_ptr_exception_instance = NULL;
duke@435 130 oop Universe::_arithmetic_exception_instance = NULL;
duke@435 131 oop Universe::_virtual_machine_error_instance = NULL;
duke@435 132 oop Universe::_vm_exception = NULL;
coleenp@4037 133 Array<int>* Universe::_the_empty_int_array = NULL;
coleenp@4037 134 Array<u2>* Universe::_the_empty_short_array = NULL;
coleenp@4037 135 Array<Klass*>* Universe::_the_empty_klass_array = NULL;
coleenp@4037 136 Array<Method*>* Universe::_the_empty_method_array = NULL;
duke@435 137
duke@435 138 // These variables are guarded by FullGCALot_lock.
duke@435 139 debug_only(objArrayOop Universe::_fullgc_alot_dummy_array = NULL;)
duke@435 140 debug_only(int Universe::_fullgc_alot_dummy_next = 0;)
duke@435 141
duke@435 142 // Heap
duke@435 143 int Universe::_verify_count = 0;
duke@435 144
duke@435 145 int Universe::_base_vtable_size = 0;
duke@435 146 bool Universe::_bootstrapping = false;
duke@435 147 bool Universe::_fully_initialized = false;
duke@435 148
duke@435 149 size_t Universe::_heap_capacity_at_last_gc;
ysr@888 150 size_t Universe::_heap_used_at_last_gc = 0;
duke@435 151
duke@435 152 CollectedHeap* Universe::_collectedHeap = NULL;
kvn@1077 153
kvn@1077 154 NarrowOopStruct Universe::_narrow_oop = { NULL, 0, true };
duke@435 155
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);
duke@435 189 f->do_oop((oop*)&_out_of_memory_error_perm_gen);
duke@435 190 f->do_oop((oop*)&_out_of_memory_error_array_size);
duke@435 191 f->do_oop((oop*)&_out_of_memory_error_gc_overhead_limit);
duke@435 192 f->do_oop((oop*)&_preallocated_out_of_memory_error_array);
duke@435 193 f->do_oop((oop*)&_null_ptr_exception_instance);
duke@435 194 f->do_oop((oop*)&_arithmetic_exception_instance);
duke@435 195 f->do_oop((oop*)&_virtual_machine_error_instance);
duke@435 196 f->do_oop((oop*)&_main_thread_group);
duke@435 197 f->do_oop((oop*)&_system_thread_group);
duke@435 198 f->do_oop((oop*)&_vm_exception);
duke@435 199 debug_only(f->do_oop((oop*)&_fullgc_alot_dummy_array);)
duke@435 200 }
duke@435 201
coleenp@4037 202 // Serialize metadata in and out of CDS archive, not oops.
coleenp@4037 203 void Universe::serialize(SerializeClosure* f, bool do_all) {
coleenp@4037 204
coleenp@4037 205 f->do_ptr((void**)&_boolArrayKlassObj);
coleenp@4037 206 f->do_ptr((void**)&_byteArrayKlassObj);
coleenp@4037 207 f->do_ptr((void**)&_charArrayKlassObj);
coleenp@4037 208 f->do_ptr((void**)&_intArrayKlassObj);
coleenp@4037 209 f->do_ptr((void**)&_shortArrayKlassObj);
coleenp@4037 210 f->do_ptr((void**)&_longArrayKlassObj);
coleenp@4037 211 f->do_ptr((void**)&_singleArrayKlassObj);
coleenp@4037 212 f->do_ptr((void**)&_doubleArrayKlassObj);
coleenp@4037 213 f->do_ptr((void**)&_objectArrayKlassObj);
coleenp@4037 214
coleenp@4037 215 {
coleenp@4037 216 for (int i = 0; i < T_VOID+1; i++) {
coleenp@4037 217 if (_typeArrayKlassObjs[i] != NULL) {
coleenp@4037 218 assert(i >= T_BOOLEAN, "checking");
coleenp@4037 219 f->do_ptr((void**)&_typeArrayKlassObjs[i]);
coleenp@4037 220 } else if (do_all) {
coleenp@4037 221 f->do_ptr((void**)&_typeArrayKlassObjs[i]);
coleenp@4037 222 }
coleenp@4037 223 }
coleenp@4037 224 }
coleenp@4037 225
coleenp@4037 226 f->do_ptr((void**)&_the_array_interfaces_array);
coleenp@4037 227 f->do_ptr((void**)&_the_empty_int_array);
coleenp@4037 228 f->do_ptr((void**)&_the_empty_short_array);
coleenp@4037 229 f->do_ptr((void**)&_the_empty_method_array);
coleenp@4037 230 f->do_ptr((void**)&_the_empty_klass_array);
coleenp@4037 231 _finalizer_register_cache->serialize(f);
coleenp@4062 232 _loader_addClass_cache->serialize(f);
coleenp@4037 233 _reflect_invoke_cache->serialize(f);
coleenp@4037 234 }
duke@435 235
duke@435 236 void Universe::check_alignment(uintx size, uintx alignment, const char* name) {
duke@435 237 if (size < alignment || size % alignment != 0) {
duke@435 238 ResourceMark rm;
duke@435 239 stringStream st;
duke@435 240 st.print("Size of %s (%ld bytes) must be aligned to %ld bytes", name, size, alignment);
duke@435 241 char* error = st.as_string();
duke@435 242 vm_exit_during_initialization(error);
duke@435 243 }
duke@435 244 }
duke@435 245
coleenp@4037 246 void initialize_basic_type_klass(Klass* k, TRAPS) {
coleenp@4037 247 Klass* ok = SystemDictionary::Object_klass();
coleenp@4037 248 if (UseSharedSpaces) {
coleenp@4037 249 assert(k->super() == ok, "u3");
coleenp@4037 250 k->restore_unshareable_info(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.
duke@435 347 Klass::cast(_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
duke@435 419 }
duke@435 420
coleenp@4037 421 // CDS support for patching vtables in metadata in the shared archive.
coleenp@4037 422 // All types inherited from Metadata have vtables, but not types inherited
coleenp@4037 423 // from MetaspaceObj, because the latter does not have virtual functions.
coleenp@4037 424 // If the metadata type has a vtable, it cannot be shared in the read-only
coleenp@4037 425 // section of the CDS archive, because the vtable pointer is patched.
coleenp@2497 426 static inline void* dereference(void* addr) {
coleenp@2497 427 return *(void**)addr;
duke@435 428 }
duke@435 429
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@2497 432 void* vtable = dereference(o);
coleenp@2497 433 assert(dereference(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;
coleenp@4037 542 for (KlassHandle s_h(THREAD, ik->subklass()); s_h() != NULL; s_h = (THREAD, s_h()->next_sibling())) {
duke@435 543 reinitialize_vtable_of(s_h, CHECK);
duke@435 544 }
duke@435 545 }
duke@435 546 }
duke@435 547
duke@435 548
coleenp@4037 549 void initialize_itable_for_klass(Klass* k, TRAPS) {
coleenp@4037 550 InstanceKlass::cast(k)->itable()->initialize_itable(false, CHECK);
duke@435 551 }
duke@435 552
duke@435 553
duke@435 554 void Universe::reinitialize_itables(TRAPS) {
duke@435 555 SystemDictionary::classes_do(initialize_itable_for_klass, CHECK);
duke@435 556
duke@435 557 }
duke@435 558
duke@435 559
duke@435 560 bool Universe::on_page_boundary(void* addr) {
duke@435 561 return ((uintptr_t) addr) % os::vm_page_size() == 0;
duke@435 562 }
duke@435 563
duke@435 564
duke@435 565 bool Universe::should_fill_in_stack_trace(Handle throwable) {
duke@435 566 // never attempt to fill in the stack trace of preallocated errors that do not have
duke@435 567 // backtrace. These errors are kept alive forever and may be "re-used" when all
duke@435 568 // preallocated errors with backtrace have been consumed. Also need to avoid
duke@435 569 // a potential loop which could happen if an out of memory occurs when attempting
duke@435 570 // to allocate the backtrace.
duke@435 571 return ((throwable() != Universe::_out_of_memory_error_java_heap) &&
duke@435 572 (throwable() != Universe::_out_of_memory_error_perm_gen) &&
duke@435 573 (throwable() != Universe::_out_of_memory_error_array_size) &&
duke@435 574 (throwable() != Universe::_out_of_memory_error_gc_overhead_limit));
duke@435 575 }
duke@435 576
duke@435 577
duke@435 578 oop Universe::gen_out_of_memory_error(oop default_err) {
duke@435 579 // generate an out of memory error:
duke@435 580 // - if there is a preallocated error with backtrace available then return it wth
duke@435 581 // a filled in stack trace.
duke@435 582 // - if there are no preallocated errors with backtrace available then return
duke@435 583 // an error without backtrace.
duke@435 584 int next;
duke@435 585 if (_preallocated_out_of_memory_error_avail_count > 0) {
duke@435 586 next = (int)Atomic::add(-1, &_preallocated_out_of_memory_error_avail_count);
duke@435 587 assert(next < (int)PreallocatedOutOfMemoryErrorCount, "avail count is corrupt");
duke@435 588 } else {
duke@435 589 next = -1;
duke@435 590 }
duke@435 591 if (next < 0) {
duke@435 592 // all preallocated errors have been used.
duke@435 593 // return default
duke@435 594 return default_err;
duke@435 595 } else {
duke@435 596 // get the error object at the slot and set set it to NULL so that the
duke@435 597 // array isn't keeping it alive anymore.
duke@435 598 oop exc = preallocated_out_of_memory_errors()->obj_at(next);
duke@435 599 assert(exc != NULL, "slot has been used already");
duke@435 600 preallocated_out_of_memory_errors()->obj_at_put(next, NULL);
duke@435 601
duke@435 602 // use the message from the default error
duke@435 603 oop msg = java_lang_Throwable::message(default_err);
duke@435 604 assert(msg != NULL, "no message");
duke@435 605 java_lang_Throwable::set_message(exc, msg);
duke@435 606
duke@435 607 // populate the stack trace and return it.
duke@435 608 java_lang_Throwable::fill_in_stack_trace_of_preallocated_backtrace(exc);
duke@435 609 return exc;
duke@435 610 }
duke@435 611 }
duke@435 612
duke@435 613 static intptr_t non_oop_bits = 0;
duke@435 614
duke@435 615 void* Universe::non_oop_word() {
duke@435 616 // Neither the high bits nor the low bits of this value is allowed
duke@435 617 // to look like (respectively) the high or low bits of a real oop.
duke@435 618 //
duke@435 619 // High and low are CPU-specific notions, but low always includes
duke@435 620 // the low-order bit. Since oops are always aligned at least mod 4,
duke@435 621 // setting the low-order bit will ensure that the low half of the
duke@435 622 // word will never look like that of a real oop.
duke@435 623 //
duke@435 624 // Using the OS-supplied non-memory-address word (usually 0 or -1)
duke@435 625 // will take care of the high bits, however many there are.
duke@435 626
duke@435 627 if (non_oop_bits == 0) {
duke@435 628 non_oop_bits = (intptr_t)os::non_memory_address_word() | 1;
duke@435 629 }
duke@435 630
duke@435 631 return (void*)non_oop_bits;
duke@435 632 }
duke@435 633
duke@435 634 jint universe_init() {
duke@435 635 assert(!Universe::_fully_initialized, "called after initialize_vtables");
duke@435 636 guarantee(1 << LogHeapWordSize == sizeof(HeapWord),
duke@435 637 "LogHeapWordSize is incorrect.");
duke@435 638 guarantee(sizeof(oop) >= sizeof(HeapWord), "HeapWord larger than oop?");
duke@435 639 guarantee(sizeof(oop) % sizeof(HeapWord) == 0,
coleenp@548 640 "oop size is not not a multiple of HeapWord size");
duke@435 641 TraceTime timer("Genesis", TraceStartupTime);
duke@435 642 GC_locker::lock(); // do not allow gc during bootstrapping
duke@435 643 JavaClasses::compute_hard_coded_offsets();
duke@435 644
duke@435 645 jint status = Universe::initialize_heap();
duke@435 646 if (status != JNI_OK) {
duke@435 647 return status;
duke@435 648 }
duke@435 649
coleenp@4037 650 // Create memory for metadata. Must be after initializing heap for
coleenp@4037 651 // DumpSharedSpaces.
coleenp@4037 652 ClassLoaderData::init_null_class_loader_data();
coleenp@4037 653
coleenp@4037 654 // We have a heap so create the Method* caches before
coleenp@4037 655 // Metaspace::initialize_shared_spaces() tries to populate them.
duke@435 656 Universe::_finalizer_register_cache = new LatestMethodOopCache();
coleenp@4062 657 Universe::_loader_addClass_cache = new LatestMethodOopCache();
duke@435 658 Universe::_reflect_invoke_cache = new ActiveMethodOopsCache();
duke@435 659
duke@435 660 if (UseSharedSpaces) {
duke@435 661 // Read the data structures supporting the shared spaces (shared
duke@435 662 // system dictionary, symbol table, etc.). After that, access to
duke@435 663 // the file (other than the mapped regions) is no longer needed, and
duke@435 664 // the file is closed. Closing the file does not affect the
duke@435 665 // currently mapped regions.
coleenp@4037 666 MetaspaceShared::initialize_shared_spaces();
coleenp@4037 667 StringTable::create_table();
duke@435 668 } else {
duke@435 669 SymbolTable::create_table();
duke@435 670 StringTable::create_table();
duke@435 671 ClassLoader::create_package_info_table();
duke@435 672 }
duke@435 673
duke@435 674 return JNI_OK;
duke@435 675 }
duke@435 676
kvn@1077 677 // Choose the heap base address and oop encoding mode
kvn@1077 678 // when compressed oops are used:
kvn@1077 679 // Unscaled - Use 32-bits oops without encoding when
kvn@1077 680 // NarrowOopHeapBaseMin + heap_size < 4Gb
kvn@1077 681 // ZeroBased - Use zero based compressed oops with encoding when
kvn@1077 682 // NarrowOopHeapBaseMin + heap_size < 32Gb
kvn@1077 683 // HeapBased - Use compressed oops with heap base + encoding.
kvn@1077 684
kvn@1077 685 // 4Gb
kvn@1077 686 static const uint64_t NarrowOopHeapMax = (uint64_t(max_juint) + 1);
kvn@1077 687 // 32Gb
kvn@1926 688 // OopEncodingHeapMax == NarrowOopHeapMax << LogMinObjAlignmentInBytes;
kvn@1077 689
kvn@1077 690 char* Universe::preferred_heap_base(size_t heap_size, NARROW_OOP_MODE mode) {
kvn@1492 691 size_t base = 0;
kvn@1077 692 #ifdef _LP64
kvn@1077 693 if (UseCompressedOops) {
kvn@1077 694 assert(mode == UnscaledNarrowOop ||
kvn@1077 695 mode == ZeroBasedNarrowOop ||
kvn@1077 696 mode == HeapBasedNarrowOop, "mode is invalid");
kvn@1492 697 const size_t total_size = heap_size + HeapBaseMinAddress;
kvn@1357 698 // Return specified base for the first request.
kvn@1357 699 if (!FLAG_IS_DEFAULT(HeapBaseMinAddress) && (mode == UnscaledNarrowOop)) {
kvn@1492 700 base = HeapBaseMinAddress;
kvn@1492 701 } else if (total_size <= OopEncodingHeapMax && (mode != HeapBasedNarrowOop)) {
kvn@1077 702 if (total_size <= NarrowOopHeapMax && (mode == UnscaledNarrowOop) &&
kvn@1077 703 (Universe::narrow_oop_shift() == 0)) {
kvn@1077 704 // Use 32-bits oops without encoding and
kvn@1077 705 // place heap's top on the 4Gb boundary
kvn@1492 706 base = (NarrowOopHeapMax - heap_size);
kvn@1077 707 } else {
kvn@1077 708 // Can't reserve with NarrowOopShift == 0
kvn@1077 709 Universe::set_narrow_oop_shift(LogMinObjAlignmentInBytes);
kvn@1077 710 if (mode == UnscaledNarrowOop ||
kvn@1077 711 mode == ZeroBasedNarrowOop && total_size <= NarrowOopHeapMax) {
kvn@1077 712 // Use zero based compressed oops with encoding and
kvn@1077 713 // place heap's top on the 32Gb boundary in case
kvn@1077 714 // total_size > 4Gb or failed to reserve below 4Gb.
kvn@1492 715 base = (OopEncodingHeapMax - heap_size);
kvn@1077 716 }
kvn@1077 717 }
kvn@1077 718 } else {
kvn@1077 719 // Can't reserve below 32Gb.
kvn@1077 720 Universe::set_narrow_oop_shift(LogMinObjAlignmentInBytes);
kvn@1077 721 }
kvn@1492 722 // Set narrow_oop_base and narrow_oop_use_implicit_null_checks
kvn@1492 723 // used in ReservedHeapSpace() constructors.
kvn@1492 724 // The final values will be set in initialize_heap() below.
kvn@1492 725 if (base != 0 && (base + heap_size) <= OopEncodingHeapMax) {
kvn@1492 726 // Use zero based compressed oops
kvn@1492 727 Universe::set_narrow_oop_base(NULL);
kvn@1492 728 // Don't need guard page for implicit checks in indexed
kvn@1492 729 // addressing mode with zero based Compressed Oops.
kvn@1492 730 Universe::set_narrow_oop_use_implicit_null_checks(true);
kvn@1492 731 } else {
kvn@1492 732 // Set to a non-NULL value so the ReservedSpace ctor computes
kvn@1492 733 // the correct no-access prefix.
kvn@1492 734 // The final value will be set in initialize_heap() below.
kvn@1492 735 Universe::set_narrow_oop_base((address)NarrowOopHeapMax);
kvn@1492 736 #ifdef _WIN64
kvn@1492 737 if (UseLargePages) {
kvn@1492 738 // Cannot allocate guard pages for implicit checks in indexed
kvn@1492 739 // addressing mode when large pages are specified on windows.
kvn@1492 740 Universe::set_narrow_oop_use_implicit_null_checks(false);
kvn@1492 741 }
kvn@1492 742 #endif // _WIN64
kvn@1492 743 }
kvn@1077 744 }
kvn@1077 745 #endif
kvn@1492 746 return (char*)base; // also return NULL (don't care) for 32-bit VM
kvn@1077 747 }
kvn@1077 748
duke@435 749 jint Universe::initialize_heap() {
duke@435 750
duke@435 751 if (UseParallelGC) {
duke@435 752 #ifndef SERIALGC
duke@435 753 Universe::_collectedHeap = new ParallelScavengeHeap();
duke@435 754 #else // SERIALGC
jprovino@4165 755 fatal("UseParallelGC not supported in this VM.");
duke@435 756 #endif // SERIALGC
duke@435 757
ysr@777 758 } else if (UseG1GC) {
ysr@777 759 #ifndef SERIALGC
tonyp@3209 760 G1CollectorPolicy* g1p = new G1CollectorPolicy();
ysr@777 761 G1CollectedHeap* g1h = new G1CollectedHeap(g1p);
ysr@777 762 Universe::_collectedHeap = g1h;
ysr@777 763 #else // SERIALGC
ysr@777 764 fatal("UseG1GC not supported in java kernel vm.");
ysr@777 765 #endif // SERIALGC
ysr@777 766
duke@435 767 } else {
duke@435 768 GenCollectorPolicy *gc_policy;
duke@435 769
duke@435 770 if (UseSerialGC) {
duke@435 771 gc_policy = new MarkSweepPolicy();
duke@435 772 } else if (UseConcMarkSweepGC) {
duke@435 773 #ifndef SERIALGC
duke@435 774 if (UseAdaptiveSizePolicy) {
duke@435 775 gc_policy = new ASConcurrentMarkSweepPolicy();
duke@435 776 } else {
duke@435 777 gc_policy = new ConcurrentMarkSweepPolicy();
duke@435 778 }
duke@435 779 #else // SERIALGC
jprovino@4165 780 fatal("UseConcMarkSweepGC not supported in this VM.");
duke@435 781 #endif // SERIALGC
duke@435 782 } else { // default old generation
duke@435 783 gc_policy = new MarkSweepPolicy();
duke@435 784 }
duke@435 785
duke@435 786 Universe::_collectedHeap = new GenCollectedHeap(gc_policy);
duke@435 787 }
duke@435 788
duke@435 789 jint status = Universe::heap()->initialize();
duke@435 790 if (status != JNI_OK) {
duke@435 791 return status;
duke@435 792 }
kvn@1077 793
kvn@1077 794 #ifdef _LP64
coleenp@548 795 if (UseCompressedOops) {
coleenp@548 796 // Subtract a page because something can get allocated at heap base.
coleenp@548 797 // This also makes implicit null checking work, because the
coleenp@548 798 // memory+1 page below heap_base needs to cause a signal.
coleenp@548 799 // See needs_explicit_null_check.
coleenp@548 800 // Only set the heap base for compressed oops because it indicates
coleenp@548 801 // compressed oops for pstack code.
kvn@2403 802 bool verbose = PrintCompressedOopsMode || (PrintMiscellaneous && Verbose);
kvn@2403 803 if (verbose) {
kvn@1077 804 tty->cr();
kvn@2305 805 tty->print("heap address: " PTR_FORMAT ", size: " SIZE_FORMAT " MB",
kvn@2305 806 Universe::heap()->base(), Universe::heap()->reserved_region().byte_size()/M);
kvn@1077 807 }
kvn@1077 808 if ((uint64_t)Universe::heap()->reserved_region().end() > OopEncodingHeapMax) {
kvn@1077 809 // Can't reserve heap below 32Gb.
kvn@1077 810 Universe::set_narrow_oop_base(Universe::heap()->base() - os::vm_page_size());
kvn@1077 811 Universe::set_narrow_oop_shift(LogMinObjAlignmentInBytes);
kvn@2403 812 if (verbose) {
kvn@1077 813 tty->print(", Compressed Oops with base: "PTR_FORMAT, Universe::narrow_oop_base());
kvn@1077 814 }
kvn@1077 815 } else {
kvn@1077 816 Universe::set_narrow_oop_base(0);
kvn@2403 817 if (verbose) {
kvn@1077 818 tty->print(", zero based Compressed Oops");
kvn@1077 819 }
kvn@1077 820 #ifdef _WIN64
kvn@1077 821 if (!Universe::narrow_oop_use_implicit_null_checks()) {
kvn@1077 822 // Don't need guard page for implicit checks in indexed addressing
kvn@1077 823 // mode with zero based Compressed Oops.
kvn@1077 824 Universe::set_narrow_oop_use_implicit_null_checks(true);
kvn@1077 825 }
kvn@1077 826 #endif // _WIN64
kvn@1077 827 if((uint64_t)Universe::heap()->reserved_region().end() > NarrowOopHeapMax) {
kvn@1077 828 // Can't reserve heap below 4Gb.
kvn@1077 829 Universe::set_narrow_oop_shift(LogMinObjAlignmentInBytes);
kvn@1077 830 } else {
kvn@1357 831 Universe::set_narrow_oop_shift(0);
kvn@2403 832 if (verbose) {
kvn@1077 833 tty->print(", 32-bits Oops");
kvn@1077 834 }
kvn@1077 835 }
kvn@1077 836 }
kvn@2403 837 if (verbose) {
kvn@1077 838 tty->cr();
kvn@1077 839 tty->cr();
kvn@1077 840 }
coleenp@548 841 }
kvn@1077 842 assert(Universe::narrow_oop_base() == (Universe::heap()->base() - os::vm_page_size()) ||
kvn@1077 843 Universe::narrow_oop_base() == NULL, "invalid value");
kvn@1077 844 assert(Universe::narrow_oop_shift() == LogMinObjAlignmentInBytes ||
kvn@1077 845 Universe::narrow_oop_shift() == 0, "invalid value");
kvn@1077 846 #endif
duke@435 847
duke@435 848 // We will never reach the CATCH below since Exceptions::_throw will cause
duke@435 849 // the VM to exit if an exception is thrown during initialization
duke@435 850
duke@435 851 if (UseTLAB) {
duke@435 852 assert(Universe::heap()->supports_tlab_allocation(),
duke@435 853 "Should support thread-local allocation buffers");
duke@435 854 ThreadLocalAllocBuffer::startup_initialization();
duke@435 855 }
duke@435 856 return JNI_OK;
duke@435 857 }
duke@435 858
coleenp@4037 859
coleenp@4037 860 // Reserve the Java heap, which is now the same for all GCs.
coleenp@4037 861 ReservedSpace Universe::reserve_heap(size_t heap_size, size_t alignment) {
coleenp@4037 862 // Add in the class metaspace area so the classes in the headers can
coleenp@4037 863 // be compressed the same as instances.
coleenp@4048 864 size_t total_reserved = align_size_up(heap_size + ClassMetaspaceSize, alignment);
coleenp@4037 865 char* addr = Universe::preferred_heap_base(total_reserved, Universe::UnscaledNarrowOop);
coleenp@4037 866
coleenp@4037 867 ReservedHeapSpace total_rs(total_reserved, alignment, UseLargePages, addr);
coleenp@4037 868
coleenp@4037 869 if (UseCompressedOops) {
coleenp@4037 870 if (addr != NULL && !total_rs.is_reserved()) {
coleenp@4037 871 // Failed to reserve at specified address - the requested memory
coleenp@4037 872 // region is taken already, for example, by 'java' launcher.
coleenp@4037 873 // Try again to reserver heap higher.
coleenp@4037 874 addr = Universe::preferred_heap_base(total_reserved, Universe::ZeroBasedNarrowOop);
coleenp@4037 875
coleenp@4037 876 ReservedHeapSpace total_rs0(total_reserved, alignment,
coleenp@4037 877 UseLargePages, addr);
coleenp@4037 878
coleenp@4037 879 if (addr != NULL && !total_rs0.is_reserved()) {
coleenp@4037 880 // Failed to reserve at specified address again - give up.
coleenp@4037 881 addr = Universe::preferred_heap_base(total_reserved, Universe::HeapBasedNarrowOop);
coleenp@4037 882 assert(addr == NULL, "");
coleenp@4037 883
coleenp@4037 884 ReservedHeapSpace total_rs1(total_reserved, alignment,
coleenp@4037 885 UseLargePages, addr);
coleenp@4037 886 total_rs = total_rs1;
coleenp@4037 887 } else {
coleenp@4037 888 total_rs = total_rs0;
coleenp@4037 889 }
coleenp@4037 890 }
coleenp@4037 891 }
coleenp@4037 892
coleenp@4037 893 if (!total_rs.is_reserved()) {
coleenp@4037 894 vm_exit_during_initialization(err_msg("Could not reserve enough space for object heap %d bytes", total_reserved));
coleenp@4037 895 return total_rs;
coleenp@4037 896 }
coleenp@4037 897
coleenp@4037 898 // Split the reserved space into main Java heap and a space for classes
coleenp@4037 899 // so that they can be compressed using the same algorithm as compressed oops
coleenp@4037 900 ReservedSpace heap_rs = total_rs.first_part(heap_size);
coleenp@4037 901 ReservedSpace class_rs = total_rs.last_part(heap_size, alignment);
coleenp@4037 902 Metaspace::initialize_class_space(class_rs);
coleenp@4037 903 return heap_rs;
coleenp@4037 904 }
coleenp@4037 905
coleenp@4037 906
duke@435 907 // It's the caller's repsonsibility to ensure glitch-freedom
duke@435 908 // (if required).
duke@435 909 void Universe::update_heap_info_at_gc() {
duke@435 910 _heap_capacity_at_last_gc = heap()->capacity();
duke@435 911 _heap_used_at_last_gc = heap()->used();
duke@435 912 }
duke@435 913
duke@435 914
duke@435 915
duke@435 916 void universe2_init() {
duke@435 917 EXCEPTION_MARK;
duke@435 918 Universe::genesis(CATCH);
duke@435 919 // Although we'd like to verify here that the state of the heap
duke@435 920 // is good, we can't because the main thread has not yet added
duke@435 921 // itself to the threads list (so, using current interfaces
duke@435 922 // we can't "fill" its TLAB), unless TLABs are disabled.
duke@435 923 if (VerifyBeforeGC && !UseTLAB &&
duke@435 924 Universe::heap()->total_collections() >= VerifyGCStartAt) {
duke@435 925 Universe::heap()->prepare_for_verify();
duke@435 926 Universe::verify(); // make sure we're starting with a clean slate
duke@435 927 }
duke@435 928 }
duke@435 929
duke@435 930
duke@435 931 // This function is defined in JVM.cpp
duke@435 932 extern void initialize_converter_functions();
duke@435 933
duke@435 934 bool universe_post_init() {
ysr@2301 935 assert(!is_init_completed(), "Error: initialization not yet completed!");
duke@435 936 Universe::_fully_initialized = true;
duke@435 937 EXCEPTION_MARK;
duke@435 938 { ResourceMark rm;
duke@435 939 Interpreter::initialize(); // needed for interpreter entry points
duke@435 940 if (!UseSharedSpaces) {
coleenp@4037 941 HandleMark hm(THREAD);
never@1577 942 KlassHandle ok_h(THREAD, SystemDictionary::Object_klass());
duke@435 943 Universe::reinitialize_vtable_of(ok_h, CHECK_false);
duke@435 944 Universe::reinitialize_itables(CHECK_false);
duke@435 945 }
duke@435 946 }
duke@435 947
coleenp@4037 948 HandleMark hm(THREAD);
coleenp@4037 949 Klass* k;
duke@435 950 instanceKlassHandle k_h;
duke@435 951 // Setup preallocated empty java.lang.Class array
never@1577 952 Universe::_the_empty_class_klass_array = oopFactory::new_objArray(SystemDictionary::Class_klass(), 0, CHECK_false);
coleenp@4037 953
duke@435 954 // Setup preallocated OutOfMemoryError errors
coleenp@2497 955 k = SystemDictionary::resolve_or_fail(vmSymbols::java_lang_OutOfMemoryError(), true, CHECK_false);
duke@435 956 k_h = instanceKlassHandle(THREAD, k);
coleenp@4037 957 Universe::_out_of_memory_error_java_heap = k_h->allocate_instance(CHECK_false);
coleenp@4037 958 Universe::_out_of_memory_error_perm_gen = k_h->allocate_instance(CHECK_false);
coleenp@4037 959 Universe::_out_of_memory_error_array_size = k_h->allocate_instance(CHECK_false);
duke@435 960 Universe::_out_of_memory_error_gc_overhead_limit =
coleenp@4037 961 k_h->allocate_instance(CHECK_false);
duke@435 962
duke@435 963 // Setup preallocated NullPointerException
duke@435 964 // (this is currently used for a cheap & dirty solution in compiler exception handling)
coleenp@2497 965 k = SystemDictionary::resolve_or_fail(vmSymbols::java_lang_NullPointerException(), true, CHECK_false);
coleenp@4037 966 Universe::_null_ptr_exception_instance = InstanceKlass::cast(k)->allocate_instance(CHECK_false);
duke@435 967 // Setup preallocated ArithmeticException
duke@435 968 // (this is currently used for a cheap & dirty solution in compiler exception handling)
coleenp@2497 969 k = SystemDictionary::resolve_or_fail(vmSymbols::java_lang_ArithmeticException(), true, CHECK_false);
coleenp@4037 970 Universe::_arithmetic_exception_instance = InstanceKlass::cast(k)->allocate_instance(CHECK_false);
duke@435 971 // Virtual Machine Error for when we get into a situation we can't resolve
duke@435 972 k = SystemDictionary::resolve_or_fail(
coleenp@2497 973 vmSymbols::java_lang_VirtualMachineError(), true, CHECK_false);
coleenp@4037 974 bool linked = InstanceKlass::cast(k)->link_class_or_fail(CHECK_false);
duke@435 975 if (!linked) {
duke@435 976 tty->print_cr("Unable to link/verify VirtualMachineError class");
duke@435 977 return false; // initialization failed
duke@435 978 }
duke@435 979 Universe::_virtual_machine_error_instance =
coleenp@4037 980 InstanceKlass::cast(k)->allocate_instance(CHECK_false);
coleenp@2497 981
coleenp@4037 982 Universe::_vm_exception = InstanceKlass::cast(k)->allocate_instance(CHECK_false);
coleenp@2497 983
duke@435 984 if (!DumpSharedSpaces) {
duke@435 985 // These are the only Java fields that are currently set during shared space dumping.
duke@435 986 // We prefer to not handle this generally, so we always reinitialize these detail messages.
duke@435 987 Handle msg = java_lang_String::create_from_str("Java heap space", CHECK_false);
duke@435 988 java_lang_Throwable::set_message(Universe::_out_of_memory_error_java_heap, msg());
duke@435 989
coleenp@4037 990 msg = java_lang_String::create_from_str("Metadata space", CHECK_false);
duke@435 991 java_lang_Throwable::set_message(Universe::_out_of_memory_error_perm_gen, msg());
duke@435 992
duke@435 993 msg = java_lang_String::create_from_str("Requested array size exceeds VM limit", CHECK_false);
duke@435 994 java_lang_Throwable::set_message(Universe::_out_of_memory_error_array_size, msg());
duke@435 995
duke@435 996 msg = java_lang_String::create_from_str("GC overhead limit exceeded", CHECK_false);
duke@435 997 java_lang_Throwable::set_message(Universe::_out_of_memory_error_gc_overhead_limit, msg());
duke@435 998
duke@435 999 msg = java_lang_String::create_from_str("/ by zero", CHECK_false);
duke@435 1000 java_lang_Throwable::set_message(Universe::_arithmetic_exception_instance, msg());
duke@435 1001
duke@435 1002 // Setup the array of errors that have preallocated backtrace
duke@435 1003 k = Universe::_out_of_memory_error_java_heap->klass();
coleenp@4037 1004 assert(k->name() == vmSymbols::java_lang_OutOfMemoryError(), "should be out of memory error");
duke@435 1005 k_h = instanceKlassHandle(THREAD, k);
duke@435 1006
duke@435 1007 int len = (StackTraceInThrowable) ? (int)PreallocatedOutOfMemoryErrorCount : 0;
duke@435 1008 Universe::_preallocated_out_of_memory_error_array = oopFactory::new_objArray(k_h(), len, CHECK_false);
duke@435 1009 for (int i=0; i<len; i++) {
coleenp@4037 1010 oop err = k_h->allocate_instance(CHECK_false);
duke@435 1011 Handle err_h = Handle(THREAD, err);
duke@435 1012 java_lang_Throwable::allocate_backtrace(err_h, CHECK_false);
duke@435 1013 Universe::preallocated_out_of_memory_errors()->obj_at_put(i, err_h());
duke@435 1014 }
duke@435 1015 Universe::_preallocated_out_of_memory_error_avail_count = (jint)len;
duke@435 1016 }
duke@435 1017
duke@435 1018
duke@435 1019 // Setup static method for registering finalizers
duke@435 1020 // The finalizer klass must be linked before looking up the method, in
duke@435 1021 // case it needs to get rewritten.
coleenp@4037 1022 InstanceKlass::cast(SystemDictionary::Finalizer_klass())->link_class(CHECK_false);
coleenp@4037 1023 Method* m = InstanceKlass::cast(SystemDictionary::Finalizer_klass())->find_method(
duke@435 1024 vmSymbols::register_method_name(),
duke@435 1025 vmSymbols::register_method_signature());
duke@435 1026 if (m == NULL || !m->is_static()) {
duke@435 1027 THROW_MSG_(vmSymbols::java_lang_NoSuchMethodException(),
duke@435 1028 "java.lang.ref.Finalizer.register", false);
duke@435 1029 }
duke@435 1030 Universe::_finalizer_register_cache->init(
never@1577 1031 SystemDictionary::Finalizer_klass(), m, CHECK_false);
duke@435 1032
duke@435 1033 // Resolve on first use and initialize class.
duke@435 1034 // Note: No race-condition here, since a resolve will always return the same result
duke@435 1035
duke@435 1036 // Setup method for security checks
coleenp@2497 1037 k = SystemDictionary::resolve_or_fail(vmSymbols::java_lang_reflect_Method(), true, CHECK_false);
duke@435 1038 k_h = instanceKlassHandle(THREAD, k);
duke@435 1039 k_h->link_class(CHECK_false);
jrose@1862 1040 m = k_h->find_method(vmSymbols::invoke_name(), vmSymbols::object_object_array_object_signature());
duke@435 1041 if (m == NULL || m->is_static()) {
duke@435 1042 THROW_MSG_(vmSymbols::java_lang_NoSuchMethodException(),
duke@435 1043 "java.lang.reflect.Method.invoke", false);
duke@435 1044 }
duke@435 1045 Universe::_reflect_invoke_cache->init(k_h(), m, CHECK_false);
duke@435 1046
coleenp@4062 1047 // Setup method for registering loaded classes in class loader vector
coleenp@4062 1048 InstanceKlass::cast(SystemDictionary::ClassLoader_klass())->link_class(CHECK_false);
coleenp@4062 1049 m = InstanceKlass::cast(SystemDictionary::ClassLoader_klass())->find_method(vmSymbols::addClass_name(), vmSymbols::class_void_signature());
coleenp@4062 1050 if (m == NULL || m->is_static()) {
coleenp@4062 1051 THROW_MSG_(vmSymbols::java_lang_NoSuchMethodException(),
coleenp@4062 1052 "java.lang.ClassLoader.addClass", false);
coleenp@4062 1053 }
coleenp@4062 1054 Universe::_loader_addClass_cache->init(
coleenp@4062 1055 SystemDictionary::ClassLoader_klass(), m, CHECK_false);
coleenp@4062 1056
duke@435 1057 // The folowing is initializing converter functions for serialization in
duke@435 1058 // JVM.cpp. If we clean up the StrictMath code above we may want to find
duke@435 1059 // a better solution for this as well.
duke@435 1060 initialize_converter_functions();
duke@435 1061
duke@435 1062 // This needs to be done before the first scavenge/gc, since
duke@435 1063 // it's an input to soft ref clearing policy.
ysr@777 1064 {
ysr@777 1065 MutexLocker x(Heap_lock);
ysr@777 1066 Universe::update_heap_info_at_gc();
ysr@777 1067 }
duke@435 1068
duke@435 1069 // ("weak") refs processing infrastructure initialization
duke@435 1070 Universe::heap()->post_initialize();
duke@435 1071
coleenp@4037 1072 // Initialize performance counters for metaspaces
coleenp@4037 1073 MetaspaceCounters::initialize_performance_counters();
coleenp@4037 1074
duke@435 1075 GC_locker::unlock(); // allow gc after bootstrapping
duke@435 1076
duke@435 1077 MemoryService::set_universe_heap(Universe::_collectedHeap);
duke@435 1078 return true;
duke@435 1079 }
duke@435 1080
duke@435 1081
duke@435 1082 void Universe::compute_base_vtable_size() {
duke@435 1083 _base_vtable_size = ClassLoader::compute_Object_vtable();
duke@435 1084 }
duke@435 1085
duke@435 1086
duke@435 1087 // %%% The Universe::flush_foo methods belong in CodeCache.
duke@435 1088
duke@435 1089 // Flushes compiled methods dependent on dependee.
duke@435 1090 void Universe::flush_dependents_on(instanceKlassHandle dependee) {
duke@435 1091 assert_lock_strong(Compile_lock);
duke@435 1092
duke@435 1093 if (CodeCache::number_of_nmethods_with_dependencies() == 0) return;
duke@435 1094
duke@435 1095 // CodeCache can only be updated by a thread_in_VM and they will all be
duke@435 1096 // stopped dring the safepoint so CodeCache will be safe to update without
duke@435 1097 // holding the CodeCache_lock.
duke@435 1098
twisti@3050 1099 KlassDepChange changes(dependee);
duke@435 1100
duke@435 1101 // Compute the dependent nmethods
duke@435 1102 if (CodeCache::mark_for_deoptimization(changes) > 0) {
duke@435 1103 // At least one nmethod has been marked for deoptimization
duke@435 1104 VM_Deoptimize op;
duke@435 1105 VMThread::execute(&op);
duke@435 1106 }
duke@435 1107 }
duke@435 1108
twisti@3050 1109 // Flushes compiled methods dependent on a particular CallSite
twisti@3050 1110 // instance when its target is different than the given MethodHandle.
twisti@3050 1111 void Universe::flush_dependents_on(Handle call_site, Handle method_handle) {
twisti@3050 1112 assert_lock_strong(Compile_lock);
twisti@3050 1113
twisti@3050 1114 if (CodeCache::number_of_nmethods_with_dependencies() == 0) return;
twisti@3050 1115
twisti@3050 1116 // CodeCache can only be updated by a thread_in_VM and they will all be
twisti@3050 1117 // stopped dring the safepoint so CodeCache will be safe to update without
twisti@3050 1118 // holding the CodeCache_lock.
twisti@3050 1119
twisti@3050 1120 CallSiteDepChange changes(call_site(), method_handle());
twisti@3050 1121
twisti@3050 1122 // Compute the dependent nmethods that have a reference to a
coleenp@4037 1123 // CallSite object. We use InstanceKlass::mark_dependent_nmethod
twisti@3050 1124 // directly instead of CodeCache::mark_for_deoptimization because we
twisti@3094 1125 // want dependents on the call site class only not all classes in
twisti@3094 1126 // the ContextStream.
twisti@3050 1127 int marked = 0;
twisti@3050 1128 {
twisti@3050 1129 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
coleenp@4037 1130 InstanceKlass* call_site_klass = InstanceKlass::cast(call_site->klass());
twisti@3050 1131 marked = call_site_klass->mark_dependent_nmethods(changes);
twisti@3050 1132 }
twisti@3050 1133 if (marked > 0) {
twisti@3050 1134 // At least one nmethod has been marked for deoptimization
twisti@3050 1135 VM_Deoptimize op;
twisti@3050 1136 VMThread::execute(&op);
twisti@3050 1137 }
twisti@3050 1138 }
twisti@3050 1139
duke@435 1140 #ifdef HOTSWAP
duke@435 1141 // Flushes compiled methods dependent on dependee in the evolutionary sense
duke@435 1142 void Universe::flush_evol_dependents_on(instanceKlassHandle ev_k_h) {
duke@435 1143 // --- Compile_lock is not held. However we are at a safepoint.
duke@435 1144 assert_locked_or_safepoint(Compile_lock);
duke@435 1145 if (CodeCache::number_of_nmethods_with_dependencies() == 0) return;
duke@435 1146
duke@435 1147 // CodeCache can only be updated by a thread_in_VM and they will all be
duke@435 1148 // stopped dring the safepoint so CodeCache will be safe to update without
duke@435 1149 // holding the CodeCache_lock.
duke@435 1150
duke@435 1151 // Compute the dependent nmethods
duke@435 1152 if (CodeCache::mark_for_evol_deoptimization(ev_k_h) > 0) {
duke@435 1153 // At least one nmethod has been marked for deoptimization
duke@435 1154
duke@435 1155 // All this already happens inside a VM_Operation, so we'll do all the work here.
duke@435 1156 // Stuff copied from VM_Deoptimize and modified slightly.
duke@435 1157
duke@435 1158 // We do not want any GCs to happen while we are in the middle of this VM operation
duke@435 1159 ResourceMark rm;
duke@435 1160 DeoptimizationMarker dm;
duke@435 1161
duke@435 1162 // Deoptimize all activations depending on marked nmethods
duke@435 1163 Deoptimization::deoptimize_dependents();
duke@435 1164
duke@435 1165 // Make the dependent methods not entrant (in VM_Deoptimize they are made zombies)
duke@435 1166 CodeCache::make_marked_nmethods_not_entrant();
duke@435 1167 }
duke@435 1168 }
duke@435 1169 #endif // HOTSWAP
duke@435 1170
duke@435 1171
duke@435 1172 // Flushes compiled methods dependent on dependee
duke@435 1173 void Universe::flush_dependents_on_method(methodHandle m_h) {
duke@435 1174 // --- Compile_lock is not held. However we are at a safepoint.
duke@435 1175 assert_locked_or_safepoint(Compile_lock);
duke@435 1176
duke@435 1177 // CodeCache can only be updated by a thread_in_VM and they will all be
duke@435 1178 // stopped dring the safepoint so CodeCache will be safe to update without
duke@435 1179 // holding the CodeCache_lock.
duke@435 1180
duke@435 1181 // Compute the dependent nmethods
duke@435 1182 if (CodeCache::mark_for_deoptimization(m_h()) > 0) {
duke@435 1183 // At least one nmethod has been marked for deoptimization
duke@435 1184
duke@435 1185 // All this already happens inside a VM_Operation, so we'll do all the work here.
duke@435 1186 // Stuff copied from VM_Deoptimize and modified slightly.
duke@435 1187
duke@435 1188 // We do not want any GCs to happen while we are in the middle of this VM operation
duke@435 1189 ResourceMark rm;
duke@435 1190 DeoptimizationMarker dm;
duke@435 1191
duke@435 1192 // Deoptimize all activations depending on marked nmethods
duke@435 1193 Deoptimization::deoptimize_dependents();
duke@435 1194
duke@435 1195 // Make the dependent methods not entrant (in VM_Deoptimize they are made zombies)
duke@435 1196 CodeCache::make_marked_nmethods_not_entrant();
duke@435 1197 }
duke@435 1198 }
duke@435 1199
tonyp@3269 1200 void Universe::print() {
tonyp@3269 1201 print_on(gclog_or_tty);
tonyp@3269 1202 }
duke@435 1203
tonyp@3269 1204 void Universe::print_on(outputStream* st, bool extended) {
duke@435 1205 st->print_cr("Heap");
tonyp@3269 1206 if (!extended) {
tonyp@3269 1207 heap()->print_on(st);
tonyp@3269 1208 } else {
tonyp@3269 1209 heap()->print_extended_on(st);
tonyp@3269 1210 }
duke@435 1211 }
duke@435 1212
duke@435 1213 void Universe::print_heap_at_SIGBREAK() {
duke@435 1214 if (PrintHeapAtSIGBREAK) {
duke@435 1215 MutexLocker hl(Heap_lock);
duke@435 1216 print_on(tty);
duke@435 1217 tty->cr();
duke@435 1218 tty->flush();
duke@435 1219 }
duke@435 1220 }
duke@435 1221
never@3571 1222 void Universe::print_heap_before_gc(outputStream* st, bool ignore_extended) {
duke@435 1223 st->print_cr("{Heap before GC invocations=%u (full %u):",
duke@435 1224 heap()->total_collections(),
duke@435 1225 heap()->total_full_collections());
never@3571 1226 if (!PrintHeapAtGCExtended || ignore_extended) {
tonyp@3269 1227 heap()->print_on(st);
tonyp@3269 1228 } else {
tonyp@3269 1229 heap()->print_extended_on(st);
tonyp@3269 1230 }
duke@435 1231 }
duke@435 1232
never@3571 1233 void Universe::print_heap_after_gc(outputStream* st, bool ignore_extended) {
duke@435 1234 st->print_cr("Heap after GC invocations=%u (full %u):",
duke@435 1235 heap()->total_collections(),
duke@435 1236 heap()->total_full_collections());
never@3571 1237 if (!PrintHeapAtGCExtended || ignore_extended) {
tonyp@3269 1238 heap()->print_on(st);
tonyp@3269 1239 } else {
tonyp@3269 1240 heap()->print_extended_on(st);
tonyp@3269 1241 }
duke@435 1242 st->print_cr("}");
duke@435 1243 }
duke@435 1244
brutisso@3711 1245 void Universe::verify(bool silent, VerifyOption option) {
duke@435 1246 if (SharedSkipVerify) {
duke@435 1247 return;
duke@435 1248 }
duke@435 1249
duke@435 1250 // The use of _verify_in_progress is a temporary work around for
duke@435 1251 // 6320749. Don't bother with a creating a class to set and clear
duke@435 1252 // it since it is only used in this method and the control flow is
duke@435 1253 // straight forward.
duke@435 1254 _verify_in_progress = true;
duke@435 1255
duke@435 1256 COMPILER2_PRESENT(
duke@435 1257 assert(!DerivedPointerTable::is_active(),
duke@435 1258 "DPT should not be active during verification "
duke@435 1259 "(of thread stacks below)");
duke@435 1260 )
duke@435 1261
duke@435 1262 ResourceMark rm;
duke@435 1263 HandleMark hm; // Handles created during verification can be zapped
duke@435 1264 _verify_count++;
duke@435 1265
duke@435 1266 if (!silent) gclog_or_tty->print("[Verifying ");
duke@435 1267 if (!silent) gclog_or_tty->print("threads ");
duke@435 1268 Threads::verify();
brutisso@3711 1269 heap()->verify(silent, option);
duke@435 1270
duke@435 1271 if (!silent) gclog_or_tty->print("syms ");
duke@435 1272 SymbolTable::verify();
duke@435 1273 if (!silent) gclog_or_tty->print("strs ");
duke@435 1274 StringTable::verify();
duke@435 1275 {
duke@435 1276 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
duke@435 1277 if (!silent) gclog_or_tty->print("zone ");
duke@435 1278 CodeCache::verify();
duke@435 1279 }
duke@435 1280 if (!silent) gclog_or_tty->print("dict ");
duke@435 1281 SystemDictionary::verify();
coleenp@4037 1282 #ifndef PRODUCT
coleenp@4037 1283 if (!silent) gclog_or_tty->print("cldg ");
coleenp@4037 1284 ClassLoaderDataGraph::verify();
coleenp@4037 1285 #endif
duke@435 1286 if (!silent) gclog_or_tty->print("hand ");
duke@435 1287 JNIHandles::verify();
duke@435 1288 if (!silent) gclog_or_tty->print("C-heap ");
duke@435 1289 os::check_heap();
never@2657 1290 if (!silent) gclog_or_tty->print("code cache ");
never@2657 1291 CodeCache::verify_oops();
duke@435 1292 if (!silent) gclog_or_tty->print_cr("]");
duke@435 1293
duke@435 1294 _verify_in_progress = false;
duke@435 1295 }
duke@435 1296
duke@435 1297 // Oop verification (see MacroAssembler::verify_oop)
duke@435 1298
duke@435 1299 static uintptr_t _verify_oop_data[2] = {0, (uintptr_t)-1};
duke@435 1300 static uintptr_t _verify_klass_data[2] = {0, (uintptr_t)-1};
duke@435 1301
duke@435 1302
duke@435 1303 static void calculate_verify_data(uintptr_t verify_data[2],
duke@435 1304 HeapWord* low_boundary,
duke@435 1305 HeapWord* high_boundary) {
duke@435 1306 assert(low_boundary < high_boundary, "bad interval");
duke@435 1307
duke@435 1308 // decide which low-order bits we require to be clear:
duke@435 1309 size_t alignSize = MinObjAlignmentInBytes;
kvn@1926 1310 size_t min_object_size = CollectedHeap::min_fill_size();
duke@435 1311
duke@435 1312 // make an inclusive limit:
duke@435 1313 uintptr_t max = (uintptr_t)high_boundary - min_object_size*wordSize;
duke@435 1314 uintptr_t min = (uintptr_t)low_boundary;
duke@435 1315 assert(min < max, "bad interval");
duke@435 1316 uintptr_t diff = max ^ min;
duke@435 1317
duke@435 1318 // throw away enough low-order bits to make the diff vanish
duke@435 1319 uintptr_t mask = (uintptr_t)(-1);
duke@435 1320 while ((mask & diff) != 0)
duke@435 1321 mask <<= 1;
duke@435 1322 uintptr_t bits = (min & mask);
duke@435 1323 assert(bits == (max & mask), "correct mask");
duke@435 1324 // check an intermediate value between min and max, just to make sure:
duke@435 1325 assert(bits == ((min + (max-min)/2) & mask), "correct mask");
duke@435 1326
duke@435 1327 // require address alignment, too:
duke@435 1328 mask |= (alignSize - 1);
duke@435 1329
duke@435 1330 if (!(verify_data[0] == 0 && verify_data[1] == (uintptr_t)-1)) {
duke@435 1331 assert(verify_data[0] == mask && verify_data[1] == bits, "mask stability");
duke@435 1332 }
duke@435 1333 verify_data[0] = mask;
duke@435 1334 verify_data[1] = bits;
duke@435 1335 }
duke@435 1336
duke@435 1337
duke@435 1338 // Oop verification (see MacroAssembler::verify_oop)
duke@435 1339 #ifndef PRODUCT
duke@435 1340
duke@435 1341 uintptr_t Universe::verify_oop_mask() {
duke@435 1342 MemRegion m = heap()->reserved_region();
duke@435 1343 calculate_verify_data(_verify_oop_data,
duke@435 1344 m.start(),
duke@435 1345 m.end());
duke@435 1346 return _verify_oop_data[0];
duke@435 1347 }
duke@435 1348
duke@435 1349
duke@435 1350
duke@435 1351 uintptr_t Universe::verify_oop_bits() {
duke@435 1352 verify_oop_mask();
duke@435 1353 return _verify_oop_data[1];
duke@435 1354 }
duke@435 1355
duke@435 1356 uintptr_t Universe::verify_mark_mask() {
duke@435 1357 return markOopDesc::lock_mask_in_place;
duke@435 1358 }
duke@435 1359
duke@435 1360 uintptr_t Universe::verify_mark_bits() {
duke@435 1361 intptr_t mask = verify_mark_mask();
duke@435 1362 intptr_t bits = (intptr_t)markOopDesc::prototype();
duke@435 1363 assert((bits & ~mask) == 0, "no stray header bits");
duke@435 1364 return bits;
duke@435 1365 }
duke@435 1366 #endif // PRODUCT
duke@435 1367
duke@435 1368
duke@435 1369 void Universe::compute_verify_oop_data() {
duke@435 1370 verify_oop_mask();
duke@435 1371 verify_oop_bits();
duke@435 1372 verify_mark_mask();
duke@435 1373 verify_mark_bits();
duke@435 1374 }
duke@435 1375
duke@435 1376
coleenp@4037 1377 void CommonMethodOopCache::init(Klass* k, Method* m, TRAPS) {
duke@435 1378 if (!UseSharedSpaces) {
duke@435 1379 _klass = k;
duke@435 1380 }
duke@435 1381 #ifndef PRODUCT
duke@435 1382 else {
duke@435 1383 // sharing initilization should have already set up _klass
duke@435 1384 assert(_klass != NULL, "just checking");
duke@435 1385 }
duke@435 1386 #endif
duke@435 1387
duke@435 1388 _method_idnum = m->method_idnum();
duke@435 1389 assert(_method_idnum >= 0, "sanity check");
duke@435 1390 }
duke@435 1391
duke@435 1392
duke@435 1393 ActiveMethodOopsCache::~ActiveMethodOopsCache() {
duke@435 1394 if (_prev_methods != NULL) {
duke@435 1395 delete _prev_methods;
duke@435 1396 _prev_methods = NULL;
duke@435 1397 }
duke@435 1398 }
duke@435 1399
duke@435 1400
coleenp@4037 1401 void ActiveMethodOopsCache::add_previous_version(Method* const method) {
duke@435 1402 assert(Thread::current()->is_VM_thread(),
duke@435 1403 "only VMThread can add previous versions");
duke@435 1404
coleenp@4037 1405 // Only append the previous method if it is executing on the stack.
coleenp@4037 1406 if (method->on_stack()) {
coleenp@4037 1407
duke@435 1408 if (_prev_methods == NULL) {
duke@435 1409 // This is the first previous version so make some space.
duke@435 1410 // Start with 2 elements under the assumption that the class
duke@435 1411 // won't be redefined much.
coleenp@4037 1412 _prev_methods = new (ResourceObj::C_HEAP, mtClass) GrowableArray<Method*>(2, true);
duke@435 1413 }
duke@435 1414
duke@435 1415 // RC_TRACE macro has an embedded ResourceMark
duke@435 1416 RC_TRACE(0x00000100,
duke@435 1417 ("add: %s(%s): adding prev version ref for cached method @%d",
duke@435 1418 method->name()->as_C_string(), method->signature()->as_C_string(),
duke@435 1419 _prev_methods->length()));
duke@435 1420
coleenp@4037 1421 _prev_methods->append(method);
coleenp@4037 1422 }
duke@435 1423
coleenp@4037 1424
coleenp@4037 1425 // Since the caller is the VMThread and we are at a safepoint, this is a good
coleenp@4037 1426 // time to clear out unused method references.
coleenp@4037 1427
coleenp@4037 1428 if (_prev_methods == NULL) return;
duke@435 1429
duke@435 1430 for (int i = _prev_methods->length() - 1; i >= 0; i--) {
coleenp@4037 1431 Method* method = _prev_methods->at(i);
coleenp@4037 1432 assert(method != NULL, "weak method ref was unexpectedly cleared");
coleenp@4037 1433
coleenp@4037 1434 if (!method->on_stack()) {
coleenp@4037 1435 // This method isn't running anymore so remove it
duke@435 1436 _prev_methods->remove_at(i);
coleenp@4037 1437 MetadataFactory::free_metadata(method->method_holder()->class_loader_data(), method);
duke@435 1438 } else {
duke@435 1439 // RC_TRACE macro has an embedded ResourceMark
duke@435 1440 RC_TRACE(0x00000400, ("add: %s(%s): previous cached method @%d is alive",
coleenp@4037 1441 method->name()->as_C_string(), method->signature()->as_C_string(), i));
duke@435 1442 }
duke@435 1443 }
duke@435 1444 } // end add_previous_version()
duke@435 1445
duke@435 1446
coleenp@4037 1447 bool ActiveMethodOopsCache::is_same_method(Method* const method) const {
coleenp@4037 1448 InstanceKlass* ik = InstanceKlass::cast(klass());
coleenp@4037 1449 Method* check_method = ik->method_with_idnum(method_idnum());
duke@435 1450 assert(check_method != NULL, "sanity check");
duke@435 1451 if (check_method == method) {
duke@435 1452 // done with the easy case
duke@435 1453 return true;
duke@435 1454 }
duke@435 1455
duke@435 1456 if (_prev_methods != NULL) {
duke@435 1457 // The cached method has been redefined at least once so search
duke@435 1458 // the previous versions for a match.
duke@435 1459 for (int i = 0; i < _prev_methods->length(); i++) {
coleenp@4037 1460 check_method = _prev_methods->at(i);
duke@435 1461 if (check_method == method) {
duke@435 1462 // a previous version matches
duke@435 1463 return true;
duke@435 1464 }
duke@435 1465 }
duke@435 1466 }
duke@435 1467
duke@435 1468 // either no previous versions or no previous version matched
duke@435 1469 return false;
duke@435 1470 }
duke@435 1471
duke@435 1472
coleenp@4037 1473 Method* LatestMethodOopCache::get_Method() {
coleenp@4037 1474 InstanceKlass* ik = InstanceKlass::cast(klass());
coleenp@4037 1475 Method* m = ik->method_with_idnum(method_idnum());
duke@435 1476 assert(m != NULL, "sanity check");
duke@435 1477 return m;
duke@435 1478 }
duke@435 1479
duke@435 1480
duke@435 1481 #ifdef ASSERT
duke@435 1482 // Release dummy object(s) at bottom of heap
duke@435 1483 bool Universe::release_fullgc_alot_dummy() {
duke@435 1484 MutexLocker ml(FullGCALot_lock);
duke@435 1485 if (_fullgc_alot_dummy_array != NULL) {
duke@435 1486 if (_fullgc_alot_dummy_next >= _fullgc_alot_dummy_array->length()) {
duke@435 1487 // No more dummies to release, release entire array instead
duke@435 1488 _fullgc_alot_dummy_array = NULL;
duke@435 1489 return false;
duke@435 1490 }
duke@435 1491 if (!UseConcMarkSweepGC) {
duke@435 1492 // Release dummy at bottom of old generation
duke@435 1493 _fullgc_alot_dummy_array->obj_at_put(_fullgc_alot_dummy_next++, NULL);
duke@435 1494 }
duke@435 1495 // Release dummy at bottom of permanent generation
duke@435 1496 _fullgc_alot_dummy_array->obj_at_put(_fullgc_alot_dummy_next++, NULL);
duke@435 1497 }
duke@435 1498 return true;
duke@435 1499 }
duke@435 1500
duke@435 1501 #endif // ASSERT

mercurial