Home
last modified time | relevance | path

Searched refs:EMIT (Results 1 – 4 of 4) sorted by relevance

/linux/arch/powerpc/net/
H A Dbpf_jit_comp64.c185 EMIT(PPC_RAW_LI(bpf_to_ppc(TMP_REG_1), 0)); in prepare_for_fsession_fentry()
188 EMIT(PPC_RAW_STD(bpf_to_ppc(TMP_REG_1), _R1, cookie_off + 8 * i)); in prepare_for_fsession_fentry()
189 EMIT(PPC_RAW_STD(bpf_to_ppc(TMP_REG_1), _R1, retval_off)); in prepare_for_fsession_fentry()
204 EMIT(PPC_RAW_STD(bpf_to_ppc(TMP_REG_1), _R1, func_meta_off)); in store_func_meta()
220 EMIT(PPC_RAW_LD(bpf_to_ppc(TMP_REG_1), _R13, in emit_fp_priv_stack()
222 EMIT(PPC_RAW_ADD(bpf_to_ppc(BPF_REG_FP), in emit_fp_priv_stack()
225 EMIT(PPC_RAW_ADDI(bpf_to_ppc(BPF_REG_FP), bpf_to_ppc(BPF_REG_FP), in emit_fp_priv_stack()
245 EMIT(PPC_RAW_NOP()); in bpf_jit_build_prologue()
249 EMIT(PPC_RAW_LD(_R2, _R13, offsetof(struct paca_struct, kernel_toc))); in bpf_jit_build_prologue()
262 EMIT(PPC_RAW_LI(bpf_to_ppc(TMP_REG_1), 0)); in bpf_jit_build_prologue()
[all …]
H A Dbpf_jit_comp.c64 EMIT(PPC_RAW_MFLR(_R0)); in bpf_jit_build_fentry_stubs()
65 EMIT(PPC_RAW_NOP()); in bpf_jit_build_fentry_stubs()
67 EMIT(PPC_RAW_MTLR(_R0)); in bpf_jit_build_fentry_stubs()
69 EMIT(PPC_RAW_BRANCH(4 - (long)ctx->idx * 4)); in bpf_jit_build_fentry_stubs()
86 EMIT(PPC_RAW_MFLR(_R11)); in bpf_jit_build_fentry_stubs()
87 EMIT(PPC_RAW_BCL4()); in bpf_jit_build_fentry_stubs()
88 EMIT(PPC_RAW_MFLR(_R12)); in bpf_jit_build_fentry_stubs()
89 EMIT(PPC_RAW_LL(_R12, _R12, -8-SZL)); in bpf_jit_build_fentry_stubs()
90 EMIT(PPC_RAW_MTCTR(_R12)); in bpf_jit_build_fentry_stubs()
91 EMIT(PPC_RAW_MTLR(_R11)); in bpf_jit_build_fentry_stubs()
[all …]
H A Dbpf_jit.h31 #define EMIT(instr) PLANT_INSTR(image, ctx->idx, instr) macro
41 EMIT(PPC_RAW_BRANCH(offset)); \
52 EMIT(PPC_INST_BRANCH_COND | (((cond) & 0x3ff) << 16) | (offset & 0xfffc)); \
59 EMIT(PPC_INST_BRANCH_COND | (((cond) & 0x3ff) << 16) | (offset & 0xfffc)); \
74 EMIT(PPC_RAW_LI(d, i)); \
76 EMIT(PPC_RAW_LIS(d, IMM_H(i))); \
78 EMIT(PPC_RAW_ORI(d, d, IMM_L(i))); \
94 EMIT(PPC_RAW_LI(d, ((uintptr_t)(i) >> 32) & \
97 EMIT(PPC_RAW_LIS(d, ((uintptr_t)(i) >> 48))); \
99 EMIT(PPC_RAW_ORI(d, d, \
[all …]
/linux/arch/x86/net/
H A Dbpf_jit_comp.c38 #define EMIT(bytes, len) \ macro
41 #define EMIT1(b1) EMIT(b1, 1)
42 #define EMIT2(b1, b2) EMIT((b1) + ((b2) << 8), 2)
43 #define EMIT3(b1, b2, b3) EMIT((b1) + ((b2) << 8) + ((b3) << 16), 3)
44 #define EMIT4(b1, b2, b3, b4) EMIT((b1) + ((b2) << 8) + ((b3) << 16) + ((b4) << 24), 4)
49 do { EMIT1(b1); EMIT(off, 4); } while (0)
51 do { EMIT2(b1, b2); EMIT(off, 4); } while (0)
53 do { EMIT3(b1, b2, b3); EMIT(off, 4); } while (0)
55 do { EMIT4(b1, b2, b3, b4); EMIT(off, 4); } while (0)
58 #define EMIT_ENDBR() EMIT(gen_endbr(), 4)
[all …]