@@ -1124,6 +1124,8 @@ int SharedRuntime::dtrace_object_alloc(JavaThread* thread, oopDesc* o, size_t si
1124
1124
1125
1125
JRT_LEAF (int , SharedRuntime::dtrace_method_entry(
1126
1126
JavaThread* current, Method* method))
1127
+ assert(current == JavaThread::current(), "pre-condition");
1128
+
1127
1129
assert (DTraceMethodProbes, " wrong call" );
1128
1130
Symbol* kname = method->klass_name ();
1129
1131
Symbol* name = method->name ();
@@ -1138,6 +1140,7 @@ JRT_END
1138
1140
1139
1141
JRT_LEAF (int , SharedRuntime::dtrace_method_exit(
1140
1142
JavaThread* current, Method* method))
1143
+ assert(current == JavaThread::current(), "pre-condition");
1141
1144
assert (DTraceMethodProbes, " wrong call" );
1142
1145
Symbol* kname = method->klass_name ();
1143
1146
Symbol* name = method->name ();
@@ -2328,6 +2331,7 @@ void SharedRuntime::monitor_exit_helper(oopDesc* obj, BasicLock* lock, JavaThrea
2328
2331
2329
2332
// Handles the uncommon cases of monitor unlocking in compiled code
2330
2333
JRT_LEAF (void , SharedRuntime::complete_monitor_unlocking_C(oopDesc* obj, BasicLock* lock, JavaThread* current))
2334
+ assert(current == JavaThread::current(), "pre-condition");
2331
2335
SharedRuntime::monitor_exit_helper (obj, lock, current);
2332
2336
JRT_END
2333
2337
@@ -3280,6 +3284,8 @@ VMRegPair *SharedRuntime::find_callee_arguments(Symbol* sig, bool has_receiver,
3280
3284
// All of this is done NOT at any Safepoint, nor is any safepoint or GC allowed.
3281
3285
3282
3286
JRT_LEAF (intptr_t *, SharedRuntime::OSR_migration_begin( JavaThread *current) )
3287
+ assert(current == JavaThread::current(), "pre-condition");
3288
+
3283
3289
// During OSR migration, we unwind the interpreted frame and replace it with a compiled
3284
3290
// frame. The stack watermark code below ensures that the interpreted frame is processed
3285
3291
// before it gets unwound. This is helpful as the size of the compiled frame could be
@@ -3414,6 +3420,7 @@ void AdapterHandlerLibrary::print_statistics() {
3414
3420
#endif /* PRODUCT */
3415
3421
3416
3422
JRT_LEAF (void , SharedRuntime::enable_stack_reserved_zone(JavaThread* current))
3423
+ assert(current == JavaThread::current(), "pre-condition");
3417
3424
StackOverflow* overflow_state = current->stack_overflow_state ();
3418
3425
overflow_state->enable_stack_reserved_zone (/* check_if_disabled*/ true );
3419
3426
overflow_state->set_reserved_stack_activation (current->stack_base ());
0 commit comments