annotate src/cpu/sparc/vm/vtableStubs_sparc.cpp @ 113:ba764ed4b6f2

6420645: Create a vm that uses compressed oops for up to 32gb heapsizes Summary: Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
author coleenp
date Sun, 13 Apr 2008 17:43:42 -0400
parents f8236e79048a
children d1605aabd0a1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved.
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_sparc.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
a61af66fc99e Initial load
duke
parents:
diff changeset
34 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
35 extern "C" void bad_compiled_vtable_index(JavaThread* thread, oopDesc* receiver, int index);
a61af66fc99e Initial load
duke
parents:
diff changeset
36 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // Used by compiler only; may use only caller saved, non-argument registers
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // NOTE: %%%% if any change is made to this stub make sure that the function
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // pd_code_size_limit is changed to ensure the correct size for VtableStub
a61af66fc99e Initial load
duke
parents:
diff changeset
42 VtableStub* VtableStubs::create_vtable_stub(int vtable_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 const int sparc_code_length = VtableStub::pd_code_size_limit(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
44 VtableStub* s = new(sparc_code_length) VtableStub(true, vtable_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
45 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 CodeBuffer cb(s->entry_point(), sparc_code_length);
a61af66fc99e Initial load
duke
parents:
diff changeset
47 MacroAssembler* masm = new MacroAssembler(&cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
50 if (CountCompiledCalls) {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 Address ctr(G5, SharedRuntime::nof_megamorphic_calls_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
52 __ sethi(ctr);
a61af66fc99e Initial load
duke
parents:
diff changeset
53 __ ld(ctr, G3_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
54 __ inc(G3_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
55 __ st(G3_scratch, ctr);
a61af66fc99e Initial load
duke
parents:
diff changeset
56 }
a61af66fc99e Initial load
duke
parents:
diff changeset
57 #endif /* PRODUCT */
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 assert(VtableStub::receiver_location() == O0->as_VMReg(), "receiver expected in O0");
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // get receiver klass
a61af66fc99e Initial load
duke
parents:
diff changeset
62 address npe_addr = __ pc();
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
63 __ load_klass(O0, G3_scratch);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // set methodOop (in case of interpreted method), and destination address
a61af66fc99e Initial load
duke
parents:
diff changeset
66 int entry_offset = instanceKlass::vtable_start_offset() + vtable_index*vtableEntry::size();
a61af66fc99e Initial load
duke
parents:
diff changeset
67 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
68 if (DebugVtables) {
a61af66fc99e Initial load
duke
parents:
diff changeset
69 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // check offset vs vtable length
a61af66fc99e Initial load
duke
parents:
diff changeset
71 __ ld(G3_scratch, instanceKlass::vtable_length_offset()*wordSize, G5);
a61af66fc99e Initial load
duke
parents:
diff changeset
72 __ cmp(G5, vtable_index*vtableEntry::size());
a61af66fc99e Initial load
duke
parents:
diff changeset
73 __ br(Assembler::greaterUnsigned, false, Assembler::pt, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
74 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
75 __ set(vtable_index, O2);
a61af66fc99e Initial load
duke
parents:
diff changeset
76 __ call_VM(noreg, CAST_FROM_FN_PTR(address, bad_compiled_vtable_index), O0, O2);
a61af66fc99e Initial load
duke
parents:
diff changeset
77 __ bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
80 int v_off = entry_offset*wordSize + vtableEntry::method_offset_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
81 if( __ is_simm13(v_off) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
82 __ ld_ptr(G3, v_off, G5_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
83 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
84 __ set(v_off,G5);
a61af66fc99e Initial load
duke
parents:
diff changeset
85 __ ld_ptr(G3, G5, G5_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
86 }
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
89 if (DebugVtables) {
a61af66fc99e Initial load
duke
parents:
diff changeset
90 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
91 __ br_notnull(G5_method, false, Assembler::pt, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
92 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
93 __ stop("Vtable entry is ZERO");
a61af66fc99e Initial load
duke
parents:
diff changeset
94 __ bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
95 }
a61af66fc99e Initial load
duke
parents:
diff changeset
96 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 address ame_addr = __ pc(); // if the vtable entry is null, the method is abstract
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // NOTE: for vtable dispatches, the vtable entry will never be null.
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 __ ld_ptr(G5_method, in_bytes(methodOopDesc::from_compiled_offset()), G3_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // jump to target (either compiled code or c2iadapter)
a61af66fc99e Initial load
duke
parents:
diff changeset
104 __ JMP(G3_scratch, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // load methodOop (in case we call c2iadapter)
a61af66fc99e Initial load
duke
parents:
diff changeset
106 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 masm->flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
109 s->set_exception_points(npe_addr, ame_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
110 return s;
a61af66fc99e Initial load
duke
parents:
diff changeset
111 }
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // NOTE: %%%% if any change is made to this stub make sure that the function
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // pd_code_size_limit is changed to ensure the correct size for VtableStub
a61af66fc99e Initial load
duke
parents:
diff changeset
116 VtableStub* VtableStubs::create_itable_stub(int vtable_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 const int sparc_code_length = VtableStub::pd_code_size_limit(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
118 VtableStub* s = new(sparc_code_length) VtableStub(false, vtable_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
119 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
120 CodeBuffer cb(s->entry_point(), sparc_code_length);
a61af66fc99e Initial load
duke
parents:
diff changeset
121 MacroAssembler* masm = new MacroAssembler(&cb);
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 Register G3_klassOop = G3_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
124 Register G5_interface = G5; // Passed in as an argument
a61af66fc99e Initial load
duke
parents:
diff changeset
125 Label search;
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // Entry arguments:
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // G5_interface: Interface
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // O0: Receiver
a61af66fc99e Initial load
duke
parents:
diff changeset
130 assert(VtableStub::receiver_location() == O0->as_VMReg(), "receiver expected in O0");
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // get receiver klass (also an implicit null-check)
a61af66fc99e Initial load
duke
parents:
diff changeset
133 address npe_addr = __ pc();
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
134 __ load_klass(O0, G3_klassOop);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
135 __ verify_oop(G3_klassOop);
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // Push a new window to get some temp registers. This chops the head of all
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // my 64-bit %o registers in the LION build, but this is OK because no longs
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // are passed in the %o registers. Instead, longs are passed in G1 and G4
a61af66fc99e Initial load
duke
parents:
diff changeset
140 // and so those registers are not available here.
a61af66fc99e Initial load
duke
parents:
diff changeset
141 __ save(SP,-frame::register_save_words*wordSize,SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
142 Register I0_receiver = I0; // Location of receiver after save
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
145 if (CountCompiledCalls) {
a61af66fc99e Initial load
duke
parents:
diff changeset
146 Address ctr(L0, SharedRuntime::nof_megamorphic_calls_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
147 __ sethi(ctr);
a61af66fc99e Initial load
duke
parents:
diff changeset
148 __ ld(ctr, L1);
a61af66fc99e Initial load
duke
parents:
diff changeset
149 __ inc(L1);
a61af66fc99e Initial load
duke
parents:
diff changeset
150 __ st(L1, ctr);
a61af66fc99e Initial load
duke
parents:
diff changeset
151 }
a61af66fc99e Initial load
duke
parents:
diff changeset
152 #endif /* PRODUCT */
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // load start of itable entries into L0 register
a61af66fc99e Initial load
duke
parents:
diff changeset
155 const int base = instanceKlass::vtable_start_offset() * wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
156 __ ld(Address(G3_klassOop, 0, instanceKlass::vtable_length_offset() * wordSize), L0);
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // %%% Could store the aligned, prescaled offset in the klassoop.
a61af66fc99e Initial load
duke
parents:
diff changeset
159 __ sll(L0, exact_log2(vtableEntry::size() * wordSize), L0);
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // see code for instanceKlass::start_of_itable!
a61af66fc99e Initial load
duke
parents:
diff changeset
161 const int vtable_alignment = align_object_offset(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
162 assert(vtable_alignment == 1 || vtable_alignment == 2, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
163 const int odd_bit = vtableEntry::size() * wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
164 if (vtable_alignment == 2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
165 __ and3(L0, odd_bit, L1); // isolate the odd bit
a61af66fc99e Initial load
duke
parents:
diff changeset
166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
167 __ add(G3_klassOop, L0, L0);
a61af66fc99e Initial load
duke
parents:
diff changeset
168 if (vtable_alignment == 2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
169 __ add(L0, L1, L0); // double the odd bit, to align up
a61af66fc99e Initial load
duke
parents:
diff changeset
170 }
a61af66fc99e Initial load
duke
parents:
diff changeset
171
a61af66fc99e Initial load
duke
parents:
diff changeset
172 // Loop over all itable entries until desired interfaceOop (G5_interface) found
a61af66fc99e Initial load
duke
parents:
diff changeset
173 __ bind(search);
a61af66fc99e Initial load
duke
parents:
diff changeset
174
a61af66fc99e Initial load
duke
parents:
diff changeset
175 // %%%% Could load both offset and interface in one ldx, if they were
a61af66fc99e Initial load
duke
parents:
diff changeset
176 // in the opposite order. This would save a load.
a61af66fc99e Initial load
duke
parents:
diff changeset
177 __ ld_ptr(L0, base + itableOffsetEntry::interface_offset_in_bytes(), L1);
a61af66fc99e Initial load
duke
parents:
diff changeset
178
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
179 // 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
180 // 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
181 Label throw_icce;
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
182 __ bpr(Assembler::rc_z, false, Assembler::pn, L1, throw_icce);
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
183 __ delayed()->cmp(G5_interface, L1);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
184 __ brx(Assembler::notEqual, true, Assembler::pn, search);
a61af66fc99e Initial load
duke
parents:
diff changeset
185 __ delayed()->add(L0, itableOffsetEntry::size() * wordSize, L0);
a61af66fc99e Initial load
duke
parents:
diff changeset
186
a61af66fc99e Initial load
duke
parents:
diff changeset
187 // entry found and L0 points to it, move offset of vtable for interface into L0
a61af66fc99e Initial load
duke
parents:
diff changeset
188 __ ld(L0, base + itableOffsetEntry::offset_offset_in_bytes(), L0);
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // Compute itableMethodEntry and get methodOop(G5_method) and entrypoint(L0) for compiler
a61af66fc99e Initial load
duke
parents:
diff changeset
191 const int method_offset = (itableMethodEntry::size() * wordSize * vtable_index) + itableMethodEntry::method_offset_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
192 __ add(G3_klassOop, L0, L1);
a61af66fc99e Initial load
duke
parents:
diff changeset
193 __ ld_ptr(L1, method_offset, G5_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
196 if (DebugVtables) {
a61af66fc99e Initial load
duke
parents:
diff changeset
197 Label L01;
a61af66fc99e Initial load
duke
parents:
diff changeset
198 __ ld_ptr(L1, method_offset, G5_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
199 __ bpr(Assembler::rc_nz, false, Assembler::pt, G5_method, L01);
a61af66fc99e Initial load
duke
parents:
diff changeset
200 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
201 __ stop("methodOop is null");
a61af66fc99e Initial load
duke
parents:
diff changeset
202 __ bind(L01);
a61af66fc99e Initial load
duke
parents:
diff changeset
203 __ verify_oop(G5_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
204 }
a61af66fc99e Initial load
duke
parents:
diff changeset
205 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 // If the following load is through a NULL pointer, we'll take an OS
a61af66fc99e Initial load
duke
parents:
diff changeset
208 // exception that should translate into an AbstractMethodError. We need the
a61af66fc99e Initial load
duke
parents:
diff changeset
209 // window count to be correct at that time.
a61af66fc99e Initial load
duke
parents:
diff changeset
210 __ restore(); // Restore registers BEFORE the AME point
a61af66fc99e Initial load
duke
parents:
diff changeset
211
a61af66fc99e Initial load
duke
parents:
diff changeset
212 address ame_addr = __ pc(); // if the vtable entry is null, the method is abstract
a61af66fc99e Initial load
duke
parents:
diff changeset
213 __ ld_ptr(G5_method, in_bytes(methodOopDesc::from_compiled_offset()), G3_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
214
a61af66fc99e Initial load
duke
parents:
diff changeset
215 // G5_method: methodOop
a61af66fc99e Initial load
duke
parents:
diff changeset
216 // O0: Receiver
a61af66fc99e Initial load
duke
parents:
diff changeset
217 // G3_scratch: entry point
a61af66fc99e Initial load
duke
parents:
diff changeset
218 __ JMP(G3_scratch, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
219 __ delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
220
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
221 __ bind(throw_icce);
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
222 Address icce(G3_scratch, StubRoutines::throw_IncompatibleClassChangeError_entry());
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
223 __ jump_to(icce, 0);
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
224 __ delayed()->restore();
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
225
0
a61af66fc99e Initial load
duke
parents:
diff changeset
226 masm->flush();
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
227
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
228 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
229
0
a61af66fc99e Initial load
duke
parents:
diff changeset
230 s->set_exception_points(npe_addr, ame_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
231 return s;
a61af66fc99e Initial load
duke
parents:
diff changeset
232 }
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234
a61af66fc99e Initial load
duke
parents:
diff changeset
235 int VtableStub::pd_code_size_limit(bool is_vtable_stub) {
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
236 if (TraceJumps || DebugVtables || CountCompiledCalls || VerifyOops) return 1000;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
237 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
238 const int slop = 2*BytesPerInstWord; // sethi;add (needed for long offsets)
a61af66fc99e Initial load
duke
parents:
diff changeset
239 if (is_vtable_stub) {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
240 // ld;ld;ld,jmp,nop
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
241 const int basic = 5*BytesPerInstWord +
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
242 // shift;add for load_klass
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
243 (UseCompressedOops ? 2*BytesPerInstWord : 0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
244 return basic + slop;
a61af66fc99e Initial load
duke
parents:
diff changeset
245 } else {
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
246 // save, ld, ld, sll, and, add, add, ld, cmp, br, add, ld, add, ld, ld, jmp, restore, sethi, jmpl, restore
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
247 const int basic = (20 LP64_ONLY(+ 6)) * BytesPerInstWord +
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
248 // shift;add for load_klass
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 16
diff changeset
249 (UseCompressedOops ? 2*BytesPerInstWord : 0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
250 return (basic + slop);
a61af66fc99e Initial load
duke
parents:
diff changeset
251 }
a61af66fc99e Initial load
duke
parents:
diff changeset
252 }
a61af66fc99e Initial load
duke
parents:
diff changeset
253 }
a61af66fc99e Initial load
duke
parents:
diff changeset
254
a61af66fc99e Initial load
duke
parents:
diff changeset
255
a61af66fc99e Initial load
duke
parents:
diff changeset
256 int VtableStub::pd_code_alignment() {
a61af66fc99e Initial load
duke
parents:
diff changeset
257 // UltraSPARC cache line size is 8 instructions:
a61af66fc99e Initial load
duke
parents:
diff changeset
258 const unsigned int icache_line_size = 32;
a61af66fc99e Initial load
duke
parents:
diff changeset
259 return icache_line_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
260 }