annotate src/share/vm/oops/klassVtable.cpp @ 676:d3676b4cb78c

Merge
author kvn
date Tue, 31 Mar 2009 10:02:01 -0700
parents 4aaa9f5e02a8 c89f86385056
children cff162798819
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
2 * Copyright 1997-2009 Sun Microsystems, Inc. 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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 #include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #include "incls/_klassVtable.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 inline instanceKlass* klassVtable::ik() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
29 Klass* k = _klass()->klass_part();
a61af66fc99e Initial load
duke
parents:
diff changeset
30 assert(k->oop_is_instance(), "not an instanceKlass");
a61af66fc99e Initial load
duke
parents:
diff changeset
31 return (instanceKlass*)k;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 }
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // this function computes the vtable size (including the size needed for miranda
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // methods) and the number of miranda methods in this class
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // Note on Miranda methods: Let's say there is a class C that implements
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // interface I. Let's say there is a method m in I that neither C nor any
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // of its super classes implement (i.e there is no method of any access, with
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // the same name and signature as m), then m is a Miranda method which is
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // entered as a public abstract method in C's vtable. From then on it should
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // treated as any other public method in C for method over-ride purposes.
a61af66fc99e Initial load
duke
parents:
diff changeset
43 void klassVtable::compute_vtable_size_and_num_mirandas(int &vtable_length,
a61af66fc99e Initial load
duke
parents:
diff changeset
44 int &num_miranda_methods,
a61af66fc99e Initial load
duke
parents:
diff changeset
45 klassOop super,
a61af66fc99e Initial load
duke
parents:
diff changeset
46 objArrayOop methods,
a61af66fc99e Initial load
duke
parents:
diff changeset
47 AccessFlags class_flags,
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
48 Handle classloader,
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
49 symbolHandle classname,
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
50 objArrayOop local_interfaces,
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
51 TRAPS
0
a61af66fc99e Initial load
duke
parents:
diff changeset
52 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 No_Safepoint_Verifier nsv;
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // set up default result values
a61af66fc99e Initial load
duke
parents:
diff changeset
57 vtable_length = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 num_miranda_methods = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // start off with super's vtable length
a61af66fc99e Initial load
duke
parents:
diff changeset
61 instanceKlass* sk = (instanceKlass*)super->klass_part();
a61af66fc99e Initial load
duke
parents:
diff changeset
62 vtable_length = super == NULL ? 0 : sk->vtable_length();
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // go thru each method in the methods table to see if it needs a new entry
a61af66fc99e Initial load
duke
parents:
diff changeset
65 int len = methods->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
66 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 assert(methods->obj_at(i)->is_method(), "must be a methodOop");
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
68 methodHandle mh(THREAD, methodOop(methods->obj_at(i)));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
69
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
70 if (needs_new_vtable_entry(mh, super, classloader, classname, class_flags, THREAD)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
71 vtable_length += vtableEntry::size(); // we need a new entry
a61af66fc99e Initial load
duke
parents:
diff changeset
72 }
a61af66fc99e Initial load
duke
parents:
diff changeset
73 }
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // compute the number of mirandas methods that must be added to the end
a61af66fc99e Initial load
duke
parents:
diff changeset
76 num_miranda_methods = get_num_mirandas(super, methods, local_interfaces);
a61af66fc99e Initial load
duke
parents:
diff changeset
77 vtable_length += (num_miranda_methods * vtableEntry::size());
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 if (Universe::is_bootstrapping() && vtable_length == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // array classes don't have their superclass set correctly during
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // bootstrapping
a61af66fc99e Initial load
duke
parents:
diff changeset
82 vtable_length = Universe::base_vtable_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
83 }
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 if (super == NULL && !Universe::is_bootstrapping() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
86 vtable_length != Universe::base_vtable_size()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // Someone is attempting to redefine java.lang.Object incorrectly. The
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // only way this should happen is from
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // SystemDictionary::resolve_from_stream(), which will detect this later
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // and throw a security exception. So don't assert here to let
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // the exception occur.
a61af66fc99e Initial load
duke
parents:
diff changeset
92 vtable_length = Universe::base_vtable_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
a61af66fc99e Initial load
duke
parents:
diff changeset
94 assert(super != NULL || vtable_length == Universe::base_vtable_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
95 "bad vtable size for class Object");
a61af66fc99e Initial load
duke
parents:
diff changeset
96 assert(vtable_length % vtableEntry::size() == 0, "bad vtable length");
a61af66fc99e Initial load
duke
parents:
diff changeset
97 assert(vtable_length >= Universe::base_vtable_size(), "vtable too small");
a61af66fc99e Initial load
duke
parents:
diff changeset
98 }
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 int klassVtable::index_of(methodOop m, int len) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
101 assert(m->vtable_index() >= 0, "do not ask this of non-vtable methods");
a61af66fc99e Initial load
duke
parents:
diff changeset
102 return m->vtable_index();
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 int klassVtable::initialize_from_super(KlassHandle super) {
a61af66fc99e Initial load
duke
parents:
diff changeset
106 if (super.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
107 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // copy methods from superKlass
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // can't inherit from array class, so must be instanceKlass
a61af66fc99e Initial load
duke
parents:
diff changeset
111 assert(super->oop_is_instance(), "must be instance klass");
a61af66fc99e Initial load
duke
parents:
diff changeset
112 instanceKlass* sk = (instanceKlass*)super()->klass_part();
a61af66fc99e Initial load
duke
parents:
diff changeset
113 klassVtable* superVtable = sk->vtable();
a61af66fc99e Initial load
duke
parents:
diff changeset
114 assert(superVtable->length() <= _length, "vtable too short");
a61af66fc99e Initial load
duke
parents:
diff changeset
115 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
116 superVtable->verify(tty, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
117 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
118 superVtable->copy_vtable_to(table());
a61af66fc99e Initial load
duke
parents:
diff changeset
119 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
120 if (PrintVtables && Verbose) {
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
121 ResourceMark rm;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
122 tty->print_cr("copy vtable from %s to %s size %d", sk->internal_name(), klass()->internal_name(), _length);
a61af66fc99e Initial load
duke
parents:
diff changeset
123 }
a61af66fc99e Initial load
duke
parents:
diff changeset
124 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
125 return superVtable->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
126 }
a61af66fc99e Initial load
duke
parents:
diff changeset
127 }
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // Revised lookup semantics introduced 1.3 (Kestral beta)
a61af66fc99e Initial load
duke
parents:
diff changeset
130 void klassVtable::initialize_vtable(bool checkconstraints, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // Note: Arrays can have intermediate array supers. Use java_super to skip them.
a61af66fc99e Initial load
duke
parents:
diff changeset
133 KlassHandle super (THREAD, klass()->java_super());
a61af66fc99e Initial load
duke
parents:
diff changeset
134 int nofNewEntries = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 if (PrintVtables && !klass()->oop_is_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
138 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
139 tty->print_cr("Initializing: %s", _klass->name()->as_C_string());
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
143 oop* end_of_obj = (oop*)_klass() + _klass()->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
144 oop* end_of_vtable = (oop*)&table()[_length];
a61af66fc99e Initial load
duke
parents:
diff changeset
145 assert(end_of_vtable <= end_of_obj, "vtable extends beyond end");
a61af66fc99e Initial load
duke
parents:
diff changeset
146 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 if (Universe::is_bootstrapping()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
149 // just clear everything
a61af66fc99e Initial load
duke
parents:
diff changeset
150 for (int i = 0; i < _length; i++) table()[i].clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
151 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 int super_vtable_len = initialize_from_super(super);
a61af66fc99e Initial load
duke
parents:
diff changeset
155 if (klass()->oop_is_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
156 assert(super_vtable_len == _length, "arrays shouldn't introduce new methods");
a61af66fc99e Initial load
duke
parents:
diff changeset
157 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
158 assert(_klass->oop_is_instance(), "must be instanceKlass");
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 objArrayHandle methods(THREAD, ik()->methods());
a61af66fc99e Initial load
duke
parents:
diff changeset
161 int len = methods()->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
162 int initialized = super_vtable_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
163
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
164 // update_inherited_vtable can stop for gc - ensure using handles
0
a61af66fc99e Initial load
duke
parents:
diff changeset
165 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
166 HandleMark hm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
167 assert(methods()->obj_at(i)->is_method(), "must be a methodOop");
a61af66fc99e Initial load
duke
parents:
diff changeset
168 methodHandle mh(THREAD, (methodOop)methods()->obj_at(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
169
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
170 bool needs_new_entry = update_inherited_vtable(ik(), mh, super_vtable_len, checkconstraints, CHECK);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
171
a61af66fc99e Initial load
duke
parents:
diff changeset
172 if (needs_new_entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
173 put_method_at(mh(), initialized);
a61af66fc99e Initial load
duke
parents:
diff changeset
174 mh()->set_vtable_index(initialized); // set primary vtable index
a61af66fc99e Initial load
duke
parents:
diff changeset
175 initialized++;
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177 }
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // add miranda methods; it will also update the value of initialized
a61af66fc99e Initial load
duke
parents:
diff changeset
180 fill_in_mirandas(initialized);
a61af66fc99e Initial load
duke
parents:
diff changeset
181
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
182 // In class hierarchies where the accessibility is not increasing (i.e., going from private ->
0
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // package_private -> publicprotected), the vtable might actually be smaller than our initial
a61af66fc99e Initial load
duke
parents:
diff changeset
184 // calculation.
a61af66fc99e Initial load
duke
parents:
diff changeset
185 assert(initialized <= _length, "vtable initialization failed");
a61af66fc99e Initial load
duke
parents:
diff changeset
186 for(;initialized < _length; initialized++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
187 put_method_at(NULL, initialized);
a61af66fc99e Initial load
duke
parents:
diff changeset
188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
189 NOT_PRODUCT(verify(tty, true));
a61af66fc99e Initial load
duke
parents:
diff changeset
190 }
a61af66fc99e Initial load
duke
parents:
diff changeset
191 }
a61af66fc99e Initial load
duke
parents:
diff changeset
192
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
193 // Called for cases where a method does not override its superclass' vtable entry
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
194 // For bytecodes not produced by javac together it is possible that a method does not override
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
195 // the superclass's method, but might indirectly override a super-super class's vtable entry
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
196 // If none found, return a null superk, else return the superk of the method this does override
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
197 instanceKlass* klassVtable::find_transitive_override(instanceKlass* initialsuper, methodHandle target_method,
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
198 int vtable_index, Handle target_loader, symbolHandle target_classname, Thread * THREAD) {
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
199 instanceKlass* superk = initialsuper;
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
200 while (superk != NULL && superk->super() != NULL) {
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
201 instanceKlass* supersuperklass = instanceKlass::cast(superk->super());
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
202 klassVtable* ssVtable = supersuperklass->vtable();
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
203 if (vtable_index < ssVtable->length()) {
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
204 methodOop super_method = ssVtable->method_at(vtable_index);
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
205 #ifndef PRODUCT
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
206 symbolHandle name(THREAD,target_method()->name());
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
207 symbolHandle signature(THREAD,target_method()->signature());
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
208 assert(super_method->name() == name() && super_method->signature() == signature(), "vtable entry name/sig mismatch");
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
209 #endif
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
210 if (supersuperklass->is_override(super_method, target_loader, target_classname, THREAD)) {
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
211 #ifndef PRODUCT
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
212 if (PrintVtables && Verbose) {
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
213 ResourceMark rm(THREAD);
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
214 tty->print("transitive overriding superclass %s with %s::%s index %d, original flags: ",
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
215 supersuperklass->internal_name(),
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
216 _klass->internal_name(), (target_method() != NULL) ?
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
217 target_method()->name()->as_C_string() : "<NULL>", vtable_index);
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
218 super_method->access_flags().print_on(tty);
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
219 tty->print("overriders flags: ");
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
220 target_method->access_flags().print_on(tty);
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
221 tty->cr();
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
222 }
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
223 #endif /*PRODUCT*/
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
224 break; // return found superk
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
225 }
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
226 } else {
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
227 // super class has no vtable entry here, stop transitive search
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
228 superk = (instanceKlass*)NULL;
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
229 break;
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
230 }
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
231 // if no override found yet, continue to search up
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
232 superk = instanceKlass::cast(superk->super());
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
233 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
234
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
235 return superk;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
236 }
a61af66fc99e Initial load
duke
parents:
diff changeset
237
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239 // Update child's copy of super vtable for overrides
a61af66fc99e Initial load
duke
parents:
diff changeset
240 // OR return true if a new vtable entry is required
a61af66fc99e Initial load
duke
parents:
diff changeset
241 // Only called for instanceKlass's, i.e. not for arrays
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // If that changed, could not use _klass as handle for klass
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
243 bool klassVtable::update_inherited_vtable(instanceKlass* klass, methodHandle target_method, int super_vtable_len,
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
244 bool checkconstraints, TRAPS) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
245 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
246 bool allocate_new = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
247 assert(klass->oop_is_instance(), "must be instanceKlass");
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249 // Initialize the method's vtable index to "nonvirtual".
a61af66fc99e Initial load
duke
parents:
diff changeset
250 // If we allocate a vtable entry, we will update it to a non-negative number.
a61af66fc99e Initial load
duke
parents:
diff changeset
251 target_method()->set_vtable_index(methodOopDesc::nonvirtual_vtable_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
252
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // Static and <init> methods are never in
a61af66fc99e Initial load
duke
parents:
diff changeset
254 if (target_method()->is_static() || target_method()->name() == vmSymbols::object_initializer_name()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
255 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
256 }
a61af66fc99e Initial load
duke
parents:
diff changeset
257
a61af66fc99e Initial load
duke
parents:
diff changeset
258 if (klass->is_final() || target_method()->is_final()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // a final method never needs a new entry; final methods can be statically
a61af66fc99e Initial load
duke
parents:
diff changeset
260 // resolved and they have to be present in the vtable only if they override
a61af66fc99e Initial load
duke
parents:
diff changeset
261 // a super's method, in which case they re-use its entry
a61af66fc99e Initial load
duke
parents:
diff changeset
262 allocate_new = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
263 }
a61af66fc99e Initial load
duke
parents:
diff changeset
264
a61af66fc99e Initial load
duke
parents:
diff changeset
265 // we need a new entry if there is no superclass
a61af66fc99e Initial load
duke
parents:
diff changeset
266 if (klass->super() == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
267 return allocate_new;
a61af66fc99e Initial load
duke
parents:
diff changeset
268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
269
a61af66fc99e Initial load
duke
parents:
diff changeset
270 // private methods always have a new entry in the vtable
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
271 // specification interpretation since classic has
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
272 // private methods not overriding
0
a61af66fc99e Initial load
duke
parents:
diff changeset
273 if (target_method()->is_private()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
274 return allocate_new;
a61af66fc99e Initial load
duke
parents:
diff changeset
275 }
a61af66fc99e Initial load
duke
parents:
diff changeset
276
a61af66fc99e Initial load
duke
parents:
diff changeset
277 // search through the vtable and update overridden entries
a61af66fc99e Initial load
duke
parents:
diff changeset
278 // Since check_signature_loaders acquires SystemDictionary_lock
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
279 // which can block for gc, once we are in this loop, use handles
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
280 // For classfiles built with >= jdk7, we now look for transitive overrides
0
a61af66fc99e Initial load
duke
parents:
diff changeset
281
a61af66fc99e Initial load
duke
parents:
diff changeset
282 symbolHandle name(THREAD,target_method()->name());
a61af66fc99e Initial load
duke
parents:
diff changeset
283 symbolHandle signature(THREAD,target_method()->signature());
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
284 Handle target_loader(THREAD, _klass->class_loader());
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
285 symbolHandle target_classname(THREAD, _klass->name());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
286 for(int i = 0; i < super_vtable_len; i++) {
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
287 methodOop super_method = method_at(i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
288 // Check if method name matches
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
289 if (super_method->name() == name() && super_method->signature() == signature()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
290
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
291 // get super_klass for method_holder for the found method
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
292 instanceKlass* super_klass = instanceKlass::cast(super_method->method_holder());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
293
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
294 if ((super_klass->is_override(super_method, target_loader, target_classname, THREAD)) ||
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
295 ((klass->major_version() >= VTABLE_TRANSITIVE_OVERRIDE_VERSION)
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
296 && ((super_klass = find_transitive_override(super_klass, target_method, i, target_loader,
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
297 target_classname, THREAD)) != (instanceKlass*)NULL))) {
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
298 // overriding, so no new entry
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
299 allocate_new = false;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
300
a61af66fc99e Initial load
duke
parents:
diff changeset
301 if (checkconstraints) {
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // Override vtable entry if passes loader constraint check
a61af66fc99e Initial load
duke
parents:
diff changeset
303 // if loader constraint checking requested
a61af66fc99e Initial load
duke
parents:
diff changeset
304 // No need to visit his super, since he and his super
a61af66fc99e Initial load
duke
parents:
diff changeset
305 // have already made any needed loader constraints.
a61af66fc99e Initial load
duke
parents:
diff changeset
306 // Since loader constraints are transitive, it is enough
a61af66fc99e Initial load
duke
parents:
diff changeset
307 // to link to the first super, and we get all the others.
a61af66fc99e Initial load
duke
parents:
diff changeset
308 Handle super_loader(THREAD, super_klass->class_loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
309
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
310 if (target_loader() != super_loader()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
311 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
312 char* failed_type_name =
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
313 SystemDictionary::check_signature_loaders(signature, target_loader,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
314 super_loader, true,
a61af66fc99e Initial load
duke
parents:
diff changeset
315 CHECK_(false));
a61af66fc99e Initial load
duke
parents:
diff changeset
316 if (failed_type_name != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
317 const char* msg = "loader constraint violation: when resolving "
a61af66fc99e Initial load
duke
parents:
diff changeset
318 "overridden method \"%s\" the class loader (instance"
a61af66fc99e Initial load
duke
parents:
diff changeset
319 " of %s) of the current class, %s, and its superclass loader "
a61af66fc99e Initial load
duke
parents:
diff changeset
320 "(instance of %s), have different Class objects for the type "
a61af66fc99e Initial load
duke
parents:
diff changeset
321 "%s used in the signature";
a61af66fc99e Initial load
duke
parents:
diff changeset
322 char* sig = target_method()->name_and_sig_as_C_string();
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
323 const char* loader1 = SystemDictionary::loader_name(target_loader());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
324 char* current = _klass->name()->as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
325 const char* loader2 = SystemDictionary::loader_name(super_loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
326 size_t buflen = strlen(msg) + strlen(sig) + strlen(loader1) +
a61af66fc99e Initial load
duke
parents:
diff changeset
327 strlen(current) + strlen(loader2) + strlen(failed_type_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
328 char* buf = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, buflen);
a61af66fc99e Initial load
duke
parents:
diff changeset
329 jio_snprintf(buf, buflen, msg, sig, loader1, current, loader2,
a61af66fc99e Initial load
duke
parents:
diff changeset
330 failed_type_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
331 THROW_MSG_(vmSymbols::java_lang_LinkageError(), buf, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
332 }
a61af66fc99e Initial load
duke
parents:
diff changeset
333 }
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
334 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
335
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
336 put_method_at(target_method(), i);
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
337 target_method()->set_vtable_index(i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
338 #ifndef PRODUCT
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
339 if (PrintVtables && Verbose) {
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
340 tty->print("overriding with %s::%s index %d, original flags: ",
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
341 _klass->internal_name(), (target_method() != NULL) ?
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
342 target_method()->name()->as_C_string() : "<NULL>", i);
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
343 super_method->access_flags().print_on(tty);
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
344 tty->print("overriders flags: ");
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
345 target_method->access_flags().print_on(tty);
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
346 tty->cr();
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
347 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
348 #endif /*PRODUCT*/
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
349 } else {
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
350 // allocate_new = true; default. We might override one entry,
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
351 // but not override another. Once we override one, not need new
0
a61af66fc99e Initial load
duke
parents:
diff changeset
352 #ifndef PRODUCT
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
353 if (PrintVtables && Verbose) {
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
354 tty->print("NOT overriding with %s::%s index %d, original flags: ",
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
355 _klass->internal_name(), (target_method() != NULL) ?
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
356 target_method()->name()->as_C_string() : "<NULL>", i);
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
357 super_method->access_flags().print_on(tty);
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
358 tty->print("overriders flags: ");
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
359 target_method->access_flags().print_on(tty);
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
360 tty->cr();
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
361 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
362 #endif /*PRODUCT*/
a61af66fc99e Initial load
duke
parents:
diff changeset
363 }
a61af66fc99e Initial load
duke
parents:
diff changeset
364 }
a61af66fc99e Initial load
duke
parents:
diff changeset
365 }
a61af66fc99e Initial load
duke
parents:
diff changeset
366 return allocate_new;
a61af66fc99e Initial load
duke
parents:
diff changeset
367 }
a61af66fc99e Initial load
duke
parents:
diff changeset
368
a61af66fc99e Initial load
duke
parents:
diff changeset
369 void klassVtable::put_method_at(methodOop m, int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
370 assert(m->is_oop_or_null(), "Not an oop or null");
a61af66fc99e Initial load
duke
parents:
diff changeset
371 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
372 if (PrintVtables && Verbose) {
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
373 ResourceMark rm;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
374 tty->print_cr("adding %s::%s at index %d", _klass->internal_name(),
a61af66fc99e Initial load
duke
parents:
diff changeset
375 (m != NULL) ? m->name()->as_C_string() : "<NULL>", index);
a61af66fc99e Initial load
duke
parents:
diff changeset
376 }
a61af66fc99e Initial load
duke
parents:
diff changeset
377 assert(unchecked_method_at(index)->is_oop_or_null(), "Not an oop or null");
a61af66fc99e Initial load
duke
parents:
diff changeset
378 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
379 table()[index].set(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
380 }
a61af66fc99e Initial load
duke
parents:
diff changeset
381
a61af66fc99e Initial load
duke
parents:
diff changeset
382 // Find out if a method "m" with superclass "super", loader "classloader" and
a61af66fc99e Initial load
duke
parents:
diff changeset
383 // name "classname" needs a new vtable entry. Let P be a class package defined
a61af66fc99e Initial load
duke
parents:
diff changeset
384 // by "classloader" and "classname".
a61af66fc99e Initial load
duke
parents:
diff changeset
385 // NOTE: The logic used here is very similar to the one used for computing
a61af66fc99e Initial load
duke
parents:
diff changeset
386 // the vtables indices for a method. We cannot directly use that function because,
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
387 // we allocate the instanceKlass at load time, and that requires that the
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
388 // superclass has been loaded.
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
389 // However, the vtable entries are filled in at link time, and therefore
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
390 // the superclass' vtable may not yet have been filled in.
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
391 bool klassVtable::needs_new_vtable_entry(methodHandle target_method,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
392 klassOop super,
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
393 Handle classloader,
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
394 symbolHandle classname,
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
395 AccessFlags class_flags,
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
396 TRAPS) {
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
397 if ((class_flags.is_final() || target_method()->is_final()) ||
0
a61af66fc99e Initial load
duke
parents:
diff changeset
398 // a final method never needs a new entry; final methods can be statically
a61af66fc99e Initial load
duke
parents:
diff changeset
399 // resolved and they have to be present in the vtable only if they override
a61af66fc99e Initial load
duke
parents:
diff changeset
400 // a super's method, in which case they re-use its entry
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
401 (target_method()->is_static()) ||
0
a61af66fc99e Initial load
duke
parents:
diff changeset
402 // static methods don't need to be in vtable
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
403 (target_method()->name() == vmSymbols::object_initializer_name())
0
a61af66fc99e Initial load
duke
parents:
diff changeset
404 // <init> is never called dynamically-bound
a61af66fc99e Initial load
duke
parents:
diff changeset
405 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
406 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
407 }
a61af66fc99e Initial load
duke
parents:
diff changeset
408
a61af66fc99e Initial load
duke
parents:
diff changeset
409 // we need a new entry if there is no superclass
a61af66fc99e Initial load
duke
parents:
diff changeset
410 if (super == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
411 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
412 }
a61af66fc99e Initial load
duke
parents:
diff changeset
413
a61af66fc99e Initial load
duke
parents:
diff changeset
414 // private methods always have a new entry in the vtable
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
415 // specification interpretation since classic has
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
416 // private methods not overriding
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
417 if (target_method()->is_private()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
418 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
419 }
a61af66fc99e Initial load
duke
parents:
diff changeset
420
a61af66fc99e Initial load
duke
parents:
diff changeset
421 // search through the super class hierarchy to see if we need
a61af66fc99e Initial load
duke
parents:
diff changeset
422 // a new entry
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
423 ResourceMark rm;
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
424 symbolOop name = target_method()->name();
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
425 symbolOop signature = target_method()->signature();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
426 klassOop k = super;
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
427 methodOop super_method = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
428 instanceKlass *holder = NULL;
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
429 methodOop recheck_method = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
430 while (k != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
431 // lookup through the hierarchy for a method with matching name and sign.
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
432 super_method = instanceKlass::cast(k)->lookup_method(name, signature);
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
433 if (super_method == NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
434 break; // we still have to search for a matching miranda method
a61af66fc99e Initial load
duke
parents:
diff changeset
435 }
a61af66fc99e Initial load
duke
parents:
diff changeset
436 // get the class holding the matching method
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
437 // make sure you use that class for is_override
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
438 instanceKlass* superk = instanceKlass::cast(super_method->method_holder());
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
439 // we want only instance method matches
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
440 // pretend private methods are not in the super vtable
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
441 // since we do override around them: e.g. a.m pub/b.m private/c.m pub,
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
442 // ignore private, c.m pub does override a.m pub
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
443 // For classes that were not javac'd together, we also do transitive overriding around
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
444 // methods that have less accessibility
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
445 if ((!super_method->is_static()) &&
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
446 (!super_method->is_private())) {
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
447 if (superk->is_override(super_method, classloader, classname, THREAD)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
448 return false;
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
449 // else keep looking for transitive overrides
0
a61af66fc99e Initial load
duke
parents:
diff changeset
450 }
a61af66fc99e Initial load
duke
parents:
diff changeset
451 }
a61af66fc99e Initial load
duke
parents:
diff changeset
452
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
453 // Start with lookup result and continue to search up
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
454 k = superk->super(); // haven't found an override match yet; continue to look
0
a61af66fc99e Initial load
duke
parents:
diff changeset
455 }
a61af66fc99e Initial load
duke
parents:
diff changeset
456
a61af66fc99e Initial load
duke
parents:
diff changeset
457 // if the target method is public or protected it may have a matching
a61af66fc99e Initial load
duke
parents:
diff changeset
458 // miranda method in the super, whose entry it should re-use.
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
459 // Actually, to handle cases that javac would not generate, we need
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
460 // this check for all access permissions.
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
461 instanceKlass *sk = instanceKlass::cast(super);
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
462 if (sk->has_miranda_methods()) {
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
463 if (sk->lookup_method_in_all_interfaces(name, signature) != NULL) {
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
464 return false; // found a matching miranda; we do not need a new entry
0
a61af66fc99e Initial load
duke
parents:
diff changeset
465 }
a61af66fc99e Initial load
duke
parents:
diff changeset
466 }
a61af66fc99e Initial load
duke
parents:
diff changeset
467 return true; // found no match; we need a new entry
a61af66fc99e Initial load
duke
parents:
diff changeset
468 }
a61af66fc99e Initial load
duke
parents:
diff changeset
469
a61af66fc99e Initial load
duke
parents:
diff changeset
470 // Support for miranda methods
a61af66fc99e Initial load
duke
parents:
diff changeset
471
a61af66fc99e Initial load
duke
parents:
diff changeset
472 // get the vtable index of a miranda method with matching "name" and "signature"
a61af66fc99e Initial load
duke
parents:
diff changeset
473 int klassVtable::index_of_miranda(symbolOop name, symbolOop signature) {
a61af66fc99e Initial load
duke
parents:
diff changeset
474 // search from the bottom, might be faster
a61af66fc99e Initial load
duke
parents:
diff changeset
475 for (int i = (length() - 1); i >= 0; i--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
476 methodOop m = table()[i].method();
a61af66fc99e Initial load
duke
parents:
diff changeset
477 if (is_miranda_entry_at(i) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
478 m->name() == name && m->signature() == signature) {
a61af66fc99e Initial load
duke
parents:
diff changeset
479 return i;
a61af66fc99e Initial load
duke
parents:
diff changeset
480 }
a61af66fc99e Initial load
duke
parents:
diff changeset
481 }
a61af66fc99e Initial load
duke
parents:
diff changeset
482 return methodOopDesc::invalid_vtable_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
483 }
a61af66fc99e Initial load
duke
parents:
diff changeset
484
a61af66fc99e Initial load
duke
parents:
diff changeset
485 // check if an entry is miranda
a61af66fc99e Initial load
duke
parents:
diff changeset
486 bool klassVtable::is_miranda_entry_at(int i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
487 methodOop m = method_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
488 klassOop method_holder = m->method_holder();
a61af66fc99e Initial load
duke
parents:
diff changeset
489 instanceKlass *mhk = instanceKlass::cast(method_holder);
a61af66fc99e Initial load
duke
parents:
diff changeset
490
a61af66fc99e Initial load
duke
parents:
diff changeset
491 // miranda methods are interface methods in a class's vtable
a61af66fc99e Initial load
duke
parents:
diff changeset
492 if (mhk->is_interface()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
493 assert(m->is_public() && m->is_abstract(), "should be public and abstract");
a61af66fc99e Initial load
duke
parents:
diff changeset
494 assert(ik()->implements_interface(method_holder) , "this class should implement the interface");
a61af66fc99e Initial load
duke
parents:
diff changeset
495 assert(is_miranda(m, ik()->methods(), ik()->super()), "should be a miranda_method");
a61af66fc99e Initial load
duke
parents:
diff changeset
496 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
497 }
a61af66fc99e Initial load
duke
parents:
diff changeset
498 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
499 }
a61af66fc99e Initial load
duke
parents:
diff changeset
500
a61af66fc99e Initial load
duke
parents:
diff changeset
501 // check if a method is a miranda method, given a class's methods table and it's super
a61af66fc99e Initial load
duke
parents:
diff changeset
502 // the caller must make sure that the method belongs to an interface implemented by the class
a61af66fc99e Initial load
duke
parents:
diff changeset
503 bool klassVtable::is_miranda(methodOop m, objArrayOop class_methods, klassOop super) {
a61af66fc99e Initial load
duke
parents:
diff changeset
504 symbolOop name = m->name();
a61af66fc99e Initial load
duke
parents:
diff changeset
505 symbolOop signature = m->signature();
a61af66fc99e Initial load
duke
parents:
diff changeset
506 if (instanceKlass::find_method(class_methods, name, signature) == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
507 // did not find it in the method table of the current class
a61af66fc99e Initial load
duke
parents:
diff changeset
508 if (super == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
509 // super doesn't exist
a61af66fc99e Initial load
duke
parents:
diff changeset
510 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
511 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
512 if (instanceKlass::cast(super)->lookup_method(name, signature) == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
513 // super class hierarchy does not implement it
a61af66fc99e Initial load
duke
parents:
diff changeset
514 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
515 }
a61af66fc99e Initial load
duke
parents:
diff changeset
516 }
a61af66fc99e Initial load
duke
parents:
diff changeset
517 }
a61af66fc99e Initial load
duke
parents:
diff changeset
518 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
519 }
a61af66fc99e Initial load
duke
parents:
diff changeset
520
a61af66fc99e Initial load
duke
parents:
diff changeset
521 void klassVtable::add_new_mirandas_to_list(GrowableArray<methodOop>* list_of_current_mirandas,
a61af66fc99e Initial load
duke
parents:
diff changeset
522 objArrayOop current_interface_methods,
a61af66fc99e Initial load
duke
parents:
diff changeset
523 objArrayOop class_methods,
a61af66fc99e Initial load
duke
parents:
diff changeset
524 klassOop super) {
a61af66fc99e Initial load
duke
parents:
diff changeset
525 // iterate thru the current interface's method to see if it a miranda
a61af66fc99e Initial load
duke
parents:
diff changeset
526 int num_methods = current_interface_methods->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
527 for (int i = 0; i < num_methods; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
528 methodOop im = methodOop(current_interface_methods->obj_at(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
529 bool is_duplicate = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
530 int num_of_current_mirandas = list_of_current_mirandas->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
531 // check for duplicate mirandas in different interfaces we implement
a61af66fc99e Initial load
duke
parents:
diff changeset
532 for (int j = 0; j < num_of_current_mirandas; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
533 methodOop miranda = list_of_current_mirandas->at(j);
a61af66fc99e Initial load
duke
parents:
diff changeset
534 if ((im->name() == miranda->name()) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
535 (im->signature() == miranda->signature())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
536 is_duplicate = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
537 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
538 }
a61af66fc99e Initial load
duke
parents:
diff changeset
539 }
a61af66fc99e Initial load
duke
parents:
diff changeset
540
a61af66fc99e Initial load
duke
parents:
diff changeset
541 if (!is_duplicate) { // we don't want duplicate miranda entries in the vtable
a61af66fc99e Initial load
duke
parents:
diff changeset
542 if (is_miranda(im, class_methods, super)) { // is it a miranda at all?
a61af66fc99e Initial load
duke
parents:
diff changeset
543 instanceKlass *sk = instanceKlass::cast(super);
a61af66fc99e Initial load
duke
parents:
diff changeset
544 // check if it is a duplicate of a super's miranda
a61af66fc99e Initial load
duke
parents:
diff changeset
545 if (sk->lookup_method_in_all_interfaces(im->name(), im->signature()) == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
546 list_of_current_mirandas->append(im);
a61af66fc99e Initial load
duke
parents:
diff changeset
547 }
a61af66fc99e Initial load
duke
parents:
diff changeset
548 }
a61af66fc99e Initial load
duke
parents:
diff changeset
549 }
a61af66fc99e Initial load
duke
parents:
diff changeset
550 }
a61af66fc99e Initial load
duke
parents:
diff changeset
551 }
a61af66fc99e Initial load
duke
parents:
diff changeset
552
a61af66fc99e Initial load
duke
parents:
diff changeset
553 void klassVtable::get_mirandas(GrowableArray<methodOop>* mirandas,
a61af66fc99e Initial load
duke
parents:
diff changeset
554 klassOop super, objArrayOop class_methods,
a61af66fc99e Initial load
duke
parents:
diff changeset
555 objArrayOop local_interfaces) {
a61af66fc99e Initial load
duke
parents:
diff changeset
556 assert((mirandas->length() == 0) , "current mirandas must be 0");
a61af66fc99e Initial load
duke
parents:
diff changeset
557
a61af66fc99e Initial load
duke
parents:
diff changeset
558 // iterate thru the local interfaces looking for a miranda
a61af66fc99e Initial load
duke
parents:
diff changeset
559 int num_local_ifs = local_interfaces->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
560 for (int i = 0; i < num_local_ifs; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
561 instanceKlass *ik = instanceKlass::cast(klassOop(local_interfaces->obj_at(i)));
a61af66fc99e Initial load
duke
parents:
diff changeset
562 add_new_mirandas_to_list(mirandas, ik->methods(), class_methods, super);
a61af66fc99e Initial load
duke
parents:
diff changeset
563 // iterate thru each local's super interfaces
a61af66fc99e Initial load
duke
parents:
diff changeset
564 objArrayOop super_ifs = ik->transitive_interfaces();
a61af66fc99e Initial load
duke
parents:
diff changeset
565 int num_super_ifs = super_ifs->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
566 for (int j = 0; j < num_super_ifs; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
567 instanceKlass *sik = instanceKlass::cast(klassOop(super_ifs->obj_at(j)));
a61af66fc99e Initial load
duke
parents:
diff changeset
568 add_new_mirandas_to_list(mirandas, sik->methods(), class_methods, super);
a61af66fc99e Initial load
duke
parents:
diff changeset
569 }
a61af66fc99e Initial load
duke
parents:
diff changeset
570 }
a61af66fc99e Initial load
duke
parents:
diff changeset
571 }
a61af66fc99e Initial load
duke
parents:
diff changeset
572
a61af66fc99e Initial load
duke
parents:
diff changeset
573 // get number of mirandas
a61af66fc99e Initial load
duke
parents:
diff changeset
574 int klassVtable::get_num_mirandas(klassOop super, objArrayOop class_methods, objArrayOop local_interfaces) {
a61af66fc99e Initial load
duke
parents:
diff changeset
575 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
576 GrowableArray<methodOop>* mirandas = new GrowableArray<methodOop>(20);
a61af66fc99e Initial load
duke
parents:
diff changeset
577 get_mirandas(mirandas, super, class_methods, local_interfaces);
a61af66fc99e Initial load
duke
parents:
diff changeset
578 return mirandas->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
579 }
a61af66fc99e Initial load
duke
parents:
diff changeset
580
a61af66fc99e Initial load
duke
parents:
diff changeset
581 // fill in mirandas
a61af66fc99e Initial load
duke
parents:
diff changeset
582 void klassVtable::fill_in_mirandas(int& initialized) {
a61af66fc99e Initial load
duke
parents:
diff changeset
583 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
584 GrowableArray<methodOop>* mirandas = new GrowableArray<methodOop>(20);
a61af66fc99e Initial load
duke
parents:
diff changeset
585 instanceKlass *this_ik = ik();
a61af66fc99e Initial load
duke
parents:
diff changeset
586 get_mirandas(mirandas, this_ik->super(), this_ik->methods(), this_ik->local_interfaces());
a61af66fc99e Initial load
duke
parents:
diff changeset
587 int num_mirandas = mirandas->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
588 for (int i = 0; i < num_mirandas; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
589 put_method_at(mirandas->at(i), initialized);
a61af66fc99e Initial load
duke
parents:
diff changeset
590 initialized++;
a61af66fc99e Initial load
duke
parents:
diff changeset
591 }
a61af66fc99e Initial load
duke
parents:
diff changeset
592 }
a61af66fc99e Initial load
duke
parents:
diff changeset
593
a61af66fc99e Initial load
duke
parents:
diff changeset
594 void klassVtable::copy_vtable_to(vtableEntry* start) {
a61af66fc99e Initial load
duke
parents:
diff changeset
595 Copy::disjoint_words((HeapWord*)table(), (HeapWord*)start, _length * vtableEntry::size());
a61af66fc99e Initial load
duke
parents:
diff changeset
596 }
a61af66fc99e Initial load
duke
parents:
diff changeset
597
a61af66fc99e Initial load
duke
parents:
diff changeset
598 void klassVtable::adjust_method_entries(methodOop* old_methods, methodOop* new_methods,
a61af66fc99e Initial load
duke
parents:
diff changeset
599 int methods_length, bool * trace_name_printed) {
a61af66fc99e Initial load
duke
parents:
diff changeset
600 // search the vtable for uses of either obsolete or EMCP methods
a61af66fc99e Initial load
duke
parents:
diff changeset
601 for (int j = 0; j < methods_length; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
602 methodOop old_method = old_methods[j];
a61af66fc99e Initial load
duke
parents:
diff changeset
603 methodOop new_method = new_methods[j];
a61af66fc99e Initial load
duke
parents:
diff changeset
604
a61af66fc99e Initial load
duke
parents:
diff changeset
605 // In the vast majority of cases we could get the vtable index
a61af66fc99e Initial load
duke
parents:
diff changeset
606 // by using: old_method->vtable_index()
a61af66fc99e Initial load
duke
parents:
diff changeset
607 // However, there are rare cases, eg. sun.awt.X11.XDecoratedPeer.getX()
a61af66fc99e Initial load
duke
parents:
diff changeset
608 // in sun.awt.X11.XFramePeer where methods occur more than once in the
a61af66fc99e Initial load
duke
parents:
diff changeset
609 // vtable, so, alas, we must do an exhaustive search.
a61af66fc99e Initial load
duke
parents:
diff changeset
610 for (int index = 0; index < length(); index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
611 if (unchecked_method_at(index) == old_method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
612 put_method_at(new_method, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
613
a61af66fc99e Initial load
duke
parents:
diff changeset
614 if (RC_TRACE_IN_RANGE(0x00100000, 0x00400000)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
615 if (!(*trace_name_printed)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
616 // RC_TRACE_MESG macro has an embedded ResourceMark
a61af66fc99e Initial load
duke
parents:
diff changeset
617 RC_TRACE_MESG(("adjust: name=%s",
a61af66fc99e Initial load
duke
parents:
diff changeset
618 Klass::cast(old_method->method_holder())->external_name()));
a61af66fc99e Initial load
duke
parents:
diff changeset
619 *trace_name_printed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
620 }
a61af66fc99e Initial load
duke
parents:
diff changeset
621 // RC_TRACE macro has an embedded ResourceMark
a61af66fc99e Initial load
duke
parents:
diff changeset
622 RC_TRACE(0x00100000, ("vtable method update: %s(%s)",
a61af66fc99e Initial load
duke
parents:
diff changeset
623 new_method->name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
624 new_method->signature()->as_C_string()));
a61af66fc99e Initial load
duke
parents:
diff changeset
625 }
a61af66fc99e Initial load
duke
parents:
diff changeset
626 }
a61af66fc99e Initial load
duke
parents:
diff changeset
627 }
a61af66fc99e Initial load
duke
parents:
diff changeset
628 }
a61af66fc99e Initial load
duke
parents:
diff changeset
629 }
a61af66fc99e Initial load
duke
parents:
diff changeset
630
a61af66fc99e Initial load
duke
parents:
diff changeset
631
a61af66fc99e Initial load
duke
parents:
diff changeset
632 // Garbage collection
a61af66fc99e Initial load
duke
parents:
diff changeset
633 void klassVtable::oop_follow_contents() {
a61af66fc99e Initial load
duke
parents:
diff changeset
634 int len = length();
a61af66fc99e Initial load
duke
parents:
diff changeset
635 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
636 MarkSweep::mark_and_push(adr_method_at(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
637 }
a61af66fc99e Initial load
duke
parents:
diff changeset
638 }
a61af66fc99e Initial load
duke
parents:
diff changeset
639
a61af66fc99e Initial load
duke
parents:
diff changeset
640 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
641 void klassVtable::oop_follow_contents(ParCompactionManager* cm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
642 int len = length();
a61af66fc99e Initial load
duke
parents:
diff changeset
643 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
644 PSParallelCompact::mark_and_push(cm, adr_method_at(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
645 }
a61af66fc99e Initial load
duke
parents:
diff changeset
646 }
a61af66fc99e Initial load
duke
parents:
diff changeset
647 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
648
a61af66fc99e Initial load
duke
parents:
diff changeset
649 void klassVtable::oop_adjust_pointers() {
a61af66fc99e Initial load
duke
parents:
diff changeset
650 int len = length();
a61af66fc99e Initial load
duke
parents:
diff changeset
651 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
652 MarkSweep::adjust_pointer(adr_method_at(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
653 }
a61af66fc99e Initial load
duke
parents:
diff changeset
654 }
a61af66fc99e Initial load
duke
parents:
diff changeset
655
a61af66fc99e Initial load
duke
parents:
diff changeset
656 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
657 void klassVtable::oop_update_pointers(ParCompactionManager* cm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
658 const int n = length();
a61af66fc99e Initial load
duke
parents:
diff changeset
659 for (int i = 0; i < n; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
660 PSParallelCompact::adjust_pointer(adr_method_at(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
661 }
a61af66fc99e Initial load
duke
parents:
diff changeset
662 }
a61af66fc99e Initial load
duke
parents:
diff changeset
663
a61af66fc99e Initial load
duke
parents:
diff changeset
664 void klassVtable::oop_update_pointers(ParCompactionManager* cm,
a61af66fc99e Initial load
duke
parents:
diff changeset
665 HeapWord* beg_addr, HeapWord* end_addr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
666 const int n = length();
a61af66fc99e Initial load
duke
parents:
diff changeset
667 const int entry_size = vtableEntry::size();
a61af66fc99e Initial load
duke
parents:
diff changeset
668
a61af66fc99e Initial load
duke
parents:
diff changeset
669 int beg_idx = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
670 HeapWord* const method_0 = (HeapWord*)adr_method_at(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
671 if (beg_addr > method_0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
672 // it's safe to use cast, as we have guarantees on vtable size to be sane
a61af66fc99e Initial load
duke
parents:
diff changeset
673 beg_idx = int((pointer_delta(beg_addr, method_0) + entry_size - 1) / entry_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
674 }
a61af66fc99e Initial load
duke
parents:
diff changeset
675
a61af66fc99e Initial load
duke
parents:
diff changeset
676 oop* const beg_oop = adr_method_at(beg_idx);
a61af66fc99e Initial load
duke
parents:
diff changeset
677 oop* const end_oop = MIN2((oop*)end_addr, adr_method_at(n));
a61af66fc99e Initial load
duke
parents:
diff changeset
678 for (oop* cur_oop = beg_oop; cur_oop < end_oop; cur_oop += entry_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
679 PSParallelCompact::adjust_pointer(cur_oop);
a61af66fc99e Initial load
duke
parents:
diff changeset
680 }
a61af66fc99e Initial load
duke
parents:
diff changeset
681 }
a61af66fc99e Initial load
duke
parents:
diff changeset
682 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
683
a61af66fc99e Initial load
duke
parents:
diff changeset
684 // Iterators
a61af66fc99e Initial load
duke
parents:
diff changeset
685 void klassVtable::oop_oop_iterate(OopClosure* blk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
686 int len = length();
a61af66fc99e Initial load
duke
parents:
diff changeset
687 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
688 blk->do_oop(adr_method_at(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
689 }
a61af66fc99e Initial load
duke
parents:
diff changeset
690 }
a61af66fc99e Initial load
duke
parents:
diff changeset
691
a61af66fc99e Initial load
duke
parents:
diff changeset
692 void klassVtable::oop_oop_iterate_m(OopClosure* blk, MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
693 int len = length();
a61af66fc99e Initial load
duke
parents:
diff changeset
694 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
695 for (i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
696 if ((HeapWord*)adr_method_at(i) >= mr.start()) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
697 }
a61af66fc99e Initial load
duke
parents:
diff changeset
698 for (; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
699 oop* adr = adr_method_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
700 if ((HeapWord*)adr < mr.end()) blk->do_oop(adr);
a61af66fc99e Initial load
duke
parents:
diff changeset
701 }
a61af66fc99e Initial load
duke
parents:
diff changeset
702 }
a61af66fc99e Initial load
duke
parents:
diff changeset
703
a61af66fc99e Initial load
duke
parents:
diff changeset
704 //-----------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
705 // Itable code
a61af66fc99e Initial load
duke
parents:
diff changeset
706
a61af66fc99e Initial load
duke
parents:
diff changeset
707 // Initialize a itableMethodEntry
a61af66fc99e Initial load
duke
parents:
diff changeset
708 void itableMethodEntry::initialize(methodOop m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
709 if (m == NULL) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
710
a61af66fc99e Initial load
duke
parents:
diff changeset
711 _method = m;
a61af66fc99e Initial load
duke
parents:
diff changeset
712 }
a61af66fc99e Initial load
duke
parents:
diff changeset
713
a61af66fc99e Initial load
duke
parents:
diff changeset
714 klassItable::klassItable(instanceKlassHandle klass) {
a61af66fc99e Initial load
duke
parents:
diff changeset
715 _klass = klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
716
a61af66fc99e Initial load
duke
parents:
diff changeset
717 if (klass->itable_length() > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
718 itableOffsetEntry* offset_entry = (itableOffsetEntry*)klass->start_of_itable();
a61af66fc99e Initial load
duke
parents:
diff changeset
719 if (offset_entry != NULL && offset_entry->interface_klass() != NULL) { // Check that itable is initialized
a61af66fc99e Initial load
duke
parents:
diff changeset
720 // First offset entry points to the first method_entry
a61af66fc99e Initial load
duke
parents:
diff changeset
721 intptr_t* method_entry = (intptr_t *)(((address)klass->as_klassOop()) + offset_entry->offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
722 intptr_t* end = klass->end_of_itable();
a61af66fc99e Initial load
duke
parents:
diff changeset
723
a61af66fc99e Initial load
duke
parents:
diff changeset
724 _table_offset = (intptr_t*)offset_entry - (intptr_t*)klass->as_klassOop();
a61af66fc99e Initial load
duke
parents:
diff changeset
725 _size_offset_table = (method_entry - ((intptr_t*)offset_entry)) / itableOffsetEntry::size();
a61af66fc99e Initial load
duke
parents:
diff changeset
726 _size_method_table = (end - method_entry) / itableMethodEntry::size();
a61af66fc99e Initial load
duke
parents:
diff changeset
727 assert(_table_offset >= 0 && _size_offset_table >= 0 && _size_method_table >= 0, "wrong computation");
a61af66fc99e Initial load
duke
parents:
diff changeset
728 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
729 }
a61af66fc99e Initial load
duke
parents:
diff changeset
730 }
a61af66fc99e Initial load
duke
parents:
diff changeset
731
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
732 // The length of the itable was either zero, or it has not yet been initialized.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
733 _table_offset = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
734 _size_offset_table = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
735 _size_method_table = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
736 }
a61af66fc99e Initial load
duke
parents:
diff changeset
737
a61af66fc99e Initial load
duke
parents:
diff changeset
738 // Garbage Collection
a61af66fc99e Initial load
duke
parents:
diff changeset
739
a61af66fc99e Initial load
duke
parents:
diff changeset
740 void klassItable::oop_follow_contents() {
a61af66fc99e Initial load
duke
parents:
diff changeset
741 // offset table
a61af66fc99e Initial load
duke
parents:
diff changeset
742 itableOffsetEntry* ioe = offset_entry(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
743 for(int i = 0; i < _size_offset_table; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
744 MarkSweep::mark_and_push((oop*)&ioe->_interface);
a61af66fc99e Initial load
duke
parents:
diff changeset
745 ioe++;
a61af66fc99e Initial load
duke
parents:
diff changeset
746 }
a61af66fc99e Initial load
duke
parents:
diff changeset
747
a61af66fc99e Initial load
duke
parents:
diff changeset
748 // method table
a61af66fc99e Initial load
duke
parents:
diff changeset
749 itableMethodEntry* ime = method_entry(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
750 for(int j = 0; j < _size_method_table; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
751 MarkSweep::mark_and_push((oop*)&ime->_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
752 ime++;
a61af66fc99e Initial load
duke
parents:
diff changeset
753 }
a61af66fc99e Initial load
duke
parents:
diff changeset
754 }
a61af66fc99e Initial load
duke
parents:
diff changeset
755
a61af66fc99e Initial load
duke
parents:
diff changeset
756 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
757 void klassItable::oop_follow_contents(ParCompactionManager* cm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
758 // offset table
a61af66fc99e Initial load
duke
parents:
diff changeset
759 itableOffsetEntry* ioe = offset_entry(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
760 for(int i = 0; i < _size_offset_table; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
761 PSParallelCompact::mark_and_push(cm, (oop*)&ioe->_interface);
a61af66fc99e Initial load
duke
parents:
diff changeset
762 ioe++;
a61af66fc99e Initial load
duke
parents:
diff changeset
763 }
a61af66fc99e Initial load
duke
parents:
diff changeset
764
a61af66fc99e Initial load
duke
parents:
diff changeset
765 // method table
a61af66fc99e Initial load
duke
parents:
diff changeset
766 itableMethodEntry* ime = method_entry(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
767 for(int j = 0; j < _size_method_table; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
768 PSParallelCompact::mark_and_push(cm, (oop*)&ime->_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
769 ime++;
a61af66fc99e Initial load
duke
parents:
diff changeset
770 }
a61af66fc99e Initial load
duke
parents:
diff changeset
771 }
a61af66fc99e Initial load
duke
parents:
diff changeset
772 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
773
a61af66fc99e Initial load
duke
parents:
diff changeset
774 void klassItable::oop_adjust_pointers() {
a61af66fc99e Initial load
duke
parents:
diff changeset
775 // offset table
a61af66fc99e Initial load
duke
parents:
diff changeset
776 itableOffsetEntry* ioe = offset_entry(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
777 for(int i = 0; i < _size_offset_table; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
778 MarkSweep::adjust_pointer((oop*)&ioe->_interface);
a61af66fc99e Initial load
duke
parents:
diff changeset
779 ioe++;
a61af66fc99e Initial load
duke
parents:
diff changeset
780 }
a61af66fc99e Initial load
duke
parents:
diff changeset
781
a61af66fc99e Initial load
duke
parents:
diff changeset
782 // method table
a61af66fc99e Initial load
duke
parents:
diff changeset
783 itableMethodEntry* ime = method_entry(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
784 for(int j = 0; j < _size_method_table; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
785 MarkSweep::adjust_pointer((oop*)&ime->_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
786 ime++;
a61af66fc99e Initial load
duke
parents:
diff changeset
787 }
a61af66fc99e Initial load
duke
parents:
diff changeset
788 }
a61af66fc99e Initial load
duke
parents:
diff changeset
789
a61af66fc99e Initial load
duke
parents:
diff changeset
790 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
791 void klassItable::oop_update_pointers(ParCompactionManager* cm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
792 // offset table
a61af66fc99e Initial load
duke
parents:
diff changeset
793 itableOffsetEntry* ioe = offset_entry(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
794 for(int i = 0; i < _size_offset_table; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
795 PSParallelCompact::adjust_pointer((oop*)&ioe->_interface);
a61af66fc99e Initial load
duke
parents:
diff changeset
796 ioe++;
a61af66fc99e Initial load
duke
parents:
diff changeset
797 }
a61af66fc99e Initial load
duke
parents:
diff changeset
798
a61af66fc99e Initial load
duke
parents:
diff changeset
799 // method table
a61af66fc99e Initial load
duke
parents:
diff changeset
800 itableMethodEntry* ime = method_entry(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
801 for(int j = 0; j < _size_method_table; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
802 PSParallelCompact::adjust_pointer((oop*)&ime->_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
803 ime++;
a61af66fc99e Initial load
duke
parents:
diff changeset
804 }
a61af66fc99e Initial load
duke
parents:
diff changeset
805 }
a61af66fc99e Initial load
duke
parents:
diff changeset
806
a61af66fc99e Initial load
duke
parents:
diff changeset
807 void klassItable::oop_update_pointers(ParCompactionManager* cm,
a61af66fc99e Initial load
duke
parents:
diff changeset
808 HeapWord* beg_addr, HeapWord* end_addr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
809 // offset table
a61af66fc99e Initial load
duke
parents:
diff changeset
810 itableOffsetEntry* ioe = offset_entry(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
811 for(int i = 0; i < _size_offset_table; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
812 oop* p = (oop*)&ioe->_interface;
a61af66fc99e Initial load
duke
parents:
diff changeset
813 PSParallelCompact::adjust_pointer(p, beg_addr, end_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
814 ioe++;
a61af66fc99e Initial load
duke
parents:
diff changeset
815 }
a61af66fc99e Initial load
duke
parents:
diff changeset
816
a61af66fc99e Initial load
duke
parents:
diff changeset
817 // method table
a61af66fc99e Initial load
duke
parents:
diff changeset
818 itableMethodEntry* ime = method_entry(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
819 for(int j = 0; j < _size_method_table; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
820 oop* p = (oop*)&ime->_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
821 PSParallelCompact::adjust_pointer(p, beg_addr, end_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
822 ime++;
a61af66fc99e Initial load
duke
parents:
diff changeset
823 }
a61af66fc99e Initial load
duke
parents:
diff changeset
824 }
a61af66fc99e Initial load
duke
parents:
diff changeset
825 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
826
a61af66fc99e Initial load
duke
parents:
diff changeset
827 // Iterators
a61af66fc99e Initial load
duke
parents:
diff changeset
828 void klassItable::oop_oop_iterate(OopClosure* blk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
829 // offset table
a61af66fc99e Initial load
duke
parents:
diff changeset
830 itableOffsetEntry* ioe = offset_entry(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
831 for(int i = 0; i < _size_offset_table; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
832 blk->do_oop((oop*)&ioe->_interface);
a61af66fc99e Initial load
duke
parents:
diff changeset
833 ioe++;
a61af66fc99e Initial load
duke
parents:
diff changeset
834 }
a61af66fc99e Initial load
duke
parents:
diff changeset
835
a61af66fc99e Initial load
duke
parents:
diff changeset
836 // method table
a61af66fc99e Initial load
duke
parents:
diff changeset
837 itableMethodEntry* ime = method_entry(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
838 for(int j = 0; j < _size_method_table; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
839 blk->do_oop((oop*)&ime->_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
840 ime++;
a61af66fc99e Initial load
duke
parents:
diff changeset
841 }
a61af66fc99e Initial load
duke
parents:
diff changeset
842 }
a61af66fc99e Initial load
duke
parents:
diff changeset
843
a61af66fc99e Initial load
duke
parents:
diff changeset
844 void klassItable::oop_oop_iterate_m(OopClosure* blk, MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
845 // offset table
a61af66fc99e Initial load
duke
parents:
diff changeset
846 itableOffsetEntry* ioe = offset_entry(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
847 for(int i = 0; i < _size_offset_table; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
848 oop* adr = (oop*)&ioe->_interface;
a61af66fc99e Initial load
duke
parents:
diff changeset
849 if (mr.contains(adr)) blk->do_oop(adr);
a61af66fc99e Initial load
duke
parents:
diff changeset
850 ioe++;
a61af66fc99e Initial load
duke
parents:
diff changeset
851 }
a61af66fc99e Initial load
duke
parents:
diff changeset
852
a61af66fc99e Initial load
duke
parents:
diff changeset
853 // method table
a61af66fc99e Initial load
duke
parents:
diff changeset
854 itableMethodEntry* ime = method_entry(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
855 for(int j = 0; j < _size_method_table; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
856 oop* adr = (oop*)&ime->_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
857 if (mr.contains(adr)) blk->do_oop(adr);
a61af66fc99e Initial load
duke
parents:
diff changeset
858 ime++;
a61af66fc99e Initial load
duke
parents:
diff changeset
859 }
a61af66fc99e Initial load
duke
parents:
diff changeset
860 }
a61af66fc99e Initial load
duke
parents:
diff changeset
861
a61af66fc99e Initial load
duke
parents:
diff changeset
862
a61af66fc99e Initial load
duke
parents:
diff changeset
863 static int initialize_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
864
a61af66fc99e Initial load
duke
parents:
diff changeset
865 // Initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
866 void klassItable::initialize_itable(bool checkconstraints, TRAPS) {
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
867 // Cannot be setup doing bootstrapping, interfaces don't have
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
868 // itables, and klass with only ones entry have empty itables
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
869 if (Universe::is_bootstrapping() ||
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
870 _klass->is_interface() ||
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
871 _klass->itable_length() == itableOffsetEntry::size()) return;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
872
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
873 // There's alway an extra itable entry so we can null-terminate it.
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
874 guarantee(size_offset_table() >= 1, "too small");
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
875 int num_interfaces = size_offset_table() - 1;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
876 if (num_interfaces > 0) {
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
877 if (TraceItables) tty->print_cr("%3d: Initializing itables for %s", ++initialize_count,
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
878 _klass->name()->as_C_string());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
879
a61af66fc99e Initial load
duke
parents:
diff changeset
880
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
881 // Iterate through all interfaces
0
a61af66fc99e Initial load
duke
parents:
diff changeset
882 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
883 for(i = 0; i < num_interfaces; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
884 itableOffsetEntry* ioe = offset_entry(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
885 KlassHandle interf_h (THREAD, ioe->interface_klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
886 assert(interf_h() != NULL && ioe->offset() != 0, "bad offset entry in itable");
a61af66fc99e Initial load
duke
parents:
diff changeset
887 initialize_itable_for_interface(ioe->offset(), interf_h, checkconstraints, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
888 }
a61af66fc99e Initial load
duke
parents:
diff changeset
889
a61af66fc99e Initial load
duke
parents:
diff changeset
890 }
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
891 // Check that the last entry is empty
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
892 itableOffsetEntry* ioe = offset_entry(size_offset_table() - 1);
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
893 guarantee(ioe->interface_klass() == NULL && ioe->offset() == 0, "terminator entry missing");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
894 }
a61af66fc99e Initial load
duke
parents:
diff changeset
895
a61af66fc99e Initial load
duke
parents:
diff changeset
896
a61af66fc99e Initial load
duke
parents:
diff changeset
897 void klassItable::initialize_itable_for_interface(int method_table_offset, KlassHandle interf_h, bool checkconstraints, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
898 objArrayHandle methods(THREAD, instanceKlass::cast(interf_h())->methods());
a61af66fc99e Initial load
duke
parents:
diff changeset
899 int nof_methods = methods()->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
900 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
901 KlassHandle klass = _klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
902 assert(nof_methods > 0, "at least one method must exist for interface to be in vtable")
a61af66fc99e Initial load
duke
parents:
diff changeset
903 Handle interface_loader (THREAD, instanceKlass::cast(interf_h())->class_loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
904 int ime_num = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
905
a61af66fc99e Initial load
duke
parents:
diff changeset
906 // Skip first methodOop if it is a class initializer
a61af66fc99e Initial load
duke
parents:
diff changeset
907 int i = ((methodOop)methods()->obj_at(0))->name() != vmSymbols::class_initializer_name() ? 0 : 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
908
a61af66fc99e Initial load
duke
parents:
diff changeset
909 // m, method_name, method_signature, klass reset each loop so they
a61af66fc99e Initial load
duke
parents:
diff changeset
910 // don't need preserving across check_signature_loaders call
a61af66fc99e Initial load
duke
parents:
diff changeset
911 // methods needs a handle in case of gc from check_signature_loaders
a61af66fc99e Initial load
duke
parents:
diff changeset
912 for(; i < nof_methods; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
913 methodOop m = (methodOop)methods()->obj_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
914 symbolOop method_name = m->name();
a61af66fc99e Initial load
duke
parents:
diff changeset
915 symbolOop method_signature = m->signature();
a61af66fc99e Initial load
duke
parents:
diff changeset
916
a61af66fc99e Initial load
duke
parents:
diff changeset
917 // This is same code as in Linkresolver::lookup_instance_method_in_klasses
a61af66fc99e Initial load
duke
parents:
diff changeset
918 methodOop target = klass->uncached_lookup_method(method_name, method_signature);
a61af66fc99e Initial load
duke
parents:
diff changeset
919 while (target != NULL && target->is_static()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
920 // continue with recursive lookup through the superclass
a61af66fc99e Initial load
duke
parents:
diff changeset
921 klassOop super = Klass::cast(target->method_holder())->super();
a61af66fc99e Initial load
duke
parents:
diff changeset
922 target = (super == NULL) ? methodOop(NULL) : Klass::cast(super)->uncached_lookup_method(method_name, method_signature);
a61af66fc99e Initial load
duke
parents:
diff changeset
923 }
a61af66fc99e Initial load
duke
parents:
diff changeset
924 if (target == NULL || !target->is_public() || target->is_abstract()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
925 // Entry do not resolve. Leave it empty
a61af66fc99e Initial load
duke
parents:
diff changeset
926 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
927 // Entry did resolve, check loader constraints before initializing
a61af66fc99e Initial load
duke
parents:
diff changeset
928 // if checkconstraints requested
a61af66fc99e Initial load
duke
parents:
diff changeset
929 methodHandle target_h (THREAD, target); // preserve across gc
a61af66fc99e Initial load
duke
parents:
diff changeset
930 if (checkconstraints) {
a61af66fc99e Initial load
duke
parents:
diff changeset
931 Handle method_holder_loader (THREAD, instanceKlass::cast(target->method_holder())->class_loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
932 if (method_holder_loader() != interface_loader()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
933 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
934 char* failed_type_name =
a61af66fc99e Initial load
duke
parents:
diff changeset
935 SystemDictionary::check_signature_loaders(method_signature,
a61af66fc99e Initial load
duke
parents:
diff changeset
936 method_holder_loader,
a61af66fc99e Initial load
duke
parents:
diff changeset
937 interface_loader,
a61af66fc99e Initial load
duke
parents:
diff changeset
938 true, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
939 if (failed_type_name != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
940 const char* msg = "loader constraint violation in interface "
a61af66fc99e Initial load
duke
parents:
diff changeset
941 "itable initialization: when resolving method \"%s\" the class"
a61af66fc99e Initial load
duke
parents:
diff changeset
942 " loader (instance of %s) of the current class, %s, "
a61af66fc99e Initial load
duke
parents:
diff changeset
943 "and the class loader (instance of %s) for interface "
a61af66fc99e Initial load
duke
parents:
diff changeset
944 "%s have different Class objects for the type %s "
a61af66fc99e Initial load
duke
parents:
diff changeset
945 "used in the signature";
a61af66fc99e Initial load
duke
parents:
diff changeset
946 char* sig = target_h()->name_and_sig_as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
947 const char* loader1 = SystemDictionary::loader_name(method_holder_loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
948 char* current = klass->name()->as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
949 const char* loader2 = SystemDictionary::loader_name(interface_loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
950 char* iface = instanceKlass::cast(interf_h())->name()->as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
951 size_t buflen = strlen(msg) + strlen(sig) + strlen(loader1) +
a61af66fc99e Initial load
duke
parents:
diff changeset
952 strlen(current) + strlen(loader2) + strlen(iface) +
a61af66fc99e Initial load
duke
parents:
diff changeset
953 strlen(failed_type_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
954 char* buf = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, buflen);
a61af66fc99e Initial load
duke
parents:
diff changeset
955 jio_snprintf(buf, buflen, msg, sig, loader1, current, loader2,
a61af66fc99e Initial load
duke
parents:
diff changeset
956 iface, failed_type_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
957 THROW_MSG(vmSymbols::java_lang_LinkageError(), buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
958 }
a61af66fc99e Initial load
duke
parents:
diff changeset
959 }
a61af66fc99e Initial load
duke
parents:
diff changeset
960 }
a61af66fc99e Initial load
duke
parents:
diff changeset
961
a61af66fc99e Initial load
duke
parents:
diff changeset
962 // ime may have moved during GC so recalculate address
a61af66fc99e Initial load
duke
parents:
diff changeset
963 itableOffsetEntry::method_entry(_klass(), method_table_offset)[ime_num].initialize(target_h());
a61af66fc99e Initial load
duke
parents:
diff changeset
964 }
a61af66fc99e Initial load
duke
parents:
diff changeset
965 // Progress to next entry
a61af66fc99e Initial load
duke
parents:
diff changeset
966 ime_num++;
a61af66fc99e Initial load
duke
parents:
diff changeset
967 }
a61af66fc99e Initial load
duke
parents:
diff changeset
968 }
a61af66fc99e Initial load
duke
parents:
diff changeset
969
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
970 // Update entry for specific methodOop
0
a61af66fc99e Initial load
duke
parents:
diff changeset
971 void klassItable::initialize_with_method(methodOop m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
972 itableMethodEntry* ime = method_entry(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
973 for(int i = 0; i < _size_method_table; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
974 if (ime->method() == m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
975 ime->initialize(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
976 }
a61af66fc99e Initial load
duke
parents:
diff changeset
977 ime++;
a61af66fc99e Initial load
duke
parents:
diff changeset
978 }
a61af66fc99e Initial load
duke
parents:
diff changeset
979 }
a61af66fc99e Initial load
duke
parents:
diff changeset
980
a61af66fc99e Initial load
duke
parents:
diff changeset
981 void klassItable::adjust_method_entries(methodOop* old_methods, methodOop* new_methods,
a61af66fc99e Initial load
duke
parents:
diff changeset
982 int methods_length, bool * trace_name_printed) {
a61af66fc99e Initial load
duke
parents:
diff changeset
983 // search the itable for uses of either obsolete or EMCP methods
a61af66fc99e Initial load
duke
parents:
diff changeset
984 for (int j = 0; j < methods_length; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
985 methodOop old_method = old_methods[j];
a61af66fc99e Initial load
duke
parents:
diff changeset
986 methodOop new_method = new_methods[j];
a61af66fc99e Initial load
duke
parents:
diff changeset
987 itableMethodEntry* ime = method_entry(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
988
610
70998f2e05ef 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 196
diff changeset
989 // The itable can describe more than one interface and the same
70998f2e05ef 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 196
diff changeset
990 // method signature can be specified by more than one interface.
70998f2e05ef 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 196
diff changeset
991 // This means we have to do an exhaustive search to find all the
70998f2e05ef 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 196
diff changeset
992 // old_method references.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
993 for (int i = 0; i < _size_method_table; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
994 if (ime->method() == old_method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
995 ime->initialize(new_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
996
a61af66fc99e Initial load
duke
parents:
diff changeset
997 if (RC_TRACE_IN_RANGE(0x00100000, 0x00400000)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
998 if (!(*trace_name_printed)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
999 // RC_TRACE_MESG macro has an embedded ResourceMark
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 RC_TRACE_MESG(("adjust: name=%s",
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 Klass::cast(old_method->method_holder())->external_name()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 *trace_name_printed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 // RC_TRACE macro has an embedded ResourceMark
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 RC_TRACE(0x00200000, ("itable method update: %s(%s)",
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 new_method->name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 new_method->signature()->as_C_string()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 }
652
4aaa9f5e02a8 4766230: Hotspot vtable inconsistencies cause core dumps. 6579515. 6582242.
acorn
parents: 610
diff changeset
1009 break;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 ime++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1015
a61af66fc99e Initial load
duke
parents:
diff changeset
1016
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 // Setup
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 class InterfaceVisiterClosure : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 virtual void doit(klassOop intf, int method_count) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1022
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 // Visit all interfaces with at-least one method (excluding <clinit>)
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 void visit_all_interfaces(objArrayOop transitive_intf, InterfaceVisiterClosure *blk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 // Handle array argument
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 for(int i = 0; i < transitive_intf->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 klassOop intf = (klassOop)transitive_intf->obj_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 assert(Klass::cast(intf)->is_interface(), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
1029
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 // Find no. of methods excluding a <clinit>
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 int method_count = instanceKlass::cast(intf)->methods()->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 if (method_count > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 methodOop m = (methodOop)instanceKlass::cast(intf)->methods()->obj_at(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 assert(m != NULL && m->is_method(), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 if (m->name() == vmSymbols::object_initializer_name()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 method_count--;
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1039
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 // Only count interfaces with at least one method
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 if (method_count > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 blk->doit(intf, method_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1046
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 class CountInterfacesClosure : public InterfaceVisiterClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 int _nof_methods;
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 int _nof_interfaces;
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 CountInterfacesClosure() { _nof_methods = 0; _nof_interfaces = 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1053
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 int nof_methods() const { return _nof_methods; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 int nof_interfaces() const { return _nof_interfaces; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1056
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 void doit(klassOop intf, int method_count) { _nof_methods += method_count; _nof_interfaces++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1059
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 class SetupItableClosure : public InterfaceVisiterClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 itableOffsetEntry* _offset_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 itableMethodEntry* _method_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 address _klass_begin;
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 SetupItableClosure(address klass_begin, itableOffsetEntry* offset_entry, itableMethodEntry* method_entry) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1067 _klass_begin = klass_begin;
a61af66fc99e Initial load
duke
parents:
diff changeset
1068 _offset_entry = offset_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 _method_entry = method_entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
1070 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1071
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 itableMethodEntry* method_entry() const { return _method_entry; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1073
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 void doit(klassOop intf, int method_count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1075 int offset = ((address)_method_entry) - _klass_begin;
a61af66fc99e Initial load
duke
parents:
diff changeset
1076 _offset_entry->initialize(intf, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1077 _offset_entry++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1078 _method_entry += method_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1081
a61af66fc99e Initial load
duke
parents:
diff changeset
1082 int klassItable::compute_itable_size(objArrayHandle transitive_interfaces) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 // Count no of interfaces and total number of interface methods
a61af66fc99e Initial load
duke
parents:
diff changeset
1084 CountInterfacesClosure cic;
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 visit_all_interfaces(transitive_interfaces(), &cic);
a61af66fc99e Initial load
duke
parents:
diff changeset
1086
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
1087 // There's alway an extra itable entry so we can null-terminate it.
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
1088 int itable_size = calc_itable_size(cic.nof_interfaces() + 1, cic.nof_methods());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1089
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 // Statistics
a61af66fc99e Initial load
duke
parents:
diff changeset
1091 update_stats(itable_size * HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
1092
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 return itable_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1095
a61af66fc99e Initial load
duke
parents:
diff changeset
1096
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 // Fill out offset table and interface klasses into the itable space
a61af66fc99e Initial load
duke
parents:
diff changeset
1098 void klassItable::setup_itable_offset_table(instanceKlassHandle klass) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 if (klass->itable_length() == 0) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1100 assert(!klass->is_interface(), "Should have zero length itable");
a61af66fc99e Initial load
duke
parents:
diff changeset
1101
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 // Count no of interfaces and total number of interface methods
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 CountInterfacesClosure cic;
a61af66fc99e Initial load
duke
parents:
diff changeset
1104 visit_all_interfaces(klass->transitive_interfaces(), &cic);
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 int nof_methods = cic.nof_methods();
a61af66fc99e Initial load
duke
parents:
diff changeset
1106 int nof_interfaces = cic.nof_interfaces();
a61af66fc99e Initial load
duke
parents:
diff changeset
1107
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
1108 // Add one extra entry so we can null-terminate the table
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
1109 nof_interfaces++;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1110
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 assert(compute_itable_size(objArrayHandle(klass->transitive_interfaces())) ==
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 calc_itable_size(nof_interfaces, nof_methods),
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 "mismatch calculation of itable size");
a61af66fc99e Initial load
duke
parents:
diff changeset
1114
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 // Fill-out offset table
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 itableOffsetEntry* ioe = (itableOffsetEntry*)klass->start_of_itable();
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 itableMethodEntry* ime = (itableMethodEntry*)(ioe + nof_interfaces);
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 intptr_t* end = klass->end_of_itable();
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
1119 assert((oop*)(ime + nof_methods) <= (oop*)klass->start_of_static_fields(), "wrong offset calculation (1)");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
1120 assert((oop*)(end) == (oop*)(ime + nof_methods), "wrong offset calculation (2)");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1121
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 // Visit all interfaces and initialize itable offset table
a61af66fc99e Initial load
duke
parents:
diff changeset
1123 SetupItableClosure sic((address)klass->as_klassOop(), ioe, ime);
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 visit_all_interfaces(klass->transitive_interfaces(), &sic);
a61af66fc99e Initial load
duke
parents:
diff changeset
1125
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 ime = sic.method_entry();
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 oop* v = (oop*) klass->end_of_itable();
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 assert( (oop*)(ime) == v, "wrong offset calculation (2)");
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1132
a61af66fc99e Initial load
duke
parents:
diff changeset
1133
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 // m must be a method in an interface
a61af66fc99e Initial load
duke
parents:
diff changeset
1135 int klassItable::compute_itable_index(methodOop m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 klassOop intf = m->method_holder();
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 assert(instanceKlass::cast(intf)->is_interface(), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 objArrayOop methods = instanceKlass::cast(intf)->methods();
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 int index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 while(methods->obj_at(index) != m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 index++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 assert(index < methods->length(), "should find index for resolve_invoke");
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 // Adjust for <clinit>, which is left out of table if first method
a61af66fc99e Initial load
duke
parents:
diff changeset
1145 if (methods->length() > 0 && ((methodOop)methods->obj_at(0))->name() == vmSymbols::class_initializer_name()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 index--;
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 return index;
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1150
665
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1151
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1152 // inverse to compute_itable_index
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1153 methodOop klassItable::method_for_itable_index(klassOop intf, int itable_index) {
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1154 assert(instanceKlass::cast(intf)->is_interface(), "sanity check");
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1155 objArrayOop methods = instanceKlass::cast(intf)->methods();
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1156
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1157 int index = itable_index;
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1158 // Adjust for <clinit>, which is left out of table if first method
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1159 if (methods->length() > 0 && ((methodOop)methods->obj_at(0))->name() == vmSymbols::class_initializer_name()) {
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1160 index++;
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1161 }
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1162
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1163 if (itable_index < 0 || index >= methods->length())
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1164 return NULL; // help caller defend against bad indexes
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1165
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1166 methodOop m = (methodOop)methods->obj_at(index);
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1167 assert(compute_itable_index(m) == itable_index, "correct inverse");
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1168
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1169 return m;
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1170 }
c89f86385056 6814659: separable cleanups and subroutines for 6655638
jrose
parents: 610
diff changeset
1171
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 void klassVtable::verify(outputStream* st, bool forced) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 // make sure table is initialized
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 if (!Universe::is_fully_initialized()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1175 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 // avoid redundant verifies
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 if (!forced && _verify_count == Universe::verify_count()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 _verify_count = Universe::verify_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 oop* end_of_obj = (oop*)_klass() + _klass()->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
1181 oop* end_of_vtable = (oop *)&table()[_length];
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 if (end_of_vtable > end_of_obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 fatal1("klass %s: klass object too short (vtable extends beyond end)",
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 _klass->internal_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
1185 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1186
a61af66fc99e Initial load
duke
parents:
diff changeset
1187 for (int i = 0; i < _length; i++) table()[i].verify(this, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 // verify consistency with superKlass vtable
a61af66fc99e Initial load
duke
parents:
diff changeset
1189 klassOop super = _klass->super();
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 if (super != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 instanceKlass* sk = instanceKlass::cast(super);
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 klassVtable* vt = sk->vtable();
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 for (int i = 0; i < vt->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 verify_against(st, vt, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1198
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 void klassVtable::verify_against(outputStream* st, klassVtable* vt, int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 vtableEntry* vte = &vt->table()[index];
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 if (vte->method()->name() != table()[index].method()->name() ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 vte->method()->signature() != table()[index].method()->signature()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 fatal("mismatched name/signature of vtable entries");
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1206
a61af66fc99e Initial load
duke
parents:
diff changeset
1207 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 void klassVtable::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 tty->print("klassVtable for klass %s (length %d):\n", _klass->internal_name(), length());
a61af66fc99e Initial load
duke
parents:
diff changeset
1211 for (int i = 0; i < length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 table()[i].print();
a61af66fc99e Initial load
duke
parents:
diff changeset
1213 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1214 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1215 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1216 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1217
a61af66fc99e Initial load
duke
parents:
diff changeset
1218 void vtableEntry::verify(klassVtable* vt, outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1219 NOT_PRODUCT(FlagSetting fs(IgnoreLockingAssertions, true));
a61af66fc99e Initial load
duke
parents:
diff changeset
1220 assert(method() != NULL, "must have set method");
a61af66fc99e Initial load
duke
parents:
diff changeset
1221 method()->verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 // we sub_type, because it could be a miranda method
a61af66fc99e Initial load
duke
parents:
diff changeset
1223 if (!vt->klass()->is_subtype_of(method()->method_holder())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1224 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 print();
a61af66fc99e Initial load
duke
parents:
diff changeset
1226 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1227 fatal1("vtableEntry %#lx: method is from subclass", this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1228 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1229 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1230
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1232
a61af66fc99e Initial load
duke
parents:
diff changeset
1233 void vtableEntry::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
1235 tty->print("vtableEntry %s: ", method()->name()->as_C_string());
a61af66fc99e Initial load
duke
parents:
diff changeset
1236 if (Verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1237 tty->print("m %#lx ", (address)method());
a61af66fc99e Initial load
duke
parents:
diff changeset
1238 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1239 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1240
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 class VtableStats : AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
1242 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 static int no_klasses; // # classes with vtables
a61af66fc99e Initial load
duke
parents:
diff changeset
1244 static int no_array_klasses; // # array classes
a61af66fc99e Initial load
duke
parents:
diff changeset
1245 static int no_instance_klasses; // # instanceKlasses
a61af66fc99e Initial load
duke
parents:
diff changeset
1246 static int sum_of_vtable_len; // total # of vtable entries
a61af66fc99e Initial load
duke
parents:
diff changeset
1247 static int sum_of_array_vtable_len; // total # of vtable entries in array klasses only
a61af66fc99e Initial load
duke
parents:
diff changeset
1248 static int fixed; // total fixed overhead in bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1249 static int filler; // overhead caused by filler bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
1250 static int entries; // total bytes consumed by vtable entries
a61af66fc99e Initial load
duke
parents:
diff changeset
1251 static int array_entries; // total bytes consumed by array vtable entries
a61af66fc99e Initial load
duke
parents:
diff changeset
1252
a61af66fc99e Initial load
duke
parents:
diff changeset
1253 static void do_class(klassOop k) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1254 Klass* kl = k->klass_part();
a61af66fc99e Initial load
duke
parents:
diff changeset
1255 klassVtable* vt = kl->vtable();
a61af66fc99e Initial load
duke
parents:
diff changeset
1256 if (vt == NULL) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1257 no_klasses++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1258 if (kl->oop_is_instance()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 no_instance_klasses++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 kl->array_klasses_do(do_class);
a61af66fc99e Initial load
duke
parents:
diff changeset
1261 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1262 if (kl->oop_is_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 no_array_klasses++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 sum_of_array_vtable_len += vt->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1266 sum_of_vtable_len += vt->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
1267 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1268
a61af66fc99e Initial load
duke
parents:
diff changeset
1269 static void compute() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1270 SystemDictionary::classes_do(do_class);
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 fixed = no_klasses * oopSize; // vtable length
a61af66fc99e Initial load
duke
parents:
diff changeset
1272 // filler size is a conservative approximation
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 filler = oopSize * (no_klasses - no_instance_klasses) * (sizeof(instanceKlass) - sizeof(arrayKlass) - 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1274 entries = sizeof(vtableEntry) * sum_of_vtable_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
1275 array_entries = sizeof(vtableEntry) * sum_of_array_vtable_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
1276 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1278
a61af66fc99e Initial load
duke
parents:
diff changeset
1279 int VtableStats::no_klasses = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1280 int VtableStats::no_array_klasses = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1281 int VtableStats::no_instance_klasses = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 int VtableStats::sum_of_vtable_len = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1283 int VtableStats::sum_of_array_vtable_len = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1284 int VtableStats::fixed = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1285 int VtableStats::filler = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1286 int VtableStats::entries = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1287 int VtableStats::array_entries = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1288
a61af66fc99e Initial load
duke
parents:
diff changeset
1289 void klassVtable::print_statistics() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1290 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
1291 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
1292 VtableStats::compute();
a61af66fc99e Initial load
duke
parents:
diff changeset
1293 tty->print_cr("vtable statistics:");
a61af66fc99e Initial load
duke
parents:
diff changeset
1294 tty->print_cr("%6d classes (%d instance, %d array)", VtableStats::no_klasses, VtableStats::no_instance_klasses, VtableStats::no_array_klasses);
a61af66fc99e Initial load
duke
parents:
diff changeset
1295 int total = VtableStats::fixed + VtableStats::filler + VtableStats::entries;
a61af66fc99e Initial load
duke
parents:
diff changeset
1296 tty->print_cr("%6d bytes fixed overhead (refs + vtable object header)", VtableStats::fixed);
a61af66fc99e Initial load
duke
parents:
diff changeset
1297 tty->print_cr("%6d bytes filler overhead", VtableStats::filler);
a61af66fc99e Initial load
duke
parents:
diff changeset
1298 tty->print_cr("%6d bytes for vtable entries (%d for arrays)", VtableStats::entries, VtableStats::array_entries);
a61af66fc99e Initial load
duke
parents:
diff changeset
1299 tty->print_cr("%6d bytes total", total);
a61af66fc99e Initial load
duke
parents:
diff changeset
1300 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1301
a61af66fc99e Initial load
duke
parents:
diff changeset
1302 bool klassVtable::check_no_old_entries() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1303 // Check that there really is no entry
a61af66fc99e Initial load
duke
parents:
diff changeset
1304 for (int i = 0; i < length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1305 methodOop m = unchecked_method_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1306 if (m != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1307 if (m->is_old()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1308 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1309 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1310 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1311 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1312 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1313 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1314
a61af66fc99e Initial load
duke
parents:
diff changeset
1315 void klassVtable::dump_vtable() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1316 tty->print_cr("vtable dump --");
a61af66fc99e Initial load
duke
parents:
diff changeset
1317 for (int i = 0; i < length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1318 methodOop m = unchecked_method_at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 if (m != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1320 tty->print(" (%5d) ", i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 m->access_flags().print_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
1322 tty->print(" -- ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1323 m->print_name(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1325 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1327 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1328
a61af66fc99e Initial load
duke
parents:
diff changeset
1329 int klassItable::_total_classes; // Total no. of classes with itables
a61af66fc99e Initial load
duke
parents:
diff changeset
1330 long klassItable::_total_size; // Total no. of bytes used for itables
a61af66fc99e Initial load
duke
parents:
diff changeset
1331
a61af66fc99e Initial load
duke
parents:
diff changeset
1332 void klassItable::print_statistics() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1333 tty->print_cr("itable statistics:");
a61af66fc99e Initial load
duke
parents:
diff changeset
1334 tty->print_cr("%6d classes with itables", _total_classes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1335 tty->print_cr("%6d K uses for itables (average by class: %d bytes)", _total_size / K, _total_size / _total_classes);
a61af66fc99e Initial load
duke
parents:
diff changeset
1336 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1337
a61af66fc99e Initial load
duke
parents:
diff changeset
1338 #endif // PRODUCT