Skip to content

Commit b3501fd

Browse files
committedNov 30, 2022
8297600: Check current thread in selected JRT_LEAF methods
Reviewed-by: dholmes, coleenp
1 parent f05bfb1 commit b3501fd

File tree

7 files changed

+19
-0
lines changed

7 files changed

+19
-0
lines changed
 

‎src/hotspot/share/c1/c1_Runtime1.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -763,6 +763,7 @@ JRT_END
763763

764764

765765
JRT_LEAF(void, Runtime1::monitorexit(JavaThread* current, BasicObjectLock* lock))
766+
assert(current == JavaThread::current(), "pre-condition");
766767
#ifndef PRODUCT
767768
if (PrintC1Statistics) {
768769
_monitorexit_slowcase_cnt++;

‎src/hotspot/share/gc/g1/g1BarrierSetRuntime.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ void G1BarrierSetRuntime::write_ref_array_post_entry(HeapWord* dst, size_t lengt
4646

4747
// G1 pre write barrier slowpath
4848
JRT_LEAF(void, G1BarrierSetRuntime::write_ref_field_pre_entry(oopDesc* orig, JavaThread* thread))
49+
assert(thread == JavaThread::current(), "pre-condition");
4950
assert(orig != nullptr, "should be optimized out");
5051
assert(oopDesc::is_oop(orig, true /* ignore mark word */), "Error");
5152
// store the original value that was in the field reference
@@ -56,6 +57,7 @@ JRT_END
5657
// G1 post write barrier slowpath
5758
JRT_LEAF(void, G1BarrierSetRuntime::write_ref_field_post_entry(volatile G1CardTable::CardValue* card_addr,
5859
JavaThread* thread))
60+
assert(thread == JavaThread::current(), "pre-condition");
5961
G1DirtyCardQueue& queue = G1ThreadLocalData::dirty_card_queue(thread);
6062
G1BarrierSet::dirty_card_queue_set().enqueue(queue, card_addr);
6163
JRT_END

‎src/hotspot/share/gc/shenandoah/shenandoahRuntime.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ void ShenandoahRuntime::arraycopy_barrier_narrow_oop_entry(narrowOop* src, narro
4343

4444
// Shenandoah pre write barrier slowpath
4545
JRT_LEAF(void, ShenandoahRuntime::write_ref_field_pre_entry(oopDesc* orig, JavaThread *thread))
46+
assert(thread == JavaThread::current(), "pre-condition");
4647
assert(orig != NULL, "should be optimized out");
4748
shenandoah_assert_correct(NULL, orig);
4849
// store the original value that was in the field reference

‎src/hotspot/share/interpreter/interpreterRuntime.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -1135,6 +1135,7 @@ JRT_ENTRY(void, InterpreterRuntime::at_safepoint(JavaThread* current))
11351135
JRT_END
11361136

11371137
JRT_LEAF(void, InterpreterRuntime::at_unwind(JavaThread* current))
1138+
assert(current == JavaThread::current(), "pre-condition");
11381139
// This function is called by the interpreter when the return poll found a reason
11391140
// to call the VM. The reason could be that we are returning into a not yet safe
11401141
// to access frame. We handle that below.
@@ -1454,6 +1455,7 @@ JRT_END
14541455

14551456
#if defined(IA32) || defined(AMD64) || defined(ARM)
14561457
JRT_LEAF(void, InterpreterRuntime::popframe_move_outgoing_args(JavaThread* current, void* src_address, void* dest_address))
1458+
assert(current == JavaThread::current(), "pre-condition");
14571459
if (src_address == dest_address) {
14581460
return;
14591461
}
@@ -1507,6 +1509,7 @@ JRT_END
15071509
// The generated code still uses call_VM because that will set up the frame pointer for
15081510
// bcp and method.
15091511
JRT_LEAF(intptr_t, InterpreterRuntime::trace_bytecode(JavaThread* current, intptr_t preserve_this_value, intptr_t tos, intptr_t tos2))
1512+
assert(current == JavaThread::current(), "pre-condition");
15101513
LastFrameAccessor last_frame(current);
15111514
assert(last_frame.is_interpreted_frame(), "must be an interpreted frame");
15121515
methodHandle mh(current, last_frame.method());

‎src/hotspot/share/jvmci/jvmciRuntime.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -410,13 +410,15 @@ JRT_BLOCK_ENTRY(void, JVMCIRuntime::monitorenter(JavaThread* current, oopDesc* o
410410
JRT_END
411411

412412
JRT_LEAF(void, JVMCIRuntime::monitorexit(JavaThread* current, oopDesc* obj, BasicLock* lock))
413+
assert(current == JavaThread::current(), "pre-condition");
413414
assert(current->last_Java_sp(), "last_Java_sp must be set");
414415
assert(oopDesc::is_oop(obj), "invalid lock object pointer dected");
415416
SharedRuntime::monitor_exit_helper(obj, lock, current);
416417
JRT_END
417418

418419
// Object.notify() fast path, caller does slow path
419420
JRT_LEAF(jboolean, JVMCIRuntime::object_notify(JavaThread* current, oopDesc* obj))
421+
assert(current == JavaThread::current(), "pre-condition");
420422

421423
// Very few notify/notifyAll operations find any threads on the waitset, so
422424
// the dominant fast-path is to simply return.
@@ -433,6 +435,7 @@ JRT_END
433435

434436
// Object.notifyAll() fast path, caller does slow path
435437
JRT_LEAF(jboolean, JVMCIRuntime::object_notifyAll(JavaThread* current, oopDesc* obj))
438+
assert(current == JavaThread::current(), "pre-condition");
436439

437440
if (!SafepointSynchronize::is_synchronizing() ) {
438441
if (ObjectSynchronizer::quick_notify(obj, current, true)) {

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

+2
Original file line numberDiff line numberDiff line change
@@ -744,6 +744,7 @@ static bool falls_through(Bytecodes::Code bc) {
744744

745745
// Return BasicType of value being returned
746746
JRT_LEAF(BasicType, Deoptimization::unpack_frames(JavaThread* thread, int exec_mode))
747+
assert(thread == JavaThread::current(), "pre-condition");
747748

748749
// We are already active in the special DeoptResourceMark any ResourceObj's we
749750
// allocate will be freed at the end of the routine.
@@ -1733,6 +1734,7 @@ void Deoptimization::deoptimize_frame(JavaThread* thread, intptr_t* id) {
17331734
// JVMTI PopFrame support
17341735
JRT_LEAF(void, Deoptimization::popframe_preserve_args(JavaThread* thread, int bytes_to_save, void* start_address))
17351736
{
1737+
assert(thread == JavaThread::current(), "pre-condition");
17361738
thread->popframe_preserve_args(in_ByteSize(bytes_to_save), start_address);
17371739
}
17381740
JRT_END

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

+7
Original file line numberDiff line numberDiff line change
@@ -1124,6 +1124,8 @@ int SharedRuntime::dtrace_object_alloc(JavaThread* thread, oopDesc* o, size_t si
11241124

11251125
JRT_LEAF(int, SharedRuntime::dtrace_method_entry(
11261126
JavaThread* current, Method* method))
1127+
assert(current == JavaThread::current(), "pre-condition");
1128+
11271129
assert(DTraceMethodProbes, "wrong call");
11281130
Symbol* kname = method->klass_name();
11291131
Symbol* name = method->name();
@@ -1138,6 +1140,7 @@ JRT_END
11381140

11391141
JRT_LEAF(int, SharedRuntime::dtrace_method_exit(
11401142
JavaThread* current, Method* method))
1143+
assert(current == JavaThread::current(), "pre-condition");
11411144
assert(DTraceMethodProbes, "wrong call");
11421145
Symbol* kname = method->klass_name();
11431146
Symbol* name = method->name();
@@ -2328,6 +2331,7 @@ void SharedRuntime::monitor_exit_helper(oopDesc* obj, BasicLock* lock, JavaThrea
23282331

23292332
// Handles the uncommon cases of monitor unlocking in compiled code
23302333
JRT_LEAF(void, SharedRuntime::complete_monitor_unlocking_C(oopDesc* obj, BasicLock* lock, JavaThread* current))
2334+
assert(current == JavaThread::current(), "pre-condition");
23312335
SharedRuntime::monitor_exit_helper(obj, lock, current);
23322336
JRT_END
23332337

@@ -3280,6 +3284,8 @@ VMRegPair *SharedRuntime::find_callee_arguments(Symbol* sig, bool has_receiver,
32803284
// All of this is done NOT at any Safepoint, nor is any safepoint or GC allowed.
32813285

32823286
JRT_LEAF(intptr_t*, SharedRuntime::OSR_migration_begin( JavaThread *current) )
3287+
assert(current == JavaThread::current(), "pre-condition");
3288+
32833289
// During OSR migration, we unwind the interpreted frame and replace it with a compiled
32843290
// frame. The stack watermark code below ensures that the interpreted frame is processed
32853291
// before it gets unwound. This is helpful as the size of the compiled frame could be
@@ -3414,6 +3420,7 @@ void AdapterHandlerLibrary::print_statistics() {
34143420
#endif /* PRODUCT */
34153421

34163422
JRT_LEAF(void, SharedRuntime::enable_stack_reserved_zone(JavaThread* current))
3423+
assert(current == JavaThread::current(), "pre-condition");
34173424
StackOverflow* overflow_state = current->stack_overflow_state();
34183425
overflow_state->enable_stack_reserved_zone(/*check_if_disabled*/true);
34193426
overflow_state->set_reserved_stack_activation(current->stack_base());

0 commit comments

Comments
 (0)
Please sign in to comment.