Ruby 4.0.0dev (2025-12-15 revision bbc10ed0cdcd2fe9d7d09a9dcc5f036bc4425aef)
vm.h
1#ifndef INTERNAL_VM_H /*-*-C-*-vi:se ft=c:*/
2#define INTERNAL_VM_H
11#include "ruby/internal/stdbool.h" /* for bool */
12#include "internal/serial.h" /* for rb_serial_t */
13#include "internal/static_assert.h" /* for STATIC_ASSERT */
14#include "ruby/ruby.h" /* for ID */
15#include "ruby/st.h" /* for st_table */
16
17#ifdef rb_funcallv
18# undef rb_funcallv
19#endif
20
21#ifdef rb_method_basic_definition_p
22# undef rb_method_basic_definition_p
23#endif
24
25struct rb_callable_method_entry_struct; /* in method.h */
26struct rb_method_definition_struct; /* in method.h */
27struct rb_execution_context_struct; /* in vm_core.h */
28struct rb_control_frame_struct; /* in vm_core.h */
29struct rb_callinfo; /* in vm_core.h */
30
31enum method_missing_reason {
32 MISSING_NOENTRY = 0x00,
33 MISSING_PRIVATE = 0x01,
34 MISSING_PROTECTED = 0x02,
35 MISSING_FCALL = 0x04,
36 MISSING_VCALL = 0x08,
37 MISSING_SUPER = 0x10,
38 MISSING_MISSING = 0x20,
39 MISSING_NONE = 0x40
40};
41
42/* vm_insnhelper.h */
43VALUE rb_vm_push_frame_fname(struct rb_execution_context_struct *ec, VALUE fname);
44
45/* vm.c */
46VALUE rb_obj_is_thread(VALUE obj);
47void rb_vm_mark(void *ptr);
48void rb_vm_register_global_object(VALUE obj);
49void rb_vm_each_stack_value(void *ptr, void (*cb)(VALUE, void*), void *ctx);
50PUREFUNC(VALUE rb_vm_top_self(void));
51const void **rb_vm_get_insns_address_table(void);
52VALUE rb_source_location(int *pline);
53const char *rb_source_location_cstr(int *pline);
54void rb_vm_pop_cfunc_frame(void);
55void rb_vm_check_redefinition_by_prepend(VALUE klass);
56int rb_vm_check_optimizable_mid(VALUE mid);
57VALUE rb_yield_refine_block(VALUE refinement, VALUE refinements);
58VALUE ruby_vm_special_exception_copy(VALUE);
59
60void rb_lastline_set_up(VALUE val, unsigned int up);
61
62/* vm_eval.c */
63VALUE rb_current_realfilepath(void);
64VALUE rb_check_block_call(VALUE, ID, int, const VALUE *, rb_block_call_func_t, VALUE);
65typedef void rb_check_funcall_hook(int, VALUE, ID, int, const VALUE *, VALUE);
66VALUE rb_check_funcall_with_hook_kw(VALUE recv, ID mid, int argc, const VALUE *argv,
67 rb_check_funcall_hook *hook, VALUE arg, int kw_splat);
68const char *rb_type_str(enum ruby_value_type type);
69VALUE rb_check_funcall_default(VALUE, ID, int, const VALUE *, VALUE);
70VALUE rb_check_funcall_basic_kw(VALUE, ID, VALUE, int, const VALUE*, int);
71VALUE rb_yield_1(VALUE val);
72VALUE rb_ec_yield(struct rb_execution_context_struct *ec, VALUE val);
73VALUE rb_yield_force_blockarg(VALUE values);
74VALUE rb_lambda_call(VALUE obj, ID mid, int argc, const VALUE *argv,
75 rb_block_call_func_t bl_proc, int min_argc, int max_argc,
76 VALUE data2);
77void rb_check_stack_overflow(void);
78#define RB_BLOCK_NO_USE_PACKED_ARGS 2
79VALUE rb_block_call2(VALUE obj, ID mid, int argc, const VALUE *argv, rb_block_call_func_t bl_proc, VALUE data2, long flags);
80struct vm_ifunc *rb_current_ifunc(void);
81VALUE rb_gccct_clear_table(VALUE);
82VALUE rb_eval_cmd_call_kw(VALUE cmd, int argc, const VALUE *argv, int kw_splat);
83
84#if USE_YJIT || USE_ZJIT
85/* vm_exec.c */
86extern uint64_t rb_vm_insn_count;
87#endif
88
89extern bool rb_free_at_exit;
90
91/* miniinit.c and builtin.c */
92void rb_free_loaded_builtin_table(void);
93
94/* vm_insnhelper.c */
95VALUE rb_equal_opt(VALUE obj1, VALUE obj2);
96VALUE rb_eql_opt(VALUE obj1, VALUE obj2);
97
98struct rb_iseq_struct;
99const struct rb_callcache *rb_vm_search_method_slowpath(const struct rb_callinfo *ci, VALUE klass);
100
101/* vm_method.c */
102int rb_ec_obj_respond_to(struct rb_execution_context_struct *ec, VALUE obj, ID id, int priv);
103
104void rb_clear_constant_cache(void);
105
106/* vm_dump.c */
107void rb_print_backtrace(FILE *);
108
109/* vm_backtrace.c */
110VALUE rb_vm_thread_backtrace(int argc, const VALUE *argv, VALUE thval);
111VALUE rb_vm_thread_backtrace_locations(int argc, const VALUE *argv, VALUE thval);
112VALUE rb_vm_backtrace(int argc, const VALUE * argv, struct rb_execution_context_struct * ec);
113VALUE rb_vm_backtrace_locations(int argc, const VALUE * argv, struct rb_execution_context_struct * ec);
114VALUE rb_make_backtrace(void);
115void rb_backtrace_print_as_bugreport(FILE*);
116int rb_backtrace_p(VALUE obj);
117VALUE rb_backtrace_to_str_ary(VALUE obj);
118VALUE rb_backtrace_to_location_ary(VALUE obj);
119VALUE rb_location_ary_to_backtrace(VALUE ary);
120void rb_backtrace_each(VALUE (*iter)(VALUE recv, VALUE str), VALUE output);
121int rb_frame_info_p(VALUE obj);
122int rb_get_node_id_from_frame_info(VALUE obj);
123const struct rb_iseq_struct *rb_get_iseq_from_frame_info(VALUE obj);
124
125VALUE rb_ec_backtrace_object(const struct rb_execution_context_struct *ec);
126
127#define RUBY_DTRACE_CREATE_HOOK(name, arg) \
128 RUBY_DTRACE_HOOK(name##_CREATE, arg)
129#define RUBY_DTRACE_HOOK(name, arg) \
130do { \
131 if (UNLIKELY(RUBY_DTRACE_##name##_ENABLED())) { \
132 int dtrace_line; \
133 const char *dtrace_file = rb_source_location_cstr(&dtrace_line); \
134 if (!dtrace_file) dtrace_file = ""; \
135 RUBY_DTRACE_##name(arg, dtrace_file, dtrace_line); \
136 } \
137} while (0)
138#endif /* INTERNAL_VM_H */
rb_block_call_func * rb_block_call_func_t
Shorthand type that represents an iterator-written-in-C function pointer.
Definition iterator.h:88
VALUE type(ANYARGS)
ANYARGS-ed function type.
C99 shim for <stdbool.h>
Definition method.h:63
IFUNC (Internal FUNCtion)
Definition imemo.h:85
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
Definition value.h:52
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40
ruby_value_type
C-level type of an object.
Definition value_type.h:113