@@ -4056,90 +4056,78 @@ void TemplateTable::athrow() {
4056
4056
// at next monitor exit.
4057
4057
void TemplateTable::monitorenter () {
4058
4058
transition (atos, vtos);
4059
-
4060
4059
__ verify_oop (R17_tos);
4061
4060
4062
- Register Rcurrent_monitor = R11_scratch1 ,
4063
- Rcurrent_obj = R12_scratch2 ,
4061
+ Register Rcurrent_monitor = R3_ARG1 ,
4062
+ Rcurrent_obj = R4_ARG2 ,
4064
4063
Robj_to_lock = R17_tos,
4065
- Rscratch1 = R3_ARG1,
4066
- Rscratch2 = R4_ARG2,
4067
- Rscratch3 = R5_ARG3,
4068
- Rcurrent_obj_addr = R6_ARG4;
4064
+ Rscratch1 = R11_scratch1,
4065
+ Rscratch2 = R12_scratch2,
4066
+ Rbot = R5_ARG3,
4067
+ Rfree_slot = R6_ARG4;
4068
+
4069
+ Label Lfound, Lallocate_new;
4070
+
4071
+ __ ld (Rscratch1, _abi (callers_sp), R1_SP); // load FP
4072
+ __ li (Rfree_slot, 0 ); // Points to free slot or null.
4073
+
4074
+ // Set up search loop - start with topmost monitor.
4075
+ __ mr (Rcurrent_monitor, R26_monitor);
4076
+ __ addi (Rbot, Rscratch1, -frame::ijava_state_size);
4069
4077
4070
4078
// ------------------------------------------------------------------------------
4071
4079
// Null pointer exception.
4072
- __ null_check_throw (Robj_to_lock, -1 , R11_scratch1 );
4080
+ __ null_check_throw (Robj_to_lock, -1 , Rscratch1 );
4073
4081
4074
- // Try to acquire a lock on the object.
4075
- // Repeat until succeeded (i.e., until monitorenter returns true).
4082
+ // Check if any slot is present => short cut to allocation if not.
4083
+ __ cmpld (CCR0, Rcurrent_monitor, Rbot);
4084
+ __ beq (CCR0, Lallocate_new);
4076
4085
4077
4086
// ------------------------------------------------------------------------------
4078
4087
// Find a free slot in the monitor block.
4079
- Label Lfound, Lexit, Lallocate_new;
4080
- ConditionRegister found_free_slot = CCR0,
4081
- found_same_obj = CCR1,
4082
- reached_limit = CCR6;
4088
+ // Note: The order of the monitors is important for C2 OSR which derives the
4089
+ // unlock order from it (see comments for interpreter_frame_monitor_*).
4083
4090
{
4084
- Label Lloop, Lentry;
4085
- Register Rlimit = Rcurrent_monitor;
4086
-
4087
- // Set up search loop - start with topmost monitor.
4088
- __ add (Rcurrent_obj_addr, BasicObjectLock::obj_offset_in_bytes (), R26_monitor);
4091
+ Label Lloop, LnotFree, Lexit;
4089
4092
4090
- __ ld (Rlimit, 0 , R1_SP);
4091
- __ addi (Rlimit, Rlimit, - (frame::ijava_state_size + frame::interpreter_frame_monitor_size_in_bytes () - BasicObjectLock::obj_offset_in_bytes ())); // Monitor base
4093
+ __ bind (Lloop);
4094
+ __ ld (Rcurrent_obj, BasicObjectLock::obj_offset_in_bytes (), Rcurrent_monitor);
4095
+ // Exit if current entry is for same object; this guarantees, that new monitor
4096
+ // used for recursive lock is above the older one.
4097
+ __ cmpd (CCR0, Rcurrent_obj, Robj_to_lock);
4098
+ __ beq (CCR0, Lexit); // recursive locking
4092
4099
4093
- // Check if any slot is present => short cut to allocation if not.
4094
- __ cmpld (reached_limit, Rcurrent_obj_addr, Rlimit);
4095
- __ bgt (reached_limit, Lallocate_new);
4100
+ __ cmpdi (CCR0, Rcurrent_obj, 0 );
4101
+ __ bne (CCR0, LnotFree);
4102
+ __ mr (Rfree_slot, Rcurrent_monitor); // remember free slot closest to the bottom
4103
+ __ bind (LnotFree);
4096
4104
4097
- // Pre-load topmost slot.
4098
- __ ld (Rcurrent_obj, 0 , Rcurrent_obj_addr);
4099
- __ addi (Rcurrent_obj_addr, Rcurrent_obj_addr, frame::interpreter_frame_monitor_size () * wordSize);
4100
- // The search loop.
4101
- __ bind (Lloop);
4102
- // Found free slot?
4103
- __ cmpdi (found_free_slot, Rcurrent_obj, 0 );
4104
- // Is this entry for same obj? If so, stop the search and take the found
4105
- // free slot or allocate a new one to enable recursive locking.
4106
- __ cmpd (found_same_obj, Rcurrent_obj, Robj_to_lock);
4107
- __ cmpld (reached_limit, Rcurrent_obj_addr, Rlimit);
4108
- __ beq (found_free_slot, Lexit);
4109
- __ beq (found_same_obj, Lallocate_new);
4110
- __ bgt (reached_limit, Lallocate_new);
4111
- // Check if last allocated BasicLockObj reached.
4112
- __ ld (Rcurrent_obj, 0 , Rcurrent_obj_addr);
4113
- __ addi (Rcurrent_obj_addr, Rcurrent_obj_addr, frame::interpreter_frame_monitor_size () * wordSize);
4114
- // Next iteration if unchecked BasicObjectLocks exist on the stack.
4115
- __ b (Lloop);
4105
+ __ addi (Rcurrent_monitor, Rcurrent_monitor, frame::interpreter_frame_monitor_size_in_bytes ());
4106
+ __ cmpld (CCR0, Rcurrent_monitor, Rbot);
4107
+ __ bne (CCR0, Lloop);
4108
+ __ bind (Lexit);
4116
4109
}
4117
4110
4118
4111
// ------------------------------------------------------------------------------
4119
4112
// Check if we found a free slot.
4120
- __ bind (Lexit);
4121
-
4122
- __ addi (Rcurrent_monitor, Rcurrent_obj_addr, -(frame::interpreter_frame_monitor_size () * wordSize) - BasicObjectLock::obj_offset_in_bytes ());
4123
- __ addi (Rcurrent_obj_addr, Rcurrent_obj_addr, - frame::interpreter_frame_monitor_size () * wordSize);
4124
- __ b (Lfound);
4113
+ __ cmpdi (CCR0, Rfree_slot, 0 );
4114
+ __ bne (CCR0, Lfound);
4125
4115
4126
4116
// We didn't find a free BasicObjLock => allocate one.
4127
- __ align (32 , 12 );
4128
4117
__ bind (Lallocate_new);
4129
4118
__ add_monitor_to_stack (false , Rscratch1, Rscratch2);
4130
- __ mr (Rcurrent_monitor, R26_monitor);
4131
- __ addi (Rcurrent_obj_addr, R26_monitor, BasicObjectLock::obj_offset_in_bytes ());
4119
+ __ mr (Rfree_slot, R26_monitor);
4132
4120
4133
4121
// ------------------------------------------------------------------------------
4134
4122
// We now have a slot to lock.
4135
4123
__ bind (Lfound);
4136
4124
4137
4125
// Increment bcp to point to the next bytecode, so exception handling for async. exceptions work correctly.
4138
- // The object has already been poped from the stack, so the expression stack looks correct.
4126
+ // The object has already been popped from the stack, so the expression stack looks correct.
4139
4127
__ addi (R14_bcp, R14_bcp, 1 );
4140
4128
4141
- __ std (Robj_to_lock, 0 , Rcurrent_obj_addr );
4142
- __ lock_object (Rcurrent_monitor , Robj_to_lock);
4129
+ __ std (Robj_to_lock, BasicObjectLock::obj_offset_in_bytes (), Rfree_slot );
4130
+ __ lock_object (Rfree_slot , Robj_to_lock);
4143
4131
4144
4132
// Check if there's enough space on the stack for the monitors after locking.
4145
4133
// This emits a single store.
@@ -4153,46 +4141,40 @@ void TemplateTable::monitorexit() {
4153
4141
transition (atos, vtos);
4154
4142
__ verify_oop (R17_tos);
4155
4143
4156
- Register Rcurrent_monitor = R11_scratch1 ,
4157
- Rcurrent_obj = R12_scratch2 ,
4144
+ Register Rcurrent_monitor = R3_ARG1 ,
4145
+ Rcurrent_obj = R4_ARG2 ,
4158
4146
Robj_to_lock = R17_tos,
4159
- Rcurrent_obj_addr = R3_ARG1,
4160
- Rlimit = R4_ARG2;
4147
+ Rscratch = R11_scratch1,
4148
+ Rbot = R12_scratch2;
4149
+
4161
4150
Label Lfound, Lillegal_monitor_state;
4162
4151
4163
- // Check corner case: unbalanced monitorEnter / Exit.
4164
- __ ld (Rlimit, 0 , R1_SP);
4165
- __ addi (Rlimit, Rlimit, - (frame::ijava_state_size + frame::interpreter_frame_monitor_size_in_bytes ())); // Monitor base
4152
+ __ ld (Rscratch, _abi (callers_sp), R1_SP); // load FP
4153
+
4154
+ // Set up search loop - start with topmost monitor.
4155
+ __ mr (Rcurrent_monitor, R26_monitor);
4156
+ __ addi (Rbot, Rscratch, -frame::ijava_state_size);
4166
4157
4167
4158
// Null pointer check.
4168
- __ null_check_throw (Robj_to_lock, -1 , R11_scratch1 );
4159
+ __ null_check_throw (Robj_to_lock, -1 , Rscratch );
4169
4160
4170
- __ cmpld (CCR0, R26_monitor, Rlimit);
4171
- __ bgt (CCR0, Lillegal_monitor_state);
4161
+ // Check corner case: unbalanced monitorEnter / Exit.
4162
+ __ cmpld (CCR0, Rcurrent_monitor, Rbot);
4163
+ __ beq (CCR0, Lillegal_monitor_state);
4172
4164
4173
4165
// Find the corresponding slot in the monitors stack section.
4174
4166
{
4175
4167
Label Lloop;
4176
4168
4177
- // Start with topmost monitor.
4178
- __ addi (Rcurrent_obj_addr, R26_monitor, BasicObjectLock::obj_offset_in_bytes ());
4179
- __ addi (Rlimit, Rlimit, BasicObjectLock::obj_offset_in_bytes ());
4180
- __ ld (Rcurrent_obj, 0 , Rcurrent_obj_addr);
4181
- __ addi (Rcurrent_obj_addr, Rcurrent_obj_addr, frame::interpreter_frame_monitor_size () * wordSize);
4182
-
4183
4169
__ bind (Lloop);
4170
+ __ ld (Rcurrent_obj, BasicObjectLock::obj_offset_in_bytes (), Rcurrent_monitor);
4184
4171
// Is this entry for same obj?
4185
4172
__ cmpd (CCR0, Rcurrent_obj, Robj_to_lock);
4186
4173
__ beq (CCR0, Lfound);
4187
4174
4188
- // Check if last allocated BasicLockObj reached.
4189
-
4190
- __ ld (Rcurrent_obj, 0 , Rcurrent_obj_addr);
4191
- __ cmpld (CCR0, Rcurrent_obj_addr, Rlimit);
4192
- __ addi (Rcurrent_obj_addr, Rcurrent_obj_addr, frame::interpreter_frame_monitor_size () * wordSize);
4193
-
4194
- // Next iteration if unchecked BasicObjectLocks exist on the stack.
4195
- __ ble (CCR0, Lloop);
4175
+ __ addi (Rcurrent_monitor, Rcurrent_monitor, frame::interpreter_frame_monitor_size_in_bytes ());
4176
+ __ cmpld (CCR0, Rcurrent_monitor, Rbot);
4177
+ __ bne (CCR0, Lloop);
4196
4178
}
4197
4179
4198
4180
// Fell through without finding the basic obj lock => throw up!
@@ -4202,8 +4184,6 @@ void TemplateTable::monitorexit() {
4202
4184
4203
4185
__ align (32 , 12 );
4204
4186
__ bind (Lfound);
4205
- __ addi (Rcurrent_monitor, Rcurrent_obj_addr,
4206
- -(frame::interpreter_frame_monitor_size () * wordSize) - BasicObjectLock::obj_offset_in_bytes ());
4207
4187
__ unlock_object (Rcurrent_monitor);
4208
4188
}
4209
4189
1 commit comments
openjdk-notifier[bot] commentedon Nov 27, 2023
Review
Issues