hotspot/src/share/vm/oops/arrayKlass.cpp
author coleenp
Wed, 22 May 2013 14:37:49 -0400
changeset 17826 9ad5cd464a75
parent 14488 ab48109f7d1b
child 18439 725ce18186b3
permissions -rw-r--r--
8003421: NPG: Move oops out of InstanceKlass into mirror Summary: Inject protection_domain, signers, init_lock into java_lang_Class Reviewed-by: stefank, dholmes, sla
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
12114
9a825a536095 7123170: JCK vm/jvmti/ResourceExhausted/resexh001/resexh00101/ tests fails since 7u4 b02
sspitsyn
parents: 8921
diff changeset
     2
 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4571
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4571
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4571
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    26
#include "classfile/javaClasses.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    27
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    28
#include "classfile/vmSymbols.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    29
#include "gc_interface/collectedHeap.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    30
#include "jvmtifiles/jvmti.h"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    31
#include "memory/gcLocker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    32
#include "memory/universe.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    33
#include "oops/arrayKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    34
#include "oops/arrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    35
#include "oops/instanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    36
#include "oops/objArrayOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    37
#include "oops/oop.inline.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
    39
int ArrayKlass::static_size(int header_size) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  // size of an array klass object
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
    41
  assert(header_size <= InstanceKlass::header_size(), "bad header size");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  // If this assert fails, see comments in base_create_array_klass.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
    43
  header_size = InstanceKlass::header_size();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
    44
  int vtable_len = Universe::base_vtable_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
#ifdef _LP64
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
    46
  int size = header_size + align_object_offset(vtable_len);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
#else
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
    48
  int size = header_size + vtable_len;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  return align_object_size(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
    54
Klass* ArrayKlass::java_super() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  if (super() == NULL)  return NULL;  // bootstrap case
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // Array klasses have primary supertypes which are not reported to Java.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // Example super chain:  String[][] -> Object[][] -> Object[] -> Object
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 3795
diff changeset
    58
  return SystemDictionary::Object_klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
    62
oop ArrayKlass::multi_allocate(int rank, jint* sizes, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
    67
Method* ArrayKlass::uncached_lookup_method(Symbol* name, Symbol* signature) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // There are no methods in an array klass but the super class (Object) has some
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  assert(super(), "super klass must be present");
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 13952
diff changeset
    70
  return super()->uncached_lookup_method(name, signature);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
    73
ArrayKlass::ArrayKlass(Symbol* name) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
    74
  set_alloc_size(0);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
    75
  set_name(name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
    77
  set_super(Universe::is_bootstrapping() ? (Klass*)NULL : SystemDictionary::Object_klass());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
    78
  set_layout_helper(Klass::_lh_neutral_value);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
    79
  set_dimension(1);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
    80
  set_higher_dimension(NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
    81
  set_lower_dimension(NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
    82
  set_component_mirror(NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // Arrays don't add any new methods, so their vtable is the same size as
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // the vtable of klass Object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  int vtable_size = Universe::base_vtable_size();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
    86
  set_vtable_length(vtable_size);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
    87
  set_is_cloneable(); // All arrays are considered to be cloneable (See JLS 20.1.5)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
// Initialization of vtables and mirror object is done separatly from base_create_array_klass,
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
    92
// since a GC can happen. At this point all instance variables of the ArrayKlass must be setup.
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
    93
void ArrayKlass::complete_create_array_klass(ArrayKlass* k, KlassHandle super_klass, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  k->initialize_supers(super_klass(), CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  k->vtable()->initialize_vtable(false, CHECK);
17826
9ad5cd464a75 8003421: NPG: Move oops out of InstanceKlass into mirror
coleenp
parents: 14488
diff changeset
    97
  java_lang_Class::create_mirror(k, Handle(NULL), CHECK);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   100
GrowableArray<Klass*>* ArrayKlass::compute_secondary_supers(int num_extra_slots) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // interfaces = { cloneable_klass, serializable_klass };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  assert(num_extra_slots == 0, "sanity of primitive array type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // Must share this for correct bootstrapping!
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   104
  set_secondary_supers(Universe::the_array_interfaces_array());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   105
  return NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   108
bool ArrayKlass::compute_is_subtype_of(Klass* k) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // An array is a subtype of Serializable, Clonable, and Object
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 3795
diff changeset
   110
  return    k == SystemDictionary::Object_klass()
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 3795
diff changeset
   111
         || k == SystemDictionary::Cloneable_klass()
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 3795
diff changeset
   112
         || k == SystemDictionary::Serializable_klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   116
inline intptr_t* ArrayKlass::start_of_vtable() const {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   117
  // all vtables start at the same place, that's why we use InstanceKlass::header_size here
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   118
  return ((intptr_t*)this) + InstanceKlass::header_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   122
klassVtable* ArrayKlass::vtable() const {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   123
  KlassHandle kh(Thread::current(), this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  return new klassVtable(kh, start_of_vtable(), vtable_length() / vtableEntry::size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   128
objArrayOop ArrayKlass::allocate_arrayArray(int n, int length, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  if (length < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    THROW_0(vmSymbols::java_lang_NegativeArraySizeException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  if (length > arrayOopDesc::max_array_length(T_ARRAY)) {
3576
4ceec8fb3e18 6850957: Honor -XX:OnOutOfMemoryError when array size exceeds VM limit
martin
parents: 1
diff changeset
   133
    report_java_out_of_memory("Requested array size exceeds VM limit");
12114
9a825a536095 7123170: JCK vm/jvmti/ResourceExhausted/resexh001/resexh00101/ tests fails since 7u4 b02
sspitsyn
parents: 8921
diff changeset
   134
    JvmtiExport::post_array_size_exhausted();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    THROW_OOP_0(Universe::out_of_memory_error_array_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  int size = objArrayOopDesc::object_size(length);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   138
  Klass* k = array_klass(n+dimension(), CHECK_0);
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   139
  ArrayKlass* ak = ArrayKlass::cast(k);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  objArrayOop o =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    (objArrayOop)CollectedHeap::array_allocate(ak, size, length, CHECK_0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // initialization to NULL not necessary, area already cleared
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  return o;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   146
void ArrayKlass::array_klasses_do(void f(Klass* k, TRAPS), TRAPS) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   147
  Klass* k = this;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   148
  // Iterate over this array klass and all higher dimensions
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   149
  while (k != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   150
    f(k, CHECK);
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   151
    k = ArrayKlass::cast(k)->higher_dimension();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   152
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   153
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   155
void ArrayKlass::array_klasses_do(void f(Klass* k)) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   156
  Klass* k = this;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // Iterate over this array klass and all higher dimensions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  while (k != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    f(k);
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   160
    k = ArrayKlass::cast(k)->higher_dimension();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   165
void ArrayKlass::with_array_klasses_do(void f(Klass* k)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  array_klasses_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   169
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   170
// GC support
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   171
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   172
void ArrayKlass::oops_do(OopClosure* cl) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   173
  Klass::oops_do(cl);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   174
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   175
  cl->do_oop(adr_component_mirror());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   176
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   177
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
// JVM support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   180
jint ArrayKlass::compute_modifier_flags(TRAPS) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  return JVM_ACC_ABSTRACT | JVM_ACC_FINAL | JVM_ACC_PUBLIC;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
// JVMTI support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   186
jint ArrayKlass::jvmti_class_status() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  return JVMTI_CLASS_STATUS_ARRAY;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   190
void ArrayKlass::remove_unshareable_info() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   191
  Klass::remove_unshareable_info();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   192
  // Clear the java mirror
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   193
  set_component_mirror(NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   194
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   195
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   196
void ArrayKlass::restore_unshareable_info(TRAPS) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   197
  Klass::restore_unshareable_info(CHECK);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   198
  // Klass recreates the component mirror also
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   199
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   200
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
// Printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   203
void ArrayKlass::print_on(outputStream* st) const {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   204
  assert(is_klass(), "must be klass");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   205
  Klass::print_on(st);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   206
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   207
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   208
void ArrayKlass::print_value_on(outputStream* st) const {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   209
  assert(is_klass(), "must be klass");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   210
  for(int index = 0; index < dimension(); index++) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   211
    st->print("[]");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   212
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   213
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   214
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   215
void ArrayKlass::oop_print_on(oop obj, outputStream* st) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  assert(obj->is_array(), "must be array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  Klass::oop_print_on(obj, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  st->print_cr(" - length: %d", arrayOop(obj)->length());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   221
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
// Verification
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   224
void ArrayKlass::verify_on(outputStream* st) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   225
  Klass::verify_on(st);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   226
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   227
  if (component_mirror() != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   228
    guarantee(component_mirror()->klass() != NULL, "should have a class");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   229
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   230
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12114
diff changeset
   231
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   232
void ArrayKlass::oop_verify_on(oop obj, outputStream* st) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  guarantee(obj->is_array(), "must be array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  arrayOop a = arrayOop(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  guarantee(a->length() >= 0, "array with negative length?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
}