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 "cds/aotMetaspace.hpp"
 26 #include "cds/cdsConfig.hpp"
 27 #include "classfile/javaClasses.hpp"
 28 #include "classfile/moduleEntry.hpp"

 29 #include "classfile/vmClasses.hpp"
 30 #include "classfile/vmSymbols.hpp"
 31 #include "gc/shared/collectedHeap.inline.hpp"
 32 #include "jvmtifiles/jvmti.h"
 33 #include "memory/metaspaceClosure.hpp"
 34 #include "memory/resourceArea.hpp"
 35 #include "memory/universe.hpp"
 36 #include "oops/arrayKlass.inline.hpp"
 37 #include "oops/arrayOop.hpp"
 38 #include "oops/instanceKlass.hpp"
 39 #include "oops/klass.inline.hpp"

 40 #include "oops/objArrayOop.hpp"
 41 #include "oops/oop.inline.hpp"

 42 #include "runtime/handles.inline.hpp"
 43 
 44 ArrayKlass::ArrayKlass() {
 45   assert(CDSConfig::is_dumping_static_archive() || CDSConfig::is_using_archive(), "only for CDS");
 46 }
 47 
 48 int ArrayKlass::static_size(int header_size) {
 49   // size of an array klass object
 50   assert(header_size <= InstanceKlass::header_size(), "bad header size");
 51   // If this assert fails, see comments in base_create_array_klass.
 52   header_size = InstanceKlass::header_size();
 53   int vtable_len = Universe::base_vtable_size();
 54   int size = header_size + vtable_len;
 55   return align_metadata_size(size);
 56 }
 57 
 58 
 59 InstanceKlass* ArrayKlass::java_super() const {
 60   if (super() == nullptr)  return nullptr;  // bootstrap case
 61   // Array klasses have primary supertypes which are not reported to Java.
 62   // Example super chain:  String[][] -> Object[][] -> Object[] -> Object
 63   return vmClasses::Object_klass();
 64 }
 65 
 66 
 67 oop ArrayKlass::multi_allocate(int rank, jint* sizes, TRAPS) {
 68   ShouldNotReachHere();
 69   return nullptr;
 70 }
 71 
 72 // find field according to JVM spec 5.4.3.2, returns the klass in which the field is defined
 73 Klass* ArrayKlass::find_field(Symbol* name, Symbol* sig, fieldDescriptor* fd) const {
 74   // There are no fields in an array klass but look to the super class (Object)
 75   assert(super(), "super klass must be present");
 76   return super()->find_field(name, sig, fd);
 77 }
 78 
 79 Method* ArrayKlass::uncached_lookup_method(const Symbol* name,
 80                                            const Symbol* signature,
 81                                            OverpassLookupMode overpass_mode,
 82                                            PrivateLookupMode private_mode) const {
 83   // There are no methods in an array klass but the super class (Object) has some
 84   assert(super(), "super klass must be present");
 85   // Always ignore overpass methods in superclasses, although technically the
 86   // super klass of an array, (j.l.Object) should not have
 87   // any overpass methods present.
 88   return super()->uncached_lookup_method(name, signature, OverpassLookupMode::skip, private_mode);
 89 }
 90 
 91 ArrayKlass::ArrayKlass(Symbol* name, KlassKind kind) :
 92   Klass(kind),
 93   _dimension(1),

 94   _higher_dimension(nullptr),
 95   _lower_dimension(nullptr) {
 96   // Arrays don't add any new methods, so their vtable is the same size as
 97   // the vtable of klass Object.
 98   set_vtable_length(Universe::base_vtable_size());
 99   set_name(name);
100   set_super(Universe::is_bootstrapping() ? nullptr : vmClasses::Object_klass());
101   set_layout_helper(Klass::_lh_neutral_value);
102   set_is_cloneable(); // All arrays are considered to be cloneable (See JLS 20.1.5)
103   JFR_ONLY(INIT_ID(this);)
104   log_array_class_load(this);
105 }
106 



















107 
108 // Initialization of vtables and mirror object is done separately from base_create_array_klass,
109 // since a GC can happen. At this point all instance variables of the ArrayKlass must be setup.
110 void ArrayKlass::complete_create_array_klass(ArrayKlass* k, Klass* super_klass, ModuleEntry* module_entry, TRAPS) {
111   k->initialize_supers(super_klass, nullptr, CHECK);
112   k->vtable().initialize_vtable();
113 
114   // During bootstrapping, before java.base is defined, the module_entry may not be present yet.
115   // These classes will be put on a fixup list and their module fields will be patched once
116   // java.base is defined.
117   assert((module_entry != nullptr) || ((module_entry == nullptr) && !ModuleEntryTable::javabase_defined()),
118          "module entry not available post " JAVA_BASE_NAME " definition");
119   oop module_oop = (module_entry != nullptr) ? module_entry->module_oop() : (oop)nullptr;
120   java_lang_Class::create_mirror(k, Handle(THREAD, k->class_loader()), Handle(THREAD, module_oop), Handle(), Handle(), CHECK);









121 }
122 
123 ArrayKlass* ArrayKlass::array_klass(int n, TRAPS) {
124 
125   assert(dimension() <= n, "check order of chain");
126   int dim = dimension();
127   if (dim == n) return this;
128 
129   // lock-free read needs acquire semantics
130   if (higher_dimension_acquire() == nullptr) {
131 
132     // Ensure atomic creation of higher dimensions
133     RecursiveLocker rl(MultiArray_lock, THREAD);
134 
135     if (higher_dimension() == nullptr) {
136       // Create multi-dim klass object and link them together
137       ObjArrayKlass* ak =
138           ObjArrayKlass::allocate_objArray_klass(class_loader_data(), dim + 1, this, CHECK_NULL);
139       // use 'release' to pair with lock-free load
140       release_set_higher_dimension(ak);
141       assert(ak->lower_dimension() == this, "lower dimension mismatch");
142     }
143   }
144 
145   ObjArrayKlass* ak = higher_dimension();
146   assert(ak != nullptr, "should be set");
147   THREAD->check_possible_safepoint();
148   return ak->array_klass(n, THREAD);
149 }
150 
151 ArrayKlass* ArrayKlass::array_klass_or_null(int n) {
152 
153   assert(dimension() <= n, "check order of chain");
154   int dim = dimension();
155   if (dim == n) return this;
156 
157   // lock-free read needs acquire semantics
158   if (higher_dimension_acquire() == nullptr) {
159     return nullptr;
160   }
161 
162   ObjArrayKlass *ak = higher_dimension();
163   return ak->array_klass_or_null(n);
164 }
165 
166 ArrayKlass* ArrayKlass::array_klass(TRAPS) {
167   return array_klass(dimension() +  1, THREAD);
168 }
169 
170 ArrayKlass* ArrayKlass::array_klass_or_null() {
171   return array_klass_or_null(dimension() +  1);
172 }
173 
174 
175 GrowableArray<Klass*>* ArrayKlass::compute_secondary_supers(int num_extra_slots,
176                                                             Array<InstanceKlass*>* transitive_interfaces) {
177   // interfaces = { cloneable_klass, serializable_klass };
178   assert(num_extra_slots == 0, "sanity of primitive array type");
179   assert(transitive_interfaces == nullptr, "sanity");
180   // Must share this for correct bootstrapping!
181   set_secondary_supers(Universe::the_array_interfaces_array(),
182                        Universe::the_array_interfaces_bitmap());
183   return nullptr;
184 }
185 




186 // JVMTI support
187 
188 jint ArrayKlass::jvmti_class_status() const {
189   return JVMTI_CLASS_STATUS_ARRAY;
190 }
191 
192 void ArrayKlass::metaspace_pointers_do(MetaspaceClosure* it) {
193   Klass::metaspace_pointers_do(it);
194 
195   ResourceMark rm;
196   log_trace(aot)("Iter(ArrayKlass): %p (%s)", this, external_name());
197 
198   // need to cast away volatile
199   it->push((Klass**)&_higher_dimension);
200   it->push((Klass**)&_lower_dimension);
201 }
202 
203 #if INCLUDE_CDS
204 void ArrayKlass::remove_unshareable_info() {
205   Klass::remove_unshareable_info();
206   if (_higher_dimension != nullptr) {
207     ArrayKlass *ak = higher_dimension();
208     ak->remove_unshareable_info();
209   }
210 }
211 
212 void ArrayKlass::remove_java_mirror() {
213   Klass::remove_java_mirror();
214   if (_higher_dimension != nullptr) {
215     ArrayKlass *ak = higher_dimension();
216     ak->remove_java_mirror();
217   }
218 }
219 
220 void ArrayKlass::restore_unshareable_info(ClassLoaderData* loader_data, Handle protection_domain, TRAPS) {
221   Klass::restore_unshareable_info(loader_data, protection_domain, CHECK);
222   // Klass recreates the component mirror also
223 
224   if (_higher_dimension != nullptr) {
225     ArrayKlass *ak = higher_dimension();
226     log_array_class_load(ak);
227     ak->restore_unshareable_info(loader_data, protection_domain, CHECK);
228   }
229 }
230 
231 void ArrayKlass::cds_print_value_on(outputStream* st) const {
232   assert(is_klass(), "must be klass");
233   st->print("      - array: %s", internal_name());
234   if (_higher_dimension != nullptr) {
235     ArrayKlass* ak = higher_dimension();
236     st->cr();
237     ak->cds_print_value_on(st);
238   }
239 }
240 #endif // INCLUDE_CDS
241 
242 void ArrayKlass::log_array_class_load(Klass* k) {
243   LogTarget(Debug, class, load, array) lt;
244   if (lt.is_enabled()) {
245     LogStream ls(lt);
246     ResourceMark rm;
247     ls.print("%s", k->name()->as_klass_external_name());
248     if (AOTMetaspace::in_aot_cache_dynamic_region((void*)k)) {
249       ls.print(" source: shared objects file (top)");
250     } else if (AOTMetaspace::in_aot_cache_static_region((void*)k)) {
251       ls.print(" source: shared objects file");
252     }
253     ls.cr();
254   }
255 }
256 
257 // Printing
258 
259 void ArrayKlass::print_on(outputStream* st) const {
260   assert(is_klass(), "must be klass");
261   Klass::print_on(st);
262 }
263 
264 void ArrayKlass::print_value_on(outputStream* st) const {
265   assert(is_klass(), "must be klass");
266   for(int index = 0; index < dimension(); index++) {
267     st->print("[]");
268   }
269 }
270 
271 void ArrayKlass::oop_print_on(oop obj, outputStream* st) {
272   assert(obj->is_array(), "must be array");
273   Klass::oop_print_on(obj, st);
274   st->print_cr(" - length: %d", arrayOop(obj)->length());
275 }
276 
277 
278 // Verification
279 
280 void ArrayKlass::verify_on(outputStream* st) {
281   Klass::verify_on(st);
282 }
283 
284 void ArrayKlass::oop_verify_on(oop obj, outputStream* st) {
285   guarantee(obj->is_array(), "must be array");
286   arrayOop a = arrayOop(obj);
287   guarantee(a->length() >= 0, "array with negative length?");
288 }
--- EOF ---