annotate src/share/vm/code/vtableStubs.cpp @ 20543:e7d0505c8a30

8059758: Footprint regressions with JDK-8038423 Summary: Changes in JDK-8038423 always initialize (zero out) virtual memory used for auxiliary data structures. This causes a footprint regression for G1 in startup benchmarks. This is because they do not touch that memory at all, so the operating system does not actually commit these pages. The fix is to, if the initialization value of the data structures matches the default value of just committed memory (=0), do not do anything. Reviewed-by: jwilhelm, brutisso
author tschatzl
date Fri, 10 Oct 2014 15:51:58 +0200
parents 78bbf4d43a14
children 52b4284cb496
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 17668
diff changeset
2 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1490
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1490
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1490
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
26 #include "code/vtableStubs.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
27 #include "compiler/disassembler.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
28 #include "memory/allocation.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
29 #include "memory/resourceArea.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
30 #include "oops/instanceKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
31 #include "oops/klassVtable.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
32 #include "oops/oop.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
33 #include "prims/forte.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
34 #include "prims/jvmtiExport.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
35 #include "runtime/handles.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
36 #include "runtime/mutexLocker.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
37 #include "runtime/sharedRuntime.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
38 #ifdef COMPILER2
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
39 #include "opto/matcher.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
40 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
41
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 17668
diff changeset
42 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 17668
diff changeset
43
0
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // -----------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // Implementation of VtableStub
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 address VtableStub::_chunk = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 address VtableStub::_chunk_end = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 VMReg VtableStub::_receiver_location = VMRegImpl::Bad();
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51
12146
9758d9f36299 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 10161
diff changeset
52 void* VtableStub::operator new(size_t size, int code_size) throw() {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
53 assert(size == sizeof(VtableStub), "mismatched size");
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // compute real VtableStub size (rounded to nearest word)
a61af66fc99e Initial load
duke
parents:
diff changeset
55 const int real_size = round_to(code_size + sizeof(VtableStub), wordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // malloc them in chunks to minimize header overhead
a61af66fc99e Initial load
duke
parents:
diff changeset
57 const int chunk_factor = 32;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 if (_chunk == NULL || _chunk + real_size > _chunk_end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
59 const int bytes = chunk_factor * real_size + pd_code_alignment();
17668
22b3b2f888bc 8025841: JVMTI: "vtable stub" dynamic code notification is misplaced
sspitsyn
parents: 12294
diff changeset
60
22b3b2f888bc 8025841: JVMTI: "vtable stub" dynamic code notification is misplaced
sspitsyn
parents: 12294
diff changeset
61 // There is a dependency on the name of the blob in src/share/vm/prims/jvmtiCodeBlobEvents.cpp
22b3b2f888bc 8025841: JVMTI: "vtable stub" dynamic code notification is misplaced
sspitsyn
parents: 12294
diff changeset
62 // If changing the name, update the other file accordingly.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
63 BufferBlob* blob = BufferBlob::create("vtable chunks", bytes);
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 844
diff changeset
64 if (blob == NULL) {
12294
891687731b59 7009641: Don't fail VM when CodeCache is full
anoll
parents: 12264
diff changeset
65 return NULL;
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 844
diff changeset
66 }
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
67 _chunk = blob->content_begin();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
68 _chunk_end = _chunk + bytes;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 Forte::register_stub("vtable stub", _chunk, _chunk_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
70 align_chunk();
a61af66fc99e Initial load
duke
parents:
diff changeset
71 }
a61af66fc99e Initial load
duke
parents:
diff changeset
72 assert(_chunk + real_size <= _chunk_end, "bad allocation");
a61af66fc99e Initial load
duke
parents:
diff changeset
73 void* res = _chunk;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 _chunk += real_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 align_chunk();
a61af66fc99e Initial load
duke
parents:
diff changeset
76 return res;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 }
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1644
diff changeset
80 void VtableStub::print_on(outputStream* st) const {
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1644
diff changeset
81 st->print("vtable stub (index = %d, receiver_location = %d, code = [" INTPTR_FORMAT ", " INTPTR_FORMAT "[)",
0
a61af66fc99e Initial load
duke
parents:
diff changeset
82 index(), receiver_location(), code_begin(), code_end());
a61af66fc99e Initial load
duke
parents:
diff changeset
83 }
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // -----------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // Implementation of VtableStubs
a61af66fc99e Initial load
duke
parents:
diff changeset
88 //
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // For each hash value there's a linked list of vtable stubs (with that
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // hash value). Each list is anchored in a little hash _table, indexed
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // by that hash value.
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 VtableStub* VtableStubs::_table[VtableStubs::N];
a61af66fc99e Initial load
duke
parents:
diff changeset
94 int VtableStubs::_number_of_vtable_stubs = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 void VtableStubs::initialize() {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 VtableStub::_receiver_location = SharedRuntime::name_for_receiver();
a61af66fc99e Initial load
duke
parents:
diff changeset
99 {
a61af66fc99e Initial load
duke
parents:
diff changeset
100 MutexLocker ml(VtableStubs_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
101 assert(_number_of_vtable_stubs == 0, "potential performance bug: VtableStubs initialized more than once");
a61af66fc99e Initial load
duke
parents:
diff changeset
102 assert(is_power_of_2(N), "N must be a power of 2");
a61af66fc99e Initial load
duke
parents:
diff changeset
103 for (int i = 0; i < N; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 _table[i] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
105 }
a61af66fc99e Initial load
duke
parents:
diff changeset
106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
107 }
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109
12264
b2e698d2276c 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 12146
diff changeset
110 address VtableStubs::find_stub(bool is_vtable_stub, int vtable_index) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
111 assert(vtable_index >= 0, "must be positive");
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 VtableStub* s = ShareVtableStubs ? lookup(is_vtable_stub, vtable_index) : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
114 if (s == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
115 if (is_vtable_stub) {
a61af66fc99e Initial load
duke
parents:
diff changeset
116 s = create_vtable_stub(vtable_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
117 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 s = create_itable_stub(vtable_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
119 }
12294
891687731b59 7009641: Don't fail VM when CodeCache is full
anoll
parents: 12264
diff changeset
120
891687731b59 7009641: Don't fail VM when CodeCache is full
anoll
parents: 12264
diff changeset
121 // Creation of vtable or itable can fail if there is not enough free space in the code cache.
891687731b59 7009641: Don't fail VM when CodeCache is full
anoll
parents: 12264
diff changeset
122 if (s == NULL) {
891687731b59 7009641: Don't fail VM when CodeCache is full
anoll
parents: 12264
diff changeset
123 return NULL;
891687731b59 7009641: Don't fail VM when CodeCache is full
anoll
parents: 12264
diff changeset
124 }
891687731b59 7009641: Don't fail VM when CodeCache is full
anoll
parents: 12264
diff changeset
125
0
a61af66fc99e Initial load
duke
parents:
diff changeset
126 enter(is_vtable_stub, vtable_index, s);
a61af66fc99e Initial load
duke
parents:
diff changeset
127 if (PrintAdapterHandlers) {
a61af66fc99e Initial load
duke
parents:
diff changeset
128 tty->print_cr("Decoding VtableStub %s[%d]@%d",
a61af66fc99e Initial load
duke
parents:
diff changeset
129 is_vtable_stub? "vtbl": "itbl", vtable_index, VtableStub::receiver_location());
a61af66fc99e Initial load
duke
parents:
diff changeset
130 Disassembler::decode(s->code_begin(), s->code_end());
a61af66fc99e Initial load
duke
parents:
diff changeset
131 }
17668
22b3b2f888bc 8025841: JVMTI: "vtable stub" dynamic code notification is misplaced
sspitsyn
parents: 12294
diff changeset
132 // Notify JVMTI about this stub. The event will be recorded by the enclosing
22b3b2f888bc 8025841: JVMTI: "vtable stub" dynamic code notification is misplaced
sspitsyn
parents: 12294
diff changeset
133 // JvmtiDynamicCodeEventCollector and posted when this thread has released
22b3b2f888bc 8025841: JVMTI: "vtable stub" dynamic code notification is misplaced
sspitsyn
parents: 12294
diff changeset
134 // all locks.
22b3b2f888bc 8025841: JVMTI: "vtable stub" dynamic code notification is misplaced
sspitsyn
parents: 12294
diff changeset
135 if (JvmtiExport::should_post_dynamic_code_generated()) {
22b3b2f888bc 8025841: JVMTI: "vtable stub" dynamic code notification is misplaced
sspitsyn
parents: 12294
diff changeset
136 JvmtiExport::post_dynamic_code_generated_while_holding_locks(is_vtable_stub? "vtable stub": "itable stub",
22b3b2f888bc 8025841: JVMTI: "vtable stub" dynamic code notification is misplaced
sspitsyn
parents: 12294
diff changeset
137 s->code_begin(), s->code_end());
22b3b2f888bc 8025841: JVMTI: "vtable stub" dynamic code notification is misplaced
sspitsyn
parents: 12294
diff changeset
138 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
139 }
a61af66fc99e Initial load
duke
parents:
diff changeset
140 return s->entry_point();
a61af66fc99e Initial load
duke
parents:
diff changeset
141 }
a61af66fc99e Initial load
duke
parents:
diff changeset
142
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 inline uint VtableStubs::hash(bool is_vtable_stub, int vtable_index){
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // Assumption: receiver_location < 4 in most cases.
a61af66fc99e Initial load
duke
parents:
diff changeset
146 int hash = ((vtable_index << 2) ^ VtableStub::receiver_location()->value()) + vtable_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
147 return (is_vtable_stub ? ~hash : hash) & mask;
a61af66fc99e Initial load
duke
parents:
diff changeset
148 }
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150
a61af66fc99e Initial load
duke
parents:
diff changeset
151 VtableStub* VtableStubs::lookup(bool is_vtable_stub, int vtable_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
152 MutexLocker ml(VtableStubs_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
153 unsigned hash = VtableStubs::hash(is_vtable_stub, vtable_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
154 VtableStub* s = _table[hash];
a61af66fc99e Initial load
duke
parents:
diff changeset
155 while( s && !s->matches(is_vtable_stub, vtable_index)) s = s->next();
a61af66fc99e Initial load
duke
parents:
diff changeset
156 return s;
a61af66fc99e Initial load
duke
parents:
diff changeset
157 }
a61af66fc99e Initial load
duke
parents:
diff changeset
158
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 void VtableStubs::enter(bool is_vtable_stub, int vtable_index, VtableStub* s) {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 MutexLocker ml(VtableStubs_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
162 assert(s->matches(is_vtable_stub, vtable_index), "bad vtable stub");
a61af66fc99e Initial load
duke
parents:
diff changeset
163 unsigned int h = VtableStubs::hash(is_vtable_stub, vtable_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
164 // enter s at the beginning of the corresponding list
a61af66fc99e Initial load
duke
parents:
diff changeset
165 s->set_next(_table[h]);
a61af66fc99e Initial load
duke
parents:
diff changeset
166 _table[h] = s;
a61af66fc99e Initial load
duke
parents:
diff changeset
167 _number_of_vtable_stubs++;
a61af66fc99e Initial load
duke
parents:
diff changeset
168 }
a61af66fc99e Initial load
duke
parents:
diff changeset
169
a61af66fc99e Initial load
duke
parents:
diff changeset
170
a61af66fc99e Initial load
duke
parents:
diff changeset
171 bool VtableStubs::is_entry_point(address pc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
172 MutexLocker ml(VtableStubs_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
173 VtableStub* stub = (VtableStub*)(pc - VtableStub::entry_offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
174 uint hash = VtableStubs::hash(stub->is_vtable_stub(), stub->index());
a61af66fc99e Initial load
duke
parents:
diff changeset
175 VtableStub* s;
a61af66fc99e Initial load
duke
parents:
diff changeset
176 for (s = _table[hash]; s != NULL && s != stub; s = s->next()) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
177 return s == stub;
a61af66fc99e Initial load
duke
parents:
diff changeset
178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 bool VtableStubs::contains(address pc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
182 // simple solution for now - we may want to use
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // a faster way if this function is called often
a61af66fc99e Initial load
duke
parents:
diff changeset
184 return stub_containing(pc) != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
185 }
a61af66fc99e Initial load
duke
parents:
diff changeset
186
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 VtableStub* VtableStubs::stub_containing(address pc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // Note: No locking needed since any change to the data structure
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // happens with an atomic store into it (we don't care about
a61af66fc99e Initial load
duke
parents:
diff changeset
191 // consistency with the _number_of_vtable_stubs counter).
a61af66fc99e Initial load
duke
parents:
diff changeset
192 for (int i = 0; i < N; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
193 for (VtableStub* s = _table[i]; s != NULL; s = s->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
194 if (s->contains(pc)) return s;
a61af66fc99e Initial load
duke
parents:
diff changeset
195 }
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
197 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199
a61af66fc99e Initial load
duke
parents:
diff changeset
200 void vtableStubs_init() {
a61af66fc99e Initial load
duke
parents:
diff changeset
201 VtableStubs::initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
202 }
a61af66fc99e Initial load
duke
parents:
diff changeset
203
17668
22b3b2f888bc 8025841: JVMTI: "vtable stub" dynamic code notification is misplaced
sspitsyn
parents: 12294
diff changeset
204 void VtableStubs::vtable_stub_do(void f(VtableStub*)) {
22b3b2f888bc 8025841: JVMTI: "vtable stub" dynamic code notification is misplaced
sspitsyn
parents: 12294
diff changeset
205 for (int i = 0; i < N; i++) {
22b3b2f888bc 8025841: JVMTI: "vtable stub" dynamic code notification is misplaced
sspitsyn
parents: 12294
diff changeset
206 for (VtableStub* s = _table[i]; s != NULL; s = s->next()) {
22b3b2f888bc 8025841: JVMTI: "vtable stub" dynamic code notification is misplaced
sspitsyn
parents: 12294
diff changeset
207 f(s);
22b3b2f888bc 8025841: JVMTI: "vtable stub" dynamic code notification is misplaced
sspitsyn
parents: 12294
diff changeset
208 }
22b3b2f888bc 8025841: JVMTI: "vtable stub" dynamic code notification is misplaced
sspitsyn
parents: 12294
diff changeset
209 }
22b3b2f888bc 8025841: JVMTI: "vtable stub" dynamic code notification is misplaced
sspitsyn
parents: 12294
diff changeset
210 }
22b3b2f888bc 8025841: JVMTI: "vtable stub" dynamic code notification is misplaced
sspitsyn
parents: 12294
diff changeset
211
0
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 //-----------------------------------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
214 // Non-product code
a61af66fc99e Initial load
duke
parents:
diff changeset
215 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
216
a61af66fc99e Initial load
duke
parents:
diff changeset
217 extern "C" void bad_compiled_vtable_index(JavaThread* thread, oop receiver, int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
218 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
219 HandleMark hm;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
220 Klass* klass = receiver->klass();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
221 InstanceKlass* ik = InstanceKlass::cast(klass);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
222 klassVtable* vt = ik->vtable();
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
223 ik->print();
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 844
diff changeset
224 fatal(err_msg("bad compiled vtable dispatch: receiver " INTPTR_FORMAT ", "
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 844
diff changeset
225 "index %d (vtable length %d)",
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 844
diff changeset
226 (address)receiver, index, vt->length()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
227 }
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229 #endif // Product