annotate src/cpu/sparc/vm/interp_masm_sparc.cpp @ 614:3db67f76d308

Merge
author acorn
date Thu, 05 Mar 2009 22:07:29 -0500
parents 70998f2e05ef 98cb887364d3
children c517646eef23
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 1997-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/_interp_masm_sparc.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 #ifndef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
29 #ifndef FAST_DISPATCH
a61af66fc99e Initial load
duke
parents:
diff changeset
30 #define FAST_DISPATCH 1
a61af66fc99e Initial load
duke
parents:
diff changeset
31 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
32 #undef FAST_DISPATCH
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // Implementation of InterpreterMacroAssembler
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // This file specializes the assember with interpreter-specific macros
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38 const Address InterpreterMacroAssembler::l_tmp( FP, 0, (frame::interpreter_frame_l_scratch_fp_offset * wordSize ) + STACK_BIAS);
a61af66fc99e Initial load
duke
parents:
diff changeset
39 const Address InterpreterMacroAssembler::d_tmp( FP, 0, (frame::interpreter_frame_d_scratch_fp_offset * wordSize) + STACK_BIAS);
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 #else // CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
42 #ifndef STATE
a61af66fc99e Initial load
duke
parents:
diff changeset
43 #define STATE(field_name) Lstate, in_bytes(byte_offset_of(BytecodeInterpreter, field_name))
a61af66fc99e Initial load
duke
parents:
diff changeset
44 #endif // STATE
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 #endif // CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 void InterpreterMacroAssembler::compute_extra_locals_size_in_bytes(Register args_size, Register locals_size, Register delta) {
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // Note: this algorithm is also used by C1's OSR entry sequence.
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // Any changes should also be applied to CodeEmitter::emit_osr_entry().
a61af66fc99e Initial load
duke
parents:
diff changeset
51 assert_different_registers(args_size, locals_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // max_locals*2 for TAGS. Assumes that args_size has already been adjusted.
a61af66fc99e Initial load
duke
parents:
diff changeset
53 if (TaggedStackInterpreter) sll(locals_size, 1, locals_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
54 subcc(locals_size, args_size, delta);// extra space for non-arguments locals in words
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // Use br/mov combination because it works on both V8 and V9 and is
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // faster.
a61af66fc99e Initial load
duke
parents:
diff changeset
57 Label skip_move;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 br(Assembler::negative, true, Assembler::pt, skip_move);
a61af66fc99e Initial load
duke
parents:
diff changeset
59 delayed()->mov(G0, delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
60 bind(skip_move);
a61af66fc99e Initial load
duke
parents:
diff changeset
61 round_to(delta, WordsPerLong); // make multiple of 2 (SP must be 2-word aligned)
a61af66fc99e Initial load
duke
parents:
diff changeset
62 sll(delta, LogBytesPerWord, delta); // extra space for locals in bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 #ifndef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // Dispatch code executed in the prolog of a bytecode which does not do it's
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // own dispatch. The dispatch address is computed and placed in IdispatchAddress
a61af66fc99e Initial load
duke
parents:
diff changeset
69 void InterpreterMacroAssembler::dispatch_prolog(TosState state, int bcp_incr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
70 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
71 #ifdef FAST_DISPATCH
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // FAST_DISPATCH and ProfileInterpreter are mutually exclusive since
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // they both use I2.
a61af66fc99e Initial load
duke
parents:
diff changeset
74 assert(!ProfileInterpreter, "FAST_DISPATCH and +ProfileInterpreter are mutually exclusive");
a61af66fc99e Initial load
duke
parents:
diff changeset
75 ldub(Lbcp, bcp_incr, Lbyte_code); // load next bytecode
a61af66fc99e Initial load
duke
parents:
diff changeset
76 add(Lbyte_code, Interpreter::distance_from_dispatch_table(state), Lbyte_code);
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // add offset to correct dispatch table
a61af66fc99e Initial load
duke
parents:
diff changeset
78 sll(Lbyte_code, LogBytesPerWord, Lbyte_code); // multiply by wordSize
a61af66fc99e Initial load
duke
parents:
diff changeset
79 ld_ptr(IdispatchTables, Lbyte_code, IdispatchAddress);// get entry addr
a61af66fc99e Initial load
duke
parents:
diff changeset
80 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
81 ldub( Lbcp, bcp_incr, Lbyte_code); // load next bytecode
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // dispatch table to use
a61af66fc99e Initial load
duke
parents:
diff changeset
83 Address tbl(G3_scratch, (address)Interpreter::dispatch_table(state));
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 sethi(tbl);
a61af66fc99e Initial load
duke
parents:
diff changeset
86 sll(Lbyte_code, LogBytesPerWord, Lbyte_code); // multiply by wordSize
a61af66fc99e Initial load
duke
parents:
diff changeset
87 add(tbl, tbl.base(), 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
88 ld_ptr( G3_scratch, Lbyte_code, IdispatchAddress); // get entry addr
a61af66fc99e Initial load
duke
parents:
diff changeset
89 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
90 }
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // Dispatch code executed in the epilog of a bytecode which does not do it's
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // own dispatch. The dispatch address in IdispatchAddress is used for the
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // dispatch.
a61af66fc99e Initial load
duke
parents:
diff changeset
96 void InterpreterMacroAssembler::dispatch_epilog(TosState state, int bcp_incr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
97 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
98 verify_FPU(1, state);
a61af66fc99e Initial load
duke
parents:
diff changeset
99 interp_verify_oop(Otos_i, state, __FILE__, __LINE__);
a61af66fc99e Initial load
duke
parents:
diff changeset
100 jmp( IdispatchAddress, 0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
101 if (bcp_incr != 0) delayed()->inc(Lbcp, bcp_incr);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 else delayed()->nop();
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 void InterpreterMacroAssembler::dispatch_next(TosState state, int bcp_incr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // %%%% consider branching to a single shared dispatch stub (for each bcp_incr)
a61af66fc99e Initial load
duke
parents:
diff changeset
108 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
109 ldub( Lbcp, bcp_incr, Lbyte_code); // load next bytecode
a61af66fc99e Initial load
duke
parents:
diff changeset
110 dispatch_Lbyte_code(state, Interpreter::dispatch_table(state), bcp_incr);
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 void InterpreterMacroAssembler::dispatch_next_noverify_oop(TosState state, int bcp_incr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // %%%% consider branching to a single shared dispatch stub (for each bcp_incr)
a61af66fc99e Initial load
duke
parents:
diff changeset
116 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
117 ldub( Lbcp, bcp_incr, Lbyte_code); // load next bytecode
a61af66fc99e Initial load
duke
parents:
diff changeset
118 dispatch_Lbyte_code(state, Interpreter::dispatch_table(state), bcp_incr, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
119 }
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 void InterpreterMacroAssembler::dispatch_via(TosState state, address* table) {
a61af66fc99e Initial load
duke
parents:
diff changeset
123 // load current bytecode
a61af66fc99e Initial load
duke
parents:
diff changeset
124 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
125 ldub( Lbcp, 0, Lbyte_code); // load next bytecode
a61af66fc99e Initial load
duke
parents:
diff changeset
126 dispatch_base(state, table);
a61af66fc99e Initial load
duke
parents:
diff changeset
127 }
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 void InterpreterMacroAssembler::call_VM_leaf_base(
a61af66fc99e Initial load
duke
parents:
diff changeset
131 Register java_thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
132 address entry_point,
a61af66fc99e Initial load
duke
parents:
diff changeset
133 int number_of_arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
134 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
135 if (!java_thread->is_valid())
a61af66fc99e Initial load
duke
parents:
diff changeset
136 java_thread = L7_thread_cache;
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // super call
a61af66fc99e Initial load
duke
parents:
diff changeset
138 MacroAssembler::call_VM_leaf_base(java_thread, entry_point, number_of_arguments);
a61af66fc99e Initial load
duke
parents:
diff changeset
139 }
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 void InterpreterMacroAssembler::call_VM_base(
a61af66fc99e Initial load
duke
parents:
diff changeset
143 Register oop_result,
a61af66fc99e Initial load
duke
parents:
diff changeset
144 Register java_thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
145 Register last_java_sp,
a61af66fc99e Initial load
duke
parents:
diff changeset
146 address entry_point,
a61af66fc99e Initial load
duke
parents:
diff changeset
147 int number_of_arguments,
a61af66fc99e Initial load
duke
parents:
diff changeset
148 bool check_exception
a61af66fc99e Initial load
duke
parents:
diff changeset
149 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 if (!java_thread->is_valid())
a61af66fc99e Initial load
duke
parents:
diff changeset
151 java_thread = L7_thread_cache;
a61af66fc99e Initial load
duke
parents:
diff changeset
152 // See class ThreadInVMfromInterpreter, which assumes that the interpreter
a61af66fc99e Initial load
duke
parents:
diff changeset
153 // takes responsibility for setting its own thread-state on call-out.
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // However, ThreadInVMfromInterpreter resets the state to "in_Java".
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 //save_bcp(); // save bcp
a61af66fc99e Initial load
duke
parents:
diff changeset
157 MacroAssembler::call_VM_base(oop_result, java_thread, last_java_sp, entry_point, number_of_arguments, check_exception);
a61af66fc99e Initial load
duke
parents:
diff changeset
158 //restore_bcp(); // restore bcp
a61af66fc99e Initial load
duke
parents:
diff changeset
159 //restore_locals(); // restore locals pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
160 }
a61af66fc99e Initial load
duke
parents:
diff changeset
161
a61af66fc99e Initial load
duke
parents:
diff changeset
162
a61af66fc99e Initial load
duke
parents:
diff changeset
163 void InterpreterMacroAssembler::check_and_handle_popframe(Register scratch_reg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
164 if (JvmtiExport::can_pop_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
165 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // Check the "pending popframe condition" flag in the current thread
a61af66fc99e Initial load
duke
parents:
diff changeset
168 Address popframe_condition_addr(G2_thread, 0, in_bytes(JavaThread::popframe_condition_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
169 ld(popframe_condition_addr, scratch_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
170
a61af66fc99e Initial load
duke
parents:
diff changeset
171 // Initiate popframe handling only if it is not already being processed. If the flag
a61af66fc99e Initial load
duke
parents:
diff changeset
172 // has the popframe_processing bit set, it means that this code is called *during* popframe
a61af66fc99e Initial load
duke
parents:
diff changeset
173 // handling - we don't want to reenter.
a61af66fc99e Initial load
duke
parents:
diff changeset
174 btst(JavaThread::popframe_pending_bit, scratch_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
175 br(zero, false, pt, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
176 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
177 btst(JavaThread::popframe_processing_bit, scratch_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
178 br(notZero, false, pt, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
179 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // Call Interpreter::remove_activation_preserving_args_entry() to get the
a61af66fc99e Initial load
duke
parents:
diff changeset
182 // address of the same-named entrypoint in the generated interpreter code.
a61af66fc99e Initial load
duke
parents:
diff changeset
183 call_VM_leaf(noreg, CAST_FROM_FN_PTR(address, Interpreter::remove_activation_preserving_args_entry));
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 // Jump to Interpreter::_remove_activation_preserving_args_entry
a61af66fc99e Initial load
duke
parents:
diff changeset
186 jmpl(O0, G0, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
187 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
188 bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
190 }
a61af66fc99e Initial load
duke
parents:
diff changeset
191
a61af66fc99e Initial load
duke
parents:
diff changeset
192
a61af66fc99e Initial load
duke
parents:
diff changeset
193 void InterpreterMacroAssembler::load_earlyret_value(TosState state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
194 Register thr_state = G4_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
195 ld_ptr(Address(G2_thread, 0, in_bytes(JavaThread::jvmti_thread_state_offset())),
a61af66fc99e Initial load
duke
parents:
diff changeset
196 thr_state);
a61af66fc99e Initial load
duke
parents:
diff changeset
197 const Address tos_addr(thr_state, 0, in_bytes(JvmtiThreadState::earlyret_tos_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
198 const Address oop_addr(thr_state, 0, in_bytes(JvmtiThreadState::earlyret_oop_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
199 const Address val_addr(thr_state, 0, in_bytes(JvmtiThreadState::earlyret_value_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
200 switch (state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
201 case ltos: ld_long(val_addr, Otos_l); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
202 case atos: ld_ptr(oop_addr, Otos_l);
a61af66fc99e Initial load
duke
parents:
diff changeset
203 st_ptr(G0, oop_addr); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
204 case btos: // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
205 case ctos: // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
206 case stos: // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
207 case itos: ld(val_addr, Otos_l1); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
208 case ftos: ldf(FloatRegisterImpl::S, val_addr, Ftos_f); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
209 case dtos: ldf(FloatRegisterImpl::D, val_addr, Ftos_d); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
210 case vtos: /* nothing to do */ break;
a61af66fc99e Initial load
duke
parents:
diff changeset
211 default : ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
212 }
a61af66fc99e Initial load
duke
parents:
diff changeset
213 // Clean up tos value in the jvmti thread state
a61af66fc99e Initial load
duke
parents:
diff changeset
214 or3(G0, ilgl, G3_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
215 stw(G3_scratch, tos_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
216 st_long(G0, val_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
217 interp_verify_oop(Otos_i, state, __FILE__, __LINE__);
a61af66fc99e Initial load
duke
parents:
diff changeset
218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
219
a61af66fc99e Initial load
duke
parents:
diff changeset
220
a61af66fc99e Initial load
duke
parents:
diff changeset
221 void InterpreterMacroAssembler::check_and_handle_earlyret(Register scratch_reg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
222 if (JvmtiExport::can_force_early_return()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
223 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
224 Register thr_state = G3_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
225 ld_ptr(Address(G2_thread, 0, in_bytes(JavaThread::jvmti_thread_state_offset())),
a61af66fc99e Initial load
duke
parents:
diff changeset
226 thr_state);
a61af66fc99e Initial load
duke
parents:
diff changeset
227 tst(thr_state);
a61af66fc99e Initial load
duke
parents:
diff changeset
228 br(zero, false, pt, L); // if (thread->jvmti_thread_state() == NULL) exit;
a61af66fc99e Initial load
duke
parents:
diff changeset
229 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231 // Initiate earlyret handling only if it is not already being processed.
a61af66fc99e Initial load
duke
parents:
diff changeset
232 // If the flag has the earlyret_processing bit set, it means that this code
a61af66fc99e Initial load
duke
parents:
diff changeset
233 // is called *during* earlyret handling - we don't want to reenter.
a61af66fc99e Initial load
duke
parents:
diff changeset
234 ld(Address(thr_state, 0, in_bytes(JvmtiThreadState::earlyret_state_offset())),
a61af66fc99e Initial load
duke
parents:
diff changeset
235 G4_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
236 cmp(G4_scratch, JvmtiThreadState::earlyret_pending);
a61af66fc99e Initial load
duke
parents:
diff changeset
237 br(Assembler::notEqual, false, pt, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
238 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
239
a61af66fc99e Initial load
duke
parents:
diff changeset
240 // Call Interpreter::remove_activation_early_entry() to get the address of the
a61af66fc99e Initial load
duke
parents:
diff changeset
241 // same-named entrypoint in the generated interpreter code
a61af66fc99e Initial load
duke
parents:
diff changeset
242 Address tos_addr(thr_state, 0, in_bytes(JvmtiThreadState::earlyret_tos_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
243 ld(tos_addr, Otos_l1);
a61af66fc99e Initial load
duke
parents:
diff changeset
244 call_VM_leaf(noreg, CAST_FROM_FN_PTR(address, Interpreter::remove_activation_early_entry), Otos_l1);
a61af66fc99e Initial load
duke
parents:
diff changeset
245
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // Jump to Interpreter::_remove_activation_early_entry
a61af66fc99e Initial load
duke
parents:
diff changeset
247 jmpl(O0, G0, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
248 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
249 bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
250 }
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 void InterpreterMacroAssembler::super_call_VM_leaf(Register thread_cache, address entry_point, Register arg_1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
255 mov(arg_1, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
256 MacroAssembler::call_VM_leaf_base(thread_cache, entry_point, 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
257 }
a61af66fc99e Initial load
duke
parents:
diff changeset
258 #endif /* CC_INTERP */
a61af66fc99e Initial load
duke
parents:
diff changeset
259
a61af66fc99e Initial load
duke
parents:
diff changeset
260
a61af66fc99e Initial load
duke
parents:
diff changeset
261 #ifndef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
262
a61af66fc99e Initial load
duke
parents:
diff changeset
263 void InterpreterMacroAssembler::dispatch_base(TosState state, address* table) {
a61af66fc99e Initial load
duke
parents:
diff changeset
264 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
265 dispatch_Lbyte_code(state, table);
a61af66fc99e Initial load
duke
parents:
diff changeset
266 }
a61af66fc99e Initial load
duke
parents:
diff changeset
267
a61af66fc99e Initial load
duke
parents:
diff changeset
268
a61af66fc99e Initial load
duke
parents:
diff changeset
269 void InterpreterMacroAssembler::dispatch_normal(TosState state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
270 dispatch_base(state, Interpreter::normal_table(state));
a61af66fc99e Initial load
duke
parents:
diff changeset
271 }
a61af66fc99e Initial load
duke
parents:
diff changeset
272
a61af66fc99e Initial load
duke
parents:
diff changeset
273
a61af66fc99e Initial load
duke
parents:
diff changeset
274 void InterpreterMacroAssembler::dispatch_only(TosState state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
275 dispatch_base(state, Interpreter::dispatch_table(state));
a61af66fc99e Initial load
duke
parents:
diff changeset
276 }
a61af66fc99e Initial load
duke
parents:
diff changeset
277
a61af66fc99e Initial load
duke
parents:
diff changeset
278
a61af66fc99e Initial load
duke
parents:
diff changeset
279 // common code to dispatch and dispatch_only
a61af66fc99e Initial load
duke
parents:
diff changeset
280 // dispatch value in Lbyte_code and increment Lbcp
a61af66fc99e Initial load
duke
parents:
diff changeset
281
a61af66fc99e Initial load
duke
parents:
diff changeset
282 void InterpreterMacroAssembler::dispatch_Lbyte_code(TosState state, address* table, int bcp_incr, bool verify) {
a61af66fc99e Initial load
duke
parents:
diff changeset
283 verify_FPU(1, state);
a61af66fc99e Initial load
duke
parents:
diff changeset
284 // %%%%% maybe implement +VerifyActivationFrameSize here
a61af66fc99e Initial load
duke
parents:
diff changeset
285 //verify_thread(); //too slow; we will just verify on method entry & exit
a61af66fc99e Initial load
duke
parents:
diff changeset
286 if (verify) interp_verify_oop(Otos_i, state, __FILE__, __LINE__);
a61af66fc99e Initial load
duke
parents:
diff changeset
287 #ifdef FAST_DISPATCH
a61af66fc99e Initial load
duke
parents:
diff changeset
288 if (table == Interpreter::dispatch_table(state)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
289 // use IdispatchTables
a61af66fc99e Initial load
duke
parents:
diff changeset
290 add(Lbyte_code, Interpreter::distance_from_dispatch_table(state), Lbyte_code);
a61af66fc99e Initial load
duke
parents:
diff changeset
291 // add offset to correct dispatch table
a61af66fc99e Initial load
duke
parents:
diff changeset
292 sll(Lbyte_code, LogBytesPerWord, Lbyte_code); // multiply by wordSize
a61af66fc99e Initial load
duke
parents:
diff changeset
293 ld_ptr(IdispatchTables, Lbyte_code, G3_scratch); // get entry addr
a61af66fc99e Initial load
duke
parents:
diff changeset
294 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
295 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
296 // dispatch table to use
a61af66fc99e Initial load
duke
parents:
diff changeset
297 Address tbl(G3_scratch, (address)table);
a61af66fc99e Initial load
duke
parents:
diff changeset
298
a61af66fc99e Initial load
duke
parents:
diff changeset
299 sll(Lbyte_code, LogBytesPerWord, Lbyte_code); // multiply by wordSize
a61af66fc99e Initial load
duke
parents:
diff changeset
300 load_address(tbl); // compute addr of table
a61af66fc99e Initial load
duke
parents:
diff changeset
301 ld_ptr(G3_scratch, Lbyte_code, G3_scratch); // get entry addr
a61af66fc99e Initial load
duke
parents:
diff changeset
302 #ifdef FAST_DISPATCH
a61af66fc99e Initial load
duke
parents:
diff changeset
303 }
a61af66fc99e Initial load
duke
parents:
diff changeset
304 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
305 jmp( G3_scratch, 0 );
a61af66fc99e Initial load
duke
parents:
diff changeset
306 if (bcp_incr != 0) delayed()->inc(Lbcp, bcp_incr);
a61af66fc99e Initial load
duke
parents:
diff changeset
307 else delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
308 }
a61af66fc99e Initial load
duke
parents:
diff changeset
309
a61af66fc99e Initial load
duke
parents:
diff changeset
310
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // Helpers for expression stack
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 // Longs and doubles are Category 2 computational types in the
a61af66fc99e Initial load
duke
parents:
diff changeset
314 // JVM specification (section 3.11.1) and take 2 expression stack or
a61af66fc99e Initial load
duke
parents:
diff changeset
315 // local slots.
a61af66fc99e Initial load
duke
parents:
diff changeset
316 // Aligning them on 32 bit with tagged stacks is hard because the code generated
a61af66fc99e Initial load
duke
parents:
diff changeset
317 // for the dup* bytecodes depends on what types are already on the stack.
a61af66fc99e Initial load
duke
parents:
diff changeset
318 // If the types are split into the two stack/local slots, that is much easier
a61af66fc99e Initial load
duke
parents:
diff changeset
319 // (and we can use 0 for non-reference tags).
a61af66fc99e Initial load
duke
parents:
diff changeset
320
a61af66fc99e Initial load
duke
parents:
diff changeset
321 // Known good alignment in _LP64 but unknown otherwise
a61af66fc99e Initial load
duke
parents:
diff changeset
322 void InterpreterMacroAssembler::load_unaligned_double(Register r1, int offset, FloatRegister d) {
a61af66fc99e Initial load
duke
parents:
diff changeset
323 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
324
a61af66fc99e Initial load
duke
parents:
diff changeset
325 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
326 ldf(FloatRegisterImpl::D, r1, offset, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
327 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
328 ldf(FloatRegisterImpl::S, r1, offset, d);
a61af66fc99e Initial load
duke
parents:
diff changeset
329 ldf(FloatRegisterImpl::S, r1, offset + Interpreter::stackElementSize(), d->successor());
a61af66fc99e Initial load
duke
parents:
diff changeset
330 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
331 }
a61af66fc99e Initial load
duke
parents:
diff changeset
332
a61af66fc99e Initial load
duke
parents:
diff changeset
333 // Known good alignment in _LP64 but unknown otherwise
a61af66fc99e Initial load
duke
parents:
diff changeset
334 void InterpreterMacroAssembler::store_unaligned_double(FloatRegister d, Register r1, int offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
335 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
336
a61af66fc99e Initial load
duke
parents:
diff changeset
337 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
338 stf(FloatRegisterImpl::D, d, r1, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
339 // store something more useful here
a61af66fc99e Initial load
duke
parents:
diff changeset
340 debug_only(stx(G0, r1, offset+Interpreter::stackElementSize());)
a61af66fc99e Initial load
duke
parents:
diff changeset
341 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
342 stf(FloatRegisterImpl::S, d, r1, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
343 stf(FloatRegisterImpl::S, d->successor(), r1, offset + Interpreter::stackElementSize());
a61af66fc99e Initial load
duke
parents:
diff changeset
344 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
345 }
a61af66fc99e Initial load
duke
parents:
diff changeset
346
a61af66fc99e Initial load
duke
parents:
diff changeset
347
a61af66fc99e Initial load
duke
parents:
diff changeset
348 // Known good alignment in _LP64 but unknown otherwise
a61af66fc99e Initial load
duke
parents:
diff changeset
349 void InterpreterMacroAssembler::load_unaligned_long(Register r1, int offset, Register rd) {
a61af66fc99e Initial load
duke
parents:
diff changeset
350 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
351 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
352 ldx(r1, offset, rd);
a61af66fc99e Initial load
duke
parents:
diff changeset
353 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
354 ld(r1, offset, rd);
a61af66fc99e Initial load
duke
parents:
diff changeset
355 ld(r1, offset + Interpreter::stackElementSize(), rd->successor());
a61af66fc99e Initial load
duke
parents:
diff changeset
356 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
357 }
a61af66fc99e Initial load
duke
parents:
diff changeset
358
a61af66fc99e Initial load
duke
parents:
diff changeset
359 // Known good alignment in _LP64 but unknown otherwise
a61af66fc99e Initial load
duke
parents:
diff changeset
360 void InterpreterMacroAssembler::store_unaligned_long(Register l, Register r1, int offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
361 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
362
a61af66fc99e Initial load
duke
parents:
diff changeset
363 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
364 stx(l, r1, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
365 // store something more useful here
a61af66fc99e Initial load
duke
parents:
diff changeset
366 debug_only(stx(G0, r1, offset+Interpreter::stackElementSize());)
a61af66fc99e Initial load
duke
parents:
diff changeset
367 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
368 st(l, r1, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
369 st(l->successor(), r1, offset + Interpreter::stackElementSize());
a61af66fc99e Initial load
duke
parents:
diff changeset
370 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
371 }
a61af66fc99e Initial load
duke
parents:
diff changeset
372
a61af66fc99e Initial load
duke
parents:
diff changeset
373 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
374 void InterpreterMacroAssembler::verify_stack_tag(frame::Tag t,
a61af66fc99e Initial load
duke
parents:
diff changeset
375 Register r,
a61af66fc99e Initial load
duke
parents:
diff changeset
376 Register scratch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
377 if (TaggedStackInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
378 Label ok, long_ok;
a61af66fc99e Initial load
duke
parents:
diff changeset
379 ld_ptr(Lesp, Interpreter::expr_tag_offset_in_bytes(0), r);
a61af66fc99e Initial load
duke
parents:
diff changeset
380 if (t == frame::TagCategory2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
381 cmp(r, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
382 brx(Assembler::equal, false, Assembler::pt, long_ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
383 delayed()->ld_ptr(Lesp, Interpreter::expr_tag_offset_in_bytes(1), r);
a61af66fc99e Initial load
duke
parents:
diff changeset
384 stop("stack long/double tag value bad");
a61af66fc99e Initial load
duke
parents:
diff changeset
385 bind(long_ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
386 cmp(r, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
387 } else if (t == frame::TagValue) {
a61af66fc99e Initial load
duke
parents:
diff changeset
388 cmp(r, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
389 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
390 assert_different_registers(r, scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
391 mov(t, scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
392 cmp(r, scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
393 }
a61af66fc99e Initial load
duke
parents:
diff changeset
394 brx(Assembler::equal, false, Assembler::pt, ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
395 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
396 // Also compare if the stack value is zero, then the tag might
a61af66fc99e Initial load
duke
parents:
diff changeset
397 // not have been set coming from deopt.
a61af66fc99e Initial load
duke
parents:
diff changeset
398 ld_ptr(Lesp, Interpreter::expr_offset_in_bytes(0), r);
a61af66fc99e Initial load
duke
parents:
diff changeset
399 cmp(r, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
400 brx(Assembler::equal, false, Assembler::pt, ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
401 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
402 stop("Stack tag value is bad");
a61af66fc99e Initial load
duke
parents:
diff changeset
403 bind(ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
404 }
a61af66fc99e Initial load
duke
parents:
diff changeset
405 }
a61af66fc99e Initial load
duke
parents:
diff changeset
406 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
407
a61af66fc99e Initial load
duke
parents:
diff changeset
408 void InterpreterMacroAssembler::pop_i(Register r) {
a61af66fc99e Initial load
duke
parents:
diff changeset
409 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
410 // Uses destination register r for scratch
a61af66fc99e Initial load
duke
parents:
diff changeset
411 debug_only(verify_stack_tag(frame::TagValue, r));
a61af66fc99e Initial load
duke
parents:
diff changeset
412 ld(Lesp, Interpreter::expr_offset_in_bytes(0), r);
a61af66fc99e Initial load
duke
parents:
diff changeset
413 inc(Lesp, Interpreter::stackElementSize());
a61af66fc99e Initial load
duke
parents:
diff changeset
414 debug_only(verify_esp(Lesp));
a61af66fc99e Initial load
duke
parents:
diff changeset
415 }
a61af66fc99e Initial load
duke
parents:
diff changeset
416
a61af66fc99e Initial load
duke
parents:
diff changeset
417 void InterpreterMacroAssembler::pop_ptr(Register r, Register scratch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
418 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
419 // Uses destination register r for scratch
a61af66fc99e Initial load
duke
parents:
diff changeset
420 debug_only(verify_stack_tag(frame::TagReference, r, scratch));
a61af66fc99e Initial load
duke
parents:
diff changeset
421 ld_ptr(Lesp, Interpreter::expr_offset_in_bytes(0), r);
a61af66fc99e Initial load
duke
parents:
diff changeset
422 inc(Lesp, Interpreter::stackElementSize());
a61af66fc99e Initial load
duke
parents:
diff changeset
423 debug_only(verify_esp(Lesp));
a61af66fc99e Initial load
duke
parents:
diff changeset
424 }
a61af66fc99e Initial load
duke
parents:
diff changeset
425
a61af66fc99e Initial load
duke
parents:
diff changeset
426 void InterpreterMacroAssembler::pop_l(Register r) {
a61af66fc99e Initial load
duke
parents:
diff changeset
427 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
428 // Uses destination register r for scratch
a61af66fc99e Initial load
duke
parents:
diff changeset
429 debug_only(verify_stack_tag(frame::TagCategory2, r));
a61af66fc99e Initial load
duke
parents:
diff changeset
430 load_unaligned_long(Lesp, Interpreter::expr_offset_in_bytes(0), r);
a61af66fc99e Initial load
duke
parents:
diff changeset
431 inc(Lesp, 2*Interpreter::stackElementSize());
a61af66fc99e Initial load
duke
parents:
diff changeset
432 debug_only(verify_esp(Lesp));
a61af66fc99e Initial load
duke
parents:
diff changeset
433 }
a61af66fc99e Initial load
duke
parents:
diff changeset
434
a61af66fc99e Initial load
duke
parents:
diff changeset
435
a61af66fc99e Initial load
duke
parents:
diff changeset
436 void InterpreterMacroAssembler::pop_f(FloatRegister f, Register scratch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
437 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
438 debug_only(verify_stack_tag(frame::TagValue, scratch));
a61af66fc99e Initial load
duke
parents:
diff changeset
439 ldf(FloatRegisterImpl::S, Lesp, Interpreter::expr_offset_in_bytes(0), f);
a61af66fc99e Initial load
duke
parents:
diff changeset
440 inc(Lesp, Interpreter::stackElementSize());
a61af66fc99e Initial load
duke
parents:
diff changeset
441 debug_only(verify_esp(Lesp));
a61af66fc99e Initial load
duke
parents:
diff changeset
442 }
a61af66fc99e Initial load
duke
parents:
diff changeset
443
a61af66fc99e Initial load
duke
parents:
diff changeset
444
a61af66fc99e Initial load
duke
parents:
diff changeset
445 void InterpreterMacroAssembler::pop_d(FloatRegister f, Register scratch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
446 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
447 debug_only(verify_stack_tag(frame::TagCategory2, scratch));
a61af66fc99e Initial load
duke
parents:
diff changeset
448 load_unaligned_double(Lesp, Interpreter::expr_offset_in_bytes(0), f);
a61af66fc99e Initial load
duke
parents:
diff changeset
449 inc(Lesp, 2*Interpreter::stackElementSize());
a61af66fc99e Initial load
duke
parents:
diff changeset
450 debug_only(verify_esp(Lesp));
a61af66fc99e Initial load
duke
parents:
diff changeset
451 }
a61af66fc99e Initial load
duke
parents:
diff changeset
452
a61af66fc99e Initial load
duke
parents:
diff changeset
453
a61af66fc99e Initial load
duke
parents:
diff changeset
454 // (Note use register first, then decrement so dec can be done during store stall)
a61af66fc99e Initial load
duke
parents:
diff changeset
455 void InterpreterMacroAssembler::tag_stack(Register r) {
a61af66fc99e Initial load
duke
parents:
diff changeset
456 if (TaggedStackInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
457 st_ptr(r, Lesp, Interpreter::tag_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
458 }
a61af66fc99e Initial load
duke
parents:
diff changeset
459 }
a61af66fc99e Initial load
duke
parents:
diff changeset
460
a61af66fc99e Initial load
duke
parents:
diff changeset
461 void InterpreterMacroAssembler::tag_stack(frame::Tag t, Register r) {
a61af66fc99e Initial load
duke
parents:
diff changeset
462 if (TaggedStackInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
463 assert (frame::TagValue == 0, "TagValue must be zero");
a61af66fc99e Initial load
duke
parents:
diff changeset
464 if (t == frame::TagValue) {
a61af66fc99e Initial load
duke
parents:
diff changeset
465 st_ptr(G0, Lesp, Interpreter::tag_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
466 } else if (t == frame::TagCategory2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
467 st_ptr(G0, Lesp, Interpreter::tag_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
468 // Tag next slot down too
a61af66fc99e Initial load
duke
parents:
diff changeset
469 st_ptr(G0, Lesp, -Interpreter::stackElementSize() + Interpreter::tag_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
470 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
471 assert_different_registers(r, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
472 mov(t, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
473 st_ptr(O3, Lesp, Interpreter::tag_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
474 }
a61af66fc99e Initial load
duke
parents:
diff changeset
475 }
a61af66fc99e Initial load
duke
parents:
diff changeset
476 }
a61af66fc99e Initial load
duke
parents:
diff changeset
477
a61af66fc99e Initial load
duke
parents:
diff changeset
478 void InterpreterMacroAssembler::push_i(Register r) {
a61af66fc99e Initial load
duke
parents:
diff changeset
479 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
480 debug_only(verify_esp(Lesp));
a61af66fc99e Initial load
duke
parents:
diff changeset
481 tag_stack(frame::TagValue, r);
a61af66fc99e Initial load
duke
parents:
diff changeset
482 st( r, Lesp, Interpreter::value_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
483 dec( Lesp, Interpreter::stackElementSize());
a61af66fc99e Initial load
duke
parents:
diff changeset
484 }
a61af66fc99e Initial load
duke
parents:
diff changeset
485
a61af66fc99e Initial load
duke
parents:
diff changeset
486 void InterpreterMacroAssembler::push_ptr(Register r) {
a61af66fc99e Initial load
duke
parents:
diff changeset
487 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
488 tag_stack(frame::TagReference, r);
a61af66fc99e Initial load
duke
parents:
diff changeset
489 st_ptr( r, Lesp, Interpreter::value_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
490 dec( Lesp, Interpreter::stackElementSize());
a61af66fc99e Initial load
duke
parents:
diff changeset
491 }
a61af66fc99e Initial load
duke
parents:
diff changeset
492
a61af66fc99e Initial load
duke
parents:
diff changeset
493 void InterpreterMacroAssembler::push_ptr(Register r, Register tag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
494 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
495 tag_stack(tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
496 st_ptr(r, Lesp, Interpreter::value_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
497 dec( Lesp, Interpreter::stackElementSize());
a61af66fc99e Initial load
duke
parents:
diff changeset
498 }
a61af66fc99e Initial load
duke
parents:
diff changeset
499
a61af66fc99e Initial load
duke
parents:
diff changeset
500 // remember: our convention for longs in SPARC is:
a61af66fc99e Initial load
duke
parents:
diff changeset
501 // O0 (Otos_l1) has high-order part in first word,
a61af66fc99e Initial load
duke
parents:
diff changeset
502 // O1 (Otos_l2) has low-order part in second word
a61af66fc99e Initial load
duke
parents:
diff changeset
503
a61af66fc99e Initial load
duke
parents:
diff changeset
504 void InterpreterMacroAssembler::push_l(Register r) {
a61af66fc99e Initial load
duke
parents:
diff changeset
505 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
506 debug_only(verify_esp(Lesp));
a61af66fc99e Initial load
duke
parents:
diff changeset
507 tag_stack(frame::TagCategory2, r);
a61af66fc99e Initial load
duke
parents:
diff changeset
508 // Longs are in stored in memory-correct order, even if unaligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
509 // and may be separated by stack tags.
a61af66fc99e Initial load
duke
parents:
diff changeset
510 int offset = -Interpreter::stackElementSize() + Interpreter::value_offset_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
511 store_unaligned_long(r, Lesp, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
512 dec(Lesp, 2 * Interpreter::stackElementSize());
a61af66fc99e Initial load
duke
parents:
diff changeset
513 }
a61af66fc99e Initial load
duke
parents:
diff changeset
514
a61af66fc99e Initial load
duke
parents:
diff changeset
515
a61af66fc99e Initial load
duke
parents:
diff changeset
516 void InterpreterMacroAssembler::push_f(FloatRegister f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
517 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
518 debug_only(verify_esp(Lesp));
a61af66fc99e Initial load
duke
parents:
diff changeset
519 tag_stack(frame::TagValue, Otos_i);
a61af66fc99e Initial load
duke
parents:
diff changeset
520 stf(FloatRegisterImpl::S, f, Lesp, Interpreter::value_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
521 dec(Lesp, Interpreter::stackElementSize());
a61af66fc99e Initial load
duke
parents:
diff changeset
522 }
a61af66fc99e Initial load
duke
parents:
diff changeset
523
a61af66fc99e Initial load
duke
parents:
diff changeset
524
a61af66fc99e Initial load
duke
parents:
diff changeset
525 void InterpreterMacroAssembler::push_d(FloatRegister d) {
a61af66fc99e Initial load
duke
parents:
diff changeset
526 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
527 debug_only(verify_esp(Lesp));
a61af66fc99e Initial load
duke
parents:
diff changeset
528 tag_stack(frame::TagCategory2, Otos_i);
a61af66fc99e Initial load
duke
parents:
diff changeset
529 // Longs are in stored in memory-correct order, even if unaligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
530 // and may be separated by stack tags.
a61af66fc99e Initial load
duke
parents:
diff changeset
531 int offset = -Interpreter::stackElementSize() + Interpreter::value_offset_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
532 store_unaligned_double(d, Lesp, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
533 dec(Lesp, 2 * Interpreter::stackElementSize());
a61af66fc99e Initial load
duke
parents:
diff changeset
534 }
a61af66fc99e Initial load
duke
parents:
diff changeset
535
a61af66fc99e Initial load
duke
parents:
diff changeset
536
a61af66fc99e Initial load
duke
parents:
diff changeset
537 void InterpreterMacroAssembler::push(TosState state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
538 interp_verify_oop(Otos_i, state, __FILE__, __LINE__);
a61af66fc99e Initial load
duke
parents:
diff changeset
539 switch (state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
540 case atos: push_ptr(); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
541 case btos: push_i(); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
542 case ctos:
a61af66fc99e Initial load
duke
parents:
diff changeset
543 case stos: push_i(); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
544 case itos: push_i(); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
545 case ltos: push_l(); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
546 case ftos: push_f(); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
547 case dtos: push_d(); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
548 case vtos: /* nothing to do */ break;
a61af66fc99e Initial load
duke
parents:
diff changeset
549 default : ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
550 }
a61af66fc99e Initial load
duke
parents:
diff changeset
551 }
a61af66fc99e Initial load
duke
parents:
diff changeset
552
a61af66fc99e Initial load
duke
parents:
diff changeset
553
a61af66fc99e Initial load
duke
parents:
diff changeset
554 void InterpreterMacroAssembler::pop(TosState state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
555 switch (state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
556 case atos: pop_ptr(); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
557 case btos: pop_i(); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
558 case ctos:
a61af66fc99e Initial load
duke
parents:
diff changeset
559 case stos: pop_i(); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
560 case itos: pop_i(); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
561 case ltos: pop_l(); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
562 case ftos: pop_f(); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
563 case dtos: pop_d(); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
564 case vtos: /* nothing to do */ break;
a61af66fc99e Initial load
duke
parents:
diff changeset
565 default : ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
566 }
a61af66fc99e Initial load
duke
parents:
diff changeset
567 interp_verify_oop(Otos_i, state, __FILE__, __LINE__);
a61af66fc99e Initial load
duke
parents:
diff changeset
568 }
a61af66fc99e Initial load
duke
parents:
diff changeset
569
a61af66fc99e Initial load
duke
parents:
diff changeset
570
a61af66fc99e Initial load
duke
parents:
diff changeset
571 // Tagged stack helpers for swap and dup
a61af66fc99e Initial load
duke
parents:
diff changeset
572 void InterpreterMacroAssembler::load_ptr_and_tag(int n, Register val,
a61af66fc99e Initial load
duke
parents:
diff changeset
573 Register tag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
574 ld_ptr(Lesp, Interpreter::expr_offset_in_bytes(n), val);
a61af66fc99e Initial load
duke
parents:
diff changeset
575 if (TaggedStackInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
576 ld_ptr(Lesp, Interpreter::expr_tag_offset_in_bytes(n), tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
577 }
a61af66fc99e Initial load
duke
parents:
diff changeset
578 }
a61af66fc99e Initial load
duke
parents:
diff changeset
579 void InterpreterMacroAssembler::store_ptr_and_tag(int n, Register val,
a61af66fc99e Initial load
duke
parents:
diff changeset
580 Register tag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
581 st_ptr(val, Lesp, Interpreter::expr_offset_in_bytes(n));
a61af66fc99e Initial load
duke
parents:
diff changeset
582 if (TaggedStackInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
583 st_ptr(tag, Lesp, Interpreter::expr_tag_offset_in_bytes(n));
a61af66fc99e Initial load
duke
parents:
diff changeset
584 }
a61af66fc99e Initial load
duke
parents:
diff changeset
585 }
a61af66fc99e Initial load
duke
parents:
diff changeset
586
a61af66fc99e Initial load
duke
parents:
diff changeset
587
a61af66fc99e Initial load
duke
parents:
diff changeset
588 void InterpreterMacroAssembler::load_receiver(Register param_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
589 Register recv) {
a61af66fc99e Initial load
duke
parents:
diff changeset
590
a61af66fc99e Initial load
duke
parents:
diff changeset
591 sll(param_count, Interpreter::logStackElementSize(), param_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
592 if (TaggedStackInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
593 add(param_count, Interpreter::value_offset_in_bytes(), param_count); // get obj address
a61af66fc99e Initial load
duke
parents:
diff changeset
594 }
a61af66fc99e Initial load
duke
parents:
diff changeset
595 ld_ptr(Lesp, param_count, recv); // gets receiver Oop
a61af66fc99e Initial load
duke
parents:
diff changeset
596 }
a61af66fc99e Initial load
duke
parents:
diff changeset
597
a61af66fc99e Initial load
duke
parents:
diff changeset
598 void InterpreterMacroAssembler::empty_expression_stack() {
a61af66fc99e Initial load
duke
parents:
diff changeset
599 // Reset Lesp.
a61af66fc99e Initial load
duke
parents:
diff changeset
600 sub( Lmonitors, wordSize, Lesp );
a61af66fc99e Initial load
duke
parents:
diff changeset
601
a61af66fc99e Initial load
duke
parents:
diff changeset
602 // Reset SP by subtracting more space from Lesp.
a61af66fc99e Initial load
duke
parents:
diff changeset
603 Label done;
a61af66fc99e Initial load
duke
parents:
diff changeset
604
a61af66fc99e Initial load
duke
parents:
diff changeset
605 const Address max_stack (Lmethod, 0, in_bytes(methodOopDesc::max_stack_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
606 const Address access_flags(Lmethod, 0, in_bytes(methodOopDesc::access_flags_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
607
a61af66fc99e Initial load
duke
parents:
diff changeset
608 verify_oop(Lmethod);
a61af66fc99e Initial load
duke
parents:
diff changeset
609
a61af66fc99e Initial load
duke
parents:
diff changeset
610
a61af66fc99e Initial load
duke
parents:
diff changeset
611 assert( G4_scratch != Gframe_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
612 "Only you can prevent register aliasing!");
a61af66fc99e Initial load
duke
parents:
diff changeset
613
a61af66fc99e Initial load
duke
parents:
diff changeset
614 // A native does not need to do this, since its callee does not change SP.
a61af66fc99e Initial load
duke
parents:
diff changeset
615 ld(access_flags, Gframe_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
616 btst(JVM_ACC_NATIVE, Gframe_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
617 br(Assembler::notZero, false, Assembler::pt, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
618 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
619
a61af66fc99e Initial load
duke
parents:
diff changeset
620 //
a61af66fc99e Initial load
duke
parents:
diff changeset
621 // Compute max expression stack+register save area
a61af66fc99e Initial load
duke
parents:
diff changeset
622 //
a61af66fc99e Initial load
duke
parents:
diff changeset
623 lduh( max_stack, Gframe_size );
a61af66fc99e Initial load
duke
parents:
diff changeset
624 if (TaggedStackInterpreter) sll ( Gframe_size, 1, Gframe_size); // max_stack * 2 for TAGS
a61af66fc99e Initial load
duke
parents:
diff changeset
625 add( Gframe_size, frame::memory_parameter_word_sp_offset, Gframe_size );
a61af66fc99e Initial load
duke
parents:
diff changeset
626
a61af66fc99e Initial load
duke
parents:
diff changeset
627 //
a61af66fc99e Initial load
duke
parents:
diff changeset
628 // now set up a stack frame with the size computed above
a61af66fc99e Initial load
duke
parents:
diff changeset
629 //
a61af66fc99e Initial load
duke
parents:
diff changeset
630 //round_to( Gframe_size, WordsPerLong ); // -- moved down to the "and" below
a61af66fc99e Initial load
duke
parents:
diff changeset
631 sll( Gframe_size, LogBytesPerWord, Gframe_size );
a61af66fc99e Initial load
duke
parents:
diff changeset
632 sub( Lesp, Gframe_size, Gframe_size );
a61af66fc99e Initial load
duke
parents:
diff changeset
633 and3( Gframe_size, -(2 * wordSize), Gframe_size ); // align SP (downwards) to an 8/16-byte boundary
a61af66fc99e Initial load
duke
parents:
diff changeset
634 debug_only(verify_sp(Gframe_size, G4_scratch));
a61af66fc99e Initial load
duke
parents:
diff changeset
635 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
636 sub(Gframe_size, STACK_BIAS, Gframe_size );
a61af66fc99e Initial load
duke
parents:
diff changeset
637 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
638 mov(Gframe_size, SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
639
a61af66fc99e Initial load
duke
parents:
diff changeset
640 bind(done);
a61af66fc99e Initial load
duke
parents:
diff changeset
641 }
a61af66fc99e Initial load
duke
parents:
diff changeset
642
a61af66fc99e Initial load
duke
parents:
diff changeset
643
a61af66fc99e Initial load
duke
parents:
diff changeset
644 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
645 void InterpreterMacroAssembler::verify_sp(Register Rsp, Register Rtemp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
646 Label Bad, OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
647
a61af66fc99e Initial load
duke
parents:
diff changeset
648 // Saved SP must be aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
649 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
650 btst(2*BytesPerWord-1, Rsp);
a61af66fc99e Initial load
duke
parents:
diff changeset
651 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
652 btst(LongAlignmentMask, Rsp);
a61af66fc99e Initial load
duke
parents:
diff changeset
653 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
654 br(Assembler::notZero, false, Assembler::pn, Bad);
a61af66fc99e Initial load
duke
parents:
diff changeset
655 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
656
a61af66fc99e Initial load
duke
parents:
diff changeset
657 // Saved SP, plus register window size, must not be above FP.
a61af66fc99e Initial load
duke
parents:
diff changeset
658 add(Rsp, frame::register_save_words * wordSize, Rtemp);
a61af66fc99e Initial load
duke
parents:
diff changeset
659 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
660 sub(Rtemp, STACK_BIAS, Rtemp); // Bias Rtemp before cmp to FP
a61af66fc99e Initial load
duke
parents:
diff changeset
661 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
662 cmp(Rtemp, FP);
a61af66fc99e Initial load
duke
parents:
diff changeset
663 brx(Assembler::greaterUnsigned, false, Assembler::pn, Bad);
a61af66fc99e Initial load
duke
parents:
diff changeset
664 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
665
a61af66fc99e Initial load
duke
parents:
diff changeset
666 // Saved SP must not be ridiculously below current SP.
a61af66fc99e Initial load
duke
parents:
diff changeset
667 size_t maxstack = MAX2(JavaThread::stack_size_at_create(), (size_t) 4*K*K);
a61af66fc99e Initial load
duke
parents:
diff changeset
668 set(maxstack, Rtemp);
a61af66fc99e Initial load
duke
parents:
diff changeset
669 sub(SP, Rtemp, Rtemp);
a61af66fc99e Initial load
duke
parents:
diff changeset
670 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
671 add(Rtemp, STACK_BIAS, Rtemp); // Unbias Rtemp before cmp to Rsp
a61af66fc99e Initial load
duke
parents:
diff changeset
672 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
673 cmp(Rsp, Rtemp);
a61af66fc99e Initial load
duke
parents:
diff changeset
674 brx(Assembler::lessUnsigned, false, Assembler::pn, Bad);
a61af66fc99e Initial load
duke
parents:
diff changeset
675 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
676
a61af66fc99e Initial load
duke
parents:
diff changeset
677 br(Assembler::always, false, Assembler::pn, OK);
a61af66fc99e Initial load
duke
parents:
diff changeset
678 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
679
a61af66fc99e Initial load
duke
parents:
diff changeset
680 bind(Bad);
a61af66fc99e Initial load
duke
parents:
diff changeset
681 stop("on return to interpreted call, restored SP is corrupted");
a61af66fc99e Initial load
duke
parents:
diff changeset
682
a61af66fc99e Initial load
duke
parents:
diff changeset
683 bind(OK);
a61af66fc99e Initial load
duke
parents:
diff changeset
684 }
a61af66fc99e Initial load
duke
parents:
diff changeset
685
a61af66fc99e Initial load
duke
parents:
diff changeset
686
a61af66fc99e Initial load
duke
parents:
diff changeset
687 void InterpreterMacroAssembler::verify_esp(Register Resp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
688 // about to read or write Resp[0]
a61af66fc99e Initial load
duke
parents:
diff changeset
689 // make sure it is not in the monitors or the register save area
a61af66fc99e Initial load
duke
parents:
diff changeset
690 Label OK1, OK2;
a61af66fc99e Initial load
duke
parents:
diff changeset
691
a61af66fc99e Initial load
duke
parents:
diff changeset
692 cmp(Resp, Lmonitors);
a61af66fc99e Initial load
duke
parents:
diff changeset
693 brx(Assembler::lessUnsigned, true, Assembler::pt, OK1);
a61af66fc99e Initial load
duke
parents:
diff changeset
694 delayed()->sub(Resp, frame::memory_parameter_word_sp_offset * wordSize, Resp);
a61af66fc99e Initial load
duke
parents:
diff changeset
695 stop("too many pops: Lesp points into monitor area");
a61af66fc99e Initial load
duke
parents:
diff changeset
696 bind(OK1);
a61af66fc99e Initial load
duke
parents:
diff changeset
697 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
698 sub(Resp, STACK_BIAS, Resp);
a61af66fc99e Initial load
duke
parents:
diff changeset
699 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
700 cmp(Resp, SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
701 brx(Assembler::greaterEqualUnsigned, false, Assembler::pt, OK2);
a61af66fc99e Initial load
duke
parents:
diff changeset
702 delayed()->add(Resp, STACK_BIAS + frame::memory_parameter_word_sp_offset * wordSize, Resp);
a61af66fc99e Initial load
duke
parents:
diff changeset
703 stop("too many pushes: Lesp points into register window");
a61af66fc99e Initial load
duke
parents:
diff changeset
704 bind(OK2);
a61af66fc99e Initial load
duke
parents:
diff changeset
705 }
a61af66fc99e Initial load
duke
parents:
diff changeset
706 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
707
a61af66fc99e Initial load
duke
parents:
diff changeset
708 // Load compiled (i2c) or interpreter entry when calling from interpreted and
a61af66fc99e Initial load
duke
parents:
diff changeset
709 // do the call. Centralized so that all interpreter calls will do the same actions.
a61af66fc99e Initial load
duke
parents:
diff changeset
710 // If jvmti single stepping is on for a thread we must not call compiled code.
a61af66fc99e Initial load
duke
parents:
diff changeset
711 void InterpreterMacroAssembler::call_from_interpreter(Register target, Register scratch, Register Rret) {
a61af66fc99e Initial load
duke
parents:
diff changeset
712
a61af66fc99e Initial load
duke
parents:
diff changeset
713 // Assume we want to go compiled if available
a61af66fc99e Initial load
duke
parents:
diff changeset
714
a61af66fc99e Initial load
duke
parents:
diff changeset
715 ld_ptr(G5_method, in_bytes(methodOopDesc::from_interpreted_offset()), target);
a61af66fc99e Initial load
duke
parents:
diff changeset
716
a61af66fc99e Initial load
duke
parents:
diff changeset
717 if (JvmtiExport::can_post_interpreter_events()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
718 // JVMTI events, such as single-stepping, are implemented partly by avoiding running
a61af66fc99e Initial load
duke
parents:
diff changeset
719 // compiled code in threads for which the event is enabled. Check here for
a61af66fc99e Initial load
duke
parents:
diff changeset
720 // interp_only_mode if these events CAN be enabled.
a61af66fc99e Initial load
duke
parents:
diff changeset
721 verify_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
722 Label skip_compiled_code;
a61af66fc99e Initial load
duke
parents:
diff changeset
723
a61af66fc99e Initial load
duke
parents:
diff changeset
724 const Address interp_only (G2_thread, 0, in_bytes(JavaThread::interp_only_mode_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
725
a61af66fc99e Initial load
duke
parents:
diff changeset
726 ld(interp_only, scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
727 tst(scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
728 br(Assembler::notZero, true, Assembler::pn, skip_compiled_code);
a61af66fc99e Initial load
duke
parents:
diff changeset
729 delayed()->ld_ptr(G5_method, in_bytes(methodOopDesc::interpreter_entry_offset()), target);
a61af66fc99e Initial load
duke
parents:
diff changeset
730 bind(skip_compiled_code);
a61af66fc99e Initial load
duke
parents:
diff changeset
731 }
a61af66fc99e Initial load
duke
parents:
diff changeset
732
a61af66fc99e Initial load
duke
parents:
diff changeset
733 // the i2c_adapters need methodOop in G5_method (right? %%%)
a61af66fc99e Initial load
duke
parents:
diff changeset
734 // do the call
a61af66fc99e Initial load
duke
parents:
diff changeset
735 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
736 {
a61af66fc99e Initial load
duke
parents:
diff changeset
737 Label ok;
a61af66fc99e Initial load
duke
parents:
diff changeset
738 br_notnull(target, false, Assembler::pt, ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
739 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
740 stop("null entry point");
a61af66fc99e Initial load
duke
parents:
diff changeset
741 bind(ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
742 }
a61af66fc99e Initial load
duke
parents:
diff changeset
743 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
744
a61af66fc99e Initial load
duke
parents:
diff changeset
745 // Adjust Rret first so Llast_SP can be same as Rret
a61af66fc99e Initial load
duke
parents:
diff changeset
746 add(Rret, -frame::pc_return_offset, O7);
a61af66fc99e Initial load
duke
parents:
diff changeset
747 add(Lesp, BytesPerWord, Gargs); // setup parameter pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
748 // Record SP so we can remove any stack space allocated by adapter transition
a61af66fc99e Initial load
duke
parents:
diff changeset
749 jmp(target, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
750 delayed()->mov(SP, Llast_SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
751 }
a61af66fc99e Initial load
duke
parents:
diff changeset
752
a61af66fc99e Initial load
duke
parents:
diff changeset
753 void InterpreterMacroAssembler::if_cmp(Condition cc, bool ptr_compare) {
a61af66fc99e Initial load
duke
parents:
diff changeset
754 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
755
a61af66fc99e Initial load
duke
parents:
diff changeset
756 Label not_taken;
a61af66fc99e Initial load
duke
parents:
diff changeset
757 if (ptr_compare) brx(cc, false, Assembler::pn, not_taken);
a61af66fc99e Initial load
duke
parents:
diff changeset
758 else br (cc, false, Assembler::pn, not_taken);
a61af66fc99e Initial load
duke
parents:
diff changeset
759 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
760
a61af66fc99e Initial load
duke
parents:
diff changeset
761 TemplateTable::branch(false,false);
a61af66fc99e Initial load
duke
parents:
diff changeset
762
a61af66fc99e Initial load
duke
parents:
diff changeset
763 bind(not_taken);
a61af66fc99e Initial load
duke
parents:
diff changeset
764
a61af66fc99e Initial load
duke
parents:
diff changeset
765 profile_not_taken_branch(G3_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
766 }
a61af66fc99e Initial load
duke
parents:
diff changeset
767
a61af66fc99e Initial load
duke
parents:
diff changeset
768
a61af66fc99e Initial load
duke
parents:
diff changeset
769 void InterpreterMacroAssembler::get_2_byte_integer_at_bcp(
a61af66fc99e Initial load
duke
parents:
diff changeset
770 int bcp_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
771 Register Rtmp,
a61af66fc99e Initial load
duke
parents:
diff changeset
772 Register Rdst,
a61af66fc99e Initial load
duke
parents:
diff changeset
773 signedOrNot is_signed,
a61af66fc99e Initial load
duke
parents:
diff changeset
774 setCCOrNot should_set_CC ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
775 assert(Rtmp != Rdst, "need separate temp register");
a61af66fc99e Initial load
duke
parents:
diff changeset
776 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
777 switch (is_signed) {
a61af66fc99e Initial load
duke
parents:
diff changeset
778 default: ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
779
a61af66fc99e Initial load
duke
parents:
diff changeset
780 case Signed: ldsb( Lbcp, bcp_offset, Rdst ); break; // high byte
a61af66fc99e Initial load
duke
parents:
diff changeset
781 case Unsigned: ldub( Lbcp, bcp_offset, Rdst ); break; // high byte
a61af66fc99e Initial load
duke
parents:
diff changeset
782 }
a61af66fc99e Initial load
duke
parents:
diff changeset
783 ldub( Lbcp, bcp_offset + 1, Rtmp ); // low byte
a61af66fc99e Initial load
duke
parents:
diff changeset
784 sll( Rdst, BitsPerByte, Rdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
785 switch (should_set_CC ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
786 default: ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
787
a61af66fc99e Initial load
duke
parents:
diff changeset
788 case set_CC: orcc( Rdst, Rtmp, Rdst ); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
789 case dont_set_CC: or3( Rdst, Rtmp, Rdst ); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
790 }
a61af66fc99e Initial load
duke
parents:
diff changeset
791 }
a61af66fc99e Initial load
duke
parents:
diff changeset
792
a61af66fc99e Initial load
duke
parents:
diff changeset
793
a61af66fc99e Initial load
duke
parents:
diff changeset
794 void InterpreterMacroAssembler::get_4_byte_integer_at_bcp(
a61af66fc99e Initial load
duke
parents:
diff changeset
795 int bcp_offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
796 Register Rtmp,
a61af66fc99e Initial load
duke
parents:
diff changeset
797 Register Rdst,
a61af66fc99e Initial load
duke
parents:
diff changeset
798 setCCOrNot should_set_CC ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
799 assert(Rtmp != Rdst, "need separate temp register");
a61af66fc99e Initial load
duke
parents:
diff changeset
800 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
801 add( Lbcp, bcp_offset, Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
802 andcc( Rtmp, 3, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
803 Label aligned;
a61af66fc99e Initial load
duke
parents:
diff changeset
804 switch (should_set_CC ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
805 default: ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
806
a61af66fc99e Initial load
duke
parents:
diff changeset
807 case set_CC: break;
a61af66fc99e Initial load
duke
parents:
diff changeset
808 case dont_set_CC: break;
a61af66fc99e Initial load
duke
parents:
diff changeset
809 }
a61af66fc99e Initial load
duke
parents:
diff changeset
810
a61af66fc99e Initial load
duke
parents:
diff changeset
811 br(Assembler::zero, true, Assembler::pn, aligned);
a61af66fc99e Initial load
duke
parents:
diff changeset
812 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
813 delayed()->ldsw(Rtmp, 0, Rdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
814 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
815 delayed()->ld(Rtmp, 0, Rdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
816 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
817
a61af66fc99e Initial load
duke
parents:
diff changeset
818 ldub(Lbcp, bcp_offset + 3, Rdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
819 ldub(Lbcp, bcp_offset + 2, Rtmp); sll(Rtmp, 8, Rtmp); or3(Rtmp, Rdst, Rdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
820 ldub(Lbcp, bcp_offset + 1, Rtmp); sll(Rtmp, 16, Rtmp); or3(Rtmp, Rdst, Rdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
821 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
822 ldsb(Lbcp, bcp_offset + 0, Rtmp); sll(Rtmp, 24, Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
823 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
824 // Unsigned load is faster than signed on some implementations
a61af66fc99e Initial load
duke
parents:
diff changeset
825 ldub(Lbcp, bcp_offset + 0, Rtmp); sll(Rtmp, 24, Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
826 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
827 or3(Rtmp, Rdst, Rdst );
a61af66fc99e Initial load
duke
parents:
diff changeset
828
a61af66fc99e Initial load
duke
parents:
diff changeset
829 bind(aligned);
a61af66fc99e Initial load
duke
parents:
diff changeset
830 if (should_set_CC == set_CC) tst(Rdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
831 }
a61af66fc99e Initial load
duke
parents:
diff changeset
832
a61af66fc99e Initial load
duke
parents:
diff changeset
833
a61af66fc99e Initial load
duke
parents:
diff changeset
834 void InterpreterMacroAssembler::get_cache_and_index_at_bcp(Register cache, Register tmp, int bcp_offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
835 assert(bcp_offset > 0, "bcp is still pointing to start of bytecode");
a61af66fc99e Initial load
duke
parents:
diff changeset
836 assert_different_registers(cache, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
837 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
838 get_2_byte_integer_at_bcp(bcp_offset, cache, tmp, Unsigned);
a61af66fc99e Initial load
duke
parents:
diff changeset
839 // convert from field index to ConstantPoolCacheEntry index
a61af66fc99e Initial load
duke
parents:
diff changeset
840 // and from word index to byte offset
a61af66fc99e Initial load
duke
parents:
diff changeset
841 sll(tmp, exact_log2(in_words(ConstantPoolCacheEntry::size()) * BytesPerWord), tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
842 add(LcpoolCache, tmp, cache);
a61af66fc99e Initial load
duke
parents:
diff changeset
843 }
a61af66fc99e Initial load
duke
parents:
diff changeset
844
a61af66fc99e Initial load
duke
parents:
diff changeset
845
a61af66fc99e Initial load
duke
parents:
diff changeset
846 void InterpreterMacroAssembler::get_cache_entry_pointer_at_bcp(Register cache, Register tmp, int bcp_offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
847 assert(bcp_offset > 0, "bcp is still pointing to start of bytecode");
a61af66fc99e Initial load
duke
parents:
diff changeset
848 assert_different_registers(cache, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
849 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
850 get_2_byte_integer_at_bcp(bcp_offset, cache, tmp, Unsigned);
a61af66fc99e Initial load
duke
parents:
diff changeset
851 // convert from field index to ConstantPoolCacheEntry index
a61af66fc99e Initial load
duke
parents:
diff changeset
852 // and from word index to byte offset
a61af66fc99e Initial load
duke
parents:
diff changeset
853 sll(tmp, exact_log2(in_words(ConstantPoolCacheEntry::size()) * BytesPerWord), tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
854 // skip past the header
a61af66fc99e Initial load
duke
parents:
diff changeset
855 add(tmp, in_bytes(constantPoolCacheOopDesc::base_offset()), tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
856 // construct pointer to cache entry
a61af66fc99e Initial load
duke
parents:
diff changeset
857 add(LcpoolCache, tmp, cache);
a61af66fc99e Initial load
duke
parents:
diff changeset
858 }
a61af66fc99e Initial load
duke
parents:
diff changeset
859
a61af66fc99e Initial load
duke
parents:
diff changeset
860
a61af66fc99e Initial load
duke
parents:
diff changeset
861 // Generate a subtype check: branch to ok_is_subtype if sub_klass is
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
862 // a subtype of super_klass. Blows registers Rsuper_klass, Rsub_klass, tmp1, tmp2.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
863 void InterpreterMacroAssembler::gen_subtype_check(Register Rsub_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
864 Register Rsuper_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
865 Register Rtmp1,
a61af66fc99e Initial load
duke
parents:
diff changeset
866 Register Rtmp2,
a61af66fc99e Initial load
duke
parents:
diff changeset
867 Register Rtmp3,
a61af66fc99e Initial load
duke
parents:
diff changeset
868 Label &ok_is_subtype ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
869 Label not_subtype, loop;
a61af66fc99e Initial load
duke
parents:
diff changeset
870
a61af66fc99e Initial load
duke
parents:
diff changeset
871 // Profile the not-null value's klass.
a61af66fc99e Initial load
duke
parents:
diff changeset
872 profile_typecheck(Rsub_klass, Rtmp1);
a61af66fc99e Initial load
duke
parents:
diff changeset
873
a61af66fc99e Initial load
duke
parents:
diff changeset
874 // Load the super-klass's check offset into Rtmp1
a61af66fc99e Initial load
duke
parents:
diff changeset
875 ld( Rsuper_klass, sizeof(oopDesc) + Klass::super_check_offset_offset_in_bytes(), Rtmp1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
876 // Load from the sub-klass's super-class display list, or a 1-word cache of
a61af66fc99e Initial load
duke
parents:
diff changeset
877 // the secondary superclass list, or a failing value with a sentinel offset
a61af66fc99e Initial load
duke
parents:
diff changeset
878 // if the super-klass is an interface or exceptionally deep in the Java
a61af66fc99e Initial load
duke
parents:
diff changeset
879 // hierarchy and we have to scan the secondary superclass list the hard way.
a61af66fc99e Initial load
duke
parents:
diff changeset
880 ld_ptr( Rsub_klass, Rtmp1, Rtmp2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
881 // See if we get an immediate positive hit
a61af66fc99e Initial load
duke
parents:
diff changeset
882 cmp( Rtmp2, Rsuper_klass );
a61af66fc99e Initial load
duke
parents:
diff changeset
883 brx( Assembler::equal, false, Assembler::pt, ok_is_subtype );
a61af66fc99e Initial load
duke
parents:
diff changeset
884 // In the delay slot, check for immediate negative hit
a61af66fc99e Initial load
duke
parents:
diff changeset
885 delayed()->cmp( Rtmp1, sizeof(oopDesc) + Klass::secondary_super_cache_offset_in_bytes() );
a61af66fc99e Initial load
duke
parents:
diff changeset
886 br( Assembler::notEqual, false, Assembler::pt, not_subtype );
a61af66fc99e Initial load
duke
parents:
diff changeset
887 // In the delay slot, check for self
a61af66fc99e Initial load
duke
parents:
diff changeset
888 delayed()->cmp( Rsub_klass, Rsuper_klass );
a61af66fc99e Initial load
duke
parents:
diff changeset
889 brx( Assembler::equal, false, Assembler::pt, ok_is_subtype );
a61af66fc99e Initial load
duke
parents:
diff changeset
890
a61af66fc99e Initial load
duke
parents:
diff changeset
891 // Now do a linear scan of the secondary super-klass chain.
a61af66fc99e Initial load
duke
parents:
diff changeset
892 delayed()->ld_ptr( Rsub_klass, sizeof(oopDesc) + Klass::secondary_supers_offset_in_bytes(), Rtmp2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
893
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
894 // compress superclass
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
895 if (UseCompressedOops) encode_heap_oop(Rsuper_klass);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
896
0
a61af66fc99e Initial load
duke
parents:
diff changeset
897 // Rtmp2 holds the objArrayOop of secondary supers.
a61af66fc99e Initial load
duke
parents:
diff changeset
898 ld( Rtmp2, arrayOopDesc::length_offset_in_bytes(), Rtmp1 );// Load the array length
a61af66fc99e Initial load
duke
parents:
diff changeset
899 // Check for empty secondary super list
a61af66fc99e Initial load
duke
parents:
diff changeset
900 tst(Rtmp1);
a61af66fc99e Initial load
duke
parents:
diff changeset
901
a61af66fc99e Initial load
duke
parents:
diff changeset
902 // Top of search loop
a61af66fc99e Initial load
duke
parents:
diff changeset
903 bind( loop );
a61af66fc99e Initial load
duke
parents:
diff changeset
904 br( Assembler::equal, false, Assembler::pn, not_subtype );
a61af66fc99e Initial load
duke
parents:
diff changeset
905 delayed()->nop();
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
906
0
a61af66fc99e Initial load
duke
parents:
diff changeset
907 // load next super to check
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
908 if (UseCompressedOops) {
422
05db98ed59ba 6760773: UseCompressedOops is broken with UseParNewGC
coleenp
parents: 196
diff changeset
909 lduw( Rtmp2, arrayOopDesc::base_offset_in_bytes(T_OBJECT), Rtmp3);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
910 // Bump array pointer forward one oop
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
911 add( Rtmp2, 4, Rtmp2 );
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
912 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
913 ld_ptr( Rtmp2, arrayOopDesc::base_offset_in_bytes(T_OBJECT), Rtmp3);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
914 // Bump array pointer forward one oop
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
915 add( Rtmp2, wordSize, Rtmp2);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
916 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
917 // Look for Rsuper_klass on Rsub_klass's secondary super-class-overflow list
a61af66fc99e Initial load
duke
parents:
diff changeset
918 cmp( Rtmp3, Rsuper_klass );
a61af66fc99e Initial load
duke
parents:
diff changeset
919 // A miss means we are NOT a subtype and need to keep looping
a61af66fc99e Initial load
duke
parents:
diff changeset
920 brx( Assembler::notEqual, false, Assembler::pt, loop );
a61af66fc99e Initial load
duke
parents:
diff changeset
921 delayed()->deccc( Rtmp1 ); // dec trip counter in delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
922 // Falling out the bottom means we found a hit; we ARE a subtype
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
923 if (UseCompressedOops) decode_heap_oop(Rsuper_klass);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
924 br( Assembler::always, false, Assembler::pt, ok_is_subtype );
a61af66fc99e Initial load
duke
parents:
diff changeset
925 // Update the cache
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
926 delayed()->st_ptr( Rsuper_klass, Rsub_klass,
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
927 sizeof(oopDesc) + Klass::secondary_super_cache_offset_in_bytes() );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
928
a61af66fc99e Initial load
duke
parents:
diff changeset
929 bind(not_subtype);
a61af66fc99e Initial load
duke
parents:
diff changeset
930 profile_typecheck_failed(Rtmp1);
a61af66fc99e Initial load
duke
parents:
diff changeset
931 }
a61af66fc99e Initial load
duke
parents:
diff changeset
932
a61af66fc99e Initial load
duke
parents:
diff changeset
933 // Separate these two to allow for delay slot in middle
a61af66fc99e Initial load
duke
parents:
diff changeset
934 // These are used to do a test and full jump to exception-throwing code.
a61af66fc99e Initial load
duke
parents:
diff changeset
935
a61af66fc99e Initial load
duke
parents:
diff changeset
936 // %%%%% Could possibly reoptimize this by testing to see if could use
a61af66fc99e Initial load
duke
parents:
diff changeset
937 // a single conditional branch (i.e. if span is small enough.
a61af66fc99e Initial load
duke
parents:
diff changeset
938 // If you go that route, than get rid of the split and give up
a61af66fc99e Initial load
duke
parents:
diff changeset
939 // on the delay-slot hack.
a61af66fc99e Initial load
duke
parents:
diff changeset
940
a61af66fc99e Initial load
duke
parents:
diff changeset
941 void InterpreterMacroAssembler::throw_if_not_1_icc( Condition ok_condition,
a61af66fc99e Initial load
duke
parents:
diff changeset
942 Label& ok ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
943 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
944 br(ok_condition, true, pt, ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
945 // DELAY SLOT
a61af66fc99e Initial load
duke
parents:
diff changeset
946 }
a61af66fc99e Initial load
duke
parents:
diff changeset
947
a61af66fc99e Initial load
duke
parents:
diff changeset
948 void InterpreterMacroAssembler::throw_if_not_1_xcc( Condition ok_condition,
a61af66fc99e Initial load
duke
parents:
diff changeset
949 Label& ok ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
950 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
951 bp( ok_condition, true, Assembler::xcc, pt, ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
952 // DELAY SLOT
a61af66fc99e Initial load
duke
parents:
diff changeset
953 }
a61af66fc99e Initial load
duke
parents:
diff changeset
954
a61af66fc99e Initial load
duke
parents:
diff changeset
955 void InterpreterMacroAssembler::throw_if_not_1_x( Condition ok_condition,
a61af66fc99e Initial load
duke
parents:
diff changeset
956 Label& ok ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
957 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
958 brx(ok_condition, true, pt, ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
959 // DELAY SLOT
a61af66fc99e Initial load
duke
parents:
diff changeset
960 }
a61af66fc99e Initial load
duke
parents:
diff changeset
961
a61af66fc99e Initial load
duke
parents:
diff changeset
962 void InterpreterMacroAssembler::throw_if_not_2( address throw_entry_point,
a61af66fc99e Initial load
duke
parents:
diff changeset
963 Register Rscratch,
a61af66fc99e Initial load
duke
parents:
diff changeset
964 Label& ok ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
965 assert(throw_entry_point != NULL, "entry point must be generated by now");
a61af66fc99e Initial load
duke
parents:
diff changeset
966 Address dest(Rscratch, throw_entry_point);
a61af66fc99e Initial load
duke
parents:
diff changeset
967 jump_to(dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
968 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
969 bind(ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
970 }
a61af66fc99e Initial load
duke
parents:
diff changeset
971
a61af66fc99e Initial load
duke
parents:
diff changeset
972
a61af66fc99e Initial load
duke
parents:
diff changeset
973 // And if you cannot use the delay slot, here is a shorthand:
a61af66fc99e Initial load
duke
parents:
diff changeset
974
a61af66fc99e Initial load
duke
parents:
diff changeset
975 void InterpreterMacroAssembler::throw_if_not_icc( Condition ok_condition,
a61af66fc99e Initial load
duke
parents:
diff changeset
976 address throw_entry_point,
a61af66fc99e Initial load
duke
parents:
diff changeset
977 Register Rscratch ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
978 Label ok;
a61af66fc99e Initial load
duke
parents:
diff changeset
979 if (ok_condition != never) {
a61af66fc99e Initial load
duke
parents:
diff changeset
980 throw_if_not_1_icc( ok_condition, ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
981 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
982 }
a61af66fc99e Initial load
duke
parents:
diff changeset
983 throw_if_not_2( throw_entry_point, Rscratch, ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
984 }
a61af66fc99e Initial load
duke
parents:
diff changeset
985 void InterpreterMacroAssembler::throw_if_not_xcc( Condition ok_condition,
a61af66fc99e Initial load
duke
parents:
diff changeset
986 address throw_entry_point,
a61af66fc99e Initial load
duke
parents:
diff changeset
987 Register Rscratch ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
988 Label ok;
a61af66fc99e Initial load
duke
parents:
diff changeset
989 if (ok_condition != never) {
a61af66fc99e Initial load
duke
parents:
diff changeset
990 throw_if_not_1_xcc( ok_condition, ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
991 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
992 }
a61af66fc99e Initial load
duke
parents:
diff changeset
993 throw_if_not_2( throw_entry_point, Rscratch, ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
994 }
a61af66fc99e Initial load
duke
parents:
diff changeset
995 void InterpreterMacroAssembler::throw_if_not_x( Condition ok_condition,
a61af66fc99e Initial load
duke
parents:
diff changeset
996 address throw_entry_point,
a61af66fc99e Initial load
duke
parents:
diff changeset
997 Register Rscratch ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
998 Label ok;
a61af66fc99e Initial load
duke
parents:
diff changeset
999 if (ok_condition != never) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 throw_if_not_1_x( ok_condition, ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 throw_if_not_2( throw_entry_point, Rscratch, ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1005
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 // Check that index is in range for array, then shift index by index_shift, and put arrayOop + shifted_index into res
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 // Note: res is still shy of address by array offset into object.
a61af66fc99e Initial load
duke
parents:
diff changeset
1008
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 void InterpreterMacroAssembler::index_check_without_pop(Register array, Register index, int index_shift, Register tmp, Register res) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
1011
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 verify_oop(array);
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 // sign extend since tos (index) can be a 32bit value
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 sra(index, G0, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 #endif // _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1017
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 // check array
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 Label ptr_ok;
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 tst(array);
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 throw_if_not_1_x( notZero, ptr_ok );
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 delayed()->ld( array, arrayOopDesc::length_offset_in_bytes(), tmp ); // check index
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 throw_if_not_2( Interpreter::_throw_NullPointerException_entry, G3_scratch, ptr_ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
1024
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 Label index_ok;
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 cmp(index, tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 throw_if_not_1_icc( lessUnsigned, index_ok );
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 if (index_shift > 0) delayed()->sll(index, index_shift, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 else delayed()->add(array, index, res); // addr - const offset in index
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 // convention: move aberrant index into G3_scratch for exception message
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 mov(index, G3_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 throw_if_not_2( Interpreter::_throw_ArrayIndexOutOfBoundsException_entry, G4_scratch, index_ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
1033
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 // add offset if didn't do it in delay slot
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 if (index_shift > 0) add(array, index, res); // addr - const offset in index
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1037
a61af66fc99e Initial load
duke
parents:
diff changeset
1038
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 void InterpreterMacroAssembler::index_check(Register array, Register index, int index_shift, Register tmp, Register res) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
1041
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 // pop array
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 pop_ptr(array);
a61af66fc99e Initial load
duke
parents:
diff changeset
1044
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 // check array
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 index_check_without_pop(array, index, index_shift, tmp, res);
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1048
a61af66fc99e Initial load
duke
parents:
diff changeset
1049
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 void InterpreterMacroAssembler::get_constant_pool(Register Rdst) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 ld_ptr(Lmethod, in_bytes(methodOopDesc::constants_offset()), Rdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1053
a61af66fc99e Initial load
duke
parents:
diff changeset
1054
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 void InterpreterMacroAssembler::get_constant_pool_cache(Register Rdst) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 get_constant_pool(Rdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 ld_ptr(Rdst, constantPoolOopDesc::cache_offset_in_bytes(), Rdst);
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1059
a61af66fc99e Initial load
duke
parents:
diff changeset
1060
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 void InterpreterMacroAssembler::get_cpool_and_tags(Register Rcpool, Register Rtags) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 get_constant_pool(Rcpool);
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 ld_ptr(Rcpool, constantPoolOopDesc::tags_offset_in_bytes(), Rtags);
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1065
a61af66fc99e Initial load
duke
parents:
diff changeset
1066
a61af66fc99e Initial load
duke
parents:
diff changeset
1067 // unlock if synchronized method
a61af66fc99e Initial load
duke
parents:
diff changeset
1068 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 // Unlock the receiver if this is a synchronized method.
a61af66fc99e Initial load
duke
parents:
diff changeset
1070 // Unlock any Java monitors from syncronized blocks.
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 // If there are locked Java monitors
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 // If throw_monitor_exception
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 // throws IllegalMonitorStateException
a61af66fc99e Initial load
duke
parents:
diff changeset
1075 // Else if install_monitor_exception
a61af66fc99e Initial load
duke
parents:
diff changeset
1076 // installs IllegalMonitorStateException
a61af66fc99e Initial load
duke
parents:
diff changeset
1077 // Else
a61af66fc99e Initial load
duke
parents:
diff changeset
1078 // no error processing
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 void InterpreterMacroAssembler::unlock_if_synchronized_method(TosState state,
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 bool throw_monitor_exception,
a61af66fc99e Initial load
duke
parents:
diff changeset
1081 bool install_monitor_exception) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1082 Label unlocked, unlock, no_unlock;
a61af66fc99e Initial load
duke
parents:
diff changeset
1083
a61af66fc99e Initial load
duke
parents:
diff changeset
1084 // get the value of _do_not_unlock_if_synchronized into G1_scratch
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 const Address do_not_unlock_if_synchronized(G2_thread, 0,
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 in_bytes(JavaThread::do_not_unlock_if_synchronized_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1087 ldbool(do_not_unlock_if_synchronized, G1_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 stbool(G0, do_not_unlock_if_synchronized); // reset the flag
a61af66fc99e Initial load
duke
parents:
diff changeset
1089
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 // check if synchronized method
a61af66fc99e Initial load
duke
parents:
diff changeset
1091 const Address access_flags(Lmethod, 0, in_bytes(methodOopDesc::access_flags_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 interp_verify_oop(Otos_i, state, __FILE__, __LINE__);
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 push(state); // save tos
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 ld(access_flags, G3_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 btst(JVM_ACC_SYNCHRONIZED, G3_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 br( zero, false, pt, unlocked);
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1098
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 // Don't unlock anything if the _do_not_unlock_if_synchronized flag
a61af66fc99e Initial load
duke
parents:
diff changeset
1100 // is set.
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 tstbool(G1_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 br(Assembler::notZero, false, pn, no_unlock);
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1104
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 // BasicObjectLock will be first in list, since this is a synchronized method. However, need
a61af66fc99e Initial load
duke
parents:
diff changeset
1106 // to check that the object has not been unlocked by an explicit monitorexit bytecode.
a61af66fc99e Initial load
duke
parents:
diff changeset
1107
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 //Intel: if (throw_monitor_exception) ... else ...
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 // Entry already unlocked, need to throw exception
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 //...
a61af66fc99e Initial load
duke
parents:
diff changeset
1111
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 // pass top-most monitor elem
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 add( top_most_monitor(), O1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
1114
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 ld_ptr(O1, BasicObjectLock::obj_offset_in_bytes(), G3_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 br_notnull(G3_scratch, false, pt, unlock);
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1118
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 if (throw_monitor_exception) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 // Entry already unlocked need to throw an exception
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 MacroAssembler::call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_illegal_monitor_state_exception));
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 should_not_reach_here();
a61af66fc99e Initial load
duke
parents:
diff changeset
1123 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 // Monitor already unlocked during a stack unroll.
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 // If requested, install an illegal_monitor_state_exception.
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 // Continue with stack unrolling.
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 if (install_monitor_exception) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 MacroAssembler::call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::new_illegal_monitor_state_exception));
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 ba(false, unlocked);
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1133
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 bind(unlock);
a61af66fc99e Initial load
duke
parents:
diff changeset
1135
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 unlock_object(O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1137
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 bind(unlocked);
a61af66fc99e Initial load
duke
parents:
diff changeset
1139
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 // I0, I1: Might contain return value
a61af66fc99e Initial load
duke
parents:
diff changeset
1141
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 // Check that all monitors are unlocked
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 { Label loop, exception, entry, restart;
a61af66fc99e Initial load
duke
parents:
diff changeset
1144
a61af66fc99e Initial load
duke
parents:
diff changeset
1145 Register Rmptr = O0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 Register Rtemp = O1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 Register Rlimit = Lmonitors;
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 const jint delta = frame::interpreter_frame_monitor_size() * wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 assert( (delta & LongAlignmentMask) == 0,
a61af66fc99e Initial load
duke
parents:
diff changeset
1150 "sizeof BasicObjectLock must be even number of doublewords");
a61af66fc99e Initial load
duke
parents:
diff changeset
1151
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 add(top_most_monitor(), Rmptr, delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 { Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 // ensure that Rmptr starts out above (or at) Rlimit
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 cmp(Rmptr, Rlimit);
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 brx(Assembler::greaterEqualUnsigned, false, pn, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 stop("monitor stack has negative size");
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 bind(restart);
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 ba(false, entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 delayed()->
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 add(top_most_monitor(), Rmptr, delta); // points to current entry, starting with bottom-most entry
a61af66fc99e Initial load
duke
parents:
diff changeset
1167
a61af66fc99e Initial load
duke
parents:
diff changeset
1168 // Entry is still locked, need to throw exception
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 bind(exception);
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 if (throw_monitor_exception) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 MacroAssembler::call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::throw_illegal_monitor_state_exception));
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 should_not_reach_here();
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 // Stack unrolling. Unlock object and if requested, install illegal_monitor_exception.
a61af66fc99e Initial load
duke
parents:
diff changeset
1175 // Unlock does not block, so don't have to worry about the frame
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 unlock_object(Rmptr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 if (install_monitor_exception) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 MacroAssembler::call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::new_illegal_monitor_state_exception));
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 ba(false, restart);
a61af66fc99e Initial load
duke
parents:
diff changeset
1181 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1183
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 bind(loop);
a61af66fc99e Initial load
duke
parents:
diff changeset
1185 cmp(Rtemp, G0); // check if current entry is used
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 brx(Assembler::notEqual, false, pn, exception);
a61af66fc99e Initial load
duke
parents:
diff changeset
1187 delayed()->
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 dec(Rmptr, delta); // otherwise advance to next entry
a61af66fc99e Initial load
duke
parents:
diff changeset
1189 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 { Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 // ensure that Rmptr has not somehow stepped below Rlimit
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 cmp(Rmptr, Rlimit);
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 brx(Assembler::greaterEqualUnsigned, false, pn, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 stop("ran off the end of the monitor stack");
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 bind(entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 cmp(Rmptr, Rlimit); // check if bottom reached
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 brx(Assembler::notEqual, true, pn, loop); // if not at bottom then check this entry
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 delayed()->
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 ld_ptr(Rmptr, BasicObjectLock::obj_offset_in_bytes() - delta, Rtemp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1205
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 bind(no_unlock);
a61af66fc99e Initial load
duke
parents:
diff changeset
1207 pop(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 interp_verify_oop(Otos_i, state, __FILE__, __LINE__);
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1210
a61af66fc99e Initial load
duke
parents:
diff changeset
1211
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 // remove activation
a61af66fc99e Initial load
duke
parents:
diff changeset
1213 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1214 // Unlock the receiver if this is a synchronized method.
a61af66fc99e Initial load
duke
parents:
diff changeset
1215 // Unlock any Java monitors from syncronized blocks.
a61af66fc99e Initial load
duke
parents:
diff changeset
1216 // Remove the activation from the stack.
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1218 // If there are locked Java monitors
a61af66fc99e Initial load
duke
parents:
diff changeset
1219 // If throw_monitor_exception
a61af66fc99e Initial load
duke
parents:
diff changeset
1220 // throws IllegalMonitorStateException
a61af66fc99e Initial load
duke
parents:
diff changeset
1221 // Else if install_monitor_exception
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 // installs IllegalMonitorStateException
a61af66fc99e Initial load
duke
parents:
diff changeset
1223 // Else
a61af66fc99e Initial load
duke
parents:
diff changeset
1224 // no error processing
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 void InterpreterMacroAssembler::remove_activation(TosState state,
a61af66fc99e Initial load
duke
parents:
diff changeset
1226 bool throw_monitor_exception,
a61af66fc99e Initial load
duke
parents:
diff changeset
1227 bool install_monitor_exception) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1228
a61af66fc99e Initial load
duke
parents:
diff changeset
1229 unlock_if_synchronized_method(state, throw_monitor_exception, install_monitor_exception);
a61af66fc99e Initial load
duke
parents:
diff changeset
1230
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 // save result (push state before jvmti call and pop it afterwards) and notify jvmti
a61af66fc99e Initial load
duke
parents:
diff changeset
1232 notify_method_exit(false, state, NotifyJVMTI);
a61af66fc99e Initial load
duke
parents:
diff changeset
1233
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 interp_verify_oop(Otos_i, state, __FILE__, __LINE__);
a61af66fc99e Initial load
duke
parents:
diff changeset
1235 verify_oop(Lmethod);
a61af66fc99e Initial load
duke
parents:
diff changeset
1236 verify_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
1237
a61af66fc99e Initial load
duke
parents:
diff changeset
1238 // return tos
a61af66fc99e Initial load
duke
parents:
diff changeset
1239 assert(Otos_l1 == Otos_i, "adjust code below");
a61af66fc99e Initial load
duke
parents:
diff changeset
1240 switch (state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1242 case ltos: mov(Otos_l, Otos_l->after_save()); break; // O0 -> I0
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1244 case ltos: mov(Otos_l2, Otos_l2->after_save()); // fall through // O1 -> I1
a61af66fc99e Initial load
duke
parents:
diff changeset
1245 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1246 case btos: // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
1247 case ctos:
a61af66fc99e Initial load
duke
parents:
diff changeset
1248 case stos: // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
1249 case atos: // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
1250 case itos: mov(Otos_l1, Otos_l1->after_save()); break; // O0 -> I0
a61af66fc99e Initial load
duke
parents:
diff changeset
1251 case ftos: // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
1252 case dtos: // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
1253 case vtos: /* nothing to do */ break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1254 default : ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
1255 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1256
a61af66fc99e Initial load
duke
parents:
diff changeset
1257 #if defined(COMPILER2) && !defined(_LP64)
a61af66fc99e Initial load
duke
parents:
diff changeset
1258 if (state == ltos) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 // C2 expects long results in G1 we can't tell if we're returning to interpreted
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 // or compiled so just be safe use G1 and O0/O1
a61af66fc99e Initial load
duke
parents:
diff changeset
1261
a61af66fc99e Initial load
duke
parents:
diff changeset
1262 // Shift bits into high (msb) of G1
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 sllx(Otos_l1->after_save(), 32, G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 // Zero extend low bits
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 srl (Otos_l2->after_save(), 0, Otos_l2->after_save());
a61af66fc99e Initial load
duke
parents:
diff changeset
1266 or3 (Otos_l2->after_save(), G1, G1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1267 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1268 #endif /* COMPILER2 */
a61af66fc99e Initial load
duke
parents:
diff changeset
1269
a61af66fc99e Initial load
duke
parents:
diff changeset
1270 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 #endif /* CC_INTERP */
a61af66fc99e Initial load
duke
parents:
diff changeset
1272
a61af66fc99e Initial load
duke
parents:
diff changeset
1273
a61af66fc99e Initial load
duke
parents:
diff changeset
1274 // Lock object
a61af66fc99e Initial load
duke
parents:
diff changeset
1275 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1276 // Argument - lock_reg points to the BasicObjectLock to be used for locking,
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 // it must be initialized with the object to lock
a61af66fc99e Initial load
duke
parents:
diff changeset
1278 void InterpreterMacroAssembler::lock_object(Register lock_reg, Register Object) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1279 if (UseHeavyMonitors) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1280 call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::monitorenter), lock_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1281 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1283 Register obj_reg = Object;
a61af66fc99e Initial load
duke
parents:
diff changeset
1284 Register mark_reg = G4_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
1285 Register temp_reg = G1_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
1286 Address lock_addr = Address(lock_reg, 0, BasicObjectLock::lock_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
1287 Address mark_addr = Address(obj_reg, 0, oopDesc::mark_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
1288 Label done;
a61af66fc99e Initial load
duke
parents:
diff changeset
1289
a61af66fc99e Initial load
duke
parents:
diff changeset
1290 Label slow_case;
a61af66fc99e Initial load
duke
parents:
diff changeset
1291
a61af66fc99e Initial load
duke
parents:
diff changeset
1292 assert_different_registers(lock_reg, obj_reg, mark_reg, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1293
a61af66fc99e Initial load
duke
parents:
diff changeset
1294 // load markOop from object into mark_reg
a61af66fc99e Initial load
duke
parents:
diff changeset
1295 ld_ptr(mark_addr, mark_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1296
a61af66fc99e Initial load
duke
parents:
diff changeset
1297 if (UseBiasedLocking) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1298 biased_locking_enter(obj_reg, mark_reg, temp_reg, done, &slow_case);
a61af66fc99e Initial load
duke
parents:
diff changeset
1299 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1300
a61af66fc99e Initial load
duke
parents:
diff changeset
1301 // get the address of basicLock on stack that will be stored in the object
a61af66fc99e Initial load
duke
parents:
diff changeset
1302 // we need a temporary register here as we do not want to clobber lock_reg
a61af66fc99e Initial load
duke
parents:
diff changeset
1303 // (cas clobbers the destination register)
a61af66fc99e Initial load
duke
parents:
diff changeset
1304 mov(lock_reg, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1305 // set mark reg to be (markOop of object | UNLOCK_VALUE)
a61af66fc99e Initial load
duke
parents:
diff changeset
1306 or3(mark_reg, markOopDesc::unlocked_value, mark_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1307 // initialize the box (Must happen before we update the object mark!)
a61af66fc99e Initial load
duke
parents:
diff changeset
1308 st_ptr(mark_reg, lock_addr, BasicLock::displaced_header_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
1309 // compare and exchange object_addr, markOop | 1, stack address of basicLock
a61af66fc99e Initial load
duke
parents:
diff changeset
1310 assert(mark_addr.disp() == 0, "cas must take a zero displacement");
a61af66fc99e Initial load
duke
parents:
diff changeset
1311 casx_under_lock(mark_addr.base(), mark_reg, temp_reg,
a61af66fc99e Initial load
duke
parents:
diff changeset
1312 (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
1313
a61af66fc99e Initial load
duke
parents:
diff changeset
1314 // if the compare and exchange succeeded we are done (we saw an unlocked object)
a61af66fc99e Initial load
duke
parents:
diff changeset
1315 cmp(mark_reg, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1316 brx(Assembler::equal, true, Assembler::pt, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
1317 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1318
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 // We did not see an unlocked object so try the fast recursive case
a61af66fc99e Initial load
duke
parents:
diff changeset
1320
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 // Check if owner is self by comparing the value in the markOop of object
a61af66fc99e Initial load
duke
parents:
diff changeset
1322 // with the stack pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
1323 sub(temp_reg, SP, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1325 sub(temp_reg, STACK_BIAS, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1327 assert(os::vm_page_size() > 0xfff, "page size too small - change the constant");
a61af66fc99e Initial load
duke
parents:
diff changeset
1328
a61af66fc99e Initial load
duke
parents:
diff changeset
1329 // Composite "andcc" test:
a61af66fc99e Initial load
duke
parents:
diff changeset
1330 // (a) %sp -vs- markword proximity check, and,
a61af66fc99e Initial load
duke
parents:
diff changeset
1331 // (b) verify mark word LSBs == 0 (Stack-locked).
a61af66fc99e Initial load
duke
parents:
diff changeset
1332 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1333 // FFFFF003/FFFFFFFFFFFF003 is (markOopDesc::lock_mask_in_place | -os::vm_page_size())
a61af66fc99e Initial load
duke
parents:
diff changeset
1334 // Note that the page size used for %sp proximity testing is arbitrary and is
a61af66fc99e Initial load
duke
parents:
diff changeset
1335 // unrelated to the actual MMU page size. We use a 'logical' page size of
a61af66fc99e Initial load
duke
parents:
diff changeset
1336 // 4096 bytes. F..FFF003 is designed to fit conveniently in the SIMM13 immediate
a61af66fc99e Initial load
duke
parents:
diff changeset
1337 // field of the andcc instruction.
a61af66fc99e Initial load
duke
parents:
diff changeset
1338 andcc (temp_reg, 0xFFFFF003, G0) ;
a61af66fc99e Initial load
duke
parents:
diff changeset
1339
a61af66fc99e Initial load
duke
parents:
diff changeset
1340 // if condition is true we are done and hence we can store 0 in the displaced
a61af66fc99e Initial load
duke
parents:
diff changeset
1341 // header indicating it is a recursive lock and be done
a61af66fc99e Initial load
duke
parents:
diff changeset
1342 brx(Assembler::zero, true, Assembler::pt, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
1343 delayed()->st_ptr(G0, lock_addr, BasicLock::displaced_header_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
1344
a61af66fc99e Initial load
duke
parents:
diff changeset
1345 // none of the above fast optimizations worked so we have to get into the
a61af66fc99e Initial load
duke
parents:
diff changeset
1346 // slow case of monitor enter
a61af66fc99e Initial load
duke
parents:
diff changeset
1347 bind(slow_case);
a61af66fc99e Initial load
duke
parents:
diff changeset
1348 call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::monitorenter), lock_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1349
a61af66fc99e Initial load
duke
parents:
diff changeset
1350 bind(done);
a61af66fc99e Initial load
duke
parents:
diff changeset
1351 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1352 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1353
a61af66fc99e Initial load
duke
parents:
diff changeset
1354 // Unlocks an object. Used in monitorexit bytecode and remove_activation.
a61af66fc99e Initial load
duke
parents:
diff changeset
1355 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1356 // Argument - lock_reg points to the BasicObjectLock for lock
a61af66fc99e Initial load
duke
parents:
diff changeset
1357 // Throw IllegalMonitorException if object is not locked by current thread
a61af66fc99e Initial load
duke
parents:
diff changeset
1358 void InterpreterMacroAssembler::unlock_object(Register lock_reg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1359 if (UseHeavyMonitors) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1360 call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::monitorexit), lock_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1361 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1362 Register obj_reg = G3_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
1363 Register mark_reg = G4_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
1364 Register displaced_header_reg = G1_scratch;
a61af66fc99e Initial load
duke
parents:
diff changeset
1365 Address lock_addr = Address(lock_reg, 0, BasicObjectLock::lock_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
1366 Address lockobj_addr = Address(lock_reg, 0, BasicObjectLock::obj_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
1367 Address mark_addr = Address(obj_reg, 0, oopDesc::mark_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
1368 Label done;
a61af66fc99e Initial load
duke
parents:
diff changeset
1369
a61af66fc99e Initial load
duke
parents:
diff changeset
1370 if (UseBiasedLocking) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1371 // load the object out of the BasicObjectLock
a61af66fc99e Initial load
duke
parents:
diff changeset
1372 ld_ptr(lockobj_addr, obj_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1373 biased_locking_exit(mark_addr, mark_reg, done, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
1374 st_ptr(G0, lockobj_addr); // free entry
a61af66fc99e Initial load
duke
parents:
diff changeset
1375 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1376
a61af66fc99e Initial load
duke
parents:
diff changeset
1377 // Test first if we are in the fast recursive case
a61af66fc99e Initial load
duke
parents:
diff changeset
1378 ld_ptr(lock_addr, displaced_header_reg, BasicLock::displaced_header_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
1379 br_null(displaced_header_reg, true, Assembler::pn, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
1380 delayed()->st_ptr(G0, lockobj_addr); // free entry
a61af66fc99e Initial load
duke
parents:
diff changeset
1381
a61af66fc99e Initial load
duke
parents:
diff changeset
1382 // See if it is still a light weight lock, if so we just unlock
a61af66fc99e Initial load
duke
parents:
diff changeset
1383 // the object and we are done
a61af66fc99e Initial load
duke
parents:
diff changeset
1384
a61af66fc99e Initial load
duke
parents:
diff changeset
1385 if (!UseBiasedLocking) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1386 // load the object out of the BasicObjectLock
a61af66fc99e Initial load
duke
parents:
diff changeset
1387 ld_ptr(lockobj_addr, obj_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1388 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1389
a61af66fc99e Initial load
duke
parents:
diff changeset
1390 // we have the displaced header in displaced_header_reg
a61af66fc99e Initial load
duke
parents:
diff changeset
1391 // we expect to see the stack address of the basicLock in case the
a61af66fc99e Initial load
duke
parents:
diff changeset
1392 // lock is still a light weight lock (lock_reg)
a61af66fc99e Initial load
duke
parents:
diff changeset
1393 assert(mark_addr.disp() == 0, "cas must take a zero displacement");
a61af66fc99e Initial load
duke
parents:
diff changeset
1394 casx_under_lock(mark_addr.base(), lock_reg, displaced_header_reg,
a61af66fc99e Initial load
duke
parents:
diff changeset
1395 (address)StubRoutines::Sparc::atomic_memory_operation_lock_addr());
a61af66fc99e Initial load
duke
parents:
diff changeset
1396 cmp(lock_reg, displaced_header_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1397 brx(Assembler::equal, true, Assembler::pn, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
1398 delayed()->st_ptr(G0, lockobj_addr); // free entry
a61af66fc99e Initial load
duke
parents:
diff changeset
1399
a61af66fc99e Initial load
duke
parents:
diff changeset
1400 // The lock has been converted into a heavy lock and hence
a61af66fc99e Initial load
duke
parents:
diff changeset
1401 // we need to get into the slow case
a61af66fc99e Initial load
duke
parents:
diff changeset
1402
a61af66fc99e Initial load
duke
parents:
diff changeset
1403 call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::monitorexit), lock_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1404
a61af66fc99e Initial load
duke
parents:
diff changeset
1405 bind(done);
a61af66fc99e Initial load
duke
parents:
diff changeset
1406 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1407 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1408
a61af66fc99e Initial load
duke
parents:
diff changeset
1409 #ifndef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
1410
a61af66fc99e Initial load
duke
parents:
diff changeset
1411 // Get the method data pointer from the methodOop and set the
a61af66fc99e Initial load
duke
parents:
diff changeset
1412 // specified register to its value.
a61af66fc99e Initial load
duke
parents:
diff changeset
1413
a61af66fc99e Initial load
duke
parents:
diff changeset
1414 void InterpreterMacroAssembler::set_method_data_pointer_offset(Register Roff) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1415 assert(ProfileInterpreter, "must be profiling interpreter");
a61af66fc99e Initial load
duke
parents:
diff changeset
1416 Label get_continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
1417
a61af66fc99e Initial load
duke
parents:
diff changeset
1418 ld_ptr(Lmethod, in_bytes(methodOopDesc::method_data_offset()), ImethodDataPtr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1419 test_method_data_pointer(get_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1420 add(ImethodDataPtr, in_bytes(methodDataOopDesc::data_offset()), ImethodDataPtr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1421 if (Roff != noreg)
a61af66fc99e Initial load
duke
parents:
diff changeset
1422 // Roff contains a method data index ("mdi"). It defaults to zero.
a61af66fc99e Initial load
duke
parents:
diff changeset
1423 add(ImethodDataPtr, Roff, ImethodDataPtr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1424 bind(get_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1425 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1426
a61af66fc99e Initial load
duke
parents:
diff changeset
1427 // Set the method data pointer for the current bcp.
a61af66fc99e Initial load
duke
parents:
diff changeset
1428
a61af66fc99e Initial load
duke
parents:
diff changeset
1429 void InterpreterMacroAssembler::set_method_data_pointer_for_bcp() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1430 assert(ProfileInterpreter, "must be profiling interpreter");
a61af66fc99e Initial load
duke
parents:
diff changeset
1431 Label zero_continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
1432
a61af66fc99e Initial load
duke
parents:
diff changeset
1433 // Test MDO to avoid the call if it is NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
1434 ld_ptr(Lmethod, in_bytes(methodOopDesc::method_data_offset()), ImethodDataPtr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1435 test_method_data_pointer(zero_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1436 call_VM_leaf(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::bcp_to_di), Lmethod, Lbcp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1437 set_method_data_pointer_offset(O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1438 bind(zero_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1439 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1440
a61af66fc99e Initial load
duke
parents:
diff changeset
1441 // Test ImethodDataPtr. If it is null, continue at the specified label
a61af66fc99e Initial load
duke
parents:
diff changeset
1442
a61af66fc99e Initial load
duke
parents:
diff changeset
1443 void InterpreterMacroAssembler::test_method_data_pointer(Label& zero_continue) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1444 assert(ProfileInterpreter, "must be profiling interpreter");
a61af66fc99e Initial load
duke
parents:
diff changeset
1445 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1446 bpr(Assembler::rc_z, false, Assembler::pn, ImethodDataPtr, zero_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1447 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1448 tst(ImethodDataPtr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1449 br(Assembler::zero, false, Assembler::pn, zero_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1450 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1451 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1452 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1453
a61af66fc99e Initial load
duke
parents:
diff changeset
1454 void InterpreterMacroAssembler::verify_method_data_pointer() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1455 assert(ProfileInterpreter, "must be profiling interpreter");
a61af66fc99e Initial load
duke
parents:
diff changeset
1456 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
1457 Label verify_continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
1458 test_method_data_pointer(verify_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1459
a61af66fc99e Initial load
duke
parents:
diff changeset
1460 // If the mdp is valid, it will point to a DataLayout header which is
a61af66fc99e Initial load
duke
parents:
diff changeset
1461 // consistent with the bcp. The converse is highly probable also.
a61af66fc99e Initial load
duke
parents:
diff changeset
1462 lduh(ImethodDataPtr, in_bytes(DataLayout::bci_offset()), G3_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1463 ld_ptr(Address(Lmethod, 0, in_bytes(methodOopDesc::const_offset())), O5);
a61af66fc99e Initial load
duke
parents:
diff changeset
1464 add(G3_scratch, in_bytes(constMethodOopDesc::codes_offset()), G3_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1465 add(G3_scratch, O5, G3_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1466 cmp(Lbcp, G3_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1467 brx(Assembler::equal, false, Assembler::pt, verify_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1468
a61af66fc99e Initial load
duke
parents:
diff changeset
1469 Register temp_reg = O5;
a61af66fc99e Initial load
duke
parents:
diff changeset
1470 delayed()->mov(ImethodDataPtr, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1471 // %%% should use call_VM_leaf here?
a61af66fc99e Initial load
duke
parents:
diff changeset
1472 //call_VM_leaf(noreg, ..., Lmethod, Lbcp, ImethodDataPtr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1473 save_frame_and_mov(sizeof(jdouble) / wordSize, Lmethod, O0, Lbcp, O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1474 Address d_save(FP, 0, -sizeof(jdouble) + STACK_BIAS);
a61af66fc99e Initial load
duke
parents:
diff changeset
1475 stf(FloatRegisterImpl::D, Ftos_d, d_save);
a61af66fc99e Initial load
duke
parents:
diff changeset
1476 mov(temp_reg->after_save(), O2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1477 save_thread(L7_thread_cache);
a61af66fc99e Initial load
duke
parents:
diff changeset
1478 call(CAST_FROM_FN_PTR(address, InterpreterRuntime::verify_mdp), relocInfo::none);
a61af66fc99e Initial load
duke
parents:
diff changeset
1479 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1480 restore_thread(L7_thread_cache);
a61af66fc99e Initial load
duke
parents:
diff changeset
1481 ldf(FloatRegisterImpl::D, d_save, Ftos_d);
a61af66fc99e Initial load
duke
parents:
diff changeset
1482 restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
1483 bind(verify_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1484 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
1485 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1486
a61af66fc99e Initial load
duke
parents:
diff changeset
1487 void InterpreterMacroAssembler::test_invocation_counter_for_mdp(Register invocation_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
1488 Register cur_bcp,
a61af66fc99e Initial load
duke
parents:
diff changeset
1489 Register Rtmp,
a61af66fc99e Initial load
duke
parents:
diff changeset
1490 Label &profile_continue) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1491 assert(ProfileInterpreter, "must be profiling interpreter");
a61af66fc99e Initial load
duke
parents:
diff changeset
1492 // Control will flow to "profile_continue" if the counter is less than the
a61af66fc99e Initial load
duke
parents:
diff changeset
1493 // limit or if we call profile_method()
a61af66fc99e Initial load
duke
parents:
diff changeset
1494
a61af66fc99e Initial load
duke
parents:
diff changeset
1495 Label done;
a61af66fc99e Initial load
duke
parents:
diff changeset
1496
a61af66fc99e Initial load
duke
parents:
diff changeset
1497 // if no method data exists, and the counter is high enough, make one
a61af66fc99e Initial load
duke
parents:
diff changeset
1498 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1499 bpr(Assembler::rc_nz, false, Assembler::pn, ImethodDataPtr, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
1500 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1501 tst(ImethodDataPtr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1502 br(Assembler::notZero, false, Assembler::pn, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
1503 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1504
a61af66fc99e Initial load
duke
parents:
diff changeset
1505 // Test to see if we should create a method data oop
a61af66fc99e Initial load
duke
parents:
diff changeset
1506 Address profile_limit(Rtmp, (address)&InvocationCounter::InterpreterProfileLimit);
a61af66fc99e Initial load
duke
parents:
diff changeset
1507 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
1508 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1509 sethi(profile_limit);
a61af66fc99e Initial load
duke
parents:
diff changeset
1510 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1511 delayed()->sethi(profile_limit);
a61af66fc99e Initial load
duke
parents:
diff changeset
1512 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1513 ld(profile_limit, Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1514 cmp(invocation_count, Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1515 br(Assembler::lessUnsigned, false, Assembler::pn, profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1516 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1517
a61af66fc99e Initial load
duke
parents:
diff changeset
1518 // Build it now.
a61af66fc99e Initial load
duke
parents:
diff changeset
1519 call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::profile_method), cur_bcp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1520 set_method_data_pointer_offset(O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1521 ba(false, profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1522 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1523 bind(done);
a61af66fc99e Initial load
duke
parents:
diff changeset
1524 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1525
a61af66fc99e Initial load
duke
parents:
diff changeset
1526 // Store a value at some constant offset from the method data pointer.
a61af66fc99e Initial load
duke
parents:
diff changeset
1527
a61af66fc99e Initial load
duke
parents:
diff changeset
1528 void InterpreterMacroAssembler::set_mdp_data_at(int constant, Register value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1529 assert(ProfileInterpreter, "must be profiling interpreter");
a61af66fc99e Initial load
duke
parents:
diff changeset
1530 st_ptr(value, ImethodDataPtr, constant);
a61af66fc99e Initial load
duke
parents:
diff changeset
1531 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1532
a61af66fc99e Initial load
duke
parents:
diff changeset
1533 void InterpreterMacroAssembler::increment_mdp_data_at(Address counter,
a61af66fc99e Initial load
duke
parents:
diff changeset
1534 Register bumped_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
1535 bool decrement) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1536 assert(ProfileInterpreter, "must be profiling interpreter");
a61af66fc99e Initial load
duke
parents:
diff changeset
1537
a61af66fc99e Initial load
duke
parents:
diff changeset
1538 // Load the counter.
a61af66fc99e Initial load
duke
parents:
diff changeset
1539 ld_ptr(counter, bumped_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1540
a61af66fc99e Initial load
duke
parents:
diff changeset
1541 if (decrement) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1542 // Decrement the register. Set condition codes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1543 subcc(bumped_count, DataLayout::counter_increment, bumped_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1544
a61af66fc99e Initial load
duke
parents:
diff changeset
1545 // If the decrement causes the counter to overflow, stay negative
a61af66fc99e Initial load
duke
parents:
diff changeset
1546 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
1547 brx(Assembler::negative, true, Assembler::pn, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
1548
a61af66fc99e Initial load
duke
parents:
diff changeset
1549 // Store the decremented counter, if it is still negative.
a61af66fc99e Initial load
duke
parents:
diff changeset
1550 delayed()->st_ptr(bumped_count, counter);
a61af66fc99e Initial load
duke
parents:
diff changeset
1551 bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
1552 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1553 // Increment the register. Set carry flag.
a61af66fc99e Initial load
duke
parents:
diff changeset
1554 addcc(bumped_count, DataLayout::counter_increment, bumped_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1555
a61af66fc99e Initial load
duke
parents:
diff changeset
1556 // If the increment causes the counter to overflow, pull back by 1.
a61af66fc99e Initial load
duke
parents:
diff changeset
1557 assert(DataLayout::counter_increment == 1, "subc works");
a61af66fc99e Initial load
duke
parents:
diff changeset
1558 subc(bumped_count, G0, bumped_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1559
a61af66fc99e Initial load
duke
parents:
diff changeset
1560 // Store the incremented counter.
a61af66fc99e Initial load
duke
parents:
diff changeset
1561 st_ptr(bumped_count, counter);
a61af66fc99e Initial load
duke
parents:
diff changeset
1562 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1563 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1564
a61af66fc99e Initial load
duke
parents:
diff changeset
1565 // Increment the value at some constant offset from the method data pointer.
a61af66fc99e Initial load
duke
parents:
diff changeset
1566
a61af66fc99e Initial load
duke
parents:
diff changeset
1567 void InterpreterMacroAssembler::increment_mdp_data_at(int constant,
a61af66fc99e Initial load
duke
parents:
diff changeset
1568 Register bumped_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
1569 bool decrement) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1570 // Locate the counter at a fixed offset from the mdp:
a61af66fc99e Initial load
duke
parents:
diff changeset
1571 Address counter(ImethodDataPtr, 0, constant);
a61af66fc99e Initial load
duke
parents:
diff changeset
1572 increment_mdp_data_at(counter, bumped_count, decrement);
a61af66fc99e Initial load
duke
parents:
diff changeset
1573 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1574
a61af66fc99e Initial load
duke
parents:
diff changeset
1575 // Increment the value at some non-fixed (reg + constant) offset from
a61af66fc99e Initial load
duke
parents:
diff changeset
1576 // the method data pointer.
a61af66fc99e Initial load
duke
parents:
diff changeset
1577
a61af66fc99e Initial load
duke
parents:
diff changeset
1578 void InterpreterMacroAssembler::increment_mdp_data_at(Register reg,
a61af66fc99e Initial load
duke
parents:
diff changeset
1579 int constant,
a61af66fc99e Initial load
duke
parents:
diff changeset
1580 Register bumped_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
1581 Register scratch2,
a61af66fc99e Initial load
duke
parents:
diff changeset
1582 bool decrement) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1583 // Add the constant to reg to get the offset.
a61af66fc99e Initial load
duke
parents:
diff changeset
1584 add(ImethodDataPtr, reg, scratch2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1585 Address counter(scratch2, 0, constant);
a61af66fc99e Initial load
duke
parents:
diff changeset
1586 increment_mdp_data_at(counter, bumped_count, decrement);
a61af66fc99e Initial load
duke
parents:
diff changeset
1587 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1588
a61af66fc99e Initial load
duke
parents:
diff changeset
1589 // Set a flag value at the current method data pointer position.
a61af66fc99e Initial load
duke
parents:
diff changeset
1590 // Updates a single byte of the header, to avoid races with other header bits.
a61af66fc99e Initial load
duke
parents:
diff changeset
1591
a61af66fc99e Initial load
duke
parents:
diff changeset
1592 void InterpreterMacroAssembler::set_mdp_flag_at(int flag_constant,
a61af66fc99e Initial load
duke
parents:
diff changeset
1593 Register scratch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1594 assert(ProfileInterpreter, "must be profiling interpreter");
a61af66fc99e Initial load
duke
parents:
diff changeset
1595 // Load the data header
a61af66fc99e Initial load
duke
parents:
diff changeset
1596 ldub(ImethodDataPtr, in_bytes(DataLayout::flags_offset()), scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1597
a61af66fc99e Initial load
duke
parents:
diff changeset
1598 // Set the flag
a61af66fc99e Initial load
duke
parents:
diff changeset
1599 or3(scratch, flag_constant, scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1600
a61af66fc99e Initial load
duke
parents:
diff changeset
1601 // Store the modified header.
a61af66fc99e Initial load
duke
parents:
diff changeset
1602 stb(scratch, ImethodDataPtr, in_bytes(DataLayout::flags_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1603 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1604
a61af66fc99e Initial load
duke
parents:
diff changeset
1605 // Test the location at some offset from the method data pointer.
a61af66fc99e Initial load
duke
parents:
diff changeset
1606 // If it is not equal to value, branch to the not_equal_continue Label.
a61af66fc99e Initial load
duke
parents:
diff changeset
1607 // Set condition codes to match the nullness of the loaded value.
a61af66fc99e Initial load
duke
parents:
diff changeset
1608
a61af66fc99e Initial load
duke
parents:
diff changeset
1609 void InterpreterMacroAssembler::test_mdp_data_at(int offset,
a61af66fc99e Initial load
duke
parents:
diff changeset
1610 Register value,
a61af66fc99e Initial load
duke
parents:
diff changeset
1611 Label& not_equal_continue,
a61af66fc99e Initial load
duke
parents:
diff changeset
1612 Register scratch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1613 assert(ProfileInterpreter, "must be profiling interpreter");
a61af66fc99e Initial load
duke
parents:
diff changeset
1614 ld_ptr(ImethodDataPtr, offset, scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1615 cmp(value, scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1616 brx(Assembler::notEqual, false, Assembler::pn, not_equal_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1617 delayed()->tst(scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1618 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1619
a61af66fc99e Initial load
duke
parents:
diff changeset
1620 // Update the method data pointer by the displacement located at some fixed
a61af66fc99e Initial load
duke
parents:
diff changeset
1621 // offset from the method data pointer.
a61af66fc99e Initial load
duke
parents:
diff changeset
1622
a61af66fc99e Initial load
duke
parents:
diff changeset
1623 void InterpreterMacroAssembler::update_mdp_by_offset(int offset_of_disp,
a61af66fc99e Initial load
duke
parents:
diff changeset
1624 Register scratch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1625 assert(ProfileInterpreter, "must be profiling interpreter");
a61af66fc99e Initial load
duke
parents:
diff changeset
1626 ld_ptr(ImethodDataPtr, offset_of_disp, scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1627 add(ImethodDataPtr, scratch, ImethodDataPtr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1628 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1629
a61af66fc99e Initial load
duke
parents:
diff changeset
1630 // Update the method data pointer by the displacement located at the
a61af66fc99e Initial load
duke
parents:
diff changeset
1631 // offset (reg + offset_of_disp).
a61af66fc99e Initial load
duke
parents:
diff changeset
1632
a61af66fc99e Initial load
duke
parents:
diff changeset
1633 void InterpreterMacroAssembler::update_mdp_by_offset(Register reg,
a61af66fc99e Initial load
duke
parents:
diff changeset
1634 int offset_of_disp,
a61af66fc99e Initial load
duke
parents:
diff changeset
1635 Register scratch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1636 assert(ProfileInterpreter, "must be profiling interpreter");
a61af66fc99e Initial load
duke
parents:
diff changeset
1637 add(reg, offset_of_disp, scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1638 ld_ptr(ImethodDataPtr, scratch, scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1639 add(ImethodDataPtr, scratch, ImethodDataPtr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1640 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1641
a61af66fc99e Initial load
duke
parents:
diff changeset
1642 // Update the method data pointer by a simple constant displacement.
a61af66fc99e Initial load
duke
parents:
diff changeset
1643
a61af66fc99e Initial load
duke
parents:
diff changeset
1644 void InterpreterMacroAssembler::update_mdp_by_constant(int constant) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1645 assert(ProfileInterpreter, "must be profiling interpreter");
a61af66fc99e Initial load
duke
parents:
diff changeset
1646 add(ImethodDataPtr, constant, ImethodDataPtr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1647 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1648
a61af66fc99e Initial load
duke
parents:
diff changeset
1649 // Update the method data pointer for a _ret bytecode whose target
a61af66fc99e Initial load
duke
parents:
diff changeset
1650 // was not among our cached targets.
a61af66fc99e Initial load
duke
parents:
diff changeset
1651
a61af66fc99e Initial load
duke
parents:
diff changeset
1652 void InterpreterMacroAssembler::update_mdp_for_ret(TosState state,
a61af66fc99e Initial load
duke
parents:
diff changeset
1653 Register return_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1654 assert(ProfileInterpreter, "must be profiling interpreter");
a61af66fc99e Initial load
duke
parents:
diff changeset
1655 push(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
1656 st_ptr(return_bci, l_tmp); // protect return_bci, in case it is volatile
a61af66fc99e Initial load
duke
parents:
diff changeset
1657 call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::update_mdp_for_ret), return_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1658 ld_ptr(l_tmp, return_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1659 pop(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
1660 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1661
a61af66fc99e Initial load
duke
parents:
diff changeset
1662 // Count a taken branch in the bytecodes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1663
a61af66fc99e Initial load
duke
parents:
diff changeset
1664 void InterpreterMacroAssembler::profile_taken_branch(Register scratch, Register bumped_count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1665 if (ProfileInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1666 Label profile_continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
1667
a61af66fc99e Initial load
duke
parents:
diff changeset
1668 // If no method data exists, go to profile_continue.
a61af66fc99e Initial load
duke
parents:
diff changeset
1669 test_method_data_pointer(profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1670
a61af66fc99e Initial load
duke
parents:
diff changeset
1671 // We are taking a branch. Increment the taken count.
a61af66fc99e Initial load
duke
parents:
diff changeset
1672 increment_mdp_data_at(in_bytes(JumpData::taken_offset()), bumped_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
1673
a61af66fc99e Initial load
duke
parents:
diff changeset
1674 // The method data pointer needs to be updated to reflect the new target.
a61af66fc99e Initial load
duke
parents:
diff changeset
1675 update_mdp_by_offset(in_bytes(JumpData::displacement_offset()), scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1676 bind (profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1677 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1678 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1679
a61af66fc99e Initial load
duke
parents:
diff changeset
1680
a61af66fc99e Initial load
duke
parents:
diff changeset
1681 // Count a not-taken branch in the bytecodes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1682
a61af66fc99e Initial load
duke
parents:
diff changeset
1683 void InterpreterMacroAssembler::profile_not_taken_branch(Register scratch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1684 if (ProfileInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1685 Label profile_continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
1686
a61af66fc99e Initial load
duke
parents:
diff changeset
1687 // If no method data exists, go to profile_continue.
a61af66fc99e Initial load
duke
parents:
diff changeset
1688 test_method_data_pointer(profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1689
a61af66fc99e Initial load
duke
parents:
diff changeset
1690 // We are taking a branch. Increment the not taken count.
a61af66fc99e Initial load
duke
parents:
diff changeset
1691 increment_mdp_data_at(in_bytes(BranchData::not_taken_offset()), scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1692
a61af66fc99e Initial load
duke
parents:
diff changeset
1693 // The method data pointer needs to be updated to correspond to the
a61af66fc99e Initial load
duke
parents:
diff changeset
1694 // next bytecode.
a61af66fc99e Initial load
duke
parents:
diff changeset
1695 update_mdp_by_constant(in_bytes(BranchData::branch_data_size()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1696 bind (profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1697 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1698 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1699
a61af66fc99e Initial load
duke
parents:
diff changeset
1700
a61af66fc99e Initial load
duke
parents:
diff changeset
1701 // Count a non-virtual call in the bytecodes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1702
a61af66fc99e Initial load
duke
parents:
diff changeset
1703 void InterpreterMacroAssembler::profile_call(Register scratch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1704 if (ProfileInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1705 Label profile_continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
1706
a61af66fc99e Initial load
duke
parents:
diff changeset
1707 // If no method data exists, go to profile_continue.
a61af66fc99e Initial load
duke
parents:
diff changeset
1708 test_method_data_pointer(profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1709
a61af66fc99e Initial load
duke
parents:
diff changeset
1710 // We are making a call. Increment the count.
a61af66fc99e Initial load
duke
parents:
diff changeset
1711 increment_mdp_data_at(in_bytes(CounterData::count_offset()), scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1712
a61af66fc99e Initial load
duke
parents:
diff changeset
1713 // The method data pointer needs to be updated to reflect the new target.
a61af66fc99e Initial load
duke
parents:
diff changeset
1714 update_mdp_by_constant(in_bytes(CounterData::counter_data_size()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1715 bind (profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1716 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1717 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1718
a61af66fc99e Initial load
duke
parents:
diff changeset
1719
a61af66fc99e Initial load
duke
parents:
diff changeset
1720 // Count a final call in the bytecodes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1721
a61af66fc99e Initial load
duke
parents:
diff changeset
1722 void InterpreterMacroAssembler::profile_final_call(Register scratch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1723 if (ProfileInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1724 Label profile_continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
1725
a61af66fc99e Initial load
duke
parents:
diff changeset
1726 // If no method data exists, go to profile_continue.
a61af66fc99e Initial load
duke
parents:
diff changeset
1727 test_method_data_pointer(profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1728
a61af66fc99e Initial load
duke
parents:
diff changeset
1729 // We are making a call. Increment the count.
a61af66fc99e Initial load
duke
parents:
diff changeset
1730 increment_mdp_data_at(in_bytes(CounterData::count_offset()), scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1731
a61af66fc99e Initial load
duke
parents:
diff changeset
1732 // The method data pointer needs to be updated to reflect the new target.
a61af66fc99e Initial load
duke
parents:
diff changeset
1733 update_mdp_by_constant(in_bytes(VirtualCallData::virtual_call_data_size()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1734 bind (profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1735 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1736 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1737
a61af66fc99e Initial load
duke
parents:
diff changeset
1738
a61af66fc99e Initial load
duke
parents:
diff changeset
1739 // Count a virtual call in the bytecodes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1740
a61af66fc99e Initial load
duke
parents:
diff changeset
1741 void InterpreterMacroAssembler::profile_virtual_call(Register receiver,
a61af66fc99e Initial load
duke
parents:
diff changeset
1742 Register scratch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1743 if (ProfileInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1744 Label profile_continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
1745
a61af66fc99e Initial load
duke
parents:
diff changeset
1746 // If no method data exists, go to profile_continue.
a61af66fc99e Initial load
duke
parents:
diff changeset
1747 test_method_data_pointer(profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1748
a61af66fc99e Initial load
duke
parents:
diff changeset
1749 // We are making a call. Increment the count.
a61af66fc99e Initial load
duke
parents:
diff changeset
1750 increment_mdp_data_at(in_bytes(CounterData::count_offset()), scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1751
a61af66fc99e Initial load
duke
parents:
diff changeset
1752 // Record the receiver type.
a61af66fc99e Initial load
duke
parents:
diff changeset
1753 record_klass_in_profile(receiver, scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1754
a61af66fc99e Initial load
duke
parents:
diff changeset
1755 // The method data pointer needs to be updated to reflect the new target.
a61af66fc99e Initial load
duke
parents:
diff changeset
1756 update_mdp_by_constant(in_bytes(VirtualCallData::virtual_call_data_size()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1757 bind (profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1758 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1759 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1760
a61af66fc99e Initial load
duke
parents:
diff changeset
1761 void InterpreterMacroAssembler::record_klass_in_profile_helper(
a61af66fc99e Initial load
duke
parents:
diff changeset
1762 Register receiver, Register scratch,
a61af66fc99e Initial load
duke
parents:
diff changeset
1763 int start_row, Label& done) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1764 int last_row = VirtualCallData::row_limit() - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1765 assert(start_row <= last_row, "must be work left to do");
a61af66fc99e Initial load
duke
parents:
diff changeset
1766 // Test this row for both the receiver and for null.
a61af66fc99e Initial load
duke
parents:
diff changeset
1767 // Take any of three different outcomes:
a61af66fc99e Initial load
duke
parents:
diff changeset
1768 // 1. found receiver => increment count and goto done
a61af66fc99e Initial load
duke
parents:
diff changeset
1769 // 2. found null => keep looking for case 1, maybe allocate this cell
a61af66fc99e Initial load
duke
parents:
diff changeset
1770 // 3. found something else => keep looking for cases 1 and 2
a61af66fc99e Initial load
duke
parents:
diff changeset
1771 // Case 3 is handled by a recursive call.
a61af66fc99e Initial load
duke
parents:
diff changeset
1772 for (int row = start_row; row <= last_row; row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1773 Label next_test;
a61af66fc99e Initial load
duke
parents:
diff changeset
1774 bool test_for_null_also = (row == start_row);
a61af66fc99e Initial load
duke
parents:
diff changeset
1775
a61af66fc99e Initial load
duke
parents:
diff changeset
1776 // See if the receiver is receiver[n].
a61af66fc99e Initial load
duke
parents:
diff changeset
1777 int recvr_offset = in_bytes(VirtualCallData::receiver_offset(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
1778 test_mdp_data_at(recvr_offset, receiver, next_test, scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1779
a61af66fc99e Initial load
duke
parents:
diff changeset
1780 // The receiver is receiver[n]. Increment count[n].
a61af66fc99e Initial load
duke
parents:
diff changeset
1781 int count_offset = in_bytes(VirtualCallData::receiver_count_offset(row));
a61af66fc99e Initial load
duke
parents:
diff changeset
1782 increment_mdp_data_at(count_offset, scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1783 ba(false, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
1784 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1785 bind(next_test);
a61af66fc99e Initial load
duke
parents:
diff changeset
1786
a61af66fc99e Initial load
duke
parents:
diff changeset
1787 if (test_for_null_also) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1788 // Failed the equality check on receiver[n]... Test for null.
a61af66fc99e Initial load
duke
parents:
diff changeset
1789 if (start_row == last_row) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1790 // The only thing left to do is handle the null case.
a61af66fc99e Initial load
duke
parents:
diff changeset
1791 brx(Assembler::notZero, false, Assembler::pt, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
1792 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1793 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1794 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1795 // Since null is rare, make it be the branch-taken case.
a61af66fc99e Initial load
duke
parents:
diff changeset
1796 Label found_null;
a61af66fc99e Initial load
duke
parents:
diff changeset
1797 brx(Assembler::zero, false, Assembler::pn, found_null);
a61af66fc99e Initial load
duke
parents:
diff changeset
1798 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1799
a61af66fc99e Initial load
duke
parents:
diff changeset
1800 // Put all the "Case 3" tests here.
a61af66fc99e Initial load
duke
parents:
diff changeset
1801 record_klass_in_profile_helper(receiver, scratch, start_row + 1, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
1802
a61af66fc99e Initial load
duke
parents:
diff changeset
1803 // Found a null. Keep searching for a matching receiver,
a61af66fc99e Initial load
duke
parents:
diff changeset
1804 // but remember that this is an empty (unused) slot.
a61af66fc99e Initial load
duke
parents:
diff changeset
1805 bind(found_null);
a61af66fc99e Initial load
duke
parents:
diff changeset
1806 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1807 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1808
a61af66fc99e Initial load
duke
parents:
diff changeset
1809 // In the fall-through case, we found no matching receiver, but we
a61af66fc99e Initial load
duke
parents:
diff changeset
1810 // observed the receiver[start_row] is NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
1811
a61af66fc99e Initial load
duke
parents:
diff changeset
1812 // Fill in the receiver field and increment the count.
a61af66fc99e Initial load
duke
parents:
diff changeset
1813 int recvr_offset = in_bytes(VirtualCallData::receiver_offset(start_row));
a61af66fc99e Initial load
duke
parents:
diff changeset
1814 set_mdp_data_at(recvr_offset, receiver);
a61af66fc99e Initial load
duke
parents:
diff changeset
1815 int count_offset = in_bytes(VirtualCallData::receiver_count_offset(start_row));
a61af66fc99e Initial load
duke
parents:
diff changeset
1816 mov(DataLayout::counter_increment, scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1817 set_mdp_data_at(count_offset, scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1818 ba(false, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
1819 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1820 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1821
a61af66fc99e Initial load
duke
parents:
diff changeset
1822 void InterpreterMacroAssembler::record_klass_in_profile(Register receiver,
a61af66fc99e Initial load
duke
parents:
diff changeset
1823 Register scratch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1824 assert(ProfileInterpreter, "must be profiling");
a61af66fc99e Initial load
duke
parents:
diff changeset
1825 Label done;
a61af66fc99e Initial load
duke
parents:
diff changeset
1826
a61af66fc99e Initial load
duke
parents:
diff changeset
1827 record_klass_in_profile_helper(receiver, scratch, 0, done);
a61af66fc99e Initial load
duke
parents:
diff changeset
1828
a61af66fc99e Initial load
duke
parents:
diff changeset
1829 bind (done);
a61af66fc99e Initial load
duke
parents:
diff changeset
1830 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1831
a61af66fc99e Initial load
duke
parents:
diff changeset
1832
a61af66fc99e Initial load
duke
parents:
diff changeset
1833 // Count a ret in the bytecodes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1834
a61af66fc99e Initial load
duke
parents:
diff changeset
1835 void InterpreterMacroAssembler::profile_ret(TosState state,
a61af66fc99e Initial load
duke
parents:
diff changeset
1836 Register return_bci,
a61af66fc99e Initial load
duke
parents:
diff changeset
1837 Register scratch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1838 if (ProfileInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1839 Label profile_continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
1840 uint row;
a61af66fc99e Initial load
duke
parents:
diff changeset
1841
a61af66fc99e Initial load
duke
parents:
diff changeset
1842 // If no method data exists, go to profile_continue.
a61af66fc99e Initial load
duke
parents:
diff changeset
1843 test_method_data_pointer(profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1844
a61af66fc99e Initial load
duke
parents:
diff changeset
1845 // Update the total ret count.
a61af66fc99e Initial load
duke
parents:
diff changeset
1846 increment_mdp_data_at(in_bytes(CounterData::count_offset()), scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1847
a61af66fc99e Initial load
duke
parents:
diff changeset
1848 for (row = 0; row < RetData::row_limit(); row++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1849 Label next_test;
a61af66fc99e Initial load
duke
parents:
diff changeset
1850
a61af66fc99e Initial load
duke
parents:
diff changeset
1851 // See if return_bci is equal to bci[n]:
a61af66fc99e Initial load
duke
parents:
diff changeset
1852 test_mdp_data_at(in_bytes(RetData::bci_offset(row)),
a61af66fc99e Initial load
duke
parents:
diff changeset
1853 return_bci, next_test, scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1854
a61af66fc99e Initial load
duke
parents:
diff changeset
1855 // return_bci is equal to bci[n]. Increment the count.
a61af66fc99e Initial load
duke
parents:
diff changeset
1856 increment_mdp_data_at(in_bytes(RetData::bci_count_offset(row)), scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1857
a61af66fc99e Initial load
duke
parents:
diff changeset
1858 // The method data pointer needs to be updated to reflect the new target.
a61af66fc99e Initial load
duke
parents:
diff changeset
1859 update_mdp_by_offset(in_bytes(RetData::bci_displacement_offset(row)), scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1860 ba(false, profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1861 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
1862 bind(next_test);
a61af66fc99e Initial load
duke
parents:
diff changeset
1863 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1864
a61af66fc99e Initial load
duke
parents:
diff changeset
1865 update_mdp_for_ret(state, return_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1866
a61af66fc99e Initial load
duke
parents:
diff changeset
1867 bind (profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1868 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1869 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1870
a61af66fc99e Initial load
duke
parents:
diff changeset
1871 // Profile an unexpected null in the bytecodes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1872 void InterpreterMacroAssembler::profile_null_seen(Register scratch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1873 if (ProfileInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1874 Label profile_continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
1875
a61af66fc99e Initial load
duke
parents:
diff changeset
1876 // If no method data exists, go to profile_continue.
a61af66fc99e Initial load
duke
parents:
diff changeset
1877 test_method_data_pointer(profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1878
a61af66fc99e Initial load
duke
parents:
diff changeset
1879 set_mdp_flag_at(BitData::null_seen_byte_constant(), scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1880
a61af66fc99e Initial load
duke
parents:
diff changeset
1881 // The method data pointer needs to be updated.
a61af66fc99e Initial load
duke
parents:
diff changeset
1882 int mdp_delta = in_bytes(BitData::bit_data_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
1883 if (TypeProfileCasts) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1884 mdp_delta = in_bytes(VirtualCallData::virtual_call_data_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
1885 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1886 update_mdp_by_constant(mdp_delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
1887
a61af66fc99e Initial load
duke
parents:
diff changeset
1888 bind (profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1889 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1890 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1891
a61af66fc99e Initial load
duke
parents:
diff changeset
1892 void InterpreterMacroAssembler::profile_typecheck(Register klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
1893 Register scratch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1894 if (ProfileInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1895 Label profile_continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
1896
a61af66fc99e Initial load
duke
parents:
diff changeset
1897 // If no method data exists, go to profile_continue.
a61af66fc99e Initial load
duke
parents:
diff changeset
1898 test_method_data_pointer(profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1899
a61af66fc99e Initial load
duke
parents:
diff changeset
1900 int mdp_delta = in_bytes(BitData::bit_data_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
1901 if (TypeProfileCasts) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1902 mdp_delta = in_bytes(VirtualCallData::virtual_call_data_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
1903
a61af66fc99e Initial load
duke
parents:
diff changeset
1904 // Record the object type.
a61af66fc99e Initial load
duke
parents:
diff changeset
1905 record_klass_in_profile(klass, scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1906 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1907
a61af66fc99e Initial load
duke
parents:
diff changeset
1908 // The method data pointer needs to be updated.
a61af66fc99e Initial load
duke
parents:
diff changeset
1909 update_mdp_by_constant(mdp_delta);
a61af66fc99e Initial load
duke
parents:
diff changeset
1910
a61af66fc99e Initial load
duke
parents:
diff changeset
1911 bind (profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1912 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1913 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1914
a61af66fc99e Initial load
duke
parents:
diff changeset
1915 void InterpreterMacroAssembler::profile_typecheck_failed(Register scratch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1916 if (ProfileInterpreter && TypeProfileCasts) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1917 Label profile_continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
1918
a61af66fc99e Initial load
duke
parents:
diff changeset
1919 // If no method data exists, go to profile_continue.
a61af66fc99e Initial load
duke
parents:
diff changeset
1920 test_method_data_pointer(profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1921
a61af66fc99e Initial load
duke
parents:
diff changeset
1922 int count_offset = in_bytes(CounterData::count_offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
1923 // Back up the address, since we have already bumped the mdp.
a61af66fc99e Initial load
duke
parents:
diff changeset
1924 count_offset -= in_bytes(VirtualCallData::virtual_call_data_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
1925
a61af66fc99e Initial load
duke
parents:
diff changeset
1926 // *Decrement* the counter. We expect to see zero or small negatives.
a61af66fc99e Initial load
duke
parents:
diff changeset
1927 increment_mdp_data_at(count_offset, scratch, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
1928
a61af66fc99e Initial load
duke
parents:
diff changeset
1929 bind (profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1930 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1931 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1932
a61af66fc99e Initial load
duke
parents:
diff changeset
1933 // Count the default case of a switch construct.
a61af66fc99e Initial load
duke
parents:
diff changeset
1934
a61af66fc99e Initial load
duke
parents:
diff changeset
1935 void InterpreterMacroAssembler::profile_switch_default(Register scratch) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1936 if (ProfileInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1937 Label profile_continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
1938
a61af66fc99e Initial load
duke
parents:
diff changeset
1939 // If no method data exists, go to profile_continue.
a61af66fc99e Initial load
duke
parents:
diff changeset
1940 test_method_data_pointer(profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1941
a61af66fc99e Initial load
duke
parents:
diff changeset
1942 // Update the default case count
a61af66fc99e Initial load
duke
parents:
diff changeset
1943 increment_mdp_data_at(in_bytes(MultiBranchData::default_count_offset()),
a61af66fc99e Initial load
duke
parents:
diff changeset
1944 scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1945
a61af66fc99e Initial load
duke
parents:
diff changeset
1946 // The method data pointer needs to be updated.
a61af66fc99e Initial load
duke
parents:
diff changeset
1947 update_mdp_by_offset(
a61af66fc99e Initial load
duke
parents:
diff changeset
1948 in_bytes(MultiBranchData::default_displacement_offset()),
a61af66fc99e Initial load
duke
parents:
diff changeset
1949 scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1950
a61af66fc99e Initial load
duke
parents:
diff changeset
1951 bind (profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1952 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1953 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1954
a61af66fc99e Initial load
duke
parents:
diff changeset
1955 // Count the index'th case of a switch construct.
a61af66fc99e Initial load
duke
parents:
diff changeset
1956
a61af66fc99e Initial load
duke
parents:
diff changeset
1957 void InterpreterMacroAssembler::profile_switch_case(Register index,
a61af66fc99e Initial load
duke
parents:
diff changeset
1958 Register scratch,
a61af66fc99e Initial load
duke
parents:
diff changeset
1959 Register scratch2,
a61af66fc99e Initial load
duke
parents:
diff changeset
1960 Register scratch3) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1961 if (ProfileInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1962 Label profile_continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
1963
a61af66fc99e Initial load
duke
parents:
diff changeset
1964 // If no method data exists, go to profile_continue.
a61af66fc99e Initial load
duke
parents:
diff changeset
1965 test_method_data_pointer(profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1966
a61af66fc99e Initial load
duke
parents:
diff changeset
1967 // Build the base (index * per_case_size_in_bytes()) + case_array_offset_in_bytes()
a61af66fc99e Initial load
duke
parents:
diff changeset
1968 set(in_bytes(MultiBranchData::per_case_size()), scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1969 smul(index, scratch, scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1970 add(scratch, in_bytes(MultiBranchData::case_array_offset()), scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
1971
a61af66fc99e Initial load
duke
parents:
diff changeset
1972 // Update the case count
a61af66fc99e Initial load
duke
parents:
diff changeset
1973 increment_mdp_data_at(scratch,
a61af66fc99e Initial load
duke
parents:
diff changeset
1974 in_bytes(MultiBranchData::relative_count_offset()),
a61af66fc99e Initial load
duke
parents:
diff changeset
1975 scratch2,
a61af66fc99e Initial load
duke
parents:
diff changeset
1976 scratch3);
a61af66fc99e Initial load
duke
parents:
diff changeset
1977
a61af66fc99e Initial load
duke
parents:
diff changeset
1978 // The method data pointer needs to be updated.
a61af66fc99e Initial load
duke
parents:
diff changeset
1979 update_mdp_by_offset(scratch,
a61af66fc99e Initial load
duke
parents:
diff changeset
1980 in_bytes(MultiBranchData::relative_displacement_offset()),
a61af66fc99e Initial load
duke
parents:
diff changeset
1981 scratch2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1982
a61af66fc99e Initial load
duke
parents:
diff changeset
1983 bind (profile_continue);
a61af66fc99e Initial load
duke
parents:
diff changeset
1984 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1985 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1986
a61af66fc99e Initial load
duke
parents:
diff changeset
1987 // add a InterpMonitorElem to stack (see frame_sparc.hpp)
a61af66fc99e Initial load
duke
parents:
diff changeset
1988
a61af66fc99e Initial load
duke
parents:
diff changeset
1989 void InterpreterMacroAssembler::add_monitor_to_stack( bool stack_is_empty,
a61af66fc99e Initial load
duke
parents:
diff changeset
1990 Register Rtemp,
a61af66fc99e Initial load
duke
parents:
diff changeset
1991 Register Rtemp2 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1992
a61af66fc99e Initial load
duke
parents:
diff changeset
1993 Register Rlimit = Lmonitors;
a61af66fc99e Initial load
duke
parents:
diff changeset
1994 const jint delta = frame::interpreter_frame_monitor_size() * wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
1995 assert( (delta & LongAlignmentMask) == 0,
a61af66fc99e Initial load
duke
parents:
diff changeset
1996 "sizeof BasicObjectLock must be even number of doublewords");
a61af66fc99e Initial load
duke
parents:
diff changeset
1997
a61af66fc99e Initial load
duke
parents:
diff changeset
1998 sub( SP, delta, SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
1999 sub( Lesp, delta, Lesp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2000 sub( Lmonitors, delta, Lmonitors);
a61af66fc99e Initial load
duke
parents:
diff changeset
2001
a61af66fc99e Initial load
duke
parents:
diff changeset
2002 if (!stack_is_empty) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2003
a61af66fc99e Initial load
duke
parents:
diff changeset
2004 // must copy stack contents down
a61af66fc99e Initial load
duke
parents:
diff changeset
2005
a61af66fc99e Initial load
duke
parents:
diff changeset
2006 Label start_copying, next;
a61af66fc99e Initial load
duke
parents:
diff changeset
2007
a61af66fc99e Initial load
duke
parents:
diff changeset
2008 // untested("monitor stack expansion");
a61af66fc99e Initial load
duke
parents:
diff changeset
2009 compute_stack_base(Rtemp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2010 ba( false, start_copying );
a61af66fc99e Initial load
duke
parents:
diff changeset
2011 delayed()->cmp( Rtemp, Rlimit); // done? duplicated below
a61af66fc99e Initial load
duke
parents:
diff changeset
2012
a61af66fc99e Initial load
duke
parents:
diff changeset
2013 // note: must copy from low memory upwards
a61af66fc99e Initial load
duke
parents:
diff changeset
2014 // On entry to loop,
a61af66fc99e Initial load
duke
parents:
diff changeset
2015 // Rtemp points to new base of stack, Lesp points to new end of stack (1 past TOS)
a61af66fc99e Initial load
duke
parents:
diff changeset
2016 // Loop mutates Rtemp
a61af66fc99e Initial load
duke
parents:
diff changeset
2017
a61af66fc99e Initial load
duke
parents:
diff changeset
2018 bind( next);
a61af66fc99e Initial load
duke
parents:
diff changeset
2019
a61af66fc99e Initial load
duke
parents:
diff changeset
2020 st_ptr(Rtemp2, Rtemp, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2021 inc(Rtemp, wordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
2022 cmp(Rtemp, Rlimit); // are we done? (duplicated above)
a61af66fc99e Initial load
duke
parents:
diff changeset
2023
a61af66fc99e Initial load
duke
parents:
diff changeset
2024 bind( start_copying );
a61af66fc99e Initial load
duke
parents:
diff changeset
2025
a61af66fc99e Initial load
duke
parents:
diff changeset
2026 brx( notEqual, true, pn, next );
a61af66fc99e Initial load
duke
parents:
diff changeset
2027 delayed()->ld_ptr( Rtemp, delta, Rtemp2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2028
a61af66fc99e Initial load
duke
parents:
diff changeset
2029 // done copying stack
a61af66fc99e Initial load
duke
parents:
diff changeset
2030 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2031 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2032
a61af66fc99e Initial load
duke
parents:
diff changeset
2033 // Locals
a61af66fc99e Initial load
duke
parents:
diff changeset
2034 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
2035 void InterpreterMacroAssembler::verify_local_tag(frame::Tag t,
a61af66fc99e Initial load
duke
parents:
diff changeset
2036 Register base,
a61af66fc99e Initial load
duke
parents:
diff changeset
2037 Register scratch,
a61af66fc99e Initial load
duke
parents:
diff changeset
2038 int n) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2039 if (TaggedStackInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2040 Label ok, long_ok;
a61af66fc99e Initial load
duke
parents:
diff changeset
2041 // Use dst for scratch
a61af66fc99e Initial load
duke
parents:
diff changeset
2042 assert_different_registers(base, scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2043 ld_ptr(base, Interpreter::local_tag_offset_in_bytes(n), scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2044 if (t == frame::TagCategory2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2045 cmp(scratch, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2046 brx(Assembler::equal, false, Assembler::pt, long_ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
2047 delayed()->ld_ptr(base, Interpreter::local_tag_offset_in_bytes(n+1), scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2048 stop("local long/double tag value bad");
a61af66fc99e Initial load
duke
parents:
diff changeset
2049 bind(long_ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
2050 // compare second half tag
a61af66fc99e Initial load
duke
parents:
diff changeset
2051 cmp(scratch, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2052 } else if (t == frame::TagValue) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2053 cmp(scratch, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2054 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2055 assert_different_registers(O3, base, scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2056 mov(t, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2057 cmp(scratch, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2058 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2059 brx(Assembler::equal, false, Assembler::pt, ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
2060 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2061 // Also compare if the local value is zero, then the tag might
a61af66fc99e Initial load
duke
parents:
diff changeset
2062 // not have been set coming from deopt.
a61af66fc99e Initial load
duke
parents:
diff changeset
2063 ld_ptr(base, Interpreter::local_offset_in_bytes(n), scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2064 cmp(scratch, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2065 brx(Assembler::equal, false, Assembler::pt, ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
2066 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2067 stop("Local tag value is bad");
a61af66fc99e Initial load
duke
parents:
diff changeset
2068 bind(ok);
a61af66fc99e Initial load
duke
parents:
diff changeset
2069 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2070 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2071 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
2072
a61af66fc99e Initial load
duke
parents:
diff changeset
2073 void InterpreterMacroAssembler::access_local_ptr( Register index, Register dst ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2074 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
2075 sll(index, Interpreter::logStackElementSize(), index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2076 sub(Llocals, index, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2077 debug_only(verify_local_tag(frame::TagReference, index, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
2078 ld_ptr(index, Interpreter::value_offset_in_bytes(), dst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2079 // Note: index must hold the effective address--the iinc template uses it
a61af66fc99e Initial load
duke
parents:
diff changeset
2080 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2081
a61af66fc99e Initial load
duke
parents:
diff changeset
2082 // Just like access_local_ptr but the tag is a returnAddress
a61af66fc99e Initial load
duke
parents:
diff changeset
2083 void InterpreterMacroAssembler::access_local_returnAddress(Register index,
a61af66fc99e Initial load
duke
parents:
diff changeset
2084 Register dst ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2085 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
2086 sll(index, Interpreter::logStackElementSize(), index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2087 sub(Llocals, index, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2088 debug_only(verify_local_tag(frame::TagValue, index, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
2089 ld_ptr(index, Interpreter::value_offset_in_bytes(), dst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2090 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2091
a61af66fc99e Initial load
duke
parents:
diff changeset
2092 void InterpreterMacroAssembler::access_local_int( Register index, Register dst ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2093 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
2094 sll(index, Interpreter::logStackElementSize(), index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2095 sub(Llocals, index, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2096 debug_only(verify_local_tag(frame::TagValue, index, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
2097 ld(index, Interpreter::value_offset_in_bytes(), dst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2098 // Note: index must hold the effective address--the iinc template uses it
a61af66fc99e Initial load
duke
parents:
diff changeset
2099 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2100
a61af66fc99e Initial load
duke
parents:
diff changeset
2101
a61af66fc99e Initial load
duke
parents:
diff changeset
2102 void InterpreterMacroAssembler::access_local_long( Register index, Register dst ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2103 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
2104 sll(index, Interpreter::logStackElementSize(), index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2105 sub(Llocals, index, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2106 debug_only(verify_local_tag(frame::TagCategory2, index, dst));
a61af66fc99e Initial load
duke
parents:
diff changeset
2107 // First half stored at index n+1 (which grows down from Llocals[n])
a61af66fc99e Initial load
duke
parents:
diff changeset
2108 load_unaligned_long(index, Interpreter::local_offset_in_bytes(1), dst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2109 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2110
a61af66fc99e Initial load
duke
parents:
diff changeset
2111
a61af66fc99e Initial load
duke
parents:
diff changeset
2112 void InterpreterMacroAssembler::access_local_float( Register index, FloatRegister dst ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2113 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
2114 sll(index, Interpreter::logStackElementSize(), index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2115 sub(Llocals, index, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2116 debug_only(verify_local_tag(frame::TagValue, index, G1_scratch));
a61af66fc99e Initial load
duke
parents:
diff changeset
2117 ldf(FloatRegisterImpl::S, index, Interpreter::value_offset_in_bytes(), dst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2118 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2119
a61af66fc99e Initial load
duke
parents:
diff changeset
2120
a61af66fc99e Initial load
duke
parents:
diff changeset
2121 void InterpreterMacroAssembler::access_local_double( Register index, FloatRegister dst ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2122 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
2123 sll(index, Interpreter::logStackElementSize(), index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2124 sub(Llocals, index, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2125 debug_only(verify_local_tag(frame::TagCategory2, index, G1_scratch));
a61af66fc99e Initial load
duke
parents:
diff changeset
2126 load_unaligned_double(index, Interpreter::local_offset_in_bytes(1), dst);
a61af66fc99e Initial load
duke
parents:
diff changeset
2127 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2128
a61af66fc99e Initial load
duke
parents:
diff changeset
2129
a61af66fc99e Initial load
duke
parents:
diff changeset
2130 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
2131 void InterpreterMacroAssembler::check_for_regarea_stomp(Register Rindex, int offset, Register Rlimit, Register Rscratch, Register Rscratch1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2132 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
2133
a61af66fc99e Initial load
duke
parents:
diff changeset
2134 assert(Rindex != Rscratch, "Registers cannot be same");
a61af66fc99e Initial load
duke
parents:
diff changeset
2135 assert(Rindex != Rscratch1, "Registers cannot be same");
a61af66fc99e Initial load
duke
parents:
diff changeset
2136 assert(Rlimit != Rscratch, "Registers cannot be same");
a61af66fc99e Initial load
duke
parents:
diff changeset
2137 assert(Rlimit != Rscratch1, "Registers cannot be same");
a61af66fc99e Initial load
duke
parents:
diff changeset
2138 assert(Rscratch1 != Rscratch, "Registers cannot be same");
a61af66fc99e Initial load
duke
parents:
diff changeset
2139
a61af66fc99e Initial load
duke
parents:
diff changeset
2140 // untested("reg area corruption");
a61af66fc99e Initial load
duke
parents:
diff changeset
2141 add(Rindex, offset, Rscratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2142 add(Rlimit, 64 + STACK_BIAS, Rscratch1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2143 cmp(Rscratch, Rscratch1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2144 brx(Assembler::greaterEqualUnsigned, false, pn, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
2145 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2146 stop("regsave area is being clobbered");
a61af66fc99e Initial load
duke
parents:
diff changeset
2147 bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
2148 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2149 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
2150
a61af66fc99e Initial load
duke
parents:
diff changeset
2151 void InterpreterMacroAssembler::tag_local(frame::Tag t,
a61af66fc99e Initial load
duke
parents:
diff changeset
2152 Register base,
a61af66fc99e Initial load
duke
parents:
diff changeset
2153 Register src,
a61af66fc99e Initial load
duke
parents:
diff changeset
2154 int n) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2155 if (TaggedStackInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2156 // have to store zero because local slots can be reused (rats!)
a61af66fc99e Initial load
duke
parents:
diff changeset
2157 if (t == frame::TagValue) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2158 st_ptr(G0, base, Interpreter::local_tag_offset_in_bytes(n));
a61af66fc99e Initial load
duke
parents:
diff changeset
2159 } else if (t == frame::TagCategory2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2160 st_ptr(G0, base, Interpreter::local_tag_offset_in_bytes(n));
a61af66fc99e Initial load
duke
parents:
diff changeset
2161 st_ptr(G0, base, Interpreter::local_tag_offset_in_bytes(n+1));
a61af66fc99e Initial load
duke
parents:
diff changeset
2162 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2163 // assert that we don't stomp the value in 'src'
a61af66fc99e Initial load
duke
parents:
diff changeset
2164 // O3 is arbitrary because it's not used.
a61af66fc99e Initial load
duke
parents:
diff changeset
2165 assert_different_registers(src, base, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2166 mov( t, O3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2167 st_ptr(O3, base, Interpreter::local_tag_offset_in_bytes(n));
a61af66fc99e Initial load
duke
parents:
diff changeset
2168 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2169 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2170 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2171
a61af66fc99e Initial load
duke
parents:
diff changeset
2172
a61af66fc99e Initial load
duke
parents:
diff changeset
2173 void InterpreterMacroAssembler::store_local_int( Register index, Register src ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2174 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
2175 sll(index, Interpreter::logStackElementSize(), index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2176 sub(Llocals, index, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2177 debug_only(check_for_regarea_stomp(index, Interpreter::value_offset_in_bytes(), FP, G1_scratch, G4_scratch);)
a61af66fc99e Initial load
duke
parents:
diff changeset
2178 tag_local(frame::TagValue, index, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
2179 st(src, index, Interpreter::value_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
2180 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2181
a61af66fc99e Initial load
duke
parents:
diff changeset
2182 void InterpreterMacroAssembler::store_local_ptr( Register index, Register src,
a61af66fc99e Initial load
duke
parents:
diff changeset
2183 Register tag ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2184 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
2185 sll(index, Interpreter::logStackElementSize(), index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2186 sub(Llocals, index, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2187 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
2188 check_for_regarea_stomp(index, Interpreter::value_offset_in_bytes(), FP, G1_scratch, G4_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2189 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2190 st_ptr(src, index, Interpreter::value_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
2191 // Store tag register directly
a61af66fc99e Initial load
duke
parents:
diff changeset
2192 if (TaggedStackInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2193 st_ptr(tag, index, Interpreter::tag_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
2194 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2195 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2196
a61af66fc99e Initial load
duke
parents:
diff changeset
2197
a61af66fc99e Initial load
duke
parents:
diff changeset
2198
a61af66fc99e Initial load
duke
parents:
diff changeset
2199 void InterpreterMacroAssembler::store_local_ptr( int n, Register src,
a61af66fc99e Initial load
duke
parents:
diff changeset
2200 Register tag ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2201 st_ptr(src, Llocals, Interpreter::local_offset_in_bytes(n));
a61af66fc99e Initial load
duke
parents:
diff changeset
2202 if (TaggedStackInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2203 st_ptr(tag, Llocals, Interpreter::local_tag_offset_in_bytes(n));
a61af66fc99e Initial load
duke
parents:
diff changeset
2204 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2205 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2206
a61af66fc99e Initial load
duke
parents:
diff changeset
2207 void InterpreterMacroAssembler::store_local_long( Register index, Register src ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2208 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
2209 sll(index, Interpreter::logStackElementSize(), index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2210 sub(Llocals, index, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2211 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
2212 check_for_regarea_stomp(index, Interpreter::local_offset_in_bytes(1), FP, G1_scratch, G4_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2213 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2214 tag_local(frame::TagCategory2, index, src);
a61af66fc99e Initial load
duke
parents:
diff changeset
2215 store_unaligned_long(src, index, Interpreter::local_offset_in_bytes(1)); // which is n+1
a61af66fc99e Initial load
duke
parents:
diff changeset
2216 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2217
a61af66fc99e Initial load
duke
parents:
diff changeset
2218
a61af66fc99e Initial load
duke
parents:
diff changeset
2219 void InterpreterMacroAssembler::store_local_float( Register index, FloatRegister src ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2220 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
2221 sll(index, Interpreter::logStackElementSize(), index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2222 sub(Llocals, index, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2223 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
2224 check_for_regarea_stomp(index, Interpreter::value_offset_in_bytes(), FP, G1_scratch, G4_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2225 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2226 tag_local(frame::TagValue, index, G1_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2227 stf(FloatRegisterImpl::S, src, index, Interpreter::value_offset_in_bytes());
a61af66fc99e Initial load
duke
parents:
diff changeset
2228 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2229
a61af66fc99e Initial load
duke
parents:
diff changeset
2230
a61af66fc99e Initial load
duke
parents:
diff changeset
2231 void InterpreterMacroAssembler::store_local_double( Register index, FloatRegister src ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2232 assert_not_delayed();
a61af66fc99e Initial load
duke
parents:
diff changeset
2233 sll(index, Interpreter::logStackElementSize(), index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2234 sub(Llocals, index, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2235 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
2236 check_for_regarea_stomp(index, Interpreter::local_offset_in_bytes(1), FP, G1_scratch, G4_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2237 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2238 tag_local(frame::TagCategory2, index, G1_scratch);
a61af66fc99e Initial load
duke
parents:
diff changeset
2239 store_unaligned_double(src, index, Interpreter::local_offset_in_bytes(1));
a61af66fc99e Initial load
duke
parents:
diff changeset
2240 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2241
a61af66fc99e Initial load
duke
parents:
diff changeset
2242
a61af66fc99e Initial load
duke
parents:
diff changeset
2243 int InterpreterMacroAssembler::top_most_monitor_byte_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2244 const jint delta = frame::interpreter_frame_monitor_size() * wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
2245 int rounded_vm_local_words = ::round_to(frame::interpreter_frame_vm_local_words, WordsPerLong);
a61af66fc99e Initial load
duke
parents:
diff changeset
2246 return ((-rounded_vm_local_words * wordSize) - delta ) + STACK_BIAS;
a61af66fc99e Initial load
duke
parents:
diff changeset
2247 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2248
a61af66fc99e Initial load
duke
parents:
diff changeset
2249
a61af66fc99e Initial load
duke
parents:
diff changeset
2250 Address InterpreterMacroAssembler::top_most_monitor() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2251 return Address(FP, 0, top_most_monitor_byte_offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
2252 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2253
a61af66fc99e Initial load
duke
parents:
diff changeset
2254
a61af66fc99e Initial load
duke
parents:
diff changeset
2255 void InterpreterMacroAssembler::compute_stack_base( Register Rdest ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2256 add( Lesp, wordSize, Rdest );
a61af66fc99e Initial load
duke
parents:
diff changeset
2257 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2258
a61af66fc99e Initial load
duke
parents:
diff changeset
2259 #endif /* CC_INTERP */
a61af66fc99e Initial load
duke
parents:
diff changeset
2260
a61af66fc99e Initial load
duke
parents:
diff changeset
2261 void InterpreterMacroAssembler::increment_invocation_counter( Register Rtmp, Register Rtmp2 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2262 assert(UseCompiler, "incrementing must be useful");
a61af66fc99e Initial load
duke
parents:
diff changeset
2263 #ifdef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
2264 Address inv_counter(G5_method, 0, in_bytes(methodOopDesc::invocation_counter_offset()
a61af66fc99e Initial load
duke
parents:
diff changeset
2265 + InvocationCounter::counter_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
2266 Address be_counter(G5_method, 0, in_bytes(methodOopDesc::backedge_counter_offset()
a61af66fc99e Initial load
duke
parents:
diff changeset
2267 + InvocationCounter::counter_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
2268 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
2269 Address inv_counter(Lmethod, 0, in_bytes(methodOopDesc::invocation_counter_offset()
a61af66fc99e Initial load
duke
parents:
diff changeset
2270 + InvocationCounter::counter_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
2271 Address be_counter(Lmethod, 0, in_bytes(methodOopDesc::backedge_counter_offset()
a61af66fc99e Initial load
duke
parents:
diff changeset
2272 + InvocationCounter::counter_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
2273 #endif /* CC_INTERP */
a61af66fc99e Initial load
duke
parents:
diff changeset
2274 int delta = InvocationCounter::count_increment;
a61af66fc99e Initial load
duke
parents:
diff changeset
2275
a61af66fc99e Initial load
duke
parents:
diff changeset
2276 // Load each counter in a register
a61af66fc99e Initial load
duke
parents:
diff changeset
2277 ld( inv_counter, Rtmp );
a61af66fc99e Initial load
duke
parents:
diff changeset
2278 ld( be_counter, Rtmp2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2279
a61af66fc99e Initial load
duke
parents:
diff changeset
2280 assert( is_simm13( delta ), " delta too large.");
a61af66fc99e Initial load
duke
parents:
diff changeset
2281
a61af66fc99e Initial load
duke
parents:
diff changeset
2282 // Add the delta to the invocation counter and store the result
a61af66fc99e Initial load
duke
parents:
diff changeset
2283 add( Rtmp, delta, Rtmp );
a61af66fc99e Initial load
duke
parents:
diff changeset
2284
a61af66fc99e Initial load
duke
parents:
diff changeset
2285 // Mask the backedge counter
a61af66fc99e Initial load
duke
parents:
diff changeset
2286 and3( Rtmp2, InvocationCounter::count_mask_value, Rtmp2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2287
a61af66fc99e Initial load
duke
parents:
diff changeset
2288 // Store value
a61af66fc99e Initial load
duke
parents:
diff changeset
2289 st( Rtmp, inv_counter);
a61af66fc99e Initial load
duke
parents:
diff changeset
2290
a61af66fc99e Initial load
duke
parents:
diff changeset
2291 // Add invocation counter + backedge counter
a61af66fc99e Initial load
duke
parents:
diff changeset
2292 add( Rtmp, Rtmp2, Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2293
a61af66fc99e Initial load
duke
parents:
diff changeset
2294 // Note that this macro must leave the backedge_count + invocation_count in Rtmp!
a61af66fc99e Initial load
duke
parents:
diff changeset
2295 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2296
a61af66fc99e Initial load
duke
parents:
diff changeset
2297 void InterpreterMacroAssembler::increment_backedge_counter( Register Rtmp, Register Rtmp2 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2298 assert(UseCompiler, "incrementing must be useful");
a61af66fc99e Initial load
duke
parents:
diff changeset
2299 #ifdef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
2300 Address be_counter(G5_method, 0, in_bytes(methodOopDesc::backedge_counter_offset()
a61af66fc99e Initial load
duke
parents:
diff changeset
2301 + InvocationCounter::counter_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
2302 Address inv_counter(G5_method, 0, in_bytes(methodOopDesc::invocation_counter_offset()
a61af66fc99e Initial load
duke
parents:
diff changeset
2303 + InvocationCounter::counter_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
2304 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
2305 Address be_counter(Lmethod, 0, in_bytes(methodOopDesc::backedge_counter_offset()
a61af66fc99e Initial load
duke
parents:
diff changeset
2306 + InvocationCounter::counter_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
2307 Address inv_counter(Lmethod, 0, in_bytes(methodOopDesc::invocation_counter_offset()
a61af66fc99e Initial load
duke
parents:
diff changeset
2308 + InvocationCounter::counter_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
2309 #endif /* CC_INTERP */
a61af66fc99e Initial load
duke
parents:
diff changeset
2310 int delta = InvocationCounter::count_increment;
a61af66fc99e Initial load
duke
parents:
diff changeset
2311 // Load each counter in a register
a61af66fc99e Initial load
duke
parents:
diff changeset
2312 ld( be_counter, Rtmp );
a61af66fc99e Initial load
duke
parents:
diff changeset
2313 ld( inv_counter, Rtmp2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2314
a61af66fc99e Initial load
duke
parents:
diff changeset
2315 // Add the delta to the backedge counter
a61af66fc99e Initial load
duke
parents:
diff changeset
2316 add( Rtmp, delta, Rtmp );
a61af66fc99e Initial load
duke
parents:
diff changeset
2317
a61af66fc99e Initial load
duke
parents:
diff changeset
2318 // Mask the invocation counter, add to backedge counter
a61af66fc99e Initial load
duke
parents:
diff changeset
2319 and3( Rtmp2, InvocationCounter::count_mask_value, Rtmp2 );
a61af66fc99e Initial load
duke
parents:
diff changeset
2320
a61af66fc99e Initial load
duke
parents:
diff changeset
2321 // and store the result to memory
a61af66fc99e Initial load
duke
parents:
diff changeset
2322 st( Rtmp, be_counter );
a61af66fc99e Initial load
duke
parents:
diff changeset
2323
a61af66fc99e Initial load
duke
parents:
diff changeset
2324 // Add backedge + invocation counter
a61af66fc99e Initial load
duke
parents:
diff changeset
2325 add( Rtmp, Rtmp2, Rtmp );
a61af66fc99e Initial load
duke
parents:
diff changeset
2326
a61af66fc99e Initial load
duke
parents:
diff changeset
2327 // Note that this macro must leave backedge_count + invocation_count in Rtmp!
a61af66fc99e Initial load
duke
parents:
diff changeset
2328 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2329
a61af66fc99e Initial load
duke
parents:
diff changeset
2330 #ifndef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
2331 void InterpreterMacroAssembler::test_backedge_count_for_osr( Register backedge_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
2332 Register branch_bcp,
a61af66fc99e Initial load
duke
parents:
diff changeset
2333 Register Rtmp ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2334 Label did_not_overflow;
a61af66fc99e Initial load
duke
parents:
diff changeset
2335 Label overflow_with_error;
a61af66fc99e Initial load
duke
parents:
diff changeset
2336 assert_different_registers(backedge_count, Rtmp, branch_bcp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2337 assert(UseOnStackReplacement,"Must UseOnStackReplacement to test_backedge_count_for_osr");
a61af66fc99e Initial load
duke
parents:
diff changeset
2338
a61af66fc99e Initial load
duke
parents:
diff changeset
2339 Address limit(Rtmp, address(&InvocationCounter::InterpreterBackwardBranchLimit));
a61af66fc99e Initial load
duke
parents:
diff changeset
2340 load_contents(limit, Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2341 cmp(backedge_count, Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2342 br(Assembler::lessUnsigned, false, Assembler::pt, did_not_overflow);
a61af66fc99e Initial load
duke
parents:
diff changeset
2343 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2344
a61af66fc99e Initial load
duke
parents:
diff changeset
2345 // When ProfileInterpreter is on, the backedge_count comes from the
a61af66fc99e Initial load
duke
parents:
diff changeset
2346 // methodDataOop, which value does not get reset on the call to
a61af66fc99e Initial load
duke
parents:
diff changeset
2347 // frequency_counter_overflow(). To avoid excessive calls to the overflow
a61af66fc99e Initial load
duke
parents:
diff changeset
2348 // routine while the method is being compiled, add a second test to make sure
a61af66fc99e Initial load
duke
parents:
diff changeset
2349 // the overflow function is called only once every overflow_frequency.
a61af66fc99e Initial load
duke
parents:
diff changeset
2350 if (ProfileInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2351 const int overflow_frequency = 1024;
a61af66fc99e Initial load
duke
parents:
diff changeset
2352 andcc(backedge_count, overflow_frequency-1, Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2353 brx(Assembler::notZero, false, Assembler::pt, did_not_overflow);
a61af66fc99e Initial load
duke
parents:
diff changeset
2354 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2355 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2356
a61af66fc99e Initial load
duke
parents:
diff changeset
2357 // overflow in loop, pass branch bytecode
a61af66fc99e Initial load
duke
parents:
diff changeset
2358 set(6,Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2359 call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::frequency_counter_overflow), branch_bcp, Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2360
a61af66fc99e Initial load
duke
parents:
diff changeset
2361 // Was an OSR adapter generated?
a61af66fc99e Initial load
duke
parents:
diff changeset
2362 // O0 = osr nmethod
a61af66fc99e Initial load
duke
parents:
diff changeset
2363 tst(O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2364 brx(Assembler::zero, false, Assembler::pn, overflow_with_error);
a61af66fc99e Initial load
duke
parents:
diff changeset
2365 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2366
a61af66fc99e Initial load
duke
parents:
diff changeset
2367 // Has the nmethod been invalidated already?
a61af66fc99e Initial load
duke
parents:
diff changeset
2368 ld(O0, nmethod::entry_bci_offset(), O2);
a61af66fc99e Initial load
duke
parents:
diff changeset
2369 cmp(O2, InvalidOSREntryBci);
a61af66fc99e Initial load
duke
parents:
diff changeset
2370 br(Assembler::equal, false, Assembler::pn, overflow_with_error);
a61af66fc99e Initial load
duke
parents:
diff changeset
2371 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2372
a61af66fc99e Initial load
duke
parents:
diff changeset
2373 // migrate the interpreter frame off of the stack
a61af66fc99e Initial load
duke
parents:
diff changeset
2374
a61af66fc99e Initial load
duke
parents:
diff changeset
2375 mov(G2_thread, L7);
a61af66fc99e Initial load
duke
parents:
diff changeset
2376 // save nmethod
a61af66fc99e Initial load
duke
parents:
diff changeset
2377 mov(O0, L6);
a61af66fc99e Initial load
duke
parents:
diff changeset
2378 set_last_Java_frame(SP, noreg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2379 call_VM_leaf(noreg, CAST_FROM_FN_PTR(address, SharedRuntime::OSR_migration_begin), L7);
a61af66fc99e Initial load
duke
parents:
diff changeset
2380 reset_last_Java_frame();
a61af66fc99e Initial load
duke
parents:
diff changeset
2381 mov(L7, G2_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
2382
a61af66fc99e Initial load
duke
parents:
diff changeset
2383 // move OSR nmethod to I1
a61af66fc99e Initial load
duke
parents:
diff changeset
2384 mov(L6, I1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2385
a61af66fc99e Initial load
duke
parents:
diff changeset
2386 // OSR buffer to I0
a61af66fc99e Initial load
duke
parents:
diff changeset
2387 mov(O0, I0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2388
a61af66fc99e Initial load
duke
parents:
diff changeset
2389 // remove the interpreter frame
a61af66fc99e Initial load
duke
parents:
diff changeset
2390 restore(I5_savedSP, 0, SP);
a61af66fc99e Initial load
duke
parents:
diff changeset
2391
a61af66fc99e Initial load
duke
parents:
diff changeset
2392 // Jump to the osr code.
a61af66fc99e Initial load
duke
parents:
diff changeset
2393 ld_ptr(O1, nmethod::osr_entry_point_offset(), O2);
a61af66fc99e Initial load
duke
parents:
diff changeset
2394 jmp(O2, G0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2395 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2396
a61af66fc99e Initial load
duke
parents:
diff changeset
2397 bind(overflow_with_error);
a61af66fc99e Initial load
duke
parents:
diff changeset
2398
a61af66fc99e Initial load
duke
parents:
diff changeset
2399 bind(did_not_overflow);
a61af66fc99e Initial load
duke
parents:
diff changeset
2400 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2401
a61af66fc99e Initial load
duke
parents:
diff changeset
2402
a61af66fc99e Initial load
duke
parents:
diff changeset
2403
a61af66fc99e Initial load
duke
parents:
diff changeset
2404 void InterpreterMacroAssembler::interp_verify_oop(Register reg, TosState state, const char * file, int line) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2405 if (state == atos) { MacroAssembler::_verify_oop(reg, "broken oop ", file, line); }
a61af66fc99e Initial load
duke
parents:
diff changeset
2406 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2407
a61af66fc99e Initial load
duke
parents:
diff changeset
2408
a61af66fc99e Initial load
duke
parents:
diff changeset
2409 // local helper function for the verify_oop_or_return_address macro
a61af66fc99e Initial load
duke
parents:
diff changeset
2410 static bool verify_return_address(methodOopDesc* m, int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2411 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
2412 address pc = (address)(m->constMethod())
a61af66fc99e Initial load
duke
parents:
diff changeset
2413 + in_bytes(constMethodOopDesc::codes_offset()) + bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
2414 // assume it is a valid return address if it is inside m and is preceded by a jsr
a61af66fc99e Initial load
duke
parents:
diff changeset
2415 if (!m->contains(pc)) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2416 address jsr_pc;
a61af66fc99e Initial load
duke
parents:
diff changeset
2417 jsr_pc = pc - Bytecodes::length_for(Bytecodes::_jsr);
a61af66fc99e Initial load
duke
parents:
diff changeset
2418 if (*jsr_pc == Bytecodes::_jsr && jsr_pc >= m->code_base()) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2419 jsr_pc = pc - Bytecodes::length_for(Bytecodes::_jsr_w);
a61af66fc99e Initial load
duke
parents:
diff changeset
2420 if (*jsr_pc == Bytecodes::_jsr_w && jsr_pc >= m->code_base()) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2421 #endif // PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
2422 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2423 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2424
a61af66fc99e Initial load
duke
parents:
diff changeset
2425
a61af66fc99e Initial load
duke
parents:
diff changeset
2426 void InterpreterMacroAssembler::verify_oop_or_return_address(Register reg, Register Rtmp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2427 if (!VerifyOops) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2428 // the VM documentation for the astore[_wide] bytecode allows
a61af66fc99e Initial load
duke
parents:
diff changeset
2429 // the TOS to be not only an oop but also a return address
a61af66fc99e Initial load
duke
parents:
diff changeset
2430 Label test;
a61af66fc99e Initial load
duke
parents:
diff changeset
2431 Label skip;
a61af66fc99e Initial load
duke
parents:
diff changeset
2432 // See if it is an address (in the current method):
a61af66fc99e Initial load
duke
parents:
diff changeset
2433
a61af66fc99e Initial load
duke
parents:
diff changeset
2434 mov(reg, Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2435 const int log2_bytecode_size_limit = 16;
a61af66fc99e Initial load
duke
parents:
diff changeset
2436 srl(Rtmp, log2_bytecode_size_limit, Rtmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2437 br_notnull( Rtmp, false, pt, test );
a61af66fc99e Initial load
duke
parents:
diff changeset
2438 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2439
a61af66fc99e Initial load
duke
parents:
diff changeset
2440 // %%% should use call_VM_leaf here?
a61af66fc99e Initial load
duke
parents:
diff changeset
2441 save_frame_and_mov(0, Lmethod, O0, reg, O1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2442 save_thread(L7_thread_cache);
a61af66fc99e Initial load
duke
parents:
diff changeset
2443 call(CAST_FROM_FN_PTR(address,verify_return_address), relocInfo::none);
a61af66fc99e Initial load
duke
parents:
diff changeset
2444 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2445 restore_thread(L7_thread_cache);
a61af66fc99e Initial load
duke
parents:
diff changeset
2446 br_notnull( O0, false, pt, skip );
a61af66fc99e Initial load
duke
parents:
diff changeset
2447 delayed()->restore();
a61af66fc99e Initial load
duke
parents:
diff changeset
2448
a61af66fc99e Initial load
duke
parents:
diff changeset
2449 // Perform a more elaborate out-of-line call
a61af66fc99e Initial load
duke
parents:
diff changeset
2450 // Not an address; verify it:
a61af66fc99e Initial load
duke
parents:
diff changeset
2451 bind(test);
a61af66fc99e Initial load
duke
parents:
diff changeset
2452 verify_oop(reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2453 bind(skip);
a61af66fc99e Initial load
duke
parents:
diff changeset
2454 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2455
a61af66fc99e Initial load
duke
parents:
diff changeset
2456
a61af66fc99e Initial load
duke
parents:
diff changeset
2457 void InterpreterMacroAssembler::verify_FPU(int stack_depth, TosState state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2458 if (state == ftos || state == dtos) MacroAssembler::verify_FPU(stack_depth);
a61af66fc99e Initial load
duke
parents:
diff changeset
2459 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2460 #endif /* CC_INTERP */
a61af66fc99e Initial load
duke
parents:
diff changeset
2461
a61af66fc99e Initial load
duke
parents:
diff changeset
2462 // Inline assembly for:
a61af66fc99e Initial load
duke
parents:
diff changeset
2463 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2464 // if (thread is in interp_only_mode) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2465 // InterpreterRuntime::post_method_entry();
a61af66fc99e Initial load
duke
parents:
diff changeset
2466 // }
a61af66fc99e Initial load
duke
parents:
diff changeset
2467 // if (DTraceMethodProbes) {
605
98cb887364d3 6810672: Comment typos
twisti
parents: 422
diff changeset
2468 // SharedRuntime::dtrace_method_entry(method, receiver);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2469 // }
610
70998f2e05ef 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 422
diff changeset
2470 // if (RC_TRACE_IN_RANGE(0x00001000, 0x00002000)) {
70998f2e05ef 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 422
diff changeset
2471 // SharedRuntime::rc_trace_method_entry(method, receiver);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2472 // }
a61af66fc99e Initial load
duke
parents:
diff changeset
2473
a61af66fc99e Initial load
duke
parents:
diff changeset
2474 void InterpreterMacroAssembler::notify_method_entry() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2475
a61af66fc99e Initial load
duke
parents:
diff changeset
2476 // C++ interpreter only uses this for native methods.
a61af66fc99e Initial load
duke
parents:
diff changeset
2477
a61af66fc99e Initial load
duke
parents:
diff changeset
2478 // Whenever JVMTI puts a thread in interp_only_mode, method
a61af66fc99e Initial load
duke
parents:
diff changeset
2479 // entry/exit events are sent for that thread to track stack
a61af66fc99e Initial load
duke
parents:
diff changeset
2480 // depth. If it is possible to enter interp_only_mode we add
a61af66fc99e Initial load
duke
parents:
diff changeset
2481 // the code to check if the event should be sent.
a61af66fc99e Initial load
duke
parents:
diff changeset
2482 if (JvmtiExport::can_post_interpreter_events()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2483 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
2484 Register temp_reg = O5;
a61af66fc99e Initial load
duke
parents:
diff changeset
2485
a61af66fc99e Initial load
duke
parents:
diff changeset
2486 const Address interp_only (G2_thread, 0, in_bytes(JavaThread::interp_only_mode_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
2487
a61af66fc99e Initial load
duke
parents:
diff changeset
2488 ld(interp_only, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2489 tst(temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2490 br(zero, false, pt, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
2491 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2492 call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::post_method_entry));
a61af66fc99e Initial load
duke
parents:
diff changeset
2493 bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
2494 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2495
a61af66fc99e Initial load
duke
parents:
diff changeset
2496 {
a61af66fc99e Initial load
duke
parents:
diff changeset
2497 Register temp_reg = O5;
a61af66fc99e Initial load
duke
parents:
diff changeset
2498 SkipIfEqual skip_if(this, temp_reg, &DTraceMethodProbes, zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
2499 call_VM_leaf(noreg,
a61af66fc99e Initial load
duke
parents:
diff changeset
2500 CAST_FROM_FN_PTR(address, SharedRuntime::dtrace_method_entry),
a61af66fc99e Initial load
duke
parents:
diff changeset
2501 G2_thread, Lmethod);
a61af66fc99e Initial load
duke
parents:
diff changeset
2502 }
610
70998f2e05ef 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 422
diff changeset
2503
70998f2e05ef 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 422
diff changeset
2504 // RedefineClasses() tracing support for obsolete method entry
70998f2e05ef 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 422
diff changeset
2505 if (RC_TRACE_IN_RANGE(0x00001000, 0x00002000)) {
70998f2e05ef 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 422
diff changeset
2506 call_VM_leaf(noreg,
70998f2e05ef 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 422
diff changeset
2507 CAST_FROM_FN_PTR(address, SharedRuntime::rc_trace_method_entry),
70998f2e05ef 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 422
diff changeset
2508 G2_thread, Lmethod);
70998f2e05ef 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 422
diff changeset
2509 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2510 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2511
a61af66fc99e Initial load
duke
parents:
diff changeset
2512
a61af66fc99e Initial load
duke
parents:
diff changeset
2513 // Inline assembly for:
a61af66fc99e Initial load
duke
parents:
diff changeset
2514 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2515 // if (thread is in interp_only_mode) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2516 // // save result
a61af66fc99e Initial load
duke
parents:
diff changeset
2517 // InterpreterRuntime::post_method_exit();
a61af66fc99e Initial load
duke
parents:
diff changeset
2518 // // restore result
a61af66fc99e Initial load
duke
parents:
diff changeset
2519 // }
a61af66fc99e Initial load
duke
parents:
diff changeset
2520 // if (DTraceMethodProbes) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2521 // SharedRuntime::dtrace_method_exit(thread, method);
a61af66fc99e Initial load
duke
parents:
diff changeset
2522 // }
a61af66fc99e Initial load
duke
parents:
diff changeset
2523 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2524 // Native methods have their result stored in d_tmp and l_tmp
a61af66fc99e Initial load
duke
parents:
diff changeset
2525 // Java methods have their result stored in the expression stack
a61af66fc99e Initial load
duke
parents:
diff changeset
2526
a61af66fc99e Initial load
duke
parents:
diff changeset
2527 void InterpreterMacroAssembler::notify_method_exit(bool is_native_method,
a61af66fc99e Initial load
duke
parents:
diff changeset
2528 TosState state,
a61af66fc99e Initial load
duke
parents:
diff changeset
2529 NotifyMethodExitMode mode) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2530 // C++ interpreter only uses this for native methods.
a61af66fc99e Initial load
duke
parents:
diff changeset
2531
a61af66fc99e Initial load
duke
parents:
diff changeset
2532 // Whenever JVMTI puts a thread in interp_only_mode, method
a61af66fc99e Initial load
duke
parents:
diff changeset
2533 // entry/exit events are sent for that thread to track stack
a61af66fc99e Initial load
duke
parents:
diff changeset
2534 // depth. If it is possible to enter interp_only_mode we add
a61af66fc99e Initial load
duke
parents:
diff changeset
2535 // the code to check if the event should be sent.
a61af66fc99e Initial load
duke
parents:
diff changeset
2536 if (mode == NotifyJVMTI && JvmtiExport::can_post_interpreter_events()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2537 Label L;
a61af66fc99e Initial load
duke
parents:
diff changeset
2538 Register temp_reg = O5;
a61af66fc99e Initial load
duke
parents:
diff changeset
2539
a61af66fc99e Initial load
duke
parents:
diff changeset
2540 const Address interp_only (G2_thread, 0, in_bytes(JavaThread::interp_only_mode_offset()));
a61af66fc99e Initial load
duke
parents:
diff changeset
2541
a61af66fc99e Initial load
duke
parents:
diff changeset
2542 ld(interp_only, temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2543 tst(temp_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2544 br(zero, false, pt, L);
a61af66fc99e Initial load
duke
parents:
diff changeset
2545 delayed()->nop();
a61af66fc99e Initial load
duke
parents:
diff changeset
2546
a61af66fc99e Initial load
duke
parents:
diff changeset
2547 // Note: frame::interpreter_frame_result has a dependency on how the
a61af66fc99e Initial load
duke
parents:
diff changeset
2548 // method result is saved across the call to post_method_exit. For
a61af66fc99e Initial load
duke
parents:
diff changeset
2549 // native methods it assumes the result registers are saved to
a61af66fc99e Initial load
duke
parents:
diff changeset
2550 // l_scratch and d_scratch. If this changes then the interpreter_frame_result
a61af66fc99e Initial load
duke
parents:
diff changeset
2551 // implementation will need to be updated too.
a61af66fc99e Initial load
duke
parents:
diff changeset
2552
a61af66fc99e Initial load
duke
parents:
diff changeset
2553 save_return_value(state, is_native_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
2554 call_VM(noreg,
a61af66fc99e Initial load
duke
parents:
diff changeset
2555 CAST_FROM_FN_PTR(address, InterpreterRuntime::post_method_exit));
a61af66fc99e Initial load
duke
parents:
diff changeset
2556 restore_return_value(state, is_native_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
2557 bind(L);
a61af66fc99e Initial load
duke
parents:
diff changeset
2558 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2559
a61af66fc99e Initial load
duke
parents:
diff changeset
2560 {
a61af66fc99e Initial load
duke
parents:
diff changeset
2561 Register temp_reg = O5;
a61af66fc99e Initial load
duke
parents:
diff changeset
2562 // Dtrace notification
a61af66fc99e Initial load
duke
parents:
diff changeset
2563 SkipIfEqual skip_if(this, temp_reg, &DTraceMethodProbes, zero);
a61af66fc99e Initial load
duke
parents:
diff changeset
2564 save_return_value(state, is_native_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
2565 call_VM_leaf(
a61af66fc99e Initial load
duke
parents:
diff changeset
2566 noreg,
a61af66fc99e Initial load
duke
parents:
diff changeset
2567 CAST_FROM_FN_PTR(address, SharedRuntime::dtrace_method_exit),
a61af66fc99e Initial load
duke
parents:
diff changeset
2568 G2_thread, Lmethod);
a61af66fc99e Initial load
duke
parents:
diff changeset
2569 restore_return_value(state, is_native_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
2570 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2571 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2572
a61af66fc99e Initial load
duke
parents:
diff changeset
2573 void InterpreterMacroAssembler::save_return_value(TosState state, bool is_native_call) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2574 #ifdef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
2575 // result potentially in O0/O1: save it across calls
a61af66fc99e Initial load
duke
parents:
diff changeset
2576 stf(FloatRegisterImpl::D, F0, STATE(_native_fresult));
a61af66fc99e Initial load
duke
parents:
diff changeset
2577 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2578 stx(O0, STATE(_native_lresult));
a61af66fc99e Initial load
duke
parents:
diff changeset
2579 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
2580 std(O0, STATE(_native_lresult));
a61af66fc99e Initial load
duke
parents:
diff changeset
2581 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2582 #else // CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
2583 if (is_native_call) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2584 stf(FloatRegisterImpl::D, F0, d_tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2585 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2586 stx(O0, l_tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2587 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
2588 std(O0, l_tmp);
a61af66fc99e Initial load
duke
parents:
diff changeset
2589 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2590 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2591 push(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
2592 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2593 #endif // CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
2594 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2595
a61af66fc99e Initial load
duke
parents:
diff changeset
2596 void InterpreterMacroAssembler::restore_return_value( TosState state, bool is_native_call) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2597 #ifdef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
2598 ldf(FloatRegisterImpl::D, STATE(_native_fresult), F0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2599 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2600 ldx(STATE(_native_lresult), O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2601 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
2602 ldd(STATE(_native_lresult), O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2603 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2604 #else // CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
2605 if (is_native_call) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2606 ldf(FloatRegisterImpl::D, d_tmp, F0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2607 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
2608 ldx(l_tmp, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2609 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
2610 ldd(l_tmp, O0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2611 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
2612 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2613 pop(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
2614 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2615 #endif // CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
2616 }