/src/php-src/Zend/zend_ptr_stack.h
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | +----------------------------------------------------------------------+ |
3 | | | Zend Engine | |
4 | | +----------------------------------------------------------------------+ |
5 | | | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | |
6 | | +----------------------------------------------------------------------+ |
7 | | | This source file is subject to version 2.00 of the Zend license, | |
8 | | | that is bundled with this package in the file LICENSE, and is | |
9 | | | available through the world-wide-web at the following url: | |
10 | | | http://www.zend.com/license/2_00.txt. | |
11 | | | If you did not receive a copy of the Zend license and are unable to | |
12 | | | obtain it through the world-wide-web, please send a note to | |
13 | | | license@zend.com so we can mail you a copy immediately. | |
14 | | +----------------------------------------------------------------------+ |
15 | | | Authors: Andi Gutmans <andi@php.net> | |
16 | | | Zeev Suraski <zeev@php.net> | |
17 | | +----------------------------------------------------------------------+ |
18 | | */ |
19 | | |
20 | | #ifndef ZEND_PTR_STACK_H |
21 | | #define ZEND_PTR_STACK_H |
22 | | |
23 | | #include "zend_alloc.h" |
24 | | |
25 | | typedef struct _zend_ptr_stack { |
26 | | int top, max; |
27 | | void **elements; |
28 | | void **top_element; |
29 | | bool persistent; |
30 | | } zend_ptr_stack; |
31 | | |
32 | | |
33 | 230k | #define PTR_STACK_BLOCK_SIZE 64 |
34 | | |
35 | | BEGIN_EXTERN_C() |
36 | | ZEND_API void zend_ptr_stack_init(zend_ptr_stack *stack); |
37 | | ZEND_API void zend_ptr_stack_init_ex(zend_ptr_stack *stack, bool persistent); |
38 | | ZEND_API void zend_ptr_stack_n_push(zend_ptr_stack *stack, int count, ...); |
39 | | ZEND_API void zend_ptr_stack_n_pop(zend_ptr_stack *stack, int count, ...); |
40 | | ZEND_API void zend_ptr_stack_destroy(zend_ptr_stack *stack); |
41 | | ZEND_API void zend_ptr_stack_apply(zend_ptr_stack *stack, void (*func)(void *)); |
42 | | ZEND_API void zend_ptr_stack_reverse_apply(zend_ptr_stack *stack, void (*func)(void *)); |
43 | | ZEND_API void zend_ptr_stack_clean(zend_ptr_stack *stack, void (*func)(void *), bool free_elements); |
44 | | ZEND_API int zend_ptr_stack_num_elements(zend_ptr_stack *stack); |
45 | | END_EXTERN_C() |
46 | | |
47 | | #define ZEND_PTR_STACK_RESIZE_IF_NEEDED(stack, count) \ |
48 | 4.99M | if (stack->top+count > stack->max) { \ |
49 | 230k | /* we need to allocate more memory */ \ |
50 | 230k | do { \ |
51 | 230k | stack->max += PTR_STACK_BLOCK_SIZE; \ |
52 | 230k | } while (stack->top+count > stack->max); \ |
53 | 230k | stack->elements = (void **) safe_perealloc(stack->elements, sizeof(void *), (stack->max), 0, stack->persistent); \ |
54 | 230k | stack->top_element = stack->elements+stack->top; \ |
55 | 230k | } |
56 | | |
57 | | /* Not doing this with a macro because of the loop unrolling in the element assignment. |
58 | | Just using a macro for 3 in the body for readability sake. */ |
59 | | static zend_always_inline void zend_ptr_stack_3_push(zend_ptr_stack *stack, void *a, void *b, void *c) |
60 | 0 | { |
61 | 0 | #define ZEND_PTR_STACK_NUM_ARGS 3 |
62 | 0 |
|
63 | 0 | ZEND_PTR_STACK_RESIZE_IF_NEEDED(stack, ZEND_PTR_STACK_NUM_ARGS) |
64 | 0 |
|
65 | 0 | stack->top += ZEND_PTR_STACK_NUM_ARGS; |
66 | 0 | *(stack->top_element++) = a; |
67 | 0 | *(stack->top_element++) = b; |
68 | 0 | *(stack->top_element++) = c; |
69 | 0 |
|
70 | 0 | #undef ZEND_PTR_STACK_NUM_ARGS |
71 | 0 | } Unexecuted instantiation: php_date.c:zend_ptr_stack_3_push Unexecuted instantiation: php_pcre.c:zend_ptr_stack_3_push Unexecuted instantiation: exif.c:zend_ptr_stack_3_push Unexecuted instantiation: hash_adler32.c:zend_ptr_stack_3_push Unexecuted instantiation: hash_crc32.c:zend_ptr_stack_3_push Unexecuted instantiation: hash_fnv.c:zend_ptr_stack_3_push Unexecuted instantiation: hash_gost.c:zend_ptr_stack_3_push Unexecuted instantiation: hash_haval.c:zend_ptr_stack_3_push Unexecuted instantiation: hash_joaat.c:zend_ptr_stack_3_push Unexecuted instantiation: hash_md.c:zend_ptr_stack_3_push Unexecuted instantiation: hash_murmur.c:zend_ptr_stack_3_push Unexecuted instantiation: hash_ripemd.c:zend_ptr_stack_3_push Unexecuted instantiation: hash_sha_ni.c:zend_ptr_stack_3_push Unexecuted instantiation: hash_sha_sse2.c:zend_ptr_stack_3_push Unexecuted instantiation: hash_sha.c:zend_ptr_stack_3_push Unexecuted instantiation: hash_sha3.c:zend_ptr_stack_3_push Unexecuted instantiation: hash_snefru.c:zend_ptr_stack_3_push Unexecuted instantiation: hash_tiger.c:zend_ptr_stack_3_push Unexecuted instantiation: hash_whirlpool.c:zend_ptr_stack_3_push Unexecuted instantiation: hash_xxhash.c:zend_ptr_stack_3_push Unexecuted instantiation: hash.c:zend_ptr_stack_3_push Unexecuted instantiation: json_encoder.c:zend_ptr_stack_3_push Unexecuted instantiation: json_parser.tab.c:zend_ptr_stack_3_push Unexecuted instantiation: json_scanner.c:zend_ptr_stack_3_push Unexecuted instantiation: json.c:zend_ptr_stack_3_push Unexecuted instantiation: php_lexbor.c:zend_ptr_stack_3_push Unexecuted instantiation: csprng.c:zend_ptr_stack_3_push Unexecuted instantiation: engine_mt19937.c:zend_ptr_stack_3_push Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_ptr_stack_3_push Unexecuted instantiation: engine_secure.c:zend_ptr_stack_3_push Unexecuted instantiation: engine_user.c:zend_ptr_stack_3_push Unexecuted instantiation: engine_xoshiro256starstar.c:zend_ptr_stack_3_push Unexecuted instantiation: gammasection.c:zend_ptr_stack_3_push Unexecuted instantiation: random.c:zend_ptr_stack_3_push Unexecuted instantiation: randomizer.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_utils.c:zend_ptr_stack_3_push Unexecuted instantiation: php_reflection.c:zend_ptr_stack_3_push Unexecuted instantiation: php_spl.c:zend_ptr_stack_3_push Unexecuted instantiation: spl_array.c:zend_ptr_stack_3_push Unexecuted instantiation: spl_directory.c:zend_ptr_stack_3_push Unexecuted instantiation: spl_dllist.c:zend_ptr_stack_3_push Unexecuted instantiation: spl_exceptions.c:zend_ptr_stack_3_push Unexecuted instantiation: spl_fixedarray.c:zend_ptr_stack_3_push Unexecuted instantiation: spl_functions.c:zend_ptr_stack_3_push Unexecuted instantiation: spl_heap.c:zend_ptr_stack_3_push Unexecuted instantiation: spl_iterators.c:zend_ptr_stack_3_push Unexecuted instantiation: spl_observer.c:zend_ptr_stack_3_push Unexecuted instantiation: array.c:zend_ptr_stack_3_push Unexecuted instantiation: assert.c:zend_ptr_stack_3_push Unexecuted instantiation: base64.c:zend_ptr_stack_3_push Unexecuted instantiation: basic_functions.c:zend_ptr_stack_3_push Unexecuted instantiation: browscap.c:zend_ptr_stack_3_push Unexecuted instantiation: crc32_x86.c:zend_ptr_stack_3_push Unexecuted instantiation: crc32.c:zend_ptr_stack_3_push Unexecuted instantiation: credits.c:zend_ptr_stack_3_push Unexecuted instantiation: crypt.c:zend_ptr_stack_3_push Unexecuted instantiation: css.c:zend_ptr_stack_3_push Unexecuted instantiation: datetime.c:zend_ptr_stack_3_push Unexecuted instantiation: dir.c:zend_ptr_stack_3_push Unexecuted instantiation: dl.c:zend_ptr_stack_3_push Unexecuted instantiation: dns.c:zend_ptr_stack_3_push Unexecuted instantiation: exec.c:zend_ptr_stack_3_push Unexecuted instantiation: file.c:zend_ptr_stack_3_push Unexecuted instantiation: filestat.c:zend_ptr_stack_3_push Unexecuted instantiation: filters.c:zend_ptr_stack_3_push Unexecuted instantiation: flock_compat.c:zend_ptr_stack_3_push Unexecuted instantiation: formatted_print.c:zend_ptr_stack_3_push Unexecuted instantiation: fsock.c:zend_ptr_stack_3_push Unexecuted instantiation: ftok.c:zend_ptr_stack_3_push Unexecuted instantiation: ftp_fopen_wrapper.c:zend_ptr_stack_3_push Unexecuted instantiation: head.c:zend_ptr_stack_3_push Unexecuted instantiation: hrtime.c:zend_ptr_stack_3_push Unexecuted instantiation: html.c:zend_ptr_stack_3_push Unexecuted instantiation: http_fopen_wrapper.c:zend_ptr_stack_3_push Unexecuted instantiation: http.c:zend_ptr_stack_3_push Unexecuted instantiation: image.c:zend_ptr_stack_3_push Unexecuted instantiation: incomplete_class.c:zend_ptr_stack_3_push Unexecuted instantiation: info.c:zend_ptr_stack_3_push Unexecuted instantiation: iptc.c:zend_ptr_stack_3_push Unexecuted instantiation: levenshtein.c:zend_ptr_stack_3_push Unexecuted instantiation: link.c:zend_ptr_stack_3_push Unexecuted instantiation: mail.c:zend_ptr_stack_3_push Unexecuted instantiation: math.c:zend_ptr_stack_3_push Unexecuted instantiation: md5.c:zend_ptr_stack_3_push Unexecuted instantiation: metaphone.c:zend_ptr_stack_3_push Unexecuted instantiation: microtime.c:zend_ptr_stack_3_push Unexecuted instantiation: net.c:zend_ptr_stack_3_push Unexecuted instantiation: pack.c:zend_ptr_stack_3_push Unexecuted instantiation: pageinfo.c:zend_ptr_stack_3_push Unexecuted instantiation: password.c:zend_ptr_stack_3_push Unexecuted instantiation: php_fopen_wrapper.c:zend_ptr_stack_3_push Unexecuted instantiation: proc_open.c:zend_ptr_stack_3_push Unexecuted instantiation: quot_print.c:zend_ptr_stack_3_push Unexecuted instantiation: scanf.c:zend_ptr_stack_3_push Unexecuted instantiation: sha1.c:zend_ptr_stack_3_push Unexecuted instantiation: soundex.c:zend_ptr_stack_3_push Unexecuted instantiation: streamsfuncs.c:zend_ptr_stack_3_push Unexecuted instantiation: string.c:zend_ptr_stack_3_push Unexecuted instantiation: strnatcmp.c:zend_ptr_stack_3_push Unexecuted instantiation: syslog.c:zend_ptr_stack_3_push Unexecuted instantiation: type.c:zend_ptr_stack_3_push Unexecuted instantiation: uniqid.c:zend_ptr_stack_3_push Unexecuted instantiation: url_scanner_ex.c:zend_ptr_stack_3_push Unexecuted instantiation: url.c:zend_ptr_stack_3_push Unexecuted instantiation: user_filters.c:zend_ptr_stack_3_push Unexecuted instantiation: uuencode.c:zend_ptr_stack_3_push Unexecuted instantiation: var_unserializer.c:zend_ptr_stack_3_push Unexecuted instantiation: var.c:zend_ptr_stack_3_push Unexecuted instantiation: versioning.c:zend_ptr_stack_3_push Unexecuted instantiation: crypt_sha256.c:zend_ptr_stack_3_push Unexecuted instantiation: crypt_sha512.c:zend_ptr_stack_3_push Unexecuted instantiation: php_crypt_r.c:zend_ptr_stack_3_push Unexecuted instantiation: php_uri.c:zend_ptr_stack_3_push Unexecuted instantiation: php_uri_common.c:zend_ptr_stack_3_push Unexecuted instantiation: explicit_bzero.c:zend_ptr_stack_3_push Unexecuted instantiation: fopen_wrappers.c:zend_ptr_stack_3_push Unexecuted instantiation: getopt.c:zend_ptr_stack_3_push Unexecuted instantiation: main.c:zend_ptr_stack_3_push Unexecuted instantiation: network.c:zend_ptr_stack_3_push Unexecuted instantiation: output.c:zend_ptr_stack_3_push Unexecuted instantiation: php_content_types.c:zend_ptr_stack_3_push Unexecuted instantiation: php_ini_builder.c:zend_ptr_stack_3_push Unexecuted instantiation: php_ini.c:zend_ptr_stack_3_push Unexecuted instantiation: php_glob.c:zend_ptr_stack_3_push Unexecuted instantiation: php_odbc_utils.c:zend_ptr_stack_3_push Unexecuted instantiation: php_open_temporary_file.c:zend_ptr_stack_3_push Unexecuted instantiation: php_scandir.c:zend_ptr_stack_3_push Unexecuted instantiation: php_syslog.c:zend_ptr_stack_3_push Unexecuted instantiation: php_ticks.c:zend_ptr_stack_3_push Unexecuted instantiation: php_variables.c:zend_ptr_stack_3_push Unexecuted instantiation: reentrancy.c:zend_ptr_stack_3_push Unexecuted instantiation: rfc1867.c:zend_ptr_stack_3_push Unexecuted instantiation: safe_bcmp.c:zend_ptr_stack_3_push Unexecuted instantiation: SAPI.c:zend_ptr_stack_3_push Unexecuted instantiation: snprintf.c:zend_ptr_stack_3_push Unexecuted instantiation: spprintf.c:zend_ptr_stack_3_push Unexecuted instantiation: strlcat.c:zend_ptr_stack_3_push Unexecuted instantiation: strlcpy.c:zend_ptr_stack_3_push Unexecuted instantiation: cast.c:zend_ptr_stack_3_push Unexecuted instantiation: filter.c:zend_ptr_stack_3_push Unexecuted instantiation: glob_wrapper.c:zend_ptr_stack_3_push Unexecuted instantiation: memory.c:zend_ptr_stack_3_push Unexecuted instantiation: mmap.c:zend_ptr_stack_3_push Unexecuted instantiation: plain_wrapper.c:zend_ptr_stack_3_push Unexecuted instantiation: streams.c:zend_ptr_stack_3_push Unexecuted instantiation: transports.c:zend_ptr_stack_3_push Unexecuted instantiation: userspace.c:zend_ptr_stack_3_push Unexecuted instantiation: xp_socket.c:zend_ptr_stack_3_push Unexecuted instantiation: block_pass.c:zend_ptr_stack_3_push Unexecuted instantiation: compact_literals.c:zend_ptr_stack_3_push Unexecuted instantiation: compact_vars.c:zend_ptr_stack_3_push Unexecuted instantiation: dce.c:zend_ptr_stack_3_push Unexecuted instantiation: dfa_pass.c:zend_ptr_stack_3_push Unexecuted instantiation: escape_analysis.c:zend_ptr_stack_3_push Unexecuted instantiation: nop_removal.c:zend_ptr_stack_3_push Unexecuted instantiation: optimize_func_calls.c:zend_ptr_stack_3_push Unexecuted instantiation: optimize_temp_vars_5.c:zend_ptr_stack_3_push Unexecuted instantiation: pass1.c:zend_ptr_stack_3_push Unexecuted instantiation: pass3.c:zend_ptr_stack_3_push Unexecuted instantiation: sccp.c:zend_ptr_stack_3_push Unexecuted instantiation: scdf.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_call_graph.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_cfg.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_dfg.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_dump.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_func_info.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_inference.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_optimizer.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_ssa.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_alloc.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_API.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_ast.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_attributes.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_builtin_functions.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_call_stack.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_closures.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_compile.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_constants.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_default_classes.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_dtrace.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_enum.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_exceptions.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_execute_API.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_execute.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_extensions.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_fibers.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_float.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_gc.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_generators.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_hash.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_highlight.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_inheritance.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_ini_parser.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_ini_scanner.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_ini.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_interfaces.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_iterators.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_language_parser.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_language_scanner.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_lazy_objects.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_list.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_multibyte.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_object_handlers.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_objects_API.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_objects.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_observer.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_opcode.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_operators.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_property_hooks.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_ptr_stack.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_signal.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_smart_str.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_stream.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_string.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_strtod.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_system_id.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_variables.c:zend_ptr_stack_3_push Unexecuted instantiation: zend_weakrefs.c:zend_ptr_stack_3_push Unexecuted instantiation: zend.c:zend_ptr_stack_3_push Unexecuted instantiation: internal_functions_cli.c:zend_ptr_stack_3_push Unexecuted instantiation: fuzzer-parser.c:zend_ptr_stack_3_push Unexecuted instantiation: fuzzer-sapi.c:zend_ptr_stack_3_push Unexecuted instantiation: fuzzer-tracing-jit.c:zend_ptr_stack_3_push Unexecuted instantiation: fuzzer-exif.c:zend_ptr_stack_3_push Unexecuted instantiation: fuzzer-unserialize.c:zend_ptr_stack_3_push Unexecuted instantiation: fuzzer-function-jit.c:zend_ptr_stack_3_push Unexecuted instantiation: fuzzer-json.c:zend_ptr_stack_3_push Unexecuted instantiation: fuzzer-unserializehash.c:zend_ptr_stack_3_push Unexecuted instantiation: fuzzer-execute.c:zend_ptr_stack_3_push |
72 | | |
73 | | static zend_always_inline void zend_ptr_stack_2_push(zend_ptr_stack *stack, void *a, void *b) |
74 | 0 | { |
75 | 0 | #define ZEND_PTR_STACK_NUM_ARGS 2 |
76 | 0 |
|
77 | 0 | ZEND_PTR_STACK_RESIZE_IF_NEEDED(stack, ZEND_PTR_STACK_NUM_ARGS) |
78 | 0 |
|
79 | 0 | stack->top += ZEND_PTR_STACK_NUM_ARGS; |
80 | 0 | *(stack->top_element++) = a; |
81 | 0 | *(stack->top_element++) = b; |
82 | 0 |
|
83 | 0 | #undef ZEND_PTR_STACK_NUM_ARGS |
84 | 0 | } Unexecuted instantiation: php_date.c:zend_ptr_stack_2_push Unexecuted instantiation: php_pcre.c:zend_ptr_stack_2_push Unexecuted instantiation: exif.c:zend_ptr_stack_2_push Unexecuted instantiation: hash_adler32.c:zend_ptr_stack_2_push Unexecuted instantiation: hash_crc32.c:zend_ptr_stack_2_push Unexecuted instantiation: hash_fnv.c:zend_ptr_stack_2_push Unexecuted instantiation: hash_gost.c:zend_ptr_stack_2_push Unexecuted instantiation: hash_haval.c:zend_ptr_stack_2_push Unexecuted instantiation: hash_joaat.c:zend_ptr_stack_2_push Unexecuted instantiation: hash_md.c:zend_ptr_stack_2_push Unexecuted instantiation: hash_murmur.c:zend_ptr_stack_2_push Unexecuted instantiation: hash_ripemd.c:zend_ptr_stack_2_push Unexecuted instantiation: hash_sha_ni.c:zend_ptr_stack_2_push Unexecuted instantiation: hash_sha_sse2.c:zend_ptr_stack_2_push Unexecuted instantiation: hash_sha.c:zend_ptr_stack_2_push Unexecuted instantiation: hash_sha3.c:zend_ptr_stack_2_push Unexecuted instantiation: hash_snefru.c:zend_ptr_stack_2_push Unexecuted instantiation: hash_tiger.c:zend_ptr_stack_2_push Unexecuted instantiation: hash_whirlpool.c:zend_ptr_stack_2_push Unexecuted instantiation: hash_xxhash.c:zend_ptr_stack_2_push Unexecuted instantiation: hash.c:zend_ptr_stack_2_push Unexecuted instantiation: json_encoder.c:zend_ptr_stack_2_push Unexecuted instantiation: json_parser.tab.c:zend_ptr_stack_2_push Unexecuted instantiation: json_scanner.c:zend_ptr_stack_2_push Unexecuted instantiation: json.c:zend_ptr_stack_2_push Unexecuted instantiation: php_lexbor.c:zend_ptr_stack_2_push Unexecuted instantiation: csprng.c:zend_ptr_stack_2_push Unexecuted instantiation: engine_mt19937.c:zend_ptr_stack_2_push Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_ptr_stack_2_push Unexecuted instantiation: engine_secure.c:zend_ptr_stack_2_push Unexecuted instantiation: engine_user.c:zend_ptr_stack_2_push Unexecuted instantiation: engine_xoshiro256starstar.c:zend_ptr_stack_2_push Unexecuted instantiation: gammasection.c:zend_ptr_stack_2_push Unexecuted instantiation: random.c:zend_ptr_stack_2_push Unexecuted instantiation: randomizer.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_utils.c:zend_ptr_stack_2_push Unexecuted instantiation: php_reflection.c:zend_ptr_stack_2_push Unexecuted instantiation: php_spl.c:zend_ptr_stack_2_push Unexecuted instantiation: spl_array.c:zend_ptr_stack_2_push Unexecuted instantiation: spl_directory.c:zend_ptr_stack_2_push Unexecuted instantiation: spl_dllist.c:zend_ptr_stack_2_push Unexecuted instantiation: spl_exceptions.c:zend_ptr_stack_2_push Unexecuted instantiation: spl_fixedarray.c:zend_ptr_stack_2_push Unexecuted instantiation: spl_functions.c:zend_ptr_stack_2_push Unexecuted instantiation: spl_heap.c:zend_ptr_stack_2_push Unexecuted instantiation: spl_iterators.c:zend_ptr_stack_2_push Unexecuted instantiation: spl_observer.c:zend_ptr_stack_2_push Unexecuted instantiation: array.c:zend_ptr_stack_2_push Unexecuted instantiation: assert.c:zend_ptr_stack_2_push Unexecuted instantiation: base64.c:zend_ptr_stack_2_push Unexecuted instantiation: basic_functions.c:zend_ptr_stack_2_push Unexecuted instantiation: browscap.c:zend_ptr_stack_2_push Unexecuted instantiation: crc32_x86.c:zend_ptr_stack_2_push Unexecuted instantiation: crc32.c:zend_ptr_stack_2_push Unexecuted instantiation: credits.c:zend_ptr_stack_2_push Unexecuted instantiation: crypt.c:zend_ptr_stack_2_push Unexecuted instantiation: css.c:zend_ptr_stack_2_push Unexecuted instantiation: datetime.c:zend_ptr_stack_2_push Unexecuted instantiation: dir.c:zend_ptr_stack_2_push Unexecuted instantiation: dl.c:zend_ptr_stack_2_push Unexecuted instantiation: dns.c:zend_ptr_stack_2_push Unexecuted instantiation: exec.c:zend_ptr_stack_2_push Unexecuted instantiation: file.c:zend_ptr_stack_2_push Unexecuted instantiation: filestat.c:zend_ptr_stack_2_push Unexecuted instantiation: filters.c:zend_ptr_stack_2_push Unexecuted instantiation: flock_compat.c:zend_ptr_stack_2_push Unexecuted instantiation: formatted_print.c:zend_ptr_stack_2_push Unexecuted instantiation: fsock.c:zend_ptr_stack_2_push Unexecuted instantiation: ftok.c:zend_ptr_stack_2_push Unexecuted instantiation: ftp_fopen_wrapper.c:zend_ptr_stack_2_push Unexecuted instantiation: head.c:zend_ptr_stack_2_push Unexecuted instantiation: hrtime.c:zend_ptr_stack_2_push Unexecuted instantiation: html.c:zend_ptr_stack_2_push Unexecuted instantiation: http_fopen_wrapper.c:zend_ptr_stack_2_push Unexecuted instantiation: http.c:zend_ptr_stack_2_push Unexecuted instantiation: image.c:zend_ptr_stack_2_push Unexecuted instantiation: incomplete_class.c:zend_ptr_stack_2_push Unexecuted instantiation: info.c:zend_ptr_stack_2_push Unexecuted instantiation: iptc.c:zend_ptr_stack_2_push Unexecuted instantiation: levenshtein.c:zend_ptr_stack_2_push Unexecuted instantiation: link.c:zend_ptr_stack_2_push Unexecuted instantiation: mail.c:zend_ptr_stack_2_push Unexecuted instantiation: math.c:zend_ptr_stack_2_push Unexecuted instantiation: md5.c:zend_ptr_stack_2_push Unexecuted instantiation: metaphone.c:zend_ptr_stack_2_push Unexecuted instantiation: microtime.c:zend_ptr_stack_2_push Unexecuted instantiation: net.c:zend_ptr_stack_2_push Unexecuted instantiation: pack.c:zend_ptr_stack_2_push Unexecuted instantiation: pageinfo.c:zend_ptr_stack_2_push Unexecuted instantiation: password.c:zend_ptr_stack_2_push Unexecuted instantiation: php_fopen_wrapper.c:zend_ptr_stack_2_push Unexecuted instantiation: proc_open.c:zend_ptr_stack_2_push Unexecuted instantiation: quot_print.c:zend_ptr_stack_2_push Unexecuted instantiation: scanf.c:zend_ptr_stack_2_push Unexecuted instantiation: sha1.c:zend_ptr_stack_2_push Unexecuted instantiation: soundex.c:zend_ptr_stack_2_push Unexecuted instantiation: streamsfuncs.c:zend_ptr_stack_2_push Unexecuted instantiation: string.c:zend_ptr_stack_2_push Unexecuted instantiation: strnatcmp.c:zend_ptr_stack_2_push Unexecuted instantiation: syslog.c:zend_ptr_stack_2_push Unexecuted instantiation: type.c:zend_ptr_stack_2_push Unexecuted instantiation: uniqid.c:zend_ptr_stack_2_push Unexecuted instantiation: url_scanner_ex.c:zend_ptr_stack_2_push Unexecuted instantiation: url.c:zend_ptr_stack_2_push Unexecuted instantiation: user_filters.c:zend_ptr_stack_2_push Unexecuted instantiation: uuencode.c:zend_ptr_stack_2_push Unexecuted instantiation: var_unserializer.c:zend_ptr_stack_2_push Unexecuted instantiation: var.c:zend_ptr_stack_2_push Unexecuted instantiation: versioning.c:zend_ptr_stack_2_push Unexecuted instantiation: crypt_sha256.c:zend_ptr_stack_2_push Unexecuted instantiation: crypt_sha512.c:zend_ptr_stack_2_push Unexecuted instantiation: php_crypt_r.c:zend_ptr_stack_2_push Unexecuted instantiation: php_uri.c:zend_ptr_stack_2_push Unexecuted instantiation: php_uri_common.c:zend_ptr_stack_2_push Unexecuted instantiation: explicit_bzero.c:zend_ptr_stack_2_push Unexecuted instantiation: fopen_wrappers.c:zend_ptr_stack_2_push Unexecuted instantiation: getopt.c:zend_ptr_stack_2_push Unexecuted instantiation: main.c:zend_ptr_stack_2_push Unexecuted instantiation: network.c:zend_ptr_stack_2_push Unexecuted instantiation: output.c:zend_ptr_stack_2_push Unexecuted instantiation: php_content_types.c:zend_ptr_stack_2_push Unexecuted instantiation: php_ini_builder.c:zend_ptr_stack_2_push Unexecuted instantiation: php_ini.c:zend_ptr_stack_2_push Unexecuted instantiation: php_glob.c:zend_ptr_stack_2_push Unexecuted instantiation: php_odbc_utils.c:zend_ptr_stack_2_push Unexecuted instantiation: php_open_temporary_file.c:zend_ptr_stack_2_push Unexecuted instantiation: php_scandir.c:zend_ptr_stack_2_push Unexecuted instantiation: php_syslog.c:zend_ptr_stack_2_push Unexecuted instantiation: php_ticks.c:zend_ptr_stack_2_push Unexecuted instantiation: php_variables.c:zend_ptr_stack_2_push Unexecuted instantiation: reentrancy.c:zend_ptr_stack_2_push Unexecuted instantiation: rfc1867.c:zend_ptr_stack_2_push Unexecuted instantiation: safe_bcmp.c:zend_ptr_stack_2_push Unexecuted instantiation: SAPI.c:zend_ptr_stack_2_push Unexecuted instantiation: snprintf.c:zend_ptr_stack_2_push Unexecuted instantiation: spprintf.c:zend_ptr_stack_2_push Unexecuted instantiation: strlcat.c:zend_ptr_stack_2_push Unexecuted instantiation: strlcpy.c:zend_ptr_stack_2_push Unexecuted instantiation: cast.c:zend_ptr_stack_2_push Unexecuted instantiation: filter.c:zend_ptr_stack_2_push Unexecuted instantiation: glob_wrapper.c:zend_ptr_stack_2_push Unexecuted instantiation: memory.c:zend_ptr_stack_2_push Unexecuted instantiation: mmap.c:zend_ptr_stack_2_push Unexecuted instantiation: plain_wrapper.c:zend_ptr_stack_2_push Unexecuted instantiation: streams.c:zend_ptr_stack_2_push Unexecuted instantiation: transports.c:zend_ptr_stack_2_push Unexecuted instantiation: userspace.c:zend_ptr_stack_2_push Unexecuted instantiation: xp_socket.c:zend_ptr_stack_2_push Unexecuted instantiation: block_pass.c:zend_ptr_stack_2_push Unexecuted instantiation: compact_literals.c:zend_ptr_stack_2_push Unexecuted instantiation: compact_vars.c:zend_ptr_stack_2_push Unexecuted instantiation: dce.c:zend_ptr_stack_2_push Unexecuted instantiation: dfa_pass.c:zend_ptr_stack_2_push Unexecuted instantiation: escape_analysis.c:zend_ptr_stack_2_push Unexecuted instantiation: nop_removal.c:zend_ptr_stack_2_push Unexecuted instantiation: optimize_func_calls.c:zend_ptr_stack_2_push Unexecuted instantiation: optimize_temp_vars_5.c:zend_ptr_stack_2_push Unexecuted instantiation: pass1.c:zend_ptr_stack_2_push Unexecuted instantiation: pass3.c:zend_ptr_stack_2_push Unexecuted instantiation: sccp.c:zend_ptr_stack_2_push Unexecuted instantiation: scdf.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_call_graph.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_cfg.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_dfg.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_dump.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_func_info.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_inference.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_optimizer.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_ssa.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_alloc.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_API.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_ast.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_attributes.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_builtin_functions.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_call_stack.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_closures.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_compile.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_constants.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_default_classes.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_dtrace.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_enum.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_exceptions.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_execute_API.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_execute.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_extensions.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_fibers.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_float.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_gc.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_generators.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_hash.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_highlight.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_inheritance.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_ini_parser.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_ini_scanner.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_ini.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_interfaces.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_iterators.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_language_parser.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_language_scanner.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_lazy_objects.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_list.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_multibyte.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_object_handlers.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_objects_API.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_objects.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_observer.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_opcode.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_operators.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_property_hooks.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_ptr_stack.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_signal.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_smart_str.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_stream.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_string.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_strtod.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_system_id.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_variables.c:zend_ptr_stack_2_push Unexecuted instantiation: zend_weakrefs.c:zend_ptr_stack_2_push Unexecuted instantiation: zend.c:zend_ptr_stack_2_push Unexecuted instantiation: internal_functions_cli.c:zend_ptr_stack_2_push Unexecuted instantiation: fuzzer-parser.c:zend_ptr_stack_2_push Unexecuted instantiation: fuzzer-sapi.c:zend_ptr_stack_2_push Unexecuted instantiation: fuzzer-tracing-jit.c:zend_ptr_stack_2_push Unexecuted instantiation: fuzzer-exif.c:zend_ptr_stack_2_push Unexecuted instantiation: fuzzer-unserialize.c:zend_ptr_stack_2_push Unexecuted instantiation: fuzzer-function-jit.c:zend_ptr_stack_2_push Unexecuted instantiation: fuzzer-json.c:zend_ptr_stack_2_push Unexecuted instantiation: fuzzer-unserializehash.c:zend_ptr_stack_2_push Unexecuted instantiation: fuzzer-execute.c:zend_ptr_stack_2_push |
85 | | |
86 | | static zend_always_inline void zend_ptr_stack_3_pop(zend_ptr_stack *stack, void **a, void **b, void **c) |
87 | 0 | { |
88 | 0 | *a = *(--stack->top_element); |
89 | 0 | *b = *(--stack->top_element); |
90 | 0 | *c = *(--stack->top_element); |
91 | 0 | stack->top -= 3; |
92 | 0 | } Unexecuted instantiation: php_date.c:zend_ptr_stack_3_pop Unexecuted instantiation: php_pcre.c:zend_ptr_stack_3_pop Unexecuted instantiation: exif.c:zend_ptr_stack_3_pop Unexecuted instantiation: hash_adler32.c:zend_ptr_stack_3_pop Unexecuted instantiation: hash_crc32.c:zend_ptr_stack_3_pop Unexecuted instantiation: hash_fnv.c:zend_ptr_stack_3_pop Unexecuted instantiation: hash_gost.c:zend_ptr_stack_3_pop Unexecuted instantiation: hash_haval.c:zend_ptr_stack_3_pop Unexecuted instantiation: hash_joaat.c:zend_ptr_stack_3_pop Unexecuted instantiation: hash_md.c:zend_ptr_stack_3_pop Unexecuted instantiation: hash_murmur.c:zend_ptr_stack_3_pop Unexecuted instantiation: hash_ripemd.c:zend_ptr_stack_3_pop Unexecuted instantiation: hash_sha_ni.c:zend_ptr_stack_3_pop Unexecuted instantiation: hash_sha_sse2.c:zend_ptr_stack_3_pop Unexecuted instantiation: hash_sha.c:zend_ptr_stack_3_pop Unexecuted instantiation: hash_sha3.c:zend_ptr_stack_3_pop Unexecuted instantiation: hash_snefru.c:zend_ptr_stack_3_pop Unexecuted instantiation: hash_tiger.c:zend_ptr_stack_3_pop Unexecuted instantiation: hash_whirlpool.c:zend_ptr_stack_3_pop Unexecuted instantiation: hash_xxhash.c:zend_ptr_stack_3_pop Unexecuted instantiation: hash.c:zend_ptr_stack_3_pop Unexecuted instantiation: json_encoder.c:zend_ptr_stack_3_pop Unexecuted instantiation: json_parser.tab.c:zend_ptr_stack_3_pop Unexecuted instantiation: json_scanner.c:zend_ptr_stack_3_pop Unexecuted instantiation: json.c:zend_ptr_stack_3_pop Unexecuted instantiation: php_lexbor.c:zend_ptr_stack_3_pop Unexecuted instantiation: csprng.c:zend_ptr_stack_3_pop Unexecuted instantiation: engine_mt19937.c:zend_ptr_stack_3_pop Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_ptr_stack_3_pop Unexecuted instantiation: engine_secure.c:zend_ptr_stack_3_pop Unexecuted instantiation: engine_user.c:zend_ptr_stack_3_pop Unexecuted instantiation: engine_xoshiro256starstar.c:zend_ptr_stack_3_pop Unexecuted instantiation: gammasection.c:zend_ptr_stack_3_pop Unexecuted instantiation: random.c:zend_ptr_stack_3_pop Unexecuted instantiation: randomizer.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_utils.c:zend_ptr_stack_3_pop Unexecuted instantiation: php_reflection.c:zend_ptr_stack_3_pop Unexecuted instantiation: php_spl.c:zend_ptr_stack_3_pop Unexecuted instantiation: spl_array.c:zend_ptr_stack_3_pop Unexecuted instantiation: spl_directory.c:zend_ptr_stack_3_pop Unexecuted instantiation: spl_dllist.c:zend_ptr_stack_3_pop Unexecuted instantiation: spl_exceptions.c:zend_ptr_stack_3_pop Unexecuted instantiation: spl_fixedarray.c:zend_ptr_stack_3_pop Unexecuted instantiation: spl_functions.c:zend_ptr_stack_3_pop Unexecuted instantiation: spl_heap.c:zend_ptr_stack_3_pop Unexecuted instantiation: spl_iterators.c:zend_ptr_stack_3_pop Unexecuted instantiation: spl_observer.c:zend_ptr_stack_3_pop Unexecuted instantiation: array.c:zend_ptr_stack_3_pop Unexecuted instantiation: assert.c:zend_ptr_stack_3_pop Unexecuted instantiation: base64.c:zend_ptr_stack_3_pop Unexecuted instantiation: basic_functions.c:zend_ptr_stack_3_pop Unexecuted instantiation: browscap.c:zend_ptr_stack_3_pop Unexecuted instantiation: crc32_x86.c:zend_ptr_stack_3_pop Unexecuted instantiation: crc32.c:zend_ptr_stack_3_pop Unexecuted instantiation: credits.c:zend_ptr_stack_3_pop Unexecuted instantiation: crypt.c:zend_ptr_stack_3_pop Unexecuted instantiation: css.c:zend_ptr_stack_3_pop Unexecuted instantiation: datetime.c:zend_ptr_stack_3_pop Unexecuted instantiation: dir.c:zend_ptr_stack_3_pop Unexecuted instantiation: dl.c:zend_ptr_stack_3_pop Unexecuted instantiation: dns.c:zend_ptr_stack_3_pop Unexecuted instantiation: exec.c:zend_ptr_stack_3_pop Unexecuted instantiation: file.c:zend_ptr_stack_3_pop Unexecuted instantiation: filestat.c:zend_ptr_stack_3_pop Unexecuted instantiation: filters.c:zend_ptr_stack_3_pop Unexecuted instantiation: flock_compat.c:zend_ptr_stack_3_pop Unexecuted instantiation: formatted_print.c:zend_ptr_stack_3_pop Unexecuted instantiation: fsock.c:zend_ptr_stack_3_pop Unexecuted instantiation: ftok.c:zend_ptr_stack_3_pop Unexecuted instantiation: ftp_fopen_wrapper.c:zend_ptr_stack_3_pop Unexecuted instantiation: head.c:zend_ptr_stack_3_pop Unexecuted instantiation: hrtime.c:zend_ptr_stack_3_pop Unexecuted instantiation: html.c:zend_ptr_stack_3_pop Unexecuted instantiation: http_fopen_wrapper.c:zend_ptr_stack_3_pop Unexecuted instantiation: http.c:zend_ptr_stack_3_pop Unexecuted instantiation: image.c:zend_ptr_stack_3_pop Unexecuted instantiation: incomplete_class.c:zend_ptr_stack_3_pop Unexecuted instantiation: info.c:zend_ptr_stack_3_pop Unexecuted instantiation: iptc.c:zend_ptr_stack_3_pop Unexecuted instantiation: levenshtein.c:zend_ptr_stack_3_pop Unexecuted instantiation: link.c:zend_ptr_stack_3_pop Unexecuted instantiation: mail.c:zend_ptr_stack_3_pop Unexecuted instantiation: math.c:zend_ptr_stack_3_pop Unexecuted instantiation: md5.c:zend_ptr_stack_3_pop Unexecuted instantiation: metaphone.c:zend_ptr_stack_3_pop Unexecuted instantiation: microtime.c:zend_ptr_stack_3_pop Unexecuted instantiation: net.c:zend_ptr_stack_3_pop Unexecuted instantiation: pack.c:zend_ptr_stack_3_pop Unexecuted instantiation: pageinfo.c:zend_ptr_stack_3_pop Unexecuted instantiation: password.c:zend_ptr_stack_3_pop Unexecuted instantiation: php_fopen_wrapper.c:zend_ptr_stack_3_pop Unexecuted instantiation: proc_open.c:zend_ptr_stack_3_pop Unexecuted instantiation: quot_print.c:zend_ptr_stack_3_pop Unexecuted instantiation: scanf.c:zend_ptr_stack_3_pop Unexecuted instantiation: sha1.c:zend_ptr_stack_3_pop Unexecuted instantiation: soundex.c:zend_ptr_stack_3_pop Unexecuted instantiation: streamsfuncs.c:zend_ptr_stack_3_pop Unexecuted instantiation: string.c:zend_ptr_stack_3_pop Unexecuted instantiation: strnatcmp.c:zend_ptr_stack_3_pop Unexecuted instantiation: syslog.c:zend_ptr_stack_3_pop Unexecuted instantiation: type.c:zend_ptr_stack_3_pop Unexecuted instantiation: uniqid.c:zend_ptr_stack_3_pop Unexecuted instantiation: url_scanner_ex.c:zend_ptr_stack_3_pop Unexecuted instantiation: url.c:zend_ptr_stack_3_pop Unexecuted instantiation: user_filters.c:zend_ptr_stack_3_pop Unexecuted instantiation: uuencode.c:zend_ptr_stack_3_pop Unexecuted instantiation: var_unserializer.c:zend_ptr_stack_3_pop Unexecuted instantiation: var.c:zend_ptr_stack_3_pop Unexecuted instantiation: versioning.c:zend_ptr_stack_3_pop Unexecuted instantiation: crypt_sha256.c:zend_ptr_stack_3_pop Unexecuted instantiation: crypt_sha512.c:zend_ptr_stack_3_pop Unexecuted instantiation: php_crypt_r.c:zend_ptr_stack_3_pop Unexecuted instantiation: php_uri.c:zend_ptr_stack_3_pop Unexecuted instantiation: php_uri_common.c:zend_ptr_stack_3_pop Unexecuted instantiation: explicit_bzero.c:zend_ptr_stack_3_pop Unexecuted instantiation: fopen_wrappers.c:zend_ptr_stack_3_pop Unexecuted instantiation: getopt.c:zend_ptr_stack_3_pop Unexecuted instantiation: main.c:zend_ptr_stack_3_pop Unexecuted instantiation: network.c:zend_ptr_stack_3_pop Unexecuted instantiation: output.c:zend_ptr_stack_3_pop Unexecuted instantiation: php_content_types.c:zend_ptr_stack_3_pop Unexecuted instantiation: php_ini_builder.c:zend_ptr_stack_3_pop Unexecuted instantiation: php_ini.c:zend_ptr_stack_3_pop Unexecuted instantiation: php_glob.c:zend_ptr_stack_3_pop Unexecuted instantiation: php_odbc_utils.c:zend_ptr_stack_3_pop Unexecuted instantiation: php_open_temporary_file.c:zend_ptr_stack_3_pop Unexecuted instantiation: php_scandir.c:zend_ptr_stack_3_pop Unexecuted instantiation: php_syslog.c:zend_ptr_stack_3_pop Unexecuted instantiation: php_ticks.c:zend_ptr_stack_3_pop Unexecuted instantiation: php_variables.c:zend_ptr_stack_3_pop Unexecuted instantiation: reentrancy.c:zend_ptr_stack_3_pop Unexecuted instantiation: rfc1867.c:zend_ptr_stack_3_pop Unexecuted instantiation: safe_bcmp.c:zend_ptr_stack_3_pop Unexecuted instantiation: SAPI.c:zend_ptr_stack_3_pop Unexecuted instantiation: snprintf.c:zend_ptr_stack_3_pop Unexecuted instantiation: spprintf.c:zend_ptr_stack_3_pop Unexecuted instantiation: strlcat.c:zend_ptr_stack_3_pop Unexecuted instantiation: strlcpy.c:zend_ptr_stack_3_pop Unexecuted instantiation: cast.c:zend_ptr_stack_3_pop Unexecuted instantiation: filter.c:zend_ptr_stack_3_pop Unexecuted instantiation: glob_wrapper.c:zend_ptr_stack_3_pop Unexecuted instantiation: memory.c:zend_ptr_stack_3_pop Unexecuted instantiation: mmap.c:zend_ptr_stack_3_pop Unexecuted instantiation: plain_wrapper.c:zend_ptr_stack_3_pop Unexecuted instantiation: streams.c:zend_ptr_stack_3_pop Unexecuted instantiation: transports.c:zend_ptr_stack_3_pop Unexecuted instantiation: userspace.c:zend_ptr_stack_3_pop Unexecuted instantiation: xp_socket.c:zend_ptr_stack_3_pop Unexecuted instantiation: block_pass.c:zend_ptr_stack_3_pop Unexecuted instantiation: compact_literals.c:zend_ptr_stack_3_pop Unexecuted instantiation: compact_vars.c:zend_ptr_stack_3_pop Unexecuted instantiation: dce.c:zend_ptr_stack_3_pop Unexecuted instantiation: dfa_pass.c:zend_ptr_stack_3_pop Unexecuted instantiation: escape_analysis.c:zend_ptr_stack_3_pop Unexecuted instantiation: nop_removal.c:zend_ptr_stack_3_pop Unexecuted instantiation: optimize_func_calls.c:zend_ptr_stack_3_pop Unexecuted instantiation: optimize_temp_vars_5.c:zend_ptr_stack_3_pop Unexecuted instantiation: pass1.c:zend_ptr_stack_3_pop Unexecuted instantiation: pass3.c:zend_ptr_stack_3_pop Unexecuted instantiation: sccp.c:zend_ptr_stack_3_pop Unexecuted instantiation: scdf.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_call_graph.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_cfg.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_dfg.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_dump.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_func_info.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_inference.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_optimizer.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_ssa.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_alloc.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_API.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_ast.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_attributes.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_builtin_functions.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_call_stack.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_closures.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_compile.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_constants.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_default_classes.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_dtrace.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_enum.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_exceptions.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_execute_API.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_execute.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_extensions.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_fibers.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_float.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_gc.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_generators.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_hash.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_highlight.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_inheritance.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_ini_parser.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_ini_scanner.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_ini.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_interfaces.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_iterators.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_language_parser.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_language_scanner.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_lazy_objects.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_list.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_multibyte.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_object_handlers.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_objects_API.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_objects.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_observer.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_opcode.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_operators.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_property_hooks.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_ptr_stack.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_signal.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_smart_str.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_stream.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_string.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_strtod.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_system_id.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_variables.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend_weakrefs.c:zend_ptr_stack_3_pop Unexecuted instantiation: zend.c:zend_ptr_stack_3_pop Unexecuted instantiation: internal_functions_cli.c:zend_ptr_stack_3_pop Unexecuted instantiation: fuzzer-parser.c:zend_ptr_stack_3_pop Unexecuted instantiation: fuzzer-sapi.c:zend_ptr_stack_3_pop Unexecuted instantiation: fuzzer-tracing-jit.c:zend_ptr_stack_3_pop Unexecuted instantiation: fuzzer-exif.c:zend_ptr_stack_3_pop Unexecuted instantiation: fuzzer-unserialize.c:zend_ptr_stack_3_pop Unexecuted instantiation: fuzzer-function-jit.c:zend_ptr_stack_3_pop Unexecuted instantiation: fuzzer-json.c:zend_ptr_stack_3_pop Unexecuted instantiation: fuzzer-unserializehash.c:zend_ptr_stack_3_pop Unexecuted instantiation: fuzzer-execute.c:zend_ptr_stack_3_pop |
93 | | |
94 | | static zend_always_inline void zend_ptr_stack_2_pop(zend_ptr_stack *stack, void **a, void **b) |
95 | 0 | { |
96 | 0 | *a = *(--stack->top_element); |
97 | 0 | *b = *(--stack->top_element); |
98 | 0 | stack->top -= 2; |
99 | 0 | } Unexecuted instantiation: php_date.c:zend_ptr_stack_2_pop Unexecuted instantiation: php_pcre.c:zend_ptr_stack_2_pop Unexecuted instantiation: exif.c:zend_ptr_stack_2_pop Unexecuted instantiation: hash_adler32.c:zend_ptr_stack_2_pop Unexecuted instantiation: hash_crc32.c:zend_ptr_stack_2_pop Unexecuted instantiation: hash_fnv.c:zend_ptr_stack_2_pop Unexecuted instantiation: hash_gost.c:zend_ptr_stack_2_pop Unexecuted instantiation: hash_haval.c:zend_ptr_stack_2_pop Unexecuted instantiation: hash_joaat.c:zend_ptr_stack_2_pop Unexecuted instantiation: hash_md.c:zend_ptr_stack_2_pop Unexecuted instantiation: hash_murmur.c:zend_ptr_stack_2_pop Unexecuted instantiation: hash_ripemd.c:zend_ptr_stack_2_pop Unexecuted instantiation: hash_sha_ni.c:zend_ptr_stack_2_pop Unexecuted instantiation: hash_sha_sse2.c:zend_ptr_stack_2_pop Unexecuted instantiation: hash_sha.c:zend_ptr_stack_2_pop Unexecuted instantiation: hash_sha3.c:zend_ptr_stack_2_pop Unexecuted instantiation: hash_snefru.c:zend_ptr_stack_2_pop Unexecuted instantiation: hash_tiger.c:zend_ptr_stack_2_pop Unexecuted instantiation: hash_whirlpool.c:zend_ptr_stack_2_pop Unexecuted instantiation: hash_xxhash.c:zend_ptr_stack_2_pop Unexecuted instantiation: hash.c:zend_ptr_stack_2_pop Unexecuted instantiation: json_encoder.c:zend_ptr_stack_2_pop Unexecuted instantiation: json_parser.tab.c:zend_ptr_stack_2_pop Unexecuted instantiation: json_scanner.c:zend_ptr_stack_2_pop Unexecuted instantiation: json.c:zend_ptr_stack_2_pop Unexecuted instantiation: php_lexbor.c:zend_ptr_stack_2_pop Unexecuted instantiation: csprng.c:zend_ptr_stack_2_pop Unexecuted instantiation: engine_mt19937.c:zend_ptr_stack_2_pop Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_ptr_stack_2_pop Unexecuted instantiation: engine_secure.c:zend_ptr_stack_2_pop Unexecuted instantiation: engine_user.c:zend_ptr_stack_2_pop Unexecuted instantiation: engine_xoshiro256starstar.c:zend_ptr_stack_2_pop Unexecuted instantiation: gammasection.c:zend_ptr_stack_2_pop Unexecuted instantiation: random.c:zend_ptr_stack_2_pop Unexecuted instantiation: randomizer.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_utils.c:zend_ptr_stack_2_pop Unexecuted instantiation: php_reflection.c:zend_ptr_stack_2_pop Unexecuted instantiation: php_spl.c:zend_ptr_stack_2_pop Unexecuted instantiation: spl_array.c:zend_ptr_stack_2_pop Unexecuted instantiation: spl_directory.c:zend_ptr_stack_2_pop Unexecuted instantiation: spl_dllist.c:zend_ptr_stack_2_pop Unexecuted instantiation: spl_exceptions.c:zend_ptr_stack_2_pop Unexecuted instantiation: spl_fixedarray.c:zend_ptr_stack_2_pop Unexecuted instantiation: spl_functions.c:zend_ptr_stack_2_pop Unexecuted instantiation: spl_heap.c:zend_ptr_stack_2_pop Unexecuted instantiation: spl_iterators.c:zend_ptr_stack_2_pop Unexecuted instantiation: spl_observer.c:zend_ptr_stack_2_pop Unexecuted instantiation: array.c:zend_ptr_stack_2_pop Unexecuted instantiation: assert.c:zend_ptr_stack_2_pop Unexecuted instantiation: base64.c:zend_ptr_stack_2_pop Unexecuted instantiation: basic_functions.c:zend_ptr_stack_2_pop Unexecuted instantiation: browscap.c:zend_ptr_stack_2_pop Unexecuted instantiation: crc32_x86.c:zend_ptr_stack_2_pop Unexecuted instantiation: crc32.c:zend_ptr_stack_2_pop Unexecuted instantiation: credits.c:zend_ptr_stack_2_pop Unexecuted instantiation: crypt.c:zend_ptr_stack_2_pop Unexecuted instantiation: css.c:zend_ptr_stack_2_pop Unexecuted instantiation: datetime.c:zend_ptr_stack_2_pop Unexecuted instantiation: dir.c:zend_ptr_stack_2_pop Unexecuted instantiation: dl.c:zend_ptr_stack_2_pop Unexecuted instantiation: dns.c:zend_ptr_stack_2_pop Unexecuted instantiation: exec.c:zend_ptr_stack_2_pop Unexecuted instantiation: file.c:zend_ptr_stack_2_pop Unexecuted instantiation: filestat.c:zend_ptr_stack_2_pop Unexecuted instantiation: filters.c:zend_ptr_stack_2_pop Unexecuted instantiation: flock_compat.c:zend_ptr_stack_2_pop Unexecuted instantiation: formatted_print.c:zend_ptr_stack_2_pop Unexecuted instantiation: fsock.c:zend_ptr_stack_2_pop Unexecuted instantiation: ftok.c:zend_ptr_stack_2_pop Unexecuted instantiation: ftp_fopen_wrapper.c:zend_ptr_stack_2_pop Unexecuted instantiation: head.c:zend_ptr_stack_2_pop Unexecuted instantiation: hrtime.c:zend_ptr_stack_2_pop Unexecuted instantiation: html.c:zend_ptr_stack_2_pop Unexecuted instantiation: http_fopen_wrapper.c:zend_ptr_stack_2_pop Unexecuted instantiation: http.c:zend_ptr_stack_2_pop Unexecuted instantiation: image.c:zend_ptr_stack_2_pop Unexecuted instantiation: incomplete_class.c:zend_ptr_stack_2_pop Unexecuted instantiation: info.c:zend_ptr_stack_2_pop Unexecuted instantiation: iptc.c:zend_ptr_stack_2_pop Unexecuted instantiation: levenshtein.c:zend_ptr_stack_2_pop Unexecuted instantiation: link.c:zend_ptr_stack_2_pop Unexecuted instantiation: mail.c:zend_ptr_stack_2_pop Unexecuted instantiation: math.c:zend_ptr_stack_2_pop Unexecuted instantiation: md5.c:zend_ptr_stack_2_pop Unexecuted instantiation: metaphone.c:zend_ptr_stack_2_pop Unexecuted instantiation: microtime.c:zend_ptr_stack_2_pop Unexecuted instantiation: net.c:zend_ptr_stack_2_pop Unexecuted instantiation: pack.c:zend_ptr_stack_2_pop Unexecuted instantiation: pageinfo.c:zend_ptr_stack_2_pop Unexecuted instantiation: password.c:zend_ptr_stack_2_pop Unexecuted instantiation: php_fopen_wrapper.c:zend_ptr_stack_2_pop Unexecuted instantiation: proc_open.c:zend_ptr_stack_2_pop Unexecuted instantiation: quot_print.c:zend_ptr_stack_2_pop Unexecuted instantiation: scanf.c:zend_ptr_stack_2_pop Unexecuted instantiation: sha1.c:zend_ptr_stack_2_pop Unexecuted instantiation: soundex.c:zend_ptr_stack_2_pop Unexecuted instantiation: streamsfuncs.c:zend_ptr_stack_2_pop Unexecuted instantiation: string.c:zend_ptr_stack_2_pop Unexecuted instantiation: strnatcmp.c:zend_ptr_stack_2_pop Unexecuted instantiation: syslog.c:zend_ptr_stack_2_pop Unexecuted instantiation: type.c:zend_ptr_stack_2_pop Unexecuted instantiation: uniqid.c:zend_ptr_stack_2_pop Unexecuted instantiation: url_scanner_ex.c:zend_ptr_stack_2_pop Unexecuted instantiation: url.c:zend_ptr_stack_2_pop Unexecuted instantiation: user_filters.c:zend_ptr_stack_2_pop Unexecuted instantiation: uuencode.c:zend_ptr_stack_2_pop Unexecuted instantiation: var_unserializer.c:zend_ptr_stack_2_pop Unexecuted instantiation: var.c:zend_ptr_stack_2_pop Unexecuted instantiation: versioning.c:zend_ptr_stack_2_pop Unexecuted instantiation: crypt_sha256.c:zend_ptr_stack_2_pop Unexecuted instantiation: crypt_sha512.c:zend_ptr_stack_2_pop Unexecuted instantiation: php_crypt_r.c:zend_ptr_stack_2_pop Unexecuted instantiation: php_uri.c:zend_ptr_stack_2_pop Unexecuted instantiation: php_uri_common.c:zend_ptr_stack_2_pop Unexecuted instantiation: explicit_bzero.c:zend_ptr_stack_2_pop Unexecuted instantiation: fopen_wrappers.c:zend_ptr_stack_2_pop Unexecuted instantiation: getopt.c:zend_ptr_stack_2_pop Unexecuted instantiation: main.c:zend_ptr_stack_2_pop Unexecuted instantiation: network.c:zend_ptr_stack_2_pop Unexecuted instantiation: output.c:zend_ptr_stack_2_pop Unexecuted instantiation: php_content_types.c:zend_ptr_stack_2_pop Unexecuted instantiation: php_ini_builder.c:zend_ptr_stack_2_pop Unexecuted instantiation: php_ini.c:zend_ptr_stack_2_pop Unexecuted instantiation: php_glob.c:zend_ptr_stack_2_pop Unexecuted instantiation: php_odbc_utils.c:zend_ptr_stack_2_pop Unexecuted instantiation: php_open_temporary_file.c:zend_ptr_stack_2_pop Unexecuted instantiation: php_scandir.c:zend_ptr_stack_2_pop Unexecuted instantiation: php_syslog.c:zend_ptr_stack_2_pop Unexecuted instantiation: php_ticks.c:zend_ptr_stack_2_pop Unexecuted instantiation: php_variables.c:zend_ptr_stack_2_pop Unexecuted instantiation: reentrancy.c:zend_ptr_stack_2_pop Unexecuted instantiation: rfc1867.c:zend_ptr_stack_2_pop Unexecuted instantiation: safe_bcmp.c:zend_ptr_stack_2_pop Unexecuted instantiation: SAPI.c:zend_ptr_stack_2_pop Unexecuted instantiation: snprintf.c:zend_ptr_stack_2_pop Unexecuted instantiation: spprintf.c:zend_ptr_stack_2_pop Unexecuted instantiation: strlcat.c:zend_ptr_stack_2_pop Unexecuted instantiation: strlcpy.c:zend_ptr_stack_2_pop Unexecuted instantiation: cast.c:zend_ptr_stack_2_pop Unexecuted instantiation: filter.c:zend_ptr_stack_2_pop Unexecuted instantiation: glob_wrapper.c:zend_ptr_stack_2_pop Unexecuted instantiation: memory.c:zend_ptr_stack_2_pop Unexecuted instantiation: mmap.c:zend_ptr_stack_2_pop Unexecuted instantiation: plain_wrapper.c:zend_ptr_stack_2_pop Unexecuted instantiation: streams.c:zend_ptr_stack_2_pop Unexecuted instantiation: transports.c:zend_ptr_stack_2_pop Unexecuted instantiation: userspace.c:zend_ptr_stack_2_pop Unexecuted instantiation: xp_socket.c:zend_ptr_stack_2_pop Unexecuted instantiation: block_pass.c:zend_ptr_stack_2_pop Unexecuted instantiation: compact_literals.c:zend_ptr_stack_2_pop Unexecuted instantiation: compact_vars.c:zend_ptr_stack_2_pop Unexecuted instantiation: dce.c:zend_ptr_stack_2_pop Unexecuted instantiation: dfa_pass.c:zend_ptr_stack_2_pop Unexecuted instantiation: escape_analysis.c:zend_ptr_stack_2_pop Unexecuted instantiation: nop_removal.c:zend_ptr_stack_2_pop Unexecuted instantiation: optimize_func_calls.c:zend_ptr_stack_2_pop Unexecuted instantiation: optimize_temp_vars_5.c:zend_ptr_stack_2_pop Unexecuted instantiation: pass1.c:zend_ptr_stack_2_pop Unexecuted instantiation: pass3.c:zend_ptr_stack_2_pop Unexecuted instantiation: sccp.c:zend_ptr_stack_2_pop Unexecuted instantiation: scdf.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_call_graph.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_cfg.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_dfg.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_dump.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_func_info.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_inference.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_optimizer.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_ssa.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_alloc.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_API.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_ast.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_attributes.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_builtin_functions.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_call_stack.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_closures.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_compile.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_constants.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_default_classes.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_dtrace.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_enum.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_exceptions.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_execute_API.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_execute.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_extensions.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_fibers.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_float.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_gc.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_generators.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_hash.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_highlight.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_inheritance.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_ini_parser.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_ini_scanner.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_ini.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_interfaces.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_iterators.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_language_parser.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_language_scanner.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_lazy_objects.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_list.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_multibyte.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_object_handlers.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_objects_API.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_objects.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_observer.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_opcode.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_operators.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_property_hooks.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_ptr_stack.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_signal.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_smart_str.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_stream.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_string.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_strtod.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_system_id.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_variables.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend_weakrefs.c:zend_ptr_stack_2_pop Unexecuted instantiation: zend.c:zend_ptr_stack_2_pop Unexecuted instantiation: internal_functions_cli.c:zend_ptr_stack_2_pop Unexecuted instantiation: fuzzer-parser.c:zend_ptr_stack_2_pop Unexecuted instantiation: fuzzer-sapi.c:zend_ptr_stack_2_pop Unexecuted instantiation: fuzzer-tracing-jit.c:zend_ptr_stack_2_pop Unexecuted instantiation: fuzzer-exif.c:zend_ptr_stack_2_pop Unexecuted instantiation: fuzzer-unserialize.c:zend_ptr_stack_2_pop Unexecuted instantiation: fuzzer-function-jit.c:zend_ptr_stack_2_pop Unexecuted instantiation: fuzzer-json.c:zend_ptr_stack_2_pop Unexecuted instantiation: fuzzer-unserializehash.c:zend_ptr_stack_2_pop Unexecuted instantiation: fuzzer-execute.c:zend_ptr_stack_2_pop |
100 | | |
101 | | static zend_always_inline void zend_ptr_stack_push(zend_ptr_stack *stack, void *ptr) |
102 | 4.99M | { |
103 | 4.99M | ZEND_PTR_STACK_RESIZE_IF_NEEDED(stack, 1) |
104 | | |
105 | 4.99M | stack->top++; |
106 | 4.99M | *(stack->top_element++) = ptr; |
107 | 4.99M | } Unexecuted instantiation: php_date.c:zend_ptr_stack_push Unexecuted instantiation: php_pcre.c:zend_ptr_stack_push Unexecuted instantiation: exif.c:zend_ptr_stack_push Unexecuted instantiation: hash_adler32.c:zend_ptr_stack_push Unexecuted instantiation: hash_crc32.c:zend_ptr_stack_push Unexecuted instantiation: hash_fnv.c:zend_ptr_stack_push Unexecuted instantiation: hash_gost.c:zend_ptr_stack_push Unexecuted instantiation: hash_haval.c:zend_ptr_stack_push Unexecuted instantiation: hash_joaat.c:zend_ptr_stack_push Unexecuted instantiation: hash_md.c:zend_ptr_stack_push Unexecuted instantiation: hash_murmur.c:zend_ptr_stack_push Unexecuted instantiation: hash_ripemd.c:zend_ptr_stack_push Unexecuted instantiation: hash_sha_ni.c:zend_ptr_stack_push Unexecuted instantiation: hash_sha_sse2.c:zend_ptr_stack_push Unexecuted instantiation: hash_sha.c:zend_ptr_stack_push Unexecuted instantiation: hash_sha3.c:zend_ptr_stack_push Unexecuted instantiation: hash_snefru.c:zend_ptr_stack_push Unexecuted instantiation: hash_tiger.c:zend_ptr_stack_push Unexecuted instantiation: hash_whirlpool.c:zend_ptr_stack_push Unexecuted instantiation: hash_xxhash.c:zend_ptr_stack_push Unexecuted instantiation: hash.c:zend_ptr_stack_push Unexecuted instantiation: json_encoder.c:zend_ptr_stack_push Unexecuted instantiation: json_parser.tab.c:zend_ptr_stack_push Unexecuted instantiation: json_scanner.c:zend_ptr_stack_push Unexecuted instantiation: json.c:zend_ptr_stack_push Unexecuted instantiation: php_lexbor.c:zend_ptr_stack_push Unexecuted instantiation: csprng.c:zend_ptr_stack_push Unexecuted instantiation: engine_mt19937.c:zend_ptr_stack_push Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_ptr_stack_push Unexecuted instantiation: engine_secure.c:zend_ptr_stack_push Unexecuted instantiation: engine_user.c:zend_ptr_stack_push Unexecuted instantiation: engine_xoshiro256starstar.c:zend_ptr_stack_push Unexecuted instantiation: gammasection.c:zend_ptr_stack_push Unexecuted instantiation: random.c:zend_ptr_stack_push Unexecuted instantiation: randomizer.c:zend_ptr_stack_push Unexecuted instantiation: zend_utils.c:zend_ptr_stack_push Unexecuted instantiation: php_reflection.c:zend_ptr_stack_push Unexecuted instantiation: php_spl.c:zend_ptr_stack_push Unexecuted instantiation: spl_array.c:zend_ptr_stack_push Unexecuted instantiation: spl_directory.c:zend_ptr_stack_push Unexecuted instantiation: spl_dllist.c:zend_ptr_stack_push Unexecuted instantiation: spl_exceptions.c:zend_ptr_stack_push Unexecuted instantiation: spl_fixedarray.c:zend_ptr_stack_push Unexecuted instantiation: spl_functions.c:zend_ptr_stack_push Unexecuted instantiation: spl_heap.c:zend_ptr_stack_push Unexecuted instantiation: spl_iterators.c:zend_ptr_stack_push Unexecuted instantiation: spl_observer.c:zend_ptr_stack_push Unexecuted instantiation: array.c:zend_ptr_stack_push Unexecuted instantiation: assert.c:zend_ptr_stack_push Unexecuted instantiation: base64.c:zend_ptr_stack_push Unexecuted instantiation: basic_functions.c:zend_ptr_stack_push Unexecuted instantiation: browscap.c:zend_ptr_stack_push Unexecuted instantiation: crc32_x86.c:zend_ptr_stack_push Unexecuted instantiation: crc32.c:zend_ptr_stack_push Unexecuted instantiation: credits.c:zend_ptr_stack_push Unexecuted instantiation: crypt.c:zend_ptr_stack_push Unexecuted instantiation: css.c:zend_ptr_stack_push Unexecuted instantiation: datetime.c:zend_ptr_stack_push Unexecuted instantiation: dir.c:zend_ptr_stack_push Unexecuted instantiation: dl.c:zend_ptr_stack_push Unexecuted instantiation: dns.c:zend_ptr_stack_push Unexecuted instantiation: exec.c:zend_ptr_stack_push Unexecuted instantiation: file.c:zend_ptr_stack_push Unexecuted instantiation: filestat.c:zend_ptr_stack_push Unexecuted instantiation: filters.c:zend_ptr_stack_push Unexecuted instantiation: flock_compat.c:zend_ptr_stack_push Unexecuted instantiation: formatted_print.c:zend_ptr_stack_push Unexecuted instantiation: fsock.c:zend_ptr_stack_push Unexecuted instantiation: ftok.c:zend_ptr_stack_push Unexecuted instantiation: ftp_fopen_wrapper.c:zend_ptr_stack_push Unexecuted instantiation: head.c:zend_ptr_stack_push Unexecuted instantiation: hrtime.c:zend_ptr_stack_push Unexecuted instantiation: html.c:zend_ptr_stack_push Unexecuted instantiation: http_fopen_wrapper.c:zend_ptr_stack_push Unexecuted instantiation: http.c:zend_ptr_stack_push Unexecuted instantiation: image.c:zend_ptr_stack_push Unexecuted instantiation: incomplete_class.c:zend_ptr_stack_push Unexecuted instantiation: info.c:zend_ptr_stack_push Unexecuted instantiation: iptc.c:zend_ptr_stack_push Unexecuted instantiation: levenshtein.c:zend_ptr_stack_push Unexecuted instantiation: link.c:zend_ptr_stack_push Unexecuted instantiation: mail.c:zend_ptr_stack_push Unexecuted instantiation: math.c:zend_ptr_stack_push Unexecuted instantiation: md5.c:zend_ptr_stack_push Unexecuted instantiation: metaphone.c:zend_ptr_stack_push Unexecuted instantiation: microtime.c:zend_ptr_stack_push Unexecuted instantiation: net.c:zend_ptr_stack_push Unexecuted instantiation: pack.c:zend_ptr_stack_push Unexecuted instantiation: pageinfo.c:zend_ptr_stack_push Unexecuted instantiation: password.c:zend_ptr_stack_push Unexecuted instantiation: php_fopen_wrapper.c:zend_ptr_stack_push Unexecuted instantiation: proc_open.c:zend_ptr_stack_push Unexecuted instantiation: quot_print.c:zend_ptr_stack_push Unexecuted instantiation: scanf.c:zend_ptr_stack_push Unexecuted instantiation: sha1.c:zend_ptr_stack_push Unexecuted instantiation: soundex.c:zend_ptr_stack_push Unexecuted instantiation: streamsfuncs.c:zend_ptr_stack_push Unexecuted instantiation: string.c:zend_ptr_stack_push Unexecuted instantiation: strnatcmp.c:zend_ptr_stack_push Unexecuted instantiation: syslog.c:zend_ptr_stack_push Unexecuted instantiation: type.c:zend_ptr_stack_push Unexecuted instantiation: uniqid.c:zend_ptr_stack_push Unexecuted instantiation: url_scanner_ex.c:zend_ptr_stack_push Unexecuted instantiation: url.c:zend_ptr_stack_push Unexecuted instantiation: user_filters.c:zend_ptr_stack_push Unexecuted instantiation: uuencode.c:zend_ptr_stack_push Unexecuted instantiation: var_unserializer.c:zend_ptr_stack_push Unexecuted instantiation: var.c:zend_ptr_stack_push Unexecuted instantiation: versioning.c:zend_ptr_stack_push Unexecuted instantiation: crypt_sha256.c:zend_ptr_stack_push Unexecuted instantiation: crypt_sha512.c:zend_ptr_stack_push Unexecuted instantiation: php_crypt_r.c:zend_ptr_stack_push Unexecuted instantiation: php_uri.c:zend_ptr_stack_push Unexecuted instantiation: php_uri_common.c:zend_ptr_stack_push Unexecuted instantiation: explicit_bzero.c:zend_ptr_stack_push Unexecuted instantiation: fopen_wrappers.c:zend_ptr_stack_push Unexecuted instantiation: getopt.c:zend_ptr_stack_push Unexecuted instantiation: main.c:zend_ptr_stack_push Unexecuted instantiation: network.c:zend_ptr_stack_push Unexecuted instantiation: output.c:zend_ptr_stack_push Unexecuted instantiation: php_content_types.c:zend_ptr_stack_push Unexecuted instantiation: php_ini_builder.c:zend_ptr_stack_push Unexecuted instantiation: php_ini.c:zend_ptr_stack_push Unexecuted instantiation: php_glob.c:zend_ptr_stack_push Unexecuted instantiation: php_odbc_utils.c:zend_ptr_stack_push Unexecuted instantiation: php_open_temporary_file.c:zend_ptr_stack_push Unexecuted instantiation: php_scandir.c:zend_ptr_stack_push Unexecuted instantiation: php_syslog.c:zend_ptr_stack_push Unexecuted instantiation: php_ticks.c:zend_ptr_stack_push Unexecuted instantiation: php_variables.c:zend_ptr_stack_push Unexecuted instantiation: reentrancy.c:zend_ptr_stack_push Unexecuted instantiation: rfc1867.c:zend_ptr_stack_push Unexecuted instantiation: safe_bcmp.c:zend_ptr_stack_push Unexecuted instantiation: SAPI.c:zend_ptr_stack_push Unexecuted instantiation: snprintf.c:zend_ptr_stack_push Unexecuted instantiation: spprintf.c:zend_ptr_stack_push Unexecuted instantiation: strlcat.c:zend_ptr_stack_push Unexecuted instantiation: strlcpy.c:zend_ptr_stack_push Unexecuted instantiation: cast.c:zend_ptr_stack_push Unexecuted instantiation: filter.c:zend_ptr_stack_push Unexecuted instantiation: glob_wrapper.c:zend_ptr_stack_push Unexecuted instantiation: memory.c:zend_ptr_stack_push Unexecuted instantiation: mmap.c:zend_ptr_stack_push Unexecuted instantiation: plain_wrapper.c:zend_ptr_stack_push Unexecuted instantiation: streams.c:zend_ptr_stack_push Unexecuted instantiation: transports.c:zend_ptr_stack_push Unexecuted instantiation: userspace.c:zend_ptr_stack_push Unexecuted instantiation: xp_socket.c:zend_ptr_stack_push Unexecuted instantiation: block_pass.c:zend_ptr_stack_push Unexecuted instantiation: compact_literals.c:zend_ptr_stack_push Unexecuted instantiation: compact_vars.c:zend_ptr_stack_push Unexecuted instantiation: dce.c:zend_ptr_stack_push Unexecuted instantiation: dfa_pass.c:zend_ptr_stack_push Unexecuted instantiation: escape_analysis.c:zend_ptr_stack_push Unexecuted instantiation: nop_removal.c:zend_ptr_stack_push Unexecuted instantiation: optimize_func_calls.c:zend_ptr_stack_push Unexecuted instantiation: optimize_temp_vars_5.c:zend_ptr_stack_push Unexecuted instantiation: pass1.c:zend_ptr_stack_push Unexecuted instantiation: pass3.c:zend_ptr_stack_push Unexecuted instantiation: sccp.c:zend_ptr_stack_push Unexecuted instantiation: scdf.c:zend_ptr_stack_push Unexecuted instantiation: zend_call_graph.c:zend_ptr_stack_push Unexecuted instantiation: zend_cfg.c:zend_ptr_stack_push Unexecuted instantiation: zend_dfg.c:zend_ptr_stack_push Unexecuted instantiation: zend_dump.c:zend_ptr_stack_push Unexecuted instantiation: zend_func_info.c:zend_ptr_stack_push Unexecuted instantiation: zend_inference.c:zend_ptr_stack_push Unexecuted instantiation: zend_optimizer.c:zend_ptr_stack_push Unexecuted instantiation: zend_ssa.c:zend_ptr_stack_push Unexecuted instantiation: zend_alloc.c:zend_ptr_stack_push Unexecuted instantiation: zend_API.c:zend_ptr_stack_push Unexecuted instantiation: zend_ast.c:zend_ptr_stack_push Unexecuted instantiation: zend_attributes.c:zend_ptr_stack_push Unexecuted instantiation: zend_builtin_functions.c:zend_ptr_stack_push Unexecuted instantiation: zend_call_stack.c:zend_ptr_stack_push Unexecuted instantiation: zend_closures.c:zend_ptr_stack_push Unexecuted instantiation: zend_compile.c:zend_ptr_stack_push Unexecuted instantiation: zend_constants.c:zend_ptr_stack_push Unexecuted instantiation: zend_default_classes.c:zend_ptr_stack_push Unexecuted instantiation: zend_dtrace.c:zend_ptr_stack_push Unexecuted instantiation: zend_enum.c:zend_ptr_stack_push Unexecuted instantiation: zend_exceptions.c:zend_ptr_stack_push Unexecuted instantiation: zend_execute_API.c:zend_ptr_stack_push Unexecuted instantiation: zend_execute.c:zend_ptr_stack_push Unexecuted instantiation: zend_extensions.c:zend_ptr_stack_push Unexecuted instantiation: zend_fibers.c:zend_ptr_stack_push Unexecuted instantiation: zend_float.c:zend_ptr_stack_push Unexecuted instantiation: zend_gc.c:zend_ptr_stack_push Unexecuted instantiation: zend_generators.c:zend_ptr_stack_push Unexecuted instantiation: zend_hash.c:zend_ptr_stack_push Unexecuted instantiation: zend_highlight.c:zend_ptr_stack_push Unexecuted instantiation: zend_inheritance.c:zend_ptr_stack_push Unexecuted instantiation: zend_ini_parser.c:zend_ptr_stack_push Unexecuted instantiation: zend_ini_scanner.c:zend_ptr_stack_push Unexecuted instantiation: zend_ini.c:zend_ptr_stack_push Unexecuted instantiation: zend_interfaces.c:zend_ptr_stack_push Unexecuted instantiation: zend_iterators.c:zend_ptr_stack_push Unexecuted instantiation: zend_language_parser.c:zend_ptr_stack_push zend_language_scanner.c:zend_ptr_stack_push Line | Count | Source | 102 | 4.99M | { | 103 | 4.99M | ZEND_PTR_STACK_RESIZE_IF_NEEDED(stack, 1) | 104 | | | 105 | 4.99M | stack->top++; | 106 | 4.99M | *(stack->top_element++) = ptr; | 107 | 4.99M | } |
Unexecuted instantiation: zend_lazy_objects.c:zend_ptr_stack_push Unexecuted instantiation: zend_list.c:zend_ptr_stack_push Unexecuted instantiation: zend_multibyte.c:zend_ptr_stack_push Unexecuted instantiation: zend_object_handlers.c:zend_ptr_stack_push Unexecuted instantiation: zend_objects_API.c:zend_ptr_stack_push Unexecuted instantiation: zend_objects.c:zend_ptr_stack_push Unexecuted instantiation: zend_observer.c:zend_ptr_stack_push Unexecuted instantiation: zend_opcode.c:zend_ptr_stack_push Unexecuted instantiation: zend_operators.c:zend_ptr_stack_push Unexecuted instantiation: zend_property_hooks.c:zend_ptr_stack_push Unexecuted instantiation: zend_ptr_stack.c:zend_ptr_stack_push Unexecuted instantiation: zend_signal.c:zend_ptr_stack_push Unexecuted instantiation: zend_smart_str.c:zend_ptr_stack_push Unexecuted instantiation: zend_stream.c:zend_ptr_stack_push Unexecuted instantiation: zend_string.c:zend_ptr_stack_push Unexecuted instantiation: zend_strtod.c:zend_ptr_stack_push Unexecuted instantiation: zend_system_id.c:zend_ptr_stack_push Unexecuted instantiation: zend_variables.c:zend_ptr_stack_push Unexecuted instantiation: zend_weakrefs.c:zend_ptr_stack_push Unexecuted instantiation: zend.c:zend_ptr_stack_push Unexecuted instantiation: internal_functions_cli.c:zend_ptr_stack_push Unexecuted instantiation: fuzzer-parser.c:zend_ptr_stack_push Unexecuted instantiation: fuzzer-sapi.c:zend_ptr_stack_push Unexecuted instantiation: fuzzer-tracing-jit.c:zend_ptr_stack_push Unexecuted instantiation: fuzzer-exif.c:zend_ptr_stack_push Unexecuted instantiation: fuzzer-unserialize.c:zend_ptr_stack_push Unexecuted instantiation: fuzzer-function-jit.c:zend_ptr_stack_push Unexecuted instantiation: fuzzer-json.c:zend_ptr_stack_push Unexecuted instantiation: fuzzer-unserializehash.c:zend_ptr_stack_push Unexecuted instantiation: fuzzer-execute.c:zend_ptr_stack_push |
108 | | |
109 | | static zend_always_inline void *zend_ptr_stack_pop(zend_ptr_stack *stack) |
110 | 17.9k | { |
111 | 17.9k | stack->top--; |
112 | 17.9k | return *(--stack->top_element); |
113 | 17.9k | } Unexecuted instantiation: php_date.c:zend_ptr_stack_pop Unexecuted instantiation: php_pcre.c:zend_ptr_stack_pop Unexecuted instantiation: exif.c:zend_ptr_stack_pop Unexecuted instantiation: hash_adler32.c:zend_ptr_stack_pop Unexecuted instantiation: hash_crc32.c:zend_ptr_stack_pop Unexecuted instantiation: hash_fnv.c:zend_ptr_stack_pop Unexecuted instantiation: hash_gost.c:zend_ptr_stack_pop Unexecuted instantiation: hash_haval.c:zend_ptr_stack_pop Unexecuted instantiation: hash_joaat.c:zend_ptr_stack_pop Unexecuted instantiation: hash_md.c:zend_ptr_stack_pop Unexecuted instantiation: hash_murmur.c:zend_ptr_stack_pop Unexecuted instantiation: hash_ripemd.c:zend_ptr_stack_pop Unexecuted instantiation: hash_sha_ni.c:zend_ptr_stack_pop Unexecuted instantiation: hash_sha_sse2.c:zend_ptr_stack_pop Unexecuted instantiation: hash_sha.c:zend_ptr_stack_pop Unexecuted instantiation: hash_sha3.c:zend_ptr_stack_pop Unexecuted instantiation: hash_snefru.c:zend_ptr_stack_pop Unexecuted instantiation: hash_tiger.c:zend_ptr_stack_pop Unexecuted instantiation: hash_whirlpool.c:zend_ptr_stack_pop Unexecuted instantiation: hash_xxhash.c:zend_ptr_stack_pop Unexecuted instantiation: hash.c:zend_ptr_stack_pop Unexecuted instantiation: json_encoder.c:zend_ptr_stack_pop Unexecuted instantiation: json_parser.tab.c:zend_ptr_stack_pop Unexecuted instantiation: json_scanner.c:zend_ptr_stack_pop Unexecuted instantiation: json.c:zend_ptr_stack_pop Unexecuted instantiation: php_lexbor.c:zend_ptr_stack_pop Unexecuted instantiation: csprng.c:zend_ptr_stack_pop Unexecuted instantiation: engine_mt19937.c:zend_ptr_stack_pop Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_ptr_stack_pop Unexecuted instantiation: engine_secure.c:zend_ptr_stack_pop Unexecuted instantiation: engine_user.c:zend_ptr_stack_pop Unexecuted instantiation: engine_xoshiro256starstar.c:zend_ptr_stack_pop Unexecuted instantiation: gammasection.c:zend_ptr_stack_pop Unexecuted instantiation: random.c:zend_ptr_stack_pop Unexecuted instantiation: randomizer.c:zend_ptr_stack_pop Unexecuted instantiation: zend_utils.c:zend_ptr_stack_pop Unexecuted instantiation: php_reflection.c:zend_ptr_stack_pop Unexecuted instantiation: php_spl.c:zend_ptr_stack_pop Unexecuted instantiation: spl_array.c:zend_ptr_stack_pop Unexecuted instantiation: spl_directory.c:zend_ptr_stack_pop Unexecuted instantiation: spl_dllist.c:zend_ptr_stack_pop Unexecuted instantiation: spl_exceptions.c:zend_ptr_stack_pop Unexecuted instantiation: spl_fixedarray.c:zend_ptr_stack_pop Unexecuted instantiation: spl_functions.c:zend_ptr_stack_pop Unexecuted instantiation: spl_heap.c:zend_ptr_stack_pop Unexecuted instantiation: spl_iterators.c:zend_ptr_stack_pop Unexecuted instantiation: spl_observer.c:zend_ptr_stack_pop Unexecuted instantiation: array.c:zend_ptr_stack_pop Unexecuted instantiation: assert.c:zend_ptr_stack_pop Unexecuted instantiation: base64.c:zend_ptr_stack_pop Unexecuted instantiation: basic_functions.c:zend_ptr_stack_pop Unexecuted instantiation: browscap.c:zend_ptr_stack_pop Unexecuted instantiation: crc32_x86.c:zend_ptr_stack_pop Unexecuted instantiation: crc32.c:zend_ptr_stack_pop Unexecuted instantiation: credits.c:zend_ptr_stack_pop Unexecuted instantiation: crypt.c:zend_ptr_stack_pop Unexecuted instantiation: css.c:zend_ptr_stack_pop Unexecuted instantiation: datetime.c:zend_ptr_stack_pop Unexecuted instantiation: dir.c:zend_ptr_stack_pop Unexecuted instantiation: dl.c:zend_ptr_stack_pop Unexecuted instantiation: dns.c:zend_ptr_stack_pop Unexecuted instantiation: exec.c:zend_ptr_stack_pop Unexecuted instantiation: file.c:zend_ptr_stack_pop Unexecuted instantiation: filestat.c:zend_ptr_stack_pop Unexecuted instantiation: filters.c:zend_ptr_stack_pop Unexecuted instantiation: flock_compat.c:zend_ptr_stack_pop Unexecuted instantiation: formatted_print.c:zend_ptr_stack_pop Unexecuted instantiation: fsock.c:zend_ptr_stack_pop Unexecuted instantiation: ftok.c:zend_ptr_stack_pop Unexecuted instantiation: ftp_fopen_wrapper.c:zend_ptr_stack_pop Unexecuted instantiation: head.c:zend_ptr_stack_pop Unexecuted instantiation: hrtime.c:zend_ptr_stack_pop Unexecuted instantiation: html.c:zend_ptr_stack_pop Unexecuted instantiation: http_fopen_wrapper.c:zend_ptr_stack_pop Unexecuted instantiation: http.c:zend_ptr_stack_pop Unexecuted instantiation: image.c:zend_ptr_stack_pop Unexecuted instantiation: incomplete_class.c:zend_ptr_stack_pop Unexecuted instantiation: info.c:zend_ptr_stack_pop Unexecuted instantiation: iptc.c:zend_ptr_stack_pop Unexecuted instantiation: levenshtein.c:zend_ptr_stack_pop Unexecuted instantiation: link.c:zend_ptr_stack_pop Unexecuted instantiation: mail.c:zend_ptr_stack_pop Unexecuted instantiation: math.c:zend_ptr_stack_pop Unexecuted instantiation: md5.c:zend_ptr_stack_pop Unexecuted instantiation: metaphone.c:zend_ptr_stack_pop Unexecuted instantiation: microtime.c:zend_ptr_stack_pop Unexecuted instantiation: net.c:zend_ptr_stack_pop Unexecuted instantiation: pack.c:zend_ptr_stack_pop Unexecuted instantiation: pageinfo.c:zend_ptr_stack_pop Unexecuted instantiation: password.c:zend_ptr_stack_pop Unexecuted instantiation: php_fopen_wrapper.c:zend_ptr_stack_pop Unexecuted instantiation: proc_open.c:zend_ptr_stack_pop Unexecuted instantiation: quot_print.c:zend_ptr_stack_pop Unexecuted instantiation: scanf.c:zend_ptr_stack_pop Unexecuted instantiation: sha1.c:zend_ptr_stack_pop Unexecuted instantiation: soundex.c:zend_ptr_stack_pop Unexecuted instantiation: streamsfuncs.c:zend_ptr_stack_pop Unexecuted instantiation: string.c:zend_ptr_stack_pop Unexecuted instantiation: strnatcmp.c:zend_ptr_stack_pop Unexecuted instantiation: syslog.c:zend_ptr_stack_pop Unexecuted instantiation: type.c:zend_ptr_stack_pop Unexecuted instantiation: uniqid.c:zend_ptr_stack_pop Unexecuted instantiation: url_scanner_ex.c:zend_ptr_stack_pop Unexecuted instantiation: url.c:zend_ptr_stack_pop Unexecuted instantiation: user_filters.c:zend_ptr_stack_pop Unexecuted instantiation: uuencode.c:zend_ptr_stack_pop Unexecuted instantiation: var_unserializer.c:zend_ptr_stack_pop Unexecuted instantiation: var.c:zend_ptr_stack_pop Unexecuted instantiation: versioning.c:zend_ptr_stack_pop Unexecuted instantiation: crypt_sha256.c:zend_ptr_stack_pop Unexecuted instantiation: crypt_sha512.c:zend_ptr_stack_pop Unexecuted instantiation: php_crypt_r.c:zend_ptr_stack_pop Unexecuted instantiation: php_uri.c:zend_ptr_stack_pop Unexecuted instantiation: php_uri_common.c:zend_ptr_stack_pop Unexecuted instantiation: explicit_bzero.c:zend_ptr_stack_pop Unexecuted instantiation: fopen_wrappers.c:zend_ptr_stack_pop Unexecuted instantiation: getopt.c:zend_ptr_stack_pop Unexecuted instantiation: main.c:zend_ptr_stack_pop Unexecuted instantiation: network.c:zend_ptr_stack_pop Unexecuted instantiation: output.c:zend_ptr_stack_pop Unexecuted instantiation: php_content_types.c:zend_ptr_stack_pop Unexecuted instantiation: php_ini_builder.c:zend_ptr_stack_pop Unexecuted instantiation: php_ini.c:zend_ptr_stack_pop Unexecuted instantiation: php_glob.c:zend_ptr_stack_pop Unexecuted instantiation: php_odbc_utils.c:zend_ptr_stack_pop Unexecuted instantiation: php_open_temporary_file.c:zend_ptr_stack_pop Unexecuted instantiation: php_scandir.c:zend_ptr_stack_pop Unexecuted instantiation: php_syslog.c:zend_ptr_stack_pop Unexecuted instantiation: php_ticks.c:zend_ptr_stack_pop Unexecuted instantiation: php_variables.c:zend_ptr_stack_pop Unexecuted instantiation: reentrancy.c:zend_ptr_stack_pop Unexecuted instantiation: rfc1867.c:zend_ptr_stack_pop Unexecuted instantiation: safe_bcmp.c:zend_ptr_stack_pop Unexecuted instantiation: SAPI.c:zend_ptr_stack_pop Unexecuted instantiation: snprintf.c:zend_ptr_stack_pop Unexecuted instantiation: spprintf.c:zend_ptr_stack_pop Unexecuted instantiation: strlcat.c:zend_ptr_stack_pop Unexecuted instantiation: strlcpy.c:zend_ptr_stack_pop Unexecuted instantiation: cast.c:zend_ptr_stack_pop Unexecuted instantiation: filter.c:zend_ptr_stack_pop Unexecuted instantiation: glob_wrapper.c:zend_ptr_stack_pop Unexecuted instantiation: memory.c:zend_ptr_stack_pop Unexecuted instantiation: mmap.c:zend_ptr_stack_pop Unexecuted instantiation: plain_wrapper.c:zend_ptr_stack_pop Unexecuted instantiation: streams.c:zend_ptr_stack_pop Unexecuted instantiation: transports.c:zend_ptr_stack_pop Unexecuted instantiation: userspace.c:zend_ptr_stack_pop Unexecuted instantiation: xp_socket.c:zend_ptr_stack_pop Unexecuted instantiation: block_pass.c:zend_ptr_stack_pop Unexecuted instantiation: compact_literals.c:zend_ptr_stack_pop Unexecuted instantiation: compact_vars.c:zend_ptr_stack_pop Unexecuted instantiation: dce.c:zend_ptr_stack_pop Unexecuted instantiation: dfa_pass.c:zend_ptr_stack_pop Unexecuted instantiation: escape_analysis.c:zend_ptr_stack_pop Unexecuted instantiation: nop_removal.c:zend_ptr_stack_pop Unexecuted instantiation: optimize_func_calls.c:zend_ptr_stack_pop Unexecuted instantiation: optimize_temp_vars_5.c:zend_ptr_stack_pop Unexecuted instantiation: pass1.c:zend_ptr_stack_pop Unexecuted instantiation: pass3.c:zend_ptr_stack_pop Unexecuted instantiation: sccp.c:zend_ptr_stack_pop Unexecuted instantiation: scdf.c:zend_ptr_stack_pop Unexecuted instantiation: zend_call_graph.c:zend_ptr_stack_pop Unexecuted instantiation: zend_cfg.c:zend_ptr_stack_pop Unexecuted instantiation: zend_dfg.c:zend_ptr_stack_pop Unexecuted instantiation: zend_dump.c:zend_ptr_stack_pop Unexecuted instantiation: zend_func_info.c:zend_ptr_stack_pop Unexecuted instantiation: zend_inference.c:zend_ptr_stack_pop Unexecuted instantiation: zend_optimizer.c:zend_ptr_stack_pop Unexecuted instantiation: zend_ssa.c:zend_ptr_stack_pop Unexecuted instantiation: zend_alloc.c:zend_ptr_stack_pop Unexecuted instantiation: zend_API.c:zend_ptr_stack_pop Unexecuted instantiation: zend_ast.c:zend_ptr_stack_pop Unexecuted instantiation: zend_attributes.c:zend_ptr_stack_pop Unexecuted instantiation: zend_builtin_functions.c:zend_ptr_stack_pop Unexecuted instantiation: zend_call_stack.c:zend_ptr_stack_pop Unexecuted instantiation: zend_closures.c:zend_ptr_stack_pop Unexecuted instantiation: zend_compile.c:zend_ptr_stack_pop Unexecuted instantiation: zend_constants.c:zend_ptr_stack_pop Unexecuted instantiation: zend_default_classes.c:zend_ptr_stack_pop Unexecuted instantiation: zend_dtrace.c:zend_ptr_stack_pop Unexecuted instantiation: zend_enum.c:zend_ptr_stack_pop Unexecuted instantiation: zend_exceptions.c:zend_ptr_stack_pop Unexecuted instantiation: zend_execute_API.c:zend_ptr_stack_pop Unexecuted instantiation: zend_execute.c:zend_ptr_stack_pop Unexecuted instantiation: zend_extensions.c:zend_ptr_stack_pop Unexecuted instantiation: zend_fibers.c:zend_ptr_stack_pop Unexecuted instantiation: zend_float.c:zend_ptr_stack_pop Unexecuted instantiation: zend_gc.c:zend_ptr_stack_pop Unexecuted instantiation: zend_generators.c:zend_ptr_stack_pop Unexecuted instantiation: zend_hash.c:zend_ptr_stack_pop Unexecuted instantiation: zend_highlight.c:zend_ptr_stack_pop Unexecuted instantiation: zend_inheritance.c:zend_ptr_stack_pop Unexecuted instantiation: zend_ini_parser.c:zend_ptr_stack_pop Unexecuted instantiation: zend_ini_scanner.c:zend_ptr_stack_pop Unexecuted instantiation: zend_ini.c:zend_ptr_stack_pop Unexecuted instantiation: zend_interfaces.c:zend_ptr_stack_pop Unexecuted instantiation: zend_iterators.c:zend_ptr_stack_pop Unexecuted instantiation: zend_language_parser.c:zend_ptr_stack_pop zend_language_scanner.c:zend_ptr_stack_pop Line | Count | Source | 110 | 17.9k | { | 111 | 17.9k | stack->top--; | 112 | 17.9k | return *(--stack->top_element); | 113 | 17.9k | } |
Unexecuted instantiation: zend_lazy_objects.c:zend_ptr_stack_pop Unexecuted instantiation: zend_list.c:zend_ptr_stack_pop Unexecuted instantiation: zend_multibyte.c:zend_ptr_stack_pop Unexecuted instantiation: zend_object_handlers.c:zend_ptr_stack_pop Unexecuted instantiation: zend_objects_API.c:zend_ptr_stack_pop Unexecuted instantiation: zend_objects.c:zend_ptr_stack_pop Unexecuted instantiation: zend_observer.c:zend_ptr_stack_pop Unexecuted instantiation: zend_opcode.c:zend_ptr_stack_pop Unexecuted instantiation: zend_operators.c:zend_ptr_stack_pop Unexecuted instantiation: zend_property_hooks.c:zend_ptr_stack_pop Unexecuted instantiation: zend_ptr_stack.c:zend_ptr_stack_pop Unexecuted instantiation: zend_signal.c:zend_ptr_stack_pop Unexecuted instantiation: zend_smart_str.c:zend_ptr_stack_pop Unexecuted instantiation: zend_stream.c:zend_ptr_stack_pop Unexecuted instantiation: zend_string.c:zend_ptr_stack_pop Unexecuted instantiation: zend_strtod.c:zend_ptr_stack_pop Unexecuted instantiation: zend_system_id.c:zend_ptr_stack_pop Unexecuted instantiation: zend_variables.c:zend_ptr_stack_pop Unexecuted instantiation: zend_weakrefs.c:zend_ptr_stack_pop Unexecuted instantiation: zend.c:zend_ptr_stack_pop Unexecuted instantiation: internal_functions_cli.c:zend_ptr_stack_pop Unexecuted instantiation: fuzzer-parser.c:zend_ptr_stack_pop Unexecuted instantiation: fuzzer-sapi.c:zend_ptr_stack_pop Unexecuted instantiation: fuzzer-tracing-jit.c:zend_ptr_stack_pop Unexecuted instantiation: fuzzer-exif.c:zend_ptr_stack_pop Unexecuted instantiation: fuzzer-unserialize.c:zend_ptr_stack_pop Unexecuted instantiation: fuzzer-function-jit.c:zend_ptr_stack_pop Unexecuted instantiation: fuzzer-json.c:zend_ptr_stack_pop Unexecuted instantiation: fuzzer-unserializehash.c:zend_ptr_stack_pop Unexecuted instantiation: fuzzer-execute.c:zend_ptr_stack_pop |
114 | | |
115 | | static zend_always_inline void *zend_ptr_stack_top(zend_ptr_stack *stack) |
116 | 1.24M | { |
117 | 1.24M | return stack->elements[stack->top - 1]; |
118 | 1.24M | } Unexecuted instantiation: php_date.c:zend_ptr_stack_top Unexecuted instantiation: php_pcre.c:zend_ptr_stack_top Unexecuted instantiation: exif.c:zend_ptr_stack_top Unexecuted instantiation: hash_adler32.c:zend_ptr_stack_top Unexecuted instantiation: hash_crc32.c:zend_ptr_stack_top Unexecuted instantiation: hash_fnv.c:zend_ptr_stack_top Unexecuted instantiation: hash_gost.c:zend_ptr_stack_top Unexecuted instantiation: hash_haval.c:zend_ptr_stack_top Unexecuted instantiation: hash_joaat.c:zend_ptr_stack_top Unexecuted instantiation: hash_md.c:zend_ptr_stack_top Unexecuted instantiation: hash_murmur.c:zend_ptr_stack_top Unexecuted instantiation: hash_ripemd.c:zend_ptr_stack_top Unexecuted instantiation: hash_sha_ni.c:zend_ptr_stack_top Unexecuted instantiation: hash_sha_sse2.c:zend_ptr_stack_top Unexecuted instantiation: hash_sha.c:zend_ptr_stack_top Unexecuted instantiation: hash_sha3.c:zend_ptr_stack_top Unexecuted instantiation: hash_snefru.c:zend_ptr_stack_top Unexecuted instantiation: hash_tiger.c:zend_ptr_stack_top Unexecuted instantiation: hash_whirlpool.c:zend_ptr_stack_top Unexecuted instantiation: hash_xxhash.c:zend_ptr_stack_top Unexecuted instantiation: hash.c:zend_ptr_stack_top Unexecuted instantiation: json_encoder.c:zend_ptr_stack_top Unexecuted instantiation: json_parser.tab.c:zend_ptr_stack_top Unexecuted instantiation: json_scanner.c:zend_ptr_stack_top Unexecuted instantiation: json.c:zend_ptr_stack_top Unexecuted instantiation: php_lexbor.c:zend_ptr_stack_top Unexecuted instantiation: csprng.c:zend_ptr_stack_top Unexecuted instantiation: engine_mt19937.c:zend_ptr_stack_top Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_ptr_stack_top Unexecuted instantiation: engine_secure.c:zend_ptr_stack_top Unexecuted instantiation: engine_user.c:zend_ptr_stack_top Unexecuted instantiation: engine_xoshiro256starstar.c:zend_ptr_stack_top Unexecuted instantiation: gammasection.c:zend_ptr_stack_top Unexecuted instantiation: random.c:zend_ptr_stack_top Unexecuted instantiation: randomizer.c:zend_ptr_stack_top Unexecuted instantiation: zend_utils.c:zend_ptr_stack_top Unexecuted instantiation: php_reflection.c:zend_ptr_stack_top Unexecuted instantiation: php_spl.c:zend_ptr_stack_top Unexecuted instantiation: spl_array.c:zend_ptr_stack_top Unexecuted instantiation: spl_directory.c:zend_ptr_stack_top Unexecuted instantiation: spl_dllist.c:zend_ptr_stack_top Unexecuted instantiation: spl_exceptions.c:zend_ptr_stack_top Unexecuted instantiation: spl_fixedarray.c:zend_ptr_stack_top Unexecuted instantiation: spl_functions.c:zend_ptr_stack_top Unexecuted instantiation: spl_heap.c:zend_ptr_stack_top Unexecuted instantiation: spl_iterators.c:zend_ptr_stack_top Unexecuted instantiation: spl_observer.c:zend_ptr_stack_top Unexecuted instantiation: array.c:zend_ptr_stack_top Unexecuted instantiation: assert.c:zend_ptr_stack_top Unexecuted instantiation: base64.c:zend_ptr_stack_top Unexecuted instantiation: basic_functions.c:zend_ptr_stack_top Unexecuted instantiation: browscap.c:zend_ptr_stack_top Unexecuted instantiation: crc32_x86.c:zend_ptr_stack_top Unexecuted instantiation: crc32.c:zend_ptr_stack_top Unexecuted instantiation: credits.c:zend_ptr_stack_top Unexecuted instantiation: crypt.c:zend_ptr_stack_top Unexecuted instantiation: css.c:zend_ptr_stack_top Unexecuted instantiation: datetime.c:zend_ptr_stack_top Unexecuted instantiation: dir.c:zend_ptr_stack_top Unexecuted instantiation: dl.c:zend_ptr_stack_top Unexecuted instantiation: dns.c:zend_ptr_stack_top Unexecuted instantiation: exec.c:zend_ptr_stack_top Unexecuted instantiation: file.c:zend_ptr_stack_top Unexecuted instantiation: filestat.c:zend_ptr_stack_top Unexecuted instantiation: filters.c:zend_ptr_stack_top Unexecuted instantiation: flock_compat.c:zend_ptr_stack_top Unexecuted instantiation: formatted_print.c:zend_ptr_stack_top Unexecuted instantiation: fsock.c:zend_ptr_stack_top Unexecuted instantiation: ftok.c:zend_ptr_stack_top Unexecuted instantiation: ftp_fopen_wrapper.c:zend_ptr_stack_top Unexecuted instantiation: head.c:zend_ptr_stack_top Unexecuted instantiation: hrtime.c:zend_ptr_stack_top Unexecuted instantiation: html.c:zend_ptr_stack_top Unexecuted instantiation: http_fopen_wrapper.c:zend_ptr_stack_top Unexecuted instantiation: http.c:zend_ptr_stack_top Unexecuted instantiation: image.c:zend_ptr_stack_top Unexecuted instantiation: incomplete_class.c:zend_ptr_stack_top Unexecuted instantiation: info.c:zend_ptr_stack_top Unexecuted instantiation: iptc.c:zend_ptr_stack_top Unexecuted instantiation: levenshtein.c:zend_ptr_stack_top Unexecuted instantiation: link.c:zend_ptr_stack_top Unexecuted instantiation: mail.c:zend_ptr_stack_top Unexecuted instantiation: math.c:zend_ptr_stack_top Unexecuted instantiation: md5.c:zend_ptr_stack_top Unexecuted instantiation: metaphone.c:zend_ptr_stack_top Unexecuted instantiation: microtime.c:zend_ptr_stack_top Unexecuted instantiation: net.c:zend_ptr_stack_top Unexecuted instantiation: pack.c:zend_ptr_stack_top Unexecuted instantiation: pageinfo.c:zend_ptr_stack_top Unexecuted instantiation: password.c:zend_ptr_stack_top Unexecuted instantiation: php_fopen_wrapper.c:zend_ptr_stack_top Unexecuted instantiation: proc_open.c:zend_ptr_stack_top Unexecuted instantiation: quot_print.c:zend_ptr_stack_top Unexecuted instantiation: scanf.c:zend_ptr_stack_top Unexecuted instantiation: sha1.c:zend_ptr_stack_top Unexecuted instantiation: soundex.c:zend_ptr_stack_top Unexecuted instantiation: streamsfuncs.c:zend_ptr_stack_top Unexecuted instantiation: string.c:zend_ptr_stack_top Unexecuted instantiation: strnatcmp.c:zend_ptr_stack_top Unexecuted instantiation: syslog.c:zend_ptr_stack_top Unexecuted instantiation: type.c:zend_ptr_stack_top Unexecuted instantiation: uniqid.c:zend_ptr_stack_top Unexecuted instantiation: url_scanner_ex.c:zend_ptr_stack_top Unexecuted instantiation: url.c:zend_ptr_stack_top Unexecuted instantiation: user_filters.c:zend_ptr_stack_top Unexecuted instantiation: uuencode.c:zend_ptr_stack_top Unexecuted instantiation: var_unserializer.c:zend_ptr_stack_top Unexecuted instantiation: var.c:zend_ptr_stack_top Unexecuted instantiation: versioning.c:zend_ptr_stack_top Unexecuted instantiation: crypt_sha256.c:zend_ptr_stack_top Unexecuted instantiation: crypt_sha512.c:zend_ptr_stack_top Unexecuted instantiation: php_crypt_r.c:zend_ptr_stack_top Unexecuted instantiation: php_uri.c:zend_ptr_stack_top Unexecuted instantiation: php_uri_common.c:zend_ptr_stack_top Unexecuted instantiation: explicit_bzero.c:zend_ptr_stack_top Unexecuted instantiation: fopen_wrappers.c:zend_ptr_stack_top Unexecuted instantiation: getopt.c:zend_ptr_stack_top Unexecuted instantiation: main.c:zend_ptr_stack_top Unexecuted instantiation: network.c:zend_ptr_stack_top Unexecuted instantiation: output.c:zend_ptr_stack_top Unexecuted instantiation: php_content_types.c:zend_ptr_stack_top Unexecuted instantiation: php_ini_builder.c:zend_ptr_stack_top Unexecuted instantiation: php_ini.c:zend_ptr_stack_top Unexecuted instantiation: php_glob.c:zend_ptr_stack_top Unexecuted instantiation: php_odbc_utils.c:zend_ptr_stack_top Unexecuted instantiation: php_open_temporary_file.c:zend_ptr_stack_top Unexecuted instantiation: php_scandir.c:zend_ptr_stack_top Unexecuted instantiation: php_syslog.c:zend_ptr_stack_top Unexecuted instantiation: php_ticks.c:zend_ptr_stack_top Unexecuted instantiation: php_variables.c:zend_ptr_stack_top Unexecuted instantiation: reentrancy.c:zend_ptr_stack_top Unexecuted instantiation: rfc1867.c:zend_ptr_stack_top Unexecuted instantiation: safe_bcmp.c:zend_ptr_stack_top Unexecuted instantiation: SAPI.c:zend_ptr_stack_top Unexecuted instantiation: snprintf.c:zend_ptr_stack_top Unexecuted instantiation: spprintf.c:zend_ptr_stack_top Unexecuted instantiation: strlcat.c:zend_ptr_stack_top Unexecuted instantiation: strlcpy.c:zend_ptr_stack_top Unexecuted instantiation: cast.c:zend_ptr_stack_top Unexecuted instantiation: filter.c:zend_ptr_stack_top Unexecuted instantiation: glob_wrapper.c:zend_ptr_stack_top Unexecuted instantiation: memory.c:zend_ptr_stack_top Unexecuted instantiation: mmap.c:zend_ptr_stack_top Unexecuted instantiation: plain_wrapper.c:zend_ptr_stack_top Unexecuted instantiation: streams.c:zend_ptr_stack_top Unexecuted instantiation: transports.c:zend_ptr_stack_top Unexecuted instantiation: userspace.c:zend_ptr_stack_top Unexecuted instantiation: xp_socket.c:zend_ptr_stack_top Unexecuted instantiation: block_pass.c:zend_ptr_stack_top Unexecuted instantiation: compact_literals.c:zend_ptr_stack_top Unexecuted instantiation: compact_vars.c:zend_ptr_stack_top Unexecuted instantiation: dce.c:zend_ptr_stack_top Unexecuted instantiation: dfa_pass.c:zend_ptr_stack_top Unexecuted instantiation: escape_analysis.c:zend_ptr_stack_top Unexecuted instantiation: nop_removal.c:zend_ptr_stack_top Unexecuted instantiation: optimize_func_calls.c:zend_ptr_stack_top Unexecuted instantiation: optimize_temp_vars_5.c:zend_ptr_stack_top Unexecuted instantiation: pass1.c:zend_ptr_stack_top Unexecuted instantiation: pass3.c:zend_ptr_stack_top Unexecuted instantiation: sccp.c:zend_ptr_stack_top Unexecuted instantiation: scdf.c:zend_ptr_stack_top Unexecuted instantiation: zend_call_graph.c:zend_ptr_stack_top Unexecuted instantiation: zend_cfg.c:zend_ptr_stack_top Unexecuted instantiation: zend_dfg.c:zend_ptr_stack_top Unexecuted instantiation: zend_dump.c:zend_ptr_stack_top Unexecuted instantiation: zend_func_info.c:zend_ptr_stack_top Unexecuted instantiation: zend_inference.c:zend_ptr_stack_top Unexecuted instantiation: zend_optimizer.c:zend_ptr_stack_top Unexecuted instantiation: zend_ssa.c:zend_ptr_stack_top Unexecuted instantiation: zend_alloc.c:zend_ptr_stack_top Unexecuted instantiation: zend_API.c:zend_ptr_stack_top Unexecuted instantiation: zend_ast.c:zend_ptr_stack_top Unexecuted instantiation: zend_attributes.c:zend_ptr_stack_top Unexecuted instantiation: zend_builtin_functions.c:zend_ptr_stack_top Unexecuted instantiation: zend_call_stack.c:zend_ptr_stack_top Unexecuted instantiation: zend_closures.c:zend_ptr_stack_top Unexecuted instantiation: zend_compile.c:zend_ptr_stack_top Unexecuted instantiation: zend_constants.c:zend_ptr_stack_top Unexecuted instantiation: zend_default_classes.c:zend_ptr_stack_top Unexecuted instantiation: zend_dtrace.c:zend_ptr_stack_top Unexecuted instantiation: zend_enum.c:zend_ptr_stack_top Unexecuted instantiation: zend_exceptions.c:zend_ptr_stack_top Unexecuted instantiation: zend_execute_API.c:zend_ptr_stack_top Unexecuted instantiation: zend_execute.c:zend_ptr_stack_top Unexecuted instantiation: zend_extensions.c:zend_ptr_stack_top Unexecuted instantiation: zend_fibers.c:zend_ptr_stack_top Unexecuted instantiation: zend_float.c:zend_ptr_stack_top Unexecuted instantiation: zend_gc.c:zend_ptr_stack_top Unexecuted instantiation: zend_generators.c:zend_ptr_stack_top Unexecuted instantiation: zend_hash.c:zend_ptr_stack_top Unexecuted instantiation: zend_highlight.c:zend_ptr_stack_top Unexecuted instantiation: zend_inheritance.c:zend_ptr_stack_top Unexecuted instantiation: zend_ini_parser.c:zend_ptr_stack_top Unexecuted instantiation: zend_ini_scanner.c:zend_ptr_stack_top Unexecuted instantiation: zend_ini.c:zend_ptr_stack_top Unexecuted instantiation: zend_interfaces.c:zend_ptr_stack_top Unexecuted instantiation: zend_iterators.c:zend_ptr_stack_top Unexecuted instantiation: zend_language_parser.c:zend_ptr_stack_top zend_language_scanner.c:zend_ptr_stack_top Line | Count | Source | 116 | 1.24M | { | 117 | 1.24M | return stack->elements[stack->top - 1]; | 118 | 1.24M | } |
Unexecuted instantiation: zend_lazy_objects.c:zend_ptr_stack_top Unexecuted instantiation: zend_list.c:zend_ptr_stack_top Unexecuted instantiation: zend_multibyte.c:zend_ptr_stack_top Unexecuted instantiation: zend_object_handlers.c:zend_ptr_stack_top Unexecuted instantiation: zend_objects_API.c:zend_ptr_stack_top Unexecuted instantiation: zend_objects.c:zend_ptr_stack_top Unexecuted instantiation: zend_observer.c:zend_ptr_stack_top Unexecuted instantiation: zend_opcode.c:zend_ptr_stack_top Unexecuted instantiation: zend_operators.c:zend_ptr_stack_top Unexecuted instantiation: zend_property_hooks.c:zend_ptr_stack_top Unexecuted instantiation: zend_ptr_stack.c:zend_ptr_stack_top Unexecuted instantiation: zend_signal.c:zend_ptr_stack_top Unexecuted instantiation: zend_smart_str.c:zend_ptr_stack_top Unexecuted instantiation: zend_stream.c:zend_ptr_stack_top Unexecuted instantiation: zend_string.c:zend_ptr_stack_top Unexecuted instantiation: zend_strtod.c:zend_ptr_stack_top Unexecuted instantiation: zend_system_id.c:zend_ptr_stack_top Unexecuted instantiation: zend_variables.c:zend_ptr_stack_top Unexecuted instantiation: zend_weakrefs.c:zend_ptr_stack_top Unexecuted instantiation: zend.c:zend_ptr_stack_top Unexecuted instantiation: internal_functions_cli.c:zend_ptr_stack_top Unexecuted instantiation: fuzzer-parser.c:zend_ptr_stack_top Unexecuted instantiation: fuzzer-sapi.c:zend_ptr_stack_top Unexecuted instantiation: fuzzer-tracing-jit.c:zend_ptr_stack_top Unexecuted instantiation: fuzzer-exif.c:zend_ptr_stack_top Unexecuted instantiation: fuzzer-unserialize.c:zend_ptr_stack_top Unexecuted instantiation: fuzzer-function-jit.c:zend_ptr_stack_top Unexecuted instantiation: fuzzer-json.c:zend_ptr_stack_top Unexecuted instantiation: fuzzer-unserializehash.c:zend_ptr_stack_top Unexecuted instantiation: fuzzer-execute.c:zend_ptr_stack_top |
119 | | |
120 | | #endif /* ZEND_PTR_STACK_H */ |