src/share/vm/oops/arrayKlass.cpp

Mon, 12 Aug 2019 18:30:40 +0300

author
apetushkov
date
Mon, 12 Aug 2019 18:30:40 +0300
changeset 9858
b985cbb00e68
parent 8716
619700f41f8e
child 9931
fd44df5e3bc3
permissions
-rw-r--r--

8223147: JFR Backport
8199712: Flight Recorder
8203346: JFR: Inconsistent signature of jfr_add_string_constant
8195817: JFR.stop should require name of recording
8195818: JFR.start should increase autogenerated name by one
8195819: Remove recording=x from jcmd JFR.check output
8203921: JFR thread sampling is missing fixes from JDK-8194552
8203929: Limit amount of data for JFR.dump
8203664: JFR start failure after AppCDS archive created with JFR StartFlightRecording
8003209: JFR events for network utilization
8207392: [PPC64] Implement JFR profiling
8202835: jfr/event/os/TestSystemProcess.java fails on missing events
Summary: Backport JFR from JDK11. Initial integration
Reviewed-by: neugens

duke@435 1 /*
dbuck@8716 2 * Copyright (c) 1997, 2017, 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/javaClasses.hpp"
stefank@2314 27 #include "classfile/systemDictionary.hpp"
stefank@2314 28 #include "classfile/vmSymbols.hpp"
stefank@2314 29 #include "gc_interface/collectedHeap.inline.hpp"
stefank@2314 30 #include "jvmtifiles/jvmti.h"
stefank@2314 31 #include "memory/gcLocker.hpp"
stefank@2314 32 #include "memory/universe.inline.hpp"
stefank@2314 33 #include "oops/arrayKlass.hpp"
stefank@2314 34 #include "oops/arrayOop.hpp"
stefank@2314 35 #include "oops/instanceKlass.hpp"
stefank@2314 36 #include "oops/objArrayOop.hpp"
stefank@2314 37 #include "oops/oop.inline.hpp"
duke@435 38
coleenp@4142 39 int ArrayKlass::static_size(int header_size) {
duke@435 40 // size of an array klass object
coleenp@4037 41 assert(header_size <= InstanceKlass::header_size(), "bad header size");
duke@435 42 // If this assert fails, see comments in base_create_array_klass.
coleenp@4037 43 header_size = InstanceKlass::header_size();
coleenp@4037 44 int vtable_len = Universe::base_vtable_size();
duke@435 45 #ifdef _LP64
coleenp@4037 46 int size = header_size + align_object_offset(vtable_len);
duke@435 47 #else
coleenp@4037 48 int size = header_size + vtable_len;
duke@435 49 #endif
duke@435 50 return align_object_size(size);
duke@435 51 }
duke@435 52
duke@435 53
coleenp@4142 54 Klass* ArrayKlass::java_super() const {
duke@435 55 if (super() == NULL) return NULL; // bootstrap case
duke@435 56 // Array klasses have primary supertypes which are not reported to Java.
duke@435 57 // Example super chain: String[][] -> Object[][] -> Object[] -> Object
never@1577 58 return SystemDictionary::Object_klass();
duke@435 59 }
duke@435 60
duke@435 61
coleenp@4142 62 oop ArrayKlass::multi_allocate(int rank, jint* sizes, TRAPS) {
duke@435 63 ShouldNotReachHere();
duke@435 64 return NULL;
duke@435 65 }
duke@435 66
lfoltan@6818 67 // find field according to JVM spec 5.4.3.2, returns the klass in which the field is defined
lfoltan@6818 68 Klass* ArrayKlass::find_field(Symbol* name, Symbol* sig, fieldDescriptor* fd) const {
lfoltan@6818 69 // There are no fields in an array klass but look to the super class (Object)
lfoltan@6818 70 assert(super(), "super klass must be present");
lfoltan@6818 71 return super()->find_field(name, sig, fd);
lfoltan@6818 72 }
lfoltan@6818 73
dbuck@8716 74 Method* ArrayKlass::uncached_lookup_method(Symbol* name, Symbol* signature, OverpassLookupMode overpass_mode) const {
duke@435 75 // There are no methods in an array klass but the super class (Object) has some
duke@435 76 assert(super(), "super klass must be present");
dbuck@8716 77 // Always ignore overpass methods in superclasses, although technically the
dbuck@8716 78 // super klass of an array, (j.l.Object) should not have
dbuck@8716 79 // any overpass methods present.
dbuck@8716 80 return super()->uncached_lookup_method(name, signature, Klass::skip_overpass);
duke@435 81 }
duke@435 82
coleenp@4142 83 ArrayKlass::ArrayKlass(Symbol* name) {
coleenp@4037 84 set_name(name);
duke@435 85
coleenp@4037 86 set_super(Universe::is_bootstrapping() ? (Klass*)NULL : SystemDictionary::Object_klass());
coleenp@4037 87 set_layout_helper(Klass::_lh_neutral_value);
coleenp@4037 88 set_dimension(1);
coleenp@4037 89 set_higher_dimension(NULL);
coleenp@4037 90 set_lower_dimension(NULL);
coleenp@4037 91 set_component_mirror(NULL);
duke@435 92 // Arrays don't add any new methods, so their vtable is the same size as
duke@435 93 // the vtable of klass Object.
duke@435 94 int vtable_size = Universe::base_vtable_size();
coleenp@4037 95 set_vtable_length(vtable_size);
coleenp@4037 96 set_is_cloneable(); // All arrays are considered to be cloneable (See JLS 20.1.5)
apetushkov@9858 97 JFR_ONLY(INIT_ID(this);)
duke@435 98 }
duke@435 99
duke@435 100
duke@435 101 // Initialization of vtables and mirror object is done separatly from base_create_array_klass,
coleenp@4142 102 // since a GC can happen. At this point all instance variables of the ArrayKlass must be setup.
coleenp@4142 103 void ArrayKlass::complete_create_array_klass(ArrayKlass* k, KlassHandle super_klass, TRAPS) {
duke@435 104 ResourceMark rm(THREAD);
duke@435 105 k->initialize_supers(super_klass(), CHECK);
duke@435 106 k->vtable()->initialize_vtable(false, CHECK);
coleenp@7226 107 java_lang_Class::create_mirror(k, Handle(THREAD, k->class_loader()), Handle(NULL), CHECK);
duke@435 108 }
duke@435 109
coleenp@4142 110 GrowableArray<Klass*>* ArrayKlass::compute_secondary_supers(int num_extra_slots) {
duke@435 111 // interfaces = { cloneable_klass, serializable_klass };
duke@435 112 assert(num_extra_slots == 0, "sanity of primitive array type");
duke@435 113 // Must share this for correct bootstrapping!
coleenp@4037 114 set_secondary_supers(Universe::the_array_interfaces_array());
coleenp@4037 115 return NULL;
duke@435 116 }
duke@435 117
coleenp@4142 118 bool ArrayKlass::compute_is_subtype_of(Klass* k) {
duke@435 119 // An array is a subtype of Serializable, Clonable, and Object
never@1577 120 return k == SystemDictionary::Object_klass()
never@1577 121 || k == SystemDictionary::Cloneable_klass()
never@1577 122 || k == SystemDictionary::Serializable_klass();
duke@435 123 }
duke@435 124
duke@435 125
coleenp@4142 126 inline intptr_t* ArrayKlass::start_of_vtable() const {
coleenp@4037 127 // all vtables start at the same place, that's why we use InstanceKlass::header_size here
coleenp@4037 128 return ((intptr_t*)this) + InstanceKlass::header_size();
duke@435 129 }
duke@435 130
duke@435 131
coleenp@4142 132 klassVtable* ArrayKlass::vtable() const {
coleenp@4037 133 KlassHandle kh(Thread::current(), this);
duke@435 134 return new klassVtable(kh, start_of_vtable(), vtable_length() / vtableEntry::size());
duke@435 135 }
duke@435 136
duke@435 137
coleenp@4142 138 objArrayOop ArrayKlass::allocate_arrayArray(int n, int length, TRAPS) {
duke@435 139 if (length < 0) {
duke@435 140 THROW_0(vmSymbols::java_lang_NegativeArraySizeException());
duke@435 141 }
duke@435 142 if (length > arrayOopDesc::max_array_length(T_ARRAY)) {
martin@1311 143 report_java_out_of_memory("Requested array size exceeds VM limit");
sspitsyn@3638 144 JvmtiExport::post_array_size_exhausted();
duke@435 145 THROW_OOP_0(Universe::out_of_memory_error_array_size());
duke@435 146 }
duke@435 147 int size = objArrayOopDesc::object_size(length);
coleenp@4037 148 Klass* k = array_klass(n+dimension(), CHECK_0);
coleenp@4142 149 ArrayKlass* ak = ArrayKlass::cast(k);
duke@435 150 objArrayOop o =
duke@435 151 (objArrayOop)CollectedHeap::array_allocate(ak, size, length, CHECK_0);
duke@435 152 // initialization to NULL not necessary, area already cleared
duke@435 153 return o;
duke@435 154 }
duke@435 155
coleenp@4142 156 void ArrayKlass::array_klasses_do(void f(Klass* k, TRAPS), TRAPS) {
coleenp@4037 157 Klass* k = this;
coleenp@4037 158 // Iterate over this array klass and all higher dimensions
coleenp@4037 159 while (k != NULL) {
coleenp@4037 160 f(k, CHECK);
coleenp@4142 161 k = ArrayKlass::cast(k)->higher_dimension();
coleenp@4037 162 }
coleenp@4037 163 }
duke@435 164
coleenp@4142 165 void ArrayKlass::array_klasses_do(void f(Klass* k)) {
coleenp@4037 166 Klass* k = this;
duke@435 167 // Iterate over this array klass and all higher dimensions
duke@435 168 while (k != NULL) {
duke@435 169 f(k);
coleenp@4142 170 k = ArrayKlass::cast(k)->higher_dimension();
duke@435 171 }
duke@435 172 }
duke@435 173
coleenp@4037 174 // GC support
coleenp@4037 175
coleenp@4142 176 void ArrayKlass::oops_do(OopClosure* cl) {
coleenp@4037 177 Klass::oops_do(cl);
coleenp@4037 178
coleenp@4037 179 cl->do_oop(adr_component_mirror());
coleenp@4037 180 }
coleenp@4037 181
duke@435 182 // JVM support
duke@435 183
coleenp@4142 184 jint ArrayKlass::compute_modifier_flags(TRAPS) const {
duke@435 185 return JVM_ACC_ABSTRACT | JVM_ACC_FINAL | JVM_ACC_PUBLIC;
duke@435 186 }
duke@435 187
duke@435 188 // JVMTI support
duke@435 189
coleenp@4142 190 jint ArrayKlass::jvmti_class_status() const {
duke@435 191 return JVMTI_CLASS_STATUS_ARRAY;
duke@435 192 }
duke@435 193
coleenp@4142 194 void ArrayKlass::remove_unshareable_info() {
coleenp@4037 195 Klass::remove_unshareable_info();
coleenp@4037 196 // Clear the java mirror
coleenp@4037 197 set_component_mirror(NULL);
coleenp@4037 198 }
coleenp@4037 199
iklam@7089 200 void ArrayKlass::restore_unshareable_info(ClassLoaderData* loader_data, Handle protection_domain, TRAPS) {
iklam@7089 201 assert(loader_data == ClassLoaderData::the_null_class_loader_data(), "array classes belong to null loader");
iklam@7089 202 Klass::restore_unshareable_info(loader_data, protection_domain, CHECK);
coleenp@4037 203 // Klass recreates the component mirror also
coleenp@4037 204 }
coleenp@4037 205
duke@435 206 // Printing
duke@435 207
coleenp@4142 208 void ArrayKlass::print_on(outputStream* st) const {
coleenp@4037 209 assert(is_klass(), "must be klass");
coleenp@4037 210 Klass::print_on(st);
coleenp@4037 211 }
coleenp@4037 212
coleenp@4142 213 void ArrayKlass::print_value_on(outputStream* st) const {
coleenp@4037 214 assert(is_klass(), "must be klass");
coleenp@4037 215 for(int index = 0; index < dimension(); index++) {
coleenp@4037 216 st->print("[]");
coleenp@4037 217 }
coleenp@4037 218 }
coleenp@4037 219
coleenp@4142 220 void ArrayKlass::oop_print_on(oop obj, outputStream* st) {
duke@435 221 assert(obj->is_array(), "must be array");
duke@435 222 Klass::oop_print_on(obj, st);
duke@435 223 st->print_cr(" - length: %d", arrayOop(obj)->length());
duke@435 224 }
duke@435 225
coleenp@4037 226
duke@435 227 // Verification
duke@435 228
coleenp@6316 229 void ArrayKlass::verify_on(outputStream* st) {
coleenp@6316 230 Klass::verify_on(st);
coleenp@4037 231
coleenp@4037 232 if (component_mirror() != NULL) {
coleenp@4037 233 guarantee(component_mirror()->klass() != NULL, "should have a class");
coleenp@4037 234 }
coleenp@4037 235 }
coleenp@4037 236
coleenp@4142 237 void ArrayKlass::oop_verify_on(oop obj, outputStream* st) {
duke@435 238 guarantee(obj->is_array(), "must be array");
duke@435 239 arrayOop a = arrayOop(obj);
duke@435 240 guarantee(a->length() >= 0, "array with negative length?");
duke@435 241 }

mercurial