Ruby 3.5.0dev (2025-05-22 revision ef935705cfb1b4493b8b8cf112e435b554b3138a)
iseq.c (ef935705cfb1b4493b8b8cf112e435b554b3138a)
1/**********************************************************************
2
3 iseq.c -
4
5 $Author$
6 created at: 2006-07-11(Tue) 09:00:03 +0900
7
8 Copyright (C) 2006 Koichi Sasada
9
10**********************************************************************/
11
12#define RUBY_VM_INSNS_INFO 1
13/* #define RUBY_MARK_FREE_DEBUG 1 */
14
15#include "ruby/internal/config.h"
16
17#ifdef HAVE_DLADDR
18# include <dlfcn.h>
19#endif
20
21#include "eval_intern.h"
22#include "id_table.h"
23#include "internal.h"
24#include "internal/bits.h"
25#include "internal/class.h"
26#include "internal/compile.h"
27#include "internal/error.h"
28#include "internal/file.h"
29#include "internal/gc.h"
30#include "internal/hash.h"
31#include "internal/io.h"
32#include "internal/ruby_parser.h"
33#include "internal/sanitizers.h"
34#include "internal/set_table.h"
35#include "internal/symbol.h"
36#include "internal/thread.h"
37#include "internal/variable.h"
38#include "iseq.h"
39#include "ruby/util.h"
40#include "vm_core.h"
41#include "vm_callinfo.h"
42#include "yjit.h"
43#include "ruby/ractor.h"
44#include "builtin.h"
45#include "insns.inc"
46#include "insns_info.inc"
47
48VALUE rb_cISeq;
49static VALUE iseqw_new(const rb_iseq_t *iseq);
50static const rb_iseq_t *iseqw_check(VALUE iseqw);
51
52#if VM_INSN_INFO_TABLE_IMPL == 2
53static struct succ_index_table *succ_index_table_create(int max_pos, int *data, int size);
54static unsigned int *succ_index_table_invert(int max_pos, struct succ_index_table *sd, int size);
55static int succ_index_lookup(const struct succ_index_table *sd, int x);
56#endif
57
58#define hidden_obj_p(obj) (!SPECIAL_CONST_P(obj) && !RBASIC(obj)->klass)
59
60static inline VALUE
61obj_resurrect(VALUE obj)
62{
63 if (hidden_obj_p(obj)) {
64 switch (BUILTIN_TYPE(obj)) {
65 case T_STRING:
66 obj = rb_str_resurrect(obj);
67 break;
68 case T_ARRAY:
69 obj = rb_ary_resurrect(obj);
70 break;
71 case T_HASH:
72 obj = rb_hash_resurrect(obj);
73 break;
74 default:
75 break;
76 }
77 }
78 return obj;
79}
80
81static void
82free_arena(struct iseq_compile_data_storage *cur)
83{
84 struct iseq_compile_data_storage *next;
85
86 while (cur) {
87 next = cur->next;
88 ruby_xfree(cur);
89 cur = next;
90 }
91}
92
93static void
94compile_data_free(struct iseq_compile_data *compile_data)
95{
96 if (compile_data) {
97 free_arena(compile_data->node.storage_head);
98 free_arena(compile_data->insn.storage_head);
99 if (compile_data->ivar_cache_table) {
100 rb_id_table_free(compile_data->ivar_cache_table);
101 }
102 ruby_xfree(compile_data);
103 }
104}
105
106static void
107remove_from_constant_cache(ID id, IC ic)
108{
109 rb_vm_t *vm = GET_VM();
110 VALUE lookup_result;
111 st_data_t ic_data = (st_data_t)ic;
112
113 if (rb_id_table_lookup(vm->constant_cache, id, &lookup_result)) {
114 set_table *ics = (set_table *)lookup_result;
115 set_delete(ics, &ic_data);
116
117 if (ics->num_entries == 0 &&
118 // See comment in vm_track_constant_cache on why we need this check
119 id != vm->inserting_constant_cache_id) {
120 rb_id_table_delete(vm->constant_cache, id);
121 set_free_table(ics);
122 }
123 }
124}
125
126// When an ISEQ is being freed, all of its associated ICs are going to go away
127// as well. Because of this, we need to iterate over the ICs, and clear them
128// from the VM's constant cache.
129static void
130iseq_clear_ic_references(const rb_iseq_t *iseq)
131{
132 // In some cases (when there is a compilation error), we end up with
133 // ic_size greater than 0, but no allocated is_entries buffer.
134 // If there's no is_entries buffer to loop through, return early.
135 // [Bug #19173]
136 if (!ISEQ_BODY(iseq)->is_entries) {
137 return;
138 }
139
140 for (unsigned int ic_idx = 0; ic_idx < ISEQ_BODY(iseq)->ic_size; ic_idx++) {
141 IC ic = &ISEQ_IS_IC_ENTRY(ISEQ_BODY(iseq), ic_idx);
142
143 // Iterate over the IC's constant path's segments and clean any references to
144 // the ICs out of the VM's constant cache table.
145 const ID *segments = ic->segments;
146
147 // It's possible that segments is NULL if we overallocated an IC but
148 // optimizations removed the instruction using it
149 if (segments == NULL)
150 continue;
151
152 for (int i = 0; segments[i]; i++) {
153 ID id = segments[i];
154 if (id == idNULL) continue;
155 remove_from_constant_cache(id, ic);
156 }
157
158 ruby_xfree((void *)segments);
159 }
160}
161
162void
163rb_iseq_free(const rb_iseq_t *iseq)
164{
165 RUBY_FREE_ENTER("iseq");
166
167 if (iseq && ISEQ_BODY(iseq)) {
168 iseq_clear_ic_references(iseq);
169 struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
170#if USE_YJIT
171 rb_yjit_iseq_free(iseq);
172 if (FL_TEST_RAW((VALUE)iseq, ISEQ_TRANSLATED)) {
173 RUBY_ASSERT(rb_yjit_live_iseq_count > 0);
174 rb_yjit_live_iseq_count--;
175 }
176#endif
177 ruby_xfree((void *)body->iseq_encoded);
178 ruby_xfree((void *)body->insns_info.body);
179 ruby_xfree((void *)body->insns_info.positions);
180#if VM_INSN_INFO_TABLE_IMPL == 2
181 ruby_xfree(body->insns_info.succ_index_table);
182#endif
183 ruby_xfree((void *)body->is_entries);
184 ruby_xfree(body->call_data);
185 ruby_xfree((void *)body->catch_table);
186 ruby_xfree((void *)body->param.opt_table);
187 if (ISEQ_MBITS_BUFLEN(body->iseq_size) > 1 && body->mark_bits.list) {
188 ruby_xfree((void *)body->mark_bits.list);
189 }
190
191 ruby_xfree(body->variable.original_iseq);
192
193 if (body->param.keyword != NULL) {
194 if (body->param.keyword->table != &body->local_table[body->param.keyword->bits_start - body->param.keyword->num])
195 ruby_xfree((void *)body->param.keyword->table);
196 if (body->param.keyword->default_values) {
197 ruby_xfree((void *)body->param.keyword->default_values);
198 }
199 ruby_xfree((void *)body->param.keyword);
200 }
201 if (LIKELY(body->local_table != rb_iseq_shared_exc_local_tbl))
202 ruby_xfree((void *)body->local_table);
203 compile_data_free(ISEQ_COMPILE_DATA(iseq));
204 if (body->outer_variables) rb_id_table_free(body->outer_variables);
205 ruby_xfree(body);
206 }
207
208 if (iseq && ISEQ_EXECUTABLE_P(iseq) && iseq->aux.exec.local_hooks) {
209 rb_hook_list_free(iseq->aux.exec.local_hooks);
210 }
211
212 RUBY_FREE_LEAVE("iseq");
213}
214
215typedef VALUE iseq_value_itr_t(void *ctx, VALUE obj);
216
217static inline void
218iseq_scan_bits(unsigned int page, iseq_bits_t bits, VALUE *code, VALUE *original_iseq)
219{
220 unsigned int offset;
221 unsigned int page_offset = (page * ISEQ_MBITS_BITLENGTH);
222
223 while (bits) {
224 offset = ntz_intptr(bits);
225 VALUE op = code[page_offset + offset];
226 rb_gc_mark_and_move(&code[page_offset + offset]);
227 VALUE newop = code[page_offset + offset];
228 if (original_iseq && newop != op) {
229 original_iseq[page_offset + offset] = newop;
230 }
231 bits &= bits - 1; // Reset Lowest Set Bit (BLSR)
232 }
233}
234
235static void
236rb_iseq_mark_and_move_each_compile_data_value(const rb_iseq_t *iseq, VALUE *original_iseq)
237{
238 unsigned int size;
239 VALUE *code;
240 const struct iseq_compile_data *const compile_data = ISEQ_COMPILE_DATA(iseq);
241
242 size = compile_data->iseq_size;
243 code = compile_data->iseq_encoded;
244
245 // Embedded VALUEs
246 if (compile_data->mark_bits.list) {
247 if(compile_data->is_single_mark_bit) {
248 iseq_scan_bits(0, compile_data->mark_bits.single, code, original_iseq);
249 }
250 else {
251 for (unsigned int i = 0; i < ISEQ_MBITS_BUFLEN(size); i++) {
252 iseq_bits_t bits = compile_data->mark_bits.list[i];
253 iseq_scan_bits(i, bits, code, original_iseq);
254 }
255 }
256 }
257}
258static void
259rb_iseq_mark_and_move_each_body_value(const rb_iseq_t *iseq, VALUE *original_iseq)
260{
261 unsigned int size;
262 VALUE *code;
263 const struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
264
265 size = body->iseq_size;
266 code = body->iseq_encoded;
267
268 union iseq_inline_storage_entry *is_entries = body->is_entries;
269
270 if (body->is_entries) {
271 // Skip iterating over ivc caches
272 is_entries += body->ivc_size;
273
274 // ICVARC entries
275 for (unsigned int i = 0; i < body->icvarc_size; i++, is_entries++) {
276 ICVARC icvarc = (ICVARC)is_entries;
277 if (icvarc->entry) {
278 RUBY_ASSERT(!RB_TYPE_P(icvarc->entry->class_value, T_NONE));
279
280 rb_gc_mark_and_move(&icvarc->entry->class_value);
281 }
282 }
283
284 // ISE entries
285 for (unsigned int i = 0; i < body->ise_size; i++, is_entries++) {
286 union iseq_inline_storage_entry *const is = (union iseq_inline_storage_entry *)is_entries;
287 if (is->once.value) {
288 rb_gc_mark_and_move(&is->once.value);
289 }
290 }
291
292 // IC Entries
293 for (unsigned int i = 0; i < body->ic_size; i++, is_entries++) {
294 IC ic = (IC)is_entries;
295 if (ic->entry) {
296 rb_gc_mark_and_move_ptr(&ic->entry);
297 }
298 }
299 }
300
301 // Embedded VALUEs
302 if (body->mark_bits.list) {
303 if (ISEQ_MBITS_BUFLEN(size) == 1) {
304 iseq_scan_bits(0, body->mark_bits.single, code, original_iseq);
305 }
306 else {
307 for (unsigned int i = 0; i < ISEQ_MBITS_BUFLEN(size); i++) {
308 iseq_bits_t bits = body->mark_bits.list[i];
309 iseq_scan_bits(i, bits, code, original_iseq);
310 }
311 }
312 }
313}
314
315static bool
316cc_is_active(const struct rb_callcache *cc, bool reference_updating)
317{
318 if (cc) {
319 if (cc == rb_vm_empty_cc() || rb_vm_empty_cc_for_super()) {
320 return false;
321 }
322
323 if (reference_updating) {
324 cc = (const struct rb_callcache *)rb_gc_location((VALUE)cc);
325 }
326
327 if (vm_cc_markable(cc)) {
328 if (cc->klass) { // cc is not invalidated
329 const struct rb_callable_method_entry_struct *cme = vm_cc_cme(cc);
330 if (reference_updating) {
331 cme = (const struct rb_callable_method_entry_struct *)rb_gc_location((VALUE)cme);
332 }
333 if (!METHOD_ENTRY_INVALIDATED(cme)) {
334 return true;
335 }
336 }
337 }
338 }
339 return false;
340}
341
342void
343rb_iseq_mark_and_move(rb_iseq_t *iseq, bool reference_updating)
344{
345 RUBY_MARK_ENTER("iseq");
346
347 rb_gc_mark_and_move(&iseq->wrapper);
348
349 if (ISEQ_BODY(iseq)) {
350 struct rb_iseq_constant_body *body = ISEQ_BODY(iseq);
351
352 rb_iseq_mark_and_move_each_body_value(iseq, reference_updating ? ISEQ_ORIGINAL_ISEQ(iseq) : NULL);
353
354 rb_gc_mark_and_move(&body->variable.coverage);
355 rb_gc_mark_and_move(&body->variable.pc2branchindex);
356 rb_gc_mark_and_move(&body->variable.script_lines);
357 rb_gc_mark_and_move(&body->location.label);
358 rb_gc_mark_and_move(&body->location.base_label);
359 rb_gc_mark_and_move(&body->location.pathobj);
360 if (body->local_iseq) rb_gc_mark_and_move_ptr(&body->local_iseq);
361 if (body->parent_iseq) rb_gc_mark_and_move_ptr(&body->parent_iseq);
362 if (body->mandatory_only_iseq) rb_gc_mark_and_move_ptr(&body->mandatory_only_iseq);
363
364 if (body->call_data) {
365 for (unsigned int i = 0; i < body->ci_size; i++) {
366 struct rb_call_data *cds = body->call_data;
367
368 if (cds[i].ci) rb_gc_mark_and_move_ptr(&cds[i].ci);
369
370 if (cc_is_active(cds[i].cc, reference_updating)) {
371 rb_gc_mark_and_move_ptr(&cds[i].cc);
372 }
373 else if (cds[i].cc != rb_vm_empty_cc()) {
374 cds[i].cc = rb_vm_empty_cc();
375 }
376 }
377 }
378
379 if (body->param.flags.has_kw && body->param.keyword != NULL) {
380 const struct rb_iseq_param_keyword *const keyword = body->param.keyword;
381
382 if (keyword->default_values != NULL) {
383 for (int j = 0, i = keyword->required_num; i < keyword->num; i++, j++) {
384 rb_gc_mark_and_move(&keyword->default_values[j]);
385 }
386 }
387 }
388
389 if (body->catch_table) {
390 struct iseq_catch_table *table = body->catch_table;
391
392 for (unsigned int i = 0; i < table->size; i++) {
393 struct iseq_catch_table_entry *entry;
394 entry = UNALIGNED_MEMBER_PTR(table, entries[i]);
395 if (entry->iseq) {
396 rb_gc_mark_and_move_ptr(&entry->iseq);
397 }
398 }
399 }
400
401 if (reference_updating) {
402#if USE_YJIT
403 rb_yjit_iseq_update_references(iseq);
404#endif
405 }
406 else {
407#if USE_YJIT
408 rb_yjit_iseq_mark(body->yjit_payload);
409#endif
410 }
411 }
412
413 if (FL_TEST_RAW((VALUE)iseq, ISEQ_NOT_LOADED_YET)) {
414 rb_gc_mark_and_move(&iseq->aux.loader.obj);
415 }
416 else if (FL_TEST_RAW((VALUE)iseq, ISEQ_USE_COMPILE_DATA)) {
417 const struct iseq_compile_data *const compile_data = ISEQ_COMPILE_DATA(iseq);
418
419 rb_iseq_mark_and_move_insn_storage(compile_data->insn.storage_head);
420 rb_iseq_mark_and_move_each_compile_data_value(iseq, reference_updating ? ISEQ_ORIGINAL_ISEQ(iseq) : NULL);
421
422 rb_gc_mark_and_move((VALUE *)&compile_data->err_info);
423 rb_gc_mark_and_move((VALUE *)&compile_data->catch_table_ary);
424 }
425 else {
426 /* executable */
427 VM_ASSERT(ISEQ_EXECUTABLE_P(iseq));
428
429 if (iseq->aux.exec.local_hooks) {
430 rb_hook_list_mark_and_update(iseq->aux.exec.local_hooks);
431 }
432 }
433
434 RUBY_MARK_LEAVE("iseq");
435}
436
437static size_t
438param_keyword_size(const struct rb_iseq_param_keyword *pkw)
439{
440 size_t size = 0;
441
442 if (!pkw) return size;
443
444 size += sizeof(struct rb_iseq_param_keyword);
445 size += sizeof(VALUE) * (pkw->num - pkw->required_num);
446
447 return size;
448}
449
450size_t
451rb_iseq_memsize(const rb_iseq_t *iseq)
452{
453 size_t size = 0; /* struct already counted as RVALUE size */
454 const struct rb_iseq_constant_body *body = ISEQ_BODY(iseq);
455 const struct iseq_compile_data *compile_data;
456
457 /* TODO: should we count original_iseq? */
458
459 if (ISEQ_EXECUTABLE_P(iseq) && body) {
460 size += sizeof(struct rb_iseq_constant_body);
461 size += body->iseq_size * sizeof(VALUE);
462 size += body->insns_info.size * (sizeof(struct iseq_insn_info_entry) + sizeof(unsigned int));
463 size += body->local_table_size * sizeof(ID);
464 size += ISEQ_MBITS_BUFLEN(body->iseq_size) * ISEQ_MBITS_SIZE;
465 if (body->catch_table) {
466 size += iseq_catch_table_bytes(body->catch_table->size);
467 }
468 size += (body->param.opt_num + 1) * sizeof(VALUE);
469 size += param_keyword_size(body->param.keyword);
470
471 /* body->is_entries */
472 size += ISEQ_IS_SIZE(body) * sizeof(union iseq_inline_storage_entry);
473
474 if (ISEQ_BODY(iseq)->is_entries) {
475 /* IC entries constant segments */
476 for (unsigned int ic_idx = 0; ic_idx < body->ic_size; ic_idx++) {
477 IC ic = &ISEQ_IS_IC_ENTRY(body, ic_idx);
478 const ID *ids = ic->segments;
479 if (!ids) continue;
480 while (*ids++) {
481 size += sizeof(ID);
482 }
483 size += sizeof(ID); // null terminator
484 }
485 }
486
487 /* body->call_data */
488 size += body->ci_size * sizeof(struct rb_call_data);
489 // TODO: should we count imemo_callinfo?
490 }
491
492 compile_data = ISEQ_COMPILE_DATA(iseq);
493 if (compile_data) {
494 struct iseq_compile_data_storage *cur;
495
496 size += sizeof(struct iseq_compile_data);
497
498 cur = compile_data->node.storage_head;
499 while (cur) {
500 size += cur->size + offsetof(struct iseq_compile_data_storage, buff);
501 cur = cur->next;
502 }
503 }
504
505 return size;
506}
507
509rb_iseq_constant_body_alloc(void)
510{
511 struct rb_iseq_constant_body *iseq_body;
512 iseq_body = ZALLOC(struct rb_iseq_constant_body);
513 return iseq_body;
514}
515
516static rb_iseq_t *
517iseq_alloc(void)
518{
519 rb_iseq_t *iseq = iseq_imemo_alloc();
520 ISEQ_BODY(iseq) = rb_iseq_constant_body_alloc();
521 return iseq;
522}
523
524VALUE
525rb_iseq_pathobj_new(VALUE path, VALUE realpath)
526{
527 VALUE pathobj;
528 VM_ASSERT(RB_TYPE_P(path, T_STRING));
529 VM_ASSERT(NIL_P(realpath) || RB_TYPE_P(realpath, T_STRING));
530
531 if (path == realpath ||
532 (!NIL_P(realpath) && rb_str_cmp(path, realpath) == 0)) {
533 pathobj = rb_fstring(path);
534 }
535 else {
536 if (!NIL_P(realpath)) realpath = rb_fstring(realpath);
537 pathobj = rb_ary_new_from_args(2, rb_fstring(path), realpath);
538 rb_ary_freeze(pathobj);
539 }
540 return pathobj;
541}
542
543void
544rb_iseq_pathobj_set(const rb_iseq_t *iseq, VALUE path, VALUE realpath)
545{
546 RB_OBJ_WRITE(iseq, &ISEQ_BODY(iseq)->location.pathobj,
547 rb_iseq_pathobj_new(path, realpath));
548}
549
550// Make a dummy iseq for a dummy frame that exposes a path for profilers to inspect
551rb_iseq_t *
552rb_iseq_alloc_with_dummy_path(VALUE fname)
553{
554 rb_iseq_t *dummy_iseq = iseq_alloc();
555
556 ISEQ_BODY(dummy_iseq)->type = ISEQ_TYPE_TOP;
557 RB_OBJ_WRITE(dummy_iseq, &ISEQ_BODY(dummy_iseq)->location.pathobj, fname);
558 RB_OBJ_WRITE(dummy_iseq, &ISEQ_BODY(dummy_iseq)->location.label, fname);
559
560 return dummy_iseq;
561}
562
563static rb_iseq_location_t *
564iseq_location_setup(rb_iseq_t *iseq, VALUE name, VALUE path, VALUE realpath, int first_lineno, const rb_code_location_t *code_location, const int node_id)
565{
566 rb_iseq_location_t *loc = &ISEQ_BODY(iseq)->location;
567
568 rb_iseq_pathobj_set(iseq, path, realpath);
569 RB_OBJ_WRITE(iseq, &loc->label, name);
570 RB_OBJ_WRITE(iseq, &loc->base_label, name);
571 loc->first_lineno = first_lineno;
572
573 if (ISEQ_BODY(iseq)->local_iseq == iseq && strcmp(RSTRING_PTR(name), "initialize") == 0) {
574 ISEQ_BODY(iseq)->param.flags.use_block = 1;
575 }
576
577 if (code_location) {
578 loc->node_id = node_id;
579 loc->code_location = *code_location;
580 }
581 else {
582 loc->code_location.beg_pos.lineno = 0;
583 loc->code_location.beg_pos.column = 0;
584 loc->code_location.end_pos.lineno = -1;
585 loc->code_location.end_pos.column = -1;
586 }
587
588 return loc;
589}
590
591static void
592set_relation(rb_iseq_t *iseq, const rb_iseq_t *piseq)
593{
594 struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
595 const VALUE type = body->type;
596
597 /* set class nest stack */
598 if (type == ISEQ_TYPE_TOP) {
599 body->local_iseq = iseq;
600 }
601 else if (type == ISEQ_TYPE_METHOD || type == ISEQ_TYPE_CLASS) {
602 body->local_iseq = iseq;
603 }
604 else if (piseq) {
605 body->local_iseq = ISEQ_BODY(piseq)->local_iseq;
606 }
607
608 if (piseq) {
609 body->parent_iseq = piseq;
610 }
611
612 if (type == ISEQ_TYPE_MAIN) {
613 body->local_iseq = iseq;
614 }
615}
616
617static struct iseq_compile_data_storage *
618new_arena(void)
619{
620 struct iseq_compile_data_storage * new_arena =
622 ALLOC_N(char, INITIAL_ISEQ_COMPILE_DATA_STORAGE_BUFF_SIZE +
623 offsetof(struct iseq_compile_data_storage, buff));
624
625 new_arena->pos = 0;
626 new_arena->next = 0;
627 new_arena->size = INITIAL_ISEQ_COMPILE_DATA_STORAGE_BUFF_SIZE;
628
629 return new_arena;
630}
631
632static VALUE
633prepare_iseq_build(rb_iseq_t *iseq,
634 VALUE name, VALUE path, VALUE realpath, int first_lineno, const rb_code_location_t *code_location, const int node_id,
635 const rb_iseq_t *parent, int isolated_depth, enum rb_iseq_type type,
636 VALUE script_lines, const rb_compile_option_t *option)
637{
638 VALUE coverage = Qfalse;
639 VALUE err_info = Qnil;
640 struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
641
642 if (parent && (type == ISEQ_TYPE_MAIN || type == ISEQ_TYPE_TOP))
643 err_info = Qfalse;
644
645 body->type = type;
646 set_relation(iseq, parent);
647
648 name = rb_fstring(name);
649 iseq_location_setup(iseq, name, path, realpath, first_lineno, code_location, node_id);
650 if (iseq != body->local_iseq) {
651 RB_OBJ_WRITE(iseq, &body->location.base_label, ISEQ_BODY(body->local_iseq)->location.label);
652 }
653 ISEQ_COVERAGE_SET(iseq, Qnil);
654 ISEQ_ORIGINAL_ISEQ_CLEAR(iseq);
655 body->variable.flip_count = 0;
656
657 if (NIL_P(script_lines)) {
658 RB_OBJ_WRITE(iseq, &body->variable.script_lines, Qnil);
659 }
660 else {
661 RB_OBJ_WRITE(iseq, &body->variable.script_lines, rb_ractor_make_shareable(script_lines));
662 }
663
664 ISEQ_COMPILE_DATA_ALLOC(iseq);
665 RB_OBJ_WRITE(iseq, &ISEQ_COMPILE_DATA(iseq)->err_info, err_info);
666 RB_OBJ_WRITE(iseq, &ISEQ_COMPILE_DATA(iseq)->catch_table_ary, Qnil);
667
668 ISEQ_COMPILE_DATA(iseq)->node.storage_head = ISEQ_COMPILE_DATA(iseq)->node.storage_current = new_arena();
669 ISEQ_COMPILE_DATA(iseq)->insn.storage_head = ISEQ_COMPILE_DATA(iseq)->insn.storage_current = new_arena();
670 ISEQ_COMPILE_DATA(iseq)->isolated_depth = isolated_depth;
671 ISEQ_COMPILE_DATA(iseq)->option = option;
672 ISEQ_COMPILE_DATA(iseq)->ivar_cache_table = NULL;
673 ISEQ_COMPILE_DATA(iseq)->builtin_function_table = GET_VM()->builtin_function_table;
674
675 if (option->coverage_enabled) {
676 VALUE coverages = rb_get_coverages();
677 if (RTEST(coverages)) {
678 coverage = rb_hash_lookup(coverages, rb_iseq_path(iseq));
679 if (NIL_P(coverage)) coverage = Qfalse;
680 }
681 }
682 ISEQ_COVERAGE_SET(iseq, coverage);
683 if (coverage && ISEQ_BRANCH_COVERAGE(iseq))
684 ISEQ_PC2BRANCHINDEX_SET(iseq, rb_ary_hidden_new(0));
685
686 return Qtrue;
687}
688
689#if VM_CHECK_MODE > 0 && VM_INSN_INFO_TABLE_IMPL > 0
690static void validate_get_insn_info(const rb_iseq_t *iseq);
691#endif
692
693void
694rb_iseq_insns_info_encode_positions(const rb_iseq_t *iseq)
695{
696#if VM_INSN_INFO_TABLE_IMPL == 2
697 /* create succ_index_table */
698 struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
699 int size = body->insns_info.size;
700 int max_pos = body->iseq_size;
701 int *data = (int *)body->insns_info.positions;
702 if (body->insns_info.succ_index_table) ruby_xfree(body->insns_info.succ_index_table);
703 body->insns_info.succ_index_table = succ_index_table_create(max_pos, data, size);
704#if VM_CHECK_MODE == 0
705 ruby_xfree(body->insns_info.positions);
706 body->insns_info.positions = NULL;
707#endif
708#endif
709}
710
711#if VM_INSN_INFO_TABLE_IMPL == 2
712unsigned int *
713rb_iseq_insns_info_decode_positions(const struct rb_iseq_constant_body *body)
714{
715 int size = body->insns_info.size;
716 int max_pos = body->iseq_size;
717 struct succ_index_table *sd = body->insns_info.succ_index_table;
718 return succ_index_table_invert(max_pos, sd, size);
719}
720#endif
721
722void
723rb_iseq_init_trace(rb_iseq_t *iseq)
724{
725 iseq->aux.exec.global_trace_events = 0;
726 if (ruby_vm_event_enabled_global_flags & ISEQ_TRACE_EVENTS) {
727 rb_iseq_trace_set(iseq, ruby_vm_event_enabled_global_flags & ISEQ_TRACE_EVENTS);
728 }
729}
730
731static VALUE
732finish_iseq_build(rb_iseq_t *iseq)
733{
734 struct iseq_compile_data *data = ISEQ_COMPILE_DATA(iseq);
735 const struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
736 VALUE err = data->err_info;
737 ISEQ_COMPILE_DATA_CLEAR(iseq);
738 compile_data_free(data);
739
740#if VM_CHECK_MODE > 0 && VM_INSN_INFO_TABLE_IMPL > 0
741 validate_get_insn_info(iseq);
742#endif
743
744 if (RTEST(err)) {
745 VALUE path = pathobj_path(body->location.pathobj);
746 if (err == Qtrue) err = rb_exc_new_cstr(rb_eSyntaxError, "compile error");
747 rb_funcallv(err, rb_intern("set_backtrace"), 1, &path);
748 rb_exc_raise(err);
749 }
750
751 RB_DEBUG_COUNTER_INC(iseq_num);
752 RB_DEBUG_COUNTER_ADD(iseq_cd_num, ISEQ_BODY(iseq)->ci_size);
753
754 rb_iseq_init_trace(iseq);
755 return Qtrue;
756}
757
758static rb_compile_option_t COMPILE_OPTION_DEFAULT = {
759 .inline_const_cache = OPT_INLINE_CONST_CACHE,
760 .peephole_optimization = OPT_PEEPHOLE_OPTIMIZATION,
761 .tailcall_optimization = OPT_TAILCALL_OPTIMIZATION,
762 .specialized_instruction = OPT_SPECIALISED_INSTRUCTION,
763 .operands_unification = OPT_OPERANDS_UNIFICATION,
764 .instructions_unification = OPT_INSTRUCTIONS_UNIFICATION,
765 .frozen_string_literal = OPT_FROZEN_STRING_LITERAL,
766 .debug_frozen_string_literal = OPT_DEBUG_FROZEN_STRING_LITERAL,
767 .coverage_enabled = TRUE,
768};
769
770static const rb_compile_option_t COMPILE_OPTION_FALSE = {
771 .frozen_string_literal = -1, // unspecified
772};
773
774int
775rb_iseq_opt_frozen_string_literal(void)
776{
777 return COMPILE_OPTION_DEFAULT.frozen_string_literal;
778}
779
780static void
781set_compile_option_from_hash(rb_compile_option_t *option, VALUE opt)
782{
783#define SET_COMPILE_OPTION(o, h, mem) \
784 { VALUE flag = rb_hash_aref((h), ID2SYM(rb_intern(#mem))); \
785 if (flag == Qtrue) { (o)->mem = 1; } \
786 else if (flag == Qfalse) { (o)->mem = 0; } \
787 }
788#define SET_COMPILE_OPTION_NUM(o, h, mem) \
789 { VALUE num = rb_hash_aref((h), ID2SYM(rb_intern(#mem))); \
790 if (!NIL_P(num)) (o)->mem = NUM2INT(num); \
791 }
792 SET_COMPILE_OPTION(option, opt, inline_const_cache);
793 SET_COMPILE_OPTION(option, opt, peephole_optimization);
794 SET_COMPILE_OPTION(option, opt, tailcall_optimization);
795 SET_COMPILE_OPTION(option, opt, specialized_instruction);
796 SET_COMPILE_OPTION(option, opt, operands_unification);
797 SET_COMPILE_OPTION(option, opt, instructions_unification);
798 SET_COMPILE_OPTION(option, opt, frozen_string_literal);
799 SET_COMPILE_OPTION(option, opt, debug_frozen_string_literal);
800 SET_COMPILE_OPTION(option, opt, coverage_enabled);
801 SET_COMPILE_OPTION_NUM(option, opt, debug_level);
802#undef SET_COMPILE_OPTION
803#undef SET_COMPILE_OPTION_NUM
804}
805
806static rb_compile_option_t *
807set_compile_option_from_ast(rb_compile_option_t *option, const rb_ast_body_t *ast)
808{
809#define SET_COMPILE_OPTION(o, a, mem) \
810 ((a)->mem < 0 ? 0 : ((o)->mem = (a)->mem > 0))
811 SET_COMPILE_OPTION(option, ast, coverage_enabled);
812#undef SET_COMPILE_OPTION
813 if (ast->frozen_string_literal >= 0) {
814 option->frozen_string_literal = ast->frozen_string_literal;
815 }
816 return option;
817}
818
819static void
820make_compile_option(rb_compile_option_t *option, VALUE opt)
821{
822 if (NIL_P(opt)) {
823 *option = COMPILE_OPTION_DEFAULT;
824 }
825 else if (opt == Qfalse) {
826 *option = COMPILE_OPTION_FALSE;
827 }
828 else if (opt == Qtrue) {
829 int i;
830 for (i = 0; i < (int)(sizeof(rb_compile_option_t) / sizeof(int)); ++i)
831 ((int *)option)[i] = 1;
832 }
833 else if (RB_TYPE_P(opt, T_HASH)) {
834 *option = COMPILE_OPTION_DEFAULT;
835 set_compile_option_from_hash(option, opt);
836 }
837 else {
838 rb_raise(rb_eTypeError, "Compile option must be Hash/true/false/nil");
839 }
840}
841
842static VALUE
843make_compile_option_value(rb_compile_option_t *option)
844{
845 VALUE opt = rb_hash_new_with_size(11);
846#define SET_COMPILE_OPTION(o, h, mem) \
847 rb_hash_aset((h), ID2SYM(rb_intern(#mem)), RBOOL((o)->mem))
848#define SET_COMPILE_OPTION_NUM(o, h, mem) \
849 rb_hash_aset((h), ID2SYM(rb_intern(#mem)), INT2NUM((o)->mem))
850 {
851 SET_COMPILE_OPTION(option, opt, inline_const_cache);
852 SET_COMPILE_OPTION(option, opt, peephole_optimization);
853 SET_COMPILE_OPTION(option, opt, tailcall_optimization);
854 SET_COMPILE_OPTION(option, opt, specialized_instruction);
855 SET_COMPILE_OPTION(option, opt, operands_unification);
856 SET_COMPILE_OPTION(option, opt, instructions_unification);
857 SET_COMPILE_OPTION(option, opt, debug_frozen_string_literal);
858 SET_COMPILE_OPTION(option, opt, coverage_enabled);
859 SET_COMPILE_OPTION_NUM(option, opt, debug_level);
860 }
861#undef SET_COMPILE_OPTION
862#undef SET_COMPILE_OPTION_NUM
863 VALUE frozen_string_literal = option->frozen_string_literal == -1 ? Qnil : RBOOL(option->frozen_string_literal);
864 rb_hash_aset(opt, ID2SYM(rb_intern("frozen_string_literal")), frozen_string_literal);
865 return opt;
866}
867
868rb_iseq_t *
869rb_iseq_new(const VALUE ast_value, VALUE name, VALUE path, VALUE realpath,
870 const rb_iseq_t *parent, enum rb_iseq_type type)
871{
872 return rb_iseq_new_with_opt(ast_value, name, path, realpath, 0, parent,
873 0, type, &COMPILE_OPTION_DEFAULT,
874 Qnil);
875}
876
877static int
878ast_line_count(const VALUE ast_value)
879{
880 rb_ast_t *ast = rb_ruby_ast_data_get(ast_value);
881 return ast->body.line_count;
882}
883
884static VALUE
885iseq_setup_coverage(VALUE coverages, VALUE path, int line_count)
886{
887 if (line_count >= 0) {
888 int len = (rb_get_coverage_mode() & COVERAGE_TARGET_ONESHOT_LINES) ? 0 : line_count;
889
890 VALUE coverage = rb_default_coverage(len);
891 rb_hash_aset(coverages, path, coverage);
892
893 return coverage;
894 }
895
896 return Qnil;
897}
898
899static inline void
900iseq_new_setup_coverage(VALUE path, int line_count)
901{
902 VALUE coverages = rb_get_coverages();
903
904 if (RTEST(coverages)) {
905 iseq_setup_coverage(coverages, path, line_count);
906 }
907}
908
909rb_iseq_t *
910rb_iseq_new_top(const VALUE ast_value, VALUE name, VALUE path, VALUE realpath, const rb_iseq_t *parent)
911{
912 iseq_new_setup_coverage(path, ast_line_count(ast_value));
913
914 return rb_iseq_new_with_opt(ast_value, name, path, realpath, 0, parent, 0,
915 ISEQ_TYPE_TOP, &COMPILE_OPTION_DEFAULT,
916 Qnil);
917}
918
922rb_iseq_t *
923pm_iseq_new_top(pm_scope_node_t *node, VALUE name, VALUE path, VALUE realpath, const rb_iseq_t *parent, int *error_state)
924{
925 iseq_new_setup_coverage(path, (int) (node->parser->newline_list.size - 1));
926
927 return pm_iseq_new_with_opt(node, name, path, realpath, 0, parent, 0,
928 ISEQ_TYPE_TOP, &COMPILE_OPTION_DEFAULT, error_state);
929}
930
931rb_iseq_t *
932rb_iseq_new_main(const VALUE ast_value, VALUE path, VALUE realpath, const rb_iseq_t *parent, int opt)
933{
934 iseq_new_setup_coverage(path, ast_line_count(ast_value));
935
936 return rb_iseq_new_with_opt(ast_value, rb_fstring_lit("<main>"),
937 path, realpath, 0,
938 parent, 0, ISEQ_TYPE_MAIN, opt ? &COMPILE_OPTION_DEFAULT : &COMPILE_OPTION_FALSE,
939 Qnil);
940}
941
946rb_iseq_t *
947pm_iseq_new_main(pm_scope_node_t *node, VALUE path, VALUE realpath, const rb_iseq_t *parent, int opt, int *error_state)
948{
949 iseq_new_setup_coverage(path, (int) (node->parser->newline_list.size - 1));
950
951 return pm_iseq_new_with_opt(node, rb_fstring_lit("<main>"),
952 path, realpath, 0,
953 parent, 0, ISEQ_TYPE_MAIN, opt ? &COMPILE_OPTION_DEFAULT : &COMPILE_OPTION_FALSE, error_state);
954}
955
956rb_iseq_t *
957rb_iseq_new_eval(const VALUE ast_value, VALUE name, VALUE path, VALUE realpath, int first_lineno, const rb_iseq_t *parent, int isolated_depth)
958{
959 if (rb_get_coverage_mode() & COVERAGE_TARGET_EVAL) {
960 VALUE coverages = rb_get_coverages();
961 if (RTEST(coverages) && RTEST(path) && !RTEST(rb_hash_has_key(coverages, path))) {
962 iseq_setup_coverage(coverages, path, ast_line_count(ast_value) + first_lineno - 1);
963 }
964 }
965
966 return rb_iseq_new_with_opt(ast_value, name, path, realpath, first_lineno,
967 parent, isolated_depth, ISEQ_TYPE_EVAL, &COMPILE_OPTION_DEFAULT,
968 Qnil);
969}
970
971rb_iseq_t *
972pm_iseq_new_eval(pm_scope_node_t *node, VALUE name, VALUE path, VALUE realpath,
973 int first_lineno, const rb_iseq_t *parent, int isolated_depth, int *error_state)
974{
975 if (rb_get_coverage_mode() & COVERAGE_TARGET_EVAL) {
976 VALUE coverages = rb_get_coverages();
977 if (RTEST(coverages) && RTEST(path) && !RTEST(rb_hash_has_key(coverages, path))) {
978 iseq_setup_coverage(coverages, path, ((int) (node->parser->newline_list.size - 1)) + first_lineno - 1);
979 }
980 }
981
982 return pm_iseq_new_with_opt(node, name, path, realpath, first_lineno,
983 parent, isolated_depth, ISEQ_TYPE_EVAL, &COMPILE_OPTION_DEFAULT, error_state);
984}
985
986static inline rb_iseq_t *
987iseq_translate(rb_iseq_t *iseq)
988{
989 if (rb_respond_to(rb_cISeq, rb_intern("translate"))) {
990 VALUE v1 = iseqw_new(iseq);
991 VALUE v2 = rb_funcall(rb_cISeq, rb_intern("translate"), 1, v1);
992 if (v1 != v2 && CLASS_OF(v2) == rb_cISeq) {
993 iseq = (rb_iseq_t *)iseqw_check(v2);
994 }
995 }
996
997 return iseq;
998}
999
1000rb_iseq_t *
1001rb_iseq_new_with_opt(VALUE ast_value, VALUE name, VALUE path, VALUE realpath,
1002 int first_lineno, const rb_iseq_t *parent, int isolated_depth,
1003 enum rb_iseq_type type, const rb_compile_option_t *option,
1004 VALUE script_lines)
1005{
1006 rb_ast_t *ast = rb_ruby_ast_data_get(ast_value);
1007 rb_ast_body_t *body = ast ? &ast->body : NULL;
1008 const NODE *node = body ? body->root : 0;
1009 /* TODO: argument check */
1010 rb_iseq_t *iseq = iseq_alloc();
1011 rb_compile_option_t new_opt;
1012
1013 if (!option) option = &COMPILE_OPTION_DEFAULT;
1014 if (body) {
1015 new_opt = *option;
1016 option = set_compile_option_from_ast(&new_opt, body);
1017 }
1018
1019 if (!NIL_P(script_lines)) {
1020 // noop
1021 }
1022 else if (body && body->script_lines) {
1023 script_lines = rb_parser_build_script_lines_from(body->script_lines);
1024 }
1025 else if (parent) {
1026 script_lines = ISEQ_BODY(parent)->variable.script_lines;
1027 }
1028
1029 prepare_iseq_build(iseq, name, path, realpath, first_lineno, node ? &node->nd_loc : NULL, node ? nd_node_id(node) : -1,
1030 parent, isolated_depth, type, script_lines, option);
1031
1032 rb_iseq_compile_node(iseq, node);
1033 finish_iseq_build(iseq);
1034 RB_GC_GUARD(ast_value);
1035
1036 return iseq_translate(iseq);
1037}
1038
1040 rb_iseq_t *iseq;
1041 pm_scope_node_t *node;
1042};
1043
1044VALUE
1045pm_iseq_new_with_opt_try(VALUE d)
1046{
1047 struct pm_iseq_new_with_opt_data *data = (struct pm_iseq_new_with_opt_data *)d;
1048
1049 // This can compile child iseqs, which can raise syntax errors
1050 pm_iseq_compile_node(data->iseq, data->node);
1051
1052 // This raises an exception if there is a syntax error
1053 finish_iseq_build(data->iseq);
1054
1055 return Qundef;
1056}
1057
1070rb_iseq_t *
1071pm_iseq_new_with_opt(pm_scope_node_t *node, VALUE name, VALUE path, VALUE realpath,
1072 int first_lineno, const rb_iseq_t *parent, int isolated_depth,
1073 enum rb_iseq_type type, const rb_compile_option_t *option, int *error_state)
1074{
1075 rb_iseq_t *iseq = iseq_alloc();
1076 ISEQ_BODY(iseq)->prism = true;
1077
1078 rb_compile_option_t next_option;
1079 if (!option) option = &COMPILE_OPTION_DEFAULT;
1080
1081 next_option = *option;
1082 next_option.coverage_enabled = node->coverage_enabled < 0 ? 0 : node->coverage_enabled > 0;
1083 option = &next_option;
1084
1085 pm_location_t *location = &node->base.location;
1086 int32_t start_line = node->parser->start_line;
1087
1088 pm_line_column_t start = pm_newline_list_line_column(&node->parser->newline_list, location->start, start_line);
1089 pm_line_column_t end = pm_newline_list_line_column(&node->parser->newline_list, location->end, start_line);
1090
1091 rb_code_location_t code_location = (rb_code_location_t) {
1092 .beg_pos = { .lineno = (int) start.line, .column = (int) start.column },
1093 .end_pos = { .lineno = (int) end.line, .column = (int) end.column }
1094 };
1095
1096 prepare_iseq_build(iseq, name, path, realpath, first_lineno, &code_location, node->ast_node->node_id,
1097 parent, isolated_depth, type, node->script_lines == NULL ? Qnil : *node->script_lines, option);
1098
1099 struct pm_iseq_new_with_opt_data data = {
1100 .iseq = iseq,
1101 .node = node
1102 };
1103 rb_protect(pm_iseq_new_with_opt_try, (VALUE)&data, error_state);
1104
1105 if (*error_state) return NULL;
1106
1107 return iseq_translate(iseq);
1108}
1109
1110rb_iseq_t *
1111rb_iseq_new_with_callback(
1112 const struct rb_iseq_new_with_callback_callback_func * ifunc,
1113 VALUE name, VALUE path, VALUE realpath,
1114 int first_lineno, const rb_iseq_t *parent,
1115 enum rb_iseq_type type, const rb_compile_option_t *option)
1116{
1117 /* TODO: argument check */
1118 rb_iseq_t *iseq = iseq_alloc();
1119
1120 if (!option) option = &COMPILE_OPTION_DEFAULT;
1121 prepare_iseq_build(iseq, name, path, realpath, first_lineno, NULL, -1, parent, 0, type, Qnil, option);
1122
1123 rb_iseq_compile_callback(iseq, ifunc);
1124 finish_iseq_build(iseq);
1125
1126 return iseq;
1127}
1128
1129const rb_iseq_t *
1130rb_iseq_load_iseq(VALUE fname)
1131{
1132 VALUE iseqv = rb_check_funcall(rb_cISeq, rb_intern("load_iseq"), 1, &fname);
1133
1134 if (!SPECIAL_CONST_P(iseqv) && RBASIC_CLASS(iseqv) == rb_cISeq) {
1135 return iseqw_check(iseqv);
1136 }
1137
1138 return NULL;
1139}
1140
1141#define CHECK_ARRAY(v) rb_to_array_type(v)
1142#define CHECK_HASH(v) rb_to_hash_type(v)
1143#define CHECK_STRING(v) rb_str_to_str(v)
1144#define CHECK_SYMBOL(v) rb_to_symbol_type(v)
1145static inline VALUE CHECK_INTEGER(VALUE v) {(void)NUM2LONG(v); return v;}
1146
1147static enum rb_iseq_type
1148iseq_type_from_sym(VALUE type)
1149{
1150 const ID id_top = rb_intern("top");
1151 const ID id_method = rb_intern("method");
1152 const ID id_block = rb_intern("block");
1153 const ID id_class = rb_intern("class");
1154 const ID id_rescue = rb_intern("rescue");
1155 const ID id_ensure = rb_intern("ensure");
1156 const ID id_eval = rb_intern("eval");
1157 const ID id_main = rb_intern("main");
1158 const ID id_plain = rb_intern("plain");
1159 /* ensure all symbols are static or pinned down before
1160 * conversion */
1161 const ID typeid = rb_check_id(&type);
1162 if (typeid == id_top) return ISEQ_TYPE_TOP;
1163 if (typeid == id_method) return ISEQ_TYPE_METHOD;
1164 if (typeid == id_block) return ISEQ_TYPE_BLOCK;
1165 if (typeid == id_class) return ISEQ_TYPE_CLASS;
1166 if (typeid == id_rescue) return ISEQ_TYPE_RESCUE;
1167 if (typeid == id_ensure) return ISEQ_TYPE_ENSURE;
1168 if (typeid == id_eval) return ISEQ_TYPE_EVAL;
1169 if (typeid == id_main) return ISEQ_TYPE_MAIN;
1170 if (typeid == id_plain) return ISEQ_TYPE_PLAIN;
1171 return (enum rb_iseq_type)-1;
1172}
1173
1174static VALUE
1175iseq_load(VALUE data, const rb_iseq_t *parent, VALUE opt)
1176{
1177 rb_iseq_t *iseq = iseq_alloc();
1178
1179 VALUE magic, version1, version2, format_type, misc;
1180 VALUE name, path, realpath, code_location, node_id;
1181 VALUE type, body, locals, params, exception;
1182
1183 st_data_t iseq_type;
1184 rb_compile_option_t option;
1185 int i = 0;
1186 rb_code_location_t tmp_loc = { {0, 0}, {-1, -1} };
1187
1188 /* [magic, major_version, minor_version, format_type, misc,
1189 * label, path, first_lineno,
1190 * type, locals, args, exception_table, body]
1191 */
1192
1193 data = CHECK_ARRAY(data);
1194
1195 magic = CHECK_STRING(rb_ary_entry(data, i++));
1196 version1 = CHECK_INTEGER(rb_ary_entry(data, i++));
1197 version2 = CHECK_INTEGER(rb_ary_entry(data, i++));
1198 format_type = CHECK_INTEGER(rb_ary_entry(data, i++));
1199 misc = CHECK_HASH(rb_ary_entry(data, i++));
1200 ((void)magic, (void)version1, (void)version2, (void)format_type);
1201
1202 name = CHECK_STRING(rb_ary_entry(data, i++));
1203 path = CHECK_STRING(rb_ary_entry(data, i++));
1204 realpath = rb_ary_entry(data, i++);
1205 realpath = NIL_P(realpath) ? Qnil : CHECK_STRING(realpath);
1206 int first_lineno = RB_NUM2INT(rb_ary_entry(data, i++));
1207
1208 type = CHECK_SYMBOL(rb_ary_entry(data, i++));
1209 locals = CHECK_ARRAY(rb_ary_entry(data, i++));
1210 params = CHECK_HASH(rb_ary_entry(data, i++));
1211 exception = CHECK_ARRAY(rb_ary_entry(data, i++));
1212 body = CHECK_ARRAY(rb_ary_entry(data, i++));
1213
1214 ISEQ_BODY(iseq)->local_iseq = iseq;
1215
1216 iseq_type = iseq_type_from_sym(type);
1217 if (iseq_type == (enum rb_iseq_type)-1) {
1218 rb_raise(rb_eTypeError, "unsupported type: :%"PRIsVALUE, rb_sym2str(type));
1219 }
1220
1221 node_id = rb_hash_aref(misc, ID2SYM(rb_intern("node_id")));
1222
1223 code_location = rb_hash_aref(misc, ID2SYM(rb_intern("code_location")));
1224 if (RB_TYPE_P(code_location, T_ARRAY) && RARRAY_LEN(code_location) == 4) {
1225 tmp_loc.beg_pos.lineno = NUM2INT(rb_ary_entry(code_location, 0));
1226 tmp_loc.beg_pos.column = NUM2INT(rb_ary_entry(code_location, 1));
1227 tmp_loc.end_pos.lineno = NUM2INT(rb_ary_entry(code_location, 2));
1228 tmp_loc.end_pos.column = NUM2INT(rb_ary_entry(code_location, 3));
1229 }
1230
1231 if (SYM2ID(rb_hash_aref(misc, ID2SYM(rb_intern("parser")))) == rb_intern("prism")) {
1232 ISEQ_BODY(iseq)->prism = true;
1233 }
1234
1235 make_compile_option(&option, opt);
1236 option.peephole_optimization = FALSE; /* because peephole optimization can modify original iseq */
1237 prepare_iseq_build(iseq, name, path, realpath, first_lineno, &tmp_loc, NUM2INT(node_id),
1238 parent, 0, (enum rb_iseq_type)iseq_type, Qnil, &option);
1239
1240 rb_iseq_build_from_ary(iseq, misc, locals, params, exception, body);
1241
1242 finish_iseq_build(iseq);
1243
1244 return iseqw_new(iseq);
1245}
1246
1247/*
1248 * :nodoc:
1249 */
1250static VALUE
1251iseq_s_load(int argc, VALUE *argv, VALUE self)
1252{
1253 VALUE data, opt=Qnil;
1254 rb_scan_args(argc, argv, "11", &data, &opt);
1255 return iseq_load(data, NULL, opt);
1256}
1257
1258VALUE
1259rb_iseq_load(VALUE data, VALUE parent, VALUE opt)
1260{
1261 return iseq_load(data, RTEST(parent) ? (rb_iseq_t *)parent : NULL, opt);
1262}
1263
1264static rb_iseq_t *
1265rb_iseq_compile_with_option(VALUE src, VALUE file, VALUE realpath, VALUE line, VALUE opt)
1266{
1267 rb_iseq_t *iseq = NULL;
1268 rb_compile_option_t option;
1269#if !defined(__GNUC__) || (__GNUC__ == 4 && __GNUC_MINOR__ == 8)
1270# define INITIALIZED volatile /* suppress warnings by gcc 4.8 */
1271#else
1272# define INITIALIZED /* volatile */
1273#endif
1274 VALUE (*parse)(VALUE vparser, VALUE fname, VALUE file, int start);
1275 int ln;
1276 VALUE INITIALIZED ast_value;
1277 rb_ast_t *ast;
1278 VALUE name = rb_fstring_lit("<compiled>");
1279
1280 /* safe results first */
1281 make_compile_option(&option, opt);
1282 ln = NUM2INT(line);
1283 StringValueCStr(file);
1284 if (RB_TYPE_P(src, T_FILE)) {
1285 parse = rb_parser_compile_file_path;
1286 }
1287 else {
1288 parse = rb_parser_compile_string_path;
1289 StringValue(src);
1290 }
1291 {
1292 const VALUE parser = rb_parser_new();
1293 const rb_iseq_t *outer_scope = rb_iseq_new(Qnil, name, name, Qnil, 0, ISEQ_TYPE_TOP);
1294 VALUE outer_scope_v = (VALUE)outer_scope;
1295 rb_parser_set_context(parser, outer_scope, FALSE);
1296 if (ruby_vm_keep_script_lines) rb_parser_set_script_lines(parser);
1297 RB_GC_GUARD(outer_scope_v);
1298 ast_value = (*parse)(parser, file, src, ln);
1299 }
1300
1301 ast = rb_ruby_ast_data_get(ast_value);
1302
1303 if (!ast || !ast->body.root) {
1304 rb_ast_dispose(ast);
1305 rb_exc_raise(GET_EC()->errinfo);
1306 }
1307 else {
1308 iseq = rb_iseq_new_with_opt(ast_value, name, file, realpath, ln,
1309 NULL, 0, ISEQ_TYPE_TOP, &option,
1310 Qnil);
1311 rb_ast_dispose(ast);
1312 }
1313
1314 return iseq;
1315}
1316
1317static rb_iseq_t *
1318pm_iseq_compile_with_option(VALUE src, VALUE file, VALUE realpath, VALUE line, VALUE opt)
1319{
1320 rb_iseq_t *iseq = NULL;
1321 rb_compile_option_t option;
1322 int ln;
1323 VALUE name = rb_fstring_lit("<compiled>");
1324
1325 /* safe results first */
1326 make_compile_option(&option, opt);
1327 ln = NUM2INT(line);
1328 StringValueCStr(file);
1329
1330 pm_parse_result_t result = { 0 };
1331 pm_options_line_set(&result.options, NUM2INT(line));
1332 pm_options_scopes_init(&result.options, 1);
1333 result.node.coverage_enabled = 1;
1334
1335 switch (option.frozen_string_literal) {
1336 case ISEQ_FROZEN_STRING_LITERAL_UNSET:
1337 break;
1338 case ISEQ_FROZEN_STRING_LITERAL_DISABLED:
1339 pm_options_frozen_string_literal_set(&result.options, false);
1340 break;
1341 case ISEQ_FROZEN_STRING_LITERAL_ENABLED:
1342 pm_options_frozen_string_literal_set(&result.options, true);
1343 break;
1344 default:
1345 rb_bug("pm_iseq_compile_with_option: invalid frozen_string_literal=%d", option.frozen_string_literal);
1346 break;
1347 }
1348
1349 VALUE script_lines;
1350 VALUE error;
1351
1352 if (RB_TYPE_P(src, T_FILE)) {
1353 VALUE filepath = rb_io_path(src);
1354 error = pm_load_parse_file(&result, filepath, ruby_vm_keep_script_lines ? &script_lines : NULL);
1355 RB_GC_GUARD(filepath);
1356 }
1357 else {
1358 src = StringValue(src);
1359 error = pm_parse_string(&result, src, file, ruby_vm_keep_script_lines ? &script_lines : NULL);
1360 }
1361
1362 if (error == Qnil) {
1363 int error_state;
1364 iseq = pm_iseq_new_with_opt(&result.node, name, file, realpath, ln, NULL, 0, ISEQ_TYPE_TOP, &option, &error_state);
1365
1366 pm_parse_result_free(&result);
1367
1368 if (error_state) {
1369 RUBY_ASSERT(iseq == NULL);
1370 rb_jump_tag(error_state);
1371 }
1372 }
1373 else {
1374 pm_parse_result_free(&result);
1375 rb_exc_raise(error);
1376 }
1377
1378 return iseq;
1379}
1380
1381VALUE
1382rb_iseq_path(const rb_iseq_t *iseq)
1383{
1384 return pathobj_path(ISEQ_BODY(iseq)->location.pathobj);
1385}
1386
1387VALUE
1388rb_iseq_realpath(const rb_iseq_t *iseq)
1389{
1390 return pathobj_realpath(ISEQ_BODY(iseq)->location.pathobj);
1391}
1392
1393VALUE
1394rb_iseq_absolute_path(const rb_iseq_t *iseq)
1395{
1396 return rb_iseq_realpath(iseq);
1397}
1398
1399int
1400rb_iseq_from_eval_p(const rb_iseq_t *iseq)
1401{
1402 return NIL_P(rb_iseq_realpath(iseq));
1403}
1404
1405VALUE
1406rb_iseq_label(const rb_iseq_t *iseq)
1407{
1408 return ISEQ_BODY(iseq)->location.label;
1409}
1410
1411VALUE
1412rb_iseq_base_label(const rb_iseq_t *iseq)
1413{
1414 return ISEQ_BODY(iseq)->location.base_label;
1415}
1416
1417VALUE
1418rb_iseq_first_lineno(const rb_iseq_t *iseq)
1419{
1420 return RB_INT2NUM(ISEQ_BODY(iseq)->location.first_lineno);
1421}
1422
1423VALUE
1424rb_iseq_method_name(const rb_iseq_t *iseq)
1425{
1426 struct rb_iseq_constant_body *const body = ISEQ_BODY(ISEQ_BODY(iseq)->local_iseq);
1427
1428 if (body->type == ISEQ_TYPE_METHOD) {
1429 return body->location.base_label;
1430 }
1431 else {
1432 return Qnil;
1433 }
1434}
1435
1436void
1437rb_iseq_code_location(const rb_iseq_t *iseq, int *beg_pos_lineno, int *beg_pos_column, int *end_pos_lineno, int *end_pos_column)
1438{
1439 const rb_code_location_t *loc = &ISEQ_BODY(iseq)->location.code_location;
1440 if (beg_pos_lineno) *beg_pos_lineno = loc->beg_pos.lineno;
1441 if (beg_pos_column) *beg_pos_column = loc->beg_pos.column;
1442 if (end_pos_lineno) *end_pos_lineno = loc->end_pos.lineno;
1443 if (end_pos_column) *end_pos_column = loc->end_pos.column;
1444}
1445
1446static ID iseq_type_id(enum rb_iseq_type type);
1447
1448VALUE
1449rb_iseq_type(const rb_iseq_t *iseq)
1450{
1451 return ID2SYM(iseq_type_id(ISEQ_BODY(iseq)->type));
1452}
1453
1454VALUE
1455rb_iseq_coverage(const rb_iseq_t *iseq)
1456{
1457 return ISEQ_COVERAGE(iseq);
1458}
1459
1460static int
1461remove_coverage_i(void *vstart, void *vend, size_t stride, void *data)
1462{
1463 VALUE v = (VALUE)vstart;
1464 for (; v != (VALUE)vend; v += stride) {
1465 void *ptr = rb_asan_poisoned_object_p(v);
1466 rb_asan_unpoison_object(v, false);
1467
1468 if (rb_obj_is_iseq(v)) {
1469 rb_iseq_t *iseq = (rb_iseq_t *)v;
1470 ISEQ_COVERAGE_SET(iseq, Qnil);
1471 }
1472
1473 asan_poison_object_if(ptr, v);
1474 }
1475 return 0;
1476}
1477
1478void
1479rb_iseq_remove_coverage_all(void)
1480{
1481 rb_objspace_each_objects(remove_coverage_i, NULL);
1482}
1483
1484/* define wrapper class methods (RubyVM::InstructionSequence) */
1485
1486static void
1487iseqw_mark(void *ptr)
1488{
1489 rb_gc_mark_movable(*(VALUE *)ptr);
1490}
1491
1492static size_t
1493iseqw_memsize(const void *ptr)
1494{
1495 return rb_iseq_memsize(*(const rb_iseq_t **)ptr);
1496}
1497
1498static void
1499iseqw_ref_update(void *ptr)
1500{
1501 VALUE *vptr = ptr;
1502 *vptr = rb_gc_location(*vptr);
1503}
1504
1505static const rb_data_type_t iseqw_data_type = {
1506 "T_IMEMO/iseq",
1507 {
1508 iseqw_mark,
1510 iseqw_memsize,
1511 iseqw_ref_update,
1512 },
1513 0, 0, RUBY_TYPED_FREE_IMMEDIATELY|RUBY_TYPED_WB_PROTECTED
1514};
1515
1516static VALUE
1517iseqw_new(const rb_iseq_t *iseq)
1518{
1519 if (iseq->wrapper) {
1520 if (*(const rb_iseq_t **)rb_check_typeddata(iseq->wrapper, &iseqw_data_type) != iseq) {
1521 rb_raise(rb_eTypeError, "wrong iseq wrapper: %" PRIsVALUE " for %p",
1522 iseq->wrapper, (void *)iseq);
1523 }
1524 return iseq->wrapper;
1525 }
1526 else {
1527 rb_iseq_t **ptr;
1528 VALUE obj = TypedData_Make_Struct(rb_cISeq, rb_iseq_t *, &iseqw_data_type, ptr);
1529 RB_OBJ_WRITE(obj, ptr, iseq);
1530
1531 /* cache a wrapper object */
1532 RB_OBJ_WRITE((VALUE)iseq, &iseq->wrapper, obj);
1533
1534 return obj;
1535 }
1536}
1537
1538VALUE
1539rb_iseqw_new(const rb_iseq_t *iseq)
1540{
1541 return iseqw_new(iseq);
1542}
1543
1549static VALUE
1550iseqw_s_compile_parser(int argc, VALUE *argv, VALUE self, bool prism)
1551{
1552 VALUE src, file = Qnil, path = Qnil, line = Qnil, opt = Qnil;
1553 int i;
1554
1555 i = rb_scan_args(argc, argv, "1*:", &src, NULL, &opt);
1556 if (i > 4+NIL_P(opt)) rb_error_arity(argc, 1, 5);
1557 switch (i) {
1558 case 5: opt = argv[--i];
1559 case 4: line = argv[--i];
1560 case 3: path = argv[--i];
1561 case 2: file = argv[--i];
1562 }
1563
1564 if (NIL_P(file)) file = rb_fstring_lit("<compiled>");
1565 if (NIL_P(path)) path = file;
1566 if (NIL_P(line)) line = INT2FIX(1);
1567
1568 Check_Type(path, T_STRING);
1569 Check_Type(file, T_STRING);
1570
1571 rb_iseq_t *iseq;
1572 if (prism) {
1573 iseq = pm_iseq_compile_with_option(src, file, path, line, opt);
1574 }
1575 else {
1576 iseq = rb_iseq_compile_with_option(src, file, path, line, opt);
1577 }
1578
1579 return iseqw_new(iseq);
1580}
1581
1582/*
1583 * call-seq:
1584 * InstructionSequence.compile(source[, file[, path[, line[, options]]]]) -> iseq
1585 * InstructionSequence.new(source[, file[, path[, line[, options]]]]) -> iseq
1586 *
1587 * Takes +source+, which can be a string of Ruby code, or an open +File+ object.
1588 * that contains Ruby source code.
1589 *
1590 * Optionally takes +file+, +path+, and +line+ which describe the file path,
1591 * real path and first line number of the ruby code in +source+ which are
1592 * metadata attached to the returned +iseq+.
1593 *
1594 * +file+ is used for `__FILE__` and exception backtrace. +path+ is used for
1595 * +require_relative+ base. It is recommended these should be the same full
1596 * path.
1597 *
1598 * +options+, which can be +true+, +false+ or a +Hash+, is used to
1599 * modify the default behavior of the Ruby iseq compiler.
1600 *
1601 * For details regarding valid compile options see ::compile_option=.
1602 *
1603 * RubyVM::InstructionSequence.compile("a = 1 + 2")
1604 * #=> <RubyVM::InstructionSequence:<compiled>@<compiled>>
1605 *
1606 * path = "test.rb"
1607 * RubyVM::InstructionSequence.compile(File.read(path), path, File.expand_path(path))
1608 * #=> <RubyVM::InstructionSequence:<compiled>@test.rb:1>
1609 *
1610 * file = File.open("test.rb")
1611 * RubyVM::InstructionSequence.compile(file)
1612 * #=> <RubyVM::InstructionSequence:<compiled>@<compiled>:1>
1613 *
1614 * path = File.expand_path("test.rb")
1615 * RubyVM::InstructionSequence.compile(File.read(path), path, path)
1616 * #=> <RubyVM::InstructionSequence:<compiled>@/absolute/path/to/test.rb:1>
1617 *
1618 */
1619static VALUE
1620iseqw_s_compile(int argc, VALUE *argv, VALUE self)
1621{
1622 return iseqw_s_compile_parser(argc, argv, self, rb_ruby_prism_p());
1623}
1624
1625/*
1626 * call-seq:
1627 * InstructionSequence.compile_parsey(source[, file[, path[, line[, options]]]]) -> iseq
1628 *
1629 * Takes +source+, which can be a string of Ruby code, or an open +File+ object.
1630 * that contains Ruby source code. It parses and compiles using parse.y.
1631 *
1632 * Optionally takes +file+, +path+, and +line+ which describe the file path,
1633 * real path and first line number of the ruby code in +source+ which are
1634 * metadata attached to the returned +iseq+.
1635 *
1636 * +file+ is used for `__FILE__` and exception backtrace. +path+ is used for
1637 * +require_relative+ base. It is recommended these should be the same full
1638 * path.
1639 *
1640 * +options+, which can be +true+, +false+ or a +Hash+, is used to
1641 * modify the default behavior of the Ruby iseq compiler.
1642 *
1643 * For details regarding valid compile options see ::compile_option=.
1644 *
1645 * RubyVM::InstructionSequence.compile_parsey("a = 1 + 2")
1646 * #=> <RubyVM::InstructionSequence:<compiled>@<compiled>>
1647 *
1648 * path = "test.rb"
1649 * RubyVM::InstructionSequence.compile_parsey(File.read(path), path, File.expand_path(path))
1650 * #=> <RubyVM::InstructionSequence:<compiled>@test.rb:1>
1651 *
1652 * file = File.open("test.rb")
1653 * RubyVM::InstructionSequence.compile_parsey(file)
1654 * #=> <RubyVM::InstructionSequence:<compiled>@<compiled>:1>
1655 *
1656 * path = File.expand_path("test.rb")
1657 * RubyVM::InstructionSequence.compile_parsey(File.read(path), path, path)
1658 * #=> <RubyVM::InstructionSequence:<compiled>@/absolute/path/to/test.rb:1>
1659 *
1660 */
1661static VALUE
1662iseqw_s_compile_parsey(int argc, VALUE *argv, VALUE self)
1663{
1664 return iseqw_s_compile_parser(argc, argv, self, false);
1665}
1666
1667/*
1668 * call-seq:
1669 * InstructionSequence.compile_prism(source[, file[, path[, line[, options]]]]) -> iseq
1670 *
1671 * Takes +source+, which can be a string of Ruby code, or an open +File+ object.
1672 * that contains Ruby source code. It parses and compiles using prism.
1673 *
1674 * Optionally takes +file+, +path+, and +line+ which describe the file path,
1675 * real path and first line number of the ruby code in +source+ which are
1676 * metadata attached to the returned +iseq+.
1677 *
1678 * +file+ is used for `__FILE__` and exception backtrace. +path+ is used for
1679 * +require_relative+ base. It is recommended these should be the same full
1680 * path.
1681 *
1682 * +options+, which can be +true+, +false+ or a +Hash+, is used to
1683 * modify the default behavior of the Ruby iseq compiler.
1684 *
1685 * For details regarding valid compile options see ::compile_option=.
1686 *
1687 * RubyVM::InstructionSequence.compile_prism("a = 1 + 2")
1688 * #=> <RubyVM::InstructionSequence:<compiled>@<compiled>>
1689 *
1690 * path = "test.rb"
1691 * RubyVM::InstructionSequence.compile_prism(File.read(path), path, File.expand_path(path))
1692 * #=> <RubyVM::InstructionSequence:<compiled>@test.rb:1>
1693 *
1694 * file = File.open("test.rb")
1695 * RubyVM::InstructionSequence.compile_prism(file)
1696 * #=> <RubyVM::InstructionSequence:<compiled>@<compiled>:1>
1697 *
1698 * path = File.expand_path("test.rb")
1699 * RubyVM::InstructionSequence.compile_prism(File.read(path), path, path)
1700 * #=> <RubyVM::InstructionSequence:<compiled>@/absolute/path/to/test.rb:1>
1701 *
1702 */
1703static VALUE
1704iseqw_s_compile_prism(int argc, VALUE *argv, VALUE self)
1705{
1706 return iseqw_s_compile_parser(argc, argv, self, true);
1707}
1708
1709/*
1710 * call-seq:
1711 * InstructionSequence.compile_file(file[, options]) -> iseq
1712 *
1713 * Takes +file+, a String with the location of a Ruby source file, reads,
1714 * parses and compiles the file, and returns +iseq+, the compiled
1715 * InstructionSequence with source location metadata set.
1716 *
1717 * Optionally takes +options+, which can be +true+, +false+ or a +Hash+, to
1718 * modify the default behavior of the Ruby iseq compiler.
1719 *
1720 * For details regarding valid compile options see ::compile_option=.
1721 *
1722 * # /tmp/hello.rb
1723 * puts "Hello, world!"
1724 *
1725 * # elsewhere
1726 * RubyVM::InstructionSequence.compile_file("/tmp/hello.rb")
1727 * #=> <RubyVM::InstructionSequence:<main>@/tmp/hello.rb>
1728 */
1729static VALUE
1730iseqw_s_compile_file(int argc, VALUE *argv, VALUE self)
1731{
1732 VALUE file, opt = Qnil;
1733 VALUE parser, f, exc = Qnil, ret;
1734 rb_ast_t *ast;
1735 VALUE ast_value;
1736 rb_compile_option_t option;
1737 int i;
1738
1739 i = rb_scan_args(argc, argv, "1*:", &file, NULL, &opt);
1740 if (i > 1+NIL_P(opt)) rb_error_arity(argc, 1, 2);
1741 switch (i) {
1742 case 2: opt = argv[--i];
1743 }
1744 FilePathValue(file);
1745 file = rb_fstring(file); /* rb_io_t->pathv gets frozen anyways */
1746
1747 f = rb_file_open_str(file, "r");
1748
1749 rb_execution_context_t *ec = GET_EC();
1750 VALUE v = rb_vm_push_frame_fname(ec, file);
1751
1752 parser = rb_parser_new();
1753 rb_parser_set_context(parser, NULL, FALSE);
1754 ast_value = rb_parser_load_file(parser, file);
1755 ast = rb_ruby_ast_data_get(ast_value);
1756 if (!ast->body.root) exc = GET_EC()->errinfo;
1757
1758 rb_io_close(f);
1759 if (!ast->body.root) {
1760 rb_ast_dispose(ast);
1761 rb_exc_raise(exc);
1762 }
1763
1764 make_compile_option(&option, opt);
1765
1766 ret = iseqw_new(rb_iseq_new_with_opt(ast_value, rb_fstring_lit("<main>"),
1767 file,
1768 rb_realpath_internal(Qnil, file, 1),
1769 1, NULL, 0, ISEQ_TYPE_TOP, &option,
1770 Qnil));
1771 rb_ast_dispose(ast);
1772 RB_GC_GUARD(ast_value);
1773
1774 rb_vm_pop_frame(ec);
1775 RB_GC_GUARD(v);
1776 return ret;
1777}
1778
1779/*
1780 * call-seq:
1781 * InstructionSequence.compile_file_prism(file[, options]) -> iseq
1782 *
1783 * Takes +file+, a String with the location of a Ruby source file, reads,
1784 * parses and compiles the file, and returns +iseq+, the compiled
1785 * InstructionSequence with source location metadata set. It parses and
1786 * compiles using prism.
1787 *
1788 * Optionally takes +options+, which can be +true+, +false+ or a +Hash+, to
1789 * modify the default behavior of the Ruby iseq compiler.
1790 *
1791 * For details regarding valid compile options see ::compile_option=.
1792 *
1793 * # /tmp/hello.rb
1794 * puts "Hello, world!"
1795 *
1796 * # elsewhere
1797 * RubyVM::InstructionSequence.compile_file_prism("/tmp/hello.rb")
1798 * #=> <RubyVM::InstructionSequence:<main>@/tmp/hello.rb>
1799 */
1800static VALUE
1801iseqw_s_compile_file_prism(int argc, VALUE *argv, VALUE self)
1802{
1803 VALUE file, opt = Qnil, ret;
1804 rb_compile_option_t option;
1805 int i;
1806
1807 i = rb_scan_args(argc, argv, "1*:", &file, NULL, &opt);
1808 if (i > 1+NIL_P(opt)) rb_error_arity(argc, 1, 2);
1809 switch (i) {
1810 case 2: opt = argv[--i];
1811 }
1812 FilePathValue(file);
1813 file = rb_fstring(file); /* rb_io_t->pathv gets frozen anyways */
1814
1815 rb_execution_context_t *ec = GET_EC();
1816 VALUE v = rb_vm_push_frame_fname(ec, file);
1817
1818 pm_parse_result_t result = { 0 };
1819 result.options.line = 1;
1820 result.node.coverage_enabled = 1;
1821
1822 VALUE script_lines;
1823 VALUE error = pm_load_parse_file(&result, file, ruby_vm_keep_script_lines ? &script_lines : NULL);
1824
1825 if (error == Qnil) {
1826 make_compile_option(&option, opt);
1827
1828 int error_state;
1829 rb_iseq_t *iseq = pm_iseq_new_with_opt(&result.node, rb_fstring_lit("<main>"),
1830 file,
1831 rb_realpath_internal(Qnil, file, 1),
1832 1, NULL, 0, ISEQ_TYPE_TOP, &option, &error_state);
1833
1834 pm_parse_result_free(&result);
1835
1836 if (error_state) {
1837 RUBY_ASSERT(iseq == NULL);
1838 rb_jump_tag(error_state);
1839 }
1840
1841 ret = iseqw_new(iseq);
1842 rb_vm_pop_frame(ec);
1843 RB_GC_GUARD(v);
1844 return ret;
1845 }
1846 else {
1847 pm_parse_result_free(&result);
1848 rb_vm_pop_frame(ec);
1849 RB_GC_GUARD(v);
1850 rb_exc_raise(error);
1851 }
1852}
1853
1854/*
1855 * call-seq:
1856 * InstructionSequence.compile_option = options
1857 *
1858 * Sets the default values for various optimizations in the Ruby iseq
1859 * compiler.
1860 *
1861 * Possible values for +options+ include +true+, which enables all options,
1862 * +false+ which disables all options, and +nil+ which leaves all options
1863 * unchanged.
1864 *
1865 * You can also pass a +Hash+ of +options+ that you want to change, any
1866 * options not present in the hash will be left unchanged.
1867 *
1868 * Possible option names (which are keys in +options+) which can be set to
1869 * +true+ or +false+ include:
1870 *
1871 * * +:inline_const_cache+
1872 * * +:instructions_unification+
1873 * * +:operands_unification+
1874 * * +:peephole_optimization+
1875 * * +:specialized_instruction+
1876 * * +:tailcall_optimization+
1877 *
1878 * Additionally, +:debug_level+ can be set to an integer.
1879 *
1880 * These default options can be overwritten for a single run of the iseq
1881 * compiler by passing any of the above values as the +options+ parameter to
1882 * ::new, ::compile and ::compile_file.
1883 */
1884static VALUE
1885iseqw_s_compile_option_set(VALUE self, VALUE opt)
1886{
1887 rb_compile_option_t option;
1888 make_compile_option(&option, opt);
1889 COMPILE_OPTION_DEFAULT = option;
1890 return opt;
1891}
1892
1893/*
1894 * call-seq:
1895 * InstructionSequence.compile_option -> options
1896 *
1897 * Returns a hash of default options used by the Ruby iseq compiler.
1898 *
1899 * For details, see InstructionSequence.compile_option=.
1900 */
1901static VALUE
1902iseqw_s_compile_option_get(VALUE self)
1903{
1904 return make_compile_option_value(&COMPILE_OPTION_DEFAULT);
1905}
1906
1907static const rb_iseq_t *
1908iseqw_check(VALUE iseqw)
1909{
1910 rb_iseq_t **iseq_ptr;
1911 TypedData_Get_Struct(iseqw, rb_iseq_t *, &iseqw_data_type, iseq_ptr);
1912 rb_iseq_t *iseq = *iseq_ptr;
1913
1914 if (!ISEQ_BODY(iseq)) {
1915 rb_ibf_load_iseq_complete(iseq);
1916 }
1917
1918 if (!ISEQ_BODY(iseq)->location.label) {
1919 rb_raise(rb_eTypeError, "uninitialized InstructionSequence");
1920 }
1921 return iseq;
1922}
1923
1924const rb_iseq_t *
1925rb_iseqw_to_iseq(VALUE iseqw)
1926{
1927 return iseqw_check(iseqw);
1928}
1929
1930/*
1931 * call-seq:
1932 * iseq.eval -> obj
1933 *
1934 * Evaluates the instruction sequence and returns the result.
1935 *
1936 * RubyVM::InstructionSequence.compile("1 + 2").eval #=> 3
1937 */
1938static VALUE
1939iseqw_eval(VALUE self)
1940{
1941 const rb_iseq_t *iseq = iseqw_check(self);
1942 if (0 == ISEQ_BODY(iseq)->iseq_size) {
1943 rb_raise(rb_eTypeError, "attempt to evaluate dummy InstructionSequence");
1944 }
1945 return rb_iseq_eval(iseq);
1946}
1947
1948/*
1949 * Returns a human-readable string representation of this instruction
1950 * sequence, including the #label and #path.
1951 */
1952static VALUE
1953iseqw_inspect(VALUE self)
1954{
1955 const rb_iseq_t *iseq = iseqw_check(self);
1956 const struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
1957 VALUE klass = rb_class_name(rb_obj_class(self));
1958
1959 if (!body->location.label) {
1960 return rb_sprintf("#<%"PRIsVALUE": uninitialized>", klass);
1961 }
1962 else {
1963 return rb_sprintf("<%"PRIsVALUE":%"PRIsVALUE"@%"PRIsVALUE":%d>",
1964 klass,
1965 body->location.label, rb_iseq_path(iseq),
1966 FIX2INT(rb_iseq_first_lineno(iseq)));
1967 }
1968}
1969
1970/*
1971 * Returns the path of this instruction sequence.
1972 *
1973 * <code><compiled></code> if the iseq was evaluated from a string.
1974 *
1975 * For example, using irb:
1976 *
1977 * iseq = RubyVM::InstructionSequence.compile('num = 1 + 2')
1978 * #=> <RubyVM::InstructionSequence:<compiled>@<compiled>>
1979 * iseq.path
1980 * #=> "<compiled>"
1981 *
1982 * Using ::compile_file:
1983 *
1984 * # /tmp/method.rb
1985 * def hello
1986 * puts "hello, world"
1987 * end
1988 *
1989 * # in irb
1990 * > iseq = RubyVM::InstructionSequence.compile_file('/tmp/method.rb')
1991 * > iseq.path #=> /tmp/method.rb
1992 */
1993static VALUE
1994iseqw_path(VALUE self)
1995{
1996 return rb_iseq_path(iseqw_check(self));
1997}
1998
1999/*
2000 * Returns the absolute path of this instruction sequence.
2001 *
2002 * +nil+ if the iseq was evaluated from a string.
2003 *
2004 * For example, using ::compile_file:
2005 *
2006 * # /tmp/method.rb
2007 * def hello
2008 * puts "hello, world"
2009 * end
2010 *
2011 * # in irb
2012 * > iseq = RubyVM::InstructionSequence.compile_file('/tmp/method.rb')
2013 * > iseq.absolute_path #=> /tmp/method.rb
2014 */
2015static VALUE
2016iseqw_absolute_path(VALUE self)
2017{
2018 return rb_iseq_realpath(iseqw_check(self));
2019}
2020
2021/* Returns the label of this instruction sequence.
2022 *
2023 * <code><main></code> if it's at the top level, <code><compiled></code> if it
2024 * was evaluated from a string.
2025 *
2026 * For example, using irb:
2027 *
2028 * iseq = RubyVM::InstructionSequence.compile('num = 1 + 2')
2029 * #=> <RubyVM::InstructionSequence:<compiled>@<compiled>>
2030 * iseq.label
2031 * #=> "<compiled>"
2032 *
2033 * Using ::compile_file:
2034 *
2035 * # /tmp/method.rb
2036 * def hello
2037 * puts "hello, world"
2038 * end
2039 *
2040 * # in irb
2041 * > iseq = RubyVM::InstructionSequence.compile_file('/tmp/method.rb')
2042 * > iseq.label #=> <main>
2043 */
2044static VALUE
2045iseqw_label(VALUE self)
2046{
2047 return rb_iseq_label(iseqw_check(self));
2048}
2049
2050/* Returns the base label of this instruction sequence.
2051 *
2052 * For example, using irb:
2053 *
2054 * iseq = RubyVM::InstructionSequence.compile('num = 1 + 2')
2055 * #=> <RubyVM::InstructionSequence:<compiled>@<compiled>>
2056 * iseq.base_label
2057 * #=> "<compiled>"
2058 *
2059 * Using ::compile_file:
2060 *
2061 * # /tmp/method.rb
2062 * def hello
2063 * puts "hello, world"
2064 * end
2065 *
2066 * # in irb
2067 * > iseq = RubyVM::InstructionSequence.compile_file('/tmp/method.rb')
2068 * > iseq.base_label #=> <main>
2069 */
2070static VALUE
2071iseqw_base_label(VALUE self)
2072{
2073 return rb_iseq_base_label(iseqw_check(self));
2074}
2075
2076/* Returns the number of the first source line where the instruction sequence
2077 * was loaded from.
2078 *
2079 * For example, using irb:
2080 *
2081 * iseq = RubyVM::InstructionSequence.compile('num = 1 + 2')
2082 * #=> <RubyVM::InstructionSequence:<compiled>@<compiled>>
2083 * iseq.first_lineno
2084 * #=> 1
2085 */
2086static VALUE
2087iseqw_first_lineno(VALUE self)
2088{
2089 return rb_iseq_first_lineno(iseqw_check(self));
2090}
2091
2092static VALUE iseq_data_to_ary(const rb_iseq_t *iseq);
2093
2094/*
2095 * call-seq:
2096 * iseq.to_a -> ary
2097 *
2098 * Returns an Array with 14 elements representing the instruction sequence
2099 * with the following data:
2100 *
2101 * [magic]
2102 * A string identifying the data format. <b>Always
2103 * +YARVInstructionSequence/SimpleDataFormat+.</b>
2104 *
2105 * [major_version]
2106 * The major version of the instruction sequence.
2107 *
2108 * [minor_version]
2109 * The minor version of the instruction sequence.
2110 *
2111 * [format_type]
2112 * A number identifying the data format. <b>Always 1</b>.
2113 *
2114 * [misc]
2115 * A hash containing:
2116 *
2117 * [+:arg_size+]
2118 * the total number of arguments taken by the method or the block (0 if
2119 * _iseq_ doesn't represent a method or block)
2120 * [+:local_size+]
2121 * the number of local variables + 1
2122 * [+:stack_max+]
2123 * used in calculating the stack depth at which a SystemStackError is
2124 * thrown.
2125 *
2126 * [#label]
2127 * The name of the context (block, method, class, module, etc.) that this
2128 * instruction sequence belongs to.
2129 *
2130 * <code><main></code> if it's at the top level, <code><compiled></code> if
2131 * it was evaluated from a string.
2132 *
2133 * [#path]
2134 * The relative path to the Ruby file where the instruction sequence was
2135 * loaded from.
2136 *
2137 * <code><compiled></code> if the iseq was evaluated from a string.
2138 *
2139 * [#absolute_path]
2140 * The absolute path to the Ruby file where the instruction sequence was
2141 * loaded from.
2142 *
2143 * +nil+ if the iseq was evaluated from a string.
2144 *
2145 * [#first_lineno]
2146 * The number of the first source line where the instruction sequence was
2147 * loaded from.
2148 *
2149 * [type]
2150 * The type of the instruction sequence.
2151 *
2152 * Valid values are +:top+, +:method+, +:block+, +:class+, +:rescue+,
2153 * +:ensure+, +:eval+, +:main+, and +plain+.
2154 *
2155 * [locals]
2156 * An array containing the names of all arguments and local variables as
2157 * symbols.
2158 *
2159 * [params]
2160 * An Hash object containing parameter information.
2161 *
2162 * More info about these values can be found in +vm_core.h+.
2163 *
2164 * [catch_table]
2165 * A list of exceptions and control flow operators (rescue, next, redo,
2166 * break, etc.).
2167 *
2168 * [bytecode]
2169 * An array of arrays containing the instruction names and operands that
2170 * make up the body of the instruction sequence.
2171 *
2172 * Note that this format is MRI specific and version dependent.
2173 *
2174 */
2175static VALUE
2176iseqw_to_a(VALUE self)
2177{
2178 const rb_iseq_t *iseq = iseqw_check(self);
2179 return iseq_data_to_ary(iseq);
2180}
2181
2182#if VM_INSN_INFO_TABLE_IMPL == 1 /* binary search */
2183static const struct iseq_insn_info_entry *
2184get_insn_info_binary_search(const rb_iseq_t *iseq, size_t pos)
2185{
2186 const struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
2187 size_t size = body->insns_info.size;
2188 const struct iseq_insn_info_entry *insns_info = body->insns_info.body;
2189 const unsigned int *positions = body->insns_info.positions;
2190 const int debug = 0;
2191
2192 if (debug) {
2193 printf("size: %"PRIuSIZE"\n", size);
2194 printf("insns_info[%"PRIuSIZE"]: position: %d, line: %d, pos: %"PRIuSIZE"\n",
2195 (size_t)0, positions[0], insns_info[0].line_no, pos);
2196 }
2197
2198 if (size == 0) {
2199 return NULL;
2200 }
2201 else if (size == 1) {
2202 return &insns_info[0];
2203 }
2204 else {
2205 size_t l = 1, r = size - 1;
2206 while (l <= r) {
2207 size_t m = l + (r - l) / 2;
2208 if (positions[m] == pos) {
2209 return &insns_info[m];
2210 }
2211 if (positions[m] < pos) {
2212 l = m + 1;
2213 }
2214 else {
2215 r = m - 1;
2216 }
2217 }
2218 if (l >= size) {
2219 return &insns_info[size-1];
2220 }
2221 if (positions[l] > pos) {
2222 return &insns_info[l-1];
2223 }
2224 return &insns_info[l];
2225 }
2226}
2227
2228static const struct iseq_insn_info_entry *
2229get_insn_info(const rb_iseq_t *iseq, size_t pos)
2230{
2231 return get_insn_info_binary_search(iseq, pos);
2232}
2233#endif
2234
2235#if VM_INSN_INFO_TABLE_IMPL == 2 /* succinct bitvector */
2236static const struct iseq_insn_info_entry *
2237get_insn_info_succinct_bitvector(const rb_iseq_t *iseq, size_t pos)
2238{
2239 const struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
2240 size_t size = body->insns_info.size;
2241 const struct iseq_insn_info_entry *insns_info = body->insns_info.body;
2242 const int debug = 0;
2243
2244 if (debug) {
2245#if VM_CHECK_MODE > 0
2246 const unsigned int *positions = body->insns_info.positions;
2247 printf("size: %"PRIuSIZE"\n", size);
2248 printf("insns_info[%"PRIuSIZE"]: position: %d, line: %d, pos: %"PRIuSIZE"\n",
2249 (size_t)0, positions[0], insns_info[0].line_no, pos);
2250#else
2251 printf("size: %"PRIuSIZE"\n", size);
2252 printf("insns_info[%"PRIuSIZE"]: line: %d, pos: %"PRIuSIZE"\n",
2253 (size_t)0, insns_info[0].line_no, pos);
2254#endif
2255 }
2256
2257 if (size == 0) {
2258 return NULL;
2259 }
2260 else if (size == 1) {
2261 return &insns_info[0];
2262 }
2263 else {
2264 int index;
2265 VM_ASSERT(body->insns_info.succ_index_table != NULL);
2266 index = succ_index_lookup(body->insns_info.succ_index_table, (int)pos);
2267 return &insns_info[index-1];
2268 }
2269}
2270
2271static const struct iseq_insn_info_entry *
2272get_insn_info(const rb_iseq_t *iseq, size_t pos)
2273{
2274 return get_insn_info_succinct_bitvector(iseq, pos);
2275}
2276#endif
2277
2278#if VM_CHECK_MODE > 0 || VM_INSN_INFO_TABLE_IMPL == 0
2279static const struct iseq_insn_info_entry *
2280get_insn_info_linear_search(const rb_iseq_t *iseq, size_t pos)
2281{
2282 const struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
2283 size_t i = 0, size = body->insns_info.size;
2284 const struct iseq_insn_info_entry *insns_info = body->insns_info.body;
2285 const unsigned int *positions = body->insns_info.positions;
2286 const int debug = 0;
2287
2288 if (debug) {
2289 printf("size: %"PRIuSIZE"\n", size);
2290 printf("insns_info[%"PRIuSIZE"]: position: %d, line: %d, pos: %"PRIuSIZE"\n",
2291 i, positions[i], insns_info[i].line_no, pos);
2292 }
2293
2294 if (size == 0) {
2295 return NULL;
2296 }
2297 else if (size == 1) {
2298 return &insns_info[0];
2299 }
2300 else {
2301 for (i=1; i<size; i++) {
2302 if (debug) printf("insns_info[%"PRIuSIZE"]: position: %d, line: %d, pos: %"PRIuSIZE"\n",
2303 i, positions[i], insns_info[i].line_no, pos);
2304
2305 if (positions[i] == pos) {
2306 return &insns_info[i];
2307 }
2308 if (positions[i] > pos) {
2309 return &insns_info[i-1];
2310 }
2311 }
2312 }
2313 return &insns_info[i-1];
2314}
2315#endif
2316
2317#if VM_INSN_INFO_TABLE_IMPL == 0 /* linear search */
2318static const struct iseq_insn_info_entry *
2319get_insn_info(const rb_iseq_t *iseq, size_t pos)
2320{
2321 return get_insn_info_linear_search(iseq, pos);
2322}
2323#endif
2324
2325#if VM_CHECK_MODE > 0 && VM_INSN_INFO_TABLE_IMPL > 0
2326static void
2327validate_get_insn_info(const rb_iseq_t *iseq)
2328{
2329 const struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
2330 size_t i;
2331 for (i = 0; i < body->iseq_size; i++) {
2332 if (get_insn_info_linear_search(iseq, i) != get_insn_info(iseq, i)) {
2333 rb_bug("validate_get_insn_info: get_insn_info_linear_search(iseq, %"PRIuSIZE") != get_insn_info(iseq, %"PRIuSIZE")", i, i);
2334 }
2335 }
2336}
2337#endif
2338
2339unsigned int
2340rb_iseq_line_no(const rb_iseq_t *iseq, size_t pos)
2341{
2342 const struct iseq_insn_info_entry *entry = get_insn_info(iseq, pos);
2343
2344 if (entry) {
2345 return entry->line_no;
2346 }
2347 else {
2348 return 0;
2349 }
2350}
2351
2352#ifdef USE_ISEQ_NODE_ID
2353int
2354rb_iseq_node_id(const rb_iseq_t *iseq, size_t pos)
2355{
2356 const struct iseq_insn_info_entry *entry = get_insn_info(iseq, pos);
2357
2358 if (entry) {
2359 return entry->node_id;
2360 }
2361 else {
2362 return 0;
2363 }
2364}
2365#endif
2366
2368rb_iseq_event_flags(const rb_iseq_t *iseq, size_t pos)
2369{
2370 const struct iseq_insn_info_entry *entry = get_insn_info(iseq, pos);
2371 if (entry) {
2372 return entry->events;
2373 }
2374 else {
2375 return 0;
2376 }
2377}
2378
2379// Clear tracing event flags and turn off tracing for a given instruction as needed.
2380// This is currently used after updating a one-shot line coverage for the current instruction.
2381void
2382rb_iseq_clear_event_flags(const rb_iseq_t *iseq, size_t pos, rb_event_flag_t reset)
2383{
2384 struct iseq_insn_info_entry *entry = (struct iseq_insn_info_entry *)get_insn_info(iseq, pos);
2385 if (entry) {
2386 entry->events &= ~reset;
2387 if (!(entry->events & iseq->aux.exec.global_trace_events)) {
2388 void rb_iseq_trace_flag_cleared(const rb_iseq_t *iseq, size_t pos);
2389 rb_iseq_trace_flag_cleared(iseq, pos);
2390 }
2391 }
2392}
2393
2394static VALUE
2395local_var_name(const rb_iseq_t *diseq, VALUE level, VALUE op)
2396{
2397 VALUE i;
2398 VALUE name;
2399 ID lid;
2400 int idx;
2401
2402 for (i = 0; i < level; i++) {
2403 diseq = ISEQ_BODY(diseq)->parent_iseq;
2404 }
2405 idx = ISEQ_BODY(diseq)->local_table_size - (int)op - 1;
2406 lid = ISEQ_BODY(diseq)->local_table[idx];
2407 name = rb_id2str(lid);
2408 if (!name) {
2409 name = rb_str_new_cstr("?");
2410 }
2411 else if (!rb_is_local_id(lid)) {
2412 name = rb_str_inspect(name);
2413 }
2414 else {
2415 name = rb_str_dup(name);
2416 }
2417 rb_str_catf(name, "@%d", idx);
2418 return name;
2419}
2420
2421int rb_insn_unified_local_var_level(VALUE);
2422VALUE rb_dump_literal(VALUE lit);
2423
2424VALUE
2425rb_insn_operand_intern(const rb_iseq_t *iseq,
2426 VALUE insn, int op_no, VALUE op,
2427 int len, size_t pos, const VALUE *pnop, VALUE child)
2428{
2429 const char *types = insn_op_types(insn);
2430 char type = types[op_no];
2431 VALUE ret = Qundef;
2432
2433 switch (type) {
2434 case TS_OFFSET: /* LONG */
2435 ret = rb_sprintf("%"PRIdVALUE, (VALUE)(pos + len + op));
2436 break;
2437
2438 case TS_NUM: /* ULONG */
2439 if (insn == BIN(defined) && op_no == 0) {
2440 enum defined_type deftype = (enum defined_type)op;
2441 switch (deftype) {
2442 case DEFINED_FUNC:
2443 ret = rb_fstring_lit("func");
2444 break;
2445 case DEFINED_REF:
2446 ret = rb_fstring_lit("ref");
2447 break;
2448 case DEFINED_CONST_FROM:
2449 ret = rb_fstring_lit("constant-from");
2450 break;
2451 default:
2452 ret = rb_iseq_defined_string(deftype);
2453 break;
2454 }
2455 if (ret) break;
2456 }
2457 else if (insn == BIN(checktype) && op_no == 0) {
2458 const char *type_str = rb_type_str((enum ruby_value_type)op);
2459 if (type_str) {
2460 ret = rb_str_new_cstr(type_str); break;
2461 }
2462 }
2463 ret = rb_sprintf("%"PRIuVALUE, op);
2464 break;
2465
2466 case TS_LINDEX:{
2467 int level;
2468 if (types[op_no+1] == TS_NUM && pnop) {
2469 ret = local_var_name(iseq, *pnop, op - VM_ENV_DATA_SIZE);
2470 }
2471 else if ((level = rb_insn_unified_local_var_level(insn)) >= 0) {
2472 ret = local_var_name(iseq, (VALUE)level, op - VM_ENV_DATA_SIZE);
2473 }
2474 else {
2475 ret = rb_inspect(INT2FIX(op));
2476 }
2477 break;
2478 }
2479 case TS_ID: /* ID (symbol) */
2480 ret = rb_inspect(ID2SYM(op));
2481 break;
2482
2483 case TS_VALUE: /* VALUE */
2484 op = obj_resurrect(op);
2485 if (insn == BIN(defined) && op_no == 1 && FIXNUM_P(op)) {
2486 /* should be DEFINED_REF */
2487 int type = NUM2INT(op);
2488 if (type) {
2489 if (type & 1) {
2490 ret = rb_sprintf(":$%c", (type >> 1));
2491 }
2492 else {
2493 ret = rb_sprintf(":$%d", (type >> 1));
2494 }
2495 break;
2496 }
2497 }
2498 ret = rb_dump_literal(op);
2499 if (CLASS_OF(op) == rb_cISeq) {
2500 if (child) {
2501 rb_ary_push(child, op);
2502 }
2503 }
2504 break;
2505
2506 case TS_ISEQ: /* iseq */
2507 {
2508 if (op) {
2509 const rb_iseq_t *iseq = rb_iseq_check((rb_iseq_t *)op);
2510 ret = ISEQ_BODY(iseq)->location.label;
2511 if (child) {
2512 rb_ary_push(child, (VALUE)iseq);
2513 }
2514 }
2515 else {
2516 ret = rb_str_new2("nil");
2517 }
2518 break;
2519 }
2520
2521 case TS_IC:
2522 {
2523 ret = rb_sprintf("<ic:%"PRIdPTRDIFF" ", (union iseq_inline_storage_entry *)op - ISEQ_BODY(iseq)->is_entries);
2524 const ID *segments = ((IC)op)->segments;
2525 rb_str_cat2(ret, rb_id2name(*segments++));
2526 while (*segments) {
2527 rb_str_catf(ret, "::%s", rb_id2name(*segments++));
2528 }
2529 rb_str_cat2(ret, ">");
2530 }
2531 break;
2532 case TS_IVC:
2533 case TS_ICVARC:
2534 case TS_ISE:
2535 ret = rb_sprintf("<is:%"PRIdPTRDIFF">", (union iseq_inline_storage_entry *)op - ISEQ_BODY(iseq)->is_entries);
2536 break;
2537
2538 case TS_CALLDATA:
2539 {
2540 struct rb_call_data *cd = (struct rb_call_data *)op;
2541 const struct rb_callinfo *ci = cd->ci;
2542 VALUE ary = rb_ary_new();
2543 ID mid = vm_ci_mid(ci);
2544
2545 if (mid) {
2546 rb_ary_push(ary, rb_sprintf("mid:%"PRIsVALUE, rb_id2str(mid)));
2547 }
2548
2549 rb_ary_push(ary, rb_sprintf("argc:%d", vm_ci_argc(ci)));
2550
2551 if (vm_ci_flag(ci) & VM_CALL_KWARG) {
2552 const struct rb_callinfo_kwarg *kw_args = vm_ci_kwarg(ci);
2553 VALUE kw_ary = rb_ary_new_from_values(kw_args->keyword_len, kw_args->keywords);
2554 rb_ary_push(ary, rb_sprintf("kw:[%"PRIsVALUE"]", rb_ary_join(kw_ary, rb_str_new2(","))));
2555 }
2556
2557 if (vm_ci_flag(ci)) {
2558 VALUE flags = rb_ary_new();
2559# define CALL_FLAG(n) if (vm_ci_flag(ci) & VM_CALL_##n) rb_ary_push(flags, rb_str_new2(#n))
2560 CALL_FLAG(ARGS_SPLAT);
2561 CALL_FLAG(ARGS_SPLAT_MUT);
2562 CALL_FLAG(ARGS_BLOCKARG);
2563 CALL_FLAG(FCALL);
2564 CALL_FLAG(VCALL);
2565 CALL_FLAG(ARGS_SIMPLE);
2566 CALL_FLAG(TAILCALL);
2567 CALL_FLAG(SUPER);
2568 CALL_FLAG(ZSUPER);
2569 CALL_FLAG(KWARG);
2570 CALL_FLAG(KW_SPLAT);
2571 CALL_FLAG(KW_SPLAT_MUT);
2572 CALL_FLAG(FORWARDING);
2573 CALL_FLAG(OPT_SEND); /* maybe not reachable */
2574 rb_ary_push(ary, rb_ary_join(flags, rb_str_new2("|")));
2575 }
2576
2577 ret = rb_sprintf("<calldata!%"PRIsVALUE">", rb_ary_join(ary, rb_str_new2(", ")));
2578 }
2579 break;
2580
2581 case TS_CDHASH:
2582 ret = rb_str_new2("<cdhash>");
2583 break;
2584
2585 case TS_FUNCPTR:
2586 {
2587#ifdef HAVE_DLADDR
2588 Dl_info info;
2589 if (dladdr((void *)op, &info) && info.dli_sname) {
2590 ret = rb_str_new_cstr(info.dli_sname);
2591 break;
2592 }
2593#endif
2594 ret = rb_str_new2("<funcptr>");
2595 }
2596 break;
2597
2598 case TS_BUILTIN:
2599 {
2600 const struct rb_builtin_function *bf = (const struct rb_builtin_function *)op;
2601 ret = rb_sprintf("<builtin!%s/%d>",
2602 bf->name, bf->argc);
2603 }
2604 break;
2605
2606 default:
2607 rb_bug("unknown operand type: %c", type);
2608 }
2609 return ret;
2610}
2611
2612static VALUE
2613right_strip(VALUE str)
2614{
2615 const char *beg = RSTRING_PTR(str), *end = RSTRING_END(str);
2616 while (end-- > beg && *end == ' ');
2617 rb_str_set_len(str, end - beg + 1);
2618 return str;
2619}
2620
2625int
2626rb_iseq_disasm_insn(VALUE ret, const VALUE *code, size_t pos,
2627 const rb_iseq_t *iseq, VALUE child)
2628{
2629 VALUE insn = code[pos];
2630 int len = insn_len(insn);
2631 int j;
2632 const char *types = insn_op_types(insn);
2633 VALUE str = rb_str_new(0, 0);
2634 const char *insn_name_buff;
2635
2636 insn_name_buff = insn_name(insn);
2637 if (1) {
2638 extern const int rb_vm_max_insn_name_size;
2639 rb_str_catf(str, "%04"PRIuSIZE" %-*s ", pos, rb_vm_max_insn_name_size, insn_name_buff);
2640 }
2641 else {
2642 rb_str_catf(str, "%04"PRIuSIZE" %-28.*s ", pos,
2643 (int)strcspn(insn_name_buff, "_"), insn_name_buff);
2644 }
2645
2646 for (j = 0; types[j]; j++) {
2647 VALUE opstr = rb_insn_operand_intern(iseq, insn, j, code[pos + j + 1],
2648 len, pos, &code[pos + j + 2],
2649 child);
2650 rb_str_concat(str, opstr);
2651
2652 if (types[j + 1]) {
2653 rb_str_cat2(str, ", ");
2654 }
2655 }
2656
2657 {
2658 unsigned int line_no = rb_iseq_line_no(iseq, pos);
2659 unsigned int prev = pos == 0 ? 0 : rb_iseq_line_no(iseq, pos - 1);
2660 if (line_no && line_no != prev) {
2661 long slen = RSTRING_LEN(str);
2662 slen = (slen > 70) ? 0 : (70 - slen);
2663 str = rb_str_catf(str, "%*s(%4d)", (int)slen, "", line_no);
2664 }
2665 }
2666
2667 {
2668 rb_event_flag_t events = rb_iseq_event_flags(iseq, pos);
2669 if (events) {
2670 str = rb_str_catf(str, "[%s%s%s%s%s%s%s%s%s%s%s%s]",
2671 events & RUBY_EVENT_LINE ? "Li" : "",
2672 events & RUBY_EVENT_CLASS ? "Cl" : "",
2673 events & RUBY_EVENT_END ? "En" : "",
2674 events & RUBY_EVENT_CALL ? "Ca" : "",
2675 events & RUBY_EVENT_RETURN ? "Re" : "",
2676 events & RUBY_EVENT_C_CALL ? "Cc" : "",
2677 events & RUBY_EVENT_C_RETURN ? "Cr" : "",
2678 events & RUBY_EVENT_B_CALL ? "Bc" : "",
2679 events & RUBY_EVENT_B_RETURN ? "Br" : "",
2680 events & RUBY_EVENT_RESCUE ? "Rs" : "",
2681 events & RUBY_EVENT_COVERAGE_LINE ? "Cli" : "",
2682 events & RUBY_EVENT_COVERAGE_BRANCH ? "Cbr" : "");
2683 }
2684 }
2685
2686 right_strip(str);
2687 if (ret) {
2688 rb_str_cat2(str, "\n");
2689 rb_str_concat(ret, str);
2690 }
2691 else {
2692 printf("%.*s\n", (int)RSTRING_LEN(str), RSTRING_PTR(str));
2693 }
2694 return len;
2695}
2696
2697static const char *
2698catch_type(int type)
2699{
2700 switch (type) {
2701 case CATCH_TYPE_RESCUE:
2702 return "rescue";
2703 case CATCH_TYPE_ENSURE:
2704 return "ensure";
2705 case CATCH_TYPE_RETRY:
2706 return "retry";
2707 case CATCH_TYPE_BREAK:
2708 return "break";
2709 case CATCH_TYPE_REDO:
2710 return "redo";
2711 case CATCH_TYPE_NEXT:
2712 return "next";
2713 default:
2714 rb_bug("unknown catch type: %d", type);
2715 return 0;
2716 }
2717}
2718
2719static VALUE
2720iseq_inspect(const rb_iseq_t *iseq)
2721{
2722 const struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
2723 if (!body->location.label) {
2724 return rb_sprintf("#<ISeq: uninitialized>");
2725 }
2726 else {
2727 const rb_code_location_t *loc = &body->location.code_location;
2728 return rb_sprintf("#<ISeq:%"PRIsVALUE"@%"PRIsVALUE":%d (%d,%d)-(%d,%d)>",
2729 body->location.label, rb_iseq_path(iseq),
2730 loc->beg_pos.lineno,
2731 loc->beg_pos.lineno,
2732 loc->beg_pos.column,
2733 loc->end_pos.lineno,
2734 loc->end_pos.column);
2735 }
2736}
2737
2738static const rb_data_type_t tmp_set = {
2739 "tmpset",
2740 {(void (*)(void *))rb_mark_set, (void (*)(void *))st_free_table, 0, 0,},
2741 0, 0, RUBY_TYPED_FREE_IMMEDIATELY
2742};
2743
2744static VALUE
2745rb_iseq_disasm_recursive(const rb_iseq_t *iseq, VALUE indent)
2746{
2747 const struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
2748 VALUE *code;
2749 VALUE str = rb_str_new(0, 0);
2750 VALUE child = rb_ary_hidden_new(3);
2751 unsigned int size;
2752 unsigned int i;
2753 long l;
2754 size_t n;
2755 enum {header_minlen = 72};
2756 st_table *done_iseq = 0;
2757 VALUE done_iseq_wrapper = Qnil;
2758 const char *indent_str;
2759 long indent_len;
2760
2761 size = body->iseq_size;
2762
2763 indent_len = RSTRING_LEN(indent);
2764 indent_str = RSTRING_PTR(indent);
2765
2766 rb_str_cat(str, indent_str, indent_len);
2767 rb_str_cat2(str, "== disasm: ");
2768
2769 rb_str_append(str, iseq_inspect(iseq));
2770 if ((l = RSTRING_LEN(str) - indent_len) < header_minlen) {
2771 rb_str_modify_expand(str, header_minlen - l);
2772 memset(RSTRING_END(str), '=', header_minlen - l);
2773 }
2774 if (iseq->body->builtin_attrs) {
2775#define disasm_builtin_attr(str, iseq, attr) \
2776 if (iseq->body->builtin_attrs & BUILTIN_ATTR_ ## attr) { \
2777 rb_str_cat2(str, " " #attr); \
2778 }
2779 disasm_builtin_attr(str, iseq, LEAF);
2780 disasm_builtin_attr(str, iseq, SINGLE_NOARG_LEAF);
2781 disasm_builtin_attr(str, iseq, INLINE_BLOCK);
2782 disasm_builtin_attr(str, iseq, C_TRACE);
2783 }
2784 rb_str_cat2(str, "\n");
2785
2786 /* show catch table information */
2787 if (body->catch_table) {
2788 rb_str_cat(str, indent_str, indent_len);
2789 rb_str_cat2(str, "== catch table\n");
2790 }
2791 if (body->catch_table) {
2792 rb_str_cat_cstr(indent, "| ");
2793 indent_str = RSTRING_PTR(indent);
2794 for (i = 0; i < body->catch_table->size; i++) {
2795 const struct iseq_catch_table_entry *entry =
2796 UNALIGNED_MEMBER_PTR(body->catch_table, entries[i]);
2797 rb_str_cat(str, indent_str, indent_len);
2798 rb_str_catf(str,
2799 "| catch type: %-6s st: %04d ed: %04d sp: %04d cont: %04d\n",
2800 catch_type((int)entry->type), (int)entry->start,
2801 (int)entry->end, (int)entry->sp, (int)entry->cont);
2802 if (entry->iseq && !(done_iseq && st_is_member(done_iseq, (st_data_t)entry->iseq))) {
2803 rb_str_concat(str, rb_iseq_disasm_recursive(rb_iseq_check(entry->iseq), indent));
2804 if (!done_iseq) {
2805 done_iseq = st_init_numtable();
2806 done_iseq_wrapper = TypedData_Wrap_Struct(0, &tmp_set, done_iseq);
2807 }
2808 st_insert(done_iseq, (st_data_t)entry->iseq, (st_data_t)0);
2809 indent_str = RSTRING_PTR(indent);
2810 }
2811 }
2812 rb_str_resize(indent, indent_len);
2813 indent_str = RSTRING_PTR(indent);
2814 }
2815 if (body->catch_table) {
2816 rb_str_cat(str, indent_str, indent_len);
2817 rb_str_cat2(str, "|-------------------------------------"
2818 "-----------------------------------\n");
2819 }
2820
2821 /* show local table information */
2822 if (body->local_table) {
2823 const struct rb_iseq_param_keyword *const keyword = body->param.keyword;
2824 rb_str_cat(str, indent_str, indent_len);
2825 rb_str_catf(str,
2826 "local table (size: %d, argc: %d "
2827 "[opts: %d, rest: %d, post: %d, block: %d, kw: %d@%d, kwrest: %d])\n",
2828 body->local_table_size,
2829 body->param.lead_num,
2830 body->param.opt_num,
2831 body->param.flags.has_rest ? body->param.rest_start : -1,
2832 body->param.post_num,
2833 body->param.flags.has_block ? body->param.block_start : -1,
2834 body->param.flags.has_kw ? keyword->num : -1,
2835 body->param.flags.has_kw ? keyword->required_num : -1,
2836 body->param.flags.has_kwrest ? keyword->rest_start : -1);
2837
2838 for (i = body->local_table_size; i > 0;) {
2839 int li = body->local_table_size - --i - 1;
2840 long width;
2841 VALUE name = local_var_name(iseq, 0, i);
2842 char argi[0x100];
2843 char opti[0x100];
2844
2845 opti[0] = '\0';
2846 if (body->param.flags.has_opt) {
2847 int argc = body->param.lead_num;
2848 int opts = body->param.opt_num;
2849 if (li >= argc && li < argc + opts) {
2850 snprintf(opti, sizeof(opti), "Opt=%"PRIdVALUE,
2851 body->param.opt_table[li - argc]);
2852 }
2853 }
2854
2855 snprintf(argi, sizeof(argi), "%s%s%s%s%s%s", /* arg, opts, rest, post, kwrest, block */
2856 (body->param.lead_num > li) ? (body->param.flags.ambiguous_param0 ? "AmbiguousArg" : "Arg") : "",
2857 opti,
2858 (body->param.flags.has_rest && body->param.rest_start == li) ? (body->param.flags.anon_rest ? "AnonRest" : "Rest") : "",
2859 (body->param.flags.has_post && body->param.post_start <= li && li < body->param.post_start + body->param.post_num) ? "Post" : "",
2860 (body->param.flags.has_kwrest && keyword->rest_start == li) ? (body->param.flags.anon_kwrest ? "AnonKwrest" : "Kwrest") : "",
2861 (body->param.flags.has_block && body->param.block_start == li) ? "Block" : "");
2862
2863 rb_str_cat(str, indent_str, indent_len);
2864 rb_str_catf(str, "[%2d] ", i + 1);
2865 width = RSTRING_LEN(str) + 11;
2866 rb_str_append(str, name);
2867 if (*argi) rb_str_catf(str, "<%s>", argi);
2868 if ((width -= RSTRING_LEN(str)) > 0) rb_str_catf(str, "%*s", (int)width, "");
2869 }
2870 rb_str_cat_cstr(right_strip(str), "\n");
2871 }
2872
2873 /* show each line */
2874 code = rb_iseq_original_iseq(iseq);
2875 for (n = 0; n < size;) {
2876 rb_str_cat(str, indent_str, indent_len);
2877 n += rb_iseq_disasm_insn(str, code, n, iseq, child);
2878 }
2879
2880 for (l = 0; l < RARRAY_LEN(child); l++) {
2881 VALUE isv = rb_ary_entry(child, l);
2882 if (done_iseq && st_is_member(done_iseq, (st_data_t)isv)) continue;
2883 rb_str_cat_cstr(str, "\n");
2884 rb_str_concat(str, rb_iseq_disasm_recursive(rb_iseq_check((rb_iseq_t *)isv), indent));
2885 indent_str = RSTRING_PTR(indent);
2886 }
2887 RB_GC_GUARD(done_iseq_wrapper);
2888
2889 return str;
2890}
2891
2892VALUE
2893rb_iseq_disasm(const rb_iseq_t *iseq)
2894{
2895 VALUE str = rb_iseq_disasm_recursive(iseq, rb_str_new(0, 0));
2896 rb_str_resize(str, RSTRING_LEN(str));
2897 return str;
2898}
2899
2900/*
2901 * Estimates the number of instance variables that will be set on
2902 * a given `class` with the initialize method defined in
2903 * `initialize_iseq`
2904 */
2905attr_index_t
2906rb_estimate_iv_count(VALUE klass, const rb_iseq_t * initialize_iseq)
2907{
2908 struct rb_id_table * iv_names = rb_id_table_create(0);
2909
2910 for (unsigned int i = 0; i < ISEQ_BODY(initialize_iseq)->ivc_size; i++) {
2911 IVC cache = (IVC)&ISEQ_BODY(initialize_iseq)->is_entries[i];
2912
2913 if (cache->iv_set_name) {
2914 rb_id_table_insert(iv_names, cache->iv_set_name, Qtrue);
2915 }
2916 }
2917
2918 attr_index_t count = (attr_index_t)rb_id_table_size(iv_names);
2919
2920 VALUE superclass = rb_class_superclass(klass);
2921 count += RCLASSEXT_MAX_IV_COUNT(RCLASS_EXT_READABLE(superclass));
2922
2923 rb_id_table_free(iv_names);
2924
2925 return count;
2926}
2927
2928/*
2929 * call-seq:
2930 * iseq.disasm -> str
2931 * iseq.disassemble -> str
2932 *
2933 * Returns the instruction sequence as a +String+ in human readable form.
2934 *
2935 * puts RubyVM::InstructionSequence.compile('1 + 2').disasm
2936 *
2937 * Produces:
2938 *
2939 * == disasm: <RubyVM::InstructionSequence:<compiled>@<compiled>>==========
2940 * 0000 trace 1 ( 1)
2941 * 0002 putobject 1
2942 * 0004 putobject 2
2943 * 0006 opt_plus <ic:1>
2944 * 0008 leave
2945 */
2946static VALUE
2947iseqw_disasm(VALUE self)
2948{
2949 return rb_iseq_disasm(iseqw_check(self));
2950}
2951
2952static int
2953iseq_iterate_children(const rb_iseq_t *iseq, void (*iter_func)(const rb_iseq_t *child_iseq, void *data), void *data)
2954{
2955 unsigned int i;
2956 VALUE *code = rb_iseq_original_iseq(iseq);
2957 const struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
2958 const rb_iseq_t *child;
2959 VALUE all_children = rb_obj_hide(rb_ident_hash_new());
2960
2961 if (body->catch_table) {
2962 for (i = 0; i < body->catch_table->size; i++) {
2963 const struct iseq_catch_table_entry *entry =
2964 UNALIGNED_MEMBER_PTR(body->catch_table, entries[i]);
2965 child = entry->iseq;
2966 if (child) {
2967 if (NIL_P(rb_hash_aref(all_children, (VALUE)child))) {
2968 rb_hash_aset(all_children, (VALUE)child, Qtrue);
2969 (*iter_func)(child, data);
2970 }
2971 }
2972 }
2973 }
2974
2975 for (i=0; i<body->iseq_size;) {
2976 VALUE insn = code[i];
2977 int len = insn_len(insn);
2978 const char *types = insn_op_types(insn);
2979 int j;
2980
2981 for (j=0; types[j]; j++) {
2982 switch (types[j]) {
2983 case TS_ISEQ:
2984 child = (const rb_iseq_t *)code[i+j+1];
2985 if (child) {
2986 if (NIL_P(rb_hash_aref(all_children, (VALUE)child))) {
2987 rb_hash_aset(all_children, (VALUE)child, Qtrue);
2988 (*iter_func)(child, data);
2989 }
2990 }
2991 break;
2992 default:
2993 break;
2994 }
2995 }
2996 i += len;
2997 }
2998
2999 return (int)RHASH_SIZE(all_children);
3000}
3001
3002static void
3003yield_each_children(const rb_iseq_t *child_iseq, void *data)
3004{
3005 rb_yield(iseqw_new(child_iseq));
3006}
3007
3008/*
3009 * call-seq:
3010 * iseq.each_child{|child_iseq| ...} -> iseq
3011 *
3012 * Iterate all direct child instruction sequences.
3013 * Iteration order is implementation/version defined
3014 * so that people should not rely on the order.
3015 */
3016static VALUE
3017iseqw_each_child(VALUE self)
3018{
3019 const rb_iseq_t *iseq = iseqw_check(self);
3020 iseq_iterate_children(iseq, yield_each_children, NULL);
3021 return self;
3022}
3023
3024static void
3025push_event_info(const rb_iseq_t *iseq, rb_event_flag_t events, int line, VALUE ary)
3026{
3027#define C(ev, cstr, l) if (events & ev) rb_ary_push(ary, rb_ary_new_from_args(2, l, ID2SYM(rb_intern(cstr))));
3028 C(RUBY_EVENT_CLASS, "class", rb_iseq_first_lineno(iseq));
3029 C(RUBY_EVENT_CALL, "call", rb_iseq_first_lineno(iseq));
3030 C(RUBY_EVENT_B_CALL, "b_call", rb_iseq_first_lineno(iseq));
3031 C(RUBY_EVENT_LINE, "line", INT2FIX(line));
3032 C(RUBY_EVENT_END, "end", INT2FIX(line));
3033 C(RUBY_EVENT_RETURN, "return", INT2FIX(line));
3034 C(RUBY_EVENT_B_RETURN, "b_return", INT2FIX(line));
3035 C(RUBY_EVENT_RESCUE, "rescue", INT2FIX(line));
3036#undef C
3037}
3038
3039/*
3040 * call-seq:
3041 * iseq.trace_points -> ary
3042 *
3043 * Return trace points in the instruction sequence.
3044 * Return an array of [line, event_symbol] pair.
3045 */
3046static VALUE
3047iseqw_trace_points(VALUE self)
3048{
3049 const rb_iseq_t *iseq = iseqw_check(self);
3050 const struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
3051 unsigned int i;
3052 VALUE ary = rb_ary_new();
3053
3054 for (i=0; i<body->insns_info.size; i++) {
3055 const struct iseq_insn_info_entry *entry = &body->insns_info.body[i];
3056 if (entry->events) {
3057 push_event_info(iseq, entry->events, entry->line_no, ary);
3058 }
3059 }
3060 return ary;
3061}
3062
3063/*
3064 * Returns the instruction sequence containing the given proc or method.
3065 *
3066 * For example, using irb:
3067 *
3068 * # a proc
3069 * > p = proc { num = 1 + 2 }
3070 * > RubyVM::InstructionSequence.of(p)
3071 * > #=> <RubyVM::InstructionSequence:block in irb_binding@(irb)>
3072 *
3073 * # for a method
3074 * > def foo(bar); puts bar; end
3075 * > RubyVM::InstructionSequence.of(method(:foo))
3076 * > #=> <RubyVM::InstructionSequence:foo@(irb)>
3077 *
3078 * Using ::compile_file:
3079 *
3080 * # /tmp/iseq_of.rb
3081 * def hello
3082 * puts "hello, world"
3083 * end
3084 *
3085 * $a_global_proc = proc { str = 'a' + 'b' }
3086 *
3087 * # in irb
3088 * > require '/tmp/iseq_of.rb'
3089 *
3090 * # first the method hello
3091 * > RubyVM::InstructionSequence.of(method(:hello))
3092 * > #=> #<RubyVM::InstructionSequence:0x007fb73d7cb1d0>
3093 *
3094 * # then the global proc
3095 * > RubyVM::InstructionSequence.of($a_global_proc)
3096 * > #=> #<RubyVM::InstructionSequence:0x007fb73d7caf78>
3097 */
3098static VALUE
3099iseqw_s_of(VALUE klass, VALUE body)
3100{
3101 const rb_iseq_t *iseq = NULL;
3102
3103 if (rb_frame_info_p(body)) {
3104 iseq = rb_get_iseq_from_frame_info(body);
3105 }
3106 else if (rb_obj_is_proc(body)) {
3107 iseq = vm_proc_iseq(body);
3108
3109 if (!rb_obj_is_iseq((VALUE)iseq)) {
3110 iseq = NULL;
3111 }
3112 }
3113 else if (rb_obj_is_method(body)) {
3114 iseq = rb_method_iseq(body);
3115 }
3116 else if (rb_typeddata_is_instance_of(body, &iseqw_data_type)) {
3117 return body;
3118 }
3119
3120 return iseq ? iseqw_new(iseq) : Qnil;
3121}
3122
3123/*
3124 * call-seq:
3125 * InstructionSequence.disasm(body) -> str
3126 * InstructionSequence.disassemble(body) -> str
3127 *
3128 * Takes +body+, a +Method+ or +Proc+ object, and returns a +String+
3129 * with the human readable instructions for +body+.
3130 *
3131 * For a +Method+ object:
3132 *
3133 * # /tmp/method.rb
3134 * def hello
3135 * puts "hello, world"
3136 * end
3137 *
3138 * puts RubyVM::InstructionSequence.disasm(method(:hello))
3139 *
3140 * Produces:
3141 *
3142 * == disasm: <RubyVM::InstructionSequence:hello@/tmp/method.rb>============
3143 * 0000 trace 8 ( 1)
3144 * 0002 trace 1 ( 2)
3145 * 0004 putself
3146 * 0005 putstring "hello, world"
3147 * 0007 send :puts, 1, nil, 8, <ic:0>
3148 * 0013 trace 16 ( 3)
3149 * 0015 leave ( 2)
3150 *
3151 * For a +Proc+ object:
3152 *
3153 * # /tmp/proc.rb
3154 * p = proc { num = 1 + 2 }
3155 * puts RubyVM::InstructionSequence.disasm(p)
3156 *
3157 * Produces:
3158 *
3159 * == disasm: <RubyVM::InstructionSequence:block in <main>@/tmp/proc.rb>===
3160 * == catch table
3161 * | catch type: redo st: 0000 ed: 0012 sp: 0000 cont: 0000
3162 * | catch type: next st: 0000 ed: 0012 sp: 0000 cont: 0012
3163 * |------------------------------------------------------------------------
3164 * local table (size: 2, argc: 0 [opts: 0, rest: -1, post: 0, block: -1] s1)
3165 * [ 2] num
3166 * 0000 trace 1 ( 1)
3167 * 0002 putobject 1
3168 * 0004 putobject 2
3169 * 0006 opt_plus <ic:1>
3170 * 0008 dup
3171 * 0009 setlocal num, 0
3172 * 0012 leave
3173 *
3174 */
3175static VALUE
3176iseqw_s_disasm(VALUE klass, VALUE body)
3177{
3178 VALUE iseqw = iseqw_s_of(klass, body);
3179 return NIL_P(iseqw) ? Qnil : rb_iseq_disasm(iseqw_check(iseqw));
3180}
3181
3182static VALUE
3183register_label(struct st_table *table, unsigned long idx)
3184{
3185 VALUE sym = rb_str_intern(rb_sprintf("label_%lu", idx));
3186 st_insert(table, idx, sym);
3187 return sym;
3188}
3189
3190static VALUE
3191exception_type2symbol(VALUE type)
3192{
3193 ID id;
3194 switch (type) {
3195 case CATCH_TYPE_RESCUE: CONST_ID(id, "rescue"); break;
3196 case CATCH_TYPE_ENSURE: CONST_ID(id, "ensure"); break;
3197 case CATCH_TYPE_RETRY: CONST_ID(id, "retry"); break;
3198 case CATCH_TYPE_BREAK: CONST_ID(id, "break"); break;
3199 case CATCH_TYPE_REDO: CONST_ID(id, "redo"); break;
3200 case CATCH_TYPE_NEXT: CONST_ID(id, "next"); break;
3201 default:
3202 rb_bug("unknown exception type: %d", (int)type);
3203 }
3204 return ID2SYM(id);
3205}
3206
3207static int
3208cdhash_each(VALUE key, VALUE value, VALUE ary)
3209{
3210 rb_ary_push(ary, obj_resurrect(key));
3211 rb_ary_push(ary, value);
3212 return ST_CONTINUE;
3213}
3214
3215static const rb_data_type_t label_wrapper = {
3216 "label_wrapper",
3217 {(void (*)(void *))rb_mark_tbl, (void (*)(void *))st_free_table, 0, 0,},
3218 0, 0, RUBY_TYPED_FREE_IMMEDIATELY
3219};
3220
3221#define DECL_ID(name) \
3222 static ID id_##name
3223
3224#define INIT_ID(name) \
3225 id_##name = rb_intern(#name)
3226
3227static VALUE
3228iseq_type_id(enum rb_iseq_type type)
3229{
3230 DECL_ID(top);
3231 DECL_ID(method);
3232 DECL_ID(block);
3233 DECL_ID(class);
3234 DECL_ID(rescue);
3235 DECL_ID(ensure);
3236 DECL_ID(eval);
3237 DECL_ID(main);
3238 DECL_ID(plain);
3239
3240 if (id_top == 0) {
3241 INIT_ID(top);
3242 INIT_ID(method);
3243 INIT_ID(block);
3244 INIT_ID(class);
3245 INIT_ID(rescue);
3246 INIT_ID(ensure);
3247 INIT_ID(eval);
3248 INIT_ID(main);
3249 INIT_ID(plain);
3250 }
3251
3252 switch (type) {
3253 case ISEQ_TYPE_TOP: return id_top;
3254 case ISEQ_TYPE_METHOD: return id_method;
3255 case ISEQ_TYPE_BLOCK: return id_block;
3256 case ISEQ_TYPE_CLASS: return id_class;
3257 case ISEQ_TYPE_RESCUE: return id_rescue;
3258 case ISEQ_TYPE_ENSURE: return id_ensure;
3259 case ISEQ_TYPE_EVAL: return id_eval;
3260 case ISEQ_TYPE_MAIN: return id_main;
3261 case ISEQ_TYPE_PLAIN: return id_plain;
3262 };
3263
3264 rb_bug("unsupported iseq type: %d", (int)type);
3265}
3266
3267static VALUE
3268iseq_data_to_ary(const rb_iseq_t *iseq)
3269{
3270 unsigned int i;
3271 long l;
3272 const struct rb_iseq_constant_body *const iseq_body = ISEQ_BODY(iseq);
3273 const struct iseq_insn_info_entry *prev_insn_info;
3274 unsigned int pos;
3275 int last_line = 0;
3276 VALUE *seq, *iseq_original;
3277
3278 VALUE val = rb_ary_new();
3279 ID type; /* Symbol */
3280 VALUE locals = rb_ary_new();
3281 VALUE params = rb_hash_new();
3282 VALUE body = rb_ary_new(); /* [[:insn1, ...], ...] */
3283 VALUE nbody;
3284 VALUE exception = rb_ary_new(); /* [[....]] */
3285 VALUE misc = rb_hash_new();
3286
3287 static ID insn_syms[VM_BARE_INSTRUCTION_SIZE]; /* w/o-trace only */
3288 struct st_table *labels_table = st_init_numtable();
3289 VALUE labels_wrapper = TypedData_Wrap_Struct(0, &label_wrapper, labels_table);
3290
3291 if (insn_syms[0] == 0) {
3292 int i;
3293 for (i=0; i<numberof(insn_syms); i++) {
3294 insn_syms[i] = rb_intern(insn_name(i));
3295 }
3296 }
3297
3298 /* type */
3299 type = iseq_type_id(iseq_body->type);
3300
3301 /* locals */
3302 for (i=0; i<iseq_body->local_table_size; i++) {
3303 ID lid = iseq_body->local_table[i];
3304 if (lid) {
3305 if (rb_id2str(lid)) {
3306 rb_ary_push(locals, ID2SYM(lid));
3307 }
3308 else { /* hidden variable from id_internal() */
3309 rb_ary_push(locals, ULONG2NUM(iseq_body->local_table_size-i+1));
3310 }
3311 }
3312 else {
3313 rb_ary_push(locals, ID2SYM(rb_intern("#arg_rest")));
3314 }
3315 }
3316
3317 /* params */
3318 {
3319 const struct rb_iseq_param_keyword *const keyword = iseq_body->param.keyword;
3320 int j;
3321
3322 if (iseq_body->param.flags.has_opt) {
3323 int len = iseq_body->param.opt_num + 1;
3324 VALUE arg_opt_labels = rb_ary_new2(len);
3325
3326 for (j = 0; j < len; j++) {
3327 VALUE l = register_label(labels_table, iseq_body->param.opt_table[j]);
3328 rb_ary_push(arg_opt_labels, l);
3329 }
3330 rb_hash_aset(params, ID2SYM(rb_intern("opt")), arg_opt_labels);
3331 }
3332
3333 /* commit */
3334 if (iseq_body->param.flags.has_lead) rb_hash_aset(params, ID2SYM(rb_intern("lead_num")), INT2FIX(iseq_body->param.lead_num));
3335 if (iseq_body->param.flags.has_post) rb_hash_aset(params, ID2SYM(rb_intern("post_num")), INT2FIX(iseq_body->param.post_num));
3336 if (iseq_body->param.flags.has_post) rb_hash_aset(params, ID2SYM(rb_intern("post_start")), INT2FIX(iseq_body->param.post_start));
3337 if (iseq_body->param.flags.has_rest) rb_hash_aset(params, ID2SYM(rb_intern("rest_start")), INT2FIX(iseq_body->param.rest_start));
3338 if (iseq_body->param.flags.has_block) rb_hash_aset(params, ID2SYM(rb_intern("block_start")), INT2FIX(iseq_body->param.block_start));
3339 if (iseq_body->param.flags.has_kw) {
3340 VALUE keywords = rb_ary_new();
3341 int i, j;
3342 for (i=0; i<keyword->required_num; i++) {
3343 rb_ary_push(keywords, ID2SYM(keyword->table[i]));
3344 }
3345 for (j=0; i<keyword->num; i++, j++) {
3346 VALUE key = rb_ary_new_from_args(1, ID2SYM(keyword->table[i]));
3347 if (!UNDEF_P(keyword->default_values[j])) {
3348 rb_ary_push(key, keyword->default_values[j]);
3349 }
3350 rb_ary_push(keywords, key);
3351 }
3352
3353 rb_hash_aset(params, ID2SYM(rb_intern("kwbits")),
3354 INT2FIX(keyword->bits_start));
3355 rb_hash_aset(params, ID2SYM(rb_intern("keyword")), keywords);
3356 }
3357 if (iseq_body->param.flags.has_kwrest) rb_hash_aset(params, ID2SYM(rb_intern("kwrest")), INT2FIX(keyword->rest_start));
3358 if (iseq_body->param.flags.ambiguous_param0) rb_hash_aset(params, ID2SYM(rb_intern("ambiguous_param0")), Qtrue);
3359 if (iseq_body->param.flags.use_block) rb_hash_aset(params, ID2SYM(rb_intern("use_block")), Qtrue);
3360 }
3361
3362 /* body */
3363 iseq_original = rb_iseq_original_iseq((rb_iseq_t *)iseq);
3364
3365 for (seq = iseq_original; seq < iseq_original + iseq_body->iseq_size; ) {
3366 VALUE insn = *seq++;
3367 int j, len = insn_len(insn);
3368 VALUE *nseq = seq + len - 1;
3369 VALUE ary = rb_ary_new2(len);
3370
3371 rb_ary_push(ary, ID2SYM(insn_syms[insn%numberof(insn_syms)]));
3372 for (j=0; j<len-1; j++, seq++) {
3373 enum ruby_insn_type_chars op_type = insn_op_type(insn, j);
3374
3375 switch (op_type) {
3376 case TS_OFFSET: {
3377 unsigned long idx = nseq - iseq_original + *seq;
3378 rb_ary_push(ary, register_label(labels_table, idx));
3379 break;
3380 }
3381 case TS_LINDEX:
3382 case TS_NUM:
3383 rb_ary_push(ary, INT2FIX(*seq));
3384 break;
3385 case TS_VALUE:
3386 rb_ary_push(ary, obj_resurrect(*seq));
3387 break;
3388 case TS_ISEQ:
3389 {
3390 const rb_iseq_t *iseq = (rb_iseq_t *)*seq;
3391 if (iseq) {
3392 VALUE val = iseq_data_to_ary(rb_iseq_check(iseq));
3393 rb_ary_push(ary, val);
3394 }
3395 else {
3396 rb_ary_push(ary, Qnil);
3397 }
3398 }
3399 break;
3400 case TS_IC:
3401 {
3402 VALUE list = rb_ary_new();
3403 const ID *ids = ((IC)*seq)->segments;
3404 while (*ids) {
3405 rb_ary_push(list, ID2SYM(*ids++));
3406 }
3407 rb_ary_push(ary, list);
3408 }
3409 break;
3410 case TS_IVC:
3411 case TS_ICVARC:
3412 case TS_ISE:
3413 {
3414 union iseq_inline_storage_entry *is = (union iseq_inline_storage_entry *)*seq;
3415 rb_ary_push(ary, INT2FIX(is - ISEQ_IS_ENTRY_START(ISEQ_BODY(iseq), op_type)));
3416 }
3417 break;
3418 case TS_CALLDATA:
3419 {
3420 struct rb_call_data *cd = (struct rb_call_data *)*seq;
3421 const struct rb_callinfo *ci = cd->ci;
3422 VALUE e = rb_hash_new();
3423 int argc = vm_ci_argc(ci);
3424
3425 ID mid = vm_ci_mid(ci);
3426 rb_hash_aset(e, ID2SYM(rb_intern("mid")), mid ? ID2SYM(mid) : Qnil);
3427 rb_hash_aset(e, ID2SYM(rb_intern("flag")), UINT2NUM(vm_ci_flag(ci)));
3428
3429 if (vm_ci_flag(ci) & VM_CALL_KWARG) {
3430 const struct rb_callinfo_kwarg *kwarg = vm_ci_kwarg(ci);
3431 int i;
3432 VALUE kw = rb_ary_new2((long)kwarg->keyword_len);
3433
3434 argc -= kwarg->keyword_len;
3435 for (i = 0; i < kwarg->keyword_len; i++) {
3436 rb_ary_push(kw, kwarg->keywords[i]);
3437 }
3438 rb_hash_aset(e, ID2SYM(rb_intern("kw_arg")), kw);
3439 }
3440
3441 rb_hash_aset(e, ID2SYM(rb_intern("orig_argc")),
3442 INT2FIX(argc));
3443 rb_ary_push(ary, e);
3444 }
3445 break;
3446 case TS_ID:
3447 rb_ary_push(ary, ID2SYM(*seq));
3448 break;
3449 case TS_CDHASH:
3450 {
3451 VALUE hash = *seq;
3452 VALUE val = rb_ary_new();
3453 int i;
3454
3455 rb_hash_foreach(hash, cdhash_each, val);
3456
3457 for (i=0; i<RARRAY_LEN(val); i+=2) {
3458 VALUE pos = FIX2INT(rb_ary_entry(val, i+1));
3459 unsigned long idx = nseq - iseq_original + pos;
3460
3461 rb_ary_store(val, i+1,
3462 register_label(labels_table, idx));
3463 }
3464 rb_ary_push(ary, val);
3465 }
3466 break;
3467 case TS_FUNCPTR:
3468 {
3469#if SIZEOF_VALUE <= SIZEOF_LONG
3470 VALUE val = LONG2NUM((SIGNED_VALUE)*seq);
3471#else
3472 VALUE val = LL2NUM((SIGNED_VALUE)*seq);
3473#endif
3474 rb_ary_push(ary, val);
3475 }
3476 break;
3477 case TS_BUILTIN:
3478 {
3479 VALUE val = rb_hash_new();
3480#if SIZEOF_VALUE <= SIZEOF_LONG
3481 VALUE func_ptr = LONG2NUM((SIGNED_VALUE)((RB_BUILTIN)*seq)->func_ptr);
3482#else
3483 VALUE func_ptr = LL2NUM((SIGNED_VALUE)((RB_BUILTIN)*seq)->func_ptr);
3484#endif
3485 rb_hash_aset(val, ID2SYM(rb_intern("func_ptr")), func_ptr);
3486 rb_hash_aset(val, ID2SYM(rb_intern("argc")), INT2NUM(((RB_BUILTIN)*seq)->argc));
3487 rb_hash_aset(val, ID2SYM(rb_intern("index")), INT2NUM(((RB_BUILTIN)*seq)->index));
3488 rb_hash_aset(val, ID2SYM(rb_intern("name")), rb_str_new_cstr(((RB_BUILTIN)*seq)->name));
3489 rb_ary_push(ary, val);
3490 }
3491 break;
3492 default:
3493 rb_bug("unknown operand: %c", insn_op_type(insn, j));
3494 }
3495 }
3496 rb_ary_push(body, ary);
3497 }
3498
3499 nbody = body;
3500
3501 /* exception */
3502 if (iseq_body->catch_table) for (i=0; i<iseq_body->catch_table->size; i++) {
3503 VALUE ary = rb_ary_new();
3504 const struct iseq_catch_table_entry *entry =
3505 UNALIGNED_MEMBER_PTR(iseq_body->catch_table, entries[i]);
3506 rb_ary_push(ary, exception_type2symbol(entry->type));
3507 if (entry->iseq) {
3508 rb_ary_push(ary, iseq_data_to_ary(rb_iseq_check(entry->iseq)));
3509 }
3510 else {
3511 rb_ary_push(ary, Qnil);
3512 }
3513 rb_ary_push(ary, register_label(labels_table, entry->start));
3514 rb_ary_push(ary, register_label(labels_table, entry->end));
3515 rb_ary_push(ary, register_label(labels_table, entry->cont));
3516 rb_ary_push(ary, UINT2NUM(entry->sp));
3517 rb_ary_push(exception, ary);
3518 }
3519
3520 /* make body with labels and insert line number */
3521 body = rb_ary_new();
3522 prev_insn_info = NULL;
3523#ifdef USE_ISEQ_NODE_ID
3524 VALUE node_ids = rb_ary_new();
3525#endif
3526
3527 for (l=0, pos=0; l<RARRAY_LEN(nbody); l++) {
3528 const struct iseq_insn_info_entry *info;
3529 VALUE ary = RARRAY_AREF(nbody, l);
3530 st_data_t label;
3531
3532 if (st_lookup(labels_table, pos, &label)) {
3533 rb_ary_push(body, (VALUE)label);
3534 }
3535
3536 info = get_insn_info(iseq, pos);
3537#ifdef USE_ISEQ_NODE_ID
3538 rb_ary_push(node_ids, INT2FIX(info->node_id));
3539#endif
3540
3541 if (prev_insn_info != info) {
3542 int line = info->line_no;
3543 rb_event_flag_t events = info->events;
3544
3545 if (line > 0 && last_line != line) {
3546 rb_ary_push(body, INT2FIX(line));
3547 last_line = line;
3548 }
3549#define CHECK_EVENT(ev) if (events & ev) rb_ary_push(body, ID2SYM(rb_intern(#ev)));
3550 CHECK_EVENT(RUBY_EVENT_LINE);
3551 CHECK_EVENT(RUBY_EVENT_CLASS);
3552 CHECK_EVENT(RUBY_EVENT_END);
3553 CHECK_EVENT(RUBY_EVENT_CALL);
3554 CHECK_EVENT(RUBY_EVENT_RETURN);
3555 CHECK_EVENT(RUBY_EVENT_B_CALL);
3556 CHECK_EVENT(RUBY_EVENT_B_RETURN);
3557 CHECK_EVENT(RUBY_EVENT_RESCUE);
3558#undef CHECK_EVENT
3559 prev_insn_info = info;
3560 }
3561
3562 rb_ary_push(body, ary);
3563 pos += RARRAY_LENINT(ary); /* reject too huge data */
3564 }
3565 RB_GC_GUARD(nbody);
3566 RB_GC_GUARD(labels_wrapper);
3567
3568 rb_hash_aset(misc, ID2SYM(rb_intern("arg_size")), INT2FIX(iseq_body->param.size));
3569 rb_hash_aset(misc, ID2SYM(rb_intern("local_size")), INT2FIX(iseq_body->local_table_size));
3570 rb_hash_aset(misc, ID2SYM(rb_intern("stack_max")), INT2FIX(iseq_body->stack_max));
3571 rb_hash_aset(misc, ID2SYM(rb_intern("node_id")), INT2FIX(iseq_body->location.node_id));
3572 rb_hash_aset(misc, ID2SYM(rb_intern("code_location")),
3573 rb_ary_new_from_args(4,
3574 INT2FIX(iseq_body->location.code_location.beg_pos.lineno),
3575 INT2FIX(iseq_body->location.code_location.beg_pos.column),
3576 INT2FIX(iseq_body->location.code_location.end_pos.lineno),
3577 INT2FIX(iseq_body->location.code_location.end_pos.column)));
3578#ifdef USE_ISEQ_NODE_ID
3579 rb_hash_aset(misc, ID2SYM(rb_intern("node_ids")), node_ids);
3580#endif
3581 rb_hash_aset(misc, ID2SYM(rb_intern("parser")), iseq_body->prism ? ID2SYM(rb_intern("prism")) : ID2SYM(rb_intern("parse.y")));
3582
3583 /*
3584 * [:magic, :major_version, :minor_version, :format_type, :misc,
3585 * :name, :path, :absolute_path, :start_lineno, :type, :locals, :args,
3586 * :catch_table, :bytecode]
3587 */
3588 rb_ary_push(val, rb_str_new2("YARVInstructionSequence/SimpleDataFormat"));
3589 rb_ary_push(val, INT2FIX(ISEQ_MAJOR_VERSION)); /* major */
3590 rb_ary_push(val, INT2FIX(ISEQ_MINOR_VERSION)); /* minor */
3591 rb_ary_push(val, INT2FIX(1));
3592 rb_ary_push(val, misc);
3593 rb_ary_push(val, iseq_body->location.label);
3594 rb_ary_push(val, rb_iseq_path(iseq));
3595 rb_ary_push(val, rb_iseq_realpath(iseq));
3596 rb_ary_push(val, RB_INT2NUM(iseq_body->location.first_lineno));
3597 rb_ary_push(val, ID2SYM(type));
3598 rb_ary_push(val, locals);
3599 rb_ary_push(val, params);
3600 rb_ary_push(val, exception);
3601 rb_ary_push(val, body);
3602 return val;
3603}
3604
3605VALUE
3606rb_iseq_parameters(const rb_iseq_t *iseq, int is_proc)
3607{
3608 int i, r;
3609 const struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
3610 const struct rb_iseq_param_keyword *const keyword = body->param.keyword;
3611 VALUE a, args = rb_ary_new2(body->param.size);
3612 ID req, opt, rest, block, key, keyrest;
3613#define PARAM_TYPE(type) rb_ary_push(a = rb_ary_new2(2), ID2SYM(type))
3614#define PARAM_ID(i) body->local_table[(i)]
3615#define PARAM(i, type) ( \
3616 PARAM_TYPE(type), \
3617 rb_id2str(PARAM_ID(i)) ? \
3618 rb_ary_push(a, ID2SYM(PARAM_ID(i))) : \
3619 a)
3620
3621 CONST_ID(req, "req");
3622 CONST_ID(opt, "opt");
3623
3624 if (body->param.flags.forwardable) {
3625 // [[:rest, :*], [:keyrest, :**], [:block, :&]]
3626 CONST_ID(rest, "rest");
3627 CONST_ID(keyrest, "keyrest");
3628 CONST_ID(block, "block");
3629 rb_ary_push(args, rb_ary_new_from_args(2, ID2SYM(rest), ID2SYM(idMULT)));
3630 rb_ary_push(args, rb_ary_new_from_args(2, ID2SYM(keyrest), ID2SYM(idPow)));
3631 rb_ary_push(args, rb_ary_new_from_args(2, ID2SYM(block), ID2SYM(idAnd)));
3632 }
3633
3634 if (is_proc) {
3635 for (i = 0; i < body->param.lead_num; i++) {
3636 PARAM_TYPE(opt);
3637 if (rb_id2str(PARAM_ID(i))) {
3638 rb_ary_push(a, ID2SYM(PARAM_ID(i)));
3639 }
3640 rb_ary_push(args, a);
3641 }
3642 }
3643 else {
3644 for (i = 0; i < body->param.lead_num; i++) {
3645 rb_ary_push(args, PARAM(i, req));
3646 }
3647 }
3648 r = body->param.lead_num + body->param.opt_num;
3649 for (; i < r; i++) {
3650 PARAM_TYPE(opt);
3651 if (rb_id2str(PARAM_ID(i))) {
3652 rb_ary_push(a, ID2SYM(PARAM_ID(i)));
3653 }
3654 rb_ary_push(args, a);
3655 }
3656 if (body->param.flags.has_rest) {
3657 CONST_ID(rest, "rest");
3658 rb_ary_push(args, PARAM(body->param.rest_start, rest));
3659 }
3660 r = body->param.post_start + body->param.post_num;
3661 if (is_proc) {
3662 for (i = body->param.post_start; i < r; i++) {
3663 PARAM_TYPE(opt);
3664 if (rb_id2str(PARAM_ID(i))) {
3665 rb_ary_push(a, ID2SYM(PARAM_ID(i)));
3666 }
3667 rb_ary_push(args, a);
3668 }
3669 }
3670 else {
3671 for (i = body->param.post_start; i < r; i++) {
3672 rb_ary_push(args, PARAM(i, req));
3673 }
3674 }
3675 if (body->param.flags.accepts_no_kwarg) {
3676 ID nokey;
3677 CONST_ID(nokey, "nokey");
3678 PARAM_TYPE(nokey);
3679 rb_ary_push(args, a);
3680 }
3681 if (body->param.flags.has_kw) {
3682 i = 0;
3683 if (keyword->required_num > 0) {
3684 ID keyreq;
3685 CONST_ID(keyreq, "keyreq");
3686 for (; i < keyword->required_num; i++) {
3687 PARAM_TYPE(keyreq);
3688 if (rb_id2str(keyword->table[i])) {
3689 rb_ary_push(a, ID2SYM(keyword->table[i]));
3690 }
3691 rb_ary_push(args, a);
3692 }
3693 }
3694 CONST_ID(key, "key");
3695 for (; i < keyword->num; i++) {
3696 PARAM_TYPE(key);
3697 if (rb_id2str(keyword->table[i])) {
3698 rb_ary_push(a, ID2SYM(keyword->table[i]));
3699 }
3700 rb_ary_push(args, a);
3701 }
3702 }
3703 if (body->param.flags.has_kwrest || body->param.flags.ruby2_keywords) {
3704 ID param;
3705 CONST_ID(keyrest, "keyrest");
3706 PARAM_TYPE(keyrest);
3707 if (body->param.flags.has_kwrest &&
3708 rb_id2str(param = PARAM_ID(keyword->rest_start))) {
3709 rb_ary_push(a, ID2SYM(param));
3710 }
3711 else if (body->param.flags.ruby2_keywords) {
3712 rb_ary_push(a, ID2SYM(idPow));
3713 }
3714 rb_ary_push(args, a);
3715 }
3716 if (body->param.flags.has_block) {
3717 CONST_ID(block, "block");
3718 rb_ary_push(args, PARAM(body->param.block_start, block));
3719 }
3720 return args;
3721}
3722
3723VALUE
3724rb_iseq_defined_string(enum defined_type type)
3725{
3726 static const char expr_names[][18] = {
3727 "nil",
3728 "instance-variable",
3729 "local-variable",
3730 "global-variable",
3731 "class variable",
3732 "constant",
3733 "method",
3734 "yield",
3735 "super",
3736 "self",
3737 "true",
3738 "false",
3739 "assignment",
3740 "expression",
3741 };
3742 const char *estr;
3743
3744 if ((unsigned)(type - 1) >= (unsigned)numberof(expr_names)) rb_bug("unknown defined type %d", type);
3745 estr = expr_names[type - 1];
3746 return rb_fstring_cstr(estr);
3747}
3748
3749// A map from encoded_insn to insn_data: decoded insn number, its len,
3750// decoded ZJIT insn number, non-trace version of encoded insn,
3751// trace version, and zjit version.
3752static st_table *encoded_insn_data;
3753typedef struct insn_data_struct {
3754 int insn;
3755 int insn_len;
3756 void *notrace_encoded_insn;
3757 void *trace_encoded_insn;
3758#if USE_ZJIT
3759 int zjit_insn;
3760 void *zjit_encoded_insn;
3761#endif
3762} insn_data_t;
3763static insn_data_t insn_data[VM_BARE_INSTRUCTION_SIZE];
3764
3765void
3766rb_free_encoded_insn_data(void)
3767{
3768 st_free_table(encoded_insn_data);
3769}
3770
3771// Initialize a table to decode bare, trace, and zjit instructions.
3772// This function also determines which instructions are used when TracePoint is enabled.
3773void
3774rb_vm_encoded_insn_data_table_init(void)
3775{
3776#if OPT_DIRECT_THREADED_CODE || OPT_CALL_THREADED_CODE
3777 const void * const *table = rb_vm_get_insns_address_table();
3778#define INSN_CODE(insn) ((VALUE)table[insn])
3779#else
3780#define INSN_CODE(insn) ((VALUE)(insn))
3781#endif
3782 encoded_insn_data = st_init_numtable_with_size(VM_BARE_INSTRUCTION_SIZE);
3783
3784 for (int insn = 0; insn < VM_BARE_INSTRUCTION_SIZE; insn++) {
3785 insn_data[insn].insn = insn;
3786 insn_data[insn].insn_len = insn_len(insn);
3787
3788 // When tracing :return events, we convert opt_invokebuiltin_delegate_leave + leave into
3789 // opt_invokebuiltin_delegate + trace_leave, presumably because we don't want to fire
3790 // :return events before invokebuiltin. https://github.com/ruby/ruby/pull/3256
3791 int notrace_insn = (insn != BIN(opt_invokebuiltin_delegate_leave)) ? insn : BIN(opt_invokebuiltin_delegate);
3792 insn_data[insn].notrace_encoded_insn = (void *)INSN_CODE(notrace_insn);
3793 insn_data[insn].trace_encoded_insn = (void *)INSN_CODE(notrace_insn + VM_BARE_INSTRUCTION_SIZE);
3794
3795 st_data_t key1 = (st_data_t)INSN_CODE(insn);
3796 st_data_t key2 = (st_data_t)INSN_CODE(insn + VM_BARE_INSTRUCTION_SIZE);
3797 st_add_direct(encoded_insn_data, key1, (st_data_t)&insn_data[insn]);
3798 st_add_direct(encoded_insn_data, key2, (st_data_t)&insn_data[insn]);
3799
3800#if USE_ZJIT
3801 int zjit_insn = vm_bare_insn_to_zjit_insn(insn);
3802 insn_data[insn].zjit_insn = zjit_insn;
3803 insn_data[insn].zjit_encoded_insn = (insn != zjit_insn) ? (void *)INSN_CODE(zjit_insn) : 0;
3804
3805 if (insn != zjit_insn) {
3806 st_data_t key3 = (st_data_t)INSN_CODE(zjit_insn);
3807 st_add_direct(encoded_insn_data, key3, (st_data_t)&insn_data[insn]);
3808 }
3809#endif
3810 }
3811}
3812
3813// Decode an insn address to an insn. This returns bare instructions
3814// even if they're trace/zjit instructions. Use rb_vm_insn_addr2opcode
3815// to decode trace/zjit instructions as is.
3816int
3817rb_vm_insn_addr2insn(const void *addr)
3818{
3819 st_data_t key = (st_data_t)addr;
3820 st_data_t val;
3821
3822 if (st_lookup(encoded_insn_data, key, &val)) {
3823 insn_data_t *e = (insn_data_t *)val;
3824 return (int)e->insn;
3825 }
3826
3827 rb_bug("rb_vm_insn_addr2insn: invalid insn address: %p", addr);
3828}
3829
3830// Decode an insn address to an insn. Unlike rb_vm_insn_addr2insn,
3831// this function can return trace/zjit opcode variants.
3832int
3833rb_vm_insn_addr2opcode(const void *addr)
3834{
3835 st_data_t key = (st_data_t)addr;
3836 st_data_t val;
3837
3838 if (st_lookup(encoded_insn_data, key, &val)) {
3839 insn_data_t *e = (insn_data_t *)val;
3840 int opcode = e->insn;
3841 if (addr == e->trace_encoded_insn) {
3842 opcode += VM_BARE_INSTRUCTION_SIZE;
3843 }
3844#if USE_ZJIT
3845 else if (addr == e->zjit_encoded_insn) {
3846 opcode = e->zjit_insn;
3847 }
3848#endif
3849 return opcode;
3850 }
3851
3852 rb_bug("rb_vm_insn_addr2opcode: invalid insn address: %p", addr);
3853}
3854
3855// Decode `ISEQ_BODY(iseq)->iseq_encoded[i]` to an insn. This returns
3856// bare instructions even if they're trace/zjit instructions. Use
3857// rb_vm_insn_addr2opcode to decode trace/zjit instructions as is.
3858int
3859rb_vm_insn_decode(const VALUE encoded)
3860{
3861#if OPT_DIRECT_THREADED_CODE || OPT_CALL_THREADED_CODE
3862 int insn = rb_vm_insn_addr2insn((void *)encoded);
3863#else
3864 int insn = (int)encoded;
3865#endif
3866 return insn;
3867}
3868
3869// Turn on or off tracing for a given instruction address
3870static inline int
3871encoded_iseq_trace_instrument(VALUE *iseq_encoded_insn, rb_event_flag_t turnon, bool remain_current_trace)
3872{
3873 st_data_t key = (st_data_t)*iseq_encoded_insn;
3874 st_data_t val;
3875
3876 if (st_lookup(encoded_insn_data, key, &val)) {
3877 insn_data_t *e = (insn_data_t *)val;
3878 if (remain_current_trace && key == (st_data_t)e->trace_encoded_insn) {
3879 turnon = 1;
3880 }
3881 *iseq_encoded_insn = (VALUE) (turnon ? e->trace_encoded_insn : e->notrace_encoded_insn);
3882 return e->insn_len;
3883 }
3884
3885 rb_bug("trace_instrument: invalid insn address: %p", (void *)*iseq_encoded_insn);
3886}
3887
3888// Turn off tracing for an instruction at pos after tracing event flags are cleared
3889void
3890rb_iseq_trace_flag_cleared(const rb_iseq_t *iseq, size_t pos)
3891{
3892 const struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
3893 VALUE *iseq_encoded = (VALUE *)body->iseq_encoded;
3894 encoded_iseq_trace_instrument(&iseq_encoded[pos], 0, false);
3895}
3896
3897// We need to fire call events on instructions with b_call events if the block
3898// is running as a method. So, if we are listening for call events, then
3899// instructions that have b_call events need to become trace variants.
3900// Use this function when making decisions about recompiling to trace variants.
3901static inline rb_event_flag_t
3902add_bmethod_events(rb_event_flag_t events)
3903{
3904 if (events & RUBY_EVENT_CALL) {
3905 events |= RUBY_EVENT_B_CALL;
3906 }
3907 if (events & RUBY_EVENT_RETURN) {
3908 events |= RUBY_EVENT_B_RETURN;
3909 }
3910 return events;
3911}
3912
3913// Note, to support call/return events for bmethods, turnon_event can have more events than tpval.
3914static int
3915iseq_add_local_tracepoint(const rb_iseq_t *iseq, rb_event_flag_t turnon_events, VALUE tpval, unsigned int target_line)
3916{
3917 unsigned int pc;
3918 int n = 0;
3919 const struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
3920 VALUE *iseq_encoded = (VALUE *)body->iseq_encoded;
3921
3922 VM_ASSERT(ISEQ_EXECUTABLE_P(iseq));
3923
3924 for (pc=0; pc<body->iseq_size;) {
3925 const struct iseq_insn_info_entry *entry = get_insn_info(iseq, pc);
3926 rb_event_flag_t pc_events = entry->events;
3927 rb_event_flag_t target_events = turnon_events;
3928 unsigned int line = (int)entry->line_no;
3929
3930 if (target_line == 0 || target_line == line) {
3931 /* ok */
3932 }
3933 else {
3934 target_events &= ~RUBY_EVENT_LINE;
3935 }
3936
3937 if (pc_events & target_events) {
3938 n++;
3939 }
3940 pc += encoded_iseq_trace_instrument(&iseq_encoded[pc], pc_events & (target_events | iseq->aux.exec.global_trace_events), true);
3941 }
3942
3943 if (n > 0) {
3944 if (iseq->aux.exec.local_hooks == NULL) {
3945 ((rb_iseq_t *)iseq)->aux.exec.local_hooks = RB_ZALLOC(rb_hook_list_t);
3946 iseq->aux.exec.local_hooks->is_local = true;
3947 }
3948 rb_hook_list_connect_tracepoint((VALUE)iseq, iseq->aux.exec.local_hooks, tpval, target_line);
3949 }
3950
3951 return n;
3952}
3953
3955 rb_event_flag_t turnon_events;
3956 VALUE tpval;
3957 unsigned int target_line;
3958 int n;
3959};
3960
3961static void
3962iseq_add_local_tracepoint_i(const rb_iseq_t *iseq, void *p)
3963{
3965 data->n += iseq_add_local_tracepoint(iseq, data->turnon_events, data->tpval, data->target_line);
3966 iseq_iterate_children(iseq, iseq_add_local_tracepoint_i, p);
3967}
3968
3969int
3970rb_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)
3971{
3973 if (target_bmethod) {
3974 turnon_events = add_bmethod_events(turnon_events);
3975 }
3976 data.turnon_events = turnon_events;
3977 data.tpval = tpval;
3978 data.target_line = target_line;
3979 data.n = 0;
3980
3981 iseq_add_local_tracepoint_i(iseq, (void *)&data);
3982 if (0) rb_funcall(Qnil, rb_intern("puts"), 1, rb_iseq_disasm(iseq)); /* for debug */
3983 return data.n;
3984}
3985
3986static int
3987iseq_remove_local_tracepoint(const rb_iseq_t *iseq, VALUE tpval)
3988{
3989 int n = 0;
3990
3991 if (iseq->aux.exec.local_hooks) {
3992 unsigned int pc;
3993 const struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
3994 VALUE *iseq_encoded = (VALUE *)body->iseq_encoded;
3995 rb_event_flag_t local_events = 0;
3996
3997 rb_hook_list_remove_tracepoint(iseq->aux.exec.local_hooks, tpval);
3998 local_events = iseq->aux.exec.local_hooks->events;
3999
4000 if (local_events == 0) {
4001 rb_hook_list_free(iseq->aux.exec.local_hooks);
4002 ((rb_iseq_t *)iseq)->aux.exec.local_hooks = NULL;
4003 }
4004
4005 local_events = add_bmethod_events(local_events);
4006 for (pc = 0; pc<body->iseq_size;) {
4007 rb_event_flag_t pc_events = rb_iseq_event_flags(iseq, pc);
4008 pc += encoded_iseq_trace_instrument(&iseq_encoded[pc], pc_events & (local_events | iseq->aux.exec.global_trace_events), false);
4009 }
4010 }
4011 return n;
4012}
4013
4015 VALUE tpval;
4016 int n;
4017};
4018
4019static void
4020iseq_remove_local_tracepoint_i(const rb_iseq_t *iseq, void *p)
4021{
4023 data->n += iseq_remove_local_tracepoint(iseq, data->tpval);
4024 iseq_iterate_children(iseq, iseq_remove_local_tracepoint_i, p);
4025}
4026
4027int
4028rb_iseq_remove_local_tracepoint_recursively(const rb_iseq_t *iseq, VALUE tpval)
4029{
4031 data.tpval = tpval;
4032 data.n = 0;
4033
4034 iseq_remove_local_tracepoint_i(iseq, (void *)&data);
4035 return data.n;
4036}
4037
4038void
4039rb_iseq_trace_set(const rb_iseq_t *iseq, rb_event_flag_t turnon_events)
4040{
4041 if (iseq->aux.exec.global_trace_events == turnon_events) {
4042 return;
4043 }
4044
4045 if (!ISEQ_EXECUTABLE_P(iseq)) {
4046 /* this is building ISeq */
4047 return;
4048 }
4049 else {
4050 unsigned int pc;
4051 const struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
4052 VALUE *iseq_encoded = (VALUE *)body->iseq_encoded;
4053 rb_event_flag_t enabled_events;
4054 rb_event_flag_t local_events = iseq->aux.exec.local_hooks ? iseq->aux.exec.local_hooks->events : 0;
4055 ((rb_iseq_t *)iseq)->aux.exec.global_trace_events = turnon_events;
4056 enabled_events = add_bmethod_events(turnon_events | local_events);
4057
4058 for (pc=0; pc<body->iseq_size;) {
4059 rb_event_flag_t pc_events = rb_iseq_event_flags(iseq, pc);
4060 pc += encoded_iseq_trace_instrument(&iseq_encoded[pc], pc_events & enabled_events, true);
4061 }
4062 }
4063}
4064
4065void rb_vm_cc_general(const struct rb_callcache *cc);
4066
4067static bool
4068clear_attr_cc(VALUE v)
4069{
4070 if (imemo_type_p(v, imemo_callcache) && vm_cc_ivar_p((const struct rb_callcache *)v)) {
4071 rb_vm_cc_general((struct rb_callcache *)v);
4072 return true;
4073 }
4074 else {
4075 return false;
4076 }
4077}
4078
4079static bool
4080clear_bf_cc(VALUE v)
4081{
4082 if (imemo_type_p(v, imemo_callcache) && vm_cc_bf_p((const struct rb_callcache *)v)) {
4083 rb_vm_cc_general((struct rb_callcache *)v);
4084 return true;
4085 }
4086 else {
4087 return false;
4088 }
4089}
4090
4091static int
4092clear_attr_ccs_i(void *vstart, void *vend, size_t stride, void *data)
4093{
4094 VALUE v = (VALUE)vstart;
4095 for (; v != (VALUE)vend; v += stride) {
4096 void *ptr = rb_asan_poisoned_object_p(v);
4097 rb_asan_unpoison_object(v, false);
4098 clear_attr_cc(v);
4099 asan_poison_object_if(ptr, v);
4100 }
4101 return 0;
4102}
4103
4104void
4105rb_clear_attr_ccs(void)
4106{
4107 rb_objspace_each_objects(clear_attr_ccs_i, NULL);
4108}
4109
4110static int
4111clear_bf_ccs_i(void *vstart, void *vend, size_t stride, void *data)
4112{
4113 VALUE v = (VALUE)vstart;
4114 for (; v != (VALUE)vend; v += stride) {
4115 void *ptr = rb_asan_poisoned_object_p(v);
4116 rb_asan_unpoison_object(v, false);
4117 clear_bf_cc(v);
4118 asan_poison_object_if(ptr, v);
4119 }
4120 return 0;
4121}
4122
4123void
4124rb_clear_bf_ccs(void)
4125{
4126 rb_objspace_each_objects(clear_bf_ccs_i, NULL);
4127}
4128
4129static int
4130trace_set_i(void *vstart, void *vend, size_t stride, void *data)
4131{
4132 rb_event_flag_t turnon_events = *(rb_event_flag_t *)data;
4133
4134 VALUE v = (VALUE)vstart;
4135 for (; v != (VALUE)vend; v += stride) {
4136 void *ptr = rb_asan_poisoned_object_p(v);
4137 rb_asan_unpoison_object(v, false);
4138
4139 if (rb_obj_is_iseq(v)) {
4140 rb_iseq_trace_set(rb_iseq_check((rb_iseq_t *)v), turnon_events);
4141 }
4142 else if (clear_attr_cc(v)) {
4143 }
4144 else if (clear_bf_cc(v)) {
4145 }
4146
4147 asan_poison_object_if(ptr, v);
4148 }
4149 return 0;
4150}
4151
4152void
4153rb_iseq_trace_set_all(rb_event_flag_t turnon_events)
4154{
4155 rb_objspace_each_objects(trace_set_i, &turnon_events);
4156}
4157
4158VALUE
4159rb_iseqw_local_variables(VALUE iseqval)
4160{
4161 return rb_iseq_local_variables(iseqw_check(iseqval));
4162}
4163
4164/*
4165 * call-seq:
4166 * iseq.to_binary(extra_data = nil) -> binary str
4167 *
4168 * Returns serialized iseq binary format data as a String object.
4169 * A corresponding iseq object is created by
4170 * RubyVM::InstructionSequence.load_from_binary() method.
4171 *
4172 * String extra_data will be saved with binary data.
4173 * You can access this data with
4174 * RubyVM::InstructionSequence.load_from_binary_extra_data(binary).
4175 *
4176 * Note that the translated binary data is not portable.
4177 * You can not move this binary data to another machine.
4178 * You can not use the binary data which is created by another
4179 * version/another architecture of Ruby.
4180 */
4181static VALUE
4182iseqw_to_binary(int argc, VALUE *argv, VALUE self)
4183{
4184 VALUE opt = !rb_check_arity(argc, 0, 1) ? Qnil : argv[0];
4185 return rb_iseq_ibf_dump(iseqw_check(self), opt);
4186}
4187
4188/*
4189 * call-seq:
4190 * RubyVM::InstructionSequence.load_from_binary(binary) -> iseq
4191 *
4192 * Load an iseq object from binary format String object
4193 * created by RubyVM::InstructionSequence.to_binary.
4194 *
4195 * This loader does not have a verifier, so that loading broken/modified
4196 * binary causes critical problem.
4197 *
4198 * You should not load binary data provided by others.
4199 * You should use binary data translated by yourself.
4200 */
4201static VALUE
4202iseqw_s_load_from_binary(VALUE self, VALUE str)
4203{
4204 return iseqw_new(rb_iseq_ibf_load(str));
4205}
4206
4207/*
4208 * call-seq:
4209 * RubyVM::InstructionSequence.load_from_binary_extra_data(binary) -> str
4210 *
4211 * Load extra data embed into binary format String object.
4212 */
4213static VALUE
4214iseqw_s_load_from_binary_extra_data(VALUE self, VALUE str)
4215{
4216 return rb_iseq_ibf_load_extra_data(str);
4217}
4218
4219#if VM_INSN_INFO_TABLE_IMPL == 2
4220
4221/* An implementation of succinct bit-vector for insn_info table.
4222 *
4223 * A succinct bit-vector is a small and efficient data structure that provides
4224 * a bit-vector augmented with an index for O(1) rank operation:
4225 *
4226 * rank(bv, n): the number of 1's within a range from index 0 to index n
4227 *
4228 * This can be used to lookup insn_info table from PC.
4229 * For example, consider the following iseq and insn_info_table:
4230 *
4231 * iseq insn_info_table
4232 * PC insn+operand position lineno event
4233 * 0: insn1 0: 1 [Li]
4234 * 2: insn2 2: 2 [Li] <= (A)
4235 * 5: insn3 8: 3 [Li] <= (B)
4236 * 8: insn4
4237 *
4238 * In this case, a succinct bit-vector whose indexes 0, 2, 8 is "1" and
4239 * other indexes is "0", i.e., "101000001", is created.
4240 * To lookup the lineno of insn2, calculate rank("10100001", 2) = 2, so
4241 * the line (A) is the entry in question.
4242 * To lookup the lineno of insn4, calculate rank("10100001", 8) = 3, so
4243 * the line (B) is the entry in question.
4244 *
4245 * A naive implementation of succinct bit-vector works really well
4246 * not only for large size but also for small size. However, it has
4247 * tiny overhead for very small size. So, this implementation consist
4248 * of two parts: one part is the "immediate" table that keeps rank result
4249 * as a raw table, and the other part is a normal succinct bit-vector.
4250 */
4251
4252#define IMMEDIATE_TABLE_SIZE 54 /* a multiple of 9, and < 128 */
4253
4254struct succ_index_table {
4255 uint64_t imm_part[IMMEDIATE_TABLE_SIZE / 9];
4256 struct succ_dict_block {
4257 unsigned int rank;
4258 uint64_t small_block_ranks; /* 9 bits * 7 = 63 bits */
4259 uint64_t bits[512/64];
4260 } succ_part[FLEX_ARY_LEN];
4261};
4262
4263#define imm_block_rank_set(v, i, r) (v) |= (uint64_t)(r) << (7 * (i))
4264#define imm_block_rank_get(v, i) (((int)((v) >> ((i) * 7))) & 0x7f)
4265#define small_block_rank_set(v, i, r) (v) |= (uint64_t)(r) << (9 * ((i) - 1))
4266#define small_block_rank_get(v, i) ((i) == 0 ? 0 : (((int)((v) >> (((i) - 1) * 9))) & 0x1ff))
4267
4268static struct succ_index_table *
4269succ_index_table_create(int max_pos, int *data, int size)
4270{
4271 const int imm_size = (max_pos < IMMEDIATE_TABLE_SIZE ? max_pos + 8 : IMMEDIATE_TABLE_SIZE) / 9;
4272 const int succ_size = (max_pos < IMMEDIATE_TABLE_SIZE ? 0 : (max_pos - IMMEDIATE_TABLE_SIZE + 511)) / 512;
4273 struct succ_index_table *sd =
4274 rb_xcalloc_mul_add_mul(
4275 imm_size, sizeof(uint64_t),
4276 succ_size, sizeof(struct succ_dict_block));
4277 int i, j, k, r;
4278
4279 r = 0;
4280 for (j = 0; j < imm_size; j++) {
4281 for (i = 0; i < 9; i++) {
4282 if (r < size && data[r] == j * 9 + i) r++;
4283 imm_block_rank_set(sd->imm_part[j], i, r);
4284 }
4285 }
4286 for (k = 0; k < succ_size; k++) {
4287 struct succ_dict_block *sd_block = &sd->succ_part[k];
4288 int small_rank = 0;
4289 sd_block->rank = r;
4290 for (j = 0; j < 8; j++) {
4291 uint64_t bits = 0;
4292 if (j) small_block_rank_set(sd_block->small_block_ranks, j, small_rank);
4293 for (i = 0; i < 64; i++) {
4294 if (r < size && data[r] == k * 512 + j * 64 + i + IMMEDIATE_TABLE_SIZE) {
4295 bits |= ((uint64_t)1) << i;
4296 r++;
4297 }
4298 }
4299 sd_block->bits[j] = bits;
4300 small_rank += rb_popcount64(bits);
4301 }
4302 }
4303 return sd;
4304}
4305
4306static unsigned int *
4307succ_index_table_invert(int max_pos, struct succ_index_table *sd, int size)
4308{
4309 const int imm_size = (max_pos < IMMEDIATE_TABLE_SIZE ? max_pos + 8 : IMMEDIATE_TABLE_SIZE) / 9;
4310 const int succ_size = (max_pos < IMMEDIATE_TABLE_SIZE ? 0 : (max_pos - IMMEDIATE_TABLE_SIZE + 511)) / 512;
4311 unsigned int *positions = ALLOC_N(unsigned int, size), *p;
4312 int i, j, k, r = -1;
4313 p = positions;
4314 for (j = 0; j < imm_size; j++) {
4315 for (i = 0; i < 9; i++) {
4316 int nr = imm_block_rank_get(sd->imm_part[j], i);
4317 if (r != nr) *p++ = j * 9 + i;
4318 r = nr;
4319 }
4320 }
4321 for (k = 0; k < succ_size; k++) {
4322 for (j = 0; j < 8; j++) {
4323 for (i = 0; i < 64; i++) {
4324 if (sd->succ_part[k].bits[j] & (((uint64_t)1) << i)) {
4325 *p++ = k * 512 + j * 64 + i + IMMEDIATE_TABLE_SIZE;
4326 }
4327 }
4328 }
4329 }
4330 return positions;
4331}
4332
4333static int
4334succ_index_lookup(const struct succ_index_table *sd, int x)
4335{
4336 if (x < IMMEDIATE_TABLE_SIZE) {
4337 const int i = x / 9;
4338 const int j = x % 9;
4339 return imm_block_rank_get(sd->imm_part[i], j);
4340 }
4341 else {
4342 const int block_index = (x - IMMEDIATE_TABLE_SIZE) / 512;
4343 const struct succ_dict_block *block = &sd->succ_part[block_index];
4344 const int block_bit_index = (x - IMMEDIATE_TABLE_SIZE) % 512;
4345 const int small_block_index = block_bit_index / 64;
4346 const int small_block_popcount = small_block_rank_get(block->small_block_ranks, small_block_index);
4347 const int popcnt = rb_popcount64(block->bits[small_block_index] << (63 - block_bit_index % 64));
4348
4349 return block->rank + small_block_popcount + popcnt;
4350 }
4351}
4352#endif
4353
4354
4355/*
4356 * call-seq:
4357 * iseq.script_lines -> array or nil
4358 *
4359 * It returns recorded script lines if it is available.
4360 * The script lines are not limited to the iseq range, but
4361 * are entire lines of the source file.
4362 *
4363 * Note that this is an API for ruby internal use, debugging,
4364 * and research. Do not use this for any other purpose.
4365 * The compatibility is not guaranteed.
4366 */
4367static VALUE
4368iseqw_script_lines(VALUE self)
4369{
4370 const rb_iseq_t *iseq = iseqw_check(self);
4371 return ISEQ_BODY(iseq)->variable.script_lines;
4372}
4373
4374/*
4375 * Document-class: RubyVM::InstructionSequence
4376 *
4377 * The InstructionSequence class represents a compiled sequence of
4378 * instructions for the Virtual Machine used in MRI. Not all implementations of Ruby
4379 * may implement this class, and for the implementations that implement it,
4380 * the methods defined and behavior of the methods can change in any version.
4381 *
4382 * With it, you can get a handle to the instructions that make up a method or
4383 * a proc, compile strings of Ruby code down to VM instructions, and
4384 * disassemble instruction sequences to strings for easy inspection. It is
4385 * mostly useful if you want to learn how YARV works, but it also lets
4386 * you control various settings for the Ruby iseq compiler.
4387 *
4388 * You can find the source for the VM instructions in +insns.def+ in the Ruby
4389 * source.
4390 *
4391 * The instruction sequence results will almost certainly change as Ruby
4392 * changes, so example output in this documentation may be different from what
4393 * you see.
4394 *
4395 * Of course, this class is MRI specific.
4396 */
4397
4398void
4399Init_ISeq(void)
4400{
4401 /* declare ::RubyVM::InstructionSequence */
4402 rb_cISeq = rb_define_class_under(rb_cRubyVM, "InstructionSequence", rb_cObject);
4403 rb_undef_alloc_func(rb_cISeq);
4404 rb_define_method(rb_cISeq, "inspect", iseqw_inspect, 0);
4405 rb_define_method(rb_cISeq, "disasm", iseqw_disasm, 0);
4406 rb_define_method(rb_cISeq, "disassemble", iseqw_disasm, 0);
4407 rb_define_method(rb_cISeq, "to_a", iseqw_to_a, 0);
4408 rb_define_method(rb_cISeq, "eval", iseqw_eval, 0);
4409
4410 rb_define_method(rb_cISeq, "to_binary", iseqw_to_binary, -1);
4411 rb_define_singleton_method(rb_cISeq, "load_from_binary", iseqw_s_load_from_binary, 1);
4412 rb_define_singleton_method(rb_cISeq, "load_from_binary_extra_data", iseqw_s_load_from_binary_extra_data, 1);
4413
4414 /* location APIs */
4415 rb_define_method(rb_cISeq, "path", iseqw_path, 0);
4416 rb_define_method(rb_cISeq, "absolute_path", iseqw_absolute_path, 0);
4417 rb_define_method(rb_cISeq, "label", iseqw_label, 0);
4418 rb_define_method(rb_cISeq, "base_label", iseqw_base_label, 0);
4419 rb_define_method(rb_cISeq, "first_lineno", iseqw_first_lineno, 0);
4420 rb_define_method(rb_cISeq, "trace_points", iseqw_trace_points, 0);
4421 rb_define_method(rb_cISeq, "each_child", iseqw_each_child, 0);
4422
4423#if 0 /* TBD */
4424 rb_define_private_method(rb_cISeq, "marshal_dump", iseqw_marshal_dump, 0);
4425 rb_define_private_method(rb_cISeq, "marshal_load", iseqw_marshal_load, 1);
4426 /* disable this feature because there is no verifier. */
4427 rb_define_singleton_method(rb_cISeq, "load", iseq_s_load, -1);
4428#endif
4429 (void)iseq_s_load;
4430
4431 rb_define_singleton_method(rb_cISeq, "compile", iseqw_s_compile, -1);
4432 rb_define_singleton_method(rb_cISeq, "compile_parsey", iseqw_s_compile_parsey, -1);
4433 rb_define_singleton_method(rb_cISeq, "compile_prism", iseqw_s_compile_prism, -1);
4434 rb_define_singleton_method(rb_cISeq, "compile_file_prism", iseqw_s_compile_file_prism, -1);
4435 rb_define_singleton_method(rb_cISeq, "new", iseqw_s_compile, -1);
4436 rb_define_singleton_method(rb_cISeq, "compile_file", iseqw_s_compile_file, -1);
4437 rb_define_singleton_method(rb_cISeq, "compile_option", iseqw_s_compile_option_get, 0);
4438 rb_define_singleton_method(rb_cISeq, "compile_option=", iseqw_s_compile_option_set, 1);
4439 rb_define_singleton_method(rb_cISeq, "disasm", iseqw_s_disasm, 1);
4440 rb_define_singleton_method(rb_cISeq, "disassemble", iseqw_s_disasm, 1);
4441 rb_define_singleton_method(rb_cISeq, "of", iseqw_s_of, 1);
4442
4443 // script lines
4444 rb_define_method(rb_cISeq, "script_lines", iseqw_script_lines, 0);
4445
4446 rb_undef_method(CLASS_OF(rb_cISeq), "translate");
4447 rb_undef_method(CLASS_OF(rb_cISeq), "load_iseq");
4448}
#define RUBY_ASSERT(...)
Asserts that the given expression is truthy if and only if RUBY_DEBUG is truthy.
Definition assert.h:219
#define rb_define_method(klass, mid, func, arity)
Defines klass#mid.
#define rb_define_singleton_method(klass, mid, func, arity)
Defines klass.mid.
#define rb_define_private_method(klass, mid, func, arity)
Defines klass#mid and makes it private.
#define RUBY_EVENT_END
Encountered an end of a class clause.
Definition event.h:40
#define RUBY_EVENT_C_CALL
A method, written in C, is called.
Definition event.h:43
#define RUBY_EVENT_B_RETURN
Encountered a next statement.
Definition event.h:56
#define RUBY_EVENT_CLASS
Encountered a new class.
Definition event.h:39
#define RUBY_EVENT_LINE
Encountered a new line.
Definition event.h:38
#define RUBY_EVENT_RETURN
Encountered a return statement.
Definition event.h:42
#define RUBY_EVENT_C_RETURN
Return from a method, written in C.
Definition event.h:44
#define RUBY_EVENT_B_CALL
Encountered an yield statement.
Definition event.h:55
uint32_t rb_event_flag_t
Represents event(s).
Definition event.h:108
#define RUBY_EVENT_CALL
A method, written in Ruby, is called.
Definition event.h:41
#define RUBY_EVENT_RESCUE
Encountered a rescue statement.
Definition event.h:61
VALUE rb_define_class_under(VALUE outer, const char *name, VALUE super)
Defines a class under the namespace of outer.
Definition class.c:1517
void rb_undef_method(VALUE klass, const char *name)
Defines an undef of a method.
Definition class.c:2666
int rb_scan_args(int argc, const VALUE *argv, const char *fmt,...)
Retrieves argument from argc and argv to given VALUE references according to the format string.
Definition class.c:3135
#define rb_str_new2
Old name of rb_str_new_cstr.
Definition string.h:1675
#define T_FILE
Old name of RUBY_T_FILE.
Definition value_type.h:62
#define T_STRING
Old name of RUBY_T_STRING.
Definition value_type.h:78
#define Qundef
Old name of RUBY_Qundef.
#define INT2FIX
Old name of RB_INT2FIX.
Definition long.h:48
#define rb_str_cat2
Old name of rb_str_cat_cstr.
Definition string.h:1683
#define ID2SYM
Old name of RB_ID2SYM.
Definition symbol.h:44
#define SPECIAL_CONST_P
Old name of RB_SPECIAL_CONST_P.
#define ULONG2NUM
Old name of RB_ULONG2NUM.
Definition long.h:60
#define SYM2ID
Old name of RB_SYM2ID.
Definition symbol.h:45
#define ZALLOC
Old name of RB_ZALLOC.
Definition memory.h:402
#define LL2NUM
Old name of RB_LL2NUM.
Definition long_long.h:30
#define CLASS_OF
Old name of rb_class_of.
Definition globals.h:205
#define T_NONE
Old name of RUBY_T_NONE.
Definition value_type.h:74
#define FIX2INT
Old name of RB_FIX2INT.
Definition int.h:41
#define T_HASH
Old name of RUBY_T_HASH.
Definition value_type.h:65
#define ALLOC_N
Old name of RB_ALLOC_N.
Definition memory.h:399
#define FL_TEST_RAW
Old name of RB_FL_TEST_RAW.
Definition fl_type.h:131
#define LONG2NUM
Old name of RB_LONG2NUM.
Definition long.h:50
#define Qtrue
Old name of RUBY_Qtrue.
#define NUM2INT
Old name of RB_NUM2INT.
Definition int.h:44
#define INT2NUM
Old name of RB_INT2NUM.
Definition int.h:43
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
#define T_ARRAY
Old name of RUBY_T_ARRAY.
Definition value_type.h:56
#define NIL_P
Old name of RB_NIL_P.
#define BUILTIN_TYPE
Old name of RB_BUILTIN_TYPE.
Definition value_type.h:85
#define NUM2LONG
Old name of RB_NUM2LONG.
Definition long.h:51
#define UINT2NUM
Old name of RB_UINT2NUM.
Definition int.h:46
#define FIXNUM_P
Old name of RB_FIXNUM_P.
#define CONST_ID
Old name of RUBY_CONST_ID.
Definition symbol.h:47
#define rb_ary_new2
Old name of rb_ary_new_capa.
Definition array.h:657
void rb_exc_raise(VALUE mesg)
Raises an exception in the current thread.
Definition eval.c:680
VALUE rb_eTypeError
TypeError exception.
Definition error.c:1430
void * rb_check_typeddata(VALUE obj, const rb_data_type_t *data_type)
Identical to rb_typeddata_is_kind_of(), except it raises exceptions instead of returning false.
Definition error.c:1397
VALUE rb_eSyntaxError
SyntaxError exception.
Definition error.c:1447
VALUE rb_class_superclass(VALUE klass)
Queries the parent of the given class.
Definition object.c:2181
VALUE rb_obj_hide(VALUE obj)
Make the object invisible from Ruby code.
Definition object.c:104
VALUE rb_obj_class(VALUE obj)
Queries the class of an object.
Definition object.c:247
VALUE rb_inspect(VALUE obj)
Generates a human-readable textual representation of the given object.
Definition object.c:695
#define RB_OBJ_WRITE(old, slot, young)
Declaration of a "back" pointer.
Definition gc.h:603
VALUE rb_funcall(VALUE recv, ID mid, int n,...)
Calls a method.
Definition vm_eval.c:1117
Defines RBIMPL_HAS_BUILTIN.
VALUE rb_ary_new_from_values(long n, const VALUE *elts)
Identical to rb_ary_new_from_args(), except how objects are passed.
VALUE rb_ary_resurrect(VALUE ary)
I guess there is no use case of this function in extension libraries, but this is a routine identical...
VALUE rb_ary_new(void)
Allocates a new, empty array.
VALUE rb_ary_hidden_new(long capa)
Allocates a hidden (no class) empty array.
VALUE rb_ary_push(VALUE ary, VALUE elem)
Special case of rb_ary_cat() that it adds only one element.
VALUE rb_ary_freeze(VALUE obj)
Freeze an array, preventing further modifications.
VALUE rb_ary_entry(VALUE ary, long off)
Queries an element of an array.
VALUE rb_ary_join(VALUE ary, VALUE sep)
Recursively stringises the elements of the passed array, flattens that result, then joins the sequenc...
void rb_ary_store(VALUE ary, long key, VALUE val)
Destructively stores the passed value to the passed array's passed index.
static int rb_check_arity(int argc, int min, int max)
Ensures that the passed integer is in the passed range.
Definition error.h:284
VALUE rb_file_open_str(VALUE fname, const char *fmode)
Identical to rb_file_open(), except it takes the pathname as a Ruby's string instead of C's.
Definition io.c:7264
VALUE rb_io_close(VALUE io)
Closes the IO.
Definition io.c:5753
int rb_is_local_id(ID id)
Classifies the given ID, then sees if it is a local variable.
Definition symbol.c:1110
VALUE rb_obj_is_method(VALUE recv)
Queries if the given object is a method.
Definition proc.c:1670
VALUE rb_obj_is_proc(VALUE recv)
Queries if the given object is a proc.
Definition proc.c:120
VALUE rb_str_append(VALUE dst, VALUE src)
Identical to rb_str_buf_append(), except it converts the right hand side before concatenating.
Definition string.c:4102
#define rb_str_new(str, len)
Allocates an instance of rb_cString.
Definition string.h:1498
#define rb_exc_new_cstr(exc, str)
Identical to rb_exc_new(), except it assumes the passed pointer is a pointer to a C string.
Definition string.h:1670
VALUE rb_str_dup(VALUE str)
Duplicates a string.
Definition string.c:2304
VALUE rb_str_cat(VALUE dst, const char *src, long srclen)
Destructively appends the passed contents to the string.
Definition string.c:3870
VALUE rb_str_resurrect(VALUE str)
I guess there is no use case of this function in extension libraries, but this is a routine identical...
Definition string.c:2322
void rb_str_set_len(VALUE str, long len)
Overwrites the length of the string.
Definition string.c:3692
VALUE rb_str_inspect(VALUE str)
Generates a "readable" version of the receiver.
Definition string.c:7671
int rb_str_cmp(VALUE lhs, VALUE rhs)
Compares two strings, as in strcmp(3).
Definition string.c:4534
VALUE rb_str_concat(VALUE dst, VALUE src)
Identical to rb_str_append(), except it also accepts an integer as a codepoint.
Definition string.c:4351
#define rb_str_cat_cstr(buf, str)
Identical to rb_str_cat(), except it assumes the passed pointer is a pointer to a C string.
Definition string.h:1656
void rb_str_modify_expand(VALUE str, long capa)
Identical to rb_str_modify(), except it additionally expands the capacity of the receiver.
Definition string.c:3051
#define rb_str_new_cstr(str)
Identical to rb_str_new, except it assumes the passed pointer is a pointer to a C string.
Definition string.h:1514
VALUE rb_str_intern(VALUE str)
Identical to rb_to_symbol(), except it assumes the receiver being an instance of RString.
Definition symbol.c:895
VALUE rb_class_name(VALUE obj)
Queries the name of the given object's class.
Definition variable.c:497
int rb_respond_to(VALUE obj, ID mid)
Queries if the object responds to the method.
Definition vm_method.c:3064
void rb_undef_alloc_func(VALUE klass)
Deletes the allocator function of a class.
Definition vm_method.c:1387
VALUE rb_check_funcall(VALUE recv, ID mid, int argc, const VALUE *argv)
Identical to rb_funcallv(), except it returns RUBY_Qundef instead of raising rb_eNoMethodError.
Definition vm_eval.c:686
ID rb_check_id(volatile VALUE *namep)
Detects if the given name is already interned or not.
Definition symbol.c:1134
VALUE rb_sym2str(VALUE symbol)
Obtain a frozen string representation of a symbol (not including the leading colon).
Definition symbol.c:987
VALUE rb_io_path(VALUE io)
Returns the path for the given IO.
Definition io.c:2973
int len
Length of the buffer.
Definition io.h:8
VALUE rb_ractor_make_shareable(VALUE obj)
Destructively transforms the passed object so that multiple Ractors can share it.
Definition ractor.c:3197
#define RB_NUM2INT
Just another name of rb_num2int_inline.
Definition int.h:38
#define RB_INT2NUM
Just another name of rb_int2num_inline.
Definition int.h:37
VALUE rb_yield(VALUE val)
Yields the block.
Definition vm_eval.c:1372
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
Definition memory.h:167
#define RB_ZALLOC(type)
Shorthand of RB_ZALLOC_N with n=1.
Definition memory.h:249
VALUE type(ANYARGS)
ANYARGS-ed function type.
void rb_hash_foreach(VALUE q, int_type *w, VALUE e)
Iteration over the given hash.
#define RARRAY_LEN
Just another name of rb_array_len.
Definition rarray.h:51
static int RARRAY_LENINT(VALUE ary)
Identical to rb_array_len(), except it differs for the return type.
Definition rarray.h:281
#define RARRAY_AREF(a, i)
Definition rarray.h:403
static VALUE RBASIC_CLASS(VALUE obj)
Queries the class of an object.
Definition rbasic.h:150
#define RHASH_SIZE(h)
Queries the size of the hash.
Definition rhash.h:69
#define StringValue(v)
Ensures that the parameter object is a String.
Definition rstring.h:66
static char * RSTRING_END(VALUE str)
Queries the end of the contents pointer of the string.
Definition rstring.h:442
#define StringValueCStr(v)
Identical to StringValuePtr, except it additionally checks for the contents for viability as a C stri...
Definition rstring.h:89
#define RUBY_TYPED_DEFAULT_FREE
This is a value you can set to rb_data_type_struct::dfree.
Definition rtypeddata.h:79
#define TypedData_Get_Struct(obj, type, data_type, sval)
Obtains a C struct from inside of a wrapper Ruby object.
Definition rtypeddata.h:516
#define TypedData_Wrap_Struct(klass, data_type, sval)
Converts sval, a pointer to your struct, into a Ruby object.
Definition rtypeddata.h:450
#define TypedData_Make_Struct(klass, type, data_type, sval)
Identical to TypedData_Wrap_Struct, except it allocates a new data region internally instead of takin...
Definition rtypeddata.h:498
#define FilePathValue(v)
Ensures that the parameter object is a path.
Definition ruby.h:90
#define RTEST
This is an old name of RB_TEST.
Definition iseq.h:280
const ID * segments
A null-terminated list of ids, used to represent a constant's path idNULL is used to represent the ::...
Definition vm_core.h:287
Definition vm_core.h:295
Definition vm_core.h:290
Definition iseq.h:251
A line and column in a string.
uint32_t column
The column number.
int32_t line
The line number.
This represents a range of bytes in the source string to which a node or token corresponds.
Definition ast.h:545
const uint8_t * start
A pointer to the start location of the range in the source.
Definition ast.h:547
const uint8_t * end
A pointer to the end location of the range in the source.
Definition ast.h:550
size_t size
The number of offsets in the list.
uint32_t node_id
The unique identifier for this node, which is deterministic based on the source.
Definition ast.h:1086
pm_location_t location
This is the location of the node in the source.
Definition ast.h:1092
int32_t line
The line within the file that the parse starts on.
Definition options.h:118
pm_scope_node_t node
The resulting scope node that will hold the generated AST.
pm_options_t options
The options that will be passed to the parser.
int32_t start_line
The line number at the start of the parse.
Definition parser.h:809
pm_newline_list_t newline_list
This is the list of newline offsets in the source file.
Definition parser.h:789
VALUE * script_lines
This is a pointer to the list of script lines for the ISEQs that will be associated with this scope n...
Definition method.h:63
This is the struct that holds necessary info for a struct.
Definition rtypeddata.h:203
struct rb_iseq_constant_body::@156 param
parameter information
Definition st.h:79
Definition vm_core.h:299
intptr_t SIGNED_VALUE
A signed integer type that has the same width with VALUE.
Definition value.h:63
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
static void Check_Type(VALUE v, enum ruby_value_type t)
Identical to RB_TYPE_P(), except it raises exceptions on predication failure.
Definition value_type.h:433
static bool RB_TYPE_P(VALUE obj, enum ruby_value_type t)
Queries if the given object is of given type.
Definition value_type.h:376
ruby_value_type
C-level type of an object.
Definition value_type.h:113