php-internal-docs 8.4.8
Unofficial docs for php/php-src
Loading...
Searching...
No Matches
zend_API.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 | Andrei Zmievski <andrei@php.net> |
18 | Dmitry Stogov <dmitry@php.net> |
19 +----------------------------------------------------------------------+
20*/
21
22#ifndef ZEND_API_H
23#define ZEND_API_H
24
25#include "zend_modules.h"
26#include "zend_list.h"
27#include "zend_operators.h"
28#include "zend_variables.h"
29#include "zend_execute.h"
30#include "zend_type_info.h"
32
34
44
45typedef struct _zend_fcall_info {
46 size_t size;
51 uint32_t param_count;
52 /* This hashtable can also contain positional arguments (with integer keys),
53 * which will be appended to the normal params[]. This makes it easier to
54 * integrate APIs like call_user_func_array(). The usual restriction that
55 * there may not be position arguments after named arguments applies. */
58
59typedef struct _zend_fcall_info_cache {
63 zend_object *object; /* Instance of object for method calls */
64 zend_object *closure; /* Closure reference, only if the callable *is* the object */
66
67#define ZEND_NS_NAME(ns, name) ns "\\" name
68
69/* ZEND_FN/ZEND_MN are inlined below to prevent pre-scan macro expansion,
70 * which causes issues if the function name is also a macro name. */
71#define ZEND_FN(name) zif_##name
72#define ZEND_MN(name) zim_##name
73
74#define ZEND_NAMED_FUNCTION(name) void ZEND_FASTCALL name(INTERNAL_FUNCTION_PARAMETERS)
75#define ZEND_FUNCTION(name) ZEND_NAMED_FUNCTION(zif_##name)
76#define ZEND_METHOD(classname, name) ZEND_NAMED_FUNCTION(zim_##classname##_##name)
77
78#define ZEND_FENTRY(zend_name, name, arg_info, flags) { #zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags, NULL, NULL },
79
80#define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, frameless_function_infos, doc_comment) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags, frameless_function_infos, doc_comment },
81
82/* Same as ZEND_NAMED_FE */
83#define ZEND_RAW_NAMED_FE(zend_name, name, arg_info) ZEND_RAW_FENTRY(#zend_name, name, arg_info, 0, NULL, NULL)
84
85#define ZEND_NAMED_FE(zend_name, name, arg_info) ZEND_RAW_FENTRY(#zend_name, name, arg_info, 0, NULL, NULL)
86#define ZEND_FE(name, arg_info) ZEND_RAW_FENTRY(#name, zif_##name, arg_info, 0, NULL, NULL)
87#define ZEND_DEP_FE(name, arg_info) ZEND_RAW_FENTRY(#name, zif_##name, arg_info, ZEND_ACC_DEPRECATED, NULL, NULL)
88#define ZEND_FALIAS(name, alias, arg_info) ZEND_RAW_FENTRY(#name, zif_##alias, arg_info, 0, NULL, NULL)
89#define ZEND_DEP_FALIAS(name, alias, arg_info) ZEND_RAW_FENTRY(#name, zif_##alias, arg_info, ZEND_ACC_DEPRECATED, NULL, NULL)
90#define ZEND_NAMED_ME(zend_name, name, arg_info, flags) ZEND_FENTRY(zend_name, name, arg_info, flags)
91#define ZEND_ME(classname, name, arg_info, flags) ZEND_RAW_FENTRY(#name, zim_##classname##_##name, arg_info, flags, NULL, NULL)
92#define ZEND_DEP_ME(classname, name, arg_info, flags) ZEND_RAW_FENTRY(#name, zim_##classname##_##name, arg_info, flags | ZEND_ACC_DEPRECATED, NULL, NULL)
93#define ZEND_ABSTRACT_ME(classname, name, arg_info) ZEND_RAW_FENTRY(#name, NULL, arg_info, ZEND_ACC_PUBLIC|ZEND_ACC_ABSTRACT, NULL, NULL)
94#define ZEND_ABSTRACT_ME_WITH_FLAGS(classname, name, arg_info, flags) ZEND_RAW_FENTRY(#name, NULL, arg_info, flags, NULL, NULL)
95#define ZEND_MALIAS(classname, name, alias, arg_info, flags) ZEND_RAW_FENTRY(#name, zim_##classname##_##alias, arg_info, flags, NULL, NULL)
96#define ZEND_ME_MAPPING(name, func_name, arg_info, flags) ZEND_RAW_FENTRY(#name, zif_##func_name, arg_info, flags, NULL, NULL)
97#define ZEND_FRAMELESS_FE(name, arg_info, flags, frameless_function_infos, doc_comment) \
98 { #name, zif_##name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags, frameless_function_infos, doc_comment },
99
100#define ZEND_NS_FENTRY(ns, zend_name, name, arg_info, flags) ZEND_RAW_FENTRY(ZEND_NS_NAME(ns, #zend_name), name, arg_info, flags, NULL, NULL)
101
102#define ZEND_NS_RAW_FENTRY(ns, zend_name, name, arg_info, flags) ZEND_RAW_FENTRY(ZEND_NS_NAME(ns, zend_name), name, arg_info, flags, NULL, NULL)
113#define ZEND_SUPPORTS_COMPILE_TIME_EVAL_FE(name, arg_info) ZEND_RAW_FENTRY(#name, zif_##name, arg_info, ZEND_ACC_COMPILE_TIME_EVAL, NULL, NULL)
114
115/* Same as ZEND_NS_NAMED_FE */
116#define ZEND_NS_RAW_NAMED_FE(ns, zend_name, name, arg_info) ZEND_NS_RAW_FENTRY(ns, #zend_name, name, arg_info, 0)
117
118#define ZEND_NS_NAMED_FE(ns, zend_name, name, arg_info) ZEND_NS_RAW_FENTRY(ns, #zend_name, name, arg_info, 0)
119#define ZEND_NS_FE(ns, name, arg_info) ZEND_NS_RAW_FENTRY(ns, #name, zif_##name, arg_info, 0)
120#define ZEND_NS_DEP_FE(ns, name, arg_info) ZEND_NS_RAW_FENTRY(ns, #name, zif_##name, arg_info, ZEND_ACC_DEPRECATED)
121#define ZEND_NS_FALIAS(ns, name, alias, arg_info) ZEND_NS_RAW_FENTRY(ns, #name, zif_##alias, arg_info, 0)
122#define ZEND_NS_DEP_FALIAS(ns, name, alias, arg_info) ZEND_NS_RAW_FENTRY(ns, #name, zif_##alias, arg_info, ZEND_ACC_DEPRECATED)
123
124#define ZEND_FE_END { NULL, NULL, NULL, 0, 0, NULL, NULL }
125
126#define _ZEND_ARG_INFO_FLAGS(pass_by_ref, is_variadic, is_tentative) \
127 (((pass_by_ref) << _ZEND_SEND_MODE_SHIFT) | ((is_variadic) ? _ZEND_IS_VARIADIC_BIT : 0) | ((is_tentative) ? _ZEND_IS_TENTATIVE_BIT : 0))
128
129/* Arginfo structures without type information */
130#define ZEND_ARG_INFO(pass_by_ref, name) \
131 { #name, ZEND_TYPE_INIT_NONE(_ZEND_ARG_INFO_FLAGS(pass_by_ref, 0, 0)), NULL },
132#define ZEND_ARG_INFO_WITH_DEFAULT_VALUE(pass_by_ref, name, default_value) \
133 { #name, ZEND_TYPE_INIT_NONE(_ZEND_ARG_INFO_FLAGS(pass_by_ref, 0, 0)), default_value },
134#define ZEND_ARG_VARIADIC_INFO(pass_by_ref, name) \
135 { #name, ZEND_TYPE_INIT_NONE(_ZEND_ARG_INFO_FLAGS(pass_by_ref, 1, 0)), NULL },
136
137/* Arginfo structures with simple type information */
138#define ZEND_ARG_TYPE_INFO(pass_by_ref, name, type_hint, allow_null) \
139 { #name, ZEND_TYPE_INIT_CODE(type_hint, allow_null, _ZEND_ARG_INFO_FLAGS(pass_by_ref, 0, 0)), NULL },
140#define ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(pass_by_ref, name, type_hint, allow_null, default_value) \
141 { #name, ZEND_TYPE_INIT_CODE(type_hint, allow_null, _ZEND_ARG_INFO_FLAGS(pass_by_ref, 0, 0)), default_value },
142#define ZEND_ARG_VARIADIC_TYPE_INFO(pass_by_ref, name, type_hint, allow_null) \
143 { #name, ZEND_TYPE_INIT_CODE(type_hint, allow_null, _ZEND_ARG_INFO_FLAGS(pass_by_ref, 1, 0)), NULL },
144
145/* Arginfo structures with complex type information */
146#define ZEND_ARG_TYPE_MASK(pass_by_ref, name, type_mask, default_value) \
147 { #name, ZEND_TYPE_INIT_MASK(type_mask | _ZEND_ARG_INFO_FLAGS(pass_by_ref, 0, 0)), default_value },
148#define ZEND_ARG_OBJ_TYPE_MASK(pass_by_ref, name, class_name, type_mask, default_value) \
149 { #name, ZEND_TYPE_INIT_CLASS_CONST_MASK(#class_name, type_mask | _ZEND_ARG_INFO_FLAGS(pass_by_ref, 0, 0)), default_value },
150#define ZEND_ARG_VARIADIC_OBJ_TYPE_MASK(pass_by_ref, name, class_name, type_mask) \
151 { #name, ZEND_TYPE_INIT_CLASS_CONST_MASK(#class_name, type_mask | _ZEND_ARG_INFO_FLAGS(pass_by_ref, 1, 0)), NULL },
152
153/* Arginfo structures with object type information */
154#define ZEND_ARG_OBJ_INFO(pass_by_ref, name, class_name, allow_null) \
155 { #name, ZEND_TYPE_INIT_CLASS_CONST(#class_name, allow_null, _ZEND_ARG_INFO_FLAGS(pass_by_ref, 0, 0)), NULL },
156#define ZEND_ARG_OBJ_INFO_WITH_DEFAULT_VALUE(pass_by_ref, name, class_name, allow_null, default_value) \
157 { #name, ZEND_TYPE_INIT_CLASS_CONST(#class_name, allow_null, _ZEND_ARG_INFO_FLAGS(pass_by_ref, 0, 0)), default_value },
158#define ZEND_ARG_VARIADIC_OBJ_INFO(pass_by_ref, name, class_name, allow_null) \
159 { #name, ZEND_TYPE_INIT_CLASS_CONST(#class_name, allow_null, _ZEND_ARG_INFO_FLAGS(pass_by_ref, 1, 0)), NULL },
160
161/* Legacy arginfo structures */
162#define ZEND_ARG_ARRAY_INFO(pass_by_ref, name, allow_null) \
163 { #name, ZEND_TYPE_INIT_CODE(IS_ARRAY, allow_null, _ZEND_ARG_INFO_FLAGS(pass_by_ref, 0, 0)), NULL },
164#define ZEND_ARG_CALLABLE_INFO(pass_by_ref, name, allow_null) \
165 { #name, ZEND_TYPE_INIT_CODE(IS_CALLABLE, allow_null, _ZEND_ARG_INFO_FLAGS(pass_by_ref, 0, 0)), NULL },
166
167#define ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX2(name, return_reference, required_num_args, class_name, allow_null, is_tentative_return_type) \
168 static const zend_internal_arg_info name[] = { \
169 { (const char*)(uintptr_t)(required_num_args), \
170 ZEND_TYPE_INIT_CLASS_CONST(#class_name, allow_null, _ZEND_ARG_INFO_FLAGS(return_reference, 0, is_tentative_return_type)), NULL },
171
172#define ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX(name, return_reference, required_num_args, class_name, allow_null) \
173 ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX2(name, return_reference, required_num_args, class_name, allow_null, 0)
174
175#define ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_OBJ_INFO_EX(name, return_reference, required_num_args, class_name, allow_null) \
176 ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX2(name, return_reference, required_num_args, class_name, allow_null, 1)
177
178#define ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO(name, class_name, allow_null) \
179 ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX2(name, 0, -1, class_name, allow_null, 0)
180
181#define ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX2(name, return_reference, required_num_args, type, is_tentative_return_type) \
182 static const zend_internal_arg_info name[] = { \
183 { (const char*)(uintptr_t)(required_num_args), ZEND_TYPE_INIT_MASK(type | _ZEND_ARG_INFO_FLAGS(return_reference, 0, is_tentative_return_type)), NULL },
184
185#define ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX(name, return_reference, required_num_args, type) \
186 ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX2(name, return_reference, required_num_args, type, 0)
187
188#define ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_TYPE_MASK_EX(name, return_reference, required_num_args, type) \
189 ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX2(name, return_reference, required_num_args, type, 1)
190
191#define ZEND_BEGIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX2(name, return_reference, required_num_args, class_name, type, is_tentative_return_type) \
192 static const zend_internal_arg_info name[] = { \
193 { (const char*)(uintptr_t)(required_num_args), ZEND_TYPE_INIT_CLASS_CONST_MASK(#class_name, type | _ZEND_ARG_INFO_FLAGS(return_reference, 0, is_tentative_return_type)), NULL },
194
195#define ZEND_BEGIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX(name, return_reference, required_num_args, class_name, type) \
196 ZEND_BEGIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX2(name, return_reference, required_num_args, class_name, type, 0)
197
198#define ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_OBJ_TYPE_MASK_EX(name, return_reference, required_num_args, class_name, type) \
199 ZEND_BEGIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX2(name, return_reference, required_num_args, class_name, type, 1)
200
201#define ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX2(name, return_reference, required_num_args, type, allow_null, is_tentative_return_type) \
202 static const zend_internal_arg_info name[] = { \
203 { (const char*)(uintptr_t)(required_num_args), ZEND_TYPE_INIT_CODE(type, allow_null, _ZEND_ARG_INFO_FLAGS(return_reference, 0, is_tentative_return_type)), NULL },
204
205#define ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(name, return_reference, required_num_args, type, allow_null) \
206 ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX2(name, return_reference, required_num_args, type, allow_null, 0)
207
208#define ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_TYPE_INFO_EX(name, return_reference, required_num_args, type, allow_null) \
209 ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX2(name, return_reference, required_num_args, type, allow_null, 1)
210
211#define ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO(name, type, allow_null) \
212 ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX2(name, 0, -1, type, allow_null, 0)
213
214#define ZEND_BEGIN_ARG_INFO_EX(name, _unused, return_reference, required_num_args) \
215 static const zend_internal_arg_info name[] = { \
216 { (const char*)(uintptr_t)(required_num_args), ZEND_TYPE_INIT_NONE(_ZEND_ARG_INFO_FLAGS(return_reference, 0, 0)), NULL },
217#define ZEND_BEGIN_ARG_INFO(name, _unused) \
218 ZEND_BEGIN_ARG_INFO_EX(name, {}, ZEND_RETURN_VALUE, -1)
219#define ZEND_END_ARG_INFO() };
220
221/* Name macros */
222#define ZEND_MODULE_STARTUP_N(module) zm_startup_##module
223#define ZEND_MODULE_SHUTDOWN_N(module) zm_shutdown_##module
224#define ZEND_MODULE_ACTIVATE_N(module) zm_activate_##module
225#define ZEND_MODULE_DEACTIVATE_N(module) zm_deactivate_##module
226#define ZEND_MODULE_POST_ZEND_DEACTIVATE_N(module) zm_post_zend_deactivate_##module
227#define ZEND_MODULE_INFO_N(module) zm_info_##module
228#define ZEND_MODULE_GLOBALS_CTOR_N(module) zm_globals_ctor_##module
229#define ZEND_MODULE_GLOBALS_DTOR_N(module) zm_globals_dtor_##module
230
231/* Declaration macros */
232#define ZEND_MODULE_STARTUP_D(module) zend_result ZEND_MODULE_STARTUP_N(module)(INIT_FUNC_ARGS)
233#define ZEND_MODULE_SHUTDOWN_D(module) zend_result ZEND_MODULE_SHUTDOWN_N(module)(SHUTDOWN_FUNC_ARGS)
234#define ZEND_MODULE_ACTIVATE_D(module) zend_result ZEND_MODULE_ACTIVATE_N(module)(INIT_FUNC_ARGS)
235#define ZEND_MODULE_DEACTIVATE_D(module) zend_result ZEND_MODULE_DEACTIVATE_N(module)(SHUTDOWN_FUNC_ARGS)
236#define ZEND_MODULE_POST_ZEND_DEACTIVATE_D(module) zend_result ZEND_MODULE_POST_ZEND_DEACTIVATE_N(module)(void)
237#define ZEND_MODULE_INFO_D(module) ZEND_COLD void ZEND_MODULE_INFO_N(module)(ZEND_MODULE_INFO_FUNC_ARGS)
238#define ZEND_MODULE_GLOBALS_CTOR_D(module) void ZEND_MODULE_GLOBALS_CTOR_N(module)(zend_##module##_globals *module##_globals)
239#define ZEND_MODULE_GLOBALS_DTOR_D(module) void ZEND_MODULE_GLOBALS_DTOR_N(module)(zend_##module##_globals *module##_globals)
240
241#define ZEND_GET_MODULE(name) \
242 BEGIN_EXTERN_C()\
243 ZEND_DLEXPORT zend_module_entry *get_module(void) { return &name##_module_entry; }\
244 END_EXTERN_C()
245
246#define ZEND_BEGIN_MODULE_GLOBALS(module_name) \
247 typedef struct _zend_##module_name##_globals {
248#define ZEND_END_MODULE_GLOBALS(module_name) \
249 } zend_##module_name##_globals;
250
251#ifdef ZTS
252
253#define ZEND_DECLARE_MODULE_GLOBALS(module_name) \
254 ts_rsrc_id module_name##_globals_id;
255#define ZEND_EXTERN_MODULE_GLOBALS(module_name) \
256 extern ts_rsrc_id module_name##_globals_id;
257#define ZEND_INIT_MODULE_GLOBALS(module_name, globals_ctor, globals_dtor) \
258 ts_allocate_id(&module_name##_globals_id, sizeof(zend_##module_name##_globals), (ts_allocate_ctor) globals_ctor, (ts_allocate_dtor) globals_dtor);
259#define ZEND_MODULE_GLOBALS_ACCESSOR(module_name, v) ZEND_TSRMG(module_name##_globals_id, zend_##module_name##_globals *, v)
260#ifdef ZEND_ENABLE_STATIC_TSRMLS_CACHE
261#define ZEND_MODULE_GLOBALS_BULK(module_name) TSRMG_BULK_STATIC(module_name##_globals_id, zend_##module_name##_globals *)
262#else
263#define ZEND_MODULE_GLOBALS_BULK(module_name) TSRMG_BULK(module_name##_globals_id, zend_##module_name##_globals *)
264#endif
265
266#else
267
268#define ZEND_DECLARE_MODULE_GLOBALS(module_name) \
269 zend_##module_name##_globals module_name##_globals;
270#define ZEND_EXTERN_MODULE_GLOBALS(module_name) \
271 extern zend_##module_name##_globals module_name##_globals;
272#define ZEND_INIT_MODULE_GLOBALS(module_name, globals_ctor, globals_dtor) \
273 globals_ctor(&module_name##_globals);
274#define ZEND_MODULE_GLOBALS_ACCESSOR(module_name, v) (module_name##_globals.v)
275#define ZEND_MODULE_GLOBALS_BULK(module_name) (&module_name##_globals)
276
277#endif
278
279#define INIT_CLASS_ENTRY(class_container, class_name, functions) \
280 INIT_CLASS_ENTRY_EX(class_container, class_name, strlen(class_name), functions)
281
282#define INIT_CLASS_ENTRY_EX(class_container, class_name, class_name_len, functions) \
283 { \
284 memset(&class_container, 0, sizeof(zend_class_entry)); \
285 class_container.name = zend_string_init_interned(class_name, class_name_len, 1); \
286 class_container.default_object_handlers = &std_object_handlers; \
287 class_container.info.internal.builtin_functions = functions; \
288 }
289
290#define INIT_CLASS_ENTRY_INIT_METHODS(class_container, functions) \
291 { \
292 class_container.default_object_handlers = &std_object_handlers; \
293 class_container.constructor = NULL; \
294 class_container.destructor = NULL; \
295 class_container.clone = NULL; \
296 class_container.serialize = NULL; \
297 class_container.unserialize = NULL; \
298 class_container.create_object = NULL; \
299 class_container.get_static_method = NULL; \
300 class_container.__call = NULL; \
301 class_container.__callstatic = NULL; \
302 class_container.__tostring = NULL; \
303 class_container.__get = NULL; \
304 class_container.__set = NULL; \
305 class_container.__unset = NULL; \
306 class_container.__isset = NULL; \
307 class_container.__debugInfo = NULL; \
308 class_container.__serialize = NULL; \
309 class_container.__unserialize = NULL; \
310 class_container.parent = NULL; \
311 class_container.num_interfaces = 0; \
312 class_container.trait_names = NULL; \
313 class_container.num_traits = 0; \
314 class_container.trait_aliases = NULL; \
315 class_container.trait_precedences = NULL; \
316 class_container.interfaces = NULL; \
317 class_container.get_iterator = NULL; \
318 class_container.iterator_funcs_ptr = NULL; \
319 class_container.arrayaccess_funcs_ptr = NULL; \
320 class_container.info.internal.module = NULL; \
321 class_container.info.internal.builtin_functions = functions; \
322 }
323
324
325#define INIT_NS_CLASS_ENTRY(class_container, ns, class_name, functions) \
326 INIT_CLASS_ENTRY(class_container, ZEND_NS_NAME(ns, class_name), functions)
327
328#define CE_STATIC_MEMBERS(ce) \
329 ((zval*)ZEND_MAP_PTR_GET((ce)->static_members_table))
330
331#define CE_CONSTANTS_TABLE(ce) \
332 zend_class_constants_table(ce)
333
334#define CE_DEFAULT_PROPERTIES_TABLE(ce) \
335 zend_class_default_properties_table(ce)
336
337#define CE_BACKED_ENUM_TABLE(ce) \
338 zend_class_backed_enum_table(ce)
339
340#define ZEND_FCI_INITIALIZED(fci) ((fci).size != 0)
341#define ZEND_FCC_INITIALIZED(fcc) ((fcc).function_handler != NULL)
342
344
346ZEND_API zend_result zend_get_parameters_array_ex(uint32_t param_count, zval *argument_array);
347
348/* internal function to efficiently copy parameters when executing __call() */
349ZEND_API zend_result zend_copy_parameters_array(uint32_t param_count, zval *argument_array);
350
351#define zend_get_parameters_array(ht, param_count, argument_array) \
352 zend_get_parameters_array_ex(param_count, argument_array)
353#define zend_parse_parameters_none() \
354 (EXPECTED(ZEND_NUM_ARGS() == 0) ? SUCCESS : (zend_wrong_parameters_none_error(), FAILURE))
355#define zend_parse_parameters_none_throw() \
356 zend_parse_parameters_none()
357
358/* Parameter parsing API -- andrei */
359
360#define ZEND_PARSE_PARAMS_THROW 0 /* No longer used, zpp always uses exceptions */
361#define ZEND_PARSE_PARAMS_QUIET (1<<1)
362ZEND_API zend_result zend_parse_parameters(uint32_t num_args, const char *type_spec, ...);
363ZEND_API zend_result zend_parse_parameters_ex(int flags, uint32_t num_args, const char *type_spec, ...);
364/* NOTE: This must have at least one value in __VA_ARGS__ for the expression to be valid */
365#define zend_parse_parameters_throw(num_args, ...) \
366 zend_parse_parameters(num_args, __VA_ARGS__)
367ZEND_API const char *zend_zval_type_name(const zval *arg);
368ZEND_API const char *zend_zval_value_name(const zval *arg);
370
371ZEND_API zend_result zend_parse_method_parameters(uint32_t num_args, zval *this_ptr, const char *type_spec, ...);
372ZEND_API zend_result zend_parse_method_parameters_ex(int flags, uint32_t num_args, zval *this_ptr, const char *type_spec, ...);
373
374ZEND_API zend_result zend_parse_parameter(int flags, uint32_t arg_num, zval *arg, const char *spec, ...);
375
376/* End of parameter parsing API -- andrei */
377
388 const zend_class_entry *ce, const zend_function *fptr, zend_string *lcname, int error_type);
390
395ZEND_API void zend_class_implements(zend_class_entry *class_entry, int num_interfaces, ...);
396
398
399static zend_always_inline zend_result zend_register_class_alias(const char *name, zend_class_entry *ce) {
401}
402#define zend_register_ns_class_alias(ns, name, ce) \
403 zend_register_class_alias_ex(ZEND_NS_NAME(ns, name), sizeof(ZEND_NS_NAME(ns, name))-1, ce, 1)
404
405ZEND_API void zend_disable_functions(const char *function_list);
406ZEND_API zend_result zend_disable_class(const char *class_name, size_t class_name_length);
407
410
411#define IS_CALLABLE_CHECK_SYNTAX_ONLY (1<<0)
412#define IS_CALLABLE_SUPPRESS_DEPRECATIONS (1<<1)
413
418 zval *callable, zend_object *object, zend_execute_data *frame,
419 uint32_t check_flags, zend_fcall_info_cache *fcc, char **error);
420ZEND_API bool zend_is_callable_ex(zval *callable, zend_object *object, uint32_t check_flags, zend_string **callable_name, zend_fcall_info_cache *fcc, char **error);
421ZEND_API bool zend_is_callable(zval *callable, uint32_t check_flags, zend_string **callable_name);
422ZEND_API bool zend_make_callable(zval *callable, zend_string **callable_name);
423ZEND_API const char *zend_get_module_version(const char *module_name);
424ZEND_API zend_result zend_get_module_started(const char *module_name);
425
427
429ZEND_API void zend_declare_property(zend_class_entry *ce, const char *name, size_t name_length, zval *property, int access_type);
430ZEND_API void zend_declare_property_null(zend_class_entry *ce, const char *name, size_t name_length, int access_type);
431ZEND_API void zend_declare_property_bool(zend_class_entry *ce, const char *name, size_t name_length, zend_long value, int access_type);
432ZEND_API void zend_declare_property_long(zend_class_entry *ce, const char *name, size_t name_length, zend_long value, int access_type);
433ZEND_API void zend_declare_property_double(zend_class_entry *ce, const char *name, size_t name_length, double value, int access_type);
434ZEND_API void zend_declare_property_string(zend_class_entry *ce, const char *name, size_t name_length, const char *value, int access_type);
435ZEND_API void zend_declare_property_stringl(zend_class_entry *ce, const char *name, size_t name_length, const char *value, size_t value_len, int access_type);
436
439ZEND_API void zend_declare_class_constant(zend_class_entry *ce, const char *name, size_t name_length, zval *value);
440ZEND_API void zend_declare_class_constant_null(zend_class_entry *ce, const char *name, size_t name_length);
441ZEND_API void zend_declare_class_constant_long(zend_class_entry *ce, const char *name, size_t name_length, zend_long value);
442ZEND_API void zend_declare_class_constant_bool(zend_class_entry *ce, const char *name, size_t name_length, bool value);
443ZEND_API void zend_declare_class_constant_double(zend_class_entry *ce, const char *name, size_t name_length, double value);
444ZEND_API void zend_declare_class_constant_stringl(zend_class_entry *ce, const char *name, size_t name_length, const char *value, size_t value_length);
445ZEND_API void zend_declare_class_constant_string(zend_class_entry *ce, const char *name, size_t name_length, const char *value);
446
450
451static zend_always_inline HashTable *zend_class_constants_table(zend_class_entry *ce) {
452 if ((ce->ce_flags & ZEND_ACC_HAS_AST_CONSTANTS) && ZEND_MAP_PTR(ce->mutable_data)) {
453 zend_class_mutable_data *mutable_data =
455 if (mutable_data && mutable_data->constants_table) {
456 return mutable_data->constants_table;
457 } else {
459 }
460 } else {
461 return &ce->constants_table;
462 }
463}
464
465static zend_always_inline zval *zend_class_default_properties_table(zend_class_entry *ce) {
466 if ((ce->ce_flags & ZEND_ACC_HAS_AST_PROPERTIES) && ZEND_MAP_PTR(ce->mutable_data)) {
467 zend_class_mutable_data *mutable_data =
469 return mutable_data->default_properties_table;
470 } else {
471 return ce->default_properties_table;
472 }
473}
474
475static zend_always_inline void zend_class_set_backed_enum_table(zend_class_entry *ce, HashTable *backed_enum_table)
476{
477 if (ZEND_MAP_PTR(ce->mutable_data) && ce->type == ZEND_USER_CLASS) {
478 zend_class_mutable_data *mutable_data = (zend_class_mutable_data*)ZEND_MAP_PTR_GET_IMM(ce->mutable_data);
479 mutable_data->backed_enum_table = backed_enum_table;
480 } else {
481 ce->backed_enum_table = backed_enum_table;
482 }
483}
484
485static zend_always_inline HashTable *zend_class_backed_enum_table(zend_class_entry *ce)
486{
487 if (ZEND_MAP_PTR(ce->mutable_data) && ce->type == ZEND_USER_CLASS) {
488 zend_class_mutable_data *mutable_data = (zend_class_mutable_data*)ZEND_MAP_PTR_GET_IMM(ce->mutable_data);
489 return mutable_data->backed_enum_table;
490 } else {
491 return ce->backed_enum_table;
492 }
493}
494
496ZEND_API void zend_update_property(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length, zval *value);
497ZEND_API void zend_update_property_null(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length);
498ZEND_API void zend_update_property_bool(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length, zend_long value);
499ZEND_API void zend_update_property_long(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length, zend_long value);
500ZEND_API void zend_update_property_double(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length, double value);
501ZEND_API void zend_update_property_str(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length, zend_string *value);
502ZEND_API void zend_update_property_string(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length, const char *value);
503ZEND_API void zend_update_property_stringl(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length, const char *value, size_t value_length);
504ZEND_API void zend_unset_property(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length);
505
512ZEND_API zend_result zend_update_static_property_string(zend_class_entry *scope, const char *name, size_t name_length, const char *value);
513ZEND_API zend_result zend_update_static_property_stringl(zend_class_entry *scope, const char *name, size_t name_length, const char *value, size_t value_length);
514
516ZEND_API zval *zend_read_property(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length, bool silent, zval *rv);
517
519ZEND_API zval *zend_read_static_property(zend_class_entry *scope, const char *name, size_t name_length, bool silent);
520
521ZEND_API const char *zend_get_type_by_const(int type);
522
523#define ZEND_THIS (&EX(This))
524
525#define hasThis() (Z_TYPE_P(ZEND_THIS) == IS_OBJECT)
526#define getThis() (hasThis() ? ZEND_THIS : NULL)
527#define ZEND_IS_METHOD_CALL() (EX(func)->common.scope != NULL)
528
529#define WRONG_PARAM_COUNT ZEND_WRONG_PARAM_COUNT()
530#define ZEND_NUM_ARGS() EX_NUM_ARGS()
531#define ZEND_WRONG_PARAM_COUNT() { zend_wrong_param_count(); return; }
532
533#ifndef ZEND_WIN32
534#define DLEXPORT
535#endif
536
537#define array_init(arg) ZVAL_ARR((arg), zend_new_array(0))
538#define array_init_size(arg, size) ZVAL_ARR((arg), zend_new_array(size))
541ZEND_API zend_result object_init_with_constructor(zval *arg, zend_class_entry *class_type, uint32_t param_count, zval *params, HashTable *named_params);
545ZEND_API void object_properties_load(zend_object *object, HashTable *properties);
546
547ZEND_API void zend_merge_properties(zval *obj, HashTable *properties);
548
549ZEND_API void add_assoc_long_ex(zval *arg, const char *key, size_t key_len, zend_long n);
550ZEND_API void add_assoc_null_ex(zval *arg, const char *key, size_t key_len);
551ZEND_API void add_assoc_bool_ex(zval *arg, const char *key, size_t key_len, bool b);
552ZEND_API void add_assoc_resource_ex(zval *arg, const char *key, size_t key_len, zend_resource *r);
553ZEND_API void add_assoc_double_ex(zval *arg, const char *key, size_t key_len, double d);
554ZEND_API void add_assoc_str_ex(zval *arg, const char *key, size_t key_len, zend_string *str);
555ZEND_API void add_assoc_string_ex(zval *arg, const char *key, size_t key_len, const char *str);
556ZEND_API void add_assoc_stringl_ex(zval *arg, const char *key, size_t key_len, const char *str, size_t length);
557ZEND_API void add_assoc_array_ex(zval *arg, const char *key, size_t key_len, zend_array *arr);
558ZEND_API void add_assoc_object_ex(zval *arg, const char *key, size_t key_len, zend_object *obj);
559ZEND_API void add_assoc_reference_ex(zval *arg, const char *key, size_t key_len, zend_reference *ref);
560ZEND_API void add_assoc_zval_ex(zval *arg, const char *key, size_t key_len, zval *value);
561
562static zend_always_inline void add_assoc_long(zval *arg, const char *key, zend_long n) {
564}
565static zend_always_inline void add_assoc_null(zval *arg, const char *key) {
567}
568static zend_always_inline void add_assoc_bool(zval *arg, const char *key, bool b) {
570}
571static zend_always_inline void add_assoc_resource(zval *arg, const char *key, zend_resource *r) {
573}
574static zend_always_inline void add_assoc_double(zval *arg, const char *key, double d) {
576}
577static zend_always_inline void add_assoc_str(zval *arg, const char *key, zend_string *str) {
579}
580static zend_always_inline void add_assoc_string(zval *arg, const char *key, const char *str) {
582}
583static zend_always_inline void add_assoc_stringl(zval *arg, const char *key, const char *str, size_t length) {
584 add_assoc_stringl_ex(arg, key, strlen(key), str, length);
585}
586static zend_always_inline void add_assoc_array(zval *arg, const char *key, zend_array *arr) {
588}
589static zend_always_inline void add_assoc_object(zval *arg, const char *key, zend_object *obj) {
591}
592static zend_always_inline void add_assoc_reference(zval *arg, const char *key, zend_reference *ref) {
594}
595static zend_always_inline void add_assoc_zval(zval *arg, const char *key, zval *value) {
597}
598
601ZEND_API void add_index_bool(zval *arg, zend_ulong index, bool b);
603ZEND_API void add_index_double(zval *arg, zend_ulong index, double d);
605ZEND_API void add_index_string(zval *arg, zend_ulong index, const char *str);
606ZEND_API void add_index_stringl(zval *arg, zend_ulong index, const char *str, size_t length);
610
611static zend_always_inline zend_result add_index_zval(zval *arg, zend_ulong index, zval *value)
612{
614}
615
623ZEND_API zend_result add_next_index_stringl(zval *arg, const char *str, size_t length);
627
628static zend_always_inline zend_result add_next_index_zval(zval *arg, zval *value)
629{
631}
632
634
635ZEND_API void add_property_long_ex(zval *arg, const char *key, size_t key_len, zend_long l);
636ZEND_API void add_property_null_ex(zval *arg, const char *key, size_t key_len);
637ZEND_API void add_property_bool_ex(zval *arg, const char *key, size_t key_len, zend_long b);
638ZEND_API void add_property_resource_ex(zval *arg, const char *key, size_t key_len, zend_resource *r);
639ZEND_API void add_property_double_ex(zval *arg, const char *key, size_t key_len, double d);
640ZEND_API void add_property_str_ex(zval *arg, const char *key, size_t key_len, zend_string *str);
641ZEND_API void add_property_string_ex(zval *arg, const char *key, size_t key_len, const char *str);
642ZEND_API void add_property_stringl_ex(zval *arg, const char *key, size_t key_len, const char *str, size_t length);
643ZEND_API void add_property_array_ex(zval *arg, const char *key, size_t key_len, zend_array *arr);
644ZEND_API void add_property_object_ex(zval *arg, const char *key, size_t key_len, zend_object *obj);
645ZEND_API void add_property_reference_ex(zval *arg, const char *key, size_t key_len, zend_reference *ref);
646ZEND_API void add_property_zval_ex(zval *arg, const char *key, size_t key_len, zval *value);
647
648static zend_always_inline void add_property_long(zval *arg, const char *key, zend_long n) {
650}
651static zend_always_inline void add_property_null(zval *arg, const char *key) {
653}
654static zend_always_inline void add_property_bool(zval *arg, const char *key, bool b) {
656}
657static zend_always_inline void add_property_resource(zval *arg, const char *key, zend_resource *r) {
659}
660static zend_always_inline void add_property_double(zval *arg, const char *key, double d) {
662}
663static zend_always_inline void add_property_str(zval *arg, const char *key, zend_string *str) {
665}
666static zend_always_inline void add_property_string(zval *arg, const char *key, const char *str) {
668}
669static zend_always_inline void add_property_stringl(zval *arg, const char *key, const char *str, size_t length) {
670 add_property_stringl_ex(arg, key, strlen(key), str, length);
671}
672static zend_always_inline void add_property_array(zval *arg, const char *key, zend_array *arr) {
674}
675static zend_always_inline void add_property_object(zval *arg, const char *key, zend_object *obj) {
677}
678static zend_always_inline void add_property_reference(zval *arg, const char *key, zend_reference *ref) {
680}
681static zend_always_inline void add_property_zval(zval *arg, const char *key, zval *value) {
683}
684
685ZEND_API zend_result _call_user_function_impl(zval *object, zval *function_name, zval *retval_ptr, uint32_t param_count, zval params[], HashTable *named_params);
686
687#define call_user_function(function_table, object, function_name, retval_ptr, param_count, params) \
688 _call_user_function_impl(object, function_name, retval_ptr, param_count, params, NULL)
689
690#define call_user_function_named(function_table, object, function_name, retval_ptr, param_count, params, named_params) \
691 _call_user_function_impl(object, function_name, retval_ptr, param_count, params, named_params)
692
695
704ZEND_API zend_result zend_fcall_info_init(zval *callable, uint32_t check_flags, zend_fcall_info *fci, zend_fcall_info_cache *fcc, zend_string **callable_name, char **error);
705
709ZEND_API void zend_fcall_info_args_clear(zend_fcall_info *fci, bool free_mem);
710
714ZEND_API void zend_fcall_info_args_save(zend_fcall_info *fci, uint32_t *param_count, zval **params);
715
718ZEND_API void zend_fcall_info_args_restore(zend_fcall_info *fci, uint32_t param_count, zval *params);
719
725
730ZEND_API void zend_fcall_info_argp(zend_fcall_info *fci, uint32_t argc, zval *argv);
731
736ZEND_API void zend_fcall_info_argv(zend_fcall_info *fci, uint32_t argc, va_list *argv);
737
742ZEND_API void zend_fcall_info_argn(zend_fcall_info *fci, uint32_t argc, ...);
743
748
749/* Zend FCC API to store and handle PHP userland functions */
750static zend_always_inline bool zend_fcc_equals(const zend_fcall_info_cache* a, const zend_fcall_info_cache* b)
751{
752 if (UNEXPECTED((a->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) &&
754 return a->object == b->object
755 && a->calling_scope == b->calling_scope
756 && a->closure == b->closure
757 && zend_string_equals(a->function_handler->common.function_name, b->function_handler->common.function_name)
758 ;
759 }
760 return a->function_handler == b->function_handler
761 && a->object == b->object
762 && a->calling_scope == b->calling_scope
763 && a->closure == b->closure
764 ;
765}
766
767static zend_always_inline void zend_fcc_addref(zend_fcall_info_cache *fcc)
768{
769 ZEND_ASSERT(ZEND_FCC_INITIALIZED(*fcc) && "FCC Not initialized, possibly refetch trampoline freed by ZPP?");
770 /* If the cached trampoline is set, free it */
771 if (UNEXPECTED(fcc->function_handler == &EG(trampoline))) {
773
776 fcc->function_handler = copy;
777 }
778 if (fcc->object) {
779 GC_ADDREF(fcc->object);
780 }
781 if (fcc->closure) {
782 GC_ADDREF(fcc->closure);
783 }
784}
785
786static zend_always_inline void zend_fcc_dup(/* restrict */ zend_fcall_info_cache *dest, const zend_fcall_info_cache *src)
787{
788 memcpy(dest, src, sizeof(zend_fcall_info_cache));
789 zend_fcc_addref(dest);
790}
791
792static zend_always_inline void zend_fcc_dtor(zend_fcall_info_cache *fcc)
793{
795 if (fcc->object) {
796 OBJ_RELEASE(fcc->object);
797 }
798 /* Need to free potential trampoline (__call/__callStatic) copied function handler before releasing the closure */
800 if (fcc->closure) {
801 OBJ_RELEASE(fcc->closure);
802 }
804}
805
807
808/* Moved out of zend_gc.h because zend_fcall_info_cache is an unknown type in that header */
809static zend_always_inline void zend_get_gc_buffer_add_fcc(zend_get_gc_buffer *gc_buffer, zend_fcall_info_cache *fcc)
810{
812 if (fcc->object) {
813 zend_get_gc_buffer_add_obj(gc_buffer, fcc->object);
814 }
815 if (fcc->closure) {
816 zend_get_gc_buffer_add_obj(gc_buffer, fcc->closure);
817 }
818}
819
820/* Can only return FAILURE if EG(active) is false during late engine shutdown.
821 * If the call or call setup throws, EG(exception) will be set and the retval
822 * will be UNDEF. Otherwise, the retval will be a non-UNDEF value. */
824
825/* Call the FCI/FCC pair while setting the call return value to the passed zval*. */
826static zend_always_inline zend_result zend_call_function_with_return_value(
828{
829 ZEND_ASSERT(retval && "Use zend_call_function() directly if not providing a retval");
830 fci->retval = retval;
831 return zend_call_function(fci, fci_cache);
832}
833
834/* Call the provided zend_function with the given params.
835 * If retval_ptr is NULL, the return value is discarded.
836 * If object is NULL, this must be a free function or static call.
837 * called_scope must be provided for instance and static method calls. */
839 zend_function *fn, zend_object *object, zend_class_entry *called_scope, zval *retval_ptr,
840 uint32_t param_count, zval *params, HashTable *named_params);
841
842static zend_always_inline void zend_call_known_fcc(
843 const zend_fcall_info_cache *fcc, zval *retval_ptr, uint32_t param_count, zval *params, HashTable *named_params)
844{
846 /* Need to copy trampolines as they get released after they are called */
847 if (UNEXPECTED(func->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE)) {
850 zend_string_addref(func->op_array.function_name);
851 }
852 zend_call_known_function(func, fcc->object, fcc->called_scope, retval_ptr, param_count, params, named_params);
853}
854
855/* Call the provided zend_function instance method on an object. */
856static zend_always_inline void zend_call_known_instance_method(
858 uint32_t param_count, zval *params)
859{
860 zend_call_known_function(fn, object, object->ce, retval_ptr, param_count, params, NULL);
861}
862
863static zend_always_inline void zend_call_known_instance_method_with_0_params(
865{
866 zend_call_known_instance_method(fn, object, retval_ptr, 0, NULL);
867}
868
869static zend_always_inline void zend_call_known_instance_method_with_1_params(
870 zend_function *fn, zend_object *object, zval *retval_ptr, zval *param)
871{
872 zend_call_known_instance_method(fn, object, retval_ptr, 1, param);
873}
874
876 zend_function *fn, zend_object *object, zval *retval_ptr, zval *param1, zval *param2);
877
878/* Call method if it exists. Return FAILURE if method does not exist or call failed.
879 * If FAILURE is returned, retval will be UNDEF. As such, destroying retval unconditionally
880 * is legal. */
882 zend_object *object, zend_string *method_name, zval *retval,
883 uint32_t param_count, zval *params);
884
885ZEND_API zend_result zend_set_hash_symbol(zval *symbol, const char *name, size_t name_length, bool is_ref, int num_symbol_tables, ...);
886
888
893ZEND_API zend_result zend_set_local_var_str(const char *name, size_t len, zval *value, bool force);
894
895static zend_always_inline zend_result zend_forbid_dynamic_call(void)
896{
897 zend_execute_data *ex = EG(current_execute_data);
898 ZEND_ASSERT(ex != NULL && ex->func != NULL);
899
901 zend_string *function_or_method_name = get_active_function_or_method_name();
902 zend_throw_error(NULL, "Cannot call %.*s() dynamically",
903 (int) ZSTR_LEN(function_or_method_name), ZSTR_VAL(function_or_method_name));
904 zend_string_release(function_or_method_name);
905 return FAILURE;
906 }
907
908 return SUCCESS;
909}
910
911ZEND_API ZEND_COLD const char *zend_get_object_type_case(const zend_class_entry *ce, bool upper_case);
912
913static zend_always_inline const char *zend_get_object_type(const zend_class_entry *ce)
914{
915 return zend_get_object_type_case(ce, false);
916}
917
918static zend_always_inline const char *zend_get_object_type_uc(const zend_class_entry *ce)
919{
920 return zend_get_object_type_case(ce, true);
921}
922
923ZEND_API bool zend_is_iterable(const zval *iterable);
924
925ZEND_API bool zend_is_countable(const zval *countable);
926
928 zval *default_value_zval, zend_internal_arg_info *arg_info);
929
931
932#if ZEND_DEBUG
933#define CHECK_ZVAL_STRING(str) \
934 ZEND_ASSERT(ZSTR_VAL(str)[ZSTR_LEN(str)] == '\0' && "String is not null-terminated");
935#else
936#define CHECK_ZVAL_STRING(z)
937#endif
938
939static zend_always_inline bool zend_str_has_nul_byte(const zend_string *str)
940{
941 return ZSTR_LEN(str) != strlen(ZSTR_VAL(str));
942}
943static zend_always_inline bool zend_char_has_nul_byte(const char *s, size_t known_length)
944{
945 return known_length != strlen(s);
946}
947
948/* Compatibility with PHP 8.1 and below */
949#define CHECK_ZVAL_NULL_PATH(p) zend_str_has_nul_byte(Z_STR_P(p))
950#define CHECK_NULL_PATH(p, l) zend_char_has_nul_byte(p, l)
951
952#define ZVAL_STRINGL(z, s, l) do { \
953 ZVAL_NEW_STR(z, zend_string_init(s, l, 0)); \
954 } while (0)
955
956#define ZVAL_STRING(z, s) do { \
957 const char *_s = (s); \
958 ZVAL_STRINGL(z, _s, strlen(_s)); \
959 } while (0)
960
961#define ZVAL_EMPTY_STRING(z) do { \
962 ZVAL_INTERNED_STR(z, ZSTR_EMPTY_ALLOC()); \
963 } while (0)
964
965#define ZVAL_PSTRINGL(z, s, l) do { \
966 ZVAL_NEW_STR(z, zend_string_init(s, l, 1)); \
967 } while (0)
968
969#define ZVAL_PSTRING(z, s) do { \
970 const char *_s = (s); \
971 ZVAL_PSTRINGL(z, _s, strlen(_s)); \
972 } while (0)
973
974#define ZVAL_EMPTY_PSTRING(z) do { \
975 ZVAL_PSTRINGL(z, "", 0); \
976 } while (0)
977
978#define ZVAL_CHAR(z, c) do { \
979 char _c = (c); \
980 ZVAL_INTERNED_STR(z, ZSTR_CHAR((zend_uchar) _c)); \
981 } while (0)
982
983#define ZVAL_STRINGL_FAST(z, s, l) do { \
984 ZVAL_STR(z, zend_string_init_fast(s, l)); \
985 } while (0)
986
987#define ZVAL_STRING_FAST(z, s) do { \
988 const char *_s = (s); \
989 ZVAL_STRINGL_FAST(z, _s, strlen(_s)); \
990 } while (0)
991
992#define ZVAL_ZVAL(z, zv, copy, dtor) do { \
993 zval *__z = (z); \
994 zval *__zv = (zv); \
995 if (EXPECTED(!Z_ISREF_P(__zv))) { \
996 if (copy && !dtor) { \
997 ZVAL_COPY(__z, __zv); \
998 } else { \
999 ZVAL_COPY_VALUE(__z, __zv); \
1000 } \
1001 } else { \
1002 ZVAL_COPY(__z, Z_REFVAL_P(__zv)); \
1003 if (dtor || !copy) { \
1004 zval_ptr_dtor(__zv); \
1005 } \
1006 } \
1007 } while (0)
1008
1009#define RETVAL_BOOL(b) ZVAL_BOOL(return_value, b)
1010#define RETVAL_NULL() ZVAL_NULL(return_value)
1011#define RETVAL_LONG(l) ZVAL_LONG(return_value, l)
1012#define RETVAL_DOUBLE(d) ZVAL_DOUBLE(return_value, d)
1013#define RETVAL_STR(s) ZVAL_STR(return_value, s)
1014#define RETVAL_INTERNED_STR(s) ZVAL_INTERNED_STR(return_value, s)
1015#define RETVAL_NEW_STR(s) ZVAL_NEW_STR(return_value, s)
1016#define RETVAL_STR_COPY(s) ZVAL_STR_COPY(return_value, s)
1017#define RETVAL_STRING(s) ZVAL_STRING(return_value, s)
1018#define RETVAL_STRINGL(s, l) ZVAL_STRINGL(return_value, s, l)
1019#define RETVAL_STRING_FAST(s) ZVAL_STRING_FAST(return_value, s)
1020#define RETVAL_STRINGL_FAST(s, l) ZVAL_STRINGL_FAST(return_value, s, l)
1021#define RETVAL_EMPTY_STRING() ZVAL_EMPTY_STRING(return_value)
1022#define RETVAL_CHAR(c) ZVAL_CHAR(return_value, c)
1023#define RETVAL_RES(r) ZVAL_RES(return_value, r)
1024#define RETVAL_ARR(r) ZVAL_ARR(return_value, r)
1025#define RETVAL_EMPTY_ARRAY() ZVAL_EMPTY_ARRAY(return_value)
1026#define RETVAL_OBJ(r) ZVAL_OBJ(return_value, r)
1027#define RETVAL_OBJ_COPY(r) ZVAL_OBJ_COPY(return_value, r)
1028#define RETVAL_COPY(zv) ZVAL_COPY(return_value, zv)
1029#define RETVAL_COPY_VALUE(zv) ZVAL_COPY_VALUE(return_value, zv)
1030#define RETVAL_COPY_DEREF(zv) ZVAL_COPY_DEREF(return_value, zv)
1031#define RETVAL_ZVAL(zv, copy, dtor) ZVAL_ZVAL(return_value, zv, copy, dtor)
1032#define RETVAL_FALSE ZVAL_FALSE(return_value)
1033#define RETVAL_TRUE ZVAL_TRUE(return_value)
1034
1035#define RETURN_BOOL(b) do { RETVAL_BOOL(b); return; } while (0)
1036#define RETURN_NULL() do { RETVAL_NULL(); return;} while (0)
1037#define RETURN_LONG(l) do { RETVAL_LONG(l); return; } while (0)
1038#define RETURN_DOUBLE(d) do { RETVAL_DOUBLE(d); return; } while (0)
1039#define RETURN_STR(s) do { RETVAL_STR(s); return; } while (0)
1040#define RETURN_INTERNED_STR(s) do { RETVAL_INTERNED_STR(s); return; } while (0)
1041#define RETURN_NEW_STR(s) do { RETVAL_NEW_STR(s); return; } while (0)
1042#define RETURN_STR_COPY(s) do { RETVAL_STR_COPY(s); return; } while (0)
1043#define RETURN_STRING(s) do { RETVAL_STRING(s); return; } while (0)
1044#define RETURN_STRINGL(s, l) do { RETVAL_STRINGL(s, l); return; } while (0)
1045#define RETURN_STRING_FAST(s) do { RETVAL_STRING_FAST(s); return; } while (0)
1046#define RETURN_STRINGL_FAST(s, l) do { RETVAL_STRINGL_FAST(s, l); return; } while (0)
1047#define RETURN_EMPTY_STRING() do { RETVAL_EMPTY_STRING(); return; } while (0)
1048#define RETURN_CHAR(c) do { RETVAL_CHAR(c); return; } while (0)
1049#define RETURN_RES(r) do { RETVAL_RES(r); return; } while (0)
1050#define RETURN_ARR(r) do { RETVAL_ARR(r); return; } while (0)
1051#define RETURN_EMPTY_ARRAY() do { RETVAL_EMPTY_ARRAY(); return; } while (0)
1052#define RETURN_OBJ(r) do { RETVAL_OBJ(r); return; } while (0)
1053#define RETURN_OBJ_COPY(r) do { RETVAL_OBJ_COPY(r); return; } while (0)
1054#define RETURN_COPY(zv) do { RETVAL_COPY(zv); return; } while (0)
1055#define RETURN_COPY_VALUE(zv) do { RETVAL_COPY_VALUE(zv); return; } while (0)
1056#define RETURN_COPY_DEREF(zv) do { RETVAL_COPY_DEREF(zv); return; } while (0)
1057#define RETURN_ZVAL(zv, copy, dtor) do { RETVAL_ZVAL(zv, copy, dtor); return; } while (0)
1058#define RETURN_FALSE do { RETVAL_FALSE; return; } while (0)
1059#define RETURN_TRUE do { RETVAL_TRUE; return; } while (0)
1060#define RETURN_THROWS() do { ZEND_ASSERT(EG(exception)); (void) return_value; return; } while (0)
1061
1062#define HASH_OF(p) (Z_TYPE_P(p)==IS_ARRAY ? Z_ARRVAL_P(p) : ((Z_TYPE_P(p)==IS_OBJECT ? Z_OBJ_HT_P(p)->get_properties(Z_OBJ_P(p)) : NULL)))
1063#define ZVAL_IS_NULL(z) (Z_TYPE_P(z) == IS_NULL)
1064
1065/* For compatibility */
1066#define ZEND_MINIT ZEND_MODULE_STARTUP_N
1067#define ZEND_MSHUTDOWN ZEND_MODULE_SHUTDOWN_N
1068#define ZEND_RINIT ZEND_MODULE_ACTIVATE_N
1069#define ZEND_RSHUTDOWN ZEND_MODULE_DEACTIVATE_N
1070#define ZEND_MINFO ZEND_MODULE_INFO_N
1071#define ZEND_GINIT(module) ((void (*)(void*))(ZEND_MODULE_GLOBALS_CTOR_N(module)))
1072#define ZEND_GSHUTDOWN(module) ((void (*)(void*))(ZEND_MODULE_GLOBALS_DTOR_N(module)))
1073
1074#define ZEND_MINIT_FUNCTION ZEND_MODULE_STARTUP_D
1075#define ZEND_MSHUTDOWN_FUNCTION ZEND_MODULE_SHUTDOWN_D
1076#define ZEND_RINIT_FUNCTION ZEND_MODULE_ACTIVATE_D
1077#define ZEND_RSHUTDOWN_FUNCTION ZEND_MODULE_DEACTIVATE_D
1078#define ZEND_MINFO_FUNCTION ZEND_MODULE_INFO_D
1079#define ZEND_GINIT_FUNCTION ZEND_MODULE_GLOBALS_CTOR_D
1080#define ZEND_GSHUTDOWN_FUNCTION ZEND_MODULE_GLOBALS_DTOR_D
1081
1082/* May modify arg in-place. Will free arg in failure case (and take ownership in success case).
1083 * Prefer using the ZEND_TRY_ASSIGN_* macros over these APIs. */
1086
1099
1100#define _ZEND_TRY_ASSIGN_NULL(zv, is_ref) do { \
1101 zval *_zv = zv; \
1102 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \
1103 zend_reference *ref = Z_REF_P(_zv); \
1104 if (UNEXPECTED(ZEND_REF_HAS_TYPE_SOURCES(ref))) { \
1105 zend_try_assign_typed_ref_null(ref); \
1106 break; \
1107 } \
1108 _zv = &ref->val; \
1109 } \
1110 zval_ptr_dtor(_zv); \
1111 ZVAL_NULL(_zv); \
1112} while (0)
1113
1114#define ZEND_TRY_ASSIGN_NULL(zv) \
1115 _ZEND_TRY_ASSIGN_NULL(zv, 0)
1116
1117#define ZEND_TRY_ASSIGN_REF_NULL(zv) do { \
1118 ZEND_ASSERT(Z_ISREF_P(zv)); \
1119 _ZEND_TRY_ASSIGN_NULL(zv, 1); \
1120} while (0)
1121
1122#define _ZEND_TRY_ASSIGN_FALSE(zv, is_ref) do { \
1123 zval *_zv = zv; \
1124 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \
1125 zend_reference *ref = Z_REF_P(_zv); \
1126 if (UNEXPECTED(ZEND_REF_HAS_TYPE_SOURCES(ref))) { \
1127 zend_try_assign_typed_ref_bool(ref, 0); \
1128 break; \
1129 } \
1130 _zv = &ref->val; \
1131 } \
1132 zval_ptr_dtor(_zv); \
1133 ZVAL_FALSE(_zv); \
1134} while (0)
1135
1136#define ZEND_TRY_ASSIGN_FALSE(zv) \
1137 _ZEND_TRY_ASSIGN_FALSE(zv, 0)
1138
1139#define ZEND_TRY_ASSIGN_REF_FALSE(zv) do { \
1140 ZEND_ASSERT(Z_ISREF_P(zv)); \
1141 _ZEND_TRY_ASSIGN_FALSE(zv, 1); \
1142} while (0)
1143
1144#define _ZEND_TRY_ASSIGN_TRUE(zv, is_ref) do { \
1145 zval *_zv = zv; \
1146 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \
1147 zend_reference *ref = Z_REF_P(_zv); \
1148 if (UNEXPECTED(ZEND_REF_HAS_TYPE_SOURCES(ref))) { \
1149 zend_try_assign_typed_ref_bool(ref, 1); \
1150 break; \
1151 } \
1152 _zv = &ref->val; \
1153 } \
1154 zval_ptr_dtor(_zv); \
1155 ZVAL_TRUE(_zv); \
1156} while (0)
1157
1158#define ZEND_TRY_ASSIGN_TRUE(zv) \
1159 _ZEND_TRY_ASSIGN_TRUE(zv, 0)
1160
1161#define ZEND_TRY_ASSIGN_REF_TRUE(zv) do { \
1162 ZEND_ASSERT(Z_ISREF_P(zv)); \
1163 _ZEND_TRY_ASSIGN_TRUE(zv, 1); \
1164} while (0)
1165
1166#define _ZEND_TRY_ASSIGN_BOOL(zv, bval, is_ref) do { \
1167 zval *_zv = zv; \
1168 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \
1169 zend_reference *ref = Z_REF_P(_zv); \
1170 if (UNEXPECTED(ZEND_REF_HAS_TYPE_SOURCES(ref))) { \
1171 zend_try_assign_typed_ref_bool(ref, 1); \
1172 break; \
1173 } \
1174 _zv = &ref->val; \
1175 } \
1176 zval_ptr_dtor(_zv); \
1177 ZVAL_BOOL(_zv, bval); \
1178} while (0)
1179
1180#define ZEND_TRY_ASSIGN_BOOL(zv, bval) \
1181 _ZEND_TRY_ASSIGN_BOOL(zv, bval, 0)
1182
1183#define ZEND_TRY_ASSIGN_REF_BOOL(zv, bval) do { \
1184 ZEND_ASSERT(Z_ISREF_P(zv)); \
1185 _ZEND_TRY_ASSIGN_BOOL(zv, bval, 1); \
1186} while (0)
1187
1188#define _ZEND_TRY_ASSIGN_LONG(zv, lval, is_ref) do { \
1189 zval *_zv = zv; \
1190 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \
1191 zend_reference *ref = Z_REF_P(_zv); \
1192 if (UNEXPECTED(ZEND_REF_HAS_TYPE_SOURCES(ref))) { \
1193 zend_try_assign_typed_ref_long(ref, lval); \
1194 break; \
1195 } \
1196 _zv = &ref->val; \
1197 } \
1198 zval_ptr_dtor(_zv); \
1199 ZVAL_LONG(_zv, lval); \
1200} while (0)
1201
1202#define ZEND_TRY_ASSIGN_LONG(zv, lval) \
1203 _ZEND_TRY_ASSIGN_LONG(zv, lval, 0)
1204
1205#define ZEND_TRY_ASSIGN_REF_LONG(zv, lval) do { \
1206 ZEND_ASSERT(Z_ISREF_P(zv)); \
1207 _ZEND_TRY_ASSIGN_LONG(zv, lval, 1); \
1208} while (0)
1209
1210#define _ZEND_TRY_ASSIGN_DOUBLE(zv, dval, is_ref) do { \
1211 zval *_zv = zv; \
1212 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \
1213 zend_reference *ref = Z_REF_P(_zv); \
1214 if (UNEXPECTED(ZEND_REF_HAS_TYPE_SOURCES(ref))) { \
1215 zend_try_assign_typed_ref_double(ref, dval); \
1216 break; \
1217 } \
1218 _zv = &ref->val; \
1219 } \
1220 zval_ptr_dtor(_zv); \
1221 ZVAL_DOUBLE(_zv, dval); \
1222} while (0)
1223
1224#define ZEND_TRY_ASSIGN_DOUBLE(zv, dval) \
1225 _ZEND_TRY_ASSIGN_DOUBLE(zv, dval, 0)
1226
1227#define ZEND_TRY_ASSIGN_REF_DOUBLE(zv, dval) do { \
1228 ZEND_ASSERT(Z_ISREF_P(zv)); \
1229 _ZEND_TRY_ASSIGN_DOUBLE(zv, dval, 1); \
1230} while (0)
1231
1232#define _ZEND_TRY_ASSIGN_EMPTY_STRING(zv, is_ref) do { \
1233 zval *_zv = zv; \
1234 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \
1235 zend_reference *ref = Z_REF_P(_zv); \
1236 if (UNEXPECTED(ZEND_REF_HAS_TYPE_SOURCES(ref))) { \
1237 zend_try_assign_typed_ref_empty_string(ref); \
1238 break; \
1239 } \
1240 _zv = &ref->val; \
1241 } \
1242 zval_ptr_dtor(_zv); \
1243 ZVAL_EMPTY_STRING(_zv); \
1244} while (0)
1245
1246#define ZEND_TRY_ASSIGN_EMPTY_STRING(zv) \
1247 _ZEND_TRY_ASSIGN_EMPTY_STRING(zv, 0)
1248
1249#define ZEND_TRY_ASSIGN_REF_EMPTY_STRING(zv) do { \
1250 ZEND_ASSERT(Z_ISREF_P(zv)); \
1251 _ZEND_TRY_ASSIGN_EMPTY_STRING(zv, 1); \
1252} while (0)
1253
1254#define _ZEND_TRY_ASSIGN_STR(zv, str, is_ref) do { \
1255 zval *_zv = zv; \
1256 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \
1257 zend_reference *ref = Z_REF_P(_zv); \
1258 if (UNEXPECTED(ZEND_REF_HAS_TYPE_SOURCES(ref))) { \
1259 zend_try_assign_typed_ref_str(ref, str); \
1260 break; \
1261 } \
1262 _zv = &ref->val; \
1263 } \
1264 zval_ptr_dtor(_zv); \
1265 ZVAL_STR(_zv, str); \
1266} while (0)
1267
1268#define ZEND_TRY_ASSIGN_STR(zv, str) \
1269 _ZEND_TRY_ASSIGN_STR(zv, str, 0)
1270
1271#define ZEND_TRY_ASSIGN_REF_STR(zv, str) do { \
1272 ZEND_ASSERT(Z_ISREF_P(zv)); \
1273 _ZEND_TRY_ASSIGN_STR(zv, str, 1); \
1274} while (0)
1275
1276#define _ZEND_TRY_ASSIGN_NEW_STR(zv, str, is_str) do { \
1277 zval *_zv = zv; \
1278 if (is_str || UNEXPECTED(Z_ISREF_P(_zv))) { \
1279 zend_reference *ref = Z_REF_P(_zv); \
1280 if (UNEXPECTED(ZEND_REF_HAS_TYPE_SOURCES(ref))) { \
1281 zend_try_assign_typed_ref_str(ref, str); \
1282 break; \
1283 } \
1284 _zv = &ref->val; \
1285 } \
1286 zval_ptr_dtor(_zv); \
1287 ZVAL_NEW_STR(_zv, str); \
1288} while (0)
1289
1290#define ZEND_TRY_ASSIGN_NEW_STR(zv, str) \
1291 _ZEND_TRY_ASSIGN_NEW_STR(zv, str, 0)
1292
1293#define ZEND_TRY_ASSIGN_REF_NEW_STR(zv, str) do { \
1294 ZEND_ASSERT(Z_ISREF_P(zv)); \
1295 _ZEND_TRY_ASSIGN_NEW_STR(zv, str, 1); \
1296} while (0)
1297
1298#define _ZEND_TRY_ASSIGN_STRING(zv, string, is_ref) do { \
1299 zval *_zv = zv; \
1300 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \
1301 zend_reference *ref = Z_REF_P(_zv); \
1302 if (UNEXPECTED(ZEND_REF_HAS_TYPE_SOURCES(ref))) { \
1303 zend_try_assign_typed_ref_string(ref, string); \
1304 break; \
1305 } \
1306 _zv = &ref->val; \
1307 } \
1308 zval_ptr_dtor(_zv); \
1309 ZVAL_STRING(_zv, string); \
1310} while (0)
1311
1312#define ZEND_TRY_ASSIGN_STRING(zv, string) \
1313 _ZEND_TRY_ASSIGN_STRING(zv, string, 0)
1314
1315#define ZEND_TRY_ASSIGN_REF_STRING(zv, string) do { \
1316 ZEND_ASSERT(Z_ISREF_P(zv)); \
1317 _ZEND_TRY_ASSIGN_STRING(zv, string, 1); \
1318} while (0)
1319
1320#define _ZEND_TRY_ASSIGN_STRINGL(zv, string, len, is_ref) do { \
1321 zval *_zv = zv; \
1322 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \
1323 zend_reference *ref = Z_REF_P(_zv); \
1324 if (UNEXPECTED(ZEND_REF_HAS_TYPE_SOURCES(ref))) { \
1325 zend_try_assign_typed_ref_stringl(ref, string, len); \
1326 break; \
1327 } \
1328 _zv = &ref->val; \
1329 } \
1330 zval_ptr_dtor(_zv); \
1331 ZVAL_STRINGL(_zv, string, len); \
1332} while (0)
1333
1334#define ZEND_TRY_ASSIGN_STRINGL(zv, string, len) \
1335 _ZEND_TRY_ASSIGN_STRINGL(zv, string, len, 0)
1336
1337#define ZEND_TRY_ASSIGN_REF_STRINGL(zv, string, len) do { \
1338 ZEND_ASSERT(Z_ISREF_P(zv)); \
1339 _ZEND_TRY_ASSIGN_STRINGL(zv, string, len, 1); \
1340} while (0)
1341
1342#define _ZEND_TRY_ASSIGN_ARR(zv, arr, is_ref) do { \
1343 zval *_zv = zv; \
1344 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \
1345 zend_reference *ref = Z_REF_P(_zv); \
1346 if (UNEXPECTED(ZEND_REF_HAS_TYPE_SOURCES(ref))) { \
1347 zend_try_assign_typed_ref_arr(ref, arr); \
1348 break; \
1349 } \
1350 _zv = &ref->val; \
1351 } \
1352 zval_ptr_dtor(_zv); \
1353 ZVAL_ARR(_zv, arr); \
1354} while (0)
1355
1356#define ZEND_TRY_ASSIGN_ARR(zv, arr) \
1357 _ZEND_TRY_ASSIGN_ARR(zv, arr, 0)
1358
1359#define ZEND_TRY_ASSIGN_REF_ARR(zv, arr) do { \
1360 ZEND_ASSERT(Z_ISREF_P(zv)); \
1361 _ZEND_TRY_ASSIGN_ARR(zv, arr, 1); \
1362} while (0)
1363
1364#define _ZEND_TRY_ASSIGN_RES(zv, res, is_ref) do { \
1365 zval *_zv = zv; \
1366 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \
1367 zend_reference *ref = Z_REF_P(_zv); \
1368 if (UNEXPECTED(ZEND_REF_HAS_TYPE_SOURCES(ref))) { \
1369 zend_try_assign_typed_ref_res(ref, res); \
1370 break; \
1371 } \
1372 _zv = &ref->val; \
1373 } \
1374 zval_ptr_dtor(_zv); \
1375 ZVAL_RES(_zv, res); \
1376} while (0)
1377
1378#define ZEND_TRY_ASSIGN_RES(zv, res) \
1379 _ZEND_TRY_ASSIGN_RES(zv, res, 0)
1380
1381#define ZEND_TRY_ASSIGN_REF_RES(zv, res) do { \
1382 ZEND_ASSERT(Z_ISREF_P(zv)); \
1383 _ZEND_TRY_ASSIGN_RES(zv, res, 1); \
1384} while (0)
1385
1386#define _ZEND_TRY_ASSIGN_TMP(zv, other_zv, is_ref) do { \
1387 zval *_zv = zv; \
1388 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \
1389 zend_reference *ref = Z_REF_P(_zv); \
1390 if (UNEXPECTED(ZEND_REF_HAS_TYPE_SOURCES(ref))) { \
1391 zend_try_assign_typed_ref(ref, other_zv); \
1392 break; \
1393 } \
1394 _zv = &ref->val; \
1395 } \
1396 zval_ptr_dtor(_zv); \
1397 ZVAL_COPY_VALUE(_zv, other_zv); \
1398} while (0)
1399
1400#define ZEND_TRY_ASSIGN_TMP(zv, other_zv) \
1401 _ZEND_TRY_ASSIGN_TMP(zv, other_zv, 0)
1402
1403#define ZEND_TRY_ASSIGN_REF_TMP(zv, other_zv) do { \
1404 ZEND_ASSERT(Z_ISREF_P(zv)); \
1405 _ZEND_TRY_ASSIGN_TMP(zv, other_zv, 1); \
1406} while (0)
1407
1408#define _ZEND_TRY_ASSIGN_VALUE(zv, other_zv, is_ref) do { \
1409 zval *_zv = zv; \
1410 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \
1411 zend_reference *ref = Z_REF_P(_zv); \
1412 if (UNEXPECTED(ZEND_REF_HAS_TYPE_SOURCES(ref))) { \
1413 zend_try_assign_typed_ref_zval(ref, other_zv); \
1414 break; \
1415 } \
1416 _zv = &ref->val; \
1417 } \
1418 zval_ptr_dtor(_zv); \
1419 ZVAL_COPY_VALUE(_zv, other_zv); \
1420} while (0)
1421
1422#define ZEND_TRY_ASSIGN_VALUE(zv, other_zv) \
1423 _ZEND_TRY_ASSIGN_VALUE(zv, other_zv, 0)
1424
1425#define ZEND_TRY_ASSIGN_REF_VALUE(zv, other_zv) do { \
1426 ZEND_ASSERT(Z_ISREF_P(zv)); \
1427 _ZEND_TRY_ASSIGN_VALUE(zv, other_zv, 1); \
1428} while (0)
1429
1430#define ZEND_TRY_ASSIGN_COPY(zv, other_zv) do { \
1431 Z_TRY_ADDREF_P(other_zv); \
1432 ZEND_TRY_ASSIGN_VALUE(zv, other_zv); \
1433} while (0)
1434
1435#define ZEND_TRY_ASSIGN_REF_COPY(zv, other_zv) do { \
1436 Z_TRY_ADDREF_P(other_zv); \
1437 ZEND_TRY_ASSIGN_REF_VALUE(zv, other_zv); \
1438} while (0)
1439
1440#define _ZEND_TRY_ASSIGN_VALUE_EX(zv, other_zv, strict, is_ref) do { \
1441 zval *_zv = zv; \
1442 if (is_ref || UNEXPECTED(Z_ISREF_P(_zv))) { \
1443 zend_reference *ref = Z_REF_P(_zv); \
1444 if (UNEXPECTED(ZEND_REF_HAS_TYPE_SOURCES(ref))) { \
1445 zend_try_assign_typed_ref_zval_ex(ref, other_zv, strict); \
1446 break; \
1447 } \
1448 _zv = &ref->val; \
1449 } \
1450 zval_ptr_dtor(_zv); \
1451 ZVAL_COPY_VALUE(_zv, other_zv); \
1452} while (0)
1453
1454#define ZEND_TRY_ASSIGN_VALUE_EX(zv, other_zv, strict) \
1455 _ZEND_TRY_ASSIGN_VALUE_EX(zv, other_zv, strict, 0)
1456
1457#define ZEND_TRY_ASSIGN_REF_VALUE_EX(zv, other_zv, strict) do { \
1458 ZEND_ASSERT(Z_ISREF_P(zv)); \
1459 _ZEND_TRY_ASSIGN_VALUE_EX(zv, other_zv, strict, 1); \
1460} while (0)
1461
1462#define ZEND_TRY_ASSIGN_COPY_EX(zv, other_zv, strict) do { \
1463 Z_TRY_ADDREF_P(other_zv); \
1464 ZEND_TRY_ASSIGN_VALUE_EX(zv, other_zv, strict); \
1465} while (0)
1466
1467#define ZEND_TRY_ASSIGN_REF_COPY_EX(zv, other_zv, strict) do { \
1468 Z_TRY_ADDREF_P(other_zv); \
1469 ZEND_TRY_ASSIGN_REF_VALUE_EX(zv, other_zv, strict); \
1470} while (0)
1471
1472/* Initializes a reference to an empty array and returns dereferenced zval,
1473 * or NULL if the initialization failed. */
1474static zend_always_inline zval *zend_try_array_init_size(zval *zv, uint32_t size)
1475{
1477
1478 if (EXPECTED(Z_ISREF_P(zv))) {
1479 zend_reference *ref = Z_REF_P(zv);
1481 if (zend_try_assign_typed_ref_arr(ref, arr) == FAILURE) {
1482 return NULL;
1483 }
1484 return &ref->val;
1485 }
1486 zv = &ref->val;
1487 }
1488 zval garbage;
1490 ZVAL_NULL(zv);
1492 ZVAL_ARR(zv, arr);
1493 return zv;
1494}
1495
1496static zend_always_inline zval *zend_try_array_init(zval *zv)
1497{
1498 return zend_try_array_init_size(zv, 0);
1499}
1500
1501/* Fast parameter parsing API */
1502
1503/* Fast ZPP is always enabled now; this define is left in for compatibility
1504 * with any existing conditional compilation blocks.
1505 */
1506#define FAST_ZPP 1
1507
1508#define Z_EXPECTED_TYPES(_) \
1509 _(Z_EXPECTED_LONG, "of type int") \
1510 _(Z_EXPECTED_LONG_OR_NULL, "of type ?int") \
1511 _(Z_EXPECTED_BOOL, "of type bool") \
1512 _(Z_EXPECTED_BOOL_OR_NULL, "of type ?bool") \
1513 _(Z_EXPECTED_STRING, "of type string") \
1514 _(Z_EXPECTED_STRING_OR_NULL, "of type ?string") \
1515 _(Z_EXPECTED_ARRAY, "of type array") \
1516 _(Z_EXPECTED_ARRAY_OR_NULL, "of type ?array") \
1517 _(Z_EXPECTED_ARRAY_OR_LONG, "of type array|int") \
1518 _(Z_EXPECTED_ARRAY_OR_LONG_OR_NULL, "of type array|int|null") \
1519 _(Z_EXPECTED_ITERABLE, "of type Traversable|array") \
1520 _(Z_EXPECTED_ITERABLE_OR_NULL, "of type Traversable|array|null") \
1521 _(Z_EXPECTED_FUNC, "a valid callback") \
1522 _(Z_EXPECTED_FUNC_OR_NULL, "a valid callback or null") \
1523 _(Z_EXPECTED_RESOURCE, "of type resource") \
1524 _(Z_EXPECTED_RESOURCE_OR_NULL, "of type resource or null") \
1525 _(Z_EXPECTED_PATH, "of type string") \
1526 _(Z_EXPECTED_PATH_OR_NULL, "of type ?string") \
1527 _(Z_EXPECTED_OBJECT, "of type object") \
1528 _(Z_EXPECTED_OBJECT_OR_NULL, "of type ?object") \
1529 _(Z_EXPECTED_DOUBLE, "of type float") \
1530 _(Z_EXPECTED_DOUBLE_OR_NULL, "of type ?float") \
1531 _(Z_EXPECTED_NUMBER, "of type int|float") \
1532 _(Z_EXPECTED_NUMBER_OR_NULL, "of type int|float|null") \
1533 _(Z_EXPECTED_NUMBER_OR_STRING, "of type string|int|float") \
1534 _(Z_EXPECTED_NUMBER_OR_STRING_OR_NULL, "of type string|int|float|null") \
1535 _(Z_EXPECTED_ARRAY_OR_STRING, "of type array|string") \
1536 _(Z_EXPECTED_ARRAY_OR_STRING_OR_NULL, "of type array|string|null") \
1537 _(Z_EXPECTED_STRING_OR_LONG, "of type string|int") \
1538 _(Z_EXPECTED_STRING_OR_LONG_OR_NULL, "of type string|int|null") \
1539 _(Z_EXPECTED_OBJECT_OR_CLASS_NAME, "an object or a valid class name") \
1540 _(Z_EXPECTED_OBJECT_OR_CLASS_NAME_OR_NULL, "an object, a valid class name, or null") \
1541 _(Z_EXPECTED_OBJECT_OR_STRING, "of type object|string") \
1542 _(Z_EXPECTED_OBJECT_OR_STRING_OR_NULL, "of type object|string|null") \
1543
1544#define Z_EXPECTED_TYPE
1545
1546#define Z_EXPECTED_TYPE_ENUM(id, str) id,
1547#define Z_EXPECTED_TYPE_STR(id, str) str,
1548
1553
1555ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_parameters_count_error(uint32_t min_num_args, uint32_t max_num_args);
1567ZEND_API ZEND_COLD void ZEND_FASTCALL zend_argument_error_variadic(zend_class_entry *error_ce, uint32_t arg_num, const char *format, va_list va);
1568ZEND_API ZEND_COLD void zend_argument_error(zend_class_entry *error_ce, uint32_t arg_num, const char *format, ...);
1569ZEND_API ZEND_COLD void zend_argument_type_error(uint32_t arg_num, const char *format, ...);
1570ZEND_API ZEND_COLD void zend_argument_value_error(uint32_t arg_num, const char *format, ...);
1574
1575#define ZPP_ERROR_OK 0
1576#define ZPP_ERROR_FAILURE 1
1577#define ZPP_ERROR_WRONG_CALLBACK 2
1578#define ZPP_ERROR_WRONG_CLASS 3
1579#define ZPP_ERROR_WRONG_CLASS_OR_NULL 4
1580#define ZPP_ERROR_WRONG_CLASS_OR_STRING 5
1581#define ZPP_ERROR_WRONG_CLASS_OR_STRING_OR_NULL 6
1582#define ZPP_ERROR_WRONG_CLASS_OR_LONG 7
1583#define ZPP_ERROR_WRONG_CLASS_OR_LONG_OR_NULL 8
1584#define ZPP_ERROR_WRONG_ARG 9
1585#define ZPP_ERROR_WRONG_COUNT 10
1586#define ZPP_ERROR_UNEXPECTED_EXTRA_NAMED 11
1587#define ZPP_ERROR_WRONG_CALLBACK_OR_NULL 12
1588
1589#define ZEND_PARSE_PARAMETERS_START_EX(flags, min_num_args, max_num_args) do { \
1590 const int _flags = (flags); \
1591 uint32_t _min_num_args = (min_num_args); \
1592 uint32_t _max_num_args = (uint32_t) (max_num_args); \
1593 uint32_t _num_args = EX_NUM_ARGS(); \
1594 uint32_t _i = 0; \
1595 zval *_real_arg, *_arg = NULL; \
1596 zend_expected_type _expected_type = Z_EXPECTED_LONG; \
1597 char *_error = NULL; \
1598 bool _dummy = 0; \
1599 bool _optional = 0; \
1600 int _error_code = ZPP_ERROR_OK; \
1601 ((void)_i); \
1602 ((void)_real_arg); \
1603 ((void)_arg); \
1604 ((void)_expected_type); \
1605 ((void)_error); \
1606 ((void)_optional); \
1607 ((void)_dummy); \
1608 \
1609 do { \
1610 if (UNEXPECTED(_num_args < _min_num_args) || \
1611 UNEXPECTED(_num_args > _max_num_args)) { \
1612 if (!(_flags & ZEND_PARSE_PARAMS_QUIET)) { \
1613 zend_wrong_parameters_count_error(_min_num_args, _max_num_args); \
1614 } \
1615 _error_code = ZPP_ERROR_FAILURE; \
1616 break; \
1617 } \
1618 _real_arg = ZEND_CALL_ARG(execute_data, 0);
1619
1620#define ZEND_PARSE_PARAMETERS_START(min_num_args, max_num_args) \
1621 ZEND_PARSE_PARAMETERS_START_EX(0, min_num_args, max_num_args)
1622
1623#define ZEND_PARSE_PARAMETERS_NONE() do { \
1624 if (UNEXPECTED(ZEND_NUM_ARGS() != 0)) { \
1625 zend_wrong_parameters_none_error(); \
1626 return; \
1627 } \
1628 } while (0)
1629
1630#define ZEND_PARSE_PARAMETERS_END_EX(failure) \
1631 ZEND_ASSERT(_i == _max_num_args || _max_num_args == (uint32_t) -1); \
1632 } while (0); \
1633 if (UNEXPECTED(_error_code != ZPP_ERROR_OK)) { \
1634 if (!(_flags & ZEND_PARSE_PARAMS_QUIET)) { \
1635 zend_wrong_parameter_error(_error_code, _i, _error, _expected_type, _arg); \
1636 } \
1637 failure; \
1638 } \
1639 } while (0)
1640
1641#define ZEND_PARSE_PARAMETERS_END() \
1642 ZEND_PARSE_PARAMETERS_END_EX(return)
1643
1644#define Z_PARAM_PROLOGUE(deref, separate) \
1645 ++_i; \
1646 ZEND_ASSERT(_i <= _min_num_args || _optional==1); \
1647 ZEND_ASSERT(_i > _min_num_args || _optional==0); \
1648 if (_optional) { \
1649 if (UNEXPECTED(_i >_num_args)) break; \
1650 } \
1651 _real_arg++; \
1652 _arg = _real_arg; \
1653 if (deref) { \
1654 if (EXPECTED(Z_ISREF_P(_arg))) { \
1655 _arg = Z_REFVAL_P(_arg); \
1656 } \
1657 } \
1658 if (separate) { \
1659 SEPARATE_ZVAL_NOREF(_arg); \
1660 }
1661
1662/* get the zval* for a previously parsed argument */
1663#define Z_PARAM_GET_PREV_ZVAL(dest) \
1664 zend_parse_arg_zval_deref(_arg, &dest, 0);
1665
1666/* old "|" */
1667#define Z_PARAM_OPTIONAL \
1668 _optional = 1;
1669
1670/* old "a" */
1671#define Z_PARAM_ARRAY_EX2(dest, check_null, deref, separate) \
1672 Z_PARAM_PROLOGUE(deref, separate); \
1673 if (UNEXPECTED(!zend_parse_arg_array(_arg, &dest, check_null, 0))) { \
1674 _expected_type = check_null ? Z_EXPECTED_ARRAY_OR_NULL : Z_EXPECTED_ARRAY; \
1675 _error_code = ZPP_ERROR_WRONG_ARG; \
1676 break; \
1677 }
1678
1679#define Z_PARAM_ARRAY_EX(dest, check_null, separate) \
1680 Z_PARAM_ARRAY_EX2(dest, check_null, separate, separate)
1681
1682#define Z_PARAM_ARRAY(dest) \
1683 Z_PARAM_ARRAY_EX(dest, 0, 0)
1684
1685#define Z_PARAM_ARRAY_OR_NULL(dest) \
1686 Z_PARAM_ARRAY_EX(dest, 1, 0)
1687
1688/* old "A" */
1689#define Z_PARAM_ARRAY_OR_OBJECT_EX2(dest, check_null, deref, separate) \
1690 Z_PARAM_PROLOGUE(deref, separate); \
1691 if (UNEXPECTED(!zend_parse_arg_array(_arg, &dest, check_null, 1))) { \
1692 _expected_type = check_null ? Z_EXPECTED_ARRAY_OR_NULL : Z_EXPECTED_ARRAY; \
1693 _error_code = ZPP_ERROR_WRONG_ARG; \
1694 break; \
1695 }
1696
1697#define Z_PARAM_ARRAY_OR_OBJECT_EX(dest, check_null, separate) \
1698 Z_PARAM_ARRAY_OR_OBJECT_EX2(dest, check_null, separate, separate)
1699
1700#define Z_PARAM_ARRAY_OR_OBJECT(dest) \
1701 Z_PARAM_ARRAY_OR_OBJECT_EX(dest, 0, 0)
1702
1703#define Z_PARAM_ITERABLE_EX(dest, check_null) \
1704 Z_PARAM_PROLOGUE(0, 0); \
1705 if (UNEXPECTED(!zend_parse_arg_iterable(_arg, &dest, check_null))) { \
1706 _expected_type = check_null ? Z_EXPECTED_ITERABLE_OR_NULL : Z_EXPECTED_ITERABLE; \
1707 _error_code = ZPP_ERROR_WRONG_ARG; \
1708 break; \
1709 }
1710
1711#define Z_PARAM_ITERABLE(dest) \
1712 Z_PARAM_ITERABLE_EX(dest, 0)
1713
1714#define Z_PARAM_ITERABLE_OR_NULL(dest) \
1715 Z_PARAM_ITERABLE_EX(dest, 1)
1716
1717/* old "b" */
1718#define Z_PARAM_BOOL_EX(dest, is_null, check_null, deref) \
1719 Z_PARAM_PROLOGUE(deref, 0); \
1720 if (UNEXPECTED(!zend_parse_arg_bool(_arg, &dest, &is_null, check_null, _i))) { \
1721 _expected_type = check_null ? Z_EXPECTED_BOOL_OR_NULL : Z_EXPECTED_BOOL; \
1722 _error_code = ZPP_ERROR_WRONG_ARG; \
1723 break; \
1724 }
1725
1726#define Z_PARAM_BOOL(dest) \
1727 Z_PARAM_BOOL_EX(dest, _dummy, 0, 0)
1728
1729#define Z_PARAM_BOOL_OR_NULL(dest, is_null) \
1730 Z_PARAM_BOOL_EX(dest, is_null, 1, 0)
1731
1732/* old "C" */
1733#define Z_PARAM_CLASS_EX(dest, check_null, deref) \
1734 Z_PARAM_PROLOGUE(deref, 0); \
1735 if (UNEXPECTED(!zend_parse_arg_class(_arg, &dest, _i, check_null))) { \
1736 _error_code = ZPP_ERROR_FAILURE; \
1737 break; \
1738 }
1739
1740#define Z_PARAM_CLASS(dest) \
1741 Z_PARAM_CLASS_EX(dest, 0, 0)
1742
1743#define Z_PARAM_CLASS_OR_NULL(dest) \
1744 Z_PARAM_CLASS_EX(dest, 1, 0)
1745
1746#define Z_PARAM_OBJ_OR_CLASS_NAME_EX(dest, allow_null) \
1747 Z_PARAM_PROLOGUE(0, 0); \
1748 if (UNEXPECTED(!zend_parse_arg_obj_or_class_name(_arg, &dest, allow_null))) { \
1749 _expected_type = allow_null ? Z_EXPECTED_OBJECT_OR_CLASS_NAME_OR_NULL : Z_EXPECTED_OBJECT_OR_CLASS_NAME; \
1750 _error_code = ZPP_ERROR_WRONG_ARG; \
1751 break; \
1752 }
1753
1754#define Z_PARAM_OBJ_OR_CLASS_NAME(dest) \
1755 Z_PARAM_OBJ_OR_CLASS_NAME_EX(dest, 0);
1756
1757#define Z_PARAM_OBJ_OR_CLASS_NAME_OR_NULL(dest) \
1758 Z_PARAM_OBJ_OR_CLASS_NAME_EX(dest, 1);
1759
1760#define Z_PARAM_OBJ_OR_STR_EX(destination_object, destination_string, allow_null) \
1761 Z_PARAM_PROLOGUE(0, 0); \
1762 if (UNEXPECTED(!zend_parse_arg_obj_or_str(_arg, &destination_object, NULL, &destination_string, allow_null, _i))) { \
1763 _expected_type = allow_null ? Z_EXPECTED_OBJECT_OR_STRING_OR_NULL : Z_EXPECTED_OBJECT_OR_STRING; \
1764 _error_code = ZPP_ERROR_WRONG_ARG; \
1765 break; \
1766 }
1767
1768#define Z_PARAM_OBJ_OR_STR(destination_object, destination_string) \
1769 Z_PARAM_OBJ_OR_STR_EX(destination_object, destination_string, 0);
1770
1771#define Z_PARAM_OBJ_OR_STR_OR_NULL(destination_object, destination_string) \
1772 Z_PARAM_OBJ_OR_STR_EX(destination_object, destination_string, 1);
1773
1774#define Z_PARAM_OBJ_OF_CLASS_OR_STR_EX(destination_object, base_ce, destination_string, allow_null) \
1775 Z_PARAM_PROLOGUE(0, 0); \
1776 if (UNEXPECTED(!zend_parse_arg_obj_or_str(_arg, &destination_object, base_ce, &destination_string, allow_null, _i))) { \
1777 if (base_ce) { \
1778 _error = ZSTR_VAL((base_ce)->name); \
1779 _error_code = allow_null ? ZPP_ERROR_WRONG_CLASS_OR_STRING_OR_NULL : ZPP_ERROR_WRONG_CLASS_OR_STRING; \
1780 break; \
1781 } else { \
1782 _expected_type = allow_null ? Z_EXPECTED_OBJECT_OR_STRING_OR_NULL : Z_EXPECTED_OBJECT_OR_STRING; \
1783 _error_code = ZPP_ERROR_WRONG_ARG; \
1784 break; \
1785 } \
1786 }
1787
1788#define Z_PARAM_OBJ_OF_CLASS_OR_STR(destination_object, base_ce, destination_string) \
1789 Z_PARAM_OBJ_OF_CLASS_OR_STR_EX(destination_object, base_ce, destination_string, 0);
1790
1791#define Z_PARAM_OBJ_OF_CLASS_OR_STR_OR_NULL(destination_object, base_ce, destination_string) \
1792 Z_PARAM_OBJ_OF_CLASS_OR_STR_EX(destination_object, base_ce, destination_string, 1);
1793
1794/* old "d" */
1795#define Z_PARAM_DOUBLE_EX(dest, is_null, check_null, deref) \
1796 Z_PARAM_PROLOGUE(deref, 0); \
1797 if (UNEXPECTED(!zend_parse_arg_double(_arg, &dest, &is_null, check_null, _i))) { \
1798 _expected_type = check_null ? Z_EXPECTED_DOUBLE_OR_NULL : Z_EXPECTED_DOUBLE; \
1799 _error_code = ZPP_ERROR_WRONG_ARG; \
1800 break; \
1801 }
1802
1803#define Z_PARAM_DOUBLE(dest) \
1804 Z_PARAM_DOUBLE_EX(dest, _dummy, 0, 0)
1805
1806#define Z_PARAM_DOUBLE_OR_NULL(dest, is_null) \
1807 Z_PARAM_DOUBLE_EX(dest, is_null, 1, 0)
1808
1809/* old "f" */
1810#define Z_PARAM_FUNC_EX2(dest_fci, dest_fcc, check_null, deref, free_trampoline) \
1811 Z_PARAM_PROLOGUE(deref, 0); \
1812 if (UNEXPECTED(!zend_parse_arg_func(_arg, &dest_fci, &dest_fcc, check_null, &_error, free_trampoline))) { \
1813 if (!_error) { \
1814 _expected_type = check_null ? Z_EXPECTED_FUNC_OR_NULL : Z_EXPECTED_FUNC; \
1815 _error_code = ZPP_ERROR_WRONG_ARG; \
1816 } else { \
1817 _error_code = check_null ? ZPP_ERROR_WRONG_CALLBACK_OR_NULL : ZPP_ERROR_WRONG_CALLBACK; \
1818 } \
1819 break; \
1820 } \
1821
1822#define Z_PARAM_FUNC_EX(dest_fci, dest_fcc, check_null, deref) Z_PARAM_FUNC_EX2(dest_fci, dest_fcc, check_null, deref, true)
1823
1824#define Z_PARAM_FUNC(dest_fci, dest_fcc) \
1825 Z_PARAM_FUNC_EX2(dest_fci, dest_fcc, 0, 0, true)
1826
1827#define Z_PARAM_FUNC_NO_TRAMPOLINE_FREE(dest_fci, dest_fcc) \
1828 Z_PARAM_FUNC_EX2(dest_fci, dest_fcc, 0, 0, false)
1829
1830#define Z_PARAM_FUNC_OR_NULL(dest_fci, dest_fcc) \
1831 Z_PARAM_FUNC_EX2(dest_fci, dest_fcc, 1, 0, true)
1832
1833#define Z_PARAM_FUNC_NO_TRAMPOLINE_FREE_OR_NULL(dest_fci, dest_fcc) \
1834 Z_PARAM_FUNC_EX2(dest_fci, dest_fcc, 1, 0, false)
1835
1836#define Z_PARAM_FUNC_OR_NULL_WITH_ZVAL(dest_fci, dest_fcc, dest_zp) \
1837 Z_PARAM_FUNC_EX2(dest_fci, dest_fcc, 1, 0, true) \
1838 Z_PARAM_GET_PREV_ZVAL(dest_zp)
1839
1840/* old "h" */
1841#define Z_PARAM_ARRAY_HT_EX2(dest, check_null, deref, separate) \
1842 Z_PARAM_PROLOGUE(deref, separate); \
1843 if (UNEXPECTED(!zend_parse_arg_array_ht(_arg, &dest, check_null, 0, separate))) { \
1844 _expected_type = check_null ? Z_EXPECTED_ARRAY_OR_NULL : Z_EXPECTED_ARRAY; \
1845 _error_code = ZPP_ERROR_WRONG_ARG; \
1846 break; \
1847 }
1848
1849#define Z_PARAM_ARRAY_HT_EX(dest, check_null, separate) \
1850 Z_PARAM_ARRAY_HT_EX2(dest, check_null, separate, separate)
1851
1852#define Z_PARAM_ARRAY_HT(dest) \
1853 Z_PARAM_ARRAY_HT_EX(dest, 0, 0)
1854
1855#define Z_PARAM_ARRAY_HT_OR_NULL(dest) \
1856 Z_PARAM_ARRAY_HT_EX(dest, 1, 0)
1857
1858#define Z_PARAM_ARRAY_HT_OR_LONG_EX(dest_ht, dest_long, is_null, allow_null) \
1859 Z_PARAM_PROLOGUE(0, 0); \
1860 if (UNEXPECTED(!zend_parse_arg_array_ht_or_long(_arg, &dest_ht, &dest_long, &is_null, allow_null, _i))) { \
1861 _expected_type = allow_null ? Z_EXPECTED_ARRAY_OR_LONG_OR_NULL : Z_EXPECTED_ARRAY_OR_LONG; \
1862 _error_code = ZPP_ERROR_WRONG_ARG; \
1863 break; \
1864 }
1865
1866#define Z_PARAM_ARRAY_HT_OR_LONG(dest_ht, dest_long) \
1867 Z_PARAM_ARRAY_HT_OR_LONG_EX(dest_ht, dest_long, _dummy, 0)
1868
1869#define Z_PARAM_ARRAY_HT_OR_LONG_OR_NULL(dest_ht, dest_long, is_null) \
1870 Z_PARAM_ARRAY_HT_OR_LONG_EX(dest_ht, dest_long, is_null, 1)
1871
1872/* old "H" */
1873#define Z_PARAM_ARRAY_OR_OBJECT_HT_EX2(dest, check_null, deref, separate) \
1874 Z_PARAM_PROLOGUE(deref, separate); \
1875 if (UNEXPECTED(!zend_parse_arg_array_ht(_arg, &dest, check_null, 1, separate))) { \
1876 _expected_type = check_null ? Z_EXPECTED_ARRAY_OR_NULL : Z_EXPECTED_ARRAY; \
1877 _error_code = ZPP_ERROR_WRONG_ARG; \
1878 break; \
1879 }
1880
1881#define Z_PARAM_ARRAY_OR_OBJECT_HT_EX(dest, check_null, separate) \
1882 Z_PARAM_ARRAY_OR_OBJECT_HT_EX2(dest, check_null, separate, separate)
1883
1884#define Z_PARAM_ARRAY_OR_OBJECT_HT(dest) \
1885 Z_PARAM_ARRAY_OR_OBJECT_HT_EX(dest, 0, 0)
1886
1887/* old "l" */
1888#define Z_PARAM_LONG_EX(dest, is_null, check_null, deref) \
1889 Z_PARAM_PROLOGUE(deref, 0); \
1890 if (UNEXPECTED(!zend_parse_arg_long(_arg, &dest, &is_null, check_null, _i))) { \
1891 _expected_type = check_null ? Z_EXPECTED_LONG_OR_NULL : Z_EXPECTED_LONG; \
1892 _error_code = ZPP_ERROR_WRONG_ARG; \
1893 break; \
1894 }
1895
1896#define Z_PARAM_LONG(dest) \
1897 Z_PARAM_LONG_EX(dest, _dummy, 0, 0)
1898
1899#define Z_PARAM_LONG_OR_NULL(dest, is_null) \
1900 Z_PARAM_LONG_EX(dest, is_null, 1, 0)
1901
1902/* old "n" */
1903#define Z_PARAM_NUMBER_EX(dest, check_null) \
1904 Z_PARAM_PROLOGUE(0, 0); \
1905 if (UNEXPECTED(!zend_parse_arg_number(_arg, &dest, check_null, _i))) { \
1906 _expected_type = check_null ? Z_EXPECTED_NUMBER_OR_NULL : Z_EXPECTED_NUMBER; \
1907 _error_code = ZPP_ERROR_WRONG_ARG; \
1908 break; \
1909 }
1910
1911#define Z_PARAM_NUMBER_OR_NULL(dest) \
1912 Z_PARAM_NUMBER_EX(dest, 1)
1913
1914#define Z_PARAM_NUMBER(dest) \
1915 Z_PARAM_NUMBER_EX(dest, 0)
1916
1917#define Z_PARAM_NUMBER_OR_STR_EX(dest, check_null) \
1918 Z_PARAM_PROLOGUE(0, 0); \
1919 if (UNEXPECTED(!zend_parse_arg_number_or_str(_arg, &dest, check_null, _i))) { \
1920 _expected_type = check_null ? Z_EXPECTED_NUMBER_OR_STRING_OR_NULL : Z_EXPECTED_NUMBER_OR_STRING; \
1921 _error_code = ZPP_ERROR_WRONG_ARG; \
1922 break; \
1923 }
1924
1925#define Z_PARAM_NUMBER_OR_STR(dest) \
1926 Z_PARAM_NUMBER_OR_STR_EX(dest, false)
1927
1928#define Z_PARAM_NUMBER_OR_STR_OR_NULL(dest) \
1929 Z_PARAM_NUMBER_OR_STR_EX(dest, true)
1930
1931/* old "o" */
1932#define Z_PARAM_OBJECT_EX(dest, check_null, deref) \
1933 Z_PARAM_PROLOGUE(deref, 0); \
1934 if (UNEXPECTED(!zend_parse_arg_object(_arg, &dest, NULL, check_null))) { \
1935 _expected_type = check_null ? Z_EXPECTED_OBJECT_OR_NULL : Z_EXPECTED_OBJECT; \
1936 _error_code = ZPP_ERROR_WRONG_ARG; \
1937 break; \
1938 }
1939
1940#define Z_PARAM_OBJECT(dest) \
1941 Z_PARAM_OBJECT_EX(dest, 0, 0)
1942
1943#define Z_PARAM_OBJECT_OR_NULL(dest) \
1944 Z_PARAM_OBJECT_EX(dest, 1, 0)
1945
1946/* The same as Z_PARAM_OBJECT_EX except that dest is a zend_object rather than a zval */
1947#define Z_PARAM_OBJ_EX(dest, check_null, deref) \
1948 Z_PARAM_PROLOGUE(deref, 0); \
1949 if (UNEXPECTED(!zend_parse_arg_obj(_arg, &dest, NULL, check_null))) { \
1950 _expected_type = check_null ? Z_EXPECTED_OBJECT_OR_NULL : Z_EXPECTED_OBJECT; \
1951 _error_code = ZPP_ERROR_WRONG_ARG; \
1952 break; \
1953 }
1954
1955#define Z_PARAM_OBJ(dest) \
1956 Z_PARAM_OBJ_EX(dest, 0, 0)
1957
1958#define Z_PARAM_OBJ_OR_NULL(dest) \
1959 Z_PARAM_OBJ_EX(dest, 1, 0)
1960
1961/* old "O" */
1962#define Z_PARAM_OBJECT_OF_CLASS_EX(dest, _ce, check_null, deref) \
1963 Z_PARAM_PROLOGUE(deref, 0); \
1964 if (UNEXPECTED(!zend_parse_arg_object(_arg, &dest, _ce, check_null))) { \
1965 if (_ce) { \
1966 _error = ZSTR_VAL((_ce)->name); \
1967 _error_code = check_null ? ZPP_ERROR_WRONG_CLASS_OR_NULL : ZPP_ERROR_WRONG_CLASS; \
1968 break; \
1969 } else { \
1970 _expected_type = check_null ? Z_EXPECTED_OBJECT_OR_NULL : Z_EXPECTED_OBJECT; \
1971 _error_code = ZPP_ERROR_WRONG_ARG; \
1972 break; \
1973 } \
1974 }
1975
1976#define Z_PARAM_OBJECT_OF_CLASS(dest, _ce) \
1977 Z_PARAM_OBJECT_OF_CLASS_EX(dest, _ce, 0, 0)
1978
1979#define Z_PARAM_OBJECT_OF_CLASS_OR_NULL(dest, _ce) \
1980 Z_PARAM_OBJECT_OF_CLASS_EX(dest, _ce, 1, 0)
1981
1982/* The same as Z_PARAM_OBJECT_OF_CLASS_EX except that dest is a zend_object rather than a zval */
1983#define Z_PARAM_OBJ_OF_CLASS_EX(dest, _ce, check_null, deref) \
1984 Z_PARAM_PROLOGUE(deref, 0); \
1985 if (UNEXPECTED(!zend_parse_arg_obj(_arg, &dest, _ce, check_null))) { \
1986 if (_ce) { \
1987 _error = ZSTR_VAL((_ce)->name); \
1988 _error_code = check_null ? ZPP_ERROR_WRONG_CLASS_OR_NULL : ZPP_ERROR_WRONG_CLASS; \
1989 break; \
1990 } else { \
1991 _expected_type = check_null ? Z_EXPECTED_OBJECT_OR_NULL : Z_EXPECTED_OBJECT; \
1992 _error_code = ZPP_ERROR_WRONG_ARG; \
1993 break; \
1994 } \
1995 }
1996
1997#define Z_PARAM_OBJ_OF_CLASS(dest, _ce) \
1998 Z_PARAM_OBJ_OF_CLASS_EX(dest, _ce, 0, 0)
1999
2000#define Z_PARAM_OBJ_OF_CLASS_OR_NULL(dest, _ce) \
2001 Z_PARAM_OBJ_OF_CLASS_EX(dest, _ce, 1, 0)
2002
2003#define Z_PARAM_OBJ_OF_CLASS_OR_LONG_EX(dest_obj, _ce, dest_long, is_null, allow_null) \
2004 Z_PARAM_PROLOGUE(0, 0); \
2005 if (UNEXPECTED(!zend_parse_arg_obj_or_long(_arg, &dest_obj, _ce, &dest_long, &is_null, allow_null, _i))) { \
2006 _error = ZSTR_VAL((_ce)->name); \
2007 _error_code = allow_null ? ZPP_ERROR_WRONG_CLASS_OR_LONG_OR_NULL : ZPP_ERROR_WRONG_CLASS_OR_LONG; \
2008 break; \
2009 }
2010
2011#define Z_PARAM_OBJ_OF_CLASS_OR_LONG(dest_obj, _ce, dest_long) \
2012 Z_PARAM_OBJ_OF_CLASS_OR_LONG_EX(dest_obj, _ce, dest_long, _dummy, 0)
2013
2014#define Z_PARAM_OBJ_OF_CLASS_OR_LONG_OR_NULL(dest_obj, _ce, dest_long, is_null) \
2015 Z_PARAM_OBJ_OF_CLASS_OR_LONG_EX(dest_obj, _ce, dest_long, is_null, 1)
2016
2017/* old "p" */
2018#define Z_PARAM_PATH_EX(dest, dest_len, check_null, deref) \
2019 Z_PARAM_PROLOGUE(deref, 0); \
2020 if (UNEXPECTED(!zend_parse_arg_path(_arg, &dest, &dest_len, check_null, _i))) { \
2021 _expected_type = check_null ? Z_EXPECTED_PATH_OR_NULL : Z_EXPECTED_PATH; \
2022 _error_code = ZPP_ERROR_WRONG_ARG; \
2023 break; \
2024 }
2025
2026#define Z_PARAM_PATH(dest, dest_len) \
2027 Z_PARAM_PATH_EX(dest, dest_len, 0, 0)
2028
2029#define Z_PARAM_PATH_OR_NULL(dest, dest_len) \
2030 Z_PARAM_PATH_EX(dest, dest_len, 1, 0)
2031
2032/* old "P" */
2033#define Z_PARAM_PATH_STR_EX(dest, check_null, deref) \
2034 Z_PARAM_PROLOGUE(deref, 0); \
2035 if (UNEXPECTED(!zend_parse_arg_path_str(_arg, &dest, check_null, _i))) { \
2036 _expected_type = check_null ? Z_EXPECTED_PATH_OR_NULL : Z_EXPECTED_PATH; \
2037 _error_code = ZPP_ERROR_WRONG_ARG; \
2038 break; \
2039 }
2040
2041#define Z_PARAM_PATH_STR(dest) \
2042 Z_PARAM_PATH_STR_EX(dest, 0, 0)
2043
2044#define Z_PARAM_PATH_STR_OR_NULL(dest) \
2045 Z_PARAM_PATH_STR_EX(dest, 1, 0)
2046
2047/* old "r" */
2048#define Z_PARAM_RESOURCE_EX(dest, check_null, deref) \
2049 Z_PARAM_PROLOGUE(deref, 0); \
2050 if (UNEXPECTED(!zend_parse_arg_resource(_arg, &dest, check_null))) { \
2051 _expected_type = check_null ? Z_EXPECTED_RESOURCE_OR_NULL : Z_EXPECTED_RESOURCE; \
2052 _error_code = ZPP_ERROR_WRONG_ARG; \
2053 break; \
2054 }
2055
2056#define Z_PARAM_RESOURCE(dest) \
2057 Z_PARAM_RESOURCE_EX(dest, 0, 0)
2058
2059#define Z_PARAM_RESOURCE_OR_NULL(dest) \
2060 Z_PARAM_RESOURCE_EX(dest, 1, 0)
2061
2062/* old "s" */
2063#define Z_PARAM_STRING_EX(dest, dest_len, check_null, deref) \
2064 Z_PARAM_PROLOGUE(deref, 0); \
2065 if (UNEXPECTED(!zend_parse_arg_string(_arg, &dest, &dest_len, check_null, _i))) { \
2066 _expected_type = check_null ? Z_EXPECTED_STRING_OR_NULL : Z_EXPECTED_STRING; \
2067 _error_code = ZPP_ERROR_WRONG_ARG; \
2068 break; \
2069 }
2070
2071#define Z_PARAM_STRING(dest, dest_len) \
2072 Z_PARAM_STRING_EX(dest, dest_len, 0, 0)
2073
2074#define Z_PARAM_STRING_OR_NULL(dest, dest_len) \
2075 Z_PARAM_STRING_EX(dest, dest_len, 1, 0)
2076
2077/* old "S" */
2078#define Z_PARAM_STR_EX(dest, check_null, deref) \
2079 Z_PARAM_PROLOGUE(deref, 0); \
2080 if (UNEXPECTED(!zend_parse_arg_str(_arg, &dest, check_null, _i))) { \
2081 _expected_type = check_null ? Z_EXPECTED_STRING_OR_NULL : Z_EXPECTED_STRING; \
2082 _error_code = ZPP_ERROR_WRONG_ARG; \
2083 break; \
2084 }
2085
2086#define Z_PARAM_STR(dest) \
2087 Z_PARAM_STR_EX(dest, 0, 0)
2088
2089#define Z_PARAM_STR_OR_NULL(dest) \
2090 Z_PARAM_STR_EX(dest, 1, 0)
2091
2092/* old "z" */
2093#define Z_PARAM_ZVAL_EX2(dest, check_null, deref, separate) \
2094 Z_PARAM_PROLOGUE(deref, separate); \
2095 zend_parse_arg_zval_deref(_arg, &dest, check_null);
2096
2097#define Z_PARAM_ZVAL_EX(dest, check_null, separate) \
2098 Z_PARAM_ZVAL_EX2(dest, check_null, separate, separate)
2099
2100#define Z_PARAM_ZVAL(dest) \
2101 Z_PARAM_ZVAL_EX(dest, 0, 0)
2102
2103#define Z_PARAM_ZVAL_OR_NULL(dest) \
2104 Z_PARAM_ZVAL_EX(dest, 1, 0)
2105
2106/* old "+" and "*" */
2107#define Z_PARAM_VARIADIC_EX(spec, dest, dest_num, post_varargs) do { \
2108 uint32_t _num_varargs = _num_args - _i - (post_varargs); \
2109 if (EXPECTED(_num_varargs > 0)) { \
2110 dest = _real_arg + 1; \
2111 dest_num = _num_varargs; \
2112 _i += _num_varargs; \
2113 _real_arg += _num_varargs; \
2114 } else { \
2115 dest = NULL; \
2116 dest_num = 0; \
2117 } \
2118 if (UNEXPECTED(ZEND_CALL_INFO(execute_data) & ZEND_CALL_HAS_EXTRA_NAMED_PARAMS)) { \
2119 _error_code = ZPP_ERROR_UNEXPECTED_EXTRA_NAMED; \
2120 break; \
2121 } \
2122 } while (0);
2123
2124#define Z_PARAM_VARIADIC(spec, dest, dest_num) \
2125 Z_PARAM_VARIADIC_EX(spec, dest, dest_num, 0)
2126
2127#define Z_PARAM_VARIADIC_WITH_NAMED(dest, dest_num, dest_named) do { \
2128 uint32_t _num_varargs = _num_args - _i; \
2129 if (EXPECTED(_num_varargs > 0)) { \
2130 dest = _real_arg + 1; \
2131 dest_num = _num_varargs; \
2132 } else { \
2133 dest = NULL; \
2134 dest_num = 0; \
2135 } \
2136 if (ZEND_CALL_INFO(execute_data) & ZEND_CALL_HAS_EXTRA_NAMED_PARAMS) { \
2137 dest_named = execute_data->extra_named_params; \
2138 } else { \
2139 dest_named = NULL; \
2140 } \
2141 } while (0);
2142
2143#define Z_PARAM_ARRAY_HT_OR_STR_EX(dest_ht, dest_str, allow_null) \
2144 Z_PARAM_PROLOGUE(0, 0); \
2145 if (UNEXPECTED(!zend_parse_arg_array_ht_or_str(_arg, &dest_ht, &dest_str, allow_null, _i))) { \
2146 _expected_type = allow_null ? Z_EXPECTED_ARRAY_OR_STRING_OR_NULL : Z_EXPECTED_ARRAY_OR_STRING; \
2147 _error_code = ZPP_ERROR_WRONG_ARG; \
2148 break; \
2149 }
2150
2151#define Z_PARAM_ARRAY_HT_OR_STR(dest_ht, dest_str) \
2152 Z_PARAM_ARRAY_HT_OR_STR_EX(dest_ht, dest_str, 0);
2153
2154#define Z_PARAM_ARRAY_HT_OR_STR_OR_NULL(dest_ht, dest_str) \
2155 Z_PARAM_ARRAY_HT_OR_STR_EX(dest_ht, dest_str, 1);
2156
2157#define Z_PARAM_STR_OR_LONG_EX(dest_str, dest_long, is_null, allow_null) \
2158 Z_PARAM_PROLOGUE(0, 0); \
2159 if (UNEXPECTED(!zend_parse_arg_str_or_long(_arg, &dest_str, &dest_long, &is_null, allow_null, _i))) { \
2160 _expected_type = allow_null ? Z_EXPECTED_STRING_OR_LONG_OR_NULL : Z_EXPECTED_STRING_OR_LONG; \
2161 _error_code = ZPP_ERROR_WRONG_ARG; \
2162 break; \
2163 }
2164
2165#define Z_PARAM_STR_OR_LONG(dest_str, dest_long) \
2166 Z_PARAM_STR_OR_LONG_EX(dest_str, dest_long, _dummy, 0);
2167
2168#define Z_PARAM_STR_OR_LONG_OR_NULL(dest_str, dest_long, is_null) \
2169 Z_PARAM_STR_OR_LONG_EX(dest_str, dest_long, is_null, 1);
2170
2171/* End of new parameter parsing API */
2172
2173/* Inlined implementations shared by new and old parameter parsing APIs */
2174
2175ZEND_API bool ZEND_FASTCALL zend_parse_arg_class(zval *arg, zend_class_entry **pce, uint32_t num, bool check_null);
2176ZEND_API bool ZEND_FASTCALL zend_parse_arg_bool_slow(const zval *arg, bool *dest, uint32_t arg_num);
2177ZEND_API bool ZEND_FASTCALL zend_parse_arg_bool_weak(const zval *arg, bool *dest, uint32_t arg_num);
2180ZEND_API bool ZEND_FASTCALL zend_parse_arg_double_slow(const zval *arg, double *dest, uint32_t arg_num);
2181ZEND_API bool ZEND_FASTCALL zend_parse_arg_double_weak(const zval *arg, double *dest, uint32_t arg_num);
2187
2188ZEND_API bool ZEND_FASTCALL zend_flf_parse_arg_bool_slow(const zval *arg, bool *dest, uint32_t arg_num);
2191
2192static zend_always_inline bool zend_parse_arg_bool_ex(const zval *arg, bool *dest, bool *is_null, bool check_null, uint32_t arg_num, bool frameless)
2193{
2194 if (check_null) {
2195 *is_null = 0;
2196 }
2197 if (EXPECTED(Z_TYPE_P(arg) == IS_TRUE)) {
2198 *dest = 1;
2199 } else if (EXPECTED(Z_TYPE_P(arg) == IS_FALSE)) {
2200 *dest = 0;
2201 } else if (check_null && Z_TYPE_P(arg) == IS_NULL) {
2202 *is_null = 1;
2203 *dest = 0;
2204 } else {
2205 if (frameless) {
2207 } else {
2208 return zend_parse_arg_bool_slow(arg, dest, arg_num);
2209 }
2210 }
2211 return 1;
2212}
2213
2214static zend_always_inline bool zend_parse_arg_bool(const zval *arg, bool *dest, bool *is_null, bool check_null, uint32_t arg_num)
2215{
2216 return zend_parse_arg_bool_ex(arg, dest, is_null, check_null, arg_num, /* frameless */ false);
2217}
2218
2219static zend_always_inline bool zend_parse_arg_long_ex(zval *arg, zend_long *dest, bool *is_null, bool check_null, uint32_t arg_num, bool frameless)
2220{
2221 if (check_null) {
2222 *is_null = 0;
2223 }
2224 if (EXPECTED(Z_TYPE_P(arg) == IS_LONG)) {
2225 *dest = Z_LVAL_P(arg);
2226 } else if (check_null && Z_TYPE_P(arg) == IS_NULL) {
2227 *is_null = 1;
2228 *dest = 0;
2229 } else {
2230 if (frameless) {
2232 } else {
2233 return zend_parse_arg_long_slow(arg, dest, arg_num);
2234 }
2235 }
2236 return 1;
2237}
2238
2239static zend_always_inline bool zend_parse_arg_long(zval *arg, zend_long *dest, bool *is_null, bool check_null, uint32_t arg_num)
2240{
2241 return zend_parse_arg_long_ex(arg, dest, is_null, check_null, arg_num, /* frameless */ false);
2242}
2243
2244static zend_always_inline bool zend_parse_arg_double(const zval *arg, double *dest, bool *is_null, bool check_null, uint32_t arg_num)
2245{
2246 if (check_null) {
2247 *is_null = 0;
2248 }
2249 if (EXPECTED(Z_TYPE_P(arg) == IS_DOUBLE)) {
2250 *dest = Z_DVAL_P(arg);
2251 } else if (check_null && Z_TYPE_P(arg) == IS_NULL) {
2252 *is_null = 1;
2253 *dest = 0.0;
2254 } else {
2255 return zend_parse_arg_double_slow(arg, dest, arg_num);
2256 }
2257 return 1;
2258}
2259
2260static zend_always_inline bool zend_parse_arg_number(zval *arg, zval **dest, bool check_null, uint32_t arg_num)
2261{
2262 if (EXPECTED(Z_TYPE_P(arg) == IS_LONG || Z_TYPE_P(arg) == IS_DOUBLE)) {
2263 *dest = arg;
2264 } else if (check_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) {
2265 *dest = NULL;
2266 } else {
2267 return zend_parse_arg_number_slow(arg, dest, arg_num);
2268 }
2269 return 1;
2270}
2271
2272static zend_always_inline bool zend_parse_arg_number_or_str(zval *arg, zval **dest, bool check_null, uint32_t arg_num)
2273{
2275 *dest = arg;
2276 } else if (check_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) {
2277 *dest = NULL;
2278 } else {
2280 }
2281 return true;
2282}
2283
2284static zend_always_inline bool zend_parse_arg_str_ex(zval *arg, zend_string **dest, bool check_null, uint32_t arg_num, bool frameless)
2285{
2286 if (EXPECTED(Z_TYPE_P(arg) == IS_STRING)) {
2287 *dest = Z_STR_P(arg);
2288 } else if (check_null && Z_TYPE_P(arg) == IS_NULL) {
2289 *dest = NULL;
2290 } else {
2291 if (frameless) {
2293 } else {
2294 return zend_parse_arg_str_slow(arg, dest, arg_num);
2295 }
2296 }
2297 return 1;
2298}
2299
2300static zend_always_inline bool zend_parse_arg_str(zval *arg, zend_string **dest, bool check_null, uint32_t arg_num)
2301{
2302 return zend_parse_arg_str_ex(arg, dest, check_null, arg_num, /* frameless */ false);
2303}
2304
2305static zend_always_inline bool zend_parse_arg_string(zval *arg, char **dest, size_t *dest_len, bool check_null, uint32_t arg_num)
2306{
2307 zend_string *str;
2308
2309 if (!zend_parse_arg_str(arg, &str, check_null, arg_num)) {
2310 return 0;
2311 }
2312 if (check_null && UNEXPECTED(!str)) {
2313 *dest = NULL;
2314 *dest_len = 0;
2315 } else {
2316 *dest = ZSTR_VAL(str);
2317 *dest_len = ZSTR_LEN(str);
2318 }
2319 return 1;
2320}
2321
2322static zend_always_inline bool zend_parse_arg_path_str(zval *arg, zend_string **dest, bool check_null, uint32_t arg_num)
2323{
2324 if (!zend_parse_arg_str(arg, dest, check_null, arg_num) ||
2325 (*dest && UNEXPECTED(CHECK_NULL_PATH(ZSTR_VAL(*dest), ZSTR_LEN(*dest))))) {
2326 return 0;
2327 }
2328 return 1;
2329}
2330
2331static zend_always_inline bool zend_parse_arg_path(zval *arg, char **dest, size_t *dest_len, bool check_null, uint32_t arg_num)
2332{
2333 zend_string *str;
2334
2335 if (!zend_parse_arg_path_str(arg, &str, check_null, arg_num)) {
2336 return 0;
2337 }
2338 if (check_null && UNEXPECTED(!str)) {
2339 *dest = NULL;
2340 *dest_len = 0;
2341 } else {
2342 *dest = ZSTR_VAL(str);
2343 *dest_len = ZSTR_LEN(str);
2344 }
2345 return 1;
2346}
2347
2348static zend_always_inline bool zend_parse_arg_iterable(zval *arg, zval **dest, bool check_null)
2349{
2351 *dest = arg;
2352 return 1;
2353 }
2354
2355 if (check_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) {
2356 *dest = NULL;
2357 return 1;
2358 }
2359
2360 return 0;
2361}
2362
2363static zend_always_inline bool zend_parse_arg_array(zval *arg, zval **dest, bool check_null, bool or_object)
2364{
2365 if (EXPECTED(Z_TYPE_P(arg) == IS_ARRAY) ||
2366 (or_object && EXPECTED(Z_TYPE_P(arg) == IS_OBJECT))) {
2367 *dest = arg;
2368 } else if (check_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) {
2369 *dest = NULL;
2370 } else {
2371 return 0;
2372 }
2373 return 1;
2374}
2375
2376static zend_always_inline bool zend_parse_arg_array_ht(const zval *arg, HashTable **dest, bool check_null, bool or_object, bool separate)
2377{
2378 if (EXPECTED(Z_TYPE_P(arg) == IS_ARRAY)) {
2379 *dest = Z_ARRVAL_P(arg);
2380 } else if (or_object && EXPECTED(Z_TYPE_P(arg) == IS_OBJECT)) {
2382 if (separate
2383 && zobj->properties
2384 && UNEXPECTED(GC_REFCOUNT(zobj->properties) > 1)) {
2385 if (EXPECTED(!(GC_FLAGS(zobj->properties) & IS_ARRAY_IMMUTABLE))) {
2386 GC_DELREF(zobj->properties);
2387 }
2388 zobj->properties = zend_array_dup(zobj->properties);
2389 }
2390 *dest = zobj->handlers->get_properties(zobj);
2391 } else if (check_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) {
2392 *dest = NULL;
2393 } else {
2394 return 0;
2395 }
2396 return 1;
2397}
2398
2399static zend_always_inline bool zend_parse_arg_array_ht_or_long(
2400 zval *arg, HashTable **dest_ht, zend_long *dest_long, bool *is_null, bool allow_null, uint32_t arg_num
2401) {
2402 if (allow_null) {
2403 *is_null = 0;
2404 }
2405
2406 if (EXPECTED(Z_TYPE_P(arg) == IS_ARRAY)) {
2407 *dest_ht = Z_ARRVAL_P(arg);
2408 } else if (EXPECTED(Z_TYPE_P(arg) == IS_LONG)) {
2409 *dest_ht = NULL;
2410 *dest_long = Z_LVAL_P(arg);
2411 } else if (allow_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) {
2412 *dest_ht = NULL;
2413 *is_null = 1;
2414 } else {
2415 *dest_ht = NULL;
2416 return zend_parse_arg_long_slow(arg, dest_long, arg_num);
2417 }
2418
2419 return 1;
2420}
2421
2422static zend_always_inline bool zend_parse_arg_object(zval *arg, zval **dest, zend_class_entry *ce, bool check_null)
2423{
2424 if (EXPECTED(Z_TYPE_P(arg) == IS_OBJECT) &&
2425 (!ce || EXPECTED(instanceof_function(Z_OBJCE_P(arg), ce) != 0))) {
2426 *dest = arg;
2427 } else if (check_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) {
2428 *dest = NULL;
2429 } else {
2430 return 0;
2431 }
2432 return 1;
2433}
2434
2435static zend_always_inline bool zend_parse_arg_obj(const zval *arg, zend_object **dest, zend_class_entry *ce, bool check_null)
2436{
2437 if (EXPECTED(Z_TYPE_P(arg) == IS_OBJECT) &&
2438 (!ce || EXPECTED(instanceof_function(Z_OBJCE_P(arg), ce) != 0))) {
2439 *dest = Z_OBJ_P(arg);
2440 } else if (check_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) {
2441 *dest = NULL;
2442 } else {
2443 return 0;
2444 }
2445 return 1;
2446}
2447
2448static zend_always_inline bool zend_parse_arg_obj_or_long(
2449 zval *arg, zend_object **dest_obj, zend_class_entry *ce, zend_long *dest_long, bool *is_null, bool allow_null, uint32_t arg_num
2450) {
2451 if (allow_null) {
2452 *is_null = 0;
2453 }
2454
2455 if (EXPECTED(Z_TYPE_P(arg) == IS_OBJECT) && EXPECTED(instanceof_function(Z_OBJCE_P(arg), ce) != 0)) {
2456 *dest_obj = Z_OBJ_P(arg);
2457 } else if (EXPECTED(Z_TYPE_P(arg) == IS_LONG)) {
2458 *dest_obj = NULL;
2459 *dest_long = Z_LVAL_P(arg);
2460 } else if (allow_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) {
2461 *dest_obj = NULL;
2462 *is_null = 1;
2463 } else {
2464 *dest_obj = NULL;
2465 return zend_parse_arg_long_slow(arg, dest_long, arg_num);
2466 }
2467
2468 return 1;
2469}
2470
2471static zend_always_inline bool zend_parse_arg_resource(zval *arg, zval **dest, bool check_null)
2472{
2473 if (EXPECTED(Z_TYPE_P(arg) == IS_RESOURCE)) {
2474 *dest = arg;
2475 } else if (check_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) {
2476 *dest = NULL;
2477 } else {
2478 return 0;
2479 }
2480 return 1;
2481}
2482
2483static zend_always_inline bool zend_parse_arg_func(zval *arg, zend_fcall_info *dest_fci, zend_fcall_info_cache *dest_fcc, bool check_null, char **error, bool free_trampoline)
2484{
2485 if (check_null && UNEXPECTED(Z_TYPE_P(arg) == IS_NULL)) {
2486 dest_fci->size = 0;
2487 dest_fcc->function_handler = NULL;
2488 *error = NULL;
2489 } else if (UNEXPECTED(zend_fcall_info_init(arg, 0, dest_fci, dest_fcc, NULL, error) != SUCCESS)) {
2490 return 0;
2491 }
2492 if (free_trampoline) {
2493 /* Release call trampolines: The function may not get called, in which case
2494 * the trampoline will leak. Force it to be refetched during
2495 * zend_call_function instead. */
2497 }
2498 return 1;
2499}
2500
2501static zend_always_inline void zend_parse_arg_zval(zval *arg, zval **dest, bool check_null)
2502{
2503 *dest = (check_null &&
2507}
2508
2509static zend_always_inline void zend_parse_arg_zval_deref(zval *arg, zval **dest, bool check_null)
2510{
2511 *dest = (check_null && UNEXPECTED(Z_TYPE_P(arg) == IS_NULL)) ? NULL : arg;
2512}
2513
2514static zend_always_inline bool zend_parse_arg_array_ht_or_str(
2515 zval *arg, HashTable **dest_ht, zend_string **dest_str, bool allow_null, uint32_t arg_num)
2516{
2517 if (EXPECTED(Z_TYPE_P(arg) == IS_STRING)) {
2518 *dest_ht = NULL;
2519 *dest_str = Z_STR_P(arg);
2520 } else if (EXPECTED(Z_TYPE_P(arg) == IS_ARRAY)) {
2521 *dest_ht = Z_ARRVAL_P(arg);
2522 *dest_str = NULL;
2523 } else if (allow_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) {
2524 *dest_ht = NULL;
2525 *dest_str = NULL;
2526 } else {
2527 *dest_ht = NULL;
2528 return zend_parse_arg_str_slow(arg, dest_str, arg_num);
2529 }
2530 return 1;
2531}
2532
2533static zend_always_inline bool zend_parse_arg_str_or_long(zval *arg, zend_string **dest_str, zend_long *dest_long,
2534 bool *is_null, bool allow_null, uint32_t arg_num)
2535{
2536 if (allow_null) {
2537 *is_null = 0;
2538 }
2539 if (EXPECTED(Z_TYPE_P(arg) == IS_STRING)) {
2540 *dest_str = Z_STR_P(arg);
2541 } else if (EXPECTED(Z_TYPE_P(arg) == IS_LONG)) {
2542 *dest_str = NULL;
2543 *dest_long = Z_LVAL_P(arg);
2544 } else if (allow_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) {
2545 *dest_str = NULL;
2546 *is_null = 1;
2547 } else {
2548 return zend_parse_arg_str_or_long_slow(arg, dest_str, dest_long, arg_num);
2549 }
2550 return 1;
2551}
2552
2553static zend_always_inline bool zend_parse_arg_obj_or_class_name(
2554 zval *arg, zend_class_entry **destination, bool allow_null
2555) {
2556 if (EXPECTED(Z_TYPE_P(arg) == IS_STRING)) {
2557 *destination = zend_lookup_class(Z_STR_P(arg));
2558
2559 return *destination != NULL;
2560 } else if (EXPECTED(Z_TYPE_P(arg) == IS_OBJECT)) {
2561 *destination = Z_OBJ_P(arg)->ce;
2562 } else if (allow_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) {
2563 *destination = NULL;
2564 } else {
2565 return 0;
2566 }
2567
2568 return 1;
2569}
2570
2571static zend_always_inline bool zend_parse_arg_obj_or_str(
2572 zval *arg, zend_object **destination_object, zend_class_entry *base_ce, zend_string **destination_string, bool allow_null, uint32_t arg_num
2573) {
2574 if (EXPECTED(Z_TYPE_P(arg) == IS_OBJECT)) {
2575 if (!base_ce || EXPECTED(instanceof_function(Z_OBJCE_P(arg), base_ce))) {
2576 *destination_object = Z_OBJ_P(arg);
2577 *destination_string = NULL;
2578 return 1;
2579 }
2580 }
2581
2582 *destination_object = NULL;
2583 return zend_parse_arg_str(arg, destination_string, allow_null, arg_num);
2584}
2585
2587
2588#endif /* ZEND_API_H */
size_t len
Definition apprentice.c:174
is_null(mixed $value)
copy(string $from, string $to, $context=null)
count(Countable|array $value, int $mode=COUNT_NORMAL)
char s[4]
Definition cdf.c:77
error($message)
Definition ext_skel.php:22
zend_ffi_type * type
Definition ffi.c:3812
zval * zv
Definition ffi.c:3975
zend_long n
Definition ffi.c:4979
new_type size
Definition ffi.c:4365
zend_string * res
Definition ffi.c:4692
memcpy(ptr1, ptr2, size)
zval * arg
Definition ffi.c:3975
zval * val
Definition ffi.c:4262
HashTable * ht
Definition ffi.c:4838
ffi persistent
Definition ffi.c:3633
#define NULL
Definition gdcache.h:45
#define SUCCESS
Definition hash_sha3.c:261
php_json_error_code error_code
Definition php_json.h:92
unsigned char key[REFLECTION_KEY_LEN]
phpdbg_frame_t frame
Definition phpdbg.h:236
HashTable functions
zend_string * lcname
zend_object * ex
zval rv
Definition session.c:1024
HashTable constants_table
Definition zend.h:165
HashTable * backed_enum_table
Definition zend.h:222
uint32_t ce_flags
Definition zend.h:156
char type
Definition zend.h:148
zval * default_properties_table
Definition zend.h:160
zval * default_properties_table
Definition zend.h:116
HashTable * backed_enum_table
Definition zend.h:119
HashTable * constants_table
Definition zend.h:117
zend_object * closure
Definition zend_API.h:64
zend_class_entry * calling_scope
Definition zend_API.h:61
zend_function * function_handler
Definition zend_API.h:60
zend_class_entry * called_scope
Definition zend_API.h:62
zend_object * object
Definition zend_API.h:63
HashTable * named_params
Definition zend_API.h:56
uint32_t param_count
Definition zend_API.h:51
zend_object * object
Definition zend_API.h:50
Definition zend_API.h:35
const zend_frameless_function_info * frameless_function_infos
Definition zend_API.h:41
zif_handler handler
Definition zend_API.h:37
const char * doc_comment
Definition zend_API.h:42
const char * fname
Definition zend_API.h:36
uint32_t flags
Definition zend_API.h:40
const struct _zend_internal_arg_info * arg_info
Definition zend_API.h:38
uint32_t num_args
Definition zend_API.h:39
$obj a
Definition test.php:84
zend_string * function_name
struct _zend_function::@236135173067030250234125302313220025134003177336 common
uint32_t fn_flags
ZEND_API ZEND_COLD void zend_throw_error(zend_class_entry *exception_ce, const char *format,...)
Definition zend.c:1772
struct _zend_class_mutable_data zend_class_mutable_data
ZEND_API ZEND_COLD void zend_class_redeclaration_error_ex(int type, zend_string *new_name, zend_class_entry *old_ce)
Definition zend_API.c:448
ZEND_API zend_result zend_copy_parameters_array(uint32_t param_count, zval *argument_array)
Definition zend_API.c:72
ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_callback_or_null_error(uint32_t num, char *error)
Definition zend_API.c:374
ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_parameter_type_error(uint32_t num, zend_expected_type expected_type, zval *arg)
Definition zend_API.c:284
ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_parameter_class_or_long_error(uint32_t num, const char *name, zval *arg)
Definition zend_API.c:325
ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_parameter_class_or_string_or_null_error(uint32_t num, const char *name, zval *arg)
Definition zend_API.c:355
ZEND_API ZEND_COLD void zend_argument_error(zend_class_entry *error_ce, uint32_t arg_num, const char *format,...)
Definition zend_API.c:413
ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_parameter_class_error(uint32_t num, const char *name, zval *arg)
Definition zend_API.c:305
ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_parameters_none_error(void)
Definition zend_API.c:214
ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_parameters_count_error(uint32_t min_num_args, uint32_t max_num_args)
Definition zend_API.c:225
ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_parameter_class_or_string_error(uint32_t num, const char *name, zval *arg)
Definition zend_API.c:345
ZEND_API ZEND_COLD void ZEND_FASTCALL zend_argument_error_variadic(zend_class_entry *error_ce, uint32_t arg_num, const char *format, va_list va)
Definition zend_API.c:391
ZEND_API ZEND_COLD void zend_argument_must_not_be_empty_error(uint32_t arg_num)
Definition zend_API.c:443
ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_parameter_error(int error_code, uint32_t num, char *name, zend_expected_type expected_type, zval *arg)
Definition zend_API.c:243
ZEND_API ZEND_COLD void ZEND_FASTCALL zend_unexpected_extra_named_error(void)
Definition zend_API.c:383
ZEND_API ZEND_COLD void zend_class_redeclaration_error(int type, zend_class_entry *old_ce)
Definition zend_API.c:463
ZEND_API ZEND_COLD void zend_argument_value_error(uint32_t arg_num, const char *format,...)
Definition zend_API.c:433
ZEND_API ZEND_COLD void zend_argument_type_error(uint32_t arg_num, const char *format,...)
Definition zend_API.c:423
ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_parameter_class_or_null_error(uint32_t num, const char *name, zval *arg)
Definition zend_API.c:315
ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_parameter_class_or_long_or_null_error(uint32_t num, const char *name, zval *arg)
Definition zend_API.c:335
ZEND_API zend_result zend_get_parameters_array_ex(uint32_t param_count, zval *argument_array)
Definition zend_API.c:50
ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_callback_error(uint32_t num, char *error)
Definition zend_API.c:365
ZEND_API bool ZEND_FASTCALL zend_parse_arg_long_weak(const zval *arg, zend_long *dest, uint32_t arg_num)
Definition zend_API.c:557
ZEND_API zend_result zend_update_class_constants(zend_class_entry *class_type)
Definition zend_API.c:1518
ZEND_API zend_result add_next_index_null(zval *arg)
Definition zend_API.c:2141
ZEND_API void add_property_zval_ex(zval *arg, const char *key, size_t key_len, zval *value)
Definition zend_API.c:2378
ZEND_API const zend_fcall_info empty_fcall_info
ZEND_API zval * zend_read_property_ex(zend_class_entry *scope, zend_object *object, zend_string *name, bool silent, zval *rv)
Definition zend_API.c:5187
#define CHECK_NULL_PATH(p, l)
Definition zend_API.h:950
ZEND_API zend_result add_next_index_bool(zval *arg, bool b)
Definition zend_API.c:2150
ZEND_API void add_property_array_ex(zval *arg, const char *key, size_t key_len, zend_array *arr)
Definition zend_API.c:2348
ZEND_API const zend_fcall_info_cache empty_fcall_info_cache
ZEND_API zend_result zend_register_functions(zend_class_entry *scope, const zend_function_entry *functions, HashTable *function_table, int type)
Definition zend_API.c:2927
ZEND_API bool zend_is_countable(const zval *countable)
Definition zend_API.c:5287
ZEND_API zend_result array_set_zval_key(HashTable *ht, zval *key, zval *value)
Definition zend_API.c:2231
struct _zend_fcall_info_cache zend_fcall_info_cache
ZEND_API void add_property_object_ex(zval *arg, const char *key, size_t key_len, zend_object *obj)
Definition zend_API.c:2358
ZEND_API zend_result zend_try_assign_typed_ref_null(zend_reference *ref)
Definition zend_API.c:4683
ZEND_API void zend_check_magic_method_implementation(const zend_class_entry *ce, const zend_function *fptr, zend_string *lcname, int error_type)
Definition zend_API.c:2762
ZEND_API zend_class_entry * zend_register_internal_class_ex(zend_class_entry *class_entry, zend_class_entry *parent_ce)
Definition zend_API.c:3506
ZEND_API ZEND_COLD const char * zend_get_object_type_case(const zend_class_entry *ce, bool upper_case)
Definition zend_API.c:5260
ZEND_API const char * zend_zval_value_name(const zval *arg)
Definition zend_API.c:148
ZEND_API void add_assoc_bool_ex(zval *arg, const char *key, size_t key_len, bool b)
Definition zend_API.c:1946
ZEND_API zend_module_entry * zend_register_module_ex(zend_module_entry *module, int module_type)
Definition zend_API.c:2587
ZEND_API zend_result zend_parse_parameter(int flags, uint32_t arg_num, zval *arg, const char *spec,...)
Definition zend_API.c:1123
ZEND_API zend_result zend_try_assign_typed_ref_double(zend_reference *ref, double dval)
Definition zend_API.c:4710
ZEND_API const char * zend_get_type_by_const(int type)
Definition zend_API.c:112
ZEND_API zend_result add_next_index_object(zval *arg, zend_object *obj)
Definition zend_API.c:2213
ZEND_API void zend_declare_property_double(zend_class_entry *ce, const char *name, size_t name_length, double value, int access_type)
Definition zend_API.c:4832
ZEND_API void object_properties_init_ex(zend_object *object, HashTable *properties)
Definition zend_API.c:1695
ZEND_API zend_result zend_register_class_alias_ex(const char *name, size_t name_len, zend_class_entry *ce, bool persistent)
Definition zend_API.c:3563
ZEND_API zend_result zend_startup_module(zend_module_entry *module_entry)
Definition zend_API.c:3253
ZEND_API void add_property_long_ex(zval *arg, const char *key, size_t key_len, zend_long l)
Definition zend_API.c:2272
ZEND_API void zend_fcall_info_argv(zend_fcall_info *fci, uint32_t argc, va_list *argv)
Definition zend_API.c:4418
_zend_expected_type
Definition zend_API.h:1549
@ Z_EXPECTED_LAST
Definition zend_API.h:1551
ZEND_API HashTable * zend_separate_class_constants_table(zend_class_entry *class_type)
Definition zend_API.c:1429
ZEND_API zend_result object_init_ex(zval *arg, zend_class_entry *ce)
Definition zend_API.c:1849
ZEND_API zend_result zend_try_assign_typed_ref_ex(zend_reference *ref, zval *zv, bool strict)
Definition zend_API.c:4664
ZEND_API void zend_call_known_instance_method_with_2_params(zend_function *fn, zend_object *object, zval *retval_ptr, zval *param1, zval *param2)
ZEND_API void zend_declare_property_bool(zend_class_entry *ce, const char *name, size_t name_length, zend_long value, int access_type)
Definition zend_API.c:4814
ZEND_API zend_result add_next_index_stringl(zval *arg, const char *str, size_t length)
Definition zend_API.c:2195
ZEND_API zval * zend_read_static_property_ex(zend_class_entry *scope, zend_string *name, bool silent)
Definition zend_API.c:5213
ZEND_API zend_property_info * zend_declare_typed_property(zend_class_entry *ce, zend_string *name, zval *property, int access_type, zend_string *doc_comment, zend_type type)
Definition zend_API.c:4505
ZEND_API ZEND_COLD void zend_wrong_param_count(void)
Definition zend_API.c:94
ZEND_API void zend_declare_class_constant_double(zend_class_entry *ce, const char *name, size_t name_length, double value)
Definition zend_API.c:4955
ZEND_API zend_class_entry * zend_register_internal_class(zend_class_entry *class_entry)
Definition zend_API.c:3551
ZEND_API zend_result add_next_index_double(zval *arg, double d)
Definition zend_API.c:2168
ZEND_API void add_index_array(zval *arg, zend_ulong index, zend_array *arr)
Definition zend_API.c:2105
ZEND_API zend_result add_next_index_long(zval *arg, zend_long n)
Definition zend_API.c:2132
ZEND_API zend_result zend_get_default_from_internal_arg_info(zval *default_value_zval, zend_internal_arg_info *arg_info)
Definition zend_API.c:5352
struct _zend_function_entry zend_function_entry
ZEND_API const char * zend_zval_type_name(const zval *arg)
Definition zend_API.c:167
ZEND_API bool ZEND_FASTCALL zend_parse_arg_class(zval *arg, zend_class_entry **pce, uint32_t num, bool check_null)
Definition zend_API.c:468
ZEND_API void zend_collect_module_handlers(void)
Definition zend_API.c:2489
ZEND_API zend_result zend_disable_class(const char *class_name, size_t class_name_length)
Definition zend_API.c:3707
ZEND_API zend_result zend_get_module_started(const char *module_name)
Definition zend_API.c:3262
ZEND_API zend_result object_init_with_constructor(zval *arg, zend_class_entry *class_type, uint32_t param_count, zval *params, HashTable *named_params)
Definition zend_API.c:1855
ZEND_API zend_result zend_fcall_info_init(zval *callable, uint32_t check_flags, zend_fcall_info *fci, zend_fcall_info_cache *fcc, zend_string **callable_name, char **error)
Definition zend_API.c:4310
ZEND_API zval * zend_read_property(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length, bool silent, zval *rv)
Definition zend_API.c:5201
ZEND_API void add_index_stringl(zval *arg, zend_ulong index, const char *str, size_t length)
Definition zend_API.c:2096
ZEND_API void add_assoc_double_ex(zval *arg, const char *key, size_t key_len, double d)
Definition zend_API.c:1964
ZEND_API ZEND_COLD void zend_wrong_property_read(zval *object, zval *property)
Definition zend_API.c:103
ZEND_API void zend_declare_class_constant_null(zend_class_entry *ce, const char *name, size_t name_length)
Definition zend_API.c:4928
ZEND_API void add_property_str_ex(zval *arg, const char *key, size_t key_len, zend_string *str)
Definition zend_API.c:2318
ZEND_API zend_result zend_try_assign_typed_ref_long(zend_reference *ref, zend_long lval)
Definition zend_API.c:4701
ZEND_API void add_assoc_array_ex(zval *arg, const char *key, size_t key_len, zend_array *arr)
Definition zend_API.c:2000
ZEND_API void zend_declare_property_null(zend_class_entry *ce, const char *name, size_t name_length, int access_type)
Definition zend_API.c:4805
ZEND_API zend_result zend_call_method_if_exists(zend_object *object, zend_string *method_name, zval *retval, uint32_t param_count, zval *params)
ZEND_API zend_result zend_fcall_info_args_ex(zend_fcall_info *fci, zend_function *func, zval *args)
Definition zend_API.c:4364
ZEND_API bool zend_is_callable_at_frame(zval *callable, zend_object *object, zend_execute_data *frame, uint32_t check_flags, zend_fcall_info_cache *fcc, char **error)
Definition zend_API.c:4160
ZEND_API void zend_update_property_double(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length, double value)
Definition zend_API.c:5048
ZEND_API void add_assoc_reference_ex(zval *arg, const char *key, size_t key_len, zend_reference *ref)
Definition zend_API.c:2018
ZEND_API void zend_get_callable_zval_from_fcc(const zend_fcall_info_cache *fcc, zval *callable)
Definition zend_API.c:4468
ZEND_API void zend_declare_property_stringl(zend_class_entry *ce, const char *name, size_t name_length, const char *value, size_t value_len, int access_type)
Definition zend_API.c:4850
ZEND_API zend_result zend_update_static_property_bool(zend_class_entry *scope, const char *name, size_t name_length, zend_long value)
Definition zend_API.c:5140
ZEND_API zend_class_entry * zend_register_internal_interface(zend_class_entry *orig_class_entry)
Definition zend_API.c:3557
ZEND_API bool ZEND_FASTCALL zend_parse_arg_long_slow(const zval *arg, zend_long *dest, uint32_t arg_num)
Definition zend_API.c:627
ZEND_API zend_result object_and_properties_init(zval *arg, zend_class_entry *ce, HashTable *properties)
Definition zend_API.c:1843
ZEND_API void zend_detach_symbol_table(zend_execute_data *execute_data)
ZEND_API void zend_unset_property(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length)
Definition zend_API.c:5015
ZEND_API void zend_update_property_string(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length, const char *value)
Definition zend_API.c:5066
ZEND_API void zend_update_property_stringl(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length, const char *value, size_t value_length)
Definition zend_API.c:5076
ZEND_API void add_index_str(zval *arg, zend_ulong index, zend_string *str)
Definition zend_API.c:2078
ZEND_API bool ZEND_FASTCALL zend_flf_parse_arg_bool_slow(const zval *arg, bool *dest, uint32_t arg_num)
Definition zend_API.c:549
ZEND_API void add_index_string(zval *arg, zend_ulong index, const char *str)
Definition zend_API.c:2087
ZEND_API void add_property_resource_ex(zval *arg, const char *key, size_t key_len, zend_resource *r)
Definition zend_API.c:2299
#define Z_EXPECTED_TYPES(_)
Definition zend_API.h:1508
ZEND_API void zend_update_property_bool(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length, zend_long value)
Definition zend_API.c:5030
ZEND_API void zend_startup_modules(void)
Definition zend_API.c:2570
ZEND_API zend_result zend_try_assign_typed_ref(zend_reference *ref, zval *zv)
Definition zend_API.c:4677
ZEND_API void add_property_bool_ex(zval *arg, const char *key, size_t key_len, zend_long b)
Definition zend_API.c:2281
enum _zend_expected_type zend_expected_type
ZEND_API void zend_declare_property_ex(zend_class_entry *ce, zend_string *name, zval *property, int access_type, zend_string *doc_comment)
Definition zend_API.c:4791
ZEND_API zend_class_constant * zend_declare_typed_class_constant(zend_class_entry *ce, zend_string *name, zval *value, int access_type, zend_string *doc_comment, zend_type type)
Definition zend_API.c:4859
ZEND_API void add_index_object(zval *arg, zend_ulong index, zend_object *obj)
Definition zend_API.c:2114
ZEND_API zend_result add_next_index_reference(zval *arg, zend_reference *ref)
Definition zend_API.c:2222
ZEND_API zend_result zend_set_hash_symbol(zval *symbol, const char *name, size_t name_length, bool is_ref, int num_symbol_tables,...)
Definition zend_API.c:3605
ZEND_API void add_index_resource(zval *arg, zend_ulong index, zend_resource *r)
Definition zend_API.c:2060
ZEND_API void add_assoc_string_ex(zval *arg, const char *key, size_t key_len, const char *str)
Definition zend_API.c:1982
ZEND_API zend_result zend_startup_module_ex(zend_module_entry *module)
Definition zend_API.c:2388
ZEND_API void add_index_double(zval *arg, zend_ulong index, double d)
Definition zend_API.c:2069
ZEND_API void zend_declare_class_constant_string(zend_class_entry *ce, const char *name, size_t name_length, const char *value)
Definition zend_API.c:4973
ZEND_API bool zend_make_callable(zval *callable, zend_string **callable_name)
Definition zend_API.c:4292
ZEND_API zend_result zend_update_static_property_null(zend_class_entry *scope, const char *name, size_t name_length)
Definition zend_API.c:5131
ZEND_API void zend_fcall_info_args_clear(zend_fcall_info *fci, bool free_mem)
Definition zend_API.c:4328
ZEND_API zend_result zend_parse_parameters(uint32_t num_args, const char *type_spec,...)
Definition zend_API.c:1300
ZEND_API void add_assoc_zval_ex(zval *arg, const char *key, size_t key_len, zval *value)
Definition zend_API.c:2027
ZEND_API void add_index_bool(zval *arg, zend_ulong index, bool b)
Definition zend_API.c:2051
ZEND_API zend_string * zend_get_callable_name_ex(zval *callable, zend_object *object)
Definition zend_API.c:4106
ZEND_API void zend_fcall_info_args_restore(zend_fcall_info *fci, uint32_t param_count, zval *params)
Definition zend_API.c:4356
ZEND_API void add_assoc_stringl_ex(zval *arg, const char *key, size_t key_len, const char *str, size_t length)
Definition zend_API.c:1991
ZEND_API void add_assoc_object_ex(zval *arg, const char *key, size_t key_len, zend_object *obj)
Definition zend_API.c:2009
ZEND_API void zend_unregister_functions(const zend_function_entry *functions, int count, HashTable *function_table)
Definition zend_API.c:3227
ZEND_API zend_result zend_update_static_property(zend_class_entry *scope, const char *name, size_t name_length, zval *value)
Definition zend_API.c:5122
struct _zend_fcall_info zend_fcall_info
ZEND_API void add_property_string_ex(zval *arg, const char *key, size_t key_len, const char *str)
Definition zend_API.c:2328
ZEND_API void zend_fcall_info_argn(zend_fcall_info *fci, uint32_t argc,...)
Definition zend_API.c:4435
ZEND_API void zend_update_property(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length, zval *value)
Definition zend_API.c:4991
ZEND_API zend_module_entry * zend_register_internal_module(zend_module_entry *module_entry)
Definition zend_API.c:2655
ZEND_API bool ZEND_FASTCALL zend_parse_arg_double_slow(const zval *arg, double *dest, uint32_t arg_num)
Definition zend_API.c:676
ZEND_API zend_result zend_try_assign_typed_ref_zval(zend_reference *ref, zval *zv)
Definition zend_API.c:4773
ZEND_API zend_result zend_try_assign_typed_ref_string(zend_reference *ref, const char *string)
Definition zend_API.c:4737
ZEND_API zend_class_entry * zend_register_internal_class_with_flags(zend_class_entry *class_entry, zend_class_entry *parent_ce, uint32_t flags)
Definition zend_API.c:3512
ZEND_API zend_class_constant * zend_declare_class_constant_ex(zend_class_entry *ce, zend_string *name, zval *value, int access_type, zend_string *doc_comment)
Definition zend_API.c:4909
ZEND_API void add_index_reference(zval *arg, zend_ulong index, zend_reference *ref)
Definition zend_API.c:2123
ZEND_API void zend_declare_property(zend_class_entry *ce, const char *name, size_t name_length, zval *property, int access_type)
Definition zend_API.c:4797
ZEND_API zend_string * zend_get_callable_name(zval *callable)
Definition zend_API.c:4154
ZEND_API zend_result zend_try_assign_typed_ref_str(zend_reference *ref, zend_string *str)
Definition zend_API.c:4728
ZEND_API void object_properties_init(zend_object *object, zend_class_entry *class_type)
Definition zend_API.c:1688
ZEND_API void add_property_stringl_ex(zval *arg, const char *key, size_t key_len, const char *str, size_t length)
Definition zend_API.c:2338
ZEND_API bool ZEND_FASTCALL zend_parse_arg_number_or_str_slow(zval *arg, zval **dest, uint32_t arg_num)
Definition zend_API.c:722
ZEND_API bool ZEND_FASTCALL zend_parse_arg_bool_weak(const zval *arg, bool *dest, uint32_t arg_num)
Definition zend_API.c:526
ZEND_API void zend_declare_property_string(zend_class_entry *ce, const char *name, size_t name_length, const char *value, int access_type)
Definition zend_API.c:4841
ZEND_API bool zend_is_callable_ex(zval *callable, zend_object *object, uint32_t check_flags, zend_string **callable_name, zend_fcall_info_cache *fcc, char **error)
Definition zend_API.c:4271
ZEND_API void zend_attach_symbol_table(zend_execute_data *execute_data)
ZEND_API bool ZEND_FASTCALL zend_parse_arg_bool_slow(const zval *arg, bool *dest, uint32_t arg_num)
Definition zend_API.c:540
ZEND_API void zend_update_property_long(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length, zend_long value)
Definition zend_API.c:5039
ZEND_API bool ZEND_FASTCALL zend_parse_arg_double_weak(const zval *arg, double *dest, uint32_t arg_num)
Definition zend_API.c:644
ZEND_API zend_result add_next_index_resource(zval *arg, zend_resource *r)
Definition zend_API.c:2159
ZEND_API void add_assoc_long_ex(zval *arg, const char *key, size_t key_len, zend_long n)
Definition zend_API.c:1928
ZEND_API void zend_declare_class_constant(zend_class_entry *ce, const char *name, size_t name_length, zval *value)
Definition zend_API.c:4914
ZEND_API const char * zend_get_module_version(const char *module_name)
Definition zend_API.c:4486
ZEND_API zend_result zend_try_assign_typed_ref_bool(zend_reference *ref, bool val)
Definition zend_API.c:4692
#define ZEND_FCC_INITIALIZED(fcc)
Definition zend_API.h:341
ZEND_API zend_result zend_set_local_var(zend_string *name, zval *value, bool force)
ZEND_API void add_assoc_resource_ex(zval *arg, const char *key, size_t key_len, zend_resource *r)
Definition zend_API.c:1955
ZEND_API zend_result zend_fcall_info_args(zend_fcall_info *fci, zval *args)
Definition zend_API.c:4397
ZEND_API zend_result zend_update_static_property_long(zend_class_entry *scope, const char *name, size_t name_length, zend_long value)
Definition zend_API.c:5149
ZEND_API zend_result zend_try_assign_typed_ref_arr(zend_reference *ref, zend_array *arr)
Definition zend_API.c:4755
ZEND_API zend_result zend_parse_method_parameters(uint32_t num_args, zval *this_ptr, const char *type_spec,...)
Definition zend_API.c:1314
#define Z_EXPECTED_TYPE_ENUM(id, str)
Definition zend_API.h:1546
ZEND_API zend_result zend_try_assign_typed_ref_res(zend_reference *ref, zend_resource *res)
Definition zend_API.c:4764
ZEND_API void add_assoc_str_ex(zval *arg, const char *key, size_t key_len, zend_string *str)
Definition zend_API.c:1973
ZEND_API void zend_add_magic_method(zend_class_entry *ce, zend_function *fptr, zend_string *lcname)
Definition zend_API.c:2859
ZEND_API zval * zend_read_static_property(zend_class_entry *scope, const char *name, size_t name_length, bool silent)
Definition zend_API.c:5226
ZEND_API void zend_release_fcall_info_cache(zend_fcall_info_cache *fcc)
Definition zend_API.c:3845
ZEND_API void add_property_reference_ex(zval *arg, const char *key, size_t key_len, zend_reference *ref)
Definition zend_API.c:2368
ZEND_API zend_result zend_parse_method_parameters_ex(int flags, uint32_t num_args, zval *this_ptr, const char *type_spec,...)
Definition zend_API.c:1354
ZEND_API zend_result _call_user_function_impl(zval *object, zval *function_name, zval *retval_ptr, uint32_t param_count, zval params[], HashTable *named_params)
ZEND_API void add_property_double_ex(zval *arg, const char *key, size_t key_len, double d)
Definition zend_API.c:2309
ZEND_API int zend_next_free_module(void)
Definition zend_API.c:3464
ZEND_API zend_string * zend_zval_get_legacy_type(const zval *arg)
Definition zend_API.c:184
ZEND_API void zend_disable_functions(const char *function_list)
Definition zend_API.c:3641
ZEND_API zend_result zend_try_assign_typed_ref_empty_string(zend_reference *ref)
Definition zend_API.c:4719
ZEND_API zend_result add_next_index_array(zval *arg, zend_array *arr)
Definition zend_API.c:2204
ZEND_API void zend_fcall_info_argp(zend_fcall_info *fci, uint32_t argc, zval *argv)
Definition zend_API.c:4403
ZEND_API zend_result zend_try_assign_typed_ref_stringl(zend_reference *ref, const char *string, size_t len)
Definition zend_API.c:4746
ZEND_API void zend_merge_properties(zval *obj, HashTable *properties)
Definition zend_API.c:1392
ZEND_API void zend_update_property_null(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length)
Definition zend_API.c:5006
ZEND_API void zend_update_property_ex(zend_class_entry *scope, zend_object *object, zend_string *name, zval *value)
Definition zend_API.c:4979
ZEND_API zend_result zend_delete_global_variable(zend_string *name)
ZEND_API zend_result zend_update_static_property_stringl(zend_class_entry *scope, const char *name, size_t name_length, const char *value, size_t value_length)
Definition zend_API.c:5177
ZEND_API zend_result zend_try_assign_typed_ref_zval_ex(zend_reference *ref, zval *zv, bool strict)
Definition zend_API.c:4782
ZEND_API zend_array * zend_rebuild_symbol_table(void)
ZEND_API void zend_call_known_function(zend_function *fn, zend_object *object, zend_class_entry *called_scope, zval *retval_ptr, uint32_t param_count, zval *params, HashTable *named_params)
ZEND_API zend_result zend_update_class_constant(zend_class_constant *c, const zend_string *name, zend_class_entry *scope)
Definition zend_API.c:1490
ZEND_API void zend_declare_class_constant_long(zend_class_entry *ce, const char *name, size_t name_length, zend_long value)
Definition zend_API.c:4937
ZEND_API void zend_declare_class_constant_bool(zend_class_entry *ce, const char *name, size_t name_length, bool value)
Definition zend_API.c:4946
ZEND_API zend_result add_next_index_string(zval *arg, const char *str)
Definition zend_API.c:2186
ZEND_API zend_result zend_set_local_var_str(const char *name, size_t len, zval *value, bool force)
ZEND_API zend_result zend_update_static_property_double(zend_class_entry *scope, const char *name, size_t name_length, double value)
Definition zend_API.c:5158
ZEND_API void zend_update_property_str(zend_class_entry *scope, zend_object *object, const char *name, size_t name_length, zend_string *value)
Definition zend_API.c:5057
ZEND_API void add_index_null(zval *arg, zend_ulong index)
Definition zend_API.c:2042
ZEND_API bool ZEND_FASTCALL zend_parse_arg_str_slow(zval *arg, zend_string **dest, uint32_t arg_num)
Definition zend_API.c:776
ZEND_API bool ZEND_FASTCALL zend_parse_arg_str_or_long_slow(zval *arg, zend_string **dest_str, zend_long *dest_long, uint32_t arg_num)
Definition zend_API.c:793
ZEND_API bool ZEND_FASTCALL zend_parse_arg_str_weak(zval *arg, zend_string **dest, uint32_t arg_num)
Definition zend_API.c:751
ZEND_API zend_result zend_fcall_info_call(zend_fcall_info *fci, zend_fcall_info_cache *fcc, zval *retval, zval *args)
Definition zend_API.c:4445
ZEND_API void add_assoc_null_ex(zval *arg, const char *key, size_t key_len)
Definition zend_API.c:1937
ZEND_API zend_result zend_update_static_property_ex(zend_class_entry *scope, zend_string *name, zval *value)
Definition zend_API.c:5086
ZEND_API void object_init(zval *arg)
Definition zend_API.c:1922
ZEND_API bool ZEND_FASTCALL zend_flf_parse_arg_str_slow(zval *arg, zend_string **dest, uint32_t arg_num)
Definition zend_API.c:785
ZEND_API void zend_class_implements(zend_class_entry *class_entry, int num_interfaces,...)
Definition zend_API.c:3527
ZEND_API void zend_declare_class_constant_stringl(zend_class_entry *ce, const char *name, size_t name_length, const char *value, size_t value_length)
Definition zend_API.c:4964
ZEND_API zend_result zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache)
ZEND_API void add_index_long(zval *arg, zend_ulong index, zend_long n)
Definition zend_API.c:2033
ZEND_API bool zend_is_iterable(const zval *iterable)
Definition zend_API.c:5274
ZEND_API void object_properties_load(zend_object *object, HashTable *properties)
Definition zend_API.c:1728
ZEND_API void add_property_null_ex(zval *arg, const char *key, size_t key_len)
Definition zend_API.c:2290
ZEND_API void zend_declare_property_long(zend_class_entry *ce, const char *name, size_t name_length, zend_long value, int access_type)
Definition zend_API.c:4823
ZEND_API void zend_destroy_modules(void)
Definition zend_API.c:2577
ZEND_API bool zend_is_callable(zval *callable, uint32_t check_flags, zend_string **callable_name)
Definition zend_API.c:4286
ZEND_API bool ZEND_FASTCALL zend_flf_parse_arg_long_slow(const zval *arg, zend_long *dest, uint32_t arg_num)
Definition zend_API.c:636
ZEND_API zend_result add_next_index_str(zval *arg, zend_string *str)
Definition zend_API.c:2177
ZEND_API bool ZEND_FASTCALL zend_parse_arg_number_slow(zval *arg, zval **dest, uint32_t arg_num)
Definition zend_API.c:688
ZEND_API void zend_fcall_info_args_save(zend_fcall_info *fci, uint32_t *param_count, zval **params)
Definition zend_API.c:4347
ZEND_API zend_result zend_update_static_property_string(zend_class_entry *scope, const char *name, size_t name_length, const char *value)
Definition zend_API.c:5167
ZEND_API zend_result zend_parse_parameters_ex(int flags, uint32_t num_args, const char *type_spec,...)
Definition zend_API.c:1287
#define emalloc(size)
Definition zend_alloc.h:151
struct _zval_struct zval
strlen(string $string)
uint32_t num_args
execute_data func
zval * args
#define ZEND_ACC_CALL_VIA_TRAMPOLINE
#define ZEND_ACC_HAS_AST_CONSTANTS
struct _zend_class_constant zend_class_constant
struct _zend_property_info zend_property_info
#define ZEND_ACC_HAS_AST_PROPERTIES
struct _zend_internal_arg_info zend_internal_arg_info
#define ZEND_CALL_INFO(call)
#define ZEND_CALL_DYNAMIC
#define ZEND_USER_CLASS
void(ZEND_FASTCALL * zif_handler)(INTERNAL_FUNCTION_PARAMETERS)
#define ZEND_API
#define ZEND_REF_HAS_TYPE_SOURCES(ref)
ZEND_API zend_class_entry * zend_lookup_class(zend_string *name)
ZEND_API zend_string * get_active_function_or_method_name(void)
union _zend_function zend_function
#define EG(v)
ZEND_API zval *ZEND_FASTCALL zend_hash_next_index_insert(HashTable *ht, zval *pData)
Definition zend_hash.c:1224
ZEND_API zval *ZEND_FASTCALL zend_hash_index_update(HashTable *ht, zend_ulong h, zval *pData)
Definition zend_hash.c:1219
ZEND_API HashTable *ZEND_FASTCALL zend_array_dup(HashTable *source)
Definition zend_hash.c:2438
#define zend_new_array(size)
Definition zend_hash.h:338
int32_t zend_long
Definition zend_long.h:42
uint32_t zend_ulong
Definition zend_long.h:43
struct _zend_string zend_string
#define ZEND_MAP_PTR_GET_IMM(ptr)
#define ZEND_MAP_PTR(ptr)
struct _zend_module_entry zend_module_entry
#define OBJ_RELEASE(obj)
#define END_EXTERN_C()
#define EXPECTED(condition)
#define zend_always_inline
#define ZEND_FASTCALL
#define ZEND_ASSERT(c)
#define ZEND_COLD
#define UNEXPECTED(condition)
#define BEGIN_EXTERN_C()
struct _zend_array zend_array
struct _zend_class_entry zend_class_entry
struct _zend_object zend_object
#define ZSTR_VAL(zstr)
Definition zend_string.h:68
#define ZSTR_LEN(zstr)
Definition zend_string.h:69
#define dval(x)
#define Z_TYPE_P(zval_p)
Definition zend_types.h:660
#define IS_TRUE
Definition zend_types.h:603
#define Z_ISREF_P(zval_p)
Definition zend_types.h:954
#define Z_REFVAL_P(zval_p)
#define IS_FALSE
Definition zend_types.h:602
#define Z_ARRVAL_P(zval_p)
Definition zend_types.h:987
#define ZVAL_NULL(z)
#define IS_STRING
Definition zend_types.h:606
struct _zend_resource zend_resource
Definition zend_types.h:99
struct _zend_array HashTable
Definition zend_types.h:386
#define IS_RESOURCE
Definition zend_types.h:609
#define Z_OBJ_P(zval_p)
Definition zend_types.h:990
#define IS_ARRAY
Definition zend_types.h:607
#define IS_DOUBLE
Definition zend_types.h:605
#define Z_STR_P(zval_p)
Definition zend_types.h:972
#define GC_DELREF(p)
Definition zend_types.h:710
#define GC_FLAGS(p)
Definition zend_types.h:756
#define GC_ADDREF(p)
Definition zend_types.h:709
#define IS_NULL
Definition zend_types.h:601
#define Z_OBJCE_P(zval_p)
@ FAILURE
Definition zend_types.h:61
#define IS_OBJECT
Definition zend_types.h:608
#define IS_LONG
Definition zend_types.h:604
#define ZVAL_ARR(z, a)
#define Z_REF_P(zval_p)
ZEND_RESULT_CODE zend_result
Definition zend_types.h:64
#define IS_ARRAY_IMMUTABLE
Definition zend_types.h:823
#define GC_REFCOUNT(p)
Definition zend_types.h:707
#define Z_DVAL_P(zval_p)
Definition zend_types.h:969
struct _zend_execute_data zend_execute_data
Definition zend_types.h:91
#define Z_LVAL_P(zval_p)
Definition zend_types.h:966
#define ZVAL_COPY_VALUE(z, v)
struct _zend_reference zend_reference
Definition zend_types.h:100
ZEND_API void zval_ptr_dtor(zval *zval_ptr)
zval retval
retval_ptr
uint32_t arg_num
zend_string * name
execute_data
object
zend_refcounted * garbage
value
property
new_op_array scope
zend_object * zobj