gmqcc/parser.h

103 lines
2.7 KiB
C
Raw Normal View History

#ifndef GMQCC_PARSER_HDR
#define GMQCC_PARSER_HDR
#include "gmqcc.h"
#include "lexer.h"
#include "ast.h"
2015-01-15 23:11:41 +00:00
#include "intrin.h"
2015-01-15 04:56:52 +00:00
struct parser_t;
struct fold_t {
parser_t *parser;
2015-01-15 07:47:42 +00:00
std::vector<ast_value*> imm_float;
std::vector<ast_value*> imm_vector;
std::vector<ast_value*> imm_string;
2015-01-15 04:56:52 +00:00
hash_table_t *imm_string_untranslate; /* map<string, ast_value*> */
hash_table_t *imm_string_dotranslate; /* map<string, ast_value*> */
};
2013-07-31 16:31:45 +00:00
#define parser_ctx(p) ((p)->lex->tok.ctx)
2015-01-15 04:56:52 +00:00
struct parser_t {
2015-01-15 23:11:41 +00:00
parser_t() { }
lex_file *lex;
2015-01-15 06:35:56 +00:00
int tok;
2015-01-15 06:35:56 +00:00
bool ast_cleaned;
2015-01-15 06:35:56 +00:00
std::vector<ast_expression *> globals;
std::vector<ast_expression *> fields;
std::vector<ast_function *> functions;
size_t translated;
/* must be deleted first, they reference immediates and values */
2015-01-15 06:35:56 +00:00
std::vector<ast_value *> accessors;
ast_value *nil;
ast_value *reserved_version;
size_t crc_globals;
size_t crc_fields;
ast_function *function;
2015-01-15 06:35:56 +00:00
ht aliases;
/* All the labels the function defined...
* Should they be in ast_function instead?
*/
2015-01-15 04:34:43 +00:00
std::vector<ast_label*> labels;
std::vector<ast_goto*> gotos;
std::vector<const char *> breaks;
std::vector<const char *> continues;
/* A list of hashtables for each scope */
ht *variables;
ht htfields;
ht htglobals;
ht *typedefs;
/* not to be used directly, we use the hash table */
ast_expression **_locals;
2015-01-15 06:35:56 +00:00
size_t *_blocklocals;
ast_value **_typedefs;
size_t *_blocktypedefs;
lex_ctx_t *_block_ctx;
/* we store the '=' operator info */
const oper_info *assign_op;
/* magic values */
ast_value *const_vec[3];
/* pragma flags */
bool noref;
/* collected information */
2015-01-15 06:35:56 +00:00
size_t max_param_count;
2015-01-15 06:35:56 +00:00
fold_t *fold;
2015-01-15 23:11:41 +00:00
intrin m_intrin;
};
/* 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 *);
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 **);
2013-07-31 19:34:38 +00:00
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 *);
2013-07-31 19:34:38 +00:00
#endif