Lines Matching refs:live_in
59 /* live_out[s] = sum { p in succ[s] } ( live_in[p] ) */
66 blk->live_out[i] |= succ->live_in[i];
71 * we compute live_out from live_in. The intrablock pass is linear-time. It
89 /* To figure out progress, diff live_in */
92 progress |= (blk->live_in[i] != live[i]);
94 ralloc_free(blk->live_in);
95 blk->live_in = live;
103 * list to compute live_in from live_out for each block on the work list,
128 block->live_in = rzalloc_array(block, uint16_t, temp_count);
165 if (block->live_in)
166 ralloc_free(block->live_in);
171 block->live_in = NULL;