author | coleenp |
Mon, 28 Aug 2017 09:06:30 -0400 | |
changeset 46996 | 9cbcd7082efe |
parent 46746 | ea379ebb9447 |
child 47103 | a993ec29ec75 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
40887
diff
changeset
|
2 |
* Copyright (c) 1997, 2017, 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 |
||
7397 | 25 |
#ifndef SHARE_VM_OOPS_ARRAYKLASS_HPP |
26 |
#define SHARE_VM_OOPS_ARRAYKLASS_HPP |
|
27 |
||
28 |
#include "memory/universe.hpp" |
|
29 |
#include "oops/klass.hpp" |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
30 |
|
27020 | 31 |
class fieldDescriptor; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
32 |
class klassVtable; |
7397 | 33 |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
34 |
// ArrayKlass is the abstract baseclass for all array classes |
1 | 35 |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
36 |
class ArrayKlass: public Klass { |
1 | 37 |
friend class VMStructs; |
38 |
private: |
|
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46329
diff
changeset
|
39 |
// 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
|
40 |
// must add this field to ArrayKlass::metaspace_pointers_do(). |
1 | 41 |
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
|
42 |
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
|
43 |
Klass* volatile _lower_dimension; // Refers the (n-1)'th-dimensional array (if present). |
1 | 44 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
45 |
protected: |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
46 |
// Constructors |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
47 |
// 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
|
48 |
// initialization, the other is a dummy |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
49 |
ArrayKlass(Symbol* name); |
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
50 |
ArrayKlass() { assert(DumpSharedSpaces || UseSharedSpaces, "only for cds"); } |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
51 |
|
1 | 52 |
public: |
53 |
// Testing operation |
|
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
32606
diff
changeset
|
54 |
DEBUG_ONLY(bool is_array_klass_slow() const { return true; }) |
1 | 55 |
|
56 |
// Instance variables |
|
57 |
int dimension() const { return _dimension; } |
|
58 |
void set_dimension(int dimension) { _dimension = dimension; } |
|
59 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
60 |
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
|
61 |
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
|
62 |
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
|
63 |
inline void release_set_higher_dimension(Klass* k); // store with release semantics |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
64 |
Klass** adr_higher_dimension() { return (Klass**)&this->_higher_dimension;} |
1 | 65 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
66 |
Klass* lower_dimension() const { return _lower_dimension; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
67 |
void set_lower_dimension(Klass* k) { _lower_dimension = k; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
68 |
Klass** adr_lower_dimension() { return (Klass**)&this->_lower_dimension;} |
1 | 69 |
|
70 |
// offset of first element, including any padding for the sake of alignment |
|
71 |
int array_header_in_bytes() const { return layout_helper_header_size(layout_helper()); } |
|
72 |
int log2_element_size() const { return layout_helper_log2_element_size(layout_helper()); } |
|
73 |
// type of elements (T_OBJECT for both oop arrays and array-arrays) |
|
74 |
BasicType element_type() const { return layout_helper_element_type(layout_helper()); } |
|
75 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
76 |
virtual Klass* java_super() const;//{ return SystemDictionary::Object_klass(); } |
1 | 77 |
|
78 |
// Allocation |
|
79 |
// Sizes points to the first dimension of the array, subsequent dimensions |
|
80 |
// are always in higher memory. The callers of these set that up. |
|
81 |
virtual oop multi_allocate(int rank, jint* sizes, TRAPS); |
|
82 |
objArrayOop allocate_arrayArray(int n, int length, TRAPS); |
|
83 |
||
27020 | 84 |
// find field according to JVM spec 5.4.3.2, returns the klass in which the field is defined |
85 |
Klass* find_field(Symbol* name, Symbol* sig, fieldDescriptor* fd) const; |
|
86 |
||
1 | 87 |
// Lookup operations |
34666 | 88 |
Method* uncached_lookup_method(const Symbol* name, |
89 |
const Symbol* signature, |
|
90 |
OverpassLookupMode overpass_mode) const; |
|
1 | 91 |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
92 |
static ArrayKlass* cast(Klass* k) { |
34666 | 93 |
return const_cast<ArrayKlass*>(cast(const_cast<const Klass*>(k))); |
94 |
} |
|
95 |
||
96 |
static const ArrayKlass* cast(const Klass* k) { |
|
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
32606
diff
changeset
|
97 |
assert(k->is_array_klass(), "cast to ArrayKlass"); |
34666 | 98 |
return static_cast<const ArrayKlass*>(k); |
1 | 99 |
} |
100 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
101 |
GrowableArray<Klass*>* compute_secondary_supers(int num_extra_slots); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
102 |
bool compute_is_subtype_of(Klass* k); |
1 | 103 |
|
104 |
// Sizing |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
105 |
static int static_size(int header_size); |
1 | 106 |
|
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46329
diff
changeset
|
107 |
virtual void metaspace_pointers_do(MetaspaceClosure* iter); |
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46329
diff
changeset
|
108 |
|
15437 | 109 |
#if INCLUDE_SERVICES |
110 |
virtual void collect_statistics(KlassSizeStats *sz) const { |
|
111 |
Klass::collect_statistics(sz); |
|
112 |
// Do nothing for now, but remember to modify if you add new |
|
113 |
// stuff to ArrayKlass. |
|
114 |
} |
|
115 |
#endif |
|
116 |
||
1 | 117 |
// Iterators |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
118 |
void array_klasses_do(void f(Klass* k)); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
119 |
void array_klasses_do(void f(Klass* k, TRAPS), TRAPS); |
1 | 120 |
|
121 |
// Return a handle. |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
40887
diff
changeset
|
122 |
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
|
123 |
|
1 | 124 |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
125 |
// jvm support |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
126 |
jint compute_modifier_flags(TRAPS) const; |
1 | 127 |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
128 |
// JVMTI support |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
129 |
jint jvmti_class_status() const; |
1 | 130 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
131 |
// 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
|
132 |
virtual void remove_unshareable_info(); |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
23999
diff
changeset
|
133 |
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
|
134 |
|
1 | 135 |
// Printing |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
136 |
void print_on(outputStream* st) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
137 |
void print_value_on(outputStream* st) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
138 |
|
1 | 139 |
void oop_print_on(oop obj, outputStream* st); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
140 |
|
1 | 141 |
// Verification |
22794
f1c014ad3754
8027146: Class loading verification failure if GC occurs in Universe::flush_dependents_on
coleenp
parents:
18687
diff
changeset
|
142 |
void verify_on(outputStream* st); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11430
diff
changeset
|
143 |
|
1 | 144 |
void oop_verify_on(oop obj, outputStream* st); |
145 |
}; |
|
7397 | 146 |
|
30880
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
28731
diff
changeset
|
147 |
// Array oop iteration macros for declarations. |
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
28731
diff
changeset
|
148 |
// Used to generate the declarations in the *ArrayKlass header files. |
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
28731
diff
changeset
|
149 |
|
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30880
diff
changeset
|
150 |
#define OOP_OOP_ITERATE_DECL_RANGE(OopClosureType, nv_suffix) \ |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30880
diff
changeset
|
151 |
void oop_oop_iterate_range##nv_suffix(oop obj, OopClosureType* closure, int start, int end); |
30880
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
28731
diff
changeset
|
152 |
|
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
28731
diff
changeset
|
153 |
#if INCLUDE_ALL_GCS |
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
28731
diff
changeset
|
154 |
// Named NO_BACKWARDS because the definition used by *ArrayKlass isn't reversed, see below. |
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30880
diff
changeset
|
155 |
#define OOP_OOP_ITERATE_DECL_NO_BACKWARDS(OopClosureType, nv_suffix) \ |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30880
diff
changeset
|
156 |
void oop_oop_iterate_backwards##nv_suffix(oop obj, OopClosureType* closure); |
30880
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
28731
diff
changeset
|
157 |
#endif // INCLUDE_ALL_GCS |
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
28731
diff
changeset
|
158 |
|
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
28731
diff
changeset
|
159 |
|
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
28731
diff
changeset
|
160 |
// Array oop iteration macros for definitions. |
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
28731
diff
changeset
|
161 |
// Used to generate the definitions in the *ArrayKlass.inline.hpp files. |
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
28731
diff
changeset
|
162 |
|
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30880
diff
changeset
|
163 |
#define OOP_OOP_ITERATE_DEFN_RANGE(KlassType, OopClosureType, nv_suffix) \ |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30880
diff
changeset
|
164 |
\ |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30880
diff
changeset
|
165 |
void KlassType::oop_oop_iterate_range##nv_suffix(oop obj, OopClosureType* closure, int start, int end) { \ |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30880
diff
changeset
|
166 |
oop_oop_iterate_range<nvs_to_bool(nv_suffix)>(obj, closure, start, end); \ |
30880
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
28731
diff
changeset
|
167 |
} |
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
28731
diff
changeset
|
168 |
|
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
28731
diff
changeset
|
169 |
#if INCLUDE_ALL_GCS |
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30880
diff
changeset
|
170 |
#define OOP_OOP_ITERATE_DEFN_NO_BACKWARDS(KlassType, OopClosureType, nv_suffix) \ |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30880
diff
changeset
|
171 |
void KlassType::oop_oop_iterate_backwards##nv_suffix(oop obj, OopClosureType* closure) { \ |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30880
diff
changeset
|
172 |
/* No reverse implementation ATM. */ \ |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30880
diff
changeset
|
173 |
oop_oop_iterate<nvs_to_bool(nv_suffix)>(obj, closure); \ |
30880
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
28731
diff
changeset
|
174 |
} |
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
28731
diff
changeset
|
175 |
#else |
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
28731
diff
changeset
|
176 |
#define OOP_OOP_ITERATE_DEFN_NO_BACKWARDS(KlassType, OopClosureType, nv_suffix) |
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
28731
diff
changeset
|
177 |
#endif |
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
28731
diff
changeset
|
178 |
|
7397 | 179 |
#endif // SHARE_VM_OOPS_ARRAYKLASS_HPP |