Skip to content

Commit 2586f36

Browse files
author
Alan Bateman
committedApr 11, 2023
8304919: Implementation of Virtual Threads
Reviewed-by: lmesnik, cjplummer, psandoz, mchung, sspitsyn, jpai
1 parent 3939807 commit 2586f36

File tree

205 files changed

+1379
-1342
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

205 files changed

+1379
-1342
lines changed
 

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

+1-8
Original file line numberDiff line numberDiff line change
@@ -1498,11 +1498,9 @@ JavaThreadStatus java_lang_Thread_FieldHolder::get_thread_status(oop holder) {
14981498

14991499

15001500
int java_lang_Thread_Constants::_static_VTHREAD_GROUP_offset = 0;
1501-
int java_lang_Thread_Constants::_static_NOT_SUPPORTED_CLASSLOADER_offset = 0;
15021501

15031502
#define THREAD_CONSTANTS_STATIC_FIELDS_DO(macro) \
1504-
macro(_static_VTHREAD_GROUP_offset, k, "VTHREAD_GROUP", threadgroup_signature, true); \
1505-
macro(_static_NOT_SUPPORTED_CLASSLOADER_offset, k, "NOT_SUPPORTED_CLASSLOADER", classloader_signature, true);
1503+
macro(_static_VTHREAD_GROUP_offset, k, "VTHREAD_GROUP", threadgroup_signature, true);
15061504

15071505
void java_lang_Thread_Constants::compute_offsets() {
15081506
assert(_static_VTHREAD_GROUP_offset == 0, "offsets should be initialized only once");
@@ -1523,11 +1521,6 @@ oop java_lang_Thread_Constants::get_VTHREAD_GROUP() {
15231521
return base->obj_field(_static_VTHREAD_GROUP_offset);
15241522
}
15251523

1526-
oop java_lang_Thread_Constants::get_NOT_SUPPORTED_CLASSLOADER() {
1527-
InstanceKlass* k = vmClasses::Thread_Constants_klass();
1528-
oop base = k->static_field_base_raw();
1529-
return base->obj_field(_static_NOT_SUPPORTED_CLASSLOADER_offset);
1530-
}
15311524

15321525
int java_lang_Thread::_holder_offset;
15331526
int java_lang_Thread::_name_offset;

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

-1
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,6 @@ class java_lang_Thread_Constants : AllStatic {
475475

476476
public:
477477
static oop get_VTHREAD_GROUP();
478-
static oop get_NOT_SUPPORTED_CLASSLOADER();
479478

480479
friend class JavaClasses;
481480
};

0 commit comments

Comments
 (0)
Please sign in to comment.