Lines Matching defs:live
1159 * So the effect is over-reporting stack liveness — marking slots as live that aren't
2199 /* Compute may-live registers after each instruction in the program.
2200 * The register is live after the instruction I if it is read by some
2253 struct insn_live_regs *live = &state[insn_idx];
2261 new_in = (new_out & ~live->def) | live->use;
2262 if (new_out != live->out || new_in != live->in) {
2263 live->in = new_in;
2264 live->out = new_out;