Searched refs:fimage (Results 1 – 4 of 4) sorted by relevance
/linux-6.12.1/arch/powerpc/net/ |
D | bpf_jit_comp.c | 52 u8 *fimage; member 79 u8 *fimage = NULL; in bpf_int_jit_compile() local 115 fimage = jit_data->fimage; in bpf_int_jit_compile() 119 image = (void *)hdr + ((void *)fimage - (void *)fhdr); in bpf_int_jit_compile() 176 fhdr = bpf_jit_binary_pack_alloc(alloclen, &fimage, 4, &hdr, &image, in bpf_int_jit_compile() 184 fp->aux->extable = (void *)fimage + FUNCTION_DESCR_SIZE + proglen + fixup_len; in bpf_int_jit_compile() 188 fcode_base = (u32 *)(fimage + FUNCTION_DESCR_SIZE); in bpf_int_jit_compile() 223 fp->bpf_func = (void *)fimage; in bpf_int_jit_compile() 241 jit_data->fimage = fimage; in bpf_int_jit_compile() 257 int bpf_add_extable_entry(struct bpf_prog *fp, u32 *image, u32 *fimage, int pass, in bpf_add_extable_entry() argument [all …]
|
D | bpf_jit.h | 163 int bpf_jit_emit_func_call_rel(u32 *image, u32 *fimage, struct codegen_context *ctx, u64 func); 164 int bpf_jit_build_body(struct bpf_prog *fp, u32 *image, u32 *fimage, struct codegen_context *ctx, 171 int bpf_add_extable_entry(struct bpf_prog *fp, u32 *image, u32 *fimage, int pass,
|
D | bpf_jit_comp64.c | 206 bpf_jit_emit_func_call_hlp(u32 *image, u32 *fimage, struct codegen_context *ctx, u64 func) in bpf_jit_emit_func_call_hlp() argument 220 if (!IS_ALIGNED((unsigned long)fimage + CTX_NIA(ctx), 8)) in bpf_jit_emit_func_call_hlp() 226 unsigned long pc = (unsigned long)fimage + CTX_NIA(ctx); in bpf_jit_emit_func_call_hlp() 286 int bpf_jit_emit_func_call_rel(u32 *image, u32 *fimage, struct codegen_context *ctx, u64 func) in bpf_jit_emit_func_call_rel() argument 407 int bpf_jit_build_body(struct bpf_prog *fp, u32 *image, u32 *fimage, struct codegen_context *ctx, in bpf_jit_build_body() argument 1053 ret = bpf_add_extable_entry(fp, image, fimage, pass, ctx, in bpf_jit_build_body() 1106 ret = bpf_jit_emit_func_call_hlp(image, fimage, ctx, func_addr); in bpf_jit_build_body() 1108 ret = bpf_jit_emit_func_call_rel(image, fimage, ctx, func_addr); in bpf_jit_build_body()
|
D | bpf_jit_comp32.c | 204 int bpf_jit_emit_func_call_rel(u32 *image, u32 *fimage, struct codegen_context *ctx, u64 func) in bpf_jit_emit_func_call_rel() argument 206 s32 rel = (s32)func - (s32)(fimage + ctx->idx); in bpf_jit_emit_func_call_rel() 282 int bpf_jit_build_body(struct bpf_prog *fp, u32 *image, u32 *fimage, struct codegen_context *ctx, in bpf_jit_build_body() argument 1085 ret = bpf_add_extable_entry(fp, image, fimage, pass, ctx, insn_idx, in bpf_jit_build_body() 1141 ret = bpf_jit_emit_func_call_rel(image, fimage, ctx, func_addr); in bpf_jit_build_body()
|