Lines Matching refs:ins
101 midgard_instruction ins = {
120 ins.mask &= instr->dest.write_mask;
122 emit_mir_instruction(ctx, ins);
128 mir_foreach_instr_in_block_safe(block, ins) {
129 if (ins->type != TAG_TEXTURE_4) continue;
130 if (ins->op != midgard_tex_op_derivative) continue;
134 bool upper = ins->mask & 0b1100;
135 bool lower = ins->mask & 0b0011;
142 memcpy(&dup, ins, sizeof(dup));
146 ins->mask &= 0b0011;
157 mir_insert_instruction_before(ctx, mir_next_op(ins), dup);
163 mir_rewrite_index(ctx, ins->dest, new);