Lines Matching defs:live
2030 /* bpf_reg_state->live marks for registers in a state @st are incomplete,
5186 /* Copy src state preserving dst->parent and dst->live fields */
18410 * spill/fill for every live r0-r5;
22206 /* First live insn doesn't match first live linfo, it needs to "inherit"
22208 * means no live instructions after (tail of the program was removed).
23084 * live anymore. We can just unlink its descriptor table as it's
25676 /* Compute may-live registers after each instruction in the program.
25677 * The register is live after the instruction I if it is read by some
25725 struct insn_live_regs *live = &state[insn_idx];
25733 new_in = (new_out & ~live->def) | live->use;
25734 if (new_out != live->out || new_in != live->in) {
25735 live->in = new_in;
25736 live->out = new_out;