mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-04-05 01:11:00 +00:00
globals of type .vector will now properly generate 3 globals
This commit is contained in:
parent
52daf02444
commit
a27750966f
3 changed files with 19 additions and 2 deletions
2
ast.c
2
ast.c
|
@ -912,6 +912,8 @@ bool ast_global_codegen(ast_value *self, ir_builder *ir, bool isfield)
|
|||
asterror(ast_ctx(self), "ir_builder_create_global failed");
|
||||
return false;
|
||||
}
|
||||
if (self->expression.vtype == TYPE_FIELD)
|
||||
v->fieldtype = self->expression.next->expression.vtype;
|
||||
v->context = ast_ctx(self);
|
||||
|
||||
if (self->isconst) {
|
||||
|
|
1
gmqcc.h
1
gmqcc.h
|
@ -298,6 +298,7 @@ extern const char *type_name[TYPE_COUNT];
|
|||
|
||||
extern size_t type_sizeof[TYPE_COUNT];
|
||||
extern uint16_t type_store_instr[TYPE_COUNT];
|
||||
extern uint16_t field_store_instr[TYPE_COUNT];
|
||||
/* could use type_store_instr + INSTR_STOREP_F - INSTR_STORE_F
|
||||
* but this breaks when TYPE_INTEGER is added, since with the enhanced
|
||||
* instruction set, the old ones are left untouched, thus the _I instructions
|
||||
|
|
18
parser.c
18
parser.c
|
@ -747,7 +747,14 @@ static bool parser_sy_pop(parser_t *parser, shunt *sy)
|
|||
case opid1('='):
|
||||
if (ast_istype(exprs[0], ast_entfield)) {
|
||||
ast_expression *field = ((ast_entfield*)exprs[0])->field;
|
||||
assignop = type_storep_instr[exprs[0]->expression.vtype];
|
||||
if (OPTS_FLAG(ADJUST_VECTOR_FIELDS) &&
|
||||
exprs[0]->expression.vtype == TYPE_FIELD &&
|
||||
exprs[0]->expression.next->expression.vtype == TYPE_VECTOR)
|
||||
{
|
||||
assignop = type_storep_instr[TYPE_VECTOR];
|
||||
}
|
||||
else
|
||||
assignop = type_storep_instr[exprs[0]->expression.vtype];
|
||||
if (!ast_compare_type(field->expression.next, exprs[1])) {
|
||||
char ty1[1024];
|
||||
char ty2[1024];
|
||||
|
@ -769,7 +776,14 @@ static bool parser_sy_pop(parser_t *parser, shunt *sy)
|
|||
}
|
||||
else
|
||||
{
|
||||
assignop = type_store_instr[exprs[0]->expression.vtype];
|
||||
if (OPTS_FLAG(ADJUST_VECTOR_FIELDS) &&
|
||||
exprs[0]->expression.vtype == TYPE_FIELD &&
|
||||
exprs[0]->expression.next->expression.vtype == TYPE_VECTOR)
|
||||
{
|
||||
assignop = type_store_instr[TYPE_VECTOR];
|
||||
}
|
||||
else
|
||||
assignop = type_store_instr[exprs[0]->expression.vtype];
|
||||
if (!ast_compare_type(exprs[0], exprs[1])) {
|
||||
char ty1[1024];
|
||||
char ty2[1024];
|
||||
|
|
Loading…
Reference in a new issue