< prev index next >

src/hotspot/share/oops/objArrayKlass.cpp

Print this page

  1 /*
  2  * Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
  3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4  *
  5  * This code is free software; you can redistribute it and/or modify it
  6  * under the terms of the GNU General Public License version 2 only, as
  7  * published by the Free Software Foundation.
  8  *
  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 #include "precompiled.hpp"
 26 #include "classfile/moduleEntry.hpp"
 27 #include "classfile/packageEntry.hpp"
 28 #include "classfile/symbolTable.hpp"
 29 #include "classfile/vmClasses.hpp"
 30 #include "classfile/vmSymbols.hpp"
 31 #include "gc/shared/collectedHeap.inline.hpp"
 32 #include "memory/iterator.inline.hpp"
 33 #include "memory/metadataFactory.hpp"
 34 #include "memory/metaspaceClosure.hpp"

 35 #include "memory/resourceArea.hpp"
 36 #include "memory/universe.hpp"
 37 #include "oops/arrayKlass.hpp"
 38 #include "oops/instanceKlass.hpp"
 39 #include "oops/klass.inline.hpp"
 40 #include "oops/objArrayKlass.inline.hpp"
 41 #include "oops/objArrayOop.inline.hpp"
 42 #include "oops/oop.inline.hpp"
 43 #include "oops/symbol.hpp"
 44 #include "runtime/handles.inline.hpp"
 45 #include "runtime/mutexLocker.hpp"
 46 #include "utilities/macros.hpp"
 47 
 48 ObjArrayKlass* ObjArrayKlass::allocate(ClassLoaderData* loader_data, int n, Klass* k, Symbol* name, TRAPS) {


 49   assert(ObjArrayKlass::header_size() <= InstanceKlass::header_size(),
 50       "array klasses must be same size as InstanceKlass");
 51 
 52   int size = ArrayKlass::static_size(ObjArrayKlass::header_size());
 53 
 54   return new (loader_data, size, THREAD) ObjArrayKlass(n, k, name);
 55 }
 56 
 57 ObjArrayKlass* ObjArrayKlass::allocate_objArray_klass(ClassLoaderData* loader_data,
 58                                                       int n, Klass* element_klass, TRAPS) {


 59 
 60   // Eagerly allocate the direct array supertype.
 61   Klass* super_klass = nullptr;
 62   if (!Universe::is_bootstrapping() || vmClasses::Object_klass_loaded()) {
 63     assert(MultiArray_lock->holds_lock(THREAD), "must hold lock after bootstrapping");
 64     Klass* element_super = element_klass->super();
 65     if (element_super != nullptr) {
 66       // The element type has a direct super.  E.g., String[] has direct super of Object[].
 67       // Also, see if the element has secondary supertypes.
 68       // We need an array type for each before creating this array type.
 69       super_klass = element_super->array_klass(CHECK_NULL);




 70       const Array<Klass*>* element_supers = element_klass->secondary_supers();
 71       for (int i = element_supers->length() - 1; i >= 0; i--) {
 72         Klass* elem_super = element_supers->at(i);
 73         elem_super->array_klass(CHECK_NULL);
 74       }
 75       // Fall through because inheritance is acyclic and we hold the global recursive lock to allocate all the arrays.
 76     } else {
 77       // The element type is already Object.  Object[] has direct super of Object.
 78       super_klass = vmClasses::Object_klass();
 79     }
 80   }
 81 
 82   // Create type name for klass.
 83   Symbol* name = nullptr;
 84   {
 85     ResourceMark rm(THREAD);
 86     char *name_str = element_klass->name()->as_C_string();
 87     int len = element_klass->name()->utf8_length();
 88     char *new_str = NEW_RESOURCE_ARRAY(char, len + 4);
 89     int idx = 0;
 90     new_str[idx++] = JVM_SIGNATURE_ARRAY;
 91     if (element_klass->is_instance_klass()) { // it could be an array or simple type
 92       new_str[idx++] = JVM_SIGNATURE_CLASS;
 93     }
 94     memcpy(&new_str[idx], name_str, len * sizeof(char));
 95     idx += len;
 96     if (element_klass->is_instance_klass()) {
 97       new_str[idx++] = JVM_SIGNATURE_ENDCLASS;
 98     }
 99     new_str[idx++] = '\0';
100     name = SymbolTable::new_symbol(new_str);
101   }
102 
103   // Initialize instance variables
104   ObjArrayKlass* oak = ObjArrayKlass::allocate(loader_data, n, element_klass, name, CHECK_NULL);
105 
106   ModuleEntry* module = oak->module();
107   assert(module != nullptr, "No module entry for array");
108 
109   // Call complete_create_array_klass after all instance variables has been initialized.
110   ArrayKlass::complete_create_array_klass(oak, super_klass, module, CHECK_NULL);
111 
112   // Add all classes to our internal class loader list here,
113   // including classes in the bootstrap (null) class loader.
114   // Do this step after creating the mirror so that if the
115   // mirror creation fails, loaded_classes_do() doesn't find
116   // an array class without a mirror.
117   loader_data->add_class(oak);
118 
119   return oak;
120 }
121 
122 ObjArrayKlass::ObjArrayKlass(int n, Klass* element_klass, Symbol* name) : ArrayKlass(name, Kind) {
123   set_dimension(n);
124   set_element_klass(element_klass);
125 
126   Klass* bk;
127   if (element_klass->is_objArray_klass()) {
128     bk = ObjArrayKlass::cast(element_klass)->bottom_klass();


129   } else {
130     bk = element_klass;
131   }
132   assert(bk != nullptr && (bk->is_instance_klass() || bk->is_typeArray_klass()), "invalid bottom klass");
133   set_bottom_klass(bk);
134   set_class_loader_data(bk->class_loader_data());
135 
136   if (element_klass->is_array_klass()) {
137     set_lower_dimension(ArrayKlass::cast(element_klass));
138   }
139 
140   set_layout_helper(array_layout_helper(T_OBJECT));











141   assert(is_array_klass(), "sanity");
142   assert(is_objArray_klass(), "sanity");
143 }
144 
145 size_t ObjArrayKlass::oop_size(oop obj) const {
146   assert(obj->is_objArray(), "must be object array");
147   return objArrayOop(obj)->object_size();
148 }
149 
150 objArrayOop ObjArrayKlass::allocate(int length, TRAPS) {
151   check_array_allocation_length(length, arrayOopDesc::max_array_length(T_OBJECT), CHECK_NULL);
152   size_t size = objArrayOopDesc::object_size(length);
153   return (objArrayOop)Universe::heap()->array_allocate(this, size, length,
154                                                        /* do_zero */ true, THREAD);














155 }
156 
157 oop ObjArrayKlass::multi_allocate(int rank, jint* sizes, TRAPS) {
158   int length = *sizes;
159   ArrayKlass* ld_klass = lower_dimension();
160   // If length < 0 allocate will throw an exception.
161   objArrayOop array = allocate(length, CHECK_NULL);
162   objArrayHandle h_array (THREAD, array);
163   if (rank > 1) {
164     if (length != 0) {
165       for (int index = 0; index < length; index++) {
166         oop sub_array = ld_klass->multi_allocate(rank - 1, &sizes[1], CHECK_NULL);
167         h_array->obj_at_put(index, sub_array);
168       }
169     } else {
170       // Since this array dimension has zero length, nothing will be
171       // allocated, however the lower dimension values must be checked
172       // for illegal values.
173       for (int i = 0; i < rank - 1; ++i) {
174         sizes += 1;
175         if (*sizes < 0) {
176           THROW_MSG_NULL(vmSymbols::java_lang_NegativeArraySizeException(), err_msg("%d", *sizes));
177         }
178       }
179     }
180   }
181   return h_array();
182 }
183 
184 // Either oop or narrowOop depending on UseCompressedOops.
185 void ObjArrayKlass::do_copy(arrayOop s, size_t src_offset,
186                             arrayOop d, size_t dst_offset, int length, TRAPS) {
187   if (s == d) {
188     // since source and destination are equal we do not need conversion checks.
189     assert(length > 0, "sanity check");
190     ArrayAccess<>::oop_arraycopy(s, src_offset, d, dst_offset, length);
191   } else {
192     // We have to make sure all elements conform to the destination array
193     Klass* bound = ObjArrayKlass::cast(d->klass())->element_klass();
194     Klass* stype = ObjArrayKlass::cast(s->klass())->element_klass();



195     if (stype == bound || stype->is_subtype_of(bound)) {
196       // elements are guaranteed to be subtypes, so no check necessary
197       ArrayAccess<ARRAYCOPY_DISJOINT>::oop_arraycopy(s, src_offset, d, dst_offset, length);



198     } else {
199       // slow case: need individual subtype checks
200       // note: don't use obj_at_put below because it includes a redundant store check
201       if (!ArrayAccess<ARRAYCOPY_DISJOINT | ARRAYCOPY_CHECKCAST>::oop_arraycopy(s, src_offset, d, dst_offset, length)) {
202         ResourceMark rm(THREAD);
203         stringStream ss;
204         if (!bound->is_subtype_of(stype)) {
205           ss.print("arraycopy: type mismatch: can not copy %s[] into %s[]",
206                    stype->external_name(), bound->external_name());
207         } else {
208           // oop_arraycopy should return the index in the source array that
209           // contains the problematic oop.
210           ss.print("arraycopy: element type mismatch: can not cast one of the elements"
211                    " of %s[] to the type of the destination array, %s",
212                    stype->external_name(), bound->external_name());
213         }
214         THROW_MSG(vmSymbols::java_lang_ArrayStoreException(), ss.as_string());
215       }
216     }
217   }
218 }
219 
220 void ObjArrayKlass::copy_array(arrayOop s, int src_pos, arrayOop d,
221                                int dst_pos, int length, TRAPS) {
222   assert(s->is_objArray(), "must be obj array");
223 







224   if (!d->is_objArray()) {
225     ResourceMark rm(THREAD);
226     stringStream ss;
227     if (d->is_typeArray()) {
228       ss.print("arraycopy: type mismatch: can not copy object array[] into %s[]",
229                type2name_tab[ArrayKlass::cast(d->klass())->element_type()]);
230     } else {
231       ss.print("arraycopy: destination type %s is not an array", d->klass()->external_name());
232     }
233     THROW_MSG(vmSymbols::java_lang_ArrayStoreException(), ss.as_string());
234   }
235 
236   // Check is all offsets and lengths are non negative
237   if (src_pos < 0 || dst_pos < 0 || length < 0) {
238     // Pass specific exception reason.
239     ResourceMark rm(THREAD);
240     stringStream ss;
241     if (src_pos < 0) {
242       ss.print("arraycopy: source index %d out of bounds for object array[%d]",
243                src_pos, s->length());

320       Klass* array_super = elem_super->array_klass_or_null();
321       assert(array_super != nullptr, "must already have been created");
322       secondaries->push(array_super);
323     }
324     return secondaries;
325   }
326 }
327 
328 void ObjArrayKlass::initialize(TRAPS) {
329   bottom_klass()->initialize(THREAD);  // dispatches to either InstanceKlass or TypeArrayKlass
330 }
331 
332 void ObjArrayKlass::metaspace_pointers_do(MetaspaceClosure* it) {
333   ArrayKlass::metaspace_pointers_do(it);
334   it->push(&_element_klass);
335   it->push(&_bottom_klass);
336 }
337 
338 jint ObjArrayKlass::compute_modifier_flags() const {
339   // The modifier for an objectArray is the same as its element

340   if (element_klass() == nullptr) {
341     assert(Universe::is_bootstrapping(), "partial objArray only at startup");
342     return JVM_ACC_ABSTRACT | JVM_ACC_FINAL | JVM_ACC_PUBLIC;
343   }
344   // Return the flags of the bottom element type.
345   jint element_flags = bottom_klass()->compute_modifier_flags();
346 


347   return (element_flags & (JVM_ACC_PUBLIC | JVM_ACC_PRIVATE | JVM_ACC_PROTECTED))
348                         | (JVM_ACC_ABSTRACT | JVM_ACC_FINAL);
349 }
350 
351 ModuleEntry* ObjArrayKlass::module() const {
352   assert(bottom_klass() != nullptr, "ObjArrayKlass returned unexpected null bottom_klass");
353   // The array is defined in the module of its bottom class
354   return bottom_klass()->module();
355 }
356 
357 PackageEntry* ObjArrayKlass::package() const {
358   assert(bottom_klass() != nullptr, "ObjArrayKlass returned unexpected null bottom_klass");
359   return bottom_klass()->package();
360 }
361 
362 // Printing
363 
364 void ObjArrayKlass::print_on(outputStream* st) const {
365 #ifndef PRODUCT
366   Klass::print_on(st);
367   st->print(" - instance klass: ");
368   element_klass()->print_value_on(st);
369   st->cr();
370 #endif //PRODUCT
371 }
372 
373 void ObjArrayKlass::print_value_on(outputStream* st) const {
374   assert(is_klass(), "must be klass");
375 
376   element_klass()->print_value_on(st);
377   st->print("[]");
378 }
379 
380 #ifndef PRODUCT
381 
382 void ObjArrayKlass::oop_print_on(oop obj, outputStream* st) {
383   ArrayKlass::oop_print_on(obj, st);
384   assert(obj->is_objArray(), "must be objArray");
385   objArrayOop oa = objArrayOop(obj);
386   int print_len = MIN2(oa->length(), MaxElementPrintSize);
387   for(int index = 0; index < print_len; index++) {

409   st->print("[%d] ", len);
410   if (obj != nullptr) {
411     obj->print_address_on(st);
412   } else {
413     st->print_cr("null");
414   }
415 }
416 
417 const char* ObjArrayKlass::internal_name() const {
418   return external_name();
419 }
420 
421 
422 // Verification
423 
424 void ObjArrayKlass::verify_on(outputStream* st) {
425   ArrayKlass::verify_on(st);
426   guarantee(element_klass()->is_klass(), "should be klass");
427   guarantee(bottom_klass()->is_klass(), "should be klass");
428   Klass* bk = bottom_klass();
429   guarantee(bk->is_instance_klass() || bk->is_typeArray_klass(),  "invalid bottom klass");

430 }
431 
432 void ObjArrayKlass::oop_verify_on(oop obj, outputStream* st) {
433   ArrayKlass::oop_verify_on(obj, st);
434   guarantee(obj->is_objArray(), "must be objArray");

435   objArrayOop oa = objArrayOop(obj);
436   for(int index = 0; index < oa->length(); index++) {
437     guarantee(oopDesc::is_oop_or_null(oa->obj_at(index)), "should be oop");
438   }
439 }

  1 /*
  2  * Copyright (c) 1997, 2025, Oracle and/or its affiliates. All rights reserved.
  3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4  *
  5  * This code is free software; you can redistribute it and/or modify it
  6  * under the terms of the GNU General Public License version 2 only, as
  7  * published by the Free Software Foundation.
  8  *
  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 #include "precompiled.hpp"
 26 #include "classfile/moduleEntry.hpp"
 27 #include "classfile/packageEntry.hpp"
 28 #include "classfile/symbolTable.hpp"
 29 #include "classfile/vmClasses.hpp"
 30 #include "classfile/vmSymbols.hpp"
 31 #include "gc/shared/collectedHeap.inline.hpp"
 32 #include "memory/iterator.inline.hpp"
 33 #include "memory/metadataFactory.hpp"
 34 #include "memory/metaspaceClosure.hpp"
 35 #include "memory/oopFactory.hpp"
 36 #include "memory/resourceArea.hpp"
 37 #include "memory/universe.hpp"
 38 #include "oops/arrayKlass.hpp"
 39 #include "oops/instanceKlass.hpp"
 40 #include "oops/klass.inline.hpp"
 41 #include "oops/objArrayKlass.inline.hpp"
 42 #include "oops/objArrayOop.inline.hpp"
 43 #include "oops/oop.inline.hpp"
 44 #include "oops/symbol.hpp"
 45 #include "runtime/handles.inline.hpp"
 46 #include "runtime/mutexLocker.hpp"
 47 #include "utilities/macros.hpp"
 48 
 49 ObjArrayKlass* ObjArrayKlass::allocate(ClassLoaderData* loader_data, int n,
 50                                        Klass* k, Symbol* name, bool null_free,
 51                                        TRAPS) {
 52   assert(ObjArrayKlass::header_size() <= InstanceKlass::header_size(),
 53       "array klasses must be same size as InstanceKlass");
 54 
 55   int size = ArrayKlass::static_size(ObjArrayKlass::header_size());
 56 
 57   return new (loader_data, size, THREAD) ObjArrayKlass(n, k, name, null_free);
 58 }
 59 
 60 ObjArrayKlass* ObjArrayKlass::allocate_objArray_klass(ClassLoaderData* loader_data,
 61                                                       int n, Klass* element_klass,
 62                                                       bool null_free, TRAPS) {
 63   assert(!null_free || (n == 1 && element_klass->is_inline_klass()), "null-free unsupported");
 64 
 65   // Eagerly allocate the direct array supertype.
 66   Klass* super_klass = nullptr;
 67   if (!Universe::is_bootstrapping() || vmClasses::Object_klass_loaded()) {
 68     assert(MultiArray_lock->holds_lock(THREAD), "must hold lock after bootstrapping");
 69     Klass* element_super = element_klass->super();
 70     if (element_super != nullptr) {
 71       // The element type has a direct super.  E.g., String[] has direct super of Object[].
 72       // Also, see if the element has secondary supertypes.
 73       // We need an array type for each before creating this array type.
 74       if (null_free) {
 75         super_klass = element_klass->array_klass(CHECK_NULL);
 76       } else {
 77         super_klass = element_super->array_klass(CHECK_NULL);
 78       }
 79       const Array<Klass*>* element_supers = element_klass->secondary_supers();
 80       for (int i = element_supers->length() - 1; i >= 0; i--) {
 81         Klass* elem_super = element_supers->at(i);
 82         elem_super->array_klass(CHECK_NULL);
 83       }
 84       // Fall through because inheritance is acyclic and we hold the global recursive lock to allocate all the arrays.
 85     } else {
 86       // The element type is already Object.  Object[] has direct super of Object.
 87       super_klass = vmClasses::Object_klass();
 88     }
 89   }
 90 
 91   // Create type name for klass.
 92   Symbol* name = ArrayKlass::create_element_klass_array_name(element_klass, CHECK_NULL);


















 93 
 94   // Initialize instance variables
 95   ObjArrayKlass* oak = ObjArrayKlass::allocate(loader_data, n, element_klass, name, null_free, CHECK_NULL);
 96 
 97   ModuleEntry* module = oak->module();
 98   assert(module != nullptr, "No module entry for array");
 99 
100   // Call complete_create_array_klass after all instance variables has been initialized.
101   ArrayKlass::complete_create_array_klass(oak, super_klass, module, CHECK_NULL);
102 
103   // Add all classes to our internal class loader list here,
104   // including classes in the bootstrap (null) class loader.
105   // Do this step after creating the mirror so that if the
106   // mirror creation fails, loaded_classes_do() doesn't find
107   // an array class without a mirror.
108   loader_data->add_class(oak);
109 
110   return oak;
111 }
112 
113 ObjArrayKlass::ObjArrayKlass(int n, Klass* element_klass, Symbol* name, bool null_free) : ArrayKlass(name, Kind) {
114   set_dimension(n);
115   set_element_klass(element_klass);
116 
117   Klass* bk;
118   if (element_klass->is_objArray_klass()) {
119     bk = ObjArrayKlass::cast(element_klass)->bottom_klass();
120   } else if (element_klass->is_flatArray_klass()) {
121     bk = FlatArrayKlass::cast(element_klass)->element_klass();
122   } else {
123     bk = element_klass;
124   }
125   assert(bk != nullptr && (bk->is_instance_klass() || bk->is_typeArray_klass()), "invalid bottom klass");
126   set_bottom_klass(bk);
127   set_class_loader_data(bk->class_loader_data());
128 
129   if (element_klass->is_array_klass()) {
130     set_lower_dimension(ArrayKlass::cast(element_klass));
131   }
132 
133   int lh = array_layout_helper(T_OBJECT);
134   if (null_free) {
135     assert(n == 1, "Bytecode does not support null-free multi-dim");
136     lh = layout_helper_set_null_free(lh);
137 #ifdef _LP64
138     set_prototype_header(markWord::null_free_array_prototype());
139     assert(prototype_header().is_null_free_array(), "sanity");
140 #else
141     set_prototype_header(markWord::inline_type_prototype());
142 #endif
143   }
144   set_layout_helper(lh);
145   assert(is_array_klass(), "sanity");
146   assert(is_objArray_klass(), "sanity");
147 }
148 
149 size_t ObjArrayKlass::oop_size(oop obj) const {
150   assert(obj->is_objArray(), "must be object array");
151   return objArrayOop(obj)->object_size();
152 }
153 
154 objArrayOop ObjArrayKlass::allocate(int length, TRAPS) {
155   check_array_allocation_length(length, arrayOopDesc::max_array_length(T_OBJECT), CHECK_NULL);
156   size_t size = objArrayOopDesc::object_size(length);
157   bool populate_null_free = is_null_free_array_klass();
158   objArrayOop array =  (objArrayOop)Universe::heap()->array_allocate(this, size, length,
159                                                        /* do_zero */ true, CHECK_NULL);
160   objArrayHandle array_h(THREAD, array);
161   if (populate_null_free) {
162     assert(dimension() == 1, "Can only populate the final dimension");
163     assert(element_klass()->is_inline_klass(), "Unexpected");
164     assert(!element_klass()->is_array_klass(), "ArrayKlass unexpected here");
165     element_klass()->initialize(CHECK_NULL);
166     // Populate default values...
167     instanceOop value = (instanceOop) InlineKlass::cast(element_klass())->default_value();
168     for (int i = 0; i < length; i++) {
169       array_h->obj_at_put(i, value);
170     }
171   }
172   return array_h();
173 }
174 
175 oop ObjArrayKlass::multi_allocate(int rank, jint* sizes, TRAPS) {
176   int length = *sizes;
177   ArrayKlass* ld_klass = lower_dimension();
178   // If length < 0 allocate will throw an exception.
179   objArrayOop array = allocate(length, CHECK_NULL);
180   objArrayHandle h_array (THREAD, array);
181   if (rank > 1) {
182     if (length != 0) {
183       for (int index = 0; index < length; index++) {
184         oop sub_array = ld_klass->multi_allocate(rank-1, &sizes[1], CHECK_NULL);
185         h_array->obj_at_put(index, sub_array);
186       }
187     } else {
188       // Since this array dimension has zero length, nothing will be
189       // allocated, however the lower dimension values must be checked
190       // for illegal values.
191       for (int i = 0; i < rank - 1; ++i) {
192         sizes += 1;
193         if (*sizes < 0) {
194           THROW_MSG_NULL(vmSymbols::java_lang_NegativeArraySizeException(), err_msg("%d", *sizes));
195         }
196       }
197     }
198   }
199   return h_array();
200 }
201 
202 // Either oop or narrowOop depending on UseCompressedOops.
203 void ObjArrayKlass::do_copy(arrayOop s, size_t src_offset,
204                             arrayOop d, size_t dst_offset, int length, TRAPS) {
205   if (s == d) {
206     // since source and destination are equal we do not need conversion checks.
207     assert(length > 0, "sanity check");
208     ArrayAccess<>::oop_arraycopy(s, src_offset, d, dst_offset, length);
209   } else {
210     // We have to make sure all elements conform to the destination array
211     Klass* bound = ObjArrayKlass::cast(d->klass())->element_klass();
212     Klass* stype = ObjArrayKlass::cast(s->klass())->element_klass();
213     // Perform null check if dst is null-free but src has no such guarantee
214     bool null_check = ((!s->klass()->is_null_free_array_klass()) &&
215         d->klass()->is_null_free_array_klass());
216     if (stype == bound || stype->is_subtype_of(bound)) {
217       if (null_check) {
218         ArrayAccess<ARRAYCOPY_DISJOINT | ARRAYCOPY_NOTNULL>::oop_arraycopy(s, src_offset, d, dst_offset, length);
219       } else {
220         ArrayAccess<ARRAYCOPY_DISJOINT>::oop_arraycopy(s, src_offset, d, dst_offset, length);
221       }
222     } else {
223       if (null_check) {
224         ArrayAccess<ARRAYCOPY_DISJOINT | ARRAYCOPY_CHECKCAST | ARRAYCOPY_NOTNULL>::oop_arraycopy(s, src_offset, d, dst_offset, length);
225       } else {
226         ArrayAccess<ARRAYCOPY_DISJOINT | ARRAYCOPY_CHECKCAST>::oop_arraycopy(s, src_offset, d, dst_offset, length);












227       }
228     }
229   }
230 }
231 
232 void ObjArrayKlass::copy_array(arrayOop s, int src_pos, arrayOop d,
233                                int dst_pos, int length, TRAPS) {
234   assert(s->is_objArray(), "must be obj array");
235 
236   if (UseFlatArray) {
237     if (d->is_flatArray()) {
238       FlatArrayKlass::cast(d->klass())->copy_array(s, src_pos, d, dst_pos, length, THREAD);
239       return;
240     }
241   }
242 
243   if (!d->is_objArray()) {
244     ResourceMark rm(THREAD);
245     stringStream ss;
246     if (d->is_typeArray()) {
247       ss.print("arraycopy: type mismatch: can not copy object array[] into %s[]",
248                type2name_tab[ArrayKlass::cast(d->klass())->element_type()]);
249     } else {
250       ss.print("arraycopy: destination type %s is not an array", d->klass()->external_name());
251     }
252     THROW_MSG(vmSymbols::java_lang_ArrayStoreException(), ss.as_string());
253   }
254 
255   // Check is all offsets and lengths are non negative
256   if (src_pos < 0 || dst_pos < 0 || length < 0) {
257     // Pass specific exception reason.
258     ResourceMark rm(THREAD);
259     stringStream ss;
260     if (src_pos < 0) {
261       ss.print("arraycopy: source index %d out of bounds for object array[%d]",
262                src_pos, s->length());

339       Klass* array_super = elem_super->array_klass_or_null();
340       assert(array_super != nullptr, "must already have been created");
341       secondaries->push(array_super);
342     }
343     return secondaries;
344   }
345 }
346 
347 void ObjArrayKlass::initialize(TRAPS) {
348   bottom_klass()->initialize(THREAD);  // dispatches to either InstanceKlass or TypeArrayKlass
349 }
350 
351 void ObjArrayKlass::metaspace_pointers_do(MetaspaceClosure* it) {
352   ArrayKlass::metaspace_pointers_do(it);
353   it->push(&_element_klass);
354   it->push(&_bottom_klass);
355 }
356 
357 jint ObjArrayKlass::compute_modifier_flags() const {
358   // The modifier for an objectArray is the same as its element
359   // With the addition of ACC_IDENTITY
360   if (element_klass() == nullptr) {
361     assert(Universe::is_bootstrapping(), "partial objArray only at startup");
362     return JVM_ACC_ABSTRACT | JVM_ACC_FINAL | JVM_ACC_PUBLIC;
363   }
364   // Return the flags of the bottom element type.
365   jint element_flags = bottom_klass()->compute_modifier_flags();
366 
367   int identity_flag = (Arguments::enable_preview()) ? JVM_ACC_IDENTITY : 0;
368 
369   return (element_flags & (JVM_ACC_PUBLIC | JVM_ACC_PRIVATE | JVM_ACC_PROTECTED))
370                         | (identity_flag | JVM_ACC_ABSTRACT | JVM_ACC_FINAL);
371 }
372 
373 ModuleEntry* ObjArrayKlass::module() const {
374   assert(bottom_klass() != nullptr, "ObjArrayKlass returned unexpected null bottom_klass");
375   // The array is defined in the module of its bottom class
376   return bottom_klass()->module();
377 }
378 
379 PackageEntry* ObjArrayKlass::package() const {
380   assert(bottom_klass() != nullptr, "ObjArrayKlass returned unexpected null bottom_klass");
381   return bottom_klass()->package();
382 }
383 
384 // Printing
385 
386 void ObjArrayKlass::print_on(outputStream* st) const {
387 #ifndef PRODUCT
388   Klass::print_on(st);
389   st->print(" - element klass: ");
390   element_klass()->print_value_on(st);
391   st->cr();
392 #endif //PRODUCT
393 }
394 
395 void ObjArrayKlass::print_value_on(outputStream* st) const {
396   assert(is_klass(), "must be klass");
397 
398   element_klass()->print_value_on(st);
399   st->print("[]");
400 }
401 
402 #ifndef PRODUCT
403 
404 void ObjArrayKlass::oop_print_on(oop obj, outputStream* st) {
405   ArrayKlass::oop_print_on(obj, st);
406   assert(obj->is_objArray(), "must be objArray");
407   objArrayOop oa = objArrayOop(obj);
408   int print_len = MIN2(oa->length(), MaxElementPrintSize);
409   for(int index = 0; index < print_len; index++) {

431   st->print("[%d] ", len);
432   if (obj != nullptr) {
433     obj->print_address_on(st);
434   } else {
435     st->print_cr("null");
436   }
437 }
438 
439 const char* ObjArrayKlass::internal_name() const {
440   return external_name();
441 }
442 
443 
444 // Verification
445 
446 void ObjArrayKlass::verify_on(outputStream* st) {
447   ArrayKlass::verify_on(st);
448   guarantee(element_klass()->is_klass(), "should be klass");
449   guarantee(bottom_klass()->is_klass(), "should be klass");
450   Klass* bk = bottom_klass();
451   guarantee(bk->is_instance_klass() || bk->is_typeArray_klass() || bk->is_flatArray_klass(),
452             "invalid bottom klass");
453 }
454 
455 void ObjArrayKlass::oop_verify_on(oop obj, outputStream* st) {
456   ArrayKlass::oop_verify_on(obj, st);
457   guarantee(obj->is_objArray(), "must be objArray");
458   guarantee(obj->is_null_free_array() || (!is_null_free_array_klass()), "null-free klass but not object");
459   objArrayOop oa = objArrayOop(obj);
460   for(int index = 0; index < oa->length(); index++) {
461     guarantee(oopDesc::is_oop_or_null(oa->obj_at(index)), "should be oop");
462   }
463 }
< prev index next >