Lines Matching defs:is64
687 static void emit_mov_reg(u8 **pprog, bool is64, u32 dst_reg, u32 src_reg)
691 if (is64) {
704 static void emit_movsx_reg(u8 **pprog, int num_bits, bool is64, u32 dst_reg,
709 if (is64) {
759 static void maybe_emit_mod(u8 **pprog, u32 dst_reg, u32 src_reg, bool is64)
763 if (is64)
773 static void maybe_emit_1mod(u8 **pprog, u32 reg, bool is64)
777 if (is64)
1008 static void emit_shiftx(u8 **pprog, u32 dst_reg, u8 src_reg, bool is64, u8 op)
1014 emit_3vex(&prog, r, false, r, m, is64, src_reg, false, op);
1177 bool is64 = BPF_CLASS(insn->code) == BPF_ALU64;
1199 emit_mov_reg(&prog, is64, BPF_REG_0, dst_reg);
1209 maybe_emit_1mod(&prog, src_reg, is64);
1218 maybe_emit_1mod(&prog, src_reg, is64);
1225 emit_mov_reg(&prog, is64, dst_reg, BPF_REG_3);
1229 emit_mov_reg(&prog, is64, dst_reg, BPF_REG_0);
1570 bool is64 = BPF_SIZE(insn->code) == BPF_DW;
1595 emit_mov_reg(&prog, is64, AUX_REG, BPF_REG_0);
1596 maybe_emit_mod(&prog, AUX_REG, real_src_reg, is64);
1612 emit_mov_reg(&prog, is64, real_src_reg, BPF_REG_0);