Searched refs:reg_alloc (Results 1 – 8 of 8) sorted by relevance
/external/mesa3d/src/compiler/nir/ |
D | nir_opt_global_to_local.c | 86 reg->index = impl->reg_alloc++; in global_to_local()
|
D | nir_validate.c | 858 validate_assert(state, reg->index < state->shader->reg_alloc); in prevalidate_reg_decl() 860 validate_assert(state, reg->index < state->impl->reg_alloc); in prevalidate_reg_decl() 1049 BITSET_WORDS(impl->reg_alloc) * in validate_function_impl() 1051 memset(state->regs_found, 0, BITSET_WORDS(impl->reg_alloc) * in validate_function_impl() 1183 BITSET_WORDS(shader->reg_alloc) * in nir_validate_shader() 1185 memset(state.regs_found, 0, BITSET_WORDS(shader->reg_alloc) * in nir_validate_shader()
|
D | nir_clone.c | 672 nfi->reg_alloc = fi->reg_alloc; in clone_function_impl() 766 ns->reg_alloc = s->reg_alloc; in nir_shader_clone()
|
D | nir.c | 53 shader->reg_alloc = 0; in nir_shader_create() 89 reg->index = shader->reg_alloc++; in nir_global_reg_create() 99 reg->index = impl->reg_alloc++; in nir_local_reg_create() 285 impl->reg_alloc = 0; in nir_function_impl_create_bare() 1076 impl->reg_alloc = index; in nir_index_local_regs() 1086 shader->reg_alloc = index; in nir_index_global_regs()
|
D | nir_lower_regs_to_ssa.c | 225 state.values = malloc(impl->reg_alloc * sizeof(*state.values)); in nir_lower_regs_to_ssa_impl()
|
D | nir.h | 1614 unsigned reg_alloc; member 1855 unsigned reg_alloc; member
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_vec4_nir.cpp | 135 nir_locals = ralloc_array(mem_ctx, dst_reg, impl->reg_alloc); in nir_emit_impl() 136 for (unsigned i = 0; i < impl->reg_alloc; i++) { in nir_emit_impl()
|
D | brw_fs_nir.cpp | 249 nir_locals = ralloc_array(mem_ctx, fs_reg, impl->reg_alloc); in nir_emit_impl() 250 for (unsigned i = 0; i < impl->reg_alloc; i++) { in nir_emit_impl()
|