Searched refs:stack_size (Results 1 – 11 of 11) sorted by relevance
/PHP-8.3/Zend/tests/fibers/ |
H A D | negative_stack_size.phpt | 2 fiber.stack_size must be a positive number 5 ini_set("fiber.stack_size","-1"); 15 Warning: fiber.stack_size must be a positive number in %snegative_stack_size.php on line 2
|
H A D | gh10249.phpt | 7 ini_set("fiber.stack_size", "");
|
/PHP-8.3/ext/pcre/pcre2lib/sljit/ |
H A D | sljitNativeX86_32.c | 629 sljit_sw stack_size = 0; in call_get_stack_size() local 675 if (stack_size > 0) in call_with_args() 717 if (stack_size > 0) in post_call_with_args() 859 stack_size = min_size; in tail_call_with_args() 1000 sljit_sw stack_size = 0; in sljit_emit_call() local 1015 stack_size = type; in sljit_emit_call() 1020 if (stack_size == 0) in sljit_emit_call() 1050 sljit_sw stack_size = 0; in sljit_emit_icall() local 1075 stack_size = type; in sljit_emit_icall() 1085 if (stack_size == 0) in sljit_emit_icall() [all …]
|
/PHP-8.3/Zend/tests/stack_limit/ |
H A D | stack_limit_004.phpt | 30 ini_set('fiber.stack_size', '400K'); 35 ini_set('fiber.stack_size', '200K');
|
H A D | stack_limit_002.phpt | 11 fiber.stack_size=512k
|
/PHP-8.3/Zend/ |
H A D | zend_fibers.h | 136 …ontext(zend_fiber_context *context, void *kind, zend_fiber_coroutine coroutine, size_t stack_size);
|
H A D | zend_fibers.c | 216 const size_t stack_size = (size + page_size - 1) / page_size * page_size; in zend_fiber_stack_allocate() local 217 const size_t alloc_size = stack_size + ZEND_FIBER_GUARD_PAGES * page_size; in zend_fiber_stack_allocate() 264 stack->size = stack_size; in zend_fiber_stack_allocate() 268 stack->ss_size= stack_size >> 5; in zend_fiber_stack_allocate() 406 …context(zend_fiber_context *context, void *kind, zend_fiber_coroutine coroutine, size_t stack_size) in zend_fiber_init_context() argument 408 context->stack = zend_fiber_stack_allocate(stack_size); in zend_fiber_init_context()
|
/PHP-8.3/ext/opcache/jit/ |
H A D | zend_jit_trace.c | 179 uint32_t stack_size; in zend_jit_trace_get_exit_point() local 189 if (stack_size) { in zend_jit_trace_get_exit_point() 197 stack_size--; in zend_jit_trace_get_exit_point() 198 } while (stack_size); in zend_jit_trace_get_exit_point() 202 stack_size = 0; in zend_jit_trace_get_exit_point() 211 if (stack_size == 0 in zend_jit_trace_get_exit_point() 212 || (t->exit_info[i].stack_size >= stack_size in zend_jit_trace_get_exit_point() 217 && t->exit_info[i].stack_size == stack_size) { in zend_jit_trace_get_exit_point() 237 t->exit_info[exit_point].stack_size = stack_size; in zend_jit_trace_get_exit_point() 7623 uint32_t stack_size = t->exit_info[i].stack_size; in zend_jit_dump_exit_info() local [all …]
|
H A D | zend_jit_internal.h | 518 uint32_t stack_size; member
|
H A D | zend_jit_x86.dasc | 3167 int parent_vars_count = parent->exit_info[exit_num].stack_size;
|
/PHP-8.3/ |
H A D | UPGRADING | 26 (`fiber.stack_size-zend.reserved_stack_size` for fibers). 615 effect as disabling the stack size limit. Fibers use fiber.stack_size 645 zend.reserved_stack_size and fiber.stack_size.
|
Completed in 61 milliseconds