Home
last modified time | relevance | path

Searched refs:cur_reg (Results 1 – 5 of 5) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/
Dregalloc.c176 BITSET_FOREACH_SET(live_reg, ctx->live, ctx->comp->cur_reg) { in add_all_interferences()
189 BITSET_FOREACH_SET(live_idx, live_reg, ctx->comp->cur_reg) { in print_liveness()
270 for (int i = 0; i < ctx->comp->cur_reg; i++) { in do_regalloc()
283 if (ctx->stack_size < ctx->comp->cur_reg) { in do_regalloc()
291 for (int reg = 0; reg < ctx->comp->cur_reg; reg++) { in do_regalloc()
309 for (int i = ctx->comp->cur_reg - 1; i >= 0; i--) { in do_regalloc()
367 BITSET_FOREACH_SET(reg_idx, block->live_out, ctx->comp->cur_reg) { in assign_regs()
405 unsigned cur_reg = (reg_base + reg_offset) % (GPIR_PHYSICAL_REG_NUM + GPIR_VALUE_REG_NUM); in find_free_value_reg() local
406 if (!ctx->live[cur_reg]) { in find_free_value_reg()
407 reg = cur_reg; in find_free_value_reg()
[all …]
Doptimize.c181 BITSET_WORD *regs = rzalloc_array(comp, BITSET_WORD, comp->cur_reg); in dead_code_eliminate()
Dreduce_scheduler.c213 gpir_node **last_written = calloc(comp->cur_reg, sizeof(gpir_node *)); in add_false_dependencies()
Dgpir.h414 int cur_reg; member
Dnir.c36 reg->index = comp->cur_reg++; in gpir_create_reg()