annotate src/cpu/sparc/vm/interp_masm_sparc.cpp @ 7180:f34d701e952e

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