author | coleenp |
Wed, 24 Jul 2019 10:22:11 -0400 | |
changeset 57511 | 00ae3b739184 |
parent 54786 | ebf733a324d4 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
53152 | 2 |
* Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
* |
|
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 | 22 |
* |
23 |
*/ |
|
24 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
53152
diff
changeset
|
25 |
#ifndef SHARE_OOPS_ARRAYKLASS_HPP |
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
53152
diff
changeset
|
26 |
#define SHARE_OOPS_ARRAYKLASS_HPP |
7397 | 27 |
|
28 |
#include "oops/klass.hpp" |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
29 |
|
27020 | 30 |
class fieldDescriptor; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
31 |
class klassVtable; |
7397 | 32 |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
33 |
// ArrayKlass is the abstract baseclass for all array classes |
1 | 34 |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
35 |
class ArrayKlass: public Klass { |
1 | 36 |
friend class VMStructs; |
37 |
private: |
|
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46329
diff
changeset
|
38 |
// If you add a new field that points to any metaspace object, you |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46329
diff
changeset
|
39 |
// must add this field to ArrayKlass::metaspace_pointers_do(). |
1 | 40 |
int _dimension; // This is n'th-dimensional array. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
41 |
Klass* volatile _higher_dimension; // Refers the (n+1)'th-dimensional array (if present). |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
42 |
Klass* volatile _lower_dimension; // Refers the (n-1)'th-dimensional array (if present). |
1 | 43 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
44 |
protected: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
45 |
// Constructors |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
46 |
// The constructor with the Symbol argument does the real array |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
47 |
// initialization, the other is a dummy |
50752 | 48 |
ArrayKlass(Symbol* name, KlassID id); |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
49 |
ArrayKlass() { assert(DumpSharedSpaces || UseSharedSpaces, "only for cds"); } |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
50 |
|
1 | 51 |
public: |
52 |
// Testing operation |
|
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
32606
diff
changeset
|
53 |
DEBUG_ONLY(bool is_array_klass_slow() const { return true; }) |
1 | 54 |
|
55 |
// Instance variables |
|
56 |
int dimension() const { return _dimension; } |
|
57 |
void set_dimension(int dimension) { _dimension = dimension; } |
|
58 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
59 |
Klass* higher_dimension() const { return _higher_dimension; } |
40887
8d35e19f5548
8158854: Ensure release_store is paired with load_acquire in lock-free code
dholmes
parents:
36508
diff
changeset
|
60 |
inline Klass* higher_dimension_acquire() const; // load with acquire semantics |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
61 |
void set_higher_dimension(Klass* k) { _higher_dimension = k; } |
40887
8d35e19f5548
8158854: Ensure release_store is paired with load_acquire in lock-free code
dholmes
parents:
36508
diff
changeset
|
62 |
inline void release_set_higher_dimension(Klass* k); // store with release semantics |
1 | 63 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
64 |
Klass* lower_dimension() const { return _lower_dimension; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
65 |
void set_lower_dimension(Klass* k) { _lower_dimension = k; } |
1 | 66 |
|
67 |
// offset of first element, including any padding for the sake of alignment |
|
68 |
int array_header_in_bytes() const { return layout_helper_header_size(layout_helper()); } |
|
69 |
int log2_element_size() const { return layout_helper_log2_element_size(layout_helper()); } |
|
70 |
// type of elements (T_OBJECT for both oop arrays and array-arrays) |
|
71 |
BasicType element_type() const { return layout_helper_element_type(layout_helper()); } |
|
72 |
||
51329
9c68699bebe5
8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents:
50752
diff
changeset
|
73 |
virtual InstanceKlass* java_super() const;//{ return SystemDictionary::Object_klass(); } |
1 | 74 |
|
75 |
// Allocation |
|
76 |
// Sizes points to the first dimension of the array, subsequent dimensions |
|
77 |
// are always in higher memory. The callers of these set that up. |
|
78 |
virtual oop multi_allocate(int rank, jint* sizes, TRAPS); |
|
79 |
objArrayOop allocate_arrayArray(int n, int length, TRAPS); |
|
80 |
||
27020 | 81 |
// find field according to JVM spec 5.4.3.2, returns the klass in which the field is defined |
82 |
Klass* find_field(Symbol* name, Symbol* sig, fieldDescriptor* fd) const; |
|
83 |
||
1 | 84 |
// Lookup operations |
34666 | 85 |
Method* uncached_lookup_method(const Symbol* name, |
86 |
const Symbol* signature, |
|
50735
2f2af62dfac7
8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents:
49982
diff
changeset
|
87 |
OverpassLookupMode overpass_mode, |
2f2af62dfac7
8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents:
49982
diff
changeset
|
88 |
PrivateLookupMode private_mode = find_private) const; |
1 | 89 |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
90 |
static ArrayKlass* cast(Klass* k) { |
34666 | 91 |
return const_cast<ArrayKlass*>(cast(const_cast<const Klass*>(k))); |
92 |
} |
|
93 |
||
94 |
static const ArrayKlass* cast(const Klass* k) { |
|
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
32606
diff
changeset
|
95 |
assert(k->is_array_klass(), "cast to ArrayKlass"); |
34666 | 96 |
return static_cast<const ArrayKlass*>(k); |
1 | 97 |
} |
98 |
||
49948
ff8dbb56740a
8200466: Revisit the setting of _transitive_interfaces in InstanceKlass
ccheung
parents:
47216
diff
changeset
|
99 |
GrowableArray<Klass*>* compute_secondary_supers(int num_extra_slots, |
51329
9c68699bebe5
8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents:
50752
diff
changeset
|
100 |
Array<InstanceKlass*>* transitive_interfaces); |
1 | 101 |
|
102 |
// Sizing |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
103 |
static int static_size(int header_size); |
1 | 104 |
|
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46329
diff
changeset
|
105 |
virtual void metaspace_pointers_do(MetaspaceClosure* iter); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46329
diff
changeset
|
106 |
|
15437 | 107 |
#if INCLUDE_SERVICES |
108 |
virtual void collect_statistics(KlassSizeStats *sz) const { |
|
109 |
Klass::collect_statistics(sz); |
|
110 |
// Do nothing for now, but remember to modify if you add new |
|
111 |
// stuff to ArrayKlass. |
|
112 |
} |
|
113 |
#endif |
|
114 |
||
1 | 115 |
// Iterators |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
116 |
void array_klasses_do(void f(Klass* k)); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
117 |
void array_klasses_do(void f(Klass* k, TRAPS), TRAPS); |
1 | 118 |
|
119 |
// Return a handle. |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
40887
diff
changeset
|
120 |
static void complete_create_array_klass(ArrayKlass* k, Klass* super_klass, ModuleEntry* module, TRAPS); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
121 |
|
1 | 122 |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
123 |
// jvm support |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
124 |
jint compute_modifier_flags(TRAPS) const; |
1 | 125 |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
126 |
// JVMTI support |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
127 |
jint jvmti_class_status() const; |
1 | 128 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
129 |
// CDS support - remove and restore oops from metadata. Oops are not shared. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
130 |
virtual void remove_unshareable_info(); |
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46746
diff
changeset
|
131 |
virtual void remove_java_mirror(); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23999
diff
changeset
|
132 |
virtual void restore_unshareable_info(ClassLoaderData* loader_data, Handle protection_domain, TRAPS); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
133 |
|
1 | 134 |
// Printing |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
135 |
void print_on(outputStream* st) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
136 |
void print_value_on(outputStream* st) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
137 |
|
1 | 138 |
void oop_print_on(oop obj, outputStream* st); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
139 |
|
1 | 140 |
// Verification |
22794
f1c014ad3754
8027146: Class loading verification failure if GC occurs in Universe::flush_dependents_on
coleenp
parents:
18687
diff
changeset
|
141 |
void verify_on(outputStream* st); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
142 |
|
1 | 143 |
void oop_verify_on(oop obj, outputStream* st); |
144 |
}; |
|
7397 | 145 |
|
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
53152
diff
changeset
|
146 |
#endif // SHARE_OOPS_ARRAYKLASS_HPP |