datadog-ruby_core_source 3.5.4 → 3.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/datadog-ruby_core_source.gemspec +1 -1
- data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/ccan/build_assert/build_assert.h +40 -0
- data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/ccan/check_type/check_type.h +63 -0
- data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/ccan/container_of/container_of.h +142 -0
- data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/ccan/list/list.h +788 -0
- data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/ccan/str/str.h +16 -0
- data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/id.h +252 -0
- data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/internal.h +2465 -0
- data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/iseq.h +304 -0
- data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/method.h +229 -0
- data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/node.h +449 -0
- data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/ruby_assert.h +60 -0
- data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/ruby_atomic.h +244 -0
- data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/thread_pthread.h +75 -0
- data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/thread_win32.h +36 -0
- data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/vm_core.h +1902 -0
- data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/vm_opts.h +70 -0
- data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/ccan/build_assert/build_assert.h +40 -0
- data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/ccan/check_type/check_type.h +63 -0
- data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/ccan/container_of/container_of.h +142 -0
- data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/ccan/list/list.h +788 -0
- data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/ccan/str/str.h +16 -0
- data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/id.h +290 -0
- data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/internal.h +2697 -0
- data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/iseq.h +312 -0
- data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/method.h +229 -0
- data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/node.h +476 -0
- data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/ruby_assert.h +15 -0
- data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/ruby_atomic.h +244 -0
- data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/thread_pthread.h +75 -0
- data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/thread_win32.h +36 -0
- data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/vm_core.h +1968 -0
- data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/vm_opts.h +72 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/ccan/build_assert/build_assert.h +40 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/ccan/check_type/check_type.h +63 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/ccan/container_of/container_of.h +142 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/ccan/list/list.h +788 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/ccan/str/str.h +16 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/id.h +290 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/id_table.h +36 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/internal/array.h +119 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/internal/class.h +174 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/internal/compilers.h +108 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/internal/gc.h +161 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/internal/imemo.h +243 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/internal/serial.h +24 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/internal/static_assert.h +17 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/internal/vm.h +136 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/internal/warnings.h +17 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/internal.h +107 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/iseq.h +305 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/method.h +245 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/node.h +484 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/ractor_core.h +343 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/ruby_assert.h +15 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/ruby_atomic.h +23 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/thread_pthread.h +115 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/thread_win32.h +61 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/vm_core.h +2023 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/vm_debug.h +116 -0
- data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/vm_opts.h +73 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/ccan/build_assert/build_assert.h +40 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/ccan/check_type/check_type.h +63 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/ccan/container_of/container_of.h +142 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/ccan/list/list.h +788 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/ccan/str/str.h +16 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/darray.h +198 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/id.h +293 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/id_table.h +36 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/internal/array.h +113 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/internal/class.h +196 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/internal/compilers.h +107 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/internal/gc.h +186 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/internal/imemo.h +243 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/internal/serial.h +23 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/internal/static_assert.h +16 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/internal/vm.h +133 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/internal/warnings.h +16 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/internal.h +109 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/iseq.h +322 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/method.h +253 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/node.h +510 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/ractor_core.h +346 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/ruby_assert.h +14 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/ruby_atomic.h +23 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/thread_pthread.h +115 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/vm_core.h +2107 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/vm_debug.h +124 -0
- data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/vm_opts.h +73 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/ccan/build_assert/build_assert.h +40 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/ccan/check_type/check_type.h +63 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/ccan/container_of/container_of.h +142 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/ccan/list/list.h +789 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/ccan/str/str.h +17 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/id.h +299 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/id_table.h +39 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal/array.h +163 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal/basic_operators.h +64 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal/class.h +182 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal/compilers.h +107 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal/gc.h +192 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal/imemo.h +242 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal/serial.h +23 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal/static_assert.h +16 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal/vm.h +134 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal/warnings.h +16 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal.h +113 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/iseq.h +329 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/method.h +254 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/node.h +514 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/ractor_core.h +342 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/ruby_assert.h +14 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/ruby_atomic.h +23 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/shape.h +232 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/thread_none.h +20 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/thread_pthread.h +133 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/vm_core.h +2106 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/vm_debug.h +122 -0
- data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/vm_opts.h +73 -0
- data/lib/datadog/ruby_core_source/version.rb +1 -1
- metadata +122 -4
|
@@ -0,0 +1,343 @@
|
|
|
1
|
+
#include "ruby/ruby.h"
|
|
2
|
+
#include "ruby/ractor.h"
|
|
3
|
+
#include "vm_core.h"
|
|
4
|
+
#include "id_table.h"
|
|
5
|
+
#include "vm_debug.h"
|
|
6
|
+
|
|
7
|
+
#ifndef RACTOR_CHECK_MODE
|
|
8
|
+
#define RACTOR_CHECK_MODE (0 || VM_CHECK_MODE || RUBY_DEBUG)
|
|
9
|
+
#endif
|
|
10
|
+
|
|
11
|
+
enum rb_ractor_basket_type {
|
|
12
|
+
basket_type_none,
|
|
13
|
+
basket_type_ref,
|
|
14
|
+
basket_type_copy,
|
|
15
|
+
basket_type_move,
|
|
16
|
+
basket_type_will,
|
|
17
|
+
basket_type_deleted,
|
|
18
|
+
basket_type_reserved,
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
struct rb_ractor_basket {
|
|
22
|
+
bool exception;
|
|
23
|
+
enum rb_ractor_basket_type type;
|
|
24
|
+
VALUE v;
|
|
25
|
+
VALUE sender;
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
struct rb_ractor_queue {
|
|
29
|
+
struct rb_ractor_basket *baskets;
|
|
30
|
+
int start;
|
|
31
|
+
int cnt;
|
|
32
|
+
int size;
|
|
33
|
+
unsigned int serial;
|
|
34
|
+
unsigned int reserved_cnt;
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
struct rb_ractor_waiting_list {
|
|
38
|
+
int cnt;
|
|
39
|
+
int size;
|
|
40
|
+
rb_ractor_t **ractors;
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
struct rb_ractor_sync {
|
|
44
|
+
// ractor lock
|
|
45
|
+
rb_nativethread_lock_t lock;
|
|
46
|
+
#if RACTOR_CHECK_MODE > 0
|
|
47
|
+
VALUE locked_by;
|
|
48
|
+
#endif
|
|
49
|
+
rb_nativethread_cond_t cond;
|
|
50
|
+
|
|
51
|
+
// communication
|
|
52
|
+
struct rb_ractor_queue incoming_queue;
|
|
53
|
+
struct rb_ractor_waiting_list taking_ractors;
|
|
54
|
+
|
|
55
|
+
bool incoming_port_closed;
|
|
56
|
+
bool outgoing_port_closed;
|
|
57
|
+
|
|
58
|
+
struct ractor_wait {
|
|
59
|
+
enum ractor_wait_status {
|
|
60
|
+
wait_none = 0x00,
|
|
61
|
+
wait_receiving = 0x01,
|
|
62
|
+
wait_taking = 0x02,
|
|
63
|
+
wait_yielding = 0x04,
|
|
64
|
+
} status;
|
|
65
|
+
|
|
66
|
+
enum ractor_wakeup_status {
|
|
67
|
+
wakeup_none,
|
|
68
|
+
wakeup_by_send,
|
|
69
|
+
wakeup_by_yield,
|
|
70
|
+
wakeup_by_take,
|
|
71
|
+
wakeup_by_close,
|
|
72
|
+
wakeup_by_interrupt,
|
|
73
|
+
wakeup_by_retry,
|
|
74
|
+
} wakeup_status;
|
|
75
|
+
|
|
76
|
+
struct rb_ractor_basket yielded_basket;
|
|
77
|
+
struct rb_ractor_basket taken_basket;
|
|
78
|
+
} wait;
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
struct rb_ractor_struct {
|
|
82
|
+
struct rb_ractor_pub pub;
|
|
83
|
+
|
|
84
|
+
struct rb_ractor_sync sync;
|
|
85
|
+
VALUE receiving_mutex;
|
|
86
|
+
bool yield_atexit;
|
|
87
|
+
|
|
88
|
+
// vm wide barrier synchronization
|
|
89
|
+
rb_nativethread_cond_t barrier_wait_cond;
|
|
90
|
+
|
|
91
|
+
// thread management
|
|
92
|
+
struct {
|
|
93
|
+
struct list_head set;
|
|
94
|
+
unsigned int cnt;
|
|
95
|
+
unsigned int blocking_cnt;
|
|
96
|
+
unsigned int sleeper;
|
|
97
|
+
rb_global_vm_lock_t gvl;
|
|
98
|
+
rb_execution_context_t *running_ec;
|
|
99
|
+
rb_thread_t *main;
|
|
100
|
+
} threads;
|
|
101
|
+
VALUE thgroup_default;
|
|
102
|
+
|
|
103
|
+
VALUE name;
|
|
104
|
+
VALUE loc;
|
|
105
|
+
|
|
106
|
+
// created
|
|
107
|
+
// | ready to run
|
|
108
|
+
// ====================== inserted to vm->ractor
|
|
109
|
+
// v
|
|
110
|
+
// blocking <---+ all threads are blocking
|
|
111
|
+
// | |
|
|
112
|
+
// v |
|
|
113
|
+
// running -----+
|
|
114
|
+
// | all threads are terminated.
|
|
115
|
+
// ====================== removed from vm->ractor
|
|
116
|
+
// v
|
|
117
|
+
// terminated
|
|
118
|
+
//
|
|
119
|
+
// status is protected by VM lock (global state)
|
|
120
|
+
|
|
121
|
+
enum ractor_status {
|
|
122
|
+
ractor_created,
|
|
123
|
+
ractor_running,
|
|
124
|
+
ractor_blocking,
|
|
125
|
+
ractor_terminated,
|
|
126
|
+
} status_;
|
|
127
|
+
|
|
128
|
+
struct list_node vmlr_node;
|
|
129
|
+
|
|
130
|
+
// ractor local data
|
|
131
|
+
|
|
132
|
+
st_table *local_storage;
|
|
133
|
+
struct rb_id_table *idkey_local_storage;
|
|
134
|
+
|
|
135
|
+
VALUE r_stdin;
|
|
136
|
+
VALUE r_stdout;
|
|
137
|
+
VALUE r_stderr;
|
|
138
|
+
VALUE verbose;
|
|
139
|
+
VALUE debug;
|
|
140
|
+
|
|
141
|
+
struct {
|
|
142
|
+
struct RVALUE *freelist;
|
|
143
|
+
struct heap_page *using_page;
|
|
144
|
+
} newobj_cache;
|
|
145
|
+
|
|
146
|
+
// gc.c rb_objspace_reachable_objects_from
|
|
147
|
+
struct gc_mark_func_data_struct {
|
|
148
|
+
void *data;
|
|
149
|
+
void (*mark_func)(VALUE v, void *data);
|
|
150
|
+
} *mfd;
|
|
151
|
+
}; // rb_ractor_t is defined in vm_core.h
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
static inline VALUE
|
|
155
|
+
rb_ractor_self(const rb_ractor_t *r)
|
|
156
|
+
{
|
|
157
|
+
return r->pub.self;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
rb_ractor_t *rb_ractor_main_alloc(void);
|
|
161
|
+
void rb_ractor_main_setup(rb_vm_t *vm, rb_ractor_t *main_ractor, rb_thread_t *main_thread);
|
|
162
|
+
void rb_ractor_atexit(rb_execution_context_t *ec, VALUE result);
|
|
163
|
+
void rb_ractor_atexit_exception(rb_execution_context_t *ec);
|
|
164
|
+
void rb_ractor_teardown(rb_execution_context_t *ec);
|
|
165
|
+
void rb_ractor_receive_parameters(rb_execution_context_t *ec, rb_ractor_t *g, int len, VALUE *ptr);
|
|
166
|
+
void rb_ractor_send_parameters(rb_execution_context_t *ec, rb_ractor_t *g, VALUE args);
|
|
167
|
+
|
|
168
|
+
VALUE rb_thread_create_ractor(rb_ractor_t *g, VALUE args, VALUE proc); // defined in thread.c
|
|
169
|
+
|
|
170
|
+
rb_global_vm_lock_t *rb_ractor_gvl(rb_ractor_t *);
|
|
171
|
+
int rb_ractor_living_thread_num(const rb_ractor_t *);
|
|
172
|
+
VALUE rb_ractor_thread_list(rb_ractor_t *r);
|
|
173
|
+
|
|
174
|
+
void rb_ractor_living_threads_init(rb_ractor_t *r);
|
|
175
|
+
void rb_ractor_living_threads_insert(rb_ractor_t *r, rb_thread_t *th);
|
|
176
|
+
void rb_ractor_living_threads_remove(rb_ractor_t *r, rb_thread_t *th);
|
|
177
|
+
void rb_ractor_blocking_threads_inc(rb_ractor_t *r, const char *file, int line); // TODO: file, line only for RUBY_DEBUG_LOG
|
|
178
|
+
void rb_ractor_blocking_threads_dec(rb_ractor_t *r, const char *file, int line); // TODO: file, line only for RUBY_DEBUG_LOG
|
|
179
|
+
|
|
180
|
+
void rb_ractor_vm_barrier_interrupt_running_thread(rb_ractor_t *r);
|
|
181
|
+
void rb_ractor_terminate_interrupt_main_thread(rb_ractor_t *r);
|
|
182
|
+
void rb_ractor_terminate_all(void);
|
|
183
|
+
bool rb_ractor_main_p_(void);
|
|
184
|
+
void rb_ractor_finish_marking(void);
|
|
185
|
+
void rb_ractor_atfork(rb_vm_t *vm, rb_thread_t *th);
|
|
186
|
+
|
|
187
|
+
VALUE rb_ractor_ensure_shareable(VALUE obj, VALUE name);
|
|
188
|
+
|
|
189
|
+
RUBY_SYMBOL_EXPORT_BEGIN
|
|
190
|
+
bool rb_ractor_shareable_p_continue(VALUE obj);
|
|
191
|
+
|
|
192
|
+
// THIS FUNCTION SHOULD NOT CALL WHILE INCREMENTAL MARKING!!
|
|
193
|
+
// This function is for T_DATA::free_func
|
|
194
|
+
void rb_ractor_local_storage_delkey(rb_ractor_local_key_t key);
|
|
195
|
+
|
|
196
|
+
RUBY_SYMBOL_EXPORT_END
|
|
197
|
+
|
|
198
|
+
static inline bool
|
|
199
|
+
rb_ractor_main_p(void)
|
|
200
|
+
{
|
|
201
|
+
if (ruby_single_main_ractor) {
|
|
202
|
+
return true;
|
|
203
|
+
}
|
|
204
|
+
else {
|
|
205
|
+
return rb_ractor_main_p_();
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
static inline bool
|
|
210
|
+
rb_ractor_status_p(rb_ractor_t *r, enum ractor_status status)
|
|
211
|
+
{
|
|
212
|
+
return r->status_ == status;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
static inline void
|
|
216
|
+
rb_ractor_sleeper_threads_inc(rb_ractor_t *r)
|
|
217
|
+
{
|
|
218
|
+
r->threads.sleeper++;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
static inline void
|
|
222
|
+
rb_ractor_sleeper_threads_dec(rb_ractor_t *r)
|
|
223
|
+
{
|
|
224
|
+
r->threads.sleeper--;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
static inline void
|
|
228
|
+
rb_ractor_sleeper_threads_clear(rb_ractor_t *r)
|
|
229
|
+
{
|
|
230
|
+
r->threads.sleeper = 0;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
static inline int
|
|
234
|
+
rb_ractor_sleeper_thread_num(rb_ractor_t *r)
|
|
235
|
+
{
|
|
236
|
+
return r->threads.sleeper;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
static inline void
|
|
240
|
+
rb_ractor_thread_switch(rb_ractor_t *cr, rb_thread_t *th)
|
|
241
|
+
{
|
|
242
|
+
if (cr->threads.running_ec != th->ec) {
|
|
243
|
+
if (0) fprintf(stderr, "rb_ractor_thread_switch ec:%p->%p\n",
|
|
244
|
+
(void *)cr->threads.running_ec, (void *)th->ec);
|
|
245
|
+
}
|
|
246
|
+
else {
|
|
247
|
+
return;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
if (cr->threads.running_ec != th->ec) {
|
|
251
|
+
th->running_time_us = 0;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
cr->threads.running_ec = th->ec;
|
|
255
|
+
|
|
256
|
+
VM_ASSERT(cr == GET_RACTOR());
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
static inline void
|
|
260
|
+
rb_ractor_set_current_ec(rb_ractor_t *cr, rb_execution_context_t *ec)
|
|
261
|
+
{
|
|
262
|
+
#ifdef RB_THREAD_LOCAL_SPECIFIER
|
|
263
|
+
#if __APPLE__
|
|
264
|
+
rb_current_ec_set(ec);
|
|
265
|
+
#else
|
|
266
|
+
ruby_current_ec = ec;
|
|
267
|
+
#endif
|
|
268
|
+
#else
|
|
269
|
+
native_tls_set(ruby_current_ec_key, ec);
|
|
270
|
+
#endif
|
|
271
|
+
|
|
272
|
+
if (cr->threads.running_ec != ec) {
|
|
273
|
+
if (0) fprintf(stderr, "rb_ractor_set_current_ec ec:%p->%p\n",
|
|
274
|
+
(void *)cr->threads.running_ec, (void *)ec);
|
|
275
|
+
}
|
|
276
|
+
else {
|
|
277
|
+
VM_ASSERT(0); // should be different
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
cr->threads.running_ec = ec;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
void rb_vm_ractor_blocking_cnt_inc(rb_vm_t *vm, rb_ractor_t *cr, const char *file, int line);
|
|
284
|
+
void rb_vm_ractor_blocking_cnt_dec(rb_vm_t *vm, rb_ractor_t *cr, const char *file, int line);
|
|
285
|
+
|
|
286
|
+
static inline uint32_t
|
|
287
|
+
rb_ractor_id(const rb_ractor_t *r)
|
|
288
|
+
{
|
|
289
|
+
return r->pub.id;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
#if RACTOR_CHECK_MODE > 0
|
|
293
|
+
uint32_t rb_ractor_current_id(void);
|
|
294
|
+
|
|
295
|
+
static inline void
|
|
296
|
+
rb_ractor_setup_belonging_to(VALUE obj, uint32_t rid)
|
|
297
|
+
{
|
|
298
|
+
VALUE flags = RBASIC(obj)->flags & 0xffffffff; // 4B
|
|
299
|
+
RBASIC(obj)->flags = flags | ((VALUE)rid << 32);
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
static inline void
|
|
303
|
+
rb_ractor_setup_belonging(VALUE obj)
|
|
304
|
+
{
|
|
305
|
+
rb_ractor_setup_belonging_to(obj, rb_ractor_current_id());
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
static inline uint32_t
|
|
309
|
+
rb_ractor_belonging(VALUE obj)
|
|
310
|
+
{
|
|
311
|
+
if (SPECIAL_CONST_P(obj) || RB_OBJ_SHAREABLE_P(obj)) {
|
|
312
|
+
return 0;
|
|
313
|
+
}
|
|
314
|
+
else {
|
|
315
|
+
return RBASIC(obj)->flags >> 32;
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
static inline VALUE
|
|
320
|
+
rb_ractor_confirm_belonging(VALUE obj)
|
|
321
|
+
{
|
|
322
|
+
uint32_t id = rb_ractor_belonging(obj);
|
|
323
|
+
|
|
324
|
+
if (id == 0) {
|
|
325
|
+
if (UNLIKELY(!rb_ractor_shareable_p(obj))) {
|
|
326
|
+
rp(obj);
|
|
327
|
+
rb_bug("id == 0 but not shareable");
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
else if (UNLIKELY(id != rb_ractor_current_id())) {
|
|
331
|
+
if (rb_ractor_shareable_p(obj)) {
|
|
332
|
+
// ok
|
|
333
|
+
}
|
|
334
|
+
else {
|
|
335
|
+
rp(obj);
|
|
336
|
+
rb_bug("rb_ractor_confirm_belonging object-ractor id:%u, current-ractor id:%u", id, rb_ractor_current_id());
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
return obj;
|
|
340
|
+
}
|
|
341
|
+
#else
|
|
342
|
+
#define rb_ractor_confirm_belonging(obj) obj
|
|
343
|
+
#endif
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
#ifndef RUBY_TOPLEVEL_ASSERT_H /*-*-C-*-vi:se ft=c:*/
|
|
2
|
+
#define RUBY_TOPLEVEL_ASSERT_H
|
|
3
|
+
/**
|
|
4
|
+
* @file
|
|
5
|
+
* @author Ruby developers <ruby-core@ruby-lang.org>
|
|
6
|
+
* @copyright This file is a part of the programming language Ruby.
|
|
7
|
+
* Permission is hereby granted, to either redistribute and/or
|
|
8
|
+
* modify this file, provided that the conditions mentioned in the
|
|
9
|
+
* file COPYING are met. Consult the file for details.
|
|
10
|
+
*/
|
|
11
|
+
#include "ruby/assert.h"
|
|
12
|
+
#undef assert
|
|
13
|
+
#define assert RUBY_ASSERT_NDEBUG
|
|
14
|
+
|
|
15
|
+
#endif /* RUBY_TOPLEVEL_ASSERT_H */
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
#include "ruby/atomic.h"
|
|
2
|
+
|
|
3
|
+
/* shim macros only */
|
|
4
|
+
#define ATOMIC_ADD(var, val) RUBY_ATOMIC_ADD(var, val)
|
|
5
|
+
#define ATOMIC_CAS(var, oldval, newval) RUBY_ATOMIC_CAS(var, oldval, newval)
|
|
6
|
+
#define ATOMIC_DEC(var) RUBY_ATOMIC_DEC(var)
|
|
7
|
+
#define ATOMIC_EXCHANGE(var, val) RUBY_ATOMIC_EXCHANGE(var, val)
|
|
8
|
+
#define ATOMIC_FETCH_ADD(var, val) RUBY_ATOMIC_FETCH_ADD(var, val)
|
|
9
|
+
#define ATOMIC_FETCH_SUB(var, val) RUBY_ATOMIC_FETCH_SUB(var, val)
|
|
10
|
+
#define ATOMIC_INC(var) RUBY_ATOMIC_INC(var)
|
|
11
|
+
#define ATOMIC_OR(var, val) RUBY_ATOMIC_OR(var, val)
|
|
12
|
+
#define ATOMIC_PTR_CAS(var, oldval, newval) RUBY_ATOMIC_PTR_CAS(var, oldval, newval)
|
|
13
|
+
#define ATOMIC_PTR_EXCHANGE(var, val) RUBY_ATOMIC_PTR_EXCHANGE(var, val)
|
|
14
|
+
#define ATOMIC_SET(var, val) RUBY_ATOMIC_SET(var, val)
|
|
15
|
+
#define ATOMIC_SIZE_ADD(var, val) RUBY_ATOMIC_SIZE_ADD(var, val)
|
|
16
|
+
#define ATOMIC_SIZE_CAS(var, oldval, newval) RUBY_ATOMIC_SIZE_CAS(var, oldval, newval)
|
|
17
|
+
#define ATOMIC_SIZE_DEC(var) RUBY_ATOMIC_SIZE_DEC(var)
|
|
18
|
+
#define ATOMIC_SIZE_EXCHANGE(var, val) RUBY_ATOMIC_SIZE_EXCHANGE(var, val)
|
|
19
|
+
#define ATOMIC_SIZE_INC(var) RUBY_ATOMIC_SIZE_INC(var)
|
|
20
|
+
#define ATOMIC_SIZE_SUB(var, val) RUBY_ATOMIC_SIZE_SUB(var, val)
|
|
21
|
+
#define ATOMIC_SUB(var, val) RUBY_ATOMIC_SUB(var, val)
|
|
22
|
+
#define ATOMIC_VALUE_CAS(var, oldval, val) RUBY_ATOMIC_VALUE_CAS(var, oldval, val)
|
|
23
|
+
#define ATOMIC_VALUE_EXCHANGE(var, val) RUBY_ATOMIC_VALUE_EXCHANGE(var, val)
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
#ifndef RUBY_THREAD_PTHREAD_H
|
|
2
|
+
#define RUBY_THREAD_PTHREAD_H
|
|
3
|
+
/**********************************************************************
|
|
4
|
+
|
|
5
|
+
thread_pthread.h -
|
|
6
|
+
|
|
7
|
+
$Author$
|
|
8
|
+
|
|
9
|
+
Copyright (C) 2004-2007 Koichi Sasada
|
|
10
|
+
|
|
11
|
+
**********************************************************************/
|
|
12
|
+
|
|
13
|
+
#ifdef HAVE_PTHREAD_NP_H
|
|
14
|
+
#include <pthread_np.h>
|
|
15
|
+
#endif
|
|
16
|
+
|
|
17
|
+
#define RB_NATIVETHREAD_LOCK_INIT PTHREAD_MUTEX_INITIALIZER
|
|
18
|
+
#define RB_NATIVETHREAD_COND_INIT PTHREAD_COND_INITIALIZER
|
|
19
|
+
|
|
20
|
+
typedef struct native_thread_data_struct {
|
|
21
|
+
union {
|
|
22
|
+
struct list_node ubf;
|
|
23
|
+
struct list_node gvl;
|
|
24
|
+
} node;
|
|
25
|
+
#if defined(__GLIBC__) || defined(__FreeBSD__)
|
|
26
|
+
union
|
|
27
|
+
#else
|
|
28
|
+
/*
|
|
29
|
+
* assume the platform condvars are badly implemented and have a
|
|
30
|
+
* "memory" of which mutex they're associated with
|
|
31
|
+
*/
|
|
32
|
+
struct
|
|
33
|
+
#endif
|
|
34
|
+
{
|
|
35
|
+
rb_nativethread_cond_t intr; /* th->interrupt_lock */
|
|
36
|
+
rb_nativethread_cond_t gvlq; /* vm->gvl.lock */
|
|
37
|
+
} cond;
|
|
38
|
+
} native_thread_data_t;
|
|
39
|
+
|
|
40
|
+
#undef except
|
|
41
|
+
#undef try
|
|
42
|
+
#undef leave
|
|
43
|
+
#undef finally
|
|
44
|
+
|
|
45
|
+
typedef struct rb_global_vm_lock_struct {
|
|
46
|
+
/* fast path */
|
|
47
|
+
const struct rb_thread_struct *owner;
|
|
48
|
+
rb_nativethread_lock_t lock; /* AKA vm->gvl.lock */
|
|
49
|
+
|
|
50
|
+
/*
|
|
51
|
+
* slow path, protected by vm->gvl.lock
|
|
52
|
+
* - @waitq - FIFO queue of threads waiting for GVL
|
|
53
|
+
* - @timer - it handles timeslices for @owner. It is any one thread
|
|
54
|
+
* in @waitq, there is no @timer if @waitq is empty, but always
|
|
55
|
+
* a @timer if @waitq has entries
|
|
56
|
+
* - @timer_err tracks timeslice limit, the timeslice only resets
|
|
57
|
+
* when pthread_cond_timedwait returns ETIMEDOUT, so frequent
|
|
58
|
+
* switching between contended/uncontended GVL won't reset the
|
|
59
|
+
* timer.
|
|
60
|
+
*/
|
|
61
|
+
struct list_head waitq; /* <=> native_thread_data_t.node.ubf */
|
|
62
|
+
const struct rb_thread_struct *timer;
|
|
63
|
+
int timer_err;
|
|
64
|
+
|
|
65
|
+
/* yield */
|
|
66
|
+
rb_nativethread_cond_t switch_cond;
|
|
67
|
+
rb_nativethread_cond_t switch_wait_cond;
|
|
68
|
+
int need_yield;
|
|
69
|
+
int wait_yield;
|
|
70
|
+
} rb_global_vm_lock_t;
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
#if __STDC_VERSION__ >= 201112
|
|
74
|
+
#define RB_THREAD_LOCAL_SPECIFIER _Thread_local
|
|
75
|
+
#elif defined(__GNUC__)
|
|
76
|
+
/* note that ICC (linux) and Clang are covered by __GNUC__ */
|
|
77
|
+
#define RB_THREAD_LOCAL_SPECIFIER __thread
|
|
78
|
+
#else
|
|
79
|
+
|
|
80
|
+
typedef pthread_key_t native_tls_key_t;
|
|
81
|
+
|
|
82
|
+
static inline void *
|
|
83
|
+
native_tls_get(native_tls_key_t key)
|
|
84
|
+
{
|
|
85
|
+
void *ptr = pthread_getspecific(key);
|
|
86
|
+
if (UNLIKELY(ptr == NULL)) {
|
|
87
|
+
rb_bug("pthread_getspecific returns NULL");
|
|
88
|
+
}
|
|
89
|
+
return ptr;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
static inline void
|
|
93
|
+
native_tls_set(native_tls_key_t key, void *ptr)
|
|
94
|
+
{
|
|
95
|
+
if (UNLIKELY(pthread_setspecific(key, ptr) != 0)) {
|
|
96
|
+
rb_bug("pthread_setspecific error");
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
#endif
|
|
100
|
+
|
|
101
|
+
RUBY_SYMBOL_EXPORT_BEGIN
|
|
102
|
+
#ifdef RB_THREAD_LOCAL_SPECIFIER
|
|
103
|
+
#if __APPLE__
|
|
104
|
+
// on Darwin, TLS can not be accessed across .so
|
|
105
|
+
struct rb_execution_context_struct *rb_current_ec();
|
|
106
|
+
void rb_current_ec_set(struct rb_execution_context_struct *);
|
|
107
|
+
#else
|
|
108
|
+
RUBY_EXTERN RB_THREAD_LOCAL_SPECIFIER struct rb_execution_context_struct *ruby_current_ec;
|
|
109
|
+
#endif
|
|
110
|
+
#else
|
|
111
|
+
RUBY_EXTERN native_tls_key_t ruby_current_ec_key;
|
|
112
|
+
#endif
|
|
113
|
+
RUBY_SYMBOL_EXPORT_END
|
|
114
|
+
|
|
115
|
+
#endif /* RUBY_THREAD_PTHREAD_H */
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
#ifndef RUBY_THREAD_WIN32_H
|
|
2
|
+
#define RUBY_THREAD_WIN32_H
|
|
3
|
+
/**********************************************************************
|
|
4
|
+
|
|
5
|
+
thread_win32.h -
|
|
6
|
+
|
|
7
|
+
$Author$
|
|
8
|
+
|
|
9
|
+
Copyright (C) 2004-2007 Koichi Sasada
|
|
10
|
+
|
|
11
|
+
**********************************************************************/
|
|
12
|
+
|
|
13
|
+
/* interface */
|
|
14
|
+
|
|
15
|
+
# ifdef __CYGWIN__
|
|
16
|
+
# undef _WIN32
|
|
17
|
+
# endif
|
|
18
|
+
|
|
19
|
+
#define USE_VM_CLOCK 1
|
|
20
|
+
|
|
21
|
+
WINBASEAPI BOOL WINAPI
|
|
22
|
+
TryEnterCriticalSection(IN OUT LPCRITICAL_SECTION lpCriticalSection);
|
|
23
|
+
|
|
24
|
+
typedef struct rb_thread_cond_struct {
|
|
25
|
+
struct cond_event_entry *next;
|
|
26
|
+
struct cond_event_entry *prev;
|
|
27
|
+
} rb_nativethread_cond_t;
|
|
28
|
+
|
|
29
|
+
typedef struct native_thread_data_struct {
|
|
30
|
+
HANDLE interrupt_event;
|
|
31
|
+
} native_thread_data_t;
|
|
32
|
+
|
|
33
|
+
typedef struct rb_global_vm_lock_struct {
|
|
34
|
+
HANDLE lock;
|
|
35
|
+
} rb_global_vm_lock_t;
|
|
36
|
+
|
|
37
|
+
typedef DWORD native_tls_key_t; // TLS index
|
|
38
|
+
|
|
39
|
+
static inline void *
|
|
40
|
+
native_tls_get(native_tls_key_t key)
|
|
41
|
+
{
|
|
42
|
+
void *ptr = TlsGetValue(key);
|
|
43
|
+
if (UNLIKELY(ptr == NULL)) {
|
|
44
|
+
rb_bug("TlsGetValue() returns NULL");
|
|
45
|
+
}
|
|
46
|
+
return ptr;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
static inline void
|
|
50
|
+
native_tls_set(native_tls_key_t key, void *ptr)
|
|
51
|
+
{
|
|
52
|
+
if (UNLIKELY(TlsSetValue(key, ptr) == 0)) {
|
|
53
|
+
rb_bug("TlsSetValue() error");
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
RUBY_SYMBOL_EXPORT_BEGIN
|
|
58
|
+
RUBY_EXTERN native_tls_key_t ruby_current_ec_key;
|
|
59
|
+
RUBY_SYMBOL_EXPORT_END
|
|
60
|
+
|
|
61
|
+
#endif /* RUBY_THREAD_WIN32_H */
|