/src/php-src/Zend/zend_gc.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: David Wang <planetbeing@gmail.com> | |
16 | | | Dmitry Stogov <dmitry@php.net> | |
17 | | +----------------------------------------------------------------------+ |
18 | | */ |
19 | | |
20 | | #ifndef ZEND_GC_H |
21 | | #define ZEND_GC_H |
22 | | |
23 | | #include "zend_hrtime.h" |
24 | | |
25 | | #ifndef GC_BENCH |
26 | | # define GC_BENCH 0 |
27 | | #endif |
28 | | |
29 | | BEGIN_EXTERN_C() |
30 | | |
31 | | typedef struct _zend_gc_status { |
32 | | bool active; |
33 | | bool gc_protected; |
34 | | bool full; |
35 | | uint32_t runs; |
36 | | uint32_t collected; |
37 | | uint32_t threshold; |
38 | | uint32_t buf_size; |
39 | | uint32_t num_roots; |
40 | | zend_hrtime_t application_time; |
41 | | zend_hrtime_t collector_time; |
42 | | zend_hrtime_t dtor_time; |
43 | | zend_hrtime_t free_time; |
44 | | } zend_gc_status; |
45 | | |
46 | | ZEND_API extern int (*gc_collect_cycles)(void); |
47 | | |
48 | | ZEND_API void ZEND_FASTCALL gc_possible_root(zend_refcounted *ref); |
49 | | ZEND_API void ZEND_FASTCALL gc_remove_from_buffer(zend_refcounted *ref); |
50 | | |
51 | | /* enable/disable automatic start of GC collection */ |
52 | | ZEND_API bool gc_enable(bool enable); |
53 | | ZEND_API bool gc_enabled(void); |
54 | | |
55 | | /* enable/disable possible root additions */ |
56 | | ZEND_API bool gc_protect(bool protect); |
57 | | ZEND_API bool gc_protected(void); |
58 | | |
59 | | #if GC_BENCH |
60 | | void gc_bench_print(void); |
61 | | #endif |
62 | | |
63 | | /* The default implementation of the gc_collect_cycles callback. */ |
64 | | ZEND_API int zend_gc_collect_cycles(void); |
65 | | |
66 | | ZEND_API void zend_gc_get_status(zend_gc_status *status); |
67 | | |
68 | | void gc_init(void); |
69 | | void gc_globals_ctor(void); |
70 | | void gc_globals_dtor(void); |
71 | | void gc_reset(void); |
72 | | |
73 | | #ifdef ZTS |
74 | | size_t zend_gc_globals_size(void); |
75 | | #endif |
76 | | |
77 | 12.2M | #define GC_REMOVE_FROM_BUFFER(p) do { \ |
78 | 12.2M | zend_refcounted *_p = (zend_refcounted*)(p); \ |
79 | 12.2M | if (GC_TYPE_INFO(_p) & GC_INFO_MASK) { \ |
80 | 2.98M | gc_remove_from_buffer(_p); \ |
81 | 2.98M | } \ |
82 | 12.2M | } while (0) |
83 | | |
84 | | #define GC_MAY_LEAK(ref) \ |
85 | 984 | ((GC_TYPE_INFO(ref) & \ |
86 | 984 | (GC_INFO_MASK | (GC_NOT_COLLECTABLE << GC_FLAGS_SHIFT))) == 0) |
87 | | |
88 | | static zend_always_inline void gc_check_possible_root(zend_refcounted *ref) |
89 | 3.88M | { |
90 | 3.88M | if (EXPECTED(GC_TYPE_INFO(ref) == GC_REFERENCE)) { |
91 | 500k | zval *zv = &((zend_reference*)ref)->val; |
92 | | |
93 | 500k | if (!Z_COLLECTABLE_P(zv)) { |
94 | 128k | return; |
95 | 128k | } |
96 | 372k | ref = Z_COUNTED_P(zv); |
97 | 372k | } |
98 | 3.75M | if (UNEXPECTED(GC_MAY_LEAK(ref))) { |
99 | 1.78M | gc_possible_root(ref); |
100 | 1.78M | } |
101 | 3.75M | } Unexecuted instantiation: php_date.c:gc_check_possible_root Unexecuted instantiation: astro.c:gc_check_possible_root Unexecuted instantiation: dow.c:gc_check_possible_root Unexecuted instantiation: parse_date.c:gc_check_possible_root Unexecuted instantiation: parse_tz.c:gc_check_possible_root Unexecuted instantiation: parse_posix.c:gc_check_possible_root Unexecuted instantiation: timelib.c:gc_check_possible_root Unexecuted instantiation: tm2unixtime.c:gc_check_possible_root Unexecuted instantiation: unixtime2tm.c:gc_check_possible_root Unexecuted instantiation: parse_iso_intervals.c:gc_check_possible_root Unexecuted instantiation: interval.c:gc_check_possible_root Unexecuted instantiation: php_pcre.c:gc_check_possible_root Unexecuted instantiation: exif.c:gc_check_possible_root Unexecuted instantiation: hash_adler32.c:gc_check_possible_root Unexecuted instantiation: hash_crc32.c:gc_check_possible_root Unexecuted instantiation: hash_fnv.c:gc_check_possible_root Unexecuted instantiation: hash_gost.c:gc_check_possible_root Unexecuted instantiation: hash_haval.c:gc_check_possible_root Unexecuted instantiation: hash_joaat.c:gc_check_possible_root Unexecuted instantiation: hash_md.c:gc_check_possible_root Unexecuted instantiation: hash_murmur.c:gc_check_possible_root Unexecuted instantiation: hash_ripemd.c:gc_check_possible_root Unexecuted instantiation: hash_sha_ni.c:gc_check_possible_root Unexecuted instantiation: hash_sha_sse2.c:gc_check_possible_root Unexecuted instantiation: hash_sha.c:gc_check_possible_root Unexecuted instantiation: hash_sha3.c:gc_check_possible_root Unexecuted instantiation: hash_snefru.c:gc_check_possible_root Unexecuted instantiation: hash_tiger.c:gc_check_possible_root Unexecuted instantiation: hash_whirlpool.c:gc_check_possible_root Unexecuted instantiation: hash_xxhash.c:gc_check_possible_root Unexecuted instantiation: hash.c:gc_check_possible_root Unexecuted instantiation: json_encoder.c:gc_check_possible_root Unexecuted instantiation: json_parser.tab.c:gc_check_possible_root Unexecuted instantiation: json_scanner.c:gc_check_possible_root Unexecuted instantiation: json.c:gc_check_possible_root Unexecuted instantiation: php_lexbor.c:gc_check_possible_root Unexecuted instantiation: csprng.c:gc_check_possible_root Unexecuted instantiation: engine_mt19937.c:gc_check_possible_root Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:gc_check_possible_root Unexecuted instantiation: engine_secure.c:gc_check_possible_root Unexecuted instantiation: engine_user.c:gc_check_possible_root Unexecuted instantiation: engine_xoshiro256starstar.c:gc_check_possible_root Unexecuted instantiation: gammasection.c:gc_check_possible_root Unexecuted instantiation: random.c:gc_check_possible_root Unexecuted instantiation: randomizer.c:gc_check_possible_root Unexecuted instantiation: zend_utils.c:gc_check_possible_root Unexecuted instantiation: php_reflection.c:gc_check_possible_root Unexecuted instantiation: php_spl.c:gc_check_possible_root Unexecuted instantiation: spl_array.c:gc_check_possible_root Unexecuted instantiation: spl_directory.c:gc_check_possible_root Unexecuted instantiation: spl_dllist.c:gc_check_possible_root Unexecuted instantiation: spl_exceptions.c:gc_check_possible_root Unexecuted instantiation: spl_fixedarray.c:gc_check_possible_root Unexecuted instantiation: spl_functions.c:gc_check_possible_root Unexecuted instantiation: spl_heap.c:gc_check_possible_root Unexecuted instantiation: spl_iterators.c:gc_check_possible_root Unexecuted instantiation: spl_observer.c:gc_check_possible_root Unexecuted instantiation: array.c:gc_check_possible_root Unexecuted instantiation: assert.c:gc_check_possible_root Unexecuted instantiation: base64.c:gc_check_possible_root Unexecuted instantiation: basic_functions.c:gc_check_possible_root Unexecuted instantiation: browscap.c:gc_check_possible_root Unexecuted instantiation: crc32_x86.c:gc_check_possible_root Unexecuted instantiation: crc32.c:gc_check_possible_root Unexecuted instantiation: credits.c:gc_check_possible_root Unexecuted instantiation: crypt.c:gc_check_possible_root Unexecuted instantiation: css.c:gc_check_possible_root Unexecuted instantiation: datetime.c:gc_check_possible_root Unexecuted instantiation: dir.c:gc_check_possible_root Unexecuted instantiation: dl.c:gc_check_possible_root Unexecuted instantiation: dns.c:gc_check_possible_root Unexecuted instantiation: exec.c:gc_check_possible_root Unexecuted instantiation: file.c:gc_check_possible_root Unexecuted instantiation: filestat.c:gc_check_possible_root Unexecuted instantiation: filters.c:gc_check_possible_root Unexecuted instantiation: flock_compat.c:gc_check_possible_root Unexecuted instantiation: formatted_print.c:gc_check_possible_root Unexecuted instantiation: fsock.c:gc_check_possible_root Unexecuted instantiation: ftok.c:gc_check_possible_root Unexecuted instantiation: ftp_fopen_wrapper.c:gc_check_possible_root Unexecuted instantiation: head.c:gc_check_possible_root Unexecuted instantiation: hrtime.c:gc_check_possible_root Unexecuted instantiation: html.c:gc_check_possible_root Unexecuted instantiation: http_fopen_wrapper.c:gc_check_possible_root Unexecuted instantiation: http.c:gc_check_possible_root Unexecuted instantiation: image.c:gc_check_possible_root Unexecuted instantiation: incomplete_class.c:gc_check_possible_root Unexecuted instantiation: info.c:gc_check_possible_root Unexecuted instantiation: iptc.c:gc_check_possible_root Unexecuted instantiation: levenshtein.c:gc_check_possible_root Unexecuted instantiation: link.c:gc_check_possible_root Unexecuted instantiation: mail.c:gc_check_possible_root Unexecuted instantiation: math.c:gc_check_possible_root Unexecuted instantiation: md5.c:gc_check_possible_root Unexecuted instantiation: metaphone.c:gc_check_possible_root Unexecuted instantiation: microtime.c:gc_check_possible_root Unexecuted instantiation: net.c:gc_check_possible_root Unexecuted instantiation: pack.c:gc_check_possible_root Unexecuted instantiation: pageinfo.c:gc_check_possible_root Unexecuted instantiation: password.c:gc_check_possible_root Unexecuted instantiation: php_fopen_wrapper.c:gc_check_possible_root Unexecuted instantiation: proc_open.c:gc_check_possible_root Unexecuted instantiation: quot_print.c:gc_check_possible_root Unexecuted instantiation: scanf.c:gc_check_possible_root Unexecuted instantiation: sha1.c:gc_check_possible_root Unexecuted instantiation: soundex.c:gc_check_possible_root Unexecuted instantiation: streamsfuncs.c:gc_check_possible_root Unexecuted instantiation: string.c:gc_check_possible_root Unexecuted instantiation: strnatcmp.c:gc_check_possible_root Unexecuted instantiation: syslog.c:gc_check_possible_root Unexecuted instantiation: type.c:gc_check_possible_root Unexecuted instantiation: uniqid.c:gc_check_possible_root Unexecuted instantiation: url_scanner_ex.c:gc_check_possible_root Unexecuted instantiation: url.c:gc_check_possible_root Unexecuted instantiation: user_filters.c:gc_check_possible_root Unexecuted instantiation: uuencode.c:gc_check_possible_root var_unserializer.c:gc_check_possible_root Line | Count | Source | 89 | 654k | { | 90 | 654k | if (EXPECTED(GC_TYPE_INFO(ref) == GC_REFERENCE)) { | 91 | 118k | zval *zv = &((zend_reference*)ref)->val; | 92 | | | 93 | 118k | if (!Z_COLLECTABLE_P(zv)) { | 94 | 6.08k | return; | 95 | 6.08k | } | 96 | 112k | ref = Z_COUNTED_P(zv); | 97 | 112k | } | 98 | 648k | if (UNEXPECTED(GC_MAY_LEAK(ref))) { | 99 | 315k | gc_possible_root(ref); | 100 | 315k | } | 101 | 648k | } |
var.c:gc_check_possible_root Line | Count | Source | 89 | 1.15k | { | 90 | 1.15k | if (EXPECTED(GC_TYPE_INFO(ref) == GC_REFERENCE)) { | 91 | 0 | zval *zv = &((zend_reference*)ref)->val; | 92 | |
| 93 | 0 | if (!Z_COLLECTABLE_P(zv)) { | 94 | 0 | return; | 95 | 0 | } | 96 | 0 | ref = Z_COUNTED_P(zv); | 97 | 0 | } | 98 | 1.15k | if (UNEXPECTED(GC_MAY_LEAK(ref))) { | 99 | 1.14k | gc_possible_root(ref); | 100 | 1.14k | } | 101 | 1.15k | } |
Unexecuted instantiation: versioning.c:gc_check_possible_root Unexecuted instantiation: crypt_sha256.c:gc_check_possible_root Unexecuted instantiation: crypt_sha512.c:gc_check_possible_root Unexecuted instantiation: php_crypt_r.c:gc_check_possible_root Unexecuted instantiation: php_uri.c:gc_check_possible_root Unexecuted instantiation: php_uri_common.c:gc_check_possible_root Unexecuted instantiation: php_uriparser.c:gc_check_possible_root Unexecuted instantiation: explicit_bzero.c:gc_check_possible_root Unexecuted instantiation: fopen_wrappers.c:gc_check_possible_root Unexecuted instantiation: getopt.c:gc_check_possible_root Unexecuted instantiation: main.c:gc_check_possible_root Unexecuted instantiation: network.c:gc_check_possible_root Unexecuted instantiation: output.c:gc_check_possible_root Unexecuted instantiation: php_content_types.c:gc_check_possible_root Unexecuted instantiation: php_ini_builder.c:gc_check_possible_root Unexecuted instantiation: php_ini.c:gc_check_possible_root Unexecuted instantiation: php_glob.c:gc_check_possible_root Unexecuted instantiation: php_odbc_utils.c:gc_check_possible_root Unexecuted instantiation: php_open_temporary_file.c:gc_check_possible_root Unexecuted instantiation: php_scandir.c:gc_check_possible_root Unexecuted instantiation: php_syslog.c:gc_check_possible_root Unexecuted instantiation: php_ticks.c:gc_check_possible_root Unexecuted instantiation: php_variables.c:gc_check_possible_root Unexecuted instantiation: reentrancy.c:gc_check_possible_root Unexecuted instantiation: rfc1867.c:gc_check_possible_root Unexecuted instantiation: safe_bcmp.c:gc_check_possible_root Unexecuted instantiation: SAPI.c:gc_check_possible_root Unexecuted instantiation: snprintf.c:gc_check_possible_root Unexecuted instantiation: spprintf.c:gc_check_possible_root Unexecuted instantiation: strlcat.c:gc_check_possible_root Unexecuted instantiation: strlcpy.c:gc_check_possible_root Unexecuted instantiation: cast.c:gc_check_possible_root Unexecuted instantiation: filter.c:gc_check_possible_root Unexecuted instantiation: glob_wrapper.c:gc_check_possible_root Unexecuted instantiation: memory.c:gc_check_possible_root Unexecuted instantiation: mmap.c:gc_check_possible_root Unexecuted instantiation: plain_wrapper.c:gc_check_possible_root Unexecuted instantiation: streams.c:gc_check_possible_root Unexecuted instantiation: transports.c:gc_check_possible_root Unexecuted instantiation: userspace.c:gc_check_possible_root Unexecuted instantiation: xp_socket.c:gc_check_possible_root Unexecuted instantiation: block_pass.c:gc_check_possible_root Unexecuted instantiation: compact_literals.c:gc_check_possible_root Unexecuted instantiation: compact_vars.c:gc_check_possible_root Unexecuted instantiation: dce.c:gc_check_possible_root Unexecuted instantiation: dfa_pass.c:gc_check_possible_root Unexecuted instantiation: escape_analysis.c:gc_check_possible_root Unexecuted instantiation: nop_removal.c:gc_check_possible_root Unexecuted instantiation: optimize_func_calls.c:gc_check_possible_root Unexecuted instantiation: optimize_temp_vars_5.c:gc_check_possible_root Unexecuted instantiation: pass1.c:gc_check_possible_root Unexecuted instantiation: pass3.c:gc_check_possible_root Unexecuted instantiation: sccp.c:gc_check_possible_root Unexecuted instantiation: scdf.c:gc_check_possible_root Unexecuted instantiation: zend_call_graph.c:gc_check_possible_root Unexecuted instantiation: zend_cfg.c:gc_check_possible_root Unexecuted instantiation: zend_dfg.c:gc_check_possible_root Unexecuted instantiation: zend_dump.c:gc_check_possible_root Unexecuted instantiation: zend_func_info.c:gc_check_possible_root Unexecuted instantiation: zend_inference.c:gc_check_possible_root Unexecuted instantiation: zend_optimizer.c:gc_check_possible_root Unexecuted instantiation: zend_ssa.c:gc_check_possible_root Unexecuted instantiation: zend_alloc.c:gc_check_possible_root Unexecuted instantiation: zend_API.c:gc_check_possible_root Unexecuted instantiation: zend_ast.c:gc_check_possible_root Unexecuted instantiation: zend_attributes.c:gc_check_possible_root Unexecuted instantiation: zend_builtin_functions.c:gc_check_possible_root Unexecuted instantiation: zend_call_stack.c:gc_check_possible_root Unexecuted instantiation: zend_closures.c:gc_check_possible_root Unexecuted instantiation: zend_compile.c:gc_check_possible_root Unexecuted instantiation: zend_constants.c:gc_check_possible_root Unexecuted instantiation: zend_cpuinfo.c:gc_check_possible_root Unexecuted instantiation: zend_default_classes.c:gc_check_possible_root Unexecuted instantiation: zend_dtrace.c:gc_check_possible_root Unexecuted instantiation: zend_enum.c:gc_check_possible_root Unexecuted instantiation: zend_exceptions.c:gc_check_possible_root zend_execute_API.c:gc_check_possible_root Line | Count | Source | 89 | 22.4k | { | 90 | 22.4k | if (EXPECTED(GC_TYPE_INFO(ref) == GC_REFERENCE)) { | 91 | 146 | zval *zv = &((zend_reference*)ref)->val; | 92 | | | 93 | 146 | if (!Z_COLLECTABLE_P(zv)) { | 94 | 93 | return; | 95 | 93 | } | 96 | 53 | ref = Z_COUNTED_P(zv); | 97 | 53 | } | 98 | 22.4k | if (UNEXPECTED(GC_MAY_LEAK(ref))) { | 99 | 3.67k | gc_possible_root(ref); | 100 | 3.67k | } | 101 | 22.4k | } |
zend_execute.c:gc_check_possible_root Line | Count | Source | 89 | 36.5k | { | 90 | 36.5k | if (EXPECTED(GC_TYPE_INFO(ref) == GC_REFERENCE)) { | 91 | 20.8k | zval *zv = &((zend_reference*)ref)->val; | 92 | | | 93 | 20.8k | if (!Z_COLLECTABLE_P(zv)) { | 94 | 13.4k | return; | 95 | 13.4k | } | 96 | 7.37k | ref = Z_COUNTED_P(zv); | 97 | 7.37k | } | 98 | 23.0k | if (UNEXPECTED(GC_MAY_LEAK(ref))) { | 99 | 11.8k | gc_possible_root(ref); | 100 | 11.8k | } | 101 | 23.0k | } |
Unexecuted instantiation: zend_extensions.c:gc_check_possible_root Unexecuted instantiation: zend_fibers.c:gc_check_possible_root Unexecuted instantiation: zend_float.c:gc_check_possible_root zend_gc.c:gc_check_possible_root Line | Count | Source | 89 | 299 | { | 90 | 299 | if (EXPECTED(GC_TYPE_INFO(ref) == GC_REFERENCE)) { | 91 | 84 | zval *zv = &((zend_reference*)ref)->val; | 92 | | | 93 | 84 | if (!Z_COLLECTABLE_P(zv)) { | 94 | 14 | return; | 95 | 14 | } | 96 | 70 | ref = Z_COUNTED_P(zv); | 97 | 70 | } | 98 | 285 | if (UNEXPECTED(GC_MAY_LEAK(ref))) { | 99 | 211 | gc_possible_root(ref); | 100 | 211 | } | 101 | 285 | } |
Unexecuted instantiation: zend_gdb.c:gc_check_possible_root zend_generators.c:gc_check_possible_root Line | Count | Source | 89 | 160 | { | 90 | 160 | if (EXPECTED(GC_TYPE_INFO(ref) == GC_REFERENCE)) { | 91 | 0 | zval *zv = &((zend_reference*)ref)->val; | 92 | |
| 93 | 0 | if (!Z_COLLECTABLE_P(zv)) { | 94 | 0 | return; | 95 | 0 | } | 96 | 0 | ref = Z_COUNTED_P(zv); | 97 | 0 | } | 98 | 160 | if (UNEXPECTED(GC_MAY_LEAK(ref))) { | 99 | 85 | gc_possible_root(ref); | 100 | 85 | } | 101 | 160 | } |
zend_hash.c:gc_check_possible_root Line | Count | Source | 89 | 1.21M | { | 90 | 1.21M | if (EXPECTED(GC_TYPE_INFO(ref) == GC_REFERENCE)) { | 91 | 329k | zval *zv = &((zend_reference*)ref)->val; | 92 | | | 93 | 329k | if (!Z_COLLECTABLE_P(zv)) { | 94 | 95.9k | return; | 95 | 95.9k | } | 96 | 233k | ref = Z_COUNTED_P(zv); | 97 | 233k | } | 98 | 1.11M | if (UNEXPECTED(GC_MAY_LEAK(ref))) { | 99 | 47.6k | gc_possible_root(ref); | 100 | 47.6k | } | 101 | 1.11M | } |
Unexecuted instantiation: zend_highlight.c:gc_check_possible_root Unexecuted instantiation: zend_hrtime.c:gc_check_possible_root Unexecuted instantiation: zend_inheritance.c:gc_check_possible_root Unexecuted instantiation: zend_ini_parser.c:gc_check_possible_root Unexecuted instantiation: zend_ini_scanner.c:gc_check_possible_root Unexecuted instantiation: zend_ini.c:gc_check_possible_root Unexecuted instantiation: zend_interfaces.c:gc_check_possible_root Unexecuted instantiation: zend_iterators.c:gc_check_possible_root Unexecuted instantiation: zend_language_parser.c:gc_check_possible_root Unexecuted instantiation: zend_language_scanner.c:gc_check_possible_root zend_lazy_objects.c:gc_check_possible_root Line | Count | Source | 89 | 1.69k | { | 90 | 1.69k | if (EXPECTED(GC_TYPE_INFO(ref) == GC_REFERENCE)) { | 91 | 16 | zval *zv = &((zend_reference*)ref)->val; | 92 | | | 93 | 16 | if (!Z_COLLECTABLE_P(zv)) { | 94 | 16 | return; | 95 | 16 | } | 96 | 0 | ref = Z_COUNTED_P(zv); | 97 | 0 | } | 98 | 1.68k | if (UNEXPECTED(GC_MAY_LEAK(ref))) { | 99 | 15 | gc_possible_root(ref); | 100 | 15 | } | 101 | 1.68k | } |
Unexecuted instantiation: zend_list.c:gc_check_possible_root Unexecuted instantiation: zend_llist.c:gc_check_possible_root Unexecuted instantiation: zend_multibyte.c:gc_check_possible_root Unexecuted instantiation: zend_object_handlers.c:gc_check_possible_root Unexecuted instantiation: zend_objects_API.c:gc_check_possible_root zend_objects.c:gc_check_possible_root Line | Count | Source | 89 | 244k | { | 90 | 244k | if (EXPECTED(GC_TYPE_INFO(ref) == GC_REFERENCE)) { | 91 | 16.4k | zval *zv = &((zend_reference*)ref)->val; | 92 | | | 93 | 16.4k | if (!Z_COLLECTABLE_P(zv)) { | 94 | 7.78k | return; | 95 | 7.78k | } | 96 | 8.68k | ref = Z_COUNTED_P(zv); | 97 | 8.68k | } | 98 | 236k | if (UNEXPECTED(GC_MAY_LEAK(ref))) { | 99 | 3.04k | gc_possible_root(ref); | 100 | 3.04k | } | 101 | 236k | } |
Unexecuted instantiation: zend_observer.c:gc_check_possible_root zend_opcode.c:gc_check_possible_root Line | Count | Source | 89 | 1.18k | { | 90 | 1.18k | if (EXPECTED(GC_TYPE_INFO(ref) == GC_REFERENCE)) { | 91 | 28 | zval *zv = &((zend_reference*)ref)->val; | 92 | | | 93 | 28 | if (!Z_COLLECTABLE_P(zv)) { | 94 | 24 | return; | 95 | 24 | } | 96 | 4 | ref = Z_COUNTED_P(zv); | 97 | 4 | } | 98 | 1.16k | if (UNEXPECTED(GC_MAY_LEAK(ref))) { | 99 | 46 | gc_possible_root(ref); | 100 | 46 | } | 101 | 1.16k | } |
zend_operators.c:gc_check_possible_root Line | Count | Source | 89 | 12.0k | { | 90 | 12.0k | if (EXPECTED(GC_TYPE_INFO(ref) == GC_REFERENCE)) { | 91 | 0 | zval *zv = &((zend_reference*)ref)->val; | 92 | |
| 93 | 0 | if (!Z_COLLECTABLE_P(zv)) { | 94 | 0 | return; | 95 | 0 | } | 96 | 0 | ref = Z_COUNTED_P(zv); | 97 | 0 | } | 98 | 12.0k | if (UNEXPECTED(GC_MAY_LEAK(ref))) { | 99 | 0 | gc_possible_root(ref); | 100 | 0 | } | 101 | 12.0k | } |
Unexecuted instantiation: zend_property_hooks.c:gc_check_possible_root Unexecuted instantiation: zend_ptr_stack.c:gc_check_possible_root Unexecuted instantiation: zend_signal.c:gc_check_possible_root Unexecuted instantiation: zend_smart_str.c:gc_check_possible_root Unexecuted instantiation: zend_sort.c:gc_check_possible_root Unexecuted instantiation: zend_stack.c:gc_check_possible_root Unexecuted instantiation: zend_stream.c:gc_check_possible_root Unexecuted instantiation: zend_string.c:gc_check_possible_root Unexecuted instantiation: zend_strtod.c:gc_check_possible_root Unexecuted instantiation: zend_system_id.c:gc_check_possible_root zend_variables.c:gc_check_possible_root Line | Count | Source | 89 | 1.69M | { | 90 | 1.69M | if (EXPECTED(GC_TYPE_INFO(ref) == GC_REFERENCE)) { | 91 | 15.1k | zval *zv = &((zend_reference*)ref)->val; | 92 | | | 93 | 15.1k | if (!Z_COLLECTABLE_P(zv)) { | 94 | 5.28k | return; | 95 | 5.28k | } | 96 | 9.82k | ref = Z_COUNTED_P(zv); | 97 | 9.82k | } | 98 | 1.69M | if (UNEXPECTED(GC_MAY_LEAK(ref))) { | 99 | 1.40M | gc_possible_root(ref); | 100 | 1.40M | } | 101 | 1.69M | } |
Unexecuted instantiation: zend_virtual_cwd.c:gc_check_possible_root Unexecuted instantiation: zend_vm_opcodes.c:gc_check_possible_root Unexecuted instantiation: zend_weakrefs.c:gc_check_possible_root Unexecuted instantiation: zend.c:gc_check_possible_root Unexecuted instantiation: internal_functions_cli.c:gc_check_possible_root Unexecuted instantiation: fuzzer-parser.c:gc_check_possible_root Unexecuted instantiation: fuzzer-sapi.c:gc_check_possible_root Unexecuted instantiation: fuzzer-tracing-jit.c:gc_check_possible_root Unexecuted instantiation: fuzzer-exif.c:gc_check_possible_root Unexecuted instantiation: fuzzer-unserialize.c:gc_check_possible_root Unexecuted instantiation: fuzzer-function-jit.c:gc_check_possible_root Unexecuted instantiation: fuzzer-json.c:gc_check_possible_root Unexecuted instantiation: fuzzer-unserializehash.c:gc_check_possible_root Unexecuted instantiation: fuzzer-execute.c:gc_check_possible_root |
102 | | |
103 | | static zend_always_inline void gc_check_possible_root_no_ref(zend_refcounted *ref) |
104 | 142k | { |
105 | 142k | ZEND_ASSERT(GC_TYPE_INFO(ref) != GC_REFERENCE); |
106 | 142k | if (UNEXPECTED(GC_MAY_LEAK(ref))) { |
107 | 5.18k | gc_possible_root(ref); |
108 | 5.18k | } |
109 | 142k | } Unexecuted instantiation: php_date.c:gc_check_possible_root_no_ref Unexecuted instantiation: astro.c:gc_check_possible_root_no_ref Unexecuted instantiation: dow.c:gc_check_possible_root_no_ref Unexecuted instantiation: parse_date.c:gc_check_possible_root_no_ref Unexecuted instantiation: parse_tz.c:gc_check_possible_root_no_ref Unexecuted instantiation: parse_posix.c:gc_check_possible_root_no_ref Unexecuted instantiation: timelib.c:gc_check_possible_root_no_ref Unexecuted instantiation: tm2unixtime.c:gc_check_possible_root_no_ref Unexecuted instantiation: unixtime2tm.c:gc_check_possible_root_no_ref Unexecuted instantiation: parse_iso_intervals.c:gc_check_possible_root_no_ref Unexecuted instantiation: interval.c:gc_check_possible_root_no_ref Unexecuted instantiation: php_pcre.c:gc_check_possible_root_no_ref Unexecuted instantiation: exif.c:gc_check_possible_root_no_ref Unexecuted instantiation: hash_adler32.c:gc_check_possible_root_no_ref Unexecuted instantiation: hash_crc32.c:gc_check_possible_root_no_ref Unexecuted instantiation: hash_fnv.c:gc_check_possible_root_no_ref Unexecuted instantiation: hash_gost.c:gc_check_possible_root_no_ref Unexecuted instantiation: hash_haval.c:gc_check_possible_root_no_ref Unexecuted instantiation: hash_joaat.c:gc_check_possible_root_no_ref Unexecuted instantiation: hash_md.c:gc_check_possible_root_no_ref Unexecuted instantiation: hash_murmur.c:gc_check_possible_root_no_ref Unexecuted instantiation: hash_ripemd.c:gc_check_possible_root_no_ref Unexecuted instantiation: hash_sha_ni.c:gc_check_possible_root_no_ref Unexecuted instantiation: hash_sha_sse2.c:gc_check_possible_root_no_ref Unexecuted instantiation: hash_sha.c:gc_check_possible_root_no_ref Unexecuted instantiation: hash_sha3.c:gc_check_possible_root_no_ref Unexecuted instantiation: hash_snefru.c:gc_check_possible_root_no_ref Unexecuted instantiation: hash_tiger.c:gc_check_possible_root_no_ref Unexecuted instantiation: hash_whirlpool.c:gc_check_possible_root_no_ref Unexecuted instantiation: hash_xxhash.c:gc_check_possible_root_no_ref Unexecuted instantiation: hash.c:gc_check_possible_root_no_ref Unexecuted instantiation: json_encoder.c:gc_check_possible_root_no_ref Unexecuted instantiation: json_parser.tab.c:gc_check_possible_root_no_ref Unexecuted instantiation: json_scanner.c:gc_check_possible_root_no_ref Unexecuted instantiation: json.c:gc_check_possible_root_no_ref Unexecuted instantiation: php_lexbor.c:gc_check_possible_root_no_ref Unexecuted instantiation: csprng.c:gc_check_possible_root_no_ref Unexecuted instantiation: engine_mt19937.c:gc_check_possible_root_no_ref Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:gc_check_possible_root_no_ref Unexecuted instantiation: engine_secure.c:gc_check_possible_root_no_ref Unexecuted instantiation: engine_user.c:gc_check_possible_root_no_ref Unexecuted instantiation: engine_xoshiro256starstar.c:gc_check_possible_root_no_ref Unexecuted instantiation: gammasection.c:gc_check_possible_root_no_ref Unexecuted instantiation: random.c:gc_check_possible_root_no_ref Unexecuted instantiation: randomizer.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_utils.c:gc_check_possible_root_no_ref Unexecuted instantiation: php_reflection.c:gc_check_possible_root_no_ref Unexecuted instantiation: php_spl.c:gc_check_possible_root_no_ref Unexecuted instantiation: spl_array.c:gc_check_possible_root_no_ref Unexecuted instantiation: spl_directory.c:gc_check_possible_root_no_ref Unexecuted instantiation: spl_dllist.c:gc_check_possible_root_no_ref Unexecuted instantiation: spl_exceptions.c:gc_check_possible_root_no_ref Unexecuted instantiation: spl_fixedarray.c:gc_check_possible_root_no_ref Unexecuted instantiation: spl_functions.c:gc_check_possible_root_no_ref Unexecuted instantiation: spl_heap.c:gc_check_possible_root_no_ref Unexecuted instantiation: spl_iterators.c:gc_check_possible_root_no_ref Unexecuted instantiation: spl_observer.c:gc_check_possible_root_no_ref Unexecuted instantiation: array.c:gc_check_possible_root_no_ref Unexecuted instantiation: assert.c:gc_check_possible_root_no_ref Unexecuted instantiation: base64.c:gc_check_possible_root_no_ref Unexecuted instantiation: basic_functions.c:gc_check_possible_root_no_ref Unexecuted instantiation: browscap.c:gc_check_possible_root_no_ref Unexecuted instantiation: crc32_x86.c:gc_check_possible_root_no_ref Unexecuted instantiation: crc32.c:gc_check_possible_root_no_ref Unexecuted instantiation: credits.c:gc_check_possible_root_no_ref Unexecuted instantiation: crypt.c:gc_check_possible_root_no_ref Unexecuted instantiation: css.c:gc_check_possible_root_no_ref Unexecuted instantiation: datetime.c:gc_check_possible_root_no_ref Unexecuted instantiation: dir.c:gc_check_possible_root_no_ref Unexecuted instantiation: dl.c:gc_check_possible_root_no_ref Unexecuted instantiation: dns.c:gc_check_possible_root_no_ref Unexecuted instantiation: exec.c:gc_check_possible_root_no_ref Unexecuted instantiation: file.c:gc_check_possible_root_no_ref Unexecuted instantiation: filestat.c:gc_check_possible_root_no_ref Unexecuted instantiation: filters.c:gc_check_possible_root_no_ref Unexecuted instantiation: flock_compat.c:gc_check_possible_root_no_ref Unexecuted instantiation: formatted_print.c:gc_check_possible_root_no_ref Unexecuted instantiation: fsock.c:gc_check_possible_root_no_ref Unexecuted instantiation: ftok.c:gc_check_possible_root_no_ref Unexecuted instantiation: ftp_fopen_wrapper.c:gc_check_possible_root_no_ref Unexecuted instantiation: head.c:gc_check_possible_root_no_ref Unexecuted instantiation: hrtime.c:gc_check_possible_root_no_ref Unexecuted instantiation: html.c:gc_check_possible_root_no_ref Unexecuted instantiation: http_fopen_wrapper.c:gc_check_possible_root_no_ref Unexecuted instantiation: http.c:gc_check_possible_root_no_ref Unexecuted instantiation: image.c:gc_check_possible_root_no_ref Unexecuted instantiation: incomplete_class.c:gc_check_possible_root_no_ref Unexecuted instantiation: info.c:gc_check_possible_root_no_ref Unexecuted instantiation: iptc.c:gc_check_possible_root_no_ref Unexecuted instantiation: levenshtein.c:gc_check_possible_root_no_ref Unexecuted instantiation: link.c:gc_check_possible_root_no_ref Unexecuted instantiation: mail.c:gc_check_possible_root_no_ref Unexecuted instantiation: math.c:gc_check_possible_root_no_ref Unexecuted instantiation: md5.c:gc_check_possible_root_no_ref Unexecuted instantiation: metaphone.c:gc_check_possible_root_no_ref Unexecuted instantiation: microtime.c:gc_check_possible_root_no_ref Unexecuted instantiation: net.c:gc_check_possible_root_no_ref Unexecuted instantiation: pack.c:gc_check_possible_root_no_ref Unexecuted instantiation: pageinfo.c:gc_check_possible_root_no_ref Unexecuted instantiation: password.c:gc_check_possible_root_no_ref Unexecuted instantiation: php_fopen_wrapper.c:gc_check_possible_root_no_ref Unexecuted instantiation: proc_open.c:gc_check_possible_root_no_ref Unexecuted instantiation: quot_print.c:gc_check_possible_root_no_ref Unexecuted instantiation: scanf.c:gc_check_possible_root_no_ref Unexecuted instantiation: sha1.c:gc_check_possible_root_no_ref Unexecuted instantiation: soundex.c:gc_check_possible_root_no_ref Unexecuted instantiation: streamsfuncs.c:gc_check_possible_root_no_ref Unexecuted instantiation: string.c:gc_check_possible_root_no_ref Unexecuted instantiation: strnatcmp.c:gc_check_possible_root_no_ref Unexecuted instantiation: syslog.c:gc_check_possible_root_no_ref Unexecuted instantiation: type.c:gc_check_possible_root_no_ref Unexecuted instantiation: uniqid.c:gc_check_possible_root_no_ref Unexecuted instantiation: url_scanner_ex.c:gc_check_possible_root_no_ref Unexecuted instantiation: url.c:gc_check_possible_root_no_ref Unexecuted instantiation: user_filters.c:gc_check_possible_root_no_ref Unexecuted instantiation: uuencode.c:gc_check_possible_root_no_ref Unexecuted instantiation: var_unserializer.c:gc_check_possible_root_no_ref Unexecuted instantiation: var.c:gc_check_possible_root_no_ref Unexecuted instantiation: versioning.c:gc_check_possible_root_no_ref Unexecuted instantiation: crypt_sha256.c:gc_check_possible_root_no_ref Unexecuted instantiation: crypt_sha512.c:gc_check_possible_root_no_ref Unexecuted instantiation: php_crypt_r.c:gc_check_possible_root_no_ref Unexecuted instantiation: php_uri.c:gc_check_possible_root_no_ref Unexecuted instantiation: php_uri_common.c:gc_check_possible_root_no_ref Unexecuted instantiation: php_uriparser.c:gc_check_possible_root_no_ref Unexecuted instantiation: explicit_bzero.c:gc_check_possible_root_no_ref Unexecuted instantiation: fopen_wrappers.c:gc_check_possible_root_no_ref Unexecuted instantiation: getopt.c:gc_check_possible_root_no_ref Unexecuted instantiation: main.c:gc_check_possible_root_no_ref Unexecuted instantiation: network.c:gc_check_possible_root_no_ref Unexecuted instantiation: output.c:gc_check_possible_root_no_ref Unexecuted instantiation: php_content_types.c:gc_check_possible_root_no_ref Unexecuted instantiation: php_ini_builder.c:gc_check_possible_root_no_ref Unexecuted instantiation: php_ini.c:gc_check_possible_root_no_ref Unexecuted instantiation: php_glob.c:gc_check_possible_root_no_ref Unexecuted instantiation: php_odbc_utils.c:gc_check_possible_root_no_ref Unexecuted instantiation: php_open_temporary_file.c:gc_check_possible_root_no_ref Unexecuted instantiation: php_scandir.c:gc_check_possible_root_no_ref Unexecuted instantiation: php_syslog.c:gc_check_possible_root_no_ref Unexecuted instantiation: php_ticks.c:gc_check_possible_root_no_ref Unexecuted instantiation: php_variables.c:gc_check_possible_root_no_ref Unexecuted instantiation: reentrancy.c:gc_check_possible_root_no_ref Unexecuted instantiation: rfc1867.c:gc_check_possible_root_no_ref Unexecuted instantiation: safe_bcmp.c:gc_check_possible_root_no_ref Unexecuted instantiation: SAPI.c:gc_check_possible_root_no_ref Unexecuted instantiation: snprintf.c:gc_check_possible_root_no_ref Unexecuted instantiation: spprintf.c:gc_check_possible_root_no_ref Unexecuted instantiation: strlcat.c:gc_check_possible_root_no_ref Unexecuted instantiation: strlcpy.c:gc_check_possible_root_no_ref Unexecuted instantiation: cast.c:gc_check_possible_root_no_ref Unexecuted instantiation: filter.c:gc_check_possible_root_no_ref Unexecuted instantiation: glob_wrapper.c:gc_check_possible_root_no_ref Unexecuted instantiation: memory.c:gc_check_possible_root_no_ref Unexecuted instantiation: mmap.c:gc_check_possible_root_no_ref Unexecuted instantiation: plain_wrapper.c:gc_check_possible_root_no_ref Unexecuted instantiation: streams.c:gc_check_possible_root_no_ref Unexecuted instantiation: transports.c:gc_check_possible_root_no_ref Unexecuted instantiation: userspace.c:gc_check_possible_root_no_ref Unexecuted instantiation: xp_socket.c:gc_check_possible_root_no_ref Unexecuted instantiation: block_pass.c:gc_check_possible_root_no_ref Unexecuted instantiation: compact_literals.c:gc_check_possible_root_no_ref Unexecuted instantiation: compact_vars.c:gc_check_possible_root_no_ref Unexecuted instantiation: dce.c:gc_check_possible_root_no_ref Unexecuted instantiation: dfa_pass.c:gc_check_possible_root_no_ref Unexecuted instantiation: escape_analysis.c:gc_check_possible_root_no_ref Unexecuted instantiation: nop_removal.c:gc_check_possible_root_no_ref Unexecuted instantiation: optimize_func_calls.c:gc_check_possible_root_no_ref Unexecuted instantiation: optimize_temp_vars_5.c:gc_check_possible_root_no_ref Unexecuted instantiation: pass1.c:gc_check_possible_root_no_ref Unexecuted instantiation: pass3.c:gc_check_possible_root_no_ref Unexecuted instantiation: sccp.c:gc_check_possible_root_no_ref Unexecuted instantiation: scdf.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_call_graph.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_cfg.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_dfg.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_dump.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_func_info.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_inference.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_optimizer.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_ssa.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_alloc.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_API.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_ast.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_attributes.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_builtin_functions.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_call_stack.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_closures.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_compile.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_constants.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_cpuinfo.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_default_classes.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_dtrace.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_enum.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_exceptions.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_execute_API.c:gc_check_possible_root_no_ref zend_execute.c:gc_check_possible_root_no_ref Line | Count | Source | 104 | 141k | { | 105 | 141k | ZEND_ASSERT(GC_TYPE_INFO(ref) != GC_REFERENCE); | 106 | 141k | if (UNEXPECTED(GC_MAY_LEAK(ref))) { | 107 | 5.14k | gc_possible_root(ref); | 108 | 5.14k | } | 109 | 141k | } |
Unexecuted instantiation: zend_extensions.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_fibers.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_float.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_gc.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_gdb.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_generators.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_hash.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_highlight.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_hrtime.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_inheritance.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_ini_parser.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_ini_scanner.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_ini.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_interfaces.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_iterators.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_language_parser.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_language_scanner.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_lazy_objects.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_list.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_llist.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_multibyte.c:gc_check_possible_root_no_ref zend_object_handlers.c:gc_check_possible_root_no_ref Line | Count | Source | 104 | 1.24k | { | 105 | 1.24k | ZEND_ASSERT(GC_TYPE_INFO(ref) != GC_REFERENCE); | 106 | 1.24k | if (UNEXPECTED(GC_MAY_LEAK(ref))) { | 107 | 40 | gc_possible_root(ref); | 108 | 40 | } | 109 | 1.24k | } |
Unexecuted instantiation: zend_objects_API.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_objects.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_observer.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_opcode.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_operators.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_property_hooks.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_ptr_stack.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_signal.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_smart_str.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_sort.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_stack.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_stream.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_string.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_strtod.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_system_id.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_variables.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_virtual_cwd.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_vm_opcodes.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend_weakrefs.c:gc_check_possible_root_no_ref Unexecuted instantiation: zend.c:gc_check_possible_root_no_ref Unexecuted instantiation: internal_functions_cli.c:gc_check_possible_root_no_ref Unexecuted instantiation: fuzzer-parser.c:gc_check_possible_root_no_ref Unexecuted instantiation: fuzzer-sapi.c:gc_check_possible_root_no_ref Unexecuted instantiation: fuzzer-tracing-jit.c:gc_check_possible_root_no_ref Unexecuted instantiation: fuzzer-exif.c:gc_check_possible_root_no_ref Unexecuted instantiation: fuzzer-unserialize.c:gc_check_possible_root_no_ref Unexecuted instantiation: fuzzer-function-jit.c:gc_check_possible_root_no_ref Unexecuted instantiation: fuzzer-json.c:gc_check_possible_root_no_ref Unexecuted instantiation: fuzzer-unserializehash.c:gc_check_possible_root_no_ref Unexecuted instantiation: fuzzer-execute.c:gc_check_possible_root_no_ref |
110 | | |
111 | | /* These APIs can be used to simplify object get_gc implementations |
112 | | * over heterogeneous structures. See zend_generator_get_gc() for |
113 | | * a usage example. */ |
114 | | |
115 | | typedef struct { |
116 | | zval *cur; |
117 | | zval *end; |
118 | | zval *start; |
119 | | } zend_get_gc_buffer; |
120 | | |
121 | | ZEND_API zend_get_gc_buffer *zend_get_gc_buffer_create(void); |
122 | | ZEND_API void zend_get_gc_buffer_grow(zend_get_gc_buffer *gc_buffer); |
123 | | |
124 | | static zend_always_inline void zend_get_gc_buffer_add_zval( |
125 | 49.9k | zend_get_gc_buffer *gc_buffer, zval *zv) { |
126 | 49.9k | if (Z_REFCOUNTED_P(zv)) { |
127 | 6.85k | if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) { |
128 | 607 | zend_get_gc_buffer_grow(gc_buffer); |
129 | 607 | } |
130 | 6.85k | ZVAL_COPY_VALUE(gc_buffer->cur, zv); |
131 | 6.85k | gc_buffer->cur++; |
132 | 6.85k | } |
133 | 49.9k | } Unexecuted instantiation: php_date.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: astro.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: dow.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: parse_date.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: parse_tz.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: parse_posix.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: timelib.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: tm2unixtime.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: unixtime2tm.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: parse_iso_intervals.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: interval.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: php_pcre.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: exif.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: hash_adler32.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: hash_crc32.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: hash_fnv.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: hash_gost.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: hash_haval.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: hash_joaat.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: hash_md.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: hash_murmur.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: hash_ripemd.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: hash_sha_ni.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: hash_sha_sse2.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: hash_sha.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: hash_sha3.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: hash_snefru.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: hash_tiger.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: hash_whirlpool.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: hash_xxhash.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: hash.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: json_encoder.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: json_parser.tab.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: json_scanner.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: json.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: php_lexbor.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: csprng.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: engine_mt19937.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: engine_secure.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: engine_user.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: engine_xoshiro256starstar.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: gammasection.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: random.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: randomizer.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_utils.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: php_reflection.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: php_spl.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: spl_array.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: spl_directory.c:zend_get_gc_buffer_add_zval spl_dllist.c:zend_get_gc_buffer_add_zval Line | Count | Source | 125 | 111 | zend_get_gc_buffer *gc_buffer, zval *zv) { | 126 | 111 | if (Z_REFCOUNTED_P(zv)) { | 127 | 108 | if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) { | 128 | 17 | zend_get_gc_buffer_grow(gc_buffer); | 129 | 17 | } | 130 | 108 | ZVAL_COPY_VALUE(gc_buffer->cur, zv); | 131 | 108 | gc_buffer->cur++; | 132 | 108 | } | 133 | 111 | } |
Unexecuted instantiation: spl_exceptions.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: spl_fixedarray.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: spl_functions.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: spl_heap.c:zend_get_gc_buffer_add_zval spl_iterators.c:zend_get_gc_buffer_add_zval Line | Count | Source | 125 | 9.28k | zend_get_gc_buffer *gc_buffer, zval *zv) { | 126 | 9.28k | if (Z_REFCOUNTED_P(zv)) { | 127 | 223 | if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) { | 128 | 5 | zend_get_gc_buffer_grow(gc_buffer); | 129 | 5 | } | 130 | 223 | ZVAL_COPY_VALUE(gc_buffer->cur, zv); | 131 | 223 | gc_buffer->cur++; | 132 | 223 | } | 133 | 9.28k | } |
spl_observer.c:zend_get_gc_buffer_add_zval Line | Count | Source | 125 | 19.7k | zend_get_gc_buffer *gc_buffer, zval *zv) { | 126 | 19.7k | if (Z_REFCOUNTED_P(zv)) { | 127 | 1.36k | if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) { | 128 | 0 | zend_get_gc_buffer_grow(gc_buffer); | 129 | 0 | } | 130 | 1.36k | ZVAL_COPY_VALUE(gc_buffer->cur, zv); | 131 | 1.36k | gc_buffer->cur++; | 132 | 1.36k | } | 133 | 19.7k | } |
Unexecuted instantiation: array.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: assert.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: base64.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: basic_functions.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: browscap.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: crc32_x86.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: crc32.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: credits.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: crypt.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: css.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: datetime.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: dir.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: dl.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: dns.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: exec.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: file.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: filestat.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: filters.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: flock_compat.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: formatted_print.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: fsock.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: ftok.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: ftp_fopen_wrapper.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: head.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: hrtime.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: html.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: http_fopen_wrapper.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: http.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: image.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: incomplete_class.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: info.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: iptc.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: levenshtein.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: link.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: mail.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: math.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: md5.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: metaphone.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: microtime.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: net.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: pack.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: pageinfo.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: password.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: php_fopen_wrapper.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: proc_open.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: quot_print.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: scanf.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: sha1.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: soundex.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: streamsfuncs.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: string.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: strnatcmp.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: syslog.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: type.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: uniqid.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: url_scanner_ex.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: url.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: user_filters.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: uuencode.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: var_unserializer.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: var.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: versioning.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: crypt_sha256.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: crypt_sha512.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: php_crypt_r.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: php_uri.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: php_uri_common.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: php_uriparser.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: explicit_bzero.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: fopen_wrappers.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: getopt.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: main.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: network.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: output.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: php_content_types.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: php_ini_builder.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: php_ini.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: php_glob.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: php_odbc_utils.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: php_open_temporary_file.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: php_scandir.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: php_syslog.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: php_ticks.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: php_variables.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: reentrancy.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: rfc1867.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: safe_bcmp.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: SAPI.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: snprintf.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: spprintf.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: strlcat.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: strlcpy.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: cast.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: filter.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: glob_wrapper.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: memory.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: mmap.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: plain_wrapper.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: streams.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: transports.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: userspace.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: xp_socket.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: block_pass.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: compact_literals.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: compact_vars.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: dce.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: dfa_pass.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: escape_analysis.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: nop_removal.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: optimize_func_calls.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: optimize_temp_vars_5.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: pass1.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: pass3.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: sccp.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: scdf.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_call_graph.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_cfg.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_dfg.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_dump.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_func_info.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_inference.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_optimizer.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_ssa.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_alloc.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_API.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_ast.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_attributes.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_builtin_functions.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_call_stack.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_closures.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_compile.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_constants.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_cpuinfo.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_default_classes.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_dtrace.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_enum.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_exceptions.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_execute_API.c:zend_get_gc_buffer_add_zval zend_execute.c:zend_get_gc_buffer_add_zval Line | Count | Source | 125 | 4.27k | zend_get_gc_buffer *gc_buffer, zval *zv) { | 126 | 4.27k | if (Z_REFCOUNTED_P(zv)) { | 127 | 2.78k | if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) { | 128 | 131 | zend_get_gc_buffer_grow(gc_buffer); | 129 | 131 | } | 130 | 2.78k | ZVAL_COPY_VALUE(gc_buffer->cur, zv); | 131 | 2.78k | gc_buffer->cur++; | 132 | 2.78k | } | 133 | 4.27k | } |
Unexecuted instantiation: zend_extensions.c:zend_get_gc_buffer_add_zval zend_fibers.c:zend_get_gc_buffer_add_zval Line | Count | Source | 125 | 4.73k | zend_get_gc_buffer *gc_buffer, zval *zv) { | 126 | 4.73k | if (Z_REFCOUNTED_P(zv)) { | 127 | 1.30k | if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) { | 128 | 429 | zend_get_gc_buffer_grow(gc_buffer); | 129 | 429 | } | 130 | 1.30k | ZVAL_COPY_VALUE(gc_buffer->cur, zv); | 131 | 1.30k | gc_buffer->cur++; | 132 | 1.30k | } | 133 | 4.73k | } |
Unexecuted instantiation: zend_float.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_gc.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_gdb.c:zend_get_gc_buffer_add_zval zend_generators.c:zend_get_gc_buffer_add_zval Line | Count | Source | 125 | 9.62k | zend_get_gc_buffer *gc_buffer, zval *zv) { | 126 | 9.62k | if (Z_REFCOUNTED_P(zv)) { | 127 | 170 | if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) { | 128 | 25 | zend_get_gc_buffer_grow(gc_buffer); | 129 | 25 | } | 130 | 170 | ZVAL_COPY_VALUE(gc_buffer->cur, zv); | 131 | 170 | gc_buffer->cur++; | 132 | 170 | } | 133 | 9.62k | } |
Unexecuted instantiation: zend_hash.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_highlight.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_hrtime.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_inheritance.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_ini_parser.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_ini_scanner.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_ini.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_interfaces.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_iterators.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_language_parser.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_language_scanner.c:zend_get_gc_buffer_add_zval zend_lazy_objects.c:zend_get_gc_buffer_add_zval Line | Count | Source | 125 | 2.13k | zend_get_gc_buffer *gc_buffer, zval *zv) { | 126 | 2.13k | if (Z_REFCOUNTED_P(zv)) { | 127 | 836 | if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) { | 128 | 0 | zend_get_gc_buffer_grow(gc_buffer); | 129 | 0 | } | 130 | 836 | ZVAL_COPY_VALUE(gc_buffer->cur, zv); | 131 | 836 | gc_buffer->cur++; | 132 | 836 | } | 133 | 2.13k | } |
Unexecuted instantiation: zend_list.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_llist.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_multibyte.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_object_handlers.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_objects_API.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_objects.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_observer.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_opcode.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_operators.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_property_hooks.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_ptr_stack.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_signal.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_smart_str.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_sort.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_stack.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_stream.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_string.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_strtod.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_system_id.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_variables.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_virtual_cwd.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: zend_vm_opcodes.c:zend_get_gc_buffer_add_zval zend_weakrefs.c:zend_get_gc_buffer_add_zval Line | Count | Source | 125 | 66 | zend_get_gc_buffer *gc_buffer, zval *zv) { | 126 | 66 | if (Z_REFCOUNTED_P(zv)) { | 127 | 66 | if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) { | 128 | 0 | zend_get_gc_buffer_grow(gc_buffer); | 129 | 0 | } | 130 | 66 | ZVAL_COPY_VALUE(gc_buffer->cur, zv); | 131 | 66 | gc_buffer->cur++; | 132 | 66 | } | 133 | 66 | } |
Unexecuted instantiation: zend.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: internal_functions_cli.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: fuzzer-parser.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: fuzzer-sapi.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: fuzzer-tracing-jit.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: fuzzer-exif.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: fuzzer-unserialize.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: fuzzer-function-jit.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: fuzzer-json.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: fuzzer-unserializehash.c:zend_get_gc_buffer_add_zval Unexecuted instantiation: fuzzer-execute.c:zend_get_gc_buffer_add_zval |
134 | | |
135 | | static zend_always_inline void zend_get_gc_buffer_add_obj( |
136 | 26.3k | zend_get_gc_buffer *gc_buffer, zend_object *obj) { |
137 | 26.3k | ZEND_ASSERT(obj != NULL); |
138 | | |
139 | 26.3k | if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) { |
140 | 1.19k | zend_get_gc_buffer_grow(gc_buffer); |
141 | 1.19k | } |
142 | 26.3k | ZVAL_OBJ(gc_buffer->cur, obj); |
143 | 26.3k | gc_buffer->cur++; |
144 | 26.3k | } Unexecuted instantiation: php_date.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: astro.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: dow.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: parse_date.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: parse_tz.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: parse_posix.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: timelib.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: tm2unixtime.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: unixtime2tm.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: parse_iso_intervals.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: interval.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: php_pcre.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: exif.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: hash_adler32.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: hash_crc32.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: hash_fnv.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: hash_gost.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: hash_haval.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: hash_joaat.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: hash_md.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: hash_murmur.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: hash_ripemd.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: hash_sha_ni.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: hash_sha_sse2.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: hash_sha.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: hash_sha3.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: hash_snefru.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: hash_tiger.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: hash_whirlpool.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: hash_xxhash.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: hash.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: json_encoder.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: json_parser.tab.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: json_scanner.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: json.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: php_lexbor.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: csprng.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: engine_mt19937.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: engine_secure.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: engine_user.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: engine_xoshiro256starstar.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: gammasection.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: random.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: randomizer.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_utils.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: php_reflection.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: php_spl.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: spl_array.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: spl_directory.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: spl_dllist.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: spl_exceptions.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: spl_fixedarray.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: spl_functions.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: spl_heap.c:zend_get_gc_buffer_add_obj spl_iterators.c:zend_get_gc_buffer_add_obj Line | Count | Source | 136 | 549 | zend_get_gc_buffer *gc_buffer, zend_object *obj) { | 137 | 549 | ZEND_ASSERT(obj != NULL); | 138 | | | 139 | 549 | if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) { | 140 | 56 | zend_get_gc_buffer_grow(gc_buffer); | 141 | 56 | } | 142 | 549 | ZVAL_OBJ(gc_buffer->cur, obj); | 143 | 549 | gc_buffer->cur++; | 144 | 549 | } |
spl_observer.c:zend_get_gc_buffer_add_obj Line | Count | Source | 136 | 19.7k | zend_get_gc_buffer *gc_buffer, zend_object *obj) { | 137 | 19.7k | ZEND_ASSERT(obj != NULL); | 138 | | | 139 | 19.7k | if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) { | 140 | 142 | zend_get_gc_buffer_grow(gc_buffer); | 141 | 142 | } | 142 | 19.7k | ZVAL_OBJ(gc_buffer->cur, obj); | 143 | 19.7k | gc_buffer->cur++; | 144 | 19.7k | } |
Unexecuted instantiation: array.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: assert.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: base64.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: basic_functions.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: browscap.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: crc32_x86.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: crc32.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: credits.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: crypt.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: css.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: datetime.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: dir.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: dl.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: dns.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: exec.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: file.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: filestat.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: filters.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: flock_compat.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: formatted_print.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: fsock.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: ftok.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: ftp_fopen_wrapper.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: head.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: hrtime.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: html.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: http_fopen_wrapper.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: http.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: image.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: incomplete_class.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: info.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: iptc.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: levenshtein.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: link.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: mail.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: math.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: md5.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: metaphone.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: microtime.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: net.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: pack.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: pageinfo.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: password.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: php_fopen_wrapper.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: proc_open.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: quot_print.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: scanf.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: sha1.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: soundex.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: streamsfuncs.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: string.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: strnatcmp.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: syslog.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: type.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: uniqid.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: url_scanner_ex.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: url.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: user_filters.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: uuencode.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: var_unserializer.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: var.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: versioning.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: crypt_sha256.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: crypt_sha512.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: php_crypt_r.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: php_uri.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: php_uri_common.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: php_uriparser.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: explicit_bzero.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: fopen_wrappers.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: getopt.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: main.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: network.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: output.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: php_content_types.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: php_ini_builder.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: php_ini.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: php_glob.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: php_odbc_utils.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: php_open_temporary_file.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: php_scandir.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: php_syslog.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: php_ticks.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: php_variables.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: reentrancy.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: rfc1867.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: safe_bcmp.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: SAPI.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: snprintf.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: spprintf.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: strlcat.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: strlcpy.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: cast.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: filter.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: glob_wrapper.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: memory.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: mmap.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: plain_wrapper.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: streams.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: transports.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: userspace.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: xp_socket.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: block_pass.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: compact_literals.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: compact_vars.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: dce.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: dfa_pass.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: escape_analysis.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: nop_removal.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: optimize_func_calls.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: optimize_temp_vars_5.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: pass1.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: pass3.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: sccp.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: scdf.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_call_graph.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_cfg.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_dfg.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_dump.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_func_info.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_inference.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_optimizer.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_ssa.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_alloc.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_API.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_ast.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_attributes.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_builtin_functions.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_call_stack.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_closures.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_compile.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_constants.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_cpuinfo.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_default_classes.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_dtrace.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_enum.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_exceptions.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_execute_API.c:zend_get_gc_buffer_add_obj zend_execute.c:zend_get_gc_buffer_add_obj Line | Count | Source | 136 | 1.74k | zend_get_gc_buffer *gc_buffer, zend_object *obj) { | 137 | 1.74k | ZEND_ASSERT(obj != NULL); | 138 | | | 139 | 1.74k | if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) { | 140 | 85 | zend_get_gc_buffer_grow(gc_buffer); | 141 | 85 | } | 142 | 1.74k | ZVAL_OBJ(gc_buffer->cur, obj); | 143 | 1.74k | gc_buffer->cur++; | 144 | 1.74k | } |
Unexecuted instantiation: zend_extensions.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_fibers.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_float.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_gc.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_gdb.c:zend_get_gc_buffer_add_obj zend_generators.c:zend_get_gc_buffer_add_obj Line | Count | Source | 136 | 1.06k | zend_get_gc_buffer *gc_buffer, zend_object *obj) { | 137 | 1.06k | ZEND_ASSERT(obj != NULL); | 138 | | | 139 | 1.06k | if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) { | 140 | 70 | zend_get_gc_buffer_grow(gc_buffer); | 141 | 70 | } | 142 | 1.06k | ZVAL_OBJ(gc_buffer->cur, obj); | 143 | 1.06k | gc_buffer->cur++; | 144 | 1.06k | } |
Unexecuted instantiation: zend_hash.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_highlight.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_hrtime.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_inheritance.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_ini_parser.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_ini_scanner.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_ini.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_interfaces.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_iterators.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_language_parser.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_language_scanner.c:zend_get_gc_buffer_add_obj zend_lazy_objects.c:zend_get_gc_buffer_add_obj Line | Count | Source | 136 | 1.83k | zend_get_gc_buffer *gc_buffer, zend_object *obj) { | 137 | 1.83k | ZEND_ASSERT(obj != NULL); | 138 | | | 139 | 1.83k | if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) { | 140 | 840 | zend_get_gc_buffer_grow(gc_buffer); | 141 | 840 | } | 142 | 1.83k | ZVAL_OBJ(gc_buffer->cur, obj); | 143 | 1.83k | gc_buffer->cur++; | 144 | 1.83k | } |
Unexecuted instantiation: zend_list.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_llist.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_multibyte.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_object_handlers.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_objects_API.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_objects.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_observer.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_opcode.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_operators.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_property_hooks.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_ptr_stack.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_signal.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_smart_str.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_sort.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_stack.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_stream.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_string.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_strtod.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_system_id.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_variables.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_virtual_cwd.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: zend_vm_opcodes.c:zend_get_gc_buffer_add_obj zend_weakrefs.c:zend_get_gc_buffer_add_obj Line | Count | Source | 136 | 1.41k | zend_get_gc_buffer *gc_buffer, zend_object *obj) { | 137 | 1.41k | ZEND_ASSERT(obj != NULL); | 138 | | | 139 | 1.41k | if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) { | 140 | 0 | zend_get_gc_buffer_grow(gc_buffer); | 141 | 0 | } | 142 | 1.41k | ZVAL_OBJ(gc_buffer->cur, obj); | 143 | 1.41k | gc_buffer->cur++; | 144 | 1.41k | } |
Unexecuted instantiation: zend.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: internal_functions_cli.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: fuzzer-parser.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: fuzzer-sapi.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: fuzzer-tracing-jit.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: fuzzer-exif.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: fuzzer-unserialize.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: fuzzer-function-jit.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: fuzzer-json.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: fuzzer-unserializehash.c:zend_get_gc_buffer_add_obj Unexecuted instantiation: fuzzer-execute.c:zend_get_gc_buffer_add_obj |
145 | | |
146 | | static zend_always_inline void zend_get_gc_buffer_add_ht( |
147 | 0 | zend_get_gc_buffer *gc_buffer, HashTable *ht) { |
148 | 0 | if (GC_FLAGS(ht) & IS_ARRAY_IMMUTABLE) { |
149 | 0 | return; |
150 | 0 | } |
151 | 0 | if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) { |
152 | 0 | zend_get_gc_buffer_grow(gc_buffer); |
153 | 0 | } |
154 | 0 | ZVAL_ARR(gc_buffer->cur, ht); |
155 | 0 | gc_buffer->cur++; |
156 | 0 | } Unexecuted instantiation: php_date.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: astro.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: dow.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: parse_date.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: parse_tz.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: parse_posix.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: timelib.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: tm2unixtime.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: unixtime2tm.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: parse_iso_intervals.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: interval.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: php_pcre.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: exif.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: hash_adler32.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: hash_crc32.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: hash_fnv.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: hash_gost.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: hash_haval.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: hash_joaat.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: hash_md.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: hash_murmur.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: hash_ripemd.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: hash_sha_ni.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: hash_sha_sse2.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: hash_sha.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: hash_sha3.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: hash_snefru.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: hash_tiger.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: hash_whirlpool.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: hash_xxhash.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: hash.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: json_encoder.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: json_parser.tab.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: json_scanner.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: json.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: php_lexbor.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: csprng.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: engine_mt19937.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: engine_secure.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: engine_user.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: engine_xoshiro256starstar.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: gammasection.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: random.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: randomizer.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_utils.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: php_reflection.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: php_spl.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: spl_array.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: spl_directory.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: spl_dllist.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: spl_exceptions.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: spl_fixedarray.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: spl_functions.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: spl_heap.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: spl_iterators.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: spl_observer.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: array.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: assert.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: base64.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: basic_functions.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: browscap.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: crc32_x86.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: crc32.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: credits.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: crypt.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: css.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: datetime.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: dir.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: dl.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: dns.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: exec.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: file.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: filestat.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: filters.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: flock_compat.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: formatted_print.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: fsock.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: ftok.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: ftp_fopen_wrapper.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: head.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: hrtime.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: html.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: http_fopen_wrapper.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: http.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: image.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: incomplete_class.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: info.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: iptc.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: levenshtein.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: link.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: mail.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: math.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: md5.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: metaphone.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: microtime.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: net.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: pack.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: pageinfo.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: password.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: php_fopen_wrapper.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: proc_open.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: quot_print.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: scanf.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: sha1.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: soundex.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: streamsfuncs.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: string.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: strnatcmp.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: syslog.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: type.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: uniqid.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: url_scanner_ex.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: url.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: user_filters.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: uuencode.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: var_unserializer.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: var.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: versioning.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: crypt_sha256.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: crypt_sha512.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: php_crypt_r.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: php_uri.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: php_uri_common.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: php_uriparser.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: explicit_bzero.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: fopen_wrappers.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: getopt.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: main.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: network.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: output.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: php_content_types.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: php_ini_builder.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: php_ini.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: php_glob.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: php_odbc_utils.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: php_open_temporary_file.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: php_scandir.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: php_syslog.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: php_ticks.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: php_variables.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: reentrancy.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: rfc1867.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: safe_bcmp.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: SAPI.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: snprintf.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: spprintf.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: strlcat.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: strlcpy.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: cast.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: filter.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: glob_wrapper.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: memory.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: mmap.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: plain_wrapper.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: streams.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: transports.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: userspace.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: xp_socket.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: block_pass.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: compact_literals.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: compact_vars.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: dce.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: dfa_pass.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: escape_analysis.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: nop_removal.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: optimize_func_calls.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: optimize_temp_vars_5.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: pass1.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: pass3.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: sccp.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: scdf.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_call_graph.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_cfg.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_dfg.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_dump.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_func_info.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_inference.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_optimizer.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_ssa.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_alloc.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_API.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_ast.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_attributes.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_builtin_functions.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_call_stack.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_closures.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_compile.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_constants.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_cpuinfo.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_default_classes.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_dtrace.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_enum.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_exceptions.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_execute_API.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_execute.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_extensions.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_fibers.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_float.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_gc.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_gdb.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_generators.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_hash.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_highlight.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_hrtime.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_inheritance.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_ini_parser.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_ini_scanner.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_ini.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_interfaces.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_iterators.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_language_parser.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_language_scanner.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_lazy_objects.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_list.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_llist.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_multibyte.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_object_handlers.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_objects_API.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_objects.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_observer.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_opcode.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_operators.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_property_hooks.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_ptr_stack.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_signal.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_smart_str.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_sort.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_stack.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_stream.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_string.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_strtod.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_system_id.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_variables.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_virtual_cwd.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_vm_opcodes.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend_weakrefs.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: zend.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: internal_functions_cli.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: fuzzer-parser.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: fuzzer-sapi.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: fuzzer-tracing-jit.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: fuzzer-exif.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: fuzzer-unserialize.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: fuzzer-function-jit.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: fuzzer-json.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: fuzzer-unserializehash.c:zend_get_gc_buffer_add_ht Unexecuted instantiation: fuzzer-execute.c:zend_get_gc_buffer_add_ht |
157 | | |
158 | | static zend_always_inline void zend_get_gc_buffer_add_ptr( |
159 | 2.00k | zend_get_gc_buffer *gc_buffer, void *ptr) { |
160 | 2.00k | if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) { |
161 | 246 | zend_get_gc_buffer_grow(gc_buffer); |
162 | 246 | } |
163 | 2.00k | ZVAL_PTR(gc_buffer->cur, ptr); |
164 | 2.00k | gc_buffer->cur++; |
165 | 2.00k | } Unexecuted instantiation: php_date.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: astro.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: dow.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: parse_date.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: parse_tz.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: parse_posix.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: timelib.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: tm2unixtime.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: unixtime2tm.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: parse_iso_intervals.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: interval.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: php_pcre.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: exif.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: hash_adler32.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: hash_crc32.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: hash_fnv.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: hash_gost.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: hash_haval.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: hash_joaat.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: hash_md.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: hash_murmur.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: hash_ripemd.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: hash_sha_ni.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: hash_sha_sse2.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: hash_sha.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: hash_sha3.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: hash_snefru.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: hash_tiger.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: hash_whirlpool.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: hash_xxhash.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: hash.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: json_encoder.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: json_parser.tab.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: json_scanner.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: json.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: php_lexbor.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: csprng.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: engine_mt19937.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: engine_secure.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: engine_user.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: engine_xoshiro256starstar.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: gammasection.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: random.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: randomizer.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_utils.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: php_reflection.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: php_spl.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: spl_array.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: spl_directory.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: spl_dllist.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: spl_exceptions.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: spl_fixedarray.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: spl_functions.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: spl_heap.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: spl_iterators.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: spl_observer.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: array.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: assert.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: base64.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: basic_functions.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: browscap.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: crc32_x86.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: crc32.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: credits.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: crypt.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: css.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: datetime.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: dir.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: dl.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: dns.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: exec.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: file.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: filestat.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: filters.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: flock_compat.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: formatted_print.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: fsock.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: ftok.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: ftp_fopen_wrapper.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: head.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: hrtime.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: html.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: http_fopen_wrapper.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: http.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: image.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: incomplete_class.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: info.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: iptc.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: levenshtein.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: link.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: mail.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: math.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: md5.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: metaphone.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: microtime.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: net.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: pack.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: pageinfo.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: password.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: php_fopen_wrapper.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: proc_open.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: quot_print.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: scanf.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: sha1.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: soundex.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: streamsfuncs.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: string.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: strnatcmp.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: syslog.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: type.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: uniqid.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: url_scanner_ex.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: url.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: user_filters.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: uuencode.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: var_unserializer.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: var.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: versioning.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: crypt_sha256.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: crypt_sha512.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: php_crypt_r.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: php_uri.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: php_uri_common.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: php_uriparser.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: explicit_bzero.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: fopen_wrappers.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: getopt.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: main.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: network.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: output.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: php_content_types.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: php_ini_builder.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: php_ini.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: php_glob.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: php_odbc_utils.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: php_open_temporary_file.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: php_scandir.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: php_syslog.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: php_ticks.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: php_variables.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: reentrancy.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: rfc1867.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: safe_bcmp.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: SAPI.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: snprintf.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: spprintf.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: strlcat.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: strlcpy.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: cast.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: filter.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: glob_wrapper.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: memory.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: mmap.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: plain_wrapper.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: streams.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: transports.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: userspace.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: xp_socket.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: block_pass.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: compact_literals.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: compact_vars.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: dce.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: dfa_pass.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: escape_analysis.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: nop_removal.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: optimize_func_calls.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: optimize_temp_vars_5.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: pass1.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: pass3.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: sccp.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: scdf.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_call_graph.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_cfg.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_dfg.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_dump.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_func_info.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_inference.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_optimizer.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_ssa.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_alloc.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_API.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_ast.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_attributes.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_builtin_functions.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_call_stack.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_closures.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_compile.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_constants.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_cpuinfo.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_default_classes.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_dtrace.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_enum.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_exceptions.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_execute_API.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_execute.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_extensions.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_fibers.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_float.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_gc.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_gdb.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_generators.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_hash.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_highlight.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_hrtime.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_inheritance.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_ini_parser.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_ini_scanner.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_ini.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_interfaces.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_iterators.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_language_parser.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_language_scanner.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_lazy_objects.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_list.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_llist.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_multibyte.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_object_handlers.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_objects_API.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_objects.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_observer.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_opcode.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_operators.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_property_hooks.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_ptr_stack.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_signal.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_smart_str.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_sort.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_stack.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_stream.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_string.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_strtod.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_system_id.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_variables.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_virtual_cwd.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: zend_vm_opcodes.c:zend_get_gc_buffer_add_ptr zend_weakrefs.c:zend_get_gc_buffer_add_ptr Line | Count | Source | 159 | 2.00k | zend_get_gc_buffer *gc_buffer, void *ptr) { | 160 | 2.00k | if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) { | 161 | 246 | zend_get_gc_buffer_grow(gc_buffer); | 162 | 246 | } | 163 | 2.00k | ZVAL_PTR(gc_buffer->cur, ptr); | 164 | 2.00k | gc_buffer->cur++; | 165 | 2.00k | } |
Unexecuted instantiation: zend.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: internal_functions_cli.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: fuzzer-parser.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: fuzzer-sapi.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: fuzzer-tracing-jit.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: fuzzer-exif.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: fuzzer-unserialize.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: fuzzer-function-jit.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: fuzzer-json.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: fuzzer-unserializehash.c:zend_get_gc_buffer_add_ptr Unexecuted instantiation: fuzzer-execute.c:zend_get_gc_buffer_add_ptr |
166 | | |
167 | | static zend_always_inline void zend_get_gc_buffer_use( |
168 | 95.0k | zend_get_gc_buffer *gc_buffer, zval **table, int *n) { |
169 | 95.0k | *table = gc_buffer->start; |
170 | 95.0k | *n = gc_buffer->cur - gc_buffer->start; |
171 | 95.0k | } Unexecuted instantiation: php_date.c:zend_get_gc_buffer_use Unexecuted instantiation: astro.c:zend_get_gc_buffer_use Unexecuted instantiation: dow.c:zend_get_gc_buffer_use Unexecuted instantiation: parse_date.c:zend_get_gc_buffer_use Unexecuted instantiation: parse_tz.c:zend_get_gc_buffer_use Unexecuted instantiation: parse_posix.c:zend_get_gc_buffer_use Unexecuted instantiation: timelib.c:zend_get_gc_buffer_use Unexecuted instantiation: tm2unixtime.c:zend_get_gc_buffer_use Unexecuted instantiation: unixtime2tm.c:zend_get_gc_buffer_use Unexecuted instantiation: parse_iso_intervals.c:zend_get_gc_buffer_use Unexecuted instantiation: interval.c:zend_get_gc_buffer_use Unexecuted instantiation: php_pcre.c:zend_get_gc_buffer_use Unexecuted instantiation: exif.c:zend_get_gc_buffer_use Unexecuted instantiation: hash_adler32.c:zend_get_gc_buffer_use Unexecuted instantiation: hash_crc32.c:zend_get_gc_buffer_use Unexecuted instantiation: hash_fnv.c:zend_get_gc_buffer_use Unexecuted instantiation: hash_gost.c:zend_get_gc_buffer_use Unexecuted instantiation: hash_haval.c:zend_get_gc_buffer_use Unexecuted instantiation: hash_joaat.c:zend_get_gc_buffer_use Unexecuted instantiation: hash_md.c:zend_get_gc_buffer_use Unexecuted instantiation: hash_murmur.c:zend_get_gc_buffer_use Unexecuted instantiation: hash_ripemd.c:zend_get_gc_buffer_use Unexecuted instantiation: hash_sha_ni.c:zend_get_gc_buffer_use Unexecuted instantiation: hash_sha_sse2.c:zend_get_gc_buffer_use Unexecuted instantiation: hash_sha.c:zend_get_gc_buffer_use Unexecuted instantiation: hash_sha3.c:zend_get_gc_buffer_use Unexecuted instantiation: hash_snefru.c:zend_get_gc_buffer_use Unexecuted instantiation: hash_tiger.c:zend_get_gc_buffer_use Unexecuted instantiation: hash_whirlpool.c:zend_get_gc_buffer_use Unexecuted instantiation: hash_xxhash.c:zend_get_gc_buffer_use Unexecuted instantiation: hash.c:zend_get_gc_buffer_use Unexecuted instantiation: json_encoder.c:zend_get_gc_buffer_use Unexecuted instantiation: json_parser.tab.c:zend_get_gc_buffer_use Unexecuted instantiation: json_scanner.c:zend_get_gc_buffer_use Unexecuted instantiation: json.c:zend_get_gc_buffer_use Unexecuted instantiation: php_lexbor.c:zend_get_gc_buffer_use Unexecuted instantiation: csprng.c:zend_get_gc_buffer_use Unexecuted instantiation: engine_mt19937.c:zend_get_gc_buffer_use Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_get_gc_buffer_use Unexecuted instantiation: engine_secure.c:zend_get_gc_buffer_use Unexecuted instantiation: engine_user.c:zend_get_gc_buffer_use Unexecuted instantiation: engine_xoshiro256starstar.c:zend_get_gc_buffer_use Unexecuted instantiation: gammasection.c:zend_get_gc_buffer_use Unexecuted instantiation: random.c:zend_get_gc_buffer_use Unexecuted instantiation: randomizer.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_utils.c:zend_get_gc_buffer_use Unexecuted instantiation: php_reflection.c:zend_get_gc_buffer_use Unexecuted instantiation: php_spl.c:zend_get_gc_buffer_use Unexecuted instantiation: spl_array.c:zend_get_gc_buffer_use Unexecuted instantiation: spl_directory.c:zend_get_gc_buffer_use spl_dllist.c:zend_get_gc_buffer_use Line | Count | Source | 168 | 165 | zend_get_gc_buffer *gc_buffer, zval **table, int *n) { | 169 | 165 | *table = gc_buffer->start; | 170 | 165 | *n = gc_buffer->cur - gc_buffer->start; | 171 | 165 | } |
Unexecuted instantiation: spl_exceptions.c:zend_get_gc_buffer_use Unexecuted instantiation: spl_fixedarray.c:zend_get_gc_buffer_use Unexecuted instantiation: spl_functions.c:zend_get_gc_buffer_use Unexecuted instantiation: spl_heap.c:zend_get_gc_buffer_use spl_iterators.c:zend_get_gc_buffer_use Line | Count | Source | 168 | 3.56k | zend_get_gc_buffer *gc_buffer, zval **table, int *n) { | 169 | 3.56k | *table = gc_buffer->start; | 170 | 3.56k | *n = gc_buffer->cur - gc_buffer->start; | 171 | 3.56k | } |
spl_observer.c:zend_get_gc_buffer_use Line | Count | Source | 168 | 82.5k | zend_get_gc_buffer *gc_buffer, zval **table, int *n) { | 169 | 82.5k | *table = gc_buffer->start; | 170 | 82.5k | *n = gc_buffer->cur - gc_buffer->start; | 171 | 82.5k | } |
Unexecuted instantiation: array.c:zend_get_gc_buffer_use Unexecuted instantiation: assert.c:zend_get_gc_buffer_use Unexecuted instantiation: base64.c:zend_get_gc_buffer_use Unexecuted instantiation: basic_functions.c:zend_get_gc_buffer_use Unexecuted instantiation: browscap.c:zend_get_gc_buffer_use Unexecuted instantiation: crc32_x86.c:zend_get_gc_buffer_use Unexecuted instantiation: crc32.c:zend_get_gc_buffer_use Unexecuted instantiation: credits.c:zend_get_gc_buffer_use Unexecuted instantiation: crypt.c:zend_get_gc_buffer_use Unexecuted instantiation: css.c:zend_get_gc_buffer_use Unexecuted instantiation: datetime.c:zend_get_gc_buffer_use Unexecuted instantiation: dir.c:zend_get_gc_buffer_use Unexecuted instantiation: dl.c:zend_get_gc_buffer_use Unexecuted instantiation: dns.c:zend_get_gc_buffer_use Unexecuted instantiation: exec.c:zend_get_gc_buffer_use Unexecuted instantiation: file.c:zend_get_gc_buffer_use Unexecuted instantiation: filestat.c:zend_get_gc_buffer_use Unexecuted instantiation: filters.c:zend_get_gc_buffer_use Unexecuted instantiation: flock_compat.c:zend_get_gc_buffer_use Unexecuted instantiation: formatted_print.c:zend_get_gc_buffer_use Unexecuted instantiation: fsock.c:zend_get_gc_buffer_use Unexecuted instantiation: ftok.c:zend_get_gc_buffer_use Unexecuted instantiation: ftp_fopen_wrapper.c:zend_get_gc_buffer_use Unexecuted instantiation: head.c:zend_get_gc_buffer_use Unexecuted instantiation: hrtime.c:zend_get_gc_buffer_use Unexecuted instantiation: html.c:zend_get_gc_buffer_use Unexecuted instantiation: http_fopen_wrapper.c:zend_get_gc_buffer_use Unexecuted instantiation: http.c:zend_get_gc_buffer_use Unexecuted instantiation: image.c:zend_get_gc_buffer_use Unexecuted instantiation: incomplete_class.c:zend_get_gc_buffer_use Unexecuted instantiation: info.c:zend_get_gc_buffer_use Unexecuted instantiation: iptc.c:zend_get_gc_buffer_use Unexecuted instantiation: levenshtein.c:zend_get_gc_buffer_use Unexecuted instantiation: link.c:zend_get_gc_buffer_use Unexecuted instantiation: mail.c:zend_get_gc_buffer_use Unexecuted instantiation: math.c:zend_get_gc_buffer_use Unexecuted instantiation: md5.c:zend_get_gc_buffer_use Unexecuted instantiation: metaphone.c:zend_get_gc_buffer_use Unexecuted instantiation: microtime.c:zend_get_gc_buffer_use Unexecuted instantiation: net.c:zend_get_gc_buffer_use Unexecuted instantiation: pack.c:zend_get_gc_buffer_use Unexecuted instantiation: pageinfo.c:zend_get_gc_buffer_use Unexecuted instantiation: password.c:zend_get_gc_buffer_use Unexecuted instantiation: php_fopen_wrapper.c:zend_get_gc_buffer_use Unexecuted instantiation: proc_open.c:zend_get_gc_buffer_use Unexecuted instantiation: quot_print.c:zend_get_gc_buffer_use Unexecuted instantiation: scanf.c:zend_get_gc_buffer_use Unexecuted instantiation: sha1.c:zend_get_gc_buffer_use Unexecuted instantiation: soundex.c:zend_get_gc_buffer_use Unexecuted instantiation: streamsfuncs.c:zend_get_gc_buffer_use Unexecuted instantiation: string.c:zend_get_gc_buffer_use Unexecuted instantiation: strnatcmp.c:zend_get_gc_buffer_use Unexecuted instantiation: syslog.c:zend_get_gc_buffer_use Unexecuted instantiation: type.c:zend_get_gc_buffer_use Unexecuted instantiation: uniqid.c:zend_get_gc_buffer_use Unexecuted instantiation: url_scanner_ex.c:zend_get_gc_buffer_use Unexecuted instantiation: url.c:zend_get_gc_buffer_use Unexecuted instantiation: user_filters.c:zend_get_gc_buffer_use Unexecuted instantiation: uuencode.c:zend_get_gc_buffer_use Unexecuted instantiation: var_unserializer.c:zend_get_gc_buffer_use Unexecuted instantiation: var.c:zend_get_gc_buffer_use Unexecuted instantiation: versioning.c:zend_get_gc_buffer_use Unexecuted instantiation: crypt_sha256.c:zend_get_gc_buffer_use Unexecuted instantiation: crypt_sha512.c:zend_get_gc_buffer_use Unexecuted instantiation: php_crypt_r.c:zend_get_gc_buffer_use Unexecuted instantiation: php_uri.c:zend_get_gc_buffer_use Unexecuted instantiation: php_uri_common.c:zend_get_gc_buffer_use Unexecuted instantiation: php_uriparser.c:zend_get_gc_buffer_use Unexecuted instantiation: explicit_bzero.c:zend_get_gc_buffer_use Unexecuted instantiation: fopen_wrappers.c:zend_get_gc_buffer_use Unexecuted instantiation: getopt.c:zend_get_gc_buffer_use Unexecuted instantiation: main.c:zend_get_gc_buffer_use Unexecuted instantiation: network.c:zend_get_gc_buffer_use Unexecuted instantiation: output.c:zend_get_gc_buffer_use Unexecuted instantiation: php_content_types.c:zend_get_gc_buffer_use Unexecuted instantiation: php_ini_builder.c:zend_get_gc_buffer_use Unexecuted instantiation: php_ini.c:zend_get_gc_buffer_use Unexecuted instantiation: php_glob.c:zend_get_gc_buffer_use Unexecuted instantiation: php_odbc_utils.c:zend_get_gc_buffer_use Unexecuted instantiation: php_open_temporary_file.c:zend_get_gc_buffer_use Unexecuted instantiation: php_scandir.c:zend_get_gc_buffer_use Unexecuted instantiation: php_syslog.c:zend_get_gc_buffer_use Unexecuted instantiation: php_ticks.c:zend_get_gc_buffer_use Unexecuted instantiation: php_variables.c:zend_get_gc_buffer_use Unexecuted instantiation: reentrancy.c:zend_get_gc_buffer_use Unexecuted instantiation: rfc1867.c:zend_get_gc_buffer_use Unexecuted instantiation: safe_bcmp.c:zend_get_gc_buffer_use Unexecuted instantiation: SAPI.c:zend_get_gc_buffer_use Unexecuted instantiation: snprintf.c:zend_get_gc_buffer_use Unexecuted instantiation: spprintf.c:zend_get_gc_buffer_use Unexecuted instantiation: strlcat.c:zend_get_gc_buffer_use Unexecuted instantiation: strlcpy.c:zend_get_gc_buffer_use Unexecuted instantiation: cast.c:zend_get_gc_buffer_use Unexecuted instantiation: filter.c:zend_get_gc_buffer_use Unexecuted instantiation: glob_wrapper.c:zend_get_gc_buffer_use Unexecuted instantiation: memory.c:zend_get_gc_buffer_use Unexecuted instantiation: mmap.c:zend_get_gc_buffer_use Unexecuted instantiation: plain_wrapper.c:zend_get_gc_buffer_use Unexecuted instantiation: streams.c:zend_get_gc_buffer_use Unexecuted instantiation: transports.c:zend_get_gc_buffer_use Unexecuted instantiation: userspace.c:zend_get_gc_buffer_use Unexecuted instantiation: xp_socket.c:zend_get_gc_buffer_use Unexecuted instantiation: block_pass.c:zend_get_gc_buffer_use Unexecuted instantiation: compact_literals.c:zend_get_gc_buffer_use Unexecuted instantiation: compact_vars.c:zend_get_gc_buffer_use Unexecuted instantiation: dce.c:zend_get_gc_buffer_use Unexecuted instantiation: dfa_pass.c:zend_get_gc_buffer_use Unexecuted instantiation: escape_analysis.c:zend_get_gc_buffer_use Unexecuted instantiation: nop_removal.c:zend_get_gc_buffer_use Unexecuted instantiation: optimize_func_calls.c:zend_get_gc_buffer_use Unexecuted instantiation: optimize_temp_vars_5.c:zend_get_gc_buffer_use Unexecuted instantiation: pass1.c:zend_get_gc_buffer_use Unexecuted instantiation: pass3.c:zend_get_gc_buffer_use Unexecuted instantiation: sccp.c:zend_get_gc_buffer_use Unexecuted instantiation: scdf.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_call_graph.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_cfg.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_dfg.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_dump.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_func_info.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_inference.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_optimizer.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_ssa.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_alloc.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_API.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_ast.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_attributes.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_builtin_functions.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_call_stack.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_closures.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_compile.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_constants.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_cpuinfo.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_default_classes.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_dtrace.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_enum.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_exceptions.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_execute_API.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_execute.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_extensions.c:zend_get_gc_buffer_use zend_fibers.c:zend_get_gc_buffer_use Line | Count | Source | 168 | 2.28k | zend_get_gc_buffer *gc_buffer, zval **table, int *n) { | 169 | 2.28k | *table = gc_buffer->start; | 170 | 2.28k | *n = gc_buffer->cur - gc_buffer->start; | 171 | 2.28k | } |
Unexecuted instantiation: zend_float.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_gc.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_gdb.c:zend_get_gc_buffer_use zend_generators.c:zend_get_gc_buffer_use Line | Count | Source | 168 | 2.23k | zend_get_gc_buffer *gc_buffer, zval **table, int *n) { | 169 | 2.23k | *table = gc_buffer->start; | 170 | 2.23k | *n = gc_buffer->cur - gc_buffer->start; | 171 | 2.23k | } |
Unexecuted instantiation: zend_hash.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_highlight.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_hrtime.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_inheritance.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_ini_parser.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_ini_scanner.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_ini.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_interfaces.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_iterators.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_language_parser.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_language_scanner.c:zend_get_gc_buffer_use zend_lazy_objects.c:zend_get_gc_buffer_use Line | Count | Source | 168 | 1.82k | zend_get_gc_buffer *gc_buffer, zval **table, int *n) { | 169 | 1.82k | *table = gc_buffer->start; | 170 | 1.82k | *n = gc_buffer->cur - gc_buffer->start; | 171 | 1.82k | } |
Unexecuted instantiation: zend_list.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_llist.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_multibyte.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_object_handlers.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_objects_API.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_objects.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_observer.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_opcode.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_operators.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_property_hooks.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_ptr_stack.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_signal.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_smart_str.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_sort.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_stack.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_stream.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_string.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_strtod.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_system_id.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_variables.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_virtual_cwd.c:zend_get_gc_buffer_use Unexecuted instantiation: zend_vm_opcodes.c:zend_get_gc_buffer_use zend_weakrefs.c:zend_get_gc_buffer_use Line | Count | Source | 168 | 2.47k | zend_get_gc_buffer *gc_buffer, zval **table, int *n) { | 169 | 2.47k | *table = gc_buffer->start; | 170 | 2.47k | *n = gc_buffer->cur - gc_buffer->start; | 171 | 2.47k | } |
Unexecuted instantiation: zend.c:zend_get_gc_buffer_use Unexecuted instantiation: internal_functions_cli.c:zend_get_gc_buffer_use Unexecuted instantiation: fuzzer-parser.c:zend_get_gc_buffer_use Unexecuted instantiation: fuzzer-sapi.c:zend_get_gc_buffer_use Unexecuted instantiation: fuzzer-tracing-jit.c:zend_get_gc_buffer_use Unexecuted instantiation: fuzzer-exif.c:zend_get_gc_buffer_use Unexecuted instantiation: fuzzer-unserialize.c:zend_get_gc_buffer_use Unexecuted instantiation: fuzzer-function-jit.c:zend_get_gc_buffer_use Unexecuted instantiation: fuzzer-json.c:zend_get_gc_buffer_use Unexecuted instantiation: fuzzer-unserializehash.c:zend_get_gc_buffer_use Unexecuted instantiation: fuzzer-execute.c:zend_get_gc_buffer_use |
172 | | |
173 | | END_EXTERN_C() |
174 | | |
175 | | #endif /* ZEND_GC_H */ |