Skip to content

Commit 8004d88

Browse files
committed
WIP
1 parent 4b1544f commit 8004d88

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/hotspot/cpu/s390/macroAssembler_s390.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2320,7 +2320,7 @@ void MacroAssembler::call_VM_base(Register oop_result,
23202320

23212321
// VM calls without explicit last_java_sp.
23222322

2323-
void MacroAssembler::call_VM(Register oop_result, address entry_point, bool check_exceptions) {
2323+
void MacroAssembler::call_VM(Register oop_result, address entry_point, bool check_exceptions, Label *last_java_pc) {
23242324
// Call takes possible detour via InterpreterMacroAssembler.
23252325
call_VM_base(oop_result, noreg, entry_point, true, check_exceptions);
23262326
}

src/hotspot/cpu/s390/macroAssembler_s390.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ class MacroAssembler: public Assembler {
526526
// Call into the VM.
527527
// Passes the thread pointer (in Z_ARG1) as a prepended argument.
528528
// Makes sure oop return values are visible to the GC.
529-
void call_VM(Register oop_result, address entry_point, bool check_exceptions = true);
529+
void call_VM(Register oop_result, address entry_point, bool check_exceptions = true, Label* last_java_pc = nullptr);
530530
void call_VM(Register oop_result, address entry_point, Register arg_1, bool check_exceptions = true);
531531
void call_VM(Register oop_result, address entry_point, Register arg_1, Register arg_2, bool check_exceptions = true);
532532
void call_VM(Register oop_result, address entry_point, Register arg_1, Register arg_2,

0 commit comments

Comments
 (0)