author | coleenp |
Wed, 24 Jul 2019 10:22:11 -0400 | |
changeset 57511 | 00ae3b739184 |
parent 53904 | 9c3fe09f69bc |
child 58507 | 7c1d0616828c |
permissions | -rw-r--r-- |
1 | 1 |
/* |
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
51329
diff
changeset
|
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:
2343
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2343
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:
2343
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
51329
diff
changeset
|
25 |
#ifndef SHARE_OOPS_KLASSVTABLE_HPP |
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
51329
diff
changeset
|
26 |
#define SHARE_OOPS_KLASSVTABLE_HPP |
7397 | 27 |
|
28 |
#include "oops/oopsHierarchy.hpp" |
|
29 |
#include "runtime/handles.hpp" |
|
30 |
#include "utilities/growableArray.hpp" |
|
31 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
32 |
// A klassVtable abstracts the variable-length vtable that is embedded in InstanceKlass |
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
33 |
// and ArrayKlass. klassVtable objects are used just as convenient transient accessors to the vtable, |
1 | 34 |
// not to actually hold the vtable data. |
35 |
// Note: the klassVtable should not be accessed before the class has been verified |
|
36 |
// (until that point, the vtable is uninitialized). |
|
37 |
||
38 |
// Currently a klassVtable contains a direct reference to the vtable data, and is therefore |
|
39 |
// not preserved across GCs. |
|
40 |
||
41 |
class vtableEntry; |
|
42 |
||
49364
601146c66cad
8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents:
48463
diff
changeset
|
43 |
class klassVtable { |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
40633
diff
changeset
|
44 |
Klass* _klass; // my klass |
1 | 45 |
int _tableOffset; // offset of start of vtable data within klass |
46 |
int _length; // length of vtable (number of entries) |
|
47 |
#ifndef PRODUCT |
|
48 |
int _verify_count; // to make verify faster |
|
49 |
#endif |
|
50 |
||
51 |
// Ordering important, so greater_than (>) can be used as an merge operator. |
|
52 |
enum AccessType { |
|
53 |
acc_private = 0, |
|
54 |
acc_package_private = 1, |
|
55 |
acc_publicprotected = 2 |
|
56 |
}; |
|
57 |
||
58 |
public: |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
40633
diff
changeset
|
59 |
klassVtable(Klass* klass, void* base, int length) : _klass(klass) { |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
40633
diff
changeset
|
60 |
_tableOffset = (address)base - (address)klass; _length = length; |
1 | 61 |
} |
62 |
||
63 |
// accessors |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
40633
diff
changeset
|
64 |
vtableEntry* table() const { return (vtableEntry*)(address(_klass) + _tableOffset); } |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
40633
diff
changeset
|
65 |
Klass* klass() const { return _klass; } |
1 | 66 |
int length() const { return _length; } |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
67 |
inline Method* method_at(int i) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
68 |
inline Method* unchecked_method_at(int i) const; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
69 |
inline Method** adr_method_at(int i) const; |
1 | 70 |
|
71 |
// searching; all methods return -1 if not found |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
72 |
int index_of(Method* m) const { return index_of(m, _length); } |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
73 |
int index_of_miranda(Symbol* name, Symbol* signature); |
1 | 74 |
|
75 |
void initialize_vtable(bool checkconstraints, TRAPS); // initialize vtable of a new klass |
|
76 |
||
9172
a4e13ccafc44
7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents:
8297
diff
changeset
|
77 |
// CDS/RedefineClasses support - clear vtables so they can be reinitialized |
a4e13ccafc44
7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents:
8297
diff
changeset
|
78 |
// at dump time. Clearing gives us an easy way to tell if the vtable has |
a4e13ccafc44
7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents:
8297
diff
changeset
|
79 |
// already been reinitialized at dump time (see dump.cpp). Vtables can |
a4e13ccafc44
7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents:
8297
diff
changeset
|
80 |
// be initialized at run time by RedefineClasses so dumping the right order |
a4e13ccafc44
7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents:
8297
diff
changeset
|
81 |
// is necessary. |
a4e13ccafc44
7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents:
8297
diff
changeset
|
82 |
void clear_vtable(); |
a4e13ccafc44
7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents:
8297
diff
changeset
|
83 |
bool is_initialized(); |
a4e13ccafc44
7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents:
8297
diff
changeset
|
84 |
|
a4e13ccafc44
7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents:
8297
diff
changeset
|
85 |
// computes vtable length (in words) and the number of miranda methods |
34666 | 86 |
static void compute_vtable_size_and_num_mirandas(int* vtable_length, |
87 |
int* num_new_mirandas, |
|
88 |
GrowableArray<Method*>* all_mirandas, |
|
89 |
const Klass* super, |
|
90 |
Array<Method*>* methods, |
|
91 |
AccessFlags class_flags, |
|
40633
c33ad2ff51de
8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents:
39714
diff
changeset
|
92 |
u2 major_version, |
34666 | 93 |
Handle classloader, |
94 |
Symbol* classname, |
|
51329
9c68699bebe5
8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents:
51096
diff
changeset
|
95 |
Array<InstanceKlass*>* local_interfaces, |
34666 | 96 |
TRAPS); |
1 | 97 |
|
15591
b8aa0577f137
7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents:
14385
diff
changeset
|
98 |
#if INCLUDE_JVMTI |
1 | 99 |
// RedefineClasses() API support: |
100 |
// If any entry of this vtable points to any of old_methods, |
|
101 |
// replace it with the corresponding new_method. |
|
102 |
// trace_name_printed is set to true if the current call has |
|
103 |
// printed the klass name so that other routines in the adjust_* |
|
104 |
// group don't print the klass name. |
|
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20017
diff
changeset
|
105 |
bool adjust_default_method(int vtable_index, Method* old_method, Method* new_method); |
53904
9c3fe09f69bc
8078725: method adjustments can be done just once for all classes involved into redefinition
coleenp
parents:
53244
diff
changeset
|
106 |
void adjust_method_entries(bool* trace_name_printed); |
15591
b8aa0577f137
7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents:
14385
diff
changeset
|
107 |
bool check_no_old_or_obsolete_entries(); |
b8aa0577f137
7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents:
14385
diff
changeset
|
108 |
void dump_vtable(); |
b8aa0577f137
7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents:
14385
diff
changeset
|
109 |
#endif // INCLUDE_JVMTI |
1 | 110 |
|
111 |
// Debugging code |
|
112 |
void print() PRODUCT_RETURN; |
|
113 |
void verify(outputStream* st, bool force = false); |
|
114 |
static void print_statistics() PRODUCT_RETURN; |
|
115 |
||
116 |
protected: |
|
117 |
friend class vtableEntry; |
|
40633
c33ad2ff51de
8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents:
39714
diff
changeset
|
118 |
|
c33ad2ff51de
8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents:
39714
diff
changeset
|
119 |
public: |
c33ad2ff51de
8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents:
39714
diff
changeset
|
120 |
// Transitive overridng rules for class files < JDK1_7 use the older JVMS rules. |
c33ad2ff51de
8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents:
39714
diff
changeset
|
121 |
// Overriding is determined as we create the vtable, so we use the class file version |
c33ad2ff51de
8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents:
39714
diff
changeset
|
122 |
// of the class whose vtable we are calculating. |
c33ad2ff51de
8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents:
39714
diff
changeset
|
123 |
enum { VTABLE_TRANSITIVE_OVERRIDE_VERSION = 51 } ; |
c33ad2ff51de
8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents:
39714
diff
changeset
|
124 |
|
1 | 125 |
private: |
126 |
void copy_vtable_to(vtableEntry* start); |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
40633
diff
changeset
|
127 |
int initialize_from_super(Klass* super); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
128 |
int index_of(Method* m, int len) const; // same as index_of, but search only up to len |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
129 |
void put_method_at(Method* m, int index); |
46727
6e4a84748e2c
8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents:
46408
diff
changeset
|
130 |
static bool needs_new_vtable_entry(const methodHandle& m, |
34666 | 131 |
const Klass* super, |
132 |
Handle classloader, |
|
133 |
Symbol* classname, |
|
134 |
AccessFlags access_flags, |
|
40633
c33ad2ff51de
8163808: Fix asserts and logging for old classfile vtable construction
acorn
parents:
39714
diff
changeset
|
135 |
u2 major_version, |
34666 | 136 |
TRAPS); |
1 | 137 |
|
46727
6e4a84748e2c
8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents:
46408
diff
changeset
|
138 |
bool update_inherited_vtable(InstanceKlass* klass, const methodHandle& target_method, int super_vtable_len, int default_index, bool checkconstraints, TRAPS); |
6e4a84748e2c
8183039: Re-examine methodHandle methods uninlined by 8144256
coleenp
parents:
46408
diff
changeset
|
139 |
InstanceKlass* find_transitive_override(InstanceKlass* initialsuper, const methodHandle& target_method, int vtable_index, |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
140 |
Handle target_loader, Symbol* target_classname, Thread* THREAD); |
1 | 141 |
|
142 |
// support for miranda methods |
|
143 |
bool is_miranda_entry_at(int i); |
|
51096
695dff91a997
8178712: ResourceMark may be missing inside initialize_[vi]table
lfoltan
parents:
49621
diff
changeset
|
144 |
int fill_in_mirandas(int initialized, TRAPS); |
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20017
diff
changeset
|
145 |
static bool is_miranda(Method* m, Array<Method*>* class_methods, |
48463
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47216
diff
changeset
|
146 |
Array<Method*>* default_methods, const Klass* super, |
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47216
diff
changeset
|
147 |
bool is_interface); |
14385 | 148 |
static void add_new_mirandas_to_lists( |
149 |
GrowableArray<Method*>* new_mirandas, |
|
150 |
GrowableArray<Method*>* all_mirandas, |
|
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20017
diff
changeset
|
151 |
Array<Method*>* current_interface_methods, |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20017
diff
changeset
|
152 |
Array<Method*>* class_methods, |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20017
diff
changeset
|
153 |
Array<Method*>* default_methods, |
48463
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47216
diff
changeset
|
154 |
const Klass* super, |
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47216
diff
changeset
|
155 |
bool is_interface); |
14385 | 156 |
static void get_mirandas( |
157 |
GrowableArray<Method*>* new_mirandas, |
|
34666 | 158 |
GrowableArray<Method*>* all_mirandas, |
159 |
const Klass* super, |
|
20391
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20017
diff
changeset
|
160 |
Array<Method*>* class_methods, |
7b146c5ebb18
8009130: Lambda: Fix access controls, loader constraints.
acorn
parents:
20017
diff
changeset
|
161 |
Array<Method*>* default_methods, |
51329
9c68699bebe5
8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents:
51096
diff
changeset
|
162 |
Array<InstanceKlass*>* local_interfaces, |
48463
474cec233fb2
8154587: Resolution fails for default method named 'clone'
hseigel
parents:
47216
diff
changeset
|
163 |
bool is_interface); |
1 | 164 |
void verify_against(outputStream* st, klassVtable* vt, int index); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
165 |
inline InstanceKlass* ik() const; |
39714 | 166 |
// When loading a class from CDS archive at run time, and no class redefintion |
167 |
// has happened, it is expected that the class's itable/vtables are |
|
168 |
// laid out exactly the same way as they had been during dump time. |
|
169 |
// Therefore, in klassVtable::initialize_[iv]table, we do not layout the |
|
170 |
// tables again. Instead, we only rerun the process to create/check |
|
171 |
// the class loader constraints. In non-product builds, we add asserts to |
|
172 |
// guarantee that the table's layout would be the same as at dump time. |
|
173 |
// |
|
174 |
// If JVMTI redefines any class, the read-only shared memory are remapped |
|
175 |
// as read-write. A shared class' vtable/itable are re-initialized and |
|
176 |
// might have different layout due to class redefinition of the shared class |
|
177 |
// or its super types. |
|
178 |
bool is_preinitialized_vtable(); |
|
1 | 179 |
}; |
180 |
||
181 |
||
182 |
// private helper class for klassVtable |
|
183 |
// description of entry points: |
|
184 |
// destination is interpreted: |
|
185 |
// from_compiled_code_entry_point -> c2iadapter |
|
186 |
// from_interpreter_entry_point -> interpreter entry point |
|
187 |
// destination is compiled: |
|
188 |
// from_compiled_code_entry_point -> nmethod entry point |
|
189 |
// from_interpreter_entry_point -> i2cadapter |
|
49364
601146c66cad
8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents:
48463
diff
changeset
|
190 |
class vtableEntry { |
20011
d74937287461
8024760: add more types, fields and constants to VMStructs
twisti
parents:
15591
diff
changeset
|
191 |
friend class VMStructs; |
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
29316
diff
changeset
|
192 |
friend class JVMCIVMStructs; |
20011
d74937287461
8024760: add more types, fields and constants to VMStructs
twisti
parents:
15591
diff
changeset
|
193 |
|
1 | 194 |
public: |
195 |
// size in words |
|
35898
ddc274f0052f
8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents:
35871
diff
changeset
|
196 |
static int size() { return sizeof(vtableEntry) / wordSize; } |
ddc274f0052f
8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents:
35871
diff
changeset
|
197 |
static int size_in_bytes() { return sizeof(vtableEntry); } |
ddc274f0052f
8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents:
35871
diff
changeset
|
198 |
|
1 | 199 |
static int method_offset_in_bytes() { return offset_of(vtableEntry, _method); } |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
200 |
Method* method() const { return _method; } |
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46727
diff
changeset
|
201 |
Method** method_addr() { return &_method; } |
1 | 202 |
|
203 |
private: |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
204 |
Method* _method; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
205 |
void set(Method* method) { assert(method != NULL, "use clear"); _method = method; } |
1 | 206 |
void clear() { _method = NULL; } |
207 |
void print() PRODUCT_RETURN; |
|
208 |
void verify(klassVtable* vt, outputStream* st); |
|
209 |
||
210 |
friend class klassVtable; |
|
211 |
}; |
|
212 |
||
213 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
214 |
inline Method* klassVtable::method_at(int i) const { |
1 | 215 |
assert(i >= 0 && i < _length, "index out of bounds"); |
216 |
assert(table()[i].method() != NULL, "should not be null"); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
217 |
assert(((Metadata*)table()[i].method())->is_method(), "should be method"); |
1 | 218 |
return table()[i].method(); |
219 |
} |
|
220 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
221 |
inline Method* klassVtable::unchecked_method_at(int i) const { |
1 | 222 |
assert(i >= 0 && i < _length, "index out of bounds"); |
223 |
return table()[i].method(); |
|
224 |
} |
|
225 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
226 |
inline Method** klassVtable::adr_method_at(int i) const { |
1 | 227 |
// Allow one past the last entry to be referenced; useful for loop bounds. |
228 |
assert(i >= 0 && i <= _length, "index out of bounds"); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
229 |
return (Method**)(address(table() + i) + vtableEntry::method_offset_in_bytes()); |
1 | 230 |
} |
231 |
||
232 |
// -------------------------------------------------------------------------------- |
|
233 |
class klassItable; |
|
234 |
class itableMethodEntry; |
|
235 |
||
49364
601146c66cad
8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents:
48463
diff
changeset
|
236 |
class itableOffsetEntry { |
1 | 237 |
private: |
51329
9c68699bebe5
8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents:
51096
diff
changeset
|
238 |
InstanceKlass* _interface; |
1 | 239 |
int _offset; |
240 |
public: |
|
51329
9c68699bebe5
8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents:
51096
diff
changeset
|
241 |
InstanceKlass* interface_klass() const { return _interface; } |
9c68699bebe5
8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents:
51096
diff
changeset
|
242 |
InstanceKlass**interface_klass_addr() { return &_interface; } |
1 | 243 |
int offset() const { return _offset; } |
244 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
245 |
static itableMethodEntry* method_entry(Klass* k, int offset) { return (itableMethodEntry*)(((address)k) + offset); } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
246 |
itableMethodEntry* first_method_entry(Klass* k) { return method_entry(k, _offset); } |
1 | 247 |
|
51329
9c68699bebe5
8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents:
51096
diff
changeset
|
248 |
void initialize(InstanceKlass* interf, int offset) { _interface = interf; _offset = offset; } |
1 | 249 |
|
250 |
// Static size and offset accessors |
|
35898
ddc274f0052f
8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents:
35871
diff
changeset
|
251 |
static int size() { return sizeof(itableOffsetEntry) / wordSize; } // size in words |
1 | 252 |
static int interface_offset_in_bytes() { return offset_of(itableOffsetEntry, _interface); } |
253 |
static int offset_offset_in_bytes() { return offset_of(itableOffsetEntry, _offset); } |
|
254 |
||
255 |
friend class klassItable; |
|
256 |
}; |
|
257 |
||
258 |
||
49364
601146c66cad
8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents:
48463
diff
changeset
|
259 |
class itableMethodEntry { |
1 | 260 |
private: |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
261 |
Method* _method; |
1 | 262 |
|
263 |
public: |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
264 |
Method* method() const { return _method; } |
46746
ea379ebb9447
8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents:
46727
diff
changeset
|
265 |
Method**method_addr() { return &_method; } |
1 | 266 |
|
267 |
void clear() { _method = NULL; } |
|
268 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
269 |
void initialize(Method* method); |
1 | 270 |
|
271 |
// Static size and offset accessors |
|
35898
ddc274f0052f
8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents:
35871
diff
changeset
|
272 |
static int size() { return sizeof(itableMethodEntry) / wordSize; } // size in words |
1 | 273 |
static int method_offset_in_bytes() { return offset_of(itableMethodEntry, _method); } |
274 |
||
275 |
friend class klassItable; |
|
276 |
}; |
|
277 |
||
278 |
// |
|
279 |
// Format of an itable |
|
280 |
// |
|
281 |
// ---- offset table --- |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
282 |
// Klass* of interface 1 \ |
1 | 283 |
// offset to vtable from start of oop / offset table entry |
284 |
// ... |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
285 |
// Klass* of interface n \ |
1 | 286 |
// offset to vtable from start of oop / offset table entry |
287 |
// --- vtable for interface 1 --- |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
288 |
// Method* \ |
1 | 289 |
// compiler entry point / method table entry |
290 |
// ... |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
9172
diff
changeset
|
291 |
// Method* \ |
1 | 292 |
// compiler entry point / method table entry |
293 |
// -- vtable for interface 2 --- |
|
294 |
// ... |
|
295 |
// |
|
49364
601146c66cad
8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents:
48463
diff
changeset
|
296 |
class klassItable { |
1 | 297 |
private: |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
40633
diff
changeset
|
298 |
InstanceKlass* _klass; // my klass |
1 | 299 |
int _table_offset; // offset of start of itable data within klass (in words) |
300 |
int _size_offset_table; // size of offset table (in itableOffset entries) |
|
301 |
int _size_method_table; // size of methodtable (in itableMethodEntry entries) |
|
302 |
||
51329
9c68699bebe5
8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents:
51096
diff
changeset
|
303 |
void initialize_itable_for_interface(int method_table_offset, InstanceKlass* interf_h, bool checkconstraints, TRAPS); |
1 | 304 |
public: |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
40633
diff
changeset
|
305 |
klassItable(InstanceKlass* klass); |
1 | 306 |
|
307 |
itableOffsetEntry* offset_entry(int i) { assert(0 <= i && i <= _size_offset_table, "index out of bounds"); |
|
308 |
return &((itableOffsetEntry*)vtable_start())[i]; } |
|
309 |
||
310 |
itableMethodEntry* method_entry(int i) { assert(0 <= i && i <= _size_method_table, "index out of bounds"); |
|
311 |
return &((itableMethodEntry*)method_start())[i]; } |
|
312 |
||
189
4248c8e21063
6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents:
1
diff
changeset
|
313 |
int size_offset_table() { return _size_offset_table; } |
1 | 314 |
|
315 |
// Initialization |
|
316 |
void initialize_itable(bool checkconstraints, TRAPS); |
|
317 |
||
15591
b8aa0577f137
7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents:
14385
diff
changeset
|
318 |
#if INCLUDE_JVMTI |
1 | 319 |
// RedefineClasses() API support: |
320 |
// if any entry of this itable points to any of old_methods, |
|
321 |
// replace it with the corresponding new_method. |
|
322 |
// trace_name_printed is set to true if the current call has |
|
323 |
// printed the klass name so that other routines in the adjust_* |
|
324 |
// group don't print the klass name. |
|
53904
9c3fe09f69bc
8078725: method adjustments can be done just once for all classes involved into redefinition
coleenp
parents:
53244
diff
changeset
|
325 |
void adjust_method_entries(bool* trace_name_printed); |
15591
b8aa0577f137
7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents:
14385
diff
changeset
|
326 |
bool check_no_old_or_obsolete_entries(); |
b8aa0577f137
7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents:
14385
diff
changeset
|
327 |
void dump_itable(); |
b8aa0577f137
7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents:
14385
diff
changeset
|
328 |
#endif // INCLUDE_JVMTI |
1 | 329 |
|
330 |
// Setup of itable |
|
51329
9c68699bebe5
8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents:
51096
diff
changeset
|
331 |
static int assign_itable_indices_for_interface(InstanceKlass* klass, TRAPS); |
9c68699bebe5
8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents:
51096
diff
changeset
|
332 |
static int method_count_for_interface(InstanceKlass* klass); |
9c68699bebe5
8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents:
51096
diff
changeset
|
333 |
static int compute_itable_size(Array<InstanceKlass*>* transitive_interfaces); |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
40633
diff
changeset
|
334 |
static void setup_itable_offset_table(InstanceKlass* klass); |
1 | 335 |
|
336 |
// Resolving of method to index |
|
51329
9c68699bebe5
8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents:
51096
diff
changeset
|
337 |
static Method* method_for_itable_index(InstanceKlass* klass, int itable_index); |
1 | 338 |
|
339 |
// Debugging/Statistics |
|
340 |
static void print_statistics() PRODUCT_RETURN; |
|
341 |
private: |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
40633
diff
changeset
|
342 |
intptr_t* vtable_start() const { return ((intptr_t*)_klass) + _table_offset; } |
1 | 343 |
intptr_t* method_start() const { return vtable_start() + _size_offset_table * itableOffsetEntry::size(); } |
344 |
||
345 |
// Helper methods |
|
346 |
static int calc_itable_size(int num_interfaces, int num_methods) { return (num_interfaces * itableOffsetEntry::size()) + (num_methods * itableMethodEntry::size()); } |
|
347 |
||
348 |
// Statistics |
|
349 |
NOT_PRODUCT(static int _total_classes;) // Total no. of classes with itables |
|
350 |
NOT_PRODUCT(static long _total_size;) // Total no. of bytes used for itables |
|
351 |
||
352 |
static void update_stats(int size) PRODUCT_RETURN NOT_PRODUCT({ _total_classes++; _total_size += size; }) |
|
353 |
}; |
|
7397 | 354 |
|
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
51329
diff
changeset
|
355 |
#endif // SHARE_OOPS_KLASSVTABLE_HPP |