Skip to content

Commit c390ae3

Browse files
committedOct 22, 2024
Merge
2 parents f8c4271 + 23d1a2b commit c390ae3

19 files changed

+156
-131
lines changed
 

‎src/hotspot/cpu/aarch64/c1_Runtime1_aarch64.cpp

+14-28
Original file line numberDiff line numberDiff line change
@@ -160,28 +160,21 @@ int StubAssembler::call_RT(Register oop_result1, Register metadata_result, addre
160160
}
161161

162162
enum return_state_t {
163-
does_not_return, requires_return
163+
does_not_return, requires_return, requires_pop_epilogue_return
164164
};
165165

166-
167166
// Implementation of StubFrame
168167

169168
class StubFrame: public StackObj {
170169
private:
171170
StubAssembler* _sasm;
172-
bool _return_state;
173-
bool _use_pop_on_epilogue;
174-
175-
StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments,
176-
return_state_t return_state, bool use_pop_on_epilogue);
171+
return_state_t _return_state;
177172

178173
public:
179-
StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments, bool use_pop_on_epilogue);
180-
StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments, return_state_t return_state);
181-
StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments);
182-
~StubFrame();
183-
174+
StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments, return_state_t return_state=requires_return);
184175
void load_argument(int offset_in_words, Register reg);
176+
177+
~StubFrame();
185178
};;
186179

187180
void StubAssembler::prologue(const char* name, bool must_gc_arguments) {
@@ -204,31 +197,24 @@ void StubAssembler::epilogue(bool use_pop) {
204197

205198
#define __ _sasm->
206199

207-
StubFrame::StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments,
208-
return_state_t return_state, bool use_pop_on_epilogue)
209-
: _sasm(sasm), _return_state(return_state), _use_pop_on_epilogue(use_pop_on_epilogue) {
200+
StubFrame::StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments, return_state_t return_state) {
201+
_sasm = sasm;
202+
_return_state = return_state;
210203
__ prologue(name, must_gc_arguments);
211204
}
212205

213-
StubFrame::StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments,
214-
bool use_pop_on_epilogue) :
215-
StubFrame(sasm, name, must_gc_arguments, requires_return, use_pop_on_epilogue) {}
216-
217-
StubFrame::StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments,
218-
return_state_t return_state) :
219-
StubFrame(sasm, name, must_gc_arguments, return_state, /*use_pop_on_epilogue*/false) {}
220-
221-
StubFrame::StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments) :
222-
StubFrame(sasm, name, must_gc_arguments, requires_return, /*use_pop_on_epilogue*/false) {}
223-
224206
// load parameters that were stored with LIR_Assembler::store_parameter
225207
// Note: offsets for store_parameter and load_argument must match
226208
void StubFrame::load_argument(int offset_in_words, Register reg) {
227209
__ load_parameter(offset_in_words, reg);
228210
}
229211

230212
StubFrame::~StubFrame() {
231-
__ epilogue(_use_pop_on_epilogue);
213+
if (_return_state == does_not_return) {
214+
__ should_not_reach_here();
215+
} else {
216+
__ epilogue(_return_state == requires_pop_epilogue_return);
217+
}
232218
}
233219

234220
#undef __
@@ -892,7 +878,7 @@ OopMapSet* Runtime1::generate_code_for(C1StubId id, StubAssembler* sasm) {
892878
// fall through
893879
case C1StubId::monitorenter_id:
894880
{
895-
StubFrame f(sasm, "monitorenter", dont_gc_arguments, /*use_pop_on_epilogue*/true);
881+
StubFrame f(sasm, "monitorenter", dont_gc_arguments, requires_pop_epilogue_return);
896882
OopMap* map = save_live_registers(sasm, save_fpu_registers);
897883

898884
// Called with store_parameter and not C abi

‎src/hotspot/cpu/aarch64/c2_MacroAssembler_aarch64.cpp

+2-6
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,7 @@ void C2_MacroAssembler::fast_lock(Register objectReg, Register boxReg, Register
110110
// Handle existing monitor.
111111
bind(object_has_monitor);
112112

113-
// The object's monitor m is unlocked iff m->owner == nullptr,
114-
// otherwise m->owner may contain a thread id, a stack address for LM_LEGACY,
115-
// or the ANONYMOUS_OWNER constant for LM_LIGHTWEIGHT.
116-
//
117-
// Try to CAS m->owner from null to current thread.
113+
// Try to CAS owner (no owner => current thread's _lock_id).
118114
ldr(rscratch2, Address(rthread, JavaThread::lock_id_offset()));
119115
add(tmp, disp_hdr, (in_bytes(ObjectMonitor::owner_offset())-markWord::monitor_value));
120116
cmpxchg(tmp, zr, rscratch2, Assembler::xword, /*acquire*/ true,
@@ -377,7 +373,7 @@ void C2_MacroAssembler::fast_lock_lightweight(Register obj, Register box, Regist
377373
// Compute owner address.
378374
lea(t2_owner_addr, owner_address);
379375

380-
// CAS owner (null => current thread id).
376+
// Try to CAS owner (no owner => current thread's _lock_id).
381377
ldr(rscratch2, Address(rthread, JavaThread::lock_id_offset()));
382378
cmpxchg(t2_owner_addr, zr, rscratch2, Assembler::xword, /*acquire*/ true,
383379
/*release*/ false, /*weak*/ false, t3_owner);

‎src/hotspot/cpu/aarch64/continuationFreezeThaw_aarch64.inline.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ inline intptr_t* ThawBase::possibly_adjust_frame(frame& top) {
310310
sp[-1] = sp[1];
311311

312312
log_develop_trace(continuations, preempt)("adjusted sp for c2 runtime stub, initial sp: " INTPTR_FORMAT " final sp: " INTPTR_FORMAT
313-
" fp: " INTPTR_FORMAT, p2i(sp + frame::metadata_words), p2i(sp), sp[-2]);
313+
" fp: " INTPTR_FORMAT, p2i(sp + 2), p2i(sp), sp[-2]);
314314
}
315315
return sp;
316316
}

‎src/hotspot/cpu/aarch64/frame_aarch64.cpp

+30
Original file line numberDiff line numberDiff line change
@@ -420,6 +420,36 @@ frame frame::sender_for_upcall_stub_frame(RegisterMap* map) const {
420420
return fr;
421421
}
422422

423+
#if defined(ASSERT)
424+
static address get_register_address_in_stub(const frame& stub_fr, VMReg reg) {
425+
RegisterMap map(nullptr,
426+
RegisterMap::UpdateMap::include,
427+
RegisterMap::ProcessFrames::skip,
428+
RegisterMap::WalkContinuation::skip);
429+
stub_fr.oop_map()->update_register_map(&stub_fr, &map);
430+
return map.location(reg, stub_fr.sp());
431+
}
432+
#endif
433+
434+
JavaThread** frame::saved_thread_address(const frame& f) {
435+
CodeBlob* cb = f.cb();
436+
assert(cb != nullptr && cb->is_runtime_stub(), "invalid frame");
437+
438+
JavaThread** thread_addr;
439+
#ifdef COMPILER1
440+
if (cb == Runtime1::blob_for(C1StubId::monitorenter_id) ||
441+
cb == Runtime1::blob_for(C1StubId::monitorenter_nofpu_id)) {
442+
thread_addr = (JavaThread**)(f.sp() + Runtime1::runtime_blob_current_thread_offset(f));
443+
} else
444+
#endif
445+
{
446+
// c2 only saves rbp in the stub frame so nothing to do.
447+
thread_addr = nullptr;
448+
}
449+
assert(get_register_address_in_stub(f, SharedRuntime::thread_register()) == (address)thread_addr, "wrong thread address");
450+
return thread_addr;
451+
}
452+
423453
//------------------------------------------------------------------------------
424454
// frame::verify_deopt_original_pc
425455
//

‎src/hotspot/cpu/arm/frame_arm.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,11 @@ bool frame::upcall_stub_frame_is_first() const {
325325
return false;
326326
}
327327

328+
JavaThread** frame::saved_thread_address(const frame& f) {
329+
Unimplemented();
330+
return nullptr;
331+
}
332+
328333
//------------------------------------------------------------------------------
329334
// frame::verify_deopt_original_pc
330335
//

‎src/hotspot/cpu/ppc/frame_ppc.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,11 @@ frame frame::sender_for_upcall_stub_frame(RegisterMap* map) const {
243243
return fr;
244244
}
245245

246+
JavaThread** frame::saved_thread_address(const frame& f) {
247+
// The current thread (JavaThread*) is never stored on the stack
248+
return nullptr;
249+
}
250+
246251
frame frame::sender_for_interpreter_frame(RegisterMap *map) const {
247252
// This is the sp before any possible extension (adapter/locals).
248253
intptr_t* unextended_sp = interpreter_frame_sender_sp();

‎src/hotspot/cpu/ppc/macroAssembler_ppc.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -2658,10 +2658,8 @@ void MacroAssembler::compiler_fast_lock_object(ConditionRegister flag, Register
26582658

26592659
// Handle existing monitor.
26602660
bind(object_has_monitor);
2661-
// The object's monitor m is unlocked iff m->owner is null,
2662-
// otherwise m->owner may contain a thread or a stack address.
26632661

2664-
// Try to CAS m->owner from null to current thread.
2662+
// Try to CAS owner (no owner => current thread's _lock_id).
26652663
addi(temp, displaced_header, in_bytes(ObjectMonitor::owner_offset()) - markWord::monitor_value);
26662664
Register thread_id = displaced_header;
26672665
ld(thread_id, in_bytes(JavaThread::lock_id_offset()), R16_thread);
@@ -2941,7 +2939,7 @@ void MacroAssembler::compiler_fast_lock_lightweight_object(ConditionRegister fla
29412939
addi(owner_addr, monitor, in_bytes(ObjectMonitor::owner_offset()));
29422940
}
29432941

2944-
// CAS owner (null => current thread id).
2942+
// Try to CAS owner (no owner => current thread's _lock_id).
29452943
assert_different_registers(thread_id, monitor, owner_addr, box, R0);
29462944
ld(thread_id, in_bytes(JavaThread::lock_id_offset()), R16_thread);
29472945
cmpxchgd(/*flag=*/CCR0,

‎src/hotspot/cpu/riscv/c1_Runtime1_riscv.cpp

+15-28
Original file line numberDiff line numberDiff line change
@@ -165,29 +165,21 @@ int StubAssembler::call_RT(Register oop_result, Register metadata_result, addres
165165
}
166166

167167
enum return_state_t {
168-
does_not_return, requires_return
168+
does_not_return, requires_return, requires_pop_epilogue_return
169169
};
170170

171171
// Implementation of StubFrame
172172

173173
class StubFrame: public StackObj {
174174
private:
175175
StubAssembler* _sasm;
176-
bool _return_state;
177-
bool _use_pop_on_epilogue;
176+
return_state_t _return_state;
178177

179178
public:
180-
StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments,
181-
return_state_t return_state, bool use_pop_on_epilogue);
182-
183-
public:
184-
StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments, bool use_pop_on_epilogue);
185-
StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments, return_state_t return_state);
186-
StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments);
179+
StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments, return_state_t return_state=requires_return);
180+
void load_argument(int offset_in_words, Register reg);
187181

188182
~StubFrame();
189-
190-
void load_argument(int offset_in_words, Register reg);
191183
};;
192184

193185
void StubAssembler::prologue(const char* name, bool must_gc_arguments) {
@@ -212,31 +204,26 @@ void StubAssembler::epilogue(bool use_pop) {
212204

213205
#define __ _sasm->
214206

215-
StubFrame::StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments,
216-
return_state_t return_state, bool use_pop_on_epilogue)
217-
: _sasm(sasm), _return_state(return_state), _use_pop_on_epilogue(use_pop_on_epilogue) {
207+
StubFrame::StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments, return_state_t return_state) {
208+
_sasm = sasm;
209+
_return_state = return_state;
218210
__ prologue(name, must_gc_arguments);
219211
}
220212

221-
StubFrame::StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments,
222-
bool use_pop_on_epilogue) :
223-
StubFrame(sasm, name, must_gc_arguments, requires_return, use_pop_on_epilogue) {}
224-
225-
StubFrame::StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments,
226-
return_state_t return_state) :
227-
StubFrame(sasm, name, must_gc_arguments, return_state, /*use_pop_on_epilogue*/false) {}
228-
229-
StubFrame::StubFrame(StubAssembler* sasm, const char* name, bool must_gc_arguments) :
230-
StubFrame(sasm, name, must_gc_arguments, requires_return, /*use_pop_on_epilogue*/false) {}
231-
232213
// load parameters that were stored with LIR_Assembler::store_parameter
233214
// Note: offsets for store_parameter and load_argument must match
234215
void StubFrame::load_argument(int offset_in_words, Register reg) {
235216
__ load_parameter(offset_in_words, reg);
236217
}
237218

219+
238220
StubFrame::~StubFrame() {
239-
__ epilogue(_use_pop_on_epilogue);
221+
if (_return_state == does_not_return) {
222+
__ should_not_reach_here();
223+
} else {
224+
__ epilogue(_return_state == requires_pop_epilogue_return);
225+
}
226+
_sasm = nullptr;
240227
}
241228

242229
#undef __
@@ -916,7 +903,7 @@ OopMapSet* Runtime1::generate_code_for(C1StubId id, StubAssembler* sasm) {
916903
// fall through
917904
case C1StubId::monitorenter_id:
918905
{
919-
StubFrame f(sasm, "monitorenter", dont_gc_arguments, /*use_pop_on_epilogue*/true);
906+
StubFrame f(sasm, "monitorenter", dont_gc_arguments, requires_pop_epilogue_return);
920907
OopMap* map = save_live_registers(sasm, save_fpu_registers);
921908
assert_cond(map != nullptr);
922909

‎src/hotspot/cpu/riscv/c2_MacroAssembler_riscv.cpp

+2-6
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,7 @@ void C2_MacroAssembler::fast_lock(Register objectReg, Register boxReg,
116116
// Handle existing monitor.
117117
bind(object_has_monitor);
118118

119-
// The object's monitor m is unlocked iff m->owner == nullptr,
120-
// otherwise m->owner may contain a thread id, a stack address for LM_LEGACY,
121-
// the ANONYMOUS_OWNER constant for LM_LIGHTWEIGHT.
122-
//
123-
// Try to CAS m->owner from null to current thread id.
119+
// Try to CAS owner (no owner => current thread's _lock_id).
124120
add(tmp, disp_hdr, (in_bytes(ObjectMonitor::owner_offset()) - markWord::monitor_value));
125121
Register tid = tmp4Reg;
126122
ld(tid, Address(xthread, JavaThread::lock_id_offset()));
@@ -404,7 +400,7 @@ void C2_MacroAssembler::fast_lock_lightweight(Register obj, Register box,
404400
// Compute owner address.
405401
la(tmp2_owner_addr, owner_address);
406402

407-
// CAS owner (null => current thread id).
403+
// Try to CAS owner (no owner => current thread's _lock_id).
408404
Register tid = tmp4;
409405
ld(tid, Address(xthread, JavaThread::lock_id_offset()));
410406
cmpxchg(/*addr*/ tmp2_owner_addr, /*expected*/ zr, /*new*/ tid, Assembler::int64,

‎src/hotspot/cpu/riscv/continuationFreezeThaw_riscv.inline.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ inline intptr_t* ThawBase::possibly_adjust_frame(frame& top) {
316316
sp[-1] = sp[1];
317317

318318
log_develop_trace(continuations, preempt)("adjusted sp for c2 runtime stub, initial sp: " INTPTR_FORMAT " final sp: " INTPTR_FORMAT
319-
" fp: " INTPTR_FORMAT, p2i(sp + frame::metadata_words), p2i(sp), sp[-2]);
319+
" fp: " INTPTR_FORMAT, p2i(sp + 2), p2i(sp), sp[-2]);
320320
}
321321
return sp;
322322
}

‎src/hotspot/cpu/riscv/frame_riscv.cpp

+30
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,36 @@ frame frame::sender_for_upcall_stub_frame(RegisterMap* map) const {
393393
return fr;
394394
}
395395

396+
#if defined(ASSERT)
397+
static address get_register_address_in_stub(const frame& stub_fr, VMReg reg) {
398+
RegisterMap map(nullptr,
399+
RegisterMap::UpdateMap::include,
400+
RegisterMap::ProcessFrames::skip,
401+
RegisterMap::WalkContinuation::skip);
402+
stub_fr.oop_map()->update_register_map(&stub_fr, &map);
403+
return map.location(reg, stub_fr.sp());
404+
}
405+
#endif
406+
407+
JavaThread** frame::saved_thread_address(const frame& f) {
408+
CodeBlob* cb = f.cb();
409+
assert(cb != nullptr && cb->is_runtime_stub(), "invalid frame");
410+
411+
JavaThread** thread_addr;
412+
#ifdef COMPILER1
413+
if (cb == Runtime1::blob_for(C1StubId::monitorenter_id) ||
414+
cb == Runtime1::blob_for(C1StubId::monitorenter_nofpu_id)) {
415+
thread_addr = (JavaThread**)(f.sp() + Runtime1::runtime_blob_current_thread_offset(f));
416+
} else
417+
#endif
418+
{
419+
// c2 only saves rbp in the stub frame so nothing to do.
420+
thread_addr = nullptr;
421+
}
422+
assert(get_register_address_in_stub(f, SharedRuntime::thread_register()) == (address)thread_addr, "wrong thread address");
423+
return thread_addr;
424+
}
425+
396426
//------------------------------------------------------------------------------
397427
// frame::verify_deopt_original_pc
398428
//

‎src/hotspot/cpu/s390/frame_s390.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,11 @@ frame frame::sender_for_upcall_stub_frame(RegisterMap* map) const {
246246
return fr;
247247
}
248248

249+
JavaThread** frame::saved_thread_address(const frame& f) {
250+
Unimplemented();
251+
return nullptr;
252+
}
253+
249254
frame frame::sender_for_interpreter_frame(RegisterMap *map) const {
250255
// Pass callers sender_sp as unextended_sp.
251256
return frame(sender_sp(), sender_pc(), (intptr_t*)(ijava_state()->sender_sp));

‎src/hotspot/cpu/s390/macroAssembler_s390.cpp

+6-8
Original file line numberDiff line numberDiff line change
@@ -3561,12 +3561,10 @@ void MacroAssembler::compiler_fast_lock_object(Register oop, Register box, Regis
35613561

35623562
Register zero = temp;
35633563
Register monitor_tagged = displacedHeader; // Tagged with markWord::monitor_value.
3564-
// The object's monitor m is unlocked iff m->owner is null,
3565-
// otherwise m->owner may contain a thread or a stack address.
35663564

3567-
// Try to CAS m->owner from null to current thread's id.
3568-
// If m->owner is null, then csg succeeds and sets m->owner=THREAD_ID and CR=EQ.
3569-
// Otherwise, register zero is filled with the current owner.
3565+
// Try to CAS owner (no owner => current thread's _lock_id).
3566+
// If csg succeeds then CR=EQ, otherwise, register zero is filled
3567+
// with the current owner.
35703568
z_lghi(zero, 0);
35713569
z_l(Z_R1_scratch, Address(Z_thread, JavaThread::lock_id_offset()));
35723570
z_csg(zero, Z_R1_scratch, OM_OFFSET_NO_MONITOR_VALUE_TAG(owner), monitor_tagged);
@@ -6309,9 +6307,9 @@ void MacroAssembler::compiler_fast_lock_lightweight_object(Register obj, Registe
63096307
const Address recursions_address(tmp1_monitor, ObjectMonitor::recursions_offset() - monitor_tag);
63106308

63116309

6312-
// Try to CAS m->owner from null to current thread's id.
6313-
// If m->owner is null, then csg succeeds and sets m->owner=THREAD_ID and CR=EQ.
6314-
// Otherwise, register zero is filled with the current owner.
6310+
// Try to CAS owner (no owner => current thread's _lock_id).
6311+
// If csg succeeds then CR=EQ, otherwise, register zero is filled
6312+
// with the current owner.
63156313
z_lghi(zero, 0);
63166314
z_l(Z_R1_scratch, Address(Z_thread, JavaThread::lock_id_offset()));
63176315
z_csg(zero, Z_R1_scratch, owner_address);

‎src/hotspot/cpu/x86/c2_MacroAssembler_x86.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ void C2_MacroAssembler::fast_lock_lightweight(Register obj, Register box, Regist
625625
movptr(Address(box, BasicLock::object_monitor_cache_offset_in_bytes()), monitor);
626626
}
627627

628-
// CAS owner (null => current thread).
628+
// Try to CAS owner (no owner => current thread's _lock_id).
629629
xorptr(rax_reg, rax_reg);
630630
movptr(box, Address(thread, JavaThread::lock_id_offset()));
631631
lock(); cmpxchgptr(box, owner_address);

‎src/hotspot/cpu/x86/frame_x86.cpp

+30
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,36 @@ frame frame::sender_for_upcall_stub_frame(RegisterMap* map) const {
409409
return fr;
410410
}
411411

412+
#if defined(ASSERT)
413+
static address get_register_address_in_stub(const frame& stub_fr, VMReg reg) {
414+
RegisterMap map(nullptr,
415+
RegisterMap::UpdateMap::include,
416+
RegisterMap::ProcessFrames::skip,
417+
RegisterMap::WalkContinuation::skip);
418+
stub_fr.oop_map()->update_register_map(&stub_fr, &map);
419+
return map.location(reg, stub_fr.sp());
420+
}
421+
#endif
422+
423+
JavaThread** frame::saved_thread_address(const frame& f) {
424+
CodeBlob* cb = f.cb();
425+
assert(cb != nullptr && cb->is_runtime_stub(), "invalid frame");
426+
427+
JavaThread** thread_addr;
428+
#ifdef COMPILER1
429+
if (cb == Runtime1::blob_for(C1StubId::monitorenter_id) ||
430+
cb == Runtime1::blob_for(C1StubId::monitorenter_nofpu_id)) {
431+
thread_addr = (JavaThread**)(f.sp() + Runtime1::runtime_blob_current_thread_offset(f));
432+
} else
433+
#endif
434+
{
435+
// c2 only saves rbp in the stub frame so nothing to do.
436+
thread_addr = nullptr;
437+
}
438+
assert(get_register_address_in_stub(f, SharedRuntime::thread_register()) == (address)thread_addr, "wrong thread address");
439+
return thread_addr;
440+
}
441+
412442
//------------------------------------------------------------------------------
413443
// frame::verify_deopt_original_pc
414444
//

‎src/hotspot/cpu/zero/frame_zero.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,11 @@ bool frame::upcall_stub_frame_is_first() const {
7272
return false;
7373
}
7474

75+
JavaThread** frame::saved_thread_address(const frame& f) {
76+
Unimplemented();
77+
return nullptr;
78+
}
79+
7580
frame frame::sender_for_nonentry_frame(RegisterMap *map) const {
7681
assert(zeroframe()->is_interpreter_frame() ||
7782
zeroframe()->is_fake_stub_frame(), "wrong type of frame");

‎src/hotspot/share/prims/jvmtiExport.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1678,7 +1678,7 @@ void JvmtiExport::post_vthread_unmount(jobject vthread) {
16781678
HandleMark hm(thread);
16791679
EVT_TRIG_TRACE(EXT_EVENT_VIRTUAL_THREAD_UNMOUNT, ("[%p] Trg Virtual Thread Unmount event triggered", vthread));
16801680

1681-
// On preemption JVMTI state rebinding has already happened so get it always direclty from the oop.
1681+
// On preemption JVMTI state rebinding has already happened so get it always directly from the oop.
16821682
JvmtiThreadState *state = java_lang_Thread::jvmti_thread_state(JNIHandles::resolve(vthread));
16831683
if (state == NULL) {
16841684
return;

‎src/hotspot/share/runtime/frame.cpp

-38
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,6 @@
6060
#include "utilities/debug.hpp"
6161
#include "utilities/decoder.hpp"
6262
#include "utilities/formatBuffer.hpp"
63-
#ifdef COMPILER1
64-
#include "c1/c1_Runtime1.hpp"
65-
#endif
6663

6764
RegisterMap::RegisterMap(JavaThread *thread, UpdateMap update_map, ProcessFrames process_frames, WalkContinuation walk_cont) {
6865
_thread = thread;
@@ -500,41 +497,6 @@ jint frame::interpreter_frame_expression_stack_size() const {
500497
return (jint)stack_size;
501498
}
502499

503-
#if defined(ASSERT) && !defined(PPC64)
504-
static address get_register_address_in_stub(const frame& stub_fr, VMReg reg) {
505-
RegisterMap map(nullptr,
506-
RegisterMap::UpdateMap::include,
507-
RegisterMap::ProcessFrames::skip,
508-
RegisterMap::WalkContinuation::skip);
509-
stub_fr.oop_map()->update_register_map(&stub_fr, &map);
510-
return map.location(reg, stub_fr.sp());
511-
}
512-
#endif
513-
514-
JavaThread** frame::saved_thread_address(const frame& f) {
515-
#if defined(PPC64)
516-
// The current thread (JavaThread*) is never stored on the stack
517-
return nullptr;
518-
#else
519-
CodeBlob* cb = f.cb();
520-
assert(cb != nullptr && cb->is_runtime_stub(), "invalid frame");
521-
522-
JavaThread** thread_addr;
523-
#ifdef COMPILER1
524-
if (cb == Runtime1::blob_for(C1StubId::monitorenter_id) ||
525-
cb == Runtime1::blob_for(C1StubId::monitorenter_nofpu_id)) {
526-
thread_addr = (JavaThread**)(f.sp() + Runtime1::runtime_blob_current_thread_offset(f));
527-
} else
528-
#endif
529-
{
530-
// c2 only saves rbp in the stub frame so nothing to do.
531-
thread_addr = nullptr;
532-
}
533-
assert(get_register_address_in_stub(f, SharedRuntime::thread_register()) == (address)thread_addr, "wrong thread address");
534-
return thread_addr;
535-
#endif
536-
}
537-
538500
// (frame::interpreter_frame_sender_sp accessor is in frame_<arch>.cpp)
539501

540502
const char* frame::print_name() const {

‎src/hotspot/share/runtime/objectMonitor.hpp

+1-9
Original file line numberDiff line numberDiff line change
@@ -173,17 +173,9 @@ class ObjectMonitor : public CHeapObj<mtObjectMonitor> {
173173

174174
static const int64_t NO_OWNER = 0;
175175
static const int64_t ANONYMOUS_OWNER = 1;
176-
// Used by async deflation as a marker in the _owner field.
177-
// Note that the choice of the two markers is peculiar:
178-
// - They need to represent values that cannot be pointers. In particular,
179-
// we achieve this by using the lowest two bits.
180-
// - ANONYMOUS_OWNER should be a small value, it is used in generated code
181-
// and small values encode much better.
182-
// - We test for anonymous owner by testing for the lowest bit, therefore
183-
// DEFLATER_MARKER must *not* have that bit set.
184176
static const int64_t DEFLATER_MARKER = 2;
185177

186-
int64_t volatile _owner; // Either tid of owner, ANONYMOUS_OWNER_MARKER or DEFLATER_MARKER.
178+
int64_t volatile _owner; // Either tid of owner, NO_OWNER, ANONYMOUS_OWNER or DEFLATER_MARKER.
187179
volatile uint64_t _previous_owner_tid; // thread id of the previous owner of the monitor
188180
// Separate _owner and _next_om on different cache lines since
189181
// both can have busy multi-threaded access. _previous_owner_tid is only

0 commit comments

Comments
 (0)
Please sign in to comment.