src/share/vm/oops/objArrayKlass.cpp

Tue, 10 Dec 2013 10:31:00 +0100

author
sjohanss
date
Tue, 10 Dec 2013 10:31:00 +0100
changeset 6169
ad72068ac41e
parent 6148
55a0da3d420b
child 6198
55fb97c4c58d
permissions
-rw-r--r--

8028993: Full collections with ParallelScavenge slower in JDK 8 compared to 7u40
Summary: Reducing the number of calls to follow_class_loader to speed up the marking phase. Also removed some unnecessary calls to adjust_klass.
Reviewed-by: stefank, jmasa, mgerdin

duke@435 1 /*
sspitsyn@3638 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"
coleenp@4037 26 #include "classfile/symbolTable.hpp"
stefank@2314 27 #include "classfile/systemDictionary.hpp"
stefank@2314 28 #include "classfile/vmSymbols.hpp"
stefank@2314 29 #include "gc_implementation/shared/markSweep.inline.hpp"
stefank@2314 30 #include "gc_interface/collectedHeap.inline.hpp"
stefank@2314 31 #include "memory/genOopClosures.inline.hpp"
coleenp@4037 32 #include "memory/metadataFactory.hpp"
stefank@2314 33 #include "memory/resourceArea.hpp"
stefank@2314 34 #include "memory/universe.inline.hpp"
stefank@2314 35 #include "oops/instanceKlass.hpp"
coleenp@4037 36 #include "oops/klass.inline.hpp"
stefank@2314 37 #include "oops/objArrayKlass.hpp"
stefank@2314 38 #include "oops/objArrayKlass.inline.hpp"
stefank@2314 39 #include "oops/objArrayOop.hpp"
stefank@2314 40 #include "oops/oop.inline.hpp"
stefank@2314 41 #include "oops/oop.inline2.hpp"
coleenp@2497 42 #include "oops/symbol.hpp"
stefank@2314 43 #include "runtime/handles.inline.hpp"
stefank@2314 44 #include "runtime/mutexLocker.hpp"
stefank@2314 45 #include "utilities/copy.hpp"
jprovino@4542 46 #include "utilities/macros.hpp"
jprovino@4542 47 #if INCLUDE_ALL_GCS
coleenp@4037 48 #include "gc_implementation/concurrentMarkSweep/cmsOopClosures.inline.hpp"
stefank@2314 49 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
stefank@2314 50 #include "gc_implementation/g1/g1OopClosures.inline.hpp"
stefank@2314 51 #include "gc_implementation/g1/g1RemSet.inline.hpp"
stefank@2314 52 #include "gc_implementation/g1/heapRegionSeq.inline.hpp"
stefank@2314 53 #include "gc_implementation/parNew/parOopClosures.inline.hpp"
stefank@2314 54 #include "gc_implementation/parallelScavenge/psCompactionManager.hpp"
stefank@2314 55 #include "gc_implementation/parallelScavenge/psPromotionManager.inline.hpp"
stefank@2314 56 #include "gc_implementation/parallelScavenge/psScavenge.inline.hpp"
stefank@2314 57 #include "oops/oop.pcgc.inline.hpp"
jprovino@4542 58 #endif // INCLUDE_ALL_GCS
duke@435 59
coleenp@4142 60 ObjArrayKlass* ObjArrayKlass::allocate(ClassLoaderData* loader_data, int n, KlassHandle klass_handle, Symbol* name, TRAPS) {
coleenp@4142 61 assert(ObjArrayKlass::header_size() <= InstanceKlass::header_size(),
coleenp@4037 62 "array klasses must be same size as InstanceKlass");
coleenp@4037 63
coleenp@4142 64 int size = ArrayKlass::static_size(ObjArrayKlass::header_size());
coleenp@4037 65
coleenp@4142 66 return new (loader_data, size, THREAD) ObjArrayKlass(n, klass_handle, name);
coleenp@4037 67 }
coleenp@4037 68
coleenp@4142 69 Klass* ObjArrayKlass::allocate_objArray_klass(ClassLoaderData* loader_data,
coleenp@4037 70 int n, KlassHandle element_klass, TRAPS) {
coleenp@4037 71
coleenp@4037 72 // Eagerly allocate the direct array supertype.
coleenp@4037 73 KlassHandle super_klass = KlassHandle();
coleenp@4037 74 if (!Universe::is_bootstrapping() || SystemDictionary::Object_klass_loaded()) {
coleenp@4037 75 KlassHandle element_super (THREAD, element_klass->super());
coleenp@4037 76 if (element_super.not_null()) {
coleenp@4037 77 // The element type has a direct super. E.g., String[] has direct super of Object[].
coleenp@4037 78 super_klass = KlassHandle(THREAD, element_super->array_klass_or_null());
coleenp@4037 79 bool supers_exist = super_klass.not_null();
coleenp@4037 80 // Also, see if the element has secondary supertypes.
coleenp@4037 81 // We need an array type for each.
coleenp@4037 82 Array<Klass*>* element_supers = element_klass->secondary_supers();
coleenp@4037 83 for( int i = element_supers->length()-1; i >= 0; i-- ) {
coleenp@4037 84 Klass* elem_super = element_supers->at(i);
hseigel@4278 85 if (elem_super->array_klass_or_null() == NULL) {
coleenp@4037 86 supers_exist = false;
coleenp@4037 87 break;
coleenp@4037 88 }
coleenp@4037 89 }
coleenp@4037 90 if (!supers_exist) {
coleenp@4037 91 // Oops. Not allocated yet. Back out, allocate it, and retry.
coleenp@4037 92 KlassHandle ek;
coleenp@4037 93 {
coleenp@4037 94 MutexUnlocker mu(MultiArray_lock);
coleenp@4037 95 MutexUnlocker mc(Compile_lock); // for vtables
coleenp@4037 96 Klass* sk = element_super->array_klass(CHECK_0);
coleenp@4037 97 super_klass = KlassHandle(THREAD, sk);
coleenp@4037 98 for( int i = element_supers->length()-1; i >= 0; i-- ) {
coleenp@4037 99 KlassHandle elem_super (THREAD, element_supers->at(i));
coleenp@4037 100 elem_super->array_klass(CHECK_0);
coleenp@4037 101 }
coleenp@4037 102 // Now retry from the beginning
coleenp@4037 103 Klass* klass_oop = element_klass->array_klass(n, CHECK_0);
coleenp@4037 104 // Create a handle because the enclosing brace, when locking
coleenp@4037 105 // can cause a gc. Better to have this function return a Handle.
coleenp@4037 106 ek = KlassHandle(THREAD, klass_oop);
coleenp@4037 107 } // re-lock
coleenp@4037 108 return ek();
coleenp@4037 109 }
coleenp@4037 110 } else {
coleenp@4037 111 // The element type is already Object. Object[] has direct super of Object.
coleenp@4037 112 super_klass = KlassHandle(THREAD, SystemDictionary::Object_klass());
coleenp@4037 113 }
coleenp@4037 114 }
coleenp@4037 115
coleenp@4037 116 // Create type name for klass.
coleenp@4037 117 Symbol* name = NULL;
coleenp@4037 118 if (!element_klass->oop_is_instance() ||
coleenp@4037 119 (name = InstanceKlass::cast(element_klass())->array_name()) == NULL) {
coleenp@4037 120
coleenp@4037 121 ResourceMark rm(THREAD);
coleenp@4037 122 char *name_str = element_klass->name()->as_C_string();
coleenp@4037 123 int len = element_klass->name()->utf8_length();
coleenp@4037 124 char *new_str = NEW_RESOURCE_ARRAY(char, len + 4);
coleenp@4037 125 int idx = 0;
coleenp@4037 126 new_str[idx++] = '[';
coleenp@4037 127 if (element_klass->oop_is_instance()) { // it could be an array or simple type
coleenp@4037 128 new_str[idx++] = 'L';
coleenp@4037 129 }
coleenp@4037 130 memcpy(&new_str[idx], name_str, len * sizeof(char));
coleenp@4037 131 idx += len;
coleenp@4037 132 if (element_klass->oop_is_instance()) {
coleenp@4037 133 new_str[idx++] = ';';
coleenp@4037 134 }
coleenp@4037 135 new_str[idx++] = '\0';
coleenp@4037 136 name = SymbolTable::new_permanent_symbol(new_str, CHECK_0);
coleenp@4037 137 if (element_klass->oop_is_instance()) {
coleenp@4037 138 InstanceKlass* ik = InstanceKlass::cast(element_klass());
coleenp@4037 139 ik->set_array_name(name);
coleenp@4037 140 }
coleenp@4037 141 }
coleenp@4037 142
coleenp@4037 143 // Initialize instance variables
coleenp@4142 144 ObjArrayKlass* oak = ObjArrayKlass::allocate(loader_data, n, element_klass, name, CHECK_0);
coleenp@4037 145
coleenp@4037 146 // Add all classes to our internal class loader list here,
coleenp@4037 147 // including classes in the bootstrap (NULL) class loader.
coleenp@4037 148 // GC walks these as strong roots.
coleenp@4037 149 loader_data->add_class(oak);
coleenp@4037 150
coleenp@4037 151 // Call complete_create_array_klass after all instance variables has been initialized.
coleenp@4142 152 ArrayKlass::complete_create_array_klass(oak, super_klass, CHECK_0);
coleenp@4037 153
coleenp@4037 154 return oak;
coleenp@4037 155 }
coleenp@4037 156
coleenp@4142 157 ObjArrayKlass::ObjArrayKlass(int n, KlassHandle element_klass, Symbol* name) : ArrayKlass(name) {
coleenp@4037 158 this->set_dimension(n);
coleenp@4037 159 this->set_element_klass(element_klass());
coleenp@4037 160 // decrement refcount because object arrays are not explicitly freed. The
coleenp@4037 161 // InstanceKlass array_name() keeps the name counted while the klass is
coleenp@4037 162 // loaded.
coleenp@4037 163 name->decrement_refcount();
coleenp@4037 164
coleenp@4037 165 Klass* bk;
coleenp@4037 166 if (element_klass->oop_is_objArray()) {
coleenp@4142 167 bk = ObjArrayKlass::cast(element_klass())->bottom_klass();
coleenp@4037 168 } else {
coleenp@4037 169 bk = element_klass();
coleenp@4037 170 }
hseigel@4278 171 assert(bk != NULL && (bk->oop_is_instance() || bk->oop_is_typeArray()), "invalid bottom klass");
coleenp@4037 172 this->set_bottom_klass(bk);
coleenp@4037 173 this->set_class_loader_data(bk->class_loader_data());
coleenp@4037 174
coleenp@4037 175 this->set_layout_helper(array_layout_helper(T_OBJECT));
coleenp@4037 176 assert(this->oop_is_array(), "sanity");
coleenp@4037 177 assert(this->oop_is_objArray(), "sanity");
coleenp@4037 178 }
coleenp@4037 179
coleenp@4142 180 int ObjArrayKlass::oop_size(oop obj) const {
duke@435 181 assert(obj->is_objArray(), "must be object array");
duke@435 182 return objArrayOop(obj)->object_size();
duke@435 183 }
duke@435 184
coleenp@4142 185 objArrayOop ObjArrayKlass::allocate(int length, TRAPS) {
duke@435 186 if (length >= 0) {
duke@435 187 if (length <= arrayOopDesc::max_array_length(T_OBJECT)) {
duke@435 188 int size = objArrayOopDesc::object_size(length);
coleenp@4037 189 KlassHandle h_k(THREAD, this);
coleenp@4037 190 return (objArrayOop)CollectedHeap::array_allocate(h_k, size, length, CHECK_NULL);
duke@435 191 } else {
martin@1311 192 report_java_out_of_memory("Requested array size exceeds VM limit");
sspitsyn@3638 193 JvmtiExport::post_array_size_exhausted();
duke@435 194 THROW_OOP_0(Universe::out_of_memory_error_array_size());
duke@435 195 }
duke@435 196 } else {
duke@435 197 THROW_0(vmSymbols::java_lang_NegativeArraySizeException());
duke@435 198 }
duke@435 199 }
duke@435 200
duke@435 201 static int multi_alloc_counter = 0;
duke@435 202
coleenp@4142 203 oop ObjArrayKlass::multi_allocate(int rank, jint* sizes, TRAPS) {
duke@435 204 int length = *sizes;
duke@435 205 // Call to lower_dimension uses this pointer, so most be called before a
duke@435 206 // possible GC
duke@435 207 KlassHandle h_lower_dimension(THREAD, lower_dimension());
duke@435 208 // If length < 0 allocate will throw an exception.
duke@435 209 objArrayOop array = allocate(length, CHECK_NULL);
duke@435 210 objArrayHandle h_array (THREAD, array);
duke@435 211 if (rank > 1) {
duke@435 212 if (length != 0) {
duke@435 213 for (int index = 0; index < length; index++) {
coleenp@4142 214 ArrayKlass* ak = ArrayKlass::cast(h_lower_dimension());
duke@435 215 oop sub_array = ak->multi_allocate(rank-1, &sizes[1], CHECK_NULL);
duke@435 216 h_array->obj_at_put(index, sub_array);
duke@435 217 }
duke@435 218 } else {
duke@435 219 // Since this array dimension has zero length, nothing will be
duke@435 220 // allocated, however the lower dimension values must be checked
duke@435 221 // for illegal values.
duke@435 222 for (int i = 0; i < rank - 1; ++i) {
duke@435 223 sizes += 1;
duke@435 224 if (*sizes < 0) {
duke@435 225 THROW_0(vmSymbols::java_lang_NegativeArraySizeException());
duke@435 226 }
duke@435 227 }
duke@435 228 }
duke@435 229 }
duke@435 230 return h_array();
duke@435 231 }
duke@435 232
coleenp@548 233 // Either oop or narrowOop depending on UseCompressedOops.
coleenp@4142 234 template <class T> void ObjArrayKlass::do_copy(arrayOop s, T* src,
coleenp@548 235 arrayOop d, T* dst, int length, TRAPS) {
coleenp@548 236
coleenp@548 237 BarrierSet* bs = Universe::heap()->barrier_set();
ysr@777 238 // For performance reasons, we assume we are that the write barrier we
ysr@777 239 // are using has optimized modes for arrays of references. At least one
ysr@777 240 // of the asserts below will fail if this is not the case.
coleenp@548 241 assert(bs->has_write_ref_array_opt(), "Barrier set must have ref array opt");
ysr@777 242 assert(bs->has_write_ref_array_pre_opt(), "For pre-barrier as well.");
coleenp@548 243
coleenp@548 244 if (s == d) {
coleenp@548 245 // since source and destination are equal we do not need conversion checks.
coleenp@548 246 assert(length > 0, "sanity check");
ysr@1280 247 bs->write_ref_array_pre(dst, length);
coleenp@548 248 Copy::conjoint_oops_atomic(src, dst, length);
coleenp@548 249 } else {
coleenp@548 250 // We have to make sure all elements conform to the destination array
coleenp@4142 251 Klass* bound = ObjArrayKlass::cast(d->klass())->element_klass();
coleenp@4142 252 Klass* stype = ObjArrayKlass::cast(s->klass())->element_klass();
hseigel@4278 253 if (stype == bound || stype->is_subtype_of(bound)) {
coleenp@548 254 // elements are guaranteed to be subtypes, so no check necessary
ysr@1280 255 bs->write_ref_array_pre(dst, length);
coleenp@548 256 Copy::conjoint_oops_atomic(src, dst, length);
coleenp@548 257 } else {
coleenp@548 258 // slow case: need individual subtype checks
coleenp@548 259 // note: don't use obj_at_put below because it includes a redundant store check
coleenp@548 260 T* from = src;
coleenp@548 261 T* end = from + length;
coleenp@548 262 for (T* p = dst; from < end; from++, p++) {
coleenp@548 263 // XXX this is going to be slow.
coleenp@548 264 T element = *from;
ysr@777 265 // even slower now
ysr@777 266 bool element_is_null = oopDesc::is_null(element);
ysr@777 267 oop new_val = element_is_null ? oop(NULL)
ysr@777 268 : oopDesc::decode_heap_oop_not_null(element);
ysr@777 269 if (element_is_null ||
hseigel@4278 270 (new_val->klass())->is_subtype_of(bound)) {
ysr@777 271 bs->write_ref_field_pre(p, new_val);
coleenp@548 272 *p = *from;
coleenp@548 273 } else {
coleenp@548 274 // We must do a barrier to cover the partial copy.
coleenp@548 275 const size_t pd = pointer_delta(p, dst, (size_t)heapOopSize);
coleenp@548 276 // pointer delta is scaled to number of elements (length field in
coleenp@548 277 // objArrayOop) which we assume is 32 bit.
coleenp@548 278 assert(pd == (size_t)(int)pd, "length field overflow");
ysr@1526 279 bs->write_ref_array((HeapWord*)dst, pd);
coleenp@548 280 THROW(vmSymbols::java_lang_ArrayStoreException());
coleenp@548 281 return;
coleenp@548 282 }
coleenp@548 283 }
coleenp@548 284 }
coleenp@548 285 }
ysr@1526 286 bs->write_ref_array((HeapWord*)dst, length);
coleenp@548 287 }
coleenp@548 288
coleenp@4142 289 void ObjArrayKlass::copy_array(arrayOop s, int src_pos, arrayOop d,
duke@435 290 int dst_pos, int length, TRAPS) {
duke@435 291 assert(s->is_objArray(), "must be obj array");
duke@435 292
duke@435 293 if (!d->is_objArray()) {
duke@435 294 THROW(vmSymbols::java_lang_ArrayStoreException());
duke@435 295 }
duke@435 296
duke@435 297 // Check is all offsets and lengths are non negative
duke@435 298 if (src_pos < 0 || dst_pos < 0 || length < 0) {
duke@435 299 THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException());
duke@435 300 }
duke@435 301 // Check if the ranges are valid
duke@435 302 if ( (((unsigned int) length + (unsigned int) src_pos) > (unsigned int) s->length())
duke@435 303 || (((unsigned int) length + (unsigned int) dst_pos) > (unsigned int) d->length()) ) {
duke@435 304 THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException());
duke@435 305 }
duke@435 306
duke@435 307 // Special case. Boundary cases must be checked first
duke@435 308 // This allows the following call: copy_array(s, s.length(), d.length(), 0).
duke@435 309 // This is correct, since the position is supposed to be an 'in between point', i.e., s.length(),
duke@435 310 // points to the right of the last element.
duke@435 311 if (length==0) {
duke@435 312 return;
duke@435 313 }
coleenp@548 314 if (UseCompressedOops) {
coleenp@548 315 narrowOop* const src = objArrayOop(s)->obj_at_addr<narrowOop>(src_pos);
coleenp@548 316 narrowOop* const dst = objArrayOop(d)->obj_at_addr<narrowOop>(dst_pos);
coleenp@548 317 do_copy<narrowOop>(s, src, d, dst, length, CHECK);
duke@435 318 } else {
coleenp@548 319 oop* const src = objArrayOop(s)->obj_at_addr<oop>(src_pos);
coleenp@548 320 oop* const dst = objArrayOop(d)->obj_at_addr<oop>(dst_pos);
coleenp@548 321 do_copy<oop> (s, src, d, dst, length, CHECK);
duke@435 322 }
duke@435 323 }
duke@435 324
duke@435 325
coleenp@4142 326 Klass* ObjArrayKlass::array_klass_impl(bool or_null, int n, TRAPS) {
duke@435 327
coleenp@4037 328 assert(dimension() <= n, "check order of chain");
coleenp@4037 329 int dim = dimension();
coleenp@4037 330 if (dim == n) return this;
duke@435 331
coleenp@4037 332 if (higher_dimension() == NULL) {
duke@435 333 if (or_null) return NULL;
duke@435 334
duke@435 335 ResourceMark rm;
duke@435 336 JavaThread *jt = (JavaThread *)THREAD;
duke@435 337 {
duke@435 338 MutexLocker mc(Compile_lock, THREAD); // for vtables
duke@435 339 // Ensure atomic creation of higher dimensions
duke@435 340 MutexLocker mu(MultiArray_lock, THREAD);
duke@435 341
duke@435 342 // Check if another thread beat us
coleenp@4037 343 if (higher_dimension() == NULL) {
duke@435 344
duke@435 345 // Create multi-dim klass object and link them together
coleenp@4037 346 Klass* k =
coleenp@4142 347 ObjArrayKlass::allocate_objArray_klass(class_loader_data(), dim + 1, this, CHECK_NULL);
coleenp@4142 348 ObjArrayKlass* ak = ObjArrayKlass::cast(k);
coleenp@4037 349 ak->set_lower_dimension(this);
kvn@2439 350 OrderAccess::storestore();
coleenp@4037 351 set_higher_dimension(ak);
coleenp@4142 352 assert(ak->oop_is_objArray(), "incorrect initialization of ObjArrayKlass");
duke@435 353 }
duke@435 354 }
duke@435 355 } else {
duke@435 356 CHECK_UNHANDLED_OOPS_ONLY(Thread::current()->clear_unhandled_oops());
duke@435 357 }
duke@435 358
coleenp@4142 359 ObjArrayKlass *ak = ObjArrayKlass::cast(higher_dimension());
duke@435 360 if (or_null) {
duke@435 361 return ak->array_klass_or_null(n);
duke@435 362 }
duke@435 363 return ak->array_klass(n, CHECK_NULL);
duke@435 364 }
duke@435 365
coleenp@4142 366 Klass* ObjArrayKlass::array_klass_impl(bool or_null, TRAPS) {
duke@435 367 return array_klass_impl(or_null, dimension() + 1, CHECK_NULL);
duke@435 368 }
duke@435 369
coleenp@4142 370 bool ObjArrayKlass::can_be_primary_super_slow() const {
coleenp@4037 371 if (!bottom_klass()->can_be_primary_super())
duke@435 372 // array of interfaces
duke@435 373 return false;
duke@435 374 else
duke@435 375 return Klass::can_be_primary_super_slow();
duke@435 376 }
duke@435 377
coleenp@4142 378 GrowableArray<Klass*>* ObjArrayKlass::compute_secondary_supers(int num_extra_slots) {
duke@435 379 // interfaces = { cloneable_klass, serializable_klass, elemSuper[], ... };
hseigel@4278 380 Array<Klass*>* elem_supers = element_klass()->secondary_supers();
coleenp@4037 381 int num_elem_supers = elem_supers == NULL ? 0 : elem_supers->length();
duke@435 382 int num_secondaries = num_extra_slots + 2 + num_elem_supers;
duke@435 383 if (num_secondaries == 2) {
duke@435 384 // Must share this for correct bootstrapping!
coleenp@4037 385 set_secondary_supers(Universe::the_array_interfaces_array());
coleenp@4037 386 return NULL;
duke@435 387 } else {
coleenp@4037 388 GrowableArray<Klass*>* secondaries = new GrowableArray<Klass*>(num_elem_supers+2);
coleenp@4037 389 secondaries->push(SystemDictionary::Cloneable_klass());
coleenp@4037 390 secondaries->push(SystemDictionary::Serializable_klass());
duke@435 391 for (int i = 0; i < num_elem_supers; i++) {
coleenp@4037 392 Klass* elem_super = (Klass*) elem_supers->at(i);
coleenp@4037 393 Klass* array_super = elem_super->array_klass_or_null();
duke@435 394 assert(array_super != NULL, "must already have been created");
coleenp@4037 395 secondaries->push(array_super);
duke@435 396 }
coleenp@4037 397 return secondaries;
duke@435 398 }
duke@435 399 }
duke@435 400
coleenp@4142 401 bool ObjArrayKlass::compute_is_subtype_of(Klass* k) {
coleenp@4037 402 if (!k->oop_is_objArray())
coleenp@4142 403 return ArrayKlass::compute_is_subtype_of(k);
duke@435 404
coleenp@4142 405 ObjArrayKlass* oak = ObjArrayKlass::cast(k);
coleenp@4037 406 return element_klass()->is_subtype_of(oak->element_klass());
duke@435 407 }
duke@435 408
coleenp@4142 409 void ObjArrayKlass::initialize(TRAPS) {
hseigel@4278 410 bottom_klass()->initialize(THREAD); // dispatches to either InstanceKlass or TypeArrayKlass
duke@435 411 }
duke@435 412
coleenp@548 413 #define ObjArrayKlass_SPECIALIZED_OOP_ITERATE(T, a, p, do_oop) \
coleenp@548 414 { \
coleenp@548 415 T* p = (T*)(a)->base(); \
coleenp@548 416 T* const end = p + (a)->length(); \
coleenp@548 417 while (p < end) { \
coleenp@548 418 do_oop; \
coleenp@548 419 p++; \
coleenp@548 420 } \
coleenp@548 421 }
coleenp@548 422
coleenp@548 423 #define ObjArrayKlass_SPECIALIZED_BOUNDED_OOP_ITERATE(T, a, p, low, high, do_oop) \
coleenp@548 424 { \
coleenp@548 425 T* const l = (T*)(low); \
coleenp@548 426 T* const h = (T*)(high); \
coleenp@548 427 T* p = (T*)(a)->base(); \
coleenp@548 428 T* end = p + (a)->length(); \
coleenp@548 429 if (p < l) p = l; \
coleenp@548 430 if (end > h) end = h; \
coleenp@548 431 while (p < end) { \
coleenp@548 432 do_oop; \
coleenp@548 433 ++p; \
coleenp@548 434 } \
coleenp@548 435 }
coleenp@548 436
coleenp@548 437 #define ObjArrayKlass_OOP_ITERATE(a, p, do_oop) \
coleenp@548 438 if (UseCompressedOops) { \
coleenp@548 439 ObjArrayKlass_SPECIALIZED_OOP_ITERATE(narrowOop, \
coleenp@548 440 a, p, do_oop) \
coleenp@548 441 } else { \
coleenp@548 442 ObjArrayKlass_SPECIALIZED_OOP_ITERATE(oop, \
coleenp@548 443 a, p, do_oop) \
coleenp@548 444 }
coleenp@548 445
coleenp@548 446 #define ObjArrayKlass_BOUNDED_OOP_ITERATE(a, p, low, high, do_oop) \
coleenp@548 447 if (UseCompressedOops) { \
coleenp@548 448 ObjArrayKlass_SPECIALIZED_BOUNDED_OOP_ITERATE(narrowOop, \
coleenp@548 449 a, p, low, high, do_oop) \
coleenp@548 450 } else { \
coleenp@548 451 ObjArrayKlass_SPECIALIZED_BOUNDED_OOP_ITERATE(oop, \
coleenp@548 452 a, p, low, high, do_oop) \
coleenp@548 453 }
duke@435 454
coleenp@4142 455 void ObjArrayKlass::oop_follow_contents(oop obj) {
duke@435 456 assert (obj->is_array(), "obj must be array");
coleenp@4037 457 MarkSweep::follow_klass(obj->klass());
jcoomes@1746 458 if (UseCompressedOops) {
jcoomes@1746 459 objarray_follow_contents<narrowOop>(obj, 0);
jcoomes@1746 460 } else {
jcoomes@1746 461 objarray_follow_contents<oop>(obj, 0);
jcoomes@1746 462 }
duke@435 463 }
duke@435 464
jprovino@4542 465 #if INCLUDE_ALL_GCS
coleenp@4142 466 void ObjArrayKlass::oop_follow_contents(ParCompactionManager* cm,
duke@435 467 oop obj) {
jcoomes@1746 468 assert(obj->is_array(), "obj must be array");
coleenp@4037 469 PSParallelCompact::follow_klass(cm, obj->klass());
jcoomes@1746 470 if (UseCompressedOops) {
jcoomes@1746 471 objarray_follow_contents<narrowOop>(cm, obj, 0);
jcoomes@1746 472 } else {
jcoomes@1746 473 objarray_follow_contents<oop>(cm, obj, 0);
jcoomes@1746 474 }
duke@435 475 }
jprovino@4542 476 #endif // INCLUDE_ALL_GCS
duke@435 477
coleenp@4037 478 #define if_do_metadata_checked(closure, nv_suffix) \
coleenp@4037 479 /* Make sure the non-virtual and the virtual versions match. */ \
coleenp@4037 480 assert(closure->do_metadata##nv_suffix() == closure->do_metadata(), \
coleenp@4037 481 "Inconsistency in do_metadata"); \
coleenp@4037 482 if (closure->do_metadata##nv_suffix())
coleenp@4037 483
duke@435 484 #define ObjArrayKlass_OOP_OOP_ITERATE_DEFN(OopClosureType, nv_suffix) \
duke@435 485 \
coleenp@4142 486 int ObjArrayKlass::oop_oop_iterate##nv_suffix(oop obj, \
duke@435 487 OopClosureType* closure) { \
duke@435 488 SpecializationStats::record_iterate_call##nv_suffix(SpecializationStats::oa); \
duke@435 489 assert (obj->is_array(), "obj must be array"); \
duke@435 490 objArrayOop a = objArrayOop(obj); \
duke@435 491 /* Get size before changing pointers. */ \
duke@435 492 /* Don't call size() or oop_size() since that is a virtual call. */ \
duke@435 493 int size = a->object_size(); \
coleenp@4037 494 if_do_metadata_checked(closure, nv_suffix) { \
coleenp@4037 495 closure->do_klass##nv_suffix(obj->klass()); \
duke@435 496 } \
coleenp@548 497 ObjArrayKlass_OOP_ITERATE(a, p, (closure)->do_oop##nv_suffix(p)) \
duke@435 498 return size; \
duke@435 499 }
duke@435 500
duke@435 501 #define ObjArrayKlass_OOP_OOP_ITERATE_DEFN_m(OopClosureType, nv_suffix) \
duke@435 502 \
coleenp@4142 503 int ObjArrayKlass::oop_oop_iterate##nv_suffix##_m(oop obj, \
duke@435 504 OopClosureType* closure, \
duke@435 505 MemRegion mr) { \
duke@435 506 SpecializationStats::record_iterate_call##nv_suffix(SpecializationStats::oa); \
duke@435 507 assert(obj->is_array(), "obj must be array"); \
duke@435 508 objArrayOop a = objArrayOop(obj); \
duke@435 509 /* Get size before changing pointers. */ \
duke@435 510 /* Don't call size() or oop_size() since that is a virtual call */ \
duke@435 511 int size = a->object_size(); \
coleenp@4037 512 if_do_metadata_checked(closure, nv_suffix) { \
coleenp@4037 513 /* SSS: Do we need to pass down mr here? */ \
coleenp@4037 514 closure->do_klass##nv_suffix(a->klass()); \
duke@435 515 } \
coleenp@548 516 ObjArrayKlass_BOUNDED_OOP_ITERATE( \
coleenp@548 517 a, p, mr.start(), mr.end(), (closure)->do_oop##nv_suffix(p)) \
coleenp@548 518 return size; \
coleenp@548 519 }
coleenp@548 520
coleenp@548 521 // Like oop_oop_iterate but only iterates over a specified range and only used
coleenp@548 522 // for objArrayOops.
coleenp@548 523 #define ObjArrayKlass_OOP_OOP_ITERATE_DEFN_r(OopClosureType, nv_suffix) \
coleenp@548 524 \
coleenp@4142 525 int ObjArrayKlass::oop_oop_iterate_range##nv_suffix(oop obj, \
coleenp@548 526 OopClosureType* closure, \
coleenp@548 527 int start, int end) { \
coleenp@548 528 SpecializationStats::record_iterate_call##nv_suffix(SpecializationStats::oa); \
coleenp@548 529 assert(obj->is_array(), "obj must be array"); \
coleenp@548 530 objArrayOop a = objArrayOop(obj); \
coleenp@548 531 /* Get size before changing pointers. */ \
coleenp@548 532 /* Don't call size() or oop_size() since that is a virtual call */ \
coleenp@548 533 int size = a->object_size(); \
coleenp@548 534 if (UseCompressedOops) { \
coleenp@548 535 HeapWord* low = start == 0 ? (HeapWord*)a : (HeapWord*)a->obj_at_addr<narrowOop>(start);\
coleenp@548 536 /* this might be wierd if end needs to be aligned on HeapWord boundary */ \
coleenp@548 537 HeapWord* high = (HeapWord*)((narrowOop*)a->base() + end); \
coleenp@548 538 MemRegion mr(low, high); \
coleenp@4037 539 if_do_metadata_checked(closure, nv_suffix) { \
coleenp@4037 540 /* SSS: Do we need to pass down mr here? */ \
coleenp@4037 541 closure->do_klass##nv_suffix(a->klass()); \
duke@435 542 } \
coleenp@548 543 ObjArrayKlass_SPECIALIZED_BOUNDED_OOP_ITERATE(narrowOop, \
coleenp@548 544 a, p, low, high, (closure)->do_oop##nv_suffix(p)) \
duke@435 545 } else { \
coleenp@548 546 HeapWord* low = start == 0 ? (HeapWord*)a : (HeapWord*)a->obj_at_addr<oop>(start); \
coleenp@548 547 HeapWord* high = (HeapWord*)((oop*)a->base() + end); \
coleenp@548 548 MemRegion mr(low, high); \
coleenp@4037 549 if_do_metadata_checked(closure, nv_suffix) { \
coleenp@4037 550 /* SSS: Do we need to pass down mr here? */ \
coleenp@4037 551 closure->do_klass##nv_suffix(a->klass()); \
duke@435 552 } \
coleenp@548 553 ObjArrayKlass_SPECIALIZED_BOUNDED_OOP_ITERATE(oop, \
coleenp@548 554 a, p, low, high, (closure)->do_oop##nv_suffix(p)) \
duke@435 555 } \
duke@435 556 return size; \
duke@435 557 }
duke@435 558
duke@435 559 ALL_OOP_OOP_ITERATE_CLOSURES_1(ObjArrayKlass_OOP_OOP_ITERATE_DEFN)
ysr@777 560 ALL_OOP_OOP_ITERATE_CLOSURES_2(ObjArrayKlass_OOP_OOP_ITERATE_DEFN)
duke@435 561 ALL_OOP_OOP_ITERATE_CLOSURES_1(ObjArrayKlass_OOP_OOP_ITERATE_DEFN_m)
ysr@777 562 ALL_OOP_OOP_ITERATE_CLOSURES_2(ObjArrayKlass_OOP_OOP_ITERATE_DEFN_m)
coleenp@548 563 ALL_OOP_OOP_ITERATE_CLOSURES_1(ObjArrayKlass_OOP_OOP_ITERATE_DEFN_r)
ysr@777 564 ALL_OOP_OOP_ITERATE_CLOSURES_2(ObjArrayKlass_OOP_OOP_ITERATE_DEFN_r)
duke@435 565
coleenp@4142 566 int ObjArrayKlass::oop_adjust_pointers(oop obj) {
duke@435 567 assert(obj->is_objArray(), "obj must be obj array");
duke@435 568 objArrayOop a = objArrayOop(obj);
duke@435 569 // Get size before changing pointers.
duke@435 570 // Don't call size() or oop_size() since that is a virtual call.
duke@435 571 int size = a->object_size();
coleenp@548 572 ObjArrayKlass_OOP_ITERATE(a, p, MarkSweep::adjust_pointer(p))
duke@435 573 return size;
duke@435 574 }
duke@435 575
jprovino@4542 576 #if INCLUDE_ALL_GCS
coleenp@4142 577 void ObjArrayKlass::oop_push_contents(PSPromotionManager* pm, oop obj) {
duke@435 578 assert(obj->is_objArray(), "obj must be obj array");
coleenp@548 579 ObjArrayKlass_OOP_ITERATE( \
coleenp@548 580 objArrayOop(obj), p, \
coleenp@548 581 if (PSScavenge::should_scavenge(p)) { \
coleenp@548 582 pm->claim_or_forward_depth(p); \
coleenp@548 583 })
duke@435 584 }
duke@435 585
coleenp@4142 586 int ObjArrayKlass::oop_update_pointers(ParCompactionManager* cm, oop obj) {
duke@435 587 assert (obj->is_objArray(), "obj must be obj array");
duke@435 588 objArrayOop a = objArrayOop(obj);
coleenp@4037 589 int size = a->object_size();
coleenp@548 590 ObjArrayKlass_OOP_ITERATE(a, p, PSParallelCompact::adjust_pointer(p))
coleenp@4037 591 return size;
duke@435 592 }
jprovino@4542 593 #endif // INCLUDE_ALL_GCS
duke@435 594
duke@435 595 // JVM support
duke@435 596
coleenp@4142 597 jint ObjArrayKlass::compute_modifier_flags(TRAPS) const {
duke@435 598 // The modifier for an objectArray is the same as its element
duke@435 599 if (element_klass() == NULL) {
duke@435 600 assert(Universe::is_bootstrapping(), "partial objArray only at startup");
duke@435 601 return JVM_ACC_ABSTRACT | JVM_ACC_FINAL | JVM_ACC_PUBLIC;
duke@435 602 }
coleenp@833 603 // Return the flags of the bottom element type.
hseigel@4278 604 jint element_flags = bottom_klass()->compute_modifier_flags(CHECK_0);
duke@435 605
duke@435 606 return (element_flags & (JVM_ACC_PUBLIC | JVM_ACC_PRIVATE | JVM_ACC_PROTECTED))
duke@435 607 | (JVM_ACC_ABSTRACT | JVM_ACC_FINAL);
duke@435 608 }
duke@435 609
duke@435 610
coleenp@4037 611 // Printing
coleenp@4037 612
coleenp@4142 613 void ObjArrayKlass::print_on(outputStream* st) const {
duke@435 614 #ifndef PRODUCT
coleenp@4037 615 Klass::print_on(st);
coleenp@4037 616 st->print(" - instance klass: ");
coleenp@4037 617 element_klass()->print_value_on(st);
coleenp@4037 618 st->cr();
coleenp@4037 619 #endif //PRODUCT
coleenp@4037 620 }
coleenp@4037 621
coleenp@4142 622 void ObjArrayKlass::print_value_on(outputStream* st) const {
coleenp@4037 623 assert(is_klass(), "must be klass");
coleenp@4037 624
coleenp@4037 625 element_klass()->print_value_on(st);
coleenp@4037 626 st->print("[]");
coleenp@4037 627 }
coleenp@4037 628
coleenp@4037 629 #ifndef PRODUCT
duke@435 630
coleenp@4142 631 void ObjArrayKlass::oop_print_on(oop obj, outputStream* st) {
coleenp@4142 632 ArrayKlass::oop_print_on(obj, st);
duke@435 633 assert(obj->is_objArray(), "must be objArray");
duke@435 634 objArrayOop oa = objArrayOop(obj);
duke@435 635 int print_len = MIN2((intx) oa->length(), MaxElementPrintSize);
duke@435 636 for(int index = 0; index < print_len; index++) {
duke@435 637 st->print(" - %3d : ", index);
duke@435 638 oa->obj_at(index)->print_value_on(st);
duke@435 639 st->cr();
duke@435 640 }
duke@435 641 int remaining = oa->length() - print_len;
duke@435 642 if (remaining > 0) {
stefank@4126 643 st->print_cr(" - <%d more elements, increase MaxElementPrintSize to print>", remaining);
duke@435 644 }
duke@435 645 }
duke@435 646
jrose@1590 647 #endif //PRODUCT
jrose@1590 648
jrose@1100 649 static int max_objArray_print_length = 4;
duke@435 650
coleenp@4142 651 void ObjArrayKlass::oop_print_value_on(oop obj, outputStream* st) {
duke@435 652 assert(obj->is_objArray(), "must be objArray");
jrose@1100 653 st->print("a ");
duke@435 654 element_klass()->print_value_on(st);
jrose@1100 655 int len = objArrayOop(obj)->length();
jrose@1100 656 st->print("[%d] ", len);
jrose@1100 657 obj->print_address_on(st);
jrose@1590 658 if (NOT_PRODUCT(PrintOopAddress ||) PrintMiscellaneous && (WizardMode || Verbose)) {
jrose@1100 659 st->print("{");
jrose@1100 660 for (int i = 0; i < len; i++) {
jrose@1100 661 if (i > max_objArray_print_length) {
jrose@1100 662 st->print("..."); break;
jrose@1100 663 }
jrose@1100 664 st->print(" "INTPTR_FORMAT, (intptr_t)(void*)objArrayOop(obj)->obj_at(i));
jrose@1100 665 }
jrose@1100 666 st->print(" }");
jrose@1100 667 }
duke@435 668 }
duke@435 669
coleenp@4142 670 const char* ObjArrayKlass::internal_name() const {
duke@435 671 return external_name();
duke@435 672 }
duke@435 673
coleenp@4037 674
duke@435 675 // Verification
duke@435 676
coleenp@5307 677 void ObjArrayKlass::verify_on(outputStream* st, bool check_dictionary) {
coleenp@5307 678 ArrayKlass::verify_on(st, check_dictionary);
coleenp@4037 679 guarantee(element_klass()->is_klass(), "should be klass");
coleenp@4037 680 guarantee(bottom_klass()->is_klass(), "should be klass");
hseigel@4278 681 Klass* bk = bottom_klass();
coleenp@4037 682 guarantee(bk->oop_is_instance() || bk->oop_is_typeArray(), "invalid bottom klass");
coleenp@4037 683 }
coleenp@4037 684
coleenp@4142 685 void ObjArrayKlass::oop_verify_on(oop obj, outputStream* st) {
coleenp@4142 686 ArrayKlass::oop_verify_on(obj, st);
duke@435 687 guarantee(obj->is_objArray(), "must be objArray");
duke@435 688 objArrayOop oa = objArrayOop(obj);
duke@435 689 for(int index = 0; index < oa->length(); index++) {
duke@435 690 guarantee(oa->obj_at(index)->is_oop_or_null(), "should be oop");
duke@435 691 }
duke@435 692 }

mercurial