annotate src/share/vm/oops/klassVtable.hpp @ 24226:abc19eb35547

allow java.vm.name and java.vm.version to be initialized from a vm.properties file next to libjvm
author Doug Simon <doug.simon@oracle.com>
date Thu, 24 Aug 2017 22:20:40 +0200
parents cb4af293fe70
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
22886
fdde6a70ea85 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 12823
diff changeset
2 * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 676
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 676
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 676
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_OOPS_KLASSVTABLE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_OOPS_KLASSVTABLE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "memory/allocation.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "oops/oopsHierarchy.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "runtime/handles.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "utilities/growableArray.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
33 // A klassVtable abstracts the variable-length vtable that is embedded in InstanceKlass
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
34 // and ArrayKlass. klassVtable objects are used just as convenient transient accessors to the vtable,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // not to actually hold the vtable data.
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // Note: the klassVtable should not be accessed before the class has been verified
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // (until that point, the vtable is uninitialized).
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // Currently a klassVtable contains a direct reference to the vtable data, and is therefore
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // not preserved across GCs.
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 class vtableEntry;
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 class klassVtable : public ResourceObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
45 KlassHandle _klass; // my klass
a61af66fc99e Initial load
duke
parents:
diff changeset
46 int _tableOffset; // offset of start of vtable data within klass
a61af66fc99e Initial load
duke
parents:
diff changeset
47 int _length; // length of vtable (number of entries)
a61af66fc99e Initial load
duke
parents:
diff changeset
48 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
49 int _verify_count; // to make verify faster
a61af66fc99e Initial load
duke
parents:
diff changeset
50 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // Ordering important, so greater_than (>) can be used as an merge operator.
a61af66fc99e Initial load
duke
parents:
diff changeset
53 enum AccessType {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 acc_private = 0,
a61af66fc99e Initial load
duke
parents:
diff changeset
55 acc_package_private = 1,
a61af66fc99e Initial load
duke
parents:
diff changeset
56 acc_publicprotected = 2
a61af66fc99e Initial load
duke
parents:
diff changeset
57 };
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
60 klassVtable(KlassHandle h_klass, void* base, int length) : _klass(h_klass) {
a61af66fc99e Initial load
duke
parents:
diff changeset
61 _tableOffset = (address)base - (address)h_klass(); _length = length;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 }
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
65 vtableEntry* table() const { return (vtableEntry*)(address(_klass()) + _tableOffset); }
a61af66fc99e Initial load
duke
parents:
diff changeset
66 KlassHandle klass() const { return _klass; }
a61af66fc99e Initial load
duke
parents:
diff changeset
67 int length() const { return _length; }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
68 inline Method* method_at(int i) const;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
69 inline Method* unchecked_method_at(int i) const;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
70 inline Method** adr_method_at(int i) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // searching; all methods return -1 if not found
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
73 int index_of(Method* m) const { return index_of(m, _length); }
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
74 int index_of_miranda(Symbol* name, Symbol* signature);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 void initialize_vtable(bool checkconstraints, TRAPS); // initialize vtable of a new klass
a61af66fc99e Initial load
duke
parents:
diff changeset
77
3245
8ce625481709 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 2227
diff changeset
78 // CDS/RedefineClasses support - clear vtables so they can be reinitialized
8ce625481709 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 2227
diff changeset
79 // at dump time. Clearing gives us an easy way to tell if the vtable has
8ce625481709 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 2227
diff changeset
80 // already been reinitialized at dump time (see dump.cpp). Vtables can
8ce625481709 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 2227
diff changeset
81 // be initialized at run time by RedefineClasses so dumping the right order
8ce625481709 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 2227
diff changeset
82 // is necessary.
8ce625481709 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 2227
diff changeset
83 void clear_vtable();
8ce625481709 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 2227
diff changeset
84 bool is_initialized();
8ce625481709 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 2227
diff changeset
85
8ce625481709 7032407: Crash in LinkResolver::runtime_resolve_virtual_method()
coleenp
parents: 2227
diff changeset
86 // computes vtable length (in words) and the number of miranda methods
6934
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6831
diff changeset
87 static void compute_vtable_size_and_num_mirandas(
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6831
diff changeset
88 int* vtable_length, int* num_new_mirandas,
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6831
diff changeset
89 GrowableArray<Method*>* all_mirandas, Klass* super,
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6831
diff changeset
90 Array<Method*>* methods, AccessFlags class_flags, Handle classloader,
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6831
diff changeset
91 Symbol* classname, Array<Klass*>* local_interfaces, TRAPS);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
92
8021
8d9fc28831cc 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 6934
diff changeset
93 #if INCLUDE_JVMTI
0
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // RedefineClasses() API support:
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // If any entry of this vtable points to any of old_methods,
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // replace it with the corresponding new_method.
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // trace_name_printed is set to true if the current call has
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // printed the klass name so that other routines in the adjust_*
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // group don't print the klass name.
12823
ac9cb1d5a202 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 12264
diff changeset
100 bool adjust_default_method(int vtable_index, Method* old_method, Method* new_method);
22886
fdde6a70ea85 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 12823
diff changeset
101 void adjust_method_entries(InstanceKlass* holder, bool * trace_name_printed);
8021
8d9fc28831cc 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 6934
diff changeset
102 bool check_no_old_or_obsolete_entries();
8d9fc28831cc 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 6934
diff changeset
103 void dump_vtable();
8d9fc28831cc 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 6934
diff changeset
104 #endif // INCLUDE_JVMTI
0
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // Debugging code
a61af66fc99e Initial load
duke
parents:
diff changeset
107 void print() PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 void verify(outputStream* st, bool force = false);
a61af66fc99e Initial load
duke
parents:
diff changeset
109 static void print_statistics() PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
112 friend class vtableEntry;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 private:
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 16
diff changeset
114 enum { VTABLE_TRANSITIVE_OVERRIDE_VERSION = 51 } ;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
115 void copy_vtable_to(vtableEntry* start);
a61af66fc99e Initial load
duke
parents:
diff changeset
116 int initialize_from_super(KlassHandle super);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
117 int index_of(Method* m, int len) const; // same as index_of, but search only up to len
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
118 void put_method_at(Method* m, int index);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
119 static bool needs_new_vtable_entry(methodHandle m, Klass* super, Handle classloader, Symbol* classname, AccessFlags access_flags, TRAPS);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
120
12823
ac9cb1d5a202 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 12264
diff changeset
121 bool update_inherited_vtable(InstanceKlass* klass, methodHandle target_method, int super_vtable_len, int default_index, bool checkconstraints, TRAPS);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
122 InstanceKlass* find_transitive_override(InstanceKlass* initialsuper, methodHandle target_method, int vtable_index,
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1972
diff changeset
123 Handle target_loader, Symbol* target_classname, Thread* THREAD);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // support for miranda methods
a61af66fc99e Initial load
duke
parents:
diff changeset
126 bool is_miranda_entry_at(int i);
12264
b2e698d2276c 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 12258
diff changeset
127 int fill_in_mirandas(int initialized);
12823
ac9cb1d5a202 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 12264
diff changeset
128 static bool is_miranda(Method* m, Array<Method*>* class_methods,
ac9cb1d5a202 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 12264
diff changeset
129 Array<Method*>* default_methods, Klass* super);
6934
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6831
diff changeset
130 static void add_new_mirandas_to_lists(
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6831
diff changeset
131 GrowableArray<Method*>* new_mirandas,
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6831
diff changeset
132 GrowableArray<Method*>* all_mirandas,
12823
ac9cb1d5a202 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 12264
diff changeset
133 Array<Method*>* current_interface_methods,
ac9cb1d5a202 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 12264
diff changeset
134 Array<Method*>* class_methods,
ac9cb1d5a202 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 12264
diff changeset
135 Array<Method*>* default_methods,
6934
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6831
diff changeset
136 Klass* super);
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6831
diff changeset
137 static void get_mirandas(
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6831
diff changeset
138 GrowableArray<Method*>* new_mirandas,
4735d2c84362 7200776: Implement default methods in interfaces
kamg
parents: 6831
diff changeset
139 GrowableArray<Method*>* all_mirandas, Klass* super,
12823
ac9cb1d5a202 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 12264
diff changeset
140 Array<Method*>* class_methods,
ac9cb1d5a202 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 12264
diff changeset
141 Array<Method*>* default_methods,
ac9cb1d5a202 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 12264
diff changeset
142 Array<Klass*>* local_interfaces);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
143 void verify_against(outputStream* st, klassVtable* vt, int index);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
144 inline InstanceKlass* ik() const;
23905
cb4af293fe70 8153312: Constrain AppCDS behavior
jiangli
parents: 22886
diff changeset
145 // When loading a class from CDS archive at run time, and no class redefintion
cb4af293fe70 8153312: Constrain AppCDS behavior
jiangli
parents: 22886
diff changeset
146 // has happened, it is expected that the class's itable/vtables are
cb4af293fe70 8153312: Constrain AppCDS behavior
jiangli
parents: 22886
diff changeset
147 // laid out exactly the same way as they had been during dump time.
cb4af293fe70 8153312: Constrain AppCDS behavior
jiangli
parents: 22886
diff changeset
148 // Therefore, in klassVtable::initialize_[iv]table, we do not layout the
cb4af293fe70 8153312: Constrain AppCDS behavior
jiangli
parents: 22886
diff changeset
149 // tables again. Instead, we only rerun the process to create/check
cb4af293fe70 8153312: Constrain AppCDS behavior
jiangli
parents: 22886
diff changeset
150 // the class loader constraints. In non-product builds, we add asserts to
cb4af293fe70 8153312: Constrain AppCDS behavior
jiangli
parents: 22886
diff changeset
151 // guarantee that the table's layout would be the same as at dump time.
cb4af293fe70 8153312: Constrain AppCDS behavior
jiangli
parents: 22886
diff changeset
152 //
cb4af293fe70 8153312: Constrain AppCDS behavior
jiangli
parents: 22886
diff changeset
153 // If JVMTI redefines any class, the read-only shared memory are remapped
cb4af293fe70 8153312: Constrain AppCDS behavior
jiangli
parents: 22886
diff changeset
154 // as read-write. A shared class' vtable/itable are re-initialized and
cb4af293fe70 8153312: Constrain AppCDS behavior
jiangli
parents: 22886
diff changeset
155 // might have different layout due to class redefinition of the shared class
cb4af293fe70 8153312: Constrain AppCDS behavior
jiangli
parents: 22886
diff changeset
156 // or its super types.
cb4af293fe70 8153312: Constrain AppCDS behavior
jiangli
parents: 22886
diff changeset
157 bool is_preinitialized_vtable();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
158 };
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 // private helper class for klassVtable
a61af66fc99e Initial load
duke
parents:
diff changeset
162 // description of entry points:
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // destination is interpreted:
a61af66fc99e Initial load
duke
parents:
diff changeset
164 // from_compiled_code_entry_point -> c2iadapter
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // from_interpreter_entry_point -> interpreter entry point
a61af66fc99e Initial load
duke
parents:
diff changeset
166 // destination is compiled:
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // from_compiled_code_entry_point -> nmethod entry point
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // from_interpreter_entry_point -> i2cadapter
a61af66fc99e Initial load
duke
parents:
diff changeset
169 class vtableEntry VALUE_OBJ_CLASS_SPEC {
12258
69f26e8e09f9 8024760: add more types, fields and constants to VMStructs
twisti
parents: 8021
diff changeset
170 friend class VMStructs;
69f26e8e09f9 8024760: add more types, fields and constants to VMStructs
twisti
parents: 8021
diff changeset
171
0
a61af66fc99e Initial load
duke
parents:
diff changeset
172 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
173 // size in words
a61af66fc99e Initial load
duke
parents:
diff changeset
174 static int size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 return sizeof(vtableEntry) / sizeof(HeapWord);
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177 static int method_offset_in_bytes() { return offset_of(vtableEntry, _method); }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
178 Method* method() const { return _method; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180 private:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
181 Method* _method;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
182 void set(Method* method) { assert(method != NULL, "use clear"); _method = method; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
183 void clear() { _method = NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
184 void print() PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
185 void verify(klassVtable* vt, outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
186
a61af66fc99e Initial load
duke
parents:
diff changeset
187 friend class klassVtable;
a61af66fc99e Initial load
duke
parents:
diff changeset
188 };
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
191 inline Method* klassVtable::method_at(int i) const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
192 assert(i >= 0 && i < _length, "index out of bounds");
a61af66fc99e Initial load
duke
parents:
diff changeset
193 assert(table()[i].method() != NULL, "should not be null");
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
194 assert(((Metadata*)table()[i].method())->is_method(), "should be method");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
195 return table()[i].method();
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
197
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
198 inline Method* klassVtable::unchecked_method_at(int i) const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
199 assert(i >= 0 && i < _length, "index out of bounds");
a61af66fc99e Initial load
duke
parents:
diff changeset
200 return table()[i].method();
a61af66fc99e Initial load
duke
parents:
diff changeset
201 }
a61af66fc99e Initial load
duke
parents:
diff changeset
202
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
203 inline Method** klassVtable::adr_method_at(int i) const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
204 // Allow one past the last entry to be referenced; useful for loop bounds.
a61af66fc99e Initial load
duke
parents:
diff changeset
205 assert(i >= 0 && i <= _length, "index out of bounds");
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
206 return (Method**)(address(table() + i) + vtableEntry::method_offset_in_bytes());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
207 }
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 // --------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
210 class klassItable;
a61af66fc99e Initial load
duke
parents:
diff changeset
211 class itableMethodEntry;
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 class itableOffsetEntry VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
214 private:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
215 Klass* _interface;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
216 int _offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
217 public:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
218 Klass* interface_klass() const { return _interface; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
219 int offset() const { return _offset; }
a61af66fc99e Initial load
duke
parents:
diff changeset
220
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
221 static itableMethodEntry* method_entry(Klass* k, int offset) { return (itableMethodEntry*)(((address)k) + offset); }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
222 itableMethodEntry* first_method_entry(Klass* k) { return method_entry(k, _offset); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
223
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
224 void initialize(Klass* interf, int offset) { _interface = interf; _offset = offset; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
225
a61af66fc99e Initial load
duke
parents:
diff changeset
226 // Static size and offset accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
227 static int size() { return sizeof(itableOffsetEntry) / HeapWordSize; } // size in words
a61af66fc99e Initial load
duke
parents:
diff changeset
228 static int interface_offset_in_bytes() { return offset_of(itableOffsetEntry, _interface); }
a61af66fc99e Initial load
duke
parents:
diff changeset
229 static int offset_offset_in_bytes() { return offset_of(itableOffsetEntry, _offset); }
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231 friend class klassItable;
a61af66fc99e Initial load
duke
parents:
diff changeset
232 };
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234
a61af66fc99e Initial load
duke
parents:
diff changeset
235 class itableMethodEntry VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
236 private:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
237 Method* _method;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239 public:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
240 Method* method() const { return _method; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 void clear() { _method = NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
243
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
244 void initialize(Method* method);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
245
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // Static size and offset accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
247 static int size() { return sizeof(itableMethodEntry) / HeapWordSize; } // size in words
a61af66fc99e Initial load
duke
parents:
diff changeset
248 static int method_offset_in_bytes() { return offset_of(itableMethodEntry, _method); }
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250 friend class klassItable;
a61af66fc99e Initial load
duke
parents:
diff changeset
251 };
a61af66fc99e Initial load
duke
parents:
diff changeset
252
a61af66fc99e Initial load
duke
parents:
diff changeset
253 //
a61af66fc99e Initial load
duke
parents:
diff changeset
254 // Format of an itable
a61af66fc99e Initial load
duke
parents:
diff changeset
255 //
a61af66fc99e Initial load
duke
parents:
diff changeset
256 // ---- offset table ---
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
257 // Klass* of interface 1 \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
258 // offset to vtable from start of oop / offset table entry
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // ...
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
260 // Klass* of interface n \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
261 // offset to vtable from start of oop / offset table entry
a61af66fc99e Initial load
duke
parents:
diff changeset
262 // --- vtable for interface 1 ---
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
263 // Method* \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
264 // compiler entry point / method table entry
a61af66fc99e Initial load
duke
parents:
diff changeset
265 // ...
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
266 // Method* \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
267 // compiler entry point / method table entry
a61af66fc99e Initial load
duke
parents:
diff changeset
268 // -- vtable for interface 2 ---
a61af66fc99e Initial load
duke
parents:
diff changeset
269 // ...
a61af66fc99e Initial load
duke
parents:
diff changeset
270 //
a61af66fc99e Initial load
duke
parents:
diff changeset
271 class klassItable : public ResourceObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
272 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
273 instanceKlassHandle _klass; // my klass
a61af66fc99e Initial load
duke
parents:
diff changeset
274 int _table_offset; // offset of start of itable data within klass (in words)
a61af66fc99e Initial load
duke
parents:
diff changeset
275 int _size_offset_table; // size of offset table (in itableOffset entries)
a61af66fc99e Initial load
duke
parents:
diff changeset
276 int _size_method_table; // size of methodtable (in itableMethodEntry entries)
a61af66fc99e Initial load
duke
parents:
diff changeset
277
a61af66fc99e Initial load
duke
parents:
diff changeset
278 void initialize_itable_for_interface(int method_table_offset, KlassHandle interf_h, bool checkconstraints, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
279 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
280 klassItable(instanceKlassHandle klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
281
a61af66fc99e Initial load
duke
parents:
diff changeset
282 itableOffsetEntry* offset_entry(int i) { assert(0 <= i && i <= _size_offset_table, "index out of bounds");
a61af66fc99e Initial load
duke
parents:
diff changeset
283 return &((itableOffsetEntry*)vtable_start())[i]; }
a61af66fc99e Initial load
duke
parents:
diff changeset
284
a61af66fc99e Initial load
duke
parents:
diff changeset
285 itableMethodEntry* method_entry(int i) { assert(0 <= i && i <= _size_method_table, "index out of bounds");
a61af66fc99e Initial load
duke
parents:
diff changeset
286 return &((itableMethodEntry*)method_start())[i]; }
a61af66fc99e Initial load
duke
parents:
diff changeset
287
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
288 int size_offset_table() { return _size_offset_table; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
289
a61af66fc99e Initial load
duke
parents:
diff changeset
290 // Initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
291 void initialize_itable(bool checkconstraints, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
292
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // Updates
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
294 void initialize_with_method(Method* m);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
295
8021
8d9fc28831cc 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 6934
diff changeset
296 #if INCLUDE_JVMTI
0
a61af66fc99e Initial load
duke
parents:
diff changeset
297 // RedefineClasses() API support:
a61af66fc99e Initial load
duke
parents:
diff changeset
298 // if any entry of this itable points to any of old_methods,
a61af66fc99e Initial load
duke
parents:
diff changeset
299 // replace it with the corresponding new_method.
a61af66fc99e Initial load
duke
parents:
diff changeset
300 // trace_name_printed is set to true if the current call has
a61af66fc99e Initial load
duke
parents:
diff changeset
301 // printed the klass name so that other routines in the adjust_*
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // group don't print the klass name.
22886
fdde6a70ea85 8046246: the constantPoolCacheOopDesc::adjust_method_entries() used in RedefineClasses does not scale
sspitsyn
parents: 12823
diff changeset
303 void adjust_method_entries(InstanceKlass* holder, bool * trace_name_printed);
8021
8d9fc28831cc 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 6934
diff changeset
304 bool check_no_old_or_obsolete_entries();
8d9fc28831cc 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 6934
diff changeset
305 void dump_itable();
8d9fc28831cc 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 6934
diff changeset
306 #endif // INCLUDE_JVMTI
0
a61af66fc99e Initial load
duke
parents:
diff changeset
307
a61af66fc99e Initial load
duke
parents:
diff changeset
308 // Setup of itable
12823
ac9cb1d5a202 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 12264
diff changeset
309 static int assign_itable_indices_for_interface(Klass* klass);
12264
b2e698d2276c 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 12258
diff changeset
310 static int method_count_for_interface(Klass* klass);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
311 static int compute_itable_size(Array<Klass*>* transitive_interfaces);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
312 static void setup_itable_offset_table(instanceKlassHandle klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
313
a61af66fc99e Initial load
duke
parents:
diff changeset
314 // Resolving of method to index
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 3245
diff changeset
315 static Method* method_for_itable_index(Klass* klass, int itable_index);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
316
a61af66fc99e Initial load
duke
parents:
diff changeset
317 // Debugging/Statistics
a61af66fc99e Initial load
duke
parents:
diff changeset
318 static void print_statistics() PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
319 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
320 intptr_t* vtable_start() const { return ((intptr_t*)_klass()) + _table_offset; }
a61af66fc99e Initial load
duke
parents:
diff changeset
321 intptr_t* method_start() const { return vtable_start() + _size_offset_table * itableOffsetEntry::size(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
322
a61af66fc99e Initial load
duke
parents:
diff changeset
323 // Helper methods
a61af66fc99e Initial load
duke
parents:
diff changeset
324 static int calc_itable_size(int num_interfaces, int num_methods) { return (num_interfaces * itableOffsetEntry::size()) + (num_methods * itableMethodEntry::size()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
325
a61af66fc99e Initial load
duke
parents:
diff changeset
326 // Statistics
a61af66fc99e Initial load
duke
parents:
diff changeset
327 NOT_PRODUCT(static int _total_classes;) // Total no. of classes with itables
a61af66fc99e Initial load
duke
parents:
diff changeset
328 NOT_PRODUCT(static long _total_size;) // Total no. of bytes used for itables
a61af66fc99e Initial load
duke
parents:
diff changeset
329
a61af66fc99e Initial load
duke
parents:
diff changeset
330 static void update_stats(int size) PRODUCT_RETURN NOT_PRODUCT({ _total_classes++; _total_size += size; })
a61af66fc99e Initial load
duke
parents:
diff changeset
331 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
332
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
333 #endif // SHARE_VM_OOPS_KLASSVTABLE_HPP