Home
last modified time | relevance | path

Searched refs:stack (Results 126 – 150 of 168) sorted by relevance

1234567

/php-src/Zend/asm/
H A Dmake_x86_64_sysv_elf_gas.S189 .section .note.GNU-stack,"",%progbits
H A Djump_s390x_sysv_elf_gas.S156 .section .note.GNU-stack,"",%progbits
H A Djump_x86_64_sysv_elf_gas.S153 .section .note.GNU-stack,"",%progbits
H A Djump_ppc32_sysv_macho_gas.S80 ; reserve space on stack
193 ; adjust stack
/php-src/Zend/
H A Dzend.c1375 #define SAVE_STACK(stack) do { \ argument
1376 if (CG(stack).top) { \
1377 memcpy(&stack, &CG(stack), sizeof(zend_stack)); \
1378 CG(stack).top = CG(stack).max = 0; \
1379 CG(stack).elements = NULL; \
1381 stack.top = 0; \
1385 #define RESTORE_STACK(stack) do { \ argument
1386 if (stack.top) { \
1387 zend_stack_destroy(&CG(stack)); \
1388 memcpy(&CG(stack), &stack, sizeof(zend_stack)); \
H A DZend.m4157 dnl Test whether the stack grows downwards
158 dnl Assumes contiguous stack
159 AC_MSG_CHECKING(whether the stack grows downwards)
178 AC_DEFINE([ZEND_CHECK_STACK_LIMIT], 1, [Define if checking the stack limit is supported])
H A Dzend_generators.c63 zval *stack; in zend_generator_freeze_call_stack() local
73 stack = emalloc(used_stack * sizeof(zval)); in zend_generator_freeze_call_stack()
80 new_call = (zend_execute_data*)(stack + used_stack - frame_size); in zend_generator_freeze_call_stack()
92 ZEND_ASSERT(prev_call == (zend_execute_data*)stack); in zend_generator_freeze_call_stack()
H A Dzend_execute.c209 zend_vm_stack stack = EG(vm_stack); in zend_vm_stack_destroy() local
211 while (stack != NULL) { in zend_vm_stack_destroy()
212 zend_vm_stack p = stack->prev; in zend_vm_stack_destroy()
213 efree(stack); in zend_vm_stack_destroy()
214 stack = p; in zend_vm_stack_destroy()
220 zend_vm_stack stack; in zend_vm_stack_extend() local
223 stack = EG(vm_stack); in zend_vm_stack_extend()
224 stack->top = EG(vm_stack_top); in zend_vm_stack_extend()
228 stack); in zend_vm_stack_extend()
229 ptr = stack->top; in zend_vm_stack_extend()
[all …]
/php-src/tests/func/
H A D010.phpt10 // the stack size + some random constant
/php-src/Zend/tests/stack_limit/
H A Dstack_limit_006.phpt323 Maximum call stack size of %d bytes (zend.max_allowed_stack_size - zend.reserved_stack_size) reache…
324 Maximum call stack size of %d bytes (zend.max_allowed_stack_size - zend.reserved_stack_size) reache…
325 Maximum call stack size of %d bytes (zend.max_allowed_stack_size - zend.reserved_stack_size) reache…
H A Dstack_limit_005.phpt2 Stack limit 005 - Internal stack limit check in zend_compile_expr()
69 Fatal error: Maximum call stack size of %d bytes (zend.max_allowed_stack_size - zend.reserved_stack…
/php-src/ext/opcache/jit/
H A Dzend_jit_ir.c627 zend_jit_trace_stack *stack = JIT_G(current_frame)->stack; in jit_SNAPSHOT() local
4514 zend_jit_trace_stack *stack; in zend_jit_inc_dec() local
4517 stack = JIT_G(current_frame)->stack; in zend_jit_inc_dec()
4569 stack = JIT_G(current_frame)->stack; in zend_jit_inc_dec()
4826 zend_jit_trace_stack *stack = JIT_G(current_frame)->stack; in zend_jit_math_long_long() local
7697 zend_jit_trace_stack *stack = JIT_G(current_frame)->stack; in zend_jit_guard_fetch_result_type() local
10238 zend_jit_trace_stack *stack = JIT_G(current_frame)->stack; local
12023 zend_jit_trace_stack *stack = JIT_G(current_frame)->stack; local
15119 zend_jit_trace_stack *stack = JIT_G(current_frame)->stack; local
15843 stack->ref = ir_get_spill_slot_offset(&jit->ctx, stack->ref);
[all …]
/php-src/ext/standard/tests/array/
H A Darray_push_variation6.phpt23 // arrays of different data types as keys to be passed to $stack argument
H A Darray_shift_variation3.phpt20 // unexpected values to be passed to $stack argument
H A Darray_shift_variation2.phpt32 // arrays of different data types to be passed to $stack argument
/php-src/tests/lang/
H A Dengine_assignExecutionOrder_008.phpt2 Ensure by value assignments leave temporaries on the stack, for all sorts of assignees.
/php-src/ext/xsl/tests/
H A Dbug71540.phpt62 Warning: XSLTProcessor::transformToXml(): xmlXPathCompiledEval: 2 objects left on the stack. in %sb…
/php-src/sapi/phpdbg/
H A Dphpdbg_print.c37 …PHPDBG_PRINT_COMMAND_D(stack, "print out the instructions in the current stack", 's'…
97 PHPDBG_PRINT(stack) /* {{{ */ in PHPDBG_PRINT() argument
H A Dphpdbg.h114 int phpdbg_do_parse(phpdbg_param_t *stack, char *input);
/php-src/ext/pcre/tests/
H A Dpreg_match_error4.phpt2 Pattern exhausting PCRE JIT stack
61 "name": "asm89\\/stack-cors",
834 "asm89\\/stack-cors": "0.2.1",
/php-src/ext/gd/libgd/
H A Dgd.c1876 if (sp<stack+FILL_MAX && Y+(DY)>=0 && Y+(DY)<wy2) \
1894 struct seg *stack = NULL; in gdImageFill() local
1935 stack = (struct seg *)safe_emalloc(sizeof(struct seg), ((int)(im->sy*im->sx)/4), 1); in gdImageFill()
1936 sp = stack; in gdImageFill()
1942 while (sp>stack) { in gdImageFill()
1974 efree(stack); in gdImageFill()
1986 struct seg *stack; in _gdImageFillTiled() local
2003 stack = (struct seg *)safe_emalloc(sizeof(struct seg), ((int)(im->sy*im->sx)/4), 1); in _gdImageFillTiled()
2004 sp = stack; in _gdImageFillTiled()
2012 while (sp>stack) { in _gdImageFillTiled()
[all …]
/php-src/Zend/Optimizer/
H A Dzend_inference.c201 while (stack->len > 0) {
202 int var2 = zend_worklist_stack_peek(stack);
206 zend_worklist_stack_pop(stack);
214 zend_worklist_stack_push(stack, var);
222 zend_worklist_stack stack;
253 ZEND_WORKLIST_STACK_FREE_ALLOCA(&stack, stack_use_heap);
425 while (stack->len > 0) { in zend_ssa_check_scc_var()
426 int var2 = zend_worklist_stack_peek(stack); in zend_ssa_check_scc_var()
430 zend_worklist_stack_pop(stack); in zend_ssa_check_scc_var()
437 zend_worklist_stack_push(stack, var); in zend_ssa_check_scc_var()
[all …]
/php-src/ext/opcache/jit/ir/
H A Dir_aarch64.h163 void *stack; member
/php-src/
H A DNEWS19 . Fixed zend call stack size for macOs/arm64. (David Carlier)
21 . Ensure fiber stack is not backed by THP. (crrodriguez)
/php-src/ext/opcache/jit/ir/dynasm/
H A Dminilua.c470 StkId stack; member
1053 L->top=(L->top-oldstack)+L->stack;
1064 TValue*oldstack=L->stack;
1068 L->stack_last=L->stack+newsize;
1884 int s_used=cast_int(max-L->stack);
1903 for(o=l->stack;o<l->top;o++)
2271 L1->top=L1->stack;
2296 L->stack=NULL;
2315 luaF_close(L,L->stack);
2323 luaF_close(L1,L1->stack);
[all …]

Completed in 202 milliseconds

1234567