@@ -65,7 +65,6 @@ int C1_MacroAssembler::lock_object(Register hdr, Register obj, Register disp_hdr
65
65
const int hdr_offset = oopDesc::mark_offset_in_bytes ();
66
66
assert_different_registers (hdr, obj, disp_hdr, temp, rscratch2);
67
67
int null_check_offset = -1 ;
68
- Label count_locking, done;
69
68
70
69
verify_oop (obj);
71
70
@@ -83,8 +82,8 @@ int C1_MacroAssembler::lock_object(Register hdr, Register obj, Register disp_hdr
83
82
84
83
if (LockingMode == LM_LIGHTWEIGHT) {
85
84
lightweight_lock (obj, hdr, temp, rscratch2, slow_case);
86
- b (done);
87
85
} else if (LockingMode == LM_LEGACY) {
86
+ Label done;
88
87
// Load object header
89
88
ldr (hdr, Address (obj, hdr_offset));
90
89
// and mark it as unlocked
@@ -95,8 +94,7 @@ int C1_MacroAssembler::lock_object(Register hdr, Register obj, Register disp_hdr
95
94
// displaced header address in the object header - if it is not the same, get the
96
95
// object header instead
97
96
lea (rscratch2, Address (obj, hdr_offset));
98
- // if the object header was the same, we're done
99
- cmpxchgptr (hdr, disp_hdr, rscratch2, rscratch1, count_locking, /* fallthough*/ nullptr );
97
+ cmpxchgptr (hdr, disp_hdr, rscratch2, rscratch1, done, /* fallthough*/ nullptr );
100
98
// if the object header was the same, we're done
101
99
// if the object header was not the same, it is now in the hdr register
102
100
// => test if it is a stack pointer into the same stack (recursive locking), i.e.:
@@ -120,11 +118,9 @@ int C1_MacroAssembler::lock_object(Register hdr, Register obj, Register disp_hdr
120
118
// otherwise we don't care about the result and handle locking via runtime call
121
119
cbnz (hdr, slow_case);
122
120
// done
123
- b (done);
121
+ bind (done);
122
+ inc_held_monitor_count ();
124
123
}
125
- bind (count_locking);
126
- inc_held_monitor_count ();
127
- bind (done);
128
124
return null_check_offset;
129
125
}
130
126
@@ -133,7 +129,7 @@ void C1_MacroAssembler::unlock_object(Register hdr, Register obj, Register disp_
133
129
const int aligned_mask = BytesPerWord -1 ;
134
130
const int hdr_offset = oopDesc::mark_offset_in_bytes ();
135
131
assert_different_registers (hdr, obj, disp_hdr, temp, rscratch2);
136
- Label count_locking, done;
132
+ Label done;
137
133
138
134
if (LockingMode != LM_LIGHTWEIGHT) {
139
135
// load displaced header
@@ -149,7 +145,6 @@ void C1_MacroAssembler::unlock_object(Register hdr, Register obj, Register disp_
149
145
150
146
if (LockingMode == LM_LIGHTWEIGHT) {
151
147
lightweight_unlock (obj, hdr, temp, rscratch2, slow_case);
152
- b (done);
153
148
} else if (LockingMode == LM_LEGACY) {
154
149
// test if object header is pointing to the displaced header, and if so, restore
155
150
// the displaced header in the object - if the object header is not pointing to
@@ -158,15 +153,14 @@ void C1_MacroAssembler::unlock_object(Register hdr, Register obj, Register disp_
158
153
// we do unlocking via runtime call
159
154
if (hdr_offset) {
160
155
lea (rscratch1, Address (obj, hdr_offset));
161
- cmpxchgptr (disp_hdr, hdr, rscratch1, rscratch2, count_locking , &slow_case);
156
+ cmpxchgptr (disp_hdr, hdr, rscratch1, rscratch2, done , &slow_case);
162
157
} else {
163
- cmpxchgptr (disp_hdr, hdr, obj, rscratch2, count_locking , &slow_case);
158
+ cmpxchgptr (disp_hdr, hdr, obj, rscratch2, done , &slow_case);
164
159
}
165
160
// done
166
- bind (count_locking );
161
+ bind (done );
167
162
dec_held_monitor_count ();
168
163
}
169
- bind (done);
170
164
}
171
165
172
166
0 commit comments