author | naoto |
Tue, 09 Jul 2019 08:05:38 -0700 | |
changeset 55627 | 9c1885fb2a42 |
parent 53244 | 9807daeb47c4 |
child 55398 | e53ec3b362f4 |
child 58678 | 9cf78a70fa4f |
permissions | -rw-r--r-- |
29183 | 1 |
/* |
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
50380
diff
changeset
|
2 |
* Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved. |
30225
e9722ea461d4
8077615: AARCH64: Add C2 intrinsic for BigInteger::multiplyToLen() method
aph
parents:
29195
diff
changeset
|
3 |
* Copyright (c) 2014, 2015, Red Hat Inc. All rights reserved. |
29183 | 4 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
5 |
* |
|
6 |
* This code is free software; you can redistribute it and/or modify it |
|
7 |
* under the terms of the GNU General Public License version 2 only, as |
|
8 |
* published by the Free Software Foundation. |
|
9 |
* |
|
10 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
11 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
14 |
* accompanied this code). |
|
15 |
* |
|
16 |
* You should have received a copy of the GNU General Public License version |
|
17 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
18 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
19 |
* |
|
20 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
21 |
* or visit www.oracle.com if you need additional information or have any |
|
22 |
* questions. |
|
23 |
* |
|
24 |
*/ |
|
25 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
50380
diff
changeset
|
26 |
#ifndef CPU_AARCH64_INTERP_MASM_AARCH64_HPP |
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
50380
diff
changeset
|
27 |
#define CPU_AARCH64_INTERP_MASM_AARCH64_HPP |
29183 | 28 |
|
29 |
#include "asm/macroAssembler.hpp" |
|
30 |
#include "interpreter/invocationCounter.hpp" |
|
31 |
#include "runtime/frame.hpp" |
|
32 |
||
33 |
// This file specializes the assember with interpreter-specific macros |
|
34 |
||
35148 | 35 |
typedef ByteSize (*OffsetFunction)(uint); |
29183 | 36 |
|
37 |
class InterpreterMacroAssembler: public MacroAssembler { |
|
38 |
protected: |
|
39 |
||
40 |
protected: |
|
29869 | 41 |
using MacroAssembler::call_VM_leaf_base; |
42 |
||
29183 | 43 |
// Interpreter specific version of call_VM_base |
30225
e9722ea461d4
8077615: AARCH64: Add C2 intrinsic for BigInteger::multiplyToLen() method
aph
parents:
29195
diff
changeset
|
44 |
using MacroAssembler::call_VM_leaf_base; |
e9722ea461d4
8077615: AARCH64: Add C2 intrinsic for BigInteger::multiplyToLen() method
aph
parents:
29195
diff
changeset
|
45 |
|
29183 | 46 |
virtual void call_VM_leaf_base(address entry_point, |
47 |
int number_of_arguments); |
|
48 |
||
49 |
virtual void call_VM_base(Register oop_result, |
|
50 |
Register java_thread, |
|
51 |
Register last_java_sp, |
|
52 |
address entry_point, |
|
53 |
int number_of_arguments, |
|
54 |
bool check_exceptions); |
|
55 |
||
56 |
// base routine for all dispatches |
|
48127
efc459cf351e
8189596: AArch64: implementation for Thread-local handshakes
aph
parents:
47216
diff
changeset
|
57 |
void dispatch_base(TosState state, address* table, |
efc459cf351e
8189596: AArch64: implementation for Thread-local handshakes
aph
parents:
47216
diff
changeset
|
58 |
bool verifyoop = true, bool generate_poll = false); |
29183 | 59 |
|
60 |
public: |
|
61 |
InterpreterMacroAssembler(CodeBuffer* code) : MacroAssembler(code) {} |
|
62 |
||
63 |
void load_earlyret_value(TosState state); |
|
64 |
||
33070
54f3f085b165
8136525: Generate interpreter entries only once and avoid unnecessary jump to jump
mdoerr
parents:
31046
diff
changeset
|
65 |
void jump_to_entry(address entry); |
54f3f085b165
8136525: Generate interpreter entries only once and avoid unnecessary jump to jump
mdoerr
parents:
31046
diff
changeset
|
66 |
|
46294
345a46524a19
8172020: Internal Error (cpu/arm/vm/frame_arm.cpp:571): assert(obj == __null || Universe::heap()->is_in(obj)) failed: sanity check #
cjplummer
parents:
40643
diff
changeset
|
67 |
virtual void check_and_handle_popframe(Register java_thread); |
345a46524a19
8172020: Internal Error (cpu/arm/vm/frame_arm.cpp:571): assert(obj == __null || Universe::heap()->is_in(obj)) failed: sanity check #
cjplummer
parents:
40643
diff
changeset
|
68 |
virtual void check_and_handle_earlyret(Register java_thread); |
345a46524a19
8172020: Internal Error (cpu/arm/vm/frame_arm.cpp:571): assert(obj == __null || Universe::heap()->is_in(obj)) failed: sanity check #
cjplummer
parents:
40643
diff
changeset
|
69 |
|
29183 | 70 |
// Interpreter-specific registers |
71 |
void save_bcp() { |
|
72 |
str(rbcp, Address(rfp, frame::interpreter_frame_bcp_offset * wordSize)); |
|
73 |
} |
|
74 |
||
75 |
void restore_bcp() { |
|
76 |
ldr(rbcp, Address(rfp, frame::interpreter_frame_bcp_offset * wordSize)); |
|
77 |
} |
|
78 |
||
79 |
void restore_locals() { |
|
80 |
ldr(rlocals, Address(rfp, frame::interpreter_frame_locals_offset * wordSize)); |
|
81 |
} |
|
82 |
||
83 |
void restore_constant_pool_cache() { |
|
84 |
ldr(rcpool, Address(rfp, frame::interpreter_frame_cache_offset * wordSize)); |
|
85 |
} |
|
86 |
||
87 |
void get_dispatch(); |
|
88 |
||
89 |
// Helpers for runtime call arguments/results |
|
90 |
||
91 |
// Helpers for runtime call arguments/results |
|
92 |
void get_method(Register reg) { |
|
93 |
ldr(reg, Address(rfp, frame::interpreter_frame_method_offset * wordSize)); |
|
94 |
} |
|
95 |
||
96 |
void get_const(Register reg) { |
|
97 |
get_method(reg); |
|
98 |
ldr(reg, Address(reg, in_bytes(Method::const_offset()))); |
|
99 |
} |
|
100 |
||
101 |
void get_constant_pool(Register reg) { |
|
102 |
get_const(reg); |
|
103 |
ldr(reg, Address(reg, in_bytes(ConstMethod::constants_offset()))); |
|
104 |
} |
|
105 |
||
106 |
void get_constant_pool_cache(Register reg) { |
|
107 |
get_constant_pool(reg); |
|
108 |
ldr(reg, Address(reg, ConstantPool::cache_offset_in_bytes())); |
|
109 |
} |
|
110 |
||
111 |
void get_cpool_and_tags(Register cpool, Register tags) { |
|
112 |
get_constant_pool(cpool); |
|
113 |
ldr(tags, Address(cpool, ConstantPool::tags_offset_in_bytes())); |
|
114 |
} |
|
115 |
||
116 |
void get_unsigned_2_byte_index_at_bcp(Register reg, int bcp_offset); |
|
117 |
void get_cache_and_index_at_bcp(Register cache, Register index, int bcp_offset, size_t index_size = sizeof(u2)); |
|
118 |
void get_cache_and_index_and_bytecode_at_bcp(Register cache, Register index, Register bytecode, int byte_no, int bcp_offset, size_t index_size = sizeof(u2)); |
|
119 |
void get_cache_entry_pointer_at_bcp(Register cache, Register tmp, int bcp_offset, size_t index_size = sizeof(u2)); |
|
120 |
void get_cache_index_at_bcp(Register index, int bcp_offset, size_t index_size = sizeof(u2)); |
|
121 |
void get_method_counters(Register method, Register mcs, Label& skip); |
|
122 |
||
123 |
// load cpool->resolved_references(index); |
|
49816 | 124 |
void load_resolved_reference_at_index(Register result, Register index, Register tmp = r5); |
29183 | 125 |
|
46427
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46294
diff
changeset
|
126 |
// load cpool->resolved_klass_at(index); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46294
diff
changeset
|
127 |
void load_resolved_klass_at_offset(Register cpool, Register index, Register klass, Register temp); |
54713555867e
8171392: Move Klass pointers outside of ConstantPool entries so ConstantPool can be read-only
iklam
parents:
46294
diff
changeset
|
128 |
|
29183 | 129 |
void pop_ptr(Register r = r0); |
130 |
void pop_i(Register r = r0); |
|
131 |
void pop_l(Register r = r0); |
|
132 |
void pop_f(FloatRegister r = v0); |
|
133 |
void pop_d(FloatRegister r = v0); |
|
134 |
void push_ptr(Register r = r0); |
|
135 |
void push_i(Register r = r0); |
|
136 |
void push_l(Register r = r0); |
|
137 |
void push_f(FloatRegister r = v0); |
|
138 |
void push_d(FloatRegister r = v0); |
|
139 |
||
140 |
void pop(Register r ) { ((MacroAssembler*)this)->pop(r); } |
|
141 |
||
142 |
void push(Register r ) { ((MacroAssembler*)this)->push(r); } |
|
143 |
||
144 |
void pop(TosState state); // transition vtos -> state |
|
145 |
void push(TosState state); // transition state -> vtos |
|
146 |
||
147 |
void pop(RegSet regs, Register stack) { ((MacroAssembler*)this)->pop(regs, stack); } |
|
148 |
void push(RegSet regs, Register stack) { ((MacroAssembler*)this)->push(regs, stack); } |
|
149 |
||
150 |
void empty_expression_stack() { |
|
151 |
ldr(esp, Address(rfp, frame::interpreter_frame_monitor_block_top_offset * wordSize)); |
|
152 |
// NULL last_sp until next java call |
|
153 |
str(zr, Address(rfp, frame::interpreter_frame_last_sp_offset * wordSize)); |
|
154 |
} |
|
155 |
||
156 |
// Helpers for swap and dup |
|
157 |
void load_ptr(int n, Register val); |
|
158 |
void store_ptr(int n, Register val); |
|
159 |
||
48953
67aa88701d46
8190428: Minimal Dynamic Constant support for AArch64
dsamersoff
parents:
48127
diff
changeset
|
160 |
// Load float value from 'address'. The value is loaded onto the FPU register v0. |
67aa88701d46
8190428: Minimal Dynamic Constant support for AArch64
dsamersoff
parents:
48127
diff
changeset
|
161 |
void load_float(Address src); |
67aa88701d46
8190428: Minimal Dynamic Constant support for AArch64
dsamersoff
parents:
48127
diff
changeset
|
162 |
void load_double(Address src); |
67aa88701d46
8190428: Minimal Dynamic Constant support for AArch64
dsamersoff
parents:
48127
diff
changeset
|
163 |
|
29183 | 164 |
// Generate a subtype check: branch to ok_is_subtype if sub_klass is |
165 |
// a subtype of super_klass. |
|
166 |
void gen_subtype_check( Register sub_klass, Label &ok_is_subtype ); |
|
167 |
||
168 |
// Dispatching |
|
169 |
void dispatch_prolog(TosState state, int step = 0); |
|
170 |
void dispatch_epilog(TosState state, int step = 0); |
|
171 |
// dispatch via rscratch1 |
|
48127
efc459cf351e
8189596: AArch64: implementation for Thread-local handshakes
aph
parents:
47216
diff
changeset
|
172 |
void dispatch_only(TosState state, bool generate_poll = false); |
29183 | 173 |
// dispatch normal table via rscratch1 (assume rscratch1 is loaded already) |
174 |
void dispatch_only_normal(TosState state); |
|
175 |
void dispatch_only_noverify(TosState state); |
|
176 |
// load rscratch1 from [rbcp + step] and dispatch via rscratch1 |
|
48127
efc459cf351e
8189596: AArch64: implementation for Thread-local handshakes
aph
parents:
47216
diff
changeset
|
177 |
void dispatch_next(TosState state, int step = 0, bool generate_poll = false); |
29183 | 178 |
// load rscratch1 from [esi] and dispatch via rscratch1 and table |
179 |
void dispatch_via (TosState state, address* table); |
|
180 |
||
181 |
// jump to an invoked target |
|
182 |
void prepare_to_jump_from_interpreted(); |
|
183 |
void jump_from_interpreted(Register method, Register temp); |
|
184 |
||
185 |
||
186 |
// Returning from interpreted functions |
|
187 |
// |
|
188 |
// Removes the current activation (incl. unlocking of monitors) |
|
189 |
// and sets up the return address. This code is also used for |
|
190 |
// exception unwindwing. In that case, we do not want to throw |
|
191 |
// IllegalMonitorStateExceptions, since that might get us into an |
|
192 |
// infinite rethrow exception loop. |
|
193 |
// Additionally this code is used for popFrame and earlyReturn. |
|
194 |
// In popFrame case we want to skip throwing an exception, |
|
195 |
// installing an exception, and notifying jvmdi. |
|
196 |
// In earlyReturn case we only want to skip throwing an exception |
|
197 |
// and installing an exception. |
|
198 |
void remove_activation(TosState state, |
|
199 |
bool throw_monitor_exception = true, |
|
200 |
bool install_monitor_exception = true, |
|
201 |
bool notify_jvmdi = true); |
|
202 |
||
203 |
// FIXME: Give us a valid frame at a null check. |
|
204 |
virtual void null_check(Register reg, int offset = -1) { |
|
205 |
// #ifdef ASSERT |
|
206 |
// save_bcp(); |
|
207 |
// set_last_Java_frame(esp, rfp, (address) pc()); |
|
208 |
// #endif |
|
209 |
MacroAssembler::null_check(reg, offset); |
|
210 |
// #ifdef ASSERT |
|
40643 | 211 |
// reset_last_Java_frame(true); |
29183 | 212 |
// #endif |
213 |
} |
|
214 |
||
215 |
// Object locking |
|
216 |
void lock_object (Register lock_reg); |
|
217 |
void unlock_object(Register lock_reg); |
|
218 |
||
219 |
// Interpreter profiling operations |
|
220 |
void set_method_data_pointer_for_bcp(); |
|
221 |
void test_method_data_pointer(Register mdp, Label& zero_continue); |
|
222 |
void verify_method_data_pointer(); |
|
223 |
||
224 |
void set_mdp_data_at(Register mdp_in, int constant, Register value); |
|
225 |
void increment_mdp_data_at(Address data, bool decrement = false); |
|
226 |
void increment_mdp_data_at(Register mdp_in, int constant, |
|
227 |
bool decrement = false); |
|
228 |
void increment_mdp_data_at(Register mdp_in, Register reg, int constant, |
|
229 |
bool decrement = false); |
|
230 |
void increment_mask_and_jump(Address counter_addr, |
|
29195
7d6208ea1775
8074119: [AARCH64] stage repo misses fixes from several Hotspot changes
adinn
parents:
29183
diff
changeset
|
231 |
int increment, Address mask, |
7d6208ea1775
8074119: [AARCH64] stage repo misses fixes from several Hotspot changes
adinn
parents:
29183
diff
changeset
|
232 |
Register scratch, Register scratch2, |
7d6208ea1775
8074119: [AARCH64] stage repo misses fixes from several Hotspot changes
adinn
parents:
29183
diff
changeset
|
233 |
bool preloaded, Condition cond, |
7d6208ea1775
8074119: [AARCH64] stage repo misses fixes from several Hotspot changes
adinn
parents:
29183
diff
changeset
|
234 |
Label* where); |
29183 | 235 |
void set_mdp_flag_at(Register mdp_in, int flag_constant); |
236 |
void test_mdp_data_at(Register mdp_in, int offset, Register value, |
|
237 |
Register test_value_out, |
|
238 |
Label& not_equal_continue); |
|
239 |
||
240 |
void record_klass_in_profile(Register receiver, Register mdp, |
|
241 |
Register reg2, bool is_virtual_call); |
|
242 |
void record_klass_in_profile_helper(Register receiver, Register mdp, |
|
243 |
Register reg2, int start_row, |
|
244 |
Label& done, bool is_virtual_call); |
|
35148 | 245 |
void record_item_in_profile_helper(Register item, Register mdp, |
246 |
Register reg2, int start_row, Label& done, int total_rows, |
|
247 |
OffsetFunction item_offset_fn, OffsetFunction item_count_offset_fn, |
|
248 |
int non_profiled_offset); |
|
29183 | 249 |
|
250 |
void update_mdp_by_offset(Register mdp_in, int offset_of_offset); |
|
251 |
void update_mdp_by_offset(Register mdp_in, Register reg, int offset_of_disp); |
|
252 |
void update_mdp_by_constant(Register mdp_in, int constant); |
|
253 |
void update_mdp_for_ret(Register return_bci); |
|
254 |
||
38072 | 255 |
// narrow int return value |
256 |
void narrow(Register result); |
|
257 |
||
29183 | 258 |
void profile_taken_branch(Register mdp, Register bumped_count); |
259 |
void profile_not_taken_branch(Register mdp); |
|
260 |
void profile_call(Register mdp); |
|
261 |
void profile_final_call(Register mdp); |
|
262 |
void profile_virtual_call(Register receiver, Register mdp, |
|
263 |
Register scratch2, |
|
264 |
bool receiver_can_be_null = false); |
|
35148 | 265 |
void profile_called_method(Register method, Register mdp, Register reg2) NOT_JVMCI_RETURN; |
29183 | 266 |
void profile_ret(Register return_bci, Register mdp); |
267 |
void profile_null_seen(Register mdp); |
|
268 |
void profile_typecheck(Register mdp, Register klass, Register scratch); |
|
269 |
void profile_typecheck_failed(Register mdp); |
|
270 |
void profile_switch_default(Register mdp); |
|
271 |
void profile_switch_case(Register index_in_scratch, Register mdp, |
|
272 |
Register scratch2); |
|
273 |
||
274 |
void profile_obj_type(Register obj, const Address& mdo_addr); |
|
275 |
void profile_arguments_type(Register mdp, Register callee, Register tmp, bool is_virtual); |
|
276 |
void profile_return_type(Register mdp, Register ret, Register tmp); |
|
277 |
void profile_parameters_type(Register mdp, Register tmp1, Register tmp2); |
|
278 |
||
279 |
// Debugging |
|
280 |
// only if +VerifyOops && state == atos |
|
281 |
void verify_oop(Register reg, TosState state = atos); |
|
282 |
// only if +VerifyFPU && (state == ftos || state == dtos) |
|
283 |
void verify_FPU(int stack_depth, TosState state = ftos); |
|
284 |
||
285 |
typedef enum { NotifyJVMTI, SkipNotifyJVMTI } NotifyMethodExitMode; |
|
286 |
||
287 |
// support for jvmti/dtrace |
|
288 |
void notify_method_entry(); |
|
289 |
void notify_method_exit(TosState state, NotifyMethodExitMode mode); |
|
290 |
||
291 |
virtual void _call_Unimplemented(address call_site) { |
|
292 |
save_bcp(); |
|
293 |
set_last_Java_frame(esp, rfp, (address) pc(), rscratch1); |
|
294 |
MacroAssembler::_call_Unimplemented(call_site); |
|
295 |
} |
|
296 |
}; |
|
297 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
50380
diff
changeset
|
298 |
#endif // CPU_AARCH64_INTERP_MASM_AARCH64_HPP |