Lines Matching refs:is64
687 static void emit_mov_reg(u8 **pprog, bool is64, u32 dst_reg, u32 src_reg) in emit_mov_reg() argument
691 if (is64) { in emit_mov_reg()
727 static void maybe_emit_mod(u8 **pprog, u32 dst_reg, u32 src_reg, bool is64) in maybe_emit_mod() argument
731 if (is64) in maybe_emit_mod()
741 static void maybe_emit_1mod(u8 **pprog, u32 reg, bool is64) in maybe_emit_1mod() argument
745 if (is64) in maybe_emit_1mod()
953 static void emit_shiftx(u8 **pprog, u32 dst_reg, u8 src_reg, bool is64, u8 op) in emit_shiftx() argument
959 emit_3vex(&prog, r, false, r, m, is64, src_reg, false, op); in emit_shiftx()
1113 bool is64 = BPF_CLASS(insn->code) == BPF_ALU64; in do_jit() local
1135 emit_mov_reg(&prog, is64, BPF_REG_0, dst_reg); in do_jit()
1144 maybe_emit_1mod(&prog, src_reg, is64); in do_jit()
1150 emit_mov_reg(&prog, is64, dst_reg, BPF_REG_3); in do_jit()
1154 emit_mov_reg(&prog, is64, dst_reg, BPF_REG_0); in do_jit()
1481 bool is64 = BPF_SIZE(insn->code) == BPF_DW; in do_jit() local
1506 emit_mov_reg(&prog, is64, AUX_REG, BPF_REG_0); in do_jit()
1507 maybe_emit_mod(&prog, AUX_REG, real_src_reg, is64); in do_jit()
1523 emit_mov_reg(&prog, is64, real_src_reg, BPF_REG_0); in do_jit()