annotate src/cpu/x86/vm/vtableStubs_x86_64.cpp @ 196:d1605aabd0a1 jdk7-b30

6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
author xdono
date Wed, 02 Jul 2008 12:55:16 -0700
parents ba764ed4b6f2
children dc7f315e41f7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 113
diff changeset
2 * Copyright 2003-2008 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/_vtableStubs_x86_64.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // machine-dependent part of VtableStubs: create VtableStub of correct size and
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // initialize its code
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 #define __ masm->
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
34 extern "C" void bad_compiled_vtable_index(JavaThread* thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
35 oop receiver,
a61af66fc99e Initial load
duke
parents:
diff changeset
36 int index);
a61af66fc99e Initial load
duke
parents:
diff changeset
37 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 VtableStub* VtableStubs::create_vtable_stub(int vtable_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
40 const int amd64_code_length = VtableStub::pd_code_size_limit(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
41 VtableStub* s = new(amd64_code_length) VtableStub(true, vtable_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
42 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 CodeBuffer cb(s->entry_point(), amd64_code_length);
a61af66fc99e Initial load
duke
parents:
diff changeset
44 MacroAssembler* masm = new MacroAssembler(&cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
47 if (CountCompiledCalls) {
a61af66fc99e Initial load
duke
parents:
diff changeset
48 __ incrementl(ExternalAddress((address) SharedRuntime::nof_megamorphic_calls_addr()));
a61af66fc99e Initial load
duke
parents:
diff changeset
49 }
a61af66fc99e Initial load
duke
parents:
diff changeset
50 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // get receiver (need to skip return address on top of stack)
a61af66fc99e Initial load
duke
parents:
diff changeset
53 assert(VtableStub::receiver_location() == j_rarg0->as_VMReg(), "receiver expected in j_rarg0");
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // Free registers (non-args) are rax, rbx
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // get receiver klass
a61af66fc99e Initial load
duke
parents:
diff changeset
58 address npe_addr = __ pc();
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
59 __ load_klass(rax, j_rarg0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // compute entry offset (in words)
a61af66fc99e Initial load
duke
parents:
diff changeset
62 int entry_offset =
a61af66fc99e Initial load
duke
parents:
diff changeset
63 instanceKlass::vtable_start_offset() + vtable_index * vtableEntry::size();
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
66 if (DebugVtables) {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // check offset vs vtable length
a61af66fc99e Initial load
duke
parents:
diff changeset
69 __ cmpl(Address(rax, instanceKlass::vtable_length_offset() * wordSize),
a61af66fc99e Initial load
duke
parents:
diff changeset
70 vtable_index * vtableEntry::size());
a61af66fc99e Initial load
duke
parents:
diff changeset
71 __ jcc(Assembler::greater, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
72 __ movl(rbx, vtable_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
73 __ call_VM(noreg,
a61af66fc99e Initial load
duke
parents:
diff changeset
74 CAST_FROM_FN_PTR(address, bad_compiled_vtable_index), j_rarg0, rbx);
a61af66fc99e Initial load
duke
parents:
diff changeset
75 __ bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
76 }
a61af66fc99e Initial load
duke
parents:
diff changeset
77 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // load methodOop and target address
a61af66fc99e Initial load
duke
parents:
diff changeset
80 const Register method = rbx;
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 __ movq(method, Address(rax,
a61af66fc99e Initial load
duke
parents:
diff changeset
83 entry_offset * wordSize +
a61af66fc99e Initial load
duke
parents:
diff changeset
84 vtableEntry::method_offset_in_bytes()));
a61af66fc99e Initial load
duke
parents:
diff changeset
85 if (DebugVtables) {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
87 __ cmpq(method, (int)NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
88 __ jcc(Assembler::equal, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
89 __ cmpq(Address(method, methodOopDesc::from_compiled_offset()), (int)NULL_WORD);
a61af66fc99e Initial load
duke
parents:
diff changeset
90 __ jcc(Assembler::notZero, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
91 __ stop("Vtable entry is NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
92 __ bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // rax: receiver klass
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // rbx: methodOop
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // rcx: receiver
a61af66fc99e Initial load
duke
parents:
diff changeset
97 address ame_addr = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
98 __ jmp( Address(rbx, methodOopDesc::from_compiled_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 __ flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
101 s->set_exception_points(npe_addr, ame_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 return s;
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 VtableStub* VtableStubs::create_itable_stub(int vtable_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // Note well: pd_code_size_limit is the absolute minimum we can get
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // away with. If you add code here, bump the code stub size
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // returned by pd_code_size_limit!
a61af66fc99e Initial load
duke
parents:
diff changeset
110 const int amd64_code_length = VtableStub::pd_code_size_limit(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 VtableStub* s = new(amd64_code_length) VtableStub(false, vtable_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
112 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 CodeBuffer cb(s->entry_point(), amd64_code_length);
a61af66fc99e Initial load
duke
parents:
diff changeset
114 MacroAssembler* masm = new MacroAssembler(&cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
117 if (CountCompiledCalls) {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 __ incrementl(ExternalAddress((address) SharedRuntime::nof_megamorphic_calls_addr()));
a61af66fc99e Initial load
duke
parents:
diff changeset
119 }
a61af66fc99e Initial load
duke
parents:
diff changeset
120 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // Entry arguments:
a61af66fc99e Initial load
duke
parents:
diff changeset
123 // rax: Interface
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // j_rarg0: Receiver
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // Free registers (non-args) are rax (interface), rbx
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // get receiver (need to skip return address on top of stack)
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 assert(VtableStub::receiver_location() == j_rarg0->as_VMReg(), "receiver expected in j_rarg0");
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // get receiver klass (also an implicit null-check)
a61af66fc99e Initial load
duke
parents:
diff changeset
132 address npe_addr = __ pc();
a61af66fc99e Initial load
duke
parents:
diff changeset
133
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
134 __ load_klass(rbx, j_rarg0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // If we take a trap while this arg is on the stack we will not
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // be able to walk the stack properly. This is not an issue except
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // when there are mistakes in this assembly code that could generate
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // a spurious fault. Ask me how I know...
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141 __ pushq(j_rarg1); // Most registers are in use, so save one
a61af66fc99e Initial load
duke
parents:
diff changeset
142
a61af66fc99e Initial load
duke
parents:
diff changeset
143 // compute itable entry offset (in words)
a61af66fc99e Initial load
duke
parents:
diff changeset
144 const int base = instanceKlass::vtable_start_offset() * wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
145 assert(vtableEntry::size() * wordSize == 8,
a61af66fc99e Initial load
duke
parents:
diff changeset
146 "adjust the scaling in the code below");
a61af66fc99e Initial load
duke
parents:
diff changeset
147 // Get length of vtable
a61af66fc99e Initial load
duke
parents:
diff changeset
148 __ movl(j_rarg1,
a61af66fc99e Initial load
duke
parents:
diff changeset
149 Address(rbx, instanceKlass::vtable_length_offset() * wordSize));
a61af66fc99e Initial load
duke
parents:
diff changeset
150 __ leaq(rbx, Address(rbx, j_rarg1, Address::times_8, base));
a61af66fc99e Initial load
duke
parents:
diff changeset
151
a61af66fc99e Initial load
duke
parents:
diff changeset
152 if (HeapWordsPerLong > 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
153 // Round up to align_object_offset boundary
a61af66fc99e Initial load
duke
parents:
diff changeset
154 __ round_to_q(rbx, BytesPerLong);
a61af66fc99e Initial load
duke
parents:
diff changeset
155 }
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
156 Label hit, next, entry, throw_icce;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 __ jmpb(entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 __ bind(next);
a61af66fc99e Initial load
duke
parents:
diff changeset
161 __ addq(rbx, itableOffsetEntry::size() * wordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
162
a61af66fc99e Initial load
duke
parents:
diff changeset
163 __ bind(entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
164
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
165 // If the entry is NULL then we've reached the end of the table
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
166 // without finding the expected interface, so throw an exception
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
167 __ movq(j_rarg1, Address(rbx, itableOffsetEntry::interface_offset_in_bytes()));
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
168 __ testq(j_rarg1, j_rarg1);
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
169 __ jcc(Assembler::zero, throw_icce);
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
170 __ cmpq(rax, j_rarg1);
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
171 __ jccb(Assembler::notEqual, next);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 // We found a hit, move offset into j_rarg1
a61af66fc99e Initial load
duke
parents:
diff changeset
174 __ movl(j_rarg1, Address(rbx, itableOffsetEntry::offset_offset_in_bytes()));
a61af66fc99e Initial load
duke
parents:
diff changeset
175
a61af66fc99e Initial load
duke
parents:
diff changeset
176 // Compute itableMethodEntry
a61af66fc99e Initial load
duke
parents:
diff changeset
177 const int method_offset =
a61af66fc99e Initial load
duke
parents:
diff changeset
178 (itableMethodEntry::size() * wordSize * vtable_index) +
a61af66fc99e Initial load
duke
parents:
diff changeset
179 itableMethodEntry::method_offset_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // Get methodOop and entrypoint for compiler
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // Get klass pointer again
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
184 __ load_klass(rax, j_rarg0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
185
a61af66fc99e Initial load
duke
parents:
diff changeset
186 const Register method = rbx;
a61af66fc99e Initial load
duke
parents:
diff changeset
187 __ movq(method, Address(rax, j_rarg1, Address::times_1, method_offset));
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // Restore saved register, before possible trap.
a61af66fc99e Initial load
duke
parents:
diff changeset
190 __ popq(j_rarg1);
a61af66fc99e Initial load
duke
parents:
diff changeset
191
a61af66fc99e Initial load
duke
parents:
diff changeset
192 // method (rbx): methodOop
a61af66fc99e Initial load
duke
parents:
diff changeset
193 // j_rarg0: receiver
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195
a61af66fc99e Initial load
duke
parents:
diff changeset
196 #ifdef ASSERT
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
197 if (DebugVtables) {
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
198 Label L2;
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
199 __ cmpq(method, (int)NULL);
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
200 __ jcc(Assembler::equal, L2);
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
201 __ cmpq(Address(method, methodOopDesc::from_compiled_offset()), (int)NULL_WORD);
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
202 __ jcc(Assembler::notZero, L2);
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
203 __ stop("compiler entrypoint is null");
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
204 __ bind(L2);
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
205 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
206 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
207
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
208 // rbx: methodOop
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
209 // j_rarg0: receiver
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
210 address ame_addr = __ pc();
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
211 __ jmp(Address(method, methodOopDesc::from_compiled_offset()));
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
212
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
213 __ bind(throw_icce);
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
214 // Restore saved register
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
215 __ popq(j_rarg1);
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
216 __ jump(RuntimeAddress(StubRoutines::throw_IncompatibleClassChangeError_entry()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
217
a61af66fc99e Initial load
duke
parents:
diff changeset
218 __ flush();
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
219
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
220 guarantee(__ pc() <= s->code_end(), "overflowed buffer");
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
221
0
a61af66fc99e Initial load
duke
parents:
diff changeset
222 s->set_exception_points(npe_addr, ame_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
223 return s;
a61af66fc99e Initial load
duke
parents:
diff changeset
224 }
a61af66fc99e Initial load
duke
parents:
diff changeset
225
a61af66fc99e Initial load
duke
parents:
diff changeset
226 int VtableStub::pd_code_size_limit(bool is_vtable_stub) {
a61af66fc99e Initial load
duke
parents:
diff changeset
227 if (is_vtable_stub) {
a61af66fc99e Initial load
duke
parents:
diff changeset
228 // Vtable stub size
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
229 return (DebugVtables ? 512 : 24) + (CountCompiledCalls ? 13 : 0) +
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
230 (UseCompressedOops ? 16 : 0); // 1 leaq can be 3 bytes + 1 long
0
a61af66fc99e Initial load
duke
parents:
diff changeset
231 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
232 // Itable stub size
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
233 return (DebugVtables ? 636 : 72) + (CountCompiledCalls ? 13 : 0) +
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
234 (UseCompressedOops ? 32 : 0); // 2 leaqs
0
a61af66fc99e Initial load
duke
parents:
diff changeset
235 }
a61af66fc99e Initial load
duke
parents:
diff changeset
236 }
a61af66fc99e Initial load
duke
parents:
diff changeset
237
a61af66fc99e Initial load
duke
parents:
diff changeset
238 int VtableStub::pd_code_alignment() {
a61af66fc99e Initial load
duke
parents:
diff changeset
239 return wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
240 }