Skip to content

Commit 5deb159

Browse files
committedApr 22, 2022
Merge
2 parents d2016db + a335c5d commit 5deb159

36 files changed

+225
-225
lines changed
 

‎make/data/hotspot-symbols/symbols-unix

+2-2
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,8 @@ JVM_RegisterSignal
193193
JVM_ReleaseUTF
194194
JVM_ReportFinalizationComplete
195195
JVM_ResumeThread
196-
JVM_ScopeLocalCache
197-
JVM_SetScopeLocalCache
196+
JVM_ExtentLocalCache
197+
JVM_SetExtentLocalCache
198198
JVM_SetArrayElement
199199
JVM_SetClassSigners
200200
JVM_SetNativeThreadName

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ bool Compiler::is_intrinsic_supported(const methodHandle& method) {
154154
case vmIntrinsics::_getModifiers:
155155
case vmIntrinsics::_currentCarrierThread:
156156
case vmIntrinsics::_currentThread:
157-
case vmIntrinsics::_scopeLocalCache:
157+
case vmIntrinsics::_extentLocalCache:
158158
case vmIntrinsics::_dabs:
159159
case vmIntrinsics::_dsqrt:
160160
case vmIntrinsics::_dsqrt_strict:

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1417,8 +1417,8 @@ void LIRGenerator::do_getObjectSize(Intrinsic* x) {
14171417
__ branch_destination(L_done->label());
14181418
}
14191419

1420-
void LIRGenerator::do_scopeLocalCache(Intrinsic* x) {
1421-
do_JavaThreadField(x, JavaThread::scopeLocalCache_offset());
1420+
void LIRGenerator::do_extentLocalCache(Intrinsic* x) {
1421+
do_JavaThreadField(x, JavaThread::extentLocalCache_offset());
14221422
}
14231423

14241424
// Example: Thread.currentCarrierThread()
@@ -2960,7 +2960,7 @@ void LIRGenerator::do_Intrinsic(Intrinsic* x) {
29602960
case vmIntrinsics::_getObjectSize: do_getObjectSize(x); break;
29612961
case vmIntrinsics::_currentCarrierThread: do_currentCarrierThread(x); break;
29622962
case vmIntrinsics::_currentThread: do_vthread(x); break;
2963-
case vmIntrinsics::_scopeLocalCache: do_scopeLocalCache(x); break;
2963+
case vmIntrinsics::_extentLocalCache: do_extentLocalCache(x); break;
29642964

29652965
case vmIntrinsics::_dlog: // fall through
29662966
case vmIntrinsics::_dlog10: // fall through

‎src/hotspot/share/c1/c1_LIRGenerator.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ class LIRGenerator: public InstructionVisitor, public BlockClosure {
257257
void do_getClass(Intrinsic* x);
258258
void do_getObjectSize(Intrinsic* x);
259259
void do_currentCarrierThread(Intrinsic* x);
260-
void do_scopeLocalCache(Intrinsic* x);
260+
void do_extentLocalCache(Intrinsic* x);
261261
void do_vthread(Intrinsic* x);
262262
void do_JavaThreadField(Intrinsic* x, ByteSize offset);
263263
void do_FmaIntrinsic(Intrinsic* x);

‎src/hotspot/share/classfile/javaClasses.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -1789,7 +1789,7 @@ int java_lang_Thread::_interrupted_offset;
17891789
int java_lang_Thread::_tid_offset;
17901790
int java_lang_Thread::_continuation_offset;
17911791
int java_lang_Thread::_park_blocker_offset;
1792-
int java_lang_Thread::_scopeLocalBindings_offset;
1792+
int java_lang_Thread::_extentLocalBindings_offset;
17931793
JFR_ONLY(int java_lang_Thread::_jfr_epoch_offset;)
17941794

17951795
#define THREAD_FIELDS_DO(macro) \
@@ -1802,7 +1802,7 @@ JFR_ONLY(int java_lang_Thread::_jfr_epoch_offset;)
18021802
macro(_tid_offset, k, "tid", long_signature, false); \
18031803
macro(_park_blocker_offset, k, "parkBlocker", object_signature, false); \
18041804
macro(_continuation_offset, k, "cont", continuation_signature, false); \
1805-
macro(_scopeLocalBindings_offset, k, "scopeLocalBindings", object_signature, false);
1805+
macro(_extentLocalBindings_offset, k, "extentLocalBindings", object_signature, false);
18061806

18071807
void java_lang_Thread::compute_offsets() {
18081808
assert(_holder_offset == 0, "offsets should be initialized only once");
@@ -1835,8 +1835,8 @@ void java_lang_Thread::set_jvmti_thread_state(oop java_thread, JvmtiThreadState*
18351835
java_thread->address_field_put(_jvmti_thread_state_offset, (address)state);
18361836
}
18371837

1838-
void java_lang_Thread::clear_scopeLocalBindings(oop java_thread) {
1839-
java_thread->obj_field_put(_scopeLocalBindings_offset, NULL);
1838+
void java_lang_Thread::clear_extentLocalBindings(oop java_thread) {
1839+
java_thread->obj_field_put(_extentLocalBindings_offset, NULL);
18401840
}
18411841

18421842
oop java_lang_Thread::holder(oop java_thread) {
@@ -4879,7 +4879,7 @@ class UnsafeConstantsFixup : public FieldClosure {
48794879
} else if (fd->name() == vmSymbols::data_cache_line_flush_size_name()) {
48804880
mirror->int_field_put(fd->offset(), _data_cache_line_flush_size);
48814881
} else if (fd->name() == vmSymbols::scoped_cache_shift_name()) {
4882-
mirror->int_field_put(fd->offset(), ScopeLocalCacheSize ? exact_log2(ScopeLocalCacheSize) : -1);
4882+
mirror->int_field_put(fd->offset(), ExtentLocalCacheSize ? exact_log2(ExtentLocalCacheSize) : -1);
48834883
} else {
48844884
assert(false, "unexpected UnsafeConstants field");
48854885
}

‎src/hotspot/share/classfile/javaClasses.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ class java_lang_Thread : AllStatic {
418418
static int _tid_offset;
419419
static int _continuation_offset;
420420
static int _park_blocker_offset;
421-
static int _scopeLocalBindings_offset;
421+
static int _extentLocalBindings_offset;
422422
JFR_ONLY(static int _jfr_epoch_offset;)
423423

424424
static void compute_offsets();
@@ -467,8 +467,8 @@ class java_lang_Thread : AllStatic {
467467
static JvmtiThreadState* jvmti_thread_state(oop java_thread);
468468
static void set_jvmti_thread_state(oop java_thread, JvmtiThreadState* state);
469469

470-
// Clear all scope local bindings on error
471-
static void clear_scopeLocalBindings(oop java_thread);
470+
// Clear all extent local bindings on error
471+
static void clear_extentLocalBindings(oop java_thread);
472472

473473
// Blocker object responsible for thread parking
474474
static oop park_blocker(oop java_thread);

‎src/hotspot/share/classfile/vmIntrinsics.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ bool vmIntrinsics::preserves_state(vmIntrinsics::ID id) {
7777
case vmIntrinsics::_isInstance:
7878
case vmIntrinsics::_currentCarrierThread:
7979
case vmIntrinsics::_currentThread:
80-
case vmIntrinsics::_scopeLocalCache:
80+
case vmIntrinsics::_extentLocalCache:
8181
case vmIntrinsics::_dabs:
8282
case vmIntrinsics::_fabs:
8383
case vmIntrinsics::_iabs:
@@ -127,8 +127,8 @@ bool vmIntrinsics::can_trap(vmIntrinsics::ID id) {
127127
case vmIntrinsics::_currentCarrierThread:
128128
case vmIntrinsics::_currentThread:
129129
case vmIntrinsics::_setCurrentThread:
130-
case vmIntrinsics::_scopeLocalCache:
131-
case vmIntrinsics::_setScopeLocalCache:
130+
case vmIntrinsics::_extentLocalCache:
131+
case vmIntrinsics::_setExtentLocalCache:
132132
case vmIntrinsics::_dabs:
133133
case vmIntrinsics::_fabs:
134134
case vmIntrinsics::_iabs:
@@ -264,8 +264,8 @@ bool vmIntrinsics::disabled_by_jvm_flags(vmIntrinsics::ID id) {
264264
if (!InlineThreadNatives) return true;
265265
break;
266266
case vmIntrinsics::_setCurrentThread:
267-
case vmIntrinsics::_scopeLocalCache:
268-
case vmIntrinsics::_setScopeLocalCache:
267+
case vmIntrinsics::_extentLocalCache:
268+
case vmIntrinsics::_setExtentLocalCache:
269269
case vmIntrinsics::_floatToRawIntBits:
270270
case vmIntrinsics::_intBitsToFloat:
271271
case vmIntrinsics::_doubleToRawLongBits:

‎src/hotspot/share/classfile/vmIntrinsics.hpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -259,12 +259,12 @@ class methodHandle;
259259
do_intrinsic(_currentThread, java_lang_Thread, currentThread_name, currentThread_signature, F_SN) \
260260
do_name( currentThread_name, "currentThread") \
261261
do_signature(currentThread_signature, "()Ljava/lang/Thread;") \
262-
do_intrinsic(_scopeLocalCache, java_lang_Thread, scopeLocalCache_name, scopeLocalCache_signature, F_SN) \
263-
do_name( scopeLocalCache_name, "scopeLocalCache") \
264-
do_signature(scopeLocalCache_signature, "()[Ljava/lang/Object;") \
265-
do_intrinsic(_setScopeLocalCache, java_lang_Thread, setScopeLocalCache_name, setScopeLocalCache_signature, F_SN) \
266-
do_name( setScopeLocalCache_name, "setScopeLocalCache") \
267-
do_signature(setScopeLocalCache_signature, "([Ljava/lang/Object;)V") \
262+
do_intrinsic(_extentLocalCache, java_lang_Thread, extentLocalCache_name, extentLocalCache_signature, F_SN) \
263+
do_name( extentLocalCache_name, "extentLocalCache") \
264+
do_signature(extentLocalCache_signature, "()[Ljava/lang/Object;") \
265+
do_intrinsic(_setExtentLocalCache, java_lang_Thread, setExtentLocalCache_name, setExtentLocalCache_signature, F_SN) \
266+
do_name( setExtentLocalCache_name, "setExtentLocalCache") \
267+
do_signature(setExtentLocalCache_signature, "([Ljava/lang/Object;)V") \
268268
do_intrinsic(_setCurrentThread, java_lang_Thread, setCurrentThread_name, thread_void_signature, F_RN) \
269269
do_name( setCurrentThread_name, "setCurrentThread") \
270270
\

‎src/hotspot/share/include/jvm.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -316,10 +316,10 @@ JNIEXPORT jobjectArray JNICALL
316316
JVM_DumpThreads(JNIEnv *env, jclass threadClass, jobjectArray threads);
317317

318318
JNIEXPORT jobject JNICALL
319-
JVM_ScopeLocalCache(JNIEnv *env, jclass threadClass);
319+
JVM_ExtentLocalCache(JNIEnv *env, jclass threadClass);
320320

321321
JNIEXPORT void JNICALL
322-
JVM_SetScopeLocalCache(JNIEnv *env, jclass threadClass, jobject theCache);
322+
JVM_SetExtentLocalCache(JNIEnv *env, jclass threadClass, jobject theCache);
323323

324324
JNIEXPORT jlong JNICALL
325325
JVM_GetNextThreadIdOffset(JNIEnv *env, jclass threadClass);

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1514,12 +1514,12 @@ C2V_VMENTRY(void, materializeVirtualObjects, (JNIEnv* env, jobject, jobject _hs_
15141514
for (int frame_index = 0; frame_index < virtualFrames->length(); frame_index++) {
15151515
compiledVFrame* cvf = virtualFrames->at(frame_index);
15161516

1517-
GrowableArray<ScopeValue*>* scopeLocals = cvf->scope()->locals();
1517+
GrowableArray<ScopeValue*>* extentLocals = cvf->scope()->locals();
15181518
StackValueCollection* locals = cvf->locals();
15191519
if (locals != NULL) {
15201520
for (int i2 = 0; i2 < locals->size(); i2++) {
15211521
StackValue* var = locals->at(i2);
1522-
if (var->type() == T_OBJECT && scopeLocals->at(i2)->is_object()) {
1522+
if (var->type() == T_OBJECT && extentLocals->at(i2)->is_object()) {
15231523
jvalue val;
15241524
val.l = cast_from_oop<jobject>(locals->at(i2)->get_obj()());
15251525
cvf->update_local(T_OBJECT, i2, val);

‎src/hotspot/share/opto/c2compiler.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -641,8 +641,8 @@ bool C2Compiler::is_intrinsic_supported(const methodHandle& method, bool is_virt
641641
case vmIntrinsics::_currentCarrierThread:
642642
case vmIntrinsics::_currentThread:
643643
case vmIntrinsics::_setCurrentThread:
644-
case vmIntrinsics::_scopeLocalCache:
645-
case vmIntrinsics::_setScopeLocalCache:
644+
case vmIntrinsics::_extentLocalCache:
645+
case vmIntrinsics::_setExtentLocalCache:
646646
#ifdef JFR_HAVE_INTRINSICS
647647
case vmIntrinsics::_counterTime:
648648
case vmIntrinsics::_getEventWriter:

‎src/hotspot/share/opto/library_call.cpp

+11-11
Original file line numberDiff line numberDiff line change
@@ -472,8 +472,8 @@ bool LibraryCallKit::try_to_inline(int predicate) {
472472
case vmIntrinsics::_currentThread: return inline_native_currentThread();
473473
case vmIntrinsics::_setCurrentThread: return inline_native_setCurrentThread();
474474

475-
case vmIntrinsics::_scopeLocalCache: return inline_native_scopeLocalCache();
476-
case vmIntrinsics::_setScopeLocalCache: return inline_native_setScopeLocalCache();
475+
case vmIntrinsics::_extentLocalCache: return inline_native_extentLocalCache();
476+
case vmIntrinsics::_setExtentLocalCache: return inline_native_setExtentLocalCache();
477477

478478
#ifdef JFR_HAVE_INTRINSICS
479479
case vmIntrinsics::_counterTime: return inline_native_time_funcs(CAST_FROM_FN_PTR(address, JfrTime::time_function()), "counterTime");
@@ -3461,38 +3461,38 @@ bool LibraryCallKit::inline_native_setCurrentThread() {
34613461
return true;
34623462
}
34633463

3464-
Node* LibraryCallKit::scopeLocalCache_helper() {
3464+
Node* LibraryCallKit::extentLocalCache_helper() {
34653465
ciKlass *objects_klass = ciObjArrayKlass::make(env()->Object_klass());
34663466
const TypeOopPtr *etype = TypeOopPtr::make_from_klass(env()->Object_klass());
34673467

34683468
bool xk = etype->klass_is_exact();
34693469

34703470
Node* thread = _gvn.transform(new ThreadLocalNode());
3471-
Node* p = basic_plus_adr(top()/*!oop*/, thread, in_bytes(JavaThread::scopeLocalCache_offset()));
3471+
Node* p = basic_plus_adr(top()/*!oop*/, thread, in_bytes(JavaThread::extentLocalCache_offset()));
34723472
return _gvn.transform(LoadNode::make(_gvn, NULL, immutable_memory(), p, p->bottom_type()->is_ptr(),
34733473
TypeRawPtr::NOTNULL, T_ADDRESS, MemNode::unordered));
34743474
}
34753475

3476-
//------------------------inline_native_scopeLocalCache------------------
3477-
bool LibraryCallKit::inline_native_scopeLocalCache() {
3476+
//------------------------inline_native_extentLocalCache------------------
3477+
bool LibraryCallKit::inline_native_extentLocalCache() {
34783478
ciKlass *objects_klass = ciObjArrayKlass::make(env()->Object_klass());
34793479
const TypeOopPtr *etype = TypeOopPtr::make_from_klass(env()->Object_klass());
34803480
const TypeAry* arr0 = TypeAry::make(etype, TypeInt::POS);
34813481

3482-
// Because we create the scopeLocal cache lazily we have to make the
3482+
// Because we create the extentLocal cache lazily we have to make the
34833483
// type of the result BotPTR.
34843484
bool xk = etype->klass_is_exact();
34853485
const Type* objects_type = TypeAryPtr::make(TypePtr::BotPTR, arr0, objects_klass, xk, 0);
3486-
Node* cache_obj_handle = scopeLocalCache_helper();
3486+
Node* cache_obj_handle = extentLocalCache_helper();
34873487
set_result(access_load(cache_obj_handle, objects_type, T_OBJECT, IN_NATIVE));
34883488

34893489
return true;
34903490
}
34913491

3492-
//------------------------inline_native_setScopeLocalCache------------------
3493-
bool LibraryCallKit::inline_native_setScopeLocalCache() {
3492+
//------------------------inline_native_setExtentLocalCache------------------
3493+
bool LibraryCallKit::inline_native_setExtentLocalCache() {
34943494
Node* arr = argument(0);
3495-
Node* cache_obj_handle = scopeLocalCache_helper();
3495+
Node* cache_obj_handle = extentLocalCache_helper();
34963496

34973497
const TypePtr *adr_type = _gvn.type(cache_obj_handle)->isa_ptr();
34983498
store_to_memory(control(), cache_obj_handle, arr, T_OBJECT, adr_type,

‎src/hotspot/share/opto/library_call.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -239,9 +239,9 @@ class LibraryCallKit : public GraphKit {
239239
bool inline_native_currentThread();
240240
bool inline_native_setCurrentThread();
241241

242-
bool inline_native_scopeLocalCache();
243-
Node* scopeLocalCache_helper();
244-
bool inline_native_setScopeLocalCache();
242+
bool inline_native_extentLocalCache();
243+
Node* extentLocalCache_helper();
244+
bool inline_native_setExtentLocalCache();
245245

246246
bool inline_native_time_funcs(address method, const char* funcName);
247247
#ifdef JFR_HAVE_INTRINSICS

‎src/hotspot/share/opto/memnode.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -858,7 +858,7 @@ bool LoadNode::is_immutable_value(Node* adr) {
858858
in_bytes(JavaThread::osthread_offset()),
859859
in_bytes(JavaThread::threadObj_offset()),
860860
in_bytes(JavaThread::vthread_offset()),
861-
in_bytes(JavaThread::scopeLocalCache_offset()),
861+
in_bytes(JavaThread::extentLocalCache_offset()),
862862
};
863863

864864
for (size_t i = 0; i < sizeof offsets / sizeof offsets[0]; i++) {

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -3179,22 +3179,22 @@ JVM_ENTRY(void, JVM_SetNativeThreadName(JNIEnv* env, jobject jthread, jstring na
31793179
}
31803180
JVM_END
31813181

3182-
JVM_ENTRY(jobject, JVM_ScopeLocalCache(JNIEnv* env, jclass threadClass))
3183-
oop theCache = thread->scopeLocalCache();
3182+
JVM_ENTRY(jobject, JVM_ExtentLocalCache(JNIEnv* env, jclass threadClass))
3183+
oop theCache = thread->extentLocalCache();
31843184
if (theCache) {
31853185
arrayOop objs = arrayOop(theCache);
3186-
assert(objs->length() == ScopeLocalCacheSize * 2, "wrong length");
3186+
assert(objs->length() == ExtentLocalCacheSize * 2, "wrong length");
31873187
}
31883188
return JNIHandles::make_local(THREAD, theCache);
31893189
JVM_END
31903190

3191-
JVM_ENTRY(void, JVM_SetScopeLocalCache(JNIEnv* env, jclass threadClass,
3191+
JVM_ENTRY(void, JVM_SetExtentLocalCache(JNIEnv* env, jclass threadClass,
31923192
jobject theCache))
31933193
arrayOop objs = arrayOop(JNIHandles::resolve(theCache));
31943194
if (objs != NULL) {
3195-
assert(objs->length() == ScopeLocalCacheSize * 2, "wrong length");
3195+
assert(objs->length() == ExtentLocalCacheSize * 2, "wrong length");
31963196
}
3197-
thread->set_scopeLocalCache(objs);
3197+
thread->set_extentLocalCache(objs);
31983198
JVM_END
31993199

32003200
// java.lang.SecurityManager ///////////////////////////////////////////////////////////////////////

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -443,11 +443,11 @@ Deoptimization::UnrollBlock* Deoptimization::fetch_unroll_info_helper(JavaThread
443443
vframeArray* array = create_vframeArray(current, deoptee, &map, chunk, realloc_failures);
444444
#if COMPILER2_OR_JVMCI
445445
if (realloc_failures) {
446-
// FIXME: This very crudely destroys all ScopeLocal bindings. This
446+
// FIXME: This very crudely destroys all ExtentLocal bindings. This
447447
// is better than a bound value escaping, but far from ideal.
448448
oop java_thread = current->threadObj();
449-
current->set_scopeLocalCache(NULL);
450-
java_lang_Thread::clear_scopeLocalBindings(java_thread);
449+
current->set_extentLocalCache(NULL);
450+
java_lang_Thread::clear_extentLocalBindings(java_thread);
451451
pop_frames_failed_reallocs(current, array);
452452
}
453453
#endif

‎src/hotspot/share/runtime/flags/jvmFlagConstraintsRuntime.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ JVMFlag::Error VMPageSizeConstraintFunc(uintx value, bool verbose) {
9292
return JVMFlag::SUCCESS;
9393
}
9494

95-
JVMFlag::Error ScopeLocalCacheSizeConstraintFunc(intx value, bool verbose) {
95+
JVMFlag::Error ExtentLocalCacheSizeConstraintFunc(intx value, bool verbose) {
9696
if (!is_power_of_2(value)) {
9797
JVMFlag::printError(verbose,
98-
"ScopeLocalCacheSize (" INTX_FORMAT ") must be "
98+
"ExtentLocalCacheSize (" INTX_FORMAT ") must be "
9999
"power of 2\n",
100100
value);
101101
return JVMFlag::VIOLATES_CONSTRAINT;

‎src/hotspot/share/runtime/flags/jvmFlagConstraintsRuntime.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
f(intx, ObjectAlignmentInBytesConstraintFunc) \
3838
f(intx, ContendedPaddingWidthConstraintFunc) \
3939
f(intx, PerfDataSamplingIntervalFunc) \
40-
f(intx, ScopeLocalCacheSizeConstraintFunc) \
40+
f(intx, ExtentLocalCacheSizeConstraintFunc) \
4141
f(uintx, VMPageSizeConstraintFunc) \
4242
f(size_t, NUMAInterleaveGranularityConstraintFunc)
4343

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -2013,10 +2013,10 @@ const intx ObjectAlignmentInBytes = 8;
20132013
develop(bool, UseContinuationFastPath, true, \
20142014
"Use fast-path frame walking in continuations") \
20152015
\
2016-
product(intx, ScopeLocalCacheSize, 16, \
2016+
product(intx, ExtentLocalCacheSize, 16, \
20172017
"Size of the cache for scoped values") \
20182018
range(0, max_intx) \
2019-
constraint(ScopeLocalCacheSizeConstraintFunc, AtParse) \
2019+
constraint(ExtentLocalCacheSizeConstraintFunc, AtParse) \
20202020
\
20212021
develop(int, VerifyMetaspaceInterval, DEBUG_ONLY(500) NOT_DEBUG(0), \
20222022
"Run periodic metaspace verifications (0 - none, " \

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -805,9 +805,9 @@ void SharedRuntime::throw_StackOverflowError_common(JavaThread* current, bool de
805805
if (StackTraceInThrowable) {
806806
java_lang_Throwable::fill_in_stack_trace(exception);
807807
}
808-
// Remove the ScopeLocal cache in case we got a StackOverflowError
809-
// while we were trying to remove ScopeLocal bindings.
810-
current->set_scopeLocalCache(NULL);
808+
// Remove the ExtentLocal cache in case we got a StackOverflowError
809+
// while we were trying to remove ExtentLocal bindings.
810+
current->set_extentLocalCache(NULL);
811811
// Increment counter for hs_err file reporting
812812
Atomic::inc(&Exceptions::_stack_overflow_errors);
813813
throw_and_post_jvmti_exception(current, exception);

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

+8-8
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ void JavaThread::set_threadOopHandles(oop p) {
789789
_threadObj = OopHandle(_thread_oop_storage, p);
790790
_vthread = OopHandle(_thread_oop_storage, p);
791791
_jvmti_vthread = OopHandle(_thread_oop_storage, NULL);
792-
_scopeLocalCache = OopHandle(_thread_oop_storage, NULL);
792+
_extentLocalCache = OopHandle(_thread_oop_storage, NULL);
793793
}
794794

795795
oop JavaThread::threadObj() const {
@@ -814,13 +814,13 @@ void JavaThread::set_jvmti_vthread(oop p) {
814814
_jvmti_vthread.replace(p);
815815
}
816816

817-
oop JavaThread::scopeLocalCache() const {
818-
return _scopeLocalCache.resolve();
817+
oop JavaThread::extentLocalCache() const {
818+
return _extentLocalCache.resolve();
819819
}
820820

821-
void JavaThread::set_scopeLocalCache(oop p) {
821+
void JavaThread::set_extentLocalCache(oop p) {
822822
assert(_thread_oop_storage != NULL, "not yet initialized");
823-
_scopeLocalCache.replace(p);
823+
_extentLocalCache.replace(p);
824824
}
825825

826826
void JavaThread::allocate_threadObj(Handle thread_group, const char* thread_name,
@@ -1676,11 +1676,11 @@ void JavaThread::handle_async_exception(oop java_throwable) {
16761676
// We cannot call Exceptions::_throw(...) here because we cannot block
16771677
set_pending_exception(java_throwable, __FILE__, __LINE__);
16781678

1679-
// Clear any scope-local bindings on ThreadDeath
1680-
set_scopeLocalCache(NULL);
1679+
// Clear any extent-local bindings on ThreadDeath
1680+
set_extentLocalCache(NULL);
16811681
oop threadOop = threadObj();
16821682
assert(threadOop != NULL, "must be");
1683-
java_lang_Thread::clear_scopeLocalBindings(threadOop);
1683+
java_lang_Thread::clear_extentLocalBindings(threadOop);
16841684

16851685
LogTarget(Info, exceptions) lt;
16861686
if (lt.is_enabled()) {

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ class JavaThread: public Thread {
705705
OopHandle _threadObj; // The Java level thread object
706706
OopHandle _vthread; // the value returned by Thread.currentThread(): the virtual thread, if mounted, otherwise _threadObj
707707
OopHandle _jvmti_vthread;
708-
OopHandle _scopeLocalCache;
708+
OopHandle _extentLocalCache;
709709

710710
#ifdef ASSERT
711711
private:
@@ -1063,9 +1063,9 @@ class JavaThread: public Thread {
10631063
inline StackWatermarks* stack_watermarks() { return &_stack_watermarks; }
10641064

10651065
public:
1066-
jlong _scopeLocal_hash_table_shift;
1066+
jlong _extentLocal_hash_table_shift;
10671067

1068-
void allocate_scopeLocal_hash_table(int count);
1068+
void allocate_extentLocal_hash_table(int count);
10691069

10701070
public:
10711071
// Constructor
@@ -1119,8 +1119,8 @@ class JavaThread: public Thread {
11191119
void set_threadOopHandles(oop p);
11201120
oop vthread() const;
11211121
void set_vthread(oop p);
1122-
oop scopeLocalCache() const;
1123-
void set_scopeLocalCache(oop p);
1122+
oop extentLocalCache() const;
1123+
void set_extentLocalCache(oop p);
11241124
oop jvmti_vthread() const;
11251125
void set_jvmti_vthread(oop p);
11261126

@@ -1339,7 +1339,7 @@ class JavaThread: public Thread {
13391339
void clr_do_not_unlock(void) { _do_not_unlock_if_synchronized = false; }
13401340
bool do_not_unlock(void) { return _do_not_unlock_if_synchronized; }
13411341

1342-
static ByteSize scopeLocalCache_offset() { return byte_offset_of(JavaThread, _scopeLocalCache); }
1342+
static ByteSize extentLocalCache_offset() { return byte_offset_of(JavaThread, _extentLocalCache); }
13431343

13441344
// For assembly stub generation
13451345
static ByteSize threadObj_offset() { return byte_offset_of(JavaThread, _threadObj); }

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -145,12 +145,12 @@ void compiledVFrame::update_deferred_value(BasicType type, int index, jvalue val
145145
// original update is kept.
146146
void compiledVFrame::create_deferred_updates_after_object_deoptimization() {
147147
// locals
148-
GrowableArray<ScopeValue*>* scopeLocals = scope()->locals();
148+
GrowableArray<ScopeValue*>* extentLocals = scope()->locals();
149149
StackValueCollection* lcls = locals();
150150
if (lcls != NULL) {
151151
for (int i2 = 0; i2 < lcls->size(); i2++) {
152152
StackValue* var = lcls->at(i2);
153-
if (var->type() == T_OBJECT && scopeLocals->at(i2)->is_object()) {
153+
if (var->type() == T_OBJECT && extentLocals->at(i2)->is_object()) {
154154
jvalue val;
155155
val.l = cast_from_oop<jobject>(lcls->at(i2)->get_obj()());
156156
update_local(T_OBJECT, i2, val);

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@
714714
nonstatic_field(JavaThread, _threadObj, OopHandle) \
715715
nonstatic_field(JavaThread, _vthread, OopHandle) \
716716
nonstatic_field(JavaThread, _jvmti_vthread, OopHandle) \
717-
nonstatic_field(JavaThread, _scopeLocalCache, OopHandle) \
717+
nonstatic_field(JavaThread, _extentLocalCache, OopHandle) \
718718
nonstatic_field(JavaThread, _anchor, JavaFrameAnchor) \
719719
nonstatic_field(JavaThread, _vm_result, oop) \
720720
nonstatic_field(JavaThread, _vm_result_2, Metadata*) \

‎src/java.base/share/classes/java/lang/System.java

+8-8
Original file line numberDiff line numberDiff line change
@@ -2541,20 +2541,20 @@ public <T> void setCarrierThreadLocal(ThreadLocal<T> local, T value) {
25412541
local.setCarrierThreadLocal(value);
25422542
}
25432543

2544-
public Object[] scopeLocalCache() {
2545-
return Thread.scopeLocalCache();
2544+
public Object[] extentLocalCache() {
2545+
return Thread.extentLocalCache();
25462546
}
25472547

2548-
public void setScopeLocalCache(Object[] cache) {
2549-
Thread.setScopeLocalCache(cache);
2548+
public void setExtentLocalCache(Object[] cache) {
2549+
Thread.setExtentLocalCache(cache);
25502550
}
25512551

2552-
public Object scopeLocalBindings() {
2553-
return Thread.scopeLocalBindings();
2552+
public Object extentLocalBindings() {
2553+
return Thread.extentLocalBindings();
25542554
}
25552555

2556-
public void setScopeLocalBindings(Object bindings) {
2557-
Thread.setScopeLocalBindings(bindings);
2556+
public void setExtentLocalBindings(Object bindings) {
2557+
Thread.setExtentLocalBindings(bindings);
25582558
}
25592559

25602560
public Continuation getContinuation(Thread thread) {

‎src/java.base/share/classes/java/lang/Thread.java

+19-19
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
import jdk.internal.reflect.CallerSensitive;
4646
import jdk.internal.reflect.Reflection;
4747
import jdk.internal.vm.Continuation;
48-
import jdk.internal.vm.ScopeLocalContainer;
48+
import jdk.internal.vm.ExtentLocalContainer;
4949
import jdk.internal.vm.StackableScope;
5050
import jdk.internal.vm.ThreadContainer;
5151
import jdk.internal.vm.annotation.IntrinsicCandidate;
@@ -244,34 +244,34 @@ private static class FieldHolder {
244244
ThreadLocal.ThreadLocalMap inheritableThreadLocals;
245245

246246
/*
247-
* Scope locals binding are maintained by the ScopeLocal class.
247+
* Scope locals binding are maintained by the ExtentLocal class.
248248
*/
249-
private Object scopeLocalBindings;
249+
private Object extentLocalBindings;
250250

251-
static Object scopeLocalBindings() {
252-
return currentThread().scopeLocalBindings;
251+
static Object extentLocalBindings() {
252+
return currentThread().extentLocalBindings;
253253
}
254254

255-
static void setScopeLocalBindings(Object bindings) {
256-
currentThread().scopeLocalBindings = bindings;
255+
static void setExtentLocalBindings(Object bindings) {
256+
currentThread().extentLocalBindings = bindings;
257257
}
258258

259259
/**
260-
* Inherit the scope-local bindings from the given container.
260+
* Inherit the extent-local bindings from the given container.
261261
* Invoked when starting a thread.
262262
*/
263-
void inheritScopeLocalBindings(ThreadContainer container) {
264-
ScopeLocalContainer.BindingsSnapshot snapshot;
263+
void inheritExtentLocalBindings(ThreadContainer container) {
264+
ExtentLocalContainer.BindingsSnapshot snapshot;
265265
if (container.owner() != null
266-
&& (snapshot = container.scopeLocalBindings()) != null) {
266+
&& (snapshot = container.extentLocalBindings()) != null) {
267267

268268
// bindings established for running/calling an operation
269-
Object bindings = snapshot.scopeLocalBindings();
270-
if (currentThread().scopeLocalBindings != bindings) {
269+
Object bindings = snapshot.extentLocalBindings();
270+
if (currentThread().extentLocalBindings != bindings) {
271271
StructureViolationExceptions.throwException("Scope local bindings have changed");
272272
}
273273

274-
this.scopeLocalBindings = bindings;
274+
this.extentLocalBindings = bindings;
275275
}
276276
}
277277

@@ -358,13 +358,13 @@ void setContinuation(Continuation cont) {
358358
@IntrinsicCandidate
359359
native void setCurrentThread(Thread thread);
360360

361-
// ScopeLocal support:
361+
// ExtentLocal support:
362362

363363
@IntrinsicCandidate
364-
static native Object[] scopeLocalCache();
364+
static native Object[] extentLocalCache();
365365

366366
@IntrinsicCandidate
367-
static native void setScopeLocalCache(Object[] cache);
367+
static native void setExtentLocalCache(Object[] cache);
368368

369369
/**
370370
* A hint to the scheduler that the current thread is willing to yield
@@ -1517,8 +1517,8 @@ void start(ThreadContainer container) {
15171517
boolean started = false;
15181518
container.onStart(this); // may throw
15191519
try {
1520-
// scope locals may be inherited
1521-
inheritScopeLocalBindings(container);
1520+
// extent locals may be inherited
1521+
inheritExtentLocalBindings(container);
15221522

15231523
// bind thread to container
15241524
setThreadContainer(container);

‎src/java.base/share/classes/java/lang/VirtualThread.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -451,8 +451,8 @@ void start(ThreadContainer container) {
451451
boolean started = false;
452452
container.onStart(this); // may throw
453453
try {
454-
// scope locals may be inherited
455-
inheritScopeLocalBindings(container);
454+
// extent locals may be inherited
455+
inheritExtentLocalBindings(container);
456456

457457
// bind thread to container
458458
setThreadContainer(container);

‎src/java.base/share/classes/java/util/concurrent/ThreadLocalRandom.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ static final void eraseThreadLocals(Thread thread) {
305305
// Ideally we should also clear the Thread's ScopedCache, but it is
306306
// in the VM-internal JavaThread structure. This method is called so
307307
// early in the lifetime of a ForkJoinPool thread that we don't expect
308-
// any ScopeLocals to have yet been bound by this thread, so the
308+
// any ExtentLocals to have yet been bound by this thread, so the
309309
// ScopedCache should be empty at this point.
310310
// U.putReference(thread, INHERITABLESCOPELOCALBINDINGS, null);
311311
}
@@ -407,7 +407,7 @@ private Object readResolve() {
407407
= new AtomicLong(RandomSupport.mixMurmur64(System.currentTimeMillis()) ^
408408
RandomSupport.mixMurmur64(System.nanoTime()));
409409

410-
// used by ScopeLocal
410+
// used by ExtentLocal
411411
private static class Access {
412412
static {
413413
SharedSecrets.setJavaUtilConcurrentTLRAccess(

‎src/java.base/share/classes/jdk/internal/access/JavaLangAccess.java

+8-8
Original file line numberDiff line numberDiff line change
@@ -464,24 +464,24 @@ public interface JavaLangAccess {
464464
<T> void setCarrierThreadLocal(ThreadLocal<T> local, T value);
465465

466466
/**
467-
* Returns the current thread's scope locals cache
467+
* Returns the current thread's extent locals cache
468468
*/
469-
Object[] scopeLocalCache();
469+
Object[] extentLocalCache();
470470

471471
/**
472-
* Sets the current thread's scope locals cache
472+
* Sets the current thread's extent locals cache
473473
*/
474-
void setScopeLocalCache(Object[] cache);
474+
void setExtentLocalCache(Object[] cache);
475475

476476
/**
477-
* Return the current thread's scope local bindings.
477+
* Return the current thread's extent local bindings.
478478
*/
479-
Object scopeLocalBindings();
479+
Object extentLocalBindings();
480480

481481
/**
482-
* Set the current thread's scope local bindings.
482+
* Set the current thread's extent local bindings.
483483
*/
484-
void setScopeLocalBindings(Object bindings);
484+
void setExtentLocalBindings(Object bindings);
485485

486486
/**
487487
* Returns the innermost mounted continuation

‎src/java.base/share/classes/jdk/internal/misc/ThreadFlock.java

+12-12
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
import java.util.stream.Stream;
3636
import jdk.internal.access.JavaLangAccess;
3737
import jdk.internal.access.SharedSecrets;
38-
import jdk.internal.vm.ScopeLocalContainer;
38+
import jdk.internal.vm.ExtentLocalContainer;
3939
import jdk.internal.vm.ThreadContainer;
4040
import jdk.internal.vm.ThreadContainers;
4141
import static java.util.concurrent.TimeUnit.NANOSECONDS;
@@ -99,7 +99,7 @@ public class ThreadFlock implements AutoCloseable {
9999
private volatile int threadCount;
100100

101101
private final String name;
102-
private final ScopeLocalContainer.BindingsSnapshot scopeLocalBindings;
102+
private final ExtentLocalContainer.BindingsSnapshot extentLocalBindings;
103103
private final ThreadContainerImpl container; // encapsulate for now
104104

105105
// state
@@ -111,16 +111,16 @@ public class ThreadFlock implements AutoCloseable {
111111

112112
ThreadFlock(String name) {
113113
this.name = name;
114-
this.scopeLocalBindings = ScopeLocalContainer.captureBindings();
114+
this.extentLocalBindings = ExtentLocalContainer.captureBindings();
115115
this.container = new ThreadContainerImpl(this);
116116
}
117117

118118
private long threadCount() {
119119
return threadCount;
120120
}
121121

122-
private ScopeLocalContainer.BindingsSnapshot scopeLocalBindings() {
123-
return scopeLocalBindings;
122+
private ExtentLocalContainer.BindingsSnapshot extentLocalBindings() {
123+
return extentLocalBindings;
124124
}
125125

126126
private void incrementThreadCount() {
@@ -210,7 +210,7 @@ private void ensureOwnerOrContainsThread() {
210210
* Opens a new thread flock. The flock is owned by the current thread. It can be
211211
* named to aid debugging.
212212
*
213-
* <p> This method captures the current thread's {@linkplain ScopeLocal scope-local}
213+
* <p> This method captures the current thread's {@linkplain ExtentLocal extent-local}
214214
* bindings for inheritance by threads created in the flock.
215215
*
216216
* <p> For the purposes of containment, monitoring, and debugging, the parent
@@ -250,7 +250,7 @@ public Thread owner() {
250250
/**
251251
* Starts the given unstarted thread in this flock.
252252
*
253-
* <p> The thread is started with the scope-local bindings that were captured
253+
* <p> The thread is started with the extent-local bindings that were captured
254254
* when opening the flock. The bindings must match the current thread's bindings.
255255
*
256256
* <p> This method may only be invoked by the flock owner or threads {@linkplain
@@ -263,7 +263,7 @@ public Thread owner() {
263263
* @throws WrongThreadException if the current thread is not the owner or a thread
264264
* contained in the flock
265265
* @throws jdk.incubator.concurrent.StructureViolationException if the current
266-
* scope-local bindings are not the same as when the flock was created
266+
* extent-local bindings are not the same as when the flock was created
267267
*/
268268
public Thread start(Thread thread) {
269269
ensureOwnerOrContainsThread();
@@ -401,8 +401,8 @@ public void wakeup() {
401401
* closes this flock, and then throws {@link
402402
* jdk.incubator.concurrent.StructureViolationException}.
403403
* Similarly, if called to close a flock that <em>encloses</em> {@linkplain
404-
* jdk.incubator.concurrent.ScopeLocal.Carrier#run(Runnable) operations} with
405-
* scope-local bindings then it also throws {@code StructureViolationException}
404+
* jdk.incubator.concurrent.ExtentLocal.Carrier#run(Runnable) operations} with
405+
* extent-local bindings then it also throws {@code StructureViolationException}
406406
* after closing the flock.
407407
*
408408
* @throws WrongThreadException if invoked by a thread that is not the owner
@@ -588,8 +588,8 @@ public String toString() {
588588
return flock.toString();
589589
}
590590
@Override
591-
public ScopeLocalContainer.BindingsSnapshot scopeLocalBindings() {
592-
return flock.scopeLocalBindings();
591+
public ExtentLocalContainer.BindingsSnapshot extentLocalBindings() {
592+
return flock.extentLocalBindings();
593593
}
594594
}
595595
}

‎src/java.base/share/classes/jdk/internal/vm/Continuation.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class Continuation {
5353

5454
StackChunk.init(); // ensure StackChunk class is initialized
5555

56-
String value = GetPropertyAction.privilegedGetProperty("jdk.preserveScopeLocalCache");
56+
String value = GetPropertyAction.privilegedGetProperty("jdk.preserveExtentLocalCache");
5757
PRESERVE_SCOPE_LOCAL_CACHE = (value == null) || Boolean.parseBoolean(value);
5858
}
5959

@@ -128,7 +128,7 @@ private static Thread currentCarrierThread() {
128128
private Object yieldInfo;
129129
private boolean preempted;
130130

131-
private Object[] scopeLocalCache;
131+
private Object[] extentLocalCache;
132132

133133
/**
134134
* Constructs a continuation
@@ -237,7 +237,7 @@ private void unmount() {
237237
public final void run() {
238238
while (true) {
239239
mount();
240-
JLA.setScopeLocalCache(scopeLocalCache);
240+
JLA.setExtentLocalCache(extentLocalCache);
241241

242242
if (done)
243243
throw new IllegalStateException("Continuation terminated");
@@ -270,11 +270,11 @@ public final void run() {
270270

271271
unmount();
272272
if (PRESERVE_SCOPE_LOCAL_CACHE) {
273-
scopeLocalCache = JLA.scopeLocalCache();
273+
extentLocalCache = JLA.extentLocalCache();
274274
} else {
275-
scopeLocalCache = null;
275+
extentLocalCache = null;
276276
}
277-
JLA.setScopeLocalCache(null);
277+
JLA.setExtentLocalCache(null);
278278
} catch (Throwable e) { e.printStackTrace(); System.exit(1); }
279279
}
280280
// we're now in the parent continuation

‎src/java.base/share/classes/jdk/internal/vm/ScopeLocalContainer.java ‎src/java.base/share/classes/jdk/internal/vm/ExtentLocalContainer.java

+21-21
Original file line numberDiff line numberDiff line change
@@ -33,26 +33,26 @@
3333
import jdk.internal.vm.annotation.ReservedStackAccess;
3434

3535
/**
36-
* A StackableScope to represent scope-local bindings.
36+
* A StackableScope to represent extent-local bindings.
3737
*
38-
* This class defines static methods to run an operation with a ScopeLocalContainer
39-
* on the scope stack. It also defines a method to get the latest ScopeLocalContainer
40-
* and a method to return a snapshot of the scope local bindings.
38+
* This class defines static methods to run an operation with a ExtentLocalContainer
39+
* on the scope stack. It also defines a method to get the latest ExtentLocalContainer
40+
* and a method to return a snapshot of the extent local bindings.
4141
*/
42-
public class ScopeLocalContainer extends StackableScope {
42+
public class ExtentLocalContainer extends StackableScope {
4343
private static final JavaLangAccess JLA = SharedSecrets.getJavaLangAccess();
4444
static {
4545
Unsafe.getUnsafe().ensureClassInitialized(StructureViolationExceptions.class);
4646
}
4747

48-
private ScopeLocalContainer() {
48+
private ExtentLocalContainer() {
4949
}
5050

5151
/**
52-
* Returns the "latest" ScopeLocalContainer for the current Thread. This may be on
52+
* Returns the "latest" ExtentLocalContainer for the current Thread. This may be on
5353
* the current thread's scope task or ma require walking up the tree to find it.
5454
*/
55-
public static <T extends ScopeLocalContainer> T latest(Class<T> containerClass) {
55+
public static <T extends ExtentLocalContainer> T latest(Class<T> containerClass) {
5656
StackableScope scope = head();
5757
if (scope == null) {
5858
scope = JLA.threadContainer(Thread.currentThread());
@@ -69,37 +69,37 @@ public static <T extends ScopeLocalContainer> T latest(Class<T> containerClass)
6969
}
7070

7171
/**
72-
* Returns the "latest" ScopeLocalContainer for the current Thread. This
72+
* Returns the "latest" ExtentLocalContainer for the current Thread. This
7373
* may be on the current thread's scope task or may require walking up the
7474
* tree to find it.
7575
*/
76-
public static ScopeLocalContainer latest() {
77-
return latest(ScopeLocalContainer.class);
76+
public static ExtentLocalContainer latest() {
77+
return latest(ExtentLocalContainer.class);
7878
}
7979

8080
/**
81-
* A snapshot of the scope local bindings. The snapshot includes the bindings
82-
* established for the current thread and scope local container.
81+
* A snapshot of the extent local bindings. The snapshot includes the bindings
82+
* established for the current thread and extent local container.
8383
*/
84-
public record BindingsSnapshot(Object scopeLocalBindings,
85-
ScopeLocalContainer container) { }
84+
public record BindingsSnapshot(Object extentLocalBindings,
85+
ExtentLocalContainer container) { }
8686

8787
/**
88-
* Returns a scope local bindings for the current thread.
88+
* Returns a extent local bindings for the current thread.
8989
*/
9090
public static BindingsSnapshot captureBindings() {
91-
return new BindingsSnapshot(JLA.scopeLocalBindings(), latest());
91+
return new BindingsSnapshot(JLA.extentLocalBindings(), latest());
9292
}
9393

9494
/**
95-
* For use by ScopeLocal to run an operation in a structured context.
95+
* For use by ExtentLocal to run an operation in a structured context.
9696
*/
9797
public static void run(Runnable op) {
9898
if (head() == null) {
9999
// no need to push scope when stack is empty
100100
runWithoutScope(op);
101101
} else {
102-
new ScopeLocalContainer().doRun(op);
102+
new ExtentLocalContainer().doRun(op);
103103
}
104104
}
105105

@@ -141,14 +141,14 @@ private void doRun(Runnable op) {
141141
}
142142

143143
/**
144-
* For use by ScopeLocal to call a value returning operation in a structured context.
144+
* For use by ExtentLocal to call a value returning operation in a structured context.
145145
*/
146146
public static <V> V call(Callable<V> op) throws Exception {
147147
if (head() == null) {
148148
// no need to push scope when stack is empty
149149
return callWithoutScope(op);
150150
} else {
151-
return new ScopeLocalContainer().doCall(op);
151+
return new ExtentLocalContainer().doCall(op);
152152
}
153153
}
154154

‎src/java.base/share/classes/jdk/internal/vm/ThreadContainer.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ public long threadCount() {
9090
public abstract void onExit(Thread thread);
9191

9292
/**
93-
* The scope locals captured when the thread container was created.
93+
* The extent locals captured when the thread container was created.
9494
*/
95-
public ScopeLocalContainer.BindingsSnapshot scopeLocalBindings() {
95+
public ExtentLocalContainer.BindingsSnapshot extentLocalBindings() {
9696
return null;
9797
}
9898
}

‎src/java.base/share/native/libjava/Thread.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ static JNINativeMethod methods[] = {
5353
{"dumpThreads", "([" THD ")[[" STE, (void *)&JVM_DumpThreads},
5454
{"getStackTrace0", "()" OBJ, (void *)&JVM_GetStackTrace},
5555
{"setNativeName", "(" STR ")V", (void *)&JVM_SetNativeThreadName},
56-
{"scopeLocalCache", "()[" OBJ, (void *)&JVM_ScopeLocalCache},
57-
{"setScopeLocalCache", "([" OBJ ")V",(void *)&JVM_SetScopeLocalCache},
56+
{"extentLocalCache", "()[" OBJ, (void *)&JVM_ExtentLocalCache},
57+
{"setExtentLocalCache", "([" OBJ ")V",(void *)&JVM_SetExtentLocalCache},
5858
{"getNextThreadIdOffset", "()J", (void *)&JVM_GetNextThreadIdOffset}
5959
};
6060

‎test/hotspot/jtreg/ProblemList-svc-vthread.txt

+29-29
Original file line numberDiff line numberDiff line change
@@ -109,37 +109,37 @@ vmTestbase/nsk/jdi/ExceptionEvent/catchLocation/location002/TestDescription.java
109109
## to support vthreads and expect the OPAQUE_FRAME error. The others were
110110
## not because they don't add any additional value.
111111

112-
vmTestbase/nsk/jdi/Scenarios/invokeMethod/popframes001/TestDescription.java
113-
vmTestbase/nsk/jdi/BScenarios/hotswap/tc01x002/TestDescription.java
114-
vmTestbase/nsk/jdi/BScenarios/hotswap/tc02x001/TestDescription.java
115-
vmTestbase/nsk/jdi/BScenarios/hotswap/tc02x002/TestDescription.java
116-
vmTestbase/nsk/jdi/BScenarios/hotswap/tc04x001/TestDescription.java
117-
vmTestbase/nsk/jdi/BScenarios/hotswap/tc04x002/TestDescription.java
118-
vmTestbase/nsk/jdi/BScenarios/hotswap/tc06x001/TestDescription.java
119-
vmTestbase/nsk/jdi/BScenarios/hotswap/tc08x001/TestDescription.java
120-
vmTestbase/nsk/jdi/BScenarios/hotswap/tc10x002/TestDescription.java
112+
vmTestbase/nsk/jdi/Scenarios/invokeMethod/popframes001/TestDescription.java 8285414 generic-all
113+
vmTestbase/nsk/jdi/BScenarios/hotswap/tc01x002/TestDescription.java 8285414 generic-all
114+
vmTestbase/nsk/jdi/BScenarios/hotswap/tc02x001/TestDescription.java 8285414 generic-all
115+
vmTestbase/nsk/jdi/BScenarios/hotswap/tc02x002/TestDescription.java 8285414 generic-all
116+
vmTestbase/nsk/jdi/BScenarios/hotswap/tc04x001/TestDescription.java 8285414 generic-all
117+
vmTestbase/nsk/jdi/BScenarios/hotswap/tc04x002/TestDescription.java 8285414 generic-all
118+
vmTestbase/nsk/jdi/BScenarios/hotswap/tc06x001/TestDescription.java 8285414 generic-all
119+
vmTestbase/nsk/jdi/BScenarios/hotswap/tc08x001/TestDescription.java 8285414 generic-all
120+
vmTestbase/nsk/jdi/BScenarios/hotswap/tc10x002/TestDescription.java 8285414 generic-all
121121

122-
vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes002/TestDescription.java
123-
vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes003/TestDescription.java
124-
vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes004/TestDescription.java
122+
vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes002/TestDescription.java 8285414 generic-all
123+
vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes003/TestDescription.java 8285414 generic-all
124+
vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes004/TestDescription.java 8285414 generic-all
125125

126126
####
127127
## JVMTI ForceEarlyReturn not supported for vthreads (JVMTI_ERROR_OPAQUE_FRAME)
128128
## Note forceEarlyReturn002 was converted to support vthreads. The rest were not
129129
## since there is no added value (JVMTI_ERROR_OPAQUE_FRAME is expected).
130130

131-
vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn014/forceEarlyReturn014.java
132-
vmTestbase/nsk/jdi/stress/serial/forceEarlyReturn001/TestDescription.java
133-
vmTestbase/nsk/jdi/stress/serial/forceEarlyReturn002/TestDescription.java
131+
vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn014/forceEarlyReturn014.java 8285415 generic-all
132+
vmTestbase/nsk/jdi/stress/serial/forceEarlyReturn001/TestDescription.java 8285415 generic-all
133+
vmTestbase/nsk/jdi/stress/serial/forceEarlyReturn002/TestDescription.java 8285415 generic-all
134134

135135
###
136-
# These 2 tests try to create 10 vthreads and have them all block on a synchornized
136+
# These 2 tests try to create 10 vthreads and have them all block on a synchronized
137137
# method call, but on some hosts there are not enough carrier threads to support pinning
138138
# all 10 vthreads, so the test deadlocks. -Djdk.defaultScheduler.parallelism=<n>
139139
# could be used with the debuggee to ensure there are enough carrier threads.
140140

141-
vmTestbase/nsk/jdi/EventRequestManager/stepRequests/stepreq002/TestDescription.java
142-
vmTestbase/nsk/jdi/EventRequestManager/deleteEventRequests/delevtreqs002/TestDescription.java
141+
vmTestbase/nsk/jdi/EventRequestManager/stepRequests/stepreq002/TestDescription.java 8285416 generic-all
142+
vmTestbase/nsk/jdi/EventRequestManager/deleteEventRequests/delevtreqs002/TestDescription.java 8285416 generic-all
143143

144144
###
145145
# These tests all create 5 virtual threads that block on a synchronized block, which causes
@@ -160,26 +160,26 @@ vmTestbase/nsk/jdi/ObjectReference/waitingThreads/waitingthreads002/TestDescript
160160
# debuggee, which has the side affect of making the Read-Poller thread exit. Because
161161
# of this no vthreads can complete their reads, and the test times out as a result.
162162

163-
vmTestbase/nsk/jdi/VMOutOfMemoryException/VMOutOfMemoryException001/VMOutOfMemoryException001.java windows-all
163+
vmTestbase/nsk/jdi/VMOutOfMemoryException/VMOutOfMemoryException001/VMOutOfMemoryException001.java 8285417 windows-all
164164

165165
####
166166
## NSK JMX Tests
167167

168168
####
169169
## Unsupported functionality
170170

171-
vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/baseBehaviorTest_server_default/TestDescription.java
172-
vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/baseBehaviorTest_server_custom/TestDescription.java
173-
vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/baseBehaviorTest_directly/TestDescription.java
174-
vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/baseBehaviorTest_proxy_custom/TestDescription.java
175-
vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/baseBehaviorTest_proxy_default/TestDescription.java
171+
vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/baseBehaviorTest_server_default/TestDescription.java 8285419 generic-all
172+
vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/baseBehaviorTest_server_custom/TestDescription.java 8285419 generic-all
173+
vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/baseBehaviorTest_directly/TestDescription.java 8285419 generic-all
174+
vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/baseBehaviorTest_proxy_custom/TestDescription.java 8285419 generic-all
175+
vmTestbase/nsk/monitoring/ThreadMXBean/GetThreadAllocatedBytes/baseBehaviorTest_proxy_default/TestDescription.java 8285419 generic-all
176176

177177

178178
####
179179
## No ThreadInfo for vthreads
180180

181-
vmTestbase/nsk/monitoring/ThreadInfo/isInNative/isinnative001/TestDescription.java
182-
vmTestbase/nsk/monitoring/ThreadInfo/getLockOwnerName/getlockownername001/TestDescription.java
183-
vmTestbase/nsk/monitoring/ThreadInfo/getLockName/getlockname001/TestDescription.java
184-
vmTestbase/nsk/monitoring/ThreadInfo/from_c/from_c001/TestDescription.java
185-
vmTestbase/nsk/monitoring/MemoryUsage/from/from001/TestDescription.java
181+
vmTestbase/nsk/monitoring/ThreadInfo/isInNative/isinnative001/TestDescription.java 8285420 generic-all
182+
vmTestbase/nsk/monitoring/ThreadInfo/getLockOwnerName/getlockownername001/TestDescription.java 8285420 generic-all
183+
vmTestbase/nsk/monitoring/ThreadInfo/getLockName/getlockname001/TestDescription.java 8285420 generic-all
184+
vmTestbase/nsk/monitoring/ThreadInfo/from_c/from_c001/TestDescription.java 8285420 generic-all
185+
vmTestbase/nsk/monitoring/MemoryUsage/from/from001/TestDescription.java 8285420 generic-all

‎test/jdk/ProblemList-svc-vthread.txt

+33-33
Original file line numberDiff line numberDiff line change
@@ -5,42 +5,42 @@ com/sun/jdi/EATests.java#id0 8264699 generic-
55
## Tests failing when main() is executed in additional vthread or in vthread instead of thread
66
#
77

8-
com/sun/jdi/DeferredStepTest.java
9-
com/sun/jdi/EarlyReturnTest.java
10-
com/sun/jdi/ExceptionEvents.java
11-
com/sun/jdi/FetchLocals.java
12-
com/sun/jdi/Frames2Test.java
13-
com/sun/jdi/GetSetLocalTest.java
14-
com/sun/jdi/JdbMethodExitTest.java
15-
com/sun/jdi/JdbStepTest.java
16-
com/sun/jdi/JdbStopThreadTest.java
17-
com/sun/jdi/JdbStopThreadidTest.java
18-
com/sun/jdi/LaunchCommandLine.java
19-
com/sun/jdi/MethodEntryExitEvents.java
20-
com/sun/jdi/MultiBreakpointsTest.java
21-
com/sun/jdi/NativeInstanceFilter.java
22-
com/sun/jdi/PopAndStepTest.java
23-
com/sun/jdi/PopAsynchronousTest.java
24-
com/sun/jdi/PopSynchronousTest.java
25-
com/sun/jdi/RedefineCrossStart.java
26-
com/sun/jdi/RedefineG.java
27-
com/sun/jdi/RedefineNestmateAttr/TestNestmateAttr.java
28-
com/sun/jdi/RedefineTTYLineNumber.java
29-
com/sun/jdi/ReferrersTest.java
30-
com/sun/jdi/ResumeAfterThreadResumeCallTest.java
31-
com/sun/jdi/SetLocalWhileThreadInNative.java
32-
com/sun/jdi/StepTest.java
33-
com/sun/jdi/redefine/RedefineTest.java
34-
com/sun/jdi/redefineMethod/RedefineTest.java
8+
com/sun/jdi/DeferredStepTest.java 8285422 generic-all
9+
com/sun/jdi/EarlyReturnTest.java 8285422 generic-all
10+
com/sun/jdi/ExceptionEvents.java 8285422 generic-all
11+
com/sun/jdi/FetchLocals.java 8285422 generic-all
12+
com/sun/jdi/Frames2Test.java 8285422 generic-all
13+
com/sun/jdi/GetSetLocalTest.java 8285422 generic-all
14+
com/sun/jdi/JdbMethodExitTest.java 8285422 generic-all
15+
com/sun/jdi/JdbStepTest.java 8285422 generic-all
16+
com/sun/jdi/JdbStopThreadTest.java 8285422 generic-all
17+
com/sun/jdi/JdbStopThreadidTest.java 8285422 generic-all
18+
com/sun/jdi/LaunchCommandLine.java 8285422 generic-all
19+
com/sun/jdi/MethodEntryExitEvents.java 8285422 generic-all
20+
com/sun/jdi/MultiBreakpointsTest.java 8285422 generic-all
21+
com/sun/jdi/NativeInstanceFilter.java 8285422 generic-all
22+
com/sun/jdi/PopAndStepTest.java 8285422 generic-all
23+
com/sun/jdi/PopAsynchronousTest.java 8285422 generic-all
24+
com/sun/jdi/PopSynchronousTest.java 8285422 generic-all
25+
com/sun/jdi/RedefineCrossStart.java 8285422 generic-all
26+
com/sun/jdi/RedefineG.java 8285422 generic-all
27+
com/sun/jdi/RedefineNestmateAttr/TestNestmateAttr.java 8285422 generic-all
28+
com/sun/jdi/RedefineTTYLineNumber.java 8285422 generic-all
29+
com/sun/jdi/ReferrersTest.java 8285422 generic-all
30+
com/sun/jdi/ResumeAfterThreadResumeCallTest.java 8285422 generic-all
31+
com/sun/jdi/SetLocalWhileThreadInNative.java 8285422 generic-all
32+
com/sun/jdi/StepTest.java 8285422 generic-all
33+
com/sun/jdi/redefine/RedefineTest.java 8285422 generic-all
34+
com/sun/jdi/redefineMethod/RedefineTest.java 8285422 generic-all
3535

3636
####
3737
# JDI SDE Tests
3838
# Use custom classpath
3939

40-
com/sun/jdi/sde/FilterMangleTest.java
41-
com/sun/jdi/sde/MangleTest.java
42-
com/sun/jdi/sde/MangleStepTest.java
43-
com/sun/jdi/sde/TemperatureTableTest.java
44-
com/sun/jdi/sde/SourceDebugExtensionTest.java
40+
com/sun/jdi/sde/FilterMangleTest.java 8285423 generic-all
41+
com/sun/jdi/sde/MangleTest.java 8285423 generic-all
42+
com/sun/jdi/sde/MangleStepTest.java 8285423 generic-all
43+
com/sun/jdi/sde/TemperatureTableTest.java 8285423 generic-all
44+
com/sun/jdi/sde/SourceDebugExtensionTest.java 8285423 generic-all
4545

46-
com/sun/jdi/EATests.java#id0 8264699 generic-all
46+
com/sun/jdi/EATests.java#id0 8264699 generic-all

0 commit comments

Comments
 (0)
Please sign in to comment.