12#include "ruby/internal/config.h"
22#include "internal/array.h"
23#include "internal/compile.h"
24#include "internal/coverage.h"
25#include "internal/complex.h"
26#include "internal/encoding.h"
27#include "internal/error.h"
28#include "internal/gc.h"
29#include "internal/hash.h"
30#include "internal/io.h"
31#include "internal/numeric.h"
32#include "internal/object.h"
33#include "internal/rational.h"
34#include "internal/re.h"
35#include "internal/ruby_parser.h"
36#include "internal/symbol.h"
37#include "internal/thread.h"
38#include "internal/variable.h"
44#include "vm_callinfo.h"
50#include "insns_info.inc"
52#define FIXNUM_INC(n, i) ((n)+(INT2FIX(i)&~FIXNUM_FLAG))
86 unsigned int rescued: 2;
87 unsigned int unremovable: 1;
92 enum ruby_vminsn_type insn_id;
122 const void *ensure_node;
127const ID rb_iseq_shared_exc_local_tbl[] = {idERROR_INFO};
147#define compile_debug CPDEBUG
149#define compile_debug ISEQ_COMPILE_DATA(iseq)->option->debug_level
154#define compile_debug_print_indent(level) \
155 ruby_debug_print_indent((level), compile_debug, gl_node_level * 2)
157#define debugp(header, value) (void) \
158 (compile_debug_print_indent(1) && \
159 ruby_debug_print_value(1, compile_debug, (header), (value)))
161#define debugi(header, id) (void) \
162 (compile_debug_print_indent(1) && \
163 ruby_debug_print_id(1, compile_debug, (header), (id)))
165#define debugp_param(header, value) (void) \
166 (compile_debug_print_indent(1) && \
167 ruby_debug_print_value(1, compile_debug, (header), (value)))
169#define debugp_verbose(header, value) (void) \
170 (compile_debug_print_indent(2) && \
171 ruby_debug_print_value(2, compile_debug, (header), (value)))
173#define debugp_verbose_node(header, value) (void) \
174 (compile_debug_print_indent(10) && \
175 ruby_debug_print_value(10, compile_debug, (header), (value)))
177#define debug_node_start(node) ((void) \
178 (compile_debug_print_indent(1) && \
179 (ruby_debug_print_node(1, CPDEBUG, "", (const NODE *)(node)), gl_node_level)), \
182#define debug_node_end() gl_node_level --
186#define debugi(header, id) ((void)0)
187#define debugp(header, value) ((void)0)
188#define debugp_verbose(header, value) ((void)0)
189#define debugp_verbose_node(header, value) ((void)0)
190#define debugp_param(header, value) ((void)0)
191#define debug_node_start(node) ((void)0)
192#define debug_node_end() ((void)0)
195#if CPDEBUG > 1 || CPDEBUG < 0
197#define printf ruby_debug_printf
198#define debugs if (compile_debug_print_indent(1)) ruby_debug_printf
199#define debug_compile(msg, v) ((void)(compile_debug_print_indent(1) && fputs((msg), stderr)), (v))
201#define debugs if(0)printf
202#define debug_compile(msg, v) (v)
205#define LVAR_ERRINFO (1)
208#define NEW_LABEL(l) new_label_body(iseq, (l))
209#define LABEL_FORMAT "<L%03d>"
211#define NEW_ISEQ(node, name, type, line_no) \
212 new_child_iseq(iseq, (node), rb_fstring(name), 0, (type), (line_no))
214#define NEW_CHILD_ISEQ(node, name, type, line_no) \
215 new_child_iseq(iseq, (node), rb_fstring(name), iseq, (type), (line_no))
217#define NEW_CHILD_ISEQ_WITH_CALLBACK(callback_func, name, type, line_no) \
218 new_child_iseq_with_callback(iseq, (callback_func), (name), iseq, (type), (line_no))
221#define ADD_SEQ(seq1, seq2) \
222 APPEND_LIST((seq1), (seq2))
225#define ADD_INSN(seq, line_node, insn) \
226 ADD_ELEM((seq), (LINK_ELEMENT *) new_insn_body(iseq, nd_line(line_node), nd_node_id(line_node), BIN(insn), 0))
229#define ADD_SYNTHETIC_INSN(seq, line_no, node_id, insn) \
230 ADD_ELEM((seq), (LINK_ELEMENT *) new_insn_body(iseq, (line_no), (node_id), BIN(insn), 0))
233#define INSERT_BEFORE_INSN(next, line_no, node_id, insn) \
234 ELEM_INSERT_PREV(&(next)->link, (LINK_ELEMENT *) new_insn_body(iseq, line_no, node_id, BIN(insn), 0))
237#define INSERT_AFTER_INSN(prev, line_no, node_id, insn) \
238 ELEM_INSERT_NEXT(&(prev)->link, (LINK_ELEMENT *) new_insn_body(iseq, line_no, node_id, BIN(insn), 0))
241#define ADD_INSN1(seq, line_node, insn, op1) \
242 ADD_ELEM((seq), (LINK_ELEMENT *) \
243 new_insn_body(iseq, nd_line(line_node), nd_node_id(line_node), BIN(insn), 1, (VALUE)(op1)))
246#define INSERT_BEFORE_INSN1(next, line_no, node_id, insn, op1) \
247 ELEM_INSERT_PREV(&(next)->link, (LINK_ELEMENT *) \
248 new_insn_body(iseq, line_no, node_id, BIN(insn), 1, (VALUE)(op1)))
251#define INSERT_AFTER_INSN1(prev, line_no, node_id, insn, op1) \
252 ELEM_INSERT_NEXT(&(prev)->link, (LINK_ELEMENT *) \
253 new_insn_body(iseq, line_no, node_id, BIN(insn), 1, (VALUE)(op1)))
255#define LABEL_REF(label) ((label)->refcnt++)
258#define ADD_INSNL(seq, line_node, insn, label) (ADD_INSN1(seq, line_node, insn, label), LABEL_REF(label))
260#define ADD_INSN2(seq, line_node, insn, op1, op2) \
261 ADD_ELEM((seq), (LINK_ELEMENT *) \
262 new_insn_body(iseq, nd_line(line_node), nd_node_id(line_node), BIN(insn), 2, (VALUE)(op1), (VALUE)(op2)))
264#define ADD_INSN3(seq, line_node, insn, op1, op2, op3) \
265 ADD_ELEM((seq), (LINK_ELEMENT *) \
266 new_insn_body(iseq, nd_line(line_node), nd_node_id(line_node), BIN(insn), 3, (VALUE)(op1), (VALUE)(op2), (VALUE)(op3)))
269#define ADD_SEND(seq, line_node, id, argc) \
270 ADD_SEND_R((seq), (line_node), (id), (argc), NULL, (VALUE)INT2FIX(0), NULL)
272#define ADD_SEND_WITH_FLAG(seq, line_node, id, argc, flag) \
273 ADD_SEND_R((seq), (line_node), (id), (argc), NULL, (VALUE)(flag), NULL)
275#define ADD_SEND_WITH_BLOCK(seq, line_node, id, argc, block) \
276 ADD_SEND_R((seq), (line_node), (id), (argc), (block), (VALUE)INT2FIX(0), NULL)
278#define ADD_CALL_RECEIVER(seq, line_node) \
279 ADD_INSN((seq), (line_node), putself)
281#define ADD_CALL(seq, line_node, id, argc) \
282 ADD_SEND_R((seq), (line_node), (id), (argc), NULL, (VALUE)INT2FIX(VM_CALL_FCALL), NULL)
284#define ADD_CALL_WITH_BLOCK(seq, line_node, id, argc, block) \
285 ADD_SEND_R((seq), (line_node), (id), (argc), (block), (VALUE)INT2FIX(VM_CALL_FCALL), NULL)
287#define ADD_SEND_R(seq, line_node, id, argc, block, flag, keywords) \
288 ADD_ELEM((seq), (LINK_ELEMENT *) new_insn_send(iseq, nd_line(line_node), nd_node_id(line_node), (id), (VALUE)(argc), (block), (VALUE)(flag), (keywords)))
290#define ADD_TRACE(seq, event) \
291 ADD_ELEM((seq), (LINK_ELEMENT *)new_trace_body(iseq, (event), 0))
292#define ADD_TRACE_WITH_DATA(seq, event, data) \
293 ADD_ELEM((seq), (LINK_ELEMENT *)new_trace_body(iseq, (event), (data)))
295static void iseq_add_getlocal(
rb_iseq_t *iseq,
LINK_ANCHOR *
const seq,
const NODE *
const line_node,
int idx,
int level);
296static void iseq_add_setlocal(
rb_iseq_t *iseq,
LINK_ANCHOR *
const seq,
const NODE *
const line_node,
int idx,
int level);
298#define ADD_GETLOCAL(seq, line_node, idx, level) iseq_add_getlocal(iseq, (seq), (line_node), (idx), (level))
299#define ADD_SETLOCAL(seq, line_node, idx, level) iseq_add_setlocal(iseq, (seq), (line_node), (idx), (level))
302#define ADD_LABEL(seq, label) \
303 ADD_ELEM((seq), (LINK_ELEMENT *) (label))
305#define APPEND_LABEL(seq, before, label) \
306 APPEND_ELEM((seq), (before), (LINK_ELEMENT *) (label))
308#define ADD_ADJUST(seq, line_node, label) \
309 ADD_ELEM((seq), (LINK_ELEMENT *) new_adjust_body(iseq, (label), nd_line(line_node)))
311#define ADD_ADJUST_RESTORE(seq, label) \
312 ADD_ELEM((seq), (LINK_ELEMENT *) new_adjust_body(iseq, (label), -1))
314#define LABEL_UNREMOVABLE(label) \
315 ((label) ? (LABEL_REF(label), (label)->unremovable=1) : 0)
316#define ADD_CATCH_ENTRY(type, ls, le, iseqv, lc) do { \
317 VALUE _e = rb_ary_new3(5, (type), \
318 (VALUE)(ls) | 1, (VALUE)(le) | 1, \
319 (VALUE)(iseqv), (VALUE)(lc) | 1); \
320 LABEL_UNREMOVABLE(ls); \
323 if (NIL_P(ISEQ_COMPILE_DATA(iseq)->catch_table_ary)) \
324 RB_OBJ_WRITE(iseq, &ISEQ_COMPILE_DATA(iseq)->catch_table_ary, rb_ary_hidden_new(3)); \
325 rb_ary_push(ISEQ_COMPILE_DATA(iseq)->catch_table_ary, freeze_hide_obj(_e)); \
329#define COMPILE(anchor, desc, node) \
330 (debug_compile("== " desc "\n", \
331 iseq_compile_each(iseq, (anchor), (node), 0)))
334#define COMPILE_POPPED(anchor, desc, node) \
335 (debug_compile("== " desc "\n", \
336 iseq_compile_each(iseq, (anchor), (node), 1)))
339#define COMPILE_(anchor, desc, node, popped) \
340 (debug_compile("== " desc "\n", \
341 iseq_compile_each(iseq, (anchor), (node), (popped))))
343#define COMPILE_RECV(anchor, desc, node, recv) \
344 (private_recv_p(node) ? \
345 (ADD_INSN(anchor, node, putself), VM_CALL_FCALL) : \
346 COMPILE(anchor, desc, recv) ? 0 : -1)
348#define OPERAND_AT(insn, idx) \
349 (((INSN*)(insn))->operands[(idx)])
351#define INSN_OF(insn) \
352 (((INSN*)(insn))->insn_id)
354#define IS_INSN(link) ((link)->type == ISEQ_ELEMENT_INSN)
355#define IS_LABEL(link) ((link)->type == ISEQ_ELEMENT_LABEL)
356#define IS_ADJUST(link) ((link)->type == ISEQ_ELEMENT_ADJUST)
357#define IS_TRACE(link) ((link)->type == ISEQ_ELEMENT_TRACE)
358#define IS_INSN_ID(iobj, insn) (INSN_OF(iobj) == BIN(insn))
359#define IS_NEXT_INSN_ID(link, insn) \
360 ((link)->next && IS_INSN((link)->next) && IS_INSN_ID((link)->next, insn))
361#define IS_NEXT_NEXT_INSN_ID(link, insn) \
362 ((link)->next && IS_NEXT_INSN_ID((link)->next, insn))
367 if (!IS_INSN(link)) {
371 enum ruby_vminsn_type
type = INSN_OF(link);
374 type == BIN(putobject) ||
375 type == BIN(putspecialobject) ||
376 type == BIN(putnil) ||
377 type == BIN(putself) ||
378 type == BIN(duphash) ||
379 type == BIN(getinstancevariable) ||
380 type == BIN(getlocal) ||
381 type == BIN(opt_getconstant_path)
391append_compile_error(const
rb_iseq_t *iseq,
int line, const
char *fmt, ...)
393 VALUE err_info = ISEQ_COMPILE_DATA(iseq)->err_info;
394 VALUE file = rb_iseq_path(iseq);
399 err = rb_syntax_error_append(err, file, line, -1, NULL, fmt, args);
401 if (
NIL_P(err_info)) {
402 RB_OBJ_WRITE(iseq, &ISEQ_COMPILE_DATA(iseq)->err_info, err);
405 else if (!err_info) {
416compile_bug(
rb_iseq_t *iseq,
int line,
const char *fmt, ...)
420 rb_report_bug_valist(rb_iseq_path(iseq), line, fmt, args);
426#define COMPILE_ERROR append_compile_error
428#define ERROR_ARGS_AT(n) iseq, nd_line(n),
429#define ERROR_ARGS ERROR_ARGS_AT(node)
431#define EXPECT_NODE(prefix, node, ndtype, errval) \
433 const NODE *error_node = (node); \
434 enum node_type error_type = nd_type(error_node); \
435 if (error_type != (ndtype)) { \
436 COMPILE_ERROR(ERROR_ARGS_AT(error_node) \
437 prefix ": " #ndtype " is expected, but %s", \
438 ruby_node_name(error_type)); \
443#define EXPECT_NODE_NONULL(prefix, parent, ndtype, errval) \
445 COMPILE_ERROR(ERROR_ARGS_AT(parent) \
446 prefix ": must be " #ndtype ", but 0"); \
450#define UNKNOWN_NODE(prefix, node, errval) \
452 const NODE *error_node = (node); \
453 COMPILE_ERROR(ERROR_ARGS_AT(error_node) prefix ": unknown node (%s)", \
454 ruby_node_name(nd_type(error_node))); \
461#define CHECK(sub) if (!(sub)) {BEFORE_RETURN;return COMPILE_NG;}
462#define NO_CHECK(sub) (void)(sub)
465#define DECL_ANCHOR(name) \
466 LINK_ANCHOR name[1] = {{{ISEQ_ELEMENT_ANCHOR,},&name[0].anchor}}
467#define INIT_ANCHOR(name) \
468 ((name->last = &name->anchor)->next = NULL)
471freeze_hide_obj(
VALUE obj)
474 RBASIC_CLEAR_CLASS(obj);
478#include "optinsn.inc"
479#if OPT_INSTRUCTIONS_UNIFICATION
480#include "optunifs.inc"
485#define ISEQ_ARG iseq,
486#define ISEQ_ARG_DECLARE rb_iseq_t *iseq,
489#define ISEQ_ARG_DECLARE
493#define gl_node_level ISEQ_COMPILE_DATA(iseq)->node_level
499static int insn_data_length(
INSN *iobj);
500static int calc_sp_depth(
int depth,
INSN *iobj);
502static INSN *new_insn_body(
rb_iseq_t *iseq,
int line_no,
int node_id,
enum ruby_vminsn_type insn_id,
int argc, ...);
515static int iseq_set_exception_local_table(
rb_iseq_t *iseq);
519static int iseq_set_exception_table(
rb_iseq_t *iseq);
520static int iseq_set_optargs_table(
rb_iseq_t *iseq);
521static int iseq_set_parameters_lvar_state(
const rb_iseq_t *iseq);
524static int compile_hash(
rb_iseq_t *iseq,
LINK_ANCHOR *
const ret,
const NODE *node,
int method_call_keywords,
int popped);
531verify_list(ISEQ_ARG_DECLARE
const char *info,
LINK_ANCHOR *
const anchor)
537 if (!compile_debug)
return;
539 list = anchor->anchor.next;
540 plist = &anchor->anchor;
542 if (plist != list->prev) {
549 if (anchor->last != plist && anchor->last != 0) {
554 rb_bug(
"list verify error: %08x (%s)", flag, info);
559#define verify_list(info, anchor) verify_list(iseq, (info), (anchor))
566 VALUE *original = rb_iseq_original_iseq(iseq);
568 while (i < ISEQ_BODY(iseq)->iseq_size) {
569 VALUE insn = original[i];
570 const char *types = insn_op_types(insn);
572 for (
int j=0; types[j]; j++) {
573 if (types[j] == TS_CALLDATA) {
577 if (cc != vm_cc_empty()) {
579 rb_bug(
"call cache is not initialized by vm_cc_empty()");
586 for (
unsigned int i=0; i<ISEQ_BODY(iseq)->ci_size; i++) {
587 struct rb_call_data *cd = &ISEQ_BODY(iseq)->call_data[i];
590 if (cc != NULL && cc != vm_cc_empty()) {
592 rb_bug(
"call cache is not initialized by vm_cc_empty()");
604 elem->prev = anchor->last;
605 anchor->last->next = elem;
607 verify_list(
"add", anchor);
617 elem->next = before->next;
618 elem->next->prev = elem;
620 if (before == anchor->last) anchor->last = elem;
621 verify_list(
"add", anchor);
624#define ADD_ELEM(anchor, elem) ADD_ELEM(iseq, (anchor), (elem))
625#define APPEND_ELEM(anchor, before, elem) APPEND_ELEM(iseq, (anchor), (before), (elem))
629branch_coverage_valid_p(
rb_iseq_t *iseq,
int first_line)
631 if (!ISEQ_COVERAGE(iseq))
return 0;
632 if (!ISEQ_BRANCH_COVERAGE(iseq))
return 0;
633 if (first_line <= 0)
return 0;
640 const int first_lineno = loc->beg_pos.lineno, first_column = loc->beg_pos.column;
641 const int last_lineno = loc->end_pos.lineno, last_column = loc->end_pos.column;
644 rb_hash_aset(structure, key, branch);
656 if (!branch_coverage_valid_p(iseq, loc->beg_pos.lineno))
return Qundef;
669 uint64_t source_hash = ISEQ_BODY(iseq)->source_hash;
670 VALUE key = rb_ary_new_from_args(4,
671 ULONG2NUM((
unsigned long)(source_hash >> 32)),
672 ULONG2NUM((
unsigned long)(source_hash & 0xffffffff)),
678 VALUE branch_base = rb_hash_aref(structure, key);
681 if (
NIL_P(branch_base)) {
682 branch_base = setup_branch(loc,
type, structure, key);
683 branches = rb_hash_new();
695generate_dummy_line_node(
int lineno,
int node_id)
698 nd_set_line(&dummy, lineno);
699 nd_set_node_id(&dummy, node_id);
706 if (!branch_coverage_valid_p(iseq, loc->beg_pos.lineno))
return;
717 VALUE branch = rb_hash_aref(branches, key);
721 branch = setup_branch(loc,
type, branches, key);
731 ADD_TRACE_WITH_DATA(seq, RUBY_EVENT_COVERAGE_BRANCH, counter_idx);
732 ADD_SYNTHETIC_INSN(seq, loc->end_pos.lineno, node_id, nop);
735#define ISEQ_LAST_LINE(iseq) (ISEQ_COMPILE_DATA(iseq)->last_line)
738validate_label(st_data_t name, st_data_t label, st_data_t arg)
742 if (!lobj->link.next) {
744 COMPILE_ERROR(iseq, lobj->position,
745 "%"PRIsVALUE
": undefined label",
755 st_foreach(labels_table, validate_label, (st_data_t)iseq);
756 st_free_table(labels_table);
760get_nd_recv(
const NODE *node)
762 switch (nd_type(node)) {
764 return RNODE_CALL(node)->nd_recv;
766 return RNODE_OPCALL(node)->nd_recv;
770 return RNODE_QCALL(node)->nd_recv;
774 return RNODE_ATTRASGN(node)->nd_recv;
776 return RNODE_OP_ASGN1(node)->nd_recv;
778 return RNODE_OP_ASGN2(node)->nd_recv;
780 rb_bug(
"unexpected node: %s", ruby_node_name(nd_type(node)));
785get_node_call_nd_mid(
const NODE *node)
787 switch (nd_type(node)) {
789 return RNODE_CALL(node)->nd_mid;
791 return RNODE_OPCALL(node)->nd_mid;
793 return RNODE_FCALL(node)->nd_mid;
795 return RNODE_QCALL(node)->nd_mid;
797 return RNODE_VCALL(node)->nd_mid;
799 return RNODE_ATTRASGN(node)->nd_mid;
801 rb_bug(
"unexpected node: %s", ruby_node_name(nd_type(node)));
806get_nd_args(
const NODE *node)
808 switch (nd_type(node)) {
810 return RNODE_CALL(node)->nd_args;
812 return RNODE_OPCALL(node)->nd_args;
814 return RNODE_FCALL(node)->nd_args;
816 return RNODE_QCALL(node)->nd_args;
820 return RNODE_ATTRASGN(node)->nd_args;
822 rb_bug(
"unexpected node: %s", ruby_node_name(nd_type(node)));
827get_node_colon_nd_mid(
const NODE *node)
829 switch (nd_type(node)) {
831 return RNODE_COLON2(node)->nd_mid;
833 return RNODE_COLON3(node)->nd_mid;
835 rb_bug(
"unexpected node: %s", ruby_node_name(nd_type(node)));
840get_nd_vid(
const NODE *node)
842 switch (nd_type(node)) {
844 return RNODE_LASGN(node)->nd_vid;
846 return RNODE_DASGN(node)->nd_vid;
848 return RNODE_IASGN(node)->nd_vid;
850 return RNODE_CVASGN(node)->nd_vid;
852 rb_bug(
"unexpected node: %s", ruby_node_name(nd_type(node)));
857get_nd_value(
const NODE *node)
859 switch (nd_type(node)) {
861 return RNODE_LASGN(node)->nd_value;
863 return RNODE_DASGN(node)->nd_value;
865 rb_bug(
"unexpected node: %s", ruby_node_name(nd_type(node)));
870get_string_value(
const NODE *node)
872 switch (nd_type(node)) {
878 rb_bug(
"unexpected node: %s", ruby_node_name(nd_type(node)));
888 (*ifunc->func)(iseq, ret, ifunc->data);
890 ADD_SYNTHETIC_INSN(ret, ISEQ_COMPILE_DATA(iseq)->last_line, -1, leave);
892 CHECK(iseq_setup_insn(iseq, ret));
893 return iseq_setup(iseq, ret);
896static bool drop_unreachable_return(
LINK_ANCHOR *ret);
905 NO_CHECK(COMPILE(ret,
"nil", node));
906 iseq_set_local_table(iseq, 0, 0);
909 else if (nd_type_p(node, NODE_SCOPE)) {
911 iseq_set_local_table(iseq, RNODE_SCOPE(node)->nd_tbl, (
NODE *)RNODE_SCOPE(node)->nd_args);
912 iseq_set_arguments(iseq, ret, (
NODE *)RNODE_SCOPE(node)->nd_args);
913 iseq_set_parameters_lvar_state(iseq);
915 switch (ISEQ_BODY(iseq)->
type) {
916 case ISEQ_TYPE_BLOCK:
918 LABEL *start = ISEQ_COMPILE_DATA(iseq)->start_label = NEW_LABEL(0);
919 LABEL *end = ISEQ_COMPILE_DATA(iseq)->end_label = NEW_LABEL(0);
921 start->rescued = LABEL_RESCUE_BEG;
922 end->rescued = LABEL_RESCUE_END;
925 ADD_SYNTHETIC_INSN(ret, ISEQ_BODY(iseq)->location.first_lineno, -1, nop);
926 ADD_LABEL(ret, start);
927 CHECK(COMPILE(ret,
"block body", RNODE_SCOPE(node)->nd_body));
930 ISEQ_COMPILE_DATA(iseq)->last_line = ISEQ_BODY(iseq)->location.code_location.end_pos.lineno;
933 ADD_CATCH_ENTRY(CATCH_TYPE_REDO, start, end, NULL, start);
934 ADD_CATCH_ENTRY(CATCH_TYPE_NEXT, start, end, NULL, end);
937 case ISEQ_TYPE_CLASS:
940 CHECK(COMPILE(ret,
"scoped node", RNODE_SCOPE(node)->nd_body));
942 ISEQ_COMPILE_DATA(iseq)->last_line = nd_line(node);
945 case ISEQ_TYPE_METHOD:
947 ISEQ_COMPILE_DATA(iseq)->root_node = RNODE_SCOPE(node)->nd_body;
949 CHECK(COMPILE(ret,
"scoped node", RNODE_SCOPE(node)->nd_body));
950 ISEQ_COMPILE_DATA(iseq)->root_node = RNODE_SCOPE(node)->nd_body;
952 ISEQ_COMPILE_DATA(iseq)->last_line = nd_line(node);
956 CHECK(COMPILE(ret,
"scoped node", RNODE_SCOPE(node)->nd_body));
963#define INVALID_ISEQ_TYPE(type) \
964 ISEQ_TYPE_##type: m = #type; goto invalid_iseq_type
965 switch (ISEQ_BODY(iseq)->
type) {
966 case INVALID_ISEQ_TYPE(
METHOD);
967 case INVALID_ISEQ_TYPE(CLASS);
968 case INVALID_ISEQ_TYPE(BLOCK);
969 case INVALID_ISEQ_TYPE(EVAL);
970 case INVALID_ISEQ_TYPE(MAIN);
971 case INVALID_ISEQ_TYPE(TOP);
972#undef INVALID_ISEQ_TYPE
973 case ISEQ_TYPE_RESCUE:
974 iseq_set_exception_local_table(iseq);
975 CHECK(COMPILE(ret,
"rescue", node));
977 case ISEQ_TYPE_ENSURE:
978 iseq_set_exception_local_table(iseq);
979 CHECK(COMPILE_POPPED(ret,
"ensure", node));
981 case ISEQ_TYPE_PLAIN:
982 CHECK(COMPILE(ret,
"ensure", node));
985 COMPILE_ERROR(ERROR_ARGS
"unknown scope: %d", ISEQ_BODY(iseq)->
type);
988 COMPILE_ERROR(ERROR_ARGS
"compile/ISEQ_TYPE_%s should not be reached", m);
993 if (ISEQ_BODY(iseq)->
type == ISEQ_TYPE_RESCUE || ISEQ_BODY(iseq)->
type == ISEQ_TYPE_ENSURE) {
994 NODE dummy_line_node = generate_dummy_line_node(0, -1);
995 ADD_GETLOCAL(ret, &dummy_line_node, LVAR_ERRINFO, 0);
996 ADD_INSN1(ret, &dummy_line_node,
throw,
INT2FIX(0) );
998 else if (!drop_unreachable_return(ret)) {
999 ADD_SYNTHETIC_INSN(ret, ISEQ_COMPILE_DATA(iseq)->last_line, -1, leave);
1003 if (ISEQ_COMPILE_DATA(iseq)->labels_table) {
1004 st_table *labels_table = ISEQ_COMPILE_DATA(iseq)->labels_table;
1005 ISEQ_COMPILE_DATA(iseq)->labels_table = 0;
1006 validate_labels(iseq, labels_table);
1009 CHECK(iseq_setup_insn(iseq, ret));
1010 return iseq_setup(iseq, ret);
1014rb_iseq_translate_threaded_code(
rb_iseq_t *iseq)
1016#if OPT_DIRECT_THREADED_CODE || OPT_CALL_THREADED_CODE
1017 const void *
const *table = rb_vm_get_insns_address_table();
1019 VALUE *encoded = (
VALUE *)ISEQ_BODY(iseq)->iseq_encoded;
1021 for (i = 0; i < ISEQ_BODY(iseq)->iseq_size; ) {
1022 int insn = (int)ISEQ_BODY(iseq)->iseq_encoded[i];
1023 int len = insn_len(insn);
1024 encoded[i] = (
VALUE)table[insn];
1031 rb_yjit_live_iseq_count++;
1032 rb_yjit_iseq_alloc_count++;
1039rb_iseq_original_iseq(
const rb_iseq_t *iseq)
1044 if (original_code)
return original_code;
1045 original_code =
ALLOC_N(
VALUE, ISEQ_BODY(iseq)->iseq_size);
1046 MEMCPY(original_code, ISEQ_BODY(iseq)->iseq_encoded,
VALUE, ISEQ_BODY(iseq)->iseq_size);
1048#if OPT_DIRECT_THREADED_CODE || OPT_CALL_THREADED_CODE
1052 for (i = 0; i < ISEQ_BODY(iseq)->iseq_size; ) {
1053 const void *addr = (
const void *)original_code[i];
1054 const int insn = rb_vm_insn_addr2insn(addr);
1056 original_code[i] = insn;
1057 i += insn_len(insn);
1064 v = rb_iseq_variable_ensure((
rb_iseq_t *)iseq);
1065 VALUE *prev = ATOMIC_PTR_CAS(v->original_iseq,
1066 NULL, original_code);
1068 SIZED_FREE_N(original_code, ISEQ_BODY(iseq)->iseq_size);
1071 return original_code;
1078#if defined(HAVE_TRUE_LONG_LONG) && SIZEOF_LONG_LONG > SIZEOF_VALUE
1079# define ALIGNMENT_SIZE SIZEOF_LONG_LONG
1081# define ALIGNMENT_SIZE SIZEOF_VALUE
1083#define PADDING_SIZE_MAX ((size_t)((ALIGNMENT_SIZE) - 1))
1085#define ALIGNMENT_SIZE_OF(type) alignment_size_assert(RUBY_ALIGNOF(type), #type)
1088alignment_size_assert(
size_t align,
const char *
type)
1091 "ALIGNMENT_SIZE_OF(%s):%zd == (2 ** N) is expected",
type, align);
1097calc_padding(
void *ptr,
size_t align)
1102 mis = (size_t)ptr & (align - 1);
1104 padding = align - mis;
1115 size_t padding = calc_padding((
void *)&storage->buff[storage->pos], align);
1117 if (size >= INT_MAX - padding) rb_memerror();
1118 if (storage->pos + size + padding > storage->size) {
1119 unsigned int alloc_size = storage->size;
1121 while (alloc_size < size + PADDING_SIZE_MAX) {
1122 if (alloc_size >= INT_MAX / 2) rb_memerror();
1125 storage->next = (
void *)
ALLOC_N(
char, alloc_size +
1127 storage = *arena = storage->next;
1130 storage->size = alloc_size;
1131 padding = calc_padding((
void *)&storage->buff[storage->pos], align);
1134 storage->pos += (int)padding;
1136 ptr = (
void *)&storage->buff[storage->pos];
1137 storage->pos += (int)size;
1142compile_data_alloc(
rb_iseq_t *iseq,
size_t size,
size_t align)
1145 return compile_data_alloc_with_arena(arena, size, align);
1148#define compile_data_alloc_type(iseq, type) \
1149 (type *)compile_data_alloc(iseq, sizeof(type), ALIGNMENT_SIZE_OF(type))
1152compile_data_alloc2(
rb_iseq_t *iseq,
size_t elsize,
size_t num,
size_t align)
1155 return compile_data_alloc(iseq, size, align);
1158#define compile_data_alloc2_type(iseq, type, num) \
1159 (type *)compile_data_alloc2(iseq, sizeof(type), num, ALIGNMENT_SIZE_OF(type))
1162compile_data_calloc2(
rb_iseq_t *iseq,
size_t elsize,
size_t num,
size_t align)
1165 void *p = compile_data_alloc(iseq, size, align);
1170#define compile_data_calloc2_type(iseq, type, num) \
1171 (type *)compile_data_calloc2(iseq, sizeof(type), num, ALIGNMENT_SIZE_OF(type))
1177 return (
INSN *)compile_data_alloc_with_arena(arena,
sizeof(
INSN), ALIGNMENT_SIZE_OF(
INSN));
1181compile_data_alloc_label(
rb_iseq_t *iseq)
1183 return compile_data_alloc_type(iseq,
LABEL);
1187compile_data_alloc_adjust(
rb_iseq_t *iseq)
1189 return compile_data_alloc_type(iseq,
ADJUST);
1193compile_data_alloc_trace(
rb_iseq_t *iseq)
1195 return compile_data_alloc_type(iseq,
TRACE);
1204 elem2->next = elem1->next;
1205 elem2->prev = elem1;
1206 elem1->next = elem2;
1208 elem2->next->prev = elem2;
1218 elem2->prev = elem1->prev;
1219 elem2->next = elem1;
1220 elem1->prev = elem2;
1222 elem2->prev->next = elem2;
1232 elem2->prev = elem1->prev;
1233 elem2->next = elem1->next;
1235 elem1->prev->next = elem2;
1238 elem1->next->prev = elem2;
1245 elem->prev->next = elem->next;
1247 elem->next->prev = elem->prev;
1260 first->prev->next = second;
1261 second->next->prev = first;
1263 first->next = second->next;
1264 second->next = first;
1266 second->prev = first->prev;
1267 first->prev = second;
1269 if (IS_INSN(first) && IS_INSN(second)) {
1275 if (first_insn->insn_info.line_no == second_insn->insn_info.line_no) {
1279 first_insn->insn_info.events = (first_insn->insn_info.events & ~mask) | second_events;
1280 second_insn->insn_info.events = (second_insn->insn_info.events & ~mask) | first_events;
1288 return anchor->anchor.next;
1294 return anchor->last;
1301 switch (elem->type) {
1302 case ISEQ_ELEMENT_INSN:
1303 case ISEQ_ELEMENT_ADJUST:
1313LIST_INSN_SIZE_ONE(
const LINK_ANCHOR *
const anchor)
1315 LINK_ELEMENT *first_insn = ELEM_FIRST_INSN(FIRST_ELEMENT(anchor));
1316 if (first_insn != NULL &&
1317 ELEM_FIRST_INSN(first_insn->next) == NULL) {
1326LIST_INSN_SIZE_ZERO(
const LINK_ANCHOR *
const anchor)
1328 if (ELEM_FIRST_INSN(FIRST_ELEMENT(anchor)) == NULL) {
1346 if (anc2->anchor.next) {
1349 anc1->last->next = anc2->anchor.next;
1350 anc2->anchor.next->prev = anc1->last;
1351 anc1->last = anc2->last;
1356 verify_list(
"append", anc1);
1359#define APPEND_LIST(anc1, anc2) APPEND_LIST(iseq, (anc1), (anc2))
1368 printf(
"anch: %p, frst: %p, last: %p\n", (
void *)&anchor->anchor,
1369 (
void *)anchor->anchor.next, (
void *)anchor->last);
1371 printf(
"curr: %p, next: %p, prev: %p, type: %d\n", (
void *)list, (
void *)list->next,
1372 (
void *)list->prev, (
int)list->type);
1377 dump_disasm_list_with_cursor(anchor->anchor.next, cur, 0);
1378 verify_list(
"debug list", anchor);
1381#define debug_list(anc, cur) debug_list(iseq, (anc), (cur))
1384#define debug_list(anc, cur) ((void)0)
1390 TRACE *trace = compile_data_alloc_trace(iseq);
1392 trace->link.type = ISEQ_ELEMENT_TRACE;
1393 trace->link.next = NULL;
1394 trace->event = event;
1401new_label_body(
rb_iseq_t *iseq,
long line)
1403 LABEL *labelobj = compile_data_alloc_label(iseq);
1405 labelobj->link.type = ISEQ_ELEMENT_LABEL;
1406 labelobj->link.next = 0;
1408 labelobj->label_no = ISEQ_COMPILE_DATA(iseq)->label_no++;
1409 labelobj->sc_state = 0;
1411 labelobj->refcnt = 0;
1413 labelobj->rescued = LABEL_RESCUE_NONE;
1414 labelobj->unremovable = 0;
1415 labelobj->position = -1;
1422 ADJUST *adjust = compile_data_alloc_adjust(iseq);
1423 adjust->link.type = ISEQ_ELEMENT_ADJUST;
1424 adjust->link.next = 0;
1425 adjust->label = label;
1426 adjust->line_no = line;
1427 LABEL_UNREMOVABLE(label);
1434 const char *types = insn_op_types(insn->insn_id);
1435 for (
int j = 0; types[j]; j++) {
1436 char type = types[j];
1443 func(&OPERAND_AT(insn, j), data);
1452iseq_insn_each_object_write_barrier(
VALUE * obj,
VALUE iseq)
1461new_insn_core(
rb_iseq_t *iseq,
int line_no,
int node_id,
int insn_id,
int argc,
VALUE *argv)
1463 INSN *iobj = compile_data_alloc_insn(iseq);
1467 iobj->link.type = ISEQ_ELEMENT_INSN;
1468 iobj->link.next = 0;
1469 iobj->insn_id = insn_id;
1470 iobj->insn_info.line_no = line_no;
1471 iobj->insn_info.node_id = node_id;
1472 iobj->insn_info.events = 0;
1473 iobj->operands = argv;
1474 iobj->operand_size = argc;
1477 iseq_insn_each_markable_object(iobj, iseq_insn_each_object_write_barrier, (
VALUE)iseq);
1483new_insn_body(
rb_iseq_t *iseq,
int line_no,
int node_id,
enum ruby_vminsn_type insn_id,
int argc, ...)
1485 VALUE *operands = 0;
1489 va_start(argv, argc);
1490 operands = compile_data_alloc2_type(iseq,
VALUE, argc);
1491 for (i = 0; i < argc; i++) {
1497 return new_insn_core(iseq, line_no, node_id, insn_id, argc, operands);
1501insn_replace_with_operands(
rb_iseq_t *iseq,
INSN *iobj,
enum ruby_vminsn_type insn_id,
int argc, ...)
1503 VALUE *operands = 0;
1507 va_start(argv, argc);
1508 operands = compile_data_alloc2_type(iseq,
VALUE, argc);
1509 for (i = 0; i < argc; i++) {
1516 iobj->insn_id = insn_id;
1517 iobj->operand_size = argc;
1518 iobj->operands = operands;
1519 iseq_insn_each_markable_object(iobj, iseq_insn_each_object_write_barrier, (
VALUE)iseq);
1527 VM_ASSERT(argc >= 0);
1530 flag |= VM_CALL_KWARG;
1531 argc += kw_arg->keyword_len;
1534 if (!(flag & (VM_CALL_ARGS_SPLAT | VM_CALL_ARGS_BLOCKARG | VM_CALL_KWARG | VM_CALL_KW_SPLAT | VM_CALL_FORWARDING))
1535 && !has_blockiseq) {
1536 flag |= VM_CALL_ARGS_SIMPLE;
1539 ISEQ_BODY(iseq)->ci_size++;
1540 const struct rb_callinfo *ci = vm_ci_new(mid, flag, argc, kw_arg);
1548 VALUE *operands = compile_data_calloc2_type(iseq,
VALUE, 2);
1551 operands[1] = (
VALUE)blockiseq;
1558 if (vm_ci_flag((
struct rb_callinfo *)ci) & VM_CALL_FORWARDING) {
1559 insn = new_insn_core(iseq, line_no, node_id, BIN(sendforward), 2, operands);
1562 insn = new_insn_core(iseq, line_no, node_id, BIN(send), 2, operands);
1575 VALUE ast_value = rb_ruby_ast_new(node);
1579 if (ISEQ_BODY(iseq)->source_hash) {
1580 rb_ast_t *child_ast = rb_ruby_ast_data_get(ast_value);
1581 child_ast->body.source_hash = ISEQ_BODY(iseq)->source_hash;
1582 child_ast->body.has_source_hash = 1;
1585 debugs(
"[new_child_iseq]> ---------------------------------------\n");
1586 int isolated_depth = ISEQ_COMPILE_DATA(iseq)->isolated_depth;
1587 ret_iseq = rb_iseq_new_with_opt(ast_value, name,
1588 rb_iseq_path(iseq), rb_iseq_realpath(iseq),
1590 isolated_depth ? isolated_depth + 1 : 0,
1591 type, ISEQ_COMPILE_DATA(iseq)->option,
1592 ISEQ_SCRIPT_LINES(iseq));
1593 debugs(
"[new_child_iseq]< ---------------------------------------\n");
1603 debugs(
"[new_child_iseq_with_callback]> ---------------------------------------\n");
1604 ret_iseq = rb_iseq_new_with_callback(ifunc, name,
1605 rb_iseq_path(iseq), rb_iseq_realpath(iseq),
1606 line_no, parent,
type, ISEQ_COMPILE_DATA(iseq)->option);
1607 debugs(
"[new_child_iseq_with_callback]< ---------------------------------------\n");
1615 ISEQ_COMPILE_DATA(iseq)->catch_except_p =
true;
1616 if (ISEQ_BODY(iseq)->parent_iseq != NULL) {
1617 if (ISEQ_COMPILE_DATA(ISEQ_BODY(iseq)->parent_iseq)) {
1618 set_catch_except_p((
rb_iseq_t *) ISEQ_BODY(iseq)->parent_iseq);
1641 while (pos < body->iseq_size) {
1642 insn = rb_vm_insn_decode(body->iseq_encoded[pos]);
1643 if (insn == BIN(
throw)) {
1644 set_catch_except_p(iseq);
1647 pos += insn_len(insn);
1653 for (i = 0; i < ct->size; i++) {
1655 UNALIGNED_MEMBER_PTR(ct, entries[i]);
1656 if (entry->type != CATCH_TYPE_BREAK
1657 && entry->type != CATCH_TYPE_NEXT
1658 && entry->type != CATCH_TYPE_REDO) {
1660 ISEQ_COMPILE_DATA(iseq)->catch_except_p =
true;
1667iseq_insert_nop_between_end_and_cont(
rb_iseq_t *iseq)
1669 VALUE catch_table_ary = ISEQ_COMPILE_DATA(iseq)->catch_table_ary;
1670 if (
NIL_P(catch_table_ary))
return;
1671 unsigned int i, tlen = (
unsigned int)
RARRAY_LEN(catch_table_ary);
1673 for (i = 0; i < tlen; i++) {
1679 enum rb_catch_type ct = (
enum rb_catch_type)(ptr[0] & 0xffff);
1681 if (ct != CATCH_TYPE_BREAK
1682 && ct != CATCH_TYPE_NEXT
1683 && ct != CATCH_TYPE_REDO) {
1685 for (e = end; e && (IS_LABEL(e) || IS_TRACE(e)); e = e->next) {
1687 INSN *nop = new_insn_core(iseq, 0, -1, BIN(nop), 0, 0);
1688 ELEM_INSERT_NEXT(end, &nop->link);
1701 if (
RTEST(ISEQ_COMPILE_DATA(iseq)->err_info))
1706 if (compile_debug > 5)
1707 dump_disasm_list(FIRST_ELEMENT(anchor));
1709 debugs(
"[compile step 3.1 (iseq_optimize)]\n");
1710 iseq_optimize(iseq, anchor);
1712 if (compile_debug > 5)
1713 dump_disasm_list(FIRST_ELEMENT(anchor));
1715 if (ISEQ_COMPILE_DATA(iseq)->option->instructions_unification) {
1716 debugs(
"[compile step 3.2 (iseq_insns_unification)]\n");
1717 iseq_insns_unification(iseq, anchor);
1718 if (compile_debug > 5)
1719 dump_disasm_list(FIRST_ELEMENT(anchor));
1722 debugs(
"[compile step 3.4 (iseq_insert_nop_between_end_and_cont)]\n");
1723 iseq_insert_nop_between_end_and_cont(iseq);
1724 if (compile_debug > 5)
1725 dump_disasm_list(FIRST_ELEMENT(anchor));
1733 if (
RTEST(ISEQ_COMPILE_DATA(iseq)->err_info))
1736 debugs(
"[compile step 4.1 (iseq_set_sequence)]\n");
1737 if (!iseq_set_sequence(iseq, anchor))
return COMPILE_NG;
1738 if (compile_debug > 5)
1739 dump_disasm_list(FIRST_ELEMENT(anchor));
1741 debugs(
"[compile step 4.2 (iseq_set_exception_table)]\n");
1742 if (!iseq_set_exception_table(iseq))
return COMPILE_NG;
1744 debugs(
"[compile step 4.3 (set_optargs_table)] \n");
1745 if (!iseq_set_optargs_table(iseq))
return COMPILE_NG;
1747 debugs(
"[compile step 5 (iseq_translate_threaded_code)] \n");
1748 if (!rb_iseq_translate_threaded_code(iseq))
return COMPILE_NG;
1750 debugs(
"[compile step 6 (update_catch_except_flags)] \n");
1752 update_catch_except_flags(iseq, ISEQ_BODY(iseq));
1754 debugs(
"[compile step 6.1 (remove unused catch tables)] \n");
1756 if (!ISEQ_COMPILE_DATA(iseq)->catch_except_p && ISEQ_BODY(iseq)->catch_table) {
1757 ruby_xfree_sized(ISEQ_BODY(iseq)->catch_table, iseq_catch_table_bytes(ISEQ_BODY(iseq)->catch_table->size));
1758 ISEQ_BODY(iseq)->catch_table = NULL;
1761#if VM_INSN_INFO_TABLE_IMPL == 2
1762 debugs(
"[compile step 7 (rb_iseq_insns_info_encode_positions)] \n");
1763 rb_iseq_insns_info_encode_positions(iseq);
1766 if (compile_debug > 1) {
1767 VALUE str = rb_iseq_disasm(iseq);
1770 verify_call_cache(iseq);
1771 debugs(
"[compile step: finish]\n");
1777iseq_set_exception_local_table(
rb_iseq_t *iseq)
1779 ISEQ_BODY(iseq)->local_table_size = numberof(rb_iseq_shared_exc_local_tbl);
1780 ISEQ_BODY(iseq)->local_table = rb_iseq_shared_exc_local_tbl;
1781 ISEQ_BODY(iseq)->lvar_states.list = NULL;
1789 while (iseq != ISEQ_BODY(iseq)->local_iseq) {
1791 iseq = ISEQ_BODY(iseq)->parent_iseq;
1797get_dyna_var_idx_at_raw(
const rb_iseq_t *iseq,
ID id)
1801 for (i = 0; i < ISEQ_BODY(iseq)->local_table_size; i++) {
1802 if (ISEQ_BODY(iseq)->local_table[i] == id) {
1812 int idx = get_dyna_var_idx_at_raw(ISEQ_BODY(iseq)->local_iseq,
id);
1815 COMPILE_ERROR(iseq, ISEQ_LAST_LINE(iseq),
1816 "get_local_var_idx: %d", idx);
1823get_dyna_var_idx(
const rb_iseq_t *iseq,
ID id,
int *level,
int *ls)
1825 int lv = 0, idx = -1;
1826 const rb_iseq_t *
const topmost_iseq = iseq;
1829 idx = get_dyna_var_idx_at_raw(iseq,
id);
1833 iseq = ISEQ_BODY(iseq)->parent_iseq;
1838 COMPILE_ERROR(topmost_iseq, ISEQ_LAST_LINE(topmost_iseq),
1839 "get_dyna_var_idx: -1");
1843 *ls = ISEQ_BODY(iseq)->local_table_size;
1848iseq_local_block_param_p(
const rb_iseq_t *iseq,
unsigned int idx,
unsigned int level)
1852 iseq = ISEQ_BODY(iseq)->parent_iseq;
1855 body = ISEQ_BODY(iseq);
1856 if (body->local_iseq == iseq &&
1857 body->param.flags.has_block &&
1858 body->local_table_size - body->param.block_start == idx) {
1867iseq_block_param_id_p(
const rb_iseq_t *iseq,
ID id,
int *pidx,
int *plevel)
1870 int idx = get_dyna_var_idx(iseq,
id, &level, &ls);
1871 if (iseq_local_block_param_p(iseq, ls - idx, level)) {
1882access_outer_variables(
const rb_iseq_t *iseq,
int level,
ID id,
bool write)
1884 int isolated_depth = ISEQ_COMPILE_DATA(iseq)->isolated_depth;
1886 if (isolated_depth && level >= isolated_depth) {
1887 if (
id == rb_intern(
"yield")) {
1888 COMPILE_ERROR(iseq, ISEQ_LAST_LINE(iseq),
"can not yield from isolated Proc");
1891 COMPILE_ERROR(iseq, ISEQ_LAST_LINE(iseq),
"can not access variable '%s' from isolated Proc", rb_id2name(
id));
1895 for (
int i=0; i<level; i++) {
1897 struct rb_id_table *ovs = ISEQ_BODY(iseq)->outer_variables;
1900 ovs = ISEQ_BODY(iseq)->outer_variables = rb_id_table_create(8);
1903 if (rb_id_table_lookup(ISEQ_BODY(iseq)->outer_variables,
id, &val)) {
1904 if (write && !val) {
1905 rb_id_table_insert(ISEQ_BODY(iseq)->outer_variables,
id,
Qtrue);
1909 rb_id_table_insert(ISEQ_BODY(iseq)->outer_variables,
id, RBOOL(write));
1912 iseq = ISEQ_BODY(iseq)->parent_iseq;
1917iseq_lvar_id(
const rb_iseq_t *iseq,
int idx,
int level)
1919 for (
int i=0; i<level; i++) {
1920 iseq = ISEQ_BODY(iseq)->parent_iseq;
1923 ID id = ISEQ_BODY(iseq)->local_table[ISEQ_BODY(iseq)->local_table_size - idx];
1929update_lvar_state(
const rb_iseq_t *iseq,
int level,
int idx)
1931 for (
int i=0; i<level; i++) {
1932 iseq = ISEQ_BODY(iseq)->parent_iseq;
1935 uint8_t *states = iseq_lvar_states(ISEQ_BODY(iseq));
1936 int table_idx = ISEQ_BODY(iseq)->local_table_size - idx;
1937 switch (iseq_lvar_state_get(states, table_idx)) {
1938 case lvar_uninitialized:
1939 iseq_lvar_state_set(states, table_idx, lvar_initialized);
1941 case lvar_initialized:
1942 iseq_lvar_state_set(states, table_idx, lvar_reassigned);
1944 case lvar_reassigned:
1948 rb_bug(
"unreachable");
1953iseq_set_parameters_lvar_state(
const rb_iseq_t *iseq)
1955 uint8_t *states = iseq_lvar_states(ISEQ_BODY(iseq));
1957 for (
unsigned int i=0; i<ISEQ_BODY(iseq)->param.size; i++) {
1958 iseq_lvar_state_set(states, i, lvar_initialized);
1961 int lead_num = ISEQ_BODY(iseq)->param.lead_num;
1962 int opt_num = ISEQ_BODY(iseq)->param.opt_num;
1963 for (
int i=0; i<opt_num; i++) {
1964 iseq_lvar_state_set(states, lead_num + i, lvar_uninitialized);
1973 if (iseq_local_block_param_p(iseq, idx, level)) {
1974 ADD_INSN2(seq, line_node, getblockparam,
INT2FIX((idx) + VM_ENV_DATA_SIZE - 1),
INT2FIX(level));
1977 ADD_INSN2(seq, line_node, getlocal,
INT2FIX((idx) + VM_ENV_DATA_SIZE - 1),
INT2FIX(level));
1979 if (level > 0) access_outer_variables(iseq, level, iseq_lvar_id(iseq, idx, level),
Qfalse);
1985 if (iseq_local_block_param_p(iseq, idx, level)) {
1986 ADD_INSN2(seq, line_node, setblockparam,
INT2FIX((idx) + VM_ENV_DATA_SIZE - 1),
INT2FIX(level));
1989 ADD_INSN2(seq, line_node, setlocal,
INT2FIX((idx) + VM_ENV_DATA_SIZE - 1),
INT2FIX(level));
1991 update_lvar_state(iseq, level, idx);
1992 if (level > 0) access_outer_variables(iseq, level, iseq_lvar_id(iseq, idx, level),
Qtrue);
2001 if (body->param.flags.has_opt ||
2002 body->param.flags.has_post ||
2003 body->param.flags.has_rest ||
2004 body->param.flags.has_block ||
2005 body->param.flags.has_kw ||
2006 body->param.flags.has_kwrest) {
2008 if (body->param.flags.has_block) {
2009 body->param.size = body->param.block_start + 1;
2011 else if (body->param.flags.has_kwrest) {
2012 body->param.size = body->param.keyword->rest_start + 1;
2014 else if (body->param.flags.has_kw) {
2015 body->param.size = body->param.keyword->bits_start + 1;
2017 else if (body->param.flags.has_post) {
2018 body->param.size = body->param.post_start + body->param.post_num;
2020 else if (body->param.flags.has_rest) {
2021 body->param.size = body->param.rest_start + 1;
2023 else if (body->param.flags.has_opt) {
2024 body->param.size = body->param.lead_num + body->param.opt_num;
2031 body->param.size = body->param.lead_num;
2041 struct rb_iseq_param_keyword *keyword;
2044 int kw = 0, rkw = 0, di = 0, i;
2046 body->param.flags.has_kw = TRUE;
2047 body->param.keyword = keyword =
ZALLOC_N(
struct rb_iseq_param_keyword, 1);
2051 node = node->nd_next;
2053 if (kw > VM_CALL_KW_LEN_MAX) {
2054 COMPILE_ERROR(ERROR_ARGS_AT(RNODE(args->kw_args))
"too many keyword parameters (%d, maximum is %d)",
2055 kw, (
int)VM_CALL_KW_LEN_MAX);
2058 keyword->bits_start = arg_size++;
2060 node = args->kw_args;
2062 const NODE *val_node = get_nd_value(node->nd_body);
2065 if (val_node == NODE_SPECIAL_REQUIRED_KEYWORD) {
2069 switch (nd_type(val_node)) {
2071 dv = rb_node_sym_string_val(val_node);
2074 dv = rb_node_regx_string_val(val_node);
2077 dv = rb_node_line_lineno_val(val_node);
2080 dv = rb_node_integer_literal_val(val_node);
2083 dv = rb_node_float_literal_val(val_node);
2086 dv = rb_node_rational_literal_val(val_node);
2088 case NODE_IMAGINARY:
2089 dv = rb_node_imaginary_literal_val(val_node);
2092 dv = rb_node_encoding_val(val_node);
2104 NO_CHECK(COMPILE_POPPED(optargs,
"kwarg", RNODE(node)));
2108 keyword->num = ++di;
2112 node = node->nd_next;
2117 if (RNODE_DVAR(args->kw_rest_arg)->nd_vid != 0) {
2118 ID kw_id = ISEQ_BODY(iseq)->local_table[arg_size];
2119 keyword->rest_start = arg_size++;
2120 body->param.flags.has_kwrest = TRUE;
2122 if (kw_id == idPow) body->param.flags.anon_kwrest = TRUE;
2124 keyword->required_num = rkw;
2125 keyword->table = &body->local_table[keyword->bits_start - keyword->num];
2130 for (i = 0; i <
RARRAY_LEN(default_values); i++) {
2132 if (dv == complex_mark) dv =
Qundef;
2137 keyword->default_values = dvs;
2146 if (!body->param.flags.use_block) {
2147 body->param.flags.use_block = 1;
2152 st_data_t key = (st_data_t)rb_intern_str(body->location.label);
2153 set_insert(&vm->unused_block_warning_table, key);
2161 debugs(
"iseq_set_arguments: %s\n", node_args ?
"" :
"0");
2165 const struct rb_args_info *
const args = &RNODE_ARGS(node_args)->nd_ainfo;
2171 EXPECT_NODE(
"iseq_set_arguments", node_args, NODE_ARGS, COMPILE_NG);
2173 body->param.lead_num = arg_size = (int)args->pre_args_num;
2174 if (body->param.lead_num > 0) body->param.flags.has_lead = TRUE;
2175 debugs(
" - argc: %d\n", body->param.lead_num);
2177 rest_id = args->rest_arg;
2178 if (rest_id == NODE_SPECIAL_EXCESSIVE_COMMA) {
2182 block_id = args->block_arg;
2184 bool optimized_forward = (args->forwarding && args->pre_args_num == 0 && !args->opt_args);
2186 if (optimized_forward) {
2191 if (args->opt_args) {
2199 label = NEW_LABEL(nd_line(RNODE(node)));
2201 ADD_LABEL(optargs, label);
2202 NO_CHECK(COMPILE_POPPED(optargs,
"optarg", node->nd_body));
2203 node = node->nd_next;
2208 label = NEW_LABEL(nd_line(node_args));
2210 ADD_LABEL(optargs, label);
2215 for (j = 0; j < i+1; j++) {
2220 body->param.flags.has_opt = TRUE;
2221 body->param.opt_num = i;
2222 body->param.opt_table = opt_table;
2227 body->param.rest_start = arg_size++;
2228 body->param.flags.has_rest = TRUE;
2229 if (rest_id ==
'*') body->param.flags.anon_rest = TRUE;
2233 if (args->first_post_arg) {
2234 body->param.post_start = arg_size;
2235 body->param.post_num = args->post_args_num;
2236 body->param.flags.has_post = TRUE;
2237 arg_size += args->post_args_num;
2239 if (body->param.flags.has_rest) {
2240 body->param.post_start = body->param.rest_start + 1;
2244 if (args->kw_args) {
2245 arg_size = iseq_set_arguments_keywords(iseq, optargs, args, arg_size);
2247 else if (args->kw_rest_arg && !optimized_forward) {
2248 ID kw_id = ISEQ_BODY(iseq)->local_table[arg_size];
2249 struct rb_iseq_param_keyword *keyword =
ZALLOC_N(
struct rb_iseq_param_keyword, 1);
2250 keyword->rest_start = arg_size++;
2251 body->param.keyword = keyword;
2252 body->param.flags.has_kwrest = TRUE;
2254 static ID anon_kwrest = 0;
2255 if (!anon_kwrest) anon_kwrest = rb_intern(
"**");
2256 if (kw_id == anon_kwrest) body->param.flags.anon_kwrest = TRUE;
2258 else if (args->no_kwarg) {
2259 body->param.flags.accepts_no_kwarg = TRUE;
2262 if (args->no_blockarg) {
2263 body->param.flags.accepts_no_block = TRUE;
2265 else if (block_id) {
2266 body->param.block_start = arg_size++;
2267 body->param.flags.has_block = TRUE;
2268 iseq_set_use_block(iseq);
2272 if (optimized_forward) {
2273 body->param.flags.use_block = 1;
2274 body->param.flags.forwardable = TRUE;
2278 iseq_calc_param_size(iseq);
2279 body->param.size = arg_size;
2281 if (args->pre_init) {
2282 NO_CHECK(COMPILE_POPPED(optargs,
"init arguments (m)", args->pre_init));
2284 if (args->post_init) {
2285 NO_CHECK(COMPILE_POPPED(optargs,
"init arguments (p)", args->post_init));
2288 if (body->type == ISEQ_TYPE_BLOCK) {
2289 if (body->param.flags.has_opt == FALSE &&
2290 body->param.flags.has_post == FALSE &&
2291 body->param.flags.has_rest == FALSE &&
2292 body->param.flags.has_kw == FALSE &&
2293 body->param.flags.has_kwrest == FALSE) {
2295 if (body->param.lead_num == 1 && last_comma == 0) {
2297 body->param.flags.ambiguous_param0 = TRUE;
2309 unsigned int size = tbl ? tbl->size : 0;
2310 unsigned int offset = 0;
2313 struct rb_args_info *args = &RNODE_ARGS(node_args)->nd_ainfo;
2318 if (args->forwarding && args->pre_args_num == 0 && !args->opt_args) {
2327 MEMCPY(ids, tbl->ids + offset,
ID, size);
2328 ISEQ_BODY(iseq)->local_table = ids;
2330 if (ISEQ_LVAR_STATES_EMBED_P(size)) {
2332 memset(ISEQ_BODY(iseq)->lvar_states.single, 0,
sizeof(ISEQ_BODY(iseq)->lvar_states.single));
2335 ISEQ_BODY(iseq)->lvar_states.list =
ZALLOC_N(uint8_t, ISEQ_LVAR_STATES_BUFLEN(size));
2338 ISEQ_BODY(iseq)->local_table_size = size;
2340 debugs(
"iseq_set_local_table: %u\n", ISEQ_BODY(iseq)->local_table_size);
2352 else if ((tlit = OBJ_BUILTIN_TYPE(lit)) == -1) {
2355 else if ((tval = OBJ_BUILTIN_TYPE(val)) == -1) {
2358 else if (tlit != tval) {
2368 long x =
FIX2LONG(rb_big_cmp(lit, val));
2376 return rb_float_cmp(lit, val);
2379 const struct RRational *rat1 = RRATIONAL(val);
2380 const struct RRational *rat2 = RRATIONAL(lit);
2381 return rb_iseq_cdhash_cmp(rat1->num, rat2->num) || rb_iseq_cdhash_cmp(rat1->den, rat2->den);
2384 const struct RComplex *comp1 = RCOMPLEX(val);
2385 const struct RComplex *comp2 = RCOMPLEX(lit);
2386 return rb_iseq_cdhash_cmp(comp1->real, comp2->real) || rb_iseq_cdhash_cmp(comp1->imag, comp2->imag);
2389 return rb_reg_equal(val, lit) ? 0 : -1;
2397rb_iseq_cdhash_hash(
VALUE a)
2399 switch (OBJ_BUILTIN_TYPE(a)) {
2402 return (st_index_t)a;
2410 return rb_rational_hash(a);
2412 return rb_complex_hash(a);
2422 rb_iseq_cdhash_hash,
2426cdhash_new(
size_t size)
2428 VALUE cdhash = rb_imemo_cdhash_new(size, &cdhash_type);
2436 st_table *tbl = rb_imemo_cdhash_tbl(cdhash);
2437 st_insert(tbl, key, val);
2444 st_table *tbl = rb_imemo_cdhash_tbl(cdhash);
2446 if (!st_lookup(tbl, key, &dontcare)) {
2447 st_insert(tbl, key, val);
2459cdhash_set_label_check_i(st_data_t key, st_data_t value, st_data_t argp,
int error)
2465cdhash_set_label_replace_i(st_data_t *key, st_data_t *value, st_data_t ptr,
int existing)
2469 *value = lobj->position - (data->pos+data->len);
2476 return INT2FIX(ISEQ_BODY(iseq)->ivc_size++);
2483 struct rb_id_table *tbl = ISEQ_COMPILE_DATA(iseq)->ivar_cache_table;
2485 if (rb_id_table_lookup(tbl,
id,&val)) {
2490 tbl = rb_id_table_create(1);
2491 ISEQ_COMPILE_DATA(iseq)->ivar_cache_table = tbl;
2493 val =
INT2FIX(ISEQ_BODY(iseq)->icvarc_size++);
2494 rb_id_table_insert(tbl,
id,val);
2498#define BADINSN_DUMP(anchor, list, dest) \
2499 dump_disasm_list_with_cursor(FIRST_ELEMENT(anchor), list, dest)
2501#define BADINSN_ERROR \
2502 (SIZED_FREE_N(generated_iseq, generated_iseq_size), \
2503 SIZED_FREE_N(insns_info, insns_info_size), \
2504 BADINSN_DUMP(anchor, list, NULL), \
2510 int stack_max = 0, sp = 0, line = 0;
2513 for (list = FIRST_ELEMENT(anchor); list; list = list->next) {
2514 if (IS_LABEL(list)) {
2520 for (list = FIRST_ELEMENT(anchor); list; list = list->next) {
2521 switch (list->type) {
2522 case ISEQ_ELEMENT_INSN:
2530 sp = calc_sp_depth(sp, iobj);
2532 BADINSN_DUMP(anchor, list, NULL);
2533 COMPILE_ERROR(iseq, iobj->insn_info.line_no,
2534 "argument stack underflow (%d)", sp);
2537 if (sp > stack_max) {
2541 line = iobj->insn_info.line_no;
2543 operands = iobj->operands;
2544 insn = iobj->insn_id;
2545 types = insn_op_types(insn);
2546 len = insn_len(insn);
2549 if (iobj->operand_size !=
len - 1) {
2551 BADINSN_DUMP(anchor, list, NULL);
2552 COMPILE_ERROR(iseq, iobj->insn_info.line_no,
2553 "operand size miss! (%d for %d)",
2554 iobj->operand_size,
len - 1);
2558 for (j = 0; types[j]; j++) {
2559 if (types[j] == TS_OFFSET) {
2563 BADINSN_DUMP(anchor, list, NULL);
2564 COMPILE_ERROR(iseq, iobj->insn_info.line_no,
2565 "unknown label: "LABEL_FORMAT, lobj->label_no);
2568 if (lobj->sp == -1) {
2571 else if (lobj->sp != sp) {
2572 VALUE path = rb_iseq_path(iseq);
2573 debugs(
"%.*s:%d: sp inconsistency found but ignored (" LABEL_FORMAT
" sp: %d, calculated sp: %d)\n",
2575 lobj->label_no, lobj->sp, sp);
2581 case ISEQ_ELEMENT_LABEL:
2584 if (lobj->sp == -1) {
2588 if (lobj->sp != sp) {
2589 VALUE path = rb_iseq_path(iseq);
2590 debugs(
"%.*s:%d: sp inconsistency found but ignored (" LABEL_FORMAT
" sp: %d, calculated sp: %d)\n",
2592 lobj->label_no, lobj->sp, sp);
2598 case ISEQ_ELEMENT_TRACE:
2603 case ISEQ_ELEMENT_ADJUST:
2608 sp = adjust->label ? adjust->label->sp : 0;
2609 if (adjust->line_no != -1 && orig_sp - sp < 0) {
2610 BADINSN_DUMP(anchor, list, NULL);
2611 COMPILE_ERROR(iseq, adjust->line_no,
2612 "iseq_set_sequence: adjust bug %d < %d",
2619 BADINSN_DUMP(anchor, list, NULL);
2620 COMPILE_ERROR(iseq, line,
"unknown list type: %d", list->type);
2629 int insns_info_index,
int code_index,
const INSN *iobj)
2631 if (insns_info_index == 0 ||
2632 insns_info[insns_info_index-1].line_no != iobj->insn_info.line_no ||
2633#ifdef USE_ISEQ_NODE_ID
2634 insns_info[insns_info_index-1].node_id != iobj->insn_info.node_id ||
2636 insns_info[insns_info_index-1].events != iobj->insn_info.events) {
2637 insns_info[insns_info_index].line_no = iobj->insn_info.line_no;
2638#ifdef USE_ISEQ_NODE_ID
2639 insns_info[insns_info_index].node_id = iobj->insn_info.node_id;
2641 insns_info[insns_info_index].events = iobj->insn_info.events;
2642 positions[insns_info_index] = code_index;
2650 int insns_info_index,
int code_index,
const ADJUST *adjust)
2652 insns_info[insns_info_index].line_no = adjust->line_no;
2653 insns_info[insns_info_index].node_id = -1;
2654 insns_info[insns_info_index].events = 0;
2655 positions[insns_info_index] = code_index;
2660array_to_idlist(
VALUE arr)
2665 for (
long i = 0; i < size; i++) {
2674idlist_to_array(
const ID *ids)
2691 unsigned int *positions;
2693 VALUE *generated_iseq;
2697 int insn_num, code_index, insns_info_index, sp = 0;
2698 int stack_max = fix_sp_depth(iseq, anchor);
2700 if (stack_max < 0)
return COMPILE_NG;
2703 insn_num = code_index = 0;
2704 for (list = FIRST_ELEMENT(anchor); list; list = list->next) {
2705 switch (list->type) {
2706 case ISEQ_ELEMENT_INSN:
2710 sp = calc_sp_depth(sp, iobj);
2712 events = iobj->insn_info.events |= events;
2713 if (ISEQ_COVERAGE(iseq)) {
2714 if (ISEQ_LINE_COVERAGE(iseq) && (events & RUBY_EVENT_COVERAGE_LINE) &&
2715 !(rb_get_coverage_mode() & COVERAGE_TARGET_ONESHOT_LINES)) {
2716 int line = iobj->insn_info.line_no - 1;
2717 if (line >= 0 && line <
RARRAY_LEN(ISEQ_LINE_COVERAGE(iseq))) {
2721 if (ISEQ_BRANCH_COVERAGE(iseq) && (events & RUBY_EVENT_COVERAGE_BRANCH)) {
2722 while (
RARRAY_LEN(ISEQ_PC2BRANCHINDEX(iseq)) <= code_index) {
2728 code_index += insn_data_length(iobj);
2733 case ISEQ_ELEMENT_LABEL:
2736 lobj->position = code_index;
2737 if (lobj->sp != sp) {
2738 VALUE path = rb_iseq_path(iseq);
2739 debugs(
"%.*s: sp inconsistency found but ignored (" LABEL_FORMAT
" sp: %d, calculated sp: %d)\n",
2741 lobj->label_no, lobj->sp, sp);
2746 case ISEQ_ELEMENT_TRACE:
2749 events |= trace->event;
2750 if (trace->event & RUBY_EVENT_COVERAGE_BRANCH) data = trace->data;
2753 case ISEQ_ELEMENT_ADJUST:
2756 if (adjust->line_no != -1) {
2758 sp = adjust->label ? adjust->label->sp : 0;
2759 if (orig_sp - sp > 0) {
2760 if (orig_sp - sp > 1) code_index++;
2772 const int generated_iseq_size = code_index;
2775 const int insns_info_size = insn_num;
2778 const int positions_size = insn_num;
2779 positions =
ALLOC_N(
unsigned int, insn_num);
2780 if (ISEQ_IS_SIZE(body)) {
2784 body->is_entries = NULL;
2787 if (body->ci_size) {
2791 body->call_data = NULL;
2793 ISEQ_COMPILE_DATA(iseq)->ci_index = 0;
2800 iseq_bits_t * mark_offset_bits;
2801 int code_size = code_index;
2803 bool needs_bitmap =
false;
2805 const size_t mark_offset_bits_size = ISEQ_MBITS_BUFLEN(code_index);
2806 if (mark_offset_bits_size == 1) {
2807 mark_offset_bits = &ISEQ_COMPILE_DATA(iseq)->mark_bits.single;
2808 ISEQ_COMPILE_DATA(iseq)->is_single_mark_bit =
true;
2811 mark_offset_bits =
ZALLOC_N(iseq_bits_t, mark_offset_bits_size);
2812 ISEQ_COMPILE_DATA(iseq)->mark_bits.list = mark_offset_bits;
2813 ISEQ_COMPILE_DATA(iseq)->is_single_mark_bit =
false;
2816 ISEQ_COMPILE_DATA(iseq)->iseq_encoded = (
void *)generated_iseq;
2817 ISEQ_COMPILE_DATA(iseq)->iseq_size = code_index;
2819 list = FIRST_ELEMENT(anchor);
2820 insns_info_index = code_index = sp = 0;
2823 switch (list->type) {
2824 case ISEQ_ELEMENT_INSN:
2832 sp = calc_sp_depth(sp, iobj);
2834 operands = iobj->operands;
2835 insn = iobj->insn_id;
2836 generated_iseq[code_index] = insn;
2837 types = insn_op_types(insn);
2838 len = insn_len(insn);
2840 for (j = 0; types[j]; j++) {
2841 char type = types[j];
2849 generated_iseq[code_index + 1 + j] = lobj->position - (code_index +
len);
2854 VALUE map = operands[j];
2857 data.pos = code_index;
2859 st_foreach_with_replace(rb_imemo_cdhash_tbl(map), cdhash_set_label_check_i, cdhash_set_label_replace_i, (
VALUE)&data);
2861 generated_iseq[code_index + 1 + j] = map;
2862 ISEQ_MBITS_SET(mark_offset_bits, code_index + 1 + j);
2864 needs_bitmap =
true;
2869 generated_iseq[code_index + 1 + j] =
FIX2INT(operands[j]);
2874 VALUE v = operands[j];
2875 generated_iseq[code_index + 1 + j] = v;
2879 ISEQ_MBITS_SET(mark_offset_bits, code_index + 1 + j);
2880 needs_bitmap =
true;
2887 unsigned int ic_index = ISEQ_COMPILE_DATA(iseq)->ic_index++;
2888 IC ic = &ISEQ_IS_ENTRY_START(body,
type)[ic_index].ic_cache;
2889 if (UNLIKELY(ic_index >= body->ic_size)) {
2890 BADINSN_DUMP(anchor, &iobj->link, 0);
2891 COMPILE_ERROR(iseq, iobj->insn_info.line_no,
2892 "iseq_set_sequence: ic_index overflow: index: %d, size: %d",
2893 ic_index, ISEQ_IS_SIZE(body));
2896 ic->
segments = array_to_idlist(operands[j]);
2898 generated_iseq[code_index + 1 + j] = (
VALUE)ic;
2903 unsigned int ic_index =
FIX2UINT(operands[j]);
2905 IVC cache = ((
IVC)&body->is_entries[ic_index]);
2907 if (insn == BIN(setinstancevariable)) {
2908 cache->iv_set_name =
SYM2ID(operands[j - 1]);
2909 cache->value = IVAR_CACHE_INIT;
2912 cache->iv_set_name = 0;
2913 cache->value = rb_getivar_cache_pack(ROOT_SHAPE_ID, ATTR_INDEX_NOT_SET);
2919 unsigned int ic_index =
FIX2UINT(operands[j]);
2920 IC ic = &ISEQ_IS_ENTRY_START(body,
type)[ic_index].ic_cache;
2921 if (UNLIKELY(ic_index >= ISEQ_IS_SIZE(body))) {
2922 BADINSN_DUMP(anchor, &iobj->link, 0);
2923 COMPILE_ERROR(iseq, iobj->insn_info.line_no,
2924 "iseq_set_sequence: ic_index overflow: index: %d, size: %d",
2925 ic_index, ISEQ_IS_SIZE(body));
2927 generated_iseq[code_index + 1 + j] = (
VALUE)ic;
2934 RUBY_ASSERT(ISEQ_COMPILE_DATA(iseq)->ci_index <= body->ci_size);
2935 struct rb_call_data *cd = &body->call_data[ISEQ_COMPILE_DATA(iseq)->ci_index++];
2937 cd->cc = vm_cc_empty();
2938 generated_iseq[code_index + 1 + j] = (
VALUE)cd;
2942 generated_iseq[code_index + 1 + j] =
SYM2ID(operands[j]);
2945 generated_iseq[code_index + 1 + j] = operands[j];
2948 generated_iseq[code_index + 1 + j] = operands[j];
2951 BADINSN_ERROR(iseq, iobj->insn_info.line_no,
2952 "unknown operand type: %c",
type);
2956 if (add_insn_info(insns_info, positions, insns_info_index, code_index, iobj)) insns_info_index++;
2960 case ISEQ_ELEMENT_LABEL:
2963 if (lobj->sp != sp) {
2964 VALUE path = rb_iseq_path(iseq);
2965 debugs(
"%.*s: sp inconsistency found but ignored (" LABEL_FORMAT
" sp: %d, calculated sp: %d)\n",
2967 lobj->label_no, lobj->sp, sp);
2972 case ISEQ_ELEMENT_ADJUST:
2977 if (adjust->label) {
2978 sp = adjust->label->sp;
2984 if (adjust->line_no != -1) {
2985 const int diff = orig_sp - sp;
2987 if (insns_info_index == 0) {
2988 COMPILE_ERROR(iseq, adjust->line_no,
2989 "iseq_set_sequence: adjust bug (ISEQ_ELEMENT_ADJUST must not be the first in iseq)");
2991 if (add_adjust_info(insns_info, positions, insns_info_index, code_index, adjust)) insns_info_index++;
2994 generated_iseq[code_index++] = BIN(adjuststack);
2995 generated_iseq[code_index++] = orig_sp - sp;
2997 else if (diff == 1) {
2998 generated_iseq[code_index++] = BIN(pop);
3000 else if (diff < 0) {
3001 int label_no = adjust->label ? adjust->label->label_no : -1;
3002 SIZED_FREE_N(generated_iseq, generated_iseq_size);
3003 SIZED_FREE_N(insns_info, insns_info_size);
3004 SIZED_FREE_N(positions, positions_size);
3005 if (ISEQ_MBITS_BUFLEN(code_size) > 1) {
3006 SIZED_FREE_N(mark_offset_bits, ISEQ_MBITS_BUFLEN(code_index));
3008 debug_list(anchor, list);
3009 COMPILE_ERROR(iseq, adjust->line_no,
3010 "iseq_set_sequence: adjust bug to %d %d < %d",
3011 label_no, orig_sp, sp);
3024 body->iseq_encoded = (
void *)generated_iseq;
3025 body->iseq_size = code_index;
3026 body->stack_max = stack_max;
3028 if (ISEQ_COMPILE_DATA(iseq)->is_single_mark_bit) {
3029 body->mark_bits.single = ISEQ_COMPILE_DATA(iseq)->mark_bits.single;
3033 body->mark_bits.list = mark_offset_bits;
3036 body->mark_bits.list = NULL;
3037 ISEQ_COMPILE_DATA(iseq)->mark_bits.list = NULL;
3038 SIZED_FREE_N(mark_offset_bits, mark_offset_bits_size);
3043 body->insns_info.body = insns_info;
3044 body->insns_info.positions_or_succ_index_table.positions = positions;
3047 body->insns_info.body = insns_info;
3048 SIZED_REALLOC_N(positions,
unsigned int, insns_info_index, positions_size);
3049 body->insns_info.positions_or_succ_index_table.positions = positions;
3050 body->insns_info.size = insns_info_index;
3056label_get_position(
LABEL *lobj)
3058 return lobj->position;
3062label_get_sp(
LABEL *lobj)
3068iseq_set_exception_table(
rb_iseq_t *iseq)
3070 const VALUE *tptr, *ptr;
3071 unsigned int tlen, i;
3074 ISEQ_BODY(iseq)->catch_table = NULL;
3076 VALUE catch_table_ary = ISEQ_COMPILE_DATA(iseq)->catch_table_ary;
3077 if (
NIL_P(catch_table_ary))
return COMPILE_OK;
3085 for (i = 0; i < table->size; i++) {
3088 entry = UNALIGNED_MEMBER_PTR(table, entries[i]);
3089 entry->type = (
enum rb_catch_type)(ptr[0] & 0xffff);
3090 pos = label_get_position((
LABEL *)(ptr[1] & ~1));
3092 entry->start = (
unsigned int)pos;
3093 pos = label_get_position((
LABEL *)(ptr[2] & ~1));
3095 entry->end = (
unsigned int)pos;
3102 entry->cont = label_get_position(lobj);
3103 entry->sp = label_get_sp(lobj);
3106 if (entry->type == CATCH_TYPE_RESCUE ||
3107 entry->type == CATCH_TYPE_BREAK ||
3108 entry->type == CATCH_TYPE_NEXT) {
3117 ISEQ_BODY(iseq)->catch_table = table;
3118 RB_OBJ_WRITE(iseq, &ISEQ_COMPILE_DATA(iseq)->catch_table_ary, 0);
3139 VALUE *opt_table = (
VALUE *)ISEQ_BODY(iseq)->param.opt_table;
3141 if (ISEQ_BODY(iseq)->param.flags.has_opt) {
3142 for (i = 0; i < ISEQ_BODY(iseq)->param.opt_num + 1; i++) {
3143 opt_table[i] = label_get_position((
LABEL *)opt_table[i]);
3150get_destination_insn(
INSN *iobj)
3156 list = lobj->link.next;
3158 switch (list->type) {
3159 case ISEQ_ELEMENT_INSN:
3160 case ISEQ_ELEMENT_ADJUST:
3162 case ISEQ_ELEMENT_LABEL:
3165 case ISEQ_ELEMENT_TRACE:
3168 events |= trace->event;
3176 if (list && IS_INSN(list)) {
3178 iobj->insn_info.events |= events;
3184get_next_insn(
INSN *iobj)
3189 if (IS_INSN(list) || IS_ADJUST(list)) {
3198get_prev_insn(
INSN *iobj)
3203 if (IS_INSN(list) || IS_ADJUST(list)) {
3212unref_destination(
INSN *iobj,
int pos)
3214 LABEL *lobj = (
LABEL *)OPERAND_AT(iobj, pos);
3216 if (!lobj->refcnt) ELEM_REMOVE(&lobj->link);
3220replace_destination(
INSN *dobj,
INSN *nobj)
3222 VALUE n = OPERAND_AT(nobj, 0);
3225 if (dl == nl)
return false;
3228 OPERAND_AT(dobj, 0) = n;
3229 if (!dl->refcnt) ELEM_REMOVE(&dl->link);
3234find_destination(
INSN *i)
3236 int pos,
len = insn_len(i->insn_id);
3237 for (pos = 0; pos <
len; ++pos) {
3238 if (insn_op_types(i->insn_id)[pos] == TS_OFFSET) {
3239 return (
LABEL *)OPERAND_AT(i, pos);
3248 LINK_ELEMENT *first = i, *end, *scan, *pending_end = 0;
3250 int *unref_counts = 0, nlabels = ISEQ_COMPILE_DATA(iseq)->label_no;
3253 unref_counts =
ALLOCA_N(
int, nlabels);
3254 MEMZERO(unref_counts,
int, nlabels);
3260 if (IS_INSN(scan)) {
3261 if (IS_INSN_ID(scan, leave)) {
3266 else if ((lab = find_destination((
INSN *)scan)) != 0) {
3267 unref_counts[lab->label_no]++;
3268 if (lab == pending && lab->refcnt <= unref_counts[lab->label_no]) {
3273 else if (IS_LABEL(scan)) {
3274 lab = (
LABEL *)scan;
3275 if (lab->unremovable) {
3279 if (lab->refcnt > unref_counts[lab->label_no]) {
3282 pending_end = (scan == first) ? 0 : end;
3286 else if (IS_ADJUST(scan)) {
3290 if (!pending) end = scan;
3291 }
while ((scan = scan->next) != 0);
3294 if (!pending_end)
return 0;
3301 VALUE insn = INSN_OF(i);
3302 int pos,
len = insn_len(insn);
3303 for (pos = 0; pos <
len; ++pos) {
3304 switch (insn_op_types(insn)[pos]) {
3306 unref_destination((
INSN *)i, pos);
3315 }
while ((i != end) && (i = i->next) != 0);
3322 switch (OPERAND_AT(iobj, 0)) {
3324 ELEM_REMOVE(&iobj->link);
3327 ELEM_REMOVE(&iobj->link);
3330 iobj->insn_id = BIN(adjuststack);
3336is_frozen_putstring(
INSN *insn,
VALUE *op)
3338 if (IS_INSN_ID(insn, dupstring) || IS_INSN_ID(insn, dupchilledstring)) {
3339 *op = OPERAND_AT(insn, 0);
3342 else if (IS_INSN_ID(insn, putobject)) {
3343 *op = OPERAND_AT(insn, 0);
3354 if (prev->type == ISEQ_ELEMENT_LABEL) {
3356 if (label->refcnt > 0) {
3360 else if (prev->type == ISEQ_ELEMENT_INSN) {
3393 INSN *niobj, *ciobj, *dup = 0;
3397 switch (INSN_OF(iobj)) {
3398 case BIN(dupstring):
3399 case BIN(dupchilledstring):
3405 case BIN(putobject):
3408 default:
return FALSE;
3411 ciobj = (
INSN *)get_next_insn(iobj);
3412 if (IS_INSN_ID(ciobj, jump)) {
3413 ciobj = (
INSN *)get_next_insn((
INSN*)OPERAND_AT(ciobj, 0));
3415 if (IS_INSN_ID(ciobj, dup)) {
3416 ciobj = (
INSN *)get_next_insn(dup = ciobj);
3418 if (!ciobj || !IS_INSN_ID(ciobj, checktype))
return FALSE;
3419 niobj = (
INSN *)get_next_insn(ciobj);
3424 switch (INSN_OF(niobj)) {
3426 if (OPERAND_AT(ciobj, 0) ==
type) {
3427 dest = (
LABEL *)OPERAND_AT(niobj, 0);
3430 case BIN(branchunless):
3431 if (OPERAND_AT(ciobj, 0) !=
type) {
3432 dest = (
LABEL *)OPERAND_AT(niobj, 0);
3438 line = ciobj->insn_info.line_no;
3439 node_id = ciobj->insn_info.node_id;
3441 if (niobj->link.next && IS_LABEL(niobj->link.next)) {
3442 dest = (
LABEL *)niobj->link.next;
3445 dest = NEW_LABEL(line);
3446 ELEM_INSERT_NEXT(&niobj->link, &dest->link);
3449 INSERT_AFTER_INSN1(iobj, line, node_id, jump, dest);
3451 if (!dup) INSERT_AFTER_INSN(iobj, line, node_id, pop);
3458 const struct rb_callinfo *nci = vm_ci_new(vm_ci_mid(ci),
3459 vm_ci_flag(ci) | add,
3469 const struct rb_callinfo *nci = vm_ci_new(vm_ci_mid(ci),
3477#define vm_ci_simple(ci) (vm_ci_flag(ci) & VM_CALL_ARGS_SIMPLE)
3480iseq_reg_compile(
rb_iseq_t *iseq,
VALUE str,
int options,
const char *sourcefile,
int sourceline)
3482 VALUE errinfo = rb_errinfo();
3483 VALUE re = rb_reg_compile(str, options, sourcefile, sourceline);
3485 VALUE message = rb_attr_get(rb_errinfo(), idMesg);
3486 rb_set_errinfo(errinfo);
3487 COMPILE_ERROR(iseq, sourceline,
"%" PRIsVALUE, message);
3501 optimize_checktype(iseq, iobj);
3503 if (IS_INSN_ID(iobj, jump)) {
3504 INSN *niobj, *diobj, *piobj;
3505 diobj = (
INSN *)get_destination_insn(iobj);
3506 niobj = (
INSN *)get_next_insn(iobj);
3508 if (diobj == niobj) {
3515 unref_destination(iobj, 0);
3516 ELEM_REMOVE(&iobj->link);
3519 else if (iobj != diobj && IS_INSN(&diobj->link) &&
3520 IS_INSN_ID(diobj, jump) &&
3521 OPERAND_AT(iobj, 0) != OPERAND_AT(diobj, 0) &&
3522 diobj->insn_info.events == 0) {
3533 if (replace_destination(iobj, diobj)) {
3534 remove_unreachable_chunk(iseq, iobj->link.next);
3538 else if (IS_INSN_ID(diobj, leave)) {
3551 unref_destination(iobj, 0);
3552 iobj->insn_id = BIN(leave);
3553 iobj->operand_size = 0;
3554 iobj->insn_info = diobj->insn_info;
3557 else if (IS_INSN(iobj->link.prev) &&
3558 (piobj = (
INSN *)iobj->link.prev) &&
3559 (IS_INSN_ID(piobj, branchif) ||
3560 IS_INSN_ID(piobj, branchunless))) {
3561 INSN *pdiobj = (
INSN *)get_destination_insn(piobj);
3562 if (niobj == pdiobj) {
3563 int refcnt = IS_LABEL(piobj->link.next) ?
3564 ((
LABEL *)piobj->link.next)->refcnt : 0;
3579 piobj->insn_id = (IS_INSN_ID(piobj, branchif))
3580 ? BIN(branchunless) : BIN(branchif);
3581 if (replace_destination(piobj, iobj) && refcnt <= 1) {
3582 ELEM_REMOVE(&iobj->link);
3589 else if (diobj == pdiobj) {
3603 INSN *popiobj = new_insn_core(iseq, iobj->insn_info.line_no, iobj->insn_info.node_id, BIN(pop), 0, 0);
3604 ELEM_REPLACE(&piobj->link, &popiobj->link);
3607 if (remove_unreachable_chunk(iseq, iobj->link.next)) {
3621 if (IS_INSN_ID(iobj, newrange)) {
3622 INSN *
const range = iobj;
3624 VALUE str_beg, str_end;
3626 if ((end = (
INSN *)get_prev_insn(range)) != 0 &&
3627 is_frozen_putstring(end, &str_end) &&
3628 (beg = (
INSN *)get_prev_insn(end)) != 0 &&
3629 is_frozen_putstring(beg, &str_beg) &&
3630 !(insn_has_label_before(&beg->link) || insn_has_label_before(&end->link))) {
3631 int excl =
FIX2INT(OPERAND_AT(range, 0));
3634 ELEM_REMOVE(&beg->link);
3635 ELEM_REMOVE(&end->link);
3636 range->insn_id = BIN(putobject);
3637 OPERAND_AT(range, 0) = lit_range;
3642 if (IS_INSN_ID(iobj, leave)) {
3643 remove_unreachable_chunk(iseq, iobj->link.next);
3655 if (IS_INSN_ID(iobj, duparray)) {
3657 if (IS_INSN(next) && (IS_INSN_ID(next, concatarray) || IS_INSN_ID(next, concattoarray))) {
3658 iobj->insn_id = BIN(putobject);
3668 if (IS_INSN_ID(iobj, duparray)) {
3670 if (IS_INSN(next) && (IS_INSN_ID(next, send))) {
3674 if (vm_ci_simple(ci) && vm_ci_argc(ci) == 0 && blockiseq == NULL && vm_ci_mid(ci) == idFreeze) {
3675 VALUE ary = iobj->operands[0];
3678 insn_replace_with_operands(iseq, iobj, BIN(opt_ary_freeze), 2, ary, (
VALUE)ci);
3690 if (IS_INSN_ID(iobj, duphash)) {
3692 if (IS_INSN(next) && (IS_INSN_ID(next, send))) {
3696 if (vm_ci_simple(ci) && vm_ci_argc(ci) == 0 && blockiseq == NULL && vm_ci_mid(ci) == idFreeze) {
3697 VALUE hash = iobj->operands[0];
3701 insn_replace_with_operands(iseq, iobj, BIN(opt_hash_freeze), 2, hash, (
VALUE)ci);
3713 if (IS_INSN_ID(iobj, newarray) && iobj->operands[0] ==
INT2FIX(0)) {
3715 if (IS_INSN(next) && (IS_INSN_ID(next, send))) {
3719 if (vm_ci_simple(ci) && vm_ci_argc(ci) == 0 && blockiseq == NULL && vm_ci_mid(ci) == idFreeze) {
3720 insn_replace_with_operands(iseq, iobj, BIN(opt_ary_freeze), 2, rb_cArray_empty_frozen, (
VALUE)ci);
3732 if (IS_INSN_ID(iobj, newhash) && iobj->operands[0] ==
INT2FIX(0)) {
3734 if (IS_INSN(next) && (IS_INSN_ID(next, send))) {
3738 if (vm_ci_simple(ci) && vm_ci_argc(ci) == 0 && blockiseq == NULL && vm_ci_mid(ci) == idFreeze) {
3739 insn_replace_with_operands(iseq, iobj, BIN(opt_hash_freeze), 2, rb_cHash_empty_frozen, (
VALUE)ci);
3745 if (IS_INSN_ID(iobj, branchif) ||
3746 IS_INSN_ID(iobj, branchnil) ||
3747 IS_INSN_ID(iobj, branchunless)) {
3756 INSN *nobj = (
INSN *)get_destination_insn(iobj);
3771 int stop_optimization =
3772 nobj->link.type == ISEQ_ELEMENT_INSN &&
3773 (nobj->insn_info.events & (
RUBY_EVENT_LINE | RUBY_EVENT_COVERAGE_LINE));
3774 if (!stop_optimization) {
3775 INSN *pobj = (
INSN *)iobj->link.prev;
3778 if (!IS_INSN(&pobj->link))
3780 else if (IS_INSN_ID(pobj, dup))
3785 if (IS_INSN(&nobj->link) && IS_INSN_ID(nobj, jump)) {
3786 if (!replace_destination(iobj, nobj))
break;
3788 else if (prev_dup && IS_INSN(&nobj->link) && IS_INSN_ID(nobj, dup) &&
3789 !!(nobj = (
INSN *)nobj->link.next) &&
3790 IS_INSN(&nobj->link) &&
3792 nobj->insn_id == iobj->insn_id) {
3808 if (!replace_destination(iobj, nobj))
break;
3836 if (prev_dup && IS_INSN(pobj->link.prev)) {
3837 pobj = (
INSN *)pobj->link.prev;
3839 if (IS_INSN_ID(pobj, putobject)) {
3840 cond = (IS_INSN_ID(iobj, branchif) ?
3841 OPERAND_AT(pobj, 0) !=
Qfalse :
3842 IS_INSN_ID(iobj, branchunless) ?
3843 OPERAND_AT(pobj, 0) ==
Qfalse :
3846 else if (IS_INSN_ID(pobj, dupstring) ||
3847 IS_INSN_ID(pobj, duparray) ||
3848 IS_INSN_ID(pobj, newarray)) {
3849 cond = IS_INSN_ID(iobj, branchif);
3851 else if (IS_INSN_ID(pobj, putnil)) {
3852 cond = !IS_INSN_ID(iobj, branchif);
3855 if (prev_dup || !IS_INSN_ID(pobj, newarray)) {
3856 ELEM_REMOVE(iobj->link.prev);
3858 else if (!iseq_pop_newarray(iseq, pobj)) {
3859 pobj = new_insn_core(iseq, pobj->insn_info.line_no, pobj->insn_info.node_id, BIN(pop), 0, NULL);
3860 ELEM_INSERT_PREV(&iobj->link, &pobj->link);
3864 pobj = new_insn_core(iseq, pobj->insn_info.line_no, pobj->insn_info.node_id, BIN(putnil), 0, NULL);
3865 ELEM_INSERT_NEXT(&iobj->link, &pobj->link);
3867 iobj->insn_id = BIN(jump);
3871 unref_destination(iobj, 0);
3872 ELEM_REMOVE(&iobj->link);
3879 if (!dest || !IS_INSN(dest))
break;
3880 nobj = (
INSN *)dest;
3886 if (IS_INSN_ID(iobj, pop)) {
3894 if (IS_INSN(prev)) {
3895 enum ruby_vminsn_type previ = ((
INSN *)prev)->insn_id;
3896 if (previ == BIN(putobject) || previ == BIN(putnil) ||
3897 previ == BIN(putself) || previ == BIN(dupstring) ||
3898 previ == BIN(dupchilledstring) ||
3899 previ == BIN(dup) ||
3900 previ == BIN(getlocal) ||
3901 previ == BIN(getblockparam) ||
3902 previ == BIN(getblockparamproxy) ||
3903 previ == BIN(getinstancevariable) ||
3904 previ == BIN(duparray)) {
3908 ELEM_REMOVE(&iobj->link);
3910 else if (previ == BIN(newarray) && iseq_pop_newarray(iseq, (
INSN*)prev)) {
3911 ELEM_REMOVE(&iobj->link);
3913 else if (previ == BIN(concatarray)) {
3915 INSERT_BEFORE_INSN1(piobj, piobj->insn_info.line_no, piobj->insn_info.node_id, splatarray,
Qfalse);
3916 INSN_OF(piobj) = BIN(pop);
3918 else if (previ == BIN(concatstrings)) {
3919 if (OPERAND_AT(prev, 0) ==
INT2FIX(1)) {
3923 ELEM_REMOVE(&iobj->link);
3924 INSN_OF(prev) = BIN(adjuststack);
3930 if (IS_INSN_ID(iobj, newarray) ||
3931 IS_INSN_ID(iobj, duparray) ||
3932 IS_INSN_ID(iobj, concatarray) ||
3933 IS_INSN_ID(iobj, splatarray) ||
3943 if (IS_INSN(next) && IS_INSN_ID(next, splatarray)) {
3949 if (IS_INSN_ID(iobj, newarray)) {
3951 if (IS_INSN(next) && IS_INSN_ID(next, expandarray) &&
3952 OPERAND_AT(next, 1) ==
INT2FIX(0)) {
3954 op1 = OPERAND_AT(iobj, 0);
3955 op2 = OPERAND_AT(next, 0);
3966 INSN_OF(iobj) = BIN(swap);
3967 iobj->operand_size = 0;
3976 INSN_OF(iobj) = BIN(opt_reverse);
3981 INSN_OF(iobj) = BIN(opt_reverse);
3982 OPERAND_AT(iobj, 0) = OPERAND_AT(next, 0);
3992 for (; diff > 0; diff--) {
3993 INSERT_BEFORE_INSN(iobj, iobj->insn_info.line_no, iobj->insn_info.node_id, pop);
4004 for (; diff < 0; diff++) {
4005 INSERT_BEFORE_INSN(iobj, iobj->insn_info.line_no, iobj->insn_info.node_id, putnil);
4012 if (IS_INSN_ID(iobj, duparray)) {
4021 if (IS_INSN(next) && IS_INSN_ID(next, expandarray)) {
4022 INSN_OF(iobj) = BIN(putobject);
4026 if (IS_INSN_ID(iobj, anytostring)) {
4034 if (IS_INSN(next) && IS_INSN_ID(next, concatstrings) &&
4035 OPERAND_AT(next, 0) ==
INT2FIX(1)) {
4040 if (IS_INSN_ID(iobj, dupstring) || IS_INSN_ID(iobj, dupchilledstring) ||
4048 if (IS_NEXT_INSN_ID(&iobj->link, concatstrings) &&
4049 RSTRING_LEN(OPERAND_AT(iobj, 0)) == 0) {
4050 INSN *next = (
INSN *)iobj->link.next;
4051 if ((OPERAND_AT(next, 0) = FIXNUM_INC(OPERAND_AT(next, 0), -1)) ==
INT2FIX(1)) {
4052 ELEM_REMOVE(&next->link);
4054 ELEM_REMOVE(&iobj->link);
4056 if (IS_NEXT_INSN_ID(&iobj->link, toregexp)) {
4057 INSN *next = (
INSN *)iobj->link.next;
4058 if (OPERAND_AT(next, 1) ==
INT2FIX(1)) {
4059 VALUE src = OPERAND_AT(iobj, 0);
4060 int opt = (int)
FIX2LONG(OPERAND_AT(next, 0));
4061 VALUE path = rb_iseq_path(iseq);
4062 int line = iobj->insn_info.line_no;
4063 VALUE re = iseq_reg_compile(iseq, src, opt, RSTRING_PTR(path), line);
4068 iobj->insn_id = BIN(putobject);
4070 ELEM_REMOVE(iobj->link.next);
4075 if (IS_INSN_ID(iobj, concatstrings)) {
4084 if (IS_INSN(next) && IS_INSN_ID(next, jump))
4085 next = get_destination_insn(jump = (
INSN *)next);
4086 if (IS_INSN(next) && IS_INSN_ID(next, concatstrings)) {
4087 int n =
FIX2INT(OPERAND_AT(iobj, 0)) +
FIX2INT(OPERAND_AT(next, 0)) - 1;
4088 OPERAND_AT(iobj, 0) =
INT2FIX(n);
4090 LABEL *label = ((
LABEL *)OPERAND_AT(jump, 0));
4091 if (!--label->refcnt) {
4092 ELEM_REMOVE(&label->link);
4095 label = NEW_LABEL(0);
4096 OPERAND_AT(jump, 0) = (
VALUE)label;
4099 ELEM_INSERT_NEXT(next, &label->link);
4100 CHECK(iseq_peephole_optimize(iseq, get_next_insn(jump), do_tailcallopt));
4108 if (do_tailcallopt &&
4109 (IS_INSN_ID(iobj, send) ||
4110 IS_INSN_ID(iobj, invokesuper))) {
4119 if (iobj->link.next) {
4122 if (!IS_INSN(next)) {
4126 switch (INSN_OF(next)) {
4135 next = get_destination_insn((
INSN *)next);
4149 if (IS_INSN_ID(piobj, send) ||
4150 IS_INSN_ID(piobj, invokesuper)) {
4151 if (OPERAND_AT(piobj, 1) == 0) {
4152 ci = ci_flag_set(iseq, ci, VM_CALL_TAILCALL);
4153 OPERAND_AT(piobj, 0) = (
VALUE)ci;
4158 ci = ci_flag_set(iseq, ci, VM_CALL_TAILCALL);
4159 OPERAND_AT(piobj, 0) = (
VALUE)ci;
4165 if (IS_INSN_ID(iobj, dup)) {
4166 if (IS_NEXT_INSN_ID(&iobj->link, setlocal)) {
4177 if (IS_NEXT_INSN_ID(set1, setlocal)) {
4179 if (OPERAND_AT(set1, 0) == OPERAND_AT(set2, 0) &&
4180 OPERAND_AT(set1, 1) == OPERAND_AT(set2, 1)) {
4182 ELEM_REMOVE(&iobj->link);
4195 else if (IS_NEXT_INSN_ID(set1, dup) &&
4196 IS_NEXT_INSN_ID(set1->next, setlocal)) {
4197 set2 = set1->next->next;
4198 if (OPERAND_AT(set1, 0) == OPERAND_AT(set2, 0) &&
4199 OPERAND_AT(set1, 1) == OPERAND_AT(set2, 1)) {
4200 ELEM_REMOVE(set1->next);
4214 if (IS_INSN_ID(iobj, getlocal)) {
4216 if (IS_NEXT_INSN_ID(niobj, dup)) {
4217 niobj = niobj->next;
4219 if (IS_NEXT_INSN_ID(niobj, setlocal)) {
4221 if (OPERAND_AT(iobj, 0) == OPERAND_AT(set1, 0) &&
4222 OPERAND_AT(iobj, 1) == OPERAND_AT(set1, 1)) {
4238 if (IS_INSN_ID(iobj, opt_invokebuiltin_delegate)) {
4239 if (IS_TRACE(iobj->link.next)) {
4240 if (IS_NEXT_INSN_ID(iobj->link.next, leave)) {
4241 iobj->insn_id = BIN(opt_invokebuiltin_delegate_leave);
4243 if (iobj == (
INSN *)list && bf->argc == 0 && (ISEQ_BODY(iseq)->builtin_attrs & BUILTIN_ATTR_LEAF)) {
4244 ISEQ_BODY(iseq)->builtin_attrs |= BUILTIN_ATTR_SINGLE_NOARG_LEAF;
4257 if (IS_INSN_ID(iobj, getblockparam)) {
4258 if (IS_NEXT_INSN_ID(&iobj->link, branchif) || IS_NEXT_INSN_ID(&iobj->link, branchunless)) {
4259 iobj->insn_id = BIN(getblockparamproxy);
4263 if (IS_INSN_ID(iobj, splatarray) && OPERAND_AT(iobj, 0) ==
false) {
4265 if (IS_NEXT_INSN_ID(niobj, duphash)) {
4266 niobj = niobj->next;
4268 unsigned int set_flags = 0, unset_flags = 0;
4281 if (IS_NEXT_INSN_ID(niobj, send)) {
4282 siobj = niobj->next;
4283 set_flags = VM_CALL_ARGS_SPLAT|VM_CALL_KW_SPLAT|VM_CALL_KW_SPLAT_MUT;
4284 unset_flags = VM_CALL_ARGS_BLOCKARG;
4299 else if ((IS_NEXT_INSN_ID(niobj, getlocal) || IS_NEXT_INSN_ID(niobj, getinstancevariable) ||
4300 IS_NEXT_INSN_ID(niobj, getblockparamproxy)) && (IS_NEXT_INSN_ID(niobj->next, send))) {
4301 siobj = niobj->next->next;
4302 set_flags = VM_CALL_ARGS_SPLAT|VM_CALL_KW_SPLAT|VM_CALL_KW_SPLAT_MUT|VM_CALL_ARGS_BLOCKARG;
4307 unsigned int flags = vm_ci_flag(ci);
4308 if ((flags & set_flags) == set_flags && !(flags & unset_flags)) {
4309 ((
INSN*)niobj)->insn_id = BIN(putobject);
4312 const struct rb_callinfo *nci = vm_ci_new(vm_ci_mid(ci),
4313 flags & ~VM_CALL_KW_SPLAT_MUT, vm_ci_argc(ci), vm_ci_kwarg(ci));
4315 OPERAND_AT(siobj, 0) = (
VALUE)nci;
4329 if (IS_NEXT_NEXT_INSN_ID(&iobj->link, swap)) {
4333 if (IS_INDEPENDENT_INSN(first) && IS_INDEPENDENT_INSN(second)) {
4335 ELEM_SWAP(first, second);
4343insn_set_specialized_instruction(
rb_iseq_t *iseq,
INSN *iobj,
int insn_id)
4345 if (insn_id == BIN(opt_neq)) {
4346 VALUE original_ci = iobj->operands[0];
4347 VALUE new_ci = (
VALUE)new_callinfo(iseq, idEq, 1, 0, NULL, FALSE);
4348 insn_replace_with_operands(iseq, iobj, insn_id, 2, new_ci, original_ci);
4351 iobj->insn_id = insn_id;
4352 iobj->operand_size = insn_len(insn_id) - 1;
4362 if (IS_INSN_ID(iobj, newarray) && iobj->link.next &&
4363 IS_INSN(iobj->link.next)) {
4367 INSN *niobj = (
INSN *)iobj->link.next;
4368 if (IS_INSN_ID(niobj, send)) {
4370 if (vm_ci_simple(ci) && vm_ci_argc(ci) == 0) {
4372 switch (vm_ci_mid(ci)) {
4374 method =
INT2FIX(VM_OPT_NEWARRAY_SEND_MAX);
4377 method =
INT2FIX(VM_OPT_NEWARRAY_SEND_MIN);
4380 method =
INT2FIX(VM_OPT_NEWARRAY_SEND_HASH);
4385 VALUE num = iobj->operands[0];
4386 insn_replace_with_operands(iseq, iobj, BIN(opt_newarray_send), 2, num, method);
4387 ELEM_REMOVE(&niobj->link);
4392 else if ((IS_INSN_ID(niobj, dupstring) || IS_INSN_ID(niobj, dupchilledstring) ||
4394 IS_NEXT_INSN_ID(&niobj->link, send)) {
4396 if (vm_ci_simple(ci) && vm_ci_argc(ci) == 1 && vm_ci_mid(ci) == idPack) {
4397 VALUE num = iobj->operands[0];
4398 insn_replace_with_operands(iseq, iobj, BIN(opt_newarray_send), 2, FIXNUM_INC(num, 1),
INT2FIX(VM_OPT_NEWARRAY_SEND_PACK));
4399 ELEM_REMOVE(&iobj->link);
4400 ELEM_REMOVE(niobj->link.next);
4401 ELEM_INSERT_NEXT(&niobj->link, &iobj->link);
4407 else if ((IS_INSN_ID(niobj, dupstring) || IS_INSN_ID(niobj, dupchilledstring) ||
4409 IS_NEXT_INSN_ID(&niobj->link, getlocal) &&
4410 (niobj->link.next && IS_NEXT_INSN_ID(niobj->link.next, send))) {
4413 if (vm_ci_mid(ci) == idPack && vm_ci_argc(ci) == 2 &&
4414 (kwarg && kwarg->keyword_len == 1 && kwarg->keywords[0] ==
rb_id2sym(idBuffer))) {
4415 VALUE num = iobj->operands[0];
4416 insn_replace_with_operands(iseq, iobj, BIN(opt_newarray_send), 2, FIXNUM_INC(num, 2),
INT2FIX(VM_OPT_NEWARRAY_SEND_PACK_BUFFER));
4418 ELEM_REMOVE((niobj->link.next)->next);
4420 ELEM_REMOVE(&iobj->link);
4422 ELEM_INSERT_NEXT(niobj->link.next, &iobj->link);
4430 if ((IS_INSN_ID(niobj, dupstring) || IS_INSN_ID(niobj, dupchilledstring) ||
4431 IS_INSN_ID(niobj, putobject) ||
4432 IS_INSN_ID(niobj, putself) ||
4433 IS_INSN_ID(niobj, getlocal) ||
4434 IS_INSN_ID(niobj, getinstancevariable)) &&
4435 IS_NEXT_INSN_ID(&niobj->link, send)) {
4442 sendobj = sendobj->next;
4443 ci = (
struct rb_callinfo *)OPERAND_AT(sendobj, 0);
4444 }
while (vm_ci_simple(ci) && vm_ci_argc(ci) == 0 && IS_NEXT_INSN_ID(sendobj, send));
4447 if (vm_ci_simple(ci) && vm_ci_argc(ci) == 1 && vm_ci_mid(ci) == idIncludeP) {
4448 VALUE num = iobj->operands[0];
4450 insn_replace_with_operands(iseq, sendins, BIN(opt_newarray_send), 2, FIXNUM_INC(num, 1),
INT2FIX(VM_OPT_NEWARRAY_SEND_INCLUDE_P));
4452 ELEM_REMOVE(&iobj->link);
4466 if (IS_INSN_ID(iobj, duparray) && iobj->link.next && IS_INSN(iobj->link.next)) {
4467 INSN *niobj = (
INSN *)iobj->link.next;
4468 if ((IS_INSN_ID(niobj, getlocal) ||
4469 IS_INSN_ID(niobj, getinstancevariable) ||
4470 IS_INSN_ID(niobj, putself) ||
4471 IS_INSN_ID(niobj, putobject) ||
4472 IS_INSN_ID(niobj, putnil)) &&
4473 IS_NEXT_INSN_ID(&niobj->link, send)) {
4480 sendobj = sendobj->next;
4481 ci = (
struct rb_callinfo *)OPERAND_AT(sendobj, 0);
4482 }
while (vm_ci_simple(ci) && vm_ci_argc(ci) == 0 && IS_NEXT_INSN_ID(sendobj, send));
4484 if (vm_ci_simple(ci) && vm_ci_argc(ci) == 1 && vm_ci_mid(ci) == idIncludeP) {
4486 VALUE ary = iobj->operands[0];
4490 insn_replace_with_operands(iseq, sendins, BIN(opt_duparray_send), 3, ary,
rb_id2sym(idIncludeP),
INT2FIX(1));
4493 ELEM_REMOVE(&iobj->link);
4500 if (IS_INSN_ID(iobj, send)) {
4504#define SP_INSN(opt) insn_set_specialized_instruction(iseq, iobj, BIN(opt_##opt))
4505 if (vm_ci_simple(ci)) {
4506 switch (vm_ci_argc(ci)) {
4508 switch (vm_ci_mid(ci)) {
4509 case idLength: SP_INSN(length);
return COMPILE_OK;
4510 case idSize: SP_INSN(size);
return COMPILE_OK;
4511 case idEmptyP: SP_INSN(empty_p);
return COMPILE_OK;
4512 case idNilP: SP_INSN(nil_p);
return COMPILE_OK;
4513 case idSucc: SP_INSN(succ);
return COMPILE_OK;
4514 case idNot: SP_INSN(not);
return COMPILE_OK;
4518 switch (vm_ci_mid(ci)) {
4519 case idPLUS: SP_INSN(plus);
return COMPILE_OK;
4520 case idMINUS: SP_INSN(minus);
return COMPILE_OK;
4521 case idMULT: SP_INSN(mult);
return COMPILE_OK;
4522 case idDIV: SP_INSN(div);
return COMPILE_OK;
4523 case idMOD: SP_INSN(mod);
return COMPILE_OK;
4524 case idEq: SP_INSN(eq);
return COMPILE_OK;
4525 case idNeq: SP_INSN(neq);
return COMPILE_OK;
4526 case idEqTilde:SP_INSN(regexpmatch2);
return COMPILE_OK;
4527 case idLT: SP_INSN(lt);
return COMPILE_OK;
4528 case idLE: SP_INSN(le);
return COMPILE_OK;
4529 case idGT: SP_INSN(gt);
return COMPILE_OK;
4530 case idGE: SP_INSN(ge);
return COMPILE_OK;
4531 case idLTLT: SP_INSN(ltlt);
return COMPILE_OK;
4532 case idAREF: SP_INSN(aref);
return COMPILE_OK;
4533 case idAnd: SP_INSN(and);
return COMPILE_OK;
4534 case idOr: SP_INSN(or);
return COMPILE_OK;
4538 switch (vm_ci_mid(ci)) {
4539 case idASET: SP_INSN(aset);
return COMPILE_OK;
4545 if ((vm_ci_flag(ci) & (VM_CALL_ARGS_BLOCKARG | VM_CALL_FORWARDING)) == 0 && blockiseq == NULL) {
4546 iobj->insn_id = BIN(opt_send_without_block);
4547 iobj->operand_size = insn_len(iobj->insn_id) - 1;
4558 switch (ISEQ_BODY(iseq)->
type) {
4560 case ISEQ_TYPE_EVAL:
4561 case ISEQ_TYPE_MAIN:
4563 case ISEQ_TYPE_RESCUE:
4564 case ISEQ_TYPE_ENSURE:
4576 const int do_peepholeopt = ISEQ_COMPILE_DATA(iseq)->option->peephole_optimization;
4577 const int do_tailcallopt = tailcallable_p(iseq) &&
4578 ISEQ_COMPILE_DATA(iseq)->option->tailcall_optimization;
4579 const int do_si = ISEQ_COMPILE_DATA(iseq)->option->specialized_instruction;
4580 const int do_ou = ISEQ_COMPILE_DATA(iseq)->option->operands_unification;
4581 const int do_without_ints = ISEQ_BODY(iseq)->builtin_attrs & BUILTIN_ATTR_WITHOUT_INTERRUPTS;
4582 int rescue_level = 0;
4583 int tailcallopt = do_tailcallopt;
4585 list = FIRST_ELEMENT(anchor);
4587 int do_block_optimization = 0;
4588 LABEL * block_loop_label = NULL;
4591 if (ISEQ_BODY(iseq)->
type == ISEQ_TYPE_BLOCK) {
4592 do_block_optimization = 1;
4597 if (IS_INSN(le) && IS_INSN_ID((
INSN *)le, nop) && IS_LABEL(le->next)) {
4598 block_loop_label = (
LABEL *)le->next;
4603 if (IS_INSN(list)) {
4604 if (do_peepholeopt) {
4605 iseq_peephole_optimize(iseq, list, tailcallopt);
4608 iseq_specialized_instruction(iseq, (
INSN *)list);
4611 insn_operands_unification((
INSN *)list);
4614 if (do_without_ints) {
4616 if (IS_INSN_ID(item, jump)) {
4617 item->insn_id = BIN(jump_without_ints);
4619 else if (IS_INSN_ID(item, branchif)) {
4620 item->insn_id = BIN(branchif_without_ints);
4622 else if (IS_INSN_ID(item, branchunless)) {
4623 item->insn_id = BIN(branchunless_without_ints);
4625 else if (IS_INSN_ID(item, branchnil)) {
4626 item->insn_id = BIN(branchnil_without_ints);
4630 if (do_block_optimization) {
4633 if (IS_INSN_ID(item,
throw)) {
4634 do_block_optimization = 0;
4639 const char *types = insn_op_types(item->insn_id);
4640 for (
int j = 0; types[j]; j++) {
4641 if (types[j] == TS_OFFSET) {
4646 LABEL * target = (
LABEL *)OPERAND_AT(item, j);
4647 if (target == block_loop_label) {
4648 do_block_optimization = 0;
4655 if (IS_LABEL(list)) {
4656 switch (((
LABEL *)list)->rescued) {
4657 case LABEL_RESCUE_BEG:
4659 tailcallopt = FALSE;
4661 case LABEL_RESCUE_END:
4662 if (!--rescue_level) tailcallopt = do_tailcallopt;
4669 if (do_block_optimization) {
4671 if (IS_INSN(le) && IS_INSN_ID((
INSN *)le, nop)) {
4678#if OPT_INSTRUCTIONS_UNIFICATION
4686 VALUE *operands = 0, *ptr = 0;
4690 for (i = 0; i < size; i++) {
4691 iobj = (
INSN *)list;
4692 argc += iobj->operand_size;
4697 ptr = operands = compile_data_alloc2_type(iseq,
VALUE, argc);
4702 for (i = 0; i < size; i++) {
4703 iobj = (
INSN *)list;
4704 MEMCPY(ptr, iobj->operands,
VALUE, iobj->operand_size);
4705 ptr += iobj->operand_size;
4709 return new_insn_core(iseq, iobj->insn_info.line_no, iobj->insn_info.node_id, insn_id, argc, operands);
4721#if OPT_INSTRUCTIONS_UNIFICATION
4727 list = FIRST_ELEMENT(anchor);
4729 if (IS_INSN(list)) {
4730 iobj = (
INSN *)list;
4732 if (unified_insns_data[
id] != 0) {
4733 const int *
const *entry = unified_insns_data[id];
4734 for (j = 1; j < (intptr_t)entry[0]; j++) {
4735 const int *unified = entry[j];
4737 for (k = 2; k < unified[1]; k++) {
4739 ((
INSN *)li)->insn_id != unified[k]) {
4746 new_unified_insn(iseq, unified[0], unified[1] - 1,
4751 niobj->link.next = li;
4770all_string_result_p(
const NODE *node)
4772 if (!node)
return FALSE;
4773 switch (nd_type(node)) {
4774 case NODE_STR:
case NODE_DSTR:
case NODE_FILE:
4776 case NODE_IF:
case NODE_UNLESS:
4777 if (!RNODE_IF(node)->nd_body || !RNODE_IF(node)->nd_else)
return FALSE;
4778 if (all_string_result_p(RNODE_IF(node)->nd_body))
4779 return all_string_result_p(RNODE_IF(node)->nd_else);
4781 case NODE_AND:
case NODE_OR:
4782 if (!RNODE_AND(node)->nd_2nd)
4783 return all_string_result_p(RNODE_AND(node)->nd_1st);
4784 if (!all_string_result_p(RNODE_AND(node)->nd_1st))
4786 return all_string_result_p(RNODE_AND(node)->nd_2nd);
4796 const NODE *lit_node;
4804 VALUE s = rb_str_new_mutable_parser_string(str);
4806 VALUE error = rb_reg_check_preprocess(s);
4807 if (!
NIL_P(error)) {
4808 COMPILE_ERROR(args->iseq, nd_line(node),
"%" PRIsVALUE, error);
4812 if (
NIL_P(args->lit)) {
4814 args->lit_node = node;
4823flush_dstr_fragment(
struct dstr_ctxt *args)
4825 if (!
NIL_P(args->lit)) {
4827 VALUE lit = args->lit;
4829 lit = rb_fstring(lit);
4830 ADD_INSN1(args->ret, args->lit_node, putobject, lit);
4837compile_dstr_fragments_0(
struct dstr_ctxt *args,
const NODE *
const node)
4839 const struct RNode_LIST *list = RNODE_DSTR(node)->nd_next;
4843 CHECK(append_dstr_fragment(args, node, str));
4847 const NODE *
const head = list->nd_head;
4848 if (nd_type_p(head, NODE_STR)) {
4849 CHECK(append_dstr_fragment(args, node, RNODE_STR(head)->
string));
4851 else if (nd_type_p(head, NODE_DSTR)) {
4852 CHECK(compile_dstr_fragments_0(args, head));
4855 flush_dstr_fragment(args);
4857 CHECK(COMPILE(args->ret,
"each string", head));
4869 .iseq = iseq, .ret = ret,
4870 .lit =
Qnil, .lit_node = NULL,
4871 .cnt = 0, .dregx = dregx,
4873 CHECK(compile_dstr_fragments_0(&args, node));
4874 flush_dstr_fragment(&args);
4884 while (node && nd_type_p(node, NODE_BLOCK)) {
4885 CHECK(COMPILE_(ret,
"BLOCK body", RNODE_BLOCK(node)->nd_head,
4886 (RNODE_BLOCK(node)->nd_next ? 1 : popped)));
4887 node = RNODE_BLOCK(node)->nd_next;
4890 CHECK(COMPILE_(ret,
"BLOCK next", RNODE_BLOCK(node)->nd_next, popped));
4899 if (!RNODE_DSTR(node)->nd_next) {
4900 VALUE lit = rb_node_dstr_string_val(node);
4901 ADD_INSN1(ret, node, dupstring, lit);
4906 CHECK(compile_dstr_fragments(iseq, ret, node, &cnt, FALSE));
4907 ADD_INSN1(ret, node, concatstrings,
INT2FIX(cnt));
4916 int cflag = (int)RNODE_DREGX(node)->as.nd_cflag;
4918 if (!RNODE_DREGX(node)->nd_next) {
4920 VALUE src = rb_node_dregx_string_val(node);
4921 VALUE match = iseq_reg_compile(iseq, src, cflag, NULL, 0);
4922 ADD_INSN1(ret, node, putobject, match);
4928 CHECK(compile_dstr_fragments(iseq, ret, node, &cnt, TRUE));
4932 ADD_INSN(ret, node, pop);
4942 const int line = nd_line(node);
4943 LABEL *lend = NEW_LABEL(line);
4944 rb_num_t cnt = ISEQ_FLIP_CNT_INCREMENT(ISEQ_BODY(iseq)->local_iseq)
4945 + VM_SVAR_FLIPFLOP_START;
4948 ADD_INSN2(ret, node, getspecial, key,
INT2FIX(0));
4949 ADD_INSNL(ret, node, branchif, lend);
4952 CHECK(COMPILE(ret,
"flip2 beg", RNODE_FLIP2(node)->nd_beg));
4953 ADD_INSNL(ret, node, branchunless, else_label);
4954 ADD_INSN1(ret, node, putobject,
Qtrue);
4955 ADD_INSN1(ret, node, setspecial, key);
4957 ADD_INSNL(ret, node, jump, then_label);
4961 ADD_LABEL(ret, lend);
4962 CHECK(COMPILE(ret,
"flip2 end", RNODE_FLIP2(node)->nd_end));
4963 ADD_INSNL(ret, node, branchunless, then_label);
4964 ADD_INSN1(ret, node, putobject,
Qfalse);
4965 ADD_INSN1(ret, node, setspecial, key);
4966 ADD_INSNL(ret, node, jump, then_label);
4975#define COMPILE_SINGLE 2
4982 LABEL *label = NEW_LABEL(nd_line(cond));
4983 if (!then_label) then_label = label;
4984 else if (!else_label) else_label = label;
4986 CHECK(compile_branch_condition(iseq, seq, cond, then_label, else_label));
4988 if (LIST_INSN_SIZE_ONE(seq)) {
4989 INSN *insn = (
INSN *)ELEM_FIRST_INSN(FIRST_ELEMENT(seq));
4990 if (insn->insn_id == BIN(jump) && (
LABEL *)(insn->operands[0]) == label)
4993 if (!label->refcnt) {
4994 return COMPILE_SINGLE;
4996 ADD_LABEL(seq, label);
5006 DECL_ANCHOR(ignore);
5009 switch (nd_type(cond)) {
5011 CHECK(ok = compile_logical(iseq, ret, RNODE_AND(cond)->nd_1st, NULL, else_label));
5012 cond = RNODE_AND(cond)->nd_2nd;
5013 if (ok == COMPILE_SINGLE) {
5014 ADD_INSNL(ret, cond, jump, else_label);
5015 INIT_ANCHOR(ignore);
5017 then_label = NEW_LABEL(nd_line(cond));
5021 CHECK(ok = compile_logical(iseq, ret, RNODE_OR(cond)->nd_1st, then_label, NULL));
5022 cond = RNODE_OR(cond)->nd_2nd;
5023 if (ok == COMPILE_SINGLE) {
5024 ADD_INSNL(ret, cond, jump, then_label);
5025 INIT_ANCHOR(ignore);
5027 else_label = NEW_LABEL(nd_line(cond));
5037 case NODE_IMAGINARY:
5044 ADD_INSNL(ret, cond, jump, then_label);
5049 ADD_INSNL(ret, cond, jump, else_label);
5055 CHECK(COMPILE_POPPED(ret,
"branch condition", cond));
5056 ADD_INSNL(ret, cond, jump, then_label);
5059 CHECK(compile_flip_flop(iseq, ret, cond, TRUE, then_label, else_label));
5062 CHECK(compile_flip_flop(iseq, ret, cond, FALSE, then_label, else_label));
5065 CHECK(compile_defined_expr(iseq, ret, cond,
Qfalse, ret == ignore));
5069 DECL_ANCHOR(cond_seq);
5070 INIT_ANCHOR(cond_seq);
5072 CHECK(COMPILE(cond_seq,
"branch condition", cond));
5074 if (LIST_INSN_SIZE_ONE(cond_seq)) {
5075 INSN *insn = (
INSN *)ELEM_FIRST_INSN(FIRST_ELEMENT(cond_seq));
5076 if (insn->insn_id == BIN(putobject)) {
5077 if (
RTEST(insn->operands[0])) {
5078 ADD_INSNL(ret, cond, jump, then_label);
5083 ADD_INSNL(ret, cond, jump, else_label);
5088 ADD_SEQ(ret, cond_seq);
5093 ADD_INSNL(ret, cond, branchunless, else_label);
5094 ADD_INSNL(ret, cond, jump, then_label);
5101keyword_node_p(
const NODE *
const node)
5103 return nd_type_p(node, NODE_HASH) && (RNODE_HASH(node)->nd_brace & HASH_BRACE) != HASH_BRACE;
5109 switch (nd_type(node)) {
5111 return rb_node_sym_string_val(node);
5113 UNKNOWN_NODE(
"get_symbol_value", node,
Qnil);
5120 NODE *node = node_hash->nd_head;
5121 VALUE hash = rb_hash_new();
5124 for (
int i = 0; node != NULL; i++, node = RNODE_LIST(RNODE_LIST(node)->nd_next)->nd_next) {
5125 VALUE key = get_symbol_value(iseq, RNODE_LIST(node)->nd_head);
5126 VALUE idx = rb_hash_aref(hash, key);
5131 rb_hash_aset(hash, key,
INT2FIX(i));
5141 const NODE *
const root_node,
5149 if (RNODE_HASH(root_node)->nd_head && nd_type_p(RNODE_HASH(root_node)->nd_head, NODE_LIST)) {
5150 const NODE *node = RNODE_HASH(root_node)->nd_head;
5154 const NODE *key_node = RNODE_LIST(node)->nd_head;
5158 if (key_node && nd_type_p(key_node, NODE_SYM)) {
5163 *flag |= VM_CALL_KW_SPLAT;
5164 if (seen_nodes > 1 || RNODE_LIST(RNODE_LIST(node)->nd_next)->nd_next) {
5169 *flag |= VM_CALL_KW_SPLAT_MUT;
5174 node = RNODE_LIST(node)->nd_next;
5175 node = RNODE_LIST(node)->nd_next;
5179 node = RNODE_HASH(root_node)->nd_head;
5182 VALUE key_index = node_hash_unique_key_index(iseq, RNODE_HASH(root_node), &
len);
5184 if (
len > VM_CALL_KW_LEN_MAX) {
5185 COMPILE_ERROR(ERROR_ARGS_AT(root_node)
"too many keyword arguments (%d, maximum is %d)",
5186 len, (
int)VM_CALL_KW_LEN_MAX);
5191 VALUE *keywords = kw_arg->keywords;
5194 kw_arg->references = 0;
5195 kw_arg->keyword_len =
len;
5197 *kw_arg_ptr = kw_arg;
5199 for (i=0; node != NULL; i++, node = RNODE_LIST(RNODE_LIST(node)->nd_next)->nd_next) {
5200 const NODE *key_node = RNODE_LIST(node)->nd_head;
5201 const NODE *val_node = RNODE_LIST(RNODE_LIST(node)->nd_next)->nd_head;
5204 keywords[j] = get_symbol_value(iseq, key_node);
5208 NO_CHECK(COMPILE_(ret,
"keyword values", val_node, popped));
5222 for (; node;
len++, node = RNODE_LIST(node)->nd_next) {
5224 EXPECT_NODE(
"compile_args", node, NODE_LIST, -1);
5227 if (RNODE_LIST(node)->nd_next == NULL && keyword_node_p(RNODE_LIST(node)->nd_head)) {
5228 *kwnode_ptr = RNODE_LIST(node)->nd_head;
5231 RUBY_ASSERT(!keyword_node_p(RNODE_LIST(node)->nd_head));
5232 NO_CHECK(COMPILE_(ret,
"array element", RNODE_LIST(node)->nd_head, FALSE));
5240frozen_string_literal_p(
const rb_iseq_t *iseq)
5242 return ISEQ_COMPILE_DATA(iseq)->option->frozen_string_literal > 0;
5246static_literal_node_p(
const NODE *node,
const rb_iseq_t *iseq,
bool hash_key)
5248 switch (nd_type(node)) {
5256 case NODE_IMAGINARY:
5263 return hash_key || frozen_string_literal_p(iseq);
5272 switch (nd_type(node)) {
5275 VALUE lit = rb_node_integer_literal_val(node);
5281 VALUE lit = rb_node_float_literal_val(node);
5287 case NODE_IMAGINARY:
5296 return rb_node_sym_string_val(node);
5300 return rb_node_line_lineno_val(node);
5302 return rb_node_encoding_val(node);
5305 if (ISEQ_COMPILE_DATA(iseq)->option->debug_frozen_string_literal ||
RTEST(
ruby_debug)) {
5306 VALUE lit = get_string_value(node);
5307 VALUE str = rb_str_with_debug_created_info(lit, rb_iseq_path(iseq), (
int)nd_line(node));
5312 return get_string_value(node);
5315 rb_bug(
"unexpected node: %s", ruby_node_name(nd_type(node)));
5322 const NODE *line_node = node;
5324 if (nd_type_p(node, NODE_ZLIST)) {
5326 ADD_INSN1(ret, line_node, newarray,
INT2FIX(0));
5331 EXPECT_NODE(
"compile_array", node, NODE_LIST, -1);
5334 for (; node; node = RNODE_LIST(node)->nd_next) {
5335 NO_CHECK(COMPILE_(ret,
"array element", RNODE_LIST(node)->nd_head, popped));
5377 const int max_stack_len = 0x100;
5378 const int min_tmp_ary_len = 0x40;
5382#define FLUSH_CHUNK \
5384 if (first_chunk) ADD_INSN1(ret, line_node, newarray, INT2FIX(stack_len)); \
5385 else ADD_INSN1(ret, line_node, pushtoarray, INT2FIX(stack_len)); \
5386 first_chunk = FALSE; \
5394 if (static_literal_node_p(RNODE_LIST(node)->nd_head, iseq,
false)) {
5396 const NODE *node_tmp = RNODE_LIST(node)->nd_next;
5397 for (; node_tmp && static_literal_node_p(RNODE_LIST(node_tmp)->nd_head, iseq,
false); node_tmp = RNODE_LIST(node_tmp)->nd_next)
5400 if ((first_chunk && stack_len == 0 && !node_tmp) || count >= min_tmp_ary_len) {
5405 for (; count; count--, node = RNODE_LIST(node)->nd_next)
5406 rb_ary_push(ary, static_literal_value(RNODE_LIST(node)->nd_head, iseq));
5412 ADD_INSN1(ret, line_node, duparray, ary);
5413 first_chunk = FALSE;
5416 ADD_INSN1(ret, line_node, putobject, ary);
5417 ADD_INSN(ret, line_node, concattoarray);
5425 for (; count; count--, node = RNODE_LIST(node)->nd_next) {
5427 EXPECT_NODE(
"compile_array", node, NODE_LIST, -1);
5430 if (!RNODE_LIST(node)->nd_next && keyword_node_p(RNODE_LIST(node)->nd_head)) {
5432 if (stack_len == 0 && first_chunk) {
5433 ADD_INSN1(ret, line_node, newarray,
INT2FIX(0));
5438 NO_CHECK(COMPILE_(ret,
"array element", RNODE_LIST(node)->nd_head, 0));
5439 ADD_INSN(ret, line_node, pushtoarraykwsplat);
5443 NO_CHECK(COMPILE_(ret,
"array element", RNODE_LIST(node)->nd_head, 0));
5448 if (stack_len >= max_stack_len) FLUSH_CHUNK;
5458static_literal_node_pair_p(
const NODE *node,
const rb_iseq_t *iseq)
5460 return RNODE_LIST(node)->nd_head && static_literal_node_p(RNODE_LIST(node)->nd_head, iseq,
true) && static_literal_node_p(RNODE_LIST(RNODE_LIST(node)->nd_next)->nd_head, iseq,
false);
5466 const NODE *line_node = node;
5468 node = RNODE_HASH(node)->nd_head;
5470 if (!node || nd_type_p(node, NODE_ZLIST)) {
5472 ADD_INSN1(ret, line_node, newhash,
INT2FIX(0));
5477 EXPECT_NODE(
"compile_hash", node, NODE_LIST, -1);
5480 for (; node; node = RNODE_LIST(node)->nd_next) {
5481 NO_CHECK(COMPILE_(ret,
"hash element", RNODE_LIST(node)->nd_head, popped));
5504 const int max_stack_len = 0x100;
5505 const int min_tmp_hash_len = 0x800;
5507 int first_chunk = 1;
5508 DECL_ANCHOR(anchor);
5509 INIT_ANCHOR(anchor);
5512#define FLUSH_CHUNK() \
5514 if (first_chunk) { \
5515 APPEND_LIST(ret, anchor); \
5516 ADD_INSN1(ret, line_node, newhash, INT2FIX(stack_len)); \
5519 ADD_INSN1(ret, line_node, putspecialobject, INT2FIX(VM_SPECIAL_OBJECT_VMCORE)); \
5520 ADD_INSN(ret, line_node, swap); \
5521 APPEND_LIST(ret, anchor); \
5522 ADD_SEND(ret, line_node, id_core_hash_merge_bang_ptr, INT2FIX(stack_len + 1)); \
5524 INIT_ANCHOR(anchor); \
5525 first_chunk = stack_len = 0; \
5532 if (static_literal_node_pair_p(node, iseq)) {
5534 const NODE *node_tmp = RNODE_LIST(RNODE_LIST(node)->nd_next)->nd_next;
5535 for (; node_tmp && static_literal_node_pair_p(node_tmp, iseq); node_tmp = RNODE_LIST(RNODE_LIST(node_tmp)->nd_next)->nd_next)
5538 if ((first_chunk && stack_len == 0 && !node_tmp) || count >= min_tmp_hash_len) {
5543 for (; count; count--, node = RNODE_LIST(RNODE_LIST(node)->nd_next)->nd_next) {
5545 elem[0] = static_literal_value(RNODE_LIST(node)->nd_head, iseq);
5547 elem[1] = static_literal_value(RNODE_LIST(RNODE_LIST(node)->nd_next)->nd_head, iseq);
5559 ADD_INSN1(ret, line_node, duphash, hash);
5563 ADD_INSN1(ret, line_node, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
5564 ADD_INSN(ret, line_node, swap);
5566 ADD_INSN1(ret, line_node, putobject, hash);
5568 ADD_SEND(ret, line_node, id_core_hash_merge_bang_kwd,
INT2FIX(2));
5575 for (; count; count--, node = RNODE_LIST(RNODE_LIST(node)->nd_next)->nd_next) {
5578 EXPECT_NODE(
"compile_hash", node, NODE_LIST, -1);
5581 if (RNODE_LIST(node)->nd_head) {
5583 NO_CHECK(COMPILE_(anchor,
"hash key element", RNODE_LIST(node)->nd_head, 0));
5584 NO_CHECK(COMPILE_(anchor,
"hash value element", RNODE_LIST(RNODE_LIST(node)->nd_next)->nd_head, 0));
5588 if (stack_len >= max_stack_len) FLUSH_CHUNK();
5594 const NODE *kw = RNODE_LIST(RNODE_LIST(node)->nd_next)->nd_head;
5595 int empty_kw = nd_type_p(kw, NODE_HASH) && (!RNODE_HASH(kw)->nd_head);
5596 int first_kw = first_chunk && stack_len == 0;
5597 int last_kw = !RNODE_LIST(RNODE_LIST(node)->nd_next)->nd_next;
5598 int only_kw = last_kw && first_kw;
5600 empty_kw = empty_kw || nd_type_p(kw, NODE_NIL);
5602 if (only_kw && method_call_keywords) {
5610 NO_CHECK(COMPILE(ret,
"keyword splat", kw));
5612 else if (first_kw) {
5616 ADD_INSN1(ret, line_node, newhash,
INT2FIX(0));
5623 if (only_kw && method_call_keywords) {
5629 NO_CHECK(COMPILE(ret,
"keyword splat", kw));
5636 ADD_INSN1(ret, line_node, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
5637 if (first_kw) ADD_INSN1(ret, line_node, newhash,
INT2FIX(0));
5638 else ADD_INSN(ret, line_node, swap);
5640 NO_CHECK(COMPILE(ret,
"keyword splat", kw));
5642 ADD_SEND(ret, line_node, id_core_hash_merge_bang_kwd,
INT2FIX(2));
5657rb_node_case_when_optimizable_literal(
const NODE *
const node)
5659 switch (nd_type(node)) {
5661 return rb_node_integer_literal_val(node);
5663 VALUE v = rb_node_float_literal_val(node);
5672 case NODE_IMAGINARY:
5681 return rb_node_sym_string_val(node);
5683 return rb_node_line_lineno_val(node);
5685 return rb_node_str_string_val(node);
5687 return rb_node_file_path_val(node);
5694 LABEL *l1,
int only_special_literals,
VALUE literals)
5697 const NODE *val = RNODE_LIST(vals)->nd_head;
5698 VALUE lit = rb_node_case_when_optimizable_literal(val);
5701 only_special_literals = 0;
5704 cdhash_aset_if_missing(literals, lit, (
VALUE)(l1));
5707 if (nd_type_p(val, NODE_STR) || nd_type_p(val, NODE_FILE)) {
5708 debugp_param(
"nd_lit", get_string_value(val));
5709 lit = get_string_value(val);
5710 ADD_INSN1(cond_seq, val, putobject, lit);
5714 if (!COMPILE(cond_seq,
"when cond", val))
return -1;
5718 ADD_INSN1(cond_seq, vals, topn,
INT2FIX(1));
5719 ADD_CALL(cond_seq, vals, idEqq,
INT2FIX(1));
5720 ADD_INSNL(cond_seq, val, branchif, l1);
5721 vals = RNODE_LIST(vals)->nd_next;
5723 return only_special_literals;
5728 LABEL *l1,
int only_special_literals,
VALUE literals)
5730 const NODE *line_node = vals;
5732 switch (nd_type(vals)) {
5734 if (when_vals(iseq, cond_seq, vals, l1, only_special_literals, literals) < 0)
5738 ADD_INSN (cond_seq, line_node, dup);
5739 CHECK(COMPILE(cond_seq,
"when splat", RNODE_SPLAT(vals)->nd_head));
5740 ADD_INSN1(cond_seq, line_node, splatarray,
Qfalse);
5741 ADD_INSN1(cond_seq, line_node, checkmatch,
INT2FIX(VM_CHECKMATCH_TYPE_CASE | VM_CHECKMATCH_ARRAY));
5742 ADD_INSNL(cond_seq, line_node, branchif, l1);
5745 CHECK(when_splat_vals(iseq, cond_seq, RNODE_ARGSCAT(vals)->nd_head, l1, only_special_literals, literals));
5746 CHECK(when_splat_vals(iseq, cond_seq, RNODE_ARGSCAT(vals)->nd_body, l1, only_special_literals, literals));
5749 CHECK(when_splat_vals(iseq, cond_seq, RNODE_ARGSPUSH(vals)->nd_head, l1, only_special_literals, literals));
5750 ADD_INSN (cond_seq, line_node, dup);
5751 CHECK(COMPILE(cond_seq,
"when argspush body", RNODE_ARGSPUSH(vals)->nd_body));
5752 ADD_INSN1(cond_seq, line_node, checkmatch,
INT2FIX(VM_CHECKMATCH_TYPE_CASE));
5753 ADD_INSNL(cond_seq, line_node, branchif, l1);
5756 ADD_INSN (cond_seq, line_node, dup);
5757 CHECK(COMPILE(cond_seq,
"when val", vals));
5758 ADD_INSN1(cond_seq, line_node, splatarray,
Qfalse);
5759 ADD_INSN1(cond_seq, line_node, checkmatch,
INT2FIX(VM_CHECKMATCH_TYPE_CASE | VM_CHECKMATCH_ARRAY));
5760 ADD_INSNL(cond_seq, line_node, branchif, l1);
5853 const NODE *line_node;
5868add_masgn_lhs_node(
struct masgn_state *state,
int lhs_pos,
const NODE *line_node,
int argc,
INSN *before_insn)
5871 rb_bug(
"no masgn_state");
5880 memo->before_insn = before_insn;
5881 memo->line_node = line_node;
5882 memo->argn = state->num_args + 1;
5883 memo->num_args = argc;
5884 state->num_args += argc;
5885 memo->lhs_pos = lhs_pos;
5887 if (!state->first_memo) {
5888 state->first_memo = memo;
5891 state->last_memo->next = memo;
5893 state->last_memo = memo;
5903 switch (nd_type(node)) {
5904 case NODE_ATTRASGN: {
5906 const NODE *line_node = node;
5908 CHECK(COMPILE_POPPED(pre,
"masgn lhs (NODE_ATTRASGN)", node));
5910 bool safenav_call =
false;
5912 iobj = (
INSN *)get_prev_insn((
INSN *)insn_element);
5914 ELEM_REMOVE(insn_element);
5915 if (!IS_INSN_ID(iobj, send)) {
5916 safenav_call =
true;
5917 iobj = (
INSN *)get_prev_insn(iobj);
5918 ELEM_INSERT_NEXT(&iobj->link, insn_element);
5920 (pre->last = iobj->link.prev)->next = 0;
5923 int argc = vm_ci_argc(ci) + 1;
5924 ci = ci_argc_set(iseq, ci, argc);
5925 OPERAND_AT(iobj, 0) = (
VALUE)ci;
5929 ADD_INSN(lhs, line_node, swap);
5932 ADD_INSN1(lhs, line_node, topn,
INT2FIX(argc));
5935 if (!add_masgn_lhs_node(state, lhs_pos, line_node, argc, (
INSN *)LAST_ELEMENT(lhs))) {
5939 iobj->link.prev = lhs->last;
5940 lhs->last->next = &iobj->link;
5941 for (lhs->last = &iobj->link; lhs->last->next; lhs->last = lhs->last->next);
5942 if (vm_ci_flag(ci) & VM_CALL_ARGS_SPLAT) {
5943 int argc = vm_ci_argc(ci);
5944 bool dupsplat =
false;
5945 ci = ci_argc_set(iseq, ci, argc - 1);
5946 if (!(vm_ci_flag(ci) & VM_CALL_ARGS_SPLAT_MUT)) {
5953 ci = ci_flag_set(iseq, ci, VM_CALL_ARGS_SPLAT_MUT);
5955 OPERAND_AT(iobj, 0) = (
VALUE)ci;
5964 int line_no = nd_line(line_node);
5965 int node_id = nd_node_id(line_node);
5968 INSERT_BEFORE_INSN(iobj, line_no, node_id, swap);
5969 INSERT_BEFORE_INSN1(iobj, line_no, node_id, splatarray,
Qtrue);
5970 INSERT_BEFORE_INSN(iobj, line_no, node_id, swap);
5972 INSERT_BEFORE_INSN1(iobj, line_no, node_id, pushtoarray,
INT2FIX(1));
5974 if (!safenav_call) {
5975 ADD_INSN(lhs, line_node, pop);
5977 ADD_INSN(lhs, line_node, pop);
5980 for (
int i=0; i < argc; i++) {
5981 ADD_INSN(post, line_node, pop);
5986 DECL_ANCHOR(nest_rhs);
5987 INIT_ANCHOR(nest_rhs);
5988 DECL_ANCHOR(nest_lhs);
5989 INIT_ANCHOR(nest_lhs);
5991 int prev_level = state->lhs_level;
5992 bool prev_nested = state->nested;
5994 state->lhs_level = lhs_pos - 1;
5995 CHECK(compile_massign0(iseq, pre, nest_rhs, nest_lhs, post, node, state, 1));
5996 state->lhs_level = prev_level;
5997 state->nested = prev_nested;
5999 ADD_SEQ(lhs, nest_rhs);
6000 ADD_SEQ(lhs, nest_lhs);
6004 if (!RNODE_CDECL(node)->nd_vid) {
6008 CHECK(COMPILE_POPPED(pre,
"masgn lhs (NODE_CDECL)", node));
6011 iobj = (
INSN *)insn_element;
6014 ELEM_REMOVE(insn_element);
6015 pre->last = iobj->link.prev;
6018 if (!add_masgn_lhs_node(state, lhs_pos, node, 1, (
INSN *)LAST_ELEMENT(lhs))) {
6022 ADD_INSN(post, node, pop);
6027 DECL_ANCHOR(anchor);
6028 INIT_ANCHOR(anchor);
6029 CHECK(COMPILE_POPPED(anchor,
"masgn lhs", node));
6030 ELEM_REMOVE(FIRST_ELEMENT(anchor));
6031 ADD_SEQ(lhs, anchor);
6042 CHECK(compile_massign_opt_lhs(iseq, ret, RNODE_LIST(lhsn)->nd_next));
6043 CHECK(compile_massign_lhs(iseq, ret, ret, ret, ret, RNODE_LIST(lhsn)->nd_head, NULL, 0));
6050 const NODE *rhsn,
const NODE *orig_lhsn)
6053 const int memsize = numberof(mem);
6055 int llen = 0, rlen = 0;
6057 const NODE *lhsn = orig_lhsn;
6059#define MEMORY(v) { \
6061 if (memindex == memsize) return 0; \
6062 for (i=0; i<memindex; i++) { \
6063 if (mem[i] == (v)) return 0; \
6065 mem[memindex++] = (v); \
6068 if (rhsn == 0 || !nd_type_p(rhsn, NODE_LIST)) {
6073 const NODE *ln = RNODE_LIST(lhsn)->nd_head;
6074 switch (nd_type(ln)) {
6079 MEMORY(get_nd_vid(ln));
6084 lhsn = RNODE_LIST(lhsn)->nd_next;
6090 NO_CHECK(COMPILE_POPPED(ret,
"masgn val (popped)", RNODE_LIST(rhsn)->nd_head));
6093 NO_CHECK(COMPILE(ret,
"masgn val", RNODE_LIST(rhsn)->nd_head));
6095 rhsn = RNODE_LIST(rhsn)->nd_next;
6100 for (i=0; i<llen-rlen; i++) {
6101 ADD_INSN(ret, orig_lhsn, putnil);
6105 compile_massign_opt_lhs(iseq, ret, orig_lhsn);
6112 const NODE *rhsn = RNODE_MASGN(node)->nd_value;
6113 const NODE *splatn = RNODE_MASGN(node)->nd_args;
6114 const NODE *lhsn = RNODE_MASGN(node)->nd_head;
6115 const NODE *lhsn_count = lhsn;
6116 int lhs_splat = (splatn && NODE_NAMED_REST_P(splatn)) ? 1 : 0;
6121 while (lhsn_count) {
6123 lhsn_count = RNODE_LIST(lhsn_count)->nd_next;
6126 CHECK(compile_massign_lhs(iseq, pre, rhs, lhs, post, RNODE_LIST(lhsn)->nd_head, state, (llen - lpos) + lhs_splat + state->lhs_level));
6128 lhsn = RNODE_LIST(lhsn)->nd_next;
6132 if (nd_type_p(splatn, NODE_POSTARG)) {
6134 const NODE *postn = RNODE_POSTARG(splatn)->nd_2nd;
6135 const NODE *restn = RNODE_POSTARG(splatn)->nd_1st;
6136 int plen = (int)RNODE_LIST(postn)->as.nd_alen;
6138 int flag = 0x02 | (NODE_NAMED_REST_P(restn) ? 0x01 : 0x00);
6140 ADD_INSN2(lhs, splatn, expandarray,
INT2FIX(plen),
INT2FIX(flag));
6142 if (NODE_NAMED_REST_P(restn)) {
6143 CHECK(compile_massign_lhs(iseq, pre, rhs, lhs, post, restn, state, 1 + plen + state->lhs_level));
6146 CHECK(compile_massign_lhs(iseq, pre, rhs, lhs, post, RNODE_LIST(postn)->nd_head, state, (plen - ppos) + state->lhs_level));
6148 postn = RNODE_LIST(postn)->nd_next;
6153 CHECK(compile_massign_lhs(iseq, pre, rhs, lhs, post, splatn, state, 1 + state->lhs_level));
6157 if (!state->nested) {
6158 NO_CHECK(COMPILE(rhs,
"normal masgn rhs", rhsn));
6162 ADD_INSN(rhs, node, dup);
6164 ADD_INSN2(rhs, node, expandarray,
INT2FIX(llen),
INT2FIX(lhs_splat));
6171 if (!popped || RNODE_MASGN(node)->nd_args || !compile_massign_opt(iseq, ret, RNODE_MASGN(node)->nd_value, RNODE_MASGN(node)->nd_head)) {
6173 state.lhs_level = popped ? 0 : 1;
6176 state.first_memo = NULL;
6177 state.last_memo = NULL;
6187 int ok = compile_massign0(iseq, pre, rhs, lhs, post, node, &state, popped);
6191 VALUE topn_arg =
INT2FIX((state.num_args - memo->argn) + memo->lhs_pos);
6192 for (
int i = 0; i < memo->num_args; i++) {
6193 INSERT_BEFORE_INSN1(memo->before_insn, nd_line(memo->line_node), nd_node_id(memo->line_node), topn, topn_arg);
6195 tmp_memo = memo->next;
6204 if (!popped && state.num_args >= 1) {
6206 ADD_INSN1(ret, node, setn,
INT2FIX(state.num_args));
6218 switch (nd_type(node)) {
6220 rb_ary_unshift(arr,
ID2SYM(RNODE_CONST(node)->nd_vid));
6224 rb_ary_unshift(arr,
ID2SYM(RNODE_COLON3(node)->nd_mid));
6225 rb_ary_unshift(arr,
ID2SYM(idNULL));
6229 rb_ary_unshift(arr,
ID2SYM(RNODE_COLON2(node)->nd_mid));
6230 node = RNODE_COLON2(node)->nd_head;
6239compile_const_prefix(
rb_iseq_t *iseq,
const NODE *
const node,
6242 switch (nd_type(node)) {
6244 debugi(
"compile_const_prefix - colon", RNODE_CONST(node)->nd_vid);
6245 ADD_INSN1(body, node, putobject,
Qtrue);
6246 ADD_INSN1(body, node, getconstant,
ID2SYM(RNODE_CONST(node)->nd_vid));
6249 debugi(
"compile_const_prefix - colon3", RNODE_COLON3(node)->nd_mid);
6250 ADD_INSN(body, node, pop);
6251 ADD_INSN1(body, node, putobject,
rb_cObject);
6252 ADD_INSN1(body, node, putobject,
Qtrue);
6253 ADD_INSN1(body, node, getconstant,
ID2SYM(RNODE_COLON3(node)->nd_mid));
6256 CHECK(compile_const_prefix(iseq, RNODE_COLON2(node)->nd_head, pref, body));
6257 debugi(
"compile_const_prefix - colon2", RNODE_COLON2(node)->nd_mid);
6258 ADD_INSN1(body, node, putobject,
Qfalse);
6259 ADD_INSN1(body, node, getconstant,
ID2SYM(RNODE_COLON2(node)->nd_mid));
6262 CHECK(COMPILE(pref,
"const colon2 prefix", node));
6269cpath_const_p(
const NODE *node)
6271 switch (nd_type(node)) {
6276 if (RNODE_COLON2(node)->nd_head) {
6277 return cpath_const_p(RNODE_COLON2(node)->nd_head);
6288 if (nd_type_p(cpath, NODE_COLON3)) {
6290 ADD_INSN1(ret, cpath, putobject,
rb_cObject);
6291 return VM_DEFINECLASS_FLAG_SCOPED;
6293 else if (nd_type_p(cpath, NODE_COLON2) && RNODE_COLON2(cpath)->nd_head) {
6295 NO_CHECK(COMPILE(ret,
"nd_else->nd_head", RNODE_COLON2(cpath)->nd_head));
6296 int flags = VM_DEFINECLASS_FLAG_SCOPED;
6297 if (!cpath_const_p(RNODE_COLON2(cpath)->nd_head)) {
6298 flags |= VM_DEFINECLASS_FLAG_DYNAMIC_CREF;
6304 ADD_INSN1(ret, cpath, putspecialobject,
6305 INT2FIX(VM_SPECIAL_OBJECT_CONST_BASE));
6311private_recv_p(
const NODE *node)
6313 NODE *recv = get_nd_recv(node);
6314 if (recv && nd_type_p(recv, NODE_SELF)) {
6315 return RNODE_SELF(recv)->nd_state != 0;
6322 const NODE *
const node,
LABEL **lfinish,
VALUE needstr,
bool ignore);
6325compile_call(
rb_iseq_t *iseq,
LINK_ANCHOR *
const ret,
const NODE *
const node,
const enum node_type
type,
const NODE *
const line_node,
int popped,
bool assume_receiver);
6332 enum defined_type expr_type = DEFINED_NOT_DEFINED;
6333 enum node_type
type;
6334 const int line = nd_line(node);
6335 const NODE *line_node = node;
6337 switch (
type = nd_type(node)) {
6341 expr_type = DEFINED_NIL;
6344 expr_type = DEFINED_SELF;
6347 expr_type = DEFINED_TRUE;
6350 expr_type = DEFINED_FALSE;
6355 const NODE *vals = (nd_type(node) == NODE_HASH) ? RNODE_HASH(node)->nd_head : node;
6359 if (RNODE_LIST(vals)->nd_head) {
6360 defined_expr0(iseq, ret, RNODE_LIST(vals)->nd_head, lfinish,
Qfalse,
false);
6363 lfinish[1] = NEW_LABEL(line);
6365 ADD_INSNL(ret, line_node, branchunless, lfinish[1]);
6367 }
while ((vals = RNODE_LIST(vals)->nd_next) != NULL);
6380 case NODE_IMAGINARY:
6385 expr_type = DEFINED_EXPR;
6389 defined_expr0(iseq, ret, RNODE_LIST(node)->nd_head, lfinish,
Qfalse,
false);
6391 lfinish[1] = NEW_LABEL(line);
6393 ADD_INSNL(ret, line_node, branchunless, lfinish[1]);
6394 expr_type = DEFINED_EXPR;
6400 expr_type = DEFINED_LVAR;
6403#define PUSH_VAL(type) (needstr == Qfalse ? Qtrue : rb_iseq_defined_string(type))
6405 ADD_INSN3(ret, line_node, definedivar,
6406 ID2SYM(RNODE_IVAR(node)->nd_vid), get_ivar_ic_value(iseq,RNODE_IVAR(node)->nd_vid), PUSH_VAL(DEFINED_IVAR));
6410 ADD_INSN(ret, line_node, putnil);
6411 ADD_INSN3(ret, line_node, defined,
INT2FIX(DEFINED_GVAR),
6412 ID2SYM(RNODE_GVAR(node)->nd_vid), PUSH_VAL(DEFINED_GVAR));
6416 ADD_INSN(ret, line_node, putnil);
6417 ADD_INSN3(ret, line_node, defined,
INT2FIX(DEFINED_CVAR),
6418 ID2SYM(RNODE_CVAR(node)->nd_vid), PUSH_VAL(DEFINED_CVAR));
6422 ADD_INSN(ret, line_node, putnil);
6423 ADD_INSN3(ret, line_node, defined,
INT2FIX(DEFINED_CONST),
6424 ID2SYM(RNODE_CONST(node)->nd_vid), PUSH_VAL(DEFINED_CONST));
6428 lfinish[1] = NEW_LABEL(line);
6430 defined_expr0(iseq, ret, RNODE_COLON2(node)->nd_head, lfinish,
Qfalse,
false);
6431 ADD_INSNL(ret, line_node, branchunless, lfinish[1]);
6432 NO_CHECK(COMPILE(ret,
"defined/colon2#nd_head", RNODE_COLON2(node)->nd_head));
6435 ADD_INSN3(ret, line_node, defined,
INT2FIX(DEFINED_CONST_FROM),
6436 ID2SYM(RNODE_COLON2(node)->nd_mid), PUSH_VAL(DEFINED_CONST));
6439 ADD_INSN3(ret, line_node, defined,
INT2FIX(DEFINED_METHOD),
6440 ID2SYM(RNODE_COLON2(node)->nd_mid), PUSH_VAL(DEFINED_METHOD));
6444 ADD_INSN1(ret, line_node, putobject,
rb_cObject);
6445 ADD_INSN3(ret, line_node, defined,
6446 INT2FIX(DEFINED_CONST_FROM),
ID2SYM(RNODE_COLON3(node)->nd_mid), PUSH_VAL(DEFINED_CONST));
6454 case NODE_ATTRASGN:{
6455 const int explicit_receiver =
6456 (
type == NODE_CALL ||
type == NODE_OPCALL ||
6457 (
type == NODE_ATTRASGN && !private_recv_p(node)));
6459 if (get_nd_args(node) || explicit_receiver) {
6461 lfinish[1] = NEW_LABEL(line);
6464 lfinish[2] = NEW_LABEL(line);
6467 if (get_nd_args(node)) {
6468 defined_expr0(iseq, ret, get_nd_args(node), lfinish,
Qfalse,
false);
6469 ADD_INSNL(ret, line_node, branchunless, lfinish[1]);
6471 if (explicit_receiver) {
6472 defined_expr0(iseq, ret, get_nd_recv(node), lfinish,
Qfalse,
true);
6473 switch (nd_type(get_nd_recv(node))) {
6479 ADD_INSNL(ret, line_node, branchunless, lfinish[2]);
6480 compile_call(iseq, ret, get_nd_recv(node), nd_type(get_nd_recv(node)), line_node, 0,
true);
6483 ADD_INSNL(ret, line_node, branchunless, lfinish[1]);
6484 NO_CHECK(COMPILE(ret,
"defined/recv", get_nd_recv(node)));
6488 ADD_INSN(ret, line_node, dup);
6490 ADD_INSN3(ret, line_node, defined,
INT2FIX(DEFINED_METHOD),
6491 ID2SYM(get_node_call_nd_mid(node)), PUSH_VAL(DEFINED_METHOD));
6494 ADD_INSN(ret, line_node, putself);
6496 ADD_INSN(ret, line_node, dup);
6498 ADD_INSN3(ret, line_node, defined,
INT2FIX(DEFINED_FUNC),
6499 ID2SYM(get_node_call_nd_mid(node)), PUSH_VAL(DEFINED_METHOD));
6505 ADD_INSN(ret, line_node, putnil);
6506 ADD_INSN3(ret, line_node, defined,
INT2FIX(DEFINED_YIELD), 0,
6507 PUSH_VAL(DEFINED_YIELD));
6508 iseq_set_use_block(ISEQ_BODY(iseq)->local_iseq);
6513 ADD_INSN(ret, line_node, putnil);
6514 ADD_INSN3(ret, line_node, defined,
INT2FIX(DEFINED_REF),
6515 INT2FIX((RNODE_BACK_REF(node)->nd_nth << 1) | (
type == NODE_BACK_REF)),
6516 PUSH_VAL(DEFINED_GVAR));
6521 ADD_INSN(ret, line_node, putnil);
6522 ADD_INSN3(ret, line_node, defined,
INT2FIX(DEFINED_ZSUPER), 0,
6523 PUSH_VAL(DEFINED_ZSUPER));
6529 case NODE_OP_ASGN_OR:
6530 case NODE_OP_ASGN_AND:
6539 expr_type = DEFINED_ASGN;
6546 VALUE str = rb_iseq_defined_string(expr_type);
6547 ADD_INSN1(ret, line_node, putobject, str);
6550 ADD_INSN1(ret, line_node, putobject,
Qtrue);
6557 ADD_SYNTHETIC_INSN(ret, 0, -1, putnil);
6558 iseq_set_exception_local_table(iseq);
6563 const NODE *
const node,
LABEL **lfinish,
VALUE needstr,
bool ignore)
6566 defined_expr0(iseq, ret, node, lfinish, needstr,
false);
6568 int line = nd_line(node);
6569 LABEL *lstart = NEW_LABEL(line);
6570 LABEL *lend = NEW_LABEL(line);
6573 rb_iseq_new_with_callback_new_callback(build_defined_rescue_iseq, NULL);
6574 rescue = NEW_CHILD_ISEQ_WITH_CALLBACK(ifunc,
6576 ISEQ_BODY(iseq)->location.label),
6577 ISEQ_TYPE_RESCUE, 0);
6578 lstart->rescued = LABEL_RESCUE_BEG;
6579 lend->rescued = LABEL_RESCUE_END;
6580 APPEND_LABEL(ret, lcur, lstart);
6581 ADD_LABEL(ret, lend);
6583 ADD_CATCH_ENTRY(CATCH_TYPE_RESCUE, lstart, lend, rescue, lfinish[1]);
6591 const int line = nd_line(node);
6592 const NODE *line_node = node;
6593 if (!RNODE_DEFINED(node)->nd_head) {
6594 VALUE str = rb_iseq_defined_string(DEFINED_NIL);
6595 ADD_INSN1(ret, line_node, putobject, str);
6600 lfinish[0] = NEW_LABEL(line);
6603 defined_expr(iseq, ret, RNODE_DEFINED(node)->nd_head, lfinish, needstr, ignore);
6605 ELEM_INSERT_NEXT(last, &new_insn_body(iseq, nd_line(line_node), nd_node_id(line_node), BIN(putnil), 0)->link);
6606 ADD_INSN(ret, line_node, swap);
6608 ADD_LABEL(ret, lfinish[2]);
6610 ADD_INSN(ret, line_node, pop);
6611 ADD_LABEL(ret, lfinish[1]);
6613 ADD_LABEL(ret, lfinish[0]);
6619make_name_for_block(
const rb_iseq_t *orig_iseq)
6624 if (ISEQ_BODY(orig_iseq)->parent_iseq != 0) {
6625 while (ISEQ_BODY(orig_iseq)->local_iseq != iseq) {
6626 if (ISEQ_BODY(iseq)->
type == ISEQ_TYPE_BLOCK) {
6629 iseq = ISEQ_BODY(iseq)->parent_iseq;
6634 return rb_sprintf(
"block in %"PRIsVALUE, ISEQ_BODY(iseq)->location.label);
6637 return rb_sprintf(
"block (%d levels) in %"PRIsVALUE, level, ISEQ_BODY(iseq)->location.label);
6646 enl->ensure_node = node;
6647 enl->prev = ISEQ_COMPILE_DATA(iseq)->ensure_node_stack;
6649 ISEQ_COMPILE_DATA(iseq)->ensure_node_stack = enl;
6659 while (erange->next != 0) {
6660 erange = erange->next;
6664 ne->end = erange->end;
6665 erange->end = lstart;
6671can_add_ensure_iseq(
const rb_iseq_t *iseq)
6674 if (ISEQ_COMPILE_DATA(iseq)->in_rescue && (e = ISEQ_COMPILE_DATA(iseq)->ensure_node_stack) != NULL) {
6676 if (e->ensure_node)
return false;
6689 ISEQ_COMPILE_DATA(iseq)->ensure_node_stack;
6691 DECL_ANCHOR(ensure);
6693 INIT_ANCHOR(ensure);
6695 if (enlp->erange != NULL) {
6696 DECL_ANCHOR(ensure_part);
6697 LABEL *lstart = NEW_LABEL(0);
6698 LABEL *lend = NEW_LABEL(0);
6699 INIT_ANCHOR(ensure_part);
6701 add_ensure_range(iseq, enlp->erange, lstart, lend);
6703 ISEQ_COMPILE_DATA(iseq)->ensure_node_stack = enlp->prev;
6704 ADD_LABEL(ensure_part, lstart);
6705 NO_CHECK(COMPILE_POPPED(ensure_part,
"ensure part", enlp->ensure_node));
6706 ADD_LABEL(ensure_part, lend);
6707 ADD_SEQ(ensure, ensure_part);
6716 ISEQ_COMPILE_DATA(iseq)->ensure_node_stack = prev_enlp;
6717 ADD_SEQ(ret, ensure);
6722check_keyword(
const NODE *node)
6726 if (nd_type_p(node, NODE_LIST)) {
6727 while (RNODE_LIST(node)->nd_next) {
6728 node = RNODE_LIST(node)->nd_next;
6730 node = RNODE_LIST(node)->nd_head;
6733 return keyword_node_p(node);
6738keyword_node_single_splat_p(
NODE *kwnode)
6742 NODE *node = RNODE_HASH(kwnode)->nd_head;
6743 return RNODE_LIST(node)->nd_head == NULL &&
6744 RNODE_LIST(RNODE_LIST(node)->nd_next)->nd_next == NULL;
6749 NODE *kwnode,
unsigned int *flag_ptr)
6751 *flag_ptr |= VM_CALL_KW_SPLAT_MUT;
6752 ADD_INSN1(args, argn, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
6753 ADD_INSN1(args, argn, newhash,
INT2FIX(0));
6754 compile_hash(iseq, args, kwnode, TRUE, FALSE);
6755 ADD_SEND(args, argn, id_core_hash_merge_kwd,
INT2FIX(2));
6758#define SPLATARRAY_FALSE 0
6759#define SPLATARRAY_TRUE 1
6760#define DUP_SINGLE_KW_SPLAT 2
6764 unsigned int *dup_rest,
unsigned int *flag_ptr,
struct rb_callinfo_kwarg **kwarg_ptr)
6766 if (!argn)
return 0;
6768 NODE *kwnode = NULL;
6770 switch (nd_type(argn)) {
6773 int len = compile_args(iseq, args, argn, &kwnode);
6774 RUBY_ASSERT(flag_ptr == NULL || (*flag_ptr & VM_CALL_ARGS_SPLAT) == 0);
6777 if (compile_keyword_arg(iseq, args, kwnode, kwarg_ptr, flag_ptr)) {
6781 if (keyword_node_single_splat_p(kwnode) && (*dup_rest & DUP_SINGLE_KW_SPLAT)) {
6782 compile_single_keyword_splat_mutable(iseq, args, argn, kwnode, flag_ptr);
6785 compile_hash(iseq, args, kwnode, TRUE, FALSE);
6794 NO_CHECK(COMPILE(args,
"args (splat)", RNODE_SPLAT(argn)->nd_head));
6795 ADD_INSN1(args, argn, splatarray, RBOOL(*dup_rest & SPLATARRAY_TRUE));
6796 if (*dup_rest & SPLATARRAY_TRUE) *dup_rest &= ~SPLATARRAY_TRUE;
6797 if (flag_ptr) *flag_ptr |= VM_CALL_ARGS_SPLAT;
6798 RUBY_ASSERT(flag_ptr == NULL || (*flag_ptr & VM_CALL_KW_SPLAT) == 0);
6801 case NODE_ARGSCAT: {
6802 if (flag_ptr) *flag_ptr |= VM_CALL_ARGS_SPLAT;
6803 int argc = setup_args_core(iseq, args, RNODE_ARGSCAT(argn)->nd_head, dup_rest, NULL, NULL);
6804 bool args_pushed =
false;
6806 if (nd_type_p(RNODE_ARGSCAT(argn)->nd_body, NODE_LIST)) {
6807 int rest_len = compile_args(iseq, args, RNODE_ARGSCAT(argn)->nd_body, &kwnode);
6808 if (kwnode) rest_len--;
6809 ADD_INSN1(args, argn, pushtoarray,
INT2FIX(rest_len));
6813 RUBY_ASSERT(!check_keyword(RNODE_ARGSCAT(argn)->nd_body));
6814 NO_CHECK(COMPILE(args,
"args (cat: splat)", RNODE_ARGSCAT(argn)->nd_body));
6817 if (nd_type_p(RNODE_ARGSCAT(argn)->nd_head, NODE_LIST)) {
6818 ADD_INSN1(args, argn, splatarray, RBOOL(*dup_rest & SPLATARRAY_TRUE));
6819 if (*dup_rest & SPLATARRAY_TRUE) *dup_rest &= ~SPLATARRAY_TRUE;
6822 else if (!args_pushed) {
6823 ADD_INSN(args, argn, concattoarray);
6829 *flag_ptr |= VM_CALL_KW_SPLAT;
6830 compile_hash(iseq, args, kwnode, TRUE, FALSE);
6836 case NODE_ARGSPUSH: {
6837 if (flag_ptr) *flag_ptr |= VM_CALL_ARGS_SPLAT;
6838 int argc = setup_args_core(iseq, args, RNODE_ARGSPUSH(argn)->nd_head, dup_rest, NULL, NULL);
6840 if (nd_type_p(RNODE_ARGSPUSH(argn)->nd_body, NODE_LIST)) {
6841 int rest_len = compile_args(iseq, args, RNODE_ARGSPUSH(argn)->nd_body, &kwnode);
6842 if (kwnode) rest_len--;
6843 ADD_INSN1(args, argn, newarray,
INT2FIX(rest_len));
6844 ADD_INSN1(args, argn, pushtoarray,
INT2FIX(1));
6847 if (keyword_node_p(RNODE_ARGSPUSH(argn)->nd_body)) {
6848 kwnode = RNODE_ARGSPUSH(argn)->nd_body;
6851 NO_CHECK(COMPILE(args,
"args (cat: splat)", RNODE_ARGSPUSH(argn)->nd_body));
6852 ADD_INSN1(args, argn, pushtoarray,
INT2FIX(1));
6858 *flag_ptr |= VM_CALL_KW_SPLAT;
6859 if (!keyword_node_single_splat_p(kwnode)) {
6860 *flag_ptr |= VM_CALL_KW_SPLAT_MUT;
6861 compile_hash(iseq, args, kwnode, TRUE, FALSE);
6863 else if (*dup_rest & DUP_SINGLE_KW_SPLAT) {
6864 compile_single_keyword_splat_mutable(iseq, args, argn, kwnode, flag_ptr);
6867 compile_hash(iseq, args, kwnode, TRUE, FALSE);
6875 UNKNOWN_NODE(
"setup_arg", argn,
Qnil);
6881setup_args_splat_mut(
unsigned int *flag,
int dup_rest,
int initial_dup_rest)
6883 if ((*flag & VM_CALL_ARGS_SPLAT) && dup_rest != initial_dup_rest) {
6884 *flag |= VM_CALL_ARGS_SPLAT_MUT;
6889setup_args_dup_rest_p(
const NODE *argn)
6891 switch(nd_type(argn)) {
6902 case NODE_IMAGINARY:
6915 return setup_args_dup_rest_p(RNODE_COLON2(argn)->nd_head);
6918 if (setup_args_dup_rest_p(RNODE_LIST(argn)->nd_head)) {
6921 argn = RNODE_LIST(argn)->nd_next;
6934 unsigned int dup_rest = SPLATARRAY_TRUE, initial_dup_rest;
6937 const NODE *check_arg = nd_type_p(argn, NODE_BLOCK_PASS) ?
6938 RNODE_BLOCK_PASS(argn)->nd_head : argn;
6941 switch(nd_type(check_arg)) {
6944 dup_rest = SPLATARRAY_FALSE;
6948 dup_rest = !nd_type_p(RNODE_ARGSCAT(check_arg)->nd_head, NODE_LIST);
6950 case(NODE_ARGSPUSH):
6952 dup_rest = !((nd_type_p(RNODE_ARGSPUSH(check_arg)->nd_head, NODE_SPLAT) ||
6953 (nd_type_p(RNODE_ARGSPUSH(check_arg)->nd_head, NODE_ARGSCAT) &&
6954 nd_type_p(RNODE_ARGSCAT(RNODE_ARGSPUSH(check_arg)->nd_head)->nd_head, NODE_LIST))) &&
6955 nd_type_p(RNODE_ARGSPUSH(check_arg)->nd_body, NODE_HASH) &&
6956 !RNODE_HASH(RNODE_ARGSPUSH(check_arg)->nd_body)->nd_brace);
6958 if (dup_rest == SPLATARRAY_FALSE) {
6960 NODE *node = RNODE_HASH(RNODE_ARGSPUSH(check_arg)->nd_body)->nd_head;
6962 NODE *key_node = RNODE_LIST(node)->nd_head;
6963 if (key_node && setup_args_dup_rest_p(key_node)) {
6964 dup_rest = SPLATARRAY_TRUE;
6968 node = RNODE_LIST(node)->nd_next;
6969 NODE *value_node = RNODE_LIST(node)->nd_head;
6970 if (setup_args_dup_rest_p(value_node)) {
6971 dup_rest = SPLATARRAY_TRUE;
6975 node = RNODE_LIST(node)->nd_next;
6984 if (check_arg != argn && setup_args_dup_rest_p(RNODE_BLOCK_PASS(argn)->nd_body)) {
6986 dup_rest = SPLATARRAY_TRUE | DUP_SINGLE_KW_SPLAT;
6989 initial_dup_rest = dup_rest;
6991 if (argn && nd_type_p(argn, NODE_BLOCK_PASS)) {
6992 DECL_ANCHOR(arg_block);
6993 INIT_ANCHOR(arg_block);
6995 if (RNODE_BLOCK_PASS(argn)->forwarding && ISEQ_BODY(ISEQ_BODY(iseq)->local_iseq)->param.flags.forwardable) {
6996 int idx = ISEQ_BODY(ISEQ_BODY(iseq)->local_iseq)->local_table_size;
6998 RUBY_ASSERT(nd_type_p(RNODE_BLOCK_PASS(argn)->nd_head, NODE_ARGSPUSH));
6999 const NODE * arg_node =
7000 RNODE_ARGSPUSH(RNODE_BLOCK_PASS(argn)->nd_head)->nd_head;
7007 if (nd_type_p(arg_node, NODE_ARGSCAT)) {
7008 argc += setup_args_core(iseq, args, RNODE_ARGSCAT(arg_node)->nd_head, &dup_rest, flag, keywords);
7011 *flag |= VM_CALL_FORWARDING;
7013 ADD_GETLOCAL(args, argn, idx, get_lvar_level(iseq));
7014 setup_args_splat_mut(flag, dup_rest, initial_dup_rest);
7018 *flag |= VM_CALL_ARGS_BLOCKARG;
7020 NO_CHECK(COMPILE(arg_block,
"block", RNODE_BLOCK_PASS(argn)->nd_body));
7023 if (LIST_INSN_SIZE_ONE(arg_block)) {
7025 if (IS_INSN(elem)) {
7027 if (iobj->insn_id == BIN(getblockparam)) {
7028 iobj->insn_id = BIN(getblockparamproxy);
7032 ret =
INT2FIX(setup_args_core(iseq, args, RNODE_BLOCK_PASS(argn)->nd_head, &dup_rest, flag, keywords));
7033 ADD_SEQ(args, arg_block);
7036 ret =
INT2FIX(setup_args_core(iseq, args, argn, &dup_rest, flag, keywords));
7038 setup_args_splat_mut(flag, dup_rest, initial_dup_rest);
7045 const NODE *body = ptr;
7046 int line = nd_line(body);
7048 const rb_iseq_t *block = NEW_CHILD_ISEQ(body, make_name_for_block(ISEQ_BODY(iseq)->parent_iseq), ISEQ_TYPE_BLOCK, line);
7050 ADD_INSN1(ret, body, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
7051 ADD_CALL_WITH_BLOCK(ret, body, id_core_set_postexe, argc, block);
7053 iseq_set_local_table(iseq, 0, 0);
7061 int line = nd_line(node);
7062 const NODE *line_node = node;
7063 LABEL *fail_label = NEW_LABEL(line), *end_label = NEW_LABEL(line);
7065#if !(defined(NAMED_CAPTURE_BY_SVAR) && NAMED_CAPTURE_BY_SVAR-0)
7066 ADD_INSN1(ret, line_node, getglobal,
ID2SYM(idBACKREF));
7070 ADD_INSN(ret, line_node, dup);
7071 ADD_INSNL(ret, line_node, branchunless, fail_label);
7073 for (vars = node; vars; vars = RNODE_BLOCK(vars)->nd_next) {
7075 if (RNODE_BLOCK(vars)->nd_next) {
7076 ADD_INSN(ret, line_node, dup);
7079 NO_CHECK(COMPILE_POPPED(ret,
"capture", RNODE_BLOCK(vars)->nd_head));
7081 cap = new_insn_send(iseq, nd_line(line_node), nd_node_id(line_node), idAREF,
INT2FIX(1),
7084#if !defined(NAMED_CAPTURE_SINGLE_OPT) || NAMED_CAPTURE_SINGLE_OPT-0
7085 if (!RNODE_BLOCK(vars)->nd_next && vars == node) {
7090 ADD_INSNL(nom, line_node, jump, end_label);
7091 ADD_LABEL(nom, fail_label);
7093 ADD_INSN(nom, line_node, pop);
7094 ADD_INSN(nom, line_node, putnil);
7096 ADD_LABEL(nom, end_label);
7097 (nom->last->next = cap->link.next)->prev = nom->last;
7098 (cap->link.next = nom->anchor.next)->prev = &cap->link;
7103 ADD_INSNL(ret, line_node, jump, end_label);
7104 ADD_LABEL(ret, fail_label);
7105 ADD_INSN(ret, line_node, pop);
7106 for (vars = node; vars; vars = RNODE_BLOCK(vars)->nd_next) {
7108 NO_CHECK(COMPILE_POPPED(ret,
"capture", RNODE_BLOCK(vars)->nd_head));
7110 ((
INSN*)last)->insn_id = BIN(putnil);
7111 ((
INSN*)last)->operand_size = 0;
7113 ADD_LABEL(ret, end_label);
7117optimizable_range_item_p(
const NODE *n)
7119 if (!n)
return FALSE;
7120 switch (nd_type(n)) {
7133optimized_range_item(
const NODE *n)
7135 switch (nd_type(n)) {
7137 return rb_node_line_lineno_val(n);
7139 return rb_node_integer_literal_val(n);
7141 return rb_node_float_literal_val(n);
7143 return rb_node_rational_literal_val(n);
7144 case NODE_IMAGINARY:
7145 return rb_node_imaginary_literal_val(n);
7149 rb_bug(
"unexpected node: %s", ruby_node_name(nd_type(n)));
7156 const NODE *
const node_body =
type == NODE_IF ? RNODE_IF(node)->nd_body : RNODE_UNLESS(node)->nd_else;
7157 const NODE *
const node_else =
type == NODE_IF ? RNODE_IF(node)->nd_else : RNODE_UNLESS(node)->nd_body;
7159 const int line = nd_line(node);
7160 const NODE *line_node = node;
7161 DECL_ANCHOR(cond_seq);
7162 LABEL *then_label, *else_label, *end_label;
7165 INIT_ANCHOR(cond_seq);
7166 then_label = NEW_LABEL(line);
7167 else_label = NEW_LABEL(line);
7170 NODE *cond = RNODE_IF(node)->nd_cond;
7171 if (nd_type(cond) == NODE_BLOCK) {
7172 cond = RNODE_BLOCK(cond)->nd_head;
7175 CHECK(compile_branch_condition(iseq, cond_seq, cond, then_label, else_label));
7176 ADD_SEQ(ret, cond_seq);
7178 if (then_label->refcnt && else_label->refcnt) {
7179 branches = decl_branch_base(iseq, nd_node_id(node), nd_code_loc(node),
type == NODE_IF ?
"if" :
"unless");
7182 if (then_label->refcnt) {
7183 ADD_LABEL(ret, then_label);
7185 DECL_ANCHOR(then_seq);
7186 INIT_ANCHOR(then_seq);
7187 CHECK(COMPILE_(then_seq,
"then", node_body, popped));
7189 if (else_label->refcnt) {
7190 const NODE *
const coverage_node = node_body ? node_body : node;
7191 add_trace_branch_coverage(
7194 nd_code_loc(coverage_node),
7195 nd_node_id(coverage_node),
7197 type == NODE_IF ?
"then" :
"else",
7199 end_label = NEW_LABEL(line);
7200 ADD_INSNL(then_seq, line_node, jump, end_label);
7202 ADD_INSN(then_seq, line_node, pop);
7205 ADD_SEQ(ret, then_seq);
7208 if (else_label->refcnt) {
7209 ADD_LABEL(ret, else_label);
7211 DECL_ANCHOR(else_seq);
7212 INIT_ANCHOR(else_seq);
7213 CHECK(COMPILE_(else_seq,
"else", node_else, popped));
7215 if (then_label->refcnt) {
7216 const NODE *
const coverage_node = node_else ? node_else : node;
7217 add_trace_branch_coverage(
7220 nd_code_loc(coverage_node),
7221 nd_node_id(coverage_node),
7223 type == NODE_IF ?
"else" :
"then",
7226 ADD_SEQ(ret, else_seq);
7230 ADD_LABEL(ret, end_label);
7240 const NODE *node = orig_node;
7241 LABEL *endlabel, *elselabel;
7243 DECL_ANCHOR(body_seq);
7244 DECL_ANCHOR(cond_seq);
7245 int only_special_literals = 1;
7246 VALUE literals = cdhash_new(0);
7248 enum node_type
type;
7249 const NODE *line_node;
7254 INIT_ANCHOR(body_seq);
7255 INIT_ANCHOR(cond_seq);
7257 CHECK(COMPILE(head,
"case base", RNODE_CASE(node)->nd_head));
7259 branches = decl_branch_base(iseq, nd_node_id(node), nd_code_loc(node),
"case");
7261 node = RNODE_CASE(node)->nd_body;
7262 EXPECT_NODE(
"NODE_CASE", node, NODE_WHEN, COMPILE_NG);
7263 type = nd_type(node);
7264 line = nd_line(node);
7267 endlabel = NEW_LABEL(line);
7268 elselabel = NEW_LABEL(line);
7272 while (
type == NODE_WHEN) {
7275 l1 = NEW_LABEL(line);
7276 ADD_LABEL(body_seq, l1);
7277 ADD_INSN(body_seq, line_node, pop);
7279 const NODE *
const coverage_node = RNODE_WHEN(node)->nd_body ? RNODE_WHEN(node)->nd_body : node;
7280 add_trace_branch_coverage(
7283 nd_code_loc(coverage_node),
7284 nd_node_id(coverage_node),
7289 CHECK(COMPILE_(body_seq,
"when body", RNODE_WHEN(node)->nd_body, popped));
7290 ADD_INSNL(body_seq, line_node, jump, endlabel);
7292 vals = RNODE_WHEN(node)->nd_head;
7294 switch (nd_type(vals)) {
7296 only_special_literals = when_vals(iseq, cond_seq, vals, l1, only_special_literals, literals);
7297 if (only_special_literals < 0)
return COMPILE_NG;
7302 only_special_literals = 0;
7303 CHECK(when_splat_vals(iseq, cond_seq, vals, l1, only_special_literals, literals));
7306 UNKNOWN_NODE(
"NODE_CASE", vals, COMPILE_NG);
7310 EXPECT_NODE_NONULL(
"NODE_CASE", node, NODE_LIST, COMPILE_NG);
7313 node = RNODE_WHEN(node)->nd_next;
7317 type = nd_type(node);
7318 line = nd_line(node);
7323 ADD_LABEL(cond_seq, elselabel);
7324 ADD_INSN(cond_seq, line_node, pop);
7325 add_trace_branch_coverage(iseq, cond_seq, nd_code_loc(node), nd_node_id(node), branch_id,
"else", branches);
7326 CHECK(COMPILE_(cond_seq,
"else", node, popped));
7327 ADD_INSNL(cond_seq, line_node, jump, endlabel);
7330 debugs(
"== else (implicit)\n");
7331 ADD_LABEL(cond_seq, elselabel);
7332 ADD_INSN(cond_seq, orig_node, pop);
7333 add_trace_branch_coverage(iseq, cond_seq, nd_code_loc(orig_node), nd_node_id(orig_node), branch_id,
"else", branches);
7335 ADD_INSN(cond_seq, orig_node, putnil);
7337 ADD_INSNL(cond_seq, orig_node, jump, endlabel);
7340 if (only_special_literals && ISEQ_COMPILE_DATA(iseq)->option->specialized_instruction) {
7341 ADD_INSN(ret, orig_node, dup);
7342 ADD_INSN2(ret, orig_node, opt_case_dispatch, literals, elselabel);
7344 LABEL_REF(elselabel);
7347 ADD_SEQ(ret, cond_seq);
7348 ADD_SEQ(ret, body_seq);
7349 ADD_LABEL(ret, endlabel);
7358 const NODE *node = RNODE_CASE2(orig_node)->nd_body;
7360 DECL_ANCHOR(body_seq);
7364 branches = decl_branch_base(iseq, nd_node_id(orig_node), nd_code_loc(orig_node),
"case");
7366 INIT_ANCHOR(body_seq);
7367 endlabel = NEW_LABEL(nd_line(node));
7369 while (node && nd_type_p(node, NODE_WHEN)) {
7370 const int line = nd_line(node);
7371 LABEL *l1 = NEW_LABEL(line);
7372 ADD_LABEL(body_seq, l1);
7374 const NODE *
const coverage_node = RNODE_WHEN(node)->nd_body ? RNODE_WHEN(node)->nd_body : node;
7375 add_trace_branch_coverage(
7378 nd_code_loc(coverage_node),
7379 nd_node_id(coverage_node),
7384 CHECK(COMPILE_(body_seq,
"when", RNODE_WHEN(node)->nd_body, popped));
7385 ADD_INSNL(body_seq, node, jump, endlabel);
7387 vals = RNODE_WHEN(node)->nd_head;
7389 EXPECT_NODE_NONULL(
"NODE_WHEN", node, NODE_LIST, COMPILE_NG);
7391 switch (nd_type(vals)) {
7395 val = RNODE_LIST(vals)->nd_head;
7396 lnext = NEW_LABEL(nd_line(val));
7397 debug_compile(
"== when2\n", (
void)0);
7398 CHECK(compile_branch_condition(iseq, ret, val, l1, lnext));
7399 ADD_LABEL(ret, lnext);
7400 vals = RNODE_LIST(vals)->nd_next;
7406 ADD_INSN(ret, vals, putnil);
7407 CHECK(COMPILE(ret,
"when2/cond splat", vals));
7408 ADD_INSN1(ret, vals, checkmatch,
INT2FIX(VM_CHECKMATCH_TYPE_WHEN | VM_CHECKMATCH_ARRAY));
7409 ADD_INSNL(ret, vals, branchif, l1);
7412 UNKNOWN_NODE(
"NODE_WHEN", vals, COMPILE_NG);
7414 node = RNODE_WHEN(node)->nd_next;
7417 const NODE *
const coverage_node = node ? node : orig_node;
7418 add_trace_branch_coverage(
7421 nd_code_loc(coverage_node),
7422 nd_node_id(coverage_node),
7426 CHECK(COMPILE_(ret,
"else", node, popped));
7427 ADD_INSNL(ret, orig_node, jump, endlabel);
7429 ADD_SEQ(ret, body_seq);
7430 ADD_LABEL(ret, endlabel);
7434static int iseq_compile_pattern_match(
rb_iseq_t *iseq,
LINK_ANCHOR *
const ret,
const NODE *
const node,
LABEL *unmatched,
bool in_single_pattern,
bool in_alt_pattern,
int base_index,
bool use_deconstructed_cache);
7436static int iseq_compile_pattern_constant(
rb_iseq_t *iseq,
LINK_ANCHOR *
const ret,
const NODE *
const node,
LABEL *match_failed,
bool in_single_pattern,
int base_index);
7437static int iseq_compile_array_deconstruct(
rb_iseq_t *iseq,
LINK_ANCHOR *
const ret,
const NODE *
const node,
LABEL *deconstruct,
LABEL *deconstructed,
LABEL *match_failed,
LABEL *type_error,
bool in_single_pattern,
int base_index,
bool use_deconstructed_cache);
7438static int iseq_compile_pattern_set_general_errmsg(
rb_iseq_t *iseq,
LINK_ANCHOR *
const ret,
const NODE *
const node,
VALUE errmsg,
int base_index);
7439static int iseq_compile_pattern_set_length_errmsg(
rb_iseq_t *iseq,
LINK_ANCHOR *
const ret,
const NODE *
const node,
VALUE errmsg,
VALUE pattern_length,
int base_index);
7440static int iseq_compile_pattern_set_eqq_errmsg(
rb_iseq_t *iseq,
LINK_ANCHOR *
const ret,
const NODE *
const node,
int base_index);
7442#define CASE3_BI_OFFSET_DECONSTRUCTED_CACHE 0
7443#define CASE3_BI_OFFSET_ERROR_STRING 1
7444#define CASE3_BI_OFFSET_KEY_ERROR_P 2
7445#define CASE3_BI_OFFSET_KEY_ERROR_MATCHEE 3
7446#define CASE3_BI_OFFSET_KEY_ERROR_KEY 4
7449iseq_compile_pattern_each(
rb_iseq_t *iseq,
LINK_ANCHOR *
const ret,
const NODE *
const node,
LABEL *matched,
LABEL *unmatched,
bool in_single_pattern,
bool in_alt_pattern,
int base_index,
bool use_deconstructed_cache)
7451 const int line = nd_line(node);
7452 const NODE *line_node = node;
7454 switch (nd_type(node)) {
7508 const NODE *args = RNODE_ARYPTN(node)->pre_args;
7509 const int pre_args_num = RNODE_ARYPTN(node)->pre_args ?
rb_long2int(RNODE_LIST(RNODE_ARYPTN(node)->pre_args)->as.nd_alen) : 0;
7510 const int post_args_num = RNODE_ARYPTN(node)->post_args ?
rb_long2int(RNODE_LIST(RNODE_ARYPTN(node)->post_args)->as.nd_alen) : 0;
7512 const int min_argc = pre_args_num + post_args_num;
7513 const int use_rest_num = RNODE_ARYPTN(node)->rest_arg && (NODE_NAMED_REST_P(RNODE_ARYPTN(node)->rest_arg) ||
7514 (!NODE_NAMED_REST_P(RNODE_ARYPTN(node)->rest_arg) && post_args_num > 0));
7516 LABEL *match_failed, *type_error, *deconstruct, *deconstructed;
7518 match_failed = NEW_LABEL(line);
7519 type_error = NEW_LABEL(line);
7520 deconstruct = NEW_LABEL(line);
7521 deconstructed = NEW_LABEL(line);
7524 ADD_INSN1(ret, line_node, putobject,
INT2FIX(0));
7525 ADD_INSN(ret, line_node, swap);
7531 CHECK(iseq_compile_pattern_constant(iseq, ret, node, match_failed, in_single_pattern, base_index));
7533 CHECK(iseq_compile_array_deconstruct(iseq, ret, node, deconstruct, deconstructed, match_failed, type_error, in_single_pattern, base_index, use_deconstructed_cache));
7535 ADD_INSN(ret, line_node, dup);
7536 ADD_SEND(ret, line_node, idLength,
INT2FIX(0));
7537 ADD_INSN1(ret, line_node, putobject,
INT2FIX(min_argc));
7538 ADD_SEND(ret, line_node, RNODE_ARYPTN(node)->rest_arg ? idGE : idEq,
INT2FIX(1));
7539 if (in_single_pattern) {
7540 CHECK(iseq_compile_pattern_set_length_errmsg(iseq, ret, node,
7541 RNODE_ARYPTN(node)->rest_arg ? rb_fstring_lit(
"%p length mismatch (given %p, expected %p+)") :
7542 rb_fstring_lit(
"%p length mismatch (given %p, expected %p)"),
7543 INT2FIX(min_argc), base_index + 1 ));
7545 ADD_INSNL(ret, line_node, branchunless, match_failed);
7547 for (i = 0; i < pre_args_num; i++) {
7548 ADD_INSN(ret, line_node, dup);
7549 ADD_INSN1(ret, line_node, putobject,
INT2FIX(i));
7550 ADD_SEND(ret, line_node, idAREF,
INT2FIX(1));
7551 CHECK(iseq_compile_pattern_match(iseq, ret, RNODE_LIST(args)->nd_head, match_failed, in_single_pattern, in_alt_pattern, base_index + 1 ,
false));
7552 args = RNODE_LIST(args)->nd_next;
7555 if (RNODE_ARYPTN(node)->rest_arg) {
7556 if (NODE_NAMED_REST_P(RNODE_ARYPTN(node)->rest_arg)) {
7557 ADD_INSN(ret, line_node, dup);
7558 ADD_INSN1(ret, line_node, putobject,
INT2FIX(pre_args_num));
7559 ADD_INSN1(ret, line_node, topn,
INT2FIX(1));
7560 ADD_SEND(ret, line_node, idLength,
INT2FIX(0));
7561 ADD_INSN1(ret, line_node, putobject,
INT2FIX(min_argc));
7562 ADD_SEND(ret, line_node, idMINUS,
INT2FIX(1));
7563 ADD_INSN1(ret, line_node, setn,
INT2FIX(4));
7564 ADD_SEND(ret, line_node, idAREF,
INT2FIX(2));
7566 CHECK(iseq_compile_pattern_match(iseq, ret, RNODE_ARYPTN(node)->rest_arg, match_failed, in_single_pattern, in_alt_pattern, base_index + 1 ,
false));
7569 if (post_args_num > 0) {
7570 ADD_INSN(ret, line_node, dup);
7571 ADD_SEND(ret, line_node, idLength,
INT2FIX(0));
7572 ADD_INSN1(ret, line_node, putobject,
INT2FIX(min_argc));
7573 ADD_SEND(ret, line_node, idMINUS,
INT2FIX(1));
7574 ADD_INSN1(ret, line_node, setn,
INT2FIX(2));
7575 ADD_INSN(ret, line_node, pop);
7580 args = RNODE_ARYPTN(node)->post_args;
7581 for (i = 0; i < post_args_num; i++) {
7582 ADD_INSN(ret, line_node, dup);
7584 ADD_INSN1(ret, line_node, putobject,
INT2FIX(pre_args_num + i));
7585 ADD_INSN1(ret, line_node, topn,
INT2FIX(3));
7586 ADD_SEND(ret, line_node, idPLUS,
INT2FIX(1));
7588 ADD_SEND(ret, line_node, idAREF,
INT2FIX(1));
7589 CHECK(iseq_compile_pattern_match(iseq, ret, RNODE_LIST(args)->nd_head, match_failed, in_single_pattern, in_alt_pattern, base_index + 1 ,
false));
7590 args = RNODE_LIST(args)->nd_next;
7593 ADD_INSN(ret, line_node, pop);
7595 ADD_INSN(ret, line_node, pop);
7597 ADD_INSNL(ret, line_node, jump, matched);
7598 ADD_INSN(ret, line_node, putnil);
7600 ADD_INSN(ret, line_node, putnil);
7603 ADD_LABEL(ret, type_error);
7604 ADD_INSN1(ret, line_node, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
7606 ADD_INSN1(ret, line_node, putobject, rb_fstring_lit(
"deconstruct must return Array"));
7607 ADD_SEND(ret, line_node, id_core_raise,
INT2FIX(2));
7608 ADD_INSN(ret, line_node, pop);
7610 ADD_LABEL(ret, match_failed);
7611 ADD_INSN(ret, line_node, pop);
7613 ADD_INSN(ret, line_node, pop);
7615 ADD_INSNL(ret, line_node, jump, unmatched);
7668 const NODE *args = RNODE_FNDPTN(node)->args;
7669 const int args_num = RNODE_FNDPTN(node)->args ?
rb_long2int(RNODE_LIST(RNODE_FNDPTN(node)->args)->as.nd_alen) : 0;
7671 LABEL *match_failed, *type_error, *deconstruct, *deconstructed;
7672 match_failed = NEW_LABEL(line);
7673 type_error = NEW_LABEL(line);
7674 deconstruct = NEW_LABEL(line);
7675 deconstructed = NEW_LABEL(line);
7677 CHECK(iseq_compile_pattern_constant(iseq, ret, node, match_failed, in_single_pattern, base_index));
7679 CHECK(iseq_compile_array_deconstruct(iseq, ret, node, deconstruct, deconstructed, match_failed, type_error, in_single_pattern, base_index, use_deconstructed_cache));
7681 ADD_INSN(ret, line_node, dup);
7682 ADD_SEND(ret, line_node, idLength,
INT2FIX(0));
7683 ADD_INSN1(ret, line_node, putobject,
INT2FIX(args_num));
7684 ADD_SEND(ret, line_node, idGE,
INT2FIX(1));
7685 if (in_single_pattern) {
7686 CHECK(iseq_compile_pattern_set_length_errmsg(iseq, ret, node, rb_fstring_lit(
"%p length mismatch (given %p, expected %p+)"),
INT2FIX(args_num), base_index + 1 ));
7688 ADD_INSNL(ret, line_node, branchunless, match_failed);
7691 LABEL *while_begin = NEW_LABEL(nd_line(node));
7692 LABEL *next_loop = NEW_LABEL(nd_line(node));
7693 LABEL *find_succeeded = NEW_LABEL(line);
7694 LABEL *find_failed = NEW_LABEL(nd_line(node));
7697 ADD_INSN(ret, line_node, dup);
7698 ADD_SEND(ret, line_node, idLength,
INT2FIX(0));
7700 ADD_INSN(ret, line_node, dup);
7701 ADD_INSN1(ret, line_node, putobject,
INT2FIX(args_num));
7702 ADD_SEND(ret, line_node, idMINUS,
INT2FIX(1));
7704 ADD_INSN1(ret, line_node, putobject,
INT2FIX(0));
7706 ADD_LABEL(ret, while_begin);
7708 ADD_INSN(ret, line_node, dup);
7709 ADD_INSN1(ret, line_node, topn,
INT2FIX(2));
7710 ADD_SEND(ret, line_node, idLE,
INT2FIX(1));
7711 ADD_INSNL(ret, line_node, branchunless, find_failed);
7713 for (j = 0; j < args_num; j++) {
7714 ADD_INSN1(ret, line_node, topn,
INT2FIX(3));
7715 ADD_INSN1(ret, line_node, topn,
INT2FIX(1));
7717 ADD_INSN1(ret, line_node, putobject,
INT2FIX(j));
7718 ADD_SEND(ret, line_node, idPLUS,
INT2FIX(1));
7720 ADD_SEND(ret, line_node, idAREF,
INT2FIX(1));
7722 CHECK(iseq_compile_pattern_match(iseq, ret, RNODE_LIST(args)->nd_head, next_loop, in_single_pattern, in_alt_pattern, base_index + 4 ,
false));
7723 args = RNODE_LIST(args)->nd_next;
7726 if (NODE_NAMED_REST_P(RNODE_FNDPTN(node)->pre_rest_arg)) {
7727 ADD_INSN1(ret, line_node, topn,
INT2FIX(3));
7728 ADD_INSN1(ret, line_node, putobject,
INT2FIX(0));
7729 ADD_INSN1(ret, line_node, topn,
INT2FIX(2));
7730 ADD_SEND(ret, line_node, idAREF,
INT2FIX(2));
7731 CHECK(iseq_compile_pattern_match(iseq, ret, RNODE_FNDPTN(node)->pre_rest_arg, find_failed, in_single_pattern, in_alt_pattern, base_index + 4 ,
false));
7733 if (NODE_NAMED_REST_P(RNODE_FNDPTN(node)->post_rest_arg)) {
7734 ADD_INSN1(ret, line_node, topn,
INT2FIX(3));
7735 ADD_INSN1(ret, line_node, topn,
INT2FIX(1));
7736 ADD_INSN1(ret, line_node, putobject,
INT2FIX(args_num));
7737 ADD_SEND(ret, line_node, idPLUS,
INT2FIX(1));
7738 ADD_INSN1(ret, line_node, topn,
INT2FIX(3));
7739 ADD_SEND(ret, line_node, idAREF,
INT2FIX(2));
7740 CHECK(iseq_compile_pattern_match(iseq, ret, RNODE_FNDPTN(node)->post_rest_arg, find_failed, in_single_pattern, in_alt_pattern, base_index + 4 ,
false));
7742 ADD_INSNL(ret, line_node, jump, find_succeeded);
7744 ADD_LABEL(ret, next_loop);
7745 ADD_INSN1(ret, line_node, putobject,
INT2FIX(1));
7746 ADD_SEND(ret, line_node, idPLUS,
INT2FIX(1));
7747 ADD_INSNL(ret, line_node, jump, while_begin);
7749 ADD_LABEL(ret, find_failed);
7750 ADD_INSN1(ret, line_node, adjuststack,
INT2FIX(3));
7751 if (in_single_pattern) {
7752 ADD_INSN1(ret, line_node, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
7753 ADD_INSN1(ret, line_node, putobject, rb_fstring_lit(
"%p does not match to find pattern"));
7754 ADD_INSN1(ret, line_node, topn,
INT2FIX(2));
7755 ADD_SEND(ret, line_node, id_core_sprintf,
INT2FIX(2));
7756 ADD_INSN1(ret, line_node, setn,
INT2FIX(base_index + CASE3_BI_OFFSET_ERROR_STRING + 1 ));
7758 ADD_INSN1(ret, line_node, putobject,
Qfalse);
7759 ADD_INSN1(ret, line_node, setn,
INT2FIX(base_index + CASE3_BI_OFFSET_KEY_ERROR_P + 2 ));
7761 ADD_INSN(ret, line_node, pop);
7762 ADD_INSN(ret, line_node, pop);
7764 ADD_INSNL(ret, line_node, jump, match_failed);
7765 ADD_INSN1(ret, line_node, dupn,
INT2FIX(3));
7767 ADD_LABEL(ret, find_succeeded);
7768 ADD_INSN1(ret, line_node, adjuststack,
INT2FIX(3));
7771 ADD_INSN(ret, line_node, pop);
7772 ADD_INSNL(ret, line_node, jump, matched);
7773 ADD_INSN(ret, line_node, putnil);
7775 ADD_LABEL(ret, type_error);
7776 ADD_INSN1(ret, line_node, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
7778 ADD_INSN1(ret, line_node, putobject, rb_fstring_lit(
"deconstruct must return Array"));
7779 ADD_SEND(ret, line_node, id_core_raise,
INT2FIX(2));
7780 ADD_INSN(ret, line_node, pop);
7782 ADD_LABEL(ret, match_failed);
7783 ADD_INSN(ret, line_node, pop);
7784 ADD_INSNL(ret, line_node, jump, unmatched);
7848 LABEL *match_failed, *type_error;
7851 match_failed = NEW_LABEL(line);
7852 type_error = NEW_LABEL(line);
7854 if (RNODE_HSHPTN(node)->nd_pkwargs && !RNODE_HSHPTN(node)->nd_pkwrestarg) {
7855 const NODE *kw_args = RNODE_HASH(RNODE_HSHPTN(node)->nd_pkwargs)->nd_head;
7856 keys =
rb_ary_new_capa(kw_args ? RNODE_LIST(kw_args)->as.nd_alen/2 : 0);
7858 rb_ary_push(keys, get_symbol_value(iseq, RNODE_LIST(kw_args)->nd_head));
7859 kw_args = RNODE_LIST(RNODE_LIST(kw_args)->nd_next)->nd_next;
7863 CHECK(iseq_compile_pattern_constant(iseq, ret, node, match_failed, in_single_pattern, base_index));
7865 ADD_INSN(ret, line_node, dup);
7866 ADD_INSN1(ret, line_node, putobject,
ID2SYM(rb_intern(
"deconstruct_keys")));
7867 ADD_SEND(ret, line_node, idRespond_to,
INT2FIX(1));
7868 if (in_single_pattern) {
7869 CHECK(iseq_compile_pattern_set_general_errmsg(iseq, ret, node, rb_fstring_lit(
"%p does not respond to #deconstruct_keys"), base_index + 1 ));
7871 ADD_INSNL(ret, line_node, branchunless, match_failed);
7874 ADD_INSN(ret, line_node, putnil);
7878 ADD_INSN1(ret, line_node, duparray, keys);
7881 ADD_SEND(ret, line_node, rb_intern(
"deconstruct_keys"),
INT2FIX(1));
7883 ADD_INSN(ret, line_node, dup);
7885 ADD_INSNL(ret, line_node, branchunless, type_error);
7887 if (RNODE_HSHPTN(node)->nd_pkwrestarg) {
7888 ADD_SEND(ret, line_node, rb_intern(
"dup"),
INT2FIX(0));
7891 if (RNODE_HSHPTN(node)->nd_pkwargs) {
7895 args = RNODE_HASH(RNODE_HSHPTN(node)->nd_pkwargs)->nd_head;
7897 DECL_ANCHOR(match_values);
7898 INIT_ANCHOR(match_values);
7899 keys_num =
rb_long2int(RNODE_LIST(args)->as.nd_alen) / 2;
7900 for (i = 0; i < keys_num; i++) {
7901 NODE *key_node = RNODE_LIST(args)->nd_head;
7902 NODE *value_node = RNODE_LIST(RNODE_LIST(args)->nd_next)->nd_head;
7903 VALUE key = get_symbol_value(iseq, key_node);
7905 ADD_INSN(ret, line_node, dup);
7906 ADD_INSN1(ret, line_node, putobject, key);
7907 ADD_SEND(ret, line_node, rb_intern(
"key?"),
INT2FIX(1));
7908 if (in_single_pattern) {
7909 LABEL *match_succeeded;
7910 match_succeeded = NEW_LABEL(line);
7912 ADD_INSN(ret, line_node, dup);
7913 ADD_INSNL(ret, line_node, branchif, match_succeeded);
7917 ADD_INSN1(ret, line_node, setn,
INT2FIX(base_index + CASE3_BI_OFFSET_ERROR_STRING + 2 ));
7918 ADD_INSN1(ret, line_node, putobject,
Qtrue);
7919 ADD_INSN1(ret, line_node, setn,
INT2FIX(base_index + CASE3_BI_OFFSET_KEY_ERROR_P + 3 ));
7920 ADD_INSN1(ret, line_node, topn,
INT2FIX(3));
7921 ADD_INSN1(ret, line_node, setn,
INT2FIX(base_index + CASE3_BI_OFFSET_KEY_ERROR_MATCHEE + 4 ));
7922 ADD_INSN1(ret, line_node, putobject, key);
7923 ADD_INSN1(ret, line_node, setn,
INT2FIX(base_index + CASE3_BI_OFFSET_KEY_ERROR_KEY + 5 ));
7925 ADD_INSN1(ret, line_node, adjuststack,
INT2FIX(4));
7927 ADD_LABEL(ret, match_succeeded);
7929 ADD_INSNL(ret, line_node, branchunless, match_failed);
7931 ADD_INSN(match_values, line_node, dup);
7932 ADD_INSN1(match_values, line_node, putobject, key);
7933 ADD_SEND(match_values, line_node, RNODE_HSHPTN(node)->nd_pkwrestarg ? rb_intern(
"delete") : idAREF,
INT2FIX(1));
7934 CHECK(iseq_compile_pattern_match(iseq, match_values, value_node, match_failed, in_single_pattern, in_alt_pattern, base_index + 1 ,
false));
7935 args = RNODE_LIST(RNODE_LIST(args)->nd_next)->nd_next;
7937 ADD_SEQ(ret, match_values);
7941 ADD_INSN(ret, line_node, dup);
7942 ADD_SEND(ret, line_node, idEmptyP,
INT2FIX(0));
7943 if (in_single_pattern) {
7944 CHECK(iseq_compile_pattern_set_general_errmsg(iseq, ret, node, rb_fstring_lit(
"%p is not empty"), base_index + 1 ));
7946 ADD_INSNL(ret, line_node, branchunless, match_failed);
7949 if (RNODE_HSHPTN(node)->nd_pkwrestarg) {
7950 if (RNODE_HSHPTN(node)->nd_pkwrestarg == NODE_SPECIAL_NO_REST_KEYWORD) {
7951 ADD_INSN(ret, line_node, dup);
7952 ADD_SEND(ret, line_node, idEmptyP,
INT2FIX(0));
7953 if (in_single_pattern) {
7954 CHECK(iseq_compile_pattern_set_general_errmsg(iseq, ret, node, rb_fstring_lit(
"rest of %p is not empty"), base_index + 1 ));
7956 ADD_INSNL(ret, line_node, branchunless, match_failed);
7959 ADD_INSN(ret, line_node, dup);
7960 CHECK(iseq_compile_pattern_match(iseq, ret, RNODE_HSHPTN(node)->nd_pkwrestarg, match_failed, in_single_pattern, in_alt_pattern, base_index + 1 ,
false));
7964 ADD_INSN(ret, line_node, pop);
7965 ADD_INSNL(ret, line_node, jump, matched);
7966 ADD_INSN(ret, line_node, putnil);
7968 ADD_LABEL(ret, type_error);
7969 ADD_INSN1(ret, line_node, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
7971 ADD_INSN1(ret, line_node, putobject, rb_fstring_lit(
"deconstruct_keys must return Hash"));
7972 ADD_SEND(ret, line_node, id_core_raise,
INT2FIX(2));
7973 ADD_INSN(ret, line_node, pop);
7975 ADD_LABEL(ret, match_failed);
7976 ADD_INSN(ret, line_node, pop);
7977 ADD_INSNL(ret, line_node, jump, unmatched);
7986 case NODE_IMAGINARY:
8014 CHECK(COMPILE(ret,
"case in literal", node));
8015 if (in_single_pattern) {
8016 ADD_INSN1(ret, line_node, dupn,
INT2FIX(2));
8018 ADD_INSN1(ret, line_node, checkmatch,
INT2FIX(VM_CHECKMATCH_TYPE_CASE));
8019 if (in_single_pattern) {
8020 CHECK(iseq_compile_pattern_set_eqq_errmsg(iseq, ret, node, base_index + 2 ));
8022 ADD_INSNL(ret, line_node, branchif, matched);
8023 ADD_INSNL(ret, line_node, jump, unmatched);
8027 ID id = RNODE_LASGN(node)->nd_vid;
8028 int idx = ISEQ_BODY(body->local_iseq)->local_table_size - get_local_var_idx(iseq,
id);
8030 if (in_alt_pattern) {
8031 const char *name = rb_id2name(
id);
8032 if (name && strlen(name) > 0 && name[0] !=
'_') {
8033 COMPILE_ERROR(ERROR_ARGS
"illegal variable in alternative pattern (%"PRIsVALUE
")",
8039 ADD_SETLOCAL(ret, line_node, idx, get_lvar_level(iseq));
8040 ADD_INSNL(ret, line_node, jump, matched);
8045 ID id = RNODE_DASGN(node)->nd_vid;
8047 idx = get_dyna_var_idx(iseq,
id, &lv, &ls);
8049 if (in_alt_pattern) {
8050 const char *name = rb_id2name(
id);
8051 if (name && strlen(name) > 0 && name[0] !=
'_') {
8052 COMPILE_ERROR(ERROR_ARGS
"illegal variable in alternative pattern (%"PRIsVALUE
")",
8059 COMPILE_ERROR(ERROR_ARGS
"NODE_DASGN: unknown id (%"PRIsVALUE
")",
8063 ADD_SETLOCAL(ret, line_node, ls - idx, lv);
8064 ADD_INSNL(ret, line_node, jump, matched);
8069 LABEL *match_failed;
8070 match_failed = unmatched;
8071 CHECK(iseq_compile_pattern_match(iseq, ret, RNODE_IF(node)->nd_body, unmatched, in_single_pattern, in_alt_pattern, base_index, use_deconstructed_cache));
8072 CHECK(COMPILE(ret,
"case in if", RNODE_IF(node)->nd_cond));
8073 if (in_single_pattern) {
8074 LABEL *match_succeeded;
8075 match_succeeded = NEW_LABEL(line);
8077 ADD_INSN(ret, line_node, dup);
8078 if (nd_type_p(node, NODE_IF)) {
8079 ADD_INSNL(ret, line_node, branchif, match_succeeded);
8082 ADD_INSNL(ret, line_node, branchunless, match_succeeded);
8085 ADD_INSN1(ret, line_node, putobject, rb_fstring_lit(
"guard clause does not return true"));
8086 ADD_INSN1(ret, line_node, setn,
INT2FIX(base_index + CASE3_BI_OFFSET_ERROR_STRING + 1 ));
8087 ADD_INSN1(ret, line_node, putobject,
Qfalse);
8088 ADD_INSN1(ret, line_node, setn,
INT2FIX(base_index + CASE3_BI_OFFSET_KEY_ERROR_P + 2 ));
8090 ADD_INSN(ret, line_node, pop);
8091 ADD_INSN(ret, line_node, pop);
8093 ADD_LABEL(ret, match_succeeded);
8095 if (nd_type_p(node, NODE_IF)) {
8096 ADD_INSNL(ret, line_node, branchunless, match_failed);
8099 ADD_INSNL(ret, line_node, branchif, match_failed);
8101 ADD_INSNL(ret, line_node, jump, matched);
8106 LABEL *match_failed;
8107 match_failed = NEW_LABEL(line);
8109 n = RNODE_HASH(node)->nd_head;
8110 if (! (nd_type_p(n, NODE_LIST) && RNODE_LIST(n)->as.nd_alen == 2)) {
8111 COMPILE_ERROR(ERROR_ARGS
"unexpected node");
8115 ADD_INSN(ret, line_node, dup);
8116 CHECK(iseq_compile_pattern_match(iseq, ret, RNODE_LIST(n)->nd_head, match_failed, in_single_pattern, in_alt_pattern, base_index + 1 , use_deconstructed_cache));
8117 CHECK(iseq_compile_pattern_each(iseq, ret, RNODE_LIST(RNODE_LIST(n)->nd_next)->nd_head, matched, match_failed, in_single_pattern, in_alt_pattern, base_index,
false));
8118 ADD_INSN(ret, line_node, putnil);
8120 ADD_LABEL(ret, match_failed);
8121 ADD_INSN(ret, line_node, pop);
8122 ADD_INSNL(ret, line_node, jump, unmatched);
8126 LABEL *match_succeeded, *fin;
8127 match_succeeded = NEW_LABEL(line);
8128 fin = NEW_LABEL(line);
8130 ADD_INSN(ret, line_node, dup);
8131 CHECK(iseq_compile_pattern_each(iseq, ret, RNODE_OR(node)->nd_1st, match_succeeded, fin, in_single_pattern,
true, base_index + 1 , use_deconstructed_cache));
8132 ADD_LABEL(ret, match_succeeded);
8133 ADD_INSN(ret, line_node, pop);
8134 ADD_INSNL(ret, line_node, jump, matched);
8135 ADD_INSN(ret, line_node, putnil);
8136 ADD_LABEL(ret, fin);
8137 CHECK(iseq_compile_pattern_each(iseq, ret, RNODE_OR(node)->nd_2nd, matched, unmatched, in_single_pattern,
true, base_index, use_deconstructed_cache));
8141 UNKNOWN_NODE(
"NODE_IN", node, COMPILE_NG);
8147iseq_compile_pattern_match(
rb_iseq_t *iseq,
LINK_ANCHOR *
const ret,
const NODE *
const node,
LABEL *unmatched,
bool in_single_pattern,
bool in_alt_pattern,
int base_index,
bool use_deconstructed_cache)
8149 LABEL *fin = NEW_LABEL(nd_line(node));
8150 CHECK(iseq_compile_pattern_each(iseq, ret, node, fin, unmatched, in_single_pattern, in_alt_pattern, base_index, use_deconstructed_cache));
8151 ADD_LABEL(ret, fin);
8156iseq_compile_pattern_constant(
rb_iseq_t *iseq,
LINK_ANCHOR *
const ret,
const NODE *
const node,
LABEL *match_failed,
bool in_single_pattern,
int base_index)
8158 const NODE *line_node = node;
8160 if (RNODE_ARYPTN(node)->nd_pconst) {
8161 ADD_INSN(ret, line_node, dup);
8162 CHECK(COMPILE(ret,
"constant", RNODE_ARYPTN(node)->nd_pconst));
8163 if (in_single_pattern) {
8164 ADD_INSN1(ret, line_node, dupn,
INT2FIX(2));
8166 ADD_INSN1(ret, line_node, checkmatch,
INT2FIX(VM_CHECKMATCH_TYPE_CASE));
8167 if (in_single_pattern) {
8168 CHECK(iseq_compile_pattern_set_eqq_errmsg(iseq, ret, node, base_index + 3 ));
8170 ADD_INSNL(ret, line_node, branchunless, match_failed);
8177iseq_compile_array_deconstruct(
rb_iseq_t *iseq,
LINK_ANCHOR *
const ret,
const NODE *
const node,
LABEL *deconstruct,
LABEL *deconstructed,
LABEL *match_failed,
LABEL *type_error,
bool in_single_pattern,
int base_index,
bool use_deconstructed_cache)
8179 const NODE *line_node = node;
8183 if (use_deconstructed_cache) {
8185 ADD_INSN1(ret, line_node, topn,
INT2FIX(base_index + CASE3_BI_OFFSET_DECONSTRUCTED_CACHE));
8186 ADD_INSNL(ret, line_node, branchnil, deconstruct);
8189 ADD_INSN1(ret, line_node, topn,
INT2FIX(base_index + CASE3_BI_OFFSET_DECONSTRUCTED_CACHE));
8190 ADD_INSNL(ret, line_node, branchunless, match_failed);
8193 ADD_INSN(ret, line_node, pop);
8194 ADD_INSN1(ret, line_node, topn,
INT2FIX(base_index + CASE3_BI_OFFSET_DECONSTRUCTED_CACHE - 1 ));
8195 ADD_INSNL(ret, line_node, jump, deconstructed);
8198 ADD_INSNL(ret, line_node, jump, deconstruct);
8201 ADD_LABEL(ret, deconstruct);
8202 ADD_INSN(ret, line_node, dup);
8203 ADD_INSN1(ret, line_node, putobject,
ID2SYM(rb_intern(
"deconstruct")));
8204 ADD_SEND(ret, line_node, idRespond_to,
INT2FIX(1));
8207 if (use_deconstructed_cache) {
8208 ADD_INSN1(ret, line_node, setn,
INT2FIX(base_index + CASE3_BI_OFFSET_DECONSTRUCTED_CACHE + 1 ));
8211 if (in_single_pattern) {
8212 CHECK(iseq_compile_pattern_set_general_errmsg(iseq, ret, node, rb_fstring_lit(
"%p does not respond to #deconstruct"), base_index + 1 ));
8215 ADD_INSNL(ret, line_node, branchunless, match_failed);
8217 ADD_SEND(ret, line_node, rb_intern(
"deconstruct"),
INT2FIX(0));
8220 if (use_deconstructed_cache) {
8221 ADD_INSN1(ret, line_node, setn,
INT2FIX(base_index + CASE3_BI_OFFSET_DECONSTRUCTED_CACHE));
8224 ADD_INSN(ret, line_node, dup);
8226 ADD_INSNL(ret, line_node, branchunless, type_error);
8228 ADD_LABEL(ret, deconstructed);
8244 const int line = nd_line(node);
8245 const NODE *line_node = node;
8246 LABEL *match_succeeded = NEW_LABEL(line);
8248 ADD_INSN(ret, line_node, dup);
8249 ADD_INSNL(ret, line_node, branchif, match_succeeded);
8251 ADD_INSN1(ret, line_node, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
8252 ADD_INSN1(ret, line_node, putobject, errmsg);
8253 ADD_INSN1(ret, line_node, topn,
INT2FIX(3));
8254 ADD_SEND(ret, line_node, id_core_sprintf,
INT2FIX(2));
8255 ADD_INSN1(ret, line_node, setn,
INT2FIX(base_index + CASE3_BI_OFFSET_ERROR_STRING + 1 ));
8257 ADD_INSN1(ret, line_node, putobject,
Qfalse);
8258 ADD_INSN1(ret, line_node, setn,
INT2FIX(base_index + CASE3_BI_OFFSET_KEY_ERROR_P + 2 ));
8260 ADD_INSN(ret, line_node, pop);
8261 ADD_INSN(ret, line_node, pop);
8262 ADD_LABEL(ret, match_succeeded);
8278 const int line = nd_line(node);
8279 const NODE *line_node = node;
8280 LABEL *match_succeeded = NEW_LABEL(line);
8282 ADD_INSN(ret, line_node, dup);
8283 ADD_INSNL(ret, line_node, branchif, match_succeeded);
8285 ADD_INSN1(ret, line_node, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
8286 ADD_INSN1(ret, line_node, putobject, errmsg);
8287 ADD_INSN1(ret, line_node, topn,
INT2FIX(3));
8288 ADD_INSN(ret, line_node, dup);
8289 ADD_SEND(ret, line_node, idLength,
INT2FIX(0));
8290 ADD_INSN1(ret, line_node, putobject, pattern_length);
8291 ADD_SEND(ret, line_node, id_core_sprintf,
INT2FIX(4));
8292 ADD_INSN1(ret, line_node, setn,
INT2FIX(base_index + CASE3_BI_OFFSET_ERROR_STRING + 1 ));
8294 ADD_INSN1(ret, line_node, putobject,
Qfalse);
8295 ADD_INSN1(ret, line_node, setn,
INT2FIX(base_index + CASE3_BI_OFFSET_KEY_ERROR_P + 2));
8297 ADD_INSN(ret, line_node, pop);
8298 ADD_INSN(ret, line_node, pop);
8299 ADD_LABEL(ret, match_succeeded);
8305iseq_compile_pattern_set_eqq_errmsg(
rb_iseq_t *iseq,
LINK_ANCHOR *
const ret,
const NODE *
const node,
int base_index)
8315 const int line = nd_line(node);
8316 const NODE *line_node = node;
8317 LABEL *match_succeeded = NEW_LABEL(line);
8319 ADD_INSN(ret, line_node, dup);
8320 ADD_INSNL(ret, line_node, branchif, match_succeeded);
8322 ADD_INSN1(ret, line_node, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
8323 ADD_INSN1(ret, line_node, putobject, rb_fstring_lit(
"%p === %p does not return true"));
8324 ADD_INSN1(ret, line_node, topn,
INT2FIX(3));
8325 ADD_INSN1(ret, line_node, topn,
INT2FIX(5));
8326 ADD_SEND(ret, line_node, id_core_sprintf,
INT2FIX(3));
8327 ADD_INSN1(ret, line_node, setn,
INT2FIX(base_index + CASE3_BI_OFFSET_ERROR_STRING + 1 ));
8329 ADD_INSN1(ret, line_node, putobject,
Qfalse);
8330 ADD_INSN1(ret, line_node, setn,
INT2FIX(base_index + CASE3_BI_OFFSET_KEY_ERROR_P + 2 ));
8332 ADD_INSN(ret, line_node, pop);
8333 ADD_INSN(ret, line_node, pop);
8335 ADD_LABEL(ret, match_succeeded);
8336 ADD_INSN1(ret, line_node, setn,
INT2FIX(2));
8337 ADD_INSN(ret, line_node, pop);
8338 ADD_INSN(ret, line_node, pop);
8346 const NODE *pattern;
8347 const NODE *node = orig_node;
8348 LABEL *endlabel, *elselabel;
8350 DECL_ANCHOR(body_seq);
8351 DECL_ANCHOR(cond_seq);
8353 enum node_type
type;
8354 const NODE *line_node;
8357 bool single_pattern;
8360 INIT_ANCHOR(body_seq);
8361 INIT_ANCHOR(cond_seq);
8363 branches = decl_branch_base(iseq, nd_node_id(node), nd_code_loc(node),
"case");
8365 node = RNODE_CASE3(node)->nd_body;
8366 EXPECT_NODE(
"NODE_CASE3", node, NODE_IN, COMPILE_NG);
8367 type = nd_type(node);
8368 line = nd_line(node);
8370 single_pattern = !RNODE_IN(node)->nd_next;
8372 endlabel = NEW_LABEL(line);
8373 elselabel = NEW_LABEL(line);
8375 if (single_pattern) {
8377 ADD_INSN(head, line_node, putnil);
8378 ADD_INSN(head, line_node, putnil);
8379 ADD_INSN1(head, line_node, putobject,
Qfalse);
8380 ADD_INSN(head, line_node, putnil);
8382 ADD_INSN(head, line_node, putnil);
8384 CHECK(COMPILE(head,
"case base", RNODE_CASE3(orig_node)->nd_head));
8388 while (
type == NODE_IN) {
8392 ADD_INSN(body_seq, line_node, putnil);
8394 l1 = NEW_LABEL(line);
8395 ADD_LABEL(body_seq, l1);
8396 ADD_INSN1(body_seq, line_node, adjuststack,
INT2FIX(single_pattern ? 6 : 2));
8398 const NODE *
const coverage_node = RNODE_IN(node)->nd_body ? RNODE_IN(node)->nd_body : node;
8399 add_trace_branch_coverage(
8402 nd_code_loc(coverage_node),
8403 nd_node_id(coverage_node),
8408 CHECK(COMPILE_(body_seq,
"in body", RNODE_IN(node)->nd_body, popped));
8409 ADD_INSNL(body_seq, line_node, jump, endlabel);
8411 pattern = RNODE_IN(node)->nd_head;
8413 int pat_line = nd_line(pattern);
8414 LABEL *next_pat = NEW_LABEL(pat_line);
8415 ADD_INSN (cond_seq, pattern, dup);
8417 CHECK(iseq_compile_pattern_each(iseq, cond_seq, pattern, l1, next_pat, single_pattern,
false, 2,
true));
8418 ADD_LABEL(cond_seq, next_pat);
8419 LABEL_UNREMOVABLE(next_pat);
8422 COMPILE_ERROR(ERROR_ARGS
"unexpected node");
8426 node = RNODE_IN(node)->nd_next;
8430 type = nd_type(node);
8431 line = nd_line(node);
8436 ADD_LABEL(cond_seq, elselabel);
8437 ADD_INSN(cond_seq, line_node, pop);
8438 ADD_INSN(cond_seq, line_node, pop);
8439 add_trace_branch_coverage(iseq, cond_seq, nd_code_loc(node), nd_node_id(node), branch_id,
"else", branches);
8440 CHECK(COMPILE_(cond_seq,
"else", node, popped));
8441 ADD_INSNL(cond_seq, line_node, jump, endlabel);
8442 ADD_INSN(cond_seq, line_node, putnil);
8444 ADD_INSN(cond_seq, line_node, putnil);
8448 debugs(
"== else (implicit)\n");
8449 ADD_LABEL(cond_seq, elselabel);
8450 add_trace_branch_coverage(iseq, cond_seq, nd_code_loc(orig_node), nd_node_id(orig_node), branch_id,
"else", branches);
8451 ADD_INSN1(cond_seq, orig_node, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
8453 if (single_pattern) {
8461 LABEL *key_error, *fin;
8464 key_error = NEW_LABEL(line);
8465 fin = NEW_LABEL(line);
8468 kw_arg->references = 0;
8469 kw_arg->keyword_len = 2;
8470 kw_arg->keywords[0] =
ID2SYM(rb_intern(
"matchee"));
8471 kw_arg->keywords[1] =
ID2SYM(rb_intern(
"key"));
8473 ADD_INSN1(cond_seq, orig_node, topn,
INT2FIX(CASE3_BI_OFFSET_KEY_ERROR_P + 2));
8474 ADD_INSNL(cond_seq, orig_node, branchif, key_error);
8476 ADD_INSN1(cond_seq, orig_node, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
8477 ADD_INSN1(cond_seq, orig_node, putobject, rb_fstring_lit(
"%p: %s"));
8478 ADD_INSN1(cond_seq, orig_node, topn,
INT2FIX(4));
8479 ADD_INSN1(cond_seq, orig_node, topn,
INT2FIX(CASE3_BI_OFFSET_ERROR_STRING + 6));
8480 ADD_SEND(cond_seq, orig_node, id_core_sprintf,
INT2FIX(3));
8481 ADD_SEND(cond_seq, orig_node, id_core_raise,
INT2FIX(2));
8482 ADD_INSNL(cond_seq, orig_node, jump, fin);
8484 ADD_LABEL(cond_seq, key_error);
8486 ADD_INSN1(cond_seq, orig_node, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
8487 ADD_INSN1(cond_seq, orig_node, putobject, rb_fstring_lit(
"%p: %s"));
8488 ADD_INSN1(cond_seq, orig_node, topn,
INT2FIX(4));
8489 ADD_INSN1(cond_seq, orig_node, topn,
INT2FIX(CASE3_BI_OFFSET_ERROR_STRING + 6));
8490 ADD_SEND(cond_seq, orig_node, id_core_sprintf,
INT2FIX(3));
8491 ADD_INSN1(cond_seq, orig_node, topn,
INT2FIX(CASE3_BI_OFFSET_KEY_ERROR_MATCHEE + 4));
8492 ADD_INSN1(cond_seq, orig_node, topn,
INT2FIX(CASE3_BI_OFFSET_KEY_ERROR_KEY + 5));
8493 ADD_SEND_R(cond_seq, orig_node, rb_intern(
"new"),
INT2FIX(1), NULL,
INT2FIX(VM_CALL_KWARG), kw_arg);
8494 ADD_SEND(cond_seq, orig_node, id_core_raise,
INT2FIX(1));
8496 ADD_LABEL(cond_seq, fin);
8500 ADD_INSN1(cond_seq, orig_node, topn,
INT2FIX(2));
8501 ADD_SEND(cond_seq, orig_node, id_core_raise,
INT2FIX(2));
8503 ADD_INSN1(cond_seq, orig_node, adjuststack,
INT2FIX(single_pattern ? 7 : 3));
8505 ADD_INSN(cond_seq, orig_node, putnil);
8507 ADD_INSNL(cond_seq, orig_node, jump, endlabel);
8508 ADD_INSN1(cond_seq, orig_node, dupn,
INT2FIX(single_pattern ? 5 : 1));
8510 ADD_INSN(cond_seq, line_node, putnil);
8514 ADD_SEQ(ret, cond_seq);
8515 ADD_SEQ(ret, body_seq);
8516 ADD_LABEL(ret, endlabel);
8520#undef CASE3_BI_OFFSET_DECONSTRUCTED_CACHE
8521#undef CASE3_BI_OFFSET_ERROR_STRING
8522#undef CASE3_BI_OFFSET_KEY_ERROR_P
8523#undef CASE3_BI_OFFSET_KEY_ERROR_MATCHEE
8524#undef CASE3_BI_OFFSET_KEY_ERROR_KEY
8529 const int line = (int)nd_line(node);
8530 const NODE *line_node = node;
8532 LABEL *prev_start_label = ISEQ_COMPILE_DATA(iseq)->start_label;
8533 LABEL *prev_end_label = ISEQ_COMPILE_DATA(iseq)->end_label;
8534 LABEL *prev_redo_label = ISEQ_COMPILE_DATA(iseq)->redo_label;
8535 int prev_loopval_popped = ISEQ_COMPILE_DATA(iseq)->loopval_popped;
8540 LABEL *next_label = ISEQ_COMPILE_DATA(iseq)->start_label = NEW_LABEL(line);
8541 LABEL *redo_label = ISEQ_COMPILE_DATA(iseq)->redo_label = NEW_LABEL(line);
8542 LABEL *break_label = ISEQ_COMPILE_DATA(iseq)->end_label = NEW_LABEL(line);
8543 LABEL *end_label = NEW_LABEL(line);
8544 LABEL *adjust_label = NEW_LABEL(line);
8546 LABEL *next_catch_label = NEW_LABEL(line);
8547 LABEL *tmp_label = NULL;
8549 ISEQ_COMPILE_DATA(iseq)->loopval_popped = 0;
8550 push_ensure_entry(iseq, &enl, NULL, NULL);
8552 if (RNODE_WHILE(node)->nd_state == 1) {
8553 ADD_INSNL(ret, line_node, jump, next_label);
8556 tmp_label = NEW_LABEL(line);
8557 ADD_INSNL(ret, line_node, jump, tmp_label);
8559 ADD_LABEL(ret, adjust_label);
8560 ADD_INSN(ret, line_node, putnil);
8561 ADD_LABEL(ret, next_catch_label);
8562 ADD_INSN(ret, line_node, pop);
8563 ADD_INSNL(ret, line_node, jump, next_label);
8564 if (tmp_label) ADD_LABEL(ret, tmp_label);
8566 ADD_LABEL(ret, redo_label);
8567 branches = decl_branch_base(iseq, nd_node_id(node), nd_code_loc(node),
type == NODE_WHILE ?
"while" :
"until");
8569 const NODE *
const coverage_node = RNODE_WHILE(node)->nd_body ? RNODE_WHILE(node)->nd_body : node;
8570 add_trace_branch_coverage(
8573 nd_code_loc(coverage_node),
8574 nd_node_id(coverage_node),
8579 CHECK(COMPILE_POPPED(ret,
"while body", RNODE_WHILE(node)->nd_body));
8580 ADD_LABEL(ret, next_label);
8582 if (
type == NODE_WHILE) {
8583 CHECK(compile_branch_condition(iseq, ret, RNODE_WHILE(node)->nd_cond,
8584 redo_label, end_label));
8588 CHECK(compile_branch_condition(iseq, ret, RNODE_WHILE(node)->nd_cond,
8589 end_label, redo_label));
8592 ADD_LABEL(ret, end_label);
8593 ADD_ADJUST_RESTORE(ret, adjust_label);
8595 if (UNDEF_P(RNODE_WHILE(node)->nd_state)) {
8597 COMPILE_ERROR(ERROR_ARGS
"unsupported: putundef");
8601 ADD_INSN(ret, line_node, putnil);
8604 ADD_LABEL(ret, break_label);
8607 ADD_INSN(ret, line_node, pop);
8610 ADD_CATCH_ENTRY(CATCH_TYPE_BREAK, redo_label, break_label, NULL,
8612 ADD_CATCH_ENTRY(CATCH_TYPE_NEXT, redo_label, break_label, NULL,
8614 ADD_CATCH_ENTRY(CATCH_TYPE_REDO, redo_label, break_label, NULL,
8615 ISEQ_COMPILE_DATA(iseq)->redo_label);
8617 ISEQ_COMPILE_DATA(iseq)->start_label = prev_start_label;
8618 ISEQ_COMPILE_DATA(iseq)->end_label = prev_end_label;
8619 ISEQ_COMPILE_DATA(iseq)->redo_label = prev_redo_label;
8620 ISEQ_COMPILE_DATA(iseq)->loopval_popped = prev_loopval_popped;
8621 ISEQ_COMPILE_DATA(iseq)->ensure_node_stack = ISEQ_COMPILE_DATA(iseq)->ensure_node_stack->prev;
8628 const int line = nd_line(node);
8629 const NODE *line_node = node;
8630 const rb_iseq_t *prevblock = ISEQ_COMPILE_DATA(iseq)->current_block;
8631 LABEL *retry_label = NEW_LABEL(line);
8632 LABEL *retry_end_l = NEW_LABEL(line);
8635 ADD_LABEL(ret, retry_label);
8636 if (nd_type_p(node, NODE_FOR)) {
8637 CHECK(COMPILE(ret,
"iter caller (for)", RNODE_FOR(node)->nd_iter));
8639 ISEQ_COMPILE_DATA(iseq)->current_block = child_iseq =
8640 NEW_CHILD_ISEQ(RNODE_FOR(node)->nd_body, make_name_for_block(iseq),
8641 ISEQ_TYPE_BLOCK, line);
8642 ADD_SEND_WITH_BLOCK(ret, line_node, idEach,
INT2FIX(0), child_iseq);
8645 ISEQ_COMPILE_DATA(iseq)->current_block = child_iseq =
8646 NEW_CHILD_ISEQ(RNODE_ITER(node)->nd_body, make_name_for_block(iseq),
8647 ISEQ_TYPE_BLOCK, line);
8648 CHECK(COMPILE(ret,
"iter caller", RNODE_ITER(node)->nd_iter));
8662 iobj = IS_INSN(last_elem) ? (
INSN*) last_elem : (
INSN*) get_prev_insn((
INSN*) last_elem);
8663 while (!IS_INSN_ID(iobj, send) && !IS_INSN_ID(iobj, invokesuper) && !IS_INSN_ID(iobj, sendforward) && !IS_INSN_ID(iobj, invokesuperforward)) {
8664 iobj = (
INSN*) get_prev_insn(iobj);
8666 ELEM_INSERT_NEXT(&iobj->link, (
LINK_ELEMENT*) retry_end_l);
8670 if (&iobj->link == LAST_ELEMENT(ret)) {
8676 ADD_INSN(ret, line_node, pop);
8679 ISEQ_COMPILE_DATA(iseq)->current_block = prevblock;
8681 ADD_CATCH_ENTRY(CATCH_TYPE_BREAK, retry_label, retry_end_l, child_iseq, retry_end_l);
8691 const NODE *line_node = node;
8692 const NODE *var = RNODE_FOR_MASGN(node)->nd_var;
8693 LABEL *not_single = NEW_LABEL(nd_line(var));
8694 LABEL *not_ary = NEW_LABEL(nd_line(var));
8695 CHECK(COMPILE(ret,
"for var", var));
8696 ADD_INSN(ret, line_node, dup);
8697 ADD_CALL(ret, line_node, idLength,
INT2FIX(0));
8698 ADD_INSN1(ret, line_node, putobject,
INT2FIX(1));
8699 ADD_CALL(ret, line_node, idEq,
INT2FIX(1));
8700 ADD_INSNL(ret, line_node, branchunless, not_single);
8701 ADD_INSN(ret, line_node, dup);
8702 ADD_INSN1(ret, line_node, putobject,
INT2FIX(0));
8703 ADD_CALL(ret, line_node, idAREF,
INT2FIX(1));
8704 ADD_INSN1(ret, line_node, putobject,
rb_cArray);
8705 ADD_INSN(ret, line_node, swap);
8706 ADD_CALL(ret, line_node, rb_intern(
"try_convert"),
INT2FIX(1));
8707 ADD_INSN(ret, line_node, dup);
8708 ADD_INSNL(ret, line_node, branchunless, not_ary);
8709 ADD_INSN(ret, line_node, swap);
8710 ADD_LABEL(ret, not_ary);
8711 ADD_INSN(ret, line_node, pop);
8712 ADD_LABEL(ret, not_single);
8719 const NODE *line_node = node;
8720 unsigned long throw_flag = 0;
8722 if (ISEQ_COMPILE_DATA(iseq)->redo_label != 0 && can_add_ensure_iseq(iseq)) {
8724 LABEL *splabel = NEW_LABEL(0);
8725 ADD_LABEL(ret, splabel);
8726 ADD_ADJUST(ret, line_node, ISEQ_COMPILE_DATA(iseq)->redo_label);
8727 CHECK(COMPILE_(ret,
"break val (while/until)", RNODE_BREAK(node)->nd_stts,
8728 ISEQ_COMPILE_DATA(iseq)->loopval_popped));
8729 add_ensure_iseq(ret, iseq, 0);
8730 ADD_INSNL(ret, line_node, jump, ISEQ_COMPILE_DATA(iseq)->end_label);
8731 ADD_ADJUST_RESTORE(ret, splabel);
8734 ADD_INSN(ret, line_node, putnil);
8741 if (!ISEQ_COMPILE_DATA(ip)) {
8746 if (ISEQ_COMPILE_DATA(ip)->redo_label != 0) {
8747 throw_flag = VM_THROW_NO_ESCAPE_FLAG;
8749 else if (ISEQ_BODY(ip)->
type == ISEQ_TYPE_BLOCK) {
8752 else if (ISEQ_BODY(ip)->
type == ISEQ_TYPE_EVAL) {
8753 COMPILE_ERROR(ERROR_ARGS
"Can't escape from eval with break");
8757 ip = ISEQ_BODY(ip)->parent_iseq;
8762 CHECK(COMPILE(ret,
"break val (block)", RNODE_BREAK(node)->nd_stts));
8763 ADD_INSN1(ret, line_node,
throw,
INT2FIX(throw_flag | TAG_BREAK));
8765 ADD_INSN(ret, line_node, pop);
8769 COMPILE_ERROR(ERROR_ARGS
"Invalid break");
8778 const NODE *line_node = node;
8779 unsigned long throw_flag = 0;
8781 if (ISEQ_COMPILE_DATA(iseq)->redo_label != 0 && can_add_ensure_iseq(iseq)) {
8782 LABEL *splabel = NEW_LABEL(0);
8783 debugs(
"next in while loop\n");
8784 ADD_LABEL(ret, splabel);
8785 CHECK(COMPILE(ret,
"next val/valid syntax?", RNODE_NEXT(node)->nd_stts));
8786 add_ensure_iseq(ret, iseq, 0);
8787 ADD_ADJUST(ret, line_node, ISEQ_COMPILE_DATA(iseq)->redo_label);
8788 ADD_INSNL(ret, line_node, jump, ISEQ_COMPILE_DATA(iseq)->start_label);
8789 ADD_ADJUST_RESTORE(ret, splabel);
8791 ADD_INSN(ret, line_node, putnil);
8794 else if (ISEQ_COMPILE_DATA(iseq)->end_label && can_add_ensure_iseq(iseq)) {
8795 LABEL *splabel = NEW_LABEL(0);
8796 debugs(
"next in block\n");
8797 ADD_LABEL(ret, splabel);
8798 ADD_ADJUST(ret, line_node, ISEQ_COMPILE_DATA(iseq)->start_label);
8799 CHECK(COMPILE(ret,
"next val", RNODE_NEXT(node)->nd_stts));
8800 add_ensure_iseq(ret, iseq, 0);
8801 ADD_INSNL(ret, line_node, jump, ISEQ_COMPILE_DATA(iseq)->end_label);
8802 ADD_ADJUST_RESTORE(ret, splabel);
8805 ADD_INSN(ret, line_node, putnil);
8812 if (!ISEQ_COMPILE_DATA(ip)) {
8817 throw_flag = VM_THROW_NO_ESCAPE_FLAG;
8818 if (ISEQ_COMPILE_DATA(ip)->redo_label != 0) {
8822 else if (ISEQ_BODY(ip)->
type == ISEQ_TYPE_BLOCK) {
8825 else if (ISEQ_BODY(ip)->
type == ISEQ_TYPE_EVAL) {
8826 COMPILE_ERROR(ERROR_ARGS
"Can't escape from eval with next");
8830 ip = ISEQ_BODY(ip)->parent_iseq;
8833 CHECK(COMPILE(ret,
"next val", RNODE_NEXT(node)->nd_stts));
8834 ADD_INSN1(ret, line_node,
throw,
INT2FIX(throw_flag | TAG_NEXT));
8837 ADD_INSN(ret, line_node, pop);
8841 COMPILE_ERROR(ERROR_ARGS
"Invalid next");
8851 const NODE *line_node = node;
8853 if (ISEQ_COMPILE_DATA(iseq)->redo_label && can_add_ensure_iseq(iseq)) {
8854 LABEL *splabel = NEW_LABEL(0);
8855 debugs(
"redo in while");
8856 ADD_LABEL(ret, splabel);
8857 ADD_ADJUST(ret, line_node, ISEQ_COMPILE_DATA(iseq)->redo_label);
8858 add_ensure_iseq(ret, iseq, 0);
8859 ADD_INSNL(ret, line_node, jump, ISEQ_COMPILE_DATA(iseq)->redo_label);
8860 ADD_ADJUST_RESTORE(ret, splabel);
8862 ADD_INSN(ret, line_node, putnil);
8865 else if (ISEQ_BODY(iseq)->
type != ISEQ_TYPE_EVAL && ISEQ_COMPILE_DATA(iseq)->start_label && can_add_ensure_iseq(iseq)) {
8866 LABEL *splabel = NEW_LABEL(0);
8868 debugs(
"redo in block");
8869 ADD_LABEL(ret, splabel);
8870 add_ensure_iseq(ret, iseq, 0);
8871 ADD_ADJUST(ret, line_node, ISEQ_COMPILE_DATA(iseq)->start_label);
8872 ADD_INSNL(ret, line_node, jump, ISEQ_COMPILE_DATA(iseq)->start_label);
8873 ADD_ADJUST_RESTORE(ret, splabel);
8876 ADD_INSN(ret, line_node, putnil);
8883 if (!ISEQ_COMPILE_DATA(ip)) {
8888 if (ISEQ_COMPILE_DATA(ip)->redo_label != 0) {
8891 else if (ISEQ_BODY(ip)->
type == ISEQ_TYPE_BLOCK) {
8894 else if (ISEQ_BODY(ip)->
type == ISEQ_TYPE_EVAL) {
8895 COMPILE_ERROR(ERROR_ARGS
"Can't escape from eval with redo");
8899 ip = ISEQ_BODY(ip)->parent_iseq;
8902 ADD_INSN(ret, line_node, putnil);
8903 ADD_INSN1(ret, line_node,
throw,
INT2FIX(VM_THROW_NO_ESCAPE_FLAG | TAG_REDO));
8906 ADD_INSN(ret, line_node, pop);
8910 COMPILE_ERROR(ERROR_ARGS
"Invalid redo");
8920 const NODE *line_node = node;
8922 if (ISEQ_BODY(iseq)->
type == ISEQ_TYPE_RESCUE) {
8923 ADD_INSN(ret, line_node, putnil);
8924 ADD_INSN1(ret, line_node,
throw,
INT2FIX(TAG_RETRY));
8927 ADD_INSN(ret, line_node, pop);
8931 COMPILE_ERROR(ERROR_ARGS
"Invalid retry");
8940 const int line = nd_line(node);
8941 const NODE *line_node = node;
8942 LABEL *lstart = NEW_LABEL(line);
8943 LABEL *lend = NEW_LABEL(line);
8944 LABEL *lcont = NEW_LABEL(line);
8945 const rb_iseq_t *rescue = NEW_CHILD_ISEQ(RNODE_RESCUE(node)->nd_resq,
8947 ISEQ_BODY(iseq)->location.label),
8948 ISEQ_TYPE_RESCUE, line);
8950 lstart->rescued = LABEL_RESCUE_BEG;
8951 lend->rescued = LABEL_RESCUE_END;
8952 ADD_LABEL(ret, lstart);
8954 bool prev_in_rescue = ISEQ_COMPILE_DATA(iseq)->in_rescue;
8955 ISEQ_COMPILE_DATA(iseq)->in_rescue =
true;
8957 CHECK(COMPILE(ret,
"rescue head", RNODE_RESCUE(node)->nd_head));
8959 ISEQ_COMPILE_DATA(iseq)->in_rescue = prev_in_rescue;
8961 ADD_LABEL(ret, lend);
8962 if (RNODE_RESCUE(node)->nd_else) {
8963 ADD_INSN(ret, line_node, pop);
8964 CHECK(COMPILE(ret,
"rescue else", RNODE_RESCUE(node)->nd_else));
8966 ADD_INSN(ret, line_node, nop);
8967 ADD_LABEL(ret, lcont);
8970 ADD_INSN(ret, line_node, pop);
8974 ADD_CATCH_ENTRY(CATCH_TYPE_RESCUE, lstart, lend, rescue, lcont);
8975 ADD_CATCH_ENTRY(CATCH_TYPE_RETRY, lend, lcont, NULL, lstart);
8982 const int line = nd_line(node);
8983 const NODE *line_node = node;
8984 const NODE *resq = node;
8986 LABEL *label_miss, *label_hit;
8989 label_miss = NEW_LABEL(line);
8990 label_hit = NEW_LABEL(line);
8992 narg = RNODE_RESBODY(resq)->nd_args;
8994 switch (nd_type(narg)) {
8997 ADD_GETLOCAL(ret, line_node, LVAR_ERRINFO, 0);
8998 CHECK(COMPILE(ret,
"rescue arg", RNODE_LIST(narg)->nd_head));
8999 ADD_INSN1(ret, line_node, checkmatch,
INT2FIX(VM_CHECKMATCH_TYPE_RESCUE));
9000 ADD_INSNL(ret, line_node, branchif, label_hit);
9001 narg = RNODE_LIST(narg)->nd_next;
9007 ADD_GETLOCAL(ret, line_node, LVAR_ERRINFO, 0);
9008 CHECK(COMPILE(ret,
"rescue/cond splat", narg));
9009 ADD_INSN1(ret, line_node, checkmatch,
INT2FIX(VM_CHECKMATCH_TYPE_RESCUE | VM_CHECKMATCH_ARRAY));
9010 ADD_INSNL(ret, line_node, branchif, label_hit);
9013 UNKNOWN_NODE(
"NODE_RESBODY", narg, COMPILE_NG);
9017 ADD_GETLOCAL(ret, line_node, LVAR_ERRINFO, 0);
9019 ADD_INSN1(ret, line_node, checkmatch,
INT2FIX(VM_CHECKMATCH_TYPE_RESCUE));
9020 ADD_INSNL(ret, line_node, branchif, label_hit);
9022 ADD_INSNL(ret, line_node, jump, label_miss);
9023 ADD_LABEL(ret, label_hit);
9026 if (RNODE_RESBODY(resq)->nd_exc_var) {
9027 CHECK(COMPILE_POPPED(ret,
"resbody exc_var", RNODE_RESBODY(resq)->nd_exc_var));
9030 if (nd_type(RNODE_RESBODY(resq)->nd_body) == NODE_BEGIN && RNODE_BEGIN(RNODE_RESBODY(resq)->nd_body)->nd_body == NULL && !RNODE_RESBODY(resq)->nd_exc_var) {
9032 ADD_SYNTHETIC_INSN(ret, nd_line(RNODE_RESBODY(resq)->nd_body), -1, putnil);
9035 CHECK(COMPILE(ret,
"resbody body", RNODE_RESBODY(resq)->nd_body));
9038 if (ISEQ_COMPILE_DATA(iseq)->option->tailcall_optimization) {
9039 ADD_INSN(ret, line_node, nop);
9041 ADD_INSN(ret, line_node, leave);
9042 ADD_LABEL(ret, label_miss);
9043 resq = RNODE_RESBODY(resq)->nd_next;
9051 const int line = nd_line(RNODE_ENSURE(node)->nd_ensr);
9052 const NODE *line_node = node;
9054 const rb_iseq_t *ensure = NEW_CHILD_ISEQ(RNODE_ENSURE(node)->nd_ensr,
9056 ISEQ_TYPE_ENSURE, line);
9057 LABEL *lstart = NEW_LABEL(line);
9058 LABEL *lend = NEW_LABEL(line);
9059 LABEL *lcont = NEW_LABEL(line);
9067 CHECK(COMPILE_POPPED(ensr,
"ensure ensr", RNODE_ENSURE(node)->nd_ensr));
9069 last_leave = last && IS_INSN(last) && IS_INSN_ID(last, leave);
9074 push_ensure_entry(iseq, &enl, &er, RNODE_ENSURE(node)->nd_ensr);
9076 ADD_LABEL(ret, lstart);
9077 CHECK(COMPILE_(ret,
"ensure head", RNODE_ENSURE(node)->nd_head, (popped | last_leave)));
9078 ADD_LABEL(ret, lend);
9080 if (!popped && last_leave) ADD_INSN(ret, line_node, putnil);
9081 ADD_LABEL(ret, lcont);
9082 if (last_leave) ADD_INSN(ret, line_node, pop);
9084 erange = ISEQ_COMPILE_DATA(iseq)->ensure_node_stack->erange;
9085 if (lstart->link.next != &lend->link) {
9087 ADD_CATCH_ENTRY(CATCH_TYPE_ENSURE, erange->begin, erange->end,
9089 erange = erange->next;
9093 ISEQ_COMPILE_DATA(iseq)->ensure_node_stack = enl.prev;
9100 const NODE *line_node = node;
9103 enum rb_iseq_type
type = ISEQ_BODY(iseq)->type;
9105 enum rb_iseq_type t =
type;
9106 const NODE *retval = RNODE_RETURN(node)->nd_stts;
9109 while (t == ISEQ_TYPE_RESCUE || t == ISEQ_TYPE_ENSURE) {
9110 if (!(is = ISEQ_BODY(is)->parent_iseq))
break;
9111 t = ISEQ_BODY(is)->type;
9115 case ISEQ_TYPE_MAIN:
9117 rb_warn(
"argument of top-level return is ignored");
9121 type = ISEQ_TYPE_METHOD;
9128 if (
type == ISEQ_TYPE_METHOD) {
9129 splabel = NEW_LABEL(0);
9130 ADD_LABEL(ret, splabel);
9131 ADD_ADJUST(ret, line_node, 0);
9134 CHECK(COMPILE(ret,
"return nd_stts (return val)", retval));
9136 if (
type == ISEQ_TYPE_METHOD && can_add_ensure_iseq(iseq)) {
9137 add_ensure_iseq(ret, iseq, 1);
9139 ADD_INSN(ret, line_node, leave);
9140 ADD_ADJUST_RESTORE(ret, splabel);
9143 ADD_INSN(ret, line_node, putnil);
9147 ADD_INSN1(ret, line_node,
throw,
INT2FIX(TAG_RETURN));
9149 ADD_INSN(ret, line_node, pop);
9160 if (!i)
return false;
9161 if (IS_TRACE(i)) i = i->prev;
9162 if (!IS_INSN(i) || !IS_INSN_ID(i, putnil))
return false;
9164 if (IS_ADJUST(i)) i = i->prev;
9165 if (!IS_INSN(i))
return false;
9166 switch (INSN_OF(i)) {
9173 (ret->last = last->prev)->next = NULL;
9180 CHECK(COMPILE_(ret,
"nd_body", node, popped));
9182 if (!popped && !all_string_result_p(node)) {
9183 const NODE *line_node = node;
9184 const unsigned int flag = VM_CALL_FCALL;
9188 ADD_INSN(ret, line_node, dup);
9189 ADD_INSN1(ret, line_node, objtostring, new_callinfo(iseq, idTo_s, 0, flag, NULL, FALSE));
9190 ADD_INSN(ret, line_node, anytostring);
9198 int idx = ISEQ_BODY(ISEQ_BODY(iseq)->local_iseq)->local_table_size - get_local_var_idx(iseq,
id);
9200 debugs(
"id: %s idx: %d\n", rb_id2name(
id), idx);
9201 ADD_GETLOCAL(ret, line_node, idx, get_lvar_level(iseq));
9207 LABEL *else_label = NEW_LABEL(nd_line(line_node));
9210 br = decl_branch_base(iseq, nd_node_id(node), nd_code_loc(node),
"&.");
9212 ADD_INSN(recv, line_node, dup);
9213 ADD_INSNL(recv, line_node, branchnil, else_label);
9214 add_trace_branch_coverage(iseq, recv, nd_code_loc(node), nd_node_id(node), 0,
"then", br);
9222 if (!else_label)
return;
9223 end_label = NEW_LABEL(nd_line(line_node));
9224 ADD_INSNL(ret, line_node, jump, end_label);
9225 ADD_LABEL(ret, else_label);
9226 add_trace_branch_coverage(iseq, ret, nd_code_loc(node), nd_node_id(node), 1,
"else", branches);
9227 ADD_LABEL(ret, end_label);
9236 if (get_nd_recv(node) &&
9237 (nd_type_p(get_nd_recv(node), NODE_STR) || nd_type_p(get_nd_recv(node), NODE_FILE)) &&
9238 (get_node_call_nd_mid(node) == idFreeze || get_node_call_nd_mid(node) == idUMinus) &&
9239 get_nd_args(node) == NULL &&
9240 ISEQ_COMPILE_DATA(iseq)->current_block == NULL &&
9241 ISEQ_COMPILE_DATA(iseq)->option->specialized_instruction) {
9242 VALUE str = get_string_value(get_nd_recv(node));
9243 if (get_node_call_nd_mid(node) == idUMinus) {
9244 ADD_INSN2(ret, line_node, opt_str_uminus, str,
9245 new_callinfo(iseq, idUMinus, 0, 0, NULL, FALSE));
9248 ADD_INSN2(ret, line_node, opt_str_freeze, str,
9249 new_callinfo(iseq, idFreeze, 0, 0, NULL, FALSE));
9253 ADD_INSN(ret, line_node, pop);
9261iseq_has_builtin_function_table(
const rb_iseq_t *iseq)
9263 return ISEQ_COMPILE_DATA(iseq)->builtin_function_table != NULL;
9267iseq_builtin_function_lookup(
const rb_iseq_t *iseq,
const char *name)
9270 const struct rb_builtin_function *table = ISEQ_COMPILE_DATA(iseq)->builtin_function_table;
9271 for (i=0; table[i].index != -1; i++) {
9272 if (strcmp(table[i].name, name) == 0) {
9280iseq_builtin_function_name(
const enum node_type
type,
const NODE *recv,
ID mid)
9282 const char *name = rb_id2name(mid);
9283 static const char prefix[] =
"__builtin_";
9284 const size_t prefix_len =
sizeof(prefix) - 1;
9289 switch (nd_type(recv)) {
9291 if (RNODE_VCALL(recv)->nd_mid == rb_intern(
"__builtin")) {
9296 if (RNODE_CONST(recv)->nd_vid == rb_intern(
"Primitive")) {
9306 if (UNLIKELY(strncmp(prefix, name, prefix_len) == 0)) {
9307 return &name[prefix_len];
9316delegate_call_p(
const rb_iseq_t *iseq,
unsigned int argc,
const LINK_ANCHOR *args,
unsigned int *pstart_index)
9323 else if (argc <= ISEQ_BODY(iseq)->local_table_size) {
9324 unsigned int start=0;
9329 argc + start <= ISEQ_BODY(iseq)->local_table_size;
9333 for (
unsigned int i=start; i-start<argc; i++) {
9334 if (IS_INSN(elem) &&
9335 INSN_OF(elem) == BIN(getlocal)) {
9336 int local_index =
FIX2INT(OPERAND_AT(elem, 0));
9337 int local_level =
FIX2INT(OPERAND_AT(elem, 1));
9339 if (local_level == 0) {
9340 unsigned int index = ISEQ_BODY(iseq)->local_table_size - (local_index - VM_ENV_DATA_SIZE + 1);
9342 fprintf(stderr,
"lvar:%s (%d), id:%s (%d) local_index:%d, local_size:%d\n",
9343 rb_id2name(ISEQ_BODY(iseq)->local_table[i]), i,
9344 rb_id2name(ISEQ_BODY(iseq)->local_table[index]), index,
9345 local_index, (
int)ISEQ_BODY(iseq)->local_table_size);
9369 *pstart_index = start;
9381 if (rb_streql_lit(
string,
"leaf")) {
9382 ISEQ_BODY(iseq)->builtin_attrs |= BUILTIN_ATTR_LEAF;
9384 else if (rb_streql_lit(
string,
"inline_block")) {
9385 ISEQ_BODY(iseq)->builtin_attrs |= BUILTIN_ATTR_INLINE_BLOCK;
9387 else if (rb_streql_lit(
string,
"use_block")) {
9388 iseq_set_use_block(iseq);
9390 else if (rb_streql_lit(
string,
"c_trace")) {
9392 ISEQ_BODY(iseq)->builtin_attrs |= BUILTIN_ATTR_C_TRACE;
9394 else if (rb_streql_lit(
string,
"without_interrupts")) {
9395 ISEQ_BODY(iseq)->builtin_attrs |= BUILTIN_ATTR_WITHOUT_INTERRUPTS;
9397 else if (rb_streql_lit(
string,
"caller_user_box")) {
9398 ISEQ_BODY(iseq)->builtin_attrs |= BUILTIN_ATTR_CALLER_USER_BOX;
9411 if (!node)
goto no_arg;
9413 if (!nd_type_p(node, NODE_LIST))
goto bad_arg;
9414 const NODE *next = RNODE_LIST(node)->nd_next;
9416 node = RNODE_LIST(node)->nd_head;
9417 if (!node)
goto no_arg;
9418 switch (nd_type(node)) {
9420 symbol = rb_node_sym_string_val(node);
9426 if (!
SYMBOL_P(symbol))
goto non_symbol_arg;
9427 if (compile_builtin_attr_symbol(iseq, symbol) != COMPILE_OK)
goto unknown_arg;
9432 COMPILE_ERROR(ERROR_ARGS
"attr!: no argument");
9435 COMPILE_ERROR(ERROR_ARGS
"non symbol argument to attr!: %s", rb_builtin_class_name(symbol));
9438 COMPILE_ERROR(ERROR_ARGS
"unknown argument to attr!: %" PRIsVALUE, symbol);
9441 UNKNOWN_NODE(
"attr!", node, COMPILE_NG);
9449 if (!node)
goto no_arg;
9450 if (!nd_type_p(node, NODE_LIST))
goto bad_arg;
9451 if (RNODE_LIST(node)->nd_next)
goto too_many_arg;
9452 node = RNODE_LIST(node)->nd_head;
9453 if (!node)
goto no_arg;
9454 switch (nd_type(node)) {
9456 name = rb_node_sym_string_val(node);
9461 if (!
SYMBOL_P(name))
goto non_symbol_arg;
9463 compile_lvar(iseq, ret, line_node,
SYM2ID(name));
9467 COMPILE_ERROR(ERROR_ARGS
"arg!: no argument");
9470 COMPILE_ERROR(ERROR_ARGS
"arg!: too many argument");
9473 COMPILE_ERROR(ERROR_ARGS
"non symbol argument to arg!: %s",
9474 rb_builtin_class_name(name));
9477 UNKNOWN_NODE(
"arg!", node, COMPILE_NG);
9483 const NODE *node = ISEQ_COMPILE_DATA(iseq)->root_node;
9484 if (nd_type(node) == NODE_IF && RNODE_IF(node)->nd_cond == cond_node) {
9485 return RNODE_IF(node)->nd_body;
9488 rb_bug(
"mandatory_node: can't find mandatory node");
9493compile_builtin_mandatory_only_method(
rb_iseq_t *iseq,
const NODE *node,
const NODE *line_node)
9497 .pre_args_num = ISEQ_BODY(iseq)->param.lead_num,
9500 rb_node_init(RNODE(&args_node), NODE_ARGS);
9501 args_node.nd_ainfo = args;
9504 const int skip_local_size = ISEQ_BODY(iseq)->param.size - ISEQ_BODY(iseq)->param.lead_num;
9505 const int table_size = ISEQ_BODY(iseq)->local_table_size - skip_local_size;
9509 tbl->size = table_size;
9514 for (i=0; i<ISEQ_BODY(iseq)->param.lead_num; i++) {
9515 tbl->ids[i] = ISEQ_BODY(iseq)->local_table[i];
9518 for (; i<table_size; i++) {
9519 tbl->ids[i] = ISEQ_BODY(iseq)->local_table[i + skip_local_size];
9523 rb_node_init(RNODE(&scope_node), NODE_SCOPE);
9524 scope_node.nd_tbl = tbl;
9525 scope_node.nd_body = mandatory_node(iseq, node);
9526 scope_node.nd_parent = NULL;
9527 scope_node.nd_args = &args_node;
9529 VALUE ast_value = rb_ruby_ast_new(RNODE(&scope_node));
9532 rb_iseq_new_with_opt(ast_value, rb_iseq_base_label(iseq),
9533 rb_iseq_path(iseq), rb_iseq_realpath(iseq),
9534 nd_line(line_node), NULL, 0,
9535 ISEQ_TYPE_METHOD, ISEQ_COMPILE_DATA(iseq)->option,
9536 ISEQ_SCRIPT_LINES(iseq));
9537 RB_OBJ_WRITE(iseq, &ISEQ_BODY(iseq)->mandatory_only_iseq, (
VALUE)mandatory_only_iseq);
9547 NODE *args_node = get_nd_args(node);
9549 if (parent_block != NULL) {
9550 COMPILE_ERROR(ERROR_ARGS_AT(line_node)
"should not call builtins here.");
9554# define BUILTIN_INLINE_PREFIX "_bi"
9555 char inline_func[
sizeof(BUILTIN_INLINE_PREFIX) +
DECIMAL_SIZE_OF(
int)];
9556 bool cconst =
false;
9561 if (strcmp(
"cstmt!", builtin_func) == 0 ||
9562 strcmp(
"cexpr!", builtin_func) == 0) {
9565 else if (strcmp(
"cconst!", builtin_func) == 0) {
9568 else if (strcmp(
"cinit!", builtin_func) == 0) {
9572 else if (strcmp(
"attr!", builtin_func) == 0) {
9573 return compile_builtin_attr(iseq, args_node);
9575 else if (strcmp(
"arg!", builtin_func) == 0) {
9576 return compile_builtin_arg(iseq, ret, args_node, line_node, popped);
9578 else if (strcmp(
"mandatory_only?", builtin_func) == 0) {
9580 rb_bug(
"mandatory_only? should be in if condition");
9582 else if (!LIST_INSN_SIZE_ZERO(ret)) {
9583 rb_bug(
"mandatory_only? should be put on top");
9586 ADD_INSN1(ret, line_node, putobject,
Qfalse);
9587 return compile_builtin_mandatory_only_method(iseq, node, line_node);
9590 rb_bug(
"can't find builtin function:%s", builtin_func);
9593 COMPILE_ERROR(ERROR_ARGS
"can't find builtin function:%s", builtin_func);
9597 int inline_index = nd_line(node);
9598 snprintf(inline_func,
sizeof(inline_func), BUILTIN_INLINE_PREFIX
"%d", inline_index);
9599 builtin_func = inline_func;
9605 typedef VALUE(*builtin_func0)(
void *,
VALUE);
9606 VALUE const_val = (*(builtin_func0)(uintptr_t)bf->func_ptr)(NULL,
Qnil);
9607 ADD_INSN1(ret, line_node, putobject, const_val);
9613 unsigned int flag = 0;
9615 VALUE argc = setup_args(iseq, args, args_node, &flag, &keywords);
9617 if (
FIX2INT(argc) != bf->argc) {
9618 COMPILE_ERROR(ERROR_ARGS
"argc is not match for builtin function:%s (expect %d but %d)",
9619 builtin_func, bf->argc,
FIX2INT(argc));
9623 unsigned int start_index;
9624 if (delegate_call_p(iseq,
FIX2INT(argc), args, &start_index)) {
9625 ADD_INSN2(ret, line_node, opt_invokebuiltin_delegate, bf,
INT2FIX(start_index));
9629 ADD_INSN1(ret, line_node, invokebuiltin, bf);
9632 if (popped) ADD_INSN(ret, line_node, pop);
9638compile_call(
rb_iseq_t *iseq,
LINK_ANCHOR *
const ret,
const NODE *
const node,
const enum node_type
type,
const NODE *
const line_node,
int popped,
bool assume_receiver)
9646 ID mid = get_node_call_nd_mid(node);
9648 unsigned int flag = 0;
9650 const rb_iseq_t *parent_block = ISEQ_COMPILE_DATA(iseq)->current_block;
9651 LABEL *else_label = NULL;
9654 ISEQ_COMPILE_DATA(iseq)->current_block = NULL;
9660 if (nd_type_p(node, NODE_VCALL)) {
9665 CONST_ID(id_answer,
"the_answer_to_life_the_universe_and_everything");
9667 if (mid == id_bitblt) {
9668 ADD_INSN(ret, line_node, bitblt);
9671 else if (mid == id_answer) {
9672 ADD_INSN(ret, line_node, answer);
9684 if (nd_type_p(node, NODE_FCALL) &&
9685 (mid == goto_id || mid == label_id)) {
9688 st_table *labels_table = ISEQ_COMPILE_DATA(iseq)->labels_table;
9691 if (!labels_table) {
9692 labels_table = st_init_numtable();
9693 ISEQ_COMPILE_DATA(iseq)->labels_table = labels_table;
9696 COMPILE_ERROR(ERROR_ARGS
"invalid goto/label format");
9700 if (mid == goto_id) {
9701 ADD_INSNL(ret, line_node, jump, label);
9704 ADD_LABEL(ret, label);
9711 const char *builtin_func;
9712 if (UNLIKELY(iseq_has_builtin_function_table(iseq)) &&
9713 (builtin_func = iseq_builtin_function_name(
type, get_nd_recv(node), mid)) != NULL) {
9714 return compile_builtin_function_call(iseq, ret, node, line_node, popped, parent_block, args, builtin_func);
9718 if (!assume_receiver) {
9719 if (
type == NODE_CALL ||
type == NODE_OPCALL ||
type == NODE_QCALL) {
9722 if ((mid == idCall || mid == idAREF || mid == idYield || mid == idEqq) &&
9723 nd_type_p(get_nd_recv(node), NODE_LVAR) &&
9724 iseq_block_param_id_p(iseq, RNODE_LVAR(get_nd_recv(node))->nd_vid, &idx, &level)) {
9725 ADD_INSN2(recv, get_nd_recv(node), getblockparamproxy,
INT2FIX(idx + VM_ENV_DATA_SIZE - 1),
INT2FIX(level));
9727 else if (private_recv_p(node)) {
9728 ADD_INSN(recv, node, putself);
9729 flag |= VM_CALL_FCALL;
9732 CHECK(COMPILE(recv,
"recv", get_nd_recv(node)));
9735 if (
type == NODE_QCALL) {
9736 else_label = qcall_branch_start(iseq, recv, &branches, node, line_node);
9739 else if (
type == NODE_FCALL ||
type == NODE_VCALL) {
9740 ADD_CALL_RECEIVER(recv, line_node);
9745 if (
type != NODE_VCALL) {
9746 argc = setup_args(iseq, args, get_nd_args(node), &flag, &keywords);
9747 CHECK(!
NIL_P(argc));
9755 bool inline_new = ISEQ_COMPILE_DATA(iseq)->option->specialized_instruction &&
9756 mid == rb_intern(
"new") &&
9757 parent_block == NULL &&
9758 !(flag & VM_CALL_ARGS_BLOCKARG);
9761 ADD_INSN(ret, node, putnil);
9762 ADD_INSN(ret, node, swap);
9767 debugp_param(
"call args argc", argc);
9768 debugp_param(
"call method",
ID2SYM(mid));
9770 switch ((
int)
type) {
9772 flag |= VM_CALL_VCALL;
9775 flag |= VM_CALL_FCALL;
9778 if ((flag & VM_CALL_ARGS_BLOCKARG) && (flag & VM_CALL_KW_SPLAT) && !(flag & VM_CALL_KW_SPLAT_MUT)) {
9779 ADD_INSN(ret, line_node, splatkw);
9782 LABEL *not_basic_new = NEW_LABEL(nd_line(node));
9783 LABEL *not_basic_new_finish = NEW_LABEL(nd_line(node));
9788 if (flag & VM_CALL_FORWARDING) {
9789 ci = (
VALUE)new_callinfo(iseq, mid,
NUM2INT(argc) + 1, flag, keywords, 0);
9792 ci = (
VALUE)new_callinfo(iseq, mid,
NUM2INT(argc), flag, keywords, 0);
9794 ADD_INSN2(ret, node, opt_new, ci, not_basic_new);
9795 LABEL_REF(not_basic_new);
9798 ADD_SEND_R(ret, line_node, rb_intern(
"initialize"), argc, parent_block,
INT2FIX(flag | VM_CALL_FCALL), keywords);
9799 ADD_INSNL(ret, line_node, jump, not_basic_new_finish);
9801 ADD_LABEL(ret, not_basic_new);
9803 ADD_SEND_R(ret, line_node, mid, argc, parent_block,
INT2FIX(flag), keywords);
9804 ADD_INSN(ret, line_node, swap);
9806 ADD_LABEL(ret, not_basic_new_finish);
9807 ADD_INSN(ret, line_node, pop);
9810 ADD_SEND_R(ret, line_node, mid, argc, parent_block,
INT2FIX(flag), keywords);
9813 qcall_branch_end(iseq, ret, else_label, branches, node, line_node);
9815 ADD_INSN(ret, line_node, pop);
9823 const int line = nd_line(node);
9825 unsigned int flag = 0;
9827 ID id = RNODE_OP_ASGN1(node)->nd_mid;
9853 ADD_INSN(ret, node, putnil);
9855 asgnflag = COMPILE_RECV(ret,
"NODE_OP_ASGN1 recv", node, RNODE_OP_ASGN1(node)->nd_recv);
9856 CHECK(asgnflag != -1);
9857 switch (nd_type(RNODE_OP_ASGN1(node)->nd_index)) {
9862 argc = setup_args(iseq, ret, RNODE_OP_ASGN1(node)->nd_index, &flag, NULL);
9863 CHECK(!
NIL_P(argc));
9865 int dup_argn =
FIX2INT(argc) + 1;
9866 ADD_INSN1(ret, node, dupn,
INT2FIX(dup_argn));
9868 ADD_SEND_R(ret, node, idAREF, argc, NULL,
INT2FIX(flag & ~VM_CALL_ARGS_SPLAT_MUT), NULL);
9870 if (
id == idOROP ||
id == idANDOP) {
9879 LABEL *label = NEW_LABEL(line);
9880 LABEL *lfin = NEW_LABEL(line);
9882 ADD_INSN(ret, node, dup);
9884 ADD_INSNL(ret, node, branchif, label);
9887 ADD_INSNL(ret, node, branchunless, label);
9889 ADD_INSN(ret, node, pop);
9891 CHECK(COMPILE(ret,
"NODE_OP_ASGN1 nd_rvalue: ", RNODE_OP_ASGN1(node)->nd_rvalue));
9893 ADD_INSN1(ret, node, setn,
INT2FIX(dup_argn+1));
9895 if (flag & VM_CALL_ARGS_SPLAT) {
9896 if (!(flag & VM_CALL_ARGS_SPLAT_MUT)) {
9897 ADD_INSN(ret, node, swap);
9898 ADD_INSN1(ret, node, splatarray,
Qtrue);
9899 ADD_INSN(ret, node, swap);
9900 flag |= VM_CALL_ARGS_SPLAT_MUT;
9902 ADD_INSN1(ret, node, pushtoarray,
INT2FIX(1));
9903 ADD_SEND_R(ret, node, idASET, argc, NULL,
INT2FIX(flag), NULL);
9906 ADD_SEND_R(ret, node, idASET, FIXNUM_INC(argc, 1), NULL,
INT2FIX(flag), NULL);
9908 ADD_INSN(ret, node, pop);
9909 ADD_INSNL(ret, node, jump, lfin);
9910 ADD_LABEL(ret, label);
9912 ADD_INSN1(ret, node, setn,
INT2FIX(dup_argn+1));
9914 ADD_INSN1(ret, node, adjuststack,
INT2FIX(dup_argn+1));
9915 ADD_LABEL(ret, lfin);
9918 CHECK(COMPILE(ret,
"NODE_OP_ASGN1 nd_rvalue: ", RNODE_OP_ASGN1(node)->nd_rvalue));
9919 ADD_SEND(ret, node,
id,
INT2FIX(1));
9921 ADD_INSN1(ret, node, setn,
INT2FIX(dup_argn+1));
9923 if (flag & VM_CALL_ARGS_SPLAT) {
9924 if (flag & VM_CALL_KW_SPLAT) {
9925 ADD_INSN1(ret, node, topn,
INT2FIX(2));
9926 if (!(flag & VM_CALL_ARGS_SPLAT_MUT)) {
9927 ADD_INSN1(ret, node, splatarray,
Qtrue);
9928 flag |= VM_CALL_ARGS_SPLAT_MUT;
9930 ADD_INSN(ret, node, swap);
9931 ADD_INSN1(ret, node, pushtoarray,
INT2FIX(1));
9932 ADD_INSN1(ret, node, setn,
INT2FIX(2));
9933 ADD_INSN(ret, node, pop);
9936 if (!(flag & VM_CALL_ARGS_SPLAT_MUT)) {
9937 ADD_INSN(ret, node, swap);
9938 ADD_INSN1(ret, node, splatarray,
Qtrue);
9939 ADD_INSN(ret, node, swap);
9940 flag |= VM_CALL_ARGS_SPLAT_MUT;
9942 ADD_INSN1(ret, node, pushtoarray,
INT2FIX(1));
9944 ADD_SEND_R(ret, node, idASET, argc, NULL,
INT2FIX(flag), NULL);
9947 ADD_SEND_R(ret, node, idASET, FIXNUM_INC(argc, 1), NULL,
INT2FIX(flag), NULL);
9949 ADD_INSN(ret, node, pop);
9957 const int line = nd_line(node);
9958 ID atype = RNODE_OP_ASGN2(node)->nd_mid;
9959 ID vid = RNODE_OP_ASGN2(node)->nd_vid, aid = rb_id_attrset(vid);
9961 LABEL *lfin = NEW_LABEL(line);
9962 LABEL *lcfin = NEW_LABEL(line);
10017 asgnflag = COMPILE_RECV(ret,
"NODE_OP_ASGN2#recv", node, RNODE_OP_ASGN2(node)->nd_recv);
10018 CHECK(asgnflag != -1);
10019 if (RNODE_OP_ASGN2(node)->nd_aid) {
10020 lskip = NEW_LABEL(line);
10021 ADD_INSN(ret, node, dup);
10022 ADD_INSNL(ret, node, branchnil, lskip);
10024 ADD_INSN(ret, node, dup);
10025 ADD_SEND_WITH_FLAG(ret, node, vid,
INT2FIX(0),
INT2FIX(asgnflag));
10027 if (atype == idOROP || atype == idANDOP) {
10029 ADD_INSN(ret, node, dup);
10031 if (atype == idOROP) {
10032 ADD_INSNL(ret, node, branchif, lcfin);
10035 ADD_INSNL(ret, node, branchunless, lcfin);
10038 ADD_INSN(ret, node, pop);
10040 CHECK(COMPILE(ret,
"NODE_OP_ASGN2 val", RNODE_OP_ASGN2(node)->nd_value));
10042 ADD_INSN(ret, node, swap);
10043 ADD_INSN1(ret, node, topn,
INT2FIX(1));
10045 ADD_SEND_WITH_FLAG(ret, node, aid,
INT2FIX(1),
INT2FIX(asgnflag));
10046 ADD_INSNL(ret, node, jump, lfin);
10048 ADD_LABEL(ret, lcfin);
10050 ADD_INSN(ret, node, swap);
10053 ADD_LABEL(ret, lfin);
10056 CHECK(COMPILE(ret,
"NODE_OP_ASGN2 val", RNODE_OP_ASGN2(node)->nd_value));
10057 ADD_SEND(ret, node, atype,
INT2FIX(1));
10059 ADD_INSN(ret, node, swap);
10060 ADD_INSN1(ret, node, topn,
INT2FIX(1));
10062 ADD_SEND_WITH_FLAG(ret, node, aid,
INT2FIX(1),
INT2FIX(asgnflag));
10064 if (lskip && popped) {
10065 ADD_LABEL(ret, lskip);
10067 ADD_INSN(ret, node, pop);
10068 if (lskip && !popped) {
10069 ADD_LABEL(ret, lskip);
10074static int compile_shareable_constant_value(
rb_iseq_t *iseq,
LINK_ANCHOR *ret,
enum rb_parser_shareability shareable,
const NODE *lhs,
const NODE *value);
10079 const int line = nd_line(node);
10081 LABEL *lassign = 0;
10084 switch (nd_type(RNODE_OP_CDECL(node)->nd_head)) {
10086 ADD_INSN1(ret, node, putobject,
rb_cObject);
10089 CHECK(COMPILE(ret,
"NODE_OP_CDECL/colon2#nd_head", RNODE_COLON2(RNODE_OP_CDECL(node)->nd_head)->nd_head));
10092 COMPILE_ERROR(ERROR_ARGS
"%s: invalid node in NODE_OP_CDECL",
10093 ruby_node_name(nd_type(RNODE_OP_CDECL(node)->nd_head)));
10096 mid = get_node_colon_nd_mid(RNODE_OP_CDECL(node)->nd_head);
10098 if (RNODE_OP_CDECL(node)->nd_aid == idOROP) {
10099 lassign = NEW_LABEL(line);
10100 ADD_INSN(ret, node, dup);
10101 ADD_INSN3(ret, node, defined,
INT2FIX(DEFINED_CONST_FROM),
10103 ADD_INSNL(ret, node, branchunless, lassign);
10105 ADD_INSN(ret, node, dup);
10106 ADD_INSN1(ret, node, putobject,
Qtrue);
10107 ADD_INSN1(ret, node, getconstant,
ID2SYM(mid));
10109 if (RNODE_OP_CDECL(node)->nd_aid == idOROP || RNODE_OP_CDECL(node)->nd_aid == idANDOP) {
10110 lfin = NEW_LABEL(line);
10111 if (!popped) ADD_INSN(ret, node, dup);
10112 if (RNODE_OP_CDECL(node)->nd_aid == idOROP)
10113 ADD_INSNL(ret, node, branchif, lfin);
10115 ADD_INSNL(ret, node, branchunless, lfin);
10117 if (!popped) ADD_INSN(ret, node, pop);
10118 if (lassign) ADD_LABEL(ret, lassign);
10119 CHECK(compile_shareable_constant_value(iseq, ret, RNODE_OP_CDECL(node)->shareability, RNODE_OP_CDECL(node)->nd_head, RNODE_OP_CDECL(node)->nd_value));
10122 ADD_INSN1(ret, node, topn,
INT2FIX(1));
10124 ADD_INSN1(ret, node, dupn,
INT2FIX(2));
10125 ADD_INSN(ret, node, swap);
10127 ADD_INSN1(ret, node, setconstant,
ID2SYM(mid));
10128 ADD_LABEL(ret, lfin);
10129 if (!popped) ADD_INSN(ret, node, swap);
10130 ADD_INSN(ret, node, pop);
10133 CHECK(compile_shareable_constant_value(iseq, ret, RNODE_OP_CDECL(node)->shareability, RNODE_OP_CDECL(node)->nd_head, RNODE_OP_CDECL(node)->nd_value));
10135 ADD_CALL(ret, node, RNODE_OP_CDECL(node)->nd_aid,
INT2FIX(1));
10137 ADD_INSN(ret, node, swap);
10139 ADD_INSN1(ret, node, topn,
INT2FIX(1));
10140 ADD_INSN(ret, node, swap);
10142 ADD_INSN1(ret, node, setconstant,
ID2SYM(mid));
10150 const int line = nd_line(node);
10151 LABEL *lfin = NEW_LABEL(line);
10154 if (
type == NODE_OP_ASGN_OR && !nd_type_p(RNODE_OP_ASGN_OR(node)->nd_head, NODE_IVAR)) {
10158 defined_expr(iseq, ret, RNODE_OP_ASGN_OR(node)->nd_head, lfinish,
Qfalse,
false);
10159 lassign = lfinish[1];
10161 lassign = NEW_LABEL(line);
10163 ADD_INSNL(ret, node, branchunless, lassign);
10166 lassign = NEW_LABEL(line);
10169 CHECK(COMPILE(ret,
"NODE_OP_ASGN_AND/OR#nd_head", RNODE_OP_ASGN_OR(node)->nd_head));
10172 ADD_INSN(ret, node, dup);
10175 if (
type == NODE_OP_ASGN_AND) {
10176 ADD_INSNL(ret, node, branchunless, lfin);
10179 ADD_INSNL(ret, node, branchif, lfin);
10183 ADD_INSN(ret, node, pop);
10186 ADD_LABEL(ret, lassign);
10187 CHECK(COMPILE_(ret,
"NODE_OP_ASGN_AND/OR#nd_value", RNODE_OP_ASGN_OR(node)->nd_value, popped));
10188 ADD_LABEL(ret, lfin);
10198 unsigned int flag = 0;
10200 const rb_iseq_t *parent_block = ISEQ_COMPILE_DATA(iseq)->current_block;
10204 ISEQ_COMPILE_DATA(iseq)->current_block = NULL;
10206 if (
type == NODE_SUPER) {
10207 VALUE vargc = setup_args(iseq, args, RNODE_SUPER(node)->nd_args, &flag, &keywords);
10208 CHECK(!
NIL_P(vargc));
10210 if ((flag & VM_CALL_ARGS_BLOCKARG) && (flag & VM_CALL_KW_SPLAT) && !(flag & VM_CALL_KW_SPLAT_MUT)) {
10211 ADD_INSN(args, node, splatkw);
10214 if (flag & VM_CALL_ARGS_BLOCKARG) {
10221 const rb_iseq_t *liseq = body->local_iseq;
10223 const struct rb_iseq_param_keyword *
const local_kwd = local_body->param.keyword;
10224 int lvar_level = get_lvar_level(iseq);
10226 argc = local_body->param.lead_num;
10229 for (i = 0; i < local_body->param.lead_num; i++) {
10230 int idx = local_body->local_table_size - i;
10231 ADD_GETLOCAL(args, node, idx, lvar_level);
10235 if (local_body->param.flags.forwardable) {
10236 flag |= VM_CALL_FORWARDING;
10237 int idx = local_body->local_table_size - get_local_var_idx(liseq, idDot3);
10238 ADD_GETLOCAL(args, node, idx, lvar_level);
10241 if (local_body->param.flags.has_opt) {
10244 for (j = 0; j < local_body->param.opt_num; j++) {
10245 int idx = local_body->local_table_size - (i + j);
10246 ADD_GETLOCAL(args, node, idx, lvar_level);
10251 if (local_body->param.flags.has_rest) {
10253 int idx = local_body->local_table_size - local_body->param.rest_start;
10254 ADD_GETLOCAL(args, node, idx, lvar_level);
10255 ADD_INSN1(args, node, splatarray, RBOOL(local_body->param.flags.has_post));
10257 argc = local_body->param.rest_start + 1;
10258 flag |= VM_CALL_ARGS_SPLAT;
10260 if (local_body->param.flags.has_post) {
10262 int post_len = local_body->param.post_num;
10263 int post_start = local_body->param.post_start;
10265 if (local_body->param.flags.has_rest) {
10267 for (j=0; j<post_len; j++) {
10268 int idx = local_body->local_table_size - (post_start + j);
10269 ADD_GETLOCAL(args, node, idx, lvar_level);
10271 ADD_INSN1(args, node, pushtoarray,
INT2FIX(j));
10272 flag |= VM_CALL_ARGS_SPLAT_MUT;
10277 for (j=0; j<post_len; j++) {
10278 int idx = local_body->local_table_size - (post_start + j);
10279 ADD_GETLOCAL(args, node, idx, lvar_level);
10281 argc = post_len + post_start;
10285 if (local_body->param.flags.has_kw) {
10286 int local_size = local_body->local_table_size;
10289 ADD_INSN1(args, node, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
10291 if (local_body->param.flags.has_kwrest) {
10292 int idx = local_body->local_table_size - local_kwd->rest_start;
10293 ADD_GETLOCAL(args, node, idx, lvar_level);
10295 ADD_SEND (args, node, rb_intern(
"dup"),
INT2FIX(0));
10298 ADD_INSN1(args, node, newhash,
INT2FIX(0));
10300 for (i = 0; i < local_kwd->num; ++i) {
10301 ID id = local_kwd->table[i];
10302 int idx = local_size - get_local_var_idx(liseq,
id);
10303 ADD_INSN1(args, node, putobject,
ID2SYM(
id));
10304 ADD_GETLOCAL(args, node, idx, lvar_level);
10306 ADD_SEND(args, node, id_core_hash_merge_bang_ptr,
INT2FIX(i * 2 + 1));
10307 flag |= VM_CALL_KW_SPLAT| VM_CALL_KW_SPLAT_MUT;
10309 else if (local_body->param.flags.has_kwrest) {
10310 int idx = local_body->local_table_size - local_kwd->rest_start;
10311 ADD_GETLOCAL(args, node, idx, lvar_level);
10313 flag |= VM_CALL_KW_SPLAT;
10317 if (use_block && parent_block == NULL) {
10318 iseq_set_use_block(ISEQ_BODY(iseq)->local_iseq);
10321 flag |= VM_CALL_SUPER | VM_CALL_FCALL;
10322 if (
type == NODE_ZSUPER) flag |= VM_CALL_ZSUPER;
10323 ADD_INSN(ret, node, putself);
10324 ADD_SEQ(ret, args);
10326 const struct rb_callinfo * ci = new_callinfo(iseq, 0, argc, flag, keywords, parent_block != NULL);
10328 if (vm_ci_flag(ci) & VM_CALL_FORWARDING) {
10329 ADD_INSN2(ret, node, invokesuperforward, ci, parent_block);
10332 ADD_INSN2(ret, node, invokesuper, ci, parent_block);
10336 ADD_INSN(ret, node, pop);
10346 unsigned int flag = 0;
10351 switch (ISEQ_BODY(ISEQ_BODY(iseq)->local_iseq)->
type) {
10352 case ISEQ_TYPE_TOP:
10353 case ISEQ_TYPE_MAIN:
10354 case ISEQ_TYPE_CLASS:
10355 COMPILE_ERROR(ERROR_ARGS
"Invalid yield");
10360 if (RNODE_YIELD(node)->nd_head) {
10361 argc = setup_args(iseq, args, RNODE_YIELD(node)->nd_head, &flag, &keywords);
10362 CHECK(!
NIL_P(argc));
10368 ADD_SEQ(ret, args);
10369 ADD_INSN1(ret, node, invokeblock, new_callinfo(iseq, 0,
FIX2INT(argc), flag, keywords, FALSE));
10370 iseq_set_use_block(ISEQ_BODY(iseq)->local_iseq);
10373 ADD_INSN(ret, node, pop);
10378 for (; tmp_iseq != ISEQ_BODY(iseq)->local_iseq; level++ ) {
10379 tmp_iseq = ISEQ_BODY(tmp_iseq)->parent_iseq;
10381 if (level > 0) access_outer_variables(iseq, level, rb_intern(
"yield"),
true);
10394 switch ((
int)
type) {
10397 VALUE re = rb_node_regx_string_val(node);
10399 ADD_INSN1(recv, node, putobject, re);
10400 ADD_INSN2(val, node, getspecial,
INT2FIX(0),
10405 CHECK(COMPILE(recv,
"receiver", RNODE_MATCH2(node)->nd_recv));
10406 CHECK(COMPILE(val,
"value", RNODE_MATCH2(node)->nd_value));
10409 CHECK(COMPILE(recv,
"receiver", RNODE_MATCH3(node)->nd_value));
10410 CHECK(COMPILE(val,
"value", RNODE_MATCH3(node)->nd_recv));
10414 ADD_SEQ(ret, recv);
10416 ADD_SEND(ret, node, idEqTilde,
INT2FIX(1));
10418 if (nd_type_p(node, NODE_MATCH2) && RNODE_MATCH2(node)->nd_args) {
10419 compile_named_capture_assign(iseq, ret, RNODE_MATCH2(node)->nd_args);
10423 ADD_INSN(ret, node, pop);
10434 if (ISEQ_COMPILE_DATA(iseq)->option->inline_const_cache &&
10435 (segments = collect_const_segments(iseq, node))) {
10436 ISEQ_BODY(iseq)->ic_size++;
10437 ADD_INSN1(ret, node, opt_getconstant_path, segments);
10447 CHECK(compile_const_prefix(iseq, node, pref, body));
10448 if (LIST_INSN_SIZE_ZERO(pref)) {
10449 ADD_INSN(ret, node, putnil);
10450 ADD_SEQ(ret, body);
10453 ADD_SEQ(ret, pref);
10454 ADD_SEQ(ret, body);
10460 ADD_CALL_RECEIVER(ret, node);
10461 CHECK(COMPILE(ret,
"colon2#nd_head", RNODE_COLON2(node)->nd_head));
10462 ADD_CALL(ret, node, RNODE_COLON2(node)->nd_mid,
INT2FIX(1));
10465 ADD_INSN(ret, node, pop);
10473 debugi(
"colon3#nd_mid", RNODE_COLON3(node)->nd_mid);
10476 if (ISEQ_COMPILE_DATA(iseq)->option->inline_const_cache) {
10477 ISEQ_BODY(iseq)->ic_size++;
10478 VALUE segments = rb_ary_new_from_args(2,
ID2SYM(idNULL),
ID2SYM(RNODE_COLON3(node)->nd_mid));
10480 ADD_INSN1(ret, node, opt_getconstant_path, segments);
10484 ADD_INSN1(ret, node, putobject,
rb_cObject);
10485 ADD_INSN1(ret, node, putobject,
Qtrue);
10486 ADD_INSN1(ret, node, getconstant,
ID2SYM(RNODE_COLON3(node)->nd_mid));
10490 ADD_INSN(ret, node, pop);
10499 const NODE *b = RNODE_DOT2(node)->nd_beg;
10500 const NODE *e = RNODE_DOT2(node)->nd_end;
10502 if (optimizable_range_item_p(b) && optimizable_range_item_p(e)) {
10504 VALUE bv = optimized_range_item(b);
10505 VALUE ev = optimized_range_item(e);
10508 ADD_INSN1(ret, node, putobject, val);
10513 CHECK(COMPILE_(ret,
"min", b, popped));
10514 CHECK(COMPILE_(ret,
"max", e, popped));
10516 ADD_INSN1(ret, node, newrange, flag);
10526 if (ISEQ_BODY(iseq)->
type == ISEQ_TYPE_RESCUE) {
10527 ADD_GETLOCAL(ret, node, LVAR_ERRINFO, 0);
10533 if (ISEQ_BODY(ip)->
type == ISEQ_TYPE_RESCUE) {
10536 ip = ISEQ_BODY(ip)->parent_iseq;
10540 ADD_GETLOCAL(ret, node, LVAR_ERRINFO, level);
10543 ADD_INSN(ret, node, putnil);
10554 LABEL *end_label = NEW_LABEL(nd_line(node));
10555 const NODE *default_value = get_nd_value(RNODE_KW_ARG(node)->nd_body);
10557 if (default_value == NODE_SPECIAL_REQUIRED_KEYWORD) {
10559 COMPILE_ERROR(ERROR_ARGS
"unreachable");
10562 else if (nd_type_p(default_value, NODE_SYM) ||
10563 nd_type_p(default_value, NODE_REGX) ||
10564 nd_type_p(default_value, NODE_LINE) ||
10565 nd_type_p(default_value, NODE_INTEGER) ||
10566 nd_type_p(default_value, NODE_FLOAT) ||
10567 nd_type_p(default_value, NODE_RATIONAL) ||
10568 nd_type_p(default_value, NODE_IMAGINARY) ||
10569 nd_type_p(default_value, NODE_NIL) ||
10570 nd_type_p(default_value, NODE_TRUE) ||
10571 nd_type_p(default_value, NODE_FALSE)) {
10572 COMPILE_ERROR(ERROR_ARGS
"unreachable");
10580 int kw_bits_idx = body->local_table_size - body->param.keyword->bits_start;
10581 int keyword_idx = body->param.keyword->num;
10583 ADD_INSN2(ret, node, checkkeyword,
INT2FIX(kw_bits_idx + VM_ENV_DATA_SIZE - 1),
INT2FIX(keyword_idx));
10584 ADD_INSNL(ret, node, branchif, end_label);
10585 CHECK(COMPILE_POPPED(ret,
"keyword default argument", RNODE_KW_ARG(node)->nd_body));
10586 ADD_LABEL(ret, end_label);
10596 unsigned int flag = 0;
10597 ID mid = RNODE_ATTRASGN(node)->nd_mid;
10599 LABEL *else_label = NULL;
10604 argc = setup_args(iseq, args, RNODE_ATTRASGN(node)->nd_args, &flag, NULL);
10605 CHECK(!
NIL_P(argc));
10607 int asgnflag = COMPILE_RECV(recv,
"recv", node, RNODE_ATTRASGN(node)->nd_recv);
10608 CHECK(asgnflag != -1);
10609 flag |= (
unsigned int)asgnflag;
10611 debugp_param(
"argc", argc);
10612 debugp_param(
"nd_mid",
ID2SYM(mid));
10616 mid = rb_id_attrset(mid);
10617 else_label = qcall_branch_start(iseq, recv, &branches, node, node);
10620 ADD_INSN(ret, node, putnil);
10621 ADD_SEQ(ret, recv);
10622 ADD_SEQ(ret, args);
10624 if (flag & VM_CALL_ARGS_SPLAT) {
10625 ADD_INSN(ret, node, dup);
10626 ADD_INSN1(ret, node, putobject,
INT2FIX(-1));
10627 ADD_SEND_WITH_FLAG(ret, node, idAREF,
INT2FIX(1),
INT2FIX(asgnflag));
10628 ADD_INSN1(ret, node, setn, FIXNUM_INC(argc, 2));
10629 ADD_INSN (ret, node, pop);
10632 ADD_INSN1(ret, node, setn, FIXNUM_INC(argc, 1));
10636 ADD_SEQ(ret, recv);
10637 ADD_SEQ(ret, args);
10639 ADD_SEND_WITH_FLAG(ret, node, mid, argc,
INT2FIX(flag));
10640 qcall_branch_end(iseq, ret, else_label, branches, node, node);
10641 ADD_INSN(ret, node, pop);
10648 ADD_INSN1(ret, value, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
10656 ADD_SEND_WITH_FLAG(ret, value, rb_intern(
"make_shareable_copy"),
INT2FIX(1),
INT2FIX(VM_CALL_ARGS_SIMPLE));
10663 ADD_SEND_WITH_FLAG(ret, value, rb_intern(
"make_shareable"),
INT2FIX(1),
INT2FIX(VM_CALL_ARGS_SIMPLE));
10670node_const_decl_val(
const NODE *node)
10673 switch (nd_type(node)) {
10675 if (RNODE_CDECL(node)->nd_vid) {
10676 path = rb_id2str(RNODE_CDECL(node)->nd_vid);
10680 node = RNODE_CDECL(node)->nd_else;
10688 rb_str_append(path, rb_id2str(RNODE_COLON3(node)->nd_mid));
10691 rb_bug(
"unexpected node: %s", ruby_node_name(nd_type(node)));
10697 for (; node && nd_type_p(node, NODE_COLON2); node = RNODE_COLON2(node)->nd_head) {
10698 rb_ary_push(path, rb_id2str(RNODE_COLON2(node)->nd_mid));
10700 if (node && nd_type_p(node, NODE_CONST)) {
10702 rb_ary_push(path, rb_id2str(RNODE_CONST(node)->nd_vid));
10704 else if (node && nd_type_p(node, NODE_COLON3)) {
10706 rb_ary_push(path, rb_id2str(RNODE_COLON3(node)->nd_mid));
10716 path = rb_fstring(path);
10721const_decl_path(
NODE *dest)
10724 if (!nd_type_p(dest, NODE_CALL)) {
10725 path = node_const_decl_val(dest);
10736 VALUE path = const_decl_path(dest);
10737 ADD_INSN1(ret, value, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
10738 CHECK(COMPILE(ret,
"compile_ensure_shareable_node", value));
10739 ADD_INSN1(ret, value, putobject, path);
10741 ADD_SEND_WITH_FLAG(ret, value, rb_intern(
"ensure_shareable"),
INT2FIX(2),
INT2FIX(VM_CALL_ARGS_SIMPLE));
10746#ifndef SHAREABLE_BARE_EXPRESSION
10747#define SHAREABLE_BARE_EXPRESSION 1
10751compile_shareable_literal_constant(
rb_iseq_t *iseq,
LINK_ANCHOR *ret,
enum rb_parser_shareability shareable,
NODE *dest,
const NODE *node,
size_t level,
VALUE *value_p,
int *shareable_literal_p)
10753# define compile_shareable_literal_constant_next(node, anchor, value_p, shareable_literal_p) \
10754 compile_shareable_literal_constant(iseq, anchor, shareable, dest, node, level+1, value_p, shareable_literal_p)
10756 DECL_ANCHOR(anchor);
10758 enum node_type
type = node ? nd_type(node) : NODE_NIL;
10770 *value_p = rb_node_sym_string_val(node);
10773 *value_p = rb_node_regx_string_val(node);
10776 *value_p = rb_node_line_lineno_val(node);
10779 *value_p = rb_node_integer_literal_val(node);
10782 *value_p = rb_node_float_literal_val(node);
10784 case NODE_RATIONAL:
10785 *value_p = rb_node_rational_literal_val(node);
10787 case NODE_IMAGINARY:
10788 *value_p = rb_node_imaginary_literal_val(node);
10790 case NODE_ENCODING:
10791 *value_p = rb_node_encoding_val(node);
10794 CHECK(COMPILE(ret,
"shareable_literal_constant", node));
10795 *shareable_literal_p = 1;
10799 CHECK(COMPILE(ret,
"shareable_literal_constant", node));
10800 if (shareable == rb_parser_shareable_literal) {
10806 ADD_SEND_WITH_FLAG(ret, node, idUMinus,
INT2FIX(0),
INT2FIX(VM_CALL_ARGS_SIMPLE));
10809 *shareable_literal_p = 1;
10813 VALUE lit = rb_node_str_string_val(node);
10814 ADD_INSN1(ret, node, putobject, lit);
10817 *shareable_literal_p = 1;
10823 VALUE lit = rb_node_file_path_val(node);
10824 ADD_INSN1(ret, node, putobject, lit);
10827 *shareable_literal_p = 1;
10835 ADD_INSN1(ret, node, putobject, lit);
10838 *shareable_literal_p = 1;
10844 INIT_ANCHOR(anchor);
10846 for (
NODE *n = (
NODE *)node; n; n = RNODE_LIST(n)->nd_next) {
10848 int shareable_literal_p2;
10849 NODE *elt = RNODE_LIST(n)->nd_head;
10851 CHECK(compile_shareable_literal_constant_next(elt, anchor, &val, &shareable_literal_p2));
10852 if (shareable_literal_p2) {
10855 else if (
RTEST(lit)) {
10861 if (!UNDEF_P(val)) {
10873 if (!RNODE_HASH(node)->nd_brace) {
10875 *shareable_literal_p = 0;
10878 for (
NODE *n = RNODE_HASH(node)->nd_head; n; n = RNODE_LIST(RNODE_LIST(n)->nd_next)->nd_next) {
10879 if (!RNODE_LIST(n)->nd_head) {
10881 goto compile_shareable;
10885 INIT_ANCHOR(anchor);
10886 lit = rb_hash_new();
10887 for (
NODE *n = RNODE_HASH(node)->nd_head; n; n = RNODE_LIST(RNODE_LIST(n)->nd_next)->nd_next) {
10889 VALUE value_val = 0;
10890 int shareable_literal_p2;
10891 NODE *key = RNODE_LIST(n)->nd_head;
10892 NODE *val = RNODE_LIST(RNODE_LIST(n)->nd_next)->nd_head;
10893 CHECK(compile_shareable_literal_constant_next(key, anchor, &key_val, &shareable_literal_p2));
10894 if (shareable_literal_p2) {
10897 else if (
RTEST(lit)) {
10898 rb_hash_clear(lit);
10901 CHECK(compile_shareable_literal_constant_next(val, anchor, &value_val, &shareable_literal_p2));
10902 if (shareable_literal_p2) {
10905 else if (
RTEST(lit)) {
10906 rb_hash_clear(lit);
10910 if (!UNDEF_P(key_val) && !UNDEF_P(value_val)) {
10911 rb_hash_aset(lit, key_val, value_val);
10914 rb_hash_clear(lit);
10925 if (shareable == rb_parser_shareable_literal &&
10926 (SHAREABLE_BARE_EXPRESSION || level > 0)) {
10927 CHECK(compile_ensure_shareable_node(iseq, ret, dest, node));
10929 *shareable_literal_p = 1;
10932 CHECK(COMPILE(ret,
"shareable_literal_constant", node));
10934 *shareable_literal_p = 0;
10940 if (nd_type(node) == NODE_LIST) {
10941 ADD_INSN1(anchor, node, newarray,
INT2FIX(RNODE_LIST(node)->as.nd_alen));
10943 else if (nd_type(node) == NODE_HASH) {
10944 long len = RNODE_LIST(RNODE_HASH(node)->nd_head)->as.nd_alen;
10950 *shareable_literal_p = 0;
10951 ADD_SEQ(ret, anchor);
10957 if (nd_type(node) == NODE_LIST) {
10958 ADD_INSN1(anchor, node, newarray,
INT2FIX(RNODE_LIST(node)->as.nd_alen));
10960 else if (nd_type(node) == NODE_HASH) {
10961 long len = RNODE_LIST(RNODE_HASH(node)->nd_head)->as.nd_alen;
10966 CHECK(compile_make_shareable_node(iseq, ret, anchor, node,
false));
10968 *shareable_literal_p = 1;
10972 ADD_INSN1(ret, node, putobject, val);
10975 *shareable_literal_p = 1;
10982compile_shareable_constant_value(
rb_iseq_t *iseq,
LINK_ANCHOR *ret,
enum rb_parser_shareability shareable,
const NODE *lhs,
const NODE *value)
10986 DECL_ANCHOR(anchor);
10987 INIT_ANCHOR(anchor);
10989 switch (shareable) {
10990 case rb_parser_shareable_none:
10991 CHECK(COMPILE(ret,
"compile_shareable_constant_value", value));
10994 case rb_parser_shareable_literal:
10995 CHECK(compile_shareable_literal_constant(iseq, anchor, shareable, (
NODE *)lhs, value, 0, &val, &literal_p));
10996 ADD_SEQ(ret, anchor);
10999 case rb_parser_shareable_copy:
11000 case rb_parser_shareable_everything:
11001 CHECK(compile_shareable_literal_constant(iseq, anchor, shareable, (
NODE *)lhs, value, 0, &val, &literal_p));
11003 CHECK(compile_make_shareable_node(iseq, ret, anchor, value, shareable == rb_parser_shareable_copy));
11006 ADD_SEQ(ret, anchor);
11010 rb_bug(
"unexpected rb_parser_shareability: %d", shareable);
11027 int lineno = ISEQ_COMPILE_DATA(iseq)->last_line;
11028 if (lineno == 0) lineno =
FIX2INT(rb_iseq_first_lineno(iseq));
11029 debugs(
"node: NODE_NIL(implicit)\n");
11030 ADD_SYNTHETIC_INSN(ret, lineno, -1, putnil);
11034 return iseq_compile_each0(iseq, ret, node, popped);
11040 const int line = (int)nd_line(node);
11041 const enum node_type
type = nd_type(node);
11044 if (ISEQ_COMPILE_DATA(iseq)->last_line == line) {
11048 if (nd_fl_newline(node)) {
11050 ISEQ_COMPILE_DATA(iseq)->last_line = line;
11051 if (line > 0 && ISEQ_COVERAGE(iseq) && ISEQ_LINE_COVERAGE(iseq)) {
11052 event |= RUBY_EVENT_COVERAGE_LINE;
11054 ADD_TRACE(ret, event);
11058 debug_node_start(node);
11059#undef BEFORE_RETURN
11060#define BEFORE_RETURN debug_node_end()
11064 CHECK(compile_block(iseq, ret, node, popped));
11068 CHECK(compile_if(iseq, ret, node, popped,
type));
11071 CHECK(compile_case(iseq, ret, node, popped));
11074 CHECK(compile_case2(iseq, ret, node, popped));
11077 CHECK(compile_case3(iseq, ret, node, popped));
11081 CHECK(compile_loop(iseq, ret, node, popped,
type));
11085 CHECK(compile_iter(iseq, ret, node, popped));
11087 case NODE_FOR_MASGN:
11088 CHECK(compile_for_masgn(iseq, ret, node, popped));
11091 CHECK(compile_break(iseq, ret, node, popped));
11094 CHECK(compile_next(iseq, ret, node, popped));
11097 CHECK(compile_redo(iseq, ret, node, popped));
11100 CHECK(compile_retry(iseq, ret, node, popped));
11103 CHECK(COMPILE_(ret,
"NODE_BEGIN", RNODE_BEGIN(node)->nd_body, popped));
11107 CHECK(compile_rescue(iseq, ret, node, popped));
11110 CHECK(compile_resbody(iseq, ret, node, popped));
11113 CHECK(compile_ensure(iseq, ret, node, popped));
11118 LABEL *end_label = NEW_LABEL(line);
11119 CHECK(COMPILE(ret,
"nd_1st", RNODE_OR(node)->nd_1st));
11121 ADD_INSN(ret, node, dup);
11123 if (
type == NODE_AND) {
11124 ADD_INSNL(ret, node, branchunless, end_label);
11127 ADD_INSNL(ret, node, branchif, end_label);
11130 ADD_INSN(ret, node, pop);
11132 CHECK(COMPILE_(ret,
"nd_2nd", RNODE_OR(node)->nd_2nd, popped));
11133 ADD_LABEL(ret, end_label);
11138 compile_massign(iseq, ret, node, popped);
11143 ID id = RNODE_LASGN(node)->nd_vid;
11144 int idx = ISEQ_BODY(body->local_iseq)->local_table_size - get_local_var_idx(iseq,
id);
11146 debugs(
"lvar: %s idx: %d\n", rb_id2name(
id), idx);
11147 CHECK(COMPILE(ret,
"rvalue", RNODE_LASGN(node)->nd_value));
11150 ADD_INSN(ret, node, dup);
11152 ADD_SETLOCAL(ret, node, idx, get_lvar_level(iseq));
11157 ID id = RNODE_DASGN(node)->nd_vid;
11158 CHECK(COMPILE(ret,
"dvalue", RNODE_DASGN(node)->nd_value));
11159 debugi(
"dassn id", rb_id2str(
id) ?
id :
'*');
11162 ADD_INSN(ret, node, dup);
11165 idx = get_dyna_var_idx(iseq,
id, &lv, &ls);
11168 COMPILE_ERROR(ERROR_ARGS
"NODE_DASGN: unknown id (%"PRIsVALUE
")",
11172 ADD_SETLOCAL(ret, node, ls - idx, lv);
11176 CHECK(COMPILE(ret,
"lvalue", RNODE_GASGN(node)->nd_value));
11179 ADD_INSN(ret, node, dup);
11181 ADD_INSN1(ret, node, setglobal,
ID2SYM(RNODE_GASGN(node)->nd_vid));
11185 CHECK(COMPILE(ret,
"lvalue", RNODE_IASGN(node)->nd_value));
11187 ADD_INSN(ret, node, dup);
11189 ADD_INSN2(ret, node, setinstancevariable,
11190 ID2SYM(RNODE_IASGN(node)->nd_vid),
11191 get_ivar_ic_value(iseq,RNODE_IASGN(node)->nd_vid));
11195 if (RNODE_CDECL(node)->nd_vid) {
11196 CHECK(compile_shareable_constant_value(iseq, ret, RNODE_CDECL(node)->shareability, node, RNODE_CDECL(node)->nd_value));
11199 ADD_INSN(ret, node, dup);
11202 ADD_INSN1(ret, node, putspecialobject,
11203 INT2FIX(VM_SPECIAL_OBJECT_CONST_BASE));
11204 ADD_INSN1(ret, node, setconstant,
ID2SYM(RNODE_CDECL(node)->nd_vid));
11207 compile_cpath(ret, iseq, RNODE_CDECL(node)->nd_else);
11208 CHECK(compile_shareable_constant_value(iseq, ret, RNODE_CDECL(node)->shareability, node, RNODE_CDECL(node)->nd_value));
11209 ADD_INSN(ret, node, swap);
11212 ADD_INSN1(ret, node, topn,
INT2FIX(1));
11213 ADD_INSN(ret, node, swap);
11216 ADD_INSN1(ret, node, setconstant,
ID2SYM(get_node_colon_nd_mid(RNODE_CDECL(node)->nd_else)));
11221 CHECK(COMPILE(ret,
"cvasgn val", RNODE_CVASGN(node)->nd_value));
11223 ADD_INSN(ret, node, dup);
11225 ADD_INSN2(ret, node, setclassvariable,
11226 ID2SYM(RNODE_CVASGN(node)->nd_vid),
11227 get_cvar_ic_value(iseq, RNODE_CVASGN(node)->nd_vid));
11230 case NODE_OP_ASGN1:
11231 CHECK(compile_op_asgn1(iseq, ret, node, popped));
11233 case NODE_OP_ASGN2:
11234 CHECK(compile_op_asgn2(iseq, ret, node, popped));
11236 case NODE_OP_CDECL:
11237 CHECK(compile_op_cdecl(iseq, ret, node, popped));
11239 case NODE_OP_ASGN_AND:
11240 case NODE_OP_ASGN_OR:
11241 CHECK(compile_op_log(iseq, ret, node, popped,
type));
11245 if (compile_call_precheck_freeze(iseq, ret, node, node, popped) == TRUE) {
11251 if (compile_call(iseq, ret, node,
type, node, popped,
false) == COMPILE_NG) {
11257 CHECK(compile_super(iseq, ret, node, popped,
type));
11260 CHECK(compile_array(iseq, ret, node, popped, TRUE) >= 0);
11265 ADD_INSN1(ret, node, newarray,
INT2FIX(0));
11270 CHECK(compile_hash(iseq, ret, node, FALSE, popped) >= 0);
11273 CHECK(compile_return(iseq, ret, node, popped));
11276 CHECK(compile_yield(iseq, ret, node, popped));
11280 compile_lvar(iseq, ret, node, RNODE_LVAR(node)->nd_vid);
11286 debugi(
"nd_vid", RNODE_DVAR(node)->nd_vid);
11288 idx = get_dyna_var_idx(iseq, RNODE_DVAR(node)->nd_vid, &lv, &ls);
11290 COMPILE_ERROR(ERROR_ARGS
"unknown dvar (%"PRIsVALUE
")",
11291 rb_id2str(RNODE_DVAR(node)->nd_vid));
11294 ADD_GETLOCAL(ret, node, ls - idx, lv);
11299 ADD_INSN1(ret, node, getglobal,
ID2SYM(RNODE_GVAR(node)->nd_vid));
11301 ADD_INSN(ret, node, pop);
11306 debugi(
"nd_vid", RNODE_IVAR(node)->nd_vid);
11308 ADD_INSN2(ret, node, getinstancevariable,
11309 ID2SYM(RNODE_IVAR(node)->nd_vid),
11310 get_ivar_ic_value(iseq, RNODE_IVAR(node)->nd_vid));
11315 debugi(
"nd_vid", RNODE_CONST(node)->nd_vid);
11317 if (ISEQ_COMPILE_DATA(iseq)->option->inline_const_cache) {
11319 VALUE segments = rb_ary_new_from_args(1,
ID2SYM(RNODE_CONST(node)->nd_vid));
11321 ADD_INSN1(ret, node, opt_getconstant_path, segments);
11325 ADD_INSN(ret, node, putnil);
11326 ADD_INSN1(ret, node, putobject,
Qtrue);
11327 ADD_INSN1(ret, node, getconstant,
ID2SYM(RNODE_CONST(node)->nd_vid));
11331 ADD_INSN(ret, node, pop);
11337 ADD_INSN2(ret, node, getclassvariable,
11338 ID2SYM(RNODE_CVAR(node)->nd_vid),
11339 get_cvar_ic_value(iseq, RNODE_CVAR(node)->nd_vid));
11343 case NODE_NTH_REF:{
11345 if (!RNODE_NTH_REF(node)->nd_nth) {
11346 ADD_INSN(ret, node, putnil);
11349 ADD_INSN2(ret, node, getspecial,
INT2FIX(1) ,
11350 INT2FIX(RNODE_NTH_REF(node)->nd_nth << 1));
11354 case NODE_BACK_REF:{
11356 ADD_INSN2(ret, node, getspecial,
INT2FIX(1) ,
11357 INT2FIX(0x01 | (RNODE_BACK_REF(node)->nd_nth << 1)));
11364 CHECK(compile_match(iseq, ret, node, popped,
type));
11368 ADD_INSN1(ret, node, putobject, rb_node_sym_string_val(node));
11374 ADD_INSN1(ret, node, putobject, rb_node_line_lineno_val(node));
11378 case NODE_ENCODING:{
11380 ADD_INSN1(ret, node, putobject, rb_node_encoding_val(node));
11384 case NODE_INTEGER:{
11385 VALUE lit = rb_node_integer_literal_val(node);
11387 debugp_param(
"integer", lit);
11389 ADD_INSN1(ret, node, putobject, lit);
11395 VALUE lit = rb_node_float_literal_val(node);
11397 debugp_param(
"float", lit);
11399 ADD_INSN1(ret, node, putobject, lit);
11404 case NODE_RATIONAL:{
11405 VALUE lit = rb_node_rational_literal_val(node);
11407 debugp_param(
"rational", lit);
11409 ADD_INSN1(ret, node, putobject, lit);
11414 case NODE_IMAGINARY:{
11415 VALUE lit = rb_node_imaginary_literal_val(node);
11417 debugp_param(
"imaginary", lit);
11419 ADD_INSN1(ret, node, putobject, lit);
11426 debugp_param(
"nd_lit", get_string_value(node));
11428 VALUE lit = get_string_value(node);
11431 option->frozen_string_literal != ISEQ_FROZEN_STRING_LITERAL_DISABLED) {
11432 lit = rb_str_with_debug_created_info(lit, rb_iseq_path(iseq), line);
11435 switch (option->frozen_string_literal) {
11436 case ISEQ_FROZEN_STRING_LITERAL_UNSET:
11437 ADD_INSN1(ret, node, dupchilledstring, lit);
11439 case ISEQ_FROZEN_STRING_LITERAL_DISABLED:
11440 ADD_INSN1(ret, node, dupstring, lit);
11442 case ISEQ_FROZEN_STRING_LITERAL_ENABLED:
11443 ADD_INSN1(ret, node, putobject, lit);
11446 rb_bug(
"invalid frozen_string_literal");
11453 compile_dstr(iseq, ret, node);
11456 ADD_INSN(ret, node, pop);
11461 ADD_CALL_RECEIVER(ret, node);
11462 VALUE str = rb_node_str_string_val(node);
11463 ADD_INSN1(ret, node, putobject, str);
11465 ADD_CALL(ret, node, idBackquote,
INT2FIX(1));
11468 ADD_INSN(ret, node, pop);
11473 ADD_CALL_RECEIVER(ret, node);
11474 compile_dstr(iseq, ret, node);
11475 ADD_CALL(ret, node, idBackquote,
INT2FIX(1));
11478 ADD_INSN(ret, node, pop);
11483 CHECK(compile_evstr(iseq, ret, RNODE_EVSTR(node)->nd_body, popped));
11487 VALUE lit = rb_node_regx_string_val(node);
11489 ADD_INSN1(ret, node, putobject, lit);
11495 compile_dregx(iseq, ret, node, popped);
11498 int ic_index = body->ise_size++;
11500 block_iseq = NEW_CHILD_ISEQ(RNODE_ONCE(node)->nd_body, make_name_for_block(iseq), ISEQ_TYPE_PLAIN, line);
11502 ADD_INSN2(ret, node, once, block_iseq,
INT2FIX(ic_index));
11506 ADD_INSN(ret, node, pop);
11510 case NODE_ARGSCAT:{
11512 CHECK(COMPILE(ret,
"argscat head", RNODE_ARGSCAT(node)->nd_head));
11513 ADD_INSN1(ret, node, splatarray,
Qfalse);
11514 ADD_INSN(ret, node, pop);
11515 CHECK(COMPILE(ret,
"argscat body", RNODE_ARGSCAT(node)->nd_body));
11516 ADD_INSN1(ret, node, splatarray,
Qfalse);
11517 ADD_INSN(ret, node, pop);
11520 CHECK(COMPILE(ret,
"argscat head", RNODE_ARGSCAT(node)->nd_head));
11521 const NODE *body_node = RNODE_ARGSCAT(node)->nd_body;
11522 if (nd_type_p(body_node, NODE_LIST)) {
11523 CHECK(compile_array(iseq, ret, body_node, popped, FALSE) >= 0);
11526 CHECK(COMPILE(ret,
"argscat body", body_node));
11527 ADD_INSN(ret, node, concattoarray);
11532 case NODE_ARGSPUSH:{
11534 CHECK(COMPILE(ret,
"argspush head", RNODE_ARGSPUSH(node)->nd_head));
11535 ADD_INSN1(ret, node, splatarray,
Qfalse);
11536 ADD_INSN(ret, node, pop);
11537 CHECK(COMPILE_(ret,
"argspush body", RNODE_ARGSPUSH(node)->nd_body, popped));
11540 CHECK(COMPILE(ret,
"argspush head", RNODE_ARGSPUSH(node)->nd_head));
11541 const NODE *body_node = RNODE_ARGSPUSH(node)->nd_body;
11542 if (keyword_node_p(body_node)) {
11543 CHECK(COMPILE_(ret,
"array element", body_node, FALSE));
11544 ADD_INSN(ret, node, pushtoarraykwsplat);
11546 else if (static_literal_node_p(body_node, iseq,
false)) {
11547 ADD_INSN1(ret, body_node, putobject, static_literal_value(body_node, iseq));
11548 ADD_INSN1(ret, node, pushtoarray,
INT2FIX(1));
11551 CHECK(COMPILE_(ret,
"array element", body_node, FALSE));
11552 ADD_INSN1(ret, node, pushtoarray,
INT2FIX(1));
11558 CHECK(COMPILE(ret,
"splat", RNODE_SPLAT(node)->nd_head));
11559 ADD_INSN1(ret, node, splatarray,
Qtrue);
11562 ADD_INSN(ret, node, pop);
11567 ID mid = RNODE_DEFN(node)->nd_mid;
11568 const rb_iseq_t *method_iseq = NEW_ISEQ(RNODE_DEFN(node)->nd_defn,
11570 ISEQ_TYPE_METHOD, line);
11572 debugp_param(
"defn/iseq", rb_iseqw_new(method_iseq));
11573 ADD_INSN2(ret, node, definemethod,
ID2SYM(mid), method_iseq);
11577 ADD_INSN1(ret, node, putobject,
ID2SYM(mid));
11583 ID mid = RNODE_DEFS(node)->nd_mid;
11584 const rb_iseq_t * singleton_method_iseq = NEW_ISEQ(RNODE_DEFS(node)->nd_defn,
11586 ISEQ_TYPE_METHOD, line);
11588 debugp_param(
"defs/iseq", rb_iseqw_new(singleton_method_iseq));
11589 CHECK(COMPILE(ret,
"defs: recv", RNODE_DEFS(node)->nd_recv));
11590 ADD_INSN2(ret, node, definesmethod,
ID2SYM(mid), singleton_method_iseq);
11594 ADD_INSN1(ret, node, putobject,
ID2SYM(mid));
11599 ADD_INSN1(ret, node, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
11600 ADD_INSN1(ret, node, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_CBASE));
11601 CHECK(COMPILE(ret,
"alias arg1", RNODE_ALIAS(node)->nd_1st));
11602 CHECK(COMPILE(ret,
"alias arg2", RNODE_ALIAS(node)->nd_2nd));
11603 ADD_SEND(ret, node, id_core_set_method_alias,
INT2FIX(3));
11606 ADD_INSN(ret, node, pop);
11611 ADD_INSN1(ret, node, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
11612 ADD_INSN1(ret, node, putobject,
ID2SYM(RNODE_VALIAS(node)->nd_alias));
11613 ADD_INSN1(ret, node, putobject,
ID2SYM(RNODE_VALIAS(node)->nd_orig));
11614 ADD_SEND(ret, node, id_core_set_variable_alias,
INT2FIX(2));
11617 ADD_INSN(ret, node, pop);
11624 for (
long i = 0; i < ary->len; i++) {
11625 ADD_INSN1(ret, node, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
11626 ADD_INSN1(ret, node, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_CBASE));
11627 CHECK(COMPILE(ret,
"undef arg", ary->data[i]));
11628 ADD_SEND(ret, node, id_core_undef_method,
INT2FIX(2));
11630 if (i < ary->
len - 1) {
11631 ADD_INSN(ret, node, pop);
11636 ADD_INSN(ret, node, pop);
11641 const rb_iseq_t *class_iseq = NEW_CHILD_ISEQ(RNODE_CLASS(node)->nd_body,
11642 rb_str_freeze(rb_sprintf(
"<class:%"PRIsVALUE
">", rb_id2str(get_node_colon_nd_mid(RNODE_CLASS(node)->nd_cpath)))),
11643 ISEQ_TYPE_CLASS, line);
11644 const int flags = VM_DEFINECLASS_TYPE_CLASS |
11645 (RNODE_CLASS(node)->nd_super ? VM_DEFINECLASS_FLAG_HAS_SUPERCLASS : 0) |
11646 compile_cpath(ret, iseq, RNODE_CLASS(node)->nd_cpath);
11648 CHECK(COMPILE(ret,
"super", RNODE_CLASS(node)->nd_super));
11649 ADD_INSN3(ret, node, defineclass,
ID2SYM(get_node_colon_nd_mid(RNODE_CLASS(node)->nd_cpath)), class_iseq,
INT2FIX(flags));
11653 ADD_INSN(ret, node, pop);
11658 const rb_iseq_t *module_iseq = NEW_CHILD_ISEQ(RNODE_MODULE(node)->nd_body,
11659 rb_str_freeze(rb_sprintf(
"<module:%"PRIsVALUE
">", rb_id2str(get_node_colon_nd_mid(RNODE_MODULE(node)->nd_cpath)))),
11660 ISEQ_TYPE_CLASS, line);
11661 const int flags = VM_DEFINECLASS_TYPE_MODULE |
11662 compile_cpath(ret, iseq, RNODE_MODULE(node)->nd_cpath);
11664 ADD_INSN (ret, node, putnil);
11665 ADD_INSN3(ret, node, defineclass,
ID2SYM(get_node_colon_nd_mid(RNODE_MODULE(node)->nd_cpath)), module_iseq,
INT2FIX(flags));
11669 ADD_INSN(ret, node, pop);
11675 const rb_iseq_t *singleton_class = NEW_ISEQ(RNODE_SCLASS(node)->nd_body, rb_fstring_lit(
"singleton class"),
11676 ISEQ_TYPE_CLASS, line);
11678 CHECK(COMPILE(ret,
"sclass#recv", RNODE_SCLASS(node)->nd_recv));
11679 ADD_INSN (ret, node, putnil);
11680 CONST_ID(singletonclass,
"singletonclass");
11684 int sclass_flags = VM_DEFINECLASS_TYPE_SINGLETON_CLASS;
11685 const NODE *recv = RNODE_SCLASS(node)->nd_recv;
11686 if (!(nd_type_p(recv, NODE_SELF) &&
11687 ISEQ_BODY(iseq)->
type == ISEQ_TYPE_CLASS) &&
11688 !cpath_const_p(recv)) {
11689 sclass_flags |= VM_DEFINECLASS_FLAG_DYNAMIC_CREF;
11692 ADD_INSN3(ret, node, defineclass,
11693 ID2SYM(singletonclass), singleton_class,
11698 ADD_INSN(ret, node, pop);
11703 CHECK(compile_colon2(iseq, ret, node, popped));
11706 CHECK(compile_colon3(iseq, ret, node, popped));
11709 CHECK(compile_dots(iseq, ret, node, popped, FALSE));
11712 CHECK(compile_dots(iseq, ret, node, popped, TRUE));
11716 LABEL *lend = NEW_LABEL(line);
11717 LABEL *ltrue = NEW_LABEL(line);
11718 LABEL *lfalse = NEW_LABEL(line);
11719 CHECK(compile_flip_flop(iseq, ret, node,
type == NODE_FLIP2,
11721 ADD_LABEL(ret, ltrue);
11722 ADD_INSN1(ret, node, putobject,
Qtrue);
11723 ADD_INSNL(ret, node, jump, lend);
11724 ADD_LABEL(ret, lfalse);
11725 ADD_INSN1(ret, node, putobject,
Qfalse);
11726 ADD_LABEL(ret, lend);
11731 ADD_INSN(ret, node, putself);
11737 ADD_INSN(ret, node, putnil);
11743 ADD_INSN1(ret, node, putobject,
Qtrue);
11749 ADD_INSN1(ret, node, putobject,
Qfalse);
11754 CHECK(compile_errinfo(iseq, ret, node, popped));
11758 CHECK(compile_defined_expr(iseq, ret, node,
Qtrue,
false));
11761 case NODE_POSTEXE:{
11765 int is_index = body->ise_size++;
11767 rb_iseq_new_with_callback_new_callback(build_postexe_iseq, RNODE_POSTEXE(node)->nd_body);
11769 NEW_CHILD_ISEQ_WITH_CALLBACK(ifunc, rb_fstring(make_name_for_block(iseq)), ISEQ_TYPE_BLOCK, line);
11771 ADD_INSN2(ret, node, once, once_iseq,
INT2FIX(is_index));
11775 ADD_INSN(ret, node, pop);
11780 CHECK(compile_kw_arg(iseq, ret, node, popped));
11783 compile_dstr(iseq, ret, node);
11785 ADD_INSN(ret, node, intern);
11788 ADD_INSN(ret, node, pop);
11792 case NODE_ATTRASGN:
11793 CHECK(compile_attrasgn(iseq, ret, node, popped));
11797 const rb_iseq_t *block = NEW_CHILD_ISEQ(RNODE_LAMBDA(node)->nd_body, make_name_for_block(iseq), ISEQ_TYPE_BLOCK, line);
11800 ADD_INSN1(ret, node, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
11801 ADD_CALL_WITH_BLOCK(ret, node, idLambda, argc, block);
11805 ADD_INSN(ret, node, pop);
11810 UNKNOWN_NODE(
"iseq_compile_each", node, COMPILE_NG);
11825insn_data_length(
INSN *iobj)
11827 return insn_len(iobj->insn_id);
11831calc_sp_depth(
int depth,
INSN *insn)
11833 return comptime_insn_stack_increase(depth, insn->insn_id, insn->operands);
11837opobj_inspect(
VALUE obj)
11857insn_data_to_s_detail(
INSN *iobj)
11859 VALUE str = rb_sprintf(
"%-20s ", insn_name(iobj->insn_id));
11861 if (iobj->operands) {
11862 const char *types = insn_op_types(iobj->insn_id);
11865 for (j = 0; types[j]; j++) {
11866 char type = types[j];
11872 rb_str_catf(str, LABEL_FORMAT, lobj->label_no);
11890 VALUE v = OPERAND_AT(iobj, j);
11905 rb_str_catf(str,
"<ivc:%d>",
FIX2INT(OPERAND_AT(iobj, j)));
11908 rb_str_catf(str,
"<icvarc:%d>",
FIX2INT(OPERAND_AT(iobj, j)));
11911 rb_str_catf(str,
"<ise:%d>",
FIX2INT(OPERAND_AT(iobj, j)));
11917 if (vm_ci_mid(ci))
rb_str_append(str, rb_id2str(vm_ci_mid(ci)));
11918 rb_str_catf(str,
", %d>", vm_ci_argc(ci));
11926 void *func = (
void *)OPERAND_AT(iobj, j);
11929 if (dladdr(func, &info) && info.dli_sname) {
11934 rb_str_catf(str,
"<%p>", func);
11944 if (types[j + 1]) {
11955 dump_disasm_list_with_cursor(link, NULL, NULL);
11966 printf(
"-- raw disasm--------\n");
11969 if (curr) printf(curr == link ?
"*" :
" ");
11970 switch (link->type) {
11971 case ISEQ_ELEMENT_INSN:
11973 iobj = (
INSN *)link;
11974 str = insn_data_to_s_detail(iobj);
11975 printf(
" %04d %-65s(%4u)\n", pos,
StringValueCStr(str), iobj->insn_info.line_no);
11976 pos += insn_data_length(iobj);
11979 case ISEQ_ELEMENT_LABEL:
11981 lobj = (
LABEL *)link;
11982 printf(LABEL_FORMAT
" [sp: %d, unremovable: %d, refcnt: %d]%s\n", lobj->label_no, lobj->sp, lobj->unremovable, lobj->refcnt,
11983 dest == lobj ?
" <---" :
"");
11986 case ISEQ_ELEMENT_TRACE:
11989 printf(
" trace: %0x\n", trace->event);
11992 case ISEQ_ELEMENT_ADJUST:
11995 printf(
" adjust: [label: %d]\n", adjust->label ? adjust->label->label_no : -1);
12000 rb_raise(
rb_eSyntaxError,
"dump_disasm_list error: %d\n", (
int)link->type);
12004 printf(
"---------------------\n");
12009rb_insn_len(
VALUE insn)
12011 return insn_len(insn);
12015rb_insns_name(
int i)
12017 return insn_name(i);
12021rb_insns_name_array(
void)
12025 for (i = 0; i < VM_INSTRUCTION_SIZE; i++) {
12036 obj = rb_to_symbol_type(obj);
12038 if (st_lookup(labels_table, obj, &tmp) == 0) {
12039 label = NEW_LABEL(0);
12040 st_insert(labels_table, obj, (st_data_t)label);
12043 label = (
LABEL *)tmp;
12050get_exception_sym2type(
VALUE sym)
12052 static VALUE symRescue, symEnsure, symRetry;
12053 static VALUE symBreak, symRedo, symNext;
12055 if (symRescue == 0) {
12064 if (sym == symRescue)
return CATCH_TYPE_RESCUE;
12065 if (sym == symEnsure)
return CATCH_TYPE_ENSURE;
12066 if (sym == symRetry)
return CATCH_TYPE_RETRY;
12067 if (sym == symBreak)
return CATCH_TYPE_BREAK;
12068 if (sym == symRedo)
return CATCH_TYPE_REDO;
12069 if (sym == symNext)
return CATCH_TYPE_NEXT;
12070 rb_raise(
rb_eSyntaxError,
"invalid exception symbol: %+"PRIsVALUE, sym);
12083 LABEL *lstart, *lend, *lcont;
12098 lstart = register_label(iseq, labels_table,
RARRAY_AREF(v, 2));
12099 lend = register_label(iseq, labels_table,
RARRAY_AREF(v, 3));
12100 lcont = register_label(iseq, labels_table,
RARRAY_AREF(v, 4));
12104 if (
type == CATCH_TYPE_RESCUE ||
12105 type == CATCH_TYPE_BREAK ||
12106 type == CATCH_TYPE_NEXT) {
12112 ADD_CATCH_ENTRY(
type, lstart, lend, eiseq, lcont);
12120insn_make_insn_table(
void)
12124 table = st_init_numtable_with_size(VM_INSTRUCTION_SIZE);
12126 for (i=0; i<VM_INSTRUCTION_SIZE; i++) {
12140 iseqw = rb_iseq_load(op, (
VALUE)iseq,
Qnil);
12142 else if (
CLASS_OF(op) == rb_cISeq) {
12149 loaded_iseq = rb_iseqw_to_iseq(iseqw);
12150 return loaded_iseq;
12158 unsigned int flag = 0;
12169 if (!
NIL_P(vorig_argc)) orig_argc =
FIX2INT(vorig_argc);
12171 if (!
NIL_P(vkw_arg)) {
12174 size_t n = rb_callinfo_kwarg_bytes(
len);
12177 kw_arg->references = 0;
12178 kw_arg->keyword_len =
len;
12179 for (i = 0; i <
len; i++) {
12182 kw_arg->keywords[i] = kw;
12187 const struct rb_callinfo *ci = new_callinfo(iseq, mid, orig_argc, flag, kw_arg, (flag & VM_CALL_ARGS_SIMPLE) == 0);
12193event_name_to_flag(
VALUE sym)
12195#define CHECK_EVENT(ev) if (sym == ID2SYM(rb_intern_const(#ev))) return ev;
12216 int line_no = 0, node_id = -1, insn_idx = 0;
12217 int ret = COMPILE_OK;
12222 static struct st_table *insn_table;
12224 if (insn_table == 0) {
12225 insn_table = insn_make_insn_table();
12228 for (i=0; i<
len; i++) {
12234 ADD_TRACE(anchor, event);
12237 LABEL *label = register_label(iseq, labels_table, obj);
12238 ADD_LABEL(anchor, label);
12255 if (st_lookup(insn_table, (st_data_t)insn, &insn_id) == 0) {
12257 COMPILE_ERROR(iseq, line_no,
12258 "unknown instruction: %+"PRIsVALUE, insn);
12263 if (argc != insn_len((
VALUE)insn_id)-1) {
12264 COMPILE_ERROR(iseq, line_no,
12265 "operand size mismatch");
12271 argv = compile_data_calloc2_type(iseq,
VALUE, argc);
12276 (
enum ruby_vminsn_type)insn_id, argc, argv));
12278 for (j=0; j<argc; j++) {
12280 switch (insn_op_type((
VALUE)insn_id, j)) {
12282 LABEL *label = register_label(iseq, labels_table, op);
12283 argv[j] = (
VALUE)label;
12298 VALUE v = (
VALUE)iseq_build_load_iseq(iseq, op);
12309 if (
NUM2UINT(op) >= ISEQ_BODY(iseq)->ise_size) {
12310 ISEQ_BODY(iseq)->ise_size =
NUM2INT(op) + 1;
12316 op = rb_to_array_type(op);
12320 sym = rb_to_symbol_type(sym);
12325 argv[j] = segments;
12327 ISEQ_BODY(iseq)->ic_size++;
12332 if (
NUM2UINT(op) >= ISEQ_BODY(iseq)->ivc_size) {
12333 ISEQ_BODY(iseq)->ivc_size =
NUM2INT(op) + 1;
12338 if (
NUM2UINT(op) >= ISEQ_BODY(iseq)->icvarc_size) {
12339 ISEQ_BODY(iseq)->icvarc_size =
NUM2INT(op) + 1;
12343 argv[j] = iseq_build_callinfo_from_hash(iseq, op);
12346 argv[j] = rb_to_symbol_type(op);
12353 op = rb_to_array_type(op);
12358 register_label(iseq, labels_table, sym);
12359 cdhash_aset(map, key, (
VALUE)label);
12369#if SIZEOF_VALUE <= SIZEOF_LONG
12374 argv[j] = (
VALUE)funcptr;
12385 (
enum ruby_vminsn_type)insn_id, argc, NULL));
12389 rb_raise(
rb_eTypeError,
"unexpected object for instruction");
12394 validate_labels(iseq, labels_table);
12395 if (!ret)
return ret;
12396 return iseq_setup(iseq, anchor);
12399#define CHECK_ARRAY(v) rb_to_array_type(v)
12400#define CHECK_SYMBOL(v) rb_to_symbol_type(v)
12405 VALUE val = rb_hash_aref(param, sym);
12410 else if (!
NIL_P(val)) {
12411 rb_raise(
rb_eTypeError,
"invalid %+"PRIsVALUE
" Fixnum: %+"PRIsVALUE,
12417static const struct rb_iseq_param_keyword *
12423 VALUE key, sym, default_val;
12426 struct rb_iseq_param_keyword *keyword =
ZALLOC(
struct rb_iseq_param_keyword);
12428 ISEQ_BODY(iseq)->param.flags.has_kw = TRUE;
12430 keyword->num =
len;
12431#define SYM(s) ID2SYM(rb_intern_const(#s))
12432 (void)int_param(&keyword->bits_start, params, SYM(kwbits));
12433 i = keyword->bits_start - keyword->num;
12434 ids = (
ID *)&ISEQ_BODY(iseq)->local_table[i];
12438 for (i = 0; i <
len; i++) {
12442 goto default_values;
12445 keyword->required_num++;
12449 default_len =
len - i;
12450 if (default_len == 0) {
12451 keyword->table = ids;
12454 else if (default_len < 0) {
12460 for (j = 0; i <
len; i++, j++) {
12474 rb_raise(
rb_eTypeError,
"keyword default has unsupported len %+"PRIsVALUE, key);
12480 keyword->table = ids;
12481 keyword->default_values = dvs;
12487iseq_insn_each_object_mark_and_move(
VALUE * obj,
VALUE _)
12489 rb_gc_mark_and_move(obj);
12496 size_t size =
sizeof(
INSN);
12497 size_t align = ALIGNMENT_SIZE_OF(
INSN);
12498 unsigned int pos = 0;
12501 size_t padding = calc_padding((
void *)&storage->buff[pos], align);
12502 size_t offset = pos + size + padding;
12503 if (offset > storage->size || offset > storage->pos) {
12505 storage = storage->next;
12508 pos += (int)padding;
12510 iobj = (
INSN *)&storage->buff[pos];
12512 if (iobj->operands) {
12513 iseq_insn_each_markable_object(iobj, iseq_insn_each_object_mark_and_move, (
VALUE)0);
12526 .flags = RUBY_TYPED_THREAD_SAFE_FREE | RUBY_TYPED_WB_PROTECTED,
12533#define SYM(s) ID2SYM(rb_intern_const(#s))
12535 unsigned int arg_size, local_size, stack_max;
12537 struct st_table *labels_table = st_init_numtable();
12539 VALUE arg_opt_labels = rb_hash_aref(params, SYM(opt));
12540 VALUE keywords = rb_hash_aref(params, SYM(keyword));
12542 DECL_ANCHOR(anchor);
12543 INIT_ANCHOR(anchor);
12546 ISEQ_BODY(iseq)->local_table_size =
len;
12547 ISEQ_BODY(iseq)->local_table = tbl =
len > 0 ? (
ID *)
ALLOC_N(
ID, ISEQ_BODY(iseq)->local_table_size) : NULL;
12549 for (i = 0; i <
len; i++) {
12552 if (sym_arg_rest == lv) {
12560#define INT_PARAM(F) int_param(&ISEQ_BODY(iseq)->param.F, params, SYM(F))
12561 if (INT_PARAM(lead_num)) {
12562 ISEQ_BODY(iseq)->param.flags.has_lead = TRUE;
12564 if (INT_PARAM(post_num)) ISEQ_BODY(iseq)->param.flags.has_post = TRUE;
12565 if (INT_PARAM(post_start)) ISEQ_BODY(iseq)->param.flags.has_post = TRUE;
12566 if (INT_PARAM(rest_start)) ISEQ_BODY(iseq)->param.flags.has_rest = TRUE;
12567 if (INT_PARAM(block_start)) ISEQ_BODY(iseq)->param.flags.has_block = TRUE;
12570#define INT_PARAM(F) F = (int_param(&x, misc, SYM(F)) ? (unsigned int)x : 0)
12572 INT_PARAM(arg_size);
12573 INT_PARAM(local_size);
12574 INT_PARAM(stack_max);
12578 VALUE source_hash = rb_hash_aref(misc,
ID2SYM(rb_intern(
"source_hash")));
12579 if (!
NIL_P(source_hash)) {
12580 ISEQ_BODY(iseq)->source_hash =
NUM2ULL(source_hash);
12584#ifdef USE_ISEQ_NODE_ID
12585 node_ids = rb_hash_aref(misc,
ID2SYM(rb_intern(
"node_ids")));
12593 ISEQ_BODY(iseq)->param.flags.has_opt = !!(
len - 1 >= 0);
12595 if (ISEQ_BODY(iseq)->param.flags.has_opt) {
12598 for (i = 0; i <
len; i++) {
12600 LABEL *label = register_label(iseq, labels_table, ent);
12601 opt_table[i] = (
VALUE)label;
12604 ISEQ_BODY(iseq)->param.opt_num =
len - 1;
12605 ISEQ_BODY(iseq)->param.opt_table = opt_table;
12608 else if (!
NIL_P(arg_opt_labels)) {
12609 rb_raise(
rb_eTypeError,
":opt param is not an array: %+"PRIsVALUE,
12614 ISEQ_BODY(iseq)->param.keyword = iseq_build_kw(iseq, params, keywords);
12616 else if (!
NIL_P(keywords)) {
12617 rb_raise(
rb_eTypeError,
":keywords param is not an array: %+"PRIsVALUE,
12621 if (
Qtrue == rb_hash_aref(params, SYM(ambiguous_param0))) {
12622 ISEQ_BODY(iseq)->param.flags.ambiguous_param0 = TRUE;
12625 if (
Qtrue == rb_hash_aref(params, SYM(use_block))) {
12626 ISEQ_BODY(iseq)->param.flags.use_block = TRUE;
12629 if (int_param(&i, params, SYM(kwrest))) {
12630 struct rb_iseq_param_keyword *keyword = (
struct rb_iseq_param_keyword *)ISEQ_BODY(iseq)->param.keyword;
12631 if (keyword == NULL) {
12632 ISEQ_BODY(iseq)->param.keyword = keyword =
ZALLOC(
struct rb_iseq_param_keyword);
12634 keyword->rest_start = i;
12635 ISEQ_BODY(iseq)->param.flags.has_kwrest = TRUE;
12638 iseq_calc_param_size(iseq);
12641 iseq_build_from_ary_exception(iseq, labels_table, exception);
12644 iseq_build_from_ary_body(iseq, anchor, body, node_ids, labels_wrapper);
12646 ISEQ_BODY(iseq)->param.size = arg_size;
12647 ISEQ_BODY(iseq)->local_table_size = local_size;
12648 ISEQ_BODY(iseq)->stack_max = stack_max;
12658 while (body->type == ISEQ_TYPE_BLOCK ||
12659 body->type == ISEQ_TYPE_RESCUE ||
12660 body->type == ISEQ_TYPE_ENSURE ||
12661 body->type == ISEQ_TYPE_EVAL ||
12662 body->type == ISEQ_TYPE_MAIN
12666 for (i = 0; i < body->local_table_size; i++) {
12667 if (body->local_table[i] ==
id) {
12671 iseq = body->parent_iseq;
12672 body = ISEQ_BODY(iseq);
12685 for (i=0; i<body->local_table_size; i++) {
12686 if (body->local_table[i] ==
id) {
12696#ifndef IBF_ISEQ_DEBUG
12697#define IBF_ISEQ_DEBUG 0
12700#ifndef IBF_ISEQ_ENABLE_LOCAL_BUFFER
12701#define IBF_ISEQ_ENABLE_LOCAL_BUFFER 0
12704typedef uint32_t ibf_offset_t;
12705#define IBF_OFFSET(ptr) ((ibf_offset_t)(VALUE)(ptr))
12707#define IBF_MAJOR_VERSION ISEQ_MAJOR_VERSION
12709#define IBF_DEVEL_VERSION 8
12710#define IBF_MINOR_VERSION (ISEQ_MINOR_VERSION * 10000 + IBF_DEVEL_VERSION)
12712#define IBF_MINOR_VERSION ISEQ_MINOR_VERSION
12715static const char IBF_ENDIAN_MARK =
12716#ifdef WORDS_BIGENDIAN
12725 uint32_t major_version;
12726 uint32_t minor_version;
12728 uint32_t extra_size;
12730 uint32_t iseq_list_size;
12731 uint32_t global_object_list_size;
12732 ibf_offset_t iseq_list_offset;
12733 ibf_offset_t global_object_list_offset;
12754 unsigned int obj_list_size;
12755 ibf_offset_t obj_list_offset;
12774pinned_list_mark(
void *ptr)
12778 for (i = 0; i < list->size; i++) {
12779 if (list->buffer[i]) {
12780 rb_gc_mark(list->buffer[i]);
12792 0, 0, RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_THREAD_SAFE_FREE | RUBY_TYPED_EMBEDDABLE
12796pinned_list_fetch(
VALUE list,
long offset)
12802 if (offset < 0 || offset >= ptr->size) {
12803 rb_raise(
rb_eIndexError,
"object index out of range: %ld", offset);
12806 return ptr->buffer[offset];
12810pinned_list_store(
VALUE list,
long offset,
VALUE object)
12816 if (offset < 0 || offset >= ptr->size) {
12817 rb_raise(
rb_eIndexError,
"object index out of range: %ld", offset);
12824pinned_list_new(
long size)
12826 size_t memsize = offsetof(
struct pinned_list, buffer) + size *
sizeof(
VALUE);
12827 VALUE obj_list = rb_data_typed_object_zalloc(0, memsize, &pinned_list_type);
12828 struct pinned_list * ptr = RTYPEDDATA_GET_DATA(obj_list);
12834ibf_dump_pos(
struct ibf_dump *dump)
12836 long pos = RSTRING_LEN(dump->current_buffer->str);
12837#if SIZEOF_LONG > SIZEOF_INT
12838 if (pos >= UINT_MAX) {
12842 return (
unsigned int)pos;
12846ibf_dump_align(
struct ibf_dump *dump,
size_t align)
12848 ibf_offset_t pos = ibf_dump_pos(dump);
12850 static const char padding[
sizeof(
VALUE)];
12851 size_t size = align - ((size_t)pos % align);
12852#if SIZEOF_LONG > SIZEOF_INT
12853 if (pos + size >= UINT_MAX) {
12857 for (; size >
sizeof(padding); size -=
sizeof(padding)) {
12858 rb_str_cat(dump->current_buffer->str, padding,
sizeof(padding));
12860 rb_str_cat(dump->current_buffer->str, padding, size);
12865ibf_dump_write(
struct ibf_dump *dump,
const void *buff,
unsigned long size)
12867 ibf_offset_t pos = ibf_dump_pos(dump);
12868#if SIZEOF_LONG > SIZEOF_INT
12870 if (size >= UINT_MAX || pos + size >= UINT_MAX) {
12874 rb_str_cat(dump->current_buffer->str, (
const char *)buff, size);
12879ibf_dump_write_byte(
struct ibf_dump *dump,
unsigned char byte)
12881 return ibf_dump_write(dump, &
byte,
sizeof(
unsigned char));
12885ibf_dump_overwrite(
struct ibf_dump *dump,
void *buff,
unsigned int size,
long offset)
12887 VALUE str = dump->current_buffer->str;
12888 char *ptr = RSTRING_PTR(str);
12889 if ((
unsigned long)(size + offset) > (
unsigned long)RSTRING_LEN(str))
12890 rb_bug(
"ibf_dump_overwrite: overflow");
12891 memcpy(ptr + offset, buff, size);
12895ibf_load_ptr(
const struct ibf_load *load, ibf_offset_t *offset,
int size)
12897 ibf_offset_t beg = *offset;
12899 return load->current_buffer->buff + beg;
12903ibf_load_alloc(
const struct ibf_load *load, ibf_offset_t offset,
size_t x,
size_t y)
12905 void *buff = ruby_xmalloc2(x, y);
12906 size_t size = x * y;
12907 memcpy(buff, load->current_buffer->buff + offset, size);
12911#define IBF_W_ALIGN(type) (RUBY_ALIGNOF(type) > 1 ? ibf_dump_align(dump, RUBY_ALIGNOF(type)) : (void)0)
12913#define IBF_W(b, type, n) (IBF_W_ALIGN(type), (type *)(VALUE)IBF_WP(b, type, n))
12914#define IBF_WV(variable) ibf_dump_write(dump, &(variable), sizeof(variable))
12915#define IBF_WP(b, type, n) ibf_dump_write(dump, (b), sizeof(type) * (n))
12916#define IBF_R(val, type, n) (type *)ibf_load_alloc(load, IBF_OFFSET(val), sizeof(type), (n))
12917#define IBF_ZERO(variable) memset(&(variable), 0, sizeof(variable))
12920ibf_table_lookup(
struct st_table *table, st_data_t key)
12924 if (st_lookup(table, key, &val)) {
12933ibf_table_find_or_insert(
struct st_table *table, st_data_t key)
12935 int index = ibf_table_lookup(table, key);
12938 index = (int)table->num_entries;
12939 st_insert(table, key, (st_data_t)index);
12947static void ibf_dump_object_list(
struct ibf_dump *dump, ibf_offset_t *obj_list_offset,
unsigned int *obj_list_size);
12953ibf_dump_object_table_new(
void)
12955 st_table *obj_table = st_init_numtable();
12956 st_insert(obj_table, (st_data_t)
Qnil, (st_data_t)0);
12964 return ibf_table_find_or_insert(dump->current_buffer->obj_table, (st_data_t)obj);
12970 if (
id == 0 || rb_id2name(
id) == NULL) {
12973 return ibf_dump_object(dump,
rb_id2sym(
id));
12977ibf_load_id(
const struct ibf_load *load,
const ID id_index)
12979 if (id_index == 0) {
12982 VALUE sym = ibf_load_object(load, id_index);
12992static ibf_offset_t ibf_dump_iseq_each(
struct ibf_dump *dump,
const rb_iseq_t *iseq);
12997 if (iseq == NULL) {
13001 return ibf_table_find_or_insert(dump->iseq_table, (st_data_t)iseq);
13005static unsigned char
13006ibf_load_byte(
const struct ibf_load *load, ibf_offset_t *offset)
13008 if (*offset >= load->current_buffer->size) { rb_raise(
rb_eRuntimeError,
"invalid bytecode"); }
13009 return (
unsigned char)load->current_buffer->buff[(*offset)++];
13025 if (
sizeof(
VALUE) > 8 || CHAR_BIT != 8) {
13026 ibf_dump_write(dump, &x,
sizeof(
VALUE));
13030 enum { max_byte_length =
sizeof(
VALUE) + 1 };
13032 unsigned char bytes[max_byte_length];
13035 for (n = 0; n <
sizeof(
VALUE) && (x >> (7 - n)); n++, x >>= 8) {
13036 bytes[max_byte_length - 1 - n] = (
unsigned char)x;
13042 bytes[max_byte_length - 1 - n] = (
unsigned char)x;
13045 ibf_dump_write(dump, bytes + max_byte_length - n, n);
13049ibf_load_small_value(
const struct ibf_load *load, ibf_offset_t *offset)
13051 if (
sizeof(
VALUE) > 8 || CHAR_BIT != 8) {
13052 union {
char s[
sizeof(
VALUE)];
VALUE v; } x;
13054 memcpy(x.s, load->current_buffer->buff + *offset,
sizeof(
VALUE));
13055 *offset +=
sizeof(
VALUE);
13060 enum { max_byte_length =
sizeof(
VALUE) + 1 };
13062 const unsigned char *buffer = (
const unsigned char *)load->current_buffer->buff;
13063 const unsigned char c = buffer[*offset];
13067 c == 0 ? 9 : ntz_int32(c) + 1;
13070 if (*offset + n > load->current_buffer->size) {
13075 for (i = 1; i < n; i++) {
13077 x |= (
VALUE)buffer[*offset + i];
13091 ibf_dump_write_small_value(dump, (
VALUE)bf->index);
13093 size_t len = strlen(bf->name);
13094 ibf_dump_write_small_value(dump, (
VALUE)
len);
13095 ibf_dump_write(dump, bf->name,
len);
13099ibf_load_builtin(
const struct ibf_load *load, ibf_offset_t *offset)
13101 int i = (int)ibf_load_small_value(load, offset);
13102 int len = (int)ibf_load_small_value(load, offset);
13103 const char *name = (
char *)ibf_load_ptr(load, offset,
len);
13106 fprintf(stderr,
"%.*s!!\n",
len, name);
13110 if (table == NULL) rb_raise(rb_eArgError,
"builtin function table is not provided");
13111 if (strncmp(table[i].name, name,
len) != 0) {
13112 rb_raise(rb_eArgError,
"builtin function index (%d) mismatch (expect %.*s but %s)",
13113 i,
len, name, table[i].name);
13124 const int iseq_size = body->iseq_size;
13126 const VALUE *orig_code = rb_iseq_original_iseq(iseq);
13128 ibf_offset_t offset = ibf_dump_pos(dump);
13130 for (code_index=0; code_index<iseq_size;) {
13131 const VALUE insn = orig_code[code_index++];
13132 const char *types = insn_op_types(insn);
13137 ibf_dump_write_small_value(dump, insn);
13140 for (op_index=0; types[op_index]; op_index++, code_index++) {
13141 VALUE op = orig_code[code_index];
13144 switch (types[op_index]) {
13147 wv = ibf_dump_object(dump, op);
13156 wv = ibf_dump_object(dump, arr);
13164 wv = is - ISEQ_IS_ENTRY_START(body, types[op_index]);
13172 wv = ibf_dump_id(dump, (
ID)op);
13184 ibf_dump_write_small_value(dump, wv);
13194ibf_load_code(
const struct ibf_load *load,
rb_iseq_t *iseq, ibf_offset_t bytecode_offset, ibf_offset_t bytecode_size,
unsigned int iseq_size)
13197 unsigned int code_index;
13198 ibf_offset_t reading_pos = bytecode_offset;
13202 struct rb_call_data *cd_entries = load_body->call_data;
13205 load_body->iseq_encoded = code;
13206 load_body->iseq_size = iseq_size;
13208 iseq_bits_t * mark_offset_bits;
13209 if (ISEQ_MBITS_BUFLEN(iseq_size) == 1) {
13210 load_body->mark_bits.single = 0;
13211 mark_offset_bits = &load_body->mark_bits.single;
13214 load_body->mark_bits.list =
ZALLOC_N(iseq_bits_t, ISEQ_MBITS_BUFLEN(iseq_size));
13215 mark_offset_bits = load_body->mark_bits.list;
13217 bool needs_bitmap =
false;
13219 for (code_index=0; code_index<iseq_size;) {
13221 const VALUE insn = code[code_index] = ibf_load_small_value(load, &reading_pos);
13222 const char *types = insn_op_types(insn);
13228 for (op_index=0; types[op_index]; op_index++, code_index++) {
13229 const char operand_type = types[op_index];
13230 switch (operand_type) {
13233 VALUE op = ibf_load_small_value(load, &reading_pos);
13234 VALUE v = ibf_load_object(load, op);
13235 code[code_index] = v;
13238 ISEQ_MBITS_SET(mark_offset_bits, code_index);
13239 needs_bitmap =
true;
13245 VALUE op = ibf_load_small_value(load, &reading_pos);
13246 VALUE v = ibf_load_object(load, op);
13251 pinned_list_store(load->current_buffer->obj_list, (
long)op, v);
13253 code[code_index] = v;
13254 ISEQ_MBITS_SET(mark_offset_bits, code_index);
13256 needs_bitmap =
true;
13261 VALUE op = (
VALUE)ibf_load_small_value(load, &reading_pos);
13263 code[code_index] = v;
13266 ISEQ_MBITS_SET(mark_offset_bits, code_index);
13267 needs_bitmap =
true;
13273 VALUE op = ibf_load_small_value(load, &reading_pos);
13274 VALUE arr = ibf_load_object(load, op);
13276 IC ic = &ISEQ_IS_IC_ENTRY(load_body, ic_index++);
13277 ic->
segments = array_to_idlist(arr);
13279 code[code_index] = (
VALUE)ic;
13286 unsigned int op = (
unsigned int)ibf_load_small_value(load, &reading_pos);
13288 ISE ic = ISEQ_IS_ENTRY_START(load_body, operand_type) + op;
13289 code[code_index] = (
VALUE)ic;
13291 if (operand_type == TS_IVC) {
13294 if (insn == BIN(setinstancevariable)) {
13295 ID iv_name = (
ID)code[code_index - 1];
13296 cache->iv_set_name = iv_name;
13297 cache->value = IVAR_CACHE_INIT;
13300 cache->iv_set_name = 0;
13301 cache->value = rb_getivar_cache_pack(ROOT_SHAPE_ID, ATTR_INDEX_NOT_SET);
13309 code[code_index] = (
VALUE)cd_entries++;
13314 VALUE op = ibf_load_small_value(load, &reading_pos);
13315 code[code_index] = ibf_load_id(load, (
ID)(
VALUE)op);
13322 code[code_index] = (
VALUE)ibf_load_builtin(load, &reading_pos);
13325 code[code_index] = ibf_load_small_value(load, &reading_pos);
13329 if (insn_len(insn) != op_index+1) {
13334 if (!needs_bitmap) {
13335 SIZED_FREE_N(load_body->mark_bits.list, ISEQ_MBITS_BUFLEN(iseq_size));
13336 load_body->mark_bits.list = NULL;
13340 RUBY_ASSERT(reading_pos == bytecode_offset + bytecode_size);
13347 int opt_num = ISEQ_BODY(iseq)->param.opt_num;
13350 IBF_W_ALIGN(
VALUE);
13351 return ibf_dump_write(dump, ISEQ_BODY(iseq)->param.opt_table,
sizeof(
VALUE) * (opt_num + 1));
13354 return ibf_dump_pos(dump);
13359ibf_load_param_opt_table(
const struct ibf_load *load, ibf_offset_t opt_table_offset,
int opt_num)
13363 MEMCPY(table, load->current_buffer->buff + opt_table_offset,
VALUE, opt_num+1);
13374 const struct rb_iseq_param_keyword *kw = ISEQ_BODY(iseq)->param.keyword;
13377 struct rb_iseq_param_keyword dump_kw = *kw;
13378 int dv_num = kw->num - kw->required_num;
13383 for (i=0; i<kw->num; i++) ids[i] = (
ID)ibf_dump_id(dump, kw->table[i]);
13384 for (i=0; i<dv_num; i++) dvs[i] = (
VALUE)ibf_dump_object(dump, kw->default_values[i]);
13386 dump_kw.table = IBF_W(ids,
ID, kw->num);
13387 dump_kw.default_values = IBF_W(dvs,
VALUE, dv_num);
13388 IBF_W_ALIGN(
struct rb_iseq_param_keyword);
13389 return ibf_dump_write(dump, &dump_kw,
sizeof(
struct rb_iseq_param_keyword) * 1);
13396static const struct rb_iseq_param_keyword *
13397ibf_load_param_keyword(
const struct ibf_load *load, ibf_offset_t param_keyword_offset)
13399 if (param_keyword_offset) {
13400 struct rb_iseq_param_keyword *kw = IBF_R(param_keyword_offset,
struct rb_iseq_param_keyword, 1);
13401 int dv_num = kw->num - kw->required_num;
13402 VALUE *dvs = dv_num ? IBF_R(kw->default_values,
VALUE, dv_num) : NULL;
13405 for (i=0; i<dv_num; i++) {
13406 dvs[i] = ibf_load_object(load, dvs[i]);
13412 kw->default_values = dvs;
13423 ibf_offset_t offset = ibf_dump_pos(dump);
13427 for (i = 0; i < ISEQ_BODY(iseq)->insns_info.size; i++) {
13428 ibf_dump_write_small_value(dump, entries[i].line_no);
13429#ifdef USE_ISEQ_NODE_ID
13430 ibf_dump_write_small_value(dump, entries[i].node_id);
13432 ibf_dump_write_small_value(dump, entries[i].events);
13439ibf_load_insns_info_body(
const struct ibf_load *load, ibf_offset_t body_offset,
unsigned int size)
13441 ibf_offset_t reading_pos = body_offset;
13445 for (i = 0; i < size; i++) {
13446 entries[i].line_no = (int)ibf_load_small_value(load, &reading_pos);
13447#ifdef USE_ISEQ_NODE_ID
13448 entries[i].node_id = (int)ibf_load_small_value(load, &reading_pos);
13450 entries[i].events = (
rb_event_flag_t)ibf_load_small_value(load, &reading_pos);
13457ibf_dump_insns_info_positions(
struct ibf_dump *dump,
const unsigned int *positions,
unsigned int size)
13459 ibf_offset_t offset = ibf_dump_pos(dump);
13461 unsigned int last = 0;
13463 for (i = 0; i < size; i++) {
13464 ibf_dump_write_small_value(dump, positions[i] - last);
13465 last = positions[i];
13471static unsigned int *
13472ibf_load_insns_info_positions(
const struct ibf_load *load, ibf_offset_t positions_offset,
unsigned int size)
13474 ibf_offset_t reading_pos = positions_offset;
13475 unsigned int *positions =
ALLOC_N(
unsigned int, size);
13477 unsigned int last = 0;
13479 for (i = 0; i < size; i++) {
13480 positions[i] = last + (
unsigned int)ibf_load_small_value(load, &reading_pos);
13481 last = positions[i];
13491 const int size = body->local_table_size;
13495 for (i=0; i<size; i++) {
13496 VALUE v = ibf_dump_id(dump, body->local_table[i]);
13499 v = ibf_dump_object(dump,
ULONG2NUM(body->local_table[i]));
13505 return ibf_dump_write(dump, table,
sizeof(
ID) * size);
13509ibf_load_local_table(
const struct ibf_load *load, ibf_offset_t local_table_offset,
int size)
13512 ID *table = IBF_R(local_table_offset,
ID, size);
13515 for (i=0; i<size; i++) {
13516 table[i] = ibf_load_id(load, table[i]);
13519 if (size == 1 && table[0] == idERROR_INFO) {
13520 ruby_xfree_sized(table,
sizeof(
ID) * size);
13521 return rb_iseq_shared_exc_local_tbl;
13536 const int size = ISEQ_LVAR_STATES_BUFLEN(body->local_table_size);
13537 IBF_W_ALIGN(uint8_t);
13538 if (iseq_has_lvar_states_p(body)) {
13539 return ibf_dump_write(dump, iseq_lvar_states(body),
sizeof(uint8_t) * size);
13542 return ibf_dump_write(dump, NULL, 0);
13547ibf_load_lvar_states(
const struct ibf_load *load,
struct rb_iseq_constant_body *load_body, ibf_offset_t lvar_states_offset,
int size,
const ID *local_table)
13549 if (local_table == rb_iseq_shared_exc_local_tbl ||
13551 load_body->lvar_states.list = NULL;
13553 else if (ISEQ_LVAR_STATES_EMBED_P((
unsigned int)size)) {
13554 ibf_offset_t pos = lvar_states_offset;
13555 const int len =
sizeof(uint8_t) * ISEQ_LVAR_STATES_BUFLEN(size);
13556 memcpy(load_body->lvar_states.single, ibf_load_ptr(load, &pos,
len),
len);
13559 load_body->lvar_states.list = IBF_R(lvar_states_offset, uint8_t, ISEQ_LVAR_STATES_BUFLEN(size));
13569 int *iseq_indices =
ALLOCA_N(
int, table->size);
13572 for (i=0; i<table->size; i++) {
13573 iseq_indices[i] = ibf_dump_iseq(dump, table->entries[i].iseq);
13576 const ibf_offset_t offset = ibf_dump_pos(dump);
13578 for (i=0; i<table->size; i++) {
13579 ibf_dump_write_small_value(dump, iseq_indices[i]);
13580 ibf_dump_write_small_value(dump, table->entries[i].type);
13581 ibf_dump_write_small_value(dump, table->entries[i].start);
13582 ibf_dump_write_small_value(dump, table->entries[i].end);
13583 ibf_dump_write_small_value(dump, table->entries[i].cont);
13584 ibf_dump_write_small_value(dump, table->entries[i].sp);
13589 return ibf_dump_pos(dump);
13594ibf_load_catch_table(
const struct ibf_load *load, ibf_offset_t catch_table_offset,
unsigned int size,
const rb_iseq_t *parent_iseq)
13597 struct iseq_catch_table *table = ruby_xcalloc(1, iseq_catch_table_bytes(size));
13598 table->size = size;
13599 ISEQ_BODY(parent_iseq)->catch_table = table;
13601 ibf_offset_t reading_pos = catch_table_offset;
13604 for (i=0; i<table->size; i++) {
13605 int iseq_index = (int)ibf_load_small_value(load, &reading_pos);
13606 table->entries[i].type = (
enum rb_catch_type)ibf_load_small_value(load, &reading_pos);
13607 table->entries[i].start = (
unsigned int)ibf_load_small_value(load, &reading_pos);
13608 table->entries[i].end = (
unsigned int)ibf_load_small_value(load, &reading_pos);
13609 table->entries[i].cont = (
unsigned int)ibf_load_small_value(load, &reading_pos);
13610 table->entries[i].sp = (
unsigned int)ibf_load_small_value(load, &reading_pos);
13613 RB_OBJ_WRITE(parent_iseq, UNALIGNED_MEMBER_PTR(&table->entries[i], iseq), catch_iseq);
13617 ISEQ_BODY(parent_iseq)->catch_table = NULL;
13625 const unsigned int ci_size = body->ci_size;
13628 ibf_offset_t offset = ibf_dump_pos(dump);
13632 for (i = 0; i < ci_size; i++) {
13635 ibf_dump_write_small_value(dump, ibf_dump_id(dump, vm_ci_mid(ci)));
13636 ibf_dump_write_small_value(dump, vm_ci_flag(ci));
13637 ibf_dump_write_small_value(dump, vm_ci_argc(ci));
13641 int len = kwarg->keyword_len;
13642 ibf_dump_write_small_value(dump,
len);
13643 for (
int j=0; j<
len; j++) {
13644 VALUE keyword = ibf_dump_object(dump, kwarg->keywords[j]);
13645 ibf_dump_write_small_value(dump, keyword);
13649 ibf_dump_write_small_value(dump, 0);
13654 ibf_dump_write_small_value(dump, (
VALUE)-1);
13672static enum rb_id_table_iterator_result
13673store_outer_variable(
ID id,
VALUE val,
void *dump)
13678 pair->name = rb_id2str(
id);
13680 return ID_TABLE_CONTINUE;
13684outer_variable_cmp(
const void *a,
const void *b,
void *arg)
13692 else if (!bp->name) {
13702 struct rb_id_table * ovs = ISEQ_BODY(iseq)->outer_variables;
13704 ibf_offset_t offset = ibf_dump_pos(dump);
13706 size_t size = ovs ? rb_id_table_size(ovs) : 0;
13707 ibf_dump_write_small_value(dump, (
VALUE)size);
13716 rb_id_table_foreach(ovs, store_outer_variable, ovlist);
13718 for (
size_t i = 0; i < size; ++i) {
13719 ID id = ovlist->pairs[i].id;
13720 ID val = ovlist->pairs[i].val;
13721 ibf_dump_write_small_value(dump, ibf_dump_id(dump,
id));
13722 ibf_dump_write_small_value(dump, val);
13731ibf_load_ci_entries(
const struct ibf_load *load,
13732 ibf_offset_t ci_entries_offset,
13733 unsigned int ci_size,
13741 ibf_offset_t reading_pos = ci_entries_offset;
13748 for (i = 0; i < ci_size; i++) {
13749 VALUE mid_index = ibf_load_small_value(load, &reading_pos);
13750 if (mid_index != (
VALUE)-1) {
13751 ID mid = ibf_load_id(load, mid_index);
13752 unsigned int flag = (
unsigned int)ibf_load_small_value(load, &reading_pos);
13753 unsigned int argc = (
unsigned int)ibf_load_small_value(load, &reading_pos);
13756 int kwlen = (int)ibf_load_small_value(load, &reading_pos);
13759 kwarg->references = 0;
13760 kwarg->keyword_len = kwlen;
13761 for (
int j=0; j<kwlen; j++) {
13762 VALUE keyword = ibf_load_small_value(load, &reading_pos);
13763 kwarg->keywords[j] = ibf_load_object(load, keyword);
13767 cds[i].ci = vm_ci_new(mid, flag, argc, kwarg);
13769 cds[i].cc = vm_cc_empty();
13780ibf_load_outer_variables(
const struct ibf_load * load, ibf_offset_t outer_variables_offset)
13782 ibf_offset_t reading_pos = outer_variables_offset;
13786 size_t table_size = (size_t)ibf_load_small_value(load, &reading_pos);
13788 if (table_size > 0) {
13789 tbl = rb_id_table_create(table_size);
13792 for (
size_t i = 0; i < table_size; i++) {
13793 ID key = ibf_load_id(load, (
ID)ibf_load_small_value(load, &reading_pos));
13794 VALUE value = ibf_load_small_value(load, &reading_pos);
13795 if (!key) key = rb_make_temporary_id(i);
13796 rb_id_table_insert(tbl, key, value);
13805 RUBY_ASSERT(dump->current_buffer == &dump->global_buffer);
13807 unsigned int *positions;
13811 const VALUE location_pathobj_index = ibf_dump_object(dump, body->location.pathobj);
13812 const VALUE location_label_index = ibf_dump_object(dump, body->location.label);
13814#if IBF_ISEQ_ENABLE_LOCAL_BUFFER
13815 ibf_offset_t iseq_start = ibf_dump_pos(dump);
13820 buffer.obj_table = ibf_dump_object_table_new();
13821 dump->current_buffer = &buffer;
13824 const ibf_offset_t bytecode_offset = ibf_dump_code(dump, iseq);
13825 const ibf_offset_t bytecode_size = ibf_dump_pos(dump) - bytecode_offset;
13826 const ibf_offset_t param_opt_table_offset = ibf_dump_param_opt_table(dump, iseq);
13827 const ibf_offset_t param_keyword_offset = ibf_dump_param_keyword(dump, iseq);
13828 const ibf_offset_t insns_info_body_offset = ibf_dump_insns_info_body(dump, iseq);
13830 positions = rb_iseq_insns_info_decode_positions(ISEQ_BODY(iseq));
13831 const ibf_offset_t insns_info_positions_offset = ibf_dump_insns_info_positions(dump, positions, body->insns_info.size);
13832 SIZED_FREE_N(positions, ISEQ_BODY(iseq)->insns_info.size);
13834 const ibf_offset_t local_table_offset = ibf_dump_local_table(dump, iseq);
13835 const ibf_offset_t lvar_states_offset = ibf_dump_lvar_states(dump, iseq);
13836 const unsigned int catch_table_size = body->catch_table ? body->catch_table->size : 0;
13837 const ibf_offset_t catch_table_offset = ibf_dump_catch_table(dump, iseq);
13839 const int parent_iseq_index = ibf_table_lookup(dump->iseq_table, (st_data_t)ISEQ_BODY(iseq)->parent_iseq);
13840 const int local_iseq_index = ibf_table_lookup(dump->iseq_table, (st_data_t)ISEQ_BODY(iseq)->local_iseq);
13841 const int mandatory_only_iseq_index = ibf_dump_iseq(dump, ISEQ_BODY(iseq)->mandatory_only_iseq);
13842 const ibf_offset_t ci_entries_offset = ibf_dump_ci_entries(dump, iseq);
13843 const ibf_offset_t outer_variables_offset = ibf_dump_outer_variables(dump, iseq);
13845#if IBF_ISEQ_ENABLE_LOCAL_BUFFER
13846 ibf_offset_t local_obj_list_offset;
13847 unsigned int local_obj_list_size;
13849 ibf_dump_object_list(dump, &local_obj_list_offset, &local_obj_list_size);
13852 ibf_offset_t body_offset = ibf_dump_pos(dump);
13855 unsigned int param_flags =
13856 (body->param.flags.has_lead << 0) |
13857 (body->param.flags.has_opt << 1) |
13858 (body->param.flags.has_rest << 2) |
13859 (body->param.flags.has_post << 3) |
13860 (body->param.flags.has_kw << 4) |
13861 (body->param.flags.has_kwrest << 5) |
13862 (body->param.flags.has_block << 6) |
13863 (body->param.flags.ambiguous_param0 << 7) |
13864 (body->param.flags.accepts_no_kwarg << 8) |
13865 (body->param.flags.ruby2_keywords << 9) |
13866 (body->param.flags.anon_rest << 10) |
13867 (body->param.flags.anon_kwrest << 11) |
13868 (body->param.flags.use_block << 12) |
13869 (body->param.flags.forwardable << 13) |
13870 (body->param.flags.accepts_no_block << 14);
13872#if IBF_ISEQ_ENABLE_LOCAL_BUFFER
13873# define IBF_BODY_OFFSET(x) (x)
13875# define IBF_BODY_OFFSET(x) (body_offset - (x))
13878 ibf_dump_write_small_value(dump, body->type);
13879 ibf_dump_write_small_value(dump, body->iseq_size);
13880 ibf_dump_write_small_value(dump, IBF_BODY_OFFSET(bytecode_offset));
13881 ibf_dump_write_small_value(dump, bytecode_size);
13882 ibf_dump_write_small_value(dump, param_flags);
13883 ibf_dump_write_small_value(dump, body->param.size);
13884 ibf_dump_write_small_value(dump, body->param.lead_num);
13885 ibf_dump_write_small_value(dump, body->param.opt_num);
13886 ibf_dump_write_small_value(dump, body->param.rest_start);
13887 ibf_dump_write_small_value(dump, body->param.post_start);
13888 ibf_dump_write_small_value(dump, body->param.post_num);
13889 ibf_dump_write_small_value(dump, body->param.block_start);
13890 ibf_dump_write_small_value(dump, IBF_BODY_OFFSET(param_opt_table_offset));
13891 ibf_dump_write_small_value(dump, param_keyword_offset);
13892 ibf_dump_write_small_value(dump, location_pathobj_index);
13893 ibf_dump_write_small_value(dump, location_label_index);
13894 ibf_dump_write_small_value(dump, body->location.first_lineno);
13895 ibf_dump_write_small_value(dump, body->location.node_id);
13898 ibf_dump_write_small_value(dump, (
VALUE)(uint32_t)(body->source_hash >> 32));
13899 ibf_dump_write_small_value(dump, (
VALUE)(uint32_t)body->source_hash);
13900 ibf_dump_write_small_value(dump, body->location.code_location.beg_pos.lineno);
13901 ibf_dump_write_small_value(dump, body->location.code_location.beg_pos.column);
13902 ibf_dump_write_small_value(dump, body->location.code_location.end_pos.lineno);
13903 ibf_dump_write_small_value(dump, body->location.code_location.end_pos.column);
13904 ibf_dump_write_small_value(dump, IBF_BODY_OFFSET(insns_info_body_offset));
13905 ibf_dump_write_small_value(dump, IBF_BODY_OFFSET(insns_info_positions_offset));
13906 ibf_dump_write_small_value(dump, body->insns_info.size);
13907 ibf_dump_write_small_value(dump, IBF_BODY_OFFSET(local_table_offset));
13908 ibf_dump_write_small_value(dump, IBF_BODY_OFFSET(lvar_states_offset));
13909 ibf_dump_write_small_value(dump, catch_table_size);
13910 ibf_dump_write_small_value(dump, IBF_BODY_OFFSET(catch_table_offset));
13911 ibf_dump_write_small_value(dump, parent_iseq_index);
13912 ibf_dump_write_small_value(dump, local_iseq_index);
13913 ibf_dump_write_small_value(dump, mandatory_only_iseq_index);
13914 ibf_dump_write_small_value(dump, IBF_BODY_OFFSET(ci_entries_offset));
13915 ibf_dump_write_small_value(dump, IBF_BODY_OFFSET(outer_variables_offset));
13916 ibf_dump_write_small_value(dump, ISEQ_FLIP_CNT(iseq));
13917 ibf_dump_write_small_value(dump, body->local_table_size);
13918 ibf_dump_write_small_value(dump, body->ivc_size);
13919 ibf_dump_write_small_value(dump, body->icvarc_size);
13920 ibf_dump_write_small_value(dump, body->ise_size);
13921 ibf_dump_write_small_value(dump, body->ic_size);
13922 ibf_dump_write_small_value(dump, body->ci_size);
13923 ibf_dump_write_small_value(dump, body->stack_max);
13924 ibf_dump_write_small_value(dump, body->builtin_attrs);
13925 ibf_dump_write_small_value(dump, body->prism ? 1 : 0);
13927#undef IBF_BODY_OFFSET
13929#if IBF_ISEQ_ENABLE_LOCAL_BUFFER
13930 ibf_offset_t iseq_length_bytes = ibf_dump_pos(dump);
13932 dump->current_buffer = saved_buffer;
13933 ibf_dump_write(dump, RSTRING_PTR(buffer.str), iseq_length_bytes);
13935 ibf_offset_t offset = ibf_dump_pos(dump);
13936 ibf_dump_write_small_value(dump, iseq_start);
13937 ibf_dump_write_small_value(dump, iseq_length_bytes);
13938 ibf_dump_write_small_value(dump, body_offset);
13940 ibf_dump_write_small_value(dump, local_obj_list_offset);
13941 ibf_dump_write_small_value(dump, local_obj_list_size);
13943 st_free_table(buffer.obj_table);
13947 return body_offset;
13952ibf_load_location_str(
const struct ibf_load *load,
VALUE str_index)
13954 VALUE str = ibf_load_object(load, str_index);
13956 str = rb_fstring(str);
13966 ibf_offset_t reading_pos = offset;
13968#if IBF_ISEQ_ENABLE_LOCAL_BUFFER
13970 load->current_buffer = &load->global_buffer;
13972 const ibf_offset_t iseq_start = (ibf_offset_t)ibf_load_small_value(load, &reading_pos);
13973 const ibf_offset_t iseq_length_bytes = (ibf_offset_t)ibf_load_small_value(load, &reading_pos);
13974 const ibf_offset_t body_offset = (ibf_offset_t)ibf_load_small_value(load, &reading_pos);
13977 buffer.buff = load->global_buffer.buff + iseq_start;
13978 buffer.size = iseq_length_bytes;
13979 buffer.obj_list_offset = (ibf_offset_t)ibf_load_small_value(load, &reading_pos);
13980 buffer.obj_list_size = (ibf_offset_t)ibf_load_small_value(load, &reading_pos);
13981 buffer.obj_list = pinned_list_new(buffer.obj_list_size);
13983 load->current_buffer = &buffer;
13984 reading_pos = body_offset;
13987#if IBF_ISEQ_ENABLE_LOCAL_BUFFER
13988# define IBF_BODY_OFFSET(x) (x)
13990# define IBF_BODY_OFFSET(x) (offset - (x))
13993 const unsigned int type = (
unsigned int)ibf_load_small_value(load, &reading_pos);
13994 const unsigned int iseq_size = (
unsigned int)ibf_load_small_value(load, &reading_pos);
13995 const ibf_offset_t bytecode_offset = (ibf_offset_t)IBF_BODY_OFFSET(ibf_load_small_value(load, &reading_pos));
13996 const ibf_offset_t bytecode_size = (ibf_offset_t)ibf_load_small_value(load, &reading_pos);
13997 const unsigned int param_flags = (
unsigned int)ibf_load_small_value(load, &reading_pos);
13998 const unsigned int param_size = (
unsigned int)ibf_load_small_value(load, &reading_pos);
13999 const int param_lead_num = (int)ibf_load_small_value(load, &reading_pos);
14000 const int param_opt_num = (int)ibf_load_small_value(load, &reading_pos);
14001 const int param_rest_start = (int)ibf_load_small_value(load, &reading_pos);
14002 const int param_post_start = (int)ibf_load_small_value(load, &reading_pos);
14003 const int param_post_num = (int)ibf_load_small_value(load, &reading_pos);
14004 const int param_block_start = (int)ibf_load_small_value(load, &reading_pos);
14005 const ibf_offset_t param_opt_table_offset = (ibf_offset_t)IBF_BODY_OFFSET(ibf_load_small_value(load, &reading_pos));
14006 const ibf_offset_t param_keyword_offset = (ibf_offset_t)ibf_load_small_value(load, &reading_pos);
14007 const VALUE location_pathobj_index = ibf_load_small_value(load, &reading_pos);
14008 const VALUE location_label_index = ibf_load_small_value(load, &reading_pos);
14009 const int location_first_lineno = (int)ibf_load_small_value(load, &reading_pos);
14010 const int location_node_id = (int)ibf_load_small_value(load, &reading_pos);
14011 const uint64_t source_hash_hi = (uint64_t)ibf_load_small_value(load, &reading_pos);
14012 const uint64_t source_hash_lo = (uint64_t)ibf_load_small_value(load, &reading_pos);
14013 const uint64_t source_hash = (source_hash_hi << 32) | (uint32_t)source_hash_lo;
14014 const int location_code_location_beg_pos_lineno = (int)ibf_load_small_value(load, &reading_pos);
14015 const int location_code_location_beg_pos_column = (int)ibf_load_small_value(load, &reading_pos);
14016 const int location_code_location_end_pos_lineno = (int)ibf_load_small_value(load, &reading_pos);
14017 const int location_code_location_end_pos_column = (int)ibf_load_small_value(load, &reading_pos);
14018 const ibf_offset_t insns_info_body_offset = (ibf_offset_t)IBF_BODY_OFFSET(ibf_load_small_value(load, &reading_pos));
14019 const ibf_offset_t insns_info_positions_offset = (ibf_offset_t)IBF_BODY_OFFSET(ibf_load_small_value(load, &reading_pos));
14020 const unsigned int insns_info_size = (
unsigned int)ibf_load_small_value(load, &reading_pos);
14021 const ibf_offset_t local_table_offset = (ibf_offset_t)IBF_BODY_OFFSET(ibf_load_small_value(load, &reading_pos));
14022 const ibf_offset_t lvar_states_offset = (ibf_offset_t)IBF_BODY_OFFSET(ibf_load_small_value(load, &reading_pos));
14023 const unsigned int catch_table_size = (
unsigned int)ibf_load_small_value(load, &reading_pos);
14024 const ibf_offset_t catch_table_offset = (ibf_offset_t)IBF_BODY_OFFSET(ibf_load_small_value(load, &reading_pos));
14025 const int parent_iseq_index = (int)ibf_load_small_value(load, &reading_pos);
14026 const int local_iseq_index = (int)ibf_load_small_value(load, &reading_pos);
14027 const int mandatory_only_iseq_index = (int)ibf_load_small_value(load, &reading_pos);
14028 const ibf_offset_t ci_entries_offset = (ibf_offset_t)IBF_BODY_OFFSET(ibf_load_small_value(load, &reading_pos));
14029 const ibf_offset_t outer_variables_offset = (ibf_offset_t)IBF_BODY_OFFSET(ibf_load_small_value(load, &reading_pos));
14030 const rb_snum_t variable_flip_count = (rb_snum_t)ibf_load_small_value(load, &reading_pos);
14031 const unsigned int local_table_size = (
unsigned int)ibf_load_small_value(load, &reading_pos);
14033 const unsigned int ivc_size = (
unsigned int)ibf_load_small_value(load, &reading_pos);
14034 const unsigned int icvarc_size = (
unsigned int)ibf_load_small_value(load, &reading_pos);
14035 const unsigned int ise_size = (
unsigned int)ibf_load_small_value(load, &reading_pos);
14036 const unsigned int ic_size = (
unsigned int)ibf_load_small_value(load, &reading_pos);
14038 const unsigned int ci_size = (
unsigned int)ibf_load_small_value(load, &reading_pos);
14039 const unsigned int stack_max = (
unsigned int)ibf_load_small_value(load, &reading_pos);
14040 const unsigned int builtin_attrs = (
unsigned int)ibf_load_small_value(load, &reading_pos);
14041 const bool prism = (bool)ibf_load_small_value(load, &reading_pos);
14044 VALUE path = ibf_load_object(load, location_pathobj_index);
14049 realpath = path = rb_fstring(path);
14052 VALUE pathobj = path;
14058 if (!
NIL_P(realpath)) {
14060 rb_raise(rb_eArgError,
"unexpected realpath %"PRIxVALUE
14061 "(%x), path=%+"PRIsVALUE,
14062 realpath,
TYPE(realpath), path);
14064 realpath = rb_fstring(realpath);
14070 rb_iseq_pathobj_set(iseq, path, realpath);
14075 VALUE dummy_frame = rb_vm_push_frame_fname(ec, path);
14077#undef IBF_BODY_OFFSET
14079 load_body->type =
type;
14080 load_body->stack_max = stack_max;
14081 load_body->param.flags.has_lead = (param_flags >> 0) & 1;
14082 load_body->param.flags.has_opt = (param_flags >> 1) & 1;
14083 load_body->param.flags.has_rest = (param_flags >> 2) & 1;
14084 load_body->param.flags.has_post = (param_flags >> 3) & 1;
14085 load_body->param.flags.has_kw = FALSE;
14086 load_body->param.flags.has_kwrest = (param_flags >> 5) & 1;
14087 load_body->param.flags.has_block = (param_flags >> 6) & 1;
14088 load_body->param.flags.ambiguous_param0 = (param_flags >> 7) & 1;
14089 load_body->param.flags.accepts_no_kwarg = (param_flags >> 8) & 1;
14090 load_body->param.flags.ruby2_keywords = (param_flags >> 9) & 1;
14091 load_body->param.flags.anon_rest = (param_flags >> 10) & 1;
14092 load_body->param.flags.anon_kwrest = (param_flags >> 11) & 1;
14093 load_body->param.flags.use_block = (param_flags >> 12) & 1;
14094 load_body->param.flags.forwardable = (param_flags >> 13) & 1;
14095 load_body->param.flags.accepts_no_block = (param_flags >> 14) & 1;
14096 load_body->param.size = param_size;
14097 load_body->param.lead_num = param_lead_num;
14098 load_body->param.opt_num = param_opt_num;
14099 load_body->param.rest_start = param_rest_start;
14100 load_body->param.post_start = param_post_start;
14101 load_body->param.post_num = param_post_num;
14102 load_body->param.block_start = param_block_start;
14103 load_body->local_table_size = local_table_size;
14104 load_body->ci_size = ci_size;
14105 load_body->insns_info.size = insns_info_size;
14108 ISEQ_ORIGINAL_ISEQ_CLEAR(iseq);
14109 if (variable_flip_count) {
14111 v->flip_count = variable_flip_count;
14114 load_body->location.first_lineno = location_first_lineno;
14115 load_body->location.node_id = location_node_id;
14116 load_body->source_hash = source_hash;
14117 load_body->location.code_location.beg_pos.lineno = location_code_location_beg_pos_lineno;
14118 load_body->location.code_location.beg_pos.column = location_code_location_beg_pos_column;
14119 load_body->location.code_location.end_pos.lineno = location_code_location_end_pos_lineno;
14120 load_body->location.code_location.end_pos.column = location_code_location_end_pos_column;
14121 load_body->builtin_attrs = builtin_attrs;
14122 load_body->prism = prism;
14124 load_body->ivc_size = ivc_size;
14125 load_body->icvarc_size = icvarc_size;
14126 load_body->ise_size = ise_size;
14127 load_body->ic_size = ic_size;
14129 if (ISEQ_IS_SIZE(load_body)) {
14133 load_body->is_entries = NULL;
14135 ibf_load_ci_entries(load, ci_entries_offset, ci_size, &load_body->call_data);
14136 load_body->outer_variables = ibf_load_outer_variables(load, outer_variables_offset);
14137 load_body->param.opt_table = ibf_load_param_opt_table(load, param_opt_table_offset, param_opt_num);
14138 load_body->param.keyword = ibf_load_param_keyword(load, param_keyword_offset);
14139 load_body->param.flags.has_kw = (param_flags >> 4) & 1;
14140 load_body->insns_info.body = ibf_load_insns_info_body(load, insns_info_body_offset, insns_info_size);
14141 load_body->insns_info.positions_or_succ_index_table.positions = ibf_load_insns_info_positions(load, insns_info_positions_offset, insns_info_size);
14142 load_body->local_table = ibf_load_local_table(load, local_table_offset, local_table_size);
14143 ibf_load_lvar_states(load, load_body, lvar_states_offset, local_table_size, load_body->local_table);
14144 ibf_load_catch_table(load, catch_table_offset, catch_table_size, iseq);
14148 const rb_iseq_t *mandatory_only_iseq = ibf_load_iseq(load, (
const rb_iseq_t *)(
VALUE)mandatory_only_iseq_index);
14150 RB_OBJ_WRITE(iseq, &load_body->parent_iseq, parent_iseq);
14151 RB_OBJ_WRITE(iseq, &load_body->local_iseq, local_iseq);
14152 RB_OBJ_WRITE(iseq, &load_body->mandatory_only_iseq, mandatory_only_iseq);
14155 if (load_body->param.keyword != NULL) {
14157 struct rb_iseq_param_keyword *keyword = (
struct rb_iseq_param_keyword *) load_body->param.keyword;
14158 keyword->table = &load_body->local_table[keyword->bits_start - keyword->num];
14161 ibf_load_code(load, iseq, bytecode_offset, bytecode_size, iseq_size);
14162#if VM_INSN_INFO_TABLE_IMPL == 2
14163 rb_iseq_insns_info_encode_positions(iseq);
14166 rb_iseq_translate_threaded_code(iseq);
14168#if IBF_ISEQ_ENABLE_LOCAL_BUFFER
14169 load->current_buffer = &load->global_buffer;
14172 RB_OBJ_WRITE(iseq, &load_body->location.label, ibf_load_location_str(load, location_label_index));
14174#if IBF_ISEQ_ENABLE_LOCAL_BUFFER
14175 load->current_buffer = saved_buffer;
14177 verify_call_cache(iseq);
14180 rb_vm_pop_frame_no_int(ec);
14190ibf_dump_iseq_list_i(st_data_t key, st_data_t val, st_data_t ptr)
14195 ibf_offset_t offset = ibf_dump_iseq_each(args->dump, iseq);
14198 return ST_CONTINUE;
14208 args.offset_list = offset_list;
14210 st_foreach(dump->iseq_table, ibf_dump_iseq_list_i, (st_data_t)&args);
14213 st_index_t size = dump->iseq_table->num_entries;
14214 ibf_offset_t *offsets =
ALLOCA_N(ibf_offset_t, size);
14216 for (i = 0; i < size; i++) {
14220 ibf_dump_align(dump,
sizeof(ibf_offset_t));
14221 header->iseq_list_offset = ibf_dump_write(dump, offsets,
sizeof(ibf_offset_t) * size);
14222 header->iseq_list_size = (
unsigned int)size;
14232 unsigned int type: 5;
14233 unsigned int special_const: 1;
14234 unsigned int frozen: 1;
14235 unsigned int internal: 1;
14238enum ibf_object_class_index {
14239 IBF_OBJECT_CLASS_OBJECT,
14240 IBF_OBJECT_CLASS_ARRAY,
14241 IBF_OBJECT_CLASS_STANDARD_ERROR,
14242 IBF_OBJECT_CLASS_NO_MATCHING_PATTERN_ERROR,
14243 IBF_OBJECT_CLASS_TYPE_ERROR,
14244 IBF_OBJECT_CLASS_NO_MATCHING_PATTERN_KEY_ERROR,
14254 long keyval[FLEX_ARY_LEN];
14267 BDIGIT digits[FLEX_ARY_LEN];
14270enum ibf_object_data_type {
14271 IBF_OBJECT_DATA_ENCODING,
14282#define IBF_ALIGNED_OFFSET(align, offset) \
14283 ((((offset) - 1) / (align) + 1) * (align))
14288#define IBF_OBJBODY(type, offset) \
14289 ibf_load_check_offset(load, IBF_ALIGNED_OFFSET(RUBY_ALIGNOF(type), offset))
14292ibf_load_check_offset(
const struct ibf_load *load,
size_t offset)
14294 if (offset >= load->current_buffer->size) {
14295 rb_raise(
rb_eIndexError,
"object offset out of range: %"PRIdSIZE, offset);
14297 return load->current_buffer->buff + offset;
14300NORETURN(
static void ibf_dump_object_unsupported(
struct ibf_dump *dump,
VALUE obj));
14303ibf_dump_object_unsupported(
struct ibf_dump *dump,
VALUE obj)
14306 rb_raw_obj_info(buff,
sizeof(buff), obj);
14315 rb_raise(rb_eArgError,
"unsupported");
14322 enum ibf_object_class_index cindex;
14324 cindex = IBF_OBJECT_CLASS_OBJECT;
14327 cindex = IBF_OBJECT_CLASS_ARRAY;
14330 cindex = IBF_OBJECT_CLASS_STANDARD_ERROR;
14333 cindex = IBF_OBJECT_CLASS_NO_MATCHING_PATTERN_ERROR;
14336 cindex = IBF_OBJECT_CLASS_TYPE_ERROR;
14339 cindex = IBF_OBJECT_CLASS_NO_MATCHING_PATTERN_KEY_ERROR;
14342 rb_obj_info_dump(obj);
14344 rb_bug(
"unsupported class");
14346 ibf_dump_write_small_value(dump, (
VALUE)cindex);
14352 enum ibf_object_class_index cindex = (
enum ibf_object_class_index)ibf_load_small_value(load, &offset);
14355 case IBF_OBJECT_CLASS_OBJECT:
14357 case IBF_OBJECT_CLASS_ARRAY:
14359 case IBF_OBJECT_CLASS_STANDARD_ERROR:
14361 case IBF_OBJECT_CLASS_NO_MATCHING_PATTERN_ERROR:
14363 case IBF_OBJECT_CLASS_TYPE_ERROR:
14365 case IBF_OBJECT_CLASS_NO_MATCHING_PATTERN_KEY_ERROR:
14369 rb_raise(rb_eArgError,
"ibf_load_object_class: unknown class (%d)", (
int)cindex);
14377 (void)IBF_W(&dbl,
double, 1);
14385 memcpy(&d, IBF_OBJBODY(
double, offset),
sizeof(d));
14394 long encindex = (long)rb_enc_get_index(obj);
14395 long len = RSTRING_LEN(obj);
14396 const char *ptr = RSTRING_PTR(obj);
14398 if (encindex > RUBY_ENCINDEX_BUILTIN_MAX) {
14399 rb_encoding *enc = rb_enc_from_index((
int)encindex);
14400 const char *enc_name = rb_enc_name(enc);
14401 encindex = RUBY_ENCINDEX_BUILTIN_MAX + ibf_dump_object(dump,
rb_str_new2(enc_name));
14404 ibf_dump_write_small_value(dump, encindex);
14405 ibf_dump_write_small_value(dump,
len);
14406 IBF_WP(ptr,
char,
len);
14412 ibf_offset_t reading_pos = offset;
14414 int encindex = (int)ibf_load_small_value(load, &reading_pos);
14415 const long len = (long)ibf_load_small_value(load, &reading_pos);
14416 const char *ptr = load->current_buffer->buff + reading_pos;
14418 if (encindex > RUBY_ENCINDEX_BUILTIN_MAX) {
14419 VALUE enc_name_str = ibf_load_object(load, encindex - RUBY_ENCINDEX_BUILTIN_MAX);
14420 encindex = rb_enc_find_index(RSTRING_PTR(enc_name_str));
14424 if (header->frozen && !header->internal) {
14425 str = rb_enc_literal_str(ptr,
len, rb_enc_from_index(encindex));
14428 str = rb_enc_str_new(ptr,
len, rb_enc_from_index(encindex));
14431 if (header->frozen) str = rb_fstring(str);
14442 regexp.srcstr = (long)ibf_dump_object(dump, srcstr);
14444 ibf_dump_write_byte(dump, (
unsigned char)regexp.option);
14445 ibf_dump_write_small_value(dump, regexp.srcstr);
14452 regexp.option = ibf_load_byte(load, &offset);
14453 regexp.srcstr = ibf_load_small_value(load, &offset);
14455 VALUE srcstr = ibf_load_object(load, regexp.srcstr);
14456 VALUE reg = rb_reg_compile(srcstr, (
int)regexp.option, NULL, 0);
14468 ibf_dump_write_small_value(dump,
len);
14469 for (i=0; i<
len; i++) {
14470 long index = (long)ibf_dump_object(dump,
RARRAY_AREF(obj, i));
14471 ibf_dump_write_small_value(dump, index);
14478 ibf_offset_t reading_pos = offset;
14480 const long len = (long)ibf_load_small_value(load, &reading_pos);
14485 for (i=0; i<
len; i++) {
14486 const VALUE index = ibf_load_small_value(load, &reading_pos);
14490 if (header->frozen) {
14499ibf_dump_object_hash_i(st_data_t key, st_data_t val, st_data_t ptr)
14503 VALUE key_index = ibf_dump_object(dump, (
VALUE)key);
14504 VALUE val_index = ibf_dump_object(dump, (
VALUE)val);
14506 ibf_dump_write_small_value(dump, key_index);
14507 ibf_dump_write_small_value(dump, val_index);
14508 return ST_CONTINUE;
14515 ibf_dump_write_small_value(dump, (
VALUE)
len);
14523 long len = (long)ibf_load_small_value(load, &offset);
14524 VALUE obj = header->frozen ? rb_hash_alloc_fixed_size(
rb_cHash,
len) : rb_hash_new_capa(
len);
14527 for (i = 0; i <
len; i++) {
14528 VALUE key_index = ibf_load_small_value(load, &offset);
14529 VALUE val_index = ibf_load_small_value(load, &offset);
14531 VALUE key = ibf_load_object(load, key_index);
14532 VALUE val = ibf_load_object(load, val_index);
14533 rb_hash_aset(obj, key, val);
14537 if (header->frozen) {
14545ibf_dump_cdhash_i(st_data_t key, st_data_t val, st_data_t ptr)
14549 VALUE key_index = ibf_dump_object(dump, (
VALUE)key);
14551 ibf_dump_write_small_value(dump, key_index);
14552 ibf_dump_write_small_value(dump, val);
14553 return ST_CONTINUE;
14559 switch (imemo_type(obj)) {
14560 case imemo_cdhash: {
14561 st_table *tbl = rb_imemo_cdhash_tbl(obj);
14563 long len = tbl->num_entries;
14564 ibf_dump_write_small_value(dump, (
VALUE)
len);
14565 if (
len > 0) st_foreach(tbl, ibf_dump_cdhash_i, (
VALUE)dump);
14569 ibf_dump_object_unsupported(dump, obj);
14577 long len = (long)ibf_load_small_value(load, &offset);
14581 for (i = 0; i <
len; i++) {
14582 VALUE key_index = ibf_load_small_value(load, &offset);
14583 VALUE val = ibf_load_small_value(load, &offset);
14585 VALUE key = ibf_load_object(load, key_index);
14586 cdhash_aset(obj, key, val);
14600 range.class_index = 0;
14603 range.beg = (long)ibf_dump_object(dump, beg);
14604 range.end = (long)ibf_dump_object(dump, end);
14610 rb_raise(
rb_eNotImpError,
"ibf_dump_object_struct: unsupported class %"PRIsVALUE,
14619 VALUE beg = ibf_load_object(load, range->beg);
14620 VALUE end = ibf_load_object(load, range->end);
14630 ssize_t
len = BIGNUM_LEN(obj);
14631 ssize_t slen = BIGNUM_SIGN(obj) > 0 ?
len :
len * -1;
14632 BDIGIT *d = BIGNUM_DIGITS(obj);
14634 (void)IBF_W(&slen, ssize_t, 1);
14635 IBF_WP(d, BDIGIT,
len);
14642 int sign = bignum->slen > 0;
14643 ssize_t
len = sign > 0 ? bignum->slen : -1 * bignum->slen;
14644 const int big_unpack_flags =
14647 VALUE obj = rb_integer_unpack(bignum->digits,
len,
sizeof(BDIGIT), 0,
14658 if (rb_data_is_encoding(obj)) {
14660 const char *name = rb_enc_name(enc);
14661 long len = strlen(name) + 1;
14663 data[0] = IBF_OBJECT_DATA_ENCODING;
14665 (void)IBF_W(data,
long, 2);
14666 IBF_WP(name,
char,
len);
14669 ibf_dump_object_unsupported(dump, obj);
14676 const long *body = IBF_OBJBODY(
long, offset);
14677 const enum ibf_object_data_type
type = (
enum ibf_object_data_type)body[0];
14679 const char *data = (
const char *)&body[2];
14682 case IBF_OBJECT_DATA_ENCODING:
14684 VALUE encobj = rb_enc_from_encoding(rb_enc_find(data));
14689 return ibf_load_object_unsupported(load, header, offset);
14693ibf_dump_object_complex_rational(
struct ibf_dump *dump,
VALUE obj)
14696 data[0] = (long)ibf_dump_object(dump, RCOMPLEX(obj)->real);
14697 data[1] = (long)ibf_dump_object(dump, RCOMPLEX(obj)->imag);
14699 (void)IBF_W(data,
long, 2);
14703ibf_load_object_complex_rational(
const struct ibf_load *load,
const struct ibf_object_header *header, ibf_offset_t offset)
14706 VALUE a = ibf_load_object(load, nums->a);
14707 VALUE b = ibf_load_object(load, nums->b);
14719 ibf_dump_object_string(dump,
rb_sym2str(obj));
14725 ibf_offset_t reading_pos = offset;
14727 int encindex = (int)ibf_load_small_value(load, &reading_pos);
14728 const long len = (long)ibf_load_small_value(load, &reading_pos);
14729 const char *ptr = load->current_buffer->buff + reading_pos;
14731 if (encindex > RUBY_ENCINDEX_BUILTIN_MAX) {
14732 VALUE enc_name_str = ibf_load_object(load, encindex - RUBY_ENCINDEX_BUILTIN_MAX);
14733 encindex = rb_enc_find_index(RSTRING_PTR(enc_name_str));
14736 ID id = rb_intern3(ptr,
len, rb_enc_from_index(encindex));
14740typedef void (*ibf_dump_object_function)(
struct ibf_dump *dump,
VALUE obj);
14741static const ibf_dump_object_function dump_object_functions[
RUBY_T_MASK+1] = {
14742 ibf_dump_object_unsupported,
14743 ibf_dump_object_unsupported,
14744 ibf_dump_object_class,
14745 ibf_dump_object_unsupported,
14746 ibf_dump_object_float,
14747 ibf_dump_object_string,
14748 ibf_dump_object_regexp,
14749 ibf_dump_object_array,
14750 ibf_dump_object_hash,
14751 ibf_dump_object_struct,
14752 ibf_dump_object_bignum,
14753 ibf_dump_object_unsupported,
14754 ibf_dump_object_data,
14755 ibf_dump_object_unsupported,
14756 ibf_dump_object_complex_rational,
14757 ibf_dump_object_complex_rational,
14758 ibf_dump_object_unsupported,
14759 ibf_dump_object_unsupported,
14760 ibf_dump_object_unsupported,
14761 ibf_dump_object_unsupported,
14762 ibf_dump_object_symbol,
14763 ibf_dump_object_unsupported,
14764 ibf_dump_object_unsupported,
14765 ibf_dump_object_unsupported,
14766 ibf_dump_object_unsupported,
14767 ibf_dump_object_unsupported,
14768 ibf_dump_object_imemo,
14769 ibf_dump_object_unsupported,
14770 ibf_dump_object_unsupported,
14771 ibf_dump_object_unsupported,
14772 ibf_dump_object_unsupported,
14773 ibf_dump_object_unsupported,
14779 unsigned char byte =
14780 (header.type << 0) |
14781 (header.special_const << 5) |
14782 (header.frozen << 6) |
14783 (header.internal << 7);
14789ibf_load_object_object_header(const struct
ibf_load *load, ibf_offset_t *offset)
14791 unsigned char byte = ibf_load_byte(load, offset);
14794 header.type = (
byte >> 0) & 0x1f;
14795 header.special_const = (
byte >> 5) & 0x01;
14796 header.frozen = (
byte >> 6) & 0x01;
14797 header.internal = (
byte >> 7) & 0x01;
14806 ibf_offset_t current_offset;
14807 IBF_ZERO(obj_header);
14808 obj_header.type =
TYPE(obj);
14810 IBF_W_ALIGN(ibf_offset_t);
14811 current_offset = ibf_dump_pos(dump);
14816 obj_header.special_const = TRUE;
14817 obj_header.frozen = TRUE;
14818 obj_header.internal = TRUE;
14819 ibf_dump_object_object_header(dump, obj_header);
14820 ibf_dump_write_small_value(dump, obj);
14824 obj_header.special_const = FALSE;
14825 obj_header.frozen =
OBJ_FROZEN(obj) ? TRUE : FALSE;
14826 ibf_dump_object_object_header(dump, obj_header);
14827 (*dump_object_functions[obj_header.type])(dump, obj);
14830 return current_offset;
14834static const ibf_load_object_function load_object_functions[
RUBY_T_MASK+1] = {
14835 ibf_load_object_unsupported,
14836 ibf_load_object_unsupported,
14837 ibf_load_object_class,
14838 ibf_load_object_unsupported,
14839 ibf_load_object_float,
14840 ibf_load_object_string,
14841 ibf_load_object_regexp,
14842 ibf_load_object_array,
14843 ibf_load_object_hash,
14844 ibf_load_object_struct,
14845 ibf_load_object_bignum,
14846 ibf_load_object_unsupported,
14847 ibf_load_object_data,
14848 ibf_load_object_unsupported,
14849 ibf_load_object_complex_rational,
14850 ibf_load_object_complex_rational,
14851 ibf_load_object_unsupported,
14852 ibf_load_object_unsupported,
14853 ibf_load_object_unsupported,
14854 ibf_load_object_unsupported,
14855 ibf_load_object_symbol,
14856 ibf_load_object_unsupported,
14857 ibf_load_object_unsupported,
14858 ibf_load_object_unsupported,
14859 ibf_load_object_unsupported,
14860 ibf_load_object_unsupported,
14861 ibf_load_object_imemo,
14862 ibf_load_object_unsupported,
14863 ibf_load_object_unsupported,
14864 ibf_load_object_unsupported,
14865 ibf_load_object_unsupported,
14866 ibf_load_object_unsupported,
14870ibf_load_object(
const struct ibf_load *load,
VALUE object_index)
14872 if (object_index == 0) {
14876 VALUE obj = pinned_list_fetch(load->current_buffer->obj_list, (
long)object_index);
14878 ibf_offset_t *offsets = (ibf_offset_t *)(load->current_buffer->obj_list_offset + load->current_buffer->buff);
14879 ibf_offset_t offset = offsets[object_index];
14880 const struct ibf_object_header header = ibf_load_object_object_header(load, &offset);
14883 fprintf(stderr,
"ibf_load_object: list=%#x offsets=%p offset=%#x\n",
14884 load->current_buffer->obj_list_offset, (
void *)offsets, offset);
14885 fprintf(stderr,
"ibf_load_object: type=%#x special=%d frozen=%d internal=%d\n",
14886 header.type, header.special_const, header.frozen, header.internal);
14888 if (offset >= load->current_buffer->size) {
14889 rb_raise(
rb_eIndexError,
"object offset out of range: %u", offset);
14892 if (header.special_const) {
14893 ibf_offset_t reading_pos = offset;
14895 obj = ibf_load_small_value(load, &reading_pos);
14898 obj = (*load_object_functions[header.type])(load, &header, offset);
14901 pinned_list_store(load->current_buffer->obj_list, (
long)object_index, obj);
14904 fprintf(stderr,
"ibf_load_object: index=%#"PRIxVALUE
" obj=%#"PRIxVALUE
"\n",
14905 object_index, obj);
14918ibf_dump_object_list_i(st_data_t key, st_data_t val, st_data_t ptr)
14923 ibf_offset_t offset = ibf_dump_object_object(args->dump, obj);
14926 return ST_CONTINUE;
14930ibf_dump_object_list(
struct ibf_dump *dump, ibf_offset_t *obj_list_offset,
unsigned int *obj_list_size)
14932 st_table *obj_table = dump->current_buffer->obj_table;
14937 args.offset_list = offset_list;
14939 st_foreach(obj_table, ibf_dump_object_list_i, (st_data_t)&args);
14941 IBF_W_ALIGN(ibf_offset_t);
14942 *obj_list_offset = ibf_dump_pos(dump);
14944 st_index_t size = obj_table->num_entries;
14947 for (i=0; i<size; i++) {
14952 *obj_list_size = (
unsigned int)size;
14956ibf_dump_mark(
void *ptr)
14959 rb_gc_mark(dump->global_buffer.str);
14961 rb_mark_set(dump->global_buffer.obj_table);
14962 rb_mark_set(dump->iseq_table);
14966ibf_dump_free(
void *ptr)
14969 if (dump->global_buffer.obj_table) {
14970 st_free_table(dump->global_buffer.obj_table);
14971 dump->global_buffer.obj_table = 0;
14973 if (dump->iseq_table) {
14974 st_free_table(dump->iseq_table);
14975 dump->iseq_table = 0;
14980ibf_dump_memsize(
const void *ptr)
14984 if (dump->iseq_table) size += st_memsize(dump->iseq_table);
14985 if (dump->global_buffer.obj_table) size += st_memsize(dump->global_buffer.obj_table);
14991 {ibf_dump_mark, ibf_dump_free, ibf_dump_memsize,},
14992 0, 0, RUBY_TYPED_THREAD_SAFE_FREE | RUBY_TYPED_EMBEDDABLE
14998 dump->global_buffer.obj_table = NULL;
14999 dump->iseq_table = NULL;
15002 dump->global_buffer.obj_table = ibf_dump_object_table_new();
15003 dump->iseq_table = st_init_numtable();
15005 dump->current_buffer = &dump->global_buffer;
15013 ibf_dump_write(dump, &header,
sizeof(header));
15014 ibf_dump_iseq(dump, iseq);
15016 header.magic[0] =
'Y';
15017 header.magic[1] =
'A';
15018 header.magic[2] =
'R';
15019 header.magic[3] =
'B';
15020 header.major_version = IBF_MAJOR_VERSION;
15021 header.minor_version = IBF_MINOR_VERSION;
15022 header.endian = IBF_ENDIAN_MARK;
15024 ibf_dump_iseq_list(dump, &header);
15025 ibf_dump_object_list(dump, &header.global_object_list_offset, &header.global_object_list_size);
15026 header.size = ibf_dump_pos(dump);
15029 VALUE opt_str = opt;
15032 ibf_dump_write(dump, ptr, header.extra_size);
15035 header.extra_size = 0;
15038 ibf_dump_overwrite(dump, &header,
sizeof(header), 0);
15040 return dump->global_buffer.str;
15050 if (ISEQ_BODY(iseq)->parent_iseq != NULL ||
15051 ISEQ_BODY(iseq)->local_iseq != iseq) {
15054 if (
RTEST(ISEQ_COVERAGE(iseq))) {
15059 ibf_dump_setup(dump, dump_obj);
15061 str = iseq_ibf_dump_0(dump, iseq, opt);
15066static const ibf_offset_t *
15067ibf_iseq_list(
const struct ibf_load *load)
15069 return (
const ibf_offset_t *)(load->global_buffer.buff + load->header->iseq_list_offset);
15073rb_ibf_load_iseq_complete(
rb_iseq_t *iseq)
15077 ibf_offset_t offset = ibf_iseq_list(load)[iseq->aux.loader.index];
15080 fprintf(stderr,
"rb_ibf_load_iseq_complete: index=%#x offset=%#x size=%#x\n",
15081 iseq->aux.loader.index, offset,
15082 load->header->size);
15084 ibf_load_iseq_each(load, iseq, offset);
15085 ISEQ_COMPILE_DATA_CLEAR(iseq);
15087 rb_iseq_init_trace(iseq);
15088 load->iseq = prev_src_iseq;
15095 rb_ibf_load_iseq_complete((
rb_iseq_t *)iseq);
15103 int iseq_index = (int)(
VALUE)index_iseq;
15106 fprintf(stderr,
"ibf_load_iseq: index_iseq=%p iseq_list=%p\n",
15107 (
void *)index_iseq, (
void *)load->iseq_list);
15109 if (iseq_index == -1) {
15113 VALUE iseqv = pinned_list_fetch(load->iseq_list, iseq_index);
15116 fprintf(stderr,
"ibf_load_iseq: iseqv=%p\n", (
void *)iseqv);
15124 fprintf(stderr,
"ibf_load_iseq: new iseq=%p\n", (
void *)iseq);
15128 iseq->aux.loader.index = iseq_index;
15130 fprintf(stderr,
"ibf_load_iseq: iseq=%p loader_obj=%p index=%d\n",
15131 (
void *)iseq, (
void *)load->loader_obj, iseq_index);
15133 pinned_list_store(load->iseq_list, iseq_index, (
VALUE)iseq);
15135 if (!USE_LAZY_LOAD || GET_VM()->builtin_function_table) {
15137 fprintf(stderr,
"ibf_load_iseq: loading iseq=%p\n", (
void *)iseq);
15139 rb_ibf_load_iseq_complete(iseq);
15143 fprintf(stderr,
"ibf_load_iseq: iseq=%p loaded %p\n",
15144 (
void *)iseq, (
void *)load->iseq);
15152ibf_load_setup_bytes(
struct ibf_load *load,
VALUE loader_obj,
const char *bytes,
size_t size)
15155 load->loader_obj = loader_obj;
15156 load->global_buffer.buff = bytes;
15157 load->header = header;
15158 load->global_buffer.size = header->size;
15159 load->global_buffer.obj_list_offset = header->global_object_list_offset;
15160 load->global_buffer.obj_list_size = header->global_object_list_size;
15161 RB_OBJ_WRITE(loader_obj, &load->iseq_list, pinned_list_new(header->iseq_list_size));
15162 RB_OBJ_WRITE(loader_obj, &load->global_buffer.obj_list, pinned_list_new(load->global_buffer.obj_list_size));
15165 load->current_buffer = &load->global_buffer;
15167 if (size < header->size) {
15170 if (strncmp(header->magic,
"YARB", 4) != 0) {
15173 if (header->major_version != IBF_MAJOR_VERSION ||
15174 header->minor_version != IBF_MINOR_VERSION) {
15176 header->major_version, header->minor_version, IBF_MAJOR_VERSION, IBF_MINOR_VERSION);
15178 if (header->endian != IBF_ENDIAN_MARK) {
15184 if (header->iseq_list_offset %
RUBY_ALIGNOF(ibf_offset_t)) {
15185 rb_raise(rb_eArgError,
"unaligned iseq list offset: %u",
15186 header->iseq_list_offset);
15188 if (load->global_buffer.obj_list_offset %
RUBY_ALIGNOF(ibf_offset_t)) {
15189 rb_raise(rb_eArgError,
"unaligned object list offset: %u",
15190 load->global_buffer.obj_list_offset);
15203 if (USE_LAZY_LOAD) {
15204 str =
rb_str_new(RSTRING_PTR(str), RSTRING_LEN(str));
15207 ibf_load_setup_bytes(load, loader_obj, RSTRING_PTR(str), RSTRING_LEN(str));
15212ibf_loader_mark(
void *ptr)
15215 rb_gc_mark(load->str);
15216 rb_gc_mark(load->iseq_list);
15217 rb_gc_mark(load->global_buffer.obj_list);
15221ibf_loader_free(
void *ptr)
15228ibf_loader_memsize(
const void *ptr)
15235 {ibf_loader_mark, ibf_loader_free, ibf_loader_memsize,},
15236 0, 0, RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_THREAD_SAFE_FREE
15240rb_iseq_ibf_load(
VALUE str)
15246 ibf_load_setup(load, loader_obj, str);
15247 iseq = ibf_load_iseq(load, 0);
15254rb_iseq_ibf_load_bytes(
const char *bytes,
size_t size)
15260 ibf_load_setup_bytes(load, loader_obj, bytes, size);
15261 iseq = ibf_load_iseq(load, 0);
15269ibf_dump_iseq_table_collect_i(st_data_t key, st_data_t val, st_data_t arg)
15272 srcs[(int)val] = (
const rb_iseq_t *)key;
15273 return ST_CONTINUE;
15279iseq_subtree_copy_pc2branchindex(
const struct ibf_dump *dump,
const struct ibf_load *load)
15281 unsigned int iseq_count = (
unsigned int)dump->iseq_table->num_entries;
15284 st_foreach(dump->iseq_table, ibf_dump_iseq_table_collect_i, (st_data_t)srcs);
15286 for (
unsigned int i = 0; i < iseq_count; i++) {
15288 VALUE pc2branchindex = ISEQ_PC2BRANCHINDEX(srcs[i]);
15289 if (pc2branchindex !=
Qnil) {
15290 ISEQ_PC2BRANCHINDEX_SET(copy, pc2branchindex);
15299rb_iseq_dup_with_independent_caches(
const rb_iseq_t *src_root)
15307 ibf_dump_setup(dump, dump_obj);
15309 str = iseq_ibf_dump_0(dump, src_root,
Qnil);
15314 ibf_load_setup(load, loader_obj, str);
15322 unsigned int iseq_count = (
unsigned int)dump->iseq_table->num_entries;
15324 for (
unsigned int i = 0; i < iseq_count; i++) {
15328 rb_ibf_load_iseq_complete(copy);
15334 if (!cb->local_iseq)
RB_OBJ_WRITE(copy, &cb->local_iseq, sb->local_iseq);
15335 RB_OBJ_WRITE(copy, &cb->location.pathobj, sb->location.pathobj);
15336 VALUE sl = ISEQ_SCRIPT_LINES(src_root);
15337 VALUE cov = ISEQ_COVERAGE(src_root);
15345 RB_OBJ_WRITE(copy, &cb->parent_iseq, sb->parent_iseq);
15354 if (ISEQ_PC2BRANCHINDEX(src_root) !=
Qnil) {
15355 iseq_subtree_copy_pc2branchindex(dump, load);
15364rb_iseq_ibf_load_extra_data(
VALUE str)
15370 ibf_load_setup(load, loader_obj, str);
15371 extra_str =
rb_str_new(load->global_buffer.buff + load->header->size, load->header->extra_size);
15376#include "prism_compile.c"
#define RBIMPL_ASSERT_OR_ASSUME(...)
This is either RUBY_ASSERT or RBIMPL_ASSUME, depending on RUBY_DEBUG.
#define RUBY_ASSERT(...)
Asserts that the given expression is truthy if and only if RUBY_DEBUG is truthy.
#define RUBY_ATOMIC_PTR_LOAD(var)
Identical to RUBY_ATOMIC_LOAD, except it expects its arguments are void*.
#define RUBY_ALIGNOF
Wraps (or simulates) alignof.
#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_NONE
No events.
#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.
#define rb_str_new2
Old name of rb_str_new_cstr.
#define T_COMPLEX
Old name of RUBY_T_COMPLEX.
#define TYPE(_)
Old name of rb_type.
#define NUM2ULONG
Old name of RB_NUM2ULONG.
#define NUM2LL
Old name of RB_NUM2LL.
#define ALLOCV
Old name of RB_ALLOCV.
#define RFLOAT_VALUE
Old name of rb_float_value.
#define T_STRING
Old name of RUBY_T_STRING.
#define Qundef
Old name of RUBY_Qundef.
#define INT2FIX
Old name of RB_INT2FIX.
#define OBJ_FROZEN
Old name of RB_OBJ_FROZEN.
#define rb_str_cat2
Old name of rb_str_cat_cstr.
#define T_NIL
Old name of RUBY_T_NIL.
#define UNREACHABLE
Old name of RBIMPL_UNREACHABLE.
#define T_FLOAT
Old name of RUBY_T_FLOAT.
#define ID2SYM
Old name of RB_ID2SYM.
#define T_BIGNUM
Old name of RUBY_T_BIGNUM.
#define SPECIAL_CONST_P
Old name of RB_SPECIAL_CONST_P.
#define OBJ_FREEZE
Old name of RB_OBJ_FREEZE.
#define ULONG2NUM
Old name of RB_ULONG2NUM.
#define UNREACHABLE_RETURN
Old name of RBIMPL_UNREACHABLE_RETURN.
#define SYM2ID
Old name of RB_SYM2ID.
#define FIX2UINT
Old name of RB_FIX2UINT.
#define ZALLOC
Old name of RB_ZALLOC.
#define CLASS_OF
Old name of rb_class_of.
#define FIXABLE
Old name of RB_FIXABLE.
#define xmalloc
Old name of ruby_xmalloc.
#define LONG2FIX
Old name of RB_INT2FIX.
#define FIX2INT
Old name of RB_FIX2INT.
#define NUM2UINT
Old name of RB_NUM2UINT.
#define ZALLOC_N
Old name of RB_ZALLOC_N.
#define ASSUME
Old name of RBIMPL_ASSUME.
#define T_RATIONAL
Old name of RUBY_T_RATIONAL.
#define T_HASH
Old name of RUBY_T_HASH.
#define ALLOC_N
Old name of RB_ALLOC_N.
#define FL_SET
Old name of RB_FL_SET.
#define FLONUM_P
Old name of RB_FLONUM_P.
#define Qtrue
Old name of RUBY_Qtrue.
#define NUM2INT
Old name of RB_NUM2INT.
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
#define FIX2LONG
Old name of RB_FIX2LONG.
#define T_ARRAY
Old name of RUBY_T_ARRAY.
#define NIL_P
Old name of RB_NIL_P.
#define ALLOCV_N
Old name of RB_ALLOCV_N.
#define NUM2ULL
Old name of RB_NUM2ULL.
#define T_SYMBOL
Old name of RUBY_T_SYMBOL.
#define DBL2NUM
Old name of rb_float_new.
#define BUILTIN_TYPE
Old name of RB_BUILTIN_TYPE.
#define FL_TEST
Old name of RB_FL_TEST.
#define NUM2LONG
Old name of RB_NUM2LONG.
#define FL_UNSET
Old name of RB_FL_UNSET.
#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 ALLOCV_END
Old name of RB_ALLOCV_END.
#define SYMBOL_P
Old name of RB_SYMBOL_P.
#define T_REGEXP
Old name of RUBY_T_REGEXP.
#define ruby_debug
This variable controls whether the interpreter is in debug mode.
VALUE rb_eNotImpError
NotImplementedError exception.
VALUE rb_eStandardError
StandardError exception.
VALUE rb_eTypeError
TypeError exception.
VALUE rb_eNoMatchingPatternError
NoMatchingPatternError exception.
void rb_exc_fatal(VALUE mesg)
Raises a fatal error in the current thread.
VALUE rb_eRuntimeError
RuntimeError exception.
void rb_warn(const char *fmt,...)
Identical to rb_warning(), except it reports unless $VERBOSE is nil.
VALUE rb_eNoMatchingPatternKeyError
NoMatchingPatternKeyError exception.
VALUE rb_eIndexError
IndexError exception.
VALUE rb_eSyntaxError
SyntaxError exception.
@ RB_WARN_CATEGORY_STRICT_UNUSED_BLOCK
Warning is for checking unused block strictly.
VALUE rb_obj_reveal(VALUE obj, VALUE klass)
Make a hidden object visible again.
VALUE rb_cArray
Array class.
VALUE rb_cObject
Object class.
VALUE rb_obj_hide(VALUE obj)
Make the object invisible from Ruby code.
VALUE rb_cHash
Hash class.
VALUE rb_inspect(VALUE obj)
Generates a human-readable textual representation of the given object.
VALUE rb_cRange
Range class.
VALUE rb_obj_is_kind_of(VALUE obj, VALUE klass)
Queries if the given object is an instance (of possibly descendants) of the given class.
VALUE rb_obj_freeze(VALUE obj)
Same as RB_OBJ_FREEZE(), but returns the given object.
#define RB_OBJ_WRITTEN(old, oldv, young)
Identical to RB_OBJ_WRITE(), except it doesn't write any values, but only a WB declaration.
#define RB_OBJ_WRITE(old, slot, young)
Declaration of a "back" pointer.
#define RB_POSFIXABLE(_)
Checks if the passed value is in range of fixnum, assuming it is a positive number.
Defines RBIMPL_HAS_BUILTIN.
VALUE rb_ary_reverse(VALUE ary)
Destructively reverses the passed array in-place.
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_cat(VALUE ary, const VALUE *train, long len)
Destructively appends multiple elements at the end of the array.
VALUE rb_ary_new(void)
Allocates a new, empty array.
VALUE rb_ary_new_capa(long capa)
Identical to rb_ary_new(), except it additionally specifies how many rooms of objects it should alloc...
VALUE rb_ary_hidden_new(long capa)
Allocates a hidden (no class) empty array.
VALUE rb_ary_clear(VALUE ary)
Destructively removes everything form an 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.
#define INTEGER_PACK_NATIVE_BYTE_ORDER
Means either INTEGER_PACK_MSBYTE_FIRST or INTEGER_PACK_LSBYTE_FIRST, depending on the host processor'...
#define INTEGER_PACK_NEGATIVE
Interprets the input as a signed negative number (unpack only).
#define INTEGER_PACK_LSWORD_FIRST
Stores/interprets the least significant word as the first word.
int rb_is_const_id(ID id)
Classifies the given ID, then sees if it is a constant.
int rb_is_attrset_id(ID id)
Classifies the given ID, then sees if it is an attribute writer.
int rb_range_values(VALUE range, VALUE *begp, VALUE *endp, int *exclp)
Deconstructs a range into its components.
VALUE rb_range_new(VALUE beg, VALUE end, int excl)
Creates a new Range.
VALUE rb_rational_new(VALUE num, VALUE den)
Constructs a Rational, with reduction.
int rb_reg_options(VALUE re)
Queries the options of the passed regular expression.
VALUE rb_str_append(VALUE dst, VALUE src)
Identical to rb_str_buf_append(), except it converts the right hand side before concatenating.
VALUE rb_str_tmp_new(long len)
Allocates a "temporary" string.
int rb_str_hash_cmp(VALUE str1, VALUE str2)
Compares two strings.
#define rb_str_new(str, len)
Allocates an instance of rb_cString.
st_index_t rb_str_hash(VALUE str)
Calculates a hash value of 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...
VALUE rb_str_buf_append(VALUE dst, VALUE src)
Identical to rb_str_cat_cstr(), except it takes Ruby's string instead of C's.
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.
VALUE rb_str_freeze(VALUE str)
This is the implementation of String#freeze.
#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_class_name(VALUE obj)
Queries the name of the given object's class.
static ID rb_intern_const(const char *str)
This is a "tiny optimisation" over rb_intern().
VALUE rb_id2sym(ID id)
Allocates an instance of rb_cSymbol that has the given id.
VALUE rb_sym2str(VALUE symbol)
Obtain a frozen string representation of a symbol (not including the leading colon).
ID rb_sym2id(VALUE obj)
Converts an instance of rb_cSymbol into an ID.
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 DECIMAL_SIZE_OF(expr)
An approximation of decimal representation size.
void ruby_qsort(void *, const size_t, const size_t, int(*)(const void *, const void *, void *), void *)
Reentrant implementation of quick sort.
#define rb_long2int
Just another name of rb_long2int_inline.
#define MEMCPY(p1, p2, type, n)
Handy macro to call memcpy.
#define ALLOCA_N(type, n)
#define MEMZERO(p, type, n)
Handy macro to erase a region of memory.
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
#define RB_ALLOCV(v, n)
Identical to RB_ALLOCV_N(), except that it allocates a number of bytes and returns a void* .
VALUE type(ANYARGS)
ANYARGS-ed function type.
void rb_hash_foreach(VALUE q, int_type *w, VALUE e)
Iteration over the given hash.
#define RBIMPL_ATTR_NORETURN()
Wraps (or simulates) [[noreturn]]
#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.
static void RARRAY_ASET(VALUE ary, long i, VALUE v)
Assigns an object in an array.
#define RARRAY_AREF(a, i)
#define RARRAY_CONST_PTR
Just another name of rb_array_const_ptr.
static VALUE RBASIC_CLASS(VALUE obj)
Queries the class of an object.
#define RUBY_DEFAULT_FREE
This is a value you can set to RData::dfree.
void(* RUBY_DATA_FUNC)(void *)
This is the type of callbacks registered to RData.
#define RHASH_SIZE(h)
Queries the size of the hash.
static VALUE RREGEXP_SRC(VALUE rexp)
Convenient getter function.
#define StringValue(v)
Ensures that the parameter object is a String.
#define StringValuePtr(v)
Identical to StringValue, except it returns a char*.
static int RSTRING_LENINT(VALUE str)
Identical to RSTRING_LEN(), except it differs for the return type.
#define StringValueCStr(v)
Identical to StringValuePtr, except it additionally checks for the contents for viability as a C stri...
#define RTYPEDDATA_DATA(v)
Convenient getter macro.
#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...
void rb_p(VALUE obj)
Inspects an object.
static bool RB_SPECIAL_CONST_P(VALUE obj)
Checks if the given object is of enum ruby_special_consts.
#define RTEST
This is an old name of RB_TEST.
#define _(args)
This was a transition path from K&R to ANSI.
Internal header for Complex.
Internal header for Rational.
const ID * segments
A null-terminated list of ids, used to represent a constant's path idNULL is used to represent the ::...
This is the struct that holds necessary info for a struct.
const char * wrap_struct_name
Name of structs of this kind.
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
#define SIZEOF_VALUE
Identical to sizeof(VALUE), except it is a macro that can also be used inside of preprocessor directi...
uintptr_t VALUE
Type that represents a Ruby object.
static bool RB_FLOAT_TYPE_P(VALUE obj)
Queries if the object is an instance of rb_cFloat.
static bool rb_integer_type_p(VALUE obj)
Queries if the object is an instance of rb_cInteger.
static bool RB_TYPE_P(VALUE obj, enum ruby_value_type t)
Queries if the given object is of given type.
@ RUBY_T_MASK
Bitmask of ruby_value_type.