emit_alu_r
emit_alu_r(rd[1], rs[1], true, false, op, ctx);
emit_alu_r(rd[0], rs[0], true, true, op, ctx);
emit_alu_r(rd[1], rs, true, false, op, ctx);
void emit_alu_r(struct jit_context *ctx, u8 dst, u8 src, u8 op);
emit_alu_r(ctx, lo(dst), MIPS_R_T6, BPF_OP(code));
emit_alu_r(ctx, lo(dst), lo(src), BPF_OP(code));
emit_alu_r(ctx, dst, src, op);
emit_alu_r(ctx, dst, MIPS_R_T4, BPF_OP(code));
emit_alu_r(ctx, dst, MIPS_R_T4, BPF_OP(code));
emit_alu_r(ctx, dst, src, BPF_OP(code));
emit_alu_r(ctx, dst, MIPS_R_T4, BPF_OP(code));