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.
Files changed (122) hide show
  1. checksums.yaml +4 -4
  2. data/datadog-ruby_core_source.gemspec +1 -1
  3. data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/ccan/build_assert/build_assert.h +40 -0
  4. data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/ccan/check_type/check_type.h +63 -0
  5. data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/ccan/container_of/container_of.h +142 -0
  6. data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/ccan/list/list.h +788 -0
  7. data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/ccan/str/str.h +16 -0
  8. data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/id.h +252 -0
  9. data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/internal.h +2465 -0
  10. data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/iseq.h +304 -0
  11. data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/method.h +229 -0
  12. data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/node.h +449 -0
  13. data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/ruby_assert.h +60 -0
  14. data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/ruby_atomic.h +244 -0
  15. data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/thread_pthread.h +75 -0
  16. data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/thread_win32.h +36 -0
  17. data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/vm_core.h +1902 -0
  18. data/lib/datadog/ruby_core_source/ruby-2.6.0-p0/vm_opts.h +70 -0
  19. data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/ccan/build_assert/build_assert.h +40 -0
  20. data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/ccan/check_type/check_type.h +63 -0
  21. data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/ccan/container_of/container_of.h +142 -0
  22. data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/ccan/list/list.h +788 -0
  23. data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/ccan/str/str.h +16 -0
  24. data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/id.h +290 -0
  25. data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/internal.h +2697 -0
  26. data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/iseq.h +312 -0
  27. data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/method.h +229 -0
  28. data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/node.h +476 -0
  29. data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/ruby_assert.h +15 -0
  30. data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/ruby_atomic.h +244 -0
  31. data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/thread_pthread.h +75 -0
  32. data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/thread_win32.h +36 -0
  33. data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/vm_core.h +1968 -0
  34. data/lib/datadog/ruby_core_source/ruby-2.7.0-p0/vm_opts.h +72 -0
  35. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/ccan/build_assert/build_assert.h +40 -0
  36. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/ccan/check_type/check_type.h +63 -0
  37. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/ccan/container_of/container_of.h +142 -0
  38. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/ccan/list/list.h +788 -0
  39. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/ccan/str/str.h +16 -0
  40. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/id.h +290 -0
  41. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/id_table.h +36 -0
  42. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/internal/array.h +119 -0
  43. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/internal/class.h +174 -0
  44. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/internal/compilers.h +108 -0
  45. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/internal/gc.h +161 -0
  46. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/internal/imemo.h +243 -0
  47. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/internal/serial.h +24 -0
  48. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/internal/static_assert.h +17 -0
  49. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/internal/vm.h +136 -0
  50. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/internal/warnings.h +17 -0
  51. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/internal.h +107 -0
  52. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/iseq.h +305 -0
  53. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/method.h +245 -0
  54. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/node.h +484 -0
  55. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/ractor_core.h +343 -0
  56. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/ruby_assert.h +15 -0
  57. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/ruby_atomic.h +23 -0
  58. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/thread_pthread.h +115 -0
  59. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/thread_win32.h +61 -0
  60. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/vm_core.h +2023 -0
  61. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/vm_debug.h +116 -0
  62. data/lib/datadog/ruby_core_source/ruby-3.0.0-p0/vm_opts.h +73 -0
  63. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/ccan/build_assert/build_assert.h +40 -0
  64. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/ccan/check_type/check_type.h +63 -0
  65. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/ccan/container_of/container_of.h +142 -0
  66. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/ccan/list/list.h +788 -0
  67. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/ccan/str/str.h +16 -0
  68. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/darray.h +198 -0
  69. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/id.h +293 -0
  70. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/id_table.h +36 -0
  71. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/internal/array.h +113 -0
  72. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/internal/class.h +196 -0
  73. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/internal/compilers.h +107 -0
  74. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/internal/gc.h +186 -0
  75. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/internal/imemo.h +243 -0
  76. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/internal/serial.h +23 -0
  77. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/internal/static_assert.h +16 -0
  78. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/internal/vm.h +133 -0
  79. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/internal/warnings.h +16 -0
  80. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/internal.h +109 -0
  81. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/iseq.h +322 -0
  82. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/method.h +253 -0
  83. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/node.h +510 -0
  84. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/ractor_core.h +346 -0
  85. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/ruby_assert.h +14 -0
  86. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/ruby_atomic.h +23 -0
  87. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/thread_pthread.h +115 -0
  88. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/vm_core.h +2107 -0
  89. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/vm_debug.h +124 -0
  90. data/lib/datadog/ruby_core_source/ruby-3.1.0-p0/vm_opts.h +73 -0
  91. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/ccan/build_assert/build_assert.h +40 -0
  92. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/ccan/check_type/check_type.h +63 -0
  93. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/ccan/container_of/container_of.h +142 -0
  94. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/ccan/list/list.h +789 -0
  95. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/ccan/str/str.h +17 -0
  96. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/id.h +299 -0
  97. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/id_table.h +39 -0
  98. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal/array.h +163 -0
  99. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal/basic_operators.h +64 -0
  100. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal/class.h +182 -0
  101. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal/compilers.h +107 -0
  102. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal/gc.h +192 -0
  103. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal/imemo.h +242 -0
  104. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal/serial.h +23 -0
  105. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal/static_assert.h +16 -0
  106. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal/vm.h +134 -0
  107. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal/warnings.h +16 -0
  108. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/internal.h +113 -0
  109. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/iseq.h +329 -0
  110. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/method.h +254 -0
  111. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/node.h +514 -0
  112. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/ractor_core.h +342 -0
  113. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/ruby_assert.h +14 -0
  114. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/ruby_atomic.h +23 -0
  115. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/shape.h +232 -0
  116. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/thread_none.h +20 -0
  117. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/thread_pthread.h +133 -0
  118. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/vm_core.h +2106 -0
  119. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/vm_debug.h +122 -0
  120. data/lib/datadog/ruby_core_source/ruby-3.2.0-p0/vm_opts.h +73 -0
  121. data/lib/datadog/ruby_core_source/version.rb +1 -1
  122. metadata +122 -4
@@ -0,0 +1,346 @@
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
+ wait_moving = 0x08,
65
+ } status;
66
+
67
+ enum ractor_wakeup_status {
68
+ wakeup_none,
69
+ wakeup_by_send,
70
+ wakeup_by_yield,
71
+ wakeup_by_take,
72
+ wakeup_by_close,
73
+ wakeup_by_interrupt,
74
+ wakeup_by_retry,
75
+ } wakeup_status;
76
+
77
+ struct rb_ractor_basket yielded_basket;
78
+ struct rb_ractor_basket taken_basket;
79
+ } wait;
80
+ };
81
+
82
+ struct rb_ractor_struct {
83
+ struct rb_ractor_pub pub;
84
+
85
+ struct rb_ractor_sync sync;
86
+ VALUE receiving_mutex;
87
+ bool yield_atexit;
88
+
89
+ // vm wide barrier synchronization
90
+ rb_nativethread_cond_t barrier_wait_cond;
91
+
92
+ // thread management
93
+ struct {
94
+ struct list_head set;
95
+ unsigned int cnt;
96
+ unsigned int blocking_cnt;
97
+ unsigned int sleeper;
98
+ rb_global_vm_lock_t gvl;
99
+ rb_execution_context_t *running_ec;
100
+ rb_thread_t *main;
101
+ } threads;
102
+ VALUE thgroup_default;
103
+
104
+ VALUE name;
105
+ VALUE loc;
106
+
107
+ // created
108
+ // | ready to run
109
+ // ====================== inserted to vm->ractor
110
+ // v
111
+ // blocking <---+ all threads are blocking
112
+ // | |
113
+ // v |
114
+ // running -----+
115
+ // | all threads are terminated.
116
+ // ====================== removed from vm->ractor
117
+ // v
118
+ // terminated
119
+ //
120
+ // status is protected by VM lock (global state)
121
+
122
+ enum ractor_status {
123
+ ractor_created,
124
+ ractor_running,
125
+ ractor_blocking,
126
+ ractor_terminated,
127
+ } status_;
128
+
129
+ struct list_node vmlr_node;
130
+
131
+ // ractor local data
132
+
133
+ st_table *local_storage;
134
+ struct rb_id_table *idkey_local_storage;
135
+
136
+ VALUE r_stdin;
137
+ VALUE r_stdout;
138
+ VALUE r_stderr;
139
+ VALUE verbose;
140
+ VALUE debug;
141
+
142
+ rb_ractor_newobj_cache_t newobj_cache;
143
+
144
+ // gc.c rb_objspace_reachable_objects_from
145
+ struct gc_mark_func_data_struct {
146
+ void *data;
147
+ void (*mark_func)(VALUE v, void *data);
148
+ } *mfd;
149
+ }; // rb_ractor_t is defined in vm_core.h
150
+
151
+
152
+ static inline VALUE
153
+ rb_ractor_self(const rb_ractor_t *r)
154
+ {
155
+ return r->pub.self;
156
+ }
157
+
158
+ rb_ractor_t *rb_ractor_main_alloc(void);
159
+ void rb_ractor_main_setup(rb_vm_t *vm, rb_ractor_t *main_ractor, rb_thread_t *main_thread);
160
+ void rb_ractor_atexit(rb_execution_context_t *ec, VALUE result);
161
+ void rb_ractor_atexit_exception(rb_execution_context_t *ec);
162
+ void rb_ractor_teardown(rb_execution_context_t *ec);
163
+ void rb_ractor_receive_parameters(rb_execution_context_t *ec, rb_ractor_t *g, int len, VALUE *ptr);
164
+ void rb_ractor_send_parameters(rb_execution_context_t *ec, rb_ractor_t *g, VALUE args);
165
+
166
+ VALUE rb_thread_create_ractor(rb_ractor_t *g, VALUE args, VALUE proc); // defined in thread.c
167
+
168
+ rb_global_vm_lock_t *rb_ractor_gvl(rb_ractor_t *);
169
+ int rb_ractor_living_thread_num(const rb_ractor_t *);
170
+ VALUE rb_ractor_thread_list(rb_ractor_t *r);
171
+ bool rb_ractor_p(VALUE rv);
172
+
173
+ void rb_ractor_living_threads_init(rb_ractor_t *r);
174
+ void rb_ractor_living_threads_insert(rb_ractor_t *r, rb_thread_t *th);
175
+ void rb_ractor_living_threads_remove(rb_ractor_t *r, rb_thread_t *th);
176
+ void rb_ractor_blocking_threads_inc(rb_ractor_t *r, const char *file, int line); // TODO: file, line only for RUBY_DEBUG_LOG
177
+ void rb_ractor_blocking_threads_dec(rb_ractor_t *r, const char *file, int line); // TODO: file, line only for RUBY_DEBUG_LOG
178
+
179
+ void rb_ractor_vm_barrier_interrupt_running_thread(rb_ractor_t *r);
180
+ void rb_ractor_terminate_interrupt_main_thread(rb_ractor_t *r);
181
+ void rb_ractor_terminate_all(void);
182
+ bool rb_ractor_main_p_(void);
183
+ void rb_ractor_finish_marking(void);
184
+ void rb_ractor_atfork(rb_vm_t *vm, rb_thread_t *th);
185
+
186
+ VALUE rb_ractor_ensure_shareable(VALUE obj, VALUE name);
187
+
188
+ RUBY_SYMBOL_EXPORT_BEGIN
189
+ bool rb_ractor_shareable_p_continue(VALUE obj);
190
+
191
+ // THIS FUNCTION SHOULD NOT CALL WHILE INCREMENTAL MARKING!!
192
+ // This function is for T_DATA::free_func
193
+ void rb_ractor_local_storage_delkey(rb_ractor_local_key_t key);
194
+
195
+ RUBY_SYMBOL_EXPORT_END
196
+
197
+ static inline bool
198
+ rb_ractor_main_p(void)
199
+ {
200
+ if (ruby_single_main_ractor) {
201
+ return true;
202
+ }
203
+ else {
204
+ return rb_ractor_main_p_();
205
+ }
206
+ }
207
+
208
+ static inline bool
209
+ rb_ractor_status_p(rb_ractor_t *r, enum ractor_status status)
210
+ {
211
+ return r->status_ == status;
212
+ }
213
+
214
+ static inline void
215
+ rb_ractor_sleeper_threads_inc(rb_ractor_t *r)
216
+ {
217
+ r->threads.sleeper++;
218
+ }
219
+
220
+ static inline void
221
+ rb_ractor_sleeper_threads_dec(rb_ractor_t *r)
222
+ {
223
+ r->threads.sleeper--;
224
+ }
225
+
226
+ static inline void
227
+ rb_ractor_sleeper_threads_clear(rb_ractor_t *r)
228
+ {
229
+ r->threads.sleeper = 0;
230
+ }
231
+
232
+ static inline int
233
+ rb_ractor_sleeper_thread_num(rb_ractor_t *r)
234
+ {
235
+ return r->threads.sleeper;
236
+ }
237
+
238
+ static inline void
239
+ rb_ractor_thread_switch(rb_ractor_t *cr, rb_thread_t *th)
240
+ {
241
+ if (cr->threads.running_ec != th->ec) {
242
+ if (0) {
243
+ ruby_debug_printf("rb_ractor_thread_switch ec:%p->%p\n",
244
+ (void *)cr->threads.running_ec, (void *)th->ec);
245
+ }
246
+ }
247
+ else {
248
+ return;
249
+ }
250
+
251
+ if (cr->threads.running_ec != th->ec) {
252
+ th->running_time_us = 0;
253
+ }
254
+
255
+ cr->threads.running_ec = th->ec;
256
+
257
+ VM_ASSERT(cr == GET_RACTOR());
258
+ }
259
+
260
+ static inline void
261
+ rb_ractor_set_current_ec(rb_ractor_t *cr, rb_execution_context_t *ec)
262
+ {
263
+ #ifdef RB_THREAD_LOCAL_SPECIFIER
264
+ #ifdef __APPLE__
265
+ rb_current_ec_set(ec);
266
+ #else
267
+ ruby_current_ec = ec;
268
+ #endif
269
+ #else
270
+ native_tls_set(ruby_current_ec_key, ec);
271
+ #endif
272
+
273
+ if (cr->threads.running_ec != ec) {
274
+ if (0) {
275
+ ruby_debug_printf("rb_ractor_set_current_ec ec:%p->%p\n",
276
+ (void *)cr->threads.running_ec, (void *)ec);
277
+ }
278
+ }
279
+ else {
280
+ VM_ASSERT(0); // should be different
281
+ }
282
+
283
+ cr->threads.running_ec = ec;
284
+ }
285
+
286
+ void rb_vm_ractor_blocking_cnt_inc(rb_vm_t *vm, rb_ractor_t *cr, const char *file, int line);
287
+ void rb_vm_ractor_blocking_cnt_dec(rb_vm_t *vm, rb_ractor_t *cr, const char *file, int line);
288
+
289
+ static inline uint32_t
290
+ rb_ractor_id(const rb_ractor_t *r)
291
+ {
292
+ return r->pub.id;
293
+ }
294
+
295
+ #if RACTOR_CHECK_MODE > 0
296
+ uint32_t rb_ractor_current_id(void);
297
+
298
+ static inline void
299
+ rb_ractor_setup_belonging_to(VALUE obj, uint32_t rid)
300
+ {
301
+ VALUE flags = RBASIC(obj)->flags & 0xffffffff; // 4B
302
+ RBASIC(obj)->flags = flags | ((VALUE)rid << 32);
303
+ }
304
+
305
+ static inline void
306
+ rb_ractor_setup_belonging(VALUE obj)
307
+ {
308
+ rb_ractor_setup_belonging_to(obj, rb_ractor_current_id());
309
+ }
310
+
311
+ static inline uint32_t
312
+ rb_ractor_belonging(VALUE obj)
313
+ {
314
+ if (SPECIAL_CONST_P(obj) || RB_OBJ_SHAREABLE_P(obj)) {
315
+ return 0;
316
+ }
317
+ else {
318
+ return RBASIC(obj)->flags >> 32;
319
+ }
320
+ }
321
+
322
+ static inline VALUE
323
+ rb_ractor_confirm_belonging(VALUE obj)
324
+ {
325
+ uint32_t id = rb_ractor_belonging(obj);
326
+
327
+ if (id == 0) {
328
+ if (UNLIKELY(!rb_ractor_shareable_p(obj))) {
329
+ rp(obj);
330
+ rb_bug("id == 0 but not shareable");
331
+ }
332
+ }
333
+ else if (UNLIKELY(id != rb_ractor_current_id())) {
334
+ if (rb_ractor_shareable_p(obj)) {
335
+ // ok
336
+ }
337
+ else {
338
+ rp(obj);
339
+ rb_bug("rb_ractor_confirm_belonging object-ractor id:%u, current-ractor id:%u", id, rb_ractor_current_id());
340
+ }
341
+ }
342
+ return obj;
343
+ }
344
+ #else
345
+ #define rb_ractor_confirm_belonging(obj) obj
346
+ #endif
@@ -0,0 +1,14 @@
1
+ #ifndef RUBY_TOPLEVEL_ASSERT_H /*-*-C-*-vi:se ft=c:*/
2
+ #define RUBY_TOPLEVEL_ASSERT_H
3
+ /**
4
+ * @author Ruby developers <ruby-core@ruby-lang.org>
5
+ * @copyright This file is a part of the programming language Ruby.
6
+ * Permission is hereby granted, to either redistribute and/or
7
+ * modify this file, provided that the conditions mentioned in the
8
+ * file COPYING are met. Consult the file for details.
9
+ */
10
+ #include "ruby/assert.h"
11
+ #undef assert
12
+ #define assert RUBY_ASSERT_NDEBUG
13
+
14
+ #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
+ #ifdef __APPLE__
104
+ // on Darwin, TLS can not be accessed across .so
105
+ struct rb_execution_context_struct *rb_current_ec(void);
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 */