author | coleenp |
Wed, 24 Jul 2019 10:22:11 -0400 | |
changeset 57511 | 00ae3b739184 |
parent 53244 | 9807daeb47c4 |
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:
2105
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2105
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:
2105
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_TYPEARRAYKLASS_HPP |
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
53152
diff
changeset
|
26 |
#define SHARE_OOPS_TYPEARRAYKLASS_HPP |
7397 | 27 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10566
diff
changeset
|
28 |
#include "classfile/classLoaderData.hpp" |
7397 | 29 |
#include "oops/arrayKlass.hpp" |
30 |
||
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
31 |
// A TypeArrayKlass is the klass of a typeArray |
1 | 32 |
// It contains the type and size of the elements |
33 |
||
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
34 |
class TypeArrayKlass : public ArrayKlass { |
1 | 35 |
friend class VMStructs; |
50752 | 36 |
|
37 |
public: |
|
38 |
static const KlassID ID = TypeArrayKlassID; |
|
39 |
||
1 | 40 |
private: |
41 |
jint _max_length; // maximum number of elements allowed in an array |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10566
diff
changeset
|
42 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10566
diff
changeset
|
43 |
// Constructor |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
44 |
TypeArrayKlass(BasicType type, Symbol* name); |
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
45 |
static TypeArrayKlass* allocate(ClassLoaderData* loader_data, BasicType type, Symbol* name, TRAPS); |
1 | 46 |
public: |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
47 |
TypeArrayKlass() {} // For dummy objects. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10566
diff
changeset
|
48 |
|
1 | 49 |
// instance variables |
50 |
jint max_length() { return _max_length; } |
|
51 |
void set_max_length(jint m) { _max_length = m; } |
|
52 |
||
53 |
// testers |
|
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
32606
diff
changeset
|
54 |
DEBUG_ONLY(bool is_typeArray_klass_slow() const { return true; }) |
1 | 55 |
|
56 |
// klass allocation |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
57 |
static TypeArrayKlass* create_klass(BasicType type, const char* name_str, |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1
diff
changeset
|
58 |
TRAPS); |
51554
5b0d86499960
8209958: Clean up duplicate basic array type statics in Universe
coleenp
parents:
50752
diff
changeset
|
59 |
static TypeArrayKlass* create_klass(BasicType type, TRAPS) { |
5b0d86499960
8209958: Clean up duplicate basic array type statics in Universe
coleenp
parents:
50752
diff
changeset
|
60 |
return create_klass(type, external_name(type), THREAD); |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1
diff
changeset
|
61 |
} |
1 | 62 |
|
63 |
int oop_size(oop obj) const; |
|
64 |
||
65 |
// Allocation |
|
10566
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
7397
diff
changeset
|
66 |
typeArrayOop allocate_common(int length, bool do_zero, TRAPS); |
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
7397
diff
changeset
|
67 |
typeArrayOop allocate(int length, TRAPS) { return allocate_common(length, true, THREAD); } |
1 | 68 |
oop multi_allocate(int rank, jint* sizes, TRAPS); |
69 |
||
17826
9ad5cd464a75
8003421: NPG: Move oops out of InstanceKlass into mirror
coleenp
parents:
13952
diff
changeset
|
70 |
oop protection_domain() const { return NULL; } |
9ad5cd464a75
8003421: NPG: Move oops out of InstanceKlass into mirror
coleenp
parents:
13952
diff
changeset
|
71 |
|
1 | 72 |
// Copying |
73 |
void copy_array(arrayOop s, int src_pos, arrayOop d, int dst_pos, int length, TRAPS); |
|
74 |
||
30150
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22234
diff
changeset
|
75 |
// Oop iterators. Since there are no oops in TypeArrayKlasses, |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22234
diff
changeset
|
76 |
// these functions only return the size of the object. |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22234
diff
changeset
|
77 |
|
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22234
diff
changeset
|
78 |
private: |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22234
diff
changeset
|
79 |
// The implementation used by all oop_oop_iterate functions in TypeArrayKlasses. |
50752 | 80 |
inline void oop_oop_iterate_impl(oop obj, OopIterateClosure* closure); |
1 | 81 |
|
50752 | 82 |
public: |
30880
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
30150
diff
changeset
|
83 |
// Wraps oop_oop_iterate_impl to conform to macros. |
50752 | 84 |
template <typename T, typename OopClosureType> |
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30880
diff
changeset
|
85 |
inline void oop_oop_iterate(oop obj, OopClosureType* closure); |
30880
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
30150
diff
changeset
|
86 |
|
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
30150
diff
changeset
|
87 |
// Wraps oop_oop_iterate_impl to conform to macros. |
50752 | 88 |
template <typename T, typename OopClosureType> |
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30880
diff
changeset
|
89 |
inline void oop_oop_iterate_bounded(oop obj, OopClosureType* closure, MemRegion mr); |
30880
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
30150
diff
changeset
|
90 |
|
50752 | 91 |
// Wraps oop_oop_iterate_impl to conform to macros. |
92 |
template <typename T, typename OopClosureType> |
|
93 |
inline void oop_oop_iterate_reverse(oop obj, OopClosureType* closure); |
|
1 | 94 |
|
95 |
protected: |
|
96 |
// Find n'th dimensional array |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10566
diff
changeset
|
97 |
virtual Klass* array_klass_impl(bool or_null, int n, TRAPS); |
1 | 98 |
|
99 |
// Returns the array class with this class as element type |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10566
diff
changeset
|
100 |
virtual Klass* array_klass_impl(bool or_null, TRAPS); |
1 | 101 |
|
102 |
public: |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
103 |
static TypeArrayKlass* cast(Klass* k) { |
34666 | 104 |
return const_cast<TypeArrayKlass*>(cast(const_cast<const Klass*>(k))); |
105 |
} |
|
106 |
||
107 |
static const TypeArrayKlass* cast(const Klass* k) { |
|
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
32606
diff
changeset
|
108 |
assert(k->is_typeArray_klass(), "cast to TypeArrayKlass"); |
34666 | 109 |
return static_cast<const TypeArrayKlass*>(k); |
1 | 110 |
} |
111 |
||
112 |
// Naming |
|
113 |
static const char* external_name(BasicType type); |
|
114 |
||
115 |
// Sizing |
|
35898
ddc274f0052f
8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents:
35877
diff
changeset
|
116 |
static int header_size() { return sizeof(TypeArrayKlass)/wordSize; } |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
117 |
int size() const { return ArrayKlass::static_size(header_size()); } |
1 | 118 |
|
119 |
// Initialization (virtual from Klass) |
|
120 |
void initialize(TRAPS); |
|
121 |
||
122 |
public: |
|
123 |
// Printing |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10566
diff
changeset
|
124 |
#ifndef PRODUCT |
1 | 125 |
void oop_print_on(oop obj, outputStream* st); |
126 |
#endif |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10566
diff
changeset
|
127 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10566
diff
changeset
|
128 |
void print_on(outputStream* st) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10566
diff
changeset
|
129 |
void print_value_on(outputStream* st) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10566
diff
changeset
|
130 |
|
1 | 131 |
public: |
132 |
const char* internal_name() const; |
|
38094
46977cd73d86
8152844: JVM InstanceKlass Methods For Obtaining Package/Module Should Be Moved to Klass
rprotacio
parents:
35898
diff
changeset
|
133 |
|
46977cd73d86
8152844: JVM InstanceKlass Methods For Obtaining Package/Module Should Be Moved to Klass
rprotacio
parents:
35898
diff
changeset
|
134 |
ModuleEntry* module() const; |
46977cd73d86
8152844: JVM InstanceKlass Methods For Obtaining Package/Module Should Be Moved to Klass
rprotacio
parents:
35898
diff
changeset
|
135 |
PackageEntry* package() const; |
1 | 136 |
}; |
7397 | 137 |
|
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
53152
diff
changeset
|
138 |
#endif // SHARE_OOPS_TYPEARRAYKLASS_HPP |