Lines Matching refs:temp_count
62 liveness_block_live_out(pan_block *blk, unsigned temp_count)
65 for (unsigned i = 0; i < temp_count; ++i)
76 pan_block *blk, unsigned temp_count,
81 liveness_block_live_out(blk, temp_count);
83 uint16_t *live = ralloc_array(blk, uint16_t, temp_count);
84 memcpy(live, blk->live_out, temp_count * sizeof(uint16_t));
87 callback(live, (void *) ins, temp_count);
91 for (unsigned i = 0; (i < temp_count) && !progress; ++i)
110 unsigned temp_count,
128 block->live_in = rzalloc_array(block, uint16_t, temp_count);
129 block->live_out = rzalloc_array(block, uint16_t, temp_count);
145 bool progress = liveness_block_update(blk, temp_count, callback);