Lines Matching defs:live
38 uint8_t *live = rzalloc_array(block, uint8_t, temp_count);
42 live[i] |= succ->live_in[i];
61 if (index < temp_count && !(live[index] & bi_writemask(ins, d)))
70 bi_liveness_ins_update(live, ins, temp_count);
74 block->live_in = live;
81 bi_postra_liveness_ins(uint64_t live, bi_instr *ins)
87 live &= ~(BITFIELD64_MASK(nr) << reg);
95 live |= (BITFIELD64_MASK(nr) << reg);
99 return live;
108 uint64_t live = blk->reg_live_out;
111 live = bi_postra_liveness_ins(live, ins);
113 bool progress = blk->reg_live_in != live;
114 blk->reg_live_in = live;
158 uint64_t live = block->reg_live_out;
174 if (!(live & mask) && cullable)
178 live = bi_postra_liveness_ins(live, ins);