Lines Matching refs:live_in
61 block->live_in = reralloc(block, block->live_in, BITSET_WORD,
63 memset(block->live_in, 0, state->bitset_words * sizeof(BITSET_WORD));
101 * block act "in parallel". When we propagate from the live_in of one
112 memcpy(live, succ->live_in, state->bitset_words * sizeof *live);
159 /* Allocate live_in and live_out sets and add all of the blocks to the
180 memcpy(block->live_in, block->live_out,
185 set_src_live(&following_if->condition, block->live_in);
195 nir_foreach_ssa_def(instr, set_ssa_def_dead, block->live_in);
196 nir_foreach_src(instr, set_src_live, block->live_in);
217 * Note: The bitset returned may be the live_in or live_out from the block in
230 return cursor.block->live_in;
237 return cursor.instr->block->live_in;
314 if (BITSET_TEST(instr->block->live_in, def->index) ||