5#include "debug_counter.h"
8#define LOCATION_ARGS const char *file, int line
9#define LOCATION_PARAMS file, line
10#define APPEND_LOCATION_ARGS , const char *file, int line
11#define APPEND_LOCATION_PARAMS , file, line
13#define LOCATION_ARGS void
14#define LOCATION_PARAMS
15#define APPEND_LOCATION_ARGS
16#define APPEND_LOCATION_PARAMS
19bool rb_vm_locked_p(
void);
20void rb_vm_lock_body(LOCATION_ARGS);
21void rb_vm_unlock_body(LOCATION_ARGS);
24NOINLINE(
void rb_vm_lock_enter_body_cr(
struct rb_ractor_struct *cr,
unsigned int *lev APPEND_LOCATION_ARGS));
25NOINLINE(
void rb_vm_lock_enter_body_nb(
unsigned int *lev APPEND_LOCATION_ARGS));
26NOINLINE(
void rb_vm_lock_enter_body(
unsigned int *lev APPEND_LOCATION_ARGS));
27void rb_vm_lock_leave_body_nb(
unsigned int *lev APPEND_LOCATION_ARGS);
28void rb_vm_lock_leave_body(
unsigned int *lev APPEND_LOCATION_ARGS);
29void rb_vm_barrier(
void);
31RUBY_SYMBOL_EXPORT_BEGIN
32VALUE rb_vm_lock_with_barrier(
VALUE (*func)(
void *args),
void *args);
43rb_multi_ractor_p(
void)
45 if (LIKELY(ruby_single_main_ractor)) {
57rb_vm_lock(
const char *file,
int line)
59 RB_DEBUG_COUNTER_INC(vm_sync_lock);
61 if (rb_multi_ractor_p()) {
62 rb_vm_lock_body(LOCATION_PARAMS);
67rb_vm_unlock(
const char *file,
int line)
69 if (rb_multi_ractor_p()) {
70 rb_vm_unlock_body(LOCATION_PARAMS);
75rb_vm_lock_enter(
unsigned int *lev,
const char *file,
int line)
77 RB_DEBUG_COUNTER_INC(vm_sync_lock_enter);
79 if (rb_multi_ractor_p()) {
80 rb_vm_lock_enter_body(lev APPEND_LOCATION_PARAMS);
85rb_vm_lock_enter_nb(
unsigned int *lev,
const char *file,
int line)
87 RB_DEBUG_COUNTER_INC(vm_sync_lock_enter_nb);
89 if (rb_multi_ractor_p()) {
90 rb_vm_lock_enter_body_nb(lev APPEND_LOCATION_PARAMS);
95rb_vm_lock_leave_nb(
unsigned int *lev,
const char *file,
int line)
97 if (rb_multi_ractor_p()) {
98 rb_vm_lock_leave_body_nb(lev APPEND_LOCATION_PARAMS);
103rb_vm_lock_leave(
unsigned int *lev,
const char *file,
int line)
105 if (rb_multi_ractor_p()) {
106 rb_vm_lock_leave_body(lev APPEND_LOCATION_PARAMS);
111rb_vm_lock_enter_cr(
struct rb_ractor_struct *cr,
unsigned int *levp,
const char *file,
int line)
113 RB_DEBUG_COUNTER_INC(vm_sync_lock_enter_cr);
114 rb_vm_lock_enter_body_cr(cr, levp APPEND_LOCATION_PARAMS);
118rb_vm_lock_leave_cr(
struct rb_ractor_struct *cr,
unsigned int *levp,
const char *file,
int line)
120 rb_vm_lock_leave_body(levp APPEND_LOCATION_PARAMS);
123#define RB_VM_LOCKED_P() rb_vm_locked_p()
125#define RB_VM_LOCK() rb_vm_lock(__FILE__, __LINE__)
126#define RB_VM_UNLOCK() rb_vm_unlock(__FILE__, __LINE__)
128#define RB_VM_LOCK_ENTER_CR_LEV(cr, levp) rb_vm_lock_enter_cr(cr, levp, __FILE__, __LINE__)
129#define RB_VM_LOCK_LEAVE_CR_LEV(cr, levp) rb_vm_lock_leave_cr(cr, levp, __FILE__, __LINE__)
130#define RB_VM_LOCK_ENTER_LEV(levp) rb_vm_lock_enter(levp, __FILE__, __LINE__)
131#define RB_VM_LOCK_LEAVE_LEV(levp) rb_vm_lock_leave(levp, __FILE__, __LINE__)
133#define RB_VM_LOCK_ENTER() { unsigned int _lev; RB_VM_LOCK_ENTER_LEV(&_lev);
134#define RB_VM_LOCK_LEAVE() RB_VM_LOCK_LEAVE_LEV(&_lev); }
135#define RB_VM_LOCKING() \
136 for (unsigned int vm_locking_level, vm_locking_do = (RB_VM_LOCK_ENTER_LEV(&vm_locking_level), 1); \
137 vm_locking_do; RB_VM_LOCK_LEAVE_LEV(&vm_locking_level), vm_locking_do = 0)
139#define RB_VM_LOCK_ENTER_LEV_NB(levp) rb_vm_lock_enter_nb(levp, __FILE__, __LINE__)
140#define RB_VM_LOCK_LEAVE_LEV_NB(levp) rb_vm_lock_leave_nb(levp, __FILE__, __LINE__)
141#define RB_VM_LOCK_ENTER_NO_BARRIER() { unsigned int _lev; RB_VM_LOCK_ENTER_LEV_NB(&_lev);
142#define RB_VM_LOCK_LEAVE_NO_BARRIER() RB_VM_LOCK_LEAVE_LEV_NB(&_lev); }
143#define RB_VM_LOCKING_NO_BARRIER() \
144 for (unsigned int vm_locking_level, vm_locking_do = (RB_VM_LOCK_ENTER_LEV_NB(&vm_locking_level), 1); \
145 vm_locking_do; RB_VM_LOCK_LEAVE_LEV_NB(&vm_locking_level), vm_locking_do = 0)
148void RUBY_ASSERT_vm_locking(
void);
149void RUBY_ASSERT_vm_locking_with_barrier(
void);
150void RUBY_ASSERT_vm_unlocking(
void);
151#define ASSERT_vm_locking() RUBY_ASSERT_vm_locking()
152#define ASSERT_vm_locking_with_barrier() RUBY_ASSERT_vm_locking_with_barrier()
153#define ASSERT_vm_unlocking() RUBY_ASSERT_vm_unlocking()
155#define ASSERT_vm_locking()
156#define ASSERT_vm_locking_with_barrier()
157#define ASSERT_vm_unlocking()
#define RUBY_ASSERT(...)
Asserts that the given expression is truthy if and only if RUBY_DEBUG is truthy.
#define RUBY_EXTERN
Declaration of externally visible global variables.
uintptr_t VALUE
Type that represents a Ruby object.