@@ -875,90 +875,75 @@ void DeoptimizeObjectsALotThread::deoptimize_objects_alot_loop_all() {
875
875
876
876
JavaThread* CompileBroker::make_thread (ThreadType type, jobject thread_handle, CompileQueue* queue, AbstractCompiler* comp, JavaThread* THREAD) {
877
877
JavaThread* new_thread = NULL ;
878
- {
879
- MutexLocker mu (THREAD, Threads_lock);
880
- switch (type) {
881
- case compiler_t :
882
- assert (comp != NULL , " Compiler instance missing." );
883
- if (!InjectCompilerCreationFailure || comp->num_compiler_threads () == 0 ) {
884
- CompilerCounters* counters = new CompilerCounters ();
885
- new_thread = new CompilerThread (queue, counters);
886
- }
887
- break ;
888
- case sweeper_t :
889
- new_thread = new CodeCacheSweeperThread ();
890
- break ;
878
+
879
+ switch (type) {
880
+ case compiler_t :
881
+ assert (comp != NULL , " Compiler instance missing." );
882
+ if (!InjectCompilerCreationFailure || comp->num_compiler_threads () == 0 ) {
883
+ CompilerCounters* counters = new CompilerCounters ();
884
+ new_thread = new CompilerThread (queue, counters);
885
+ }
886
+ break ;
887
+ case sweeper_t :
888
+ new_thread = new CodeCacheSweeperThread ();
889
+ break ;
891
890
#if defined(ASSERT) && COMPILER2_OR_JVMCI
892
- case deoptimizer_t :
893
- new_thread = new DeoptimizeObjectsALotThread ();
894
- break ;
891
+ case deoptimizer_t :
892
+ new_thread = new DeoptimizeObjectsALotThread ();
893
+ break ;
895
894
#endif // ASSERT
896
- default :
897
- ShouldNotReachHere ();
898
- }
899
-
900
- // At this point the new CompilerThread data-races with this startup
901
- // thread (which I believe is the primoridal thread and NOT the VM
902
- // thread). This means Java bytecodes being executed at startup can
903
- // queue compile jobs which will run at whatever default priority the
904
- // newly created CompilerThread runs at.
905
-
906
-
907
- // At this point it may be possible that no osthread was created for the
908
- // JavaThread due to lack of memory. We would have to throw an exception
909
- // in that case. However, since this must work and we do not allow
910
- // exceptions anyway, check and abort if this fails. But first release the
911
- // lock.
912
-
913
- if (new_thread != NULL && new_thread->osthread () != NULL ) {
914
-
915
- java_lang_Thread::set_thread (JNIHandles::resolve_non_null (thread_handle), new_thread);
895
+ default :
896
+ ShouldNotReachHere ();
897
+ }
916
898
917
- // Note that this only sets the JavaThread _priority field, which by
918
- // definition is limited to Java priorities and not OS priorities.
919
- // The os-priority is set in the CompilerThread startup code itself
899
+ // At this point the new CompilerThread data-races with this startup
900
+ // thread (which is the main thread and NOT the VM thread).
901
+ // This means Java bytecodes being executed at startup can
902
+ // queue compile jobs which will run at whatever default priority the
903
+ // newly created CompilerThread runs at.
920
904
921
- java_lang_Thread::set_priority (JNIHandles::resolve_non_null (thread_handle), NearMaxPriority);
922
905
923
- // Note that we cannot call os::set_priority because it expects Java
924
- // priorities and we are *explicitly* using OS priorities so that it's
925
- // possible to set the compiler thread priority higher than any Java
926
- // thread.
906
+ // At this point it may be possible that no osthread was created for the
907
+ // JavaThread due to lack of resources. We will handle that failure below.
908
+ // Also check new_thread so that static analysis is happy.
909
+ if (new_thread != NULL && new_thread->osthread () != NULL ) {
910
+ Handle thread_oop (THREAD, JNIHandles::resolve_non_null (thread_handle));
927
911
928
- int native_prio = CompilerThreadPriority;
929
- if (native_prio == -1 ) {
930
- if (UseCriticalCompilerThreadPriority) {
931
- native_prio = os::java_to_os_priority[CriticalPriority];
932
- } else {
933
- native_prio = os::java_to_os_priority[NearMaxPriority];
934
- }
935
- }
936
- os::set_native_priority (new_thread, native_prio);
912
+ if (type == compiler_t ) {
913
+ CompilerThread::cast (new_thread)->set_compiler (comp);
914
+ }
937
915
938
- java_lang_Thread::set_daemon (JNIHandles::resolve_non_null (thread_handle));
916
+ // Note that we cannot call os::set_priority because it expects Java
917
+ // priorities and we are *explicitly* using OS priorities so that it's
918
+ // possible to set the compiler thread priority higher than any Java
919
+ // thread.
939
920
940
- new_thread->set_threadObj (JNIHandles::resolve_non_null (thread_handle));
941
- if (type == compiler_t ) {
942
- CompilerThread::cast (new_thread)->set_compiler (comp);
921
+ int native_prio = CompilerThreadPriority;
922
+ if (native_prio == -1 ) {
923
+ if (UseCriticalCompilerThreadPriority) {
924
+ native_prio = os::java_to_os_priority[CriticalPriority];
925
+ } else {
926
+ native_prio = os::java_to_os_priority[NearMaxPriority];
943
927
}
944
- Threads::add (new_thread);
945
- Thread::start (new_thread);
946
928
}
947
- }
929
+ os::set_native_priority (new_thread, native_prio);
948
930
949
- // First release lock before aborting VM.
950
- if (new_thread == NULL || new_thread->osthread () == NULL ) {
951
- if (UseDynamicNumberOfCompilerThreads && type == compiler_t && comp->num_compiler_threads () > 0 ) {
952
- if (new_thread != NULL ) {
953
- new_thread->smr_delete ();
954
- }
931
+ // Note that this only sets the JavaThread _priority field, which by
932
+ // definition is limited to Java priorities and not OS priorities.
933
+ JavaThread::start_internal_daemon (THREAD, new_thread, thread_oop, NearMaxPriority);
934
+
935
+ } else { // osthread initialization failure
936
+ if (UseDynamicNumberOfCompilerThreads && type == compiler_t
937
+ && comp->num_compiler_threads () > 0 ) {
938
+ // The new thread is not known to Thread-SMR yet so we can just delete.
939
+ delete new_thread;
955
940
return NULL ;
941
+ } else {
942
+ vm_exit_during_initialization (" java.lang.OutOfMemoryError" ,
943
+ os::native_thread_creation_failed_msg ());
956
944
}
957
- vm_exit_during_initialization (" java.lang.OutOfMemoryError" ,
958
- os::native_thread_creation_failed_msg ());
959
945
}
960
946
961
- // Let go of Threads_lock before yielding
962
947
os::naked_yield (); // make sure that the compiler thread is started early (especially helpful on SOLARIS)
963
948
964
949
return new_thread;
0 commit comments