author | kvn |
Wed, 24 Oct 2012 14:33:22 -0700 | |
changeset 14132 | 3c1437abcefd |
parent 13969 | d2a189b83b87 |
child 14626 | 0cf4eccf130f |
permissions | -rw-r--r-- |
1 | 1 |
/* |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2 |
* Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3261
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3261
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3261
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "asm/assembler.hpp" |
|
27 |
#include "assembler_x86.inline.hpp" |
|
28 |
#include "code/vtableStubs.hpp" |
|
29 |
#include "interp_masm_x86_64.hpp" |
|
30 |
#include "memory/resourceArea.hpp" |
|
31 |
#include "oops/instanceKlass.hpp" |
|
32 |
#include "oops/klassVtable.hpp" |
|
33 |
#include "runtime/sharedRuntime.hpp" |
|
34 |
#include "vmreg_x86.inline.hpp" |
|
35 |
#ifdef COMPILER2 |
|
36 |
#include "opto/runtime.hpp" |
|
37 |
#endif |
|
1 | 38 |
|
39 |
// machine-dependent part of VtableStubs: create VtableStub of correct size and |
|
40 |
// initialize its code |
|
41 |
||
42 |
#define __ masm-> |
|
43 |
||
44 |
#ifndef PRODUCT |
|
45 |
extern "C" void bad_compiled_vtable_index(JavaThread* thread, |
|
46 |
oop receiver, |
|
47 |
int index); |
|
48 |
#endif |
|
49 |
||
50 |
VtableStub* VtableStubs::create_vtable_stub(int vtable_index) { |
|
51 |
const int amd64_code_length = VtableStub::pd_code_size_limit(true); |
|
52 |
VtableStub* s = new(amd64_code_length) VtableStub(true, vtable_index); |
|
53 |
ResourceMark rm; |
|
54 |
CodeBuffer cb(s->entry_point(), amd64_code_length); |
|
55 |
MacroAssembler* masm = new MacroAssembler(&cb); |
|
56 |
||
57 |
#ifndef PRODUCT |
|
58 |
if (CountCompiledCalls) { |
|
59 |
__ incrementl(ExternalAddress((address) SharedRuntime::nof_megamorphic_calls_addr())); |
|
60 |
} |
|
61 |
#endif |
|
62 |
||
63 |
// get receiver (need to skip return address on top of stack) |
|
64 |
assert(VtableStub::receiver_location() == j_rarg0->as_VMReg(), "receiver expected in j_rarg0"); |
|
65 |
||
66 |
// Free registers (non-args) are rax, rbx |
|
67 |
||
68 |
// get receiver klass |
|
69 |
address npe_addr = __ pc(); |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
189
diff
changeset
|
70 |
__ load_klass(rax, j_rarg0); |
1 | 71 |
|
72 |
#ifndef PRODUCT |
|
73 |
if (DebugVtables) { |
|
74 |
Label L; |
|
75 |
// check offset vs vtable length |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
76 |
__ cmpl(Address(rax, InstanceKlass::vtable_length_offset() * wordSize), |
1 | 77 |
vtable_index * vtableEntry::size()); |
78 |
__ jcc(Assembler::greater, L); |
|
79 |
__ movl(rbx, vtable_index); |
|
80 |
__ call_VM(noreg, |
|
81 |
CAST_FROM_FN_PTR(address, bad_compiled_vtable_index), j_rarg0, rbx); |
|
82 |
__ bind(L); |
|
83 |
} |
|
84 |
#endif // PRODUCT |
|
85 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
86 |
// load Method* and target address |
1 | 87 |
const Register method = rbx; |
88 |
||
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
7397
diff
changeset
|
89 |
__ lookup_virtual_method(rax, vtable_index, method); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
7397
diff
changeset
|
90 |
|
1 | 91 |
if (DebugVtables) { |
92 |
Label L; |
|
1066 | 93 |
__ cmpptr(method, (int32_t)NULL_WORD); |
1 | 94 |
__ jcc(Assembler::equal, L); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
95 |
__ cmpptr(Address(method, Method::from_compiled_offset()), (int32_t)NULL_WORD); |
1 | 96 |
__ jcc(Assembler::notZero, L); |
97 |
__ stop("Vtable entry is NULL"); |
|
98 |
__ bind(L); |
|
99 |
} |
|
100 |
// rax: receiver klass |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
101 |
// rbx: Method* |
1 | 102 |
// rcx: receiver |
103 |
address ame_addr = __ pc(); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
104 |
__ jmp( Address(rbx, Method::from_compiled_offset())); |
1 | 105 |
|
106 |
__ flush(); |
|
2149
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
107 |
|
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
108 |
if (PrintMiscellaneous && (WizardMode || Verbose)) { |
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
109 |
tty->print_cr("vtable #%d at "PTR_FORMAT"[%d] left over: %d", |
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
110 |
vtable_index, s->entry_point(), |
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
111 |
(int)(s->code_end() - s->entry_point()), |
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
112 |
(int)(s->code_end() - __ pc())); |
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
113 |
} |
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
114 |
guarantee(__ pc() <= s->code_end(), "overflowed buffer"); |
2533
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
115 |
// shut the door on sizing bugs |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
116 |
int slop = 3; // 32-bit offset is this much larger than an 8-bit one |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
117 |
assert(vtable_index > 10 || __ pc() + slop <= s->code_end(), "room for 32-bit offset"); |
2149
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
118 |
|
1 | 119 |
s->set_exception_points(npe_addr, ame_addr); |
120 |
return s; |
|
121 |
} |
|
122 |
||
123 |
||
2149
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
124 |
VtableStub* VtableStubs::create_itable_stub(int itable_index) { |
1 | 125 |
// Note well: pd_code_size_limit is the absolute minimum we can get |
126 |
// away with. If you add code here, bump the code stub size |
|
127 |
// returned by pd_code_size_limit! |
|
128 |
const int amd64_code_length = VtableStub::pd_code_size_limit(false); |
|
2149
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
129 |
VtableStub* s = new(amd64_code_length) VtableStub(false, itable_index); |
1 | 130 |
ResourceMark rm; |
131 |
CodeBuffer cb(s->entry_point(), amd64_code_length); |
|
132 |
MacroAssembler* masm = new MacroAssembler(&cb); |
|
133 |
||
134 |
#ifndef PRODUCT |
|
135 |
if (CountCompiledCalls) { |
|
136 |
__ incrementl(ExternalAddress((address) SharedRuntime::nof_megamorphic_calls_addr())); |
|
137 |
} |
|
138 |
#endif |
|
139 |
||
140 |
// Entry arguments: |
|
141 |
// rax: Interface |
|
142 |
// j_rarg0: Receiver |
|
143 |
||
144 |
// Free registers (non-args) are rax (interface), rbx |
|
145 |
||
146 |
// get receiver (need to skip return address on top of stack) |
|
147 |
||
148 |
assert(VtableStub::receiver_location() == j_rarg0->as_VMReg(), "receiver expected in j_rarg0"); |
|
149 |
// get receiver klass (also an implicit null-check) |
|
150 |
address npe_addr = __ pc(); |
|
151 |
||
2149
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
152 |
// Most registers are in use; we'll use rax, rbx, r10, r11 |
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
153 |
// (various calling sequences use r[cd]x, r[sd]i, r[89]; stay away from them) |
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
154 |
__ load_klass(r10, j_rarg0); |
1 | 155 |
|
156 |
// If we take a trap while this arg is on the stack we will not |
|
157 |
// be able to walk the stack properly. This is not an issue except |
|
158 |
// when there are mistakes in this assembly code that could generate |
|
159 |
// a spurious fault. Ask me how I know... |
|
160 |
||
2149
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
161 |
const Register method = rbx; |
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
162 |
Label throw_icce; |
1 | 163 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
164 |
// Get Method* and entrypoint for compiler |
2149
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
165 |
__ lookup_interface_method(// inputs: rec. class, interface, itable index |
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
166 |
r10, rax, itable_index, |
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
167 |
// outputs: method, scan temp. reg |
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
168 |
method, r11, |
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
169 |
throw_icce); |
1 | 170 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
171 |
// method (rbx): Method* |
1 | 172 |
// j_rarg0: receiver |
173 |
||
174 |
#ifdef ASSERT |
|
189
4248c8e21063
6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents:
1
diff
changeset
|
175 |
if (DebugVtables) { |
4248c8e21063
6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents:
1
diff
changeset
|
176 |
Label L2; |
1066 | 177 |
__ cmpptr(method, (int32_t)NULL_WORD); |
189
4248c8e21063
6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents:
1
diff
changeset
|
178 |
__ jcc(Assembler::equal, L2); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
179 |
__ cmpptr(Address(method, Method::from_compiled_offset()), (int32_t)NULL_WORD); |
189
4248c8e21063
6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents:
1
diff
changeset
|
180 |
__ jcc(Assembler::notZero, L2); |
4248c8e21063
6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents:
1
diff
changeset
|
181 |
__ stop("compiler entrypoint is null"); |
4248c8e21063
6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents:
1
diff
changeset
|
182 |
__ bind(L2); |
4248c8e21063
6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents:
1
diff
changeset
|
183 |
} |
1 | 184 |
#endif // ASSERT |
185 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
186 |
// rbx: Method* |
189
4248c8e21063
6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents:
1
diff
changeset
|
187 |
// j_rarg0: receiver |
4248c8e21063
6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents:
1
diff
changeset
|
188 |
address ame_addr = __ pc(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
189 |
__ jmp(Address(method, Method::from_compiled_offset())); |
189
4248c8e21063
6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents:
1
diff
changeset
|
190 |
|
4248c8e21063
6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents:
1
diff
changeset
|
191 |
__ bind(throw_icce); |
4248c8e21063
6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents:
1
diff
changeset
|
192 |
__ jump(RuntimeAddress(StubRoutines::throw_IncompatibleClassChangeError_entry())); |
1 | 193 |
|
194 |
__ flush(); |
|
189
4248c8e21063
6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents:
1
diff
changeset
|
195 |
|
2149
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
196 |
if (PrintMiscellaneous && (WizardMode || Verbose)) { |
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
197 |
tty->print_cr("itable #%d at "PTR_FORMAT"[%d] left over: %d", |
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
198 |
itable_index, s->entry_point(), |
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
199 |
(int)(s->code_end() - s->entry_point()), |
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
200 |
(int)(s->code_end() - __ pc())); |
3d362637b307
6812831: factor duplicated assembly code for megamorphic invokeinterface (for 6655638)
jrose
parents:
1066
diff
changeset
|
201 |
} |
189
4248c8e21063
6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents:
1
diff
changeset
|
202 |
guarantee(__ pc() <= s->code_end(), "overflowed buffer"); |
2533
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
203 |
// shut the door on sizing bugs |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
204 |
int slop = 3; // 32-bit offset is this much larger than an 8-bit one |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
205 |
assert(itable_index > 10 || __ pc() + slop <= s->code_end(), "room for 32-bit offset"); |
189
4248c8e21063
6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents:
1
diff
changeset
|
206 |
|
1 | 207 |
s->set_exception_points(npe_addr, ame_addr); |
208 |
return s; |
|
209 |
} |
|
210 |
||
211 |
int VtableStub::pd_code_size_limit(bool is_vtable_stub) { |
|
212 |
if (is_vtable_stub) { |
|
213 |
// Vtable stub size |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
189
diff
changeset
|
214 |
return (DebugVtables ? 512 : 24) + (CountCompiledCalls ? 13 : 0) + |
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
215 |
(UseCompressedKlassPointers ? 16 : 0); // 1 leaq can be 3 bytes + 1 long |
1 | 216 |
} else { |
217 |
// Itable stub size |
|
6453 | 218 |
return (DebugVtables ? 512 : 74) + (CountCompiledCalls ? 13 : 0) + |
13969
d2a189b83b87
7054512: Compress class pointers after perm gen removal
roland
parents:
13728
diff
changeset
|
219 |
(UseCompressedKlassPointers ? 32 : 0); // 2 leaqs |
1 | 220 |
} |
2533
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
221 |
// In order to tune these parameters, run the JVM with VM options |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
222 |
// +PrintMiscellaneous and +WizardMode to see information about |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
223 |
// actual itable stubs. Look for lines like this: |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
224 |
// itable #1 at 0x5551212[71] left over: 3 |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
225 |
// Reduce the constants so that the "left over" number is >=3 |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
226 |
// for the common cases. |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
227 |
// Do not aim at a left-over number of zero, because a |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
228 |
// large vtable or itable index (>= 32) will require a 32-bit |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
229 |
// immediate displacement instead of an 8-bit one. |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
230 |
// |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
231 |
// The JVM98 app. _202_jess has a megamorphic interface call. |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
232 |
// The itable code looks like this: |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
233 |
// Decoding VtableStub itbl[1]@12 |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
234 |
// mov 0x8(%rsi),%r10 |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
235 |
// mov 0x198(%r10),%r11d |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
236 |
// lea 0x218(%r10,%r11,8),%r11 |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
237 |
// lea 0x8(%r10),%r10 |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
238 |
// mov (%r11),%rbx |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
239 |
// cmp %rbx,%rax |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
240 |
// je success |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
241 |
// loop: |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
242 |
// test %rbx,%rbx |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
243 |
// je throw_icce |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
244 |
// add $0x10,%r11 |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
245 |
// mov (%r11),%rbx |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
246 |
// cmp %rbx,%rax |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
247 |
// jne loop |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
248 |
// success: |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
249 |
// mov 0x8(%r11),%r11d |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
250 |
// mov (%r10,%r11,1),%rbx |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
251 |
// jmpq *0x60(%rbx) |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
252 |
// throw_icce: |
9aa50ba9a67f
6827505: sizing logic for vtable and itable stubs needs self-check
jrose
parents:
2149
diff
changeset
|
253 |
// jmpq throw_ICCE_entry |
1 | 254 |
} |
255 |
||
256 |
int VtableStub::pd_code_alignment() { |
|
257 |
return wordSize; |
|
258 |
} |