X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=parser.h;h=2393fcea7ef1081f0d6d5cb6b9ee32abc9ee8665;hp=0a303e0e220055c11e4247d6e763b434cbd5d551;hb=0ecfe18f499778f4b4b2b68cd49210ad21848ea6;hpb=b5ac2745d678a3cf7d7275864a0aabe9a52d8f08 diff --git a/parser.h b/parser.h index 0a303e0..2393fce 100644 --- a/parser.h +++ b/parser.h @@ -4,47 +4,47 @@ #include "lexer.h" #include "ast.h" -typedef struct intrin_s intrin_t; -typedef struct parser_s parser_t; - -typedef struct { - struct parser_s *parser; - ast_value **imm_float; /* vector */ - ast_value **imm_vector; /* vector */ - ast_value **imm_string; /* vector */ - hash_table_t *imm_string_untranslate; /* map */ - hash_table_t *imm_string_dotranslate; /* map */ -} fold_t; - -typedef struct { +struct parser_t; +struct intrin_t; + +struct fold_t { + parser_t *parser; + std::vector imm_float; + std::vector imm_vector; + std::vector imm_string; + hash_table_t *imm_string_untranslate; /* map */ + hash_table_t *imm_string_dotranslate; /* map */ +}; + +struct intrin_func_t { ast_expression *(*intrin)(intrin_t *); - const char *name; - const char *alias; - size_t args; -} intrin_func_t; - -struct intrin_s { - intrin_func_t *intrinsics; /* vector */ - ast_expression **generated; /* vector */ - parser_t *parser; - fold_t *fold; + const char *name; + const char *alias; + size_t args; +}; + +struct intrin_t { + std::vector intrinsics; + std::vector generated; + parser_t *parser; + fold_t *fold; }; #define parser_ctx(p) ((p)->lex->tok.ctx) -struct parser_s { +struct parser_t { lex_file *lex; - int tok; + int tok; - bool ast_cleaned; + bool ast_cleaned; - ast_expression **globals; - ast_expression **fields; - ast_function **functions; - size_t translated; + std::vector globals; + std::vector fields; + std::vector functions; + size_t translated; /* must be deleted first, they reference immediates and values */ - ast_value **accessors; + std::vector accessors; ast_value *nil; ast_value *reserved_version; @@ -53,15 +53,15 @@ struct parser_s { size_t crc_fields; ast_function *function; - ht aliases; + ht aliases; /* All the labels the function defined... * Should they be in ast_function instead? */ - ast_label **labels; - ast_goto **gotos; - const char **breaks; - const char **continues; + std::vector labels; + std::vector gotos; + std::vector breaks; + std::vector continues; /* A list of hashtables for each scope */ ht *variables; @@ -71,10 +71,10 @@ struct parser_s { /* not to be used directly, we use the hash table */ ast_expression **_locals; - size_t *_blocklocals; - ast_value **_typedefs; - size_t *_blocktypedefs; - lex_ctx_t *_block_ctx; + size_t *_blocklocals; + ast_value **_typedefs; + size_t *_blocktypedefs; + lex_ctx_t *_block_ctx; /* we store the '=' operator info */ const oper_info *assign_op; @@ -86,9 +86,9 @@ struct parser_s { bool noref; /* collected information */ - size_t max_param_count; + size_t max_param_count; - fold_t *fold; + fold_t *fold; intrin_t *intrin; };