@@ -1237,24 +1237,50 @@ static void gen_continuation_enter(MacroAssembler* masm,
1237
1237
1238
1238
fill_continuation_entry (masm); // kills rax
1239
1239
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);
1247
1242
1243
+ address mark = __ pc ();
1244
+ __ relocate (resolve.rspec ());
1245
+ // if (!far_branches()) {
1246
+ __ bl (resolve.target ());
1248
1247
oop_maps->add_gc_map (__ pc () - start, map);
1249
1248
__ post_call_nop ();
1250
1249
1250
+ __ b (exit );
1251
+
1252
+ __ bind (call_thaw);
1253
+
1254
+ rt_call (masm, CAST_FROM_FN_PTR (address, StubRoutines::cont_thaw ()));
1251
1255
oop_maps->add_gc_map (__ pc () - start, map->deep_copy ());
1252
1256
ContinuationEntry::return_pc_offset = __ pc () - start;
1253
1257
__ post_call_nop ();
1254
1258
1255
1259
__ bind (exit );
1256
1260
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
+
1258
1284
CodeBuffer* cbuf = masm->code_section ()->outer ();
1259
1285
address stub = CompiledStaticCall::emit_to_interp_stub (*cbuf, mark);
1260
1286
}
0 commit comments