php-internal-docs 8.4.8
Unofficial docs for php/php-src
Loading...
Searching...
No Matches
zend_ptr_stack.h
Go to the documentation of this file.
1/*
2 +----------------------------------------------------------------------+
3 | Zend Engine |
4 +----------------------------------------------------------------------+
5 | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) |
6 +----------------------------------------------------------------------+
7 | This source file is subject to version 2.00 of the Zend license, |
8 | that is bundled with this package in the file LICENSE, and is |
9 | available through the world-wide-web at the following url: |
10 | http://www.zend.com/license/2_00.txt. |
11 | If you did not receive a copy of the Zend license and are unable to |
12 | obtain it through the world-wide-web, please send a note to |
13 | license@zend.com so we can mail you a copy immediately. |
14 +----------------------------------------------------------------------+
15 | Authors: Andi Gutmans <andi@php.net> |
16 | Zeev Suraski <zeev@php.net> |
17 +----------------------------------------------------------------------+
18*/
19
20#ifndef ZEND_PTR_STACK_H
21#define ZEND_PTR_STACK_H
22
23#include "zend_alloc.h"
24
31
32
33#define PTR_STACK_BLOCK_SIZE 64
34
41ZEND_API void zend_ptr_stack_apply(zend_ptr_stack *stack, void (*func)(void *));
42ZEND_API void zend_ptr_stack_reverse_apply(zend_ptr_stack *stack, void (*func)(void *));
43ZEND_API void zend_ptr_stack_clean(zend_ptr_stack *stack, void (*func)(void *), bool free_elements);
46
47#define ZEND_PTR_STACK_RESIZE_IF_NEEDED(stack, count) \
48 if (stack->top+count > stack->max) { \
49 /* we need to allocate more memory */ \
50 do { \
51 stack->max += PTR_STACK_BLOCK_SIZE; \
52 } while (stack->top+count > stack->max); \
53 stack->elements = (void **) safe_perealloc(stack->elements, sizeof(void *), (stack->max), 0, stack->persistent); \
54 stack->top_element = stack->elements+stack->top; \
55 }
56
57/* Not doing this with a macro because of the loop unrolling in the element assignment.
58 Just using a macro for 3 in the body for readability sake. */
59static zend_always_inline void zend_ptr_stack_3_push(zend_ptr_stack *stack, void *a, void *b, void *c)
60{
61#define ZEND_PTR_STACK_NUM_ARGS 3
62
64
66 *(stack->top_element++) = a;
67 *(stack->top_element++) = b;
68 *(stack->top_element++) = c;
69
70#undef ZEND_PTR_STACK_NUM_ARGS
71}
72
73static zend_always_inline void zend_ptr_stack_2_push(zend_ptr_stack *stack, void *a, void *b)
74{
75#define ZEND_PTR_STACK_NUM_ARGS 2
76
78
80 *(stack->top_element++) = a;
81 *(stack->top_element++) = b;
82
83#undef ZEND_PTR_STACK_NUM_ARGS
84}
85
86static zend_always_inline void zend_ptr_stack_3_pop(zend_ptr_stack *stack, void **a, void **b, void **c)
87{
88 *a = *(--stack->top_element);
89 *b = *(--stack->top_element);
90 *c = *(--stack->top_element);
91 stack->top -= 3;
92}
93
94static zend_always_inline void zend_ptr_stack_2_pop(zend_ptr_stack *stack, void **a, void **b)
95{
96 *a = *(--stack->top_element);
97 *b = *(--stack->top_element);
98 stack->top -= 2;
99}
100
101static zend_always_inline void zend_ptr_stack_push(zend_ptr_stack *stack, void *ptr)
102{
104
105 stack->top++;
106 *(stack->top_element++) = ptr;
107}
108
109static zend_always_inline void *zend_ptr_stack_pop(zend_ptr_stack *stack)
110{
111 stack->top--;
112 return *(--stack->top_element);
113}
114
115static zend_always_inline void *zend_ptr_stack_top(zend_ptr_stack *stack)
116{
117 return stack->elements[stack->top - 1];
118}
119
120#endif /* ZEND_PTR_STACK_H */
count(Countable|array $value, int $mode=COUNT_NORMAL)
void * ptr
Definition ffi.c:3814
ffi persistent
Definition ffi.c:3633
original_stack top
$obj a
Definition test.php:84
execute_data func
#define ZEND_API
#define END_EXTERN_C()
#define zend_always_inline
#define BEGIN_EXTERN_C()
ZEND_API void zend_ptr_stack_reverse_apply(zend_ptr_stack *stack, void(*func)(void *))
ZEND_API void zend_ptr_stack_n_push(zend_ptr_stack *stack, int count,...)
ZEND_API void zend_ptr_stack_clean(zend_ptr_stack *stack, void(*func)(void *), bool free_elements)
ZEND_API int zend_ptr_stack_num_elements(zend_ptr_stack *stack)
ZEND_API void zend_ptr_stack_destroy(zend_ptr_stack *stack)
ZEND_API void zend_ptr_stack_init(zend_ptr_stack *stack)
ZEND_API void zend_ptr_stack_apply(zend_ptr_stack *stack, void(*func)(void *))
ZEND_API void zend_ptr_stack_n_pop(zend_ptr_stack *stack, int count,...)
ZEND_API void zend_ptr_stack_init_ex(zend_ptr_stack *stack, bool persistent)
#define ZEND_PTR_STACK_NUM_ARGS
struct _zend_ptr_stack zend_ptr_stack
#define ZEND_PTR_STACK_RESIZE_IF_NEEDED(stack, count)