Lines Matching defs:blk
85 agx_block *blk = agx_worklist_pop_head(&worklist);
88 memcpy(blk->live_in, blk->live_out, words * sizeof(BITSET_WORD));
90 agx_foreach_instr_in_block_rev(blk, I) {
98 agx_liveness_ins_update(blk->live_in, I);
101 /* Propagate the live in of the successor (blk) to the live out of
108 agx_foreach_predecessor(blk, pred) {
109 BITSET_WORD *live = ralloc_array(blk, BITSET_WORD, words);
110 memcpy(live, blk->live_in, words * sizeof(BITSET_WORD));
113 agx_foreach_instr_in_block(blk, I) {
121 agx_foreach_instr_in_block(blk, I) {
124 agx_index operand = I->src[agx_predecessor_index(blk, *pred)];