23#define PUSH_ADJUST(seq, location, label) \
24 ADD_ELEM((seq), (LINK_ELEMENT *) new_adjust_body(iseq, (label), (int) (location).line))
26#define PUSH_ADJUST_RESTORE(seq, label) \
27 ADD_ELEM((seq), (LINK_ELEMENT *) new_adjust_body(iseq, (label), -1))
29#define PUSH_INSN(seq, location, insn) \
30 ADD_ELEM((seq), (LINK_ELEMENT *) new_insn_body(iseq, (int) (location).line, (int) (location).node_id, BIN(insn), 0))
32#define PUSH_INSN1(seq, location, insn, op1) \
33 ADD_ELEM((seq), (LINK_ELEMENT *) new_insn_body(iseq, (int) (location).line, (int) (location).node_id, BIN(insn), 1, (VALUE)(op1)))
35#define PUSH_INSN2(seq, location, insn, op1, op2) \
36 ADD_ELEM((seq), (LINK_ELEMENT *) new_insn_body(iseq, (int) (location).line, (int) (location).node_id, BIN(insn), 2, (VALUE)(op1), (VALUE)(op2)))
38#define PUSH_INSN3(seq, location, insn, op1, op2, op3) \
39 ADD_ELEM((seq), (LINK_ELEMENT *) new_insn_body(iseq, (int) (location).line, (int) (location).node_id, BIN(insn), 3, (VALUE)(op1), (VALUE)(op2), (VALUE)(op3)))
41#define PUSH_INSNL(seq, location, insn, label) \
42 (PUSH_INSN1(seq, location, insn, label), LABEL_REF(label))
44#define PUSH_LABEL(seq, label) \
45 ADD_ELEM((seq), (LINK_ELEMENT *) (label))
47#define PUSH_SEND_R(seq, location, id, argc, block, flag, keywords) \
48 ADD_ELEM((seq), (LINK_ELEMENT *) new_insn_send(iseq, (int) (location).line, (int) (location).node_id, (id), (VALUE)(argc), (block), (VALUE)(flag), (keywords)))
50#define PUSH_SEND(seq, location, id, argc) \
51 PUSH_SEND_R((seq), location, (id), (argc), NULL, (VALUE)INT2FIX(0), NULL)
53#define PUSH_SEND_WITH_FLAG(seq, location, id, argc, flag) \
54 PUSH_SEND_R((seq), location, (id), (argc), NULL, (VALUE)(flag), NULL)
56#define PUSH_SEND_WITH_BLOCK(seq, location, id, argc, block) \
57 PUSH_SEND_R((seq), location, (id), (argc), (block), (VALUE)INT2FIX(0), NULL)
59#define PUSH_CALL(seq, location, id, argc) \
60 PUSH_SEND_R((seq), location, (id), (argc), NULL, (VALUE)INT2FIX(VM_CALL_FCALL), NULL)
62#define PUSH_CALL_WITH_BLOCK(seq, location, id, argc, block) \
63 PUSH_SEND_R((seq), location, (id), (argc), (block), (VALUE)INT2FIX(VM_CALL_FCALL), NULL)
65#define PUSH_TRACE(seq, event) \
66 ADD_ELEM((seq), (LINK_ELEMENT *) new_trace_body(iseq, (event), 0))
68#define PUSH_CATCH_ENTRY(type, ls, le, iseqv, lc) \
69 ADD_CATCH_ENTRY((type), (ls), (le), (iseqv), (lc))
71#define PUSH_SEQ(seq1, seq2) \
72 APPEND_LIST((seq1), (seq2))
74#define PUSH_SYNTHETIC_PUTNIL(seq, iseq) \
76 int lineno = ISEQ_COMPILE_DATA(iseq)->last_line; \
77 if (lineno == 0) lineno = FIX2INT(rb_iseq_first_lineno(iseq)); \
78 ADD_SYNTHETIC_INSN(seq, lineno, -1, putnil); \
87pm_iseq_add_getlocal(
rb_iseq_t *iseq,
LINK_ANCHOR *
const seq,
int line,
int node_id,
int idx,
int level)
89 if (iseq_local_block_param_p(iseq, idx, level)) {
90 ADD_ELEM(seq, (
LINK_ELEMENT *) new_insn_body(iseq, line, node_id, BIN(getblockparam), 2,
INT2FIX((idx) + VM_ENV_DATA_SIZE - 1),
INT2FIX(level)));
93 ADD_ELEM(seq, (
LINK_ELEMENT *) new_insn_body(iseq, line, node_id, BIN(getlocal), 2,
INT2FIX((idx) + VM_ENV_DATA_SIZE - 1),
INT2FIX(level)));
95 if (level > 0) access_outer_variables(iseq, level, iseq_lvar_id(iseq, idx, level),
Qfalse);
99pm_iseq_add_setlocal(
rb_iseq_t *iseq,
LINK_ANCHOR *
const seq,
int line,
int node_id,
int idx,
int level)
101 if (iseq_local_block_param_p(iseq, idx, level)) {
102 ADD_ELEM(seq, (
LINK_ELEMENT *) new_insn_body(iseq, line, node_id, BIN(setblockparam), 2,
INT2FIX((idx) + VM_ENV_DATA_SIZE - 1),
INT2FIX(level)));
105 ADD_ELEM(seq, (
LINK_ELEMENT *) new_insn_body(iseq, line, node_id, BIN(setlocal), 2,
INT2FIX((idx) + VM_ENV_DATA_SIZE - 1),
INT2FIX(level)));
107 update_lvar_state(iseq, level, idx);
108 if (level > 0) access_outer_variables(iseq, level, iseq_lvar_id(iseq, idx, level),
Qtrue);
111#define PUSH_GETLOCAL(seq, location, idx, level) \
112 pm_iseq_add_getlocal(iseq, (seq), (int) (location).line, (int) (location).node_id, (idx), (level))
114#define PUSH_SETLOCAL(seq, location, idx, level) \
115 pm_iseq_add_setlocal(iseq, (seq), (int) (location).line, (int) (location).node_id, (idx), (level))
121#define OLD_ISEQ NEW_ISEQ
124#define NEW_ISEQ(node, name, type, line_no) \
125 pm_new_child_iseq(iseq, (node), rb_fstring(name), 0, (type), (line_no))
127#define OLD_CHILD_ISEQ NEW_CHILD_ISEQ
130#define NEW_CHILD_ISEQ(node, name, type, line_no) \
131 pm_new_child_iseq(iseq, (node), rb_fstring(name), iseq, (type), (line_no))
133#define PM_COMPILE(node) \
134 pm_compile_node(iseq, (node), ret, popped, scope_node)
136#define PM_COMPILE_INTO_ANCHOR(_ret, node) \
137 pm_compile_node(iseq, (node), _ret, popped, scope_node)
139#define PM_COMPILE_POPPED(node) \
140 pm_compile_node(iseq, (node), ret, true, scope_node)
142#define PM_COMPILE_NOT_POPPED(node) \
143 pm_compile_node(iseq, (node), ret, false, scope_node)
146#define PM_INDEX_LOOKUP_TABLE_INIT { .values = NULL, .capacity = 0, .owned = false }
151 int capacity = constants_size + PM_INDEX_LOOKUP_SPECIALS;
152 table->
values = compile_data_alloc2_type(iseq,
int, capacity);
153 memset(table->
values, -1, capacity *
sizeof(
int));
155 table->
owned =
false;
165pm_line_offset_list_line_column_cached(
const pm_line_offset_list_t *list, uint32_t cursor, int32_t start_line,
size_t *last_line)
167 size_t hint = *last_line;
168 size_t size = list->
size;
169 const uint32_t *offsets = list->
offsets;
174 if (offsets[hint] <= cursor) {
175 if (hint + 1 >= size || offsets[hint + 1] > cursor) {
178 .line = ((int32_t) hint) + start_line,
179 .column = cursor - offsets[hint]
184 size_t limit = hint + 9;
185 if (limit > size) limit = size;
186 for (
size_t idx = hint + 1; idx < limit; idx++) {
187 if (offsets[idx] > cursor) {
188 *last_line = idx - 1;
190 .line = ((int32_t) (idx - 1)) + start_line,
191 .column = cursor - offsets[idx - 1]
194 if (offsets[idx] == cursor) {
202 size_t limit = hint > 8 ? hint - 8 : 0;
203 for (
size_t idx = hint; idx > limit; idx--) {
204 if (offsets[idx - 1] <= cursor) {
205 *last_line = idx - 1;
207 .line = ((int32_t) (idx - 1)) + start_line,
208 .column = cursor - offsets[idx - 1]
215 pm_line_column_t result = pm_line_offset_list_line_column(list, cursor, start_line);
216 *last_line = (size_t) (result.
line - start_line);
225pm_line_offset_list_line_cached(
const pm_line_offset_list_t *list, uint32_t cursor, int32_t start_line,
size_t *last_line)
227 return pm_line_offset_list_line_column_cached(list, cursor, start_line, last_line).
line;
230#define PM_NODE_START_LOCATION(node) \
231 ((pm_node_location_t) { .line = pm_line_offset_list_line_cached(scope_node->line_offsets, ((const pm_node_t *) (node))->location.start, scope_node->start_line, &scope_node->last_line), .node_id = ((const pm_node_t *) (node))->node_id })
233#define PM_NODE_END_LOCATION(node) \
234 ((pm_node_location_t) { .line = pm_line_offset_list_line_cached(scope_node->line_offsets, ((const pm_node_t *) (node))->location.start + ((const pm_node_t *) (node))->location.length, scope_node->start_line, &scope_node->last_line), .node_id = ((const pm_node_t *) (node))->node_id })
236#define PM_LOCATION_START_LOCATION(location, id) \
237 ((pm_node_location_t) { .line = pm_line_offset_list_line_cached(scope_node->line_offsets, (location)->start, scope_node->start_line, &scope_node->last_line), .node_id = id })
239#define PM_NODE_START_LINE_COLUMN(node) \
240 pm_line_offset_list_line_column_cached(scope_node->line_offsets, ((const pm_node_t *) (node))->location.start, scope_node->start_line, &scope_node->last_line)
242#define PM_NODE_END_LINE_COLUMN(node) \
243 pm_line_offset_list_line_column_cached(scope_node->line_offsets, ((const pm_node_t *) (node))->location.start + ((const pm_node_t *) (node))->location.length, scope_node->start_line, &scope_node->last_line)
245#define PM_LOCATION_START_LINE_COLUMN(location) \
246 pm_line_offset_list_line_column_cached(scope_node->line_offsets, (location)->start, scope_node->start_line, &scope_node->last_line)
250 return (
int) pm_line_offset_list_line_column(pm_parser_line_offsets(parser), location->
start, pm_parser_start_line(parser)).
line;
260 return (
int) pm_line_offset_list_line_cached(scope_node->line_offsets, node->
location.
start, scope_node->start_line, &scope_node->
last_line);
265 return (
int) pm_line_offset_list_line_cached(scope_node->line_offsets, location->
start, scope_node->start_line, &scope_node->
last_line);
276 if (integer->
values == NULL) {
284 result = rb_integer_unpack(
294 result = rb_int_uminus(result);
310 return parse_integer_value(&node->
value);
350 VALUE imaginary_part;
351 switch (PM_NODE_TYPE(node->
numeric)) {
352 case PM_FLOAT_NODE: {
356 case PM_INTEGER_NODE: {
360 case PM_RATIONAL_NODE: {
365 rb_bug(
"Unexpected numeric type on imaginary number %s\n", pm_node_type(PM_NODE_TYPE(node->
numeric)));
374 return rb_enc_str_new((
const char *) pm_string_source(
string), pm_string_length(
string), scope_node->encoding);
387 if (node->
flags & PM_ENCODING_FLAGS_FORCED_BINARY_ENCODING) {
388 encoding = rb_ascii8bit_encoding();
390 else if (node->
flags & PM_ENCODING_FLAGS_FORCED_UTF8_ENCODING) {
391 encoding = rb_utf8_encoding();
397 return rb_enc_str_new((
const char *) pm_string_source(
string), pm_string_length(
string), encoding);
405 if (node->
flags & PM_STRING_FLAGS_FORCED_BINARY_ENCODING) {
406 encoding = rb_ascii8bit_encoding();
408 else if (node->
flags & PM_STRING_FLAGS_FORCED_UTF8_ENCODING) {
409 encoding = rb_utf8_encoding();
412 encoding = scope_node->encoding;
415 VALUE value = rb_enc_literal_str((
const char *) pm_string_source(
string), pm_string_length(
string), encoding);
416 rb_enc_str_coderange(value);
418 if (ISEQ_COMPILE_DATA(iseq)->option->debug_frozen_string_literal ||
RTEST(
ruby_debug)) {
419 int line_number = pm_node_line_number_cached(node, scope_node);
430 if (symbol->
base.
flags & PM_SYMBOL_FLAGS_FORCED_UTF8_ENCODING) {
431 encoding = rb_utf8_encoding();
433 else if (symbol->
base.
flags & PM_SYMBOL_FLAGS_FORCED_BINARY_ENCODING) {
434 encoding = rb_ascii8bit_encoding();
436 else if (symbol->
base.
flags & PM_SYMBOL_FLAGS_FORCED_US_ASCII_ENCODING) {
437 encoding = rb_usascii_encoding();
440 encoding = scope_node->encoding;
443 return rb_intern3((
const char *) pm_string_source(&symbol->
unescaped), pm_string_length(&symbol->
unescaped), encoding);
447pm_optimizable_range_item_p(
const pm_node_t *node)
449 return (!node || PM_NODE_TYPE_P(node, PM_INTEGER_NODE) || PM_NODE_TYPE_P(node, PM_NIL_NODE));
454parse_regexp_error(
rb_iseq_t *iseq, int32_t line_number,
const char *fmt, ...)
458 VALUE error = rb_syntax_error_append(
Qnil, rb_iseq_path(iseq), line_number, -1, NULL,
"%" PRIsVALUE, args);
470 if (explicit_regexp_encoding != NULL) {
471 encoding = explicit_regexp_encoding;
473 else if (node->
flags & PM_STRING_FLAGS_FORCED_BINARY_ENCODING) {
474 encoding = rb_ascii8bit_encoding();
476 else if (node->
flags & PM_STRING_FLAGS_FORCED_UTF8_ENCODING) {
477 encoding = rb_utf8_encoding();
480 encoding = implicit_regexp_encoding;
483 VALUE string = rb_enc_str_new((
const char *) pm_string_source(unescaped), pm_string_length(unescaped), encoding);
484 VALUE error = rb_reg_check_preprocess(
string);
486 if (error !=
Qnil) parse_regexp_error(iseq, pm_node_line_number_cached(node, scope_node),
"%" PRIsVALUE,
rb_obj_as_string(error));
495 for (
size_t index = 0; index < nodes->
size; index++) {
499 switch (PM_NODE_TYPE(part)) {
501 if (implicit_regexp_encoding != NULL) {
503 string = parse_regexp_string_part(iseq, scope_node, part, &((
const pm_string_node_t *) part)->unescaped, implicit_regexp_encoding, explicit_regexp_encoding);
506 string = parse_string_encoded(part, &((
const pm_string_node_t *) part)->unescaped, scope_node->encoding);
507 VALUE error = rb_reg_check_preprocess(
string);
508 if (error !=
Qnil) parse_regexp_error(iseq, pm_node_line_number_cached(part, scope_node),
"%" PRIsVALUE,
rb_obj_as_string(error));
512 string = parse_string_encoded(part, &((
const pm_string_node_t *) part)->unescaped, scope_node->encoding);
515 case PM_INTERPOLATED_STRING_NODE:
516 string = pm_static_literal_concat(iseq, &((
const pm_interpolated_string_node_t *) part)->parts, scope_node, implicit_regexp_encoding, explicit_regexp_encoding,
false);
518 case PM_EMBEDDED_STATEMENTS_NODE: {
520 string = pm_static_literal_concat(iseq, &cast->
statements->
body, scope_node, implicit_regexp_encoding, explicit_regexp_encoding,
false);
524 RUBY_ASSERT(
false &&
"unexpected node type in pm_static_literal_concat");
528 if (current !=
Qnil) {
536 return top ? rb_fstring(current) : current;
539#define RE_OPTION_ENCODING_SHIFT 8
540#define RE_OPTION_ENCODING(encoding) (((encoding) & 0xFF) << RE_OPTION_ENCODING_SHIFT)
541#define ARG_ENCODING_NONE 32
542#define ARG_ENCODING_FIXED 16
543#define ENC_ASCII8BIT 1
545#define ENC_Windows_31J 3
560 if (PM_NODE_FLAG_P(node, PM_REGULAR_EXPRESSION_FLAGS_ASCII_8BIT)) {
561 flags |= ARG_ENCODING_NONE;
564 if (PM_NODE_FLAG_P(node, PM_REGULAR_EXPRESSION_FLAGS_EUC_JP)) {
565 flags |= (ARG_ENCODING_FIXED | RE_OPTION_ENCODING(ENC_EUC_JP));
568 if (PM_NODE_FLAG_P(node, PM_REGULAR_EXPRESSION_FLAGS_WINDOWS_31J)) {
569 flags |= (ARG_ENCODING_FIXED | RE_OPTION_ENCODING(ENC_Windows_31J));
572 if (PM_NODE_FLAG_P(node, PM_REGULAR_EXPRESSION_FLAGS_UTF_8)) {
573 flags |= (ARG_ENCODING_FIXED | RE_OPTION_ENCODING(ENC_UTF8));
576 if (PM_NODE_FLAG_P(node, PM_REGULAR_EXPRESSION_FLAGS_IGNORE_CASE)) {
577 flags |= ONIG_OPTION_IGNORECASE;
580 if (PM_NODE_FLAG_P(node, PM_REGULAR_EXPRESSION_FLAGS_MULTI_LINE)) {
581 flags |= ONIG_OPTION_MULTILINE;
584 if (PM_NODE_FLAG_P(node, PM_REGULAR_EXPRESSION_FLAGS_EXTENDED)) {
585 flags |= ONIG_OPTION_EXTEND;
591#undef RE_OPTION_ENCODING_SHIFT
592#undef RE_OPTION_ENCODING
593#undef ARG_ENCODING_FIXED
594#undef ARG_ENCODING_NONE
597#undef ENC_Windows_31J
603 if (PM_NODE_FLAG_P(node, PM_REGULAR_EXPRESSION_FLAGS_FORCED_BINARY_ENCODING) || PM_NODE_FLAG_P(node, PM_REGULAR_EXPRESSION_FLAGS_ASCII_8BIT)) {
604 return rb_ascii8bit_encoding();
606 else if (PM_NODE_FLAG_P(node, PM_REGULAR_EXPRESSION_FLAGS_UTF_8)) {
607 return rb_utf8_encoding();
609 else if (PM_NODE_FLAG_P(node, PM_REGULAR_EXPRESSION_FLAGS_EUC_JP)) {
610 return rb_enc_get_from_index(ENCINDEX_EUC_JP);
612 else if (PM_NODE_FLAG_P(node, PM_REGULAR_EXPRESSION_FLAGS_WINDOWS_31J)) {
613 return rb_enc_get_from_index(ENCINDEX_Windows_31J);
623 VALUE errinfo = rb_errinfo();
625 int32_t line_number = pm_node_line_number_cached(node, scope_node);
626 VALUE regexp = rb_reg_compile(
string, parse_regexp_flags(node), (
const char *) pm_string_source(pm_parser_filepath(scope_node->parser)), line_number);
629 VALUE message = rb_attr_get(rb_errinfo(), idMesg);
630 rb_set_errinfo(errinfo);
632 parse_regexp_error(iseq, line_number,
"%" PRIsVALUE, message);
642 rb_encoding *regexp_encoding = parse_regexp_encoding(scope_node, node);
643 if (regexp_encoding == NULL) regexp_encoding = scope_node->encoding;
645 VALUE string = rb_enc_str_new((
const char *) pm_string_source(unescaped), pm_string_length(unescaped), regexp_encoding);
647 return parse_regexp(iseq, scope_node, node,
string);
653 rb_encoding *explicit_regexp_encoding = parse_regexp_encoding(scope_node, node);
654 rb_encoding *implicit_regexp_encoding = explicit_regexp_encoding != NULL ? explicit_regexp_encoding : scope_node->encoding;
656 VALUE string = pm_static_literal_concat(iseq, parts, scope_node, implicit_regexp_encoding, explicit_regexp_encoding,
false);
657 return parse_regexp(iseq, scope_node, node,
string);
666 size_t parts_size = parts->
size;
667 bool interpolated =
false;
669 if (parts_size > 0) {
673 for (
size_t index = 0; index < parts_size; index++) {
676 if (PM_NODE_TYPE_P(part, PM_STRING_NODE)) {
680 if (implicit_regexp_encoding == NULL) {
681 string_value = parse_string_encoded(part, &string_node->
unescaped, scope_node->encoding);
684 string_value = parse_regexp_string_part(iseq, scope_node, (
const pm_node_t *) string_node, &string_node->unescaped, implicit_regexp_encoding, explicit_regexp_encoding);
687 if (
RTEST(current_string)) {
688 current_string =
rb_str_concat(current_string, string_value);
691 current_string = string_value;
692 if (index != 0) current_location = PM_NODE_END_LOCATION(part);
699 PM_NODE_TYPE_P(part, PM_EMBEDDED_STATEMENTS_NODE) &&
707 if (implicit_regexp_encoding == NULL) {
708 string_value = parse_string_encoded(part, &string_node->
unescaped, scope_node->encoding);
711 string_value = parse_regexp_string_part(iseq, scope_node, (
const pm_node_t *) string_node, &string_node->unescaped, implicit_regexp_encoding, explicit_regexp_encoding);
714 if (
RTEST(current_string)) {
715 current_string =
rb_str_concat(current_string, string_value);
718 current_string = string_value;
719 current_location = PM_NODE_START_LOCATION(part);
723 if (!
RTEST(current_string)) {
726 if (implicit_regexp_encoding != NULL) {
727 if (explicit_regexp_encoding != NULL) {
728 encoding = explicit_regexp_encoding;
730 else if (pm_parser_encoding_us_ascii(scope_node->parser)) {
731 encoding = rb_ascii8bit_encoding();
734 encoding = implicit_regexp_encoding;
738 encoding = scope_node->encoding;
741 if (parts_size == 1) {
742 current_string = rb_enc_str_new(NULL, 0, encoding);
746 if (
RTEST(current_string)) {
747 VALUE operand = rb_fstring(current_string);
748 PUSH_INSN1(ret, current_location, putobject, operand);
752 PM_COMPILE_NOT_POPPED(part);
755 PUSH_INSN(ret, current_location, dup);
758 const struct rb_callinfo *callinfo = new_callinfo(iseq, idTo_s, 0, VM_CALL_FCALL | VM_CALL_ARGS_SIMPLE, NULL, FALSE);
759 PUSH_INSN1(ret, current_location, objtostring, callinfo);
762 PUSH_INSN(ret, current_location, anytostring);
764 current_string =
Qnil;
770 if (
RTEST(current_string)) {
771 current_string = rb_fstring(current_string);
773 if (stack_size == 0) {
775 PUSH_INSN1(ret, current_location, putobject, current_string);
776 }
else if (mutable_result || interpolated) {
777 PUSH_INSN1(ret, current_location, dupstring, current_string);
779 PUSH_INSN1(ret, current_location, dupchilledstring, current_string);
782 PUSH_INSN1(ret, current_location, putobject, current_string);
785 current_string =
Qnil;
790 PUSH_INSN(ret, *node_location, putnil);
799 rb_encoding *explicit_regexp_encoding = parse_regexp_encoding(scope_node, node);
800 rb_encoding *implicit_regexp_encoding = explicit_regexp_encoding != NULL ? explicit_regexp_encoding : scope_node->encoding;
802 int length = pm_interpolated_node_compile(iseq, parts, node_location, ret, popped, scope_node, implicit_regexp_encoding, explicit_regexp_encoding,
false,
false);
803 PUSH_INSN2(ret, *node_location, toregexp,
INT2FIX(parse_regexp_flags(node) & 0xFF),
INT2FIX(length));
810 size_t length = pm_string_length(filepath);
814 return rb_enc_interned_str((
const char *) pm_string_source(filepath), length, filepath_encoding);
817 return rb_fstring_lit(
"<compiled>");
826pm_static_literal_string(
rb_iseq_t *iseq,
VALUE string,
int line_number)
828 if (ISEQ_COMPILE_DATA(iseq)->option->debug_frozen_string_literal ||
RTEST(
ruby_debug)) {
829 VALUE str = rb_str_with_debug_created_info(
string, rb_iseq_path(iseq), line_number);
834 return rb_fstring(
string);
848 RUBY_ASSERT(PM_NODE_FLAG_P(node, PM_NODE_FLAG_STATIC_LITERAL));
850 switch (PM_NODE_TYPE(node)) {
851 case PM_ARRAY_NODE: {
856 for (
size_t index = 0; index < elements->
size; index++) {
857 rb_ary_push(value, pm_static_literal_value(iseq, elements->
nodes[index], scope_node));
872 for (
size_t index = 0; index < elements->
size; index++) {
875 VALUE pair[2] = { pm_static_literal_value(iseq, cast->key, scope_node), pm_static_literal_value(iseq, cast->value, scope_node) };
886 case PM_IMAGINARY_NODE:
888 case PM_INTEGER_NODE:
890 case PM_INTERPOLATED_MATCH_LAST_LINE_NODE: {
892 return parse_regexp_concat(iseq, scope_node, (
const pm_node_t *) cast, &cast->parts);
894 case PM_INTERPOLATED_REGULAR_EXPRESSION_NODE: {
896 return parse_regexp_concat(iseq, scope_node, (
const pm_node_t *) cast, &cast->parts);
898 case PM_INTERPOLATED_STRING_NODE: {
900 int line_number = pm_node_line_number_cached(node, scope_node);
901 return pm_static_literal_string(iseq,
string, line_number);
903 case PM_INTERPOLATED_SYMBOL_NODE: {
905 VALUE string = pm_static_literal_concat(iseq, &cast->
parts, scope_node, NULL, NULL,
true);
907 return ID2SYM(rb_intern_str(
string));
909 case PM_MATCH_LAST_LINE_NODE: {
911 return parse_regexp_literal(iseq, scope_node, (
const pm_node_t *) cast, &cast->unescaped);
915 case PM_RATIONAL_NODE:
917 case PM_REGULAR_EXPRESSION_NODE: {
919 return parse_regexp_literal(iseq, scope_node, (
const pm_node_t *) cast, &cast->unescaped);
921 case PM_SOURCE_ENCODING_NODE:
922 return rb_enc_from_encoding(scope_node->encoding);
923 case PM_SOURCE_LINE_NODE:
924 return INT2FIX(pm_node_line_number_cached(node, scope_node));
925 case PM_STRING_NODE: {
927 return parse_static_literal_string(iseq, scope_node, node, &cast->
unescaped);
934 rb_bug(
"Don't have a literal value for node type %s", pm_node_type(PM_NODE_TYPE(node)));
949 .beg_pos = { .lineno = start_location.
line, .column = start_location.
column },
950 .end_pos = { .lineno = end_location.
line, .column = end_location.
column }
959#define PM_BRANCH_COVERAGE_P(iseq) (ISEQ_COVERAGE(iseq) && ISEQ_BRANCH_COVERAGE(iseq))
973 if (!then_label) then_label = label;
974 else if (!else_label) else_label = label;
976 pm_compile_branch_condition(iseq, seq, cond, then_label, else_label, scope_node);
978 if (LIST_INSN_SIZE_ONE(seq)) {
979 INSN *insn = (
INSN *) ELEM_FIRST_INSN(FIRST_ELEMENT(seq));
980 if (insn->insn_id == BIN(jump) && (
LABEL *)(insn->operands[0]) == label)
return;
984 PUSH_LABEL(seq, label);
996 if (PM_NODE_TYPE_P(node, PM_INTEGER_NODE)) {
997 PM_COMPILE_NOT_POPPED(node);
1000 PUSH_INSN1(ret, location, getglobal, operand);
1002 PUSH_SEND(ret, location, idEq,
INT2FIX(1));
1003 if (popped) PUSH_INSN(ret, location, pop);
1016 int again = !(flip_flop_node->
base.
flags & PM_RANGE_FLAGS_EXCLUDE_END);
1018 rb_num_t count = ISEQ_FLIP_CNT_INCREMENT(ISEQ_BODY(iseq)->local_iseq) + VM_SVAR_FLIPFLOP_START;
1021 PUSH_INSN2(ret, location, getspecial, key,
INT2FIX(0));
1022 PUSH_INSNL(ret, location, branchif, lend);
1024 if (flip_flop_node->
left) {
1025 pm_compile_flip_flop_bound(iseq, flip_flop_node->
left, ret, popped, scope_node);
1028 PUSH_INSN(ret, location, putnil);
1031 PUSH_INSNL(ret, location, branchunless, else_label);
1032 PUSH_INSN1(ret, location, putobject,
Qtrue);
1033 PUSH_INSN1(ret, location, setspecial, key);
1035 PUSH_INSNL(ret, location, jump, then_label);
1038 PUSH_LABEL(ret, lend);
1039 if (flip_flop_node->
right) {
1040 pm_compile_flip_flop_bound(iseq, flip_flop_node->
right, ret, popped, scope_node);
1043 PUSH_INSN(ret, location, putnil);
1046 PUSH_INSNL(ret, location, branchunless, then_label);
1047 PUSH_INSN1(ret, location, putobject,
Qfalse);
1048 PUSH_INSN1(ret, location, setspecial, key);
1049 PUSH_INSNL(ret, location, jump, then_label);
1060 switch (PM_NODE_TYPE(cond)) {
1063 pm_compile_logical(iseq, ret, cast->
left, NULL, else_label, scope_node);
1070 pm_compile_logical(iseq, ret, cast->
left, then_label, NULL, scope_node);
1077 PUSH_INSNL(ret, location, jump, else_label);
1080 case PM_IMAGINARY_NODE:
1081 case PM_INTEGER_NODE:
1082 case PM_LAMBDA_NODE:
1083 case PM_RATIONAL_NODE:
1084 case PM_REGULAR_EXPRESSION_NODE:
1085 case PM_STRING_NODE:
1086 case PM_SYMBOL_NODE:
1088 PUSH_INSNL(ret, location, jump, then_label);
1090 case PM_FLIP_FLOP_NODE:
1091 pm_compile_flip_flop((
const pm_flip_flop_node_t *) cond, else_label, then_label, iseq, location.
line, ret,
false, scope_node);
1093 case PM_DEFINED_NODE: {
1095 pm_compile_defined_expr(iseq, cast->
value, &location, ret,
false, scope_node,
true);
1099 DECL_ANCHOR(cond_seq);
1100 pm_compile_node(iseq, cond, cond_seq,
false, scope_node);
1102 if (LIST_INSN_SIZE_ONE(cond_seq)) {
1103 INSN *insn = (
INSN *) ELEM_FIRST_INSN(FIRST_ELEMENT(cond_seq));
1105 if (insn->insn_id == BIN(putobject)) {
1106 if (
RTEST(insn->operands[0])) {
1107 PUSH_INSNL(ret, location, jump, then_label);
1112 PUSH_INSNL(ret, location, jump, else_label);
1118 PUSH_SEQ(ret, cond_seq);
1123 PUSH_INSNL(ret, location, branchunless, else_label);
1124 PUSH_INSNL(ret, location, jump, then_label);
1134 LABEL *then_label = NEW_LABEL(location.
line);
1135 LABEL *else_label = NEW_LABEL(location.
line);
1136 LABEL *end_label = NULL;
1138 DECL_ANCHOR(cond_seq);
1139 pm_compile_branch_condition(iseq, cond_seq, predicate, then_label, else_label, scope_node);
1140 PUSH_SEQ(ret, cond_seq);
1145 if (then_label->refcnt && else_label->refcnt && PM_BRANCH_COVERAGE_P(iseq)) {
1146 conditional_location = pm_code_location(scope_node, node);
1147 branches = decl_branch_base(iseq, (
int) node->
node_id, &conditional_location,
type == PM_IF_NODE ?
"if" :
"unless");
1150 if (then_label->refcnt) {
1151 PUSH_LABEL(ret, then_label);
1153 DECL_ANCHOR(then_seq);
1155 if (statements != NULL) {
1156 pm_compile_node(iseq, (
const pm_node_t *) statements, then_seq, popped, scope_node);
1159 PUSH_SYNTHETIC_PUTNIL(then_seq, iseq);
1162 if (else_label->refcnt) {
1164 if (PM_BRANCH_COVERAGE_P(iseq)) {
1167 if (statements != NULL) {
1168 branch_location = pm_code_location(scope_node, (
const pm_node_t *) statements);
1169 }
else if (
type == PM_IF_NODE) {
1172 .beg_pos = { .lineno = predicate_end.
line, .column = predicate_end.
column },
1173 .end_pos = { .lineno = predicate_end.
line, .column = predicate_end.
column }
1176 branch_location = conditional_location;
1179 add_trace_branch_coverage(iseq, ret, &branch_location, branch_location.beg_pos.column, 0,
type == PM_IF_NODE ?
"then" :
"else", branches);
1182 end_label = NEW_LABEL(location.
line);
1183 PUSH_INSNL(then_seq, location, jump, end_label);
1184 if (!popped) PUSH_INSN(then_seq, location, pop);
1187 PUSH_SEQ(ret, then_seq);
1190 if (else_label->refcnt) {
1191 PUSH_LABEL(ret, else_label);
1193 DECL_ANCHOR(else_seq);
1195 if (subsequent != NULL) {
1196 pm_compile_node(iseq, subsequent, else_seq, popped, scope_node);
1199 PUSH_SYNTHETIC_PUTNIL(else_seq, iseq);
1203 if (then_label->refcnt && PM_BRANCH_COVERAGE_P(iseq)) {
1206 if (subsequent == NULL) {
1207 branch_location = conditional_location;
1208 }
else if (PM_NODE_TYPE_P(subsequent, PM_ELSE_NODE)) {
1212 branch_location = pm_code_location(scope_node, (
const pm_node_t *) subsequent);
1215 add_trace_branch_coverage(iseq, ret, &branch_location, branch_location.beg_pos.column, 1,
type == PM_IF_NODE ?
"else" :
"then", branches);
1218 PUSH_SEQ(ret, else_seq);
1222 PUSH_LABEL(ret, end_label);
1236 LABEL *prev_start_label = ISEQ_COMPILE_DATA(iseq)->start_label;
1237 LABEL *prev_end_label = ISEQ_COMPILE_DATA(iseq)->end_label;
1238 LABEL *prev_redo_label = ISEQ_COMPILE_DATA(iseq)->redo_label;
1240 LABEL *next_label = ISEQ_COMPILE_DATA(iseq)->start_label = NEW_LABEL(location.
line);
1241 LABEL *redo_label = ISEQ_COMPILE_DATA(iseq)->redo_label = NEW_LABEL(location.
line);
1242 LABEL *break_label = ISEQ_COMPILE_DATA(iseq)->end_label = NEW_LABEL(location.
line);
1243 LABEL *end_label = NEW_LABEL(location.
line);
1244 LABEL *adjust_label = NEW_LABEL(location.
line);
1246 LABEL *next_catch_label = NEW_LABEL(location.
line);
1247 LABEL *tmp_label = NULL;
1253 push_ensure_entry(iseq, &enl, NULL, NULL);
1256 if (flags & PM_LOOP_FLAGS_BEGIN_MODIFIER) {
1257 tmp_label = NEW_LABEL(location.
line);
1258 PUSH_INSNL(ret, location, jump, tmp_label);
1262 PUSH_INSNL(ret, location, jump, next_label);
1265 PUSH_LABEL(ret, adjust_label);
1266 PUSH_INSN(ret, location, putnil);
1267 PUSH_LABEL(ret, next_catch_label);
1268 PUSH_INSN(ret, location, pop);
1269 PUSH_INSNL(ret, location, jump, next_label);
1270 if (tmp_label) PUSH_LABEL(ret, tmp_label);
1272 PUSH_LABEL(ret, redo_label);
1275 if (PM_BRANCH_COVERAGE_P(iseq)) {
1277 VALUE branches = decl_branch_base(iseq, (
int) node->
node_id, &loop_location,
type == PM_WHILE_NODE ?
"while" :
"until");
1279 rb_code_location_t branch_location = statements != NULL ? pm_code_location(scope_node, (
const pm_node_t *) statements) : loop_location;
1280 add_trace_branch_coverage(iseq, ret, &branch_location, branch_location.beg_pos.column, 0,
"body", branches);
1283 if (statements != NULL) PM_COMPILE_POPPED((
const pm_node_t *) statements);
1284 PUSH_LABEL(ret, next_label);
1286 if (
type == PM_WHILE_NODE) {
1287 pm_compile_branch_condition(iseq, ret, predicate, redo_label, end_label, scope_node);
1289 else if (
type == PM_UNTIL_NODE) {
1290 pm_compile_branch_condition(iseq, ret, predicate, end_label, redo_label, scope_node);
1293 PUSH_LABEL(ret, end_label);
1294 PUSH_ADJUST_RESTORE(ret, adjust_label);
1295 PUSH_INSN(ret, location, putnil);
1297 PUSH_LABEL(ret, break_label);
1298 if (popped) PUSH_INSN(ret, location, pop);
1300 PUSH_CATCH_ENTRY(CATCH_TYPE_BREAK, redo_label, break_label, NULL, break_label);
1301 PUSH_CATCH_ENTRY(CATCH_TYPE_NEXT, redo_label, break_label, NULL, next_catch_label);
1302 PUSH_CATCH_ENTRY(CATCH_TYPE_REDO, redo_label, break_label, NULL, ISEQ_COMPILE_DATA(iseq)->redo_label);
1304 ISEQ_COMPILE_DATA(iseq)->start_label = prev_start_label;
1305 ISEQ_COMPILE_DATA(iseq)->end_label = prev_end_label;
1306 ISEQ_COMPILE_DATA(iseq)->redo_label = prev_redo_label;
1307 ISEQ_COMPILE_DATA(iseq)->ensure_node_stack = ISEQ_COMPILE_DATA(iseq)->ensure_node_stack->prev;
1322 for (level = 0; level < start_depth; level++) {
1323 scope_node = scope_node->previous;
1326 while (!pm_index_lookup_table_lookup(&scope_node->
index_lookup_table, constant_id, &local_index))
1330 if (scope_node->previous) {
1331 scope_node = scope_node->previous;
1336 rb_bug(
"Local with constant_id %u does not exist", (
unsigned int) constant_id);
1340 lindex.level = level;
1341 lindex.index = scope_node->local_table_for_iseq_size - (int) local_index;
1354 RUBY_ASSERT(constant_id >= 1 && constant_id <= pm_parser_constants_size(scope_node->parser));
1355 return scope_node->constants[constant_id - 1];
1361 debugs(
"[new_child_iseq]> ---------------------------------------\n");
1362 int isolated_depth = ISEQ_COMPILE_DATA(iseq)->isolated_depth;
1363 rb_iseq_t *ret_iseq = pm_iseq_build(node, name,
1364 rb_iseq_path(iseq), rb_iseq_realpath(iseq),
1366 isolated_depth ? isolated_depth + 1 : 0,
1367 type, ISEQ_COMPILE_DATA(iseq)->option);
1368 debugs(
"[new_child_iseq]< ---------------------------------------\n");
1375 switch (PM_NODE_TYPE(node)) {
1376 case PM_CONSTANT_READ_NODE:
1378 case PM_CONSTANT_PATH_NODE:
1381 if (!parent)
return TRUE;
1382 return pm_cpath_const_p(parent);
1392 if (PM_NODE_TYPE_P(node, PM_CONSTANT_PATH_NODE)) {
1398 int flags = VM_DEFINECLASS_FLAG_SCOPED;
1399 if (!pm_cpath_const_p(parent)) {
1400 flags |= VM_DEFINECLASS_FLAG_DYNAMIC_CREF;
1406 PUSH_INSN1(ret, *node_location, putobject,
rb_cObject);
1407 return VM_DEFINECLASS_FLAG_SCOPED;
1412 PUSH_INSN1(ret, *node_location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_CONST_BASE));
1422pm_compile_call_and_or_write_node(
rb_iseq_t *iseq,
bool and_node,
const pm_node_t *receiver,
const pm_node_t *value,
pm_constant_id_t write_name,
pm_constant_id_t read_name,
bool safe_nav,
const pm_node_location_t *node_location,
LINK_ANCHOR *
const ret,
bool popped,
pm_scope_node_t *scope_node)
1426 LABEL *lcfin = NEW_LABEL(location.
line);
1427 LABEL *lskip = NULL;
1429 int flag = PM_NODE_TYPE_P(receiver, PM_SELF_NODE) ? VM_CALL_FCALL : 0;
1430 ID id_read_name = pm_constant_id_lookup(scope_node, read_name);
1432 PM_COMPILE_NOT_POPPED(receiver);
1434 lskip = NEW_LABEL(location.
line);
1435 PUSH_INSN(ret, location, dup);
1436 PUSH_INSNL(ret, location, branchnil, lskip);
1439 PUSH_INSN(ret, location, dup);
1440 PUSH_SEND_WITH_FLAG(ret, location, id_read_name,
INT2FIX(0),
INT2FIX(flag));
1441 if (!popped) PUSH_INSN(ret, location, dup);
1444 PUSH_INSNL(ret, location, branchunless, lcfin);
1447 PUSH_INSNL(ret, location, branchif, lcfin);
1450 if (!popped) PUSH_INSN(ret, location, pop);
1451 PM_COMPILE_NOT_POPPED(value);
1454 PUSH_INSN(ret, location, swap);
1455 PUSH_INSN1(ret, location, topn,
INT2FIX(1));
1458 ID id_write_name = pm_constant_id_lookup(scope_node, write_name);
1459 PUSH_SEND_WITH_FLAG(ret, location, id_write_name,
INT2FIX(1),
INT2FIX(flag));
1460 PUSH_INSNL(ret, location, jump, lfin);
1462 PUSH_LABEL(ret, lcfin);
1463 if (!popped) PUSH_INSN(ret, location, swap);
1465 PUSH_LABEL(ret, lfin);
1467 if (lskip && popped) PUSH_LABEL(ret, lskip);
1468 PUSH_INSN(ret, location, pop);
1469 if (lskip && !popped) PUSH_LABEL(ret, lskip);
1488 const int max_stack_length = 0x100;
1489 const unsigned int min_tmp_hash_length = 0x800;
1491 int stack_length = 0;
1492 bool first_chunk =
true;
1493 bool owned_hash =
false;
1499 bool static_literal =
false;
1501 DECL_ANCHOR(anchor);
1504#define FLUSH_CHUNK \
1505 if (stack_length) { \
1506 if (first_chunk) { \
1507 PUSH_SEQ(ret, anchor); \
1508 PUSH_INSN1(ret, location, newhash, INT2FIX(stack_length)); \
1509 first_chunk = false; \
1512 PUSH_INSN1(ret, location, putspecialobject, INT2FIX(VM_SPECIAL_OBJECT_VMCORE)); \
1513 PUSH_INSN(ret, location, swap); \
1514 PUSH_SEQ(ret, anchor); \
1516 PUSH_SEND(ret, location, id_core_hash_merge_bang_ptr, INT2FIX(stack_length + 1)); \
1519 PUSH_SEND(ret, location, id_core_hash_merge_ptr, INT2FIX(stack_length + 1)); \
1520 owned_hash = true; \
1523 INIT_ANCHOR(anchor); \
1527 for (
size_t index = 0; index < elements->
size; index++) {
1530 switch (PM_NODE_TYPE(element)) {
1531 case PM_ASSOC_NODE: {
1534 (shareability == 0) &&
1535 PM_NODE_FLAG_P(element, PM_NODE_FLAG_STATIC_LITERAL) && (
1536 (!static_literal && ((index + min_tmp_hash_length) < elements->
size)) ||
1537 (first_chunk && stack_length == 0)
1542 while (index + count < elements->size && PM_NODE_FLAG_P(elements->
nodes[index + count], PM_NODE_FLAG_STATIC_LITERAL)) count++;
1544 bool first_element = first_chunk && stack_length == 0;
1546 if (first_element || count >= min_tmp_hash_length) {
1552 for (
size_t tmp_end = index + count; index < tmp_end; index++) {
1556 pm_static_literal_value(iseq, assoc->key, scope_node),
1557 pm_static_literal_value(iseq, assoc->value, scope_node)
1572 if (count == elements->
size) {
1574 PUSH_INSN1(ret, location, duphash, hash);
1580 first_chunk =
false;
1583 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
1584 PUSH_INSN(ret, location, swap);
1585 PUSH_INSN1(ret, location, putobject, hash);
1586 PUSH_SEND(ret, location, id_core_hash_merge_kwd,
INT2FIX(2));
1592 static_literal =
true;
1596 static_literal =
false;
1601 if (shareability == 0) {
1602 pm_compile_node(iseq, element, anchor,
false, scope_node);
1606 pm_compile_shareable_constant_value(iseq, assoc->
key, shareability, path, ret, scope_node,
false);
1607 pm_compile_shareable_constant_value(iseq, assoc->
value, shareability, path, ret, scope_node,
false);
1610 if ((stack_length += 2) >= max_stack_length) FLUSH_CHUNK;
1613 case PM_ASSOC_SPLAT_NODE: {
1617 bool empty_hash = assoc_splat->
value != NULL && (
1618 (PM_NODE_TYPE_P(assoc_splat->
value, PM_HASH_NODE) && ((
const pm_hash_node_t *) assoc_splat->
value)->elements.size == 0) ||
1619 PM_NODE_TYPE_P(assoc_splat->
value, PM_NIL_NODE)
1622 bool first_element = first_chunk && stack_length == 0;
1623 bool last_element = index == elements->
size - 1;
1624 bool only_element = first_element && last_element;
1631 PUSH_INSN(ret, location, putnil);
1637 if (shareability == 0) {
1638 PM_COMPILE_NOT_POPPED(element);
1641 pm_compile_shareable_constant_value(iseq, element, shareability, path, ret, scope_node,
false);
1649 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
1650 if (shareability == 0) {
1651 PM_COMPILE_NOT_POPPED(element);
1654 pm_compile_shareable_constant_value(iseq, element, shareability, path, ret, scope_node,
false);
1656 PUSH_SEND(ret, location, id_core_hash_coerce,
INT2FIX(1));
1660 if (!first_element) {
1661 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
1662 PUSH_INSN(ret, location, swap);
1665 if (shareability == 0) {
1666 PM_COMPILE_NOT_POPPED(element);
1669 pm_compile_shareable_constant_value(iseq, element, shareability, path, ret, scope_node,
false);
1672 if (!first_element) {
1674 PUSH_SEND(ret, location, id_core_hash_merge_bang_kwd,
INT2FIX(2));
1677 PUSH_SEND(ret, location, id_core_hash_merge_kwd,
INT2FIX(2));
1683 first_chunk =
false;
1684 static_literal =
false;
1688 RUBY_ASSERT(
"Invalid node type for hash" &&
false);
1697#define SPLATARRAY_FALSE 0
1698#define SPLATARRAY_TRUE 1
1699#define DUP_SINGLE_KW_SPLAT 2
1708 bool has_splat =
false;
1709 bool has_keyword_splat =
false;
1711 if (arguments_node == NULL) {
1712 if (*flags & VM_CALL_FCALL) {
1713 *flags |= VM_CALL_VCALL;
1718 has_keyword_splat = PM_NODE_FLAG_P(arguments_node, PM_ARGUMENTS_NODE_FLAGS_CONTAINS_KEYWORD_SPLAT);
1722 int post_splat_counter = 0;
1726 switch (PM_NODE_TYPE(argument)) {
1728 case PM_KEYWORD_HASH_NODE: {
1732 if (has_keyword_splat || has_splat) {
1733 *flags |= VM_CALL_KW_SPLAT;
1734 has_keyword_splat =
true;
1736 if (elements->
size > 1 || !(elements->
size == 1 && PM_NODE_TYPE_P(elements->
nodes[0], PM_ASSOC_SPLAT_NODE))) {
1740 *flags |= VM_CALL_KW_SPLAT_MUT;
1741 pm_compile_hash_elements(iseq, argument, elements, 0,
Qundef,
true, ret, scope_node);
1743 else if (*dup_rest & DUP_SINGLE_KW_SPLAT) {
1744 *flags |= VM_CALL_KW_SPLAT_MUT;
1745 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
1746 PUSH_INSN1(ret, location, newhash,
INT2FIX(0));
1747 pm_compile_hash_elements(iseq, argument, elements, 0,
Qundef,
true, ret, scope_node);
1748 PUSH_SEND(ret, location, id_core_hash_merge_kwd,
INT2FIX(2));
1751 pm_compile_hash_elements(iseq, argument, elements, 0,
Qundef,
true, ret, scope_node);
1757 if (PM_NODE_FLAG_P(keyword_arg, PM_KEYWORD_HASH_NODE_FLAGS_SYMBOL_KEYS)) {
1762 VALUE stored_indices = rb_hash_new();
1766 for (
size_t element_index = 0; element_index < elements->
size; element_index++) {
1771 VALUE keyword = pm_static_literal_value(iseq, assoc->key, scope_node);
1772 VALUE stored_index = rb_hash_aref(stored_indices, keyword);
1777 if (!
NIL_P(stored_index)) {
1785 rb_hash_aset(stored_indices, keyword,
ULONG2NUM(element_index));
1790 if (size > VM_CALL_KW_LEN_MAX) {
1791 COMPILE_ERROR(iseq, node_location->
line,
"too many keyword arguments (%d, maximum is %d)",
1792 (
int) size, (
int) VM_CALL_KW_LEN_MAX);
1796 *flags |= VM_CALL_KWARG;
1798 VALUE *keywords = (*kw_arg)->keywords;
1799 (*kw_arg)->references = 0;
1800 (*kw_arg)->keyword_len = (int) size;
1802 size_t keyword_index = 0;
1803 for (
size_t element_index = 0; element_index < elements->
size; element_index++) {
1808 keywords[keyword_index++] = pm_static_literal_value(iseq, assoc->key, scope_node);
1812 PM_COMPILE(assoc->value);
1821 *flags |= VM_CALL_KW_SPLAT;
1823 size_t size = elements->
size;
1828 *flags |= VM_CALL_KW_SPLAT_MUT;
1831 for (
size_t element_index = 0; element_index < size; element_index++) {
1833 PM_COMPILE_NOT_POPPED(assoc->key);
1834 PM_COMPILE_NOT_POPPED(assoc->value);
1837 PUSH_INSN1(ret, location, newhash,
INT2FIX(size * 2));
1842 case PM_SPLAT_NODE: {
1843 *flags |= VM_CALL_ARGS_SPLAT;
1847 PM_COMPILE_NOT_POPPED(splat_node->
expression);
1850 pm_local_index_t index = pm_lookup_local_index(iseq, scope_node, PM_CONSTANT_MULT, 0);
1851 PUSH_GETLOCAL(ret, location, index.index, index.level);
1854 bool first_splat = !has_splat;
1862 if (index + 1 < arguments->
size || has_regular_blockarg) {
1863 PUSH_INSN1(ret, location, splatarray, (*dup_rest & SPLATARRAY_TRUE) ?
Qtrue :
Qfalse);
1864 if (*dup_rest & SPLATARRAY_TRUE) *dup_rest &= ~SPLATARRAY_TRUE;
1872 PUSH_INSN1(ret, location, splatarray,
Qfalse);
1882 PUSH_INSN(ret, location, concattoarray);
1886 post_splat_counter = 0;
1890 case PM_FORWARDING_ARGUMENTS_NODE: {
1891 iseq_set_use_block(ISEQ_BODY(iseq)->local_iseq);
1893 if (ISEQ_BODY(ISEQ_BODY(iseq)->local_iseq)->param.flags.forwardable) {
1894 *flags |= VM_CALL_FORWARDING;
1896 pm_local_index_t mult_local = pm_lookup_local_index(iseq, scope_node, PM_CONSTANT_DOT3, 0);
1897 PUSH_GETLOCAL(ret, location, mult_local.index, mult_local.level);
1909 *flags |= VM_CALL_ARGS_SPLAT | VM_CALL_ARGS_BLOCKARG | VM_CALL_KW_SPLAT;
1916 pm_local_index_t mult_local = pm_lookup_local_index(iseq, scope_node, PM_CONSTANT_MULT, 0);
1917 PUSH_GETLOCAL(ret, location, mult_local.index, mult_local.level);
1921 PUSH_INSN(ret, location, concattoarray);
1923 PUSH_INSN1(ret, location, splatarray,
Qfalse);
1927 pm_local_index_t pow_local = pm_lookup_local_index(iseq, scope_node, PM_CONSTANT_POW, 0);
1928 PUSH_GETLOCAL(ret, location, pow_local.index, pow_local.level);
1931 pm_local_index_t and_local = pm_lookup_local_index(iseq, scope_node, PM_CONSTANT_AND, 0);
1932 PUSH_INSN2(ret, location, getblockparamproxy,
INT2FIX(and_local.index + VM_ENV_DATA_SIZE - 1),
INT2FIX(and_local.level));
1937 post_splat_counter++;
1938 PM_COMPILE_NOT_POPPED(argument);
1962 if (index == arguments->
size - 1) {
1964 PUSH_INSN1(ret, location, pushtoarray,
INT2FIX(post_splat_counter));
1969 switch (PM_NODE_TYPE(next_arg)) {
1971 case PM_KEYWORD_HASH_NODE: {
1972 PUSH_INSN1(ret, location, newarray,
INT2FIX(post_splat_counter));
1973 PUSH_INSN(ret, location, concatarray);
1976 case PM_SPLAT_NODE: {
1977 PUSH_INSN1(ret, location, newarray,
INT2FIX(post_splat_counter));
1978 PUSH_INSN(ret, location, concatarray);
1981 case PM_FORWARDING_ARGUMENTS_NODE: {
1982 PUSH_INSN1(ret, location, pushtoarray,
INT2FIX(post_splat_counter));
1998 if (has_splat) orig_argc++;
1999 if (has_keyword_splat) orig_argc++;
2008pm_setup_args_dup_rest_p(
const pm_node_t *node)
2010 switch (PM_NODE_TYPE(node)) {
2011 case PM_BACK_REFERENCE_READ_NODE:
2012 case PM_CLASS_VARIABLE_READ_NODE:
2013 case PM_CONSTANT_READ_NODE:
2016 case PM_GLOBAL_VARIABLE_READ_NODE:
2017 case PM_IMAGINARY_NODE:
2018 case PM_INSTANCE_VARIABLE_READ_NODE:
2019 case PM_INTEGER_NODE:
2020 case PM_LAMBDA_NODE:
2021 case PM_LOCAL_VARIABLE_READ_NODE:
2023 case PM_NUMBERED_REFERENCE_READ_NODE:
2024 case PM_RATIONAL_NODE:
2025 case PM_REGULAR_EXPRESSION_NODE:
2027 case PM_STRING_NODE:
2028 case PM_SYMBOL_NODE:
2031 case PM_CONSTANT_PATH_NODE: {
2033 if (cast->
parent != NULL) {
2034 return pm_setup_args_dup_rest_p(cast->
parent);
2038 case PM_IMPLICIT_NODE:
2040 case PM_ARRAY_NODE: {
2042 for (
size_t index = 0; index < cast->
elements.
size; index++) {
2043 if (pm_setup_args_dup_rest_p(cast->
elements.
nodes[index])) {
2060 int dup_rest = SPLATARRAY_TRUE;
2063 size_t arguments_size;
2068 arguments_node != NULL &&
2069 (arguments = &arguments_node->
arguments, arguments_size = arguments->
size) >= 2 &&
2070 PM_NODE_FLAG_P(arguments_node, PM_ARGUMENTS_NODE_FLAGS_CONTAINS_SPLAT) &&
2071 !PM_NODE_FLAG_P(arguments_node, PM_ARGUMENTS_NODE_FLAGS_CONTAINS_MULTIPLE_SPLATS) &&
2072 PM_NODE_TYPE_P(arguments->
nodes[arguments_size - 1], PM_KEYWORD_HASH_NODE)
2077 dup_rest = SPLATARRAY_FALSE;
2082 for (
size_t index = 0; dup_rest == SPLATARRAY_FALSE && index < elements->
size; index++) {
2085 switch (PM_NODE_TYPE(element)) {
2086 case PM_ASSOC_NODE: {
2088 if (pm_setup_args_dup_rest_p(assoc->
key) || pm_setup_args_dup_rest_p(assoc->
value)) dup_rest = SPLATARRAY_TRUE;
2091 case PM_ASSOC_SPLAT_NODE: {
2093 if (assoc->
value != NULL && pm_setup_args_dup_rest_p(assoc->
value)) dup_rest = SPLATARRAY_TRUE;
2102 int initial_dup_rest = dup_rest;
2105 if (block && PM_NODE_TYPE_P(block, PM_BLOCK_ARGUMENT_NODE)) {
2109 bool regular_block_arg =
true;
2112 if (block_expr && pm_setup_args_dup_rest_p(block_expr)) {
2113 dup_rest = SPLATARRAY_TRUE | DUP_SINGLE_KW_SPLAT;
2114 initial_dup_rest = dup_rest;
2117 DECL_ANCHOR(block_arg);
2118 pm_compile_node(iseq, block, block_arg,
false, scope_node);
2120 *flags |= VM_CALL_ARGS_BLOCKARG;
2122 if (LIST_INSN_SIZE_ONE(block_arg)) {
2124 if (IS_INSN(elem)) {
2126 if (iobj->insn_id == BIN(getblockparam)) {
2127 iobj->insn_id = BIN(getblockparamproxy);
2134 regular_block_arg =
false;
2138 argc = pm_setup_args_core(arguments_node, block, flags, regular_block_arg, kw_arg, &dup_rest, iseq, ret, scope_node, node_location);
2139 PUSH_SEQ(ret, block_arg);
2142 argc = pm_setup_args_core(arguments_node, block, flags,
false, kw_arg, &dup_rest, iseq, ret, scope_node, node_location);
2149 if (*flags & VM_CALL_ARGS_SPLAT && dup_rest != initial_dup_rest) {
2150 *flags |= VM_CALL_ARGS_SPLAT_MUT;
2170 if (!popped) PUSH_INSN(ret, location, putnil);
2172 PM_COMPILE_NOT_POPPED(node->
receiver);
2174 int boff = (node->
block == NULL ? 0 : 1);
2175 int flag = PM_NODE_TYPE_P(node->
receiver, PM_SELF_NODE) ? VM_CALL_FCALL : 0;
2177 int argc = pm_setup_args(node->
arguments, (
const pm_node_t *) node->
block, &flag, &keywords, iseq, ret, scope_node, node_location);
2179 if ((argc > 0 || boff) && (flag & VM_CALL_KW_SPLAT)) {
2181 PUSH_INSN(ret, location, splatkw);
2184 PUSH_INSN(ret, location, dup);
2185 PUSH_INSN(ret, location, splatkw);
2186 PUSH_INSN(ret, location, pop);
2190 int dup_argn = argc + 1 + boff;
2191 int keyword_len = 0;
2194 keyword_len = keywords->keyword_len;
2195 dup_argn += keyword_len;
2198 PUSH_INSN1(ret, location, dupn,
INT2FIX(dup_argn));
2199 PUSH_SEND_R(ret, location, idAREF,
INT2FIX(argc), NULL,
INT2FIX(flag & ~(VM_CALL_ARGS_SPLAT_MUT | VM_CALL_KW_SPLAT_MUT)), keywords);
2200 PM_COMPILE_NOT_POPPED(node->
value);
2203 PUSH_SEND(ret, location, id_operator,
INT2FIX(1));
2206 PUSH_INSN1(ret, location, setn,
INT2FIX(dup_argn + 1));
2208 if (flag & VM_CALL_ARGS_SPLAT) {
2209 if (flag & VM_CALL_KW_SPLAT) {
2210 PUSH_INSN1(ret, location, topn,
INT2FIX(2 + boff));
2212 if (!(flag & VM_CALL_ARGS_SPLAT_MUT)) {
2213 PUSH_INSN1(ret, location, splatarray,
Qtrue);
2214 flag |= VM_CALL_ARGS_SPLAT_MUT;
2217 PUSH_INSN(ret, location, swap);
2218 PUSH_INSN1(ret, location, pushtoarray,
INT2FIX(1));
2219 PUSH_INSN1(ret, location, setn,
INT2FIX(2 + boff));
2220 PUSH_INSN(ret, location, pop);
2224 PUSH_INSN1(ret, location, dupn,
INT2FIX(3));
2225 PUSH_INSN(ret, location, swap);
2226 PUSH_INSN(ret, location, pop);
2228 if (!(flag & VM_CALL_ARGS_SPLAT_MUT)) {
2229 PUSH_INSN(ret, location, swap);
2230 PUSH_INSN1(ret, location, splatarray,
Qtrue);
2231 PUSH_INSN(ret, location, swap);
2232 flag |= VM_CALL_ARGS_SPLAT_MUT;
2234 PUSH_INSN1(ret, location, pushtoarray,
INT2FIX(1));
2236 PUSH_INSN1(ret, location, setn,
INT2FIX(3));
2237 PUSH_INSN(ret, location, pop);
2238 PUSH_INSN(ret, location, pop);
2242 PUSH_SEND_R(ret, location, idASET,
INT2FIX(argc), NULL,
INT2FIX(flag), keywords);
2244 else if (flag & VM_CALL_KW_SPLAT) {
2246 PUSH_INSN1(ret, location, topn,
INT2FIX(2));
2247 PUSH_INSN(ret, location, swap);
2248 PUSH_INSN1(ret, location, setn,
INT2FIX(3));
2249 PUSH_INSN(ret, location, pop);
2251 PUSH_INSN(ret, location, swap);
2252 PUSH_SEND_R(ret, location, idASET,
INT2FIX(argc + 1), NULL,
INT2FIX(flag), keywords);
2254 else if (keyword_len) {
2255 PUSH_INSN(ret, location, dup);
2256 PUSH_INSN1(ret, location, opt_reverse,
INT2FIX(keyword_len + boff + 2));
2257 PUSH_INSN1(ret, location, opt_reverse,
INT2FIX(keyword_len + boff + 1));
2258 PUSH_INSN(ret, location, pop);
2259 PUSH_SEND_R(ret, location, idASET,
INT2FIX(argc + 1), NULL,
INT2FIX(flag), keywords);
2263 PUSH_INSN(ret, location, swap);
2265 PUSH_SEND_R(ret, location, idASET,
INT2FIX(argc + 1), NULL,
INT2FIX(flag), keywords);
2268 PUSH_INSN(ret, location, pop);
2287 if (!popped) PUSH_INSN(ret, location, putnil);
2288 PM_COMPILE_NOT_POPPED(receiver);
2290 int boff = (block == NULL ? 0 : 1);
2291 int flag = PM_NODE_TYPE_P(receiver, PM_SELF_NODE) ? VM_CALL_FCALL : 0;
2293 int argc = pm_setup_args(arguments, (
const pm_node_t *) block, &flag, &keywords, iseq, ret, scope_node, node_location);
2295 if ((argc > 0 || boff) && (flag & VM_CALL_KW_SPLAT)) {
2297 PUSH_INSN(ret, location, splatkw);
2300 PUSH_INSN(ret, location, dup);
2301 PUSH_INSN(ret, location, splatkw);
2302 PUSH_INSN(ret, location, pop);
2306 int dup_argn = argc + 1 + boff;
2307 int keyword_len = 0;
2310 keyword_len = keywords->keyword_len;
2311 dup_argn += keyword_len;
2314 PUSH_INSN1(ret, location, dupn,
INT2FIX(dup_argn));
2315 PUSH_SEND_R(ret, location, idAREF,
INT2FIX(argc), NULL,
INT2FIX(flag & ~(VM_CALL_ARGS_SPLAT_MUT | VM_CALL_KW_SPLAT_MUT)), keywords);
2317 LABEL *label = NEW_LABEL(location.
line);
2320 PUSH_INSN(ret, location, dup);
2321 if (PM_NODE_TYPE_P(node, PM_INDEX_AND_WRITE_NODE)) {
2322 PUSH_INSNL(ret, location, branchunless, label);
2325 PUSH_INSNL(ret, location, branchif, label);
2328 PUSH_INSN(ret, location, pop);
2329 PM_COMPILE_NOT_POPPED(value);
2332 PUSH_INSN1(ret, location, setn,
INT2FIX(dup_argn + 1));
2335 if (flag & VM_CALL_ARGS_SPLAT) {
2336 if (flag & VM_CALL_KW_SPLAT) {
2337 PUSH_INSN1(ret, location, topn,
INT2FIX(2 + boff));
2338 if (!(flag & VM_CALL_ARGS_SPLAT_MUT)) {
2339 PUSH_INSN1(ret, location, splatarray,
Qtrue);
2340 flag |= VM_CALL_ARGS_SPLAT_MUT;
2343 PUSH_INSN(ret, location, swap);
2344 PUSH_INSN1(ret, location, pushtoarray,
INT2FIX(1));
2345 PUSH_INSN1(ret, location, setn,
INT2FIX(2 + boff));
2346 PUSH_INSN(ret, location, pop);
2350 PUSH_INSN1(ret, location, dupn,
INT2FIX(3));
2351 PUSH_INSN(ret, location, swap);
2352 PUSH_INSN(ret, location, pop);
2354 if (!(flag & VM_CALL_ARGS_SPLAT_MUT)) {
2355 PUSH_INSN(ret, location, swap);
2356 PUSH_INSN1(ret, location, splatarray,
Qtrue);
2357 PUSH_INSN(ret, location, swap);
2358 flag |= VM_CALL_ARGS_SPLAT_MUT;
2360 PUSH_INSN1(ret, location, pushtoarray,
INT2FIX(1));
2362 PUSH_INSN1(ret, location, setn,
INT2FIX(3));
2363 PUSH_INSN(ret, location, pop);
2364 PUSH_INSN(ret, location, pop);
2368 PUSH_SEND_R(ret, location, idASET,
INT2FIX(argc), NULL,
INT2FIX(flag), keywords);
2370 else if (flag & VM_CALL_KW_SPLAT) {
2372 PUSH_INSN1(ret, location, topn,
INT2FIX(2));
2373 PUSH_INSN(ret, location, swap);
2374 PUSH_INSN1(ret, location, setn,
INT2FIX(3));
2375 PUSH_INSN(ret, location, pop);
2378 PUSH_INSN(ret, location, swap);
2379 PUSH_SEND_R(ret, location, idASET,
INT2FIX(argc + 1), NULL,
INT2FIX(flag), keywords);
2381 else if (keyword_len) {
2382 PUSH_INSN1(ret, location, opt_reverse,
INT2FIX(keyword_len + boff + 1));
2383 PUSH_INSN1(ret, location, opt_reverse,
INT2FIX(keyword_len + boff + 0));
2384 PUSH_SEND_R(ret, location, idASET,
INT2FIX(argc + 1), NULL,
INT2FIX(flag), keywords);
2388 PUSH_INSN(ret, location, swap);
2390 PUSH_SEND_R(ret, location, idASET,
INT2FIX(argc + 1), NULL,
INT2FIX(flag), keywords);
2393 PUSH_INSN(ret, location, pop);
2394 PUSH_INSNL(ret, location, jump, lfin);
2395 PUSH_LABEL(ret, label);
2397 PUSH_INSN1(ret, location, setn,
INT2FIX(dup_argn + 1));
2399 PUSH_INSN1(ret, location, adjuststack,
INT2FIX(dup_argn + 1));
2400 PUSH_LABEL(ret, lfin);
2409#define PM_PATTERN_BASE_INDEX_OFFSET_DECONSTRUCTED_CACHE 0
2410#define PM_PATTERN_BASE_INDEX_OFFSET_ERROR_STRING 1
2411#define PM_PATTERN_BASE_INDEX_OFFSET_KEY_ERROR_P 2
2412#define PM_PATTERN_BASE_INDEX_OFFSET_KEY_ERROR_MATCHEE 3
2413#define PM_PATTERN_BASE_INDEX_OFFSET_KEY_ERROR_KEY 4
2428 LABEL *match_succeeded_label = NEW_LABEL(location.
line);
2430 PUSH_INSN(ret, location, dup);
2431 PUSH_INSNL(ret, location, branchif, match_succeeded_label);
2433 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
2434 PUSH_INSN1(ret, location, putobject, message);
2435 PUSH_INSN1(ret, location, topn,
INT2FIX(3));
2436 PUSH_SEND(ret, location, id_core_sprintf,
INT2FIX(2));
2437 PUSH_INSN1(ret, location, setn,
INT2FIX(base_index + PM_PATTERN_BASE_INDEX_OFFSET_ERROR_STRING + 1));
2439 PUSH_INSN1(ret, location, putobject,
Qfalse);
2440 PUSH_INSN1(ret, location, setn,
INT2FIX(base_index + PM_PATTERN_BASE_INDEX_OFFSET_KEY_ERROR_P + 2));
2442 PUSH_INSN(ret, location, pop);
2443 PUSH_INSN(ret, location, pop);
2444 PUSH_LABEL(ret, match_succeeded_label);
2458 LABEL *match_succeeded_label = NEW_LABEL(location.
line);
2460 PUSH_INSN(ret, location, dup);
2461 PUSH_INSNL(ret, location, branchif, match_succeeded_label);
2463 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
2464 PUSH_INSN1(ret, location, putobject, message);
2465 PUSH_INSN1(ret, location, topn,
INT2FIX(3));
2466 PUSH_INSN(ret, location, dup);
2467 PUSH_SEND(ret, location, idLength,
INT2FIX(0));
2468 PUSH_INSN1(ret, location, putobject, length);
2469 PUSH_SEND(ret, location, id_core_sprintf,
INT2FIX(4));
2470 PUSH_INSN1(ret, location, setn,
INT2FIX(base_index + PM_PATTERN_BASE_INDEX_OFFSET_ERROR_STRING + 1));
2472 PUSH_INSN1(ret, location, putobject,
Qfalse);
2473 PUSH_INSN1(ret, location, setn,
INT2FIX(base_index + PM_PATTERN_BASE_INDEX_OFFSET_KEY_ERROR_P + 2));
2475 PUSH_INSN(ret, location, pop);
2476 PUSH_INSN(ret, location, pop);
2477 PUSH_LABEL(ret, match_succeeded_label);
2491 LABEL *match_succeeded_label = NEW_LABEL(location.
line);
2493 PUSH_INSN(ret, location, dup);
2494 PUSH_INSNL(ret, location, branchif, match_succeeded_label);
2495 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
2497 VALUE operand = rb_fstring_lit(
"%p === %p does not return true");
2498 PUSH_INSN1(ret, location, putobject, operand);
2500 PUSH_INSN1(ret, location, topn,
INT2FIX(3));
2501 PUSH_INSN1(ret, location, topn,
INT2FIX(5));
2502 PUSH_SEND(ret, location, id_core_sprintf,
INT2FIX(3));
2503 PUSH_INSN1(ret, location, setn,
INT2FIX(base_index + PM_PATTERN_BASE_INDEX_OFFSET_ERROR_STRING + 1));
2504 PUSH_INSN1(ret, location, putobject,
Qfalse);
2505 PUSH_INSN1(ret, location, setn,
INT2FIX(base_index + PM_PATTERN_BASE_INDEX_OFFSET_KEY_ERROR_P + 2));
2506 PUSH_INSN(ret, location, pop);
2507 PUSH_INSN(ret, location, pop);
2509 PUSH_LABEL(ret, match_succeeded_label);
2510 PUSH_INSN1(ret, location, setn,
INT2FIX(2));
2511 PUSH_INSN(ret, location, pop);
2512 PUSH_INSN(ret, location, pop);
2526 LABEL *matched_label = NEW_LABEL(pm_node_line_number_cached(node, scope_node));
2527 CHECK(pm_compile_pattern(iseq, scope_node, node, ret, matched_label, unmatched_label, in_single_pattern, use_deconstructed_cache, base_index));
2528 PUSH_LABEL(ret, matched_label);
2538pm_compile_pattern_deconstruct(
rb_iseq_t *iseq,
pm_scope_node_t *scope_node,
const pm_node_t *node,
LINK_ANCHOR *
const ret,
LABEL *deconstruct_label,
LABEL *match_failed_label,
LABEL *deconstructed_label,
LABEL *type_error_label,
bool in_single_pattern,
bool use_deconstructed_cache,
unsigned int base_index)
2542 if (use_deconstructed_cache) {
2543 PUSH_INSN1(ret, location, topn,
INT2FIX(base_index + PM_PATTERN_BASE_INDEX_OFFSET_DECONSTRUCTED_CACHE));
2544 PUSH_INSNL(ret, location, branchnil, deconstruct_label);
2546 PUSH_INSN1(ret, location, topn,
INT2FIX(base_index + PM_PATTERN_BASE_INDEX_OFFSET_DECONSTRUCTED_CACHE));
2547 PUSH_INSNL(ret, location, branchunless, match_failed_label);
2549 PUSH_INSN(ret, location, pop);
2550 PUSH_INSN1(ret, location, topn,
INT2FIX(base_index + PM_PATTERN_BASE_INDEX_OFFSET_DECONSTRUCTED_CACHE - 1));
2551 PUSH_INSNL(ret, location, jump, deconstructed_label);
2554 PUSH_INSNL(ret, location, jump, deconstruct_label);
2557 PUSH_LABEL(ret, deconstruct_label);
2558 PUSH_INSN(ret, location, dup);
2561 PUSH_INSN1(ret, location, putobject, operand);
2562 PUSH_SEND(ret, location, idRespond_to,
INT2FIX(1));
2564 if (use_deconstructed_cache) {
2565 PUSH_INSN1(ret, location, setn,
INT2FIX(base_index + PM_PATTERN_BASE_INDEX_OFFSET_DECONSTRUCTED_CACHE + 1));
2568 if (in_single_pattern) {
2569 CHECK(pm_compile_pattern_generic_error(iseq, scope_node, node, ret, rb_fstring_lit(
"%p does not respond to #deconstruct"), base_index + 1));
2572 PUSH_INSNL(ret, location, branchunless, match_failed_label);
2573 PUSH_SEND(ret, location, rb_intern(
"deconstruct"),
INT2FIX(0));
2575 if (use_deconstructed_cache) {
2576 PUSH_INSN1(ret, location, setn,
INT2FIX(base_index + PM_PATTERN_BASE_INDEX_OFFSET_DECONSTRUCTED_CACHE));
2579 PUSH_INSN(ret, location, dup);
2581 PUSH_INSNL(ret, location, branchunless, type_error_label);
2582 PUSH_LABEL(ret, deconstructed_label);
2596 PUSH_INSN(ret, location, dup);
2597 PM_COMPILE_NOT_POPPED(node);
2599 if (in_single_pattern) {
2600 PUSH_INSN1(ret, location, dupn,
INT2FIX(2));
2602 PUSH_INSN1(ret, location, checkmatch,
INT2FIX(VM_CHECKMATCH_TYPE_CASE));
2603 if (in_single_pattern) {
2604 CHECK(pm_compile_pattern_eqq_error(iseq, scope_node, node, ret, base_index + 3));
2606 PUSH_INSNL(ret, location, branchunless, match_failed_label);
2618 LABEL *key_error_label = NEW_LABEL(location.
line);
2619 LABEL *cleanup_label = NEW_LABEL(location.
line);
2622 kw_arg->references = 0;
2623 kw_arg->keyword_len = 2;
2624 kw_arg->keywords[0] =
ID2SYM(rb_intern(
"matchee"));
2625 kw_arg->keywords[1] =
ID2SYM(rb_intern(
"key"));
2627 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
2628 PUSH_INSN1(ret, location, topn,
INT2FIX(PM_PATTERN_BASE_INDEX_OFFSET_KEY_ERROR_P + 2));
2629 PUSH_INSNL(ret, location, branchif, key_error_label);
2632 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
2635 VALUE operand = rb_fstring_lit(
"%p: %s");
2636 PUSH_INSN1(ret, location, putobject, operand);
2639 PUSH_INSN1(ret, location, topn,
INT2FIX(4));
2640 PUSH_INSN1(ret, location, topn,
INT2FIX(PM_PATTERN_BASE_INDEX_OFFSET_ERROR_STRING + 6));
2641 PUSH_SEND(ret, location, id_core_sprintf,
INT2FIX(3));
2642 PUSH_SEND(ret, location, id_core_raise,
INT2FIX(2));
2643 PUSH_INSNL(ret, location, jump, cleanup_label);
2645 PUSH_LABEL(ret, key_error_label);
2647 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
2650 VALUE operand = rb_fstring_lit(
"%p: %s");
2651 PUSH_INSN1(ret, location, putobject, operand);
2654 PUSH_INSN1(ret, location, topn,
INT2FIX(4));
2655 PUSH_INSN1(ret, location, topn,
INT2FIX(PM_PATTERN_BASE_INDEX_OFFSET_ERROR_STRING + 6));
2656 PUSH_SEND(ret, location, id_core_sprintf,
INT2FIX(3));
2657 PUSH_INSN1(ret, location, topn,
INT2FIX(PM_PATTERN_BASE_INDEX_OFFSET_KEY_ERROR_MATCHEE + 4));
2658 PUSH_INSN1(ret, location, topn,
INT2FIX(PM_PATTERN_BASE_INDEX_OFFSET_KEY_ERROR_KEY + 5));
2659 PUSH_SEND_R(ret, location, rb_intern(
"new"),
INT2FIX(1), NULL,
INT2FIX(VM_CALL_KWARG), kw_arg);
2660 PUSH_SEND(ret, location, id_core_raise,
INT2FIX(1));
2661 PUSH_LABEL(ret, cleanup_label);
2663 PUSH_INSN1(ret, location, adjuststack,
INT2FIX(7));
2664 if (!popped) PUSH_INSN(ret, location, putnil);
2665 PUSH_INSNL(ret, location, jump, done_label);
2666 PUSH_INSN1(ret, location, dupn,
INT2FIX(5));
2667 if (popped) PUSH_INSN(ret, location, putnil);
2678 switch (PM_NODE_TYPE(node)) {
2679 case PM_ARRAY_PATTERN_NODE: {
2691 const size_t posts_size = cast->
posts.
size;
2692 const size_t minimum_size = requireds_size + posts_size;
2694 bool rest_named =
false;
2695 bool use_rest_size =
false;
2697 if (cast->
rest != NULL) {
2698 rest_named = (PM_NODE_TYPE_P(cast->
rest, PM_SPLAT_NODE) && ((
const pm_splat_node_t *) cast->
rest)->expression != NULL);
2699 use_rest_size = (rest_named || (!rest_named && posts_size > 0));
2702 LABEL *match_failed_label = NEW_LABEL(location.
line);
2703 LABEL *type_error_label = NEW_LABEL(location.
line);
2704 LABEL *deconstruct_label = NEW_LABEL(location.
line);
2705 LABEL *deconstructed_label = NEW_LABEL(location.
line);
2707 if (use_rest_size) {
2708 PUSH_INSN1(ret, location, putobject,
INT2FIX(0));
2709 PUSH_INSN(ret, location, swap);
2714 CHECK(pm_compile_pattern_constant(iseq, scope_node, cast->
constant, ret, match_failed_label, in_single_pattern, base_index));
2717 CHECK(pm_compile_pattern_deconstruct(iseq, scope_node, node, ret, deconstruct_label, match_failed_label, deconstructed_label, type_error_label, in_single_pattern, use_deconstructed_cache, base_index));
2719 PUSH_INSN(ret, location, dup);
2720 PUSH_SEND(ret, location, idLength,
INT2FIX(0));
2721 PUSH_INSN1(ret, location, putobject,
INT2FIX(minimum_size));
2722 PUSH_SEND(ret, location, cast->
rest == NULL ? idEq : idGE,
INT2FIX(1));
2723 if (in_single_pattern) {
2724 VALUE message = cast->
rest == NULL ? rb_fstring_lit(
"%p length mismatch (given %p, expected %p)") : rb_fstring_lit(
"%p length mismatch (given %p, expected %p+)");
2725 CHECK(pm_compile_pattern_length_error(iseq, scope_node, node, ret, message,
INT2FIX(minimum_size), base_index + 1));
2727 PUSH_INSNL(ret, location, branchunless, match_failed_label);
2729 for (
size_t index = 0; index < requireds_size; index++) {
2731 PUSH_INSN(ret, location, dup);
2732 PUSH_INSN1(ret, location, putobject,
INT2FIX(index));
2733 PUSH_SEND(ret, location, idAREF,
INT2FIX(1));
2734 CHECK(pm_compile_pattern_match(iseq, scope_node, required, ret, match_failed_label, in_single_pattern,
false, base_index + 1));
2737 if (cast->
rest != NULL) {
2739 PUSH_INSN(ret, location, dup);
2740 PUSH_INSN1(ret, location, putobject,
INT2FIX(requireds_size));
2741 PUSH_INSN1(ret, location, topn,
INT2FIX(1));
2742 PUSH_SEND(ret, location, idLength,
INT2FIX(0));
2743 PUSH_INSN1(ret, location, putobject,
INT2FIX(minimum_size));
2744 PUSH_SEND(ret, location, idMINUS,
INT2FIX(1));
2745 PUSH_INSN1(ret, location, setn,
INT2FIX(4));
2746 PUSH_SEND(ret, location, idAREF,
INT2FIX(2));
2747 CHECK(pm_compile_pattern_match(iseq, scope_node, ((
const pm_splat_node_t *) cast->
rest)->expression, ret, match_failed_label, in_single_pattern,
false, base_index + 1));
2749 else if (posts_size > 0) {
2750 PUSH_INSN(ret, location, dup);
2751 PUSH_SEND(ret, location, idLength,
INT2FIX(0));
2752 PUSH_INSN1(ret, location, putobject,
INT2FIX(minimum_size));
2753 PUSH_SEND(ret, location, idMINUS,
INT2FIX(1));
2754 PUSH_INSN1(ret, location, setn,
INT2FIX(2));
2755 PUSH_INSN(ret, location, pop);
2759 for (
size_t index = 0; index < posts_size; index++) {
2761 PUSH_INSN(ret, location, dup);
2763 PUSH_INSN1(ret, location, putobject,
INT2FIX(requireds_size + index));
2764 PUSH_INSN1(ret, location, topn,
INT2FIX(3));
2765 PUSH_SEND(ret, location, idPLUS,
INT2FIX(1));
2766 PUSH_SEND(ret, location, idAREF,
INT2FIX(1));
2767 CHECK(pm_compile_pattern_match(iseq, scope_node, post, ret, match_failed_label, in_single_pattern,
false, base_index + 1));
2770 PUSH_INSN(ret, location, pop);
2771 if (use_rest_size) {
2772 PUSH_INSN(ret, location, pop);
2775 PUSH_INSNL(ret, location, jump, matched_label);
2776 PUSH_INSN(ret, location, putnil);
2777 if (use_rest_size) {
2778 PUSH_INSN(ret, location, putnil);
2781 PUSH_LABEL(ret, type_error_label);
2782 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
2786 VALUE operand = rb_fstring_lit(
"deconstruct must return Array");
2787 PUSH_INSN1(ret, location, putobject, operand);
2790 PUSH_SEND(ret, location, id_core_raise,
INT2FIX(2));
2791 PUSH_INSN(ret, location, pop);
2793 PUSH_LABEL(ret, match_failed_label);
2794 PUSH_INSN(ret, location, pop);
2795 if (use_rest_size) {
2796 PUSH_INSN(ret, location, pop);
2799 PUSH_INSNL(ret, location, jump, unmatched_label);
2802 case PM_FIND_PATTERN_NODE: {
2814 LABEL *match_failed_label = NEW_LABEL(location.
line);
2815 LABEL *type_error_label = NEW_LABEL(location.
line);
2816 LABEL *deconstruct_label = NEW_LABEL(location.
line);
2817 LABEL *deconstructed_label = NEW_LABEL(location.
line);
2820 CHECK(pm_compile_pattern_constant(iseq, scope_node, cast->
constant, ret, match_failed_label, in_single_pattern, base_index));
2823 CHECK(pm_compile_pattern_deconstruct(iseq, scope_node, node, ret, deconstruct_label, match_failed_label, deconstructed_label, type_error_label, in_single_pattern, use_deconstructed_cache, base_index));
2825 PUSH_INSN(ret, location, dup);
2826 PUSH_SEND(ret, location, idLength,
INT2FIX(0));
2827 PUSH_INSN1(ret, location, putobject,
INT2FIX(size));
2828 PUSH_SEND(ret, location, idGE,
INT2FIX(1));
2829 if (in_single_pattern) {
2830 CHECK(pm_compile_pattern_length_error(iseq, scope_node, node, ret, rb_fstring_lit(
"%p length mismatch (given %p, expected %p+)"),
INT2FIX(size), base_index + 1));
2832 PUSH_INSNL(ret, location, branchunless, match_failed_label);
2835 LABEL *while_begin_label = NEW_LABEL(location.
line);
2836 LABEL *next_loop_label = NEW_LABEL(location.
line);
2837 LABEL *find_succeeded_label = NEW_LABEL(location.
line);
2838 LABEL *find_failed_label = NEW_LABEL(location.
line);
2840 PUSH_INSN(ret, location, dup);
2841 PUSH_SEND(ret, location, idLength,
INT2FIX(0));
2843 PUSH_INSN(ret, location, dup);
2844 PUSH_INSN1(ret, location, putobject,
INT2FIX(size));
2845 PUSH_SEND(ret, location, idMINUS,
INT2FIX(1));
2846 PUSH_INSN1(ret, location, putobject,
INT2FIX(0));
2847 PUSH_LABEL(ret, while_begin_label);
2849 PUSH_INSN(ret, location, dup);
2850 PUSH_INSN1(ret, location, topn,
INT2FIX(2));
2851 PUSH_SEND(ret, location, idLE,
INT2FIX(1));
2852 PUSH_INSNL(ret, location, branchunless, find_failed_label);
2854 for (
size_t index = 0; index < size; index++) {
2855 PUSH_INSN1(ret, location, topn,
INT2FIX(3));
2856 PUSH_INSN1(ret, location, topn,
INT2FIX(1));
2859 PUSH_INSN1(ret, location, putobject,
INT2FIX(index));
2860 PUSH_SEND(ret, location, idPLUS,
INT2FIX(1));
2863 PUSH_SEND(ret, location, idAREF,
INT2FIX(1));
2864 CHECK(pm_compile_pattern_match(iseq, scope_node, cast->
requireds.
nodes[index], ret, next_loop_label, in_single_pattern,
false, base_index + 4));
2870 PUSH_INSN1(ret, location, topn,
INT2FIX(3));
2871 PUSH_INSN1(ret, location, putobject,
INT2FIX(0));
2872 PUSH_INSN1(ret, location, topn,
INT2FIX(2));
2873 PUSH_SEND(ret, location, idAREF,
INT2FIX(2));
2874 CHECK(pm_compile_pattern_match(iseq, scope_node, left->
expression, ret, find_failed_label, in_single_pattern,
false, base_index + 4));
2880 PUSH_INSN1(ret, location, topn,
INT2FIX(3));
2881 PUSH_INSN1(ret, location, topn,
INT2FIX(1));
2882 PUSH_INSN1(ret, location, putobject,
INT2FIX(size));
2883 PUSH_SEND(ret, location, idPLUS,
INT2FIX(1));
2884 PUSH_INSN1(ret, location, topn,
INT2FIX(3));
2885 PUSH_SEND(ret, location, idAREF,
INT2FIX(2));
2886 pm_compile_pattern_match(iseq, scope_node, right->
expression, ret, find_failed_label, in_single_pattern,
false, base_index + 4);
2889 PUSH_INSNL(ret, location, jump, find_succeeded_label);
2891 PUSH_LABEL(ret, next_loop_label);
2892 PUSH_INSN1(ret, location, putobject,
INT2FIX(1));
2893 PUSH_SEND(ret, location, idPLUS,
INT2FIX(1));
2894 PUSH_INSNL(ret, location, jump, while_begin_label);
2896 PUSH_LABEL(ret, find_failed_label);
2897 PUSH_INSN1(ret, location, adjuststack,
INT2FIX(3));
2898 if (in_single_pattern) {
2899 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
2902 VALUE operand = rb_fstring_lit(
"%p does not match to find pattern");
2903 PUSH_INSN1(ret, location, putobject, operand);
2906 PUSH_INSN1(ret, location, topn,
INT2FIX(2));
2907 PUSH_SEND(ret, location, id_core_sprintf,
INT2FIX(2));
2908 PUSH_INSN1(ret, location, setn,
INT2FIX(base_index + PM_PATTERN_BASE_INDEX_OFFSET_ERROR_STRING + 1));
2910 PUSH_INSN1(ret, location, putobject,
Qfalse);
2911 PUSH_INSN1(ret, location, setn,
INT2FIX(base_index + PM_PATTERN_BASE_INDEX_OFFSET_KEY_ERROR_P + 2));
2913 PUSH_INSN(ret, location, pop);
2914 PUSH_INSN(ret, location, pop);
2916 PUSH_INSNL(ret, location, jump, match_failed_label);
2917 PUSH_INSN1(ret, location, dupn,
INT2FIX(3));
2919 PUSH_LABEL(ret, find_succeeded_label);
2920 PUSH_INSN1(ret, location, adjuststack,
INT2FIX(3));
2923 PUSH_INSN(ret, location, pop);
2924 PUSH_INSNL(ret, location, jump, matched_label);
2925 PUSH_INSN(ret, location, putnil);
2927 PUSH_LABEL(ret, type_error_label);
2928 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
2932 VALUE operand = rb_fstring_lit(
"deconstruct must return Array");
2933 PUSH_INSN1(ret, location, putobject, operand);
2936 PUSH_SEND(ret, location, id_core_raise,
INT2FIX(2));
2937 PUSH_INSN(ret, location, pop);
2939 PUSH_LABEL(ret, match_failed_label);
2940 PUSH_INSN(ret, location, pop);
2941 PUSH_INSNL(ret, location, jump, unmatched_label);
2945 case PM_HASH_PATTERN_NODE: {
2960 LABEL *match_failed_label = NEW_LABEL(location.
line);
2961 LABEL *type_error_label = NEW_LABEL(location.
line);
2964 if (has_keys && !has_rest) {
2967 for (
size_t index = 0; index < cast->
elements.
size; index++) {
2969 RUBY_ASSERT(PM_NODE_TYPE_P(element, PM_ASSOC_NODE));
2980 CHECK(pm_compile_pattern_constant(iseq, scope_node, cast->
constant, ret, match_failed_label, in_single_pattern, base_index));
2983 PUSH_INSN(ret, location, dup);
2986 VALUE operand =
ID2SYM(rb_intern(
"deconstruct_keys"));
2987 PUSH_INSN1(ret, location, putobject, operand);
2990 PUSH_SEND(ret, location, idRespond_to,
INT2FIX(1));
2991 if (in_single_pattern) {
2992 CHECK(pm_compile_pattern_generic_error(iseq, scope_node, node, ret, rb_fstring_lit(
"%p does not respond to #deconstruct_keys"), base_index + 1));
2994 PUSH_INSNL(ret, location, branchunless, match_failed_label);
2997 PUSH_INSN(ret, location, putnil);
3002 PUSH_INSN1(ret, location, duparray, keys);
3005 PUSH_SEND(ret, location, rb_intern(
"deconstruct_keys"),
INT2FIX(1));
3007 PUSH_INSN(ret, location, dup);
3009 PUSH_INSNL(ret, location, branchunless, type_error_label);
3012 PUSH_SEND(ret, location, rb_intern(
"dup"),
INT2FIX(0));
3016 DECL_ANCHOR(match_values);
3018 for (
size_t index = 0; index < cast->
elements.
size; index++) {
3020 RUBY_ASSERT(PM_NODE_TYPE_P(element, PM_ASSOC_NODE));
3027 PUSH_INSN(ret, location, dup);
3028 PUSH_INSN1(ret, location, putobject, symbol);
3029 PUSH_SEND(ret, location, rb_intern(
"key?"),
INT2FIX(1));
3031 if (in_single_pattern) {
3032 LABEL *match_succeeded_label = NEW_LABEL(location.
line);
3034 PUSH_INSN(ret, location, dup);
3035 PUSH_INSNL(ret, location, branchif, match_succeeded_label);
3040 PUSH_INSN1(ret, location, putobject, operand);
3043 PUSH_INSN1(ret, location, setn,
INT2FIX(base_index + PM_PATTERN_BASE_INDEX_OFFSET_ERROR_STRING + 2));
3044 PUSH_INSN1(ret, location, putobject,
Qtrue);
3045 PUSH_INSN1(ret, location, setn,
INT2FIX(base_index + PM_PATTERN_BASE_INDEX_OFFSET_KEY_ERROR_P + 3));
3046 PUSH_INSN1(ret, location, topn,
INT2FIX(3));
3047 PUSH_INSN1(ret, location, setn,
INT2FIX(base_index + PM_PATTERN_BASE_INDEX_OFFSET_KEY_ERROR_MATCHEE + 4));
3048 PUSH_INSN1(ret, location, putobject, symbol);
3049 PUSH_INSN1(ret, location, setn,
INT2FIX(base_index + PM_PATTERN_BASE_INDEX_OFFSET_KEY_ERROR_KEY + 5));
3051 PUSH_INSN1(ret, location, adjuststack,
INT2FIX(4));
3052 PUSH_LABEL(ret, match_succeeded_label);
3055 PUSH_INSNL(ret, location, branchunless, match_failed_label);
3056 PUSH_INSN(match_values, location, dup);
3057 PUSH_INSN1(match_values, location, putobject, symbol);
3058 PUSH_SEND(match_values, location, has_rest ? rb_intern(
"delete") : idAREF,
INT2FIX(1));
3061 if (PM_NODE_TYPE_P(value, PM_IMPLICIT_NODE)) {
3065 CHECK(pm_compile_pattern_match(iseq, scope_node, value, match_values, match_failed_label, in_single_pattern,
false, base_index + 1));
3068 PUSH_SEQ(ret, match_values);
3071 PUSH_INSN(ret, location, dup);
3072 PUSH_SEND(ret, location, idEmptyP,
INT2FIX(0));
3073 if (in_single_pattern) {
3074 CHECK(pm_compile_pattern_generic_error(iseq, scope_node, node, ret, rb_fstring_lit(
"%p is not empty"), base_index + 1));
3076 PUSH_INSNL(ret, location, branchunless, match_failed_label);
3080 switch (PM_NODE_TYPE(cast->
rest)) {
3081 case PM_NO_KEYWORDS_PARAMETER_NODE: {
3082 PUSH_INSN(ret, location, dup);
3083 PUSH_SEND(ret, location, idEmptyP,
INT2FIX(0));
3084 if (in_single_pattern) {
3085 pm_compile_pattern_generic_error(iseq, scope_node, node, ret, rb_fstring_lit(
"rest of %p is not empty"), base_index + 1);
3087 PUSH_INSNL(ret, location, branchunless, match_failed_label);
3090 case PM_ASSOC_SPLAT_NODE: {
3092 PUSH_INSN(ret, location, dup);
3093 pm_compile_pattern_match(iseq, scope_node, splat->value, ret, match_failed_label, in_single_pattern,
false, base_index + 1);
3097 rb_bug(
"unreachable");
3102 PUSH_INSN(ret, location, pop);
3103 PUSH_INSNL(ret, location, jump, matched_label);
3104 PUSH_INSN(ret, location, putnil);
3106 PUSH_LABEL(ret, type_error_label);
3107 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
3111 VALUE operand = rb_fstring_lit(
"deconstruct_keys must return Hash");
3112 PUSH_INSN1(ret, location, putobject, operand);
3115 PUSH_SEND(ret, location, id_core_raise,
INT2FIX(2));
3116 PUSH_INSN(ret, location, pop);
3118 PUSH_LABEL(ret, match_failed_label);
3119 PUSH_INSN(ret, location, pop);
3120 PUSH_INSNL(ret, location, jump, unmatched_label);
3123 case PM_CAPTURE_PATTERN_NODE: {
3135 LABEL *match_failed_label = NEW_LABEL(location.
line);
3137 PUSH_INSN(ret, location, dup);
3138 CHECK(pm_compile_pattern_match(iseq, scope_node, cast->
value, ret, match_failed_label, in_single_pattern, use_deconstructed_cache, base_index + 1));
3139 CHECK(pm_compile_pattern(iseq, scope_node, (
const pm_node_t *) cast->
target, ret, matched_label, match_failed_label, in_single_pattern,
false, base_index));
3140 PUSH_INSN(ret, location, putnil);
3142 PUSH_LABEL(ret, match_failed_label);
3143 PUSH_INSN(ret, location, pop);
3144 PUSH_INSNL(ret, location, jump, unmatched_label);
3148 case PM_LOCAL_VARIABLE_TARGET_NODE: {
3155 PUSH_SETLOCAL(ret, location, index.index, index.level);
3156 PUSH_INSNL(ret, location, jump, matched_label);
3159 case PM_ALTERNATION_PATTERN_NODE: {
3164 LABEL *matched_left_label = NEW_LABEL(location.
line);
3165 LABEL *unmatched_left_label = NEW_LABEL(location.
line);
3169 PUSH_INSN(ret, location, dup);
3170 CHECK(pm_compile_pattern(iseq, scope_node, cast->
left, ret, matched_left_label, unmatched_left_label, in_single_pattern, use_deconstructed_cache, base_index + 1));
3175 PUSH_LABEL(ret, matched_left_label);
3176 PUSH_INSN(ret, location, pop);
3177 PUSH_INSNL(ret, location, jump, matched_label);
3178 PUSH_INSN(ret, location, putnil);
3182 PUSH_LABEL(ret, unmatched_left_label);
3183 CHECK(pm_compile_pattern(iseq, scope_node, cast->
right, ret, matched_label, unmatched_label, in_single_pattern, use_deconstructed_cache, base_index));
3186 case PM_PARENTHESES_NODE:
3191 return pm_compile_pattern(iseq, scope_node, ((
const pm_parentheses_node_t *) node)->body, ret, matched_label, unmatched_label, in_single_pattern, use_deconstructed_cache, base_index);
3192 case PM_PINNED_EXPRESSION_NODE:
3200 case PM_CLASS_VARIABLE_READ_NODE:
3201 case PM_CONSTANT_PATH_NODE:
3202 case PM_CONSTANT_READ_NODE:
3205 case PM_GLOBAL_VARIABLE_READ_NODE:
3206 case PM_IMAGINARY_NODE:
3207 case PM_INSTANCE_VARIABLE_READ_NODE:
3208 case PM_IT_LOCAL_VARIABLE_READ_NODE:
3209 case PM_INTEGER_NODE:
3210 case PM_INTERPOLATED_REGULAR_EXPRESSION_NODE:
3211 case PM_INTERPOLATED_STRING_NODE:
3212 case PM_INTERPOLATED_SYMBOL_NODE:
3213 case PM_INTERPOLATED_X_STRING_NODE:
3214 case PM_LAMBDA_NODE:
3215 case PM_LOCAL_VARIABLE_READ_NODE:
3217 case PM_SOURCE_ENCODING_NODE:
3218 case PM_SOURCE_FILE_NODE:
3219 case PM_SOURCE_LINE_NODE:
3221 case PM_RATIONAL_NODE:
3222 case PM_REGULAR_EXPRESSION_NODE:
3224 case PM_STRING_NODE:
3225 case PM_SYMBOL_NODE:
3227 case PM_X_STRING_NODE: {
3231 PM_COMPILE_NOT_POPPED(node);
3232 if (in_single_pattern) {
3233 PUSH_INSN1(ret, location, dupn,
INT2FIX(2));
3236 PUSH_INSN1(ret, location, checkmatch,
INT2FIX(VM_CHECKMATCH_TYPE_CASE));
3238 if (in_single_pattern) {
3239 pm_compile_pattern_eqq_error(iseq, scope_node, node, ret, base_index + 2);
3242 PUSH_INSNL(ret, location, branchif, matched_label);
3243 PUSH_INSNL(ret, location, jump, unmatched_label);
3246 case PM_PINNED_VARIABLE_NODE: {
3252 CHECK(pm_compile_pattern(iseq, scope_node, cast->
variable, ret, matched_label, unmatched_label, in_single_pattern,
true, base_index));
3256 case PM_UNLESS_NODE: {
3271 if (PM_NODE_TYPE_P(node, PM_IF_NODE)) {
3286 CHECK(pm_compile_pattern_match(iseq, scope_node, statement, ret, unmatched_label, in_single_pattern, use_deconstructed_cache, base_index));
3287 PM_COMPILE_NOT_POPPED(predicate);
3289 if (in_single_pattern) {
3290 LABEL *match_succeeded_label = NEW_LABEL(location.
line);
3292 PUSH_INSN(ret, location, dup);
3293 if (PM_NODE_TYPE_P(node, PM_IF_NODE)) {
3294 PUSH_INSNL(ret, location, branchif, match_succeeded_label);
3297 PUSH_INSNL(ret, location, branchunless, match_succeeded_label);
3301 VALUE operand = rb_fstring_lit(
"guard clause does not return true");
3302 PUSH_INSN1(ret, location, putobject, operand);
3305 PUSH_INSN1(ret, location, setn,
INT2FIX(base_index + PM_PATTERN_BASE_INDEX_OFFSET_ERROR_STRING + 1));
3306 PUSH_INSN1(ret, location, putobject,
Qfalse);
3307 PUSH_INSN1(ret, location, setn,
INT2FIX(base_index + PM_PATTERN_BASE_INDEX_OFFSET_KEY_ERROR_P + 2));
3309 PUSH_INSN(ret, location, pop);
3310 PUSH_INSN(ret, location, pop);
3312 PUSH_LABEL(ret, match_succeeded_label);
3315 if (PM_NODE_TYPE_P(node, PM_IF_NODE)) {
3316 PUSH_INSNL(ret, location, branchunless, unmatched_label);
3319 PUSH_INSNL(ret, location, branchif, unmatched_label);
3322 PUSH_INSNL(ret, location, jump, matched_label);
3329 rb_bug(
"Unexpected node type in pattern matching expression: %s", pm_node_type(PM_NODE_TYPE(node)));
3336#undef PM_PATTERN_BASE_INDEX_OFFSET_DECONSTRUCTED_CACHE
3337#undef PM_PATTERN_BASE_INDEX_OFFSET_ERROR_STRING
3338#undef PM_PATTERN_BASE_INDEX_OFFSET_KEY_ERROR_P
3339#undef PM_PATTERN_BASE_INDEX_OFFSET_KEY_ERROR_MATCHEE
3340#undef PM_PATTERN_BASE_INDEX_OFFSET_KEY_ERROR_KEY
3351 scope->parameters = NULL;
3353 scope->local_table_for_iseq_size = 0;
3361 scope->base.
type = PM_SCOPE_NODE;
3364 scope->previous = previous;
3367 switch (PM_NODE_TYPE(node)) {
3368 case PM_BLOCK_NODE: {
3370 scope->body = cast->
body;
3371 scope->locals = cast->
locals;
3375 case PM_CLASS_NODE: {
3377 scope->body = cast->
body;
3378 scope->locals = cast->
locals;
3384 scope->body = cast->body;
3385 scope->locals = cast->locals;
3388 case PM_ENSURE_NODE: {
3404 case PM_INTERPOLATED_REGULAR_EXPRESSION_NODE: {
3409 case PM_LAMBDA_NODE: {
3412 scope->body = cast->
body;
3413 scope->locals = cast->
locals;
3416 case PM_MODULE_NODE: {
3418 scope->body = cast->
body;
3419 scope->locals = cast->
locals;
3422 case PM_POST_EXECUTION_NODE: {
3427 case PM_PROGRAM_NODE: {
3430 scope->locals = cast->locals;
3433 case PM_RESCUE_NODE: {
3438 case PM_RESCUE_MODIFIER_NODE: {
3443 case PM_SINGLETON_CLASS_NODE: {
3445 scope->body = cast->
body;
3446 scope->locals = cast->
locals;
3449 case PM_STATEMENTS_NODE: {
3455 rb_bug(
"unreachable");
3484 iobj = IS_INSN(last_elem) ? (
INSN*) last_elem : (
INSN*) get_prev_insn((
INSN*) last_elem);
3485 while (!IS_INSN_ID(iobj, send) && !IS_INSN_ID(iobj, invokesuper) && !IS_INSN_ID(iobj, sendforward) && !IS_INSN_ID(iobj, invokesuperforward)) {
3486 iobj = (
INSN*) get_prev_insn(iobj);
3488 ELEM_INSERT_NEXT(&iobj->link, (
LINK_ELEMENT*) retry_end_l);
3493 if (&iobj->link == LAST_ELEMENT(ret)) {
3501 const char *name = rb_id2name(method_id);
3502 static const char prefix[] =
"__builtin_";
3503 const size_t prefix_len =
sizeof(prefix) - 1;
3505 if (receiver == NULL) {
3506 if (UNLIKELY(strncmp(prefix, name, prefix_len) == 0)) {
3508 return &name[prefix_len];
3511 else if (PM_NODE_TYPE_P(receiver, PM_CALL_NODE)) {
3512 if (PM_NODE_FLAG_P(receiver, PM_CALL_NODE_FLAGS_VARIABLE_CALL)) {
3520 else if (PM_NODE_TYPE_P(receiver, PM_CONSTANT_READ_NODE)) {
3535 if (arguments == NULL) {
3536 COMPILE_ERROR(iseq, node_location->
line,
"attr!: no argument");
3542 if (!PM_NODE_TYPE_P(argument, PM_SYMBOL_NODE)) {
3543 COMPILE_ERROR(iseq, node_location->
line,
"non symbol argument to attr!: %s", pm_node_type(PM_NODE_TYPE(argument)));
3547 VALUE symbol = pm_static_literal_value(iseq, argument, scope_node);
3548 if (compile_builtin_attr_symbol(iseq, symbol) != COMPILE_OK) {
3549 COMPILE_ERROR(iseq, node_location->
line,
"unknown argument to attr!: %" PRIsVALUE, symbol);
3560 if (arguments == NULL) {
3561 COMPILE_ERROR(iseq, node_location->
line,
"arg!: no argument");
3566 COMPILE_ERROR(iseq, node_location->
line,
"arg!: too many argument");
3571 if (!PM_NODE_TYPE_P(argument, PM_SYMBOL_NODE)) {
3572 COMPILE_ERROR(iseq, node_location->
line,
"non symbol argument to arg!: %s", pm_node_type(PM_NODE_TYPE(argument)));
3578 int index = ISEQ_BODY(ISEQ_BODY(iseq)->local_iseq)->local_table_size - get_local_var_idx(iseq, name);
3580 debugs(
"id: %s idx: %d\n", rb_id2name(name), index);
3581 PUSH_GETLOCAL(ret, *node_location, index, get_lvar_level(iseq));
3590 const pm_node_t *ast_node = scope_node->ast_node;
3591 if (!PM_NODE_TYPE_P(ast_node, PM_DEF_NODE)) {
3592 rb_bug(
"mandatory_only?: not in method definition");
3598 if (parameters_node == NULL) {
3599 rb_bug(
"mandatory_only?: in method definition with no parameters");
3604 if (body_node == NULL || !PM_NODE_TYPE_P(body_node, PM_STATEMENTS_NODE) || (((
const pm_statements_node_t *) body_node)->body.size != 1) || !PM_NODE_TYPE_P(((
const pm_statements_node_t *) body_node)->body.nodes[0], PM_IF_NODE)) {
3605 rb_bug(
"mandatory_only?: not in method definition with plain statements");
3611 rb_bug(
"mandatory_only?: can't find mandatory node");
3622 .name = def_node->
name,
3624 .parameters = ¶meters,
3634 pm_scope_node_init(&def.base, &next_scope_node, scope_node);
3636 const rb_iseq_t *mandatory_only_iseq = pm_iseq_build(
3638 rb_iseq_base_label(iseq),
3640 rb_iseq_realpath(iseq),
3641 node_location->
line,
3645 ISEQ_COMPILE_DATA(iseq)->option
3647 RB_OBJ_WRITE(iseq, &ISEQ_BODY(iseq)->mandatory_only_iseq, (
VALUE)mandatory_only_iseq);
3649 pm_scope_node_destroy(&next_scope_node);
3658 if (parent_block != NULL) {
3659 COMPILE_ERROR(iseq, node_location->
line,
"should not call builtins here.");
3663#define BUILTIN_INLINE_PREFIX "_bi"
3664 char inline_func[
sizeof(BUILTIN_INLINE_PREFIX) +
DECIMAL_SIZE_OF(
int)];
3665 bool cconst =
false;
3670 if (strcmp(
"cstmt!", builtin_func) == 0 || strcmp(
"cexpr!", builtin_func) == 0) {
3673 else if (strcmp(
"cconst!", builtin_func) == 0) {
3676 else if (strcmp(
"cinit!", builtin_func) == 0) {
3680 else if (strcmp(
"attr!", builtin_func) == 0) {
3681 return pm_compile_builtin_attr(iseq, scope_node, arguments, node_location);
3683 else if (strcmp(
"arg!", builtin_func) == 0) {
3684 return pm_compile_builtin_arg(iseq, ret, scope_node, arguments, node_location, popped);
3686 else if (strcmp(
"mandatory_only?", builtin_func) == 0) {
3688 rb_bug(
"mandatory_only? should be in if condition");
3690 else if (!LIST_INSN_SIZE_ZERO(ret)) {
3691 rb_bug(
"mandatory_only? should be put on top");
3694 PUSH_INSN1(ret, *node_location, putobject,
Qfalse);
3695 return pm_compile_builtin_mandatory_only_method(iseq, scope_node, call_node, node_location);
3698 rb_bug(
"can't find builtin function:%s", builtin_func);
3701 COMPILE_ERROR(iseq, node_location->
line,
"can't find builtin function:%s", builtin_func);
3705 int inline_index = node_location->
line;
3706 snprintf(inline_func,
sizeof(inline_func), BUILTIN_INLINE_PREFIX
"%d", inline_index);
3707 builtin_func = inline_func;
3713 typedef VALUE(*builtin_func0)(
void *,
VALUE);
3714 VALUE const_val = (*(builtin_func0)(uintptr_t)bf->func_ptr)(NULL,
Qnil);
3715 PUSH_INSN1(ret, *node_location, putobject, const_val);
3721 DECL_ANCHOR(args_seq);
3725 int argc = pm_setup_args(arguments, call_node->
block, &flags, &keywords, iseq, args_seq, scope_node, node_location);
3727 if (argc != bf->argc) {
3728 COMPILE_ERROR(iseq, node_location->
line,
"argc is not match for builtin function:%s (expect %d but %d)", builtin_func, bf->argc, argc);
3732 unsigned int start_index;
3733 if (delegate_call_p(iseq, argc, args_seq, &start_index)) {
3734 PUSH_INSN2(ret, *node_location, opt_invokebuiltin_delegate, bf,
INT2FIX(start_index));
3737 PUSH_SEQ(ret, args_seq);
3738 PUSH_INSN1(ret, *node_location, invokebuiltin, bf);
3741 if (popped) PUSH_INSN(ret, *node_location, pop);
3756 LABEL *else_label = NEW_LABEL(location.
line);
3757 LABEL *end_label = NEW_LABEL(location.
line);
3758 LABEL *retry_end_l = NEW_LABEL(location.
line);
3762 int node_id = location.
node_id;
3764 if (PM_NODE_FLAG_P(call_node, PM_CALL_NODE_FLAGS_SAFE_NAVIGATION)) {
3765 if (PM_BRANCH_COVERAGE_P(iseq)) {
3766 uint32_t end_cursor = 0;
3767 bool end_found =
false;
3771 end_cursor = cursor;
3777 if (!end_found || cursor > end_cursor) {
3778 end_cursor = cursor;
3785 if (!end_found || cursor > end_cursor) {
3786 end_cursor = cursor;
3795 const pm_line_column_t start_location = PM_NODE_START_LINE_COLUMN(call_node);
3796 const pm_line_column_t end_location = pm_line_offset_list_line_column_cached(scope_node->line_offsets, end_cursor, scope_node->start_line, &scope_node->
last_line);
3799 .beg_pos = { .lineno = start_location.
line, .column = start_location.
column },
3800 .end_pos = { .lineno = end_location.
line, .column = end_location.
column }
3803 branches = decl_branch_base(iseq, (
int) call_node->
base.
node_id, &code_location,
"&.");
3806 PUSH_INSN(ret, location, dup);
3807 PUSH_INSNL(ret, location, branchnil, else_label);
3809 add_trace_branch_coverage(iseq, ret, &code_location, node_id, 0,
"then", branches);
3817 int orig_argc = pm_setup_args(call_node->
arguments, call_node->
block, &flags, &kw_arg, iseq, ret, scope_node, &location);
3818 const rb_iseq_t *previous_block = ISEQ_COMPILE_DATA(iseq)->current_block;
3821 if (call_node->
block != NULL && PM_NODE_TYPE_P(call_node->
block, PM_BLOCK_NODE)) {
3824 pm_scope_node_init(call_node->
block, &next_scope_node, scope_node);
3826 block_iseq = NEW_CHILD_ISEQ(&next_scope_node, make_name_for_block(iseq), ISEQ_TYPE_BLOCK, pm_node_line_number_cached(call_node->
block, scope_node));
3827 pm_scope_node_destroy(&next_scope_node);
3828 ISEQ_COMPILE_DATA(iseq)->current_block = block_iseq;
3831 if (PM_NODE_FLAG_P(call_node, PM_CALL_NODE_FLAGS_VARIABLE_CALL)) {
3832 flags |= VM_CALL_VCALL;
3836 flags |= VM_CALL_ARGS_SIMPLE;
3840 if (PM_NODE_FLAG_P(call_node, PM_CALL_NODE_FLAGS_IGNORE_VISIBILITY)) {
3841 flags |= VM_CALL_FCALL;
3844 if (!popped && PM_NODE_FLAG_P(call_node, PM_CALL_NODE_FLAGS_ATTRIBUTE_WRITE)) {
3845 if (flags & VM_CALL_ARGS_BLOCKARG) {
3846 PUSH_INSN1(ret, location, topn,
INT2FIX(1));
3847 if (flags & VM_CALL_ARGS_SPLAT) {
3848 PUSH_INSN1(ret, location, putobject,
INT2FIX(-1));
3849 PUSH_SEND_WITH_FLAG(ret, location, idAREF,
INT2FIX(1),
INT2FIX(0));
3851 PUSH_INSN1(ret, location, setn,
INT2FIX(orig_argc + 3));
3852 PUSH_INSN(ret, location, pop);
3854 else if (flags & VM_CALL_ARGS_SPLAT) {
3855 PUSH_INSN(ret, location, dup);
3856 PUSH_INSN1(ret, location, putobject,
INT2FIX(-1));
3857 PUSH_SEND_WITH_FLAG(ret, location, idAREF,
INT2FIX(1),
INT2FIX(0));
3858 PUSH_INSN1(ret, location, setn,
INT2FIX(orig_argc + 2));
3859 PUSH_INSN(ret, location, pop);
3862 PUSH_INSN1(ret, location, setn,
INT2FIX(orig_argc + 1));
3866 if ((flags & VM_CALL_KW_SPLAT) && (flags & VM_CALL_ARGS_BLOCKARG) && !(flags & VM_CALL_KW_SPLAT_MUT)) {
3867 PUSH_INSN(ret, location, splatkw);
3870 LABEL *not_basic_new = NEW_LABEL(location.
line);
3871 LABEL *not_basic_new_finish = NEW_LABEL(location.
line);
3873 bool inline_new = ISEQ_COMPILE_DATA(iseq)->option->specialized_instruction &&
3874 method_id == rb_intern(
"new") &&
3875 call_node->
block == NULL &&
3876 (flags & VM_CALL_ARGS_BLOCKARG) == 0;
3879 if (LAST_ELEMENT(ret) == opt_new_prelude) {
3880 PUSH_INSN(ret, location, putnil);
3881 PUSH_INSN(ret, location, swap);
3884 ELEM_INSERT_NEXT(opt_new_prelude, &new_insn_body(iseq, location.
line, location.
node_id, BIN(swap), 0)->link);
3885 ELEM_INSERT_NEXT(opt_new_prelude, &new_insn_body(iseq, location.
line, location.
node_id, BIN(putnil), 0)->link);
3888 rb_callinfo_kwarg_retain(kw_arg);
3892 if (flags & VM_CALL_FORWARDING) {
3893 ci = (
VALUE)new_callinfo(iseq, method_id, orig_argc + 1, flags, kw_arg, 0);
3896 ci = (
VALUE)new_callinfo(iseq, method_id, orig_argc, flags, kw_arg, 0);
3899 PUSH_INSN2(ret, location, opt_new, ci, not_basic_new);
3900 LABEL_REF(not_basic_new);
3902 PUSH_SEND_R(ret, location, rb_intern(
"initialize"),
INT2FIX(orig_argc), block_iseq,
INT2FIX(flags | VM_CALL_FCALL), kw_arg);
3903 PUSH_INSNL(ret, location, jump, not_basic_new_finish);
3905 PUSH_LABEL(ret, not_basic_new);
3907 PUSH_SEND_R(ret, location, method_id,
INT2FIX(orig_argc), block_iseq,
INT2FIX(flags), kw_arg);
3908 PUSH_INSN(ret, location, swap);
3910 PUSH_LABEL(ret, not_basic_new_finish);
3911 PUSH_INSN(ret, location, pop);
3913 rb_callinfo_kwarg_release(kw_arg);
3916 PUSH_SEND_R(ret, location, method_id,
INT2FIX(orig_argc), block_iseq,
INT2FIX(flags), kw_arg);
3919 if (block_iseq && ISEQ_BODY(block_iseq)->catch_table) {
3920 pm_compile_retry_end_label(iseq, ret, retry_end_l);
3921 PUSH_CATCH_ENTRY(CATCH_TYPE_BREAK, start, retry_end_l, block_iseq, retry_end_l);
3924 if (PM_NODE_FLAG_P(call_node, PM_CALL_NODE_FLAGS_SAFE_NAVIGATION)) {
3925 PUSH_INSNL(ret, location, jump, end_label);
3926 PUSH_LABEL(ret, else_label);
3927 add_trace_branch_coverage(iseq, ret, &code_location, node_id, 1,
"else", branches);
3928 PUSH_LABEL(ret, end_label);
3931 if (PM_NODE_FLAG_P(call_node, PM_CALL_NODE_FLAGS_ATTRIBUTE_WRITE) && !popped) {
3932 PUSH_INSN(ret, location, pop);
3935 if (popped) PUSH_INSN(ret, location, pop);
3936 ISEQ_COMPILE_DATA(iseq)->current_block = previous_block;
3946 const char *
type = (
const char *) (pm_parser_start(scope_node->parser) + node->
base.
location.
start + 1);
3966#define PUSH_VAL(type) (in_condition ? Qtrue : rb_iseq_defined_string(type))
3969 enum defined_type dtype = DEFINED_NOT_DEFINED;
3972 switch (PM_NODE_TYPE(node)) {
3977 dtype = DEFINED_NIL;
3980 case PM_INSTANCE_VARIABLE_READ_NODE: {
3984 ID name = pm_constant_id_lookup(scope_node, cast->
name);
3986 PUSH_INSN3(ret, location, definedivar,
ID2SYM(name), get_ivar_ic_value(iseq, name), PUSH_VAL(DEFINED_IVAR));
3991 case PM_LOCAL_VARIABLE_READ_NODE:
3994 case PM_IT_LOCAL_VARIABLE_READ_NODE:
3997 dtype = DEFINED_LVAR;
4000 case PM_GLOBAL_VARIABLE_READ_NODE: {
4004 ID name = pm_constant_id_lookup(scope_node, cast->
name);
4006 PUSH_INSN(ret, location, putnil);
4007 PUSH_INSN3(ret, location, defined,
INT2FIX(DEFINED_GVAR),
ID2SYM(name), PUSH_VAL(DEFINED_GVAR));
4012 case PM_CLASS_VARIABLE_READ_NODE: {
4016 ID name = pm_constant_id_lookup(scope_node, cast->
name);
4018 PUSH_INSN(ret, location, putnil);
4019 PUSH_INSN3(ret, location, defined,
INT2FIX(DEFINED_CVAR),
ID2SYM(name), PUSH_VAL(DEFINED_CVAR));
4024 case PM_CONSTANT_READ_NODE: {
4028 ID name = pm_constant_id_lookup(scope_node, cast->
name);
4030 PUSH_INSN(ret, location, putnil);
4031 PUSH_INSN3(ret, location, defined,
INT2FIX(DEFINED_CONST),
ID2SYM(name), PUSH_VAL(DEFINED_CONST));
4039 iseq_set_use_block(ISEQ_BODY(iseq)->local_iseq);
4041 PUSH_INSN(ret, location, putnil);
4042 PUSH_INSN3(ret, location, defined,
INT2FIX(DEFINED_YIELD), 0, PUSH_VAL(DEFINED_YIELD));
4046 case PM_SUPER_NODE: {
4051 if (cast->
block != NULL && !PM_NODE_TYPE_P(cast->
block, PM_BLOCK_ARGUMENT_NODE)) {
4052 dtype = DEFINED_EXPR;
4056 PUSH_INSN(ret, location, putnil);
4057 PUSH_INSN3(ret, location, defined,
INT2FIX(DEFINED_ZSUPER), 0, PUSH_VAL(DEFINED_ZSUPER));
4060 case PM_FORWARDING_SUPER_NODE: {
4065 if (cast->
block != NULL) {
4066 dtype = DEFINED_EXPR;
4070 PUSH_INSN(ret, location, putnil);
4071 PUSH_INSN3(ret, location, defined,
INT2FIX(DEFINED_ZSUPER), 0, PUSH_VAL(DEFINED_ZSUPER));
4078 dtype = DEFINED_SELF;
4084 dtype = DEFINED_TRUE;
4090 dtype = DEFINED_FALSE;
4093 case PM_CALL_AND_WRITE_NODE:
4096 case PM_CALL_OPERATOR_WRITE_NODE:
4099 case PM_CALL_OR_WRITE_NODE:
4102 case PM_CLASS_VARIABLE_AND_WRITE_NODE:
4105 case PM_CLASS_VARIABLE_OPERATOR_WRITE_NODE:
4108 case PM_CLASS_VARIABLE_OR_WRITE_NODE:
4111 case PM_CLASS_VARIABLE_WRITE_NODE:
4114 case PM_CONSTANT_AND_WRITE_NODE:
4117 case PM_CONSTANT_OPERATOR_WRITE_NODE:
4120 case PM_CONSTANT_OR_WRITE_NODE:
4123 case PM_CONSTANT_PATH_AND_WRITE_NODE:
4126 case PM_CONSTANT_PATH_OPERATOR_WRITE_NODE:
4129 case PM_CONSTANT_PATH_OR_WRITE_NODE:
4132 case PM_CONSTANT_PATH_WRITE_NODE:
4135 case PM_CONSTANT_WRITE_NODE:
4138 case PM_GLOBAL_VARIABLE_AND_WRITE_NODE:
4141 case PM_GLOBAL_VARIABLE_OPERATOR_WRITE_NODE:
4144 case PM_GLOBAL_VARIABLE_OR_WRITE_NODE:
4147 case PM_GLOBAL_VARIABLE_WRITE_NODE:
4150 case PM_INDEX_AND_WRITE_NODE:
4153 case PM_INDEX_OPERATOR_WRITE_NODE:
4156 case PM_INDEX_OR_WRITE_NODE:
4159 case PM_INSTANCE_VARIABLE_AND_WRITE_NODE:
4162 case PM_INSTANCE_VARIABLE_OPERATOR_WRITE_NODE:
4165 case PM_INSTANCE_VARIABLE_OR_WRITE_NODE:
4168 case PM_INSTANCE_VARIABLE_WRITE_NODE:
4171 case PM_LOCAL_VARIABLE_AND_WRITE_NODE:
4174 case PM_LOCAL_VARIABLE_OPERATOR_WRITE_NODE:
4177 case PM_LOCAL_VARIABLE_OR_WRITE_NODE:
4180 case PM_LOCAL_VARIABLE_WRITE_NODE:
4183 case PM_MULTI_WRITE_NODE:
4186 dtype = DEFINED_ASGN;
4189 case PM_ALIAS_GLOBAL_VARIABLE_NODE:
4192 case PM_ALIAS_METHOD_NODE:
4201 case PM_CASE_MATCH_NODE:
4213 case PM_DEFINED_NODE:
4216 case PM_FLIP_FLOP_NODE:
4228 case PM_IMAGINARY_NODE:
4231 case PM_INTEGER_NODE:
4234 case PM_INTERPOLATED_MATCH_LAST_LINE_NODE:
4237 case PM_INTERPOLATED_REGULAR_EXPRESSION_NODE:
4240 case PM_INTERPOLATED_STRING_NODE:
4243 case PM_INTERPOLATED_SYMBOL_NODE:
4246 case PM_INTERPOLATED_X_STRING_NODE:
4249 case PM_LAMBDA_NODE:
4252 case PM_MATCH_LAST_LINE_NODE:
4255 case PM_MATCH_PREDICATE_NODE:
4258 case PM_MATCH_REQUIRED_NODE:
4261 case PM_MATCH_WRITE_NODE:
4264 case PM_MODULE_NODE:
4273 case PM_POST_EXECUTION_NODE:
4279 case PM_RATIONAL_NODE:
4285 case PM_REGULAR_EXPRESSION_NODE:
4288 case PM_RESCUE_MODIFIER_NODE:
4294 case PM_RETURN_NODE:
4297 case PM_SINGLETON_CLASS_NODE:
4300 case PM_SOURCE_ENCODING_NODE:
4303 case PM_SOURCE_FILE_NODE:
4306 case PM_SOURCE_LINE_NODE:
4309 case PM_STRING_NODE:
4312 case PM_SYMBOL_NODE:
4318 case PM_UNLESS_NODE:
4327 case PM_X_STRING_NODE:
4330 dtype = DEFINED_EXPR;
4333 case PM_BACK_REFERENCE_READ_NODE: {
4337 VALUE ref = pm_compile_back_reference_ref(scope_node, cast);
4339 PUSH_INSN(ret, location, putnil);
4340 PUSH_INSN3(ret, location, defined,
INT2FIX(DEFINED_REF), ref, PUSH_VAL(DEFINED_GVAR));
4344 case PM_NUMBERED_REFERENCE_READ_NODE: {
4348 VALUE ref = pm_compile_numbered_reference_ref(cast);
4350 PUSH_INSN(ret, location, putnil);
4351 PUSH_INSN3(ret, location, defined,
INT2FIX(DEFINED_REF), ref, PUSH_VAL(DEFINED_GVAR));
4356 case PM_CONSTANT_PATH_NODE: {
4360 ID name = pm_constant_id_lookup(scope_node, cast->
name);
4362 if (cast->
parent != NULL) {
4363 if (!lfinish[1]) lfinish[1] = NEW_LABEL(location.
line);
4364 pm_compile_defined_expr0(iseq, cast->
parent, node_location, ret, popped, scope_node,
true, lfinish,
false);
4366 PUSH_INSNL(ret, location, branchunless, lfinish[1]);
4367 PM_COMPILE(cast->
parent);
4370 PUSH_INSN1(ret, location, putobject,
rb_cObject);
4373 PUSH_INSN3(ret, location, defined,
INT2FIX(DEFINED_CONST_FROM),
ID2SYM(name), PUSH_VAL(DEFINED_CONST));
4377 case PM_BEGIN_NODE: {
4385 dtype = DEFINED_NIL;
4391 pm_compile_defined_expr0(iseq, cast->
statements->
body.
nodes[0], node_location, ret, popped, scope_node, in_condition, lfinish,
false);
4397 dtype = DEFINED_EXPR;
4402 dtype = DEFINED_EXPR;
4407 case PM_PARENTHESES_NODE: {
4412 if (cast->
body == NULL) {
4414 dtype = DEFINED_NIL;
4416 else if (PM_NODE_TYPE_P(cast->
body, PM_STATEMENTS_NODE) && !PM_NODE_FLAG_P(cast, PM_PARENTHESES_NODE_FLAGS_MULTIPLE_STATEMENTS)) {
4419 pm_compile_defined_expr0(iseq, ((
const pm_statements_node_t *) cast->
body)->body.nodes[0], node_location, ret, popped, scope_node, in_condition, lfinish,
false);
4425 dtype = DEFINED_EXPR;
4430 case PM_ARRAY_NODE: {
4436 lfinish[1] = NEW_LABEL(location.
line);
4439 for (
size_t index = 0; index < cast->
elements.
size; index++) {
4440 pm_compile_defined_expr0(iseq, cast->
elements.
nodes[index], node_location, ret, popped, scope_node,
true, lfinish,
false);
4441 PUSH_INSNL(ret, location, branchunless, lfinish[1]);
4444 dtype = DEFINED_EXPR;
4450 case PM_KEYWORD_HASH_NODE: {
4455 if (PM_NODE_TYPE_P(node, PM_HASH_NODE)) {
4462 if (elements->
size > 0 && !lfinish[1]) {
4463 lfinish[1] = NEW_LABEL(location.
line);
4466 for (
size_t index = 0; index < elements->
size; index++) {
4467 pm_compile_defined_expr0(iseq, elements->
nodes[index], node_location, ret, popped, scope_node,
true, lfinish,
false);
4468 PUSH_INSNL(ret, location, branchunless, lfinish[1]);
4471 dtype = DEFINED_EXPR;
4474 case PM_ASSOC_NODE: {
4479 pm_compile_defined_expr0(iseq, cast->
key, node_location, ret, popped, scope_node,
true, lfinish,
false);
4480 PUSH_INSNL(ret, location, branchunless, lfinish[1]);
4481 pm_compile_defined_expr0(iseq, cast->
value, node_location, ret, popped, scope_node,
true, lfinish,
false);
4485 case PM_ASSOC_SPLAT_NODE: {
4490 if (cast->
value == NULL) {
4491 dtype = DEFINED_EXPR;
4495 pm_compile_defined_expr0(iseq, cast->
value, node_location, ret, popped, scope_node,
true, lfinish,
false);
4498 case PM_IMPLICIT_NODE: {
4502 pm_compile_defined_expr0(iseq, cast->
value, node_location, ret, popped, scope_node, in_condition, lfinish,
false);
4505 case PM_CALL_NODE: {
4506#define BLOCK_P(cast) ((cast)->block != NULL && PM_NODE_TYPE_P((cast)->block, PM_BLOCK_NODE))
4512 if (BLOCK_P(cast)) {
4513 dtype = DEFINED_EXPR;
4518 if (!lfinish[1]) lfinish[1] = NEW_LABEL(location.
line);
4519 if (!lfinish[2]) lfinish[2] = NEW_LABEL(location.
line);
4523 pm_compile_defined_expr0(iseq, (
const pm_node_t *) cast->
arguments, node_location, ret, popped, scope_node,
true, lfinish,
false);
4524 PUSH_INSNL(ret, location, branchunless, lfinish[1]);
4527 if (cast->
block && PM_NODE_TYPE_P(cast->
block, PM_BLOCK_ARGUMENT_NODE)) {
4528 pm_compile_defined_expr0(iseq, cast->
block, node_location, ret, popped, scope_node,
true, lfinish,
false);
4529 PUSH_INSNL(ret, location, branchunless, lfinish[1]);
4536 pm_compile_defined_expr0(iseq, cast->
receiver, node_location, ret, popped, scope_node,
true, lfinish,
true);
4537 PUSH_INSNL(ret, location, branchunless, lfinish[2]);
4540 ID method_id = pm_constant_id_lookup(scope_node, receiver->name);
4542 pm_compile_call(iseq, receiver, ret, popped, scope_node, method_id, NULL);
4545 pm_compile_defined_expr0(iseq, cast->
receiver, node_location, ret, popped, scope_node,
true, lfinish,
false);
4546 PUSH_INSNL(ret, location, branchunless, lfinish[1]);
4550 ID method_id = pm_constant_id_lookup(scope_node, cast->
name);
4552 if (explicit_receiver) PUSH_INSN(ret, location, dup);
4553 PUSH_INSN3(ret, location, defined,
INT2FIX(DEFINED_METHOD),
rb_id2sym(method_id), PUSH_VAL(DEFINED_METHOD));
4556 ID method_id = pm_constant_id_lookup(scope_node, cast->
name);
4558 PUSH_INSN(ret, location, putself);
4559 if (explicit_receiver) PUSH_INSN(ret, location, dup);
4561 PUSH_INSN3(ret, location, defined,
INT2FIX(DEFINED_FUNC),
rb_id2sym(method_id), PUSH_VAL(DEFINED_METHOD));
4568 case PM_ARGUMENTS_NODE: {
4573 for (
size_t index = 0; index < cast->
arguments.
size; index++) {
4574 pm_compile_defined_expr0(iseq, cast->
arguments.
nodes[index], node_location, ret, popped, scope_node, in_condition, lfinish,
false);
4575 PUSH_INSNL(ret, location, branchunless, lfinish[1]);
4578 dtype = DEFINED_EXPR;
4581 case PM_BLOCK_ARGUMENT_NODE:
4584 dtype = DEFINED_EXPR;
4586 case PM_FORWARDING_ARGUMENTS_NODE:
4589 dtype = DEFINED_EXPR;
4591 case PM_SPLAT_NODE: {
4597 dtype = DEFINED_EXPR;
4601 pm_compile_defined_expr0(iseq, cast->
expression, node_location, ret, popped, scope_node, in_condition, lfinish,
false);
4603 if (!lfinish[1]) lfinish[1] = NEW_LABEL(location.
line);
4604 PUSH_INSNL(ret, location, branchunless, lfinish[1]);
4606 dtype = DEFINED_EXPR;
4609 case PM_SHAREABLE_CONSTANT_NODE:
4613 pm_compile_defined_expr0(iseq, ((
const pm_shareable_constant_node_t *) node)->write, node_location, ret, popped, scope_node, in_condition, lfinish, explicit_receiver);
4616 case PM_BLOCK_LOCAL_VARIABLE_NODE:
4617 case PM_BLOCK_PARAMETER_NODE:
4618 case PM_BLOCK_PARAMETERS_NODE:
4619 case PM_FORWARDING_PARAMETER_NODE:
4620 case PM_IMPLICIT_REST_NODE:
4621 case PM_IT_PARAMETERS_NODE:
4622 case PM_PARAMETERS_NODE:
4623 case PM_KEYWORD_REST_PARAMETER_NODE:
4624 case PM_NO_KEYWORDS_PARAMETER_NODE:
4625 case PM_NO_BLOCK_PARAMETER_NODE:
4626 case PM_NUMBERED_PARAMETERS_NODE:
4627 case PM_OPTIONAL_KEYWORD_PARAMETER_NODE:
4628 case PM_OPTIONAL_PARAMETER_NODE:
4629 case PM_REQUIRED_KEYWORD_PARAMETER_NODE:
4630 case PM_REQUIRED_PARAMETER_NODE:
4631 case PM_REST_PARAMETER_NODE:
4633 case PM_ALTERNATION_PATTERN_NODE:
4634 case PM_ARRAY_PATTERN_NODE:
4635 case PM_CAPTURE_PATTERN_NODE:
4636 case PM_FIND_PATTERN_NODE:
4637 case PM_HASH_PATTERN_NODE:
4638 case PM_PINNED_EXPRESSION_NODE:
4639 case PM_PINNED_VARIABLE_NODE:
4641 case PM_CALL_TARGET_NODE:
4642 case PM_CLASS_VARIABLE_TARGET_NODE:
4643 case PM_CONSTANT_PATH_TARGET_NODE:
4644 case PM_CONSTANT_TARGET_NODE:
4645 case PM_GLOBAL_VARIABLE_TARGET_NODE:
4646 case PM_INDEX_TARGET_NODE:
4647 case PM_INSTANCE_VARIABLE_TARGET_NODE:
4648 case PM_LOCAL_VARIABLE_TARGET_NODE:
4649 case PM_MULTI_TARGET_NODE:
4652 case PM_ENSURE_NODE:
4654 case PM_RESCUE_NODE:
4658 case PM_EMBEDDED_STATEMENTS_NODE:
4659 case PM_EMBEDDED_VARIABLE_NODE:
4660 case PM_ERROR_RECOVERY_NODE:
4661 case PM_PRE_EXECUTION_NODE:
4662 case PM_PROGRAM_NODE:
4664 case PM_STATEMENTS_NODE:
4665 rb_bug(
"Unreachable node in defined?: %s", pm_node_type(PM_NODE_TYPE(node)));
4669 PUSH_INSN1(ret, location, putobject, PUSH_VAL(dtype));
4678 pm_compile_defined_expr0(iseq, node, node_location, ret, popped, scope_node, in_condition, lfinish,
false);
4681 LABEL *lstart = NEW_LABEL(node_location->
line);
4682 LABEL *lend = NEW_LABEL(node_location->
line);
4685 rb_iseq_new_with_callback_new_callback(build_defined_rescue_iseq, NULL);
4687 const rb_iseq_t *rescue = new_child_iseq_with_callback(
4696 lstart->rescued = LABEL_RESCUE_BEG;
4697 lend->rescued = LABEL_RESCUE_END;
4699 APPEND_LABEL(ret, lcur, lstart);
4700 PUSH_LABEL(ret, lend);
4701 PUSH_CATCH_ENTRY(CATCH_TYPE_RESCUE, lstart, lend, rescue, lfinish[1]);
4711 lfinish[0] = NEW_LABEL(node_location->
line);
4716 pm_defined_expr(iseq, node, node_location, ret, popped, scope_node, in_condition, lfinish);
4720 ELEM_INSERT_NEXT(last, &new_insn_body(iseq, node_location->
line, node_location->
node_id, BIN(putnil), 0)->link);
4721 PUSH_INSN(ret, *node_location, swap);
4723 if (lfinish[2]) PUSH_LABEL(ret, lfinish[2]);
4724 PUSH_INSN(ret, *node_location, pop);
4725 PUSH_LABEL(ret, lfinish[1]);
4729 PUSH_LABEL(ret, lfinish[0]);
4740 ISEQ_COMPILE_DATA(iseq)->ensure_node_stack;
4742 DECL_ANCHOR(ensure);
4745 if (enlp->erange != NULL) {
4746 DECL_ANCHOR(ensure_part);
4747 LABEL *lstart = NEW_LABEL(0);
4748 LABEL *lend = NEW_LABEL(0);
4750 add_ensure_range(iseq, enlp->erange, lstart, lend);
4752 ISEQ_COMPILE_DATA(iseq)->ensure_node_stack = enlp->prev;
4753 PUSH_LABEL(ensure_part, lstart);
4755 PM_COMPILE_INTO_ANCHOR(ensure_part, (
const pm_node_t *) enlp->ensure_node);
4756 PUSH_LABEL(ensure_part, lend);
4757 PUSH_SEQ(ensure, ensure_part);
4766 ISEQ_COMPILE_DATA(iseq)->ensure_node_stack = prev_enlp;
4767 PUSH_SEQ(ret, ensure);
4780 RUBY_ASSERT((constant_id & PM_SPECIAL_CONSTANT_FLAG) == 0);
4782 ID local = pm_constant_id_lookup(scope_node, constant_id);
4783 local_table_for_iseq->ids[local_index] = local;
4784 pm_index_lookup_table_insert(index_lookup_table, constant_id, local_index);
4793 local_table_for_iseq->ids[local_index] = local_name;
4794 pm_index_lookup_table_insert(index_lookup_table, special_id, local_index);
4806 for (
size_t index = 0; index < node->
lefts.
size; index++) {
4809 if (PM_NODE_TYPE_P(left, PM_REQUIRED_PARAMETER_NODE)) {
4810 if (!PM_NODE_FLAG_P(left, PM_PARAMETER_FLAGS_REPEATED_PARAMETER)) {
4811 pm_insert_local_index(((
const pm_required_parameter_node_t *) left)->name, local_index, index_lookup_table, local_table_for_iseq, scope_node);
4816 RUBY_ASSERT(PM_NODE_TYPE_P(left, PM_MULTI_TARGET_NODE));
4817 local_index = pm_compile_destructured_param_locals((
const pm_multi_target_node_t *) left, index_lookup_table, local_table_for_iseq, scope_node, local_index);
4821 if (node->
rest != NULL && PM_NODE_TYPE_P(node->
rest, PM_SPLAT_NODE)) {
4824 if (rest->expression != NULL) {
4825 RUBY_ASSERT(PM_NODE_TYPE_P(rest->expression, PM_REQUIRED_PARAMETER_NODE));
4827 if (!PM_NODE_FLAG_P(rest->expression, PM_PARAMETER_FLAGS_REPEATED_PARAMETER)) {
4828 pm_insert_local_index(((
const pm_required_parameter_node_t *) rest->expression)->name, local_index, index_lookup_table, local_table_for_iseq, scope_node);
4834 for (
size_t index = 0; index < node->
rights.
size; index++) {
4837 if (PM_NODE_TYPE_P(right, PM_REQUIRED_PARAMETER_NODE)) {
4838 if (!PM_NODE_FLAG_P(right, PM_PARAMETER_FLAGS_REPEATED_PARAMETER)) {
4839 pm_insert_local_index(((
const pm_required_parameter_node_t *) right)->name, local_index, index_lookup_table, local_table_for_iseq, scope_node);
4844 RUBY_ASSERT(PM_NODE_TYPE_P(right, PM_MULTI_TARGET_NODE));
4845 local_index = pm_compile_destructured_param_locals((
const pm_multi_target_node_t *) right, index_lookup_table, local_table_for_iseq, scope_node, local_index);
4861 PUSH_SETLOCAL(ret, location, index.index, index.level);
4876 bool has_rest = (node->
rest && PM_NODE_TYPE_P(node->
rest, PM_SPLAT_NODE) && (((
const pm_splat_node_t *) node->
rest)->expression) != NULL);
4879 int flag = (has_rest || has_rights) ? 1 : 0;
4882 for (
size_t index = 0; index < node->
lefts.
size; index++) {
4885 if (PM_NODE_TYPE_P(left, PM_REQUIRED_PARAMETER_NODE)) {
4889 RUBY_ASSERT(PM_NODE_TYPE_P(left, PM_MULTI_TARGET_NODE));
4900 RUBY_ASSERT(PM_NODE_TYPE_P(rest, PM_REQUIRED_PARAMETER_NODE));
4910 for (
size_t index = 0; index < node->
rights.
size; index++) {
4913 if (PM_NODE_TYPE_P(right, PM_REQUIRED_PARAMETER_NODE)) {
4917 RUBY_ASSERT(PM_NODE_TYPE_P(right, PM_MULTI_TARGET_NODE));
4977 node->stack_index = state->stack_size + 1;
4978 node->stack_size = stack_size;
4979 node->position = state->position;
4982 if (state->head == NULL) {
4987 state->tail->next = node;
4991 state->stack_size += stack_size;
5004 if (state->stack_size == 0)
return;
5009 while (current != NULL) {
5010 VALUE offset =
INT2FIX(state->stack_size - current->stack_index + current->position);
5011 current->topn->operands[0] = offset;
5017 if (current->stack_size > 1) {
5018 INSN *insn = current->topn;
5020 for (
size_t index = 1; index < current->stack_size; index += 1) {
5024 insn = (
INSN *) element;
5027 insn->operands[0] = offset;
5032 current = current->next;
5034 SIZED_FREE(previous);
5074 switch (PM_NODE_TYPE(node)) {
5075 case PM_LOCAL_VARIABLE_TARGET_NODE: {
5084 PUSH_SETLOCAL(writes, location, index.index, index.level);
5087 case PM_CLASS_VARIABLE_TARGET_NODE: {
5094 ID name = pm_constant_id_lookup(scope_node, cast->
name);
5097 PUSH_INSN2(writes, location, setclassvariable, operand, get_cvar_ic_value(iseq, name));
5100 case PM_CONSTANT_TARGET_NODE: {
5107 ID name = pm_constant_id_lookup(scope_node, cast->
name);
5110 PUSH_INSN1(writes, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_CONST_BASE));
5111 PUSH_INSN1(writes, location, setconstant, operand);
5114 case PM_GLOBAL_VARIABLE_TARGET_NODE: {
5121 ID name = pm_constant_id_lookup(scope_node, cast->
name);
5124 PUSH_INSN1(writes, location, setglobal, operand);
5127 case PM_INSTANCE_VARIABLE_TARGET_NODE: {
5134 ID name = pm_constant_id_lookup(scope_node, cast->
name);
5137 PUSH_INSN2(writes, location, setinstancevariable, operand, get_ivar_ic_value(iseq, name));
5140 case PM_CONSTANT_PATH_TARGET_NODE: {
5150 ID name = pm_constant_id_lookup(scope_node, cast->
name);
5152 if (cast->
parent != NULL) {
5153 pm_compile_node(iseq, cast->
parent, parents,
false, scope_node);
5156 PUSH_INSN1(parents, location, putobject,
rb_cObject);
5159 if (state == NULL) {
5160 PUSH_INSN(writes, location, swap);
5163 PUSH_INSN1(writes, location, topn,
INT2FIX(1));
5164 pm_multi_target_state_push(state, (
INSN *) LAST_ELEMENT(writes), 1);
5168 PUSH_INSN1(writes, location, setconstant, operand);
5170 if (state != NULL) {
5171 PUSH_INSN(cleanup, location, pop);
5176 case PM_CALL_TARGET_NODE: {
5186 ID method_id = pm_constant_id_lookup(scope_node, cast->
name);
5188 pm_compile_node(iseq, cast->
receiver, parents,
false, scope_node);
5190 LABEL *safe_label = NULL;
5191 if (PM_NODE_FLAG_P(cast, PM_CALL_NODE_FLAGS_SAFE_NAVIGATION)) {
5192 safe_label = NEW_LABEL(location.
line);
5193 PUSH_INSN(parents, location, dup);
5194 PUSH_INSNL(parents, location, branchnil, safe_label);
5197 if (state != NULL) {
5198 PUSH_INSN1(writes, location, topn,
INT2FIX(1));
5199 pm_multi_target_state_push(state, (
INSN *) LAST_ELEMENT(writes), 1);
5200 PUSH_INSN(writes, location, swap);
5203 int flags = VM_CALL_ARGS_SIMPLE;
5204 if (PM_NODE_FLAG_P(cast, PM_CALL_NODE_FLAGS_IGNORE_VISIBILITY)) flags |= VM_CALL_FCALL;
5206 PUSH_SEND_WITH_FLAG(writes, location, method_id,
INT2FIX(1),
INT2FIX(flags));
5207 if (safe_label != NULL && state == NULL) PUSH_LABEL(writes, safe_label);
5208 PUSH_INSN(writes, location, pop);
5209 if (safe_label != NULL && state != NULL) PUSH_LABEL(writes, safe_label);
5211 if (state != NULL) {
5212 PUSH_INSN(cleanup, location, pop);
5217 case PM_INDEX_TARGET_NODE: {
5229 pm_compile_node(iseq, cast->
receiver, parents,
false, scope_node);
5233 int argc = pm_setup_args(cast->
arguments, (
const pm_node_t *) cast->
block, &flags, &kwargs, iseq, parents, scope_node, &location);
5235 if (state != NULL) {
5236 PUSH_INSN1(writes, location, topn,
INT2FIX(argc + 1));
5237 pm_multi_target_state_push(state, (
INSN *) LAST_ELEMENT(writes), argc + 1);
5240 PUSH_INSN(writes, location, swap);
5243 for (
int index = 0; index < argc; index++) {
5244 PUSH_INSN1(writes, location, topn,
INT2FIX(argc + 1));
5246 PUSH_INSN1(writes, location, topn,
INT2FIX(argc + 1));
5254 int ci_argc = argc + 1;
5255 if (flags & VM_CALL_ARGS_SPLAT) {
5257 PUSH_INSN1(writes, location, newarray,
INT2FIX(1));
5258 PUSH_INSN(writes, location, concatarray);
5261 PUSH_SEND_R(writes, location, idASET,
INT2NUM(ci_argc), NULL,
INT2FIX(flags), kwargs);
5262 PUSH_INSN(writes, location, pop);
5264 if (state != NULL) {
5266 PUSH_INSN(writes, location, pop);
5269 for (
int index = 0; index < argc + 1; index++) {
5270 PUSH_INSN(cleanup, location, pop);
5276 case PM_MULTI_TARGET_NODE: {
5283 size_t before_position;
5284 if (state != NULL) {
5285 before_position = state->position;
5289 pm_compile_multi_target_node(iseq, node, parents, writes, cleanup, scope_node, state);
5290 if (state != NULL) state->position = before_position;
5294 case PM_SPLAT_NODE: {
5303 pm_compile_target_node(iseq, cast->
expression, parents, writes, cleanup, scope_node, state);
5309 rb_bug(
"Unexpected node type: %s", pm_node_type(PM_NODE_TYPE(node)));
5327 switch (PM_NODE_TYPE(node)) {
5328 case PM_MULTI_TARGET_NODE: {
5330 lefts = &cast->
lefts;
5335 case PM_MULTI_WRITE_NODE: {
5337 lefts = &cast->
lefts;
5343 rb_bug(
"Unsupported node %s", pm_node_type(PM_NODE_TYPE(node)));
5347 bool has_rest = (rest != NULL) && PM_NODE_TYPE_P(rest, PM_SPLAT_NODE) && ((
const pm_splat_node_t *) rest)->expression != NULL;
5348 bool has_posts = rights->
size > 0;
5353 PUSH_INSN2(writes, location, expandarray,
INT2FIX(lefts->
size),
INT2FIX((has_rest || has_posts) ? 1 : 0));
5359 if (state == NULL) state = &target_state;
5361 size_t base_position = state->position;
5362 size_t splat_position = (has_rest || has_posts) ? 1 : 0;
5365 for (
size_t index = 0; index < lefts->
size; index++) {
5367 state->position = lefts->
size - index + splat_position + base_position;
5368 pm_compile_target_node(iseq, target, parents, writes, cleanup, scope_node, state);
5374 state->position = 1 + rights->
size + base_position;
5380 pm_compile_target_node(iseq, target, parents, writes, cleanup, scope_node, state);
5385 if (!has_rest && rest != NULL) {
5389 for (
size_t index = 0; index < rights->
size; index++) {
5391 state->position = rights->
size - index + base_position;
5392 pm_compile_target_node(iseq, target, parents, writes, cleanup, scope_node, state);
5407 switch (PM_NODE_TYPE(node)) {
5408 case PM_LOCAL_VARIABLE_TARGET_NODE: {
5411 PUSH_GETLOCAL(ret, location, 1, 0);
5412 pm_compile_target_node(iseq, node, ret, ret, ret, scope_node, NULL);
5415 case PM_CLASS_VARIABLE_TARGET_NODE:
5416 case PM_CONSTANT_TARGET_NODE:
5417 case PM_GLOBAL_VARIABLE_TARGET_NODE:
5418 case PM_INSTANCE_VARIABLE_TARGET_NODE:
5419 case PM_CONSTANT_PATH_TARGET_NODE:
5420 case PM_CALL_TARGET_NODE:
5421 case PM_INDEX_TARGET_NODE: {
5425 DECL_ANCHOR(writes);
5426 DECL_ANCHOR(cleanup);
5430 pm_compile_target_node(iseq, node, ret, writes, cleanup, scope_node, &state);
5432 PUSH_GETLOCAL(ret, location, 1, 0);
5435 PUSH_SEQ(ret, writes);
5436 PUSH_SEQ(ret, cleanup);
5438 pm_multi_target_state_update(&state);
5442 case PM_MULTI_TARGET_NODE: {
5443 DECL_ANCHOR(writes);
5444 DECL_ANCHOR(cleanup);
5446 pm_compile_target_node(iseq, node, ret, writes, cleanup, scope_node, NULL);
5448 LABEL *not_single = NEW_LABEL(location.
line);
5449 LABEL *not_ary = NEW_LABEL(location.
line);
5457 PUSH_GETLOCAL(ret, location, 1, 0);
5458 PUSH_INSN(ret, location, dup);
5459 PUSH_CALL(ret, location, idLength,
INT2FIX(0));
5460 PUSH_INSN1(ret, location, putobject,
INT2FIX(1));
5461 PUSH_CALL(ret, location, idEq,
INT2FIX(1));
5462 PUSH_INSNL(ret, location, branchunless, not_single);
5463 PUSH_INSN(ret, location, dup);
5464 PUSH_INSN1(ret, location, putobject,
INT2FIX(0));
5465 PUSH_CALL(ret, location, idAREF,
INT2FIX(1));
5466 PUSH_INSN1(ret, location, putobject,
rb_cArray);
5467 PUSH_INSN(ret, location, swap);
5468 PUSH_CALL(ret, location, rb_intern(
"try_convert"),
INT2FIX(1));
5469 PUSH_INSN(ret, location, dup);
5470 PUSH_INSNL(ret, location, branchunless, not_ary);
5471 PUSH_INSN(ret, location, swap);
5473 PUSH_LABEL(ret, not_ary);
5474 PUSH_INSN(ret, location, pop);
5476 PUSH_LABEL(ret, not_single);
5478 if (PM_NODE_TYPE_P(node, PM_SPLAT_NODE)) {
5483 PUSH_SEQ(ret, writes);
5484 PUSH_SEQ(ret, cleanup);
5488 rb_bug(
"Unexpected node type for index in for node: %s", pm_node_type(PM_NODE_TYPE(node)));
5496 LABEL *lstart = NEW_LABEL(node_location->
line);
5497 LABEL *lend = NEW_LABEL(node_location->
line);
5498 LABEL *lcont = NEW_LABEL(node_location->
line);
5503 rb_iseq_t *rescue_iseq = NEW_CHILD_ISEQ(
5510 pm_scope_node_destroy(&rescue_scope_node);
5512 lstart->rescued = LABEL_RESCUE_BEG;
5513 lend->rescued = LABEL_RESCUE_END;
5514 PUSH_LABEL(ret, lstart);
5516 bool prev_in_rescue = ISEQ_COMPILE_DATA(iseq)->in_rescue;
5517 ISEQ_COMPILE_DATA(iseq)->in_rescue =
true;
5524 PUSH_INSN(ret, location, putnil);
5527 ISEQ_COMPILE_DATA(iseq)->in_rescue = prev_in_rescue;
5528 PUSH_LABEL(ret, lend);
5531 if (!popped) PUSH_INSN(ret, *node_location, pop);
5535 PUSH_INSN(ret, *node_location, nop);
5536 PUSH_LABEL(ret, lcont);
5538 if (popped) PUSH_INSN(ret, *node_location, pop);
5539 PUSH_CATCH_ENTRY(CATCH_TYPE_RESCUE, lstart, lend, rescue_iseq, lcont);
5540 PUSH_CATCH_ENTRY(CATCH_TYPE_RETRY, lend, lcont, NULL, lstart);
5549 if (statements != NULL) {
5550 location = PM_NODE_START_LOCATION(statements);
5553 location = *node_location;
5556 LABEL *lstart = NEW_LABEL(location.
line);
5558 LABEL *lcont = NEW_LABEL(location.
line);
5565 if (statements != NULL) {
5566 pm_compile_node(iseq, (
const pm_node_t *) statements, ensr,
true, scope_node);
5570 bool last_leave = last && IS_INSN(last) && IS_INSN_ID(last, leave);
5575 push_ensure_entry(iseq, &enl, &er, (
void *) cast->
ensure_clause);
5577 PUSH_LABEL(ret, lstart);
5579 pm_compile_rescue(iseq, cast, node_location, ret, popped | last_leave, scope_node);
5582 pm_compile_node(iseq, (
const pm_node_t *) cast->
statements, ret, popped | last_leave, scope_node);
5584 else if (!(popped | last_leave)) {
5585 PUSH_SYNTHETIC_PUTNIL(ret, iseq);
5588 PUSH_LABEL(ret, lend);
5589 PUSH_SEQ(ret, ensr);
5590 if (!popped && last_leave) PUSH_INSN(ret, *node_location, putnil);
5591 PUSH_LABEL(ret, lcont);
5592 if (last_leave) PUSH_INSN(ret, *node_location, pop);
5604 pm_scope_node_destroy(&next_scope_node);
5606 erange = ISEQ_COMPILE_DATA(iseq)->ensure_node_stack->erange;
5607 if (lstart->link.next != &lend->link) {
5609 PUSH_CATCH_ENTRY(CATCH_TYPE_ENSURE, erange->begin, erange->end, child_iseq, lcont);
5610 erange = erange->next;
5613 ISEQ_COMPILE_DATA(iseq)->ensure_node_stack = enl.prev;
5624 !PM_NODE_FLAG_P(node, PM_CALL_NODE_FLAGS_SAFE_NAVIGATION) &&
5626 PM_NODE_TYPE_P(node->
receiver, PM_STRING_NODE) &&
5628 node->
block == NULL &&
5629 ISEQ_COMPILE_DATA(iseq)->option->specialized_instruction
5642 if (ISEQ_COMPILE_DATA(iseq)->option->inline_const_cache) {
5643 ISEQ_BODY(iseq)->ic_size++;
5644 VALUE segments = rb_ary_new_from_args(1, name);
5646 PUSH_INSN1(ret, location, opt_getconstant_path, segments);
5649 PUSH_INSN(ret, location, putnil);
5650 PUSH_INSN1(ret, location, putobject,
Qtrue);
5651 PUSH_INSN1(ret, location, getconstant, name);
5665 switch (PM_NODE_TYPE(node)) {
5666 case PM_CONSTANT_READ_NODE: {
5670 rb_ary_unshift(parts, name);
5673 case PM_CONSTANT_PATH_NODE: {
5677 rb_ary_unshift(parts, name);
5678 if (cast->
parent == NULL) {
5679 rb_ary_unshift(parts,
ID2SYM(idNULL));
5702 switch (PM_NODE_TYPE(node)) {
5703 case PM_CONSTANT_READ_NODE: {
5707 PUSH_INSN1(body, location, putobject,
Qtrue);
5708 PUSH_INSN1(body, location, getconstant, name);
5711 case PM_CONSTANT_PATH_NODE: {
5715 if (cast->
parent == NULL) {
5716 PUSH_INSN(body, location, pop);
5717 PUSH_INSN1(body, location, putobject,
rb_cObject);
5718 PUSH_INSN1(body, location, putobject,
Qtrue);
5719 PUSH_INSN1(body, location, getconstant, name);
5722 pm_compile_constant_path(iseq, cast->
parent, prefix, body,
false, scope_node);
5723 PUSH_INSN1(body, location, putobject,
Qfalse);
5724 PUSH_INSN1(body, location, getconstant, name);
5729 PM_COMPILE_INTO_ANCHOR(prefix, node);
5740 switch (PM_NODE_TYPE(node)) {
5744 case PM_SYMBOL_NODE:
5745 case PM_REGULAR_EXPRESSION_NODE:
5746 case PM_SOURCE_LINE_NODE:
5747 case PM_INTEGER_NODE:
5749 case PM_RATIONAL_NODE:
5750 case PM_IMAGINARY_NODE:
5751 case PM_SOURCE_ENCODING_NODE:
5752 return pm_static_literal_value(iseq, node, scope_node);
5753 case PM_STRING_NODE:
5754 return parse_static_literal_string(iseq, scope_node, node, &((
const pm_string_node_t *) node)->unescaped);
5755 case PM_SOURCE_FILE_NODE:
5757 case PM_ARRAY_NODE: {
5761 for (
size_t index = 0; index < cast->
elements.
size; index++) {
5762 VALUE element = pm_compile_shareable_constant_literal(iseq, cast->
elements.
nodes[index], scope_node);
5770 case PM_HASH_NODE: {
5774 for (
size_t index = 0; index < cast->
elements.
size; index++) {
5776 if (!PM_NODE_TYPE_P(element, PM_ASSOC_NODE))
return Qundef;
5780 VALUE key = pm_compile_shareable_constant_literal(iseq, assoc->
key, scope_node);
5783 VALUE value = pm_compile_shareable_constant_literal(iseq, assoc->
value, scope_node);
5786 rb_hash_aset(result, key, value);
5803 VALUE literal = pm_compile_shareable_constant_literal(iseq, node, scope_node);
5806 PUSH_INSN1(ret, location, putobject, literal);
5811 switch (PM_NODE_TYPE(node)) {
5812 case PM_ARRAY_NODE: {
5816 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
5819 for (
size_t index = 0; index < cast->
elements.
size; index++) {
5820 pm_compile_shareable_constant_value(iseq, cast->
elements.
nodes[index], shareability, path, ret, scope_node,
false);
5826 ID method_id = (shareability & PM_SHAREABLE_CONSTANT_NODE_FLAGS_EXPERIMENTAL_COPY) ? rb_intern(
"make_shareable_copy") : rb_intern(
"make_shareable");
5827 PUSH_SEND_WITH_FLAG(ret, location, method_id,
INT2FIX(1),
INT2FIX(VM_CALL_ARGS_SIMPLE));
5832 case PM_HASH_NODE: {
5836 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
5839 pm_compile_hash_elements(iseq, (
const pm_node_t *) cast, &cast->elements, shareability, path,
false, ret, scope_node);
5842 ID method_id = (shareability & PM_SHAREABLE_CONSTANT_NODE_FLAGS_EXPERIMENTAL_COPY) ? rb_intern(
"make_shareable_copy") : rb_intern(
"make_shareable");
5843 PUSH_SEND_WITH_FLAG(ret, location, method_id,
INT2FIX(1),
INT2FIX(VM_CALL_ARGS_SIMPLE));
5849 DECL_ANCHOR(value_seq);
5851 pm_compile_node(iseq, node, value_seq,
false, scope_node);
5852 if (PM_NODE_TYPE_P(node, PM_INTERPOLATED_STRING_NODE)) {
5853 PUSH_SEND_WITH_FLAG(value_seq, location, idUMinus,
INT2FIX(0),
INT2FIX(VM_CALL_ARGS_SIMPLE));
5856 if (shareability & PM_SHAREABLE_CONSTANT_NODE_FLAGS_LITERAL) {
5857 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
5858 PUSH_SEQ(ret, value_seq);
5862 PUSH_INSN1(ret, location, putobject, path);
5863 PUSH_SEND_WITH_FLAG(ret, location, rb_intern(
"ensure_shareable"),
INT2FIX(2),
INT2FIX(VM_CALL_ARGS_SIMPLE));
5865 else if (shareability & PM_SHAREABLE_CONSTANT_NODE_FLAGS_EXPERIMENTAL_COPY) {
5866 if (top) PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
5867 PUSH_SEQ(ret, value_seq);
5868 if (top) PUSH_SEND_WITH_FLAG(ret, location, rb_intern(
"make_shareable_copy"),
INT2FIX(1),
INT2FIX(VM_CALL_ARGS_SIMPLE));
5870 else if (shareability & PM_SHAREABLE_CONSTANT_NODE_FLAGS_EXPERIMENTAL_EVERYTHING) {
5871 if (top) PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
5872 PUSH_SEQ(ret, value_seq);
5873 if (top) PUSH_SEND_WITH_FLAG(ret, location, rb_intern(
"make_shareable"),
INT2FIX(1),
INT2FIX(VM_CALL_ARGS_SIMPLE));
5889 ID name_id = pm_constant_id_lookup(scope_node, node->
name);
5891 if (shareability != 0) {
5892 pm_compile_shareable_constant_value(iseq, node->
value, shareability, rb_id2str(name_id), ret, scope_node,
true);
5895 PM_COMPILE_NOT_POPPED(node->
value);
5898 if (!popped) PUSH_INSN(ret, location, dup);
5899 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_CONST_BASE));
5902 PUSH_INSN1(ret, location, setconstant, operand);
5915 LABEL *end_label = NEW_LABEL(location.
line);
5917 pm_compile_constant_read(iseq, name, &node->
name_loc, location.
node_id, ret, scope_node);
5918 if (!popped) PUSH_INSN(ret, location, dup);
5920 PUSH_INSNL(ret, location, branchunless, end_label);
5921 if (!popped) PUSH_INSN(ret, location, pop);
5923 if (shareability != 0) {
5924 pm_compile_shareable_constant_value(iseq, node->
value, shareability, name, ret, scope_node,
true);
5927 PM_COMPILE_NOT_POPPED(node->
value);
5930 if (!popped) PUSH_INSN(ret, location, dup);
5931 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_CONST_BASE));
5932 PUSH_INSN1(ret, location, setconstant, name);
5933 PUSH_LABEL(ret, end_label);
5946 LABEL *set_label = NEW_LABEL(location.
line);
5947 LABEL *end_label = NEW_LABEL(location.
line);
5949 PUSH_INSN(ret, location, putnil);
5950 PUSH_INSN3(ret, location, defined,
INT2FIX(DEFINED_CONST), name,
Qtrue);
5951 PUSH_INSNL(ret, location, branchunless, set_label);
5953 pm_compile_constant_read(iseq, name, &node->
name_loc, location.
node_id, ret, scope_node);
5954 if (!popped) PUSH_INSN(ret, location, dup);
5956 PUSH_INSNL(ret, location, branchif, end_label);
5957 if (!popped) PUSH_INSN(ret, location, pop);
5958 PUSH_LABEL(ret, set_label);
5960 if (shareability != 0) {
5961 pm_compile_shareable_constant_value(iseq, node->
value, shareability, name, ret, scope_node,
true);
5964 PM_COMPILE_NOT_POPPED(node->
value);
5967 if (!popped) PUSH_INSN(ret, location, dup);
5968 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_CONST_BASE));
5969 PUSH_INSN1(ret, location, setconstant, name);
5970 PUSH_LABEL(ret, end_label);
5985 pm_compile_constant_read(iseq, name, &node->
name_loc, location.
node_id, ret, scope_node);
5987 if (shareability != 0) {
5988 pm_compile_shareable_constant_value(iseq, node->
value, shareability, name, ret, scope_node,
true);
5991 PM_COMPILE_NOT_POPPED(node->
value);
5994 PUSH_SEND_WITH_FLAG(ret, location, method_id,
INT2NUM(1),
INT2FIX(VM_CALL_ARGS_SIMPLE));
5995 if (!popped) PUSH_INSN(ret, location, dup);
5997 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_CONST_BASE));
5998 PUSH_INSN1(ret, location, setconstant, name);
6009 rb_ary_push(parts, rb_id2str(pm_constant_id_lookup(scope_node, node->
name)));
6012 while (current != NULL && PM_NODE_TYPE_P(current, PM_CONSTANT_PATH_NODE)) {
6014 rb_ary_unshift(parts, rb_id2str(pm_constant_id_lookup(scope_node, cast->
name)));
6018 if (current == NULL) {
6019 rb_ary_unshift(parts, rb_id2str(idNULL));
6021 else if (PM_NODE_TYPE_P(current, PM_CONSTANT_READ_NODE)) {
6022 rb_ary_unshift(parts, rb_id2str(pm_constant_id_lookup(scope_node, ((
const pm_constant_read_node_t *) current)->name)));
6046 PUSH_INSN1(ret, location, putobject,
rb_cObject);
6049 if (shareability != 0) {
6050 pm_compile_shareable_constant_value(iseq, node->
value, shareability, pm_constant_path_path(node->
target, scope_node), ret, scope_node,
true);
6053 PM_COMPILE_NOT_POPPED(node->
value);
6057 PUSH_INSN(ret, location, swap);
6058 PUSH_INSN1(ret, location, topn,
INT2FIX(1));
6061 PUSH_INSN(ret, location, swap);
6062 PUSH_INSN1(ret, location, setconstant, name);
6079 PM_COMPILE_NOT_POPPED(target->
parent);
6082 PUSH_INSN1(ret, location, putobject,
rb_cObject);
6085 PUSH_INSN(ret, location, dup);
6086 PUSH_INSN1(ret, location, putobject,
Qtrue);
6087 PUSH_INSN1(ret, location, getconstant, name);
6089 if (!popped) PUSH_INSN(ret, location, dup);
6090 PUSH_INSNL(ret, location, branchunless, lfin);
6092 if (!popped) PUSH_INSN(ret, location, pop);
6094 if (shareability != 0) {
6095 pm_compile_shareable_constant_value(iseq, node->
value, shareability, pm_constant_path_path(node->
target, scope_node), ret, scope_node,
true);
6098 PM_COMPILE_NOT_POPPED(node->
value);
6102 PUSH_INSN1(ret, location, topn,
INT2FIX(1));
6105 PUSH_INSN1(ret, location, dupn,
INT2FIX(2));
6106 PUSH_INSN(ret, location, swap);
6109 PUSH_INSN1(ret, location, setconstant, name);
6110 PUSH_LABEL(ret, lfin);
6112 if (!popped) PUSH_INSN(ret, location, swap);
6113 PUSH_INSN(ret, location, pop);
6127 LABEL *lassign = NEW_LABEL(location.
line);
6131 PM_COMPILE_NOT_POPPED(target->
parent);
6134 PUSH_INSN1(ret, location, putobject,
rb_cObject);
6137 PUSH_INSN(ret, location, dup);
6138 PUSH_INSN3(ret, location, defined,
INT2FIX(DEFINED_CONST_FROM), name,
Qtrue);
6139 PUSH_INSNL(ret, location, branchunless, lassign);
6141 PUSH_INSN(ret, location, dup);
6142 PUSH_INSN1(ret, location, putobject,
Qtrue);
6143 PUSH_INSN1(ret, location, getconstant, name);
6145 if (!popped) PUSH_INSN(ret, location, dup);
6146 PUSH_INSNL(ret, location, branchif, lfin);
6148 if (!popped) PUSH_INSN(ret, location, pop);
6149 PUSH_LABEL(ret, lassign);
6151 if (shareability != 0) {
6152 pm_compile_shareable_constant_value(iseq, node->
value, shareability, pm_constant_path_path(node->
target, scope_node), ret, scope_node,
true);
6155 PM_COMPILE_NOT_POPPED(node->
value);
6159 PUSH_INSN1(ret, location, topn,
INT2FIX(1));
6162 PUSH_INSN1(ret, location, dupn,
INT2FIX(2));
6163 PUSH_INSN(ret, location, swap);
6166 PUSH_INSN1(ret, location, setconstant, name);
6167 PUSH_LABEL(ret, lfin);
6169 if (!popped) PUSH_INSN(ret, location, swap);
6170 PUSH_INSN(ret, location, pop);
6187 PM_COMPILE_NOT_POPPED(target->
parent);
6190 PUSH_INSN1(ret, location, putobject,
rb_cObject);
6193 PUSH_INSN(ret, location, dup);
6194 PUSH_INSN1(ret, location, putobject,
Qtrue);
6195 PUSH_INSN1(ret, location, getconstant, name);
6197 if (shareability != 0) {
6198 pm_compile_shareable_constant_value(iseq, node->
value, shareability, pm_constant_path_path(node->
target, scope_node), ret, scope_node,
true);
6201 PM_COMPILE_NOT_POPPED(node->
value);
6204 PUSH_CALL(ret, location, method_id,
INT2FIX(1));
6205 PUSH_INSN(ret, location, swap);
6208 PUSH_INSN1(ret, location, topn,
INT2FIX(1));
6209 PUSH_INSN(ret, location, swap);
6212 PUSH_INSN1(ret, location, setconstant, name);
6221#define PM_CONTAINER_P(node) (PM_NODE_TYPE_P(node, PM_ARRAY_NODE) || PM_NODE_TYPE_P(node, PM_HASH_NODE) || PM_NODE_TYPE_P(node, PM_RANGE_NODE))
6240 bool trailing_comma =
false;
6242 if (PM_NODE_TYPE_P(scope_node->ast_node, PM_CLASS_NODE) || PM_NODE_TYPE_P(scope_node->ast_node, PM_MODULE_NODE)) {
6246 if (scope_node->parameters != NULL) {
6247 switch (PM_NODE_TYPE(scope_node->parameters)) {
6248 case PM_BLOCK_PARAMETERS_NODE: {
6250 parameters_node = cast->parameters;
6251 block_locals = &cast->locals;
6253 if (parameters_node) {
6254 if (parameters_node->
rest && PM_NODE_TYPE_P(parameters_node->
rest, PM_IMPLICIT_REST_NODE)) {
6255 trailing_comma =
true;
6260 case PM_PARAMETERS_NODE: {
6264 case PM_NUMBERED_PARAMETERS_NODE: {
6266 body->param.lead_num = maximum;
6267 body->param.flags.ambiguous_param0 = maximum == 1;
6270 case PM_IT_PARAMETERS_NODE:
6271 body->param.lead_num = 1;
6272 body->param.flags.ambiguous_param0 =
true;
6275 rb_bug(
"Unexpected node type for parameters: %s", pm_node_type(PM_NODE_TYPE(scope_node->parameters)));
6279 struct rb_iseq_param_keyword *keyword = NULL;
6281 if (parameters_node) {
6282 optionals_list = ¶meters_node->
optionals;
6283 requireds_list = ¶meters_node->
requireds;
6284 keywords_list = ¶meters_node->
keywords;
6285 posts_list = ¶meters_node->
posts;
6287 else if (scope_node->parameters && (PM_NODE_TYPE_P(scope_node->parameters, PM_NUMBERED_PARAMETERS_NODE) || PM_NODE_TYPE_P(scope_node->parameters, PM_IT_PARAMETERS_NODE))) {
6288 body->param.opt_num = 0;
6291 body->param.lead_num = 0;
6292 body->param.opt_num = 0;
6298 size_t locals_size = locals->
size;
6304 int table_size = (int) locals_size;
6308 if (PM_NODE_TYPE_P(scope_node->ast_node, PM_FOR_NODE)) table_size++;
6310 if (keywords_list && keywords_list->
size) {
6314 if (requireds_list) {
6315 for (
size_t i = 0; i < requireds_list->
size; i++) {
6320 if (PM_NODE_TYPE_P(required, PM_MULTI_TARGET_NODE)) {
6323 else if (PM_NODE_TYPE_P(required, PM_REQUIRED_PARAMETER_NODE)) {
6324 if (PM_NODE_FLAG_P(required, PM_PARAMETER_FLAGS_REPEATED_PARAMETER)) {
6333 if (scope_node->parameters != NULL && PM_NODE_TYPE_P(scope_node->parameters, PM_IT_PARAMETERS_NODE)) {
6341 if (optionals_list && optionals_list->
size) {
6342 for (
size_t i = 0; i < optionals_list->
size; i++) {
6344 if (PM_NODE_FLAG_P(node, PM_PARAMETER_FLAGS_REPEATED_PARAMETER)) {
6354 if (parameters_node) {
6355 if (parameters_node->
rest) {
6356 if (!(PM_NODE_TYPE_P(parameters_node->
rest, PM_IMPLICIT_REST_NODE))) {
6370 if (PM_NODE_TYPE_P(parameters_node->
keyword_rest, PM_FORWARDING_PARAMETER_NODE)) {
6372 if (requireds_list->
size == 0 && optionals_list->
size == 0 && keywords_list->
size == 0) {
6373 ISEQ_BODY(iseq)->param.flags.use_block = TRUE;
6374 ISEQ_BODY(iseq)->param.flags.forwardable = TRUE;
6385 if (!kw_rest->name || PM_NODE_FLAG_P(kw_rest, PM_PARAMETER_FLAGS_REPEATED_PARAMETER)) {
6393 for (
size_t i = 0; i < posts_list->
size; i++) {
6398 if (PM_NODE_TYPE_P(required, PM_MULTI_TARGET_NODE) || PM_NODE_FLAG_P(required, PM_PARAMETER_FLAGS_REPEATED_PARAMETER)) {
6404 if (keywords_list && keywords_list->
size) {
6405 for (
size_t i = 0; i < keywords_list->
size; i++) {
6407 if (PM_NODE_FLAG_P(keyword_parameter_node, PM_PARAMETER_FLAGS_REPEATED_PARAMETER)) {
6413 if (parameters_node && parameters_node->
block && PM_NODE_TYPE_P(parameters_node->
block, PM_BLOCK_PARAMETER_NODE)) {
6416 if (PM_NODE_FLAG_P(block_node, PM_PARAMETER_FLAGS_REPEATED_PARAMETER) || !block_node->name) {
6424 local_table_for_iseq->size = table_size;
6428 pm_index_lookup_table_init(&index_lookup_table, (
int) pm_parser_constants_size(scope_node->parser), iseq);
6448 int local_index = 0;
6455 if (requireds_list && requireds_list->
size) {
6456 for (
size_t i = 0; i < requireds_list->
size; i++, local_index++) {
6464 switch (PM_NODE_TYPE(required)) {
6465 case PM_MULTI_TARGET_NODE: {
6468 local = rb_make_temporary_id(local_index);
6469 local_table_for_iseq->ids[local_index] = local;
6472 case PM_REQUIRED_PARAMETER_NODE: {
6477 if (PM_NODE_FLAG_P(required, PM_PARAMETER_FLAGS_REPEATED_PARAMETER)) {
6478 ID local = pm_constant_id_lookup(scope_node, param->
name);
6479 local_table_for_iseq->ids[local_index] = local;
6482 pm_insert_local_index(param->
name, local_index, &index_lookup_table, local_table_for_iseq, scope_node);
6488 rb_bug(
"Unsupported node in requireds in parameters %s", pm_node_type(PM_NODE_TYPE(required)));
6492 body->param.lead_num = (int) requireds_list->
size;
6493 body->param.flags.has_lead =
true;
6496 if (scope_node->parameters != NULL && PM_NODE_TYPE_P(scope_node->parameters, PM_IT_PARAMETERS_NODE)) {
6497 local_table_for_iseq->ids[local_index++] = idItImplicit;
6502 if (optionals_list && optionals_list->
size) {
6503 body->param.opt_num = (int) optionals_list->
size;
6504 body->param.flags.has_opt =
true;
6506 for (
size_t i = 0; i < optionals_list->
size; i++, local_index++) {
6510 if (PM_NODE_FLAG_P(node, PM_PARAMETER_FLAGS_REPEATED_PARAMETER)) {
6511 ID local = pm_constant_id_lookup(scope_node, name);
6512 local_table_for_iseq->ids[local_index] = local;
6515 pm_insert_local_index(name, local_index, &index_lookup_table, local_table_for_iseq, scope_node);
6522 if (parameters_node && parameters_node->
rest) {
6523 body->param.rest_start = local_index;
6527 if (!(PM_NODE_TYPE_P(parameters_node->
rest, PM_IMPLICIT_REST_NODE))) {
6528 body->param.flags.has_rest =
true;
6536 if (PM_NODE_FLAG_P(parameters_node->
rest, PM_PARAMETER_FLAGS_REPEATED_PARAMETER)) {
6537 ID local = pm_constant_id_lookup(scope_node, name);
6538 local_table_for_iseq->ids[local_index] = local;
6541 pm_insert_local_index(name, local_index, &index_lookup_table, local_table_for_iseq, scope_node);
6547 body->param.flags.anon_rest =
true;
6548 pm_insert_local_special(PM_CONSTANT_MULT, idMULT, local_index, &index_lookup_table, local_table_for_iseq);
6557 if (posts_list && posts_list->
size) {
6558 body->param.post_num = (int) posts_list->
size;
6559 body->param.post_start = local_index;
6560 body->param.flags.has_post =
true;
6562 for (
size_t i = 0; i < posts_list->
size; i++, local_index++) {
6570 switch (PM_NODE_TYPE(post_node)) {
6571 case PM_MULTI_TARGET_NODE: {
6574 local = rb_make_temporary_id(local_index);
6575 local_table_for_iseq->ids[local_index] = local;
6578 case PM_REQUIRED_PARAMETER_NODE: {
6583 if (PM_NODE_FLAG_P(param, PM_PARAMETER_FLAGS_REPEATED_PARAMETER)) {
6584 ID local = pm_constant_id_lookup(scope_node, param->
name);
6585 local_table_for_iseq->ids[local_index] = local;
6588 pm_insert_local_index(param->
name, local_index, &index_lookup_table, local_table_for_iseq, scope_node);
6593 rb_bug(
"Unsupported node in posts in parameters %s", pm_node_type(PM_NODE_TYPE(post_node)));
6601 if (keywords_list && keywords_list->
size) {
6602 if (keywords_list->
size > VM_CALL_KW_LEN_MAX) {
6603 COMPILE_ERROR(iseq, node_location->
line,
"too many keyword parameters (%d, maximum is %d)",
6604 (
int) keywords_list->
size, (
int) VM_CALL_KW_LEN_MAX);
6607 keyword =
ZALLOC_N(
struct rb_iseq_param_keyword, 1);
6608 keyword->num = (int) keywords_list->
size;
6613 for (
size_t i = 0; i < keywords_list->
size; i++) {
6619 if (PM_NODE_TYPE_P(keyword_parameter_node, PM_REQUIRED_KEYWORD_PARAMETER_NODE)) {
6621 keyword->required_num++;
6622 ID local = pm_constant_id_lookup(scope_node, name);
6624 if (PM_NODE_FLAG_P(keyword_parameter_node, PM_PARAMETER_FLAGS_REPEATED_PARAMETER)) {
6625 local_table_for_iseq->ids[local_index] = local;
6628 pm_insert_local_index(name, local_index, &index_lookup_table, local_table_for_iseq, scope_node);
6634 for (
size_t i = 0; i < keywords_list->
size; i++) {
6640 if (PM_NODE_TYPE_P(keyword_parameter_node, PM_OPTIONAL_KEYWORD_PARAMETER_NODE)) {
6646 if (PM_NODE_FLAG_P(value, PM_NODE_FLAG_STATIC_LITERAL) && !PM_CONTAINER_P(value)) {
6647 rb_ary_push(default_values, pm_static_literal_value(iseq, value, scope_node));
6653 ID local = pm_constant_id_lookup(scope_node, name);
6654 if (PM_NODE_FLAG_P(keyword_parameter_node, PM_PARAMETER_FLAGS_REPEATED_PARAMETER)) {
6655 local_table_for_iseq->ids[local_index] = local;
6658 pm_insert_local_index(name, local_index, &index_lookup_table, local_table_for_iseq, scope_node);
6668 for (
int i = 0; i <
RARRAY_LEN(default_values); i++) {
6670 if (dv == complex_mark) dv =
Qundef;
6674 keyword->default_values = dvs;
6678 keyword->bits_start = local_index;
6679 ID local = rb_make_temporary_id(local_index);
6680 local_table_for_iseq->ids[local_index] = local;
6683 body->param.keyword = keyword;
6684 body->param.flags.has_kw =
true;
6687 if (body->type == ISEQ_TYPE_BLOCK && local_index == 1 && requireds_list && requireds_list->
size == 1 && !trailing_comma) {
6688 body->param.flags.ambiguous_param0 =
true;
6691 if (parameters_node) {
6696 case PM_NO_KEYWORDS_PARAMETER_NODE: {
6699 body->param.flags.accepts_no_kwarg =
true;
6702 case PM_KEYWORD_REST_PARAMETER_NODE: {
6706 if (!body->param.flags.has_kw) {
6707 body->param.keyword = keyword =
ZALLOC_N(
struct rb_iseq_param_keyword, 1);
6710 keyword->rest_start = local_index;
6711 body->param.flags.has_kwrest =
true;
6715 if (PM_NODE_FLAG_P(kw_rest_node, PM_PARAMETER_FLAGS_REPEATED_PARAMETER)) {
6716 ID local = pm_constant_id_lookup(scope_node, constant_id);
6717 local_table_for_iseq->ids[local_index] = local;
6720 pm_insert_local_index(constant_id, local_index, &index_lookup_table, local_table_for_iseq, scope_node);
6724 body->param.flags.anon_kwrest =
true;
6725 pm_insert_local_special(PM_CONSTANT_POW, idPow, local_index, &index_lookup_table, local_table_for_iseq);
6731 case PM_FORWARDING_PARAMETER_NODE: {
6734 if (!ISEQ_BODY(iseq)->param.
flags.forwardable) {
6736 body->param.rest_start = local_index;
6737 body->param.flags.has_rest =
true;
6738 body->param.flags.anon_rest =
true;
6739 pm_insert_local_special(PM_CONSTANT_MULT, idMULT, local_index++, &index_lookup_table, local_table_for_iseq);
6743 body->param.flags.has_kw =
false;
6744 body->param.flags.has_kwrest =
true;
6745 body->param.flags.anon_kwrest =
true;
6746 body->param.keyword = keyword =
ZALLOC_N(
struct rb_iseq_param_keyword, 1);
6747 keyword->rest_start = local_index;
6748 pm_insert_local_special(PM_CONSTANT_POW, idPow, local_index++, &index_lookup_table, local_table_for_iseq);
6751 body->param.block_start = local_index;
6752 body->param.flags.has_block =
true;
6753 pm_insert_local_special(PM_CONSTANT_AND, idAnd, local_index++, &index_lookup_table, local_table_for_iseq);
6757 pm_insert_local_special(PM_CONSTANT_DOT3, idDot3, local_index++, &index_lookup_table, local_table_for_iseq);
6761 rb_bug(
"node type %s not expected as keyword_rest", pm_node_type(PM_NODE_TYPE(parameters_node->
keyword_rest)));
6767 if (parameters_node->
block) {
6768 switch (PM_NODE_TYPE(parameters_node->
block)) {
6769 case PM_BLOCK_PARAMETER_NODE: {
6770 body->param.block_start = local_index;
6771 body->param.flags.has_block =
true;
6773 iseq_set_use_block(iseq);
6778 if (PM_NODE_FLAG_P(parameters_node->
block, PM_PARAMETER_FLAGS_REPEATED_PARAMETER)) {
6779 ID local = pm_constant_id_lookup(scope_node, name);
6780 local_table_for_iseq->ids[local_index] = local;
6783 pm_insert_local_index(name, local_index, &index_lookup_table, local_table_for_iseq, scope_node);
6787 pm_insert_local_special(PM_CONSTANT_AND, idAnd, local_index, &index_lookup_table, local_table_for_iseq);
6793 case PM_NO_BLOCK_PARAMETER_NODE: {
6794 body->param.flags.accepts_no_block =
true;
6798 rb_bug(
"node type %s not expected as block parameter", pm_node_type(PM_NODE_TYPE(parameters_node->
block)));
6815 if (requireds_list && requireds_list->
size) {
6816 for (
size_t i = 0; i < requireds_list->
size; i++) {
6822 if (PM_NODE_TYPE_P(required, PM_MULTI_TARGET_NODE)) {
6823 local_index = pm_compile_destructured_param_locals((
const pm_multi_target_node_t *) required, &index_lookup_table, local_table_for_iseq, scope_node, local_index);
6829 if (posts_list && posts_list->
size) {
6830 for (
size_t i = 0; i < posts_list->
size; i++) {
6836 if (PM_NODE_TYPE_P(post, PM_MULTI_TARGET_NODE)) {
6837 local_index = pm_compile_destructured_param_locals((
const pm_multi_target_node_t *) post, &index_lookup_table, local_table_for_iseq, scope_node, local_index);
6843 if (PM_NODE_TYPE_P(scope_node->ast_node, PM_FOR_NODE)) {
6844 if (PM_NODE_TYPE_P(((
const pm_for_node_t *) scope_node->ast_node)->index, PM_LOCAL_VARIABLE_TARGET_NODE)) {
6845 body->param.lead_num++;
6848 body->param.rest_start = local_index;
6849 body->param.flags.has_rest =
true;
6852 ID local = rb_make_temporary_id(local_index);
6853 local_table_for_iseq->ids[local_index] = local;
6858 if (scope_node->parameters && PM_NODE_TYPE_P(scope_node->parameters, PM_NUMBERED_PARAMETERS_NODE)) {
6861 for (
int i = 0; i < maximum; i++, local_index++) {
6862 const uint8_t param_name[] = {
'_',
'1' + i };
6863 pm_constant_id_t constant_id = pm_parser_constant_find(scope_node->parser, param_name, 2);
6864 RUBY_ASSERT(constant_id &&
"parser should fill in any gaps in numbered parameters");
6865 pm_insert_local_index(constant_id, local_index, &index_lookup_table, local_table_for_iseq, scope_node);
6867 body->param.lead_num = maximum;
6868 body->param.flags.has_lead =
true;
6872 if (scope_node->parameters && PM_NODE_TYPE_P(scope_node->parameters, PM_IT_PARAMETERS_NODE)) {
6873 body->param.lead_num = 1;
6874 body->param.flags.has_lead =
true;
6885 if (block_locals && block_locals->
size) {
6886 for (
size_t i = 0; i < block_locals->
size; i++, local_index++) {
6888 pm_insert_local_index(constant_id, local_index, &index_lookup_table, local_table_for_iseq, scope_node);
6893 if (scope_node->locals.
size) {
6894 for (
size_t i = 0; i < scope_node->locals.
size; i++) {
6898 if (!pm_index_lookup_table_lookup(&index_lookup_table, constant_id, &existing)) {
6899 ID local = pm_constant_id_lookup(scope_node, constant_id);
6900 local_table_for_iseq->ids[local_index] = local;
6901 pm_index_lookup_table_insert(&index_lookup_table, constant_id, local_index);
6913 iseq_calc_param_size(iseq);
6915 if (ISEQ_BODY(iseq)->param.
flags.forwardable) {
6918 ISEQ_BODY(iseq)->param.size += 1;
6922 iseq_set_local_table(iseq, local_table_for_iseq, 0);
6923 iseq_set_parameters_lvar_state(iseq);
6925 scope_node->local_table_for_iseq_size = local_table_for_iseq->size;
6927 if (keyword != NULL) {
6928 size_t keyword_start_index = keyword->bits_start - keyword->num;
6929 keyword->table = (
ID *)&ISEQ_BODY(iseq)->local_table[keyword_start_index];
6934 if (optionals_list && optionals_list->
size) {
6942 for (
size_t i = 0; i < optionals_list->
size; i++) {
6943 label = NEW_LABEL(location.
line);
6944 opt_table[i] = label;
6945 PUSH_LABEL(ret, label);
6947 PM_COMPILE_NOT_POPPED(optional_node);
6951 label = NEW_LABEL(location.
line);
6952 opt_table[optionals_list->
size] = label;
6953 PUSH_LABEL(ret, label);
6955 body->param.opt_table = (
const VALUE *) opt_table;
6958 if (keywords_list && keywords_list->
size) {
6959 size_t optional_index = 0;
6960 for (
size_t i = 0; i < keywords_list->
size; i++) {
6964 switch (PM_NODE_TYPE(keyword_parameter_node)) {
6965 case PM_OPTIONAL_KEYWORD_PARAMETER_NODE: {
6973 if (!PM_NODE_FLAG_P(value, PM_NODE_FLAG_STATIC_LITERAL) || PM_CONTAINER_P(value)) {
6974 LABEL *end_label = NEW_LABEL(location.
line);
6977 int kw_bits_idx = table_size - body->param.keyword->bits_start;
6978 PUSH_INSN2(ret, location, checkkeyword,
INT2FIX(kw_bits_idx + VM_ENV_DATA_SIZE - 1),
INT2FIX(optional_index));
6979 PUSH_INSNL(ret, location, branchif, end_label);
6981 PUSH_SETLOCAL(ret, location, index.index, index.level);
6982 PUSH_LABEL(ret, end_label);
6987 case PM_REQUIRED_KEYWORD_PARAMETER_NODE:
6992 rb_bug(
"Unexpected keyword parameter node type %s", pm_node_type(PM_NODE_TYPE(keyword_parameter_node)));
6997 if (requireds_list && requireds_list->
size) {
6998 for (
size_t i = 0; i < requireds_list->
size; i++) {
7004 if (PM_NODE_TYPE_P(required, PM_MULTI_TARGET_NODE)) {
7005 PUSH_GETLOCAL(ret, location, table_size - (
int)i, 0);
7011 if (posts_list && posts_list->
size) {
7012 for (
size_t i = 0; i < posts_list->
size; i++) {
7018 if (PM_NODE_TYPE_P(post, PM_MULTI_TARGET_NODE)) {
7019 PUSH_GETLOCAL(ret, location, table_size - body->param.post_start - (
int) i, 0);
7025 switch (body->type) {
7026 case ISEQ_TYPE_PLAIN: {
7027 RUBY_ASSERT(PM_NODE_TYPE_P(scope_node->ast_node, PM_INTERPOLATED_REGULAR_EXPRESSION_NODE));
7030 pm_compile_regexp_dynamic(iseq, (
const pm_node_t *) cast, &cast->parts, &location, ret, popped, scope_node);
7034 case ISEQ_TYPE_BLOCK: {
7035 LABEL *start = ISEQ_COMPILE_DATA(iseq)->start_label = NEW_LABEL(0);
7036 LABEL *end = ISEQ_COMPILE_DATA(iseq)->end_label = NEW_LABEL(0);
7039 start->rescued = LABEL_RESCUE_BEG;
7040 end->rescued = LABEL_RESCUE_END;
7046 if (PM_NODE_TYPE_P(scope_node->ast_node, PM_FOR_NODE)) {
7047 pm_compile_for_node_index(iseq, ((
const pm_for_node_t *) scope_node->ast_node)->index, ret, scope_node);
7051 PUSH_INSN(ret, block_location, nop);
7052 PUSH_LABEL(ret, start);
7054 if (scope_node->body != NULL) {
7055 switch (PM_NODE_TYPE(scope_node->ast_node)) {
7056 case PM_POST_EXECUTION_NODE: {
7058 PUSH_INSN1(ret, block_location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
7062 pm_scope_node_init((
const pm_node_t *) cast->statements, &next_scope_node, scope_node);
7064 const rb_iseq_t *block = NEW_CHILD_ISEQ(&next_scope_node, make_name_for_block(body->parent_iseq), ISEQ_TYPE_BLOCK, location.
line);
7065 pm_scope_node_destroy(&next_scope_node);
7067 PUSH_CALL_WITH_BLOCK(ret, block_location, id_core_set_postexe,
INT2FIX(0), block);
7070 case PM_INTERPOLATED_REGULAR_EXPRESSION_NODE: {
7072 pm_compile_regexp_dynamic(iseq, (
const pm_node_t *) cast, &cast->parts, &location, ret, popped, scope_node);
7076 pm_compile_node(iseq, scope_node->body, ret, popped, scope_node);
7081 PUSH_INSN(ret, block_location, putnil);
7084 PUSH_LABEL(ret, end);
7086 ISEQ_COMPILE_DATA(iseq)->last_line = body->location.code_location.end_pos.lineno;
7089 PUSH_CATCH_ENTRY(CATCH_TYPE_REDO, start, end, NULL, start);
7090 PUSH_CATCH_ENTRY(CATCH_TYPE_NEXT, start, end, NULL, end);
7093 case ISEQ_TYPE_ENSURE: {
7094 const pm_node_location_t statements_location = (scope_node->body != NULL ? PM_NODE_START_LOCATION(scope_node->body) : location);
7095 iseq_set_exception_local_table(iseq);
7097 if (scope_node->body != NULL) {
7098 PM_COMPILE_POPPED((
const pm_node_t *) scope_node->body);
7101 PUSH_GETLOCAL(ret, statements_location, 1, 0);
7102 PUSH_INSN1(ret, statements_location,
throw,
INT2FIX(0));
7105 case ISEQ_TYPE_METHOD: {
7106 ISEQ_COMPILE_DATA(iseq)->root_node = (
const void *) scope_node->body;
7109 if (scope_node->body) {
7110 PM_COMPILE((
const pm_node_t *) scope_node->body);
7113 PUSH_INSN(ret, location, putnil);
7116 ISEQ_COMPILE_DATA(iseq)->root_node = (
const void *) scope_node->body;
7119 ISEQ_COMPILE_DATA(iseq)->last_line = body->location.code_location.end_pos.lineno;
7122 case ISEQ_TYPE_RESCUE: {
7123 iseq_set_exception_local_table(iseq);
7124 if (PM_NODE_TYPE_P(scope_node->ast_node, PM_RESCUE_MODIFIER_NODE)) {
7126 LABEL *rescue_end = NEW_LABEL(location.
line);
7127 PUSH_GETLOCAL(ret, location, LVAR_ERRINFO, 0);
7129 PUSH_INSN1(ret, location, checkmatch,
INT2FIX(VM_CHECKMATCH_TYPE_RESCUE));
7130 PUSH_INSNL(ret, location, branchif, lab);
7131 PUSH_INSNL(ret, location, jump, rescue_end);
7132 PUSH_LABEL(ret, lab);
7134 PM_COMPILE((
const pm_node_t *) scope_node->body);
7135 PUSH_INSN(ret, location, leave);
7136 PUSH_LABEL(ret, rescue_end);
7137 PUSH_GETLOCAL(ret, location, LVAR_ERRINFO, 0);
7140 PM_COMPILE((
const pm_node_t *) scope_node->ast_node);
7142 PUSH_INSN1(ret, location,
throw,
INT2FIX(0));
7147 if (scope_node->body) {
7148 PM_COMPILE((
const pm_node_t *) scope_node->body);
7151 PUSH_INSN(ret, location, putnil);
7156 if (PM_NODE_TYPE_P(scope_node->ast_node, PM_CLASS_NODE) || PM_NODE_TYPE_P(scope_node->ast_node, PM_MODULE_NODE)) {
7159 ISEQ_COMPILE_DATA(iseq)->last_line = end_location.
line;
7162 if (!PM_NODE_TYPE_P(scope_node->ast_node, PM_ENSURE_NODE)) {
7164 PUSH_INSN(ret, location, leave);
7173 PUSH_INSN1(ret, *location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
7177 VALUE operand =
ID2SYM(rb_intern3((
const char *) (pm_parser_start(scope_node->parser) + name_loc->
start), name_loc->
length, scope_node->encoding));
7178 PUSH_INSN1(ret, *location, putobject, operand);
7183 VALUE operand =
ID2SYM(rb_intern3((
const char *) (pm_parser_start(scope_node->parser) + name_loc->
start), name_loc->
length, scope_node->encoding));
7184 PUSH_INSN1(ret, *location, putobject, operand);
7187 PUSH_SEND(ret, *location, id_core_set_variable_alias,
INT2FIX(2));
7188 if (popped) PUSH_INSN(ret, *location, pop);
7194 PUSH_INSN1(ret, *location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
7195 PUSH_INSN1(ret, *location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_CBASE));
7196 PM_COMPILE_NOT_POPPED(node->
new_name);
7197 PM_COMPILE_NOT_POPPED(node->
old_name);
7199 PUSH_SEND(ret, *location, id_core_set_method_alias,
INT2FIX(3));
7200 if (popped) PUSH_INSN(ret, *location, pop);
7206 LABEL *end_label = NEW_LABEL(location->
line);
7208 PM_COMPILE_NOT_POPPED(node->
left);
7209 if (!popped) PUSH_INSN(ret, *location, dup);
7210 PUSH_INSNL(ret, *location, branchunless, end_label);
7212 if (!popped) PUSH_INSN(ret, *location, pop);
7213 PM_COMPILE(node->
right);
7214 PUSH_LABEL(ret, end_label);
7222 if (PM_NODE_FLAG_P(node, PM_NODE_FLAG_STATIC_LITERAL)) {
7227 if (elements->
size) {
7228 VALUE value = pm_static_literal_value(iseq, node, scope_node);
7230 PUSH_INSN1(ret, *location, duparray, value);
7233 PUSH_INSN1(ret, *location, newarray,
INT2FIX(0));
7251 const int max_new_array_size = 0x100;
7252 const unsigned int min_tmp_array_size = 0x40;
7254 int new_array_size = 0;
7255 bool first_chunk =
true;
7261 bool static_literal =
false;
7264#define FLUSH_CHUNK \
7265 if (new_array_size) { \
7266 if (first_chunk) PUSH_INSN1(ret, *location, newarray, INT2FIX(new_array_size)); \
7267 else PUSH_INSN1(ret, *location, pushtoarray, INT2FIX(new_array_size)); \
7268 first_chunk = false; \
7269 new_array_size = 0; \
7272 for (
size_t index = 0; index < elements->
size; index++) {
7275 if (PM_NODE_TYPE_P(element, PM_SPLAT_NODE)) {
7280 PM_COMPILE_NOT_POPPED(splat_element->
expression);
7283 pm_local_index_t index = pm_lookup_local_index(iseq, scope_node, PM_CONSTANT_MULT, 0);
7284 PUSH_GETLOCAL(ret, *location, index.index, index.level);
7290 PUSH_INSN1(ret, *location, splatarray,
Qtrue);
7291 first_chunk =
false;
7294 PUSH_INSN(ret, *location, concattoarray);
7297 static_literal =
false;
7299 else if (PM_NODE_TYPE_P(element, PM_KEYWORD_HASH_NODE)) {
7300 if (new_array_size == 0 && first_chunk) {
7301 PUSH_INSN1(ret, *location, newarray,
INT2FIX(0));
7302 first_chunk =
false;
7319 pm_compile_hash_elements(iseq, element, &keyword_hash->
elements, 0,
Qundef,
false, ret, scope_node);
7326 while (splats < keyword_hash->elements.
size && PM_NODE_TYPE_P(keyword_hash->
elements.
nodes[splats], PM_ASSOC_SPLAT_NODE)) splats++;
7329 PUSH_INSN(ret, *location, pushtoarraykwsplat);
7336 PM_NODE_FLAG_P(element, PM_NODE_FLAG_STATIC_LITERAL) &&
7337 !PM_CONTAINER_P(element) &&
7339 ((index + min_tmp_array_size) < elements->
size)
7344 size_t right_index = index + 1;
7346 right_index < elements->size &&
7347 PM_NODE_FLAG_P(elements->
nodes[right_index], PM_NODE_FLAG_STATIC_LITERAL) &&
7348 !PM_CONTAINER_P(elements->
nodes[right_index])
7351 size_t tmp_array_size = right_index - index;
7352 if (tmp_array_size >= min_tmp_array_size) {
7356 for (; tmp_array_size; tmp_array_size--)
7357 rb_ary_push(tmp_array, pm_static_literal_value(iseq, elements->
nodes[index++], scope_node));
7365 PUSH_INSN1(ret, *location, duparray, tmp_array);
7366 first_chunk =
false;
7369 PUSH_INSN1(ret, *location, putobject, tmp_array);
7370 PUSH_INSN(ret, *location, concattoarray);
7374 PM_COMPILE_NOT_POPPED(element);
7375 if (++new_array_size >= max_new_array_size) FLUSH_CHUNK;
7376 static_literal =
true;
7379 PM_COMPILE_NOT_POPPED(element);
7380 if (++new_array_size >= max_new_array_size) FLUSH_CHUNK;
7381 static_literal =
false;
7386 if (popped) PUSH_INSN(ret, *location, pop);
7394 unsigned long throw_flag = 0;
7396 if (ISEQ_COMPILE_DATA(iseq)->redo_label != 0 && can_add_ensure_iseq(iseq)) {
7398 LABEL *splabel = NEW_LABEL(0);
7399 PUSH_LABEL(ret, splabel);
7400 PUSH_ADJUST(ret, *location, ISEQ_COMPILE_DATA(iseq)->redo_label);
7406 PUSH_INSN(ret, *location, putnil);
7409 pm_add_ensure_iseq(ret, iseq, 0, scope_node);
7410 PUSH_INSNL(ret, *location, jump, ISEQ_COMPILE_DATA(iseq)->end_label);
7411 PUSH_ADJUST_RESTORE(ret, splabel);
7412 if (!popped) PUSH_INSN(ret, *location, putnil);
7418 if (!ISEQ_COMPILE_DATA(ip)) {
7423 if (ISEQ_COMPILE_DATA(ip)->redo_label != 0) {
7424 throw_flag = VM_THROW_NO_ESCAPE_FLAG;
7426 else if (ISEQ_BODY(ip)->type == ISEQ_TYPE_BLOCK) {
7429 else if (ISEQ_BODY(ip)->type == ISEQ_TYPE_EVAL) {
7430 COMPILE_ERROR(iseq, location->
line,
"Invalid break");
7434 ip = ISEQ_BODY(ip)->parent_iseq;
7443 PUSH_INSN(ret, *location, putnil);
7446 PUSH_INSN1(ret, *location,
throw,
INT2FIX(throw_flag | TAG_BREAK));
7447 if (popped) PUSH_INSN(ret, *location, pop);
7452 COMPILE_ERROR(iseq, location->
line,
"Invalid break");
7459 ID method_id = pm_constant_id_lookup(scope_node, node->
name);
7465 const char *builtin_func;
7467 if (UNLIKELY(iseq_has_builtin_function_table(iseq)) && (builtin_func = pm_iseq_builtin_function_name(scope_node, node->
receiver, method_id)) != NULL) {
7468 pm_compile_builtin_function_call(iseq, ret, scope_node, node, &location, popped, ISEQ_COMPILE_DATA(iseq)->current_block, builtin_func);
7472 LABEL *start = NEW_LABEL(location.
line);
7473 if (node->
block) PUSH_LABEL(ret, start);
7475 switch (method_id) {
7477 if (pm_opt_str_freeze_p(iseq, node)) {
7479 const struct rb_callinfo *callinfo = new_callinfo(iseq, idUMinus, 0, 0, NULL, FALSE);
7480 PUSH_INSN2(ret, location, opt_str_uminus, value, callinfo);
7481 if (popped) PUSH_INSN(ret, location, pop);
7487 if (pm_opt_str_freeze_p(iseq, node)) {
7489 const struct rb_callinfo *callinfo = new_callinfo(iseq, idFreeze, 0, 0, NULL, FALSE);
7490 PUSH_INSN2(ret, location, opt_str_freeze, value, callinfo);
7491 if (popped) PUSH_INSN(ret, location, pop);
7498 if (PM_NODE_FLAG_P(node, PM_CALL_NODE_FLAGS_ATTRIBUTE_WRITE) && !popped) {
7499 PUSH_INSN(ret, location, putnil);
7503 PUSH_INSN(ret, location, putself);
7506 if ((method_id == idCall || method_id == idAREF || method_id == idYield || method_id == idEqq) && PM_NODE_TYPE_P(node->
receiver, PM_LOCAL_VARIABLE_READ_NODE)) {
7511 if (iseq_block_param_id_p(iseq, pm_constant_id_lookup(scope_node, read_node_cast->name), &idx, &level)) {
7512 ADD_ELEM(ret, (
LINK_ELEMENT *) new_insn_body(iseq, location.
line, node_id, BIN(getblockparamproxy), 2,
INT2FIX((idx) + VM_ENV_DATA_SIZE - 1),
INT2FIX(level)));
7515 PM_COMPILE_NOT_POPPED(node->
receiver);
7519 PM_COMPILE_NOT_POPPED(node->
receiver);
7523 pm_compile_call(iseq, node, ret, popped, scope_node, method_id, start);
7532 if (PM_NODE_FLAG_P(node, PM_CALL_NODE_FLAGS_IGNORE_VISIBILITY)) {
7533 flag = VM_CALL_FCALL;
7536 PM_COMPILE_NOT_POPPED(node->
receiver);
7538 LABEL *safe_label = NULL;
7539 if (PM_NODE_FLAG_P(node, PM_CALL_NODE_FLAGS_SAFE_NAVIGATION)) {
7540 safe_label = NEW_LABEL(location->
line);
7541 PUSH_INSN(ret, *location, dup);
7542 PUSH_INSNL(ret, *location, branchnil, safe_label);
7545 PUSH_INSN(ret, *location, dup);
7547 ID id_read_name = pm_constant_id_lookup(scope_node, node->
read_name);
7548 PUSH_SEND_WITH_FLAG(ret, *location, id_read_name,
INT2FIX(0),
INT2FIX(flag));
7550 PM_COMPILE_NOT_POPPED(node->
value);
7552 PUSH_SEND(ret, *location, id_operator,
INT2FIX(1));
7555 PUSH_INSN(ret, *location, swap);
7556 PUSH_INSN1(ret, *location, topn,
INT2FIX(1));
7559 ID id_write_name = pm_constant_id_lookup(scope_node, node->
write_name);
7560 PUSH_SEND_WITH_FLAG(ret, *location, id_write_name,
INT2FIX(1),
INT2FIX(flag));
7562 if (safe_label != NULL && popped) PUSH_LABEL(ret, safe_label);
7563 PUSH_INSN(ret, *location, pop);
7564 if (safe_label != NULL && !popped) PUSH_LABEL(ret, safe_label);
7587 switch (PM_NODE_TYPE(node)) {
7588 case PM_FLOAT_NODE: {
7589 key = pm_static_literal_value(iseq, node, scope_node);
7593 key = (
FIXABLE(intptr) ?
LONG2FIX((
long) intptr) : rb_dbl2big(intptr));
7599 case PM_INTEGER_NODE:
7601 case PM_SOURCE_LINE_NODE:
7602 case PM_SYMBOL_NODE:
7604 key = pm_static_literal_value(iseq, node, scope_node);
7606 case PM_STRING_NODE: {
7608 key = parse_static_literal_string(iseq, scope_node, node, &cast->
unescaped);
7615 cdhash_aset_if_missing(dispatch, key, (
VALUE)label);
7631 DECL_ANCHOR(cond_seq);
7636 DECL_ANCHOR(body_seq);
7640 LABEL *end_label = NEW_LABEL(location.
line);
7651 if (PM_BRANCH_COVERAGE_P(iseq)) {
7652 case_location = pm_code_location(scope_node, (
const pm_node_t *) cast);
7653 branches = decl_branch_base(iseq, (
int) cast->
base.
node_id, &case_location,
"case");
7659 for (
size_t clause_index = 0; clause_index < conditions->
size; clause_index++) {
7663 int clause_lineno = pm_node_line_number_cached((
const pm_node_t *) clause, scope_node);
7664 LABEL *label = NEW_LABEL(clause_lineno);
7665 PUSH_LABEL(body_seq, label);
7668 if (PM_BRANCH_COVERAGE_P(iseq)) {
7670 add_trace_branch_coverage(iseq, body_seq, &branch_location, branch_location.beg_pos.column, branch_id++,
"when", branches);
7673 if (clause->statements != NULL) {
7674 pm_compile_node(iseq, (
const pm_node_t *) clause->statements, body_seq, popped, scope_node);
7677 PUSH_SYNTHETIC_PUTNIL(body_seq, iseq);
7680 PUSH_INSNL(body_seq, location, jump, end_label);
7685 for (
size_t condition_index = 0; condition_index < conditions->
size; condition_index++) {
7688 if (PM_NODE_TYPE_P(condition, PM_SPLAT_NODE)) {
7690 PUSH_INSN(cond_seq, cond_location, putnil);
7691 pm_compile_node(iseq, condition, cond_seq,
false, scope_node);
7692 PUSH_INSN1(cond_seq, cond_location, checkmatch,
INT2FIX(VM_CHECKMATCH_TYPE_WHEN | VM_CHECKMATCH_ARRAY));
7693 PUSH_INSNL(cond_seq, cond_location, branchif, label);
7696 LABEL *next_label = NEW_LABEL(pm_node_line_number_cached(condition, scope_node));
7697 pm_compile_branch_condition(iseq, cond_seq, condition, label, next_label, scope_node);
7698 PUSH_LABEL(cond_seq, next_label);
7705 if (PM_BRANCH_COVERAGE_P(iseq)) {
7709 branch_location = case_location;
7716 add_trace_branch_coverage(iseq, cond_seq, &branch_location, branch_location.beg_pos.column, branch_id,
"else", branches);
7724 PUSH_SYNTHETIC_PUTNIL(cond_seq, iseq);
7729 PUSH_INSNL(cond_seq, location, jump, end_label);
7730 PUSH_SEQ(ret, cond_seq);
7738 if (PM_BRANCH_COVERAGE_P(iseq)) {
7739 case_location = pm_code_location(scope_node, (
const pm_node_t *) cast);
7740 branches = decl_branch_base(iseq, (
int) cast->
base.
node_id, &case_location,
"case");
7745 LABEL *else_label = NEW_LABEL(location.
line);
7753 if (ISEQ_COMPILE_DATA(iseq)->option->specialized_instruction) {
7754 dispatch = cdhash_new(0);
7765 for (
size_t clause_index = 0; clause_index < conditions->
size; clause_index++) {
7770 LABEL *label = NEW_LABEL(clause_location.
line);
7775 for (
size_t condition_index = 0; condition_index < conditions->
size; condition_index++) {
7782 if (dispatch !=
Qundef) {
7783 dispatch = pm_compile_case_node_dispatch(iseq, dispatch, condition, label, scope_node);
7786 if (PM_NODE_TYPE_P(condition, PM_SPLAT_NODE)) {
7787 PUSH_INSN(cond_seq, condition_location, dup);
7788 pm_compile_node(iseq, condition, cond_seq,
false, scope_node);
7789 PUSH_INSN1(cond_seq, condition_location, checkmatch,
INT2FIX(VM_CHECKMATCH_TYPE_CASE | VM_CHECKMATCH_ARRAY));
7792 if (PM_NODE_TYPE_P(condition, PM_STRING_NODE)) {
7794 VALUE value = parse_static_literal_string(iseq, scope_node, condition, &string->
unescaped);
7795 PUSH_INSN1(cond_seq, condition_location, putobject, value);
7798 pm_compile_node(iseq, condition, cond_seq,
false, scope_node);
7801 PUSH_INSN1(cond_seq, condition_location, topn,
INT2FIX(1));
7802 PUSH_SEND_WITH_FLAG(cond_seq, condition_location, idEqq,
INT2NUM(1),
INT2FIX(VM_CALL_FCALL | VM_CALL_ARGS_SIMPLE));
7805 PUSH_INSNL(cond_seq, condition_location, branchif, label);
7812 PUSH_LABEL(body_seq, label);
7813 PUSH_INSN(body_seq, clause_location, pop);
7816 if (PM_BRANCH_COVERAGE_P(iseq)) {
7818 add_trace_branch_coverage(iseq, body_seq, &branch_location, branch_location.beg_pos.column, branch_id++,
"when", branches);
7821 if (clause->statements != NULL) {
7822 pm_compile_node(iseq, (
const pm_node_t *) clause->statements, body_seq, popped, scope_node);
7825 PUSH_SYNTHETIC_PUTNIL(body_seq, iseq);
7828 PUSH_INSNL(body_seq, clause_location, jump, end_label);
7839 if (dispatch !=
Qundef) {
7840 PUSH_INSN(ret, location, dup);
7842 PUSH_INSN2(ret, location, opt_case_dispatch, dispatch, else_label);
7843 LABEL_REF(else_label);
7846 PUSH_SEQ(ret, cond_seq);
7850 PUSH_LABEL(ret, else_label);
7854 PUSH_INSN(ret, else_location, pop);
7857 if (PM_BRANCH_COVERAGE_P(iseq)) {
7859 add_trace_branch_coverage(iseq, ret, &branch_location, branch_location.beg_pos.column, branch_id,
"else", branches);
7863 PUSH_INSNL(ret, else_location, jump, end_label);
7866 PUSH_INSN(ret, location, pop);
7869 if (PM_BRANCH_COVERAGE_P(iseq)) {
7870 add_trace_branch_coverage(iseq, ret, &case_location, case_location.beg_pos.column, branch_id,
"else", branches);
7873 if (!popped) PUSH_INSN(ret, location, putnil);
7874 PUSH_INSNL(ret, location, jump, end_label);
7878 PUSH_SEQ(ret, body_seq);
7879 PUSH_LABEL(ret, end_label);
7888 DECL_ANCHOR(body_seq);
7893 DECL_ANCHOR(cond_seq);
7897 LABEL *end_label = NEW_LABEL(location->
line);
7902 LABEL *else_label = NEW_LABEL(location->
line);
7910 if (PM_BRANCH_COVERAGE_P(iseq)) {
7911 case_location = pm_code_location(scope_node, (
const pm_node_t *) node);
7912 branches = decl_branch_base(iseq, (
int) node->
base.
node_id, &case_location,
"case");
7922 if (in_single_pattern) {
7923 PUSH_INSN(ret, *location, putnil);
7924 PUSH_INSN(ret, *location, putnil);
7925 PUSH_INSN1(ret, *location, putobject,
Qfalse);
7926 PUSH_INSN(ret, *location, putnil);
7930 PUSH_INSN(ret, *location, putnil);
7939 RUBY_ASSERT(PM_NODE_TYPE_P(condition, PM_IN_NODE));
7946 PUSH_INSN(body_seq, in_location, putnil);
7949 LABEL *body_label = NEW_LABEL(in_location.
line);
7950 PUSH_LABEL(body_seq, body_label);
7951 PUSH_INSN1(body_seq, in_location, adjuststack,
INT2FIX(in_single_pattern ? 6 : 2));
7954 if (PM_BRANCH_COVERAGE_P(iseq)) {
7956 add_trace_branch_coverage(iseq, body_seq, &branch_location, branch_location.beg_pos.column, branch_id++,
"in", branches);
7963 PUSH_SYNTHETIC_PUTNIL(body_seq, iseq);
7966 PUSH_INSNL(body_seq, in_location, jump, end_label);
7967 LABEL *next_pattern_label = NEW_LABEL(pattern_location.
line);
7969 PUSH_INSN(cond_seq, pattern_location, dup);
7970 pm_compile_pattern(iseq, scope_node, in_node->
pattern, cond_seq, body_label, next_pattern_label, in_single_pattern,
true, 2);
7971 PUSH_LABEL(cond_seq, next_pattern_label);
7972 LABEL_UNREMOVABLE(next_pattern_label);
7981 PUSH_LABEL(cond_seq, else_label);
7982 PUSH_INSN(cond_seq, *location, pop);
7983 PUSH_INSN(cond_seq, *location, pop);
7986 if (PM_BRANCH_COVERAGE_P(iseq)) {
7988 add_trace_branch_coverage(iseq, cond_seq, &branch_location, branch_location.beg_pos.column, branch_id,
"else", branches);
7991 PM_COMPILE_INTO_ANCHOR(cond_seq, (
const pm_node_t *) else_node);
7992 PUSH_INSNL(cond_seq, *location, jump, end_label);
7993 PUSH_INSN(cond_seq, *location, putnil);
7994 if (popped) PUSH_INSN(cond_seq, *location, putnil);
7999 PUSH_LABEL(cond_seq, else_label);
8002 add_trace_branch_coverage(iseq, cond_seq, &case_location, case_location.beg_pos.column, branch_id,
"else", branches);
8004 if (in_single_pattern) {
8005 pm_compile_pattern_error_handler(iseq, scope_node, (
const pm_node_t *) node, cond_seq, end_label, popped);
8008 PUSH_INSN1(cond_seq, *location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
8010 PUSH_INSN1(cond_seq, *location, topn,
INT2FIX(2));
8011 PUSH_SEND(cond_seq, *location, id_core_raise,
INT2FIX(2));
8013 PUSH_INSN1(cond_seq, *location, adjuststack,
INT2FIX(3));
8014 if (!popped) PUSH_INSN(cond_seq, *location, putnil);
8015 PUSH_INSNL(cond_seq, *location, jump, end_label);
8016 PUSH_INSN1(cond_seq, *location, dupn,
INT2FIX(1));
8017 if (popped) PUSH_INSN(cond_seq, *location, putnil);
8024 PUSH_SEQ(ret, cond_seq);
8025 PUSH_SEQ(ret, body_seq);
8026 PUSH_LABEL(ret, end_label);
8034 LABEL *retry_label = NULL;
8035 LABEL *retry_end_l = NULL;
8037 if (node->
block != NULL) {
8038 previous_block = ISEQ_COMPILE_DATA(iseq)->current_block;
8039 ISEQ_COMPILE_DATA(iseq)->current_block = NULL;
8041 retry_label = NEW_LABEL(location->
line);
8042 retry_end_l = NEW_LABEL(location->
line);
8044 PUSH_LABEL(ret, retry_label);
8047 iseq_set_use_block(ISEQ_BODY(iseq)->local_iseq);
8050 PUSH_INSN(ret, *location, putself);
8051 int flag = VM_CALL_ZSUPER | VM_CALL_SUPER | VM_CALL_FCALL;
8053 if (node->
block != NULL) {
8055 pm_scope_node_init((
const pm_node_t *) node->
block, &next_scope_node, scope_node);
8057 ISEQ_COMPILE_DATA(iseq)->current_block = block = NEW_CHILD_ISEQ(&next_scope_node, make_name_for_block(iseq), ISEQ_TYPE_BLOCK, location->
line);
8058 pm_scope_node_destroy(&next_scope_node);
8065 const rb_iseq_t *local_iseq = body->local_iseq;
8069 int depth = get_lvar_level(iseq);
8071 if (ISEQ_BODY(ISEQ_BODY(iseq)->local_iseq)->param.
flags.forwardable) {
8072 flag |= VM_CALL_FORWARDING;
8073 pm_local_index_t mult_local = pm_lookup_local_index(iseq, scope_node, PM_CONSTANT_DOT3, 0);
8074 PUSH_GETLOCAL(ret, *location, mult_local.index, mult_local.level);
8076 const struct rb_callinfo *callinfo = new_callinfo(iseq, 0, 0, flag, NULL, block != NULL);
8077 PUSH_INSN2(ret, *location, invokesuperforward, callinfo, block);
8079 if (popped) PUSH_INSN(ret, *location, pop);
8081 ISEQ_COMPILE_DATA(iseq)->current_block = previous_block;
8086 if (local_body->param.flags.has_lead) {
8088 for (
int i = 0; i < local_body->param.lead_num; i++) {
8089 int idx = local_body->local_table_size - i;
8090 PUSH_GETLOCAL(args, *location, idx, depth);
8092 argc += local_body->param.lead_num;
8095 if (local_body->param.flags.has_opt) {
8097 for (
int j = 0; j < local_body->param.opt_num; j++) {
8098 int idx = local_body->local_table_size - (argc + j);
8099 PUSH_GETLOCAL(args, *location, idx, depth);
8101 argc += local_body->param.opt_num;
8104 if (local_body->param.flags.has_rest) {
8106 int idx = local_body->local_table_size - local_body->param.rest_start;
8107 PUSH_GETLOCAL(args, *location, idx, depth);
8108 PUSH_INSN1(args, *location, splatarray,
Qfalse);
8110 argc = local_body->param.rest_start + 1;
8111 flag |= VM_CALL_ARGS_SPLAT;
8114 if (local_body->param.flags.has_post) {
8116 int post_len = local_body->param.post_num;
8117 int post_start = local_body->param.post_start;
8120 for (; j < post_len; j++) {
8121 int idx = local_body->local_table_size - (post_start + j);
8122 PUSH_GETLOCAL(args, *location, idx, depth);
8125 if (local_body->param.flags.has_rest) {
8127 PUSH_INSN1(args, *location, newarray,
INT2FIX(j));
8128 PUSH_INSN(args, *location, concatarray);
8131 argc = post_len + post_start;
8135 const struct rb_iseq_param_keyword *
const local_keyword = local_body->param.keyword;
8136 if (local_body->param.flags.has_kw) {
8137 int local_size = local_body->local_table_size;
8140 PUSH_INSN1(args, *location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
8142 if (local_body->param.flags.has_kwrest) {
8143 int idx = local_body->local_table_size - local_keyword->rest_start;
8144 PUSH_GETLOCAL(args, *location, idx, depth);
8146 PUSH_SEND(args, *location, rb_intern(
"dup"),
INT2FIX(0));
8149 PUSH_INSN1(args, *location, newhash,
INT2FIX(0));
8152 for (; i < local_keyword->num; ++i) {
8153 ID id = local_keyword->table[i];
8154 int idx = local_size - get_local_var_idx(local_iseq,
id);
8158 PUSH_INSN1(args, *location, putobject, operand);
8161 PUSH_GETLOCAL(args, *location, idx, depth);
8164 PUSH_SEND(args, *location, id_core_hash_merge_ptr,
INT2FIX(i * 2 + 1));
8165 flag |= VM_CALL_KW_SPLAT| VM_CALL_KW_SPLAT_MUT;
8167 else if (local_body->param.flags.has_kwrest) {
8168 int idx = local_body->local_table_size - local_keyword->rest_start;
8169 PUSH_GETLOCAL(args, *location, idx, depth);
8171 flag |= VM_CALL_KW_SPLAT;
8174 PUSH_SEQ(ret, args);
8177 const struct rb_callinfo *callinfo = new_callinfo(iseq, 0, argc, flag, NULL, block != NULL);
8178 PUSH_INSN2(ret, *location, invokesuper, callinfo, block);
8181 if (node->
block != NULL) {
8182 pm_compile_retry_end_label(iseq, ret, retry_end_l);
8183 PUSH_CATCH_ENTRY(CATCH_TYPE_BREAK, retry_label, retry_end_l, block, retry_end_l);
8184 ISEQ_COMPILE_DATA(iseq)->current_block = previous_block;
8187 if (popped) PUSH_INSN(ret, *location, pop);
8193 LABEL *matched_label = NEW_LABEL(location->
line);
8194 LABEL *unmatched_label = NEW_LABEL(location->
line);
8195 LABEL *done_label = NEW_LABEL(location->
line);
8199 PUSH_INSN(ret, *location, putnil);
8200 PUSH_INSN(ret, *location, putnil);
8201 PUSH_INSN1(ret, *location, putobject,
Qfalse);
8202 PUSH_INSN(ret, *location, putnil);
8203 PUSH_INSN(ret, *location, putnil);
8207 PM_COMPILE_NOT_POPPED(node->
value);
8211 PUSH_INSN(ret, *location, dup);
8218 pm_compile_pattern(iseq, scope_node, node->
pattern, ret, matched_label, unmatched_label,
true,
true, 2);
8223 PUSH_LABEL(ret, unmatched_label);
8224 pm_compile_pattern_error_handler(iseq, scope_node, (
const pm_node_t *) node, ret, done_label, popped);
8228 PUSH_LABEL(ret, matched_label);
8229 PUSH_INSN1(ret, *location, adjuststack,
INT2FIX(6));
8230 if (!popped) PUSH_INSN(ret, *location, putnil);
8231 PUSH_INSNL(ret, *location, jump, done_label);
8233 PUSH_LABEL(ret, done_label);
8239 LABEL *fail_label = NEW_LABEL(location->
line);
8240 LABEL *end_label = NEW_LABEL(location->
line);
8251 PUSH_INSN1(ret, *location, getglobal, operand);
8254 PUSH_INSN(ret, *location, dup);
8255 PUSH_INSNL(ret, *location, branchunless, fail_label);
8261 if (targets_count == 1) {
8263 RUBY_ASSERT(PM_NODE_TYPE_P(target, PM_LOCAL_VARIABLE_TARGET_NODE));
8270 PUSH_INSN1(ret, *location, putobject, operand);
8273 PUSH_SEND(ret, *location, idAREF,
INT2FIX(1));
8274 PUSH_LABEL(ret, fail_label);
8275 PUSH_SETLOCAL(ret, *location, index.index, index.level);
8276 if (popped) PUSH_INSN(ret, *location, pop);
8280 DECL_ANCHOR(fail_anchor);
8284 for (
size_t targets_index = 0; targets_index < targets_count; targets_index++) {
8286 RUBY_ASSERT(PM_NODE_TYPE_P(target, PM_LOCAL_VARIABLE_TARGET_NODE));
8291 if (((
size_t) targets_index) < (targets_count - 1)) {
8292 PUSH_INSN(ret, *location, dup);
8297 PUSH_INSN1(ret, *location, putobject, operand);
8300 PUSH_SEND(ret, *location, idAREF,
INT2FIX(1));
8301 PUSH_SETLOCAL(ret, *location, index.index, index.level);
8303 PUSH_INSN(fail_anchor, *location, putnil);
8304 PUSH_SETLOCAL(fail_anchor, *location, index.index, index.level);
8308 PUSH_INSNL(ret, *location, jump, end_label);
8312 PUSH_LABEL(ret, fail_label);
8313 PUSH_INSN(ret, *location, pop);
8314 PUSH_SEQ(ret, fail_anchor);
8317 PUSH_LABEL(ret, end_label);
8318 if (popped) PUSH_INSN(ret, *location, pop);
8324 if (ISEQ_COMPILE_DATA(iseq)->redo_label != 0 && can_add_ensure_iseq(iseq)) {
8325 LABEL *splabel = NEW_LABEL(0);
8326 PUSH_LABEL(ret, splabel);
8332 PUSH_INSN(ret, *location, putnil);
8334 pm_add_ensure_iseq(ret, iseq, 0, scope_node);
8336 PUSH_ADJUST(ret, *location, ISEQ_COMPILE_DATA(iseq)->redo_label);
8337 PUSH_INSNL(ret, *location, jump, ISEQ_COMPILE_DATA(iseq)->start_label);
8339 PUSH_ADJUST_RESTORE(ret, splabel);
8340 if (!popped) PUSH_INSN(ret, *location, putnil);
8342 else if (ISEQ_COMPILE_DATA(iseq)->end_label && can_add_ensure_iseq(iseq)) {
8343 LABEL *splabel = NEW_LABEL(0);
8345 PUSH_LABEL(ret, splabel);
8346 PUSH_ADJUST(ret, *location, ISEQ_COMPILE_DATA(iseq)->start_label);
8352 PUSH_INSN(ret, *location, putnil);
8355 pm_add_ensure_iseq(ret, iseq, 0, scope_node);
8356 PUSH_INSNL(ret, *location, jump, ISEQ_COMPILE_DATA(iseq)->end_label);
8357 PUSH_ADJUST_RESTORE(ret, splabel);
8358 splabel->unremovable = FALSE;
8360 if (!popped) PUSH_INSN(ret, *location, putnil);
8364 unsigned long throw_flag = 0;
8367 if (!ISEQ_COMPILE_DATA(ip)) {
8372 throw_flag = VM_THROW_NO_ESCAPE_FLAG;
8373 if (ISEQ_COMPILE_DATA(ip)->redo_label != 0) {
8377 else if (ISEQ_BODY(ip)->
type == ISEQ_TYPE_BLOCK) {
8380 else if (ISEQ_BODY(ip)->
type == ISEQ_TYPE_EVAL) {
8381 COMPILE_ERROR(iseq, location->
line,
"Invalid next");
8385 ip = ISEQ_BODY(ip)->parent_iseq;
8393 PUSH_INSN(ret, *location, putnil);
8396 PUSH_INSN1(ret, *location,
throw,
INT2FIX(throw_flag | TAG_NEXT));
8397 if (popped) PUSH_INSN(ret, *location, pop);
8400 COMPILE_ERROR(iseq, location->
line,
"Invalid next");
8408 if (ISEQ_COMPILE_DATA(iseq)->redo_label && can_add_ensure_iseq(iseq)) {
8409 LABEL *splabel = NEW_LABEL(0);
8411 PUSH_LABEL(ret, splabel);
8412 PUSH_ADJUST(ret, *location, ISEQ_COMPILE_DATA(iseq)->redo_label);
8413 pm_add_ensure_iseq(ret, iseq, 0, scope_node);
8415 PUSH_INSNL(ret, *location, jump, ISEQ_COMPILE_DATA(iseq)->redo_label);
8416 PUSH_ADJUST_RESTORE(ret, splabel);
8417 if (!popped) PUSH_INSN(ret, *location, putnil);
8419 else if (ISEQ_BODY(iseq)->
type != ISEQ_TYPE_EVAL && ISEQ_COMPILE_DATA(iseq)->start_label && can_add_ensure_iseq(iseq)) {
8420 LABEL *splabel = NEW_LABEL(0);
8422 PUSH_LABEL(ret, splabel);
8423 pm_add_ensure_iseq(ret, iseq, 0, scope_node);
8424 PUSH_ADJUST(ret, *location, ISEQ_COMPILE_DATA(iseq)->start_label);
8426 PUSH_INSNL(ret, *location, jump, ISEQ_COMPILE_DATA(iseq)->start_label);
8427 PUSH_ADJUST_RESTORE(ret, splabel);
8428 if (!popped) PUSH_INSN(ret, *location, putnil);
8434 if (!ISEQ_COMPILE_DATA(ip)) {
8439 if (ISEQ_COMPILE_DATA(ip)->redo_label != 0) {
8442 else if (ISEQ_BODY(ip)->
type == ISEQ_TYPE_BLOCK) {
8445 else if (ISEQ_BODY(ip)->
type == ISEQ_TYPE_EVAL) {
8446 COMPILE_ERROR(iseq, location->
line,
"Invalid redo");
8450 ip = ISEQ_BODY(ip)->parent_iseq;
8454 PUSH_INSN(ret, *location, putnil);
8455 PUSH_INSN1(ret, *location,
throw,
INT2FIX(VM_THROW_NO_ESCAPE_FLAG | TAG_REDO));
8456 if (popped) PUSH_INSN(ret, *location, pop);
8459 COMPILE_ERROR(iseq, location->
line,
"Invalid redo");
8467 iseq_set_exception_local_table(iseq);
8471 LABEL *exception_match_label = NEW_LABEL(location->
line);
8472 LABEL *rescue_end_label = NEW_LABEL(location->
line);
8482 if (exceptions->
size > 0) {
8483 for (
size_t index = 0; index < exceptions->
size; index++) {
8484 PUSH_GETLOCAL(ret, *location, LVAR_ERRINFO, 0);
8485 PM_COMPILE(exceptions->
nodes[index]);
8486 int checkmatch_flags = VM_CHECKMATCH_TYPE_RESCUE;
8487 if (PM_NODE_TYPE_P(exceptions->
nodes[index], PM_SPLAT_NODE)) {
8488 checkmatch_flags |= VM_CHECKMATCH_ARRAY;
8490 PUSH_INSN1(ret, *location, checkmatch,
INT2FIX(checkmatch_flags));
8491 PUSH_INSNL(ret, *location, branchif, exception_match_label);
8495 PUSH_GETLOCAL(ret, *location, LVAR_ERRINFO, 0);
8497 PUSH_INSN1(ret, *location, checkmatch,
INT2FIX(VM_CHECKMATCH_TYPE_RESCUE));
8498 PUSH_INSNL(ret, *location, branchif, exception_match_label);
8503 PUSH_INSNL(ret, *location, jump, rescue_end_label);
8508 PUSH_LABEL(ret, exception_match_label);
8515 DECL_ANCHOR(writes);
8516 DECL_ANCHOR(cleanup);
8518 pm_compile_target_node(iseq, node->
reference, ret, writes, cleanup, scope_node, NULL);
8519 PUSH_GETLOCAL(ret, *location, LVAR_ERRINFO, 0);
8521 PUSH_SEQ(ret, writes);
8522 PUSH_SEQ(ret, cleanup);
8532 LABEL *prev_end = ISEQ_COMPILE_DATA(iseq)->end_label;
8533 ISEQ_COMPILE_DATA(iseq)->end_label = NULL;
8538 ISEQ_COMPILE_DATA(iseq)->end_label = prev_end;
8541 PUSH_INSN(ret, *location, putnil);
8544 PUSH_INSN(ret, *location, leave);
8550 PUSH_LABEL(ret, rescue_end_label);
8555 PUSH_GETLOCAL(ret, *location, 1, 0);
8563 enum rb_iseq_type
type = ISEQ_BODY(iseq)->type;
8567 enum rb_iseq_type parent_type = ISEQ_BODY(parent_iseq)->type;
8568 while (parent_type == ISEQ_TYPE_RESCUE || parent_type == ISEQ_TYPE_ENSURE) {
8569 if (!(parent_iseq = ISEQ_BODY(parent_iseq)->parent_iseq))
break;
8570 parent_type = ISEQ_BODY(parent_iseq)->type;
8573 switch (parent_type) {
8575 case ISEQ_TYPE_MAIN:
8577 rb_warn(
"argument of top-level return is ignored");
8579 if (parent_iseq == iseq) {
8580 type = ISEQ_TYPE_METHOD;
8587 if (
type == ISEQ_TYPE_METHOD) {
8588 splabel = NEW_LABEL(0);
8589 PUSH_LABEL(ret, splabel);
8590 PUSH_ADJUST(ret, *location, 0);
8593 if (arguments != NULL) {
8594 PM_COMPILE_NOT_POPPED((
const pm_node_t *) arguments);
8597 PUSH_INSN(ret, *location, putnil);
8600 if (
type == ISEQ_TYPE_METHOD && can_add_ensure_iseq(iseq)) {
8601 pm_add_ensure_iseq(ret, iseq, 1, scope_node);
8603 PUSH_INSN(ret, *location, leave);
8604 PUSH_ADJUST_RESTORE(ret, splabel);
8605 if (!popped) PUSH_INSN(ret, *location, putnil);
8608 PUSH_INSN1(ret, *location,
throw,
INT2FIX(TAG_RETURN));
8609 if (popped) PUSH_INSN(ret, *location, pop);
8618 LABEL *retry_label = NEW_LABEL(location->
line);
8619 LABEL *retry_end_l = NEW_LABEL(location->
line);
8621 const rb_iseq_t *previous_block = ISEQ_COMPILE_DATA(iseq)->current_block;
8623 ISEQ_COMPILE_DATA(iseq)->current_block = current_block = NULL;
8625 PUSH_LABEL(ret, retry_label);
8626 PUSH_INSN(ret, *location, putself);
8630 int argc = pm_setup_args(node->
arguments, node->
block, &flags, &keywords, iseq, ret, scope_node, location);
8631 bool is_forwardable = (node->
arguments != NULL) && PM_NODE_FLAG_P(node->
arguments, PM_ARGUMENTS_NODE_FLAGS_CONTAINS_FORWARDING);
8632 flags |= VM_CALL_SUPER | VM_CALL_FCALL;
8634 if (node->
block && PM_NODE_TYPE_P(node->
block, PM_BLOCK_NODE)) {
8636 pm_scope_node_init(node->
block, &next_scope_node, scope_node);
8638 ISEQ_COMPILE_DATA(iseq)->current_block = current_block = NEW_CHILD_ISEQ(&next_scope_node, make_name_for_block(iseq), ISEQ_TYPE_BLOCK, location->
line);
8639 pm_scope_node_destroy(&next_scope_node);
8643 iseq_set_use_block(ISEQ_BODY(iseq)->local_iseq);
8646 if ((flags & VM_CALL_ARGS_BLOCKARG) && (flags & VM_CALL_KW_SPLAT) && !(flags & VM_CALL_KW_SPLAT_MUT)) {
8647 PUSH_INSN(args, *location, splatkw);
8650 PUSH_SEQ(ret, args);
8651 if (is_forwardable && ISEQ_BODY(ISEQ_BODY(iseq)->local_iseq)->param.
flags.forwardable) {
8652 flags |= VM_CALL_FORWARDING;
8655 const struct rb_callinfo *callinfo = new_callinfo(iseq, 0, argc, flags, keywords, current_block != NULL);
8656 PUSH_INSN2(ret, *location, invokesuperforward, callinfo, current_block);
8661 const struct rb_callinfo *callinfo = new_callinfo(iseq, 0, argc, flags, keywords, current_block != NULL);
8662 PUSH_INSN2(ret, *location, invokesuper, callinfo, current_block);
8667 pm_compile_retry_end_label(iseq, ret, retry_end_l);
8669 if (popped) PUSH_INSN(ret, *location, pop);
8670 ISEQ_COMPILE_DATA(iseq)->current_block = previous_block;
8671 PUSH_CATCH_ENTRY(CATCH_TYPE_BREAK, retry_label, retry_end_l, current_block, retry_end_l);
8677 switch (ISEQ_BODY(ISEQ_BODY(iseq)->local_iseq)->
type) {
8679 case ISEQ_TYPE_MAIN:
8680 case ISEQ_TYPE_CLASS:
8681 COMPILE_ERROR(iseq, location->
line,
"Invalid yield");
8691 argc = pm_setup_args(node->
arguments, NULL, &flags, &keywords, iseq, ret, scope_node, location);
8694 const struct rb_callinfo *callinfo = new_callinfo(iseq, 0, argc, flags, keywords, FALSE);
8695 PUSH_INSN1(ret, *location, invokeblock, callinfo);
8697 iseq_set_use_block(ISEQ_BODY(iseq)->local_iseq);
8698 if (popped) PUSH_INSN(ret, *location, pop);
8701 for (
const rb_iseq_t *tmp_iseq = iseq; tmp_iseq != ISEQ_BODY(iseq)->local_iseq; level++) {
8702 tmp_iseq = ISEQ_BODY(tmp_iseq)->parent_iseq;
8705 if (level > 0) access_outer_variables(iseq, level, rb_intern(
"yield"),
true);
8722 int lineno = (int) location.
line;
8724 if (PM_NODE_TYPE_P(node, PM_BEGIN_NODE) && (((
const pm_begin_node_t *) node)->statements == NULL) && (((
const pm_begin_node_t *) node)->rescue_clause != NULL)) {
8729 lineno = (int) PM_NODE_START_LINE_COLUMN(((
const pm_begin_node_t *) node)->rescue_clause).line;
8732 if (PM_NODE_FLAG_P(node, PM_NODE_FLAG_NEWLINE) && ISEQ_COMPILE_DATA(iseq)->last_line != lineno) {
8738 ISEQ_COMPILE_DATA(iseq)->last_line = lineno;
8739 if (lineno > 0 && ISEQ_COVERAGE(iseq) && ISEQ_LINE_COVERAGE(iseq)) {
8740 event |= RUBY_EVENT_COVERAGE_LINE;
8742 PUSH_TRACE(ret, event);
8745 switch (PM_NODE_TYPE(node)) {
8746 case PM_ALIAS_GLOBAL_VARIABLE_NODE:
8751 case PM_ALIAS_METHOD_NODE:
8754 pm_compile_alias_method_node(iseq, (
const pm_alias_method_node_t *) node, &location, ret, popped, scope_node);
8759 pm_compile_and_node(iseq, (
const pm_and_node_t *) node, &location, ret, popped, scope_node);
8761 case PM_ARGUMENTS_NODE: {
8771 if (elements->
size == 1) {
8774 PM_COMPILE(elements->
nodes[0]);
8777 pm_compile_array_node(iseq, (
const pm_node_t *) cast, elements, &location, ret, popped, scope_node);
8781 case PM_ARRAY_NODE: {
8785 pm_compile_array_node(iseq, (
const pm_node_t *) cast, &cast->elements, &location, ret, popped, scope_node);
8788 case PM_ASSOC_NODE: {
8796 PM_COMPILE(cast->
key);
8797 PM_COMPILE(cast->
value);
8801 case PM_ASSOC_SPLAT_NODE: {
8809 if (cast->
value != NULL) {
8810 PM_COMPILE(cast->
value);
8813 pm_local_index_t index = pm_lookup_local_index(iseq, scope_node, PM_CONSTANT_POW, 0);
8814 PUSH_GETLOCAL(ret, location, index.index, index.level);
8819 case PM_BACK_REFERENCE_READ_NODE: {
8824 VALUE backref = pm_compile_back_reference_ref(scope_node, cast);
8826 PUSH_INSN2(ret, location, getspecial,
INT2FIX(1), backref);
8830 case PM_BEGIN_NODE: {
8838 pm_compile_ensure(iseq, cast, &location, ret, popped, scope_node);
8842 pm_compile_rescue(iseq, cast, &location, ret, popped, scope_node);
8851 PUSH_SYNTHETIC_PUTNIL(ret, iseq);
8856 case PM_BLOCK_ARGUMENT_NODE: {
8866 pm_local_index_t local_index = pm_lookup_local_index(iseq, scope_node, PM_CONSTANT_AND, 0);
8867 PUSH_INSN2(ret, location, getblockparamproxy,
INT2FIX(local_index.index + VM_ENV_DATA_SIZE - 1),
INT2FIX(local_index.level));
8877 pm_compile_break_node(iseq, (
const pm_break_node_t *) node, &location, ret, popped, scope_node);
8888 pm_compile_call_node(iseq, (
const pm_call_node_t *) node, ret, popped, scope_node);
8890 case PM_CALL_AND_WRITE_NODE: {
8894 pm_compile_call_and_or_write_node(iseq,
true, cast->
receiver, cast->
value, cast->
write_name, cast->
read_name, PM_NODE_FLAG_P(cast, PM_CALL_NODE_FLAGS_SAFE_NAVIGATION), &location, ret, popped, scope_node);
8897 case PM_CALL_OR_WRITE_NODE: {
8901 pm_compile_call_and_or_write_node(iseq,
false, cast->
receiver, cast->
value, cast->
write_name, cast->
read_name, PM_NODE_FLAG_P(cast, PM_CALL_NODE_FLAGS_SAFE_NAVIGATION), &location, ret, popped, scope_node);
8904 case PM_CALL_OPERATOR_WRITE_NODE:
8919 pm_compile_case_node(iseq, (
const pm_case_node_t *) node, &location, ret, popped, scope_node);
8921 case PM_CASE_MATCH_NODE:
8930 pm_compile_case_match_node(iseq, (
const pm_case_match_node_t *) node, &location, ret, popped, scope_node);
8932 case PM_CLASS_NODE: {
8937 ID class_id = pm_constant_id_lookup(scope_node, cast->
name);
8938 VALUE class_name =
rb_str_freeze(rb_sprintf(
"<class:%"PRIsVALUE
">", rb_id2str(class_id)));
8941 pm_scope_node_init((
const pm_node_t *) cast, &next_scope_node, scope_node);
8943 const rb_iseq_t *class_iseq = NEW_CHILD_ISEQ(&next_scope_node, class_name, ISEQ_TYPE_CLASS, location.
line);
8944 pm_scope_node_destroy(&next_scope_node);
8947 const int flags = VM_DEFINECLASS_TYPE_CLASS |
8948 (cast->
superclass ? VM_DEFINECLASS_FLAG_HAS_SUPERCLASS : 0) |
8949 pm_compile_class_path(iseq, cast->
constant_path, &location, ret,
false, scope_node);
8955 PUSH_INSN(ret, location, putnil);
8960 PUSH_INSN3(ret, location, defineclass, operand, class_iseq,
INT2FIX(flags));
8964 if (popped) PUSH_INSN(ret, location, pop);
8967 case PM_CLASS_VARIABLE_AND_WRITE_NODE: {
8971 LABEL *end_label = NEW_LABEL(location.
line);
8973 ID name_id = pm_constant_id_lookup(scope_node, cast->
name);
8976 PUSH_INSN2(ret, location, getclassvariable, name, get_cvar_ic_value(iseq, name_id));
8977 if (!popped) PUSH_INSN(ret, location, dup);
8979 PUSH_INSNL(ret, location, branchunless, end_label);
8980 if (!popped) PUSH_INSN(ret, location, pop);
8982 PM_COMPILE_NOT_POPPED(cast->
value);
8983 if (!popped) PUSH_INSN(ret, location, dup);
8985 PUSH_INSN2(ret, location, setclassvariable, name, get_cvar_ic_value(iseq, name_id));
8986 PUSH_LABEL(ret, end_label);
8990 case PM_CLASS_VARIABLE_OPERATOR_WRITE_NODE: {
8995 ID name_id = pm_constant_id_lookup(scope_node, cast->
name);
8998 PUSH_INSN2(ret, location, getclassvariable, name, get_cvar_ic_value(iseq, name_id));
8999 PM_COMPILE_NOT_POPPED(cast->
value);
9002 int flags = VM_CALL_ARGS_SIMPLE;
9003 PUSH_SEND_WITH_FLAG(ret, location, method_id,
INT2NUM(1),
INT2FIX(flags));
9005 if (!popped) PUSH_INSN(ret, location, dup);
9006 PUSH_INSN2(ret, location, setclassvariable, name, get_cvar_ic_value(iseq, name_id));
9010 case PM_CLASS_VARIABLE_OR_WRITE_NODE: {
9014 LABEL *end_label = NEW_LABEL(location.
line);
9015 LABEL *start_label = NEW_LABEL(location.
line);
9017 ID name_id = pm_constant_id_lookup(scope_node, cast->
name);
9020 PUSH_INSN(ret, location, putnil);
9021 PUSH_INSN3(ret, location, defined,
INT2FIX(DEFINED_CVAR), name,
Qtrue);
9022 PUSH_INSNL(ret, location, branchunless, start_label);
9024 PUSH_INSN2(ret, location, getclassvariable, name, get_cvar_ic_value(iseq, name_id));
9025 if (!popped) PUSH_INSN(ret, location, dup);
9027 PUSH_INSNL(ret, location, branchif, end_label);
9028 if (!popped) PUSH_INSN(ret, location, pop);
9030 PUSH_LABEL(ret, start_label);
9031 PM_COMPILE_NOT_POPPED(cast->
value);
9032 if (!popped) PUSH_INSN(ret, location, dup);
9034 PUSH_INSN2(ret, location, setclassvariable, name, get_cvar_ic_value(iseq, name_id));
9035 PUSH_LABEL(ret, end_label);
9039 case PM_CLASS_VARIABLE_READ_NODE: {
9044 ID name = pm_constant_id_lookup(scope_node, cast->
name);
9045 PUSH_INSN2(ret, location, getclassvariable,
ID2SYM(name), get_cvar_ic_value(iseq, name));
9049 case PM_CLASS_VARIABLE_WRITE_NODE: {
9053 PM_COMPILE_NOT_POPPED(cast->
value);
9054 if (!popped) PUSH_INSN(ret, location, dup);
9056 ID name = pm_constant_id_lookup(scope_node, cast->
name);
9057 PUSH_INSN2(ret, location, setclassvariable,
ID2SYM(name), get_cvar_ic_value(iseq, name));
9061 case PM_CONSTANT_PATH_NODE: {
9066 if (ISEQ_COMPILE_DATA(iseq)->option->inline_const_cache && ((parts = pm_constant_path_parts(node, scope_node)) !=
Qnil)) {
9067 ISEQ_BODY(iseq)->ic_size++;
9069 PUSH_INSN1(ret, location, opt_getconstant_path, parts);
9072 DECL_ANCHOR(prefix);
9075 pm_compile_constant_path(iseq, node, prefix, body, popped, scope_node);
9076 if (LIST_INSN_SIZE_ZERO(prefix)) {
9077 PUSH_INSN(ret, location, putnil);
9080 PUSH_SEQ(ret, prefix);
9083 PUSH_SEQ(ret, body);
9086 if (popped) PUSH_INSN(ret, location, pop);
9089 case PM_CONSTANT_PATH_AND_WRITE_NODE: {
9093 pm_compile_constant_path_and_write_node(iseq, cast, 0, &location, ret, popped, scope_node);
9096 case PM_CONSTANT_PATH_OR_WRITE_NODE: {
9100 pm_compile_constant_path_or_write_node(iseq, cast, 0, &location, ret, popped, scope_node);
9103 case PM_CONSTANT_PATH_OPERATOR_WRITE_NODE: {
9107 pm_compile_constant_path_operator_write_node(iseq, cast, 0, &location, ret, popped, scope_node);
9110 case PM_CONSTANT_PATH_WRITE_NODE: {
9114 pm_compile_constant_path_write_node(iseq, cast, 0, &location, ret, popped, scope_node);
9117 case PM_CONSTANT_READ_NODE: {
9123 pm_compile_constant_read(iseq, name, &cast->
base.
location, location.
node_id, ret, scope_node);
9124 if (popped) PUSH_INSN(ret, location, pop);
9128 case PM_CONSTANT_AND_WRITE_NODE: {
9132 pm_compile_constant_and_write_node(iseq, cast, 0, &location, ret, popped, scope_node);
9135 case PM_CONSTANT_OR_WRITE_NODE: {
9139 pm_compile_constant_or_write_node(iseq, cast, 0, &location, ret, popped, scope_node);
9142 case PM_CONSTANT_OPERATOR_WRITE_NODE: {
9146 pm_compile_constant_operator_write_node(iseq, cast, 0, &location, ret, popped, scope_node);
9149 case PM_CONSTANT_WRITE_NODE: {
9153 pm_compile_constant_write_node(iseq, cast, 0, &location, ret, popped, scope_node);
9163 ID method_name = pm_constant_id_lookup(scope_node, cast->
name);
9166 pm_scope_node_init((
const pm_node_t *) cast, &next_scope_node, scope_node);
9168 rb_iseq_t *method_iseq = NEW_ISEQ(&next_scope_node, rb_id2str(method_name), ISEQ_TYPE_METHOD, location.
line);
9169 pm_scope_node_destroy(&next_scope_node);
9172 PM_COMPILE_NOT_POPPED(cast->
receiver);
9173 PUSH_INSN2(ret, location, definesmethod,
ID2SYM(method_name), method_iseq);
9176 PUSH_INSN2(ret, location, definemethod,
ID2SYM(method_name), method_iseq);
9181 PUSH_INSN1(ret, location, putobject,
ID2SYM(method_name));
9186 case PM_DEFINED_NODE: {
9190 pm_compile_defined_expr(iseq, cast->
value, &location, ret, popped, scope_node,
false);
9193 case PM_EMBEDDED_STATEMENTS_NODE: {
9202 PUSH_SYNTHETIC_PUTNIL(ret, iseq);
9205 if (popped) PUSH_INSN(ret, location, pop);
9208 case PM_EMBEDDED_VARIABLE_NODE: {
9215 case PM_FALSE_NODE: {
9219 PUSH_INSN1(ret, location, putobject,
Qfalse);
9223 case PM_ENSURE_NODE: {
9232 case PM_ELSE_NODE: {
9241 PUSH_SYNTHETIC_PUTNIL(ret, iseq);
9246 case PM_FLIP_FLOP_NODE: {
9251 LABEL *final_label = NEW_LABEL(location.
line);
9252 LABEL *then_label = NEW_LABEL(location.
line);
9253 LABEL *else_label = NEW_LABEL(location.
line);
9255 pm_compile_flip_flop(cast, else_label, then_label, iseq, location.
line, ret, popped, scope_node);
9257 PUSH_LABEL(ret, then_label);
9258 PUSH_INSN1(ret, location, putobject,
Qtrue);
9259 PUSH_INSNL(ret, location, jump, final_label);
9260 PUSH_LABEL(ret, else_label);
9261 PUSH_INSN1(ret, location, putobject,
Qfalse);
9262 PUSH_LABEL(ret, final_label);
9266 case PM_FLOAT_NODE: {
9271 PUSH_INSN1(ret, location, putobject, operand);
9280 LABEL *retry_label = NEW_LABEL(location.
line);
9281 LABEL *retry_end_l = NEW_LABEL(location.
line);
9284 PUSH_LABEL(ret, retry_label);
9290 pm_scope_node_init((
const pm_node_t *) cast, &next_scope_node, scope_node);
9292 const rb_iseq_t *child_iseq = NEW_CHILD_ISEQ(&next_scope_node, make_name_for_block(iseq), ISEQ_TYPE_BLOCK, location.
line);
9293 pm_scope_node_destroy(&next_scope_node);
9295 const rb_iseq_t *prev_block = ISEQ_COMPILE_DATA(iseq)->current_block;
9296 ISEQ_COMPILE_DATA(iseq)->current_block = child_iseq;
9300 PUSH_SEND_WITH_BLOCK(ret, location, idEach,
INT2FIX(0), child_iseq);
9301 pm_compile_retry_end_label(iseq, ret, retry_end_l);
9303 if (popped) PUSH_INSN(ret, location, pop);
9304 ISEQ_COMPILE_DATA(iseq)->current_block = prev_block;
9305 PUSH_CATCH_ENTRY(CATCH_TYPE_BREAK, retry_label, retry_end_l, child_iseq, retry_end_l);
9308 case PM_FORWARDING_ARGUMENTS_NODE:
9309 rb_bug(
"Cannot compile a ForwardingArgumentsNode directly\n");
9311 case PM_FORWARDING_SUPER_NODE:
9319 case PM_GLOBAL_VARIABLE_AND_WRITE_NODE: {
9323 LABEL *end_label = NEW_LABEL(location.
line);
9326 PUSH_INSN1(ret, location, getglobal, name);
9327 if (!popped) PUSH_INSN(ret, location, dup);
9329 PUSH_INSNL(ret, location, branchunless, end_label);
9330 if (!popped) PUSH_INSN(ret, location, pop);
9332 PM_COMPILE_NOT_POPPED(cast->
value);
9333 if (!popped) PUSH_INSN(ret, location, dup);
9335 PUSH_INSN1(ret, location, setglobal, name);
9336 PUSH_LABEL(ret, end_label);
9340 case PM_GLOBAL_VARIABLE_OPERATOR_WRITE_NODE: {
9346 PUSH_INSN1(ret, location, getglobal, name);
9347 PM_COMPILE_NOT_POPPED(cast->
value);
9350 int flags = VM_CALL_ARGS_SIMPLE;
9351 PUSH_SEND_WITH_FLAG(ret, location, method_id,
INT2NUM(1),
INT2FIX(flags));
9353 if (!popped) PUSH_INSN(ret, location, dup);
9354 PUSH_INSN1(ret, location, setglobal, name);
9358 case PM_GLOBAL_VARIABLE_OR_WRITE_NODE: {
9362 LABEL *set_label = NEW_LABEL(location.
line);
9363 LABEL *end_label = NEW_LABEL(location.
line);
9365 PUSH_INSN(ret, location, putnil);
9368 PUSH_INSN3(ret, location, defined,
INT2FIX(DEFINED_GVAR), name,
Qtrue);
9369 PUSH_INSNL(ret, location, branchunless, set_label);
9371 PUSH_INSN1(ret, location, getglobal, name);
9372 if (!popped) PUSH_INSN(ret, location, dup);
9374 PUSH_INSNL(ret, location, branchif, end_label);
9375 if (!popped) PUSH_INSN(ret, location, pop);
9377 PUSH_LABEL(ret, set_label);
9378 PM_COMPILE_NOT_POPPED(cast->
value);
9379 if (!popped) PUSH_INSN(ret, location, dup);
9381 PUSH_INSN1(ret, location, setglobal, name);
9382 PUSH_LABEL(ret, end_label);
9386 case PM_GLOBAL_VARIABLE_READ_NODE: {
9392 PUSH_INSN1(ret, location, getglobal, name);
9393 if (popped) PUSH_INSN(ret, location, pop);
9397 case PM_GLOBAL_VARIABLE_WRITE_NODE: {
9401 PM_COMPILE_NOT_POPPED(cast->
value);
9402 if (!popped) PUSH_INSN(ret, location, dup);
9404 ID name = pm_constant_id_lookup(scope_node, cast->
name);
9405 PUSH_INSN1(ret, location, setglobal,
ID2SYM(name));
9409 case PM_HASH_NODE: {
9415 if (PM_NODE_FLAG_P(node, PM_NODE_FLAG_STATIC_LITERAL)) {
9423 PUSH_INSN1(ret, location, newhash,
INT2FIX(0));
9426 VALUE value = pm_static_literal_value(iseq, node, scope_node);
9427 PUSH_INSN1(ret, location, duphash, value);
9448 for (
size_t index = 0; index < elements->
size; index++) {
9449 PM_COMPILE_POPPED(elements->
nodes[index]);
9453 pm_compile_hash_elements(iseq, node, elements, 0,
Qundef,
false, ret, scope_node);
9469 pm_compile_conditional(iseq, &location, PM_IF_NODE, (
const pm_node_t *) cast, cast->statements, cast->subsequent, cast->predicate, ret, popped, scope_node);
9472 case PM_IMAGINARY_NODE: {
9477 PUSH_INSN1(ret, location, putobject, operand);
9481 case PM_IMPLICIT_NODE: {
9491 PM_COMPILE(cast->
value);
9497 rb_bug(
"Should not ever enter an in node directly");
9500 case PM_INDEX_OPERATOR_WRITE_NODE: {
9504 pm_compile_index_operator_write_node(iseq, cast, &location, ret, popped, scope_node);
9507 case PM_INDEX_AND_WRITE_NODE: {
9511 pm_compile_index_control_flow_write_node(iseq, node, cast->
receiver, cast->
arguments, cast->
block, cast->
value, &location, ret, popped, scope_node);
9514 case PM_INDEX_OR_WRITE_NODE: {
9518 pm_compile_index_control_flow_write_node(iseq, node, cast->
receiver, cast->
arguments, cast->
block, cast->
value, &location, ret, popped, scope_node);
9521 case PM_INSTANCE_VARIABLE_AND_WRITE_NODE: {
9525 LABEL *end_label = NEW_LABEL(location.
line);
9527 ID name_id = pm_constant_id_lookup(scope_node, cast->
name);
9530 PUSH_INSN2(ret, location, getinstancevariable, name, get_ivar_ic_value(iseq, name_id));
9531 if (!popped) PUSH_INSN(ret, location, dup);
9533 PUSH_INSNL(ret, location, branchunless, end_label);
9534 if (!popped) PUSH_INSN(ret, location, pop);
9536 PM_COMPILE_NOT_POPPED(cast->
value);
9537 if (!popped) PUSH_INSN(ret, location, dup);
9539 PUSH_INSN2(ret, location, setinstancevariable, name, get_ivar_ic_value(iseq, name_id));
9540 PUSH_LABEL(ret, end_label);
9544 case PM_INSTANCE_VARIABLE_OPERATOR_WRITE_NODE: {
9549 ID name_id = pm_constant_id_lookup(scope_node, cast->
name);
9552 PUSH_INSN2(ret, location, getinstancevariable, name, get_ivar_ic_value(iseq, name_id));
9553 PM_COMPILE_NOT_POPPED(cast->
value);
9556 int flags = VM_CALL_ARGS_SIMPLE;
9557 PUSH_SEND_WITH_FLAG(ret, location, method_id,
INT2NUM(1),
INT2FIX(flags));
9559 if (!popped) PUSH_INSN(ret, location, dup);
9560 PUSH_INSN2(ret, location, setinstancevariable, name, get_ivar_ic_value(iseq, name_id));
9564 case PM_INSTANCE_VARIABLE_OR_WRITE_NODE: {
9568 LABEL *end_label = NEW_LABEL(location.
line);
9570 ID name_id = pm_constant_id_lookup(scope_node, cast->
name);
9573 PUSH_INSN2(ret, location, getinstancevariable, name, get_ivar_ic_value(iseq, name_id));
9574 if (!popped) PUSH_INSN(ret, location, dup);
9576 PUSH_INSNL(ret, location, branchif, end_label);
9577 if (!popped) PUSH_INSN(ret, location, pop);
9579 PM_COMPILE_NOT_POPPED(cast->
value);
9580 if (!popped) PUSH_INSN(ret, location, dup);
9582 PUSH_INSN2(ret, location, setinstancevariable, name, get_ivar_ic_value(iseq, name_id));
9583 PUSH_LABEL(ret, end_label);
9587 case PM_INSTANCE_VARIABLE_READ_NODE: {
9592 ID name = pm_constant_id_lookup(scope_node, cast->
name);
9593 PUSH_INSN2(ret, location, getinstancevariable,
ID2SYM(name), get_ivar_ic_value(iseq, name));
9597 case PM_INSTANCE_VARIABLE_WRITE_NODE: {
9601 PM_COMPILE_NOT_POPPED(cast->
value);
9602 if (!popped) PUSH_INSN(ret, location, dup);
9604 ID name = pm_constant_id_lookup(scope_node, cast->
name);
9605 PUSH_INSN2(ret, location, setinstancevariable,
ID2SYM(name), get_ivar_ic_value(iseq, name));
9609 case PM_INTEGER_NODE: {
9614 PUSH_INSN1(ret, location, putobject, operand);
9618 case PM_INTERPOLATED_MATCH_LAST_LINE_NODE: {
9621 if (PM_NODE_FLAG_P(node, PM_NODE_FLAG_STATIC_LITERAL)) {
9623 VALUE regexp = pm_static_literal_value(iseq, node, scope_node);
9624 PUSH_INSN1(ret, location, putobject, regexp);
9631 PUSH_INSN1(ret, location, getglobal,
rb_id2sym(idLASTLINE));
9632 PUSH_SEND(ret, location, idEqTilde,
INT2NUM(1));
9633 if (popped) PUSH_INSN(ret, location, pop);
9637 case PM_INTERPOLATED_REGULAR_EXPRESSION_NODE: {
9640 if (PM_NODE_FLAG_P(node, PM_REGULAR_EXPRESSION_FLAGS_ONCE)) {
9641 const rb_iseq_t *prevblock = ISEQ_COMPILE_DATA(iseq)->current_block;
9643 int ise_index = ISEQ_BODY(iseq)->ise_size++;
9646 pm_scope_node_init(node, &next_scope_node, scope_node);
9648 block_iseq = NEW_CHILD_ISEQ(&next_scope_node, make_name_for_block(iseq), ISEQ_TYPE_PLAIN, location.
line);
9649 pm_scope_node_destroy(&next_scope_node);
9651 ISEQ_COMPILE_DATA(iseq)->current_block = block_iseq;
9652 PUSH_INSN2(ret, location, once, block_iseq,
INT2FIX(ise_index));
9653 ISEQ_COMPILE_DATA(iseq)->current_block = prevblock;
9655 if (popped) PUSH_INSN(ret, location, pop);
9659 if (PM_NODE_FLAG_P(node, PM_NODE_FLAG_STATIC_LITERAL)) {
9661 VALUE regexp = pm_static_literal_value(iseq, node, scope_node);
9662 PUSH_INSN1(ret, location, putobject, regexp);
9667 if (popped) PUSH_INSN(ret, location, pop);
9672 case PM_INTERPOLATED_STRING_NODE: {
9675 if (PM_NODE_FLAG_P(node, PM_NODE_FLAG_STATIC_LITERAL)) {
9677 VALUE string = pm_static_literal_value(iseq, node, scope_node);
9679 if (PM_NODE_FLAG_P(node, PM_INTERPOLATED_STRING_NODE_FLAGS_FROZEN)) {
9680 PUSH_INSN1(ret, location, putobject,
string);
9682 else if (PM_NODE_FLAG_P(node, PM_INTERPOLATED_STRING_NODE_FLAGS_MUTABLE)) {
9683 PUSH_INSN1(ret, location, dupstring,
string);
9686 PUSH_INSN1(ret, location, dupchilledstring,
string);
9692 int length = pm_interpolated_node_compile(iseq, &cast->
parts, &location, ret, popped, scope_node, NULL, NULL, PM_NODE_FLAG_P(cast, PM_INTERPOLATED_STRING_NODE_FLAGS_MUTABLE), PM_NODE_FLAG_P(cast, PM_INTERPOLATED_STRING_NODE_FLAGS_FROZEN));
9693 if (length > 1) PUSH_INSN1(ret, location, concatstrings,
INT2FIX(length));
9694 if (popped) PUSH_INSN(ret, location, pop);
9699 case PM_INTERPOLATED_SYMBOL_NODE: {
9703 int length = pm_interpolated_node_compile(iseq, &cast->
parts, &location, ret, popped, scope_node, NULL, NULL,
false,
false);
9706 PUSH_INSN1(ret, location, concatstrings,
INT2FIX(length));
9710 PUSH_INSN(ret, location, intern);
9713 PUSH_INSN(ret, location, pop);
9718 case PM_INTERPOLATED_X_STRING_NODE: {
9723 PUSH_INSN(ret, location, putself);
9725 int length = pm_interpolated_node_compile(iseq, &cast->
parts, &location, ret,
false, scope_node, NULL, NULL,
false,
false);
9726 if (length > 1) PUSH_INSN1(ret, location, concatstrings,
INT2FIX(length));
9728 PUSH_SEND_WITH_FLAG(ret, location, idBackquote,
INT2NUM(1),
INT2FIX(VM_CALL_FCALL | VM_CALL_ARGS_SIMPLE));
9729 if (popped) PUSH_INSN(ret, location, pop);
9733 case PM_IT_LOCAL_VARIABLE_READ_NODE: {
9740 while (current_scope_node) {
9741 if (current_scope_node->parameters && PM_NODE_TYPE_P(current_scope_node->parameters, PM_IT_PARAMETERS_NODE)) {
9742 PUSH_GETLOCAL(ret, location, current_scope_node->local_table_for_iseq_size, level);
9746 current_scope_node = current_scope_node->previous;
9749 rb_bug(
"Local `it` does not exist");
9754 case PM_KEYWORD_HASH_NODE: {
9760 bool has_splat =
false;
9761 for (
size_t index = 0; index < elements->
size; index++) {
9762 if (PM_NODE_TYPE_P(elements->
nodes[index], PM_ASSOC_SPLAT_NODE)) {
9769 pm_compile_hash_elements(iseq, node, elements, 0,
Qundef,
false, ret, scope_node);
9774 PM_COMPILE(element);
9777 if (!popped) PUSH_INSN1(ret, location, newhash,
INT2FIX(elements->
size * 2));
9781 case PM_LAMBDA_NODE: {
9787 pm_scope_node_init(node, &next_scope_node, scope_node);
9789 int opening_lineno = pm_location_line_number_cached(&cast->
opening_loc, scope_node);
9790 const rb_iseq_t *block = NEW_CHILD_ISEQ(&next_scope_node, make_name_for_block(iseq), ISEQ_TYPE_BLOCK, opening_lineno);
9791 pm_scope_node_destroy(&next_scope_node);
9794 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
9795 PUSH_CALL_WITH_BLOCK(ret, location, idLambda, argc, block);
9798 if (popped) PUSH_INSN(ret, location, pop);
9801 case PM_LOCAL_VARIABLE_AND_WRITE_NODE: {
9805 LABEL *end_label = NEW_LABEL(location.
line);
9808 PUSH_GETLOCAL(ret, location, local_index.index, local_index.level);
9809 if (!popped) PUSH_INSN(ret, location, dup);
9811 PUSH_INSNL(ret, location, branchunless, end_label);
9812 if (!popped) PUSH_INSN(ret, location, pop);
9814 PM_COMPILE_NOT_POPPED(cast->
value);
9815 if (!popped) PUSH_INSN(ret, location, dup);
9817 PUSH_SETLOCAL(ret, location, local_index.index, local_index.level);
9818 PUSH_LABEL(ret, end_label);
9822 case PM_LOCAL_VARIABLE_OPERATOR_WRITE_NODE: {
9828 PUSH_GETLOCAL(ret, location, local_index.index, local_index.level);
9830 PM_COMPILE_NOT_POPPED(cast->
value);
9833 PUSH_SEND_WITH_FLAG(ret, location, method_id,
INT2NUM(1),
INT2FIX(VM_CALL_ARGS_SIMPLE));
9835 if (!popped) PUSH_INSN(ret, location, dup);
9836 PUSH_SETLOCAL(ret, location, local_index.index, local_index.level);
9840 case PM_LOCAL_VARIABLE_OR_WRITE_NODE: {
9845 LABEL *set_label = NEW_LABEL(location.
line);
9846 LABEL *end_label = NEW_LABEL(location.
line);
9848 PUSH_INSN1(ret, location, putobject,
Qtrue);
9849 PUSH_INSNL(ret, location, branchunless, set_label);
9852 PUSH_GETLOCAL(ret, location, local_index.index, local_index.level);
9853 if (!popped) PUSH_INSN(ret, location, dup);
9855 PUSH_INSNL(ret, location, branchif, end_label);
9856 if (!popped) PUSH_INSN(ret, location, pop);
9858 PUSH_LABEL(ret, set_label);
9859 PM_COMPILE_NOT_POPPED(cast->
value);
9860 if (!popped) PUSH_INSN(ret, location, dup);
9862 PUSH_SETLOCAL(ret, location, local_index.index, local_index.level);
9863 PUSH_LABEL(ret, end_label);
9867 case PM_LOCAL_VARIABLE_READ_NODE: {
9873 PUSH_GETLOCAL(ret, location, index.index, index.level);
9878 case PM_LOCAL_VARIABLE_WRITE_NODE: {
9882 PM_COMPILE_NOT_POPPED(cast->
value);
9883 if (!popped) PUSH_INSN(ret, location, dup);
9886 PUSH_SETLOCAL(ret, location, index.index, index.level);
9889 case PM_MATCH_LAST_LINE_NODE: {
9892 VALUE regexp = pm_static_literal_value(iseq, node, scope_node);
9894 PUSH_INSN1(ret, location, putobject, regexp);
9896 PUSH_SEND(ret, location, idEqTilde,
INT2NUM(1));
9897 if (popped) PUSH_INSN(ret, location, pop);
9901 case PM_MATCH_PREDICATE_NODE: {
9908 PUSH_INSN(ret, location, putnil);
9911 PM_COMPILE_NOT_POPPED(cast->
value);
9912 PUSH_INSN(ret, location, dup);
9916 LABEL *matched_label = NEW_LABEL(location.
line);
9917 LABEL *unmatched_label = NEW_LABEL(location.
line);
9918 LABEL *done_label = NEW_LABEL(location.
line);
9919 pm_compile_pattern(iseq, scope_node, cast->
pattern, ret, matched_label, unmatched_label,
false,
true, 2);
9923 PUSH_LABEL(ret, unmatched_label);
9924 PUSH_INSN(ret, location, pop);
9925 PUSH_INSN(ret, location, pop);
9927 if (!popped) PUSH_INSN1(ret, location, putobject,
Qfalse);
9928 PUSH_INSNL(ret, location, jump, done_label);
9929 PUSH_INSN(ret, location, putnil);
9933 PUSH_LABEL(ret, matched_label);
9934 PUSH_INSN1(ret, location, adjuststack,
INT2FIX(2));
9935 if (!popped) PUSH_INSN1(ret, location, putobject,
Qtrue);
9936 PUSH_INSNL(ret, location, jump, done_label);
9938 PUSH_LABEL(ret, done_label);
9941 case PM_MATCH_REQUIRED_NODE:
9955 case PM_MATCH_WRITE_NODE:
9964 pm_compile_match_write_node(iseq, (
const pm_match_write_node_t *) node, &location, ret, popped, scope_node);
9966 case PM_ERROR_RECOVERY_NODE:
9967 rb_bug(
"A pm_error_recovery_node_t should not exist in prism's AST.");
9969 case PM_MODULE_NODE: {
9974 ID module_id = pm_constant_id_lookup(scope_node, cast->
name);
9975 VALUE module_name =
rb_str_freeze(rb_sprintf(
"<module:%"PRIsVALUE
">", rb_id2str(module_id)));
9978 pm_scope_node_init((
const pm_node_t *) cast, &next_scope_node, scope_node);
9980 const rb_iseq_t *module_iseq = NEW_CHILD_ISEQ(&next_scope_node, module_name, ISEQ_TYPE_CLASS, location.
line);
9981 pm_scope_node_destroy(&next_scope_node);
9983 const int flags = VM_DEFINECLASS_TYPE_MODULE | pm_compile_class_path(iseq, cast->
constant_path, &location, ret,
false, scope_node);
9984 PUSH_INSN(ret, location, putnil);
9985 PUSH_INSN3(ret, location, defineclass,
ID2SYM(module_id), module_iseq,
INT2FIX(flags));
9988 if (popped) PUSH_INSN(ret, location, pop);
9991 case PM_REQUIRED_PARAMETER_NODE: {
9997 PUSH_SETLOCAL(ret, location, index.index, index.level);
10000 case PM_MULTI_WRITE_NODE: {
10011 DECL_ANCHOR(writes);
10012 DECL_ANCHOR(cleanup);
10015 state.position = popped ? 0 : 1;
10016 pm_compile_multi_target_node(iseq, node, ret, writes, cleanup, scope_node, &state);
10018 PM_COMPILE_NOT_POPPED(cast->
value);
10019 if (!popped) PUSH_INSN(ret, location, dup);
10021 PUSH_SEQ(ret, writes);
10022 if (!popped && state.stack_size >= 1) {
10025 PUSH_INSN1(ret, location, setn,
INT2FIX(state.stack_size));
10030 pm_multi_target_state_update(&state);
10032 PUSH_SEQ(ret, cleanup);
10041 pm_compile_next_node(iseq, (
const pm_next_node_t *) node, &location, ret, popped, scope_node);
10043 case PM_NIL_NODE: {
10047 PUSH_INSN(ret, location, putnil);
10052 case PM_NO_BLOCK_PARAMETER_NODE: {
10055 ISEQ_BODY(iseq)->param.flags.accepts_no_block = TRUE;
10058 case PM_NO_KEYWORDS_PARAMETER_NODE: {
10061 ISEQ_BODY(iseq)->param.flags.accepts_no_kwarg = TRUE;
10064 case PM_NUMBERED_REFERENCE_READ_NODE: {
10070 if (cast->
number != 0) {
10071 VALUE ref = pm_compile_numbered_reference_ref(cast);
10072 PUSH_INSN2(ret, location, getspecial,
INT2FIX(1), ref);
10075 PUSH_INSN(ret, location, putnil);
10086 LABEL *end_label = NEW_LABEL(location.
line);
10087 PM_COMPILE_NOT_POPPED(cast->
left);
10089 if (!popped) PUSH_INSN(ret, location, dup);
10090 PUSH_INSNL(ret, location, branchif, end_label);
10092 if (!popped) PUSH_INSN(ret, location, pop);
10093 PM_COMPILE(cast->
right);
10094 PUSH_LABEL(ret, end_label);
10098 case PM_OPTIONAL_PARAMETER_NODE: {
10102 PM_COMPILE_NOT_POPPED(cast->
value);
10105 PUSH_SETLOCAL(ret, location, index.index, index.level);
10109 case PM_PARENTHESES_NODE: {
10117 if (cast->
body != NULL) {
10118 PM_COMPILE(cast->
body);
10120 else if (!popped) {
10121 PUSH_INSN(ret, location, putnil);
10126 case PM_PRE_EXECUTION_NODE: {
10138 DECL_ANCHOR(inner_pre);
10141 DECL_ANCHOR(inner_body);
10146 for (
size_t index = 0; index < body->
size; index++) {
10147 pm_compile_node(iseq, body->
nodes[index], inner_body,
true, scope_node);
10152 PUSH_INSN(inner_body, location, putnil);
10158 PUSH_SEQ(outer_pre, inner_pre);
10159 PUSH_SEQ(outer_pre, inner_body);
10164 case PM_POST_EXECUTION_NODE: {
10168 const rb_iseq_t *prevblock = ISEQ_COMPILE_DATA(iseq)->current_block;
10171 pm_scope_node_init(node, &next_scope_node, scope_node);
10172 child_iseq = NEW_CHILD_ISEQ(&next_scope_node, make_name_for_block(iseq), ISEQ_TYPE_BLOCK, lineno);
10173 pm_scope_node_destroy(&next_scope_node);
10175 ISEQ_COMPILE_DATA(iseq)->current_block = child_iseq;
10177 int is_index = ISEQ_BODY(iseq)->ise_size++;
10178 PUSH_INSN2(ret, location, once, child_iseq,
INT2FIX(is_index));
10180 if (popped) PUSH_INSN(ret, location, pop);
10182 ISEQ_COMPILE_DATA(iseq)->current_block = prevblock;
10186 case PM_RANGE_NODE: {
10190 bool exclude_end = PM_NODE_FLAG_P(cast, PM_RANGE_FLAGS_EXCLUDE_END);
10192 if (pm_optimizable_range_item_p(cast->
left) && pm_optimizable_range_item_p(cast->
right)) {
10198 (left && PM_NODE_TYPE_P(left, PM_INTEGER_NODE)) ? parse_integer((
const pm_integer_node_t *) left) :
Qnil,
10199 (right && PM_NODE_TYPE_P(right, PM_INTEGER_NODE)) ? parse_integer((const
pm_integer_node_t *) right) :
Qnil,
10204 PUSH_INSN1(ret, location, putobject, val);
10208 if (cast->
left != NULL) {
10209 PM_COMPILE(cast->
left);
10211 else if (!popped) {
10212 PUSH_INSN(ret, location, putnil);
10215 if (cast->
right != NULL) {
10216 PM_COMPILE(cast->
right);
10218 else if (!popped) {
10219 PUSH_INSN(ret, location, putnil);
10223 PUSH_INSN1(ret, location, newrange,
INT2FIX(exclude_end ? 1 : 0));
10228 case PM_RATIONAL_NODE: {
10232 PUSH_INSN1(ret, location, putobject, parse_rational((
const pm_rational_node_t *) node));
10239 pm_compile_redo_node(iseq, &location, ret, popped, scope_node);
10241 case PM_REGULAR_EXPRESSION_NODE: {
10245 VALUE regexp = pm_static_literal_value(iseq, node, scope_node);
10246 PUSH_INSN1(ret, location, putobject, regexp);
10250 case PM_RESCUE_NODE:
10253 pm_compile_rescue_node(iseq, (
const pm_rescue_node_t *) node, &location, ret, popped, scope_node);
10255 case PM_RESCUE_MODIFIER_NODE: {
10261 pm_scope_node_init((
const pm_node_t *) cast, &rescue_scope_node, scope_node);
10263 rb_iseq_t *rescue_iseq = NEW_CHILD_ISEQ(
10264 &rescue_scope_node,
10270 pm_scope_node_destroy(&rescue_scope_node);
10272 LABEL *lstart = NEW_LABEL(location.
line);
10273 LABEL *lend = NEW_LABEL(location.
line);
10274 LABEL *lcont = NEW_LABEL(location.
line);
10276 lstart->rescued = LABEL_RESCUE_BEG;
10277 lend->rescued = LABEL_RESCUE_END;
10279 PUSH_LABEL(ret, lstart);
10281 PUSH_LABEL(ret, lend);
10283 PUSH_INSN(ret, location, nop);
10284 PUSH_LABEL(ret, lcont);
10285 if (popped) PUSH_INSN(ret, location, pop);
10287 PUSH_CATCH_ENTRY(CATCH_TYPE_RESCUE, lstart, lend, rescue_iseq, lcont);
10288 PUSH_CATCH_ENTRY(CATCH_TYPE_RETRY, lend, lcont, NULL, lstart);
10291 case PM_RETURN_NODE:
10297 pm_compile_return_node(iseq, (
const pm_return_node_t *) node, &location, ret, popped, scope_node);
10299 case PM_RETRY_NODE: {
10302 if (ISEQ_BODY(iseq)->
type == ISEQ_TYPE_RESCUE) {
10303 PUSH_INSN(ret, location, putnil);
10304 PUSH_INSN1(ret, location,
throw,
INT2FIX(TAG_RETRY));
10305 if (popped) PUSH_INSN(ret, location, pop);
10308 COMPILE_ERROR(iseq, location.
line,
"Invalid retry");
10313 case PM_SCOPE_NODE:
10314 pm_compile_scope_node(iseq, (
pm_scope_node_t *) node, &location, ret, popped);
10316 case PM_SELF_NODE: {
10320 PUSH_INSN(ret, location, putself);
10324 case PM_SHAREABLE_CONSTANT_NODE: {
10328 pm_node_flags_t shareability = (cast->
base.
flags & (PM_SHAREABLE_CONSTANT_NODE_FLAGS_LITERAL | PM_SHAREABLE_CONSTANT_NODE_FLAGS_EXPERIMENTAL_EVERYTHING | PM_SHAREABLE_CONSTANT_NODE_FLAGS_EXPERIMENTAL_COPY));
10330 switch (PM_NODE_TYPE(cast->
write)) {
10331 case PM_CONSTANT_WRITE_NODE:
10334 case PM_CONSTANT_AND_WRITE_NODE:
10337 case PM_CONSTANT_OR_WRITE_NODE:
10340 case PM_CONSTANT_OPERATOR_WRITE_NODE:
10343 case PM_CONSTANT_PATH_WRITE_NODE:
10346 case PM_CONSTANT_PATH_AND_WRITE_NODE:
10349 case PM_CONSTANT_PATH_OR_WRITE_NODE:
10352 case PM_CONSTANT_PATH_OPERATOR_WRITE_NODE:
10356 rb_bug(
"Unexpected node type for shareable constant write: %s", pm_node_type(PM_NODE_TYPE(cast->
write)));
10362 case PM_SINGLETON_CLASS_NODE: {
10368 pm_scope_node_init((
const pm_node_t *) cast, &next_scope_node, scope_node);
10369 const rb_iseq_t *child_iseq = NEW_ISEQ(&next_scope_node, rb_fstring_lit(
"singleton class"), ISEQ_TYPE_CLASS, location.
line);
10370 pm_scope_node_destroy(&next_scope_node);
10373 PUSH_INSN(ret, location, putnil);
10376 CONST_ID(singletonclass,
"singletonclass");
10380 int sclass_flags = VM_DEFINECLASS_TYPE_SINGLETON_CLASS;
10381 if (!(PM_NODE_TYPE_P(cast->
expression, PM_SELF_NODE) &&
10382 ISEQ_BODY(iseq)->
type == ISEQ_TYPE_CLASS) &&
10384 sclass_flags |= VM_DEFINECLASS_FLAG_DYNAMIC_CREF;
10387 PUSH_INSN3(ret, location, defineclass,
ID2SYM(singletonclass), child_iseq,
INT2FIX(sclass_flags));
10389 if (popped) PUSH_INSN(ret, location, pop);
10394 case PM_SOURCE_ENCODING_NODE: {
10398 VALUE value = pm_static_literal_value(iseq, node, scope_node);
10399 PUSH_INSN1(ret, location, putobject, value);
10403 case PM_SOURCE_FILE_NODE: {
10408 VALUE string = pm_source_file_value(cast, scope_node);
10410 if (PM_NODE_FLAG_P(cast, PM_STRING_FLAGS_FROZEN)) {
10411 PUSH_INSN1(ret, location, putobject,
string);
10413 else if (PM_NODE_FLAG_P(cast, PM_STRING_FLAGS_MUTABLE)) {
10414 PUSH_INSN1(ret, location, dupstring,
string);
10417 PUSH_INSN1(ret, location, dupchilledstring,
string);
10422 case PM_SOURCE_LINE_NODE: {
10426 VALUE value = pm_static_literal_value(iseq, node, scope_node);
10427 PUSH_INSN1(ret, location, putobject, value);
10431 case PM_SPLAT_NODE: {
10440 PUSH_INSN1(ret, location, splatarray,
Qtrue);
10444 case PM_STATEMENTS_NODE: {
10449 if (body->
size > 0) {
10450 for (
size_t index = 0; index < body->
size - 1; index++) {
10451 PM_COMPILE_POPPED(body->
nodes[index]);
10453 PM_COMPILE(body->
nodes[body->
size - 1]);
10456 PUSH_INSN(ret, location, putnil);
10460 case PM_STRING_NODE: {
10465 VALUE value = parse_static_literal_string(iseq, scope_node, node, &cast->
unescaped);
10467 if (PM_NODE_FLAG_P(node, PM_STRING_FLAGS_FROZEN)) {
10468 PUSH_INSN1(ret, location, putobject, value);
10470 else if (PM_NODE_FLAG_P(node, PM_STRING_FLAGS_MUTABLE)) {
10471 PUSH_INSN1(ret, location, dupstring, value);
10474 PUSH_INSN1(ret, location, dupchilledstring, value);
10479 case PM_SUPER_NODE:
10483 pm_compile_super_node(iseq, (
const pm_super_node_t *) node, &location, ret, popped, scope_node);
10485 case PM_SYMBOL_NODE: {
10489 VALUE value = pm_static_literal_value(iseq, node, scope_node);
10490 PUSH_INSN1(ret, location, putobject, value);
10494 case PM_TRUE_NODE: {
10498 PUSH_INSN1(ret, location, putobject,
Qtrue);
10502 case PM_UNDEF_NODE: {
10508 for (
size_t index = 0; index < names->
size; index++) {
10509 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_VMCORE));
10510 PUSH_INSN1(ret, location, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_CBASE));
10512 PM_COMPILE_NOT_POPPED(names->
nodes[index]);
10513 PUSH_SEND(ret, location, id_core_undef_method,
INT2NUM(2));
10515 if (index < names->size - 1) {
10516 PUSH_INSN(ret, location, pop);
10520 if (popped) PUSH_INSN(ret, location, pop);
10523 case PM_UNLESS_NODE: {
10535 pm_compile_conditional(iseq, &location, PM_UNLESS_NODE, (
const pm_node_t *) cast, statements, (
const pm_node_t *) cast->statements, cast->predicate, ret, popped, scope_node);
10538 case PM_UNTIL_NODE: {
10545 pm_compile_loop(iseq, &location, cast->
base.
flags, PM_UNTIL_NODE, (
const pm_node_t *) cast, cast->statements, cast->predicate, ret, popped, scope_node);
10548 case PM_WHILE_NODE: {
10555 pm_compile_loop(iseq, &location, cast->
base.
flags, PM_WHILE_NODE, (
const pm_node_t *) cast, cast->statements, cast->predicate, ret, popped, scope_node);
10558 case PM_X_STRING_NODE: {
10562 VALUE value = parse_static_literal_string(iseq, scope_node, node, &cast->
unescaped);
10564 PUSH_INSN(ret, location, putself);
10565 PUSH_INSN1(ret, location, putobject, value);
10566 PUSH_SEND_WITH_FLAG(ret, location, idBackquote,
INT2NUM(1),
INT2FIX(VM_CALL_FCALL | VM_CALL_ARGS_SIMPLE));
10567 if (popped) PUSH_INSN(ret, location, pop);
10571 case PM_YIELD_NODE:
10577 pm_compile_yield_node(iseq, (
const pm_yield_node_t *) node, &location, ret, popped, scope_node);
10580 rb_raise(
rb_eNotImpError,
"node type %s not implemented", pm_node_type(PM_NODE_TYPE(node)));
10585#undef PM_CONTAINER_P
10589pm_iseq_pre_execution_p(
rb_iseq_t *iseq)
10591 switch (ISEQ_BODY(iseq)->
type) {
10592 case ISEQ_TYPE_TOP:
10593 case ISEQ_TYPE_EVAL:
10594 case ISEQ_TYPE_MAIN:
10613 if (pm_iseq_pre_execution_p(iseq)) {
10625 pm_compile_node(iseq, (
const pm_node_t *) node, body,
false, node);
10629 PUSH_SEQ(ret, pre);
10630 PUSH_SEQ(ret, body);
10635 pm_compile_node(iseq, (
const pm_node_t *) node, ret,
false, node);
10638 CHECK(iseq_setup_insn(iseq, ret));
10639 return iseq_setup(iseq, ret);
10646 result->
arena = pm_arena_new();
10647 result->
options = pm_options_new();
10648 pm_options_line_set(result->
options, 1);
10659 SIZED_FREE_N(result->
node.constants, pm_parser_constants_size(result->
node.parser));
10660 pm_scope_node_destroy(&result->
node);
10664 pm_arena_free(result->
arena);
10666 pm_options_free(result->
options);
10678 if (buffer == NULL) {
10683 if (rb_stderr_tty_p()) {
10684 const char *no_color = getenv(
"NO_COLOR");
10685 if (no_color == NULL || no_color[0] ==
'\0') {
10694 pm_error_level_t error_level = pm_errors_format(parser, buffer, format_type);
10697 VALUE message = rb_enc_str_new(pm_buffer_value(buffer), (
long) pm_buffer_length(buffer), message_encoding);
10698 pm_buffer_free(buffer);
10701 switch (error_level) {
10708 VALUE path = rb_enc_str_new((
const char *) pm_string_source(filepath), pm_string_length(filepath), filepath_encoding);
10732pm_intern_constants_callback(
const pm_constant_t *constant,
void *data)
10735 ctx->constants[ctx->index++] = rb_intern3((
const char *) pm_constant_start(constant), pm_constant_length(constant), ctx->encoding);
10742 const char *filepath;
10746pm_warning_emit_callback(
const pm_diagnostic_t *diagnostic,
void *data) {
10749 int line = pm_location_line_number(ctx->parser, &loc);
10752 rb_enc_compile_warning(ctx->encoding, ctx->filepath, line,
"%s", pm_diagnostic_message(diagnostic));
10755 rb_enc_compile_warn(ctx->encoding, ctx->filepath, line,
"%s", pm_diagnostic_message(diagnostic));
10773 const uint8_t *start = pm_parser_start(parser);
10774 const uint8_t *end = pm_parser_end(parser);
10775 const pm_location_t *data_loc = pm_parser_data_loc(parser);
10777 if (data_loc->
length != 0) {
10778 const uint8_t *cursor = start + data_loc->
start;
10779 while (cursor < end && *cursor !=
'\n') cursor++;
10780 if (cursor < end) cursor++;
10785 rb_source_hash_init(&state);
10786 rb_source_hash_update(&state, start, (
size_t) (end - start));
10787 return rb_source_hash_finalize(&state);
10799 int coverage_enabled = scope_node->coverage_enabled;
10801 pm_scope_node_init(node, scope_node, NULL);
10804 const char *encoding_name = pm_parser_encoding_name(parser);
10805 scope_node->encoding = rb_enc_find(encoding_name);
10806 if (!scope_node->encoding) rb_bug(
"Encoding not found %s!", encoding_name);
10808 scope_node->coverage_enabled = coverage_enabled;
10812 if (script_lines != NULL) {
10816 for (
size_t index = 0; index < line_offsets->
size; index++) {
10817 size_t offset = line_offsets->
offsets[index];
10818 size_t length = index == line_offsets->
size - 1 ? ((size_t) (pm_parser_end(parser) - (pm_parser_start(parser) + offset))) : (line_offsets->offsets[index + 1] - offset);
10819 rb_ary_push(*script_lines, rb_enc_str_new((
const char *) pm_parser_start(parser) + offset, length, scope_node->encoding));
10828 .encoding = scope_node->encoding,
10829 .filepath = (
const char *) pm_string_source(pm_parser_filepath(parser))
10831 pm_parser_warnings_each(parser, pm_warning_emit_callback, &warning_ctx);
10834 if (pm_parser_errors_size(parser) > 0) {
10835 VALUE error = pm_parse_process_error(result);
10844 scope_node->parser = parser;
10845 scope_node->
source_hash = pm_source_hash(parser);
10846 scope_node->options = result->
options;
10847 scope_node->line_offsets = pm_parser_line_offsets(parser);
10848 scope_node->start_line = pm_parser_start_line(parser);
10849 size_t constants_size = pm_parser_constants_size(parser);
10850 scope_node->constants = constants_size ?
xmalloc(constants_size *
sizeof(
ID)) : NULL;
10852 pm_intern_constants_ctx_t intern_ctx = { .constants = scope_node->constants, .encoding = scope_node->encoding, .index = 0 };
10853 pm_parser_constants_each(parser, pm_intern_constants_callback, &intern_ctx);
10866pm_options_frozen_string_literal_init(
pm_options_t *options)
10868 int frozen_string_literal = rb_iseq_opt_frozen_string_literal();
10870 switch (frozen_string_literal) {
10871 case ISEQ_FROZEN_STRING_LITERAL_UNSET:
10873 case ISEQ_FROZEN_STRING_LITERAL_DISABLED:
10874 pm_options_frozen_string_literal_set(options,
false);
10876 case ISEQ_FROZEN_STRING_LITERAL_ENABLED:
10877 pm_options_frozen_string_literal_set(options,
true);
10880 rb_bug(
"pm_options_frozen_string_literal_init: invalid frozen_string_literal=%d", frozen_string_literal);
10893 const char *start = (
const char *) pm_parser_start(parser);
10894 const char *end = (
const char *) pm_parser_end(parser);
10899 size_t last_offset = line_offsets->
offsets[line_offsets->
size - 1];
10900 bool last_push = start + last_offset != end;
10905 for (
size_t index = 0; index < line_offsets->
size - 1; index++) {
10906 size_t offset = line_offsets->
offsets[index];
10907 size_t length = line_offsets->
offsets[index + 1] - offset;
10909 rb_ary_push(lines, rb_enc_str_new(start + offset, length, scope_node->encoding));
10914 rb_ary_push(lines, rb_enc_str_new(start + last_offset, end - (start + last_offset), scope_node->encoding));
10928close_file(
VALUE args)
10931 if (arg->fd != -1) {
10934 else if (!
NIL_P(arg->io)) {
10941load_content(
VALUE args)
10948 return rb_funcall(io, rb_intern(
"read"), 0);
10959 result->
source = pm_source_mapped_new(RSTRING_PTR(filepath), O_RDONLY | O_NONBLOCK, &init_result);
10962 pm_options_frozen_string_literal_init(result->
options);
10973 .open_mode = O_RDONLY | O_NONBLOCK,
10977 if (args.fd == -1)
goto error_generic;
10982 long len = RSTRING_LEN(contents);
10983 if (
len < 0)
goto error_generic;
10985 size_t length = (size_t)
len;
10986 uint8_t *source_data =
xmalloc(length);
10987 memcpy(source_data, RSTRING_PTR(contents), length);
10988 result->
source = pm_source_owned_new(source_data, length);
10990 pm_options_frozen_string_literal_init(result->
options);
10999 err = rb_w32_map_errno(GetLastError());
11030 pm_options_filepath_set(result->
options, RSTRING_PTR(filepath));
11033 pm_options_version_for_current_ruby_set(result->
options);
11038 VALUE error = pm_parse_process(result, node, script_lines);
11043 ID id_script_lines = rb_intern(
"SCRIPT_LINES__");
11049 rb_hash_aset(constant_script_lines, filepath, pm_parse_file_script_lines(&result->
node, result->
parser));
11063 VALUE error = pm_load_file(result, filepath,
false);
11064 if (
NIL_P(error)) {
11065 error = pm_parse_file(result, filepath, script_lines);
11081 if (!rb_enc_asciicompat(encoding)) {
11085 pm_options_frozen_string_literal_init(result->
options);
11086 result->
source = pm_source_constant_new((
const uint8_t *) RSTRING_PTR(source), (
size_t) RSTRING_LEN(source));
11087 pm_options_encoding_set(result->
options, rb_enc_name(encoding));
11090 pm_options_filepath_set(result->
options, RSTRING_PTR(filepath));
11092 pm_options_version_for_current_ruby_set(result->
options);
11097 VALUE error = pm_parse_process(result, node, script_lines);
11110pm_node_find(
const pm_node_t *node,
void *data)
11114 if (context->node == NULL && node->
node_id == context->node_id) {
11115 context->node = node;
11119 return context->node == NULL;
11123pm_node_source_location(
VALUE source,
VALUE filepath,
int start_line,
11127 pm_parse_result_init(&result);
11129 pm_options_line_set(result.
options, start_line);
11130 VALUE error = pm_parse_string(&result, source, filepath, NULL);
11132 if (!
NIL_P(error)) {
11133 pm_parse_result_free(&result);
11138 .node_id = (uint32_t) node_id,
11141 pm_visit_node(result.
node.ast_node, pm_node_find, &context);
11143 bool found = context.node != NULL;
11145 *location = pm_code_location(&result.
node, context.node);
11151 pm_parse_result_free(&result);
11155VALUE rb_io_gets_limit_internal(
VALUE io,
long limit);
11165pm_parse_stdin_eof(
void *stream)
11178#define MAX_ENC_LEN 6
11186pm_parse_stdin_fgets(
char *
string,
int size,
void *stream)
11196 VALUE line = rb_io_gets_limit_internal((
VALUE) stream, size - MAX_ENC_LEN);
11201 const char *cstr = RSTRING_PTR(line);
11202 long length = RSTRING_LEN(line);
11210 if (length > (
long) (size - 1)) {
11211 length = (long) (size - 1);
11214 memcpy(
string, cstr, (
size_t) length);
11215 string[length] =
'\0';
11223void rb_reset_argf_lineno(
long n);
11233 pm_options_frozen_string_literal_init(result->
options);
11235 result->
source = pm_source_stream_new((
void *)
rb_stdin, pm_parse_stdin_fgets, pm_parse_stdin_eof);
11240 rb_reset_argf_lineno(0);
11242 return pm_parse_process(result, node, NULL);
11245#define PM_VERSION_FOR_RELEASE(major, minor) PM_VERSION_FOR_RELEASE_IMPL(major, minor)
11246#define PM_VERSION_FOR_RELEASE_IMPL(major, minor) #major "." #minor
11248void pm_options_version_for_current_ruby_set(
pm_options_t *options) {
11250 pm_options_version_set(options, version, strlen(version));
11254#define NEW_ISEQ OLD_ISEQ
11256#undef NEW_CHILD_ISEQ
11257#define NEW_CHILD_ISEQ OLD_CHILD_ISEQ
#define RUBY_ASSERT(...)
Asserts that the given expression is truthy if and only if RUBY_DEBUG is truthy.
uint32_t pm_constant_id_t
A constant id is a unique identifier for a constant in the constant pool.
@ PM_WARNING_LEVEL_VERBOSE
For warnings which should be emitted if $VERBOSE == true.
pm_error_level_t
The levels of errors generated during parsing.
@ PM_ERROR_LEVEL_ARGUMENT
For errors that should raise an argument error.
@ PM_ERROR_LEVEL_LOAD
For errors that should raise a load error.
@ PM_ERROR_LEVEL_SYNTAX
For errors that should raise a syntax error.
#define RUBY_EVENT_END
Encountered an end of a class clause.
#define RUBY_EVENT_B_RETURN
Encountered a next statement.
#define RUBY_EVENT_CLASS
Encountered a new class.
#define RUBY_EVENT_LINE
Encountered a new line.
#define RUBY_EVENT_RETURN
Encountered a return statement.
#define RUBY_EVENT_B_CALL
Encountered an yield statement.
#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 ALLOCV
Old name of RB_ALLOCV.
#define ALLOC
Old name of RB_ALLOC.
#define RFLOAT_VALUE
Old name of rb_float_value.
#define T_STRING
Old name of RUBY_T_STRING.
#define xfree
Old name of ruby_xfree.
#define Qundef
Old name of RUBY_Qundef.
#define INT2FIX
Old name of RB_INT2FIX.
#define rb_str_cat2
Old name of rb_str_cat_cstr.
#define ID2SYM
Old name of RB_ID2SYM.
#define SPECIAL_CONST_P
Old name of RB_SPECIAL_CONST_P.
#define ULONG2NUM
Old name of RB_ULONG2NUM.
#define FIXABLE
Old name of RB_FIXABLE.
#define xmalloc
Old name of ruby_xmalloc.
#define LONG2FIX
Old name of RB_INT2FIX.
#define ZALLOC_N
Old name of RB_ZALLOC_N.
#define T_HASH
Old name of RUBY_T_HASH.
#define ALLOC_N
Old name of RB_ALLOC_N.
#define rb_exc_new3
Old name of rb_exc_new_str.
#define FLONUM_P
Old name of RB_FLONUM_P.
#define Qtrue
Old name of RUBY_Qtrue.
#define INT2NUM
Old name of RB_INT2NUM.
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
#define T_ARRAY
Old name of RUBY_T_ARRAY.
#define NIL_P
Old name of RB_NIL_P.
#define DBL2NUM
Old name of rb_float_new.
#define NUM2LONG
Old name of RB_NUM2LONG.
#define UINT2NUM
Old name of RB_UINT2NUM.
#define CONST_ID
Old name of RUBY_CONST_ID.
#define ruby_debug
This variable controls whether the interpreter is in debug mode.
VALUE rb_eNotImpError
NotImplementedError exception.
void rb_exc_raise(VALUE mesg)
Raises an exception in the current thread.
VALUE rb_eStandardError
StandardError exception.
VALUE rb_syserr_new_str(int n, VALUE arg)
Identical to rb_syserr_new(), except it takes the message in Ruby's String instead of C's.
VALUE rb_eNoMemError
NoMemoryError exception.
VALUE rb_eLoadError
LoadError exception.
VALUE rb_eTypeError
TypeError exception.
VALUE rb_eNoMatchingPatternError
NoMatchingPatternError 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_exc_new_str(VALUE etype, VALUE str)
Identical to rb_exc_new_cstr(), except it takes a Ruby's string instead of C's.
VALUE rb_ensure(VALUE(*b_proc)(VALUE), VALUE data1, VALUE(*e_proc)(VALUE), VALUE data2)
An equivalent to ensure clause.
VALUE rb_eSyntaxError
SyntaxError exception.
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_stdin
STDIN constant.
VALUE rb_cHash
Hash 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.
VALUE rb_enc_interned_str(const char *ptr, long len, rb_encoding *enc)
Identical to rb_enc_str_new(), except it returns a "f"string.
VALUE rb_funcall(VALUE recv, ID mid, int n,...)
Calls a method.
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_push(VALUE ary, VALUE elem)
Special case of rb_ary_cat() that it adds only one element.
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_LSWORD_FIRST
Stores/interprets the least significant word as the first word.
VALUE rb_io_fdopen(int fd, int flags, const char *path)
Creates an IO instance whose backend is the given file descriptor.
int rb_cloexec_open(const char *pathname, int flags, mode_t mode)
Opens a file that closes on exec.
VALUE rb_io_eof(VALUE io)
Queries if the passed IO is at the end of file.
VALUE rb_io_close(VALUE io)
Closes the IO.
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.
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.
#define rb_exc_new_cstr(exc, str)
Identical to rb_exc_new(), except it assumes the passed pointer is a pointer to a C string.
#define rb_str_buf_new_cstr(str)
Identical to rb_str_new_cstr, except done differently.
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_obj_as_string(VALUE obj)
Try converting an object to its stringised representation using its to_s method, if any.
VALUE rb_ivar_set(VALUE obj, ID name, VALUE val)
Identical to rb_iv_set(), except it accepts the name as an ID instead of a C string.
VALUE rb_const_get_at(VALUE space, ID name)
Identical to rb_const_defined_at(), except it returns the actual defined value.
int rb_const_defined_at(VALUE space, ID name)
Identical to rb_const_defined(), except it doesn't look for parent classes.
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.
@ RUBY_IO_READABLE
IO::READABLE
VALUE rb_io_wait(VALUE io, VALUE events, VALUE timeout)
Blocks until the passed IO is ready for the passed events.
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.
#define RUBY_API_VERSION_MAJOR
Major version.
#define RUBY_API_VERSION_MINOR
Minor version.
#define RB_INT2NUM
Just another name of rb_int2num_inline.
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
VALUE type(ANYARGS)
ANYARGS-ed function type.
PRISM_EXPORTED_FUNCTION PRISM_NODISCARD pm_parser_t * pm_parser_new(pm_arena_t *arena, const uint8_t *source, size_t size, const pm_options_t *options) PRISM_NONNULL(1)
Allocate and initialize a parser with the given start and end pointers.
PRISM_EXPORTED_FUNCTION void pm_parser_free(pm_parser_t *parser) PRISM_NONNULL(1)
Free both the memory held by the given parser and the parser itself.
PRISM_EXPORTED_FUNCTION pm_node_t * pm_parse(pm_parser_t *parser) PRISM_NONNULL(1)
Initiate the parser with the given parser.
#define PM_NODE_LIST_FOREACH(list, index, node)
Loop through each node in the node list, writing each node to the given pm_node_t pointer.
The main header file for the prism parser.
#define RARRAY_LEN
Just another name of rb_array_len.
#define RARRAY_AREF(a, i)
#define RARRAY_CONST_PTR
Just another name of rb_array_const_ptr.
#define errno
Ractor-aware version of errno.
pm_source_init_result_t
Represents the result of initializing a source from a file.
@ PM_SOURCE_INIT_SUCCESS
Indicates that the source was successfully initialized.
@ PM_SOURCE_INIT_ERROR_NON_REGULAR
Indicates that the file is not a regular file (e.g.
@ PM_SOURCE_INIT_ERROR_DIRECTORY
Indicates that the file that was attempted to be opened was a directory.
#define RTEST
This is an old name of RB_TEST.
PM_NODE_ALIGNAS struct pm_node * new_name
AliasGlobalVariableNode::new_name.
PM_NODE_ALIGNAS struct pm_node * old_name
AliasGlobalVariableNode::old_name.
PM_NODE_ALIGNAS struct pm_node * old_name
AliasMethodNode::old_name.
PM_NODE_ALIGNAS struct pm_node * new_name
AliasMethodNode::new_name.
PM_NODE_ALIGNAS struct pm_node * left
AlternationPatternNode::left.
PM_NODE_ALIGNAS struct pm_node * right
AlternationPatternNode::right.
PM_NODE_ALIGNAS struct pm_node * left
AndNode::left.
PM_NODE_ALIGNAS struct pm_node * right
AndNode::right.
pm_node_t base
The embedded base node.
struct pm_node_list arguments
ArgumentsNode::arguments.
struct pm_node_list elements
ArrayNode::elements.
struct pm_node_list requireds
ArrayPatternNode::requireds.
PM_NODE_ALIGNAS struct pm_node * rest
ArrayPatternNode::rest.
PM_NODE_ALIGNAS struct pm_node * constant
ArrayPatternNode::constant.
struct pm_node_list posts
ArrayPatternNode::posts.
PM_NODE_ALIGNAS struct pm_node * value
AssocNode::value.
PM_NODE_ALIGNAS struct pm_node * key
AssocNode::key.
PM_NODE_ALIGNAS struct pm_node * value
AssocSplatNode::value.
pm_node_t base
The embedded base node.
PM_NODE_ALIGNAS struct pm_else_node * else_clause
BeginNode::else_clause.
PM_NODE_ALIGNAS struct pm_ensure_node * ensure_clause
BeginNode::ensure_clause.
PM_NODE_ALIGNAS struct pm_statements_node * statements
BeginNode::statements.
PM_NODE_ALIGNAS struct pm_rescue_node * rescue_clause
BeginNode::rescue_clause.
PM_NODE_ALIGNAS struct pm_node * expression
BlockArgumentNode::expression.
PM_NODE_ALIGNAS struct pm_node * parameters
BlockNode::parameters.
pm_constant_id_list_t locals
BlockNode::locals.
PM_NODE_ALIGNAS struct pm_node * body
BlockNode::body.
PM_NODE_ALIGNAS struct pm_arguments_node * arguments
BreakNode::arguments.
PM_NODE_ALIGNAS struct pm_node * receiver
CallAndWriteNode::receiver.
PM_NODE_ALIGNAS struct pm_node * value
CallAndWriteNode::value.
pm_constant_id_t read_name
CallAndWriteNode::read_name.
pm_constant_id_t write_name
CallAndWriteNode::write_name.
pm_location_t closing_loc
CallNode::closing_loc.
pm_constant_id_t name
CallNode::name.
pm_node_t base
The embedded base node.
PM_NODE_ALIGNAS struct pm_arguments_node * arguments
CallNode::arguments.
pm_location_t message_loc
CallNode::message_loc.
PM_NODE_ALIGNAS struct pm_node * block
CallNode::block.
PM_NODE_ALIGNAS struct pm_node * receiver
CallNode::receiver.
pm_constant_id_t read_name
CallOperatorWriteNode::read_name.
pm_constant_id_t binary_operator
CallOperatorWriteNode::binary_operator.
pm_constant_id_t write_name
CallOperatorWriteNode::write_name.
PM_NODE_ALIGNAS struct pm_node * receiver
CallOperatorWriteNode::receiver.
PM_NODE_ALIGNAS struct pm_node * value
CallOperatorWriteNode::value.
PM_NODE_ALIGNAS struct pm_node * receiver
CallOrWriteNode::receiver.
PM_NODE_ALIGNAS struct pm_node * value
CallOrWriteNode::value.
pm_constant_id_t write_name
CallOrWriteNode::write_name.
pm_constant_id_t read_name
CallOrWriteNode::read_name.
pm_constant_id_t name
CallTargetNode::name.
PM_NODE_ALIGNAS struct pm_node * receiver
CallTargetNode::receiver.
PM_NODE_ALIGNAS struct pm_node * value
CapturePatternNode::value.
PM_NODE_ALIGNAS struct pm_local_variable_target_node * target
CapturePatternNode::target.
struct pm_node_list conditions
CaseMatchNode::conditions.
pm_node_t base
The embedded base node.
PM_NODE_ALIGNAS struct pm_node * predicate
CaseMatchNode::predicate.
PM_NODE_ALIGNAS struct pm_else_node * else_clause
CaseMatchNode::else_clause.
PM_NODE_ALIGNAS struct pm_else_node * else_clause
CaseNode::else_clause.
struct pm_node_list conditions
CaseNode::conditions.
PM_NODE_ALIGNAS struct pm_node * predicate
CaseNode::predicate.
pm_node_t base
The embedded base node.
pm_constant_id_list_t locals
ClassNode::locals.
PM_NODE_ALIGNAS struct pm_node * superclass
ClassNode::superclass.
pm_constant_id_t name
ClassNode::name.
PM_NODE_ALIGNAS struct pm_node * constant_path
ClassNode::constant_path.
PM_NODE_ALIGNAS struct pm_node * body
ClassNode::body.
ClassVariableAndWriteNode.
PM_NODE_ALIGNAS struct pm_node * value
ClassVariableAndWriteNode::value.
pm_constant_id_t name
ClassVariableAndWriteNode::name.
ClassVariableOperatorWriteNode.
pm_constant_id_t name
ClassVariableOperatorWriteNode::name.
PM_NODE_ALIGNAS struct pm_node * value
ClassVariableOperatorWriteNode::value.
pm_constant_id_t binary_operator
ClassVariableOperatorWriteNode::binary_operator.
ClassVariableOrWriteNode.
PM_NODE_ALIGNAS struct pm_node * value
ClassVariableOrWriteNode::value.
pm_constant_id_t name
ClassVariableOrWriteNode::name.
pm_constant_id_t name
ClassVariableReadNode::name.
pm_constant_id_t name
ClassVariableTargetNode::name.
PM_NODE_ALIGNAS struct pm_node * value
ClassVariableWriteNode::value.
pm_constant_id_t name
ClassVariableWriteNode::name.
PM_NODE_ALIGNAS struct pm_node * value
ConstantAndWriteNode::value.
pm_location_t name_loc
ConstantAndWriteNode::name_loc.
pm_constant_id_t name
ConstantAndWriteNode::name.
size_t size
The number of constant ids in the list.
size_t capacity
The number of constant ids that have been allocated in the list.
pm_constant_id_t * ids
The constant ids in the list.
ConstantOperatorWriteNode.
pm_constant_id_t name
ConstantOperatorWriteNode::name.
pm_location_t name_loc
ConstantOperatorWriteNode::name_loc.
pm_constant_id_t binary_operator
ConstantOperatorWriteNode::binary_operator.
PM_NODE_ALIGNAS struct pm_node * value
ConstantOperatorWriteNode::value.
PM_NODE_ALIGNAS struct pm_node * value
ConstantOrWriteNode::value.
pm_location_t name_loc
ConstantOrWriteNode::name_loc.
pm_constant_id_t name
ConstantOrWriteNode::name.
ConstantPathAndWriteNode.
PM_NODE_ALIGNAS struct pm_constant_path_node * target
ConstantPathAndWriteNode::target.
PM_NODE_ALIGNAS struct pm_node * value
ConstantPathAndWriteNode::value.
PM_NODE_ALIGNAS struct pm_node * parent
ConstantPathNode::parent.
pm_constant_id_t name
ConstantPathNode::name.
ConstantPathOperatorWriteNode.
PM_NODE_ALIGNAS struct pm_constant_path_node * target
ConstantPathOperatorWriteNode::target.
pm_constant_id_t binary_operator
ConstantPathOperatorWriteNode::binary_operator.
PM_NODE_ALIGNAS struct pm_node * value
ConstantPathOperatorWriteNode::value.
PM_NODE_ALIGNAS struct pm_node * value
ConstantPathOrWriteNode::value.
PM_NODE_ALIGNAS struct pm_constant_path_node * target
ConstantPathOrWriteNode::target.
pm_constant_id_t name
ConstantPathTargetNode::name.
PM_NODE_ALIGNAS struct pm_node * parent
ConstantPathTargetNode::parent.
PM_NODE_ALIGNAS struct pm_node * value
ConstantPathWriteNode::value.
PM_NODE_ALIGNAS struct pm_constant_path_node * target
ConstantPathWriteNode::target.
pm_node_t base
The embedded base node.
pm_constant_id_t name
ConstantReadNode::name.
pm_constant_id_t name
ConstantTargetNode::name.
PM_NODE_ALIGNAS struct pm_node * value
ConstantWriteNode::value.
pm_constant_id_t name
ConstantWriteNode::name.
pm_constant_id_t name
DefNode::name.
PM_NODE_ALIGNAS struct pm_parameters_node * parameters
DefNode::parameters.
pm_node_t base
The embedded base node.
PM_NODE_ALIGNAS struct pm_node * receiver
DefNode::receiver.
PM_NODE_ALIGNAS struct pm_node * body
DefNode::body.
pm_constant_id_list_t locals
DefNode::locals.
PM_NODE_ALIGNAS struct pm_node * value
DefinedNode::value.
PM_NODE_ALIGNAS struct pm_statements_node * statements
ElseNode::statements.
PM_NODE_ALIGNAS struct pm_statements_node * statements
EmbeddedStatementsNode::statements.
PM_NODE_ALIGNAS struct pm_node * variable
EmbeddedVariableNode::variable.
PM_NODE_ALIGNAS struct pm_statements_node * statements
EnsureNode::statements.
PM_NODE_ALIGNAS struct pm_splat_node * left
FindPatternNode::left.
PM_NODE_ALIGNAS struct pm_splat_node * right
FindPatternNode::right.
PM_NODE_ALIGNAS struct pm_node * constant
FindPatternNode::constant.
struct pm_node_list requireds
FindPatternNode::requireds.
PM_NODE_ALIGNAS struct pm_node * left
FlipFlopNode::left.
pm_node_t base
The embedded base node.
PM_NODE_ALIGNAS struct pm_node * right
FlipFlopNode::right.
double value
FloatNode::value.
PM_NODE_ALIGNAS struct pm_node * collection
ForNode::collection.
PM_NODE_ALIGNAS struct pm_statements_node * statements
ForNode::statements.
PM_NODE_ALIGNAS struct pm_block_node * block
ForwardingSuperNode::block.
GlobalVariableAndWriteNode.
PM_NODE_ALIGNAS struct pm_node * value
GlobalVariableAndWriteNode::value.
pm_constant_id_t name
GlobalVariableAndWriteNode::name.
GlobalVariableOperatorWriteNode.
PM_NODE_ALIGNAS struct pm_node * value
GlobalVariableOperatorWriteNode::value.
pm_constant_id_t name
GlobalVariableOperatorWriteNode::name.
pm_constant_id_t binary_operator
GlobalVariableOperatorWriteNode::binary_operator.
GlobalVariableOrWriteNode.
pm_constant_id_t name
GlobalVariableOrWriteNode::name.
PM_NODE_ALIGNAS struct pm_node * value
GlobalVariableOrWriteNode::value.
pm_constant_id_t name
GlobalVariableReadNode::name.
GlobalVariableTargetNode.
pm_constant_id_t name
GlobalVariableTargetNode::name.
pm_constant_id_t name
GlobalVariableWriteNode::name.
PM_NODE_ALIGNAS struct pm_node * value
GlobalVariableWriteNode::value.
struct pm_node_list elements
HashNode::elements.
PM_NODE_ALIGNAS struct pm_node * constant
HashPatternNode::constant.
struct pm_node_list elements
HashPatternNode::elements.
PM_NODE_ALIGNAS struct pm_node * rest
HashPatternNode::rest.
PM_NODE_ALIGNAS struct pm_node * predicate
IfNode::predicate.
PM_NODE_ALIGNAS struct pm_statements_node * statements
IfNode::statements.
PM_NODE_ALIGNAS struct pm_node * numeric
ImaginaryNode::numeric.
PM_NODE_ALIGNAS struct pm_node * value
ImplicitNode::value.
PM_NODE_ALIGNAS struct pm_node * pattern
InNode::pattern.
PM_NODE_ALIGNAS struct pm_statements_node * statements
InNode::statements.
PM_NODE_ALIGNAS struct pm_arguments_node * arguments
IndexAndWriteNode::arguments.
PM_NODE_ALIGNAS struct pm_block_argument_node * block
IndexAndWriteNode::block.
PM_NODE_ALIGNAS struct pm_node * receiver
IndexAndWriteNode::receiver.
PM_NODE_ALIGNAS struct pm_node * value
IndexAndWriteNode::value.
A direct-indexed lookup table mapping constant IDs to local variable indices.
int capacity
Total number of slots (constants_size + PM_INDEX_LOOKUP_SPECIALS).
bool owned
Whether the values array is heap-allocated and needs explicit free.
int * values
Array of local indices, indexed by constant_id.
PM_NODE_ALIGNAS struct pm_block_argument_node * block
IndexOperatorWriteNode::block.
PM_NODE_ALIGNAS struct pm_node * receiver
IndexOperatorWriteNode::receiver.
PM_NODE_ALIGNAS struct pm_node * value
IndexOperatorWriteNode::value.
PM_NODE_ALIGNAS struct pm_arguments_node * arguments
IndexOperatorWriteNode::arguments.
pm_constant_id_t binary_operator
IndexOperatorWriteNode::binary_operator.
PM_NODE_ALIGNAS struct pm_arguments_node * arguments
IndexOrWriteNode::arguments.
PM_NODE_ALIGNAS struct pm_node * value
IndexOrWriteNode::value.
PM_NODE_ALIGNAS struct pm_node * receiver
IndexOrWriteNode::receiver.
PM_NODE_ALIGNAS struct pm_block_argument_node * block
IndexOrWriteNode::block.
PM_NODE_ALIGNAS struct pm_arguments_node * arguments
IndexTargetNode::arguments.
PM_NODE_ALIGNAS struct pm_block_argument_node * block
IndexTargetNode::block.
PM_NODE_ALIGNAS struct pm_node * receiver
IndexTargetNode::receiver.
InstanceVariableAndWriteNode.
PM_NODE_ALIGNAS struct pm_node * value
InstanceVariableAndWriteNode::value.
pm_constant_id_t name
InstanceVariableAndWriteNode::name.
InstanceVariableOperatorWriteNode.
pm_constant_id_t binary_operator
InstanceVariableOperatorWriteNode::binary_operator.
PM_NODE_ALIGNAS struct pm_node * value
InstanceVariableOperatorWriteNode::value.
pm_constant_id_t name
InstanceVariableOperatorWriteNode::name.
InstanceVariableOrWriteNode.
pm_constant_id_t name
InstanceVariableOrWriteNode::name.
PM_NODE_ALIGNAS struct pm_node * value
InstanceVariableOrWriteNode::value.
InstanceVariableReadNode.
pm_constant_id_t name
InstanceVariableReadNode::name.
InstanceVariableTargetNode.
pm_constant_id_t name
InstanceVariableTargetNode::name.
InstanceVariableWriteNode.
PM_NODE_ALIGNAS struct pm_node * value
InstanceVariableWriteNode::value.
pm_constant_id_t name
InstanceVariableWriteNode::name.
pm_integer_t value
IntegerNode::value.
A structure represents an arbitrary-sized integer.
size_t length
The number of allocated values.
uint32_t value
Embedded value for small integer.
uint32_t * values
List of 32-bit integers.
bool negative
Whether or not the integer is negative.
Context for interning constants via callback.
InterpolatedMatchLastLineNode.
InterpolatedRegularExpressionNode.
struct pm_node_list parts
InterpolatedStringNode::parts.
struct pm_node_list parts
InterpolatedSymbolNode::parts.
struct pm_node_list parts
InterpolatedXStringNode::parts.
struct pm_node_list elements
KeywordHashNode::elements.
KeywordRestParameterNode.
pm_location_t opening_loc
LambdaNode::opening_loc.
pm_constant_id_list_t locals
LambdaNode::locals.
PM_NODE_ALIGNAS struct pm_node * body
LambdaNode::body.
PM_NODE_ALIGNAS struct pm_node * parameters
LambdaNode::parameters.
A line and column in a string.
uint32_t column
The column in bytes.
int32_t line
The line number.
A list of offsets of the start of lines in a string.
uint32_t * offsets
The list of offsets.
size_t size
The number of offsets in the list.
the getlocal and setlocal instructions require two parameters.
LocalVariableAndWriteNode.
pm_constant_id_t name
LocalVariableAndWriteNode::name.
uint32_t depth
LocalVariableAndWriteNode::depth.
PM_NODE_ALIGNAS struct pm_node * value
LocalVariableAndWriteNode::value.
LocalVariableOperatorWriteNode.
uint32_t depth
LocalVariableOperatorWriteNode::depth.
pm_constant_id_t binary_operator
LocalVariableOperatorWriteNode::binary_operator.
PM_NODE_ALIGNAS struct pm_node * value
LocalVariableOperatorWriteNode::value.
pm_constant_id_t name
LocalVariableOperatorWriteNode::name.
LocalVariableOrWriteNode.
PM_NODE_ALIGNAS struct pm_node * value
LocalVariableOrWriteNode::value.
uint32_t depth
LocalVariableOrWriteNode::depth.
pm_constant_id_t name
LocalVariableOrWriteNode::name.
uint32_t depth
LocalVariableReadNode::depth.
pm_constant_id_t name
LocalVariableReadNode::name.
uint32_t depth
LocalVariableTargetNode::depth.
pm_constant_id_t name
LocalVariableTargetNode::name.
PM_NODE_ALIGNAS struct pm_node * value
LocalVariableWriteNode::value.
uint32_t depth
LocalVariableWriteNode::depth.
pm_constant_id_t name
LocalVariableWriteNode::name.
This struct represents a slice in the source code, defined by an offset and a length.
uint32_t start
The offset of the location from the start of the source.
uint32_t length
The length of the location.
PM_NODE_ALIGNAS struct pm_node * pattern
MatchPredicateNode::pattern.
PM_NODE_ALIGNAS struct pm_node * value
MatchPredicateNode::value.
PM_NODE_ALIGNAS struct pm_node * pattern
MatchRequiredNode::pattern.
PM_NODE_ALIGNAS struct pm_node * value
MatchRequiredNode::value.
PM_NODE_ALIGNAS struct pm_call_node * call
MatchWriteNode::call.
struct pm_node_list targets
MatchWriteNode::targets.
PM_NODE_ALIGNAS struct pm_node * constant_path
ModuleNode::constant_path.
PM_NODE_ALIGNAS struct pm_node * body
ModuleNode::body.
pm_constant_id_list_t locals
ModuleNode::locals.
pm_constant_id_t name
ModuleNode::name.
PM_NODE_ALIGNAS struct pm_node * rest
MultiTargetNode::rest.
struct pm_node_list lefts
MultiTargetNode::lefts.
struct pm_node_list rights
MultiTargetNode::rights.
This is a node in the multi target state linked list.
As we're compiling a multi target, we need to track additional information whenever there is a parent...
PM_NODE_ALIGNAS struct pm_node * rest
MultiWriteNode::rest.
struct pm_node_list rights
MultiWriteNode::rights.
PM_NODE_ALIGNAS struct pm_node * value
MultiWriteNode::value.
struct pm_node_list lefts
MultiWriteNode::lefts.
PM_NODE_ALIGNAS struct pm_arguments_node * arguments
NextNode::arguments.
A list of nodes in the source, most often used for lists of children.
size_t size
The number of nodes in the list.
struct pm_node ** nodes
The nodes in the list.
This compiler defines its own concept of the location of a node.
int32_t line
This is the line number of a node.
uint32_t node_id
This is a unique identifier for the node.
This is the base structure that represents a node in the syntax tree.
pm_node_type_t type
This represents the type of the node.
uint32_t node_id
The unique identifier for this node, which is deterministic based on the source.
pm_node_flags_t flags
This represents any flags on the node.
pm_location_t location
This is the location of the node in the source.
NumberedReferenceReadNode.
uint32_t number
NumberedReferenceReadNode::number.
OptionalKeywordParameterNode.
pm_constant_id_t name
OptionalKeywordParameterNode::name.
PM_NODE_ALIGNAS struct pm_node * value
OptionalKeywordParameterNode::value.
pm_constant_id_t name
OptionalParameterNode::name.
PM_NODE_ALIGNAS struct pm_node * value
OptionalParameterNode::value.
PM_NODE_ALIGNAS struct pm_node * right
OrNode::right.
PM_NODE_ALIGNAS struct pm_node * left
OrNode::left.
PM_NODE_ALIGNAS struct pm_node * block
ParametersNode::block.
struct pm_node_list requireds
ParametersNode::requireds.
struct pm_node_list optionals
ParametersNode::optionals.
struct pm_node_list posts
ParametersNode::posts.
pm_node_t base
The embedded base node.
PM_NODE_ALIGNAS struct pm_node * rest
ParametersNode::rest.
struct pm_node_list keywords
ParametersNode::keywords.
PM_NODE_ALIGNAS struct pm_node * keyword_rest
ParametersNode::keyword_rest.
PM_NODE_ALIGNAS struct pm_node * body
ParenthesesNode::body.
bool parsed
Whether or not this parse result has performed its parsing yet.
pm_parser_t * parser
The parser that will do the actual parsing.
pm_source_t * source
The source backing the parse (file, string, or stream).
pm_scope_node_t node
The resulting scope node that will hold the generated AST.
pm_options_t * options
The options that will be passed to the parser.
pm_arena_t * arena
The arena allocator for AST-lifetime memory.
PM_NODE_ALIGNAS struct pm_node * variable
PinnedVariableNode::variable.
PM_NODE_ALIGNAS struct pm_statements_node * statements
PostExecutionNode::statements.
PM_NODE_ALIGNAS struct pm_statements_node * statements
PreExecutionNode::statements.
PM_NODE_ALIGNAS struct pm_statements_node * statements
ProgramNode::statements.
PM_NODE_ALIGNAS struct pm_node * right
RangeNode::right.
PM_NODE_ALIGNAS struct pm_node * left
RangeNode::left.
pm_integer_t denominator
RationalNode::denominator.
pm_integer_t numerator
RationalNode::numerator.
RequiredKeywordParameterNode.
pm_constant_id_t name
RequiredParameterNode::name.
PM_NODE_ALIGNAS struct pm_node * expression
RescueModifierNode::expression.
PM_NODE_ALIGNAS struct pm_node * rescue_expression
RescueModifierNode::rescue_expression.
PM_NODE_ALIGNAS struct pm_statements_node * statements
RescueNode::statements.
PM_NODE_ALIGNAS struct pm_rescue_node * subsequent
RescueNode::subsequent.
PM_NODE_ALIGNAS struct pm_node * reference
RescueNode::reference.
struct pm_node_list exceptions
RescueNode::exceptions.
PM_NODE_ALIGNAS struct pm_arguments_node * arguments
ReturnNode::arguments.
uint64_t source_hash
The source hash of the parsed source, propagated to every iseq.
rb_encoding * filepath_encoding
This is the encoding of the actual filepath object that will be used when a FILE node is compiled or ...
pm_index_lookup_table_t index_lookup_table
A flat lookup table mapping constant IDs (or special IDs) to local variable indices.
size_t last_line
Cached line hint for line offset list lookups.
struct iseq_link_anchor * pre_execution_anchor
This will only be set on the top-level scope node.
VALUE * script_lines
This is a pointer to the list of script lines for the ISEQs that will be associated with this scope n...
PM_NODE_ALIGNAS struct pm_node * write
ShareableConstantNode::write.
pm_node_t base
The embedded base node.
PM_NODE_ALIGNAS struct pm_node * body
SingletonClassNode::body.
pm_constant_id_list_t locals
SingletonClassNode::locals.
PM_NODE_ALIGNAS struct pm_node * expression
SingletonClassNode::expression.
pm_string_t filepath
SourceFileNode::filepath.
PM_NODE_ALIGNAS struct pm_node * expression
SplatNode::expression.
struct pm_node_list body
StatementsNode::body.
pm_node_t base
The embedded base node.
pm_string_t unescaped
StringNode::unescaped.
A generic string type that can have various ownership semantics.
PM_NODE_ALIGNAS struct pm_arguments_node * arguments
SuperNode::arguments.
PM_NODE_ALIGNAS struct pm_node * block
SuperNode::block.
pm_string_t unescaped
SymbolNode::unescaped.
pm_node_t base
The embedded base node.
struct pm_node_list names
UndefNode::names.
PM_NODE_ALIGNAS struct pm_node * predicate
UnlessNode::predicate.
PM_NODE_ALIGNAS struct pm_statements_node * statements
UnlessNode::statements.
PM_NODE_ALIGNAS struct pm_else_node * else_clause
UnlessNode::else_clause.
pm_node_t base
The embedded base node.
Context for emitting warnings via callback.
pm_node_t base
The embedded base node.
pm_string_t unescaped
XStringNode::unescaped.
PM_NODE_ALIGNAS struct pm_arguments_node * arguments
YieldNode::arguments.
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
uintptr_t VALUE
Type that represents a Ruby object.
static bool RB_TYPE_P(VALUE obj, enum ruby_value_type t)
Queries if the given object is of given type.