Home
last modified time | relevance | path

Searched refs:block (Results 1 – 25 of 145) sorted by last modified time

123456

/php-src/ext/opcache/jit/
H A Dzend_jit_ir.c1334 bb = &jit->ssa->cfg.blocks[dst_phi->block]; in zend_jit_def_reg()
1404 zend_basic_block *bb = &jit->ssa->cfg.blocks[phi->block]; in zend_jit_gen_phi()
1408 ir_ref merge = jit->bb_start_ref[phi->block]; in zend_jit_gen_phi()
16632 def_block = ssa->vars[var].definition_phi->block;
16650 use_block = p->block;
H A Dzend_jit_trace.c715 phi->block = 1; in zend_jit_trace_add_phis()
752 phi->block = 1; in zend_jit_trace_add_call_phis()
784 phi->block = 1; in zend_jit_trace_add_ret_phis()
H A Dzend_jit.c141 def_block = ssa->vars[var].definition_phi->block; in zend_ssa_is_last_use()
1037 for (k = 0; k < ssa->cfg.blocks[phi->block].predecessors_count; k++) { in zend_jit_allocate_registers()
1042 && phi->block == ssa->vars[src].definition_phi->block) { in zend_jit_allocate_registers()
1059 for (k = 0; k < ssa->cfg.blocks[phi->block].predecessors_count; k++) { in zend_jit_allocate_registers()
1064 && phi->block == ssa->vars[src].definition_phi->block) { in zend_jit_allocate_registers()
/php-src/
H A Dconfigure.ac1339 # if the syscall doesn't exist, we may block the final ELF from __PROPERTY_SHSTK
H A Dphp.ini-development292 ; automatically after every output block. This is equivalent to calling the
294 ; and every HTML block. Turning this option on has serious performance
H A Dphp.ini-production292 ; automatically after every output block. This is equivalent to calling the
294 ; and every HTML block. Turning this option on has serious performance
/php-src/ext/opcache/jit/ir/
H A Dir_x86.dasc10160 /* Check for empty ENTRY block */
10225 /* labels for each block + for each constant + rodata label + jmp_table label + for each entry */
H A Dir_gcm.c290 uint32_t block; in ir_split_partially_dead_node() member
296 uint32_t block; in ir_split_partially_dead_node() member
325 clones[clone].block = j; in ir_split_partially_dead_node()
330 uses[uses_count].block = i; in ir_split_partially_dead_node()
346 clones[clone].block = j; in ir_split_partially_dead_node()
351 uses[uses_count].block = i; in ir_split_partially_dead_node()
364 i, clones[i].block, clones[i].use_count, uses[u].ref, uses[u].block); in ir_split_partially_dead_node()
367 fprintf(stderr, ", d_%d/BB%d", uses[u].ref, uses[u].block); in ir_split_partially_dead_node()
392 ctx->cfg_map[clone] = clones[i].block; in ir_split_partially_dead_node()
413 if (j != clones[i].block) { in ir_split_partially_dead_node()
H A Dir_aarch64.dasc5803 /* Check for empty ENTRY block */
5863 …/* labels for each block + for each constant + rodata label + jmp_table label + for each entry + e…
/php-src/Zend/
H A Dzend_alloc.c2477 zend_mm_huge_list *block = AG(mm_heap)->huge_list; local
2480 if (ptr >= (void*)block
2481 && ptr < (void*)((char*)block + block->size)) {
2484 block = block->next;
2485 } while (block != AG(mm_heap)->huge_list);
/php-src/ext/readline/
H A Dreadline_cli.c134 static zend_string *cli_get_prompt(char *block, char prompt) /* {{{ */ in cli_get_prompt() argument
166 smart_str_appends(&retval, block); in cli_get_prompt()
/php-src/Zend/Optimizer/
H A Dzend_inference.c530 for (j = 0; j < ssa->cfg.blocks[p->block].predecessors_count; j++) { in zend_ssa_find_false_dependencies()
1118 && ssa->cfg.blocks[p->block].predecessors_count == 2 in zend_inference_calc_range()
1132 && ssa->cfg.blocks[p->block].predecessors_count == 2 in zend_inference_calc_range()
1235 for (i = 0; i < ssa->cfg.blocks[p->block].predecessors_count; i++) { in zend_inference_calc_range()
4238 for (i = 0; i < blocks[p->block].predecessors_count; i++) { in zend_infer_types_ex()
4242 for (i = 0; i < blocks[p->block].predecessors_count; i++) { in zend_infer_types_ex()
H A Dzend_ssa.h69 int block; /* current BB index */ member
211 for (j = 0; j < ssa->cfg.blocks[p->block].predecessors_count; j++) { in zend_ssa_next_use_phi()
265 ((phi)->pi >= 0 ? 1 : (ssa->cfg.blocks[(phi)->block].predecessors_count))
306 #define FOREACH_BLOCK(block) do { \ argument
309 (block) = &ssa->cfg.blocks[_i]; \
310 if (!((block)->flags & ZEND_BB_REACHABLE)) { \
H A Dzend_ssa.c1139 phi->block = i; in zend_ssa_compute_use_def_chains()
1354 zend_ssa_block *block = &ssa->blocks[phi->block]; in zend_ssa_remove_phi_from_block() local
1517 for (j = block->start; j < block->start + block->len; j++) { in zend_ssa_remove_block()
1558 block->successors_count = 0; in zend_ssa_remove_block_from_cfg()
1559 block->predecessors_count = 0; in zend_ssa_remove_block_from_cfg()
1562 if (block->idom >= 0) { in zend_ssa_remove_block_from_cfg()
1565 ssa->cfg.blocks[block->idom].children = block->next_child; in zend_ssa_remove_block_from_cfg()
1576 block->idom = -1; in zend_ssa_remove_block_from_cfg()
1577 block->level = -1; in zend_ssa_remove_block_from_cfg()
1578 block->children = -1; in zend_ssa_remove_block_from_cfg()
[all …]
H A Dzend_cfg.c253 block->flags = 0; in initialize_block()
254 block->successors = block->successors_storage; in initialize_block()
255 block->successors_count = 0; in initialize_block()
258 block->idom = -1; in initialize_block()
259 block->loop_header = -1; in initialize_block()
260 block->level = -1; in initialize_block()
261 block->children = -1; in initialize_block()
262 block->next_child = -1; in initialize_block()
498 if (block->len == 0) { in zend_build_cfg()
504 opline = op_array->opcodes + block->start + block->len - 1; in zend_build_cfg()
[all …]
H A Dsccp.c1826 int block_num, zend_basic_block *block, in sccp_mark_feasible_successors() argument
1839 scdf_mark_edge_feasible(scdf, block_num, block->successors[0]); in sccp_mark_feasible_successors()
1840 scdf_mark_edge_feasible(scdf, block_num, block->successors[1]); in sccp_mark_feasible_successors()
1852 for (s = 0; s < block->successors_count; s++) { in sccp_mark_feasible_successors()
1853 scdf_mark_edge_feasible(scdf, block_num, block->successors[s]); in sccp_mark_feasible_successors()
1939 s = block->successors_count - 1; in sccp_mark_feasible_successors()
1943 for (s = 0; s < block->successors_count; s++) { in sccp_mark_feasible_successors()
1948 scdf_mark_edge_feasible(scdf, block_num, block->successors[s]); in sccp_mark_feasible_successors()
2044 zend_basic_block *block = &ssa->cfg.blocks[phi->block]; in sccp_visit_phi() local
2055 if (scdf_is_edge_feasible(scdf, phi->pi, phi->block)) { in sccp_visit_phi()
[all …]
/php-src/Zend/tests/fibers/
H A Dno-switch-force-close-finally.phpt2 Cannot start a new fiber in a finally block in a force-closed fiber
/php-src/ext/pcre/
H A Dphp_pcre.c188 static void php_pcre_free(void *block, void *data) in php_pcre_free() argument
190 pefree(block, 1); in php_pcre_free()
198 static void php_pcre_efree(void *block, void *data) in php_pcre_efree() argument
200 efree(block); in php_pcre_efree()
/php-src/ext/xml/tests/
H A Dbug26614.inc21 block
32 block
43 block
/php-src/main/
H A Dnetwork.c1103 PHPAPI int php_set_sock_blocking(php_socket_t socketd, int block) argument
1111 flags = !block;
1124 if (!block) {
H A Dphp_network.h344 PHPAPI int php_set_sock_blocking(php_socket_t socketd, int block);
/php-src/docs-old/
H A Dstreams.md157 NOTE: If the origstream is network based, this function will block until the
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_context.c63 static void default_free(void *block, void *data) in default_free() argument
66 free(block); in default_free()
/php-src/ext/fileinfo/
H A Dlibmagic.patch1687 - * a block device, if nothing else.
1728 - * are block special files and go on to the next file.
1747 + * are block special files and go on to the next file.
1772 - * If -s has been specified, treat block special files
1774 - * are block special files and go on to the next file.
/php-src/sapi/cli/
H A Dphp_cli_server.c158 struct { void *block; char *p; size_t len; } heap; member
961 if (chunk->data.heap.block != chunk) { in php_cli_server_chunk_dtor()
962 pefree(chunk->data.heap.block, 1); in php_cli_server_chunk_dtor()
1030 static php_cli_server_chunk *php_cli_server_chunk_heap_new(void *block, char *buf, size_t len) /* {… in php_cli_server_chunk_heap_new() argument
1036 chunk->data.heap.block = block; in php_cli_server_chunk_heap_new()
1048 chunk->data.heap.block = chunk; in php_cli_server_chunk_heap_new_self_contained()

Completed in 207 milliseconds

123456