Lines Matching defs:stack
38 #include "vm-stack.h"
2428 * extra value on the stack. See js-parser-expr.c. */
2491 * extra value on the stack. See js-parser-expr.c. */
2764 /* "Push" the value back to the stack. */
4450 ecma_value_t* stack;
4470 stack = (ecma_value_t*)jerry_vla_malloc (sizeof(ecma_value_t) * frame_size);
4471 if (!stack)
4473 return ecma_raise_common_error (ECMA_ERR_MSG ("malloc stack failed"));
4476 JERRY_VLA (uintptr_t, stack, frame_size);
4479 frame_ctx_p = (vm_frame_ctx_t *) stack;
4488 jerry_vla_free ((char*)stack);