1999-04-08 02:10:10 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2019-01-30 17:23:29 +08:00
|
|
|
| Copyright (c) Zend Technologies Ltd. (http://www.zend.com) |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2001-12-11 23:16:21 +08:00
|
|
|
| This source file is subject to version 2.00 of the Zend license, |
|
2015-01-03 17:22:58 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2001-12-11 23:16:21 +08:00
|
|
|
| http://www.zend.com/license/2_00.txt. |
|
1999-07-16 22:58:16 +08:00
|
|
|
| If you did not receive a copy of the Zend license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@zend.com so we can mail you a copy immediately. |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2018-11-01 23:20:07 +08:00
|
|
|
| Authors: Andi Gutmans <andi@php.net> |
|
|
|
|
| Zeev Suraski <zeev@php.net> |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "zend.h"
|
|
|
|
#include "zend_stack.h"
|
|
|
|
|
2014-05-01 02:28:02 +08:00
|
|
|
#define ZEND_STACK_ELEMENT(stack, n) ((void *)((char *) (stack)->elements + (stack)->size * (n)))
|
|
|
|
|
2020-08-28 21:41:27 +08:00
|
|
|
ZEND_API void zend_stack_init(zend_stack *stack, int size)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
2014-05-01 02:28:02 +08:00
|
|
|
stack->size = size;
|
1999-04-08 02:10:10 +08:00
|
|
|
stack->top = 0;
|
2010-07-07 00:09:43 +08:00
|
|
|
stack->max = 0;
|
|
|
|
stack->elements = NULL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2014-05-01 02:28:02 +08:00
|
|
|
ZEND_API int zend_stack_push(zend_stack *stack, const void *element)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
2014-05-01 02:28:02 +08:00
|
|
|
/* We need to allocate more memory */
|
|
|
|
if (stack->top >= stack->max) {
|
|
|
|
stack->max += STACK_BLOCK_SIZE;
|
|
|
|
stack->elements = safe_erealloc(stack->elements, stack->size, stack->max, 0);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
2014-05-01 02:28:02 +08:00
|
|
|
memcpy(ZEND_STACK_ELEMENT(stack, stack->top), element, stack->size);
|
1999-04-08 02:10:10 +08:00
|
|
|
return stack->top++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-01 02:48:02 +08:00
|
|
|
ZEND_API void *zend_stack_top(const zend_stack *stack)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
if (stack->top > 0) {
|
2014-05-01 02:48:02 +08:00
|
|
|
return ZEND_STACK_ELEMENT(stack, stack->top - 1);
|
1999-04-08 02:10:10 +08:00
|
|
|
} else {
|
2014-05-01 02:48:02 +08:00
|
|
|
return NULL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-08-28 21:41:27 +08:00
|
|
|
ZEND_API void zend_stack_del_top(zend_stack *stack)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
2014-05-01 02:28:02 +08:00
|
|
|
--stack->top;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-08-13 01:20:25 +08:00
|
|
|
ZEND_API int zend_stack_int_top(const zend_stack *stack)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
2014-05-01 02:48:02 +08:00
|
|
|
int *e = zend_stack_top(stack);
|
|
|
|
if (e) {
|
1999-04-08 02:10:10 +08:00
|
|
|
return *e;
|
2014-05-01 02:48:02 +08:00
|
|
|
} else {
|
|
|
|
return FAILURE;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-08-28 21:41:27 +08:00
|
|
|
ZEND_API bool zend_stack_is_empty(const zend_stack *stack)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
2014-05-01 02:28:02 +08:00
|
|
|
return stack->top == 0;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-08-28 21:41:27 +08:00
|
|
|
ZEND_API void zend_stack_destroy(zend_stack *stack)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
if (stack->elements) {
|
|
|
|
efree(stack->elements);
|
2010-08-27 14:09:18 +08:00
|
|
|
stack->elements = NULL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-01 02:28:02 +08:00
|
|
|
ZEND_API void *zend_stack_base(const zend_stack *stack)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
return stack->elements;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-08-13 01:20:25 +08:00
|
|
|
ZEND_API int zend_stack_count(const zend_stack *stack)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
return stack->top;
|
|
|
|
}
|
1999-07-24 19:43:21 +08:00
|
|
|
|
|
|
|
|
2000-03-30 06:28:04 +08:00
|
|
|
ZEND_API void zend_stack_apply(zend_stack *stack, int type, int (*apply_function)(void *element))
|
1999-07-24 19:43:21 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case ZEND_STACK_APPLY_TOPDOWN:
|
|
|
|
for (i=stack->top-1; i>=0; i--) {
|
2014-05-01 02:28:02 +08:00
|
|
|
if (apply_function(ZEND_STACK_ELEMENT(stack, i))) {
|
1999-09-09 22:15:17 +08:00
|
|
|
break;
|
|
|
|
}
|
1999-07-24 19:43:21 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ZEND_STACK_APPLY_BOTTOMUP:
|
|
|
|
for (i=0; i<stack->top; i++) {
|
2014-05-01 02:28:02 +08:00
|
|
|
if (apply_function(ZEND_STACK_ELEMENT(stack, i))) {
|
1999-09-09 22:15:17 +08:00
|
|
|
break;
|
|
|
|
}
|
1999-07-24 19:43:21 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-30 06:28:04 +08:00
|
|
|
ZEND_API void zend_stack_apply_with_argument(zend_stack *stack, int type, int (*apply_function)(void *element, void *arg), void *arg)
|
1999-07-24 19:43:21 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case ZEND_STACK_APPLY_TOPDOWN:
|
|
|
|
for (i=stack->top-1; i>=0; i--) {
|
2014-05-01 02:28:02 +08:00
|
|
|
if (apply_function(ZEND_STACK_ELEMENT(stack, i), arg)) {
|
1999-09-09 22:15:17 +08:00
|
|
|
break;
|
|
|
|
}
|
1999-07-24 19:43:21 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ZEND_STACK_APPLY_BOTTOMUP:
|
|
|
|
for (i=0; i<stack->top; i++) {
|
2014-05-01 02:28:02 +08:00
|
|
|
if (apply_function(ZEND_STACK_ELEMENT(stack, i), arg)) {
|
1999-09-09 22:15:17 +08:00
|
|
|
break;
|
|
|
|
}
|
1999-07-24 19:43:21 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2003-02-01 09:49:15 +08:00
|
|
|
|
2021-01-15 19:30:54 +08:00
|
|
|
ZEND_API void zend_stack_clean(zend_stack *stack, void (*func)(void *), bool free_elements)
|
2014-02-10 14:04:30 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (func) {
|
|
|
|
for (i = 0; i < stack->top; i++) {
|
2014-05-01 02:28:02 +08:00
|
|
|
func(ZEND_STACK_ELEMENT(stack, i));
|
2014-02-10 14:04:30 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (free_elements) {
|
|
|
|
if (stack->elements) {
|
|
|
|
efree(stack->elements);
|
|
|
|
stack->elements = NULL;
|
|
|
|
}
|
|
|
|
stack->top = stack->max = 0;
|
|
|
|
}
|
|
|
|
}
|