Searched refs:jit (Results 1 – 11 of 11) sorted by relevance
| /f-stack/dpdk/lib/librte_bpf/ |
| H A D | bpf.c | 21 if (bpf->jit.func != NULL) in rte_bpf_destroy() 22 munmap(bpf->jit.func, bpf->jit.sz); in rte_bpf_destroy() 28 rte_bpf_get_jit(const struct rte_bpf *bpf, struct rte_bpf_jit *jit) in rte_bpf_get_jit() argument 30 if (bpf == NULL || jit == NULL) in rte_bpf_get_jit() 33 jit[0] = bpf->jit; in rte_bpf_get_jit()
|
| H A D | bpf_pkt.c | 43 struct rte_bpf_jit jit; member 137 memset(&bc->jit, 0, sizeof(bc->jit)); in bpf_eth_cbi_cleanup() 231 rc[i] = jit->func(dp); in pkt_filter_jit() 260 rc[i] = jit->func(mb[i]); in pkt_filter_mb_jit() 303 pkt_filter_jit(&cbi->jit, pkt, nb_pkts, 1) : in bpf_rx_callback_jit() 335 pkt_filter_jit(&cbi->jit, pkt, nb_pkts, 0) : in bpf_tx_callback_jit() 373 pkt_filter_mb_jit(&cbi->jit, pkt, nb_pkts, 1) : in bpf_rx_callback_mb_jit() 405 pkt_filter_mb_jit(&cbi->jit, pkt, nb_pkts, 0) : in bpf_tx_callback_mb_jit() 515 struct rte_bpf_jit jit; in bpf_eth_elf_load() local 539 rte_bpf_get_jit(bpf, &jit); in bpf_eth_elf_load() [all …]
|
| H A D | bpf_impl.h | 19 struct rte_bpf_jit jit; member
|
| H A D | rte_bpf.h | 199 rte_bpf_get_jit(const struct rte_bpf *bpf, struct rte_bpf_jit *jit);
|
| H A D | bpf_load_elf.c | 331 __func__, fname, sname, bpf, bpf->jit.func, bpf->jit.sz); in rte_bpf_elf_load()
|
| H A D | bpf_jit_arm64.c | 1440 bpf->jit.func = (void *)ctx.ins; in bpf_jit_arm64() 1441 bpf->jit.sz = size; in bpf_jit_arm64()
|
| H A D | bpf_jit_x86.c | 1543 bpf->jit.func = (void *)st.ins; in bpf_jit_x86() 1544 bpf->jit.sz = st.sz; in bpf_jit_x86()
|
| /f-stack/app/nginx-1.16.1/src/core/ |
| H A D | ngx_regex.c | 351 int jit, n; in ngx_regex_module_init() local 353 jit = 0; in ngx_regex_module_init() 355 PCRE_INFO_JIT, &jit); in ngx_regex_module_init() 357 if (n != 0 || jit != 1) { in ngx_regex_module_init() 417 int jit, r; in ngx_regex_pcre_jit() local 419 jit = 0; in ngx_regex_pcre_jit() 420 r = pcre_config(PCRE_CONFIG_JIT, &jit); in ngx_regex_pcre_jit() 422 if (r != 0 || jit != 1) { in ngx_regex_pcre_jit()
|
| /f-stack/app/nginx-1.16.1/auto/lib/pcre/ |
| H A D | conf | 91 PCRE_CONF_OPT="$PCRE_CONF_OPT --enable-jit" 179 ngx_feature_test="int jit = 0; 181 pcre_config(PCRE_CONFIG_JIT, &jit); 182 if (jit != 1) return 1;"
|
| /f-stack/app/nginx-1.16.1/auto/ |
| H A D | options | 360 --with-pcre-jit) PCRE_JIT=YES ;; 577 --with-pcre-jit build PCRE with JIT compilation support
|
| /f-stack/dpdk/app/test/ |
| H A D | test_bpf.c | 3178 struct rte_bpf_jit jit; in run_test() local 3199 rte_bpf_get_jit(bpf, &jit); in run_test() 3200 if (jit.func != NULL) { in run_test() 3203 rc = jit.func(tbuf); in run_test()
|