quakeforge/tools/qfcc/include/expr.h

182 lines
4.2 KiB
C
Raw Normal View History

2001-12-08 20:40:50 +00:00
/*
#FILENAME#
#DESCRIPTION#
Copyright (C) 2001 #AUTHOR#
Author: #AUTHOR#
Date: #DATE#
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to:
Free Software Foundation, Inc.
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA
$Id$
*/
#ifndef __expr_h
#define __expr_h
typedef enum {
ex_error,
ex_label,
ex_block,
ex_expr, // binary expression
ex_uexpr, // unary expression
ex_def,
ex_temp, // temporary variable
ex_nil, // umm, nil, null. nuff said
ex_name,
ex_string,
ex_float,
ex_vector,
ex_entity,
ex_field,
ex_func,
ex_pointer,
ex_quaternion,
ex_integer,
ex_uinteger,
ex_short,
} expr_type;
2002-06-07 17:29:30 +00:00
typedef struct ex_label_s {
struct ex_label_s *next;
struct reloc_s *refs;
int ofs;
const char *name;
2002-05-11 03:37:36 +00:00
} ex_label_t;
typedef struct {
struct expr_s *head;
struct expr_s **tail;
struct expr_s *result;
int is_call;
2002-05-11 03:37:36 +00:00
} ex_block_t;
typedef struct {
struct expr_s *expr;
2002-06-04 18:44:03 +00:00
struct def_s *def;
struct type_s *type;
int users;
2002-05-11 03:37:36 +00:00
} ex_temp_t;
typedef struct {
int val;
2002-06-04 18:44:03 +00:00
struct type_s *type;
int abs;
struct def_s *def;
2002-05-11 03:37:36 +00:00
} ex_pointer_t;
typedef struct expr_s {
struct expr_s *next;
expr_type type;
int line;
string_t file;
unsigned paren:1;
unsigned rvalue:1;
union {
2002-05-11 03:37:36 +00:00
ex_label_t label;
ex_block_t block;
struct {
int op;
2002-06-04 18:44:03 +00:00
struct type_s *type;
struct expr_s *e1;
struct expr_s *e2;
} expr;
2002-06-04 18:44:03 +00:00
struct def_s *def;
2002-05-11 03:37:36 +00:00
ex_temp_t temp;
const char *string_val;
float float_val;
float vector_val[3];
int entity_val;
int field_val;
int func_val;
2002-05-11 03:37:36 +00:00
ex_pointer_t pointer;
float quaternion_val[4];
Initial integer type support. qfcc /is/ partially broken when it comes to integer constants and float function args/return values. pr_comp.h: o add the integer opcodes to pr_opcode_e pr_edict.c: o add "quaternion" and "integer" to type_name[] o support quatnernion and integers types when printing values o support the integer opcodes when bounds checking pr_exec.c o enable the integer opcodes pr_opcode: o add the integer opcodes to the opcode table o logical operators all result in an integer rather than a value expr.h: o rename int_val to integer_val qfcc.h: o kill another magic number expr.c: o move the opcode to string conversion out of type_mismatch and into get_op_string o rename int_val to integer_val o general integer type support. o generate an internal comipiler error for null opcodes rather than segging. pr_imm.c: o rename int_val to integer_val o support integer constants, converting to float when needed. pr_lex.c: o magic number death and support quaternions and integers in type_size[] qc-lex.l o rename int_val to integer_val o support quaternion and integer type keywords qc-parse.y: o rename int_val to integer_val o use binary_expr instead of new_binary_expr for local initialized variables builtins.c: o rename int_val to integer_val o fix most (all?) of the INT related FIXMEs defs.qc: o use integer instead of float where it makes sense main.c: o read_result is now integer rather than float main.qc: o float -> integer where appropriate o new test for int const to float arg
2001-07-23 01:31:22 +00:00
int integer_val;
unsigned int uinteger_val;
short short_val;
} e;
} expr_t;
extern etype_t qc_types[];
extern struct type_s *types[];
extern expr_type expr_types[];
extern expr_t *local_expr;
2002-06-04 18:44:03 +00:00
struct type_s *get_type (expr_t *e);
etype_t extract_type (expr_t *e);
expr_t *new_expr (void);
const char *new_label_name (void);
2001-06-26 02:46:02 +00:00
expr_t *new_label_expr (void);
expr_t *new_block_expr (void);
2001-06-26 02:46:02 +00:00
expr_t *new_binary_expr (int op, expr_t *e1, expr_t *e2);
expr_t *new_unary_expr (int op, expr_t *e1);
2002-06-04 18:44:03 +00:00
expr_t *new_temp_def_expr (struct type_s *type);
expr_t *new_bind_expr (expr_t *e1, expr_t *e2);
2002-01-21 19:03:29 +00:00
expr_t *new_name_expr (const char *name);
2002-06-04 18:44:03 +00:00
expr_t *new_def_expr (struct def_s *def);
expr_t *new_self_expr (void);
expr_t *new_this_expr (void);
void inc_users (expr_t *e);
void convert_name (expr_t *e);
expr_t *append_expr (expr_t *block, expr_t *e);
void print_expr (expr_t *e);
void convert_int (expr_t *e);
expr_t *test_expr (expr_t *e, int test);
expr_t *binary_expr (int op, expr_t *e1, expr_t *e2);
expr_t *asx_expr (int op, expr_t *e1, expr_t *e2);
expr_t *unary_expr (int op, expr_t *e);
expr_t *function_expr (expr_t *e1, expr_t *e2);
2002-06-04 18:44:03 +00:00
struct function_s;
expr_t *return_expr (struct function_s *f, expr_t *e);
expr_t *conditional_expr (expr_t *cond, expr_t *e1, expr_t *e2);
expr_t *incop_expr (int op, expr_t *e, int postop);
expr_t *array_expr (expr_t *array, expr_t *index);
2002-06-04 18:44:03 +00:00
expr_t *address_expr (expr_t *e1, expr_t *e2, struct type_s *t);
expr_t *assign_expr (expr_t *e1, expr_t *e2);
2002-06-04 18:44:03 +00:00
expr_t *cast_expr (struct type_s *t, expr_t *e);
2002-06-04 18:44:03 +00:00
void init_elements (struct def_s *def, expr_t *eles);
2002-01-18 08:26:37 +00:00
expr_t *error (expr_t *e, const char *fmt, ...) __attribute__((format(printf, 2,3)));
void warning (expr_t *e, const char *fmt, ...) __attribute__((format(printf, 2,3)));
void notice (expr_t *e, const char *fmt, ...) __attribute__((format(printf, 2,3)));
const char *get_op_string (int op);
extern int lineno_base;
2001-12-08 20:40:50 +00:00
2002-05-08 23:12:49 +00:00
struct keywordarg_s;
expr_t *selector_expr (struct keywordarg_s *selector);
expr_t *protocol_expr (const char *protocol);
2002-06-04 18:44:03 +00:00
expr_t *encode_expr (struct type_s *type);
2002-05-08 23:12:49 +00:00
expr_t *message_expr (expr_t *receiver, struct keywordarg_s *message);
2001-12-08 20:40:50 +00:00
#endif//__expr_h