author | chegar |
Tue, 22 Mar 2016 10:43:58 +0000 | |
changeset 36615 | c744e3b0f8c5 |
parent 35898 | ddc274f0052f |
child 38094 | 46977cd73d86 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
35877
a2a62511d0f8
8146987: Improve Parallel GC Full GC by caching results of live_words_in_range()
tschatzl
parents:
35135
diff
changeset
|
2 |
* Copyright (c) 1997, 2016, 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:
5076
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5076
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:
5076
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_OOPS_OBJARRAYKLASS_HPP |
26 |
#define SHARE_VM_OOPS_OBJARRAYKLASS_HPP |
|
27 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
28 |
#include "classfile/classLoaderData.hpp" |
7397 | 29 |
#include "oops/arrayKlass.hpp" |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
14488
diff
changeset
|
30 |
#include "utilities/macros.hpp" |
7397 | 31 |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
32 |
// ObjArrayKlass is the klass for objArrays |
1 | 33 |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
34 |
class ObjArrayKlass : public ArrayKlass { |
1 | 35 |
friend class VMStructs; |
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33611
diff
changeset
|
36 |
friend class JVMCIVMStructs; |
1 | 37 |
private: |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
38 |
Klass* _element_klass; // The klass of the elements of this array type |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
39 |
Klass* _bottom_klass; // The one-dimensional type (InstanceKlass or TypeArrayKlass) |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
40 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
41 |
// Constructor |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
42 |
ObjArrayKlass(int n, KlassHandle element_klass, Symbol* name); |
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
43 |
static ObjArrayKlass* allocate(ClassLoaderData* loader_data, int n, KlassHandle klass_handle, Symbol* name, TRAPS); |
1 | 44 |
public: |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
45 |
// For dummy objects |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
46 |
ObjArrayKlass() {} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
47 |
|
1 | 48 |
// Instance variables |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
49 |
Klass* element_klass() const { return _element_klass; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
50 |
void set_element_klass(Klass* k) { _element_klass = k; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
51 |
Klass** element_klass_addr() { return &_element_klass; } |
1 | 52 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
53 |
Klass* bottom_klass() const { return _bottom_klass; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
54 |
void set_bottom_klass(Klass* k) { _bottom_klass = k; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
55 |
Klass** bottom_klass_addr() { return &_bottom_klass; } |
1 | 56 |
|
57 |
// Compiler/Interpreter offset |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
58 |
static ByteSize element_klass_offset() { return in_ByteSize(offset_of(ObjArrayKlass, _element_klass)); } |
1 | 59 |
|
60 |
// Dispatched operation |
|
61 |
bool can_be_primary_super_slow() const; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
62 |
GrowableArray<Klass*>* compute_secondary_supers(int num_extra_slots); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
63 |
bool compute_is_subtype_of(Klass* k); |
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
32606
diff
changeset
|
64 |
DEBUG_ONLY(bool is_objArray_klass_slow() const { return true; }) |
1 | 65 |
int oop_size(oop obj) const; |
66 |
||
67 |
// Allocation |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
68 |
static Klass* allocate_objArray_klass(ClassLoaderData* loader_data, |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
69 |
int n, KlassHandle element_klass, TRAPS); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
70 |
|
1 | 71 |
objArrayOop allocate(int length, TRAPS); |
72 |
oop multi_allocate(int rank, jint* sizes, TRAPS); |
|
73 |
||
74 |
// Copying |
|
75 |
void copy_array(arrayOop s, int src_pos, arrayOop d, int dst_pos, int length, TRAPS); |
|
76 |
||
77 |
// Compute protection domain |
|
17826
9ad5cd464a75
8003421: NPG: Move oops out of InstanceKlass into mirror
coleenp
parents:
15482
diff
changeset
|
78 |
oop protection_domain() const { return bottom_klass()->protection_domain(); } |
1 | 79 |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
80 |
private: |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
81 |
// Either oop or narrowOop depending on UseCompressedOops. |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
82 |
// must be called from within ObjArrayKlass.cpp |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
83 |
template <class T> void do_copy(arrayOop s, T* src, arrayOop d, |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
84 |
T* dst, int length, TRAPS); |
1 | 85 |
protected: |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
86 |
// Returns the ObjArrayKlass for n'th dimension. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
87 |
virtual Klass* array_klass_impl(bool or_null, int n, TRAPS); |
1 | 88 |
|
89 |
// Returns the array class with this class as element type. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
90 |
virtual Klass* array_klass_impl(bool or_null, TRAPS); |
1 | 91 |
|
92 |
public: |
|
34666 | 93 |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
94 |
static ObjArrayKlass* cast(Klass* k) { |
34666 | 95 |
return const_cast<ObjArrayKlass*>(cast(const_cast<const Klass*>(k))); |
96 |
} |
|
97 |
||
98 |
static const ObjArrayKlass* cast(const Klass* k) { |
|
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
32606
diff
changeset
|
99 |
assert(k->is_objArray_klass(), "cast to ObjArrayKlass"); |
34666 | 100 |
return static_cast<const ObjArrayKlass*>(k); |
1 | 101 |
} |
102 |
||
103 |
// Sizing |
|
35898
ddc274f0052f
8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents:
35877
diff
changeset
|
104 |
static int header_size() { return sizeof(ObjArrayKlass)/wordSize; } |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
105 |
int size() const { return ArrayKlass::static_size(header_size()); } |
1 | 106 |
|
107 |
// Initialization (virtual from Klass) |
|
108 |
void initialize(TRAPS); |
|
109 |
||
30150
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
110 |
// GC specific object visitors |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
111 |
// |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
112 |
// Mark Sweep |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
113 |
int oop_ms_adjust_pointers(oop obj); |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
14488
diff
changeset
|
114 |
#if INCLUDE_ALL_GCS |
30150
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
115 |
// Parallel Scavenge |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
116 |
void oop_ps_push_contents( oop obj, PSPromotionManager* pm); |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
117 |
// Parallel Compact |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
118 |
void oop_pc_follow_contents(oop obj, ParCompactionManager* cm); |
35877
a2a62511d0f8
8146987: Improve Parallel GC Full GC by caching results of live_words_in_range()
tschatzl
parents:
35135
diff
changeset
|
119 |
void oop_pc_update_pointers(oop obj, ParCompactionManager* cm); |
30150
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
120 |
#endif |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
121 |
|
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
122 |
// Oop fields (and metadata) iterators |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
123 |
// [nv = true] Use non-virtual calls to do_oop_nv. |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
124 |
// [nv = false] Use virtual calls to do_oop. |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
125 |
// |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
126 |
// The ObjArrayKlass iterators also visits the Object's klass. |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
127 |
|
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
128 |
private: |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
129 |
|
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
130 |
// Iterate over oop elements and metadata. |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
131 |
template <bool nv, typename OopClosureType> |
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30880
diff
changeset
|
132 |
inline void oop_oop_iterate(oop obj, OopClosureType* closure); |
30150
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
133 |
|
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
134 |
// Iterate over oop elements within mr, and metadata. |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
135 |
template <bool nv, typename OopClosureType> |
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30880
diff
changeset
|
136 |
inline void oop_oop_iterate_bounded(oop obj, OopClosureType* closure, MemRegion mr); |
30150
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
137 |
|
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
138 |
// Iterate over oop elements with indices within [start, end), and metadata. |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
139 |
template <bool nv, class OopClosureType> |
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30880
diff
changeset
|
140 |
inline void oop_oop_iterate_range(oop obj, OopClosureType* closure, int start, int end); |
1 | 141 |
|
30150
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
142 |
// Iterate over oop elements within [start, end), and metadata. |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
143 |
// Specialized for [T = oop] or [T = narrowOop]. |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
144 |
template <bool nv, typename T, class OopClosureType> |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
145 |
inline void oop_oop_iterate_range_specialized(objArrayOop a, OopClosureType* closure, int start, int end); |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
146 |
|
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
147 |
public: |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
148 |
// Iterate over all oop elements. |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
149 |
template <bool nv, class OopClosureType> |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
150 |
inline void oop_oop_iterate_elements(objArrayOop a, OopClosureType* closure); |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
151 |
|
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
152 |
private: |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
153 |
// Iterate over all oop elements. |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
154 |
// Specialized for [T = oop] or [T = narrowOop]. |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
155 |
template <bool nv, typename T, class OopClosureType> |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
156 |
inline void oop_oop_iterate_elements_specialized(objArrayOop a, OopClosureType* closure); |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
157 |
|
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
158 |
// Iterate over all oop elements with indices within mr. |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
159 |
template <bool nv, class OopClosureType> |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
160 |
inline void oop_oop_iterate_elements_bounded(objArrayOop a, OopClosureType* closure, MemRegion mr); |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
161 |
|
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
162 |
// Iterate over oop elements within [low, high).. |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
163 |
// Specialized for [T = oop] or [T = narrowOop]. |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
164 |
template <bool nv, typename T, class OopClosureType> |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
165 |
inline void oop_oop_iterate_elements_specialized_bounded(objArrayOop a, OopClosureType* closure, void* low, void* high); |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
166 |
|
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
167 |
|
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
168 |
public: |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
169 |
|
30880
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
30150
diff
changeset
|
170 |
ALL_OOP_OOP_ITERATE_CLOSURES_1(OOP_OOP_ITERATE_DECL) |
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
30150
diff
changeset
|
171 |
ALL_OOP_OOP_ITERATE_CLOSURES_2(OOP_OOP_ITERATE_DECL) |
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
30150
diff
changeset
|
172 |
ALL_OOP_OOP_ITERATE_CLOSURES_1(OOP_OOP_ITERATE_DECL_RANGE) |
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
30150
diff
changeset
|
173 |
ALL_OOP_OOP_ITERATE_CLOSURES_2(OOP_OOP_ITERATE_DECL_RANGE) |
1 | 174 |
|
30150
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
175 |
#if INCLUDE_ALL_GCS |
30880
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
30150
diff
changeset
|
176 |
ALL_OOP_OOP_ITERATE_CLOSURES_1(OOP_OOP_ITERATE_DECL_NO_BACKWARDS) |
efe35e08179f
8080746: Refactor oop iteration macros to be more general
sjohanss
parents:
30150
diff
changeset
|
177 |
ALL_OOP_OOP_ITERATE_CLOSURES_2(OOP_OOP_ITERATE_DECL_NO_BACKWARDS) |
30150
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
178 |
#endif // INCLUDE_ALL_GCS |
d9c940aa42ef
8075955: Replace the macro based implementation of oop_oop_iterate with a template based solution
stefank
parents:
22794
diff
changeset
|
179 |
|
1 | 180 |
// JVM support |
181 |
jint compute_modifier_flags(TRAPS) const; |
|
182 |
||
183 |
public: |
|
184 |
// Printing |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
185 |
void print_on(outputStream* st) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
186 |
void print_value_on(outputStream* st) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
187 |
|
4584
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
1388
diff
changeset
|
188 |
void oop_print_value_on(oop obj, outputStream* st); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
1388
diff
changeset
|
189 |
#ifndef PRODUCT |
1 | 190 |
void oop_print_on (oop obj, outputStream* st); |
4584
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
1388
diff
changeset
|
191 |
#endif //PRODUCT |
1 | 192 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
193 |
const char* internal_name() const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
194 |
|
1 | 195 |
// Verification |
22794
f1c014ad3754
8027146: Class loading verification failure if GC occurs in Universe::flush_dependents_on
coleenp
parents:
22234
diff
changeset
|
196 |
void verify_on(outputStream* st); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
197 |
|
1 | 198 |
void oop_verify_on(oop obj, outputStream* st); |
199 |
}; |
|
7397 | 200 |
|
201 |
#endif // SHARE_VM_OOPS_OBJARRAYKLASS_HPP |