c++: ir_function::m_params

This commit is contained in:
Wolfgang Bumiller 2016-12-03 21:42:15 +01:00
parent 4bf63bb379
commit 2dde6d903e
3 changed files with 13 additions and 13 deletions

View file

@ -1510,9 +1510,9 @@ bool ast_function::generateFunction(ir_builder *ir)
/* fill the parameter list */
for (auto &it : m_function_type->m_type_params) {
if (it->m_vtype == TYPE_FIELD)
vec_push(irf->m_params, it->m_next->m_vtype);
irf->m_params.push_back(it->m_next->m_vtype);
else
vec_push(irf->m_params, it->m_vtype);
irf->m_params.push_back(it->m_vtype);
if (!m_builtin) {
if (!it->generateLocal(m_ir_func, true))
return false;

12
ir.cpp
View file

@ -1885,7 +1885,7 @@ static bool ir_function_allocator_assign(ir_function *self, function_allocator *
/* never resize parameters
* will be required later when overlapping temps + locals
*/
if (a < vec_size(self->m_params) &&
if (a < self->m_params.size() &&
alloc->sizes[a] < v->size())
{
continue;
@ -1929,7 +1929,7 @@ bool ir_function_allocate_locals(ir_function *self)
v->m_locked = true;
v->m_unique_life = true;
}
else if (i >= vec_size(self->m_params))
else if (i >= self->m_params.size())
break;
else
v->m_locked = true; /* lock parameters locals */
@ -2314,7 +2314,7 @@ static bool ir_block_life_propagate(ir_block *self, bool *changed)
bool ir_function_calculate_liferanges(ir_function *self)
{
/* parameters live at 0 */
for (size_t i = 0; i < vec_size(self->m_params); ++i)
for (size_t i = 0; i < self->m_params.size(); ++i)
if (!self->m_locals[i].get()->setAlive(0))
compile_error(self->m_context, "internal error: failed value-life merging");
@ -3002,7 +3002,7 @@ bool ir_builder::generateGlobalFunction(ir_value *global)
fun.name = global->m_code.name;
fun.file = filestring(global->m_context.file);
fun.profile = 0; /* always 0 */
fun.nargs = vec_size(irfun->m_params);
fun.nargs = irfun->m_params.size();
if (fun.nargs > 8)
fun.nargs = 8;
@ -3067,7 +3067,7 @@ static bool gen_function_extparam_copy(code_t *code, ir_function *self)
{
ir_builder *ir = self->m_owner;
size_t numparams = vec_size(self->m_params);
size_t numparams = self->m_params.size();
if (!numparams)
return true;
@ -3103,7 +3103,7 @@ static bool gen_function_varargs_copy(code_t *code, ir_function *self)
ir_value *ep;
prog_section_statement_t stmt;
numparams = vec_size(self->m_params);
numparams = self->m_params.size();
if (!numparams)
return true;

10
ir.h
View file

@ -201,11 +201,11 @@ struct ir_function {
ir_builder *m_owner;
std::string m_name;
qc_type m_outtype;
int *m_params = nullptr;
ir_flag_t m_flags = 0;
int m_builtin = 0;
std::string m_name;
qc_type m_outtype;
std::vector<int> m_params;
ir_flag_t m_flags = 0;
int m_builtin = 0;
std::vector<std::unique_ptr<ir_block>> m_blocks;