Lines Matching refs:off
46 #define EMIT1_off32(b1, off) \ argument
47 do {EMIT1(b1); EMIT(off, 4); } while (0)
48 #define EMIT2_off32(b1, b2, off) \ argument
49 do {EMIT2(b1, b2); EMIT(off, 4); } while (0)
50 #define EMIT3_off32(b1, b2, b3, off) \ argument
51 do {EMIT3(b1, b2, b3); EMIT(off, 4); } while (0)
52 #define EMIT4_off32(b1, b2, b3, b4, off) \ argument
53 do {EMIT4(b1, b2, b3, b4); EMIT(off, 4); } while (0)
375 insn[1].dst_reg != 0 || insn[1].off != 0) { in do_jit()
632 st: if (is_imm8(insn->off)) in do_jit()
633 EMIT2(add_1reg(0x40, dst_reg), insn->off); in do_jit()
635 EMIT1_off32(add_1reg(0x80, dst_reg), insn->off); in do_jit()
664 stx: if (is_imm8(insn->off)) in do_jit()
665 EMIT2(add_2reg(0x40, dst_reg, src_reg), insn->off); in do_jit()
668 insn->off); in do_jit()
694 if (is_imm8(insn->off)) in do_jit()
695 EMIT2(add_2reg(0x40, src_reg, dst_reg), insn->off); in do_jit()
698 insn->off); in do_jit()
711 xadd: if (is_imm8(insn->off)) in do_jit()
712 EMIT2(add_2reg(0x40, dst_reg, src_reg), insn->off); in do_jit()
715 insn->off); in do_jit()
808 jmp_offset = addrs[i + insn->off] - addrs[i]; in do_jit()
821 jmp_offset = addrs[i + insn->off] - addrs[i]; in do_jit()