Searched refs:ssa_alloc (Results 1 - 25 of 43) sorted by relevance

12

/xsrc/external/mit/MesaLib/dist/src/compiler/nir/
H A Dnir_opt_cse.c46 _mesa_set_resize(instr_set, impl->ssa_alloc);
H A Dnir_liveness.c148 .bitset_words = BITSET_WORDS(impl->ssa_alloc),
247 const unsigned bitset_words = BITSET_WORDS(impl->ssa_alloc);
379 impl->ssa_alloc);
382 for (int i = 0; i < impl->ssa_alloc; i++)
387 BITSET_FOREACH_SET(index, block->live_in, impl->ssa_alloc) {
408 BITSET_FOREACH_SET(index, block->live_out, impl->ssa_alloc) {
H A Dnir_lower_int_to_float.c130 float_types = calloc(BITSET_WORDS(impl->ssa_alloc),
132 int_types = calloc(BITSET_WORDS(impl->ssa_alloc),
H A Dnir_validate.c292 validate_assert(state, def->index < state->impl->ssa_alloc);
1538 validate_assert(state, def->index < state->impl->ssa_alloc);
1553 validate_assert(state, src->ssa->index < state->impl->ssa_alloc);
1597 _mesa_set_resize(state->ssa_srcs, impl->ssa_alloc);
1624 BITSET_WORD, BITSET_WORDS(impl->ssa_alloc));
1625 memset(state->ssa_defs_found, 0, BITSET_WORDS(impl->ssa_alloc) *
1795 BITSET_WORDS(func->impl->ssa_alloc));
1796 memset(state.ssa_defs_found, 0, BITSET_WORDS(func->impl->ssa_alloc) *
H A Dnir_opt_dce.c223 BITSET_WORDS(impl->ssa_alloc));
H A Dnir_loop_analyze.c1323 impl->ssa_alloc);
1325 BITSET_WORDS(impl->ssa_alloc));
H A Dnir_lower_shader_calls.c325 const unsigned num_ssa_defs = impl->ssa_alloc;
987 struct brw_bitset remat = bitset_create(mem_ctx, impl->ssa_alloc);
H A Dnir.c461 impl->ssa_alloc = 0;
1009 def->index = impl->ssa_alloc++;
1623 def->index = impl->ssa_alloc++;
2045 impl->ssa_alloc = index;
H A Dnir_search.c916 if (!util_dynarray_resize(&states, uint16_t, impl->ssa_alloc)) {
/xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/
H A Dbi_opt_copy_prop.c51 bi_index *replacement = calloc(sizeof(bi_index), ((ctx->ssa_alloc + 1) << 2));
H A Dbi_opt_cse.c157 bi_index *replacement = calloc(sizeof(bi_index), ((ctx->ssa_alloc + 1) << 2));
H A Dbi_opt_mod_props.c158 bi_instr **lut = calloc(sizeof(bi_instr *), ((ctx->ssa_alloc + 1) << 2));
266 unsigned count = ((ctx->ssa_alloc + 1) << 2);
H A Dcompiler.h630 unsigned ssa_alloc; member in struct:__anon9a2e09911508
689 return (MAX2(ctx->reg_alloc, ctx->ssa_alloc) + 2) << 1;
695 return bi_get_index(ctx->ssa_alloc++, false, 0);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/
H A Detnaviv_compiler_nir.h87 return src->is_ssa ? src->ssa->index : (src->reg.reg->index + impl->ssa_alloc);
94 return dest->is_ssa ? dest->ssa.index : (dest->reg.reg->index + impl->ssa_alloc);
H A Detnaviv_compiler_nir_ra.c135 unsigned max_nodes = impl->ssa_alloc + impl->reg_alloc;
/xsrc/external/mit/MesaLib.old/src/intel/
H A Dbrw_nir_trig_workarounds.c224 uint16_t *states = calloc(impl->ssa_alloc, sizeof(*states));
/xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
H A Dnir_opt_find_array_copies.c371 impl->ssa_alloc = num_ssa_defs;
H A Dnir_validate.c278 validate_assert(state, def->index < state->impl->ssa_alloc);
1149 BITSET_WORDS(impl->ssa_alloc) *
1151 memset(state->ssa_defs_found, 0, BITSET_WORDS(impl->ssa_alloc) *
H A Dnir.c285 impl->ssa_alloc = 0;
790 def->index = impl->ssa_alloc++;
1486 def->index = impl->ssa_alloc++;
1801 impl->ssa_alloc = index;
H A Dnir_loop_analyze.c1178 impl->ssa_alloc);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/lima/ir/gp/
H A Dnir.c365 gpir_compiler *comp = gpir_compiler_create(prog, func->reg_alloc, func->ssa_alloc);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/lima/ir/pp/
H A Dnir.c457 ppir_compiler *comp = ppir_compiler_create(prog, func->reg_alloc, func->ssa_alloc);
/xsrc/external/mit/MesaLib/dist/src/panfrost/midgard/
H A Dcompiler.h450 return (ctx->func->impl->ssa_alloc + ctx->temp_alloc++) << 1;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/lima/ir/gp/
H A Dnir.c454 gpir_compiler *comp = gpir_compiler_create(prog, func->reg_alloc, func->ssa_alloc);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/panfrost/midgard/
H A Dmidgard_compile.c1076 return ctx->func->impl->ssa_alloc + src->reg.reg->index;
1087 return ctx->func->impl->ssa_alloc + dst->reg.reg->index;
3290 if (to >= ctx->func->impl->ssa_alloc) continue;
3291 if (from >= ctx->func->impl->ssa_alloc) continue;
3334 if (from >= ctx->func->impl->ssa_alloc) continue;

Completed in 36 milliseconds

12