Lines Matching refs:addrs
112 unsigned int *addrs) in bpf_jit_build_body() argument
121 unsigned int exit_addr = addrs[flen]; in bpf_jit_build_body()
131 addrs[i] = ctx->idx * 4; in bpf_jit_build_body()
174 PPC_BCC(COND_EQ, addrs[ctx->pc_ret0]); in bpf_jit_build_body()
351 PPC_BCC(COND_EQ, addrs[ctx->pc_ret0]); in bpf_jit_build_body()
460 PPC_JMP(addrs[i + 1 + K]); in bpf_jit_build_body()
483 PPC_JMP(addrs[i + 1 + filter[i].jt]); in bpf_jit_build_body()
526 addrs[i + 1 + filter[i].jf]); in bpf_jit_build_body()
528 PPC_BCC(true_cond, addrs[i + 1 + filter[i].jt]); in bpf_jit_build_body()
530 PPC_JMP(addrs[i + 1 + filter[i].jf]); in bpf_jit_build_body()
546 addrs[i] = ctx->idx * 4; in bpf_jit_build_body()
557 unsigned int *addrs; in bpf_jit_compile() local
565 addrs = kcalloc(flen + 1, sizeof(*addrs), GFP_KERNEL); in bpf_jit_compile()
566 if (addrs == NULL) in bpf_jit_compile()
623 if (bpf_jit_build_body(fp, 0, &cgctx, addrs)) in bpf_jit_compile()
648 bpf_jit_build_body(fp, code_base, &cgctx, addrs); in bpf_jit_compile()
674 kfree(addrs); in bpf_jit_compile()