X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=parser.h;h=0396a7e17b3af01ac8e1fdf1f1004a18c8bbed57;hp=15c0ce40e6c293617cc37b50d348b848977880f1;hb=b1016c7f48c9d9e499351ad3a7c84db71325b81d;hpb=10b75fd8b9ebc7ea6dbfd802dde13af4ec4c2414 diff --git a/parser.h b/parser.h index 15c0ce4..0396a7e 100644 --- a/parser.h +++ b/parser.h @@ -27,6 +27,9 @@ #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 */ @@ -36,9 +39,23 @@ typedef struct { hash_table_t *imm_string_dotranslate; /* map */ } fold_t; +typedef struct { + 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; +}; + #define parser_ctx(p) ((p)->lex->tok.ctx) -typedef struct parser_s { +struct parser_s { lex_file *lex; int tok; @@ -98,11 +115,14 @@ typedef struct parser_s { /* collected information */ size_t max_param_count; - fold_t *fold; -} parser_t; + fold_t *fold; + intrin_t *intrin; +}; -char *parser_strdup(const char *str); +/* parser.c */ +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 *); @@ -111,8 +131,18 @@ ast_expression *fold_constgen_float (fold_t *, qcfloat_t); 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**); - -int fold_cond (ir_value *, ast_function *, ast_ifthen *); +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 *); + +/* intrin.c */ +intrin_t *intrin_init (parser_t *parser); +void intrin_cleanup (intrin_t *intrin); +ast_expression *intrin_fold (intrin_t *intrin, ast_value *, ast_expression **); +ast_expression *intrin_func (intrin_t *intrin, const char *name); +ast_expression *intrin_debug_typestring(intrin_t *intrin); #endif