Ruby 3.5.0dev (2025-04-03 revision 1dddc6c78b5f6dc6ae18ee04ebe44abfce3b0433)
iseq.h (1dddc6c78b5f6dc6ae18ee04ebe44abfce3b0433)
1#ifndef RUBY_ISEQ_H
2#define RUBY_ISEQ_H 1
3/**********************************************************************
4
5 iseq.h -
6
7 $Author$
8 created at: 04/01/01 23:36:57 JST
9
10 Copyright (C) 2004-2008 Koichi Sasada
11
12**********************************************************************/
13#include "internal/gc.h"
14#include "shape.h"
15#include "vm_core.h"
16#include "prism_compile.h"
17
19#define ISEQ_MAJOR_VERSION ((unsigned int)ruby_api_version[0])
20#define ISEQ_MINOR_VERSION ((unsigned int)ruby_api_version[1])
21
22#define ISEQ_MBITS_SIZE sizeof(iseq_bits_t)
23#define ISEQ_MBITS_BITLENGTH (ISEQ_MBITS_SIZE * CHAR_BIT)
24#define ISEQ_MBITS_SET(buf, i) (buf[(i) / ISEQ_MBITS_BITLENGTH] |= ((iseq_bits_t)1 << ((i) % ISEQ_MBITS_BITLENGTH)))
25#define ISEQ_MBITS_SET_P(buf, i) ((buf[(i) / ISEQ_MBITS_BITLENGTH] >> ((i) % ISEQ_MBITS_BITLENGTH)) & 0x1)
26#define ISEQ_MBITS_BUFLEN(size) roomof(size, ISEQ_MBITS_BITLENGTH)
27
28#ifndef USE_ISEQ_NODE_ID
29#define USE_ISEQ_NODE_ID 1
30#endif
31
32#ifndef rb_iseq_t
33typedef struct rb_iseq_struct rb_iseq_t;
34#define rb_iseq_t rb_iseq_t
35#endif
36typedef void (*rb_iseq_callback)(const rb_iseq_t *, void *);
37
38extern const ID rb_iseq_shared_exc_local_tbl[];
39
40#define ISEQ_COVERAGE(iseq) ISEQ_BODY(iseq)->variable.coverage
41#define ISEQ_COVERAGE_SET(iseq, cov) RB_OBJ_WRITE(iseq, &ISEQ_BODY(iseq)->variable.coverage, cov)
42#define ISEQ_LINE_COVERAGE(iseq) RARRAY_AREF(ISEQ_COVERAGE(iseq), COVERAGE_INDEX_LINES)
43#define ISEQ_BRANCH_COVERAGE(iseq) RARRAY_AREF(ISEQ_COVERAGE(iseq), COVERAGE_INDEX_BRANCHES)
44
45#define ISEQ_PC2BRANCHINDEX(iseq) ISEQ_BODY(iseq)->variable.pc2branchindex
46#define ISEQ_PC2BRANCHINDEX_SET(iseq, h) RB_OBJ_WRITE(iseq, &ISEQ_BODY(iseq)->variable.pc2branchindex, h)
47
48#define ISEQ_FLIP_CNT(iseq) ISEQ_BODY(iseq)->variable.flip_count
49
50#define ISEQ_FROZEN_STRING_LITERAL_ENABLED 1
51#define ISEQ_FROZEN_STRING_LITERAL_DISABLED 0
52#define ISEQ_FROZEN_STRING_LITERAL_UNSET -1
53
54static inline rb_snum_t
55ISEQ_FLIP_CNT_INCREMENT(const rb_iseq_t *iseq)
56{
57 rb_snum_t cnt = ISEQ_BODY(iseq)->variable.flip_count;
58 ISEQ_BODY(iseq)->variable.flip_count += 1;
59 return cnt;
60}
61
62static inline VALUE *
63ISEQ_ORIGINAL_ISEQ(const rb_iseq_t *iseq)
64{
65 return ISEQ_BODY(iseq)->variable.original_iseq;
66}
67
68static inline void
69ISEQ_ORIGINAL_ISEQ_CLEAR(const rb_iseq_t *iseq)
70{
71 void *ptr = ISEQ_BODY(iseq)->variable.original_iseq;
72 ISEQ_BODY(iseq)->variable.original_iseq = NULL;
73 ruby_xfree(ptr);
74}
75
76static inline VALUE *
77ISEQ_ORIGINAL_ISEQ_ALLOC(const rb_iseq_t *iseq, long size)
78{
79 return ISEQ_BODY(iseq)->variable.original_iseq =
80 ALLOC_N(VALUE, size);
81}
82
83#define ISEQ_TRACE_EVENTS (RUBY_EVENT_LINE | \
84 RUBY_EVENT_CLASS | \
85 RUBY_EVENT_END | \
86 RUBY_EVENT_CALL | \
87 RUBY_EVENT_RETURN| \
88 RUBY_EVENT_C_CALL| \
89 RUBY_EVENT_C_RETURN | \
90 RUBY_EVENT_B_CALL | \
91 RUBY_EVENT_B_RETURN | \
92 RUBY_EVENT_RESCUE | \
93 RUBY_EVENT_COVERAGE_LINE| \
94 RUBY_EVENT_COVERAGE_BRANCH)
95
96#define ISEQ_NOT_LOADED_YET IMEMO_FL_USER1
97#define ISEQ_USE_COMPILE_DATA IMEMO_FL_USER2
98#define ISEQ_TRANSLATED IMEMO_FL_USER3
99
100#define ISEQ_EXECUTABLE_P(iseq) (FL_TEST_RAW(((VALUE)iseq), ISEQ_NOT_LOADED_YET | ISEQ_USE_COMPILE_DATA) == 0)
101
103 /* GC is needed */
104 const VALUE err_info;
105 const VALUE catch_table_ary; /* Array */
106
107 /* Mirror fields from ISEQ_BODY so they are accessible during iseq setup */
108 unsigned int iseq_size;
109 VALUE *iseq_encoded; /* half-encoded iseq (insn addr and operands) */
110 bool is_single_mark_bit; /* identifies whether mark bits are single or a list */
111
112 union {
113 iseq_bits_t * list; /* Find references for GC */
114 iseq_bits_t single;
115 } mark_bits;
116
117 /* GC is not needed */
118 struct iseq_label_data *start_label;
119 struct iseq_label_data *end_label;
120 struct iseq_label_data *redo_label;
121 const rb_iseq_t *current_block;
122 struct iseq_compile_data_ensure_node_stack *ensure_node_stack;
123 struct {
124 struct iseq_compile_data_storage *storage_head;
125 struct iseq_compile_data_storage *storage_current;
126 } node;
127 struct {
128 struct iseq_compile_data_storage *storage_head;
129 struct iseq_compile_data_storage *storage_current;
130 } insn;
131 bool in_rescue;
132 bool in_masgn;
133 int loopval_popped; /* used by NODE_BREAK */
134 int last_line;
135 int label_no;
136 int node_level;
137 int isolated_depth;
138 unsigned int ci_index;
139 unsigned int ic_index;
140 const rb_compile_option_t *option;
141 struct rb_id_table *ivar_cache_table;
142 const struct rb_builtin_function *builtin_function_table;
143 const NODE *root_node;
144 bool catch_except_p; // If a frame of this ISeq may catch exception, set true.
145#if OPT_SUPPORT_JOKE
146 st_table *labels_table;
147#endif
148};
149
150static inline struct iseq_compile_data *
151ISEQ_COMPILE_DATA(const rb_iseq_t *iseq)
152{
153 if (iseq->flags & ISEQ_USE_COMPILE_DATA) {
154 return iseq->aux.compile_data;
155 }
156 else {
157 return NULL;
158 }
159}
160
161static inline void
162ISEQ_COMPILE_DATA_ALLOC(rb_iseq_t *iseq)
163{
164 iseq->aux.compile_data = ZALLOC(struct iseq_compile_data);
165 iseq->flags |= ISEQ_USE_COMPILE_DATA;
166}
167
168static inline void
169ISEQ_COMPILE_DATA_CLEAR(rb_iseq_t *iseq)
170{
171 iseq->flags &= ~ISEQ_USE_COMPILE_DATA;
172 iseq->aux.compile_data = NULL;
173}
174
175static inline rb_iseq_t *
176iseq_imemo_alloc(void)
177{
178 return IMEMO_NEW(rb_iseq_t, imemo_iseq, 0);
179}
180
181VALUE rb_iseq_ibf_dump(const rb_iseq_t *iseq, VALUE opt);
182void rb_ibf_load_iseq_complete(rb_iseq_t *iseq);
183const rb_iseq_t *rb_iseq_ibf_load(VALUE str);
184const rb_iseq_t *rb_iseq_ibf_load_bytes(const char *cstr, size_t);
185VALUE rb_iseq_ibf_load_extra_data(VALUE str);
186void rb_iseq_init_trace(rb_iseq_t *iseq);
187int rb_iseq_add_local_tracepoint_recursively(const rb_iseq_t *iseq, rb_event_flag_t turnon_events, VALUE tpval, unsigned int target_line, bool target_bmethod);
188int rb_iseq_remove_local_tracepoint_recursively(const rb_iseq_t *iseq, VALUE tpval);
189const rb_iseq_t *rb_iseq_load_iseq(VALUE fname);
190int rb_iseq_opt_frozen_string_literal(void);
191
192#if VM_INSN_INFO_TABLE_IMPL == 2
193unsigned int *rb_iseq_insns_info_decode_positions(const struct rb_iseq_constant_body *body);
194#endif
195
196int rb_vm_insn_addr2opcode(const void *addr);
197
198RUBY_SYMBOL_EXPORT_BEGIN
199
200/* compile.c */
201VALUE rb_iseq_compile_node(rb_iseq_t *iseq, const NODE *node);
202VALUE rb_iseq_compile_callback(rb_iseq_t *iseq, const struct rb_iseq_new_with_callback_callback_func * ifunc);
203VALUE *rb_iseq_original_iseq(const rb_iseq_t *iseq);
204void rb_iseq_build_from_ary(rb_iseq_t *iseq, VALUE misc,
205 VALUE locals, VALUE args,
206 VALUE exception, VALUE body);
207void rb_iseq_mark_and_move_insn_storage(struct iseq_compile_data_storage *arena);
208
209VALUE rb_iseq_load(VALUE data, VALUE parent, VALUE opt);
210VALUE rb_iseq_parameters(const rb_iseq_t *iseq, int is_proc);
211unsigned int rb_iseq_line_no(const rb_iseq_t *iseq, size_t pos);
212#ifdef USE_ISEQ_NODE_ID
213int rb_iseq_node_id(const rb_iseq_t *iseq, size_t pos);
214#endif
215void rb_iseq_trace_set(const rb_iseq_t *iseq, rb_event_flag_t turnon_events);
216void rb_iseq_trace_set_all(rb_event_flag_t turnon_events);
217void rb_iseq_insns_info_encode_positions(const rb_iseq_t *iseq);
218
219struct rb_iseq_constant_body *rb_iseq_constant_body_alloc(void);
220VALUE rb_iseqw_new(const rb_iseq_t *iseq);
221const rb_iseq_t *rb_iseqw_to_iseq(VALUE iseqw);
222
223VALUE rb_iseq_absolute_path(const rb_iseq_t *iseq); /* obsolete */
224int rb_iseq_from_eval_p(const rb_iseq_t *iseq);
225VALUE rb_iseq_type(const rb_iseq_t *iseq);
226VALUE rb_iseq_label(const rb_iseq_t *iseq);
227VALUE rb_iseq_base_label(const rb_iseq_t *iseq);
228VALUE rb_iseq_first_lineno(const rb_iseq_t *iseq);
229VALUE rb_iseq_method_name(const rb_iseq_t *iseq);
230void rb_iseq_code_location(const rb_iseq_t *iseq, int *first_lineno, int *first_column, int *last_lineno, int *last_column);
231
232void rb_iseq_remove_coverage_all(void);
233
234/* proc.c */
235const rb_iseq_t *rb_method_iseq(VALUE body);
236const rb_iseq_t *rb_proc_get_iseq(VALUE proc, int *is_proc);
237
239 unsigned int inline_const_cache: 1;
240 unsigned int peephole_optimization: 1;
241 unsigned int tailcall_optimization: 1;
242 unsigned int specialized_instruction: 1;
243 unsigned int operands_unification: 1;
244 unsigned int instructions_unification: 1;
245 signed int frozen_string_literal: 2; /* -1: not specified, 0: false, 1: true */
246 unsigned int debug_frozen_string_literal: 1;
247 unsigned int coverage_enabled: 1;
248 int debug_level;
249};
250
252 int line_no;
253#ifdef USE_ISEQ_NODE_ID
254 int node_id;
255#endif
256 rb_event_flag_t events;
257};
258
259/*
260 * iseq type:
261 * CATCH_TYPE_RESCUE, CATCH_TYPE_ENSURE:
262 * use iseq as continuation.
263 *
264 * CATCH_TYPE_BREAK (iter):
265 * use iseq as key.
266 *
267 * CATCH_TYPE_BREAK (while), CATCH_TYPE_RETRY,
268 * CATCH_TYPE_REDO, CATCH_TYPE_NEXT:
269 * NULL.
270 */
271enum rb_catch_type {
272 CATCH_TYPE_RESCUE = INT2FIX(1),
273 CATCH_TYPE_ENSURE = INT2FIX(2),
274 CATCH_TYPE_RETRY = INT2FIX(3),
275 CATCH_TYPE_BREAK = INT2FIX(4),
276 CATCH_TYPE_REDO = INT2FIX(5),
277 CATCH_TYPE_NEXT = INT2FIX(6)
278};
279
281 enum rb_catch_type type;
282 rb_iseq_t *iseq;
283
284 unsigned int start;
285 unsigned int end;
286 unsigned int cont;
287 unsigned int sp;
288};
289
290RBIMPL_ATTR_PACKED_STRUCT_UNALIGNED_BEGIN()
292 unsigned int size;
293 struct iseq_catch_table_entry entries[FLEX_ARY_LEN];
294} RBIMPL_ATTR_PACKED_STRUCT_UNALIGNED_END();
295
296static inline int
297iseq_catch_table_bytes(int n)
298{
299 enum {
300 catch_table_entry_size = sizeof(struct iseq_catch_table_entry),
301 catch_table_entries_max = (INT_MAX - offsetof(struct iseq_catch_table, entries)) / catch_table_entry_size
302 };
303 if (n > catch_table_entries_max) rb_fatal("too large iseq_catch_table - %d", n);
304 return (int)(offsetof(struct iseq_catch_table, entries) +
305 n * catch_table_entry_size);
306}
307
308#define INITIAL_ISEQ_COMPILE_DATA_STORAGE_BUFF_SIZE (512)
309
311 struct iseq_compile_data_storage *next;
312 unsigned int pos;
313 unsigned int size;
314 char buff[FLEX_ARY_LEN];
315};
316
317/* defined? */
318
319enum defined_type {
320 DEFINED_NOT_DEFINED,
321 DEFINED_NIL = 1,
322 DEFINED_IVAR,
323 DEFINED_LVAR,
324 DEFINED_GVAR,
325 DEFINED_CVAR,
326 DEFINED_CONST,
327 DEFINED_METHOD,
328 DEFINED_YIELD,
329 DEFINED_ZSUPER,
330 DEFINED_SELF,
331 DEFINED_TRUE,
332 DEFINED_FALSE,
333 DEFINED_ASGN,
334 DEFINED_EXPR,
335 DEFINED_REF,
336 DEFINED_FUNC,
337 DEFINED_CONST_FROM
338};
339
340VALUE rb_iseq_defined_string(enum defined_type type);
341
342/* vm.c */
343VALUE rb_iseq_local_variables(const rb_iseq_t *iseq);
344
345attr_index_t rb_estimate_iv_count(VALUE klass, const rb_iseq_t * initialize_iseq);
346
347void rb_free_encoded_insn_data(void);
348
349RUBY_SYMBOL_EXPORT_END
350
351#endif /* RUBY_ISEQ_H */
#define RUBY_EXTERN
Declaration of externally visible global variables.
Definition dllexport.h:45
uint32_t rb_event_flag_t
Represents event(s).
Definition event.h:108
#define INT2FIX
Old name of RB_INT2FIX.
Definition long.h:48
#define ZALLOC
Old name of RB_ZALLOC.
Definition memory.h:402
#define ALLOC_N
Old name of RB_ALLOC_N.
Definition memory.h:399
const int ruby_api_version[3]
API versions, in { major, minor, teeny } order.
Definition version.c:47
VALUE type(ANYARGS)
ANYARGS-ed function type.
Definition iseq.h:280
Definition iseq.h:251
Definition st.h:79
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