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()
482 PPC_JMP(addrs[i + 1 + filter[i].jt]); in bpf_jit_build_body()
525 addrs[i + 1 + filter[i].jf]); in bpf_jit_build_body()
527 PPC_BCC(true_cond, addrs[i + 1 + filter[i].jt]); in bpf_jit_build_body()
529 PPC_JMP(addrs[i + 1 + filter[i].jf]); in bpf_jit_build_body()
545 addrs[i] = ctx->idx * 4; in bpf_jit_build_body()
556 unsigned int *addrs; in bpf_jit_compile() local
564 addrs = kcalloc(flen + 1, sizeof(*addrs), GFP_KERNEL); in bpf_jit_compile()
565 if (addrs == NULL) in bpf_jit_compile()
622 if (bpf_jit_build_body(fp, 0, &cgctx, addrs)) in bpf_jit_compile()
647 bpf_jit_build_body(fp, code_base, &cgctx, addrs); in bpf_jit_compile()
673 kfree(addrs); in bpf_jit_compile()