Lines Matching refs:live
37 uint8_t *live;
39 /* Size of the live set */
221 * instruction. Equivalently, calculate the difference in the number of live
222 * registers before and after the instruction, given the live set after the
229 calculate_pressure_delta(bi_instr *I, uint8_t *live, unsigned max)
237 if (node < max && live[node])
256 if (!dupe && !live[node])
274 int32_t delta = calculate_pressure_delta(n->instr, s->live, s->max);
293 memcpy(s->live, block->live_out, s->max);
296 pressure += calculate_pressure_delta(I, s->live, s->max);
298 bi_liveness_ins_update(s->live, I, s->max);
302 memcpy(s->live, block->live_out, s->max);
313 pressure += calculate_pressure_delta(node->instr, s->live, s->max);
318 bi_liveness_ins_update(s->live, node->instr, s->max);
342 uint8_t *live = ralloc_array(memctx, uint8_t, temp_count);
348 .live = live