aboutsummaryrefslogtreecommitdiffstats
path: root/thread_pthread.h
diff options
context:
space:
mode:
authorKoichi Sasada <ko1@atdot.net>2023-04-10 10:53:13 +0900
committerKoichi Sasada <ko1@atdot.net>2023-10-12 14:47:01 +0900
commitbe1bbd5b7d40ad863ab35097765d3754726bbd54 (patch)
tree2995a0859bea1d6b2903dcd324f41869dbef14a1 /thread_pthread.h
parent096ee0648e215915a3019c2cd68ba220d94eca12 (diff)
downloadruby-be1bbd5b7d40ad863ab35097765d3754726bbd54.tar.gz
M:N thread scheduler for Ractors
This patch introduce M:N thread scheduler for Ractor system. In general, M:N thread scheduler employs N native threads (OS threads) to manage M user-level threads (Ruby threads in this case). On the Ruby interpreter, 1 native thread is provided for 1 Ractor and all Ruby threads are managed by the native thread. From Ruby 1.9, the interpreter uses 1:1 thread scheduler which means 1 Ruby thread has 1 native thread. M:N scheduler change this strategy. Because of compatibility issue (and stableness issue of the implementation) main Ractor doesn't use M:N scheduler on default. On the other words, threads on the main Ractor will be managed with 1:1 thread scheduler. There are additional settings by environment variables: `RUBY_MN_THREADS=1` enables M:N thread scheduler on the main ractor. Note that non-main ractors use the M:N scheduler without this configuration. With this configuration, single ractor applications run threads on M:1 thread scheduler (green threads, user-level threads). `RUBY_MAX_CPU=n` specifies maximum number of native threads for M:N scheduler (default: 8). This patch will be reverted soon if non-easy issues are found. [Bug #19842]
Diffstat (limited to 'thread_pthread.h')
-rw-r--r--thread_pthread.h112
1 files changed, 76 insertions, 36 deletions
diff --git a/thread_pthread.h b/thread_pthread.h
index 10d3fcd928..9ccacbf660 100644
--- a/thread_pthread.h
+++ b/thread_pthread.h
@@ -19,14 +19,59 @@
// per-Thead scheduler helper data
struct rb_thread_sched_item {
- union {
+ struct {
struct ccan_list_node ubf;
- struct ccan_list_node readyq; // protected by sched->lock
+
+ // connected to ractor->threads.sched.reqdyq
+ // locked by ractor->threads.sched.lock
+ struct ccan_list_node readyq;
+
+ // connected to vm->ractor.sched.timeslice_threads
+ // locked by vm->ractor.sched.lock
+ struct ccan_list_node timeslice_threads;
+
+ // connected to vm->ractor.sched.running_threads
+ // locked by vm->ractor.sched.lock
+ struct ccan_list_node running_threads;
+
+ // connected to vm->ractor.sched.zombie_threads
+ struct ccan_list_node zombie_threads;
} node;
+
+ // this data should be protected by timer_th.waiting_lock
+ struct {
+ enum thread_sched_waiting_flag {
+ thread_sched_waiting_none = 0x00,
+ thread_sched_waiting_timeout = 0x01,
+ thread_sched_waiting_io_read = 0x02,
+ thread_sched_waiting_io_write = 0x08,
+ thread_sched_waiting_io_force = 0x40, // ignore readable
+ } flags;
+
+ struct {
+ // should be compat with hrtime.h
+#ifdef MY_RUBY_BUILD_MAY_TIME_TRAVEL
+ int128_t timeout;
+#else
+ uint64_t timeout;
+#endif
+ int fd; // -1 for timeout only
+ int result;
+ } data;
+
+ // connected to timer_th.waiting
+ struct ccan_list_node node;
+ } waiting_reason;
+
+ bool finished;
+ bool malloc_stack;
+ void *context_stack;
+ struct coroutine_context *context;
};
struct rb_native_thread {
rb_atomic_t serial;
+ struct rb_vm_struct *vm;
rb_nativethread_id_t thread_id;
@@ -54,6 +99,11 @@ struct rb_native_thread {
#ifdef USE_SIGALTSTACK
void *altstack;
#endif
+
+ struct coroutine_context *nt_context;
+ int dedicated;
+
+ size_t machine_stack_maxsize;
};
#undef except
@@ -63,45 +113,35 @@ struct rb_native_thread {
// per-Ractor
struct rb_thread_sched {
- /* fast path */
-
- const struct rb_thread_struct *running; // running thread or NULL
- rb_nativethread_lock_t lock;
+ rb_nativethread_lock_t lock_;
+#if VM_CHECK_MODE
+ struct rb_thread_struct *lock_owner;
+#endif
+ struct rb_thread_struct *running; // running thread or NULL
+ bool is_running;
+ bool is_running_timeslice;
+ bool enable_mn_threads;
- /*
- * slow path, protected by ractor->thread_sched->lock
- * - @readyq - FIFO queue of threads waiting for running
- * - @timer - it handles timeslices for @current. It is any one thread
- * in @waitq, there is no @timer if @waitq is empty, but always
- * a @timer if @waitq has entries
- * - @timer_err tracks timeslice limit, the timeslice only resets
- * when pthread_cond_timedwait returns ETIMEDOUT, so frequent
- * switching between contended/uncontended GVL won't reset the
- * timer.
- */
struct ccan_list_head readyq;
- const struct rb_thread_struct *timer;
- int timer_err;
-
- /* yield */
- rb_nativethread_cond_t switch_cond;
- rb_nativethread_cond_t switch_wait_cond;
- int need_yield;
- int wait_yield;
+ int readyq_cnt;
+ // ractor scheduling
+ struct ccan_list_node grq_node;
};
#ifdef RB_THREAD_LOCAL_SPECIFIER
-# ifdef __APPLE__
-// on Darwin, TLS can not be accessed across .so
-struct rb_execution_context_struct *rb_current_ec(void);
-void rb_current_ec_set(struct rb_execution_context_struct *);
-# else
-RUBY_EXTERN RB_THREAD_LOCAL_SPECIFIER struct rb_execution_context_struct *ruby_current_ec;
-
-// for RUBY_DEBUG_LOG()
-RUBY_EXTERN RB_THREAD_LOCAL_SPECIFIER rb_atomic_t ruby_nt_serial;
-#define RUBY_NT_SERIAL 1
-# endif
+ NOINLINE(void rb_current_ec_set(struct rb_execution_context_struct *));
+ NOINLINE(struct rb_execution_context_struct *rb_current_ec_noinline(void));
+
+ # ifdef __APPLE__
+ // on Darwin, TLS can not be accessed across .so
+ struct rb_execution_context_struct *rb_current_ec(void);
+ # else
+ RUBY_EXTERN RB_THREAD_LOCAL_SPECIFIER struct rb_execution_context_struct *ruby_current_ec;
+
+ // for RUBY_DEBUG_LOG()
+ RUBY_EXTERN RB_THREAD_LOCAL_SPECIFIER rb_atomic_t ruby_nt_serial;
+ #define RUBY_NT_SERIAL 1
+ # endif
#else
typedef pthread_key_t native_tls_key_t;