Skip to content

Commit 51552f3

Browse files
author
Rickard Bäckman
committedJun 14, 2021
enterSpecial on AARCH64. Prototype code.
1 parent 8683ac1 commit 51552f3

File tree

2 files changed

+35
-9
lines changed

2 files changed

+35
-9
lines changed
 

‎src/hotspot/cpu/aarch64/macroAssembler_aarch64.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ void MacroAssembler::call_VM_helper(Register oop_result, address entry_point, in
746746
// trampolines won't be emitted.
747747

748748
address MacroAssembler::trampoline_call(Address entry, CodeBuffer* cbuf) {
749-
assert(JavaThread::current()->is_Compiler_thread(), "just checking");
749+
//assert(JavaThread::current()->is_Compiler_thread(), "just checking");
750750
assert(entry.rspec().type() == relocInfo::runtime_call_type
751751
|| entry.rspec().type() == relocInfo::opt_virtual_call_type
752752
|| entry.rspec().type() == relocInfo::static_call_type

‎src/hotspot/cpu/aarch64/sharedRuntime_aarch64.cpp

+34-8
Original file line numberDiff line numberDiff line change
@@ -1237,24 +1237,50 @@ static void gen_continuation_enter(MacroAssembler* masm,
12371237

12381238
fill_continuation_entry(masm); // kills rax
12391239

1240-
address mark = __ pc();
1241-
1242-
__ stop("LOOM AARCH64 gen_continuation_enter");
1243-
1244-
//__ call(resolve);
1245-
// __ mov(r13, sp);
1246-
// __ blr(c_rarg4);
1240+
__ cmp(c_rarg2, (u1)0);
1241+
__ br(Assembler::NE, call_thaw);
12471242

1243+
address mark = __ pc();
1244+
__ relocate(resolve.rspec());
1245+
//if (!far_branches()) {
1246+
__ bl(resolve.target());
12481247
oop_maps->add_gc_map(__ pc() - start, map);
12491248
__ post_call_nop();
12501249

1250+
__ b(exit);
1251+
1252+
__ bind(call_thaw);
1253+
1254+
rt_call(masm, CAST_FROM_FN_PTR(address, StubRoutines::cont_thaw()));
12511255
oop_maps->add_gc_map(__ pc() - start, map->deep_copy());
12521256
ContinuationEntry::return_pc_offset = __ pc() - start;
12531257
__ post_call_nop();
12541258

12551259
__ bind(exit);
12561260
continuation_enter_cleanup(masm);
1257-
1261+
__ leave();
1262+
__ ret(lr);
1263+
1264+
/// exception handling
1265+
1266+
exception_offset = __ pc() - start;
1267+
1268+
{
1269+
__ ldr(c_rarg1, Address(rfp, wordSize)); // return address
1270+
__ mov(r19, r0); // save return value contaning the exception oop in callee-saved R19
1271+
__ call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::exception_handler_for_return_address), rthread, c_rarg1);
1272+
1273+
// see OptoRuntime::generate_exception_blob: r0 -- exception oop, r3 -- exception pc
1274+
1275+
__ mov(rscratch2, r0); // the exception handler
1276+
__ mov(r0, r19); // restore return value contaning the exception oop
1277+
__ ldp(rfp, r3, Address(__ post(sp, 2 * wordSize)));
1278+
__ br(rscratch2); // the exception handler
1279+
}
1280+
1281+
continuation_enter_cleanup(masm);
1282+
__ stop("not implemented");
1283+
12581284
CodeBuffer* cbuf = masm->code_section()->outer();
12591285
address stub = CompiledStaticCall::emit_to_interp_stub(*cbuf, mark);
12601286
}

0 commit comments

Comments
 (0)
Please sign in to comment.