X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=parser.h;h=a09238df68d768dbd1d0f2fbee2bc5165c0d5686;hp=f9f0ab56e74c63f9ef8c994450c523c1ab8827b0;hb=db9c37d18bcced1c3b0f1421044155b1d88f0b25;hpb=7e0e041527e812a112635fe511fb1ad566b6c7fe diff --git a/parser.h b/parser.h index f9f0ab5..a09238d 100644 --- a/parser.h +++ b/parser.h @@ -2,20 +2,13 @@ #define GMQCC_PARSER_HDR #include "gmqcc.h" #include "lexer.h" -#include "ast.h" +//#include "ast.h" + #include "intrin.h" +#include "fold.h" struct parser_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 */ -}; - #define parser_ctx(p) ((p)->lex->tok.ctx) struct parser_t { @@ -76,7 +69,7 @@ struct parser_t { /* collected information */ size_t max_param_count; - fold_t *fold; + fold m_fold; intrin m_intrin; }; @@ -85,18 +78,4 @@ struct parser_t { char *parser_strdup (const char *str); ast_expression *parser_find_global(parser_t *parser, const char *name); -/* fold.c */ -fold_t *fold_init (parser_t *); -void fold_cleanup (fold_t *); -ast_expression *fold_constgen_float (fold_t *, qcfloat_t, bool); -ast_expression *fold_constgen_vector(fold_t *, vec3_t); -ast_expression *fold_constgen_string(fold_t *, const char *, bool); -bool fold_generate (fold_t *, ir_builder *); -ast_expression *fold_op (fold_t *, const oper_info *, ast_expression **); -ast_expression *fold_intrin (fold_t *, const char *, ast_expression **); - -ast_expression *fold_binary (lex_ctx_t ctx, int, ast_expression *, ast_expression *); -int fold_cond_ifthen (ir_value *, ast_function *, ast_ifthen *); -int fold_cond_ternary (ir_value *, ast_function *, ast_ternary *); - #endif