Lines Matching refs:off
48 #define EMIT1_off32(b1, off) \ argument
49 do {EMIT1(b1); EMIT(off, 4); } while (0)
50 #define EMIT2_off32(b1, b2, off) \ argument
51 do {EMIT2(b1, b2); EMIT(off, 4); } while (0)
52 #define EMIT3_off32(b1, b2, b3, off) \ argument
53 do {EMIT3(b1, b2, b3); EMIT(off, 4); } while (0)
54 #define EMIT4_off32(b1, b2, b3, b4, off) \ argument
55 do {EMIT4(b1, b2, b3, b4); EMIT(off, 4); } while (0)
466 insn[1].dst_reg != 0 || insn[1].off != 0) { in do_jit()
723 st: if (is_imm8(insn->off)) in do_jit()
724 EMIT2(add_1reg(0x40, dst_reg), insn->off); in do_jit()
726 EMIT1_off32(add_1reg(0x80, dst_reg), insn->off); in do_jit()
755 stx: if (is_imm8(insn->off)) in do_jit()
756 EMIT2(add_2reg(0x40, dst_reg, src_reg), insn->off); in do_jit()
759 insn->off); in do_jit()
785 if (is_imm8(insn->off)) in do_jit()
786 EMIT2(add_2reg(0x40, src_reg, dst_reg), insn->off); in do_jit()
789 insn->off); in do_jit()
802 xadd: if (is_imm8(insn->off)) in do_jit()
803 EMIT2(add_2reg(0x40, dst_reg, src_reg), insn->off); in do_jit()
806 insn->off); in do_jit()
914 jmp_offset = addrs[i + insn->off] - addrs[i]; in do_jit()
927 jmp_offset = addrs[i + insn->off] - addrs[i]; in do_jit()