mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-31 03:50:36 +00:00
store_param storetype, parameter value list added to ast_function
This commit is contained in:
parent
fec07921a4
commit
43897f6e8f
4 changed files with 23 additions and 2 deletions
8
ast.c
8
ast.c
|
@ -399,6 +399,7 @@ ast_function* ast_function_new(lex_ctx ctx, const char *name, ast_value *vtype)
|
||||||
self->vtype = vtype;
|
self->vtype = vtype;
|
||||||
self->name = name ? util_strdup(name) : NULL;
|
self->name = name ? util_strdup(name) : NULL;
|
||||||
MEM_VECTOR_INIT(self, blocks);
|
MEM_VECTOR_INIT(self, blocks);
|
||||||
|
MEM_VECTOR_INIT(self, params);
|
||||||
|
|
||||||
self->labelcount = 0;
|
self->labelcount = 0;
|
||||||
self->builtin = 0;
|
self->builtin = 0;
|
||||||
|
@ -416,6 +417,7 @@ ast_function* ast_function_new(lex_ctx ctx, const char *name, ast_value *vtype)
|
||||||
}
|
}
|
||||||
|
|
||||||
MEM_VEC_FUNCTIONS(ast_function, ast_block*, blocks)
|
MEM_VEC_FUNCTIONS(ast_function, ast_block*, blocks)
|
||||||
|
MEM_VEC_FUNCTIONS(ast_function, ast_value*, params)
|
||||||
|
|
||||||
void ast_function_delete(ast_function *self)
|
void ast_function_delete(ast_function *self)
|
||||||
{
|
{
|
||||||
|
@ -434,6 +436,12 @@ void ast_function_delete(ast_function *self)
|
||||||
for (i = 0; i < self->blocks_count; ++i)
|
for (i = 0; i < self->blocks_count; ++i)
|
||||||
ast_delete(self->blocks[i]);
|
ast_delete(self->blocks[i]);
|
||||||
MEM_VECTOR_CLEAR(self, blocks);
|
MEM_VECTOR_CLEAR(self, blocks);
|
||||||
|
/* ast_delete, not unref, there must only have been references
|
||||||
|
* to the parameter values inside the blocks deleted above.
|
||||||
|
*/
|
||||||
|
for (i = 0; i < self->params_count; ++i)
|
||||||
|
ast_delete(self->params[i]);
|
||||||
|
MEM_VECTOR_CLEAR(self, params);
|
||||||
mem_d(self);
|
mem_d(self);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
9
ast.h
9
ast.h
|
@ -360,6 +360,14 @@ struct ast_function_s
|
||||||
char labelbuf[64];
|
char labelbuf[64];
|
||||||
|
|
||||||
MEM_VECTOR_MAKE(ast_block*, blocks);
|
MEM_VECTOR_MAKE(ast_block*, blocks);
|
||||||
|
|
||||||
|
/* contrary to the params in ast_value, these are the parameter variables
|
||||||
|
* which are to be used in expressions.
|
||||||
|
* The ast_value for the function contains only the parameter types used
|
||||||
|
* to generate ast_calls, and ast_call contains the parameter values
|
||||||
|
* used in that call.
|
||||||
|
*/
|
||||||
|
MEM_VECTOR_MAKE(ast_value*, params);
|
||||||
};
|
};
|
||||||
ast_function* ast_function_new(lex_ctx ctx, const char *name, ast_value *vtype);
|
ast_function* ast_function_new(lex_ctx ctx, const char *name, ast_value *vtype);
|
||||||
/* This will NOT delete the underlying ast_value */
|
/* This will NOT delete the underlying ast_value */
|
||||||
|
@ -370,6 +378,7 @@ void ast_function_delete(ast_function*);
|
||||||
const char* ast_function_label(ast_function*, const char *prefix);
|
const char* ast_function_label(ast_function*, const char *prefix);
|
||||||
|
|
||||||
MEM_VECTOR_PROTO(ast_function, ast_block*, blocks);
|
MEM_VECTOR_PROTO(ast_function, ast_block*, blocks);
|
||||||
|
MEM_VECTOR_PROTO(ast_function, ast_value*, params);
|
||||||
|
|
||||||
bool ast_function_codegen(ast_function *self, ir_builder *builder);
|
bool ast_function_codegen(ast_function *self, ir_builder *builder);
|
||||||
|
|
||||||
|
|
1
gmqcc.h
1
gmqcc.h
|
@ -781,6 +781,7 @@ _MEM_VEC_FUN_FIND(Tself, Twhat, mem)
|
||||||
enum store_types {
|
enum store_types {
|
||||||
store_global,
|
store_global,
|
||||||
store_local, /* local, assignable for now, should get promoted later */
|
store_local, /* local, assignable for now, should get promoted later */
|
||||||
|
store_param, /* parameters, they are locals with a fixed position */
|
||||||
store_value, /* unassignable */
|
store_value, /* unassignable */
|
||||||
store_return /* unassignable, at OFS_RETURN */
|
store_return /* unassignable, at OFS_RETURN */
|
||||||
};
|
};
|
||||||
|
|
7
ir.c
7
ir.c
|
@ -1457,7 +1457,7 @@ static bool ir_block_naive_phi(ir_block *self)
|
||||||
if (v->writes[w]->_ops[0] == v)
|
if (v->writes[w]->_ops[0] == v)
|
||||||
v->writes[w]->_ops[0] = instr->_ops[0];
|
v->writes[w]->_ops[0] = instr->_ops[0];
|
||||||
|
|
||||||
if (old->store != store_value && old->store != store_local)
|
if (old->store != store_value && old->store != store_local && old->store != store_param)
|
||||||
{
|
{
|
||||||
/* If it originally wrote to a global we need to store the value
|
/* If it originally wrote to a global we need to store the value
|
||||||
* there as welli
|
* there as welli
|
||||||
|
@ -1837,8 +1837,11 @@ static bool ir_block_life_propagate(ir_block *self, ir_block *prev, bool *change
|
||||||
value = instr->_ops[o];
|
value = instr->_ops[o];
|
||||||
|
|
||||||
/* We only care about locals */
|
/* We only care about locals */
|
||||||
|
/* we also calculate parameter liferanges so that locals
|
||||||
|
* can take up parameter slots */
|
||||||
if (value->store != store_value &&
|
if (value->store != store_value &&
|
||||||
value->store != store_local)
|
value->store != store_local &&
|
||||||
|
value->store != store_param)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
/* read operands */
|
/* read operands */
|
||||||
|
|
Loading…
Reference in a new issue