Ruby 4.1.0dev (2026-08-15 revision f0edab28988f19f03fefa89161059480a0e56d1e)
ruby_parser.c (f0edab28988f19f03fefa89161059480a0e56d1e)
1/* This is a wrapper for parse.y */
2
3#include "internal/parse.h"
4#include "internal/re.h"
5#include "internal/ruby_parser.h"
6
7#include "node.h"
8#include "rubyparser.h"
9#include "internal/error.h"
10
11#ifdef UNIVERSAL_PARSER
12
13#include "internal.h"
14#include "internal/array.h"
15#include "internal/bignum.h"
16#include "internal/compile.h"
17#include "internal/complex.h"
18#include "internal/encoding.h"
19#include "internal/gc.h"
20#include "internal/hash.h"
21#include "internal/io.h"
22#include "internal/rational.h"
23#include "internal/re.h"
24#include "internal/string.h"
25#include "internal/symbol.h"
26#include "internal/thread.h"
27
28#include "ruby/ractor.h"
29#include "ruby/ruby.h"
30#include "ruby/util.h"
31#include "internal.h"
32#include "vm_core.h"
33#include "symbol.h"
34
35#define parser_encoding const void
36
37RBIMPL_ATTR_FORMAT(RBIMPL_PRINTF_FORMAT, 6, 0)
38static VALUE
39syntax_error_append(VALUE exc, VALUE file, int line, int column,
40 parser_encoding *enc, const char *fmt, va_list args)
41{
42 return rb_syntax_error_append(exc, file, line, column, enc, fmt, args);
43}
44
45static int
46local_defined(ID id, const void *p)
47{
48 return rb_local_defined(id, (const rb_iseq_t *)p);
49}
50
51static int
52dvar_defined(ID id, const void *p)
53{
54 return rb_dvar_defined(id, (const rb_iseq_t *)p);
55}
56
57static int
58is_usascii_enc(parser_encoding *enc)
59{
60 return rb_is_usascii_enc(enc);
61}
62
63static int
64is_local_id2(ID id)
65{
66 return is_local_id(id);
67}
68
69static int
70is_attrset_id2(ID id)
71{
72 return is_attrset_id(id);
73}
74
75static int
76is_notop_id2(ID id)
77{
78 return is_notop_id(id);
79}
80
81static VALUE
82enc_str_new(const char *ptr, long len, parser_encoding *enc)
83{
84 return rb_enc_str_new(ptr, len, enc);
85}
86
87static int
88enc_isalnum(OnigCodePoint c, parser_encoding *enc)
89{
90 return rb_enc_isalnum(c, enc);
91}
92
93static int
94enc_precise_mbclen(const char *p, const char *e, parser_encoding *enc)
95{
96 return rb_enc_precise_mbclen(p, e, enc);
97}
98
99static int
100mbclen_charfound_p(int len)
101{
102 return MBCLEN_CHARFOUND_P(len);
103}
104
105static int
106mbclen_charfound_len(int len)
107{
109}
110
111static const char *
112enc_name(parser_encoding *enc)
113{
114 return rb_enc_name(enc);
115}
116
117static char *
118enc_prev_char(const char *s, const char *p, const char *e, parser_encoding *enc)
119{
120 return rb_enc_prev_char(s, p, e, enc);
121}
122
123static parser_encoding *
124enc_get(VALUE obj)
125{
126 return rb_enc_get(obj);
127}
128
129static int
130enc_asciicompat(parser_encoding *enc)
131{
132 return rb_enc_asciicompat(enc);
133}
134
135static parser_encoding *
136utf8_encoding(void)
137{
138 return rb_utf8_encoding();
139}
140
141static parser_encoding *
142ascii8bit_encoding(void)
143{
144 return rb_ascii8bit_encoding();
145}
146
147static int
148enc_codelen(int c, parser_encoding *enc)
149{
150 return rb_enc_codelen(c, enc);
151}
152
153static int
154enc_mbcput(unsigned int c, void *buf, parser_encoding *enc)
155{
156 return rb_enc_mbcput(c, buf, enc);
157}
158
159static parser_encoding *
160enc_from_index(int idx)
161{
162 return rb_enc_from_index(idx);
163}
164
165static int
166enc_isspace(OnigCodePoint c, parser_encoding *enc)
167{
168 return rb_enc_isspace(c, enc);
169}
170
171static ID
172intern3(const char *name, long len, parser_encoding *enc)
173{
174 return rb_intern3(name, len, enc);
175}
176
177static int
178enc_symname_type(const char *name, long len, parser_encoding *enc, unsigned int allowed_attrset)
179{
180 return rb_enc_symname_type(name, len, enc, allowed_attrset);
181}
182
183typedef struct {
184 struct parser_params *parser;
185 rb_encoding *enc;
186 NODE *succ_block;
187 const rb_code_location_t *loc;
188 rb_parser_assignable_func assignable;
190
191static int
192reg_named_capture_assign_iter(const OnigUChar *name, const OnigUChar *name_end,
193 int back_num, int *back_refs, OnigRegex regex, void *arg0)
194{
196 struct parser_params* p = arg->parser;
197 rb_encoding *enc = arg->enc;
198 const rb_code_location_t *loc = arg->loc;
199 long len = name_end - name;
200 const char *s = (const char *)name;
201
202 return rb_reg_named_capture_assign_iter_impl(p, s, len, enc, &arg->succ_block, loc, arg->assignable);
203}
204
205static NODE *
206reg_named_capture_assign(struct parser_params* p, VALUE regexp, const rb_code_location_t *loc,
207 rb_parser_assignable_func assignable)
208{
210
211 arg.parser = p;
212 arg.enc = rb_enc_get(regexp);
213 arg.succ_block = 0;
214 arg.loc = loc;
215 arg.assignable = assignable;
216 onig_foreach_name(RREGEXP_PTR(regexp), reg_named_capture_assign_iter, &arg);
217
218 if (!arg.succ_block) return 0;
219 return RNODE_BLOCK(arg.succ_block)->nd_next;
220}
221
222static int
223rtest(VALUE obj)
224{
225 return (int)RB_TEST(obj);
226}
227
228static int
229nil_p(VALUE obj)
230{
231 return (int)NIL_P(obj);
232}
233
234static VALUE
235syntax_error_new(void)
236{
238}
239
240static void *
241memmove2(void *dest, const void *src, size_t t, size_t n)
242{
243 return memmove(dest, src, rbimpl_size_mul_or_raise(t, n));
244}
245
246static void *
247nonempty_memcpy(void *dest, const void *src, size_t t, size_t n)
248{
249 return ruby_nonempty_memcpy(dest, src, rbimpl_size_mul_or_raise(t, n));
250}
251
252static VALUE
253ruby_verbose2(void)
254{
255 return ruby_verbose;
256}
257
258static int *
259rb_errno_ptr2(void)
260{
261 return rb_errno_ptr();
262}
263
264static void *
265zalloc(size_t elemsiz)
266{
267 return ruby_xcalloc(1, elemsiz);
268}
269
270static void
271gc_guard(VALUE obj)
272{
273 RB_GC_GUARD(obj);
274}
275
276static VALUE
277arg_error(void)
278{
279 return rb_eArgError;
280}
281
282static VALUE
283static_id2sym(ID id)
284{
285 return (((VALUE)(id)<<RUBY_SPECIAL_SHIFT)|SYMBOL_FLAG);
286}
287
288static long
289str_coderange_scan_restartable(const char *s, const char *e, parser_encoding *enc, int *cr)
290{
291 return rb_str_coderange_scan_restartable(s, e, enc, cr);
292}
293
294static int
295enc_mbminlen(parser_encoding *enc)
296{
297 return rb_enc_mbminlen(enc);
298}
299
300static bool
301enc_isascii(OnigCodePoint c, parser_encoding *enc)
302{
303 return rb_enc_isascii(c, enc);
304}
305
306static OnigCodePoint
307enc_mbc_to_codepoint(const char *p, const char *e, parser_encoding *enc)
308{
309 const OnigUChar *up = RBIMPL_CAST((const OnigUChar *)p);
310 const OnigUChar *ue = RBIMPL_CAST((const OnigUChar *)e);
311
312 return ONIGENC_MBC_TO_CODE((rb_encoding *)enc, up, ue);
313}
314
315extern VALUE rb_eArgError;
316
317static const rb_parser_config_t rb_global_parser_config = {
318 .malloc = ruby_xmalloc,
319 .calloc = ruby_xcalloc,
320 .realloc = ruby_xrealloc,
321 .free = ruby_xfree,
322 .alloc_n = ruby_xmalloc2,
323 .alloc = ruby_xmalloc,
324 .realloc_n = ruby_xrealloc2,
325 .zalloc = zalloc,
326 .rb_memmove = memmove2,
327 .nonempty_memcpy = nonempty_memcpy,
328 .xmalloc_mul_add = rb_xmalloc_mul_add,
329
330 .compile_callback = rb_suppress_tracing,
331 .reg_named_capture_assign = reg_named_capture_assign,
332
333 .attr_get = rb_attr_get,
334
335 .ary_new_from_args = rb_ary_new_from_args,
336 .ary_unshift = rb_ary_unshift,
337
338 .make_temporary_id = rb_make_temporary_id,
339 .is_local_id = is_local_id2,
340 .is_attrset_id = is_attrset_id2,
341 .is_global_name_punct = is_global_name_punct,
342 .id_type = id_type,
343 .id_attrset = rb_id_attrset,
344 .intern = rb_intern,
345 .intern2 = rb_intern2,
346 .intern3 = intern3,
347 .intern_str = rb_intern_str,
348 .is_notop_id = is_notop_id2,
349 .enc_symname_type = enc_symname_type,
350 .id2name = rb_id2name,
351 .id2str = rb_id2str,
352 .id2sym = rb_id2sym,
353
354 .str_catf = rb_str_catf,
355 .str_cat_cstr = rb_str_cat_cstr,
356 .str_resize = rb_str_resize,
357 .str_new = rb_str_new,
358 .str_new_cstr = rb_str_new_cstr,
359 .str_to_interned_str = rb_str_to_interned_str,
360 .enc_str_new = enc_str_new,
361 .str_vcatf = rb_str_vcatf,
362 .rb_sprintf = rb_sprintf,
363 .rstring_ptr = RSTRING_PTR,
364 .rstring_len = RSTRING_LEN,
365
366 .int2num = rb_int2num_inline,
367
368 .stderr_tty_p = rb_stderr_tty_p,
369 .write_error_str = rb_write_error_str,
370 .io_write = rb_io_write,
371 .io_flush = rb_io_flush,
372 .io_puts = rb_io_puts,
373
374 .debug_output_stdout = rb_ractor_stdout,
375 .debug_output_stderr = rb_ractor_stderr,
376
377 .is_usascii_enc = is_usascii_enc,
378 .enc_isalnum = enc_isalnum,
379 .enc_precise_mbclen = enc_precise_mbclen,
380 .mbclen_charfound_p = mbclen_charfound_p,
381 .mbclen_charfound_len = mbclen_charfound_len,
382 .enc_name = enc_name,
383 .enc_prev_char = enc_prev_char,
384 .enc_get = enc_get,
385 .enc_asciicompat = enc_asciicompat,
386 .utf8_encoding = utf8_encoding,
387 .ascii8bit_encoding = ascii8bit_encoding,
388 .enc_codelen = enc_codelen,
389 .enc_mbcput = enc_mbcput,
390 .enc_find_index = rb_enc_find_index,
391 .enc_from_index = enc_from_index,
392 .enc_isspace = enc_isspace,
393 .enc_coderange_7bit = ENC_CODERANGE_7BIT,
394 .enc_coderange_unknown = ENC_CODERANGE_UNKNOWN,
395 .enc_mbminlen = enc_mbminlen,
396 .enc_isascii = enc_isascii,
397 .enc_mbc_to_codepoint = enc_mbc_to_codepoint,
398
399 .local_defined = local_defined,
400 .dvar_defined = dvar_defined,
401
402 .syntax_error_append = syntax_error_append,
403 .raise = rb_raise,
404 .syntax_error_new = syntax_error_new,
405
406 .errinfo = rb_errinfo,
407 .set_errinfo = rb_set_errinfo,
408 .make_exception = rb_make_exception,
409
410 .sized_xfree = ruby_xfree_sized,
411 .sized_realloc_n = ruby_sized_realloc_n,
412 .gc_guard = gc_guard,
413 .gc_mark = rb_gc_mark,
414
415 .reg_compile = rb_reg_compile,
416 .reg_check_preprocess = rb_reg_check_preprocess,
417 .memcicmp = rb_memcicmp,
418
419 .compile_warn = rb_compile_warn,
420 .compile_warning = rb_compile_warning,
421 .bug = rb_bug,
422 .fatal = rb_fatal,
423 .verbose = ruby_verbose2,
424 .errno_ptr = rb_errno_ptr2,
425
426 .make_backtrace = rb_make_backtrace,
427
428 .scan_hex = ruby_scan_hex,
429 .scan_oct = ruby_scan_oct,
430 .scan_digits = ruby_scan_digits,
431 .strtod = ruby_strtod,
432
433 .rtest = rtest,
434 .nil_p = nil_p,
435 .qnil = Qnil,
436 .qfalse = Qfalse,
437 .eArgError = arg_error,
438 .long2int = rb_long2int,
439
440 /* For Ripper */
441 .static_id2sym = static_id2sym,
442 .str_coderange_scan_restartable = str_coderange_scan_restartable,
443
444 /* Source hash */
445 .source_hash_init = rb_source_hash_init,
446 .source_hash_update = rb_source_hash_update,
447 .source_hash_finalize = rb_source_hash_finalize,
448};
449#endif
450
451enum lex_type {
452 lex_type_str,
453 lex_type_io,
454 lex_type_array,
455 lex_type_generic,
456};
457
460 enum lex_type type;
461 union {
462 struct lex_pointer_string lex_str;
463 struct {
464 VALUE file;
465 } lex_io;
466 struct {
467 VALUE ary;
468 } lex_array;
469 } data;
470};
471
472static void
473parser_mark(void *ptr)
474{
475 struct ruby_parser *parser = (struct ruby_parser*)ptr;
476 rb_ruby_parser_mark(parser->parser_params);
477
478 switch (parser->type) {
479 case lex_type_str:
480 rb_gc_mark(parser->data.lex_str.str);
481 break;
482 case lex_type_io:
483 rb_gc_mark(parser->data.lex_io.file);
484 break;
485 case lex_type_array:
486 rb_gc_mark(parser->data.lex_array.ary);
487 break;
488 case lex_type_generic:
489 /* noop. Caller of rb_parser_compile_generic should mark the objects. */
490 break;
491 }
492}
493
494static void
495parser_free(void *ptr)
496{
497 struct ruby_parser *parser = (struct ruby_parser*)ptr;
498 rb_ruby_parser_free(parser->parser_params);
499 xfree(parser);
500}
501
502static size_t
503parser_memsize(const void *ptr)
504{
505 struct ruby_parser *parser = (struct ruby_parser*)ptr;
506 return rb_ruby_parser_memsize(parser->parser_params);
507}
508
509static const rb_data_type_t ruby_parser_data_type = {
510 "parser",
511 {
512 parser_mark,
513 parser_free,
514 parser_memsize,
515 },
516 0, 0, RUBY_TYPED_THREAD_SAFE_FREE
517};
518
519#ifdef UNIVERSAL_PARSER
520const rb_parser_config_t *
521rb_ruby_parser_config(void)
522{
523 return &rb_global_parser_config;
524}
525
527rb_parser_params_new(void)
528{
529 return rb_ruby_parser_new(&rb_global_parser_config);
530}
531#else
533rb_parser_params_new(void)
534{
535 return rb_ruby_parser_new();
536}
537#endif /* UNIVERSAL_PARSER */
538
539VALUE
540rb_parser_new(void)
541{
542 struct ruby_parser *parser;
544
545 /*
546 * Create parser_params ahead of vparser because
547 * rb_ruby_parser_new can run GC so if create vparser
548 * first, parser_mark tries to mark not initialized parser_params.
549 */
550 parser_params = rb_parser_params_new();
551 VALUE vparser = TypedData_Make_Struct(0, struct ruby_parser,
552 &ruby_parser_data_type, parser);
553 parser->parser_params = parser_params;
554
555 return vparser;
556}
557
558void
559rb_parser_set_options(VALUE vparser, int print, int loop, int chomp, int split)
560{
561 struct ruby_parser *parser;
562
563 TypedData_Get_Struct(vparser, struct ruby_parser, &ruby_parser_data_type, parser);
564 rb_ruby_parser_set_options(parser->parser_params, print, loop, chomp, split);
565}
566
567VALUE
568rb_parser_set_context(VALUE vparser, const struct rb_iseq_struct *base, int main)
569{
570 struct ruby_parser *parser;
571
572 TypedData_Get_Struct(vparser, struct ruby_parser, &ruby_parser_data_type, parser);
573 rb_ruby_parser_set_context(parser->parser_params, base, main);
574 return vparser;
575}
576
577void
578rb_parser_set_script_lines(VALUE vparser)
579{
580 struct ruby_parser *parser;
581
582 TypedData_Get_Struct(vparser, struct ruby_parser, &ruby_parser_data_type, parser);
583 rb_ruby_parser_set_script_lines(parser->parser_params);
584}
585
586void
587rb_parser_error_tolerant(VALUE vparser)
588{
589 struct ruby_parser *parser;
590
591 TypedData_Get_Struct(vparser, struct ruby_parser, &ruby_parser_data_type, parser);
592 rb_ruby_parser_error_tolerant(parser->parser_params);
593}
594
595void
596rb_parser_keep_tokens(VALUE vparser)
597{
598 struct ruby_parser *parser;
599
600 TypedData_Get_Struct(vparser, struct ruby_parser, &ruby_parser_data_type, parser);
601 rb_ruby_parser_keep_tokens(parser->parser_params);
602}
603
605rb_parser_lex_get_str(struct parser_params *p, struct lex_pointer_string *ptr_str)
606{
607 char *beg, *end, *start;
608 long len;
609 VALUE s = ptr_str->str;
610
611 beg = RSTRING_PTR(s);
612 len = RSTRING_LEN(s);
613 start = beg;
614 if (ptr_str->ptr) {
615 if (len == ptr_str->ptr) return 0;
616 beg += ptr_str->ptr;
617 len -= ptr_str->ptr;
618 }
619 end = memchr(beg, '\n', len);
620 if (end) len = ++end - beg;
621 ptr_str->ptr += len;
622 return rb_str_to_parser_string(p, rb_str_subseq(s, beg - start, len));
623}
624
625static rb_parser_string_t *
626lex_get_str(struct parser_params *p, rb_parser_input_data input, int line_count)
627{
628 return rb_parser_lex_get_str(p, (struct lex_pointer_string *)input);
629}
630
631static void parser_aset_script_lines_for(VALUE path, rb_parser_ary_t *lines);
632
633static rb_ast_t*
634parser_compile(rb_parser_t *p, rb_parser_lex_gets_func *gets, VALUE fname, rb_parser_input_data input, int line)
635{
636 rb_ast_t *ast = rb_parser_compile(p, gets, fname, input, line);
637 parser_aset_script_lines_for(fname, ast->body.script_lines);
638 return ast;
639}
640
641static rb_ast_t*
642parser_compile_string0(struct ruby_parser *parser, VALUE fname, VALUE s, int line)
643{
644 VALUE str = rb_str_new_frozen(s);
645
646 parser->type = lex_type_str;
647 parser->data.lex_str.str = str;
648 parser->data.lex_str.ptr = 0;
649
650 return parser_compile(parser->parser_params, lex_get_str, fname, (rb_parser_input_data)&parser->data, line);
651}
652
653static rb_encoding *
654must_be_ascii_compatible(VALUE s)
655{
656 rb_encoding *enc = rb_enc_get(s);
657 if (!rb_enc_asciicompat(enc)) {
658 rb_raise(rb_eArgError, "invalid source encoding");
659 }
660 return enc;
661}
662
663static rb_ast_t*
664parser_compile_string_path(struct ruby_parser *parser, VALUE f, VALUE s, int line)
665{
666 must_be_ascii_compatible(s);
667 return parser_compile_string0(parser, f, s, line);
668}
669
670static rb_ast_t*
671parser_compile_string(struct ruby_parser *parser, const char *f, VALUE s, int line)
672{
673 return parser_compile_string_path(parser, rb_filesystem_str_new_cstr(f), s, line);
674}
675
676VALUE rb_io_gets_internal(VALUE io);
677
678static rb_parser_string_t *
679lex_io_gets(struct parser_params *p, rb_parser_input_data input, int line_count)
680{
681 VALUE io = (VALUE)input;
682 VALUE line = rb_io_gets_internal(io);
683 if (NIL_P(line)) return 0;
684 return rb_str_to_parser_string(p, line);
685}
686
687static rb_parser_string_t *
688lex_gets_array(struct parser_params *p, rb_parser_input_data data, int index)
689{
690 VALUE array = (VALUE)data;
691 VALUE str = rb_ary_entry(array, index);
692 if (!NIL_P(str)) {
693 StringValue(str);
694 if (!rb_enc_asciicompat(rb_enc_get(str))) {
695 rb_raise(rb_eArgError, "invalid source encoding");
696 }
697 return rb_str_to_parser_string(p, str);
698 }
699 else {
700 return 0;
701 }
702}
703
704static rb_ast_t*
705parser_compile_file_path(struct ruby_parser *parser, VALUE fname, VALUE file, int start)
706{
707 parser->type = lex_type_io;
708 parser->data.lex_io.file = file;
709
710 return parser_compile(parser->parser_params, lex_io_gets, fname, (rb_parser_input_data)file, start);
711}
712
713static rb_ast_t*
714parser_compile_array(struct ruby_parser *parser, VALUE fname, VALUE array, int start)
715{
716 parser->type = lex_type_array;
717 parser->data.lex_array.ary = array;
718
719 return parser_compile(parser->parser_params, lex_gets_array, fname, (rb_parser_input_data)array, start);
720}
721
722static rb_ast_t*
723parser_compile_generic(struct ruby_parser *parser, rb_parser_lex_gets_func *lex_gets, VALUE fname, VALUE input, int start)
724{
725 parser->type = lex_type_generic;
726
727 return parser_compile(parser->parser_params, lex_gets, fname, (rb_parser_input_data)input, start);
728}
729
730static void
731ast_free(void *ptr)
732{
733 rb_ast_t *ast = (rb_ast_t *)ptr;
734 rb_ast_free(ast);
735}
736
737static const rb_data_type_t ast_data_type = {
738 "AST",
739 {
740 NULL,
741 ast_free,
742 NULL, // No dsize() because this object does not appear in ObjectSpace.
743 },
744 0, 0, RUBY_TYPED_THREAD_SAFE_FREE
745};
746
747static VALUE
748ast_alloc(void)
749{
750 return TypedData_Wrap_Struct(0, &ast_data_type, NULL);
751}
752
753VALUE
754rb_parser_compile_file_path(VALUE vparser, VALUE fname, VALUE file, int start)
755{
756 struct ruby_parser *parser;
757 VALUE ast_value = ast_alloc();
758
759 TypedData_Get_Struct(vparser, struct ruby_parser, &ruby_parser_data_type, parser);
760 DATA_PTR(ast_value) = parser_compile_file_path(parser, fname, file, start);
761 RB_GC_GUARD(vparser);
762
763 return ast_value;
764}
765
766VALUE
767rb_parser_compile_array(VALUE vparser, VALUE fname, VALUE array, int start)
768{
769 struct ruby_parser *parser;
770 VALUE ast_value = ast_alloc();
771
772 TypedData_Get_Struct(vparser, struct ruby_parser, &ruby_parser_data_type, parser);
773 DATA_PTR(ast_value) = parser_compile_array(parser, fname, array, start);
774 RB_GC_GUARD(vparser);
775
776 return ast_value;
777}
778
779VALUE
780rb_parser_compile_generic(VALUE vparser, rb_parser_lex_gets_func *lex_gets, VALUE fname, VALUE input, int start)
781{
782 struct ruby_parser *parser;
783 VALUE ast_value = ast_alloc();
784
785 TypedData_Get_Struct(vparser, struct ruby_parser, &ruby_parser_data_type, parser);
786 DATA_PTR(ast_value) = parser_compile_generic(parser, lex_gets, fname, input, start);
787 RB_GC_GUARD(vparser);
788
789 return ast_value;
790}
791
792VALUE
793rb_parser_compile_string(VALUE vparser, const char *f, VALUE s, int line)
794{
795 struct ruby_parser *parser;
796 VALUE ast_value = ast_alloc();
797
798 TypedData_Get_Struct(vparser, struct ruby_parser, &ruby_parser_data_type, parser);
799 DATA_PTR(ast_value) = parser_compile_string(parser, f, s, line);
800 RB_GC_GUARD(vparser);
801
802 return ast_value;
803}
804
805VALUE
806rb_parser_compile_string_path(VALUE vparser, VALUE f, VALUE s, int line)
807{
808 struct ruby_parser *parser;
809 VALUE ast_value = ast_alloc();
810
811 TypedData_Get_Struct(vparser, struct ruby_parser, &ruby_parser_data_type, parser);
812 DATA_PTR(ast_value) = parser_compile_string_path(parser, f, s, line);
813 RB_GC_GUARD(vparser);
814
815 return ast_value;
816}
817
818VALUE
819rb_parser_encoding(VALUE vparser)
820{
821 struct ruby_parser *parser;
822
823 TypedData_Get_Struct(vparser, struct ruby_parser, &ruby_parser_data_type, parser);
824 return rb_enc_from_encoding(rb_ruby_parser_encoding(parser->parser_params));
825}
826
827VALUE
828rb_parser_end_seen_p(VALUE vparser)
829{
830 struct ruby_parser *parser;
831
832 TypedData_Get_Struct(vparser, struct ruby_parser, &ruby_parser_data_type, parser);
833 return RBOOL(rb_ruby_parser_end_seen_p(parser->parser_params));
834}
835
836VALUE
837rb_parser_set_yydebug(VALUE vparser, VALUE flag)
838{
839 struct ruby_parser *parser;
840
841 TypedData_Get_Struct(vparser, struct ruby_parser, &ruby_parser_data_type, parser);
842 rb_ruby_parser_set_yydebug(parser->parser_params, RTEST(flag));
843 return flag;
844}
845
846void
847rb_set_script_lines_for(VALUE vparser, VALUE path)
848{
849 struct ruby_parser *parser;
850 VALUE hash;
851 ID script_lines;
852 CONST_ID(script_lines, "SCRIPT_LINES__");
853 if (!rb_const_defined_at(rb_cObject, script_lines)) return;
854 hash = rb_const_get_at(rb_cObject, script_lines);
855 if (RB_TYPE_P(hash, T_HASH)) {
856 rb_hash_aset(hash, path, Qtrue);
857 TypedData_Get_Struct(vparser, struct ruby_parser, &ruby_parser_data_type, parser);
858 rb_ruby_parser_set_script_lines(parser->parser_params);
859 }
860}
861
862VALUE
863rb_parser_build_script_lines_from(rb_parser_ary_t *lines)
864{
865 int i;
866 if (!lines) return Qnil;
867 if (lines->data_type != PARSER_ARY_DATA_SCRIPT_LINE) {
868 rb_bug("unexpected rb_parser_ary_data_type (%d) for script lines", lines->data_type);
869 }
870 VALUE script_lines = rb_ary_new_capa(lines->len);
871 for (i = 0; i < lines->len; i++) {
872 rb_parser_string_t *str = (rb_parser_string_t *)lines->data[i];
873 rb_ary_push(script_lines, rb_enc_str_new(str->ptr, str->len, str->enc));
874 }
875 return script_lines;
876}
877
878VALUE
879rb_str_new_parser_string(rb_parser_string_t *str)
880{
881 VALUE string = rb_enc_literal_str(str->ptr, str->len, str->enc);
882 rb_enc_str_coderange(string);
883 return string;
884}
885
886VALUE
887rb_str_new_mutable_parser_string(rb_parser_string_t *str)
888{
889 return rb_enc_str_new(str->ptr, str->len, str->enc);
890}
891
892static VALUE
893negative_numeric(VALUE val)
894{
895 if (FIXNUM_P(val)) {
896 return LONG2FIX(-FIX2LONG(val));
897 }
898 if (SPECIAL_CONST_P(val)) {
899#if USE_FLONUM
900 if (FLONUM_P(val)) {
901 return DBL2NUM(-RFLOAT_VALUE(val));
902 }
903#endif
904 goto unknown;
905 }
906 switch (BUILTIN_TYPE(val)) {
907 case T_BIGNUM:
908 BIGNUM_NEGATE(val);
909 val = rb_big_norm(val);
910 break;
911 case T_RATIONAL:
912 RATIONAL_SET_NUM(val, negative_numeric(RRATIONAL(val)->num));
913 break;
914 case T_COMPLEX:
915 RCOMPLEX_SET_REAL(val, negative_numeric(RCOMPLEX(val)->real));
916 RCOMPLEX_SET_IMAG(val, negative_numeric(RCOMPLEX(val)->imag));
917 break;
918 case T_FLOAT:
919 val = DBL2NUM(-RFLOAT_VALUE(val));
920 break;
921 unknown:
922 default:
923 rb_bug("unknown literal type (%s) passed to negative_numeric",
924 rb_builtin_class_name(val));
925 break;
926 }
927 return val;
928}
929
930static VALUE
931integer_value(const char *val, int base)
932{
933 return rb_cstr_to_inum(val, base, FALSE);
934}
935
936static VALUE
937rational_value(const char *node_val, int base, int seen_point)
938{
939 VALUE lit;
940 char* val = strdup(node_val);
941 if (seen_point > 0) {
942 int len = (int)(strlen(val));
943 char *point = &val[seen_point];
944 size_t fraclen = len-seen_point-1;
945 memmove(point, point+1, fraclen+1);
946
947 lit = rb_rational_new(integer_value(val, base), rb_int_positive_pow(10, fraclen));
948 }
949 else {
950 lit = rb_rational_raw1(integer_value(val, base));
951 }
952
953 free(val);
954
955 return lit;
956}
957
958VALUE
959rb_node_integer_literal_val(const NODE *n)
960{
961 const rb_node_integer_t *node = RNODE_INTEGER(n);
962 VALUE val = integer_value(node->val, node->base);
963 if (node->minus) {
964 val = negative_numeric(val);
965 }
966 return val;
967}
968
969VALUE
970rb_node_float_literal_val(const NODE *n)
971{
972 const rb_node_float_t *node = RNODE_FLOAT(n);
973 double d = strtod(node->val, 0);
974 if (node->minus) {
975 d = -d;
976 }
977 VALUE val = DBL2NUM(d);
978 return val;
979}
980
981VALUE
982rb_node_rational_literal_val(const NODE *n)
983{
984 VALUE lit;
985 const rb_node_rational_t *node = RNODE_RATIONAL(n);
986
987 lit = rational_value(node->val, node->base, node->seen_point);
988
989 if (node->minus) {
990 lit = negative_numeric(lit);
991 }
992
993 return lit;
994}
995
996VALUE
997rb_node_imaginary_literal_val(const NODE *n)
998{
999 VALUE lit;
1000 const rb_node_imaginary_t *node = RNODE_IMAGINARY(n);
1001
1002 enum rb_numeric_type type = node->type;
1003
1004 switch (type) {
1005 case integer_literal:
1006 lit = integer_value(node->val, node->base);
1007 break;
1008 case float_literal:{
1009 double d = strtod(node->val, 0);
1010 lit = DBL2NUM(d);
1011 break;
1012 }
1013 case rational_literal:
1014 lit = rational_value(node->val, node->base, node->seen_point);
1015 break;
1016 default:
1017 rb_bug("unreachable");
1018 }
1019
1020 lit = rb_complex_raw(INT2FIX(0), lit);
1021
1022 if (node->minus) {
1023 lit = negative_numeric(lit);
1024 }
1025 return lit;
1026}
1027
1028VALUE
1029rb_node_str_string_val(const NODE *node)
1030{
1031 rb_parser_string_t *str = RNODE_STR(node)->string;
1032 return rb_str_new_parser_string(str);
1033}
1034
1035VALUE
1036rb_node_sym_string_val(const NODE *node)
1037{
1038 rb_parser_string_t *str = RNODE_SYM(node)->string;
1039 return ID2SYM(rb_intern3(str->ptr, str->len, str->enc));
1040}
1041
1042VALUE
1043rb_node_dstr_string_val(const NODE *node)
1044{
1045 rb_parser_string_t *str = RNODE_DSTR(node)->string;
1046 return str ? rb_str_new_parser_string(str) : Qnil;
1047}
1048
1049VALUE
1050rb_node_dregx_string_val(const NODE *node)
1051{
1052 rb_parser_string_t *str = RNODE_DREGX(node)->string;
1053 return rb_str_new_parser_string(str);
1054}
1055
1056VALUE
1057rb_node_regx_string_val(const NODE *node)
1058{
1059 rb_node_regx_t *node_reg = RNODE_REGX(node);
1060 rb_parser_string_t *string = node_reg->string;
1061 VALUE str = rb_enc_str_new(string->ptr, string->len, string->enc);
1062
1063 return rb_reg_compile(str, node_reg->options, NULL, 0);
1064}
1065
1066VALUE
1067rb_node_line_lineno_val(const NODE *node)
1068{
1069 return INT2FIX(node->nd_loc.beg_pos.lineno);
1070}
1071
1072VALUE
1073rb_node_file_path_val(const NODE *node)
1074{
1075 return rb_str_new_parser_string(RNODE_FILE(node)->path);
1076}
1077
1078VALUE
1079rb_node_encoding_val(const NODE *node)
1080{
1081 return rb_enc_from_encoding(RNODE_ENCODING(node)->enc);
1082}
1083
1084static void
1085parser_aset_script_lines_for(VALUE path, rb_parser_ary_t *lines)
1086{
1087 VALUE hash, script_lines;
1088 ID script_lines_id;
1089 if (NIL_P(path) || !lines) return;
1090 CONST_ID(script_lines_id, "SCRIPT_LINES__");
1091 if (!rb_const_defined_at(rb_cObject, script_lines_id)) return;
1092 hash = rb_const_get_at(rb_cObject, script_lines_id);
1093 if (!RB_TYPE_P(hash, T_HASH)) return;
1094 if (rb_hash_lookup(hash, path) == Qnil) return;
1095 script_lines = rb_parser_build_script_lines_from(lines);
1096 rb_hash_aset(hash, path, script_lines);
1097}
1098
1099/* The source hash API currently computes FNV-1a, but the algorithm is an
1100 * implementation detail. The hash values are only ever compared against
1101 * hashes computed by the same interpreter, so the algorithm can be changed
1102 * freely between releases. */
1103void
1104rb_source_hash_init(rb_source_hash_state_t *state)
1105{
1106 state->hash = 0xcbf29ce484222325; /* FNV-1a offset basis */
1107}
1108
1109void
1110rb_source_hash_update(rb_source_hash_state_t *state, const uint8_t *ptr, size_t len)
1111{
1112 uint64_t hash = state->hash;
1113 for (size_t i = 0; i < len; i++) {
1114 hash = (hash ^ ptr[i]) * 0x100000001b3; /* FNV-1a prime */
1115 }
1116 state->hash = hash;
1117}
1118
1119uint64_t
1120rb_source_hash_finalize(const rb_source_hash_state_t *state)
1121{
1122 return state->hash;
1123}
1124
1125VALUE
1126rb_ruby_ast_new(const NODE *const root)
1127{
1128 rb_ast_t *ast;
1129 VALUE ast_value = TypedData_Make_Struct(0, rb_ast_t, &ast_data_type, ast);
1130#ifdef UNIVERSAL_PARSER
1131 ast->config = &rb_global_parser_config;
1132#endif
1133 ast->body = (rb_ast_body_t){
1134 .root = root,
1135 .frozen_string_literal = -1,
1136 .coverage_enabled = -1,
1137 .script_lines = NULL,
1138 .line_count = 0,
1139 };
1140 return ast_value;
1141}
1142
1143rb_ast_t *
1144rb_ruby_ast_data_get(VALUE ast_value)
1145{
1146 rb_ast_t *ast;
1147 if (NIL_P(ast_value)) return NULL;
1148 TypedData_Get_Struct(ast_value, rb_ast_t, &ast_data_type, ast);
1149 return ast;
1150}
#define T_COMPLEX
Old name of RUBY_T_COMPLEX.
Definition value_type.h:59
#define ENC_CODERANGE_7BIT
Old name of RUBY_ENC_CODERANGE_7BIT.
Definition coderange.h:180
#define RFLOAT_VALUE
Old name of rb_float_value.
Definition double.h:28
#define xfree
Old name of ruby_xfree.
Definition xmalloc.h:58
#define INT2FIX
Old name of RB_INT2FIX.
Definition long.h:48
#define T_FLOAT
Old name of RUBY_T_FLOAT.
Definition value_type.h:64
#define ID2SYM
Old name of RB_ID2SYM.
Definition symbol.h:44
#define T_BIGNUM
Old name of RUBY_T_BIGNUM.
Definition value_type.h:57
#define SPECIAL_CONST_P
Old name of RB_SPECIAL_CONST_P.
#define ENC_CODERANGE_UNKNOWN
Old name of RUBY_ENC_CODERANGE_UNKNOWN.
Definition coderange.h:179
#define LONG2FIX
Old name of RB_INT2FIX.
Definition long.h:49
#define SYMBOL_FLAG
Old name of RUBY_SYMBOL_FLAG.
#define T_RATIONAL
Old name of RUBY_T_RATIONAL.
Definition value_type.h:76
#define T_HASH
Old name of RUBY_T_HASH.
Definition value_type.h:65
#define MBCLEN_CHARFOUND_LEN(ret)
Old name of ONIGENC_MBCLEN_CHARFOUND_LEN.
Definition encoding.h:517
#define FLONUM_P
Old name of RB_FLONUM_P.
#define Qtrue
Old name of RUBY_Qtrue.
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
#define FIX2LONG
Old name of RB_FIX2LONG.
Definition long.h:46
#define NIL_P
Old name of RB_NIL_P.
#define MBCLEN_CHARFOUND_P(ret)
Old name of ONIGENC_MBCLEN_CHARFOUND_P.
Definition encoding.h:516
#define DBL2NUM
Old name of rb_float_new.
Definition double.h:29
#define BUILTIN_TYPE
Old name of RB_BUILTIN_TYPE.
Definition value_type.h:85
#define FIXNUM_P
Old name of RB_FIXNUM_P.
#define CONST_ID
Old name of RUBY_CONST_ID.
Definition symbol.h:47
#define ruby_verbose
This variable controls whether the interpreter is in debug mode.
Definition error.h:476
VALUE rb_eSyntaxError
SyntaxError exception.
Definition error.c:1448
VALUE rb_cObject
Object class.
Definition object.c:58
VALUE rb_class_new_instance(int argc, const VALUE *argv, VALUE klass)
Allocates, then initialises an instance of the given class.
Definition object.c:2280
#define RBIMPL_ATTR_FORMAT(x, y, z)
Wraps (or simulates) __attribute__((format))
Definition format.h:33
long rb_str_coderange_scan_restartable(const char *str, const char *end, rb_encoding *enc, int *cr)
Scans the passed string until it finds something odd.
Definition string.c:843
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_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_int_positive_pow(long x, unsigned long y)
Raises the passed x to the power of y.
Definition numeric.c:4766
VALUE rb_rational_new(VALUE num, VALUE den)
Constructs a Rational, with reduction.
Definition rational.c:2006
#define rb_rational_raw1(x)
Shorthand of (x/1)r.
Definition rational.h:51
VALUE rb_str_subseq(VALUE str, long beg, long len)
Identical to rb_str_substr(), except the numbers are interpreted as byte offsets instead of character...
Definition string.c:3233
#define rb_str_new(str, len)
Allocates an instance of rb_cString.
Definition string.h:1499
VALUE rb_str_new_frozen(VALUE str)
Creates a frozen copy of the string, if necessary.
Definition string.c:1537
VALUE rb_filesystem_str_new_cstr(const char *ptr)
Identical to rb_filesystem_str_new(), except it assumes the passed pointer is a pointer to a C string...
Definition string.c:1448
#define rb_str_cat_cstr(buf, str)
Identical to rb_str_cat(), except it assumes the passed pointer is a pointer to a C string.
Definition string.h:1657
#define rb_str_new_cstr(str)
Identical to rb_str_new, except it assumes the passed pointer is a pointer to a C string.
Definition string.h:1515
VALUE rb_const_get_at(VALUE space, ID name)
Identical to rb_const_defined_at(), except it returns the actual defined value.
Definition variable.c:3414
int rb_const_defined_at(VALUE space, ID name)
Identical to rb_const_defined(), except it doesn't look for parent classes.
Definition variable.c:3746
VALUE rb_id2sym(ID id)
Allocates an instance of rb_cSymbol that has the given id.
Definition symbol.c:1128
int len
Length of the buffer.
Definition io.h:8
#define strtod(s, e)
Just another name of ruby_strtod.
Definition util.h:223
double ruby_strtod(const char *str, char **endptr)
Our own locale-insensitive version of strtod(3).
#define strdup(s)
Just another name of ruby_strdup.
Definition util.h:187
static VALUE rb_int2num_inline(int v)
Converts a C's int into an instance of rb_cInteger.
Definition int.h:239
#define rb_long2int
Just another name of rb_long2int_inline.
Definition long.h:62
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
Definition memory.h:167
VALUE type(ANYARGS)
ANYARGS-ed function type.
Functions related to nodes in the AST.
static struct re_pattern_buffer * RREGEXP_PTR(VALUE rexp)
Convenient getter function.
Definition rregexp.h:86
#define StringValue(v)
Ensures that the parameter object is a String.
Definition rstring.h:66
#define TypedData_Get_Struct(obj, type, data_type, sval)
Obtains a C struct from inside of a wrapper Ruby object.
Definition rtypeddata.h:773
#define DATA_PTR(obj)
Convenient casting macro for backward compatibility.
Definition rtypeddata.h:435
#define TypedData_Wrap_Struct(klass, data_type, sval)
Converts sval, a pointer to your struct, into a Ruby object.
Definition rtypeddata.h:557
#define TypedData_Make_Struct(klass, type, data_type, sval)
Identical to TypedData_Wrap_Struct, except it allocates a new data region internally instead of takin...
Definition rtypeddata.h:604
static bool RB_TEST(VALUE obj)
Emulates Ruby's "if" statement.
@ RUBY_SPECIAL_SHIFT
Least significant 8 bits are reserved.
#define RTEST
This is an old name of RB_TEST.
This is the struct that holds necessary info for a struct.
Definition rtypeddata.h:238
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
Definition value.h:52
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40
static bool RB_TYPE_P(VALUE obj, enum ruby_value_type t)
Queries if the given object is of given type.
Definition value_type.h:376