12#define RUBY_VM_INSNS_INFO 1
15#include "ruby/internal/config.h"
21#include "eval_intern.h"
25#include "internal/bits.h"
26#include "internal/class.h"
27#include "internal/compile.h"
28#include "internal/coverage.h"
29#include "internal/error.h"
30#include "internal/file.h"
31#include "internal/gc.h"
32#include "internal/hash.h"
33#include "internal/io.h"
34#include "internal/ruby_parser.h"
35#include "internal/sanitizers.h"
36#include "internal/set_table.h"
37#include "internal/symbol.h"
38#include "internal/thread.h"
39#include "internal/variable.h"
44#include "ractor_core.h"
45#include "vm_callinfo.h"
50#include "insns_info.inc"
57#if VM_INSN_INFO_TABLE_IMPL == 2
58static struct succ_index_table *succ_index_table_create(
int max_pos,
int *data,
int size);
59static unsigned int *succ_index_table_invert(
int max_pos,
struct succ_index_table *sd,
int size);
60static int succ_index_lookup(
const struct succ_index_table *sd,
int x);
63#define hidden_obj_p(obj) (!SPECIAL_CONST_P(obj) && !RBASIC(obj)->klass)
66obj_resurrect(
VALUE obj)
68 if (hidden_obj_p(obj)) {
77 obj = rb_hash_resurrect(obj);
102 free_arena(compile_data->node.storage_head);
103 free_arena(compile_data->insn.storage_head);
104 if (compile_data->ivar_cache_table) {
105 rb_id_table_free(compile_data->ivar_cache_table);
107 SIZED_FREE(compile_data);
112remove_from_constant_cache(
ID id,
IC ic)
116 st_data_t ic_data = (st_data_t)ic;
118 if (rb_id_table_lookup(&vm->constant_cache,
id, &lookup_result)) {
120 set_table_delete(ics, &ic_data);
122 if (ics->num_entries == 0 &&
124 id != vm->inserting_constant_cache_id) {
125 rb_id_table_delete(&vm->constant_cache,
id);
135iseq_clear_ic_references(
const rb_iseq_t *iseq)
141 if (!ISEQ_BODY(iseq)->is_entries) {
145 for (
unsigned int ic_idx = 0; ic_idx < ISEQ_BODY(iseq)->ic_size; ic_idx++) {
146 IC ic = &ISEQ_IS_IC_ENTRY(ISEQ_BODY(iseq), ic_idx);
154 if (segments == NULL)
158 for (i = 0; segments[i]; i++) {
160 if (
id == idNULL)
continue;
161 remove_from_constant_cache(
id, ic);
164 SIZED_FREE_N(segments, i + 1);
174 if (st_lookup(rb_ractor_targeted_hooks(r), (st_data_t)iseq, &val)) {
176 RUBY_ASSERT(hook_list->type == hook_list_type_targeted_iseq);
180 hook_list->type = hook_list_type_targeted_iseq;
181 st_insert(rb_ractor_targeted_hooks(r), (st_data_t)iseq, (st_data_t)hook_list);
189 RUBY_FREE_ENTER(
"iseq");
191 if (iseq && ISEQ_BODY(iseq)) {
192 iseq_clear_ic_references(iseq);
195 if (rb_yjit_enabled_p) rb_yjit_iseq_free(iseq);
198 rb_yjit_live_iseq_count--;
202 if (rb_zjit_enabled_p) rb_zjit_iseq_free(iseq);
204 SIZED_FREE_N(body->iseq_encoded, body->iseq_size);
205 SIZED_FREE_N(body->insns_info.body, body->insns_info.size);
206#if VM_INSN_INFO_TABLE_IMPL == 2
207 ruby_xfree(body->insns_info.positions_or_succ_index_table.succ_index_table);
209 SIZED_FREE_N(body->insns_info.positions_or_succ_index_table.positions, body->insns_info.size);
211 SIZED_FREE_N(body->is_entries, ISEQ_IS_SIZE(body));
212 SIZED_FREE_N(body->call_data, body->ci_size);
213 if (body->catch_table) {
214 ruby_xfree_sized(body->catch_table, iseq_catch_table_bytes(body->catch_table->size));
216 SIZED_FREE_N(body->param.opt_table, body->param.opt_num + 1);
217 if (ISEQ_MBITS_BUFLEN(body->iseq_size) > 1 && body->mark_bits.list) {
218 SIZED_FREE_N(body->mark_bits.list, ISEQ_MBITS_BUFLEN(body->iseq_size));
221 ISEQ_ORIGINAL_ISEQ_CLEAR(iseq);
222 if (body->variable)
xfree(body->variable);
224 struct rb_iseq_param_keyword *pkw = (
struct rb_iseq_param_keyword *)body->param.keyword;
226 if (pkw->table != &body->local_table[pkw->bits_start - pkw->num])
227 SIZED_FREE_N(pkw->table, pkw->required_num);
228 if (pkw->default_values) {
229 SIZED_FREE_N(pkw->default_values, pkw->num - pkw->required_num);
233 if (LIKELY(body->local_table != rb_iseq_shared_exc_local_tbl)) {
234 SIZED_FREE_N(body->local_table, body->local_table_size);
236 if (!ISEQ_LVAR_STATES_EMBED_P(body->local_table_size)) {
237 SIZED_FREE_N(body->lvar_states.list, ISEQ_LVAR_STATES_BUFLEN(body->local_table_size));
240 compile_data_free(ISEQ_COMPILE_DATA(iseq));
241 if (body->outer_variables) rb_id_table_free(body->outer_variables);
245 RUBY_FREE_LEAVE(
"iseq");
258 v->script_lines =
Qnil;
260 v->pc2branchindex =
Qfalse;
261 v->original_iseq = NULL;
262 struct rb_iseq_variable *prev = ATOMIC_PTR_CAS(ISEQ_BODY(iseq)->variable, NULL, v);
273 if (!
RTEST(cov) && !ISEQ_VARIABLE(iseq))
return;
281 if (!
RTEST(h) && !ISEQ_VARIABLE(iseq))
return;
287rb_iseq_flip_cnt_increment(
const rb_iseq_t *iseq)
290 rb_snum_t cnt = v->flip_count;
295typedef VALUE iseq_value_itr_t(
void *ctx,
VALUE obj);
298iseq_scan_bits(
unsigned int page, iseq_bits_t bits,
VALUE *code,
VALUE *original_iseq)
301 unsigned int page_offset = (page * ISEQ_MBITS_BITLENGTH);
304 offset = ntz_intptr(bits);
306 VALUE op = original_iseq[page_offset + offset];
307 rb_gc_mark_and_move(&code[page_offset + offset]);
308 VALUE newop = code[page_offset + offset];
310 original_iseq[page_offset + offset] = newop;
314 rb_gc_mark_and_move(&code[page_offset + offset]);
321rb_iseq_mark_and_move_each_compile_data_value(
const rb_iseq_t *iseq,
VALUE *original_iseq)
327 size = compile_data->iseq_size;
328 code = compile_data->iseq_encoded;
331 if (compile_data->mark_bits.list) {
332 if(compile_data->is_single_mark_bit) {
333 iseq_scan_bits(0, compile_data->mark_bits.single, code, original_iseq);
336 for (
unsigned int i = 0; i < ISEQ_MBITS_BUFLEN(size); i++) {
337 iseq_bits_t bits = compile_data->mark_bits.list[i];
338 iseq_scan_bits(i, bits, code, original_iseq);
344rb_iseq_mark_and_move_each_body_value(
const rb_iseq_t *iseq,
VALUE *original_iseq)
350 size = body->iseq_size;
351 code = body->iseq_encoded;
355 if (body->is_entries) {
357 is_entries += body->ivc_size;
360 for (
unsigned int i = 0; i < body->icvarc_size; i++, is_entries++) {
363 rb_gc_mark_and_move((
VALUE *)&icvarc->entry);
368 for (
unsigned int i = 0; i < body->ise_size; i++, is_entries++) {
370 if (is->once.value) {
371 rb_gc_mark_and_move(&is->once.value);
376 for (
unsigned int i = 0; i < body->ic_size; i++, is_entries++) {
377 IC ic = (
IC)is_entries;
379 rb_gc_mark_and_move_ptr(&ic->entry);
385 if (body->mark_bits.list) {
386 if (ISEQ_MBITS_BUFLEN(size) == 1) {
387 iseq_scan_bits(0, body->mark_bits.single, code, original_iseq);
390 for (
unsigned int i = 0; i < ISEQ_MBITS_BUFLEN(size); i++) {
391 iseq_bits_t bits = body->mark_bits.list[i];
392 iseq_scan_bits(i, bits, code, original_iseq);
404 return vm_cc_valid(cc) && !METHOD_ENTRY_INVALIDATED(vm_cc_cme(cc));
408rb_iseq_mark_and_move(
rb_iseq_t *iseq,
bool reference_updating)
410 RUBY_MARK_ENTER(
"iseq");
412 if (ISEQ_BODY(iseq)) {
415 rb_iseq_mark_and_move_each_body_value(iseq, reference_updating ? ISEQ_ORIGINAL_ISEQ(iseq) : NULL);
418 if (v) rb_gc_mark_and_move(&v->script_lines);
419 rb_gc_mark_and_move(&body->location.label);
420 rb_gc_mark_and_move(&body->location.pathobj);
421 if (body->local_iseq) rb_gc_mark_and_move_ptr(&body->local_iseq);
422 if (body->parent_iseq) rb_gc_mark_and_move_ptr(&body->parent_iseq);
423 if (body->mandatory_only_iseq) rb_gc_mark_and_move_ptr(&body->mandatory_only_iseq);
425 if (body->call_data) {
427 for (
unsigned int i = 0; i < body->ci_size; i++) {
429 if (cds[i].ci) rb_gc_mark_and_move_ptr(&cds[i].ci);
432 if (!cc || cc == rb_vm_empty_cc() || cc == rb_vm_empty_cc_for_super()) {
438 if (reference_updating) {
439 rb_gc_update_moved_ptr(&cds[i].cc);
442 if (cc_is_active(cc)) {
443 rb_gc_mark_movable((
VALUE)cc);
448 cds[i].cc = rb_vm_empty_cc();
454 if (body->param.flags.has_kw && body->param.keyword != NULL) {
455 const struct rb_iseq_param_keyword *
const keyword = body->param.keyword;
457 if (keyword->default_values != NULL) {
458 for (
int j = 0, i = keyword->required_num; i < keyword->num; i++, j++) {
459 rb_gc_mark_and_move(&keyword->default_values[j]);
464 if (body->catch_table) {
467 for (
unsigned int i = 0; i < table->size; i++) {
469 entry = UNALIGNED_MEMBER_PTR(table, entries[i]);
471 rb_gc_mark_and_move_ptr(&entry->iseq);
476#if USE_YJIT || USE_ZJIT
480 const bool jit_payload_lock_p = rb_gc_multi_objspace_p();
481 bool jit_payload_p = body->jit_payload != NULL;
483 if (reference_updating) {
484#if USE_YJIT || USE_ZJIT
486 if (jit_payload_lock_p) {
487 RB_VM_LOCKING_NO_BARRIER() {
489 if (rb_yjit_enabled_p) rb_yjit_iseq_update_references(iseq);
492 if (rb_zjit_enabled_p) rb_zjit_iseq_update_references(body->jit_payload);
498 if (rb_yjit_enabled_p) rb_yjit_iseq_update_references(iseq);
501 if (rb_zjit_enabled_p) rb_zjit_iseq_update_references(body->jit_payload);
509 if (!rb_gc_checking_shareable()) {
510#if USE_YJIT || USE_ZJIT
512 if (jit_payload_lock_p) {
513 RB_VM_LOCKING_NO_BARRIER() {
515 if (rb_yjit_enabled_p) rb_yjit_iseq_mark(body->jit_payload);
518 if (rb_zjit_enabled_p) rb_zjit_iseq_mark(body->jit_payload);
524 if (rb_yjit_enabled_p) rb_yjit_iseq_mark(body->jit_payload);
527 if (rb_zjit_enabled_p) rb_zjit_iseq_mark(body->jit_payload);
536 if (!rb_gc_checking_shareable()) {
538 rb_gc_mark_and_move(&v->coverage);
539 rb_gc_mark_and_move(&v->pc2branchindex);
545 if (!rb_gc_checking_shareable()) {
546 rb_gc_mark_and_move(&iseq->aux.loader.obj);
550 if (!rb_gc_checking_shareable()) {
553 rb_iseq_mark_and_move_insn_storage(compile_data->insn.storage_head);
554 rb_iseq_mark_and_move_each_compile_data_value(iseq, reference_updating ? ISEQ_ORIGINAL_ISEQ(iseq) : NULL);
556 rb_gc_mark_and_move((
VALUE *)&compile_data->err_info);
557 rb_gc_mark_and_move((
VALUE *)&compile_data->catch_table_ary);
562 VM_ASSERT(ISEQ_EXECUTABLE_P(iseq));
565 RUBY_MARK_LEAVE(
"iseq");
569param_keyword_size(
const struct rb_iseq_param_keyword *pkw)
573 if (!pkw)
return size;
575 size +=
sizeof(
struct rb_iseq_param_keyword);
576 size +=
sizeof(
VALUE) * (pkw->num - pkw->required_num);
590 if (ISEQ_EXECUTABLE_P(iseq) && body) {
593 size += body->iseq_size *
sizeof(
VALUE);
595 size += body->local_table_size *
sizeof(
ID);
596 if (!ISEQ_LVAR_STATES_EMBED_P(body->local_table_size) && body->lvar_states.list) {
597 size += ISEQ_LVAR_STATES_BUFLEN(body->local_table_size) *
sizeof(uint8_t);
599 size += ISEQ_MBITS_BUFLEN(body->iseq_size) * ISEQ_MBITS_SIZE;
600 if (body->catch_table) {
601 size += iseq_catch_table_bytes(body->catch_table->size);
603 size += (body->param.opt_num + 1) *
sizeof(
VALUE);
604 size += param_keyword_size(body->param.keyword);
606 if (body->outer_variables) size += rb_id_table_memsize(body->outer_variables);
611 if (ISEQ_BODY(iseq)->is_entries) {
613 for (
unsigned int ic_idx = 0; ic_idx < body->ic_size; ic_idx++) {
614 IC ic = &ISEQ_IS_IC_ENTRY(body, ic_idx);
629 compile_data = ISEQ_COMPILE_DATA(iseq);
635 cur = compile_data->node.storage_head;
646rb_iseq_constant_body_alloc(
void)
657 ISEQ_BODY(iseq) = rb_iseq_constant_body_alloc();
662rb_iseq_pathobj_new(
VALUE path,
VALUE realpath)
668 if (path == realpath ||
670 pathobj = rb_fstring(path);
673 if (!
NIL_P(realpath)) {
674 realpath = rb_fstring(realpath);
676 VALUE fpath = rb_fstring(path);
678 pathobj = rb_ary_new_from_args(2, fpath, realpath);
689 rb_iseq_pathobj_new(path, realpath));
694rb_iseq_alloc_with_dummy_path(
VALUE fname)
698 ISEQ_BODY(dummy_iseq)->type = ISEQ_TYPE_TOP;
704 RB_OBJ_WRITE(dummy_iseq, &ISEQ_BODY(dummy_iseq)->location.pathobj, fname);
705 RB_OBJ_WRITE(dummy_iseq, &ISEQ_BODY(dummy_iseq)->location.label, fname);
715 rb_iseq_pathobj_set(iseq, path, realpath);
717 loc->first_lineno = first_lineno;
719 if (ISEQ_BODY(iseq)->local_iseq == iseq && rb_streql_lit(name,
"initialize")) {
720 ISEQ_BODY(iseq)->param.flags.use_block = 1;
724 loc->node_id = node_id;
725 loc->code_location = *code_location;
728 loc->code_location.beg_pos.lineno = 0;
729 loc->code_location.beg_pos.column = 0;
730 loc->code_location.end_pos.lineno = -1;
731 loc->code_location.end_pos.column = -1;
744 if (
type == ISEQ_TYPE_TOP) {
745 body->local_iseq = iseq;
747 else if (
type == ISEQ_TYPE_METHOD ||
type == ISEQ_TYPE_CLASS) {
748 body->local_iseq = iseq;
751 RB_OBJ_WRITE(iseq, &body->local_iseq, ISEQ_BODY(piseq)->local_iseq);
758 if (
type == ISEQ_TYPE_MAIN) {
759 body->local_iseq = iseq;
768 ALLOC_N(
char, INITIAL_ISEQ_COMPILE_DATA_STORAGE_BUFF_SIZE +
773 new_arena->size = INITIAL_ISEQ_COMPILE_DATA_STORAGE_BUFF_SIZE;
779prepare_node_id(
const NODE *node)
781 if (!node)
return -1;
783 if (nd_type(node) == NODE_SCOPE && RNODE_SCOPE(node)->nd_parent) {
784 return nd_node_id(RNODE_SCOPE(node)->nd_parent);
787 return nd_node_id(node);
793 const rb_iseq_t *parent,
int isolated_depth,
enum rb_iseq_type
type,
800 if (parent && (
type == ISEQ_TYPE_MAIN ||
type == ISEQ_TYPE_TOP))
804 set_relation(iseq, parent);
806 name = rb_fstring(name);
807 iseq_location_setup(iseq, name, path, realpath, first_lineno, code_location, node_id);
808 ISEQ_ORIGINAL_ISEQ_CLEAR(iseq);
809 if (body->variable) {
810 body->variable->flip_count = 0;
815 if (!
NIL_P(script_lines)) {
820 ISEQ_COMPILE_DATA_ALLOC(iseq);
821 RB_OBJ_WRITE(iseq, &ISEQ_COMPILE_DATA(iseq)->err_info, err_info);
824 ISEQ_COMPILE_DATA(iseq)->node.storage_head = ISEQ_COMPILE_DATA(iseq)->node.storage_current = new_arena();
825 ISEQ_COMPILE_DATA(iseq)->insn.storage_head = ISEQ_COMPILE_DATA(iseq)->insn.storage_current = new_arena();
826 ISEQ_COMPILE_DATA(iseq)->isolated_depth = isolated_depth;
827 ISEQ_COMPILE_DATA(iseq)->option = option;
828 ISEQ_COMPILE_DATA(iseq)->ivar_cache_table = NULL;
829 ISEQ_COMPILE_DATA(iseq)->builtin_function_table = GET_VM()->builtin_function_table;
831 if (option->coverage_enabled) {
832 VALUE coverages = rb_get_coverages();
833 if (
RTEST(coverages)) {
834 coverage = rb_hash_lookup(coverages, rb_iseq_path(iseq));
838 ISEQ_COVERAGE_SET(iseq, coverage);
839 if (coverage && ISEQ_BRANCH_COVERAGE(iseq))
845#if VM_CHECK_MODE > 0 && VM_INSN_INFO_TABLE_IMPL > 0
846static void validate_get_insn_info(
const rb_iseq_t *iseq);
850rb_iseq_insns_info_encode_positions(
const rb_iseq_t *iseq)
852#if VM_INSN_INFO_TABLE_IMPL == 2
855 int size = body->insns_info.size;
856 int max_pos = body->iseq_size;
857 unsigned int *positions = body->insns_info.positions_or_succ_index_table.positions;
858 struct succ_index_table *sd = succ_index_table_create(max_pos, (
int *)positions, size);
859 SIZED_FREE_N(positions, size);
860 body->insns_info.positions_or_succ_index_table.succ_index_table = sd;
864#if VM_INSN_INFO_TABLE_IMPL == 2
868 int size = body->insns_info.size;
869 int max_pos = body->iseq_size;
870 struct succ_index_table *sd = body->insns_info.positions_or_succ_index_table.succ_index_table;
871 return succ_index_table_invert(max_pos, sd, size);
878 iseq->aux.exec.global_trace_events = 0;
879 if (ruby_vm_event_enabled_global_flags & ISEQ_TRACE_EVENTS) {
880 rb_iseq_trace_set(iseq, ruby_vm_event_enabled_global_flags & ISEQ_TRACE_EVENTS);
889 VALUE err = data->err_info;
890 ISEQ_COMPILE_DATA_CLEAR(iseq);
891 compile_data_free(data);
893#if VM_CHECK_MODE > 0 && VM_INSN_INFO_TABLE_IMPL > 0
894 validate_get_insn_info(iseq);
898 VALUE path = pathobj_path(body->location.pathobj);
900 rb_funcallv(err, rb_intern(
"set_backtrace"), 1, &path);
904 RB_DEBUG_COUNTER_INC(iseq_num);
905 RB_DEBUG_COUNTER_ADD(iseq_cd_num, ISEQ_BODY(iseq)->ci_size);
907 rb_iseq_init_trace(iseq);
912 .inline_const_cache = OPT_INLINE_CONST_CACHE,
913 .peephole_optimization = OPT_PEEPHOLE_OPTIMIZATION,
914 .tailcall_optimization = OPT_TAILCALL_OPTIMIZATION,
915 .specialized_instruction = OPT_SPECIALISED_INSTRUCTION,
916 .operands_unification = OPT_OPERANDS_UNIFICATION,
917 .instructions_unification = OPT_INSTRUCTIONS_UNIFICATION,
918 .frozen_string_literal = OPT_FROZEN_STRING_LITERAL,
919 .debug_frozen_string_literal = OPT_DEBUG_FROZEN_STRING_LITERAL,
920 .coverage_enabled = TRUE,
924 .frozen_string_literal = -1,
928rb_iseq_opt_frozen_string_literal(
void)
930 return COMPILE_OPTION_DEFAULT.frozen_string_literal;
936#define SET_COMPILE_OPTION(o, h, mem) \
937 { VALUE flag = rb_hash_aref((h), ID2SYM(rb_intern(#mem))); \
938 if (flag == Qtrue) { (o)->mem = 1; } \
939 else if (flag == Qfalse) { (o)->mem = 0; } \
941#define SET_COMPILE_OPTION_NUM(o, h, mem) \
942 { VALUE num = rb_hash_aref((h), ID2SYM(rb_intern(#mem))); \
943 if (!NIL_P(num)) (o)->mem = NUM2INT(num); \
945 SET_COMPILE_OPTION(option, opt, inline_const_cache);
946 SET_COMPILE_OPTION(option, opt, peephole_optimization);
947 SET_COMPILE_OPTION(option, opt, tailcall_optimization);
948 SET_COMPILE_OPTION(option, opt, specialized_instruction);
949 SET_COMPILE_OPTION(option, opt, operands_unification);
950 SET_COMPILE_OPTION(option, opt, instructions_unification);
951 SET_COMPILE_OPTION(option, opt, frozen_string_literal);
952 SET_COMPILE_OPTION(option, opt, debug_frozen_string_literal);
953 SET_COMPILE_OPTION(option, opt, coverage_enabled);
954 SET_COMPILE_OPTION_NUM(option, opt, debug_level);
955#undef SET_COMPILE_OPTION
956#undef SET_COMPILE_OPTION_NUM
962 if (ast->frozen_string_literal >= 0) {
963 option->frozen_string_literal = ast->frozen_string_literal;
972 *option = COMPILE_OPTION_DEFAULT;
975 *option = COMPILE_OPTION_FALSE;
977 else if (opt ==
Qtrue) {
980 ((
int *)option)[i] = 1;
983 *option = COMPILE_OPTION_DEFAULT;
984 set_compile_option_from_hash(option, opt);
987 rb_raise(
rb_eTypeError,
"Compile option must be Hash/true/false/nil");
994 VALUE opt = rb_hash_new_capa(11);
995#define SET_COMPILE_OPTION(o, h, mem) \
996 rb_hash_aset((h), ID2SYM(rb_intern(#mem)), RBOOL((o)->mem))
997#define SET_COMPILE_OPTION_NUM(o, h, mem) \
998 rb_hash_aset((h), ID2SYM(rb_intern(#mem)), INT2NUM((o)->mem))
1000 SET_COMPILE_OPTION(option, opt, inline_const_cache);
1001 SET_COMPILE_OPTION(option, opt, peephole_optimization);
1002 SET_COMPILE_OPTION(option, opt, tailcall_optimization);
1003 SET_COMPILE_OPTION(option, opt, specialized_instruction);
1004 SET_COMPILE_OPTION(option, opt, operands_unification);
1005 SET_COMPILE_OPTION(option, opt, instructions_unification);
1006 SET_COMPILE_OPTION(option, opt, debug_frozen_string_literal);
1007 SET_COMPILE_OPTION(option, opt, coverage_enabled);
1008 SET_COMPILE_OPTION_NUM(option, opt, debug_level);
1010#undef SET_COMPILE_OPTION
1011#undef SET_COMPILE_OPTION_NUM
1012 VALUE frozen_string_literal = option->frozen_string_literal == -1 ?
Qnil : RBOOL(option->frozen_string_literal);
1013 rb_hash_aset(opt,
ID2SYM(rb_intern(
"frozen_string_literal")), frozen_string_literal);
1021 return rb_iseq_new_with_opt(ast_value, name, path, realpath, 0, parent,
1022 0,
type, &COMPILE_OPTION_DEFAULT,
1027ast_line_count(
const VALUE ast_value)
1029 rb_ast_t *ast = rb_ruby_ast_data_get(ast_value);
1030 return ast->body.line_count;
1034iseq_setup_coverage(
VALUE coverages,
VALUE path,
int line_count)
1036 if (line_count >= 0) {
1037 int len = (rb_get_coverage_mode() & COVERAGE_TARGET_ONESHOT_LINES) ? 0 : line_count;
1039 VALUE coverage = rb_default_coverage(
len);
1040 rb_hash_aset(coverages, path, coverage);
1049iseq_new_setup_coverage(
VALUE path,
int line_count)
1051 VALUE coverages = rb_get_coverages();
1053 if (
RTEST(coverages)) {
1054 iseq_setup_coverage(coverages, path, line_count);
1061 iseq_new_setup_coverage(path, ast_line_count(ast_value));
1063 return rb_iseq_new_with_opt(ast_value, name, path, realpath, 0, parent, 0,
1064 ISEQ_TYPE_TOP, &COMPILE_OPTION_DEFAULT,
1074 iseq_new_setup_coverage(path, (
int) (pm_parser_line_offsets(node->parser)->
size - 1));
1076 return pm_iseq_new_with_opt(node, name, path, realpath, 0, parent, 0,
1077 ISEQ_TYPE_TOP, &COMPILE_OPTION_DEFAULT, error_state);
1083 iseq_new_setup_coverage(path, ast_line_count(ast_value));
1085 return rb_iseq_new_with_opt(ast_value, rb_fstring_lit(
"<main>"),
1087 parent, 0, ISEQ_TYPE_MAIN, opt ? &COMPILE_OPTION_DEFAULT : &COMPILE_OPTION_FALSE,
1098 iseq_new_setup_coverage(path, (
int) (pm_parser_line_offsets(node->parser)->
size - 1));
1100 return pm_iseq_new_with_opt(node, rb_fstring_lit(
"<main>"),
1102 parent, 0, ISEQ_TYPE_MAIN, opt ? &COMPILE_OPTION_DEFAULT : &COMPILE_OPTION_FALSE, error_state);
1106rb_iseq_new_eval(
const VALUE ast_value,
VALUE name,
VALUE path,
VALUE realpath,
int first_lineno,
const rb_iseq_t *parent,
int isolated_depth)
1108 if (rb_get_coverage_mode() & COVERAGE_TARGET_EVAL) {
1109 VALUE coverages = rb_get_coverages();
1110 if (
RTEST(coverages) &&
RTEST(path) && !
RTEST(rb_hash_has_key(coverages, path))) {
1111 iseq_setup_coverage(coverages, path, ast_line_count(ast_value) + first_lineno - 1);
1116 rb_ast_t *ast = rb_ruby_ast_data_get(ast_value);
1117 if (ast->body.coverage_enabled >= 0) {
1118 option.coverage_enabled = ast->body.coverage_enabled;
1120 return rb_iseq_new_with_opt(ast_value, name, path, realpath, first_lineno,
1121 parent, isolated_depth, ISEQ_TYPE_EVAL, &option,
1127 int first_lineno,
const rb_iseq_t *parent,
int isolated_depth,
int *error_state)
1129 if (rb_get_coverage_mode() & COVERAGE_TARGET_EVAL) {
1130 VALUE coverages = rb_get_coverages();
1131 if (
RTEST(coverages) &&
RTEST(path) && !
RTEST(rb_hash_has_key(coverages, path))) {
1132 iseq_setup_coverage(coverages, path, ((
int) (pm_parser_line_offsets(node->parser)->
size - 1)) + first_lineno - 1);
1136 return pm_iseq_new_with_opt(node, name, path, realpath, first_lineno,
1137 parent, isolated_depth, ISEQ_TYPE_EVAL, &COMPILE_OPTION_DEFAULT, error_state);
1144 VALUE v1 = iseqw_new(iseq);
1146 if (v1 != v2 &&
CLASS_OF(v2) == rb_cISeq) {
1156 int first_lineno,
const rb_iseq_t *parent,
int isolated_depth,
1160 rb_ast_t *ast = rb_ruby_ast_data_get(ast_value);
1162 const NODE *node = body ? body->root : 0;
1167 if (!option) option = &COMPILE_OPTION_DEFAULT;
1170 option = set_compile_option_from_ast(&new_opt, body);
1173 if (!
NIL_P(script_lines)) {
1176 else if (body && body->script_lines) {
1177 script_lines = rb_parser_build_script_lines_from(body->script_lines);
1180 script_lines = ISEQ_SCRIPT_LINES(parent);
1183 prepare_iseq_build(iseq, name, path, realpath, first_lineno, node ? &node->nd_loc : NULL, prepare_node_id(node),
1184 parent, isolated_depth,
type, script_lines, option);
1186 if (body && body->has_source_hash) {
1187 ISEQ_BODY(iseq)->source_hash = body->source_hash;
1191 rb_iseq_compile_node(iseq, node);
1192 finish_iseq_build(iseq);
1195 return iseq_translate(iseq);
1205 int first_lineno,
const rb_iseq_t *parent,
int isolated_depth,
1209 ISEQ_BODY(iseq)->prism =
true;
1215 if (!option) option = &COMPILE_OPTION_DEFAULT;
1217 next_option = *option;
1218 next_option.coverage_enabled = node->coverage_enabled < 0 ? 0 : node->coverage_enabled > 0;
1219 option = &next_option;
1222 int32_t start_line = pm_parser_start_line(node->parser);
1225 pm_line_column_t start = pm_line_offset_list_line_column(line_offsets, location->
start, start_line);
1229 .beg_pos = { .lineno = (int) start.
line, .column = (
int) start.
column },
1230 .end_pos = { .lineno = (int) end.
line, .column = (
int) end.
column }
1233 prepare_iseq_build(iseq, name, path, realpath, first_lineno, &code_location, node->ast_node->
node_id,
1234 parent, isolated_depth,
type, node->
script_lines == NULL ?
Qnil : *node->script_lines, option);
1236 pm_iseq_compile_node(iseq, node);
1237 finish_iseq_build(iseq);
1239 return iseq_translate(iseq);
1245 VALUE name, path, realpath;
1246 int first_lineno, isolated_depth;
1248 enum rb_iseq_type
type;
1253pm_iseq_new_with_opt_try(
VALUE d)
1256 data->iseq = pm_iseq_build(data->node, data->name, data->path, data->realpath,
1257 data->first_lineno, data->parent, data->isolated_depth,
1258 data->type, data->option);
1276 int first_lineno,
const rb_iseq_t *parent,
int isolated_depth,
1280 .node = node, .name = name, .path = path, .realpath = realpath,
1281 .first_lineno = first_lineno, .parent = parent,
1282 .isolated_depth = isolated_depth, .type =
type, .option = option
1284 rb_protect(pm_iseq_new_with_opt_try, (
VALUE)&data, error_state);
1286 if (*error_state)
return NULL;
1292rb_iseq_new_with_callback(
1295 int first_lineno,
const rb_iseq_t *parent,
1301 if (!option) option = &COMPILE_OPTION_DEFAULT;
1302 prepare_iseq_build(iseq, name, path, realpath, first_lineno, NULL, -1, parent, 0,
type,
Qnil, option);
1304 rb_iseq_compile_callback(iseq, ifunc);
1305 finish_iseq_build(iseq);
1311rb_iseq_load_iseq(
VALUE fname)
1316 return iseqw_check(iseqv);
1331 return iseqw_check(iseqv);
1337#define CHECK_ARRAY(v) rb_to_array_type(v)
1338#define CHECK_HASH(v) rb_to_hash_type(v)
1339#define CHECK_STRING(v) rb_str_to_str(v)
1340#define CHECK_SYMBOL(v) rb_to_symbol_type(v)
1343static enum rb_iseq_type
1346 const ID id_top = rb_intern(
"top");
1347 const ID id_method = rb_intern(
"method");
1348 const ID id_block = rb_intern(
"block");
1349 const ID id_class = rb_intern(
"class");
1350 const ID id_rescue = rb_intern(
"rescue");
1351 const ID id_ensure = rb_intern(
"ensure");
1352 const ID id_eval = rb_intern(
"eval");
1353 const ID id_main = rb_intern(
"main");
1354 const ID id_plain = rb_intern(
"plain");
1358 if (
typeid == id_top)
return ISEQ_TYPE_TOP;
1359 if (
typeid == id_method)
return ISEQ_TYPE_METHOD;
1360 if (
typeid == id_block)
return ISEQ_TYPE_BLOCK;
1361 if (
typeid == id_class)
return ISEQ_TYPE_CLASS;
1362 if (
typeid == id_rescue)
return ISEQ_TYPE_RESCUE;
1363 if (
typeid == id_ensure)
return ISEQ_TYPE_ENSURE;
1364 if (
typeid == id_eval)
return ISEQ_TYPE_EVAL;
1365 if (
typeid == id_main)
return ISEQ_TYPE_MAIN;
1366 if (
typeid == id_plain)
return ISEQ_TYPE_PLAIN;
1367 return (
enum rb_iseq_type)-1;
1375 VALUE magic, version1, version2, format_type, misc;
1376 VALUE name, path, realpath, code_location, node_id;
1377 VALUE type, body, locals, params, exception;
1379 st_data_t iseq_type;
1389 data = CHECK_ARRAY(data);
1396 ((void)magic, (
void)version1, (void)version2, (
void)format_type);
1401 realpath =
NIL_P(realpath) ?
Qnil : CHECK_STRING(realpath);
1410 ISEQ_BODY(iseq)->local_iseq = iseq;
1412 iseq_type = iseq_type_from_sym(
type);
1413 if (iseq_type == (
enum rb_iseq_type)-1) {
1417 node_id = rb_hash_aref(misc,
ID2SYM(rb_intern(
"node_id")));
1419 code_location = rb_hash_aref(misc,
ID2SYM(rb_intern(
"code_location")));
1427 if (
SYM2ID(rb_hash_aref(misc,
ID2SYM(rb_intern(
"parser")))) == rb_intern(
"prism")) {
1428 ISEQ_BODY(iseq)->prism =
true;
1431 make_compile_option(&option, opt);
1432 option.peephole_optimization = FALSE;
1433 prepare_iseq_build(iseq, name, path, realpath, first_lineno, &tmp_loc,
NUM2INT(node_id),
1434 parent, 0, (
enum rb_iseq_type)iseq_type,
Qnil, &option);
1436 rb_iseq_build_from_ary(iseq, misc, locals, params, exception, body);
1438 finish_iseq_build(iseq);
1440 return iseqw_new(iseq);
1447iseq_s_load(
int argc,
VALUE *argv,
VALUE self)
1451 return iseq_load(data, NULL, opt);
1457 return iseq_load(data,
RTEST(parent) ? (
rb_iseq_t *)parent : NULL, opt);
1465#if !defined(__GNUC__)
1466# define INITIALIZED volatile
1472 VALUE INITIALIZED ast_value;
1474 VALUE name = rb_fstring_lit(
"<compiled>");
1477 make_compile_option(&option, opt);
1481 parse = rb_parser_compile_file_path;
1484 parse = rb_parser_compile_string_path;
1488 const VALUE parser = rb_parser_new();
1489 const rb_iseq_t *outer_scope = rb_iseq_new(
Qnil, name, name,
Qnil, 0, ISEQ_TYPE_TOP);
1491 rb_parser_set_context(parser, outer_scope, FALSE);
1492 if (ruby_vm_keep_script_lines) rb_parser_set_script_lines(parser);
1494 ast_value = (*parse)(parser, file, src, ln);
1497 ast = rb_ruby_ast_data_get(ast_value);
1499 if (!ast || !ast->body.root) {
1500 rb_ast_dispose(ast);
1504 if (option.coverage_enabled) iseq_new_setup_coverage(file, ast_line_count(ast_value));
1505 iseq = rb_iseq_new_with_opt(ast_value, name, file, realpath, ln,
1506 NULL, 0, ISEQ_TYPE_TOP, &option,
1508 rb_ast_dispose(ast);
1520 VALUE name = rb_fstring_lit(
"<compiled>");
1523 make_compile_option(&option, opt);
1527 bool parse_file =
false;
1537 pm_parse_result_init(&result);
1539 pm_options_scopes_init(result.
options, 1);
1540 result.
node.coverage_enabled = option.coverage_enabled;
1542 switch (option.frozen_string_literal) {
1543 case ISEQ_FROZEN_STRING_LITERAL_UNSET:
1545 case ISEQ_FROZEN_STRING_LITERAL_DISABLED:
1546 pm_options_frozen_string_literal_set(result.
options,
false);
1548 case ISEQ_FROZEN_STRING_LITERAL_ENABLED:
1549 pm_options_frozen_string_literal_set(result.
options,
true);
1552 rb_bug(
"pm_iseq_compile_with_option: invalid frozen_string_literal=%d", option.frozen_string_literal);
1560 error = pm_load_parse_file(&result, src, ruby_vm_keep_script_lines ? &script_lines : NULL);
1563 error = pm_parse_string(&result, src, file, ruby_vm_keep_script_lines ? &script_lines : NULL);
1568 if (error ==
Qnil) {
1570 if (option.coverage_enabled) iseq_new_setup_coverage(file, (
int) (pm_parser_line_offsets(result.
node.parser)->
size - 1));
1571 iseq = pm_iseq_new_with_opt(&result.
node, name, file, realpath, ln, NULL, 0, ISEQ_TYPE_TOP, &option, &error_state);
1573 pm_parse_result_free(&result);
1577 rb_jump_tag(error_state);
1581 pm_parse_result_free(&result);
1591 return pathobj_path(ISEQ_BODY(iseq)->location.pathobj);
1597 return pathobj_realpath(ISEQ_BODY(iseq)->location.pathobj);
1601rb_iseq_absolute_path(
const rb_iseq_t *iseq)
1603 return rb_iseq_realpath(iseq);
1607rb_iseq_from_eval_p(
const rb_iseq_t *iseq)
1609 return NIL_P(rb_iseq_realpath(iseq));
1615 return ISEQ_BODY(iseq)->location.label;
1619rb_iseq_base_label(
const rb_iseq_t *iseq)
1622 const rb_iseq_t *local_iseq = body->local_iseq;
1624 if (local_iseq == NULL || local_iseq == iseq) {
1625 return body->location.label;
1628 return ISEQ_BODY(rb_iseq_check(local_iseq))->location.label;
1633rb_iseq_first_lineno(
const rb_iseq_t *iseq)
1635 return RB_INT2NUM(ISEQ_BODY(iseq)->location.first_lineno);
1639rb_iseq_method_name(
const rb_iseq_t *iseq)
1643 if (body->type == ISEQ_TYPE_METHOD) {
1644 return body->location.label;
1652rb_iseq_code_location(
const rb_iseq_t *iseq,
int *beg_pos_lineno,
int *beg_pos_column,
int *end_pos_lineno,
int *end_pos_column)
1655 if (beg_pos_lineno) *beg_pos_lineno = loc->beg_pos.lineno;
1656 if (beg_pos_column) *beg_pos_column = loc->beg_pos.column;
1657 if (end_pos_lineno) *end_pos_lineno = loc->end_pos.lineno;
1658 if (end_pos_column) *end_pos_column = loc->end_pos.column;
1661static ID iseq_type_id(
enum rb_iseq_type
type);
1666 return ID2SYM(iseq_type_id(ISEQ_BODY(iseq)->
type));
1672 return ISEQ_COVERAGE(iseq);
1676remove_coverage_i(
void *vstart,
void *vend,
size_t stride,
void *data)
1679 for (; v != (
VALUE)vend; v += stride) {
1680 void *ptr = rb_asan_poisoned_object_p(v);
1681 rb_asan_unpoison_object(v,
false);
1683 if (rb_obj_is_iseq(v)) {
1685 if (ISEQ_VARIABLE(iseq)) {
1686 ISEQ_COVERAGE_SET(iseq,
Qnil);
1690 asan_poison_object_if(ptr, v);
1696rb_iseq_remove_coverage_all(
void)
1698 rb_objspace_each_objects(remove_coverage_i, NULL);
1704iseqw_mark_and_move(
void *ptr)
1706 rb_gc_mark_and_move((
VALUE *)ptr);
1710iseqw_memsize(
const void *ptr)
1712 return rb_iseq_memsize(*(
const rb_iseq_t **)ptr);
1718 iseqw_mark_and_move,
1721 iseqw_mark_and_move,
1723 0, 0, RUBY_TYPED_THREAD_SAFE_FREE|RUBY_TYPED_WB_PROTECTED
1739 return iseqw_new(iseq);
1748iseqw_s_compile_parser(
int argc,
VALUE *argv,
VALUE self,
bool prism)
1754 if (i > 4+
NIL_P(opt)) rb_error_arity(argc, 1, 5);
1756 case 5: opt = argv[--i];
1757 case 4: line = argv[--i];
1758 case 3: path = argv[--i];
1759 case 2: file = argv[--i];
1762 if (
NIL_P(file)) file = rb_fstring_lit(
"<compiled>");
1763 if (
NIL_P(path)) path = file;
1771 iseq = pm_iseq_compile_with_option(src, file, path, line, opt);
1774 iseq = rb_iseq_compile_with_option(src, file, path, line, opt);
1777 return iseqw_new(iseq);
1818iseqw_s_compile(
int argc,
VALUE *argv,
VALUE self)
1820 return iseqw_s_compile_parser(argc, argv, self, rb_ruby_prism_p());
1860iseqw_s_compile_parsey(
int argc,
VALUE *argv,
VALUE self)
1862 return iseqw_s_compile_parser(argc, argv, self,
false);
1902iseqw_s_compile_prism(
int argc,
VALUE *argv,
VALUE self)
1904 return iseqw_s_compile_parser(argc, argv, self,
true);
1907static VALUE iseqw_s_compile_file_prism(
int argc,
VALUE *argv,
VALUE self);
1930iseqw_s_compile_file(
int argc,
VALUE *argv,
VALUE self)
1932 if (rb_ruby_prism_p()) {
1933 return iseqw_s_compile_file_prism(argc, argv, self);
1943 i =
rb_scan_args(argc, argv,
"1*:", &file, NULL, &opt);
1944 if (i > 1+
NIL_P(opt)) rb_error_arity(argc, 1, 2);
1946 case 2: opt = argv[--i];
1949 file = rb_fstring(file);
1951 make_compile_option(&option, opt);
1956 VALUE v = rb_vm_push_frame_fname(ec, file);
1958 parser = rb_parser_new();
1959 rb_parser_set_context(parser, NULL, FALSE);
1960 ast_value = rb_parser_load_file(parser, file);
1961 if (option.coverage_enabled) iseq_new_setup_coverage(file, ast_line_count(ast_value));
1962 ast = rb_ruby_ast_data_get(ast_value);
1963 if (!ast->body.root) exc = GET_EC()->errinfo;
1966 if (!ast->body.root) {
1967 rb_ast_dispose(ast);
1971 ret = iseqw_new(rb_iseq_new_with_opt(ast_value, rb_fstring_lit(
"<main>"),
1973 rb_realpath_internal(
Qnil, file, 1),
1974 1, NULL, 0, ISEQ_TYPE_TOP, &option,
1976 rb_ast_dispose(ast);
1979 rb_vm_pop_frame(ec);
2006iseqw_s_compile_file_prism(
int argc,
VALUE *argv,
VALUE self)
2012 i =
rb_scan_args(argc, argv,
"1*:", &file, NULL, &opt);
2013 if (i > 1+
NIL_P(opt)) rb_error_arity(argc, 1, 2);
2015 case 2: opt = argv[--i];
2018 file = rb_fstring(file);
2021 VALUE v = rb_vm_push_frame_fname(ec, file);
2023 make_compile_option(&option, opt);
2026 pm_parse_result_init(&result);
2027 result.
node.coverage_enabled = option.coverage_enabled;
2029 switch (option.frozen_string_literal) {
2030 case ISEQ_FROZEN_STRING_LITERAL_UNSET:
2032 case ISEQ_FROZEN_STRING_LITERAL_DISABLED:
2033 pm_options_frozen_string_literal_set(result.
options,
false);
2035 case ISEQ_FROZEN_STRING_LITERAL_ENABLED:
2036 pm_options_frozen_string_literal_set(result.
options,
true);
2039 rb_bug(
"iseqw_s_compile_file_prism: invalid frozen_string_literal=%d", option.frozen_string_literal);
2044 VALUE error = pm_load_parse_file(&result, file, ruby_vm_keep_script_lines ? &script_lines : NULL);
2046 if (error ==
Qnil) {
2048 if (option.coverage_enabled) iseq_new_setup_coverage(file, (
int) (pm_parser_line_offsets(result.
node.parser)->
size - 1));
2049 rb_iseq_t *iseq = pm_iseq_new_with_opt(&result.
node, rb_fstring_lit(
"<main>"),
2051 rb_realpath_internal(
Qnil, file, 1),
2052 1, NULL, 0, ISEQ_TYPE_TOP, &option, &error_state);
2054 pm_parse_result_free(&result);
2058 rb_jump_tag(error_state);
2061 ret = iseqw_new(iseq);
2062 rb_vm_pop_frame(ec);
2067 pm_parse_result_free(&result);
2068 rb_vm_pop_frame(ec);
2105iseqw_s_compile_option_set(
VALUE self,
VALUE opt)
2108 make_compile_option(&option, opt);
2109 COMPILE_OPTION_DEFAULT = option;
2122iseqw_s_compile_option_get(
VALUE self)
2124 return make_compile_option_value(&COMPILE_OPTION_DEFAULT);
2128iseqw_check(
VALUE iseqw)
2134 if (!ISEQ_BODY(iseq)) {
2135 rb_ibf_load_iseq_complete(iseq);
2138 if (!ISEQ_BODY(iseq)->location.label) {
2139 rb_raise(
rb_eTypeError,
"uninitialized InstructionSequence");
2145rb_iseqw_to_iseq(
VALUE iseqw)
2147 return iseqw_check(iseqw);
2159iseqw_eval(
VALUE self)
2161 const rb_iseq_t *iseq = iseqw_check(self);
2162 if (0 == ISEQ_BODY(iseq)->iseq_size) {
2163 rb_raise(
rb_eTypeError,
"attempt to evaluate dummy InstructionSequence");
2165 return rb_iseq_eval(iseq, rb_current_box());
2173iseqw_inspect(
VALUE self)
2175 const rb_iseq_t *iseq = iseqw_check(self);
2179 if (!body->location.label) {
2180 return rb_sprintf(
"#<%"PRIsVALUE
": uninitialized>", klass);
2183 return rb_sprintf(
"<%"PRIsVALUE
":%"PRIsVALUE
"@%"PRIsVALUE
":%d>",
2185 body->location.label, rb_iseq_path(iseq),
2186 FIX2INT(rb_iseq_first_lineno(iseq)));
2214iseqw_path(
VALUE self)
2216 return rb_iseq_path(iseqw_check(self));
2236iseqw_absolute_path(
VALUE self)
2238 return rb_iseq_realpath(iseqw_check(self));
2265iseqw_label(
VALUE self)
2267 return rb_iseq_label(iseqw_check(self));
2291iseqw_base_label(
VALUE self)
2293 return rb_iseq_base_label(iseqw_check(self));
2307iseqw_first_lineno(
VALUE self)
2309 return rb_iseq_first_lineno(iseqw_check(self));
2396iseqw_to_a(
VALUE self)
2398 const rb_iseq_t *iseq = iseqw_check(self);
2399 return iseq_data_to_ary(iseq);
2402#if VM_INSN_INFO_TABLE_IMPL == 1
2404get_insn_info_binary_search(
const rb_iseq_t *iseq,
size_t pos)
2407 size_t size = body->insns_info.size;
2409 const unsigned int *positions = body->insns_info.positions_or_succ_index_table.positions;
2410 const int debug = 0;
2413 printf(
"size: %"PRIuSIZE
"\n", size);
2414 printf(
"insns_info[%"PRIuSIZE
"]: position: %d, line: %d, pos: %"PRIuSIZE
"\n",
2415 (
size_t)0, positions[0], insns_info[0].line_no, pos);
2421 else if (size == 1) {
2422 return &insns_info[0];
2425 size_t l = 1, r = size - 1;
2427 size_t m = l + (r - l) / 2;
2428 if (positions[m] == pos) {
2429 return &insns_info[m];
2431 if (positions[m] < pos) {
2439 return &insns_info[size-1];
2441 if (positions[l] > pos) {
2442 return &insns_info[l-1];
2444 return &insns_info[l];
2449get_insn_info(
const rb_iseq_t *iseq,
size_t pos)
2451 return get_insn_info_binary_search(iseq, pos);
2455#if VM_INSN_INFO_TABLE_IMPL == 2
2457get_insn_info_succinct_bitvector(
const rb_iseq_t *iseq,
size_t pos)
2460 size_t size = body->insns_info.size;
2462 const int debug = 0;
2465 printf(
"size: %"PRIuSIZE
"\n", size);
2466 printf(
"insns_info[%"PRIuSIZE
"]: line: %d, pos: %"PRIuSIZE
"\n",
2467 (
size_t)0, insns_info[0].line_no, pos);
2473 else if (size == 1) {
2474 return &insns_info[0];
2478 VM_ASSERT(body->insns_info.positions_or_succ_index_table.succ_index_table != NULL);
2479 index = succ_index_lookup(body->insns_info.positions_or_succ_index_table.succ_index_table, (
int)pos);
2480 return &insns_info[index-1];
2485get_insn_info(
const rb_iseq_t *iseq,
size_t pos)
2487 return get_insn_info_succinct_bitvector(iseq, pos);
2491#if VM_CHECK_MODE > 0 || VM_INSN_INFO_TABLE_IMPL == 0
2493get_insn_info_linear_search(
const rb_iseq_t *iseq,
const unsigned int *positions,
size_t pos)
2496 size_t i = 0, size = body->insns_info.size;
2498 const int debug = 0;
2501 printf(
"size: %"PRIuSIZE
"\n", size);
2502 printf(
"insns_info[%"PRIuSIZE
"]: position: %d, line: %d, pos: %"PRIuSIZE
"\n",
2503 i, positions[i], insns_info[i].line_no, pos);
2509 else if (size == 1) {
2510 return &insns_info[0];
2513 for (i=1; i<size; i++) {
2514 if (debug) printf(
"insns_info[%"PRIuSIZE
"]: position: %d, line: %d, pos: %"PRIuSIZE
"\n",
2515 i, positions[i], insns_info[i].line_no, pos);
2517 if (positions[i] == pos) {
2518 return &insns_info[i];
2520 if (positions[i] > pos) {
2521 return &insns_info[i-1];
2525 return &insns_info[i-1];
2529#if VM_INSN_INFO_TABLE_IMPL == 0
2531get_insn_info(
const rb_iseq_t *iseq,
size_t pos)
2533 return get_insn_info_linear_search(iseq, ISEQ_BODY(iseq)->insns_info.positions_or_succ_index_table.positions, pos);
2537#if VM_CHECK_MODE > 0 && VM_INSN_INFO_TABLE_IMPL > 0
2539validate_get_insn_info(
const rb_iseq_t *iseq)
2543#if VM_INSN_INFO_TABLE_IMPL == 2
2544 unsigned int *positions = rb_iseq_insns_info_decode_positions(body);
2546 const unsigned int *positions = body->insns_info.positions_or_succ_index_table.positions;
2548 for (i = 0; i < body->iseq_size; i++) {
2549 if (get_insn_info_linear_search(iseq, positions, i) != get_insn_info(iseq, i)) {
2550 rb_bug(
"validate_get_insn_info: get_insn_info_linear_search(iseq, %"PRIuSIZE
") != get_insn_info(iseq, %"PRIuSIZE
")", i, i);
2553#if VM_INSN_INFO_TABLE_IMPL == 2
2554 SIZED_FREE_N(positions, body->insns_info.size);
2560rb_iseq_line_no(
const rb_iseq_t *iseq,
size_t pos)
2565 return entry->line_no;
2572#ifdef USE_ISEQ_NODE_ID
2574rb_iseq_node_id(
const rb_iseq_t *iseq,
size_t pos)
2579 return entry->node_id;
2588rb_iseq_event_flags(
const rb_iseq_t *iseq,
size_t pos)
2592 return entry->events;
2599static void rb_iseq_trace_flag_cleared(
const rb_iseq_t *iseq,
size_t pos);
2611 entry->events &= ~reset;
2612 if (!(entry->events & iseq->aux.exec.global_trace_events)) {
2613 rb_iseq_trace_flag_cleared(iseq, pos);
2627 for (i = 0; i < level; i++) {
2628 diseq = ISEQ_BODY(diseq)->parent_iseq;
2630 idx = ISEQ_BODY(diseq)->local_table_size - (int)op - 1;
2631 lid = ISEQ_BODY(diseq)->local_table[idx];
2632 name = rb_id2str(lid);
2642 rb_str_catf(name,
"@%d", idx);
2646int rb_insn_unified_local_var_level(
VALUE);
2650rb_insn_operand_intern(
const rb_iseq_t *iseq,
2654 const char *types = insn_op_types(insn);
2655 char type = types[op_no];
2660 ret = rb_sprintf(
"%"PRIdVALUE, (
VALUE)(pos +
len + op));
2664 if (insn == BIN(defined) && op_no == 0) {
2665 enum defined_type deftype = (
enum defined_type)op;
2668 ret = rb_fstring_lit(
"func");
2671 ret = rb_fstring_lit(
"ref");
2673 case DEFINED_CONST_FROM:
2674 ret = rb_fstring_lit(
"constant-from");
2677 ret = rb_iseq_defined_string(deftype);
2682 else if (insn == BIN(checktype) && op_no == 0) {
2688 ret = rb_sprintf(
"%"PRIuVALUE, op);
2693 if (types[op_no+1] == TS_NUM && pnop) {
2694 ret = local_var_name(iseq, *pnop, op - VM_ENV_DATA_SIZE);
2696 else if ((level = rb_insn_unified_local_var_level(insn)) >= 0) {
2697 ret = local_var_name(iseq, (
VALUE)level, op - VM_ENV_DATA_SIZE);
2709 op = obj_resurrect(op);
2710 if (insn == BIN(defined) && op_no == 1 &&
FIXNUM_P(op)) {
2715 ret = rb_sprintf(
":$%c", (
type >> 1));
2718 ret = rb_sprintf(
":$%d", (
type >> 1));
2723 ret = rb_dump_literal(op);
2735 ret = ISEQ_BODY(iseq)->location.label;
2749 const ID *segments = ((
IC)op)->segments;
2752 rb_str_catf(ret,
"::%s", rb_id2name(*segments++));
2768 ID mid = vm_ci_mid(ci);
2771 rb_ary_push(ary, rb_sprintf(
"mid:%"PRIsVALUE, rb_id2str(mid)));
2774 rb_ary_push(ary, rb_sprintf(
"argc:%d", vm_ci_argc(ci)));
2776 if (vm_ci_flag(ci) & VM_CALL_KWARG) {
2782 if (vm_ci_flag(ci)) {
2784# define CALL_FLAG(n) if (vm_ci_flag(ci) & VM_CALL_##n) rb_ary_push(flags, rb_str_new2(#n))
2785 CALL_FLAG(ARGS_SPLAT);
2786 CALL_FLAG(ARGS_SPLAT_MUT);
2787 CALL_FLAG(ARGS_BLOCKARG);
2790 CALL_FLAG(ARGS_SIMPLE);
2791 CALL_FLAG(TAILCALL);
2795 CALL_FLAG(KW_SPLAT);
2796 CALL_FLAG(KW_SPLAT_MUT);
2797 CALL_FLAG(FORWARDING);
2798 CALL_FLAG(OPT_SEND);
2814 if (dladdr((
void *)op, &info) && info.dli_sname) {
2826 ret = rb_sprintf(
"<builtin!%s/%d>",
2827 bf->name, bf->argc);
2832 rb_bug(
"unknown operand type: %c",
type);
2838right_strip(
VALUE str)
2840 const char *beg = RSTRING_PTR(str), *end =
RSTRING_END(str);
2841 while (end-- > beg && *end ==
' ');
2851rb_iseq_disasm_insn(
VALUE ret,
const VALUE *code,
size_t pos,
2854 VALUE insn = code[pos];
2855 int len = insn_len(insn);
2857 const char *types = insn_op_types(insn);
2859 const char *insn_name_buff;
2861 insn_name_buff = insn_name(insn);
2863 extern const int rb_vm_max_insn_name_size;
2864 rb_str_catf(str,
"%04"PRIuSIZE
" %-*s ", pos, rb_vm_max_insn_name_size, insn_name_buff);
2867 rb_str_catf(str,
"%04"PRIuSIZE
" %-28.*s ", pos,
2868 (
int)strcspn(insn_name_buff,
"_"), insn_name_buff);
2871 for (j = 0; types[j]; j++) {
2872 VALUE opstr = rb_insn_operand_intern(iseq, insn, j, code[pos + j + 1],
2873 len, pos, &code[pos + j + 2],
2883 unsigned int line_no = rb_iseq_line_no(iseq, pos);
2884 unsigned int prev = pos == 0 ? 0 : rb_iseq_line_no(iseq, pos - 1);
2885 if (line_no && line_no != prev) {
2886 long slen = RSTRING_LEN(str);
2887 slen = (slen > 70) ? 0 : (70 - slen);
2888 str = rb_str_catf(str,
"%*s(%4d)", (
int)slen,
"", line_no);
2895 str = rb_str_catf(str,
"[%s%s%s%s%s%s%s%s%s%s%s%s]",
2906 events & RUBY_EVENT_COVERAGE_LINE ?
"Cli" :
"",
2907 events & RUBY_EVENT_COVERAGE_BRANCH ?
"Cbr" :
"");
2917 printf(
"%.*s\n", (
int)RSTRING_LEN(str), RSTRING_PTR(str));
2926 case CATCH_TYPE_RESCUE:
2928 case CATCH_TYPE_ENSURE:
2930 case CATCH_TYPE_RETRY:
2932 case CATCH_TYPE_BREAK:
2934 case CATCH_TYPE_REDO:
2936 case CATCH_TYPE_NEXT:
2939 rb_bug(
"unknown catch type: %d",
type);
2948 if (!body->location.label) {
2949 return rb_sprintf(
"#<ISeq: uninitialized>");
2953 return rb_sprintf(
"#<ISeq:%"PRIsVALUE
"@%"PRIsVALUE
":%d (%d,%d)-(%d,%d)>",
2954 body->location.label, rb_iseq_path(iseq),
2955 loc->beg_pos.lineno,
2956 loc->beg_pos.lineno,
2957 loc->beg_pos.column,
2958 loc->end_pos.lineno,
2959 loc->end_pos.column);
2965 {(void (*)(
void *))rb_mark_set, (void (*)(
void *))st_free_table, 0, 0,},
2966 0, 0, RUBY_TYPED_THREAD_SAFE_FREE
2980 enum {header_minlen = 72};
2983 const char *indent_str;
2986 size = body->iseq_size;
2988 indent_len = RSTRING_LEN(indent);
2989 indent_str = RSTRING_PTR(indent);
2995 if ((l = RSTRING_LEN(str) - indent_len) < header_minlen) {
2999 if (ISEQ_BODY(iseq)->builtin_attrs) {
3000#define disasm_builtin_attr(str, iseq, attr) \
3001 if (ISEQ_BODY(iseq)->builtin_attrs & BUILTIN_ATTR_ ## attr) { \
3002 rb_str_cat2(str, " " #attr); \
3004 disasm_builtin_attr(str, iseq, LEAF);
3005 disasm_builtin_attr(str, iseq, SINGLE_NOARG_LEAF);
3006 disasm_builtin_attr(str, iseq, INLINE_BLOCK);
3007 disasm_builtin_attr(str, iseq, C_TRACE);
3012 if (body->catch_table) {
3016 if (body->catch_table) {
3018 indent_str = RSTRING_PTR(indent);
3019 for (i = 0; i < body->catch_table->size; i++) {
3021 UNALIGNED_MEMBER_PTR(body->catch_table, entries[i]);
3024 "| catch type: %-6s st: %04d ed: %04d sp: %04d cont: %04d\n",
3025 catch_type((
int)entry->type), (
int)entry->start,
3026 (
int)entry->end, (
int)entry->sp, (
int)entry->cont);
3027 if (entry->iseq && !(done_iseq && st_is_member(done_iseq, (st_data_t)entry->iseq))) {
3028 rb_str_concat(str, rb_iseq_disasm_recursive(rb_iseq_check(entry->iseq), indent));
3030 done_iseq = st_init_numtable();
3033 st_insert(done_iseq, (st_data_t)entry->iseq, (st_data_t)0);
3034 indent_str = RSTRING_PTR(indent);
3037 rb_str_resize(indent, indent_len);
3038 indent_str = RSTRING_PTR(indent);
3040 if (body->catch_table) {
3042 rb_str_cat2(str,
"|-------------------------------------"
3043 "-----------------------------------\n");
3047 if (body->local_table) {
3048 const struct rb_iseq_param_keyword *
const keyword = body->param.keyword;
3051 "local table (size: %d, argc: %d "
3052 "[opts: %d, rest: %d, post: %d, block: %d, kw: %d@%d, kwrest: %d])\n",
3053 body->local_table_size,
3054 body->param.lead_num,
3055 body->param.opt_num,
3056 body->param.flags.has_rest ? body->param.rest_start : -1,
3057 body->param.post_num,
3058 body->param.flags.has_block ? body->param.block_start : -1,
3059 body->param.flags.has_kw ? keyword->num : -1,
3060 body->param.flags.has_kw ? keyword->required_num : -1,
3061 body->param.flags.has_kwrest ? keyword->rest_start : -1);
3063 for (i = body->local_table_size; i > 0;) {
3064 int li = body->local_table_size - --i - 1;
3066 VALUE name = local_var_name(iseq, 0, i);
3071 if (body->param.flags.has_opt) {
3072 int argc = body->param.lead_num;
3073 int opts = body->param.opt_num;
3074 if (li >= argc && li < argc + opts) {
3075 snprintf(opti,
sizeof(opti),
"Opt=%"PRIdVALUE,
3076 body->param.opt_table[li - argc]);
3080 snprintf(argi,
sizeof(argi),
"%s%s%s%s%s%s",
3081 (body->param.lead_num > li) ? (body->param.flags.ambiguous_param0 ?
"AmbiguousArg" :
"Arg") :
"",
3083 (body->param.flags.has_rest && body->param.rest_start == li) ? (body->param.flags.anon_rest ?
"AnonRest" :
"Rest") :
"",
3084 (body->param.flags.has_post && body->param.post_start <= li && li < body->param.post_start + body->param.post_num) ?
"Post" :
"",
3085 (body->param.flags.has_kwrest && keyword->rest_start == li) ? (body->param.flags.anon_kwrest ?
"AnonKwrest" :
"Kwrest") :
"",
3086 (body->param.flags.has_block && body->param.block_start == li) ?
"Block" :
"");
3089 rb_str_catf(str,
"[%2d] ", i + 1);
3090 width = RSTRING_LEN(str) + 11;
3092 if (*argi) rb_str_catf(str,
"<%s>", argi);
3093 if ((width -= RSTRING_LEN(str)) > 0) rb_str_catf(str,
"%*s", (
int)width,
"");
3099 code = rb_iseq_original_iseq(iseq);
3100 for (n = 0; n < size;) {
3102 n += rb_iseq_disasm_insn(str, code, n, iseq, child);
3105 if (body->mandatory_only_iseq) {
3111 if (done_iseq && st_is_member(done_iseq, (st_data_t)isv))
continue;
3114 indent_str = RSTRING_PTR(indent);
3125 rb_str_resize(str, RSTRING_LEN(str));
3135rb_estimate_iv_count(
VALUE klass,
const rb_iseq_t * initialize_iseq)
3138 set_init_embedded_numtable_with_size(&iv_names, 0);
3140 for (
unsigned int i = 0; i < ISEQ_BODY(initialize_iseq)->ivc_size; i++) {
3141 IVC cache = (
IVC)&ISEQ_BODY(initialize_iseq)->is_entries[i];
3143 if (cache->iv_set_name) {
3144 set_insert(&iv_names, cache->iv_set_name);
3148 size_t count = iv_names.num_entries;
3151 if (!
NIL_P(superclass)) {
3152 count += RCLASS_MAX_IV_COUNT(superclass);
3155 set_free_embedded_table(&iv_names);
3157 if (count > (attr_index_t)-1) {
3158 return (attr_index_t)-1;
3161 return (attr_index_t)count;
3183iseqw_disasm(
VALUE self)
3185 return rb_iseq_disasm(iseqw_check(self));
3189iseq_iterate_children(
const rb_iseq_t *iseq,
void (*iter_func)(
const rb_iseq_t *child_iseq,
void *data),
void *data)
3192 VALUE *code = rb_iseq_original_iseq(iseq);
3197 if (body->catch_table) {
3198 for (i = 0; i < body->catch_table->size; i++) {
3200 UNALIGNED_MEMBER_PTR(body->catch_table, entries[i]);
3201 child = entry->iseq;
3203 if (
NIL_P(rb_hash_aref(all_children, (
VALUE)child))) {
3204 rb_hash_aset(all_children, (
VALUE)child,
Qtrue);
3205 (*iter_func)(child, data);
3211 for (i=0; i<body->iseq_size;) {
3212 VALUE insn = code[i];
3213 int len = insn_len(insn);
3214 const char *types = insn_op_types(insn);
3217 for (j=0; types[j]; j++) {
3222 if (
NIL_P(rb_hash_aref(all_children, (
VALUE)child))) {
3223 rb_hash_aset(all_children, (
VALUE)child,
Qtrue);
3224 (*iter_func)(child, data);
3239yield_each_children(
const rb_iseq_t *child_iseq,
void *data)
3253iseqw_each_child(
VALUE self)
3255 const rb_iseq_t *iseq = iseqw_check(self);
3256 iseq_iterate_children(iseq, yield_each_children, NULL);
3263#define C(ev, cstr, l) if (events & ev) rb_ary_push(ary, rb_ary_new_from_args(2, l, ID2SYM(rb_intern(cstr))));
3283iseqw_trace_points(
VALUE self)
3285 const rb_iseq_t *iseq = iseqw_check(self);
3290 for (i=0; i<body->insns_info.size; i++) {
3292 if (entry->events) {
3293 push_event_info(iseq, entry->events, entry->line_no, ary);
3339 if (rb_frame_info_p(body)) {
3340 iseq = rb_get_iseq_from_frame_info(body);
3343 iseq = vm_proc_iseq(body);
3345 if (!rb_obj_is_iseq((
VALUE)iseq)) {
3350 iseq = rb_method_iseq(body);
3352 else if (rb_typeddata_is_instance_of(body, &iseqw_data_type)) {
3356 return iseq ? iseqw_new(iseq) :
Qnil;
3414 VALUE iseqw = iseqw_s_of(klass, body);
3415 return NIL_P(iseqw) ?
Qnil : rb_iseq_disasm(iseqw_check(iseqw));
3419register_label(
struct st_table *table,
unsigned long idx)
3422 st_insert(table, idx, sym);
3431 case CATCH_TYPE_RESCUE:
CONST_ID(
id,
"rescue");
break;
3432 case CATCH_TYPE_ENSURE:
CONST_ID(
id,
"ensure");
break;
3433 case CATCH_TYPE_RETRY:
CONST_ID(
id,
"retry");
break;
3434 case CATCH_TYPE_BREAK:
CONST_ID(
id,
"break");
break;
3435 case CATCH_TYPE_REDO:
CONST_ID(
id,
"redo");
break;
3436 case CATCH_TYPE_NEXT:
CONST_ID(
id,
"next");
break;
3438 rb_bug(
"unknown exception type: %d", (
int)
type);
3453 {(void (*)(
void *))rb_mark_tbl, (void (*)(
void *))st_free_table, 0, 0,},
3454 0, 0, RUBY_TYPED_THREAD_SAFE_FREE
3457#define DECL_ID(name) \
3460#define INIT_ID(name) \
3461 id_##name = rb_intern(#name)
3464iseq_type_id(
enum rb_iseq_type
type)
3489 case ISEQ_TYPE_TOP:
return id_top;
3490 case ISEQ_TYPE_METHOD:
return id_method;
3491 case ISEQ_TYPE_BLOCK:
return id_block;
3492 case ISEQ_TYPE_CLASS:
return id_class;
3493 case ISEQ_TYPE_RESCUE:
return id_rescue;
3494 case ISEQ_TYPE_ENSURE:
return id_ensure;
3495 case ISEQ_TYPE_EVAL:
return id_eval;
3496 case ISEQ_TYPE_MAIN:
return id_main;
3497 case ISEQ_TYPE_PLAIN:
return id_plain;
3500 rb_bug(
"unsupported iseq type: %d", (
int)
type);
3513 VALUE *seq, *iseq_original;
3518 VALUE params = rb_hash_new();
3522 VALUE misc = rb_hash_new();
3524 static ID insn_syms[VM_BARE_INSTRUCTION_SIZE];
3525 struct st_table *labels_table = st_init_numtable();
3528 if (insn_syms[0] == 0) {
3530 for (i=0; i<numberof(insn_syms); i++) {
3531 insn_syms[i] = rb_intern(insn_name(i));
3536 type = iseq_type_id(iseq_body->type);
3539 for (i=0; i<iseq_body->local_table_size; i++) {
3540 ID lid = iseq_body->local_table[i];
3542 if (lid != idItImplicit && rb_id2str(lid)) {
3556 const struct rb_iseq_param_keyword *
const keyword = iseq_body->param.keyword;
3559 if (iseq_body->param.flags.has_opt) {
3560 int len = iseq_body->param.opt_num + 1;
3563 for (j = 0; j <
len; j++) {
3564 VALUE l = register_label(labels_table, iseq_body->param.opt_table[j]);
3567 rb_hash_aset(params,
ID2SYM(rb_intern(
"opt")), arg_opt_labels);
3571 if (iseq_body->param.flags.has_lead) rb_hash_aset(params,
ID2SYM(rb_intern(
"lead_num")),
INT2FIX(iseq_body->param.lead_num));
3572 if (iseq_body->param.flags.has_post) rb_hash_aset(params,
ID2SYM(rb_intern(
"post_num")),
INT2FIX(iseq_body->param.post_num));
3573 if (iseq_body->param.flags.has_post) rb_hash_aset(params,
ID2SYM(rb_intern(
"post_start")),
INT2FIX(iseq_body->param.post_start));
3574 if (iseq_body->param.flags.has_rest) rb_hash_aset(params,
ID2SYM(rb_intern(
"rest_start")),
INT2FIX(iseq_body->param.rest_start));
3575 if (iseq_body->param.flags.has_block) rb_hash_aset(params,
ID2SYM(rb_intern(
"block_start")),
INT2FIX(iseq_body->param.block_start));
3576 if (iseq_body->param.flags.has_kw) {
3579 for (i=0; i<keyword->required_num; i++) {
3582 for (j=0; i<keyword->num; i++, j++) {
3583 VALUE key = rb_ary_new_from_args(1,
ID2SYM(keyword->table[i]));
3584 if (!UNDEF_P(keyword->default_values[j])) {
3590 rb_hash_aset(params,
ID2SYM(rb_intern(
"kwbits")),
3591 INT2FIX(keyword->bits_start));
3592 rb_hash_aset(params,
ID2SYM(rb_intern(
"keyword")), keywords);
3594 if (iseq_body->param.flags.has_kwrest) rb_hash_aset(params,
ID2SYM(rb_intern(
"kwrest")),
INT2FIX(keyword->rest_start));
3595 if (iseq_body->param.flags.ambiguous_param0) rb_hash_aset(params,
ID2SYM(rb_intern(
"ambiguous_param0")),
Qtrue);
3596 if (iseq_body->param.flags.use_block) rb_hash_aset(params,
ID2SYM(rb_intern(
"use_block")),
Qtrue);
3600 iseq_original = rb_iseq_original_iseq((
rb_iseq_t *)iseq);
3602 for (seq = iseq_original; seq < iseq_original + iseq_body->iseq_size; ) {
3603 VALUE insn = *seq++;
3604 int j,
len = insn_len(insn);
3609 for (j=0; j<
len-1; j++, seq++) {
3610 enum ruby_insn_type_chars op_type = insn_op_type(insn, j);
3614 unsigned long idx = nseq - iseq_original + *seq;
3615 rb_ary_push(ary, register_label(labels_table, idx));
3629 VALUE val = iseq_data_to_ary(rb_iseq_check(iseq));
3640 const ID *ids = ((
IC)*seq)->segments;
3659 VALUE e = rb_hash_new();
3660 int argc = vm_ci_argc(ci);
3662 ID mid = vm_ci_mid(ci);
3664 rb_hash_aset(e,
ID2SYM(rb_intern(
"flag")),
UINT2NUM(vm_ci_flag(ci)));
3666 if (vm_ci_flag(ci) & VM_CALL_KWARG) {
3671 argc -= kwarg->keyword_len;
3672 for (i = 0; i < kwarg->keyword_len; i++) {
3675 rb_hash_aset(e,
ID2SYM(rb_intern(
"kw_arg")), kw);
3678 rb_hash_aset(e,
ID2SYM(rb_intern(
"orig_argc")),
3688 VALUE cdhash = *seq;
3692 st_foreach(rb_imemo_cdhash_tbl(cdhash), cdhash_each, val);
3696 unsigned long idx = nseq - iseq_original + pos;
3699 register_label(labels_table, idx));
3706#if SIZEOF_VALUE <= SIZEOF_LONG
3716 VALUE val = rb_hash_new();
3717#if SIZEOF_VALUE <= SIZEOF_LONG
3722 rb_hash_aset(val,
ID2SYM(rb_intern(
"func_ptr")), func_ptr);
3730 rb_bug(
"unknown operand: %c", insn_op_type(insn, j));
3739 if (iseq_body->catch_table)
for (i=0; i<iseq_body->catch_table->size; i++) {
3742 UNALIGNED_MEMBER_PTR(iseq_body->catch_table, entries[i]);
3743 rb_ary_push(ary, exception_type2symbol(entry->type));
3745 rb_ary_push(ary, iseq_data_to_ary(rb_iseq_check(entry->iseq)));
3750 rb_ary_push(ary, register_label(labels_table, entry->start));
3751 rb_ary_push(ary, register_label(labels_table, entry->end));
3752 rb_ary_push(ary, register_label(labels_table, entry->cont));
3759 prev_insn_info = NULL;
3760#ifdef USE_ISEQ_NODE_ID
3769 if (st_lookup(labels_table, pos, &label)) {
3773 info = get_insn_info(iseq, pos);
3774#ifdef USE_ISEQ_NODE_ID
3778 if (prev_insn_info != info) {
3779 int line = info->line_no;
3782 if (line > 0 && last_line != line) {
3786#define CHECK_EVENT(ev) if (events & ev) rb_ary_push(body, ID2SYM(rb_intern(#ev)));
3796 prev_insn_info = info;
3805 rb_hash_aset(misc,
ID2SYM(rb_intern(
"arg_size")),
INT2FIX(iseq_body->param.size));
3806 rb_hash_aset(misc,
ID2SYM(rb_intern(
"local_size")),
INT2FIX(iseq_body->local_table_size));
3807 rb_hash_aset(misc,
ID2SYM(rb_intern(
"stack_max")),
INT2FIX(iseq_body->stack_max));
3808 rb_hash_aset(misc,
ID2SYM(rb_intern(
"node_id")),
INT2FIX(iseq_body->location.node_id));
3809 rb_hash_aset(misc,
ID2SYM(rb_intern(
"source_hash")), iseq_body->source_hash ?
ULL2NUM(iseq_body->source_hash) :
Qnil);
3810 rb_hash_aset(misc,
ID2SYM(rb_intern(
"code_location")),
3811 rb_ary_new_from_args(4,
3812 INT2FIX(iseq_body->location.code_location.beg_pos.lineno),
3813 INT2FIX(iseq_body->location.code_location.beg_pos.column),
3814 INT2FIX(iseq_body->location.code_location.end_pos.lineno),
3815 INT2FIX(iseq_body->location.code_location.end_pos.column)));
3816#ifdef USE_ISEQ_NODE_ID
3817 rb_hash_aset(misc,
ID2SYM(rb_intern(
"node_ids")), node_ids);
3819 rb_hash_aset(misc,
ID2SYM(rb_intern(
"parser")), iseq_body->prism ?
ID2SYM(rb_intern(
"prism")) :
ID2SYM(rb_intern(
"parse.y")));
3847rb_iseq_parameters(
const rb_iseq_t *iseq,
int is_proc)
3851 const struct rb_iseq_param_keyword *
const keyword = body->param.keyword;
3853 ID req, opt, rest, block, key, keyrest;
3854#define PARAM_TYPE(type) rb_ary_push(a = rb_ary_new2(2), ID2SYM(type))
3855#define PARAM_ID(i) body->local_table[(i)]
3856#define PARAM(i, type) ( \
3858 PARAM_ID(i) != idItImplicit && rb_id2str(PARAM_ID(i)) ? \
3859 rb_ary_push(a, ID2SYM(PARAM_ID(i))) : \
3865 if (body->param.flags.forwardable) {
3876 for (i = 0; i < body->param.lead_num; i++) {
3881 for (i = 0; i < body->param.lead_num; i++) {
3885 r = body->param.lead_num + body->param.opt_num;
3886 for (; i < r; i++) {
3889 if (body->param.flags.has_rest) {
3891 rb_ary_push(args, PARAM(body->param.rest_start, rest));
3893 r = body->param.post_start + body->param.post_num;
3895 for (i = body->param.post_start; i < r; i++) {
3900 for (i = body->param.post_start; i < r; i++) {
3904 if (body->param.flags.accepts_no_kwarg) {
3910 if (body->param.flags.has_kw) {
3912 if (keyword->required_num > 0) {
3915 for (; i < keyword->required_num; i++) {
3917 if (rb_id2str(keyword->table[i])) {
3924 for (; i < keyword->num; i++) {
3926 if (rb_id2str(keyword->table[i])) {
3932 if (body->param.flags.has_kwrest || body->param.flags.ruby2_keywords) {
3935 PARAM_TYPE(keyrest);
3936 if (body->param.flags.has_kwrest &&
3937 rb_id2str(param = PARAM_ID(keyword->rest_start))) {
3940 else if (body->param.flags.ruby2_keywords) {
3945 if (body->param.flags.accepts_no_block) {
3948 PARAM_TYPE(noblock);
3951 else if (body->param.flags.has_block) {
3953 rb_ary_push(args, PARAM(body->param.block_start, block));
3959rb_iseq_defined_string(
enum defined_type
type)
3961 static const char expr_names[][18] = {
3963 "instance-variable",
3979 if ((
unsigned)(
type - 1) >= (
unsigned)numberof(expr_names)) rb_bug(
"unknown defined type %d",
type);
3980 estr = expr_names[
type - 1];
3981 return rb_fstring_cstr(estr);
3991 void *notrace_encoded_insn;
3992 void *trace_encoded_insn;
3995 void *zjit_encoded_insn;
3998static insn_data_t insn_data[VM_BARE_INSTRUCTION_SIZE];
4001rb_free_encoded_insn_data(
void)
4003 st_free_table(encoded_insn_data);
4009rb_vm_encoded_insn_data_table_init(
void)
4011#if OPT_DIRECT_THREADED_CODE || OPT_CALL_THREADED_CODE
4012 const void *
const *table = rb_vm_get_insns_address_table();
4013#define INSN_CODE(insn) ((VALUE)table[insn])
4015#define INSN_CODE(insn) ((VALUE)(insn))
4017 encoded_insn_data = st_init_numtable_with_size(VM_BARE_INSTRUCTION_SIZE);
4019 for (
int insn = 0; insn < VM_BARE_INSTRUCTION_SIZE; insn++) {
4020 insn_data[insn].insn = insn;
4021 insn_data[insn].insn_len = insn_len(insn);
4026 int notrace_insn = (insn != BIN(opt_invokebuiltin_delegate_leave)) ? insn : BIN(opt_invokebuiltin_delegate);
4027 insn_data[insn].notrace_encoded_insn = (
void *)INSN_CODE(notrace_insn);
4028 insn_data[insn].trace_encoded_insn = (
void *)INSN_CODE(notrace_insn + VM_BARE_INSTRUCTION_SIZE);
4030 st_data_t key1 = (st_data_t)INSN_CODE(insn);
4031 st_data_t key2 = (st_data_t)INSN_CODE(insn + VM_BARE_INSTRUCTION_SIZE);
4032 st_add_direct(encoded_insn_data, key1, (st_data_t)&insn_data[insn]);
4033 st_add_direct(encoded_insn_data, key2, (st_data_t)&insn_data[insn]);
4036 int zjit_insn = vm_bare_insn_to_zjit_insn(insn);
4037 insn_data[insn].zjit_insn = zjit_insn;
4038 insn_data[insn].zjit_encoded_insn = (insn != zjit_insn) ? (
void *)INSN_CODE(zjit_insn) : 0;
4040 if (insn != zjit_insn) {
4041 st_data_t key3 = (st_data_t)INSN_CODE(zjit_insn);
4042 st_add_direct(encoded_insn_data, key3, (st_data_t)&insn_data[insn]);
4052rb_vm_insn_addr2insn(
const void *addr)
4054 st_data_t key = (st_data_t)addr;
4057 if (st_lookup(encoded_insn_data, key, &val)) {
4059 return (
int)e->insn;
4062 rb_bug(
"rb_vm_insn_addr2insn: invalid insn address: %p", addr);
4068rb_vm_insn_addr2opcode(
const void *addr)
4070 st_data_t key = (st_data_t)addr;
4073 if (st_lookup(encoded_insn_data, key, &val)) {
4075 int opcode = e->insn;
4076 if (addr == e->trace_encoded_insn) {
4077 opcode += VM_BARE_INSTRUCTION_SIZE;
4080 else if (addr == e->zjit_encoded_insn) {
4081 opcode = e->zjit_insn;
4087 rb_bug(
"rb_vm_insn_addr2opcode: invalid insn address: %p", addr);
4094rb_vm_insn_decode(
const VALUE encoded)
4096#if OPT_DIRECT_THREADED_CODE || OPT_CALL_THREADED_CODE
4097 int insn = rb_vm_insn_addr2insn((
void *)encoded);
4099 int insn = (int)encoded;
4106encoded_iseq_trace_instrument(
VALUE *iseq_encoded_insn,
rb_event_flag_t turnon,
bool remain_traced)
4108 st_data_t key = (st_data_t)*iseq_encoded_insn;
4111 if (st_lookup(encoded_insn_data, key, &val)) {
4113 if (remain_traced && key == (st_data_t)e->trace_encoded_insn) {
4116 *iseq_encoded_insn = (
VALUE) (turnon ? e->trace_encoded_insn : e->notrace_encoded_insn);
4120 rb_bug(
"trace_instrument: invalid insn address: %p", (
void *)*iseq_encoded_insn);
4125rb_iseq_trace_flag_cleared(
const rb_iseq_t *iseq,
size_t pos)
4128 VALUE *iseq_encoded = (
VALUE *)body->iseq_encoded;
4129 encoded_iseq_trace_instrument(&iseq_encoded[pos], 0,
false);
4155 VALUE *iseq_encoded = (
VALUE *)body->iseq_encoded;
4158 VM_ASSERT(ISEQ_EXECUTABLE_P(iseq));
4159 ASSERT_vm_locking_with_barrier();
4161 for (pc=0; pc<body->iseq_size;) {
4165 unsigned int line = (int)entry->line_no;
4167 if (target_line == 0 || target_line == line) {
4171 target_events &= ~RUBY_EVENT_LINE;
4174 if (pc_events & target_events) {
4177 pc += encoded_iseq_trace_instrument(&iseq_encoded[pc], pc_events & (target_events | iseq->aux.exec.global_trace_events),
true);
4182 rb_hook_list_connect_local_tracepoint(hook_list, tpval, target_line);
4183 iseq_mut->aux.exec.local_hooks_cnt++;
4192 unsigned int target_line;
4198iseq_add_local_tracepoint_i(
const rb_iseq_t *iseq,
void *p)
4201 data->n += iseq_add_local_tracepoint(iseq, data->turnon_events, data->tpval, data->target_line, data->r);
4202 iseq_iterate_children(iseq, iseq_add_local_tracepoint_i, p);
4206rb_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)
4208 ASSERT_vm_locking_with_barrier();
4210 if (target_bmethod) {
4211 turnon_events = add_bmethod_events(turnon_events);
4213 data.turnon_events = turnon_events;
4215 data.target_line = target_line;
4217 data.r = GET_RACTOR();
4219 iseq_add_local_tracepoint_i(iseq, (
void *)&data);
4221 VALUE disasm = rb_iseq_disasm(iseq);
4222 fprintf(stderr,
"Iseq disasm:\n:%.*s",
4232 unsigned int num_hooks_left;
4237 VALUE *iseq_encoded;
4238 ASSERT_vm_locking_with_barrier();
4240 hook_list = rb_iseq_local_hooks(iseq, r,
false);
4246 if (rb_hook_list_remove_local_tracepoint(hook_list, tpval)) {
4248 iseq_mut->aux.exec.local_hooks_cnt--;
4249 local_events = hook_list->events;
4250 num_hooks_left = rb_hook_list_count(hook_list);
4251 if (local_events == 0 && prev_events != 0) {
4252 st_delete(rb_ractor_targeted_hooks(r), (st_data_t*)&iseq, NULL);
4253 rb_hook_list_free(hook_list);
4256 if (iseq->aux.exec.local_hooks_cnt == num_hooks_left) {
4257 body = ISEQ_BODY(iseq);
4258 iseq_encoded = (
VALUE *)body->iseq_encoded;
4259 local_events = add_bmethod_events(local_events);
4260 for (pc = 0; pc<body->iseq_size;) {
4262 pc += encoded_iseq_trace_instrument(&iseq_encoded[pc], pc_events & (local_events | iseq->aux.exec.global_trace_events),
false);
4279iseq_remove_local_tracepoint_i(
const rb_iseq_t *iseq,
void *p)
4282 data->n += iseq_remove_local_tracepoint(iseq, data->tpval, data->r);
4283 iseq_iterate_children(iseq, iseq_remove_local_tracepoint_i, p);
4290 ASSERT_vm_locking_with_barrier();
4295 iseq_remove_local_tracepoint_i(iseq, (
void *)&data);
4302 if (iseq->aux.exec.global_trace_events == turnon_events) {
4306 if (!ISEQ_EXECUTABLE_P(iseq)) {
4315 VALUE *iseq_encoded = (
VALUE *)body->iseq_encoded;
4317 rb_hook_list_t *local_hooks = rb_iseq_local_hooks(iseq, GET_RACTOR(),
false);
4319 ((
rb_iseq_t *)iseq)->aux.exec.global_trace_events = turnon_events;
4320 enabled_events = add_bmethod_events(turnon_events | local_events);
4322 for (pc=0; pc<body->iseq_size;) {
4324 pc += encoded_iseq_trace_instrument(&iseq_encoded[pc], pc_events & enabled_events,
true);
4332clear_attr_cc(
VALUE v)
4334 ASSERT_vm_locking_with_barrier();
4335 if (imemo_type_p(v, imemo_callcache) && vm_cc_ivar_p((
const struct rb_callcache *)v)) {
4347 ASSERT_vm_locking_with_barrier();
4348 if (imemo_type_p(v, imemo_callcache) && vm_cc_bf_p((
const struct rb_callcache *)v)) {
4358clear_attr_ccs_i(
void *vstart,
void *vend,
size_t stride,
void *data)
4361 for (; v != (
VALUE)vend; v += stride) {
4362 void *ptr = rb_asan_poisoned_object_p(v);
4363 rb_asan_unpoison_object(v,
false);
4365 asan_poison_object_if(ptr, v);
4371rb_clear_attr_ccs(
void)
4373 rb_objspace_each_objects(clear_attr_ccs_i, NULL);
4377clear_bf_ccs_i(
void *vstart,
void *vend,
size_t stride,
void *data)
4380 for (; v != (
VALUE)vend; v += stride) {
4381 void *ptr = rb_asan_poisoned_object_p(v);
4382 rb_asan_unpoison_object(v,
false);
4384 asan_poison_object_if(ptr, v);
4390rb_clear_bf_ccs(
void)
4392 rb_objspace_each_objects(clear_bf_ccs_i, NULL);
4396trace_set_i(
void *vstart,
void *vend,
size_t stride,
void *data)
4401 for (; v != (
VALUE)vend; v += stride) {
4402 void *ptr = rb_asan_poisoned_object_p(v);
4403 rb_asan_unpoison_object(v,
false);
4405 if (rb_obj_is_iseq(v)) {
4406 rb_iseq_trace_set(rb_iseq_check((
rb_iseq_t *)v), turnon_events);
4408 else if (clear_attr_cc(v)) {
4410 else if (clear_bf_cc(v)) {
4413 asan_poison_object_if(ptr, v);
4421 rb_objspace_each_objects(trace_set_i, &turnon_events);
4425rb_iseqw_local_variables(
VALUE iseqval)
4427 return rb_iseq_local_variables(iseqw_check(iseqval));
4448iseqw_to_binary(
int argc,
VALUE *argv,
VALUE self)
4451 return rb_iseq_ibf_dump(iseqw_check(self), opt);
4468iseqw_s_load_from_binary(
VALUE self,
VALUE str)
4470 return iseqw_new(rb_iseq_ibf_load(str));
4476 return iseqw_new(rb_iseq_ibf_load_bytes(ptr,
len));
4486iseqw_s_load_from_binary_extra_data(
VALUE self,
VALUE str)
4488 return rb_iseq_ibf_load_extra_data(str);
4491#if VM_INSN_INFO_TABLE_IMPL == 2
4524#define IMMEDIATE_TABLE_SIZE 54
4526struct succ_index_table {
4527 uint64_t imm_part[IMMEDIATE_TABLE_SIZE / 9];
4528 struct succ_dict_block {
4530 uint64_t small_block_ranks;
4531 uint64_t bits[512/64];
4532 } succ_part[FLEX_ARY_LEN];
4535#define imm_block_rank_set(v, i, r) (v) |= (uint64_t)(r) << (7 * (i))
4536#define imm_block_rank_get(v, i) (((int)((v) >> ((i) * 7))) & 0x7f)
4537#define small_block_rank_set(v, i, r) (v) |= (uint64_t)(r) << (9 * ((i) - 1))
4538#define small_block_rank_get(v, i) ((i) == 0 ? 0 : (((int)((v) >> (((i) - 1) * 9))) & 0x1ff))
4540static struct succ_index_table *
4541succ_index_table_create(
int max_pos,
int *data,
int size)
4543 const int imm_size = (max_pos < IMMEDIATE_TABLE_SIZE ? max_pos + 8 : IMMEDIATE_TABLE_SIZE) / 9;
4544 const int succ_size = (max_pos < IMMEDIATE_TABLE_SIZE ? 0 : (max_pos - IMMEDIATE_TABLE_SIZE + 511)) / 512;
4545 struct succ_index_table *sd =
4546 rb_xcalloc_mul_add_mul(
4547 imm_size,
sizeof(uint64_t),
4548 succ_size,
sizeof(
struct succ_dict_block));
4552 for (j = 0; j < imm_size; j++) {
4553 for (i = 0; i < 9; i++) {
4554 if (r < size && data[r] == j * 9 + i) r++;
4555 imm_block_rank_set(sd->imm_part[j], i, r);
4558 for (k = 0; k < succ_size; k++) {
4559 struct succ_dict_block *sd_block = &sd->succ_part[k];
4562 for (j = 0; j < 8; j++) {
4564 if (j) small_block_rank_set(sd_block->small_block_ranks, j, small_rank);
4565 for (i = 0; i < 64; i++) {
4566 if (r < size && data[r] == k * 512 + j * 64 + i + IMMEDIATE_TABLE_SIZE) {
4567 bits |= ((uint64_t)1) << i;
4571 sd_block->bits[j] = bits;
4572 small_rank += rb_popcount64(bits);
4578static unsigned int *
4579succ_index_table_invert(
int max_pos,
struct succ_index_table *sd,
int size)
4581 const int imm_size = (max_pos < IMMEDIATE_TABLE_SIZE ? max_pos + 8 : IMMEDIATE_TABLE_SIZE) / 9;
4582 const int succ_size = (max_pos < IMMEDIATE_TABLE_SIZE ? 0 : (max_pos - IMMEDIATE_TABLE_SIZE + 511)) / 512;
4583 unsigned int *positions =
ALLOC_N(
unsigned int, size), *p;
4584 int i, j, k, r = -1;
4586 for (j = 0; j < imm_size; j++) {
4587 for (i = 0; i < 9; i++) {
4588 int nr = imm_block_rank_get(sd->imm_part[j], i);
4589 if (r != nr) *p++ = j * 9 + i;
4593 for (k = 0; k < succ_size; k++) {
4594 for (j = 0; j < 8; j++) {
4595 for (i = 0; i < 64; i++) {
4596 if (sd->succ_part[k].bits[j] & (((uint64_t)1) << i)) {
4597 *p++ = k * 512 + j * 64 + i + IMMEDIATE_TABLE_SIZE;
4606succ_index_lookup(
const struct succ_index_table *sd,
int x)
4608 if (x < IMMEDIATE_TABLE_SIZE) {
4609 const int i = x / 9;
4610 const int j = x % 9;
4611 return imm_block_rank_get(sd->imm_part[i], j);
4614 const int block_index = (x - IMMEDIATE_TABLE_SIZE) / 512;
4615 const struct succ_dict_block *block = &sd->succ_part[block_index];
4616 const int block_bit_index = (x - IMMEDIATE_TABLE_SIZE) % 512;
4617 const int small_block_index = block_bit_index / 64;
4618 const int small_block_popcount = small_block_rank_get(block->small_block_ranks, small_block_index);
4619 const int popcnt = rb_popcount64(block->bits[small_block_index] << (63 - block_bit_index % 64));
4621 return block->rank + small_block_popcount + popcnt;
4640iseqw_script_lines(
VALUE self)
4642 const rb_iseq_t *iseq = iseqw_check(self);
4643 return ISEQ_SCRIPT_LINES(iseq);
4649iseqw_source_hash(
VALUE self)
4651 const rb_iseq_t *iseq = iseqw_check(self);
4652 if (!ISEQ_BODY(iseq)->source_hash)
return Qnil;
4653 return ULL2NUM(ISEQ_BODY(iseq)->source_hash);
4658iseqw_node_id(
VALUE self)
4660 const rb_iseq_t *iseq = iseqw_check(self);
4661 return INT2NUM(ISEQ_BODY(iseq)->location.node_id);
4692 rb_cISeq = rb_define_class_under(rb_cRubyVM,
"InstructionSequence",
rb_cObject);
#define RUBY_ASSERT(...)
Asserts that the given expression is truthy if and only if RUBY_DEBUG is truthy.
#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.
#define RUBY_EVENT_C_CALL
A method, written in C, is called.
#define RUBY_EVENT_B_RETURN
Encountered a next statement.
#define RUBY_EVENT_CLASS
Encountered a new class.
#define RUBY_EVENT_LINE
Encountered a new line.
#define RUBY_EVENT_RETURN
Encountered a return statement.
#define RUBY_EVENT_C_RETURN
Return from a method, written in C.
#define RUBY_EVENT_B_CALL
Encountered an yield statement.
uint32_t rb_event_flag_t
Represents event(s).
#define RUBY_EVENT_CALL
A method, written in Ruby, is called.
#define RUBY_EVENT_RESCUE
Encountered a rescue statement.
void rb_undef_method(VALUE klass, const char *name)
Defines an undef of a method.
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.
#define rb_str_new2
Old name of rb_str_new_cstr.
#define T_FILE
Old name of RUBY_T_FILE.
#define ALLOC
Old name of RB_ALLOC.
#define T_STRING
Old name of RUBY_T_STRING.
#define xfree
Old name of ruby_xfree.
#define Qundef
Old name of RUBY_Qundef.
#define INT2FIX
Old name of RB_INT2FIX.
#define rb_str_cat2
Old name of rb_str_cat_cstr.
#define ID2SYM
Old name of RB_ID2SYM.
#define SPECIAL_CONST_P
Old name of RB_SPECIAL_CONST_P.
#define ULONG2NUM
Old name of RB_ULONG2NUM.
#define SYM2ID
Old name of RB_SYM2ID.
#define ZALLOC
Old name of RB_ZALLOC.
#define LL2NUM
Old name of RB_LL2NUM.
#define CLASS_OF
Old name of rb_class_of.
#define FIX2INT
Old name of RB_FIX2INT.
#define T_HASH
Old name of RUBY_T_HASH.
#define ALLOC_N
Old name of RB_ALLOC_N.
#define FL_TEST_RAW
Old name of RB_FL_TEST_RAW.
#define LONG2NUM
Old name of RB_LONG2NUM.
#define ULL2NUM
Old name of RB_ULL2NUM.
#define Qtrue
Old name of RUBY_Qtrue.
#define NUM2INT
Old name of RB_NUM2INT.
#define INT2NUM
Old name of RB_INT2NUM.
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
#define T_ARRAY
Old name of RUBY_T_ARRAY.
#define NIL_P
Old name of RB_NIL_P.
#define BUILTIN_TYPE
Old name of RB_BUILTIN_TYPE.
#define NUM2LONG
Old name of RB_NUM2LONG.
#define UINT2NUM
Old name of RB_UINT2NUM.
#define FIXNUM_P
Old name of RB_FIXNUM_P.
#define CONST_ID
Old name of RUBY_CONST_ID.
#define rb_ary_new2
Old name of rb_ary_new_capa.
void rb_exc_raise(VALUE mesg)
Raises an exception in the current thread.
VALUE rb_eTypeError
TypeError exception.
VALUE rb_eSyntaxError
SyntaxError exception.
VALUE rb_class_superclass(VALUE klass)
Queries the parent of the given class.
VALUE rb_cObject
Object class.
VALUE rb_obj_hide(VALUE obj)
Make the object invisible from Ruby code.
VALUE rb_obj_class(VALUE obj)
Queries the class of an object.
VALUE rb_inspect(VALUE obj)
Generates a human-readable textual representation of the given object.
#define RB_OBJ_WRITE(old, slot, young)
Declaration of a "back" pointer.
VALUE rb_funcall(VALUE recv, ID mid, int n,...)
Calls a method.
VALUE rb_funcallv(VALUE recv, ID mid, int argc, const VALUE *argv)
Identical to rb_funcall(), except it takes the method arguments as a C array.
VALUE rb_iseq_load_from_binary(const char *ptr, size_t len)
Load an iseq object from binary format String object created by RubyVM::InstructionSequence....
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.
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.
VALUE rb_io_close(VALUE io)
Closes the IO.
int rb_is_local_id(ID id)
Classifies the given ID, then sees if it is a local variable.
VALUE rb_obj_is_method(VALUE recv)
Queries if the given object is a method.
VALUE rb_obj_is_proc(VALUE recv)
Queries if the given object is a proc.
VALUE rb_str_append(VALUE dst, VALUE src)
Identical to rb_str_buf_append(), except it converts the right hand side before concatenating.
#define rb_str_new(str, len)
Allocates an instance of rb_cString.
#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.
VALUE rb_str_dup(VALUE str)
Duplicates a string.
VALUE rb_str_cat(VALUE dst, const char *src, long srclen)
Destructively appends the passed contents to the string.
VALUE rb_str_resurrect(VALUE str)
Like rb_str_dup(), but always create an instance of rb_cString regardless of the given object's class...
void rb_str_set_len(VALUE str, long len)
Overwrites the length of the string.
VALUE rb_str_inspect(VALUE str)
Generates a "readable" version of the receiver.
int rb_str_cmp(VALUE lhs, VALUE rhs)
Compares two strings, as in strcmp(3).
VALUE rb_str_concat(VALUE dst, VALUE src)
Identical to rb_str_append(), except it also accepts an integer as a codepoint.
#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.
void rb_str_modify_expand(VALUE str, long capa)
Identical to rb_str_modify(), except it additionally expands the capacity of the receiver.
#define rb_str_new_cstr(str)
Identical to rb_str_new, except it assumes the passed pointer is a pointer to a C string.
VALUE rb_str_intern(VALUE str)
Identical to rb_to_symbol(), except it assumes the receiver being an instance of RString.
VALUE rb_class_name(VALUE obj)
Queries the name of the given object's class.
int rb_respond_to(VALUE obj, ID mid)
Queries if the object responds to the method.
void rb_undef_alloc_func(VALUE klass)
Deletes the allocator function of a class.
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.
ID rb_check_id(volatile VALUE *namep)
Detects if the given name is already interned or not.
VALUE rb_sym2str(VALUE symbol)
Obtain a frozen string representation of a symbol (not including the leading colon).
VALUE rb_io_path(VALUE io)
Returns the path for the given IO.
int len
Length of the buffer.
#define RB_OBJ_SET_SHAREABLE(obj)
Wrapper of rb_obj_set_shareable().
#define RB_OBJ_SHAREABLE_P(obj)
Queries if the passed object has previously classified as shareable or not.
static VALUE RB_OBJ_SET_FROZEN_SHAREABLE(VALUE obj)
Freezes and marks the object as shareable.
VALUE rb_ractor_make_shareable(VALUE obj)
Destructively transforms the passed object so that multiple Ractors can share it.
#define RB_NUM2INT
Just another name of rb_num2int_inline.
#define RB_INT2NUM
Just another name of rb_int2num_inline.
VALUE rb_yield(VALUE val)
Yields the block.
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
#define RB_ZALLOC(type)
Shorthand of RB_ZALLOC_N with n=1.
VALUE type(ANYARGS)
ANYARGS-ed function type.
#define RARRAY_LEN
Just another name of rb_array_len.
static int RARRAY_LENINT(VALUE ary)
Identical to rb_array_len(), except it differs for the return type.
#define RARRAY_AREF(a, i)
static VALUE RBASIC_CLASS(VALUE obj)
Queries the class of an object.
#define RHASH_SIZE(h)
Queries the size of the hash.
#define StringValue(v)
Ensures that the parameter object is a String.
static int RSTRING_LENINT(VALUE str)
Identical to RSTRING_LEN(), except it differs for the return type.
static char * RSTRING_END(VALUE str)
Queries the end of the contents pointer of the string.
#define StringValueCStr(v)
Identical to StringValuePtr, except it additionally checks for the contents for viability as a C stri...
#define RUBY_TYPED_DEFAULT_FREE
This is a value you can set to rb_data_type_struct::dfree.
#define TypedData_Get_Struct(obj, type, data_type, sval)
Obtains a C struct from inside of a wrapper Ruby object.
#define TypedData_Wrap_Struct(klass, data_type, sval)
Converts sval, a pointer to your struct, into a Ruby object.
#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...
#define FilePathValue(v)
Ensures that the parameter object is a path.
#define RTEST
This is an old name of RB_TEST.
const ID * segments
A null-terminated list of ids, used to represent a constant's path idNULL is used to represent the ::...
A line and column in a string.
uint32_t column
The column in bytes.
int32_t line
The line number.
A list of offsets of the start of lines in a string.
size_t size
The number of offsets in the list.
This struct represents a slice in the source code, defined by an offset and a length.
uint32_t start
The offset of the location from the start of the source.
uint32_t length
The length of the location.
uint32_t node_id
The unique identifier for this node, which is deterministic based on the source.
pm_location_t location
This is the location of the node in the source.
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.
uint64_t source_hash
The source hash of the parsed source, propagated to every iseq.
VALUE * script_lines
This is a pointer to the list of script lines for the ISEQs that will be associated with this scope n...
This is the struct that holds necessary info for a struct.
intptr_t SIGNED_VALUE
A signed integer type that has the same width with VALUE.
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
uintptr_t VALUE
Type that represents a Ruby object.
static void Check_Type(VALUE v, enum ruby_value_type t)
Identical to RB_TYPE_P(), except it raises exceptions on predication failure.
static bool RB_TYPE_P(VALUE obj, enum ruby_value_type t)
Queries if the given object is of given type.
ruby_value_type
C-level type of an object.