mirror of
https://github.com/ruby/ruby.git
synced 2025-08-28 15:36:16 +02:00

This patch is part of universal parser work. ## Summary - Decouple VALUE from members below: - `(struct parser_params *)->debug_lines` - `(rb_ast_t *)->body.script_lines` - Instead, they are now `rb_parser_ary_t *` - They can also be a `(VALUE)FIXNUM` as before to hold line count - `ISEQ_BODY(iseq)->variable.script_lines` remains VALUE - In order to do this, - Add `VALUE script_lines` param to `rb_iseq_new_with_opt()` - Introduce `rb_parser_build_script_lines_from()` to convert `rb_parser_ary_t *` into `VALUE` ## Other details - Extend `rb_parser_ary_t *`. It previously could only store `rb_parser_ast_token *`, now can store script_lines, too - Change tactics of building the top-level `SCRIPT_LINES__` in `yycompile0()` - Before: While parsing, each line of the script is added to `SCRIPT_LINES__[path]` - After: After `yyparse(p)`, `SCRIPT_LINES__[path]` will be built from `p->debug_lines` - Remove the second parameter of `rb_parser_set_script_lines()` to make it simple - Introduce `script_lines_free()` to be called from `rb_ast_free()` because the GC no longer takes care of the script_lines - Introduce `rb_parser_string_deep_copy()` in parse.y to maintain script_lines when `rb_ruby_parser_free()` called - With regard to this, please see *Future tasks* below ## Future tasks - Decouple IMEMO from `rb_ast_t *` - This lifts the five-members-restriction of Ruby object, - So we will be able to move the ownership of the `lex.string_buffer` from parser to AST - Then we remove `rb_parser_string_deep_copy()` to make the whole thing simple
114 lines
4.8 KiB
C
114 lines
4.8 KiB
C
#ifndef INTERNAL_PARSE_H /*-*-C-*-vi:se ft=c:*/
|
|
#define INTERNAL_PARSE_H
|
|
/**
|
|
* @author Ruby developers <ruby-core@ruby-lang.org>
|
|
* @copyright This file is a part of the programming language Ruby.
|
|
* Permission is hereby granted, to either redistribute and/or
|
|
* modify this file, provided that the conditions mentioned in the
|
|
* file COPYING are met. Consult the file for details.
|
|
* @brief Internal header for the parser.
|
|
*/
|
|
#include <limits.h>
|
|
#include "rubyparser.h"
|
|
#include "internal/static_assert.h"
|
|
|
|
#ifdef UNIVERSAL_PARSER
|
|
#define rb_encoding void
|
|
#endif
|
|
|
|
struct rb_iseq_struct; /* in vm_core.h */
|
|
|
|
/* structs for managing terminator of string literal and heredocment */
|
|
typedef struct rb_strterm_literal_struct {
|
|
long nest;
|
|
int func; /* STR_FUNC_* (e.g., STR_FUNC_ESCAPE and STR_FUNC_EXPAND) */
|
|
int paren; /* '(' of `%q(...)` */
|
|
int term; /* ')' of `%q(...)` */
|
|
} rb_strterm_literal_t;
|
|
|
|
typedef struct rb_strterm_heredoc_struct {
|
|
rb_parser_string_t *lastline; /* the string of line that contains `<<"END"` */
|
|
long offset; /* the column of END in `<<"END"` */
|
|
int sourceline; /* lineno of the line that contains `<<"END"` */
|
|
unsigned length; /* the length of END in `<<"END"` */
|
|
uint8_t quote;
|
|
uint8_t func;
|
|
} rb_strterm_heredoc_t;
|
|
|
|
#define HERETERM_LENGTH_MAX UINT_MAX
|
|
|
|
typedef struct rb_strterm_struct {
|
|
bool heredoc;
|
|
union {
|
|
rb_strterm_literal_t literal;
|
|
rb_strterm_heredoc_t heredoc;
|
|
} u;
|
|
} rb_strterm_t;
|
|
|
|
/* parse.y */
|
|
void rb_ruby_parser_mark(void *ptr);
|
|
size_t rb_ruby_parser_memsize(const void *ptr);
|
|
|
|
void rb_ruby_parser_set_options(rb_parser_t *p, int print, int loop, int chomp, int split);
|
|
rb_parser_t *rb_ruby_parser_set_context(rb_parser_t *p, const struct rb_iseq_struct *base, int main);
|
|
void rb_ruby_parser_set_script_lines(rb_parser_t *p);
|
|
void rb_ruby_parser_error_tolerant(rb_parser_t *p);
|
|
rb_ast_t* rb_ruby_parser_compile_file_path(rb_parser_t *p, VALUE fname, VALUE file, int start);
|
|
void rb_ruby_parser_keep_tokens(rb_parser_t *p);
|
|
rb_ast_t* rb_ruby_parser_compile_generic(rb_parser_t *p, VALUE (*lex_gets)(VALUE, int), VALUE fname, VALUE input, int start);
|
|
rb_ast_t* rb_ruby_parser_compile_string_path(rb_parser_t *p, VALUE f, VALUE s, int line);
|
|
|
|
RUBY_SYMBOL_EXPORT_BEGIN
|
|
|
|
VALUE rb_ruby_parser_encoding(rb_parser_t *p);
|
|
int rb_ruby_parser_end_seen_p(rb_parser_t *p);
|
|
int rb_ruby_parser_set_yydebug(rb_parser_t *p, int flag);
|
|
rb_parser_string_t *rb_str_to_parser_string(rb_parser_t *p, VALUE str);
|
|
|
|
int rb_parser_dvar_defined_ref(struct parser_params*, ID, ID**);
|
|
ID rb_parser_internal_id(struct parser_params*);
|
|
int rb_parser_reg_fragment_check(struct parser_params*, rb_parser_string_t*, int);
|
|
int rb_reg_named_capture_assign_iter_impl(struct parser_params *p, const char *s, long len, rb_encoding *enc, NODE **succ_block, const rb_code_location_t *loc);
|
|
int rb_parser_local_defined(struct parser_params *p, ID id, const struct rb_iseq_struct *iseq);
|
|
|
|
RUBY_SYMBOL_EXPORT_END
|
|
|
|
#ifdef RIPPER
|
|
void ripper_parser_mark(void *ptr);
|
|
void ripper_parser_free(void *ptr);
|
|
size_t ripper_parser_memsize(const void *ptr);
|
|
void ripper_error(struct parser_params *p);
|
|
VALUE ripper_value(struct parser_params *p);
|
|
int rb_ruby_parser_get_yydebug(rb_parser_t *p);
|
|
void rb_ruby_parser_set_value(rb_parser_t *p, VALUE value);
|
|
int rb_ruby_parser_error_p(rb_parser_t *p);
|
|
VALUE rb_ruby_parser_debug_output(rb_parser_t *p);
|
|
void rb_ruby_parser_set_debug_output(rb_parser_t *p, VALUE output);
|
|
VALUE rb_ruby_parser_parsing_thread(rb_parser_t *p);
|
|
void rb_ruby_parser_set_parsing_thread(rb_parser_t *p, VALUE parsing_thread);
|
|
void rb_ruby_parser_ripper_initialize(rb_parser_t *p, VALUE (*gets)(struct parser_params*,VALUE), VALUE input, VALUE sourcefile_string, const char *sourcefile, int sourceline);
|
|
VALUE rb_ruby_parser_result(rb_parser_t *p);
|
|
rb_encoding *rb_ruby_parser_enc(rb_parser_t *p);
|
|
VALUE rb_ruby_parser_ruby_sourcefile_string(rb_parser_t *p);
|
|
int rb_ruby_parser_ruby_sourceline(rb_parser_t *p);
|
|
int rb_ruby_parser_lex_state(rb_parser_t *p);
|
|
void rb_ruby_ripper_parse0(rb_parser_t *p);
|
|
int rb_ruby_ripper_dedent_string(rb_parser_t *p, VALUE string, int width);
|
|
VALUE rb_ruby_ripper_lex_get_str(rb_parser_t *p, VALUE s);
|
|
int rb_ruby_ripper_initialized_p(rb_parser_t *p);
|
|
void rb_ruby_ripper_parser_initialize(rb_parser_t *p);
|
|
long rb_ruby_ripper_column(rb_parser_t *p);
|
|
long rb_ruby_ripper_token_len(rb_parser_t *p);
|
|
rb_parser_string_t *rb_ruby_ripper_lex_lastline(rb_parser_t *p);
|
|
VALUE rb_ruby_ripper_lex_state_name(struct parser_params *p, int state);
|
|
#ifdef UNIVERSAL_PARSER
|
|
rb_parser_t *rb_ripper_parser_params_allocate(const rb_parser_config_t *config);
|
|
#endif
|
|
struct parser_params *rb_ruby_ripper_parser_allocate(void);
|
|
#endif
|
|
|
|
#ifdef UNIVERSAL_PARSER
|
|
#undef rb_encoding
|
|
#endif
|
|
|
|
#endif /* INTERNAL_PARSE_H */
|