annotate src/cpu/x86/vm/vtableStubs_x86_64.cpp @ 18041:52b4284cb496

Merge with jdk8u20-b26
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 15 Oct 2014 16:02:50 +0200
parents 89152779163c 78bbf4d43a14
children
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: 14223
diff changeset
2 * Copyright (c) 2003, 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: 844
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
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: 844
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: 1783
diff changeset
25 #include "precompiled.hpp"
7199
cd3d6a6b95d9 8003240: x86: move MacroAssembler into separate file
twisti
parents: 6848
diff changeset
26 #include "asm/macroAssembler.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
27 #include "code/vtableStubs.hpp"
12962
5ccbab1c69f3 8026251: New type profiling points: parameters to methods
roland
parents: 12294
diff changeset
28 #include "interp_masm_x86.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
29 #include "memory/resourceArea.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
30 #include "oops/instanceKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
31 #include "oops/klassVtable.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
32 #include "runtime/sharedRuntime.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
33 #include "vmreg_x86.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
34 #ifdef COMPILER2
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
35 #include "opto/runtime.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
36 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
37
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 14223
diff changeset
38 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 14223
diff changeset
39
0
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // machine-dependent part of VtableStubs: create VtableStub of correct size and
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // initialize its code
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 #define __ masm->
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
46 extern "C" void bad_compiled_vtable_index(JavaThread* thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
47 oop receiver,
a61af66fc99e Initial load
duke
parents:
diff changeset
48 int index);
a61af66fc99e Initial load
duke
parents:
diff changeset
49 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 VtableStub* VtableStubs::create_vtable_stub(int vtable_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
52 const int amd64_code_length = VtableStub::pd_code_size_limit(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
53 VtableStub* s = new(amd64_code_length) VtableStub(true, vtable_index);
12294
891687731b59 7009641: Don't fail VM when CodeCache is full
anoll
parents: 12226
diff changeset
54 // Can be NULL if there is no free space in the code cache.
891687731b59 7009641: Don't fail VM when CodeCache is full
anoll
parents: 12226
diff changeset
55 if (s == NULL) {
891687731b59 7009641: Don't fail VM when CodeCache is full
anoll
parents: 12226
diff changeset
56 return NULL;
891687731b59 7009641: Don't fail VM when CodeCache is full
anoll
parents: 12226
diff changeset
57 }
891687731b59 7009641: Don't fail VM when CodeCache is full
anoll
parents: 12226
diff changeset
58
0
a61af66fc99e Initial load
duke
parents:
diff changeset
59 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 CodeBuffer cb(s->entry_point(), amd64_code_length);
a61af66fc99e Initial load
duke
parents:
diff changeset
61 MacroAssembler* masm = new MacroAssembler(&cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
64 if (CountCompiledCalls) {
a61af66fc99e Initial load
duke
parents:
diff changeset
65 __ incrementl(ExternalAddress((address) SharedRuntime::nof_megamorphic_calls_addr()));
a61af66fc99e Initial load
duke
parents:
diff changeset
66 }
a61af66fc99e Initial load
duke
parents:
diff changeset
67 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // get receiver (need to skip return address on top of stack)
a61af66fc99e Initial load
duke
parents:
diff changeset
70 assert(VtableStub::receiver_location() == j_rarg0->as_VMReg(), "receiver expected in j_rarg0");
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // Free registers (non-args) are rax, rbx
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // get receiver klass
a61af66fc99e Initial load
duke
parents:
diff changeset
75 address npe_addr = __ pc();
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
76 __ load_klass(rax, j_rarg0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
79 if (DebugVtables) {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // check offset vs vtable length
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
82 __ cmpl(Address(rax, InstanceKlass::vtable_length_offset() * wordSize),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
83 vtable_index * vtableEntry::size());
a61af66fc99e Initial load
duke
parents:
diff changeset
84 __ jcc(Assembler::greater, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
85 __ movl(rbx, vtable_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
86 __ call_VM(noreg,
a61af66fc99e Initial load
duke
parents:
diff changeset
87 CAST_FROM_FN_PTR(address, bad_compiled_vtable_index), j_rarg0, rbx);
a61af66fc99e Initial load
duke
parents:
diff changeset
88 __ bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
89 }
a61af66fc99e Initial load
duke
parents:
diff changeset
90 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
91
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
92 // load Method* and target address
0
a61af66fc99e Initial load
duke
parents:
diff changeset
93 const Register method = rbx;
a61af66fc99e Initial load
duke
parents:
diff changeset
94
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 1972
diff changeset
95 __ lookup_virtual_method(rax, vtable_index, method);
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 1972
diff changeset
96
0
a61af66fc99e Initial load
duke
parents:
diff changeset
97 if (DebugVtables) {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 Label L;
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
99 __ cmpptr(method, (int32_t)NULL_WORD);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
100 __ jcc(Assembler::equal, L);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
101 __ cmpptr(Address(method, Method::from_compiled_offset()), (int32_t)NULL_WORD);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
102 __ jcc(Assembler::notZero, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
103 __ stop("Vtable entry is NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
104 __ bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
105 }
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // rax: receiver klass
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
107 // rbx: Method*
0
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // rcx: receiver
a61af66fc99e Initial load
duke
parents:
diff changeset
109 address ame_addr = __ pc();
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
110 __ jmp( Address(rbx, Method::from_compiled_offset()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 __ flush();
623
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
113
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
114 if (PrintMiscellaneous && (WizardMode || Verbose)) {
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
115 tty->print_cr("vtable #%d at "PTR_FORMAT"[%d] left over: %d",
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
116 vtable_index, s->entry_point(),
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
117 (int)(s->code_end() - s->entry_point()),
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
118 (int)(s->code_end() - __ pc()));
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
119 }
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
120 guarantee(__ pc() <= s->code_end(), "overflowed buffer");
709
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
121 // shut the door on sizing bugs
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
122 int slop = 3; // 32-bit offset is this much larger than an 8-bit one
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
123 assert(vtable_index > 10 || __ pc() + slop <= s->code_end(), "room for 32-bit offset");
623
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
124
0
a61af66fc99e Initial load
duke
parents:
diff changeset
125 s->set_exception_points(npe_addr, ame_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
126 return s;
a61af66fc99e Initial load
duke
parents:
diff changeset
127 }
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129
623
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
130 VtableStub* VtableStubs::create_itable_stub(int itable_index) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // Note well: pd_code_size_limit is the absolute minimum we can get
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // away with. If you add code here, bump the code stub size
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // returned by pd_code_size_limit!
a61af66fc99e Initial load
duke
parents:
diff changeset
134 const int amd64_code_length = VtableStub::pd_code_size_limit(false);
623
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
135 VtableStub* s = new(amd64_code_length) VtableStub(false, itable_index);
12294
891687731b59 7009641: Don't fail VM when CodeCache is full
anoll
parents: 12226
diff changeset
136 // Can be NULL if there is no free space in the code cache.
891687731b59 7009641: Don't fail VM when CodeCache is full
anoll
parents: 12226
diff changeset
137 if (s == NULL) {
891687731b59 7009641: Don't fail VM when CodeCache is full
anoll
parents: 12226
diff changeset
138 return NULL;
891687731b59 7009641: Don't fail VM when CodeCache is full
anoll
parents: 12226
diff changeset
139 }
891687731b59 7009641: Don't fail VM when CodeCache is full
anoll
parents: 12226
diff changeset
140
0
a61af66fc99e Initial load
duke
parents:
diff changeset
141 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
142 CodeBuffer cb(s->entry_point(), amd64_code_length);
a61af66fc99e Initial load
duke
parents:
diff changeset
143 MacroAssembler* masm = new MacroAssembler(&cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
146 if (CountCompiledCalls) {
a61af66fc99e Initial load
duke
parents:
diff changeset
147 __ incrementl(ExternalAddress((address) SharedRuntime::nof_megamorphic_calls_addr()));
a61af66fc99e Initial load
duke
parents:
diff changeset
148 }
a61af66fc99e Initial load
duke
parents:
diff changeset
149 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
150
a61af66fc99e Initial load
duke
parents:
diff changeset
151 // Entry arguments:
a61af66fc99e Initial load
duke
parents:
diff changeset
152 // rax: Interface
a61af66fc99e Initial load
duke
parents:
diff changeset
153 // j_rarg0: Receiver
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // Free registers (non-args) are rax (interface), rbx
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 // get receiver (need to skip return address on top of stack)
a61af66fc99e Initial load
duke
parents:
diff changeset
158
a61af66fc99e Initial load
duke
parents:
diff changeset
159 assert(VtableStub::receiver_location() == j_rarg0->as_VMReg(), "receiver expected in j_rarg0");
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // get receiver klass (also an implicit null-check)
a61af66fc99e Initial load
duke
parents:
diff changeset
161 address npe_addr = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
162
623
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
163 // Most registers are in use; we'll use rax, rbx, r10, r11
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
164 // (various calling sequences use r[cd]x, r[sd]i, r[89]; stay away from them)
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
165 __ load_klass(r10, j_rarg0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // If we take a trap while this arg is on the stack we will not
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // be able to walk the stack properly. This is not an issue except
a61af66fc99e Initial load
duke
parents:
diff changeset
169 // when there are mistakes in this assembly code that could generate
a61af66fc99e Initial load
duke
parents:
diff changeset
170 // a spurious fault. Ask me how I know...
a61af66fc99e Initial load
duke
parents:
diff changeset
171
623
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
172 const Register method = rbx;
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
173 Label throw_icce;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
174
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
175 // Get Method* and entrypoint for compiler
623
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
176 __ lookup_interface_method(// inputs: rec. class, interface, itable index
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
177 r10, rax, itable_index,
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
178 // outputs: method, scan temp. reg
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
179 method, r11,
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
180 throw_icce);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
181
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
182 // method (rbx): Method*
0
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // j_rarg0: receiver
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 #ifdef ASSERT
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
186 if (DebugVtables) {
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
187 Label L2;
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 196
diff changeset
188 __ cmpptr(method, (int32_t)NULL_WORD);
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
189 __ jcc(Assembler::equal, L2);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
190 __ cmpptr(Address(method, Method::from_compiled_offset()), (int32_t)NULL_WORD);
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
191 __ jcc(Assembler::notZero, L2);
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
192 __ stop("compiler entrypoint is null");
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
193 __ bind(L2);
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
194 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
195 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
196
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
197 // rbx: Method*
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
198 // j_rarg0: receiver
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
199 address ame_addr = __ pc();
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
200 __ jmp(Address(method, Method::from_compiled_offset()));
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
201
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
202 __ bind(throw_icce);
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
203 __ jump(RuntimeAddress(StubRoutines::throw_IncompatibleClassChangeError_entry()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
204
a61af66fc99e Initial load
duke
parents:
diff changeset
205 __ flush();
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
206
623
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
207 if (PrintMiscellaneous && (WizardMode || Verbose)) {
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
208 tty->print_cr("itable #%d at "PTR_FORMAT"[%d] left over: %d",
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
209 itable_index, s->entry_point(),
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
210 (int)(s->code_end() - s->entry_point()),
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
211 (int)(s->code_end() - __ pc()));
9adddb8c0fc8 6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents: 304
diff changeset
212 }
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
213 guarantee(__ pc() <= s->code_end(), "overflowed buffer");
709
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
214 // shut the door on sizing bugs
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
215 int slop = 3; // 32-bit offset is this much larger than an 8-bit one
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
216 assert(itable_index > 10 || __ pc() + slop <= s->code_end(), "room for 32-bit offset");
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
217
0
a61af66fc99e Initial load
duke
parents:
diff changeset
218 s->set_exception_points(npe_addr, ame_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
219 return s;
a61af66fc99e Initial load
duke
parents:
diff changeset
220 }
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 int VtableStub::pd_code_size_limit(bool is_vtable_stub) {
a61af66fc99e Initial load
duke
parents:
diff changeset
223 if (is_vtable_stub) {
a61af66fc99e Initial load
duke
parents:
diff changeset
224 // Vtable stub size
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
225 return (DebugVtables ? 512 : 24) + (CountCompiledCalls ? 13 : 0) +
12226
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 12056
diff changeset
226 (UseCompressedClassPointers ? MacroAssembler::instr_size_for_decode_klass_not_null() : 0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
227 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
228 // Itable stub size
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
229 return (DebugVtables ? 512 : 74) + (CountCompiledCalls ? 13 : 0) +
12226
7944aba7ba41 8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents: 12056
diff changeset
230 (UseCompressedClassPointers ? MacroAssembler::instr_size_for_decode_klass_not_null() : 0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
231 }
709
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
232 // In order to tune these parameters, run the JVM with VM options
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
233 // +PrintMiscellaneous and +WizardMode to see information about
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
234 // actual itable stubs. Look for lines like this:
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
235 // itable #1 at 0x5551212[71] left over: 3
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
236 // Reduce the constants so that the "left over" number is >=3
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
237 // for the common cases.
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
238 // Do not aim at a left-over number of zero, because a
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
239 // large vtable or itable index (>= 32) will require a 32-bit
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
240 // immediate displacement instead of an 8-bit one.
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
241 //
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
242 // The JVM98 app. _202_jess has a megamorphic interface call.
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
243 // The itable code looks like this:
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
244 // Decoding VtableStub itbl[1]@12
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
245 // mov 0x8(%rsi),%r10
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
246 // mov 0x198(%r10),%r11d
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
247 // lea 0x218(%r10,%r11,8),%r11
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
248 // lea 0x8(%r10),%r10
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
249 // mov (%r11),%rbx
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
250 // cmp %rbx,%rax
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
251 // je success
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
252 // loop:
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
253 // test %rbx,%rbx
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
254 // je throw_icce
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
255 // add $0x10,%r11
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
256 // mov (%r11),%rbx
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
257 // cmp %rbx,%rax
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
258 // jne loop
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
259 // success:
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
260 // mov 0x8(%r11),%r11d
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
261 // mov (%r10,%r11,1),%rbx
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
262 // jmpq *0x60(%rbx)
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
263 // throw_icce:
1d037ecd7960 6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents: 623
diff changeset
264 // jmpq throw_ICCE_entry
0
a61af66fc99e Initial load
duke
parents:
diff changeset
265 }
a61af66fc99e Initial load
duke
parents:
diff changeset
266
a61af66fc99e Initial load
duke
parents:
diff changeset
267 int VtableStub::pd_code_alignment() {
a61af66fc99e Initial load
duke
parents:
diff changeset
268 return wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
269 }