Lines Matching refs:live
37 agx_liveness_ins_update(BITSET_WORD *live, agx_instr *I)
41 BITSET_CLEAR(live, I->dest[d].value);
46 /* If the source is not live after this instruction, but becomes live
48 I->src[s].kill = !BITSET_TEST(live, I->src[s].value);
49 BITSET_SET(live, I->src[s].value);
66 BITSET_WORD *live = ralloc_array(blk, BITSET_WORD, words);
67 memcpy(live, blk->live_out, words * sizeof(BITSET_WORD));
70 agx_liveness_ins_update(live, I);
74 progress |= (blk->live_in[i] != live[i]);
77 blk->live_in = live;