Home
last modified time | relevance | path

Searched refs:cfg (Results 1 – 25 of 72) sorted by relevance

123

/PHP-7.3/ext/pspell/tests/
H A D004.phpt11 $cfg = pspell_config_create('en', 'british', '', 'iso8859-1');
12 var_dump(pspell_config_mode($cfg, PSPELL_BAD_SPELLERS));
14 var_dump(pspell_config_runtogether($cfg, false));
15 $p = pspell_new_config($cfg);
21 var_dump(pspell_config_runtogether($cfg, true));
22 $p = pspell_new_config($cfg);
25 var_dump(pspell_config_runtogether($cfg, NULL))
H A D003.phpt11 $cfg = pspell_config_create('en', 'british', '', 'iso8859-1');
14 $p = pspell_new_config($cfg);
21 var_dump(pspell_config_ignore($cfg, 2));
22 $p = pspell_new_config($cfg);
26 var_dump(pspell_config_ignore($cfg, PHP_INT_MAX));
H A D005.phpt19 $cfg = pspell_config_create('en');
20 var_dump(pspell_config_personal($cfg, "$wordlist.tmp"));
21 $p = pspell_new_config($cfg);
/PHP-7.3/ext/opcache/Optimizer/
H A Dzend_cfg.c29 zend_basic_block *blocks = cfg->blocks; in zend_mark_reachable()
108 zend_basic_block *blocks = cfg->blocks; in zend_mark_reachable_blocks()
116 uint32_t *block_map = cfg->map; in zend_mark_reachable_blocks()
245 zend_basic_block *blocks = cfg->blocks; in zend_cfg_remark_reachable_blocks()
479 cfg->blocks_count = blocks_count; in zend_build_cfg()
604 cfg->flags |= flags; in zend_build_cfg()
614 zend_basic_block *blocks = cfg->blocks; in zend_cfg_build_predecessors()
634 cfg->edges_count = edges; in zend_cfg_build_predecessors()
695 zend_basic_block *blocks = cfg->blocks; in zend_cfg_compute_dominators_tree()
696 int blocks_count = cfg->blocks_count; in zend_cfg_compute_dominators_tree()
[all …]
H A Dscdf.c56 uint32_t edge = scdf_edge(&scdf->ssa->cfg, from, to); in scdf_mark_edge_feasible()
89 scdf->block_worklist_len = zend_bitset_len(ssa->cfg.blocks_count); in scdf_init()
121 int block_num = ssa->cfg.map[i]; in scdf_solve()
123 zend_basic_block *block = &ssa->cfg.blocks[block_num]; in scdf_solve()
143 zend_basic_block *block = &ssa->cfg.blocks[i]; in scdf_solve()
190 const zend_cfg *cfg = &scdf->ssa->cfg; in kept_alive_by_live_range() local
193 uint32_t start_block = cfg->map[live_range->start]; in kept_alive_by_live_range()
194 uint32_t end_block = cfg->map[live_range->end]; in kept_alive_by_live_range()
212 for (i = 0; i < ssa->cfg.blocks_count; i++) { in scdf_remove_unreachable_blocks()
214 && (ssa->cfg.blocks[i].flags & ZEND_BB_REACHABLE) in scdf_remove_unreachable_blocks()
[all …]
H A Dzend_cfg.h123 …_build_cfg(zend_arena **arena, const zend_op_array *op_array, uint32_t build_flags, zend_cfg *cfg);
124 void zend_cfg_remark_reachable_blocks(const zend_op_array *op_array, zend_cfg *cfg);
125 int zend_cfg_build_predecessors(zend_arena **arena, zend_cfg *cfg);
126 int zend_cfg_compute_dominators_tree(const zend_op_array *op_array, zend_cfg *cfg);
127 int zend_cfg_identify_loops(const zend_op_array *op_array, zend_cfg *cfg);
H A Dscdf.h78 static inline uint32_t scdf_edge(zend_cfg *cfg, int from, int to) { in scdf_edge() argument
79 zend_basic_block *to_block = cfg->blocks + to; in scdf_edge()
85 if (cfg->predecessors[edge] == from) { in scdf_edge()
93 uint32_t edge = scdf_edge(&scdf->ssa->cfg, from, to); in scdf_is_edge_feasible()
H A Dzend_dump.h34 void zend_dump_dominators(const zend_op_array *op_array, const zend_cfg *cfg);
35 void zend_dump_dfg(const zend_op_array *op_array, const zend_cfg *cfg, const zend_dfg *dfg);
H A Dssa_integrity.c69 static inline zend_bool is_in_predecessors(zend_cfg *cfg, zend_basic_block *block, int check) { in is_in_predecessors() argument
70 int i, *predecessors = &cfg->predecessors[block->predecessor_offset]; in is_in_predecessors()
113 zend_cfg *cfg = &ssa->cfg; in ssa_verify_integrity() local
308 for (i = 0; i < cfg->blocks_count; i++) { in ssa_verify_integrity()
309 zend_basic_block *block = &cfg->blocks[i]; in ssa_verify_integrity()
310 int *predecessors = &cfg->predecessors[block->predecessor_offset]; in ssa_verify_integrity()
317 if (i != cfg->blocks_count-1 && block->start + block->len > (block+1)->start) { in ssa_verify_integrity()
323 if (cfg->map[j] != i) { in ssa_verify_integrity()
340 next_block = &cfg->blocks[block->successors[s]]; in ssa_verify_integrity()
344 if (!is_in_predecessors(cfg, next_block, i)) { in ssa_verify_integrity()
[all …]
H A Dzend_dump.c720 zend_basic_block *b = cfg->blocks + n; in zend_dump_block_info()
804 j = cfg->blocks[j].next_child; in zend_dump_block_info()
807 j = cfg->blocks[j].next_child; in zend_dump_block_info()
871 const zend_cfg *cfg = NULL; in zend_dump_op_array() local
877 cfg = (const zend_cfg*)data; in zend_dump_op_array()
878 if (!cfg->blocks) { in zend_dump_op_array()
879 cfg = data = NULL; in zend_dump_op_array()
979 if (cfg) { in zend_dump_op_array()
984 b = cfg->blocks + n; in zend_dump_op_array()
1120 zend_basic_block *b = cfg->blocks + j; in zend_dump_dominators()
[all …]
/PHP-7.3/ext/tidy/tests/
H A D016.phpt9 $cfg = $tidy->getConfig();
10 echo $cfg["clean"];
/PHP-7.3/sapi/fpm/tests/
H A Dbug68391-conf-include-order.phpt12 $cfg['main'] = <<<EOT
29 $cfg[$name] = str_replace('%name%', $name, $cfgPoolTemplate);
32 $tester = new FPM\Tester($cfg);
H A Dsocket-ipv4-basic.phpt10 $cfg = <<<EOT
22 $tester = new FPM\Tester($cfg);
H A Dbug68381-log-level-warning.phpt12 $cfg = <<<EOT
25 $tester = new FPM\Tester($cfg);
H A Dsocket-ipv6-basic.phpt13 $cfg = <<<EOT
25 $tester = new FPM\Tester($cfg);
H A Dbug68420-ipv4-all-addresses.phpt12 $cfg = <<<EOT
26 $tester = new FPM\Tester($cfg);
H A Dsocket-uds-basic.phpt10 $cfg = <<<EOT
24 $tester = new FPM\Tester($cfg);
H A Dbug68458-pm-no-start-server.phpt12 $cfg = <<<EOT
27 $tester = new FPM\Tester($cfg);
H A Dfastcgi_finish_request_basic.phpt10 $cfg = <<<EOT
29 $tester = new FPM\Tester($cfg, $code);
H A Dsocket-ipv6-any.phpt13 $cfg = <<<EOT
25 $tester = new FPM\Tester($cfg);
H A Dproc-no-start-server.phpt12 $cfg = <<<EOT
26 $tester = new FPM\Tester($cfg);
H A Dbug68428-ipv6-allowed-clients.phpt13 $cfg = <<<EOT
26 $tester = new FPM\Tester($cfg);
H A Dlog-bwd-limit-1050-msg-2900.phpt10 $cfg = <<<EOT
30 $tester = new FPM\Tester($cfg, $code);
H A Dlog-bwd-limit-64-too-low-error.phpt10 $cfg = <<<EOT
29 $tester = new FPM\Tester($cfg, $code);
H A Dlog-bwd-limit-8000-msg-4096.phpt10 $cfg = <<<EOT
30 $tester = new FPM\Tester($cfg, $code);

Completed in 25 milliseconds

123