Lines Matching refs:temp_count
58 liveness_block_update(bi_block *blk, unsigned temp_count)
64 for (unsigned i = 0; i < temp_count; ++i)
68 uint8_t *live = ralloc_array(blk, uint8_t, temp_count);
69 memcpy(live, blk->live_out, temp_count);
72 bi_liveness_ins_update(live, ins, temp_count);
76 for (unsigned i = 0; (i < temp_count) && !progress; ++i)
94 unsigned temp_count = bi_max_temp(ctx);
106 block->live_in = rzalloc_array(block, uint8_t, temp_count);
107 block->live_out = rzalloc_array(block, uint8_t, temp_count);
119 if (liveness_block_update(blk, temp_count)) {