@@ -933,11 +933,14 @@ void TemplateInterpreterGenerator::lock_method(Register Rflags, Register Rscratc
933
933
// state_size: We save the current state of the interpreter to this area.
934
934
//
935
935
void TemplateInterpreterGenerator::generate_fixed_frame (bool native_call, Register Rsize_of_parameters, Register Rsize_of_locals) {
936
- Register parent_frame_resize = R6_ARG4, // Frame will grow by this number of bytes.
937
- top_frame_size = R7_ARG5,
938
- Rconst_method = R8_ARG6;
936
+ Register Rparent_frame_resize = R6_ARG4, // Frame will grow by this number of bytes.
937
+ Rtop_frame_size = R7_ARG5,
938
+ Rconst_method = R8_ARG6,
939
+ Rconst_pool = R9_ARG7,
940
+ Rmirror = R10_ARG8;
939
941
940
- assert_different_registers (Rsize_of_parameters, Rsize_of_locals, parent_frame_resize, top_frame_size);
942
+ assert_different_registers (Rsize_of_parameters, Rsize_of_locals, Rparent_frame_resize, Rtop_frame_size,
943
+ Rconst_method, Rconst_pool);
941
944
942
945
__ ld (Rconst_method, method_ (const ));
943
946
__ lhz (Rsize_of_parameters /* number of params */ ,
@@ -948,51 +951,51 @@ void TemplateInterpreterGenerator::generate_fixed_frame(bool native_call, Regist
948
951
// We add two slots to the parameter_count, one for the jni
949
952
// environment and one for a possible native mirror.
950
953
Label skip_native_calculate_max_stack;
951
- __ addi (top_frame_size , Rsize_of_parameters, 2 );
952
- __ cmpwi (CCR0, top_frame_size , Argument::n_register_parameters);
954
+ __ addi (Rtop_frame_size , Rsize_of_parameters, 2 );
955
+ __ cmpwi (CCR0, Rtop_frame_size , Argument::n_register_parameters);
953
956
__ bge (CCR0, skip_native_calculate_max_stack);
954
- __ li (top_frame_size , Argument::n_register_parameters);
957
+ __ li (Rtop_frame_size , Argument::n_register_parameters);
955
958
__ bind (skip_native_calculate_max_stack);
956
959
__ sldi (Rsize_of_parameters, Rsize_of_parameters, Interpreter::logStackElementSize);
957
- __ sldi (top_frame_size, top_frame_size , Interpreter::logStackElementSize);
958
- __ sub (parent_frame_resize , R1_SP, R15_esp); // <0, off by Interpreter::stackElementSize!
960
+ __ sldi (Rtop_frame_size, Rtop_frame_size , Interpreter::logStackElementSize);
961
+ __ sub (Rparent_frame_resize , R1_SP, R15_esp); // <0, off by Interpreter::stackElementSize!
959
962
assert (Rsize_of_locals == noreg, " Rsize_of_locals not initialized" ); // Only relevant value is Rsize_of_parameters.
960
963
} else {
961
964
__ lhz (Rsize_of_locals /* number of params */ , in_bytes (ConstMethod::size_of_locals_offset ()), Rconst_method);
962
965
__ sldi (Rsize_of_parameters, Rsize_of_parameters, Interpreter::logStackElementSize);
963
966
__ sldi (Rsize_of_locals, Rsize_of_locals, Interpreter::logStackElementSize);
964
- __ lhz (top_frame_size , in_bytes (ConstMethod::max_stack_offset ()), Rconst_method);
967
+ __ lhz (Rtop_frame_size , in_bytes (ConstMethod::max_stack_offset ()), Rconst_method);
965
968
__ sub (R11_scratch1, Rsize_of_locals, Rsize_of_parameters); // >=0
966
- __ sub (parent_frame_resize , R1_SP, R15_esp); // <0, off by Interpreter::stackElementSize!
967
- __ sldi (top_frame_size, top_frame_size , Interpreter::logStackElementSize);
968
- __ add (parent_frame_resize, parent_frame_resize , R11_scratch1);
969
+ __ sub (Rparent_frame_resize , R1_SP, R15_esp); // <0, off by Interpreter::stackElementSize!
970
+ __ sldi (Rtop_frame_size, Rtop_frame_size , Interpreter::logStackElementSize);
971
+ __ add (Rparent_frame_resize, Rparent_frame_resize , R11_scratch1);
969
972
}
970
973
971
974
// Compute top frame size.
972
- __ addi (top_frame_size, top_frame_size , frame::abi_reg_args_size + frame::ijava_state_size);
975
+ __ addi (Rtop_frame_size, Rtop_frame_size , frame::abi_reg_args_size + frame::ijava_state_size);
973
976
974
977
// Cut back area between esp and max_stack.
975
- __ addi (parent_frame_resize, parent_frame_resize , frame::abi_minframe_size - Interpreter::stackElementSize);
978
+ __ addi (Rparent_frame_resize, Rparent_frame_resize , frame::abi_minframe_size - Interpreter::stackElementSize);
976
979
977
- __ round_to (top_frame_size , frame::alignment_in_bytes);
978
- __ round_to (parent_frame_resize , frame::alignment_in_bytes);
979
- // parent_frame_resize = (locals-parameters) - (ESP-SP-ABI48) Rounded to frame alignment size.
980
+ __ round_to (Rtop_frame_size , frame::alignment_in_bytes);
981
+ __ round_to (Rparent_frame_resize , frame::alignment_in_bytes);
982
+ // Rparent_frame_resize = (locals-parameters) - (ESP-SP-ABI48) Rounded to frame alignment size.
980
983
// Enlarge by locals-parameters (not in case of native_call), shrink by ESP-SP-ABI48.
981
984
982
985
if (!native_call) {
983
986
// Stack overflow check.
984
987
// Native calls don't need the stack size check since they have no
985
988
// expression stack and the arguments are already on the stack and
986
989
// we only add a handful of words to the stack.
987
- __ add (R11_scratch1, parent_frame_resize, top_frame_size );
990
+ __ add (R11_scratch1, Rparent_frame_resize, Rtop_frame_size );
988
991
generate_stack_overflow_check (R11_scratch1, R12_scratch2);
989
992
}
990
993
991
994
// Set up interpreter state registers.
992
995
993
996
__ add (R18_locals, R15_esp, Rsize_of_parameters);
994
- __ ld (R27_constPoolCache , in_bytes (ConstMethod::constants_offset ()), Rconst_method);
995
- __ ld (R27_constPoolCache, ConstantPool::cache_offset_in_bytes (), R27_constPoolCache );
997
+ __ ld (Rconst_pool , in_bytes (ConstMethod::constants_offset ()), Rconst_method);
998
+ __ ld (R27_constPoolCache, ConstantPool::cache_offset_in_bytes (), Rconst_pool );
996
999
997
1000
// Set method data pointer.
998
1001
if (ProfileInterpreter) {
@@ -1012,19 +1015,21 @@ void TemplateInterpreterGenerator::generate_fixed_frame(bool native_call, Regist
1012
1015
1013
1016
// Resize parent frame.
1014
1017
__ mflr (R12_scratch2);
1015
- __ neg (parent_frame_resize, parent_frame_resize );
1016
- __ resize_frame (parent_frame_resize , R11_scratch1);
1018
+ __ neg (Rparent_frame_resize, Rparent_frame_resize );
1019
+ __ resize_frame (Rparent_frame_resize , R11_scratch1);
1017
1020
__ std (R12_scratch2, _abi0 (lr), R1_SP);
1018
1021
1019
1022
// Get mirror and store it in the frame as GC root for this Method*.
1020
- __ load_mirror_from_const_method (R12_scratch2, Rconst_method);
1023
+ __ ld (Rmirror, ConstantPool::pool_holder_offset_in_bytes (), Rconst_pool);
1024
+ __ ld (Rmirror, in_bytes (Klass::java_mirror_offset ()), Rmirror);
1025
+ __ resolve_oop_handle (Rmirror, R11_scratch1, R12_scratch2, MacroAssembler::PRESERVATION_FRAME_LR_GP_REGS);
1021
1026
1022
1027
__ addi (R26_monitor, R1_SP, -frame::ijava_state_size);
1023
1028
__ addi (R15_esp, R26_monitor, -Interpreter::stackElementSize);
1024
1029
1025
1030
// Store values.
1026
1031
__ std (R19_method, _ijava_state_neg (method), R1_SP);
1027
- __ std (R12_scratch2 , _ijava_state_neg (mirror), R1_SP);
1032
+ __ std (Rmirror , _ijava_state_neg (mirror), R1_SP);
1028
1033
__ std (R18_locals, _ijava_state_neg (locals), R1_SP);
1029
1034
__ std (R27_constPoolCache, _ijava_state_neg (cpoolCache), R1_SP);
1030
1035
@@ -1046,12 +1051,12 @@ void TemplateInterpreterGenerator::generate_fixed_frame(bool native_call, Regist
1046
1051
__ std (R0, _ijava_state_neg (oop_tmp), R1_SP); // only used for native_call
1047
1052
1048
1053
// Store sender's SP and this frame's top SP.
1049
- __ subf (R12_scratch2, top_frame_size , R1_SP);
1054
+ __ subf (R12_scratch2, Rtop_frame_size , R1_SP);
1050
1055
__ std (R21_sender_SP, _ijava_state_neg (sender_sp), R1_SP);
1051
1056
__ std (R12_scratch2, _ijava_state_neg (top_frame_sp), R1_SP);
1052
1057
1053
1058
// Push top frame.
1054
- __ push_frame (top_frame_size , R11_scratch1);
1059
+ __ push_frame (Rtop_frame_size , R11_scratch1);
1055
1060
}
1056
1061
1057
1062
// End of helpers
0 commit comments