/src/php-src/Zend/zend_string.h
Line | Count | Source |
1 | | /* |
2 | | +----------------------------------------------------------------------+ |
3 | | | Zend Engine | |
4 | | +----------------------------------------------------------------------+ |
5 | | | Copyright © Zend Technologies Ltd., a subsidiary company of | |
6 | | | Perforce Software, Inc., and Contributors. | |
7 | | +----------------------------------------------------------------------+ |
8 | | | This source file is subject to the Modified BSD License that is | |
9 | | | bundled with this package in the file LICENSE, and is available | |
10 | | | through the World Wide Web at <https://www.php.net/license/>. | |
11 | | | | |
12 | | | SPDX-License-Identifier: BSD-3-Clause | |
13 | | +----------------------------------------------------------------------+ |
14 | | | Authors: Dmitry Stogov <dmitry@php.net> | |
15 | | +----------------------------------------------------------------------+ |
16 | | */ |
17 | | |
18 | | #ifndef ZEND_STRING_H |
19 | | #define ZEND_STRING_H |
20 | | |
21 | | #include "zend_types.h" |
22 | | #include "zend_gc.h" |
23 | | #include "zend_alloc.h" |
24 | | |
25 | | BEGIN_EXTERN_C() |
26 | | |
27 | | typedef void (*zend_string_copy_storage_func_t)(void); |
28 | | typedef zend_string *(ZEND_FASTCALL *zend_new_interned_string_func_t)(zend_string *str); |
29 | | typedef zend_string *(ZEND_FASTCALL *zend_string_init_interned_func_t)(const char *str, size_t size, bool permanent); |
30 | | typedef zend_string *(ZEND_FASTCALL *zend_string_init_existing_interned_func_t)(const char *str, size_t size, bool permanent); |
31 | | |
32 | | ZEND_API extern zend_new_interned_string_func_t zend_new_interned_string; |
33 | | ZEND_API extern zend_string_init_interned_func_t zend_string_init_interned; |
34 | | /* Init an interned string if it already exists, but do not create a new one if it does not. */ |
35 | | ZEND_API extern zend_string_init_existing_interned_func_t zend_string_init_existing_interned; |
36 | | |
37 | | ZEND_API zend_ulong ZEND_FASTCALL zend_string_hash_func(zend_string *str); |
38 | | ZEND_API zend_ulong ZEND_FASTCALL zend_hash_func(const char *str, size_t len); |
39 | | ZEND_API zend_string* ZEND_FASTCALL zend_interned_string_find_permanent(zend_string *str); |
40 | | |
41 | | ZEND_API zend_string *zend_string_concat2( |
42 | | const char *str1, size_t str1_len, |
43 | | const char *str2, size_t str2_len); |
44 | | ZEND_API zend_string *zend_string_concat3( |
45 | | const char *str1, size_t str1_len, |
46 | | const char *str2, size_t str2_len, |
47 | | const char *str3, size_t str3_len); |
48 | | |
49 | | ZEND_API void zend_interned_strings_init(void); |
50 | | ZEND_API void zend_interned_strings_dtor(void); |
51 | | ZEND_API void zend_interned_strings_activate(void); |
52 | | ZEND_API void zend_interned_strings_deactivate(void); |
53 | | ZEND_API void zend_interned_strings_set_request_storage_handlers( |
54 | | zend_new_interned_string_func_t handler, |
55 | | zend_string_init_interned_func_t init_handler, |
56 | | zend_string_init_existing_interned_func_t init_existing_handler); |
57 | | ZEND_API void zend_interned_strings_switch_storage(bool request); |
58 | | |
59 | | ZEND_API extern zend_string *zend_empty_string; |
60 | | ZEND_API extern zend_string *zend_one_char_string[256]; |
61 | | ZEND_API extern zend_string **zend_known_strings; |
62 | | |
63 | | END_EXTERN_C() |
64 | | |
65 | | /* Shortcuts */ |
66 | | |
67 | 8.55G | #define ZSTR_VAL(zstr) (zstr)->val |
68 | 3.48G | #define ZSTR_LEN(zstr) (zstr)->len |
69 | 530M | #define ZSTR_H(zstr) (zstr)->h |
70 | | #define ZSTR_HASH(zstr) zend_string_hash_val(zstr) |
71 | | |
72 | | /*---*/ |
73 | | |
74 | 212M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { |
75 | 212M | return GC_FLAGS(s) & IS_STR_INTERNED; |
76 | 212M | } php_date.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 20.7k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 20.7k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 20.7k | } |
Unexecuted instantiation: astro.c:ZSTR_IS_INTERNED Unexecuted instantiation: dow.c:ZSTR_IS_INTERNED Unexecuted instantiation: parse_date.c:ZSTR_IS_INTERNED Unexecuted instantiation: parse_tz.c:ZSTR_IS_INTERNED Unexecuted instantiation: parse_posix.c:ZSTR_IS_INTERNED Unexecuted instantiation: timelib.c:ZSTR_IS_INTERNED Unexecuted instantiation: tm2unixtime.c:ZSTR_IS_INTERNED Unexecuted instantiation: unixtime2tm.c:ZSTR_IS_INTERNED Unexecuted instantiation: parse_iso_intervals.c:ZSTR_IS_INTERNED Unexecuted instantiation: interval.c:ZSTR_IS_INTERNED php_pcre.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 3.97k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 3.97k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 3.97k | } |
Unexecuted instantiation: exif.c:ZSTR_IS_INTERNED Unexecuted instantiation: hash_adler32.c:ZSTR_IS_INTERNED Unexecuted instantiation: hash_crc32.c:ZSTR_IS_INTERNED Unexecuted instantiation: hash_fnv.c:ZSTR_IS_INTERNED Unexecuted instantiation: hash_gost.c:ZSTR_IS_INTERNED Unexecuted instantiation: hash_haval.c:ZSTR_IS_INTERNED Unexecuted instantiation: hash_joaat.c:ZSTR_IS_INTERNED Unexecuted instantiation: hash_md.c:ZSTR_IS_INTERNED Unexecuted instantiation: hash_murmur.c:ZSTR_IS_INTERNED Unexecuted instantiation: hash_ripemd.c:ZSTR_IS_INTERNED Unexecuted instantiation: hash_sha_ni.c:ZSTR_IS_INTERNED Unexecuted instantiation: hash_sha_sse2.c:ZSTR_IS_INTERNED Unexecuted instantiation: hash_sha.c:ZSTR_IS_INTERNED Unexecuted instantiation: hash_sha3.c:ZSTR_IS_INTERNED Unexecuted instantiation: hash_snefru.c:ZSTR_IS_INTERNED Unexecuted instantiation: hash_tiger.c:ZSTR_IS_INTERNED Unexecuted instantiation: hash_whirlpool.c:ZSTR_IS_INTERNED Unexecuted instantiation: hash_xxhash.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 5.62k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 5.62k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 5.62k | } |
Unexecuted instantiation: json_encoder.c:ZSTR_IS_INTERNED json_parser.tab.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 57.1k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 57.1k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 57.1k | } |
json_scanner.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 42.1k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 42.1k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 42.1k | } |
Line | Count | Source | 74 | 4.67k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 4.67k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 4.67k | } |
Unexecuted instantiation: php_lexbor.c:ZSTR_IS_INTERNED Unexecuted instantiation: shared_alloc_mmap.c:ZSTR_IS_INTERNED Unexecuted instantiation: shared_alloc_posix.c:ZSTR_IS_INTERNED Unexecuted instantiation: shared_alloc_shm.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_accelerator_api.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_accelerator_blacklist.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_accelerator_debug.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_accelerator_hash.c:ZSTR_IS_INTERNED zend_accelerator_module.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 25 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 25 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 25 | } |
zend_accelerator_util_funcs.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 110k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 110k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 110k | } |
Unexecuted instantiation: zend_file_cache.c:ZSTR_IS_INTERNED zend_persist_calc.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 622k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 622k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 622k | } |
zend_persist.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 171k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 171k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 171k | } |
Unexecuted instantiation: zend_shared_alloc.c:ZSTR_IS_INTERNED ZendAccelerator.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 7.30M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 7.30M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 7.30M | } |
Unexecuted instantiation: ir_cfg.c:ZSTR_IS_INTERNED Unexecuted instantiation: ir_check.c:ZSTR_IS_INTERNED Unexecuted instantiation: ir_dump.c:ZSTR_IS_INTERNED Unexecuted instantiation: ir_emit.c:ZSTR_IS_INTERNED Unexecuted instantiation: ir_gcm.c:ZSTR_IS_INTERNED Unexecuted instantiation: ir_gdb.c:ZSTR_IS_INTERNED Unexecuted instantiation: ir_patch.c:ZSTR_IS_INTERNED Unexecuted instantiation: ir_perf.c:ZSTR_IS_INTERNED Unexecuted instantiation: ir_ra.c:ZSTR_IS_INTERNED Unexecuted instantiation: ir_save.c:ZSTR_IS_INTERNED Unexecuted instantiation: ir_sccp.c:ZSTR_IS_INTERNED Unexecuted instantiation: ir_strtab.c:ZSTR_IS_INTERNED Unexecuted instantiation: ir.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_jit_vm_helpers.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_jit.c:ZSTR_IS_INTERNED Unexecuted instantiation: csprng.c:ZSTR_IS_INTERNED Unexecuted instantiation: engine_mt19937.c:ZSTR_IS_INTERNED Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:ZSTR_IS_INTERNED Unexecuted instantiation: engine_secure.c:ZSTR_IS_INTERNED Unexecuted instantiation: engine_user.c:ZSTR_IS_INTERNED Unexecuted instantiation: engine_xoshiro256starstar.c:ZSTR_IS_INTERNED Unexecuted instantiation: gammasection.c:ZSTR_IS_INTERNED random.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 80 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 80 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 80 | } |
Unexecuted instantiation: randomizer.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_utils.c:ZSTR_IS_INTERNED php_reflection.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 27.1k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 27.1k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 27.1k | } |
php_spl.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 220 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 220 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 220 | } |
spl_array.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 80 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 80 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 80 | } |
spl_directory.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 272 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 272 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 272 | } |
spl_dllist.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 64 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 64 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 64 | } |
Unexecuted instantiation: spl_exceptions.c:ZSTR_IS_INTERNED spl_fixedarray.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 32 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 32 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 32 | } |
spl_functions.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 85 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 85 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 85 | } |
spl_heap.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 48 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 48 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 48 | } |
spl_iterators.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 8.52k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 8.52k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 8.52k | } |
spl_observer.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 160 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 160 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 160 | } |
Line | Count | Source | 74 | 2.15k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 2.15k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 2.15k | } |
assert.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 114 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 114 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 114 | } |
base64.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 15 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 15 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 15 | } |
basic_functions.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 115k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 115k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 115k | } |
Unexecuted instantiation: browscap.c:ZSTR_IS_INTERNED Unexecuted instantiation: crc32_x86.c:ZSTR_IS_INTERNED Unexecuted instantiation: crc32.c:ZSTR_IS_INTERNED Unexecuted instantiation: credits.c:ZSTR_IS_INTERNED Unexecuted instantiation: crypt.c:ZSTR_IS_INTERNED Unexecuted instantiation: css.c:ZSTR_IS_INTERNED Unexecuted instantiation: datetime.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 16 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 16 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 16 | } |
Unexecuted instantiation: dl.c:ZSTR_IS_INTERNED Unexecuted instantiation: dns.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 25 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 25 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 25 | } |
Line | Count | Source | 74 | 64 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 64 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 64 | } |
Unexecuted instantiation: filestat.c:ZSTR_IS_INTERNED Unexecuted instantiation: filters.c:ZSTR_IS_INTERNED Unexecuted instantiation: flock_compat.c:ZSTR_IS_INTERNED formatted_print.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 571 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 571 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 571 | } |
Unexecuted instantiation: fsock.c:ZSTR_IS_INTERNED Unexecuted instantiation: ftok.c:ZSTR_IS_INTERNED Unexecuted instantiation: ftp_fopen_wrapper.c:ZSTR_IS_INTERNED Unexecuted instantiation: head.c:ZSTR_IS_INTERNED Unexecuted instantiation: hrtime.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 5.55k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 5.55k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 5.55k | } |
Unexecuted instantiation: http_fopen_wrapper.c:ZSTR_IS_INTERNED Unexecuted instantiation: http.c:ZSTR_IS_INTERNED Unexecuted instantiation: image.c:ZSTR_IS_INTERNED incomplete_class.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 88.8k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 88.8k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 88.8k | } |
Line | Count | Source | 74 | 40 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 40 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 40 | } |
Unexecuted instantiation: iptc.c:ZSTR_IS_INTERNED Unexecuted instantiation: levenshtein.c:ZSTR_IS_INTERNED Unexecuted instantiation: link.c:ZSTR_IS_INTERNED Unexecuted instantiation: mail.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 14 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 14 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 14 | } |
Unexecuted instantiation: md5.c:ZSTR_IS_INTERNED Unexecuted instantiation: metaphone.c:ZSTR_IS_INTERNED Unexecuted instantiation: microtime.c:ZSTR_IS_INTERNED Unexecuted instantiation: net.c:ZSTR_IS_INTERNED Unexecuted instantiation: pack.c:ZSTR_IS_INTERNED Unexecuted instantiation: pageinfo.c:ZSTR_IS_INTERNED password.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 24 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 24 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 24 | } |
Unexecuted instantiation: php_fopen_wrapper.c:ZSTR_IS_INTERNED Unexecuted instantiation: proc_open.c:ZSTR_IS_INTERNED quot_print.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 242 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 242 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 242 | } |
Unexecuted instantiation: scanf.c:ZSTR_IS_INTERNED Unexecuted instantiation: sha1.c:ZSTR_IS_INTERNED Unexecuted instantiation: soundex.c:ZSTR_IS_INTERNED Unexecuted instantiation: streamsfuncs.c:ZSTR_IS_INTERNED string.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 8.32k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 8.32k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 8.32k | } |
Unexecuted instantiation: strnatcmp.c:ZSTR_IS_INTERNED Unexecuted instantiation: syslog.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 126 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 126 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 126 | } |
Unexecuted instantiation: uniqid.c:ZSTR_IS_INTERNED url_scanner_ex.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 80 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 80 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 80 | } |
Unexecuted instantiation: url.c:ZSTR_IS_INTERNED user_filters.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 1.12k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 1.12k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 1.12k | } |
Unexecuted instantiation: uuencode.c:ZSTR_IS_INTERNED var_unserializer.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 1.93M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 1.93M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 1.93M | } |
Line | Count | Source | 74 | 18.0k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 18.0k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 18.0k | } |
Unexecuted instantiation: versioning.c:ZSTR_IS_INTERNED Unexecuted instantiation: crypt_sha256.c:ZSTR_IS_INTERNED Unexecuted instantiation: crypt_sha512.c:ZSTR_IS_INTERNED Unexecuted instantiation: php_crypt_r.c:ZSTR_IS_INTERNED php_uri.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 96 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 96 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 96 | } |
Unexecuted instantiation: php_uri_common.c:ZSTR_IS_INTERNED Unexecuted instantiation: uri_parser_rfc3986.c:ZSTR_IS_INTERNED Unexecuted instantiation: uri_parser_whatwg.c:ZSTR_IS_INTERNED Unexecuted instantiation: uri_parser_php_parse_url.c:ZSTR_IS_INTERNED Unexecuted instantiation: explicit_bzero.c:ZSTR_IS_INTERNED fopen_wrappers.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 40 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 40 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 40 | } |
Unexecuted instantiation: getopt.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 13.6M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 13.6M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 13.6M | } |
Unexecuted instantiation: network.c:ZSTR_IS_INTERNED output.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 108k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 108k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 108k | } |
Unexecuted instantiation: php_content_types.c:ZSTR_IS_INTERNED Unexecuted instantiation: php_ini_builder.c:ZSTR_IS_INTERNED php_ini.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 208 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 208 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 208 | } |
Unexecuted instantiation: php_glob.c:ZSTR_IS_INTERNED Unexecuted instantiation: php_odbc_utils.c:ZSTR_IS_INTERNED Unexecuted instantiation: php_open_temporary_file.c:ZSTR_IS_INTERNED Unexecuted instantiation: php_scandir.c:ZSTR_IS_INTERNED Unexecuted instantiation: php_syslog.c:ZSTR_IS_INTERNED Unexecuted instantiation: php_ticks.c:ZSTR_IS_INTERNED php_variables.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 151k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 151k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 151k | } |
Unexecuted instantiation: reentrancy.c:ZSTR_IS_INTERNED Unexecuted instantiation: rfc1867.c:ZSTR_IS_INTERNED Unexecuted instantiation: safe_bcmp.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 32 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 32 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 32 | } |
Unexecuted instantiation: snprintf.c:ZSTR_IS_INTERNED Unexecuted instantiation: spprintf.c:ZSTR_IS_INTERNED Unexecuted instantiation: strlcat.c:ZSTR_IS_INTERNED Unexecuted instantiation: strlcpy.c:ZSTR_IS_INTERNED Unexecuted instantiation: cast.c:ZSTR_IS_INTERNED filter.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 96 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 96 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 96 | } |
Unexecuted instantiation: glob_wrapper.c:ZSTR_IS_INTERNED memory.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 5.76k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 5.76k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 5.76k | } |
Unexecuted instantiation: mmap.c:ZSTR_IS_INTERNED Unexecuted instantiation: plain_wrapper.c:ZSTR_IS_INTERNED stream_errors.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 3.09k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 3.09k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 3.09k | } |
streams.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 189 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 189 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 189 | } |
transports.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 64 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 64 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 64 | } |
userspace.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 1.59k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 1.59k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 1.59k | } |
Unexecuted instantiation: xp_socket.c:ZSTR_IS_INTERNED block_pass.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 11.0k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 11.0k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 11.0k | } |
compact_literals.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 1.36M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 1.36M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 1.36M | } |
compact_vars.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 4.97k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 4.97k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 4.97k | } |
Unexecuted instantiation: dce.c:ZSTR_IS_INTERNED dfa_pass.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 371 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 371 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 371 | } |
Unexecuted instantiation: escape_analysis.c:ZSTR_IS_INTERNED Unexecuted instantiation: nop_removal.c:ZSTR_IS_INTERNED Unexecuted instantiation: optimize_func_calls.c:ZSTR_IS_INTERNED Unexecuted instantiation: optimize_temp_vars_5.c:ZSTR_IS_INTERNED Unexecuted instantiation: pass1.c:ZSTR_IS_INTERNED Unexecuted instantiation: pass3.c:ZSTR_IS_INTERNED Unexecuted instantiation: sccp.c:ZSTR_IS_INTERNED Unexecuted instantiation: scdf.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_call_graph.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_cfg.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_dfg.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_dump.c:ZSTR_IS_INTERNED zend_func_info.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 8.52k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 8.52k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 8.52k | } |
zend_inference.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 4.37k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 4.37k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 4.37k | } |
zend_optimizer.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 116 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 116 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 116 | } |
Unexecuted instantiation: zend_ssa.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_alloc.c:ZSTR_IS_INTERNED zend_API.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 199k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 199k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 199k | } |
zend_ast.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 212k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 212k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 212k | } |
zend_attributes.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 3.48M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 3.48M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 3.48M | } |
zend_autoload.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 1.09k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 1.09k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 1.09k | } |
zend_builtin_functions.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 10.2M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 10.2M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 10.2M | } |
Unexecuted instantiation: zend_call_stack.c:ZSTR_IS_INTERNED zend_closures.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 17.4k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 17.4k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 17.4k | } |
zend_compile.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 109M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 109M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 109M | } |
zend_constants.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 54.5k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 54.5k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 54.5k | } |
Unexecuted instantiation: zend_cpuinfo.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_default_classes.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_dtrace.c:ZSTR_IS_INTERNED zend_enum.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 25.5k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 25.5k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 25.5k | } |
zend_exceptions.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 1.85M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 1.85M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 1.85M | } |
zend_execute_API.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 856k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 856k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 856k | } |
zend_execute.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 2.96M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 2.96M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 2.96M | } |
Unexecuted instantiation: zend_extensions.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_fibers.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_float.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_gc.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_gdb.c:ZSTR_IS_INTERNED zend_generators.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 146 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 146 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 146 | } |
zend_hash.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 16.7M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 16.7M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 16.7M | } |
zend_highlight.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 1.13M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 1.13M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 1.13M | } |
Unexecuted instantiation: zend_hrtime.c:ZSTR_IS_INTERNED zend_inheritance.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 109k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 109k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 109k | } |
zend_ini_parser.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 4.43M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 4.43M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 4.43M | } |
Unexecuted instantiation: zend_ini_scanner.c:ZSTR_IS_INTERNED zend_ini.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 176k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 176k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 176k | } |
Unexecuted instantiation: zend_interfaces.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_iterators.c:ZSTR_IS_INTERNED zend_language_parser.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 426 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 426 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 426 | } |
zend_language_scanner.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 442k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 442k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 442k | } |
Unexecuted instantiation: zend_lazy_objects.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_list.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_llist.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_multibyte.c:ZSTR_IS_INTERNED zend_object_handlers.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 699k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 699k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 699k | } |
Unexecuted instantiation: zend_objects_API.c:ZSTR_IS_INTERNED zend_objects.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 114 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 114 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 114 | } |
Unexecuted instantiation: zend_observer.c:ZSTR_IS_INTERNED zend_opcode.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 5.58M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 5.58M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 5.58M | } |
zend_operators.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 5.48M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 5.48M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 5.48M | } |
zend_property_hooks.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 764 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 764 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 764 | } |
Unexecuted instantiation: zend_ptr_stack.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_signal.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_smart_str.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_sort.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_stack.c:ZSTR_IS_INTERNED zend_stream.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 435k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 435k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 435k | } |
zend_string.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 37.8k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 37.8k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 37.8k | } |
Unexecuted instantiation: zend_strtod.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_system_id.c:ZSTR_IS_INTERNED zend_variables.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 13.2M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 13.2M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 13.2M | } |
Unexecuted instantiation: zend_virtual_cwd.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_vm_opcodes.c:ZSTR_IS_INTERNED Unexecuted instantiation: zend_weakrefs.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 8.90M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 8.90M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 8.90M | } |
Unexecuted instantiation: internal_functions_cli.c:ZSTR_IS_INTERNED Unexecuted instantiation: fuzzer-parser.c:ZSTR_IS_INTERNED Unexecuted instantiation: fuzzer-sapi.c:ZSTR_IS_INTERNED fuzzer-tracing-jit.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 18.1k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 18.1k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 18.1k | } |
Unexecuted instantiation: fuzzer-exif.c:ZSTR_IS_INTERNED Unexecuted instantiation: fuzzer-unserialize.c:ZSTR_IS_INTERNED fuzzer-function-jit.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 16.4k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 16.4k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 16.4k | } |
Unexecuted instantiation: fuzzer-json.c:ZSTR_IS_INTERNED Unexecuted instantiation: fuzzer-unserializehash.c:ZSTR_IS_INTERNED Unexecuted instantiation: fuzzer-execute.c:ZSTR_IS_INTERNED |
77 | | |
78 | 225k | static inline bool ZSTR_IS_VALID_UTF8(const zend_string *s) { |
79 | 225k | return GC_FLAGS(s) & IS_STR_VALID_UTF8; |
80 | 225k | } Unexecuted instantiation: php_date.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: astro.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: dow.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: parse_date.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: parse_tz.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: parse_posix.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: timelib.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: tm2unixtime.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: unixtime2tm.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: parse_iso_intervals.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: interval.c:ZSTR_IS_VALID_UTF8 php_pcre.c:ZSTR_IS_VALID_UTF8 Line | Count | Source | 78 | 1.31k | static inline bool ZSTR_IS_VALID_UTF8(const zend_string *s) { | 79 | 1.31k | return GC_FLAGS(s) & IS_STR_VALID_UTF8; | 80 | 1.31k | } |
Unexecuted instantiation: exif.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: hash_adler32.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: hash_crc32.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: hash_fnv.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: hash_gost.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: hash_haval.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: hash_joaat.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: hash_md.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: hash_murmur.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: hash_ripemd.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: hash_sha_ni.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: hash_sha_sse2.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: hash_sha.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: hash_sha3.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: hash_snefru.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: hash_tiger.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: hash_whirlpool.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: hash_xxhash.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: hash.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: json_encoder.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: json_parser.tab.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: json_scanner.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: json.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: php_lexbor.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: shared_alloc_mmap.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: shared_alloc_posix.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: shared_alloc_shm.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_accelerator_api.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_accelerator_blacklist.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_accelerator_debug.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_accelerator_hash.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_accelerator_module.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_accelerator_util_funcs.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_file_cache.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_persist_calc.c:ZSTR_IS_VALID_UTF8 zend_persist.c:ZSTR_IS_VALID_UTF8 Line | Count | Source | 78 | 96.5k | static inline bool ZSTR_IS_VALID_UTF8(const zend_string *s) { | 79 | 96.5k | return GC_FLAGS(s) & IS_STR_VALID_UTF8; | 80 | 96.5k | } |
Unexecuted instantiation: zend_shared_alloc.c:ZSTR_IS_VALID_UTF8 ZendAccelerator.c:ZSTR_IS_VALID_UTF8 Line | Count | Source | 78 | 127k | static inline bool ZSTR_IS_VALID_UTF8(const zend_string *s) { | 79 | 127k | return GC_FLAGS(s) & IS_STR_VALID_UTF8; | 80 | 127k | } |
Unexecuted instantiation: ir_cfg.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: ir_check.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: ir_dump.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: ir_emit.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: ir_gcm.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: ir_gdb.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: ir_patch.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: ir_perf.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: ir_ra.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: ir_save.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: ir_sccp.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: ir_strtab.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: ir.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_jit_vm_helpers.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_jit.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: csprng.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: engine_mt19937.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: engine_secure.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: engine_user.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: engine_xoshiro256starstar.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: gammasection.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: random.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: randomizer.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_utils.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: php_reflection.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: php_spl.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: spl_array.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: spl_directory.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: spl_dllist.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: spl_exceptions.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: spl_fixedarray.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: spl_functions.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: spl_heap.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: spl_iterators.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: spl_observer.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: array.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: assert.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: base64.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: basic_functions.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: browscap.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: crc32_x86.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: crc32.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: credits.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: crypt.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: css.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: datetime.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: dir.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: dl.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: dns.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: exec.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: file.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: filestat.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: filters.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: flock_compat.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: formatted_print.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: fsock.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: ftok.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: ftp_fopen_wrapper.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: head.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: hrtime.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: html.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: http_fopen_wrapper.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: http.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: image.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: incomplete_class.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: info.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: iptc.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: levenshtein.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: link.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: mail.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: math.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: md5.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: metaphone.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: microtime.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: net.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: pack.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: pageinfo.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: password.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: php_fopen_wrapper.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: proc_open.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: quot_print.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: scanf.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: sha1.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: soundex.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: streamsfuncs.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: string.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: strnatcmp.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: syslog.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: type.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: uniqid.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: url_scanner_ex.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: url.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: user_filters.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: uuencode.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: var_unserializer.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: var.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: versioning.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: crypt_sha256.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: crypt_sha512.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: php_crypt_r.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: php_uri.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: php_uri_common.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: uri_parser_rfc3986.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: uri_parser_whatwg.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: uri_parser_php_parse_url.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: explicit_bzero.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: fopen_wrappers.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: getopt.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: main.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: network.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: output.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: php_content_types.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: php_ini_builder.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: php_ini.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: php_glob.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: php_odbc_utils.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: php_open_temporary_file.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: php_scandir.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: php_syslog.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: php_ticks.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: php_variables.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: reentrancy.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: rfc1867.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: safe_bcmp.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: SAPI.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: snprintf.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: spprintf.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: strlcat.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: strlcpy.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: cast.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: filter.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: glob_wrapper.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: memory.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: mmap.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: plain_wrapper.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: stream_errors.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: streams.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: transports.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: userspace.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: xp_socket.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: block_pass.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: compact_literals.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: compact_vars.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: dce.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: dfa_pass.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: escape_analysis.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: nop_removal.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: optimize_func_calls.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: optimize_temp_vars_5.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: pass1.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: pass3.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: sccp.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: scdf.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_call_graph.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_cfg.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_dfg.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_dump.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_func_info.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_inference.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_optimizer.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_ssa.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_alloc.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_API.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_ast.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_attributes.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_autoload.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_builtin_functions.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_call_stack.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_closures.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_compile.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_constants.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_cpuinfo.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_default_classes.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_dtrace.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_enum.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_exceptions.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_execute_API.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_execute.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_extensions.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_fibers.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_float.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_gc.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_gdb.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_generators.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_hash.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_highlight.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_hrtime.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_inheritance.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_ini_parser.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_ini_scanner.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_ini.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_interfaces.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_iterators.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_language_parser.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_language_scanner.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_lazy_objects.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_list.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_llist.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_multibyte.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_object_handlers.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_objects_API.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_objects.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_observer.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_opcode.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_operators.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_property_hooks.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_ptr_stack.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_signal.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_smart_str.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_sort.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_stack.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_stream.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_string.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_strtod.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_system_id.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_variables.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_virtual_cwd.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_vm_opcodes.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend_weakrefs.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: zend.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: internal_functions_cli.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: fuzzer-parser.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: fuzzer-sapi.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: fuzzer-tracing-jit.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: fuzzer-exif.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: fuzzer-unserialize.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: fuzzer-function-jit.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: fuzzer-json.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: fuzzer-unserializehash.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: fuzzer-execute.c:ZSTR_IS_VALID_UTF8 |
81 | | |
82 | | /* These are properties, encoded as flags, that will hold on the resulting string |
83 | | * after concatenating two strings that have these property. |
84 | | * Example: concatenating two UTF-8 strings yields another UTF-8 string. */ |
85 | 4.80M | #define ZSTR_COPYABLE_CONCAT_PROPERTIES (IS_STR_VALID_UTF8) |
86 | | |
87 | 4.52M | static inline uint32_t ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(const zend_string *s) { |
88 | 4.52M | return GC_FLAGS(s) & ZSTR_COPYABLE_CONCAT_PROPERTIES; |
89 | 4.52M | } Unexecuted instantiation: php_date.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: astro.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: dow.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: parse_date.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: parse_tz.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: parse_posix.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: timelib.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: tm2unixtime.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: unixtime2tm.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: parse_iso_intervals.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: interval.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: php_pcre.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: exif.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: hash_adler32.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: hash_crc32.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: hash_fnv.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: hash_gost.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: hash_haval.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: hash_joaat.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: hash_md.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: hash_murmur.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: hash_ripemd.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: hash_sha_ni.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: hash_sha_sse2.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: hash_sha.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: hash_sha3.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: hash_snefru.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: hash_tiger.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: hash_whirlpool.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: hash_xxhash.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: hash.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: json_encoder.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: json_parser.tab.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: json_scanner.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: json.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: php_lexbor.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: shared_alloc_mmap.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: shared_alloc_posix.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: shared_alloc_shm.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_accelerator_api.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_accelerator_blacklist.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_accelerator_debug.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_accelerator_hash.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_accelerator_module.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_accelerator_util_funcs.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_file_cache.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_persist_calc.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_persist.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_shared_alloc.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: ZendAccelerator.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: ir_cfg.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: ir_check.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: ir_dump.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: ir_emit.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: ir_gcm.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: ir_gdb.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: ir_patch.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: ir_perf.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: ir_ra.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: ir_save.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: ir_sccp.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: ir_strtab.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: ir.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_jit_vm_helpers.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_jit.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: csprng.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: engine_mt19937.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: engine_secure.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: engine_user.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: engine_xoshiro256starstar.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: gammasection.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: random.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: randomizer.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_utils.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: php_reflection.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: php_spl.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: spl_array.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: spl_directory.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: spl_dllist.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: spl_exceptions.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: spl_fixedarray.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: spl_functions.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: spl_heap.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: spl_iterators.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: spl_observer.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: array.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: assert.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: base64.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: basic_functions.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: browscap.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: crc32_x86.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: crc32.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: credits.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: crypt.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: css.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: datetime.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: dir.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: dl.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: dns.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: exec.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: file.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: filestat.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: filters.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: flock_compat.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: formatted_print.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: fsock.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: ftok.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: ftp_fopen_wrapper.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: head.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: hrtime.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: html.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: http_fopen_wrapper.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: http.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: image.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: incomplete_class.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: info.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: iptc.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: levenshtein.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: link.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: mail.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: math.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: md5.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: metaphone.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: microtime.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: net.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: pack.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: pageinfo.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: password.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: php_fopen_wrapper.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: proc_open.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: quot_print.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: scanf.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: sha1.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: soundex.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: streamsfuncs.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES string.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Line | Count | Source | 87 | 812 | static inline uint32_t ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(const zend_string *s) { | 88 | 812 | return GC_FLAGS(s) & ZSTR_COPYABLE_CONCAT_PROPERTIES; | 89 | 812 | } |
Unexecuted instantiation: strnatcmp.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: syslog.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: type.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: uniqid.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: url_scanner_ex.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: url.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: user_filters.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: uuencode.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: var_unserializer.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: var.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: versioning.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: crypt_sha256.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: crypt_sha512.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: php_crypt_r.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: php_uri.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: php_uri_common.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: uri_parser_rfc3986.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: uri_parser_whatwg.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: uri_parser_php_parse_url.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: explicit_bzero.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: fopen_wrappers.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: getopt.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: main.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: network.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: output.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: php_content_types.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: php_ini_builder.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: php_ini.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: php_glob.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: php_odbc_utils.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: php_open_temporary_file.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: php_scandir.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: php_syslog.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: php_ticks.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: php_variables.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: reentrancy.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: rfc1867.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: safe_bcmp.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: SAPI.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: snprintf.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: spprintf.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: strlcat.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: strlcpy.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: cast.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: filter.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: glob_wrapper.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: memory.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: mmap.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: plain_wrapper.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: stream_errors.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: streams.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: transports.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: userspace.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: xp_socket.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: block_pass.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: compact_literals.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: compact_vars.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: dce.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: dfa_pass.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: escape_analysis.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: nop_removal.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: optimize_func_calls.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: optimize_temp_vars_5.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: pass1.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: pass3.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: sccp.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: scdf.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_call_graph.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_cfg.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_dfg.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_dump.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_func_info.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_inference.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_optimizer.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_ssa.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_alloc.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_API.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_ast.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_attributes.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_autoload.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_builtin_functions.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_call_stack.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_closures.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_compile.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_constants.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_cpuinfo.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_default_classes.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_dtrace.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_enum.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_exceptions.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_execute_API.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES zend_execute.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Line | Count | Source | 87 | 2.50M | static inline uint32_t ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(const zend_string *s) { | 88 | 2.50M | return GC_FLAGS(s) & ZSTR_COPYABLE_CONCAT_PROPERTIES; | 89 | 2.50M | } |
Unexecuted instantiation: zend_extensions.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_fibers.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_float.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_gc.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_gdb.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_generators.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_hash.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_highlight.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_hrtime.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_inheritance.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_ini_parser.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_ini_scanner.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_ini.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_interfaces.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_iterators.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_language_parser.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_language_scanner.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_lazy_objects.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_list.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_llist.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_multibyte.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_object_handlers.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_objects_API.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_objects.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_observer.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_opcode.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES zend_operators.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Line | Count | Source | 87 | 2.01M | static inline uint32_t ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(const zend_string *s) { | 88 | 2.01M | return GC_FLAGS(s) & ZSTR_COPYABLE_CONCAT_PROPERTIES; | 89 | 2.01M | } |
Unexecuted instantiation: zend_property_hooks.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_ptr_stack.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_signal.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_smart_str.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_sort.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_stack.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_stream.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES zend_string.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Line | Count | Source | 87 | 162 | static inline uint32_t ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(const zend_string *s) { | 88 | 162 | return GC_FLAGS(s) & ZSTR_COPYABLE_CONCAT_PROPERTIES; | 89 | 162 | } |
Unexecuted instantiation: zend_strtod.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_system_id.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_variables.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_virtual_cwd.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_vm_opcodes.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend_weakrefs.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: zend.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: internal_functions_cli.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: fuzzer-parser.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: fuzzer-sapi.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: fuzzer-tracing-jit.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: fuzzer-exif.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: fuzzer-unserialize.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: fuzzer-function-jit.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: fuzzer-json.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: fuzzer-unserializehash.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: fuzzer-execute.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES |
90 | | |
91 | | /* This function returns the copyable concat properties which hold on both strings. */ |
92 | 1.46M | static inline uint32_t ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH(const zend_string *s1, const zend_string *s2) { |
93 | 1.46M | return ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(s1) & ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(s2); |
94 | 1.46M | } Unexecuted instantiation: php_date.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: astro.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: dow.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: parse_date.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: parse_tz.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: parse_posix.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: timelib.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: tm2unixtime.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: unixtime2tm.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: parse_iso_intervals.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: interval.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_pcre.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: exif.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_adler32.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_crc32.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_fnv.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_gost.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_haval.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_joaat.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_md.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_murmur.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_ripemd.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_sha_ni.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_sha_sse2.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_sha.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_sha3.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_snefru.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_tiger.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_whirlpool.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_xxhash.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: json_encoder.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: json_parser.tab.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: json_scanner.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: json.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_lexbor.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: shared_alloc_mmap.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: shared_alloc_posix.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: shared_alloc_shm.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_accelerator_api.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_accelerator_blacklist.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_accelerator_debug.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_accelerator_hash.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_accelerator_module.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_accelerator_util_funcs.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_file_cache.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_persist_calc.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_persist.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_shared_alloc.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ZendAccelerator.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_cfg.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_check.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_dump.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_emit.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_gcm.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_gdb.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_patch.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_perf.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_ra.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_save.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_sccp.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_strtab.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_jit_vm_helpers.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_jit.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: csprng.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: engine_mt19937.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: engine_secure.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: engine_user.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: engine_xoshiro256starstar.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: gammasection.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: random.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: randomizer.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_utils.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_reflection.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_spl.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: spl_array.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: spl_directory.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: spl_dllist.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: spl_exceptions.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: spl_fixedarray.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: spl_functions.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: spl_heap.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: spl_iterators.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: spl_observer.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: array.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: assert.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: base64.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: basic_functions.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: browscap.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: crc32_x86.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: crc32.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: credits.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: crypt.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: css.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: datetime.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: dir.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: dl.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: dns.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: exec.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: file.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: filestat.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: filters.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: flock_compat.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: formatted_print.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fsock.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ftok.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ftp_fopen_wrapper.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: head.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hrtime.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: html.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: http_fopen_wrapper.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: http.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: image.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: incomplete_class.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: info.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: iptc.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: levenshtein.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: link.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: mail.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: math.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: md5.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: metaphone.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: microtime.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: net.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: pack.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: pageinfo.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: password.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_fopen_wrapper.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: proc_open.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: quot_print.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: scanf.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: sha1.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: soundex.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: streamsfuncs.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: string.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: strnatcmp.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: syslog.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: type.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: uniqid.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: url_scanner_ex.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: url.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: user_filters.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: uuencode.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: var_unserializer.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: var.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: versioning.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: crypt_sha256.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: crypt_sha512.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_crypt_r.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_uri.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_uri_common.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: uri_parser_rfc3986.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: uri_parser_whatwg.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: uri_parser_php_parse_url.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: explicit_bzero.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fopen_wrappers.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: getopt.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: main.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: network.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: output.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_content_types.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_ini_builder.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_ini.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_glob.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_odbc_utils.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_open_temporary_file.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_scandir.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_syslog.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_ticks.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_variables.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: reentrancy.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: rfc1867.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: safe_bcmp.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: SAPI.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: snprintf.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: spprintf.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: strlcat.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: strlcpy.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: cast.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: filter.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: glob_wrapper.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: memory.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: mmap.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: plain_wrapper.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: stream_errors.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: streams.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: transports.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: userspace.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: xp_socket.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: block_pass.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: compact_literals.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: compact_vars.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: dce.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: dfa_pass.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: escape_analysis.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: nop_removal.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: optimize_func_calls.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: optimize_temp_vars_5.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: pass1.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: pass3.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: sccp.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: scdf.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_call_graph.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_cfg.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_dfg.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_dump.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_func_info.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_inference.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_optimizer.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_ssa.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_alloc.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_API.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_ast.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_attributes.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_autoload.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_builtin_functions.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_call_stack.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_closures.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_compile.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_constants.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_cpuinfo.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_default_classes.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_dtrace.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_enum.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_exceptions.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_execute_API.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH zend_execute.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Line | Count | Source | 92 | 462k | static inline uint32_t ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH(const zend_string *s1, const zend_string *s2) { | 93 | 462k | return ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(s1) & ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(s2); | 94 | 462k | } |
Unexecuted instantiation: zend_extensions.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_fibers.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_float.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_gc.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_gdb.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_generators.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_hash.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_highlight.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_hrtime.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_inheritance.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_ini_parser.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_ini_scanner.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_ini.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_interfaces.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_iterators.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_language_parser.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_language_scanner.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_lazy_objects.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_list.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_llist.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_multibyte.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_object_handlers.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_objects_API.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_objects.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_observer.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_opcode.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH zend_operators.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Line | Count | Source | 92 | 1.00M | static inline uint32_t ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH(const zend_string *s1, const zend_string *s2) { | 93 | 1.00M | return ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(s1) & ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(s2); | 94 | 1.00M | } |
Unexecuted instantiation: zend_property_hooks.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_ptr_stack.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_signal.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_smart_str.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_sort.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_stack.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_stream.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_string.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_strtod.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_system_id.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_variables.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_virtual_cwd.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_vm_opcodes.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_weakrefs.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: internal_functions_cli.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fuzzer-parser.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fuzzer-sapi.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fuzzer-tracing-jit.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fuzzer-exif.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fuzzer-unserialize.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fuzzer-function-jit.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fuzzer-json.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fuzzer-unserializehash.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fuzzer-execute.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH |
95 | | |
96 | 794 | static inline void ZSTR_COPY_CONCAT_PROPERTIES(zend_string *out, const zend_string *in) { |
97 | 794 | uint32_t properties = ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(in); |
98 | 794 | GC_ADD_FLAGS(out, properties); |
99 | 794 | } Unexecuted instantiation: php_date.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: astro.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: dow.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: parse_date.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: parse_tz.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: parse_posix.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: timelib.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: tm2unixtime.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: unixtime2tm.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: parse_iso_intervals.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: interval.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: php_pcre.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: exif.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: hash_adler32.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: hash_crc32.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: hash_fnv.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: hash_gost.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: hash_haval.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: hash_joaat.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: hash_md.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: hash_murmur.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: hash_ripemd.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: hash_sha_ni.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: hash_sha_sse2.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: hash_sha.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: hash_sha3.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: hash_snefru.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: hash_tiger.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: hash_whirlpool.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: hash_xxhash.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: hash.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: json_encoder.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: json_parser.tab.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: json_scanner.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: json.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: php_lexbor.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: shared_alloc_mmap.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: shared_alloc_posix.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: shared_alloc_shm.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_accelerator_api.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_accelerator_blacklist.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_accelerator_debug.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_accelerator_hash.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_accelerator_module.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_accelerator_util_funcs.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_file_cache.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_persist_calc.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_persist.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_shared_alloc.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: ZendAccelerator.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: ir_cfg.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: ir_check.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: ir_dump.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: ir_emit.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: ir_gcm.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: ir_gdb.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: ir_patch.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: ir_perf.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: ir_ra.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: ir_save.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: ir_sccp.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: ir_strtab.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: ir.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_jit_vm_helpers.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_jit.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: csprng.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: engine_mt19937.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: engine_secure.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: engine_user.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: engine_xoshiro256starstar.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: gammasection.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: random.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: randomizer.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_utils.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: php_reflection.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: php_spl.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: spl_array.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: spl_directory.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: spl_dllist.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: spl_exceptions.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: spl_fixedarray.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: spl_functions.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: spl_heap.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: spl_iterators.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: spl_observer.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: array.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: assert.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: base64.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: basic_functions.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: browscap.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: crc32_x86.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: crc32.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: credits.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: crypt.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: css.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: datetime.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: dir.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: dl.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: dns.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: exec.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: file.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: filestat.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: filters.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: flock_compat.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: formatted_print.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: fsock.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: ftok.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: ftp_fopen_wrapper.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: head.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: hrtime.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: html.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: http_fopen_wrapper.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: http.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: image.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: incomplete_class.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: info.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: iptc.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: levenshtein.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: link.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: mail.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: math.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: md5.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: metaphone.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: microtime.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: net.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: pack.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: pageinfo.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: password.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: php_fopen_wrapper.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: proc_open.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: quot_print.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: scanf.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: sha1.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: soundex.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: streamsfuncs.c:ZSTR_COPY_CONCAT_PROPERTIES string.c:ZSTR_COPY_CONCAT_PROPERTIES Line | Count | Source | 96 | 794 | static inline void ZSTR_COPY_CONCAT_PROPERTIES(zend_string *out, const zend_string *in) { | 97 | 794 | uint32_t properties = ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(in); | 98 | 794 | GC_ADD_FLAGS(out, properties); | 99 | 794 | } |
Unexecuted instantiation: strnatcmp.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: syslog.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: type.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: uniqid.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: url_scanner_ex.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: url.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: user_filters.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: uuencode.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: var_unserializer.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: var.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: versioning.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: crypt_sha256.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: crypt_sha512.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: php_crypt_r.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: php_uri.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: php_uri_common.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: uri_parser_rfc3986.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: uri_parser_whatwg.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: uri_parser_php_parse_url.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: explicit_bzero.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: fopen_wrappers.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: getopt.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: main.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: network.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: output.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: php_content_types.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: php_ini_builder.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: php_ini.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: php_glob.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: php_odbc_utils.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: php_open_temporary_file.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: php_scandir.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: php_syslog.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: php_ticks.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: php_variables.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: reentrancy.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: rfc1867.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: safe_bcmp.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: SAPI.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: snprintf.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: spprintf.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: strlcat.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: strlcpy.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: cast.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: filter.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: glob_wrapper.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: memory.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: mmap.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: plain_wrapper.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: stream_errors.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: streams.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: transports.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: userspace.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: xp_socket.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: block_pass.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: compact_literals.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: compact_vars.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: dce.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: dfa_pass.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: escape_analysis.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: nop_removal.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: optimize_func_calls.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: optimize_temp_vars_5.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: pass1.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: pass3.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: sccp.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: scdf.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_call_graph.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_cfg.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_dfg.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_dump.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_func_info.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_inference.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_optimizer.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_ssa.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_alloc.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_API.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_ast.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_attributes.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_autoload.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_builtin_functions.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_call_stack.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_closures.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_compile.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_constants.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_cpuinfo.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_default_classes.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_dtrace.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_enum.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_exceptions.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_execute_API.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_execute.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_extensions.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_fibers.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_float.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_gc.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_gdb.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_generators.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_hash.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_highlight.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_hrtime.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_inheritance.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_ini_parser.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_ini_scanner.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_ini.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_interfaces.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_iterators.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_language_parser.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_language_scanner.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_lazy_objects.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_list.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_llist.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_multibyte.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_object_handlers.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_objects_API.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_objects.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_observer.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_opcode.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_operators.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_property_hooks.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_ptr_stack.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_signal.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_smart_str.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_sort.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_stack.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_stream.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_string.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_strtod.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_system_id.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_variables.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_virtual_cwd.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_vm_opcodes.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend_weakrefs.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: zend.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: internal_functions_cli.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: fuzzer-parser.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: fuzzer-sapi.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: fuzzer-tracing-jit.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: fuzzer-exif.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: fuzzer-unserialize.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: fuzzer-function-jit.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: fuzzer-json.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: fuzzer-unserializehash.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: fuzzer-execute.c:ZSTR_COPY_CONCAT_PROPERTIES |
100 | | |
101 | 9.14k | static inline void ZSTR_COPY_CONCAT_PROPERTIES_BOTH(zend_string *out, const zend_string *in1, const zend_string *in2) { |
102 | 9.14k | uint32_t properties = ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH(in1, in2); |
103 | 9.14k | GC_ADD_FLAGS(out, properties); |
104 | 9.14k | } Unexecuted instantiation: php_date.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: astro.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: dow.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: parse_date.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: parse_tz.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: parse_posix.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: timelib.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: tm2unixtime.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: unixtime2tm.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: parse_iso_intervals.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: interval.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_pcre.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: exif.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_adler32.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_crc32.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_fnv.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_gost.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_haval.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_joaat.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_md.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_murmur.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_ripemd.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_sha_ni.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_sha_sse2.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_sha.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_sha3.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_snefru.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_tiger.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_whirlpool.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash_xxhash.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hash.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: json_encoder.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: json_parser.tab.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: json_scanner.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: json.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_lexbor.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: shared_alloc_mmap.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: shared_alloc_posix.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: shared_alloc_shm.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_accelerator_api.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_accelerator_blacklist.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_accelerator_debug.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_accelerator_hash.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_accelerator_module.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_accelerator_util_funcs.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_file_cache.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_persist_calc.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_persist.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_shared_alloc.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ZendAccelerator.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_cfg.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_check.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_dump.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_emit.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_gcm.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_gdb.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_patch.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_perf.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_ra.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_save.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_sccp.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir_strtab.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ir.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_jit_vm_helpers.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_jit.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: csprng.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: engine_mt19937.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: engine_secure.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: engine_user.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: engine_xoshiro256starstar.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: gammasection.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: random.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: randomizer.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_utils.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_reflection.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_spl.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: spl_array.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: spl_directory.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: spl_dllist.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: spl_exceptions.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: spl_fixedarray.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: spl_functions.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: spl_heap.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: spl_iterators.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: spl_observer.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: array.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: assert.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: base64.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: basic_functions.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: browscap.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: crc32_x86.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: crc32.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: credits.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: crypt.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: css.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: datetime.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: dir.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: dl.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: dns.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: exec.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: file.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: filestat.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: filters.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: flock_compat.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: formatted_print.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fsock.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ftok.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: ftp_fopen_wrapper.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: head.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: hrtime.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: html.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: http_fopen_wrapper.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: http.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: image.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: incomplete_class.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: info.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: iptc.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: levenshtein.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: link.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: mail.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: math.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: md5.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: metaphone.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: microtime.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: net.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: pack.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: pageinfo.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: password.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_fopen_wrapper.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: proc_open.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: quot_print.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: scanf.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: sha1.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: soundex.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: streamsfuncs.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: string.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: strnatcmp.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: syslog.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: type.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: uniqid.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: url_scanner_ex.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: url.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: user_filters.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: uuencode.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: var_unserializer.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: var.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: versioning.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: crypt_sha256.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: crypt_sha512.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_crypt_r.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_uri.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_uri_common.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: uri_parser_rfc3986.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: uri_parser_whatwg.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: uri_parser_php_parse_url.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: explicit_bzero.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fopen_wrappers.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: getopt.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: main.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: network.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: output.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_content_types.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_ini_builder.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_ini.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_glob.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_odbc_utils.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_open_temporary_file.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_scandir.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_syslog.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_ticks.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: php_variables.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: reentrancy.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: rfc1867.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: safe_bcmp.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: SAPI.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: snprintf.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: spprintf.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: strlcat.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: strlcpy.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: cast.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: filter.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: glob_wrapper.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: memory.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: mmap.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: plain_wrapper.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: stream_errors.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: streams.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: transports.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: userspace.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: xp_socket.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: block_pass.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: compact_literals.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: compact_vars.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: dce.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: dfa_pass.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: escape_analysis.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: nop_removal.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: optimize_func_calls.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: optimize_temp_vars_5.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: pass1.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: pass3.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: sccp.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: scdf.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_call_graph.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_cfg.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_dfg.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_dump.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_func_info.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_inference.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_optimizer.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_ssa.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_alloc.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_API.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_ast.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_attributes.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_autoload.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_builtin_functions.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_call_stack.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_closures.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_compile.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_constants.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_cpuinfo.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_default_classes.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_dtrace.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_enum.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_exceptions.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_execute_API.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH zend_execute.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Line | Count | Source | 101 | 9.14k | static inline void ZSTR_COPY_CONCAT_PROPERTIES_BOTH(zend_string *out, const zend_string *in1, const zend_string *in2) { | 102 | 9.14k | uint32_t properties = ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH(in1, in2); | 103 | 9.14k | GC_ADD_FLAGS(out, properties); | 104 | 9.14k | } |
Unexecuted instantiation: zend_extensions.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_fibers.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_float.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_gc.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_gdb.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_generators.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_hash.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_highlight.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_hrtime.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_inheritance.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_ini_parser.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_ini_scanner.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_ini.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_interfaces.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_iterators.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_language_parser.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_language_scanner.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_lazy_objects.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_list.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_llist.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_multibyte.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_object_handlers.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_objects_API.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_objects.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_observer.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_opcode.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_operators.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_property_hooks.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_ptr_stack.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_signal.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_smart_str.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_sort.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_stack.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_stream.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_string.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_strtod.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_system_id.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_variables.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_virtual_cwd.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_vm_opcodes.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend_weakrefs.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: zend.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: internal_functions_cli.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fuzzer-parser.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fuzzer-sapi.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fuzzer-tracing-jit.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fuzzer-exif.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fuzzer-unserialize.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fuzzer-function-jit.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fuzzer-json.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fuzzer-unserializehash.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fuzzer-execute.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH |
105 | | |
106 | 4.09M | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { |
107 | 4.09M | return zend_empty_string; |
108 | 4.09M | } php_date.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 8 | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 8 | return zend_empty_string; | 108 | 8 | } |
Unexecuted instantiation: astro.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: dow.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: parse_date.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: parse_tz.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: parse_posix.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: timelib.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: tm2unixtime.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: unixtime2tm.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: parse_iso_intervals.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: interval.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: php_pcre.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: exif.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: hash_adler32.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: hash_crc32.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: hash_fnv.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: hash_gost.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: hash_haval.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: hash_joaat.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: hash_md.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: hash_murmur.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: hash_ripemd.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: hash_sha_ni.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: hash_sha_sse2.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: hash_sha.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: hash_sha3.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: hash_snefru.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: hash_tiger.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: hash_whirlpool.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: hash_xxhash.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: hash.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: json_encoder.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: json_parser.tab.c:ZSTR_EMPTY_ALLOC json_scanner.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 20.4k | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 20.4k | return zend_empty_string; | 108 | 20.4k | } |
Line | Count | Source | 106 | 3 | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 3 | return zend_empty_string; | 108 | 3 | } |
Unexecuted instantiation: php_lexbor.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: shared_alloc_mmap.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: shared_alloc_posix.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: shared_alloc_shm.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_accelerator_api.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_accelerator_blacklist.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_accelerator_debug.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_accelerator_hash.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_accelerator_module.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_accelerator_util_funcs.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_file_cache.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_persist_calc.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_persist.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_shared_alloc.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: ZendAccelerator.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: ir_cfg.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: ir_check.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: ir_dump.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: ir_emit.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: ir_gcm.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: ir_gdb.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: ir_patch.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: ir_perf.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: ir_ra.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: ir_save.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: ir_sccp.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: ir_strtab.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: ir.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_jit_vm_helpers.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_jit.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: csprng.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: engine_mt19937.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: engine_secure.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: engine_user.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: engine_xoshiro256starstar.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: gammasection.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: random.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: randomizer.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_utils.c:ZSTR_EMPTY_ALLOC php_reflection.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 27 | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 27 | return zend_empty_string; | 108 | 27 | } |
Unexecuted instantiation: php_spl.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: spl_array.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: spl_directory.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: spl_dllist.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: spl_exceptions.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: spl_fixedarray.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: spl_functions.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: spl_heap.c:ZSTR_EMPTY_ALLOC spl_iterators.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 3.47k | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 3.47k | return zend_empty_string; | 108 | 3.47k | } |
Unexecuted instantiation: spl_observer.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: array.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: assert.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: base64.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: basic_functions.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: browscap.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: crc32_x86.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: crc32.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: credits.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: crypt.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: css.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: datetime.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: dir.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: dl.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: dns.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: exec.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: file.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: filestat.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: filters.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: flock_compat.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: formatted_print.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: fsock.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: ftok.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: ftp_fopen_wrapper.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: head.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: hrtime.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 215 | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 215 | return zend_empty_string; | 108 | 215 | } |
Unexecuted instantiation: http_fopen_wrapper.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: http.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: image.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: incomplete_class.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: info.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: iptc.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: levenshtein.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: link.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: mail.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: math.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: md5.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: metaphone.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: microtime.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: net.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: pack.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: pageinfo.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: password.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: php_fopen_wrapper.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: proc_open.c:ZSTR_EMPTY_ALLOC quot_print.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 2 | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 2 | return zend_empty_string; | 108 | 2 | } |
Unexecuted instantiation: scanf.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: sha1.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: soundex.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: streamsfuncs.c:ZSTR_EMPTY_ALLOC string.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 382 | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 382 | return zend_empty_string; | 108 | 382 | } |
Unexecuted instantiation: strnatcmp.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: syslog.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: type.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: uniqid.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: url_scanner_ex.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: url.c:ZSTR_EMPTY_ALLOC user_filters.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 32 | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 32 | return zend_empty_string; | 108 | 32 | } |
Unexecuted instantiation: uuencode.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: var_unserializer.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: var.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: versioning.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: crypt_sha256.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: crypt_sha512.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: php_crypt_r.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: php_uri.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: php_uri_common.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: uri_parser_rfc3986.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: uri_parser_whatwg.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: uri_parser_php_parse_url.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: explicit_bzero.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: fopen_wrappers.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: getopt.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 2.59M | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 2.59M | return zend_empty_string; | 108 | 2.59M | } |
Unexecuted instantiation: network.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: output.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: php_content_types.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: php_ini_builder.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: php_ini.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: php_glob.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: php_odbc_utils.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: php_open_temporary_file.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: php_scandir.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: php_syslog.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: php_ticks.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: php_variables.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: reentrancy.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: rfc1867.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: safe_bcmp.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: SAPI.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: snprintf.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: spprintf.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: strlcat.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: strlcpy.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: cast.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: filter.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: glob_wrapper.c:ZSTR_EMPTY_ALLOC memory.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 1.93k | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 1.93k | return zend_empty_string; | 108 | 1.93k | } |
Unexecuted instantiation: mmap.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: plain_wrapper.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: stream_errors.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: streams.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: transports.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: userspace.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: xp_socket.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: block_pass.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: compact_literals.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: compact_vars.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: dce.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: dfa_pass.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: escape_analysis.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: nop_removal.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: optimize_func_calls.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: optimize_temp_vars_5.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: pass1.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: pass3.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: sccp.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: scdf.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_call_graph.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_cfg.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_dfg.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_dump.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_func_info.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_inference.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_optimizer.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_ssa.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_alloc.c:ZSTR_EMPTY_ALLOC zend_API.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 26 | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 26 | return zend_empty_string; | 108 | 26 | } |
Unexecuted instantiation: zend_ast.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_attributes.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_autoload.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_builtin_functions.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_call_stack.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_closures.c:ZSTR_EMPTY_ALLOC zend_compile.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 4.19k | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 4.19k | return zend_empty_string; | 108 | 4.19k | } |
Unexecuted instantiation: zend_constants.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_cpuinfo.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_default_classes.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_dtrace.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_enum.c:ZSTR_EMPTY_ALLOC zend_exceptions.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 6.81k | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 6.81k | return zend_empty_string; | 108 | 6.81k | } |
Unexecuted instantiation: zend_execute_API.c:ZSTR_EMPTY_ALLOC zend_execute.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 18.1k | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 18.1k | return zend_empty_string; | 108 | 18.1k | } |
Unexecuted instantiation: zend_extensions.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_fibers.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_float.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_gc.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_gdb.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_generators.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_hash.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_highlight.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_hrtime.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_inheritance.c:ZSTR_EMPTY_ALLOC zend_ini_parser.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 608k | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 608k | return zend_empty_string; | 108 | 608k | } |
Unexecuted instantiation: zend_ini_scanner.c:ZSTR_EMPTY_ALLOC zend_ini.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 1.14k | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 1.14k | return zend_empty_string; | 108 | 1.14k | } |
Unexecuted instantiation: zend_interfaces.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_iterators.c:ZSTR_EMPTY_ALLOC zend_language_parser.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 1.69k | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 1.69k | return zend_empty_string; | 108 | 1.69k | } |
zend_language_scanner.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 48.6k | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 48.6k | return zend_empty_string; | 108 | 48.6k | } |
Unexecuted instantiation: zend_lazy_objects.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_list.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_llist.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_multibyte.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_object_handlers.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_objects_API.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_objects.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_observer.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_opcode.c:ZSTR_EMPTY_ALLOC zend_operators.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 709k | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 709k | return zend_empty_string; | 108 | 709k | } |
Unexecuted instantiation: zend_property_hooks.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_ptr_stack.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_signal.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_smart_str.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_sort.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_stack.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_stream.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_string.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_strtod.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_system_id.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_variables.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_virtual_cwd.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_vm_opcodes.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend_weakrefs.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: zend.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: internal_functions_cli.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: fuzzer-parser.c:ZSTR_EMPTY_ALLOC fuzzer-sapi.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 77.1k | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 77.1k | return zend_empty_string; | 108 | 77.1k | } |
Unexecuted instantiation: fuzzer-tracing-jit.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: fuzzer-exif.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: fuzzer-unserialize.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: fuzzer-function-jit.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: fuzzer-json.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: fuzzer-unserializehash.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: fuzzer-execute.c:ZSTR_EMPTY_ALLOC |
109 | | |
110 | 3.21M | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { |
111 | 3.21M | return zend_one_char_string[c]; |
112 | 3.21M | } Unexecuted instantiation: php_date.c:ZSTR_CHAR Unexecuted instantiation: astro.c:ZSTR_CHAR Unexecuted instantiation: dow.c:ZSTR_CHAR Unexecuted instantiation: parse_date.c:ZSTR_CHAR Unexecuted instantiation: parse_tz.c:ZSTR_CHAR Unexecuted instantiation: parse_posix.c:ZSTR_CHAR Unexecuted instantiation: timelib.c:ZSTR_CHAR Unexecuted instantiation: tm2unixtime.c:ZSTR_CHAR Unexecuted instantiation: unixtime2tm.c:ZSTR_CHAR Unexecuted instantiation: parse_iso_intervals.c:ZSTR_CHAR Unexecuted instantiation: interval.c:ZSTR_CHAR Line | Count | Source | 110 | 467 | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 467 | return zend_one_char_string[c]; | 112 | 467 | } |
Unexecuted instantiation: exif.c:ZSTR_CHAR Unexecuted instantiation: hash_adler32.c:ZSTR_CHAR Unexecuted instantiation: hash_crc32.c:ZSTR_CHAR Unexecuted instantiation: hash_fnv.c:ZSTR_CHAR Unexecuted instantiation: hash_gost.c:ZSTR_CHAR Unexecuted instantiation: hash_haval.c:ZSTR_CHAR Unexecuted instantiation: hash_joaat.c:ZSTR_CHAR Unexecuted instantiation: hash_md.c:ZSTR_CHAR Unexecuted instantiation: hash_murmur.c:ZSTR_CHAR Unexecuted instantiation: hash_ripemd.c:ZSTR_CHAR Unexecuted instantiation: hash_sha_ni.c:ZSTR_CHAR Unexecuted instantiation: hash_sha_sse2.c:ZSTR_CHAR Unexecuted instantiation: hash_sha.c:ZSTR_CHAR Unexecuted instantiation: hash_sha3.c:ZSTR_CHAR Unexecuted instantiation: hash_snefru.c:ZSTR_CHAR Unexecuted instantiation: hash_tiger.c:ZSTR_CHAR Unexecuted instantiation: hash_whirlpool.c:ZSTR_CHAR Unexecuted instantiation: hash_xxhash.c:ZSTR_CHAR Unexecuted instantiation: hash.c:ZSTR_CHAR Unexecuted instantiation: json_encoder.c:ZSTR_CHAR Unexecuted instantiation: json_parser.tab.c:ZSTR_CHAR Unexecuted instantiation: json_scanner.c:ZSTR_CHAR Unexecuted instantiation: json.c:ZSTR_CHAR Unexecuted instantiation: php_lexbor.c:ZSTR_CHAR Unexecuted instantiation: shared_alloc_mmap.c:ZSTR_CHAR Unexecuted instantiation: shared_alloc_posix.c:ZSTR_CHAR Unexecuted instantiation: shared_alloc_shm.c:ZSTR_CHAR Unexecuted instantiation: zend_accelerator_api.c:ZSTR_CHAR Unexecuted instantiation: zend_accelerator_blacklist.c:ZSTR_CHAR Unexecuted instantiation: zend_accelerator_debug.c:ZSTR_CHAR Unexecuted instantiation: zend_accelerator_hash.c:ZSTR_CHAR Unexecuted instantiation: zend_accelerator_module.c:ZSTR_CHAR Unexecuted instantiation: zend_accelerator_util_funcs.c:ZSTR_CHAR Unexecuted instantiation: zend_file_cache.c:ZSTR_CHAR Unexecuted instantiation: zend_persist_calc.c:ZSTR_CHAR Unexecuted instantiation: zend_persist.c:ZSTR_CHAR Unexecuted instantiation: zend_shared_alloc.c:ZSTR_CHAR ZendAccelerator.c:ZSTR_CHAR Line | Count | Source | 110 | 4.09k | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 4.09k | return zend_one_char_string[c]; | 112 | 4.09k | } |
Unexecuted instantiation: ir_cfg.c:ZSTR_CHAR Unexecuted instantiation: ir_check.c:ZSTR_CHAR Unexecuted instantiation: ir_dump.c:ZSTR_CHAR Unexecuted instantiation: ir_emit.c:ZSTR_CHAR Unexecuted instantiation: ir_gcm.c:ZSTR_CHAR Unexecuted instantiation: ir_gdb.c:ZSTR_CHAR Unexecuted instantiation: ir_patch.c:ZSTR_CHAR Unexecuted instantiation: ir_perf.c:ZSTR_CHAR Unexecuted instantiation: ir_ra.c:ZSTR_CHAR Unexecuted instantiation: ir_save.c:ZSTR_CHAR Unexecuted instantiation: ir_sccp.c:ZSTR_CHAR Unexecuted instantiation: ir_strtab.c:ZSTR_CHAR Unexecuted instantiation: ir.c:ZSTR_CHAR Unexecuted instantiation: zend_jit_vm_helpers.c:ZSTR_CHAR Unexecuted instantiation: zend_jit.c:ZSTR_CHAR Unexecuted instantiation: csprng.c:ZSTR_CHAR Unexecuted instantiation: engine_mt19937.c:ZSTR_CHAR Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:ZSTR_CHAR Unexecuted instantiation: engine_secure.c:ZSTR_CHAR Unexecuted instantiation: engine_user.c:ZSTR_CHAR Unexecuted instantiation: engine_xoshiro256starstar.c:ZSTR_CHAR Unexecuted instantiation: gammasection.c:ZSTR_CHAR Unexecuted instantiation: random.c:ZSTR_CHAR Unexecuted instantiation: randomizer.c:ZSTR_CHAR Unexecuted instantiation: zend_utils.c:ZSTR_CHAR Unexecuted instantiation: php_reflection.c:ZSTR_CHAR Unexecuted instantiation: php_spl.c:ZSTR_CHAR Unexecuted instantiation: spl_array.c:ZSTR_CHAR spl_directory.c:ZSTR_CHAR Line | Count | Source | 110 | 1 | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 1 | return zend_one_char_string[c]; | 112 | 1 | } |
Unexecuted instantiation: spl_dllist.c:ZSTR_CHAR Unexecuted instantiation: spl_exceptions.c:ZSTR_CHAR Unexecuted instantiation: spl_fixedarray.c:ZSTR_CHAR Unexecuted instantiation: spl_functions.c:ZSTR_CHAR Unexecuted instantiation: spl_heap.c:ZSTR_CHAR Unexecuted instantiation: spl_iterators.c:ZSTR_CHAR Unexecuted instantiation: spl_observer.c:ZSTR_CHAR Line | Count | Source | 110 | 646 | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 646 | return zend_one_char_string[c]; | 112 | 646 | } |
Unexecuted instantiation: assert.c:ZSTR_CHAR Unexecuted instantiation: base64.c:ZSTR_CHAR basic_functions.c:ZSTR_CHAR Line | Count | Source | 110 | 15 | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 15 | return zend_one_char_string[c]; | 112 | 15 | } |
Unexecuted instantiation: browscap.c:ZSTR_CHAR Unexecuted instantiation: crc32_x86.c:ZSTR_CHAR Unexecuted instantiation: crc32.c:ZSTR_CHAR Unexecuted instantiation: credits.c:ZSTR_CHAR Unexecuted instantiation: crypt.c:ZSTR_CHAR Unexecuted instantiation: css.c:ZSTR_CHAR Unexecuted instantiation: datetime.c:ZSTR_CHAR Unexecuted instantiation: dir.c:ZSTR_CHAR Unexecuted instantiation: dl.c:ZSTR_CHAR Unexecuted instantiation: dns.c:ZSTR_CHAR Unexecuted instantiation: exec.c:ZSTR_CHAR Unexecuted instantiation: file.c:ZSTR_CHAR Unexecuted instantiation: filestat.c:ZSTR_CHAR Unexecuted instantiation: filters.c:ZSTR_CHAR Unexecuted instantiation: flock_compat.c:ZSTR_CHAR Unexecuted instantiation: formatted_print.c:ZSTR_CHAR Unexecuted instantiation: fsock.c:ZSTR_CHAR Unexecuted instantiation: ftok.c:ZSTR_CHAR Unexecuted instantiation: ftp_fopen_wrapper.c:ZSTR_CHAR Unexecuted instantiation: head.c:ZSTR_CHAR Unexecuted instantiation: hrtime.c:ZSTR_CHAR Unexecuted instantiation: html.c:ZSTR_CHAR Unexecuted instantiation: http_fopen_wrapper.c:ZSTR_CHAR Unexecuted instantiation: http.c:ZSTR_CHAR Unexecuted instantiation: image.c:ZSTR_CHAR Unexecuted instantiation: incomplete_class.c:ZSTR_CHAR Unexecuted instantiation: info.c:ZSTR_CHAR Unexecuted instantiation: iptc.c:ZSTR_CHAR Unexecuted instantiation: levenshtein.c:ZSTR_CHAR Unexecuted instantiation: link.c:ZSTR_CHAR Unexecuted instantiation: mail.c:ZSTR_CHAR Unexecuted instantiation: math.c:ZSTR_CHAR Unexecuted instantiation: md5.c:ZSTR_CHAR Unexecuted instantiation: metaphone.c:ZSTR_CHAR Unexecuted instantiation: microtime.c:ZSTR_CHAR Unexecuted instantiation: net.c:ZSTR_CHAR Unexecuted instantiation: pack.c:ZSTR_CHAR Unexecuted instantiation: pageinfo.c:ZSTR_CHAR Unexecuted instantiation: password.c:ZSTR_CHAR Unexecuted instantiation: php_fopen_wrapper.c:ZSTR_CHAR Unexecuted instantiation: proc_open.c:ZSTR_CHAR Unexecuted instantiation: quot_print.c:ZSTR_CHAR Unexecuted instantiation: scanf.c:ZSTR_CHAR Unexecuted instantiation: sha1.c:ZSTR_CHAR Unexecuted instantiation: soundex.c:ZSTR_CHAR Unexecuted instantiation: streamsfuncs.c:ZSTR_CHAR Line | Count | Source | 110 | 488 | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 488 | return zend_one_char_string[c]; | 112 | 488 | } |
Unexecuted instantiation: strnatcmp.c:ZSTR_CHAR Unexecuted instantiation: syslog.c:ZSTR_CHAR Unexecuted instantiation: type.c:ZSTR_CHAR Unexecuted instantiation: uniqid.c:ZSTR_CHAR Unexecuted instantiation: url_scanner_ex.c:ZSTR_CHAR Unexecuted instantiation: url.c:ZSTR_CHAR Unexecuted instantiation: user_filters.c:ZSTR_CHAR Unexecuted instantiation: uuencode.c:ZSTR_CHAR var_unserializer.c:ZSTR_CHAR Line | Count | Source | 110 | 2.81k | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 2.81k | return zend_one_char_string[c]; | 112 | 2.81k | } |
Unexecuted instantiation: var.c:ZSTR_CHAR Unexecuted instantiation: versioning.c:ZSTR_CHAR Unexecuted instantiation: crypt_sha256.c:ZSTR_CHAR Unexecuted instantiation: crypt_sha512.c:ZSTR_CHAR Unexecuted instantiation: php_crypt_r.c:ZSTR_CHAR Unexecuted instantiation: php_uri.c:ZSTR_CHAR Unexecuted instantiation: php_uri_common.c:ZSTR_CHAR Unexecuted instantiation: uri_parser_rfc3986.c:ZSTR_CHAR Unexecuted instantiation: uri_parser_whatwg.c:ZSTR_CHAR Unexecuted instantiation: uri_parser_php_parse_url.c:ZSTR_CHAR Unexecuted instantiation: explicit_bzero.c:ZSTR_CHAR Unexecuted instantiation: fopen_wrappers.c:ZSTR_CHAR Unexecuted instantiation: getopt.c:ZSTR_CHAR Unexecuted instantiation: main.c:ZSTR_CHAR Unexecuted instantiation: network.c:ZSTR_CHAR Unexecuted instantiation: output.c:ZSTR_CHAR Unexecuted instantiation: php_content_types.c:ZSTR_CHAR Unexecuted instantiation: php_ini_builder.c:ZSTR_CHAR Unexecuted instantiation: php_ini.c:ZSTR_CHAR Unexecuted instantiation: php_glob.c:ZSTR_CHAR Unexecuted instantiation: php_odbc_utils.c:ZSTR_CHAR Unexecuted instantiation: php_open_temporary_file.c:ZSTR_CHAR Unexecuted instantiation: php_scandir.c:ZSTR_CHAR Unexecuted instantiation: php_syslog.c:ZSTR_CHAR Unexecuted instantiation: php_ticks.c:ZSTR_CHAR php_variables.c:ZSTR_CHAR Line | Count | Source | 110 | 309 | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 309 | return zend_one_char_string[c]; | 112 | 309 | } |
Unexecuted instantiation: reentrancy.c:ZSTR_CHAR Unexecuted instantiation: rfc1867.c:ZSTR_CHAR Unexecuted instantiation: safe_bcmp.c:ZSTR_CHAR Unexecuted instantiation: SAPI.c:ZSTR_CHAR Unexecuted instantiation: snprintf.c:ZSTR_CHAR Unexecuted instantiation: spprintf.c:ZSTR_CHAR Unexecuted instantiation: strlcat.c:ZSTR_CHAR Unexecuted instantiation: strlcpy.c:ZSTR_CHAR Unexecuted instantiation: cast.c:ZSTR_CHAR Unexecuted instantiation: filter.c:ZSTR_CHAR Unexecuted instantiation: glob_wrapper.c:ZSTR_CHAR Unexecuted instantiation: memory.c:ZSTR_CHAR Unexecuted instantiation: mmap.c:ZSTR_CHAR Unexecuted instantiation: plain_wrapper.c:ZSTR_CHAR Unexecuted instantiation: stream_errors.c:ZSTR_CHAR Unexecuted instantiation: streams.c:ZSTR_CHAR Unexecuted instantiation: transports.c:ZSTR_CHAR Unexecuted instantiation: userspace.c:ZSTR_CHAR Unexecuted instantiation: xp_socket.c:ZSTR_CHAR Unexecuted instantiation: block_pass.c:ZSTR_CHAR Unexecuted instantiation: compact_literals.c:ZSTR_CHAR Unexecuted instantiation: compact_vars.c:ZSTR_CHAR Unexecuted instantiation: dce.c:ZSTR_CHAR Unexecuted instantiation: dfa_pass.c:ZSTR_CHAR Unexecuted instantiation: escape_analysis.c:ZSTR_CHAR Unexecuted instantiation: nop_removal.c:ZSTR_CHAR Unexecuted instantiation: optimize_func_calls.c:ZSTR_CHAR Unexecuted instantiation: optimize_temp_vars_5.c:ZSTR_CHAR Unexecuted instantiation: pass1.c:ZSTR_CHAR Unexecuted instantiation: pass3.c:ZSTR_CHAR Line | Count | Source | 110 | 18 | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 18 | return zend_one_char_string[c]; | 112 | 18 | } |
Unexecuted instantiation: scdf.c:ZSTR_CHAR Unexecuted instantiation: zend_call_graph.c:ZSTR_CHAR Unexecuted instantiation: zend_cfg.c:ZSTR_CHAR Unexecuted instantiation: zend_dfg.c:ZSTR_CHAR Unexecuted instantiation: zend_dump.c:ZSTR_CHAR Unexecuted instantiation: zend_func_info.c:ZSTR_CHAR Unexecuted instantiation: zend_inference.c:ZSTR_CHAR Unexecuted instantiation: zend_optimizer.c:ZSTR_CHAR Unexecuted instantiation: zend_ssa.c:ZSTR_CHAR Unexecuted instantiation: zend_alloc.c:ZSTR_CHAR Unexecuted instantiation: zend_API.c:ZSTR_CHAR Unexecuted instantiation: zend_ast.c:ZSTR_CHAR Unexecuted instantiation: zend_attributes.c:ZSTR_CHAR Unexecuted instantiation: zend_autoload.c:ZSTR_CHAR Unexecuted instantiation: zend_builtin_functions.c:ZSTR_CHAR Unexecuted instantiation: zend_call_stack.c:ZSTR_CHAR Unexecuted instantiation: zend_closures.c:ZSTR_CHAR Line | Count | Source | 110 | 644 | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 644 | return zend_one_char_string[c]; | 112 | 644 | } |
Unexecuted instantiation: zend_constants.c:ZSTR_CHAR Unexecuted instantiation: zend_cpuinfo.c:ZSTR_CHAR Unexecuted instantiation: zend_default_classes.c:ZSTR_CHAR Unexecuted instantiation: zend_dtrace.c:ZSTR_CHAR Unexecuted instantiation: zend_enum.c:ZSTR_CHAR Unexecuted instantiation: zend_exceptions.c:ZSTR_CHAR Unexecuted instantiation: zend_execute_API.c:ZSTR_CHAR Line | Count | Source | 110 | 2.08k | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 2.08k | return zend_one_char_string[c]; | 112 | 2.08k | } |
Unexecuted instantiation: zend_extensions.c:ZSTR_CHAR Unexecuted instantiation: zend_fibers.c:ZSTR_CHAR Unexecuted instantiation: zend_float.c:ZSTR_CHAR Unexecuted instantiation: zend_gc.c:ZSTR_CHAR Unexecuted instantiation: zend_gdb.c:ZSTR_CHAR Unexecuted instantiation: zend_generators.c:ZSTR_CHAR Unexecuted instantiation: zend_hash.c:ZSTR_CHAR Unexecuted instantiation: zend_highlight.c:ZSTR_CHAR Unexecuted instantiation: zend_hrtime.c:ZSTR_CHAR Unexecuted instantiation: zend_inheritance.c:ZSTR_CHAR Unexecuted instantiation: zend_ini_parser.c:ZSTR_CHAR Unexecuted instantiation: zend_ini_scanner.c:ZSTR_CHAR Unexecuted instantiation: zend_ini.c:ZSTR_CHAR Unexecuted instantiation: zend_interfaces.c:ZSTR_CHAR Unexecuted instantiation: zend_iterators.c:ZSTR_CHAR Unexecuted instantiation: zend_language_parser.c:ZSTR_CHAR zend_language_scanner.c:ZSTR_CHAR Line | Count | Source | 110 | 2.30M | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 2.30M | return zend_one_char_string[c]; | 112 | 2.30M | } |
Unexecuted instantiation: zend_lazy_objects.c:ZSTR_CHAR Unexecuted instantiation: zend_list.c:ZSTR_CHAR Unexecuted instantiation: zend_llist.c:ZSTR_CHAR Unexecuted instantiation: zend_multibyte.c:ZSTR_CHAR Unexecuted instantiation: zend_object_handlers.c:ZSTR_CHAR Unexecuted instantiation: zend_objects_API.c:ZSTR_CHAR Unexecuted instantiation: zend_objects.c:ZSTR_CHAR Unexecuted instantiation: zend_observer.c:ZSTR_CHAR Unexecuted instantiation: zend_opcode.c:ZSTR_CHAR zend_operators.c:ZSTR_CHAR Line | Count | Source | 110 | 900k | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 900k | return zend_one_char_string[c]; | 112 | 900k | } |
Unexecuted instantiation: zend_property_hooks.c:ZSTR_CHAR Unexecuted instantiation: zend_ptr_stack.c:ZSTR_CHAR Unexecuted instantiation: zend_signal.c:ZSTR_CHAR Unexecuted instantiation: zend_smart_str.c:ZSTR_CHAR Unexecuted instantiation: zend_sort.c:ZSTR_CHAR Unexecuted instantiation: zend_stack.c:ZSTR_CHAR Unexecuted instantiation: zend_stream.c:ZSTR_CHAR Unexecuted instantiation: zend_string.c:ZSTR_CHAR Unexecuted instantiation: zend_strtod.c:ZSTR_CHAR Unexecuted instantiation: zend_system_id.c:ZSTR_CHAR Unexecuted instantiation: zend_variables.c:ZSTR_CHAR Unexecuted instantiation: zend_virtual_cwd.c:ZSTR_CHAR Unexecuted instantiation: zend_vm_opcodes.c:ZSTR_CHAR Unexecuted instantiation: zend_weakrefs.c:ZSTR_CHAR Unexecuted instantiation: zend.c:ZSTR_CHAR Unexecuted instantiation: internal_functions_cli.c:ZSTR_CHAR Unexecuted instantiation: fuzzer-parser.c:ZSTR_CHAR Unexecuted instantiation: fuzzer-sapi.c:ZSTR_CHAR Unexecuted instantiation: fuzzer-tracing-jit.c:ZSTR_CHAR Unexecuted instantiation: fuzzer-exif.c:ZSTR_CHAR Unexecuted instantiation: fuzzer-unserialize.c:ZSTR_CHAR Unexecuted instantiation: fuzzer-function-jit.c:ZSTR_CHAR Unexecuted instantiation: fuzzer-json.c:ZSTR_CHAR Unexecuted instantiation: fuzzer-unserializehash.c:ZSTR_CHAR Unexecuted instantiation: fuzzer-execute.c:ZSTR_CHAR |
113 | | |
114 | 59.2M | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { |
115 | 59.2M | return zend_known_strings[idx]; |
116 | 59.2M | } Line | Count | Source | 114 | 1.10k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 1.10k | return zend_known_strings[idx]; | 116 | 1.10k | } |
Unexecuted instantiation: astro.c:ZSTR_KNOWN Unexecuted instantiation: dow.c:ZSTR_KNOWN Unexecuted instantiation: parse_date.c:ZSTR_KNOWN Unexecuted instantiation: parse_tz.c:ZSTR_KNOWN Unexecuted instantiation: parse_posix.c:ZSTR_KNOWN Unexecuted instantiation: timelib.c:ZSTR_KNOWN Unexecuted instantiation: tm2unixtime.c:ZSTR_KNOWN Unexecuted instantiation: unixtime2tm.c:ZSTR_KNOWN Unexecuted instantiation: parse_iso_intervals.c:ZSTR_KNOWN Unexecuted instantiation: interval.c:ZSTR_KNOWN Unexecuted instantiation: php_pcre.c:ZSTR_KNOWN Unexecuted instantiation: exif.c:ZSTR_KNOWN Unexecuted instantiation: hash_adler32.c:ZSTR_KNOWN Unexecuted instantiation: hash_crc32.c:ZSTR_KNOWN Unexecuted instantiation: hash_fnv.c:ZSTR_KNOWN Unexecuted instantiation: hash_gost.c:ZSTR_KNOWN Unexecuted instantiation: hash_haval.c:ZSTR_KNOWN Unexecuted instantiation: hash_joaat.c:ZSTR_KNOWN Unexecuted instantiation: hash_md.c:ZSTR_KNOWN Unexecuted instantiation: hash_murmur.c:ZSTR_KNOWN Unexecuted instantiation: hash_ripemd.c:ZSTR_KNOWN Unexecuted instantiation: hash_sha_ni.c:ZSTR_KNOWN Unexecuted instantiation: hash_sha_sse2.c:ZSTR_KNOWN Unexecuted instantiation: hash_sha.c:ZSTR_KNOWN Unexecuted instantiation: hash_sha3.c:ZSTR_KNOWN Unexecuted instantiation: hash_snefru.c:ZSTR_KNOWN Unexecuted instantiation: hash_tiger.c:ZSTR_KNOWN Unexecuted instantiation: hash_whirlpool.c:ZSTR_KNOWN Unexecuted instantiation: hash_xxhash.c:ZSTR_KNOWN Line | Count | Source | 114 | 112 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 112 | return zend_known_strings[idx]; | 116 | 112 | } |
Unexecuted instantiation: json_encoder.c:ZSTR_KNOWN Unexecuted instantiation: json_parser.tab.c:ZSTR_KNOWN Unexecuted instantiation: json_scanner.c:ZSTR_KNOWN Unexecuted instantiation: json.c:ZSTR_KNOWN Unexecuted instantiation: php_lexbor.c:ZSTR_KNOWN Unexecuted instantiation: shared_alloc_mmap.c:ZSTR_KNOWN Unexecuted instantiation: shared_alloc_posix.c:ZSTR_KNOWN Unexecuted instantiation: shared_alloc_shm.c:ZSTR_KNOWN Unexecuted instantiation: zend_accelerator_api.c:ZSTR_KNOWN Unexecuted instantiation: zend_accelerator_blacklist.c:ZSTR_KNOWN Unexecuted instantiation: zend_accelerator_debug.c:ZSTR_KNOWN Unexecuted instantiation: zend_accelerator_hash.c:ZSTR_KNOWN Unexecuted instantiation: zend_accelerator_module.c:ZSTR_KNOWN Unexecuted instantiation: zend_accelerator_util_funcs.c:ZSTR_KNOWN Unexecuted instantiation: zend_file_cache.c:ZSTR_KNOWN Unexecuted instantiation: zend_persist_calc.c:ZSTR_KNOWN zend_persist.c:ZSTR_KNOWN Line | Count | Source | 114 | 69.2k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 69.2k | return zend_known_strings[idx]; | 116 | 69.2k | } |
Unexecuted instantiation: zend_shared_alloc.c:ZSTR_KNOWN ZendAccelerator.c:ZSTR_KNOWN Line | Count | Source | 114 | 150k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 150k | return zend_known_strings[idx]; | 116 | 150k | } |
Unexecuted instantiation: ir_cfg.c:ZSTR_KNOWN Unexecuted instantiation: ir_check.c:ZSTR_KNOWN Unexecuted instantiation: ir_dump.c:ZSTR_KNOWN Unexecuted instantiation: ir_emit.c:ZSTR_KNOWN Unexecuted instantiation: ir_gcm.c:ZSTR_KNOWN Unexecuted instantiation: ir_gdb.c:ZSTR_KNOWN Unexecuted instantiation: ir_patch.c:ZSTR_KNOWN Unexecuted instantiation: ir_perf.c:ZSTR_KNOWN Unexecuted instantiation: ir_ra.c:ZSTR_KNOWN Unexecuted instantiation: ir_save.c:ZSTR_KNOWN Unexecuted instantiation: ir_sccp.c:ZSTR_KNOWN Unexecuted instantiation: ir_strtab.c:ZSTR_KNOWN Unexecuted instantiation: ir.c:ZSTR_KNOWN Unexecuted instantiation: zend_jit_vm_helpers.c:ZSTR_KNOWN Unexecuted instantiation: zend_jit.c:ZSTR_KNOWN Unexecuted instantiation: csprng.c:ZSTR_KNOWN Unexecuted instantiation: engine_mt19937.c:ZSTR_KNOWN Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:ZSTR_KNOWN Unexecuted instantiation: engine_secure.c:ZSTR_KNOWN Unexecuted instantiation: engine_user.c:ZSTR_KNOWN Unexecuted instantiation: engine_xoshiro256starstar.c:ZSTR_KNOWN Unexecuted instantiation: gammasection.c:ZSTR_KNOWN Line | Count | Source | 114 | 128 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 128 | return zend_known_strings[idx]; | 116 | 128 | } |
Unexecuted instantiation: randomizer.c:ZSTR_KNOWN Unexecuted instantiation: zend_utils.c:ZSTR_KNOWN php_reflection.c:ZSTR_KNOWN Line | Count | Source | 114 | 611 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 611 | return zend_known_strings[idx]; | 116 | 611 | } |
Unexecuted instantiation: php_spl.c:ZSTR_KNOWN Line | Count | Source | 114 | 50 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 50 | return zend_known_strings[idx]; | 116 | 50 | } |
spl_directory.c:ZSTR_KNOWN Line | Count | Source | 114 | 48 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 48 | return zend_known_strings[idx]; | 116 | 48 | } |
Line | Count | Source | 114 | 247 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 247 | return zend_known_strings[idx]; | 116 | 247 | } |
Unexecuted instantiation: spl_exceptions.c:ZSTR_KNOWN spl_fixedarray.c:ZSTR_KNOWN Line | Count | Source | 114 | 64 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 64 | return zend_known_strings[idx]; | 116 | 64 | } |
Unexecuted instantiation: spl_functions.c:ZSTR_KNOWN Unexecuted instantiation: spl_heap.c:ZSTR_KNOWN Unexecuted instantiation: spl_iterators.c:ZSTR_KNOWN spl_observer.c:ZSTR_KNOWN Line | Count | Source | 114 | 192 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 192 | return zend_known_strings[idx]; | 116 | 192 | } |
Line | Count | Source | 114 | 65 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 65 | return zend_known_strings[idx]; | 116 | 65 | } |
Unexecuted instantiation: assert.c:ZSTR_KNOWN Unexecuted instantiation: base64.c:ZSTR_KNOWN basic_functions.c:ZSTR_KNOWN Line | Count | Source | 114 | 226k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 226k | return zend_known_strings[idx]; | 116 | 226k | } |
Unexecuted instantiation: browscap.c:ZSTR_KNOWN Unexecuted instantiation: crc32_x86.c:ZSTR_KNOWN Unexecuted instantiation: crc32.c:ZSTR_KNOWN Unexecuted instantiation: credits.c:ZSTR_KNOWN Unexecuted instantiation: crypt.c:ZSTR_KNOWN Unexecuted instantiation: css.c:ZSTR_KNOWN Unexecuted instantiation: datetime.c:ZSTR_KNOWN Line | Count | Source | 114 | 16 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 16 | return zend_known_strings[idx]; | 116 | 16 | } |
Unexecuted instantiation: dl.c:ZSTR_KNOWN Unexecuted instantiation: dns.c:ZSTR_KNOWN Unexecuted instantiation: exec.c:ZSTR_KNOWN Line | Count | Source | 114 | 128 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 128 | return zend_known_strings[idx]; | 116 | 128 | } |
Unexecuted instantiation: filestat.c:ZSTR_KNOWN Unexecuted instantiation: filters.c:ZSTR_KNOWN Unexecuted instantiation: flock_compat.c:ZSTR_KNOWN Unexecuted instantiation: formatted_print.c:ZSTR_KNOWN Unexecuted instantiation: fsock.c:ZSTR_KNOWN Unexecuted instantiation: ftok.c:ZSTR_KNOWN Unexecuted instantiation: ftp_fopen_wrapper.c:ZSTR_KNOWN Unexecuted instantiation: head.c:ZSTR_KNOWN Unexecuted instantiation: hrtime.c:ZSTR_KNOWN Unexecuted instantiation: html.c:ZSTR_KNOWN Unexecuted instantiation: http_fopen_wrapper.c:ZSTR_KNOWN Unexecuted instantiation: http.c:ZSTR_KNOWN Unexecuted instantiation: image.c:ZSTR_KNOWN Unexecuted instantiation: incomplete_class.c:ZSTR_KNOWN Unexecuted instantiation: info.c:ZSTR_KNOWN Unexecuted instantiation: iptc.c:ZSTR_KNOWN Unexecuted instantiation: levenshtein.c:ZSTR_KNOWN Unexecuted instantiation: link.c:ZSTR_KNOWN Unexecuted instantiation: mail.c:ZSTR_KNOWN Unexecuted instantiation: math.c:ZSTR_KNOWN Unexecuted instantiation: md5.c:ZSTR_KNOWN Unexecuted instantiation: metaphone.c:ZSTR_KNOWN Unexecuted instantiation: microtime.c:ZSTR_KNOWN Unexecuted instantiation: net.c:ZSTR_KNOWN Unexecuted instantiation: pack.c:ZSTR_KNOWN Unexecuted instantiation: pageinfo.c:ZSTR_KNOWN Unexecuted instantiation: password.c:ZSTR_KNOWN Unexecuted instantiation: php_fopen_wrapper.c:ZSTR_KNOWN Unexecuted instantiation: proc_open.c:ZSTR_KNOWN Unexecuted instantiation: quot_print.c:ZSTR_KNOWN Unexecuted instantiation: scanf.c:ZSTR_KNOWN Unexecuted instantiation: sha1.c:ZSTR_KNOWN Unexecuted instantiation: soundex.c:ZSTR_KNOWN Unexecuted instantiation: streamsfuncs.c:ZSTR_KNOWN Unexecuted instantiation: string.c:ZSTR_KNOWN Unexecuted instantiation: strnatcmp.c:ZSTR_KNOWN Unexecuted instantiation: syslog.c:ZSTR_KNOWN Line | Count | Source | 114 | 953 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 953 | return zend_known_strings[idx]; | 116 | 953 | } |
Unexecuted instantiation: uniqid.c:ZSTR_KNOWN Unexecuted instantiation: url_scanner_ex.c:ZSTR_KNOWN Unexecuted instantiation: url.c:ZSTR_KNOWN Unexecuted instantiation: user_filters.c:ZSTR_KNOWN Unexecuted instantiation: uuencode.c:ZSTR_KNOWN var_unserializer.c:ZSTR_KNOWN Line | Count | Source | 114 | 97.7k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 97.7k | return zend_known_strings[idx]; | 116 | 97.7k | } |
Line | Count | Source | 114 | 419 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 419 | return zend_known_strings[idx]; | 116 | 419 | } |
Unexecuted instantiation: versioning.c:ZSTR_KNOWN Unexecuted instantiation: crypt_sha256.c:ZSTR_KNOWN Unexecuted instantiation: crypt_sha512.c:ZSTR_KNOWN Unexecuted instantiation: php_crypt_r.c:ZSTR_KNOWN Line | Count | Source | 114 | 48 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 48 | return zend_known_strings[idx]; | 116 | 48 | } |
Unexecuted instantiation: php_uri_common.c:ZSTR_KNOWN Unexecuted instantiation: uri_parser_rfc3986.c:ZSTR_KNOWN Unexecuted instantiation: uri_parser_whatwg.c:ZSTR_KNOWN Unexecuted instantiation: uri_parser_php_parse_url.c:ZSTR_KNOWN Unexecuted instantiation: explicit_bzero.c:ZSTR_KNOWN Unexecuted instantiation: fopen_wrappers.c:ZSTR_KNOWN Unexecuted instantiation: getopt.c:ZSTR_KNOWN Line | Count | Source | 114 | 16 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 16 | return zend_known_strings[idx]; | 116 | 16 | } |
Unexecuted instantiation: network.c:ZSTR_KNOWN Unexecuted instantiation: output.c:ZSTR_KNOWN Unexecuted instantiation: php_content_types.c:ZSTR_KNOWN Unexecuted instantiation: php_ini_builder.c:ZSTR_KNOWN Unexecuted instantiation: php_ini.c:ZSTR_KNOWN Unexecuted instantiation: php_glob.c:ZSTR_KNOWN Unexecuted instantiation: php_odbc_utils.c:ZSTR_KNOWN Unexecuted instantiation: php_open_temporary_file.c:ZSTR_KNOWN Unexecuted instantiation: php_scandir.c:ZSTR_KNOWN Unexecuted instantiation: php_syslog.c:ZSTR_KNOWN Unexecuted instantiation: php_ticks.c:ZSTR_KNOWN php_variables.c:ZSTR_KNOWN Line | Count | Source | 114 | 48 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 48 | return zend_known_strings[idx]; | 116 | 48 | } |
Unexecuted instantiation: reentrancy.c:ZSTR_KNOWN Unexecuted instantiation: rfc1867.c:ZSTR_KNOWN Unexecuted instantiation: safe_bcmp.c:ZSTR_KNOWN Unexecuted instantiation: SAPI.c:ZSTR_KNOWN Unexecuted instantiation: snprintf.c:ZSTR_KNOWN Unexecuted instantiation: spprintf.c:ZSTR_KNOWN Unexecuted instantiation: strlcat.c:ZSTR_KNOWN Unexecuted instantiation: strlcpy.c:ZSTR_KNOWN Unexecuted instantiation: cast.c:ZSTR_KNOWN Unexecuted instantiation: filter.c:ZSTR_KNOWN Unexecuted instantiation: glob_wrapper.c:ZSTR_KNOWN Unexecuted instantiation: memory.c:ZSTR_KNOWN Unexecuted instantiation: mmap.c:ZSTR_KNOWN Unexecuted instantiation: plain_wrapper.c:ZSTR_KNOWN stream_errors.c:ZSTR_KNOWN Line | Count | Source | 114 | 48 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 48 | return zend_known_strings[idx]; | 116 | 48 | } |
Line | Count | Source | 114 | 62 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 62 | return zend_known_strings[idx]; | 116 | 62 | } |
Unexecuted instantiation: transports.c:ZSTR_KNOWN Unexecuted instantiation: userspace.c:ZSTR_KNOWN Unexecuted instantiation: xp_socket.c:ZSTR_KNOWN Unexecuted instantiation: block_pass.c:ZSTR_KNOWN Unexecuted instantiation: compact_literals.c:ZSTR_KNOWN Unexecuted instantiation: compact_vars.c:ZSTR_KNOWN Unexecuted instantiation: dce.c:ZSTR_KNOWN Unexecuted instantiation: dfa_pass.c:ZSTR_KNOWN Unexecuted instantiation: escape_analysis.c:ZSTR_KNOWN Unexecuted instantiation: nop_removal.c:ZSTR_KNOWN Unexecuted instantiation: optimize_func_calls.c:ZSTR_KNOWN Unexecuted instantiation: optimize_temp_vars_5.c:ZSTR_KNOWN Unexecuted instantiation: pass1.c:ZSTR_KNOWN Unexecuted instantiation: pass3.c:ZSTR_KNOWN Unexecuted instantiation: sccp.c:ZSTR_KNOWN Unexecuted instantiation: scdf.c:ZSTR_KNOWN Unexecuted instantiation: zend_call_graph.c:ZSTR_KNOWN Unexecuted instantiation: zend_cfg.c:ZSTR_KNOWN Unexecuted instantiation: zend_dfg.c:ZSTR_KNOWN Unexecuted instantiation: zend_dump.c:ZSTR_KNOWN Unexecuted instantiation: zend_func_info.c:ZSTR_KNOWN Unexecuted instantiation: zend_inference.c:ZSTR_KNOWN Unexecuted instantiation: zend_optimizer.c:ZSTR_KNOWN Unexecuted instantiation: zend_ssa.c:ZSTR_KNOWN Unexecuted instantiation: zend_alloc.c:ZSTR_KNOWN Line | Count | Source | 114 | 57.9k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 57.9k | return zend_known_strings[idx]; | 116 | 57.9k | } |
Line | Count | Source | 114 | 55.5k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 55.5k | return zend_known_strings[idx]; | 116 | 55.5k | } |
zend_attributes.c:ZSTR_KNOWN Line | Count | Source | 114 | 1.32k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 1.32k | return zend_known_strings[idx]; | 116 | 1.32k | } |
Unexecuted instantiation: zend_autoload.c:ZSTR_KNOWN zend_builtin_functions.c:ZSTR_KNOWN Line | Count | Source | 114 | 8.12M | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 8.12M | return zend_known_strings[idx]; | 116 | 8.12M | } |
Unexecuted instantiation: zend_call_stack.c:ZSTR_KNOWN zend_closures.c:ZSTR_KNOWN Line | Count | Source | 114 | 5.24k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 5.24k | return zend_known_strings[idx]; | 116 | 5.24k | } |
zend_compile.c:ZSTR_KNOWN Line | Count | Source | 114 | 18.1M | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 18.1M | return zend_known_strings[idx]; | 116 | 18.1M | } |
zend_constants.c:ZSTR_KNOWN Line | Count | Source | 114 | 2.38k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 2.38k | return zend_known_strings[idx]; | 116 | 2.38k | } |
Unexecuted instantiation: zend_cpuinfo.c:ZSTR_KNOWN Unexecuted instantiation: zend_default_classes.c:ZSTR_KNOWN Unexecuted instantiation: zend_dtrace.c:ZSTR_KNOWN Line | Count | Source | 114 | 19.3k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 19.3k | return zend_known_strings[idx]; | 116 | 19.3k | } |
zend_exceptions.c:ZSTR_KNOWN Line | Count | Source | 114 | 30.9M | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 30.9M | return zend_known_strings[idx]; | 116 | 30.9M | } |
Unexecuted instantiation: zend_execute_API.c:ZSTR_KNOWN zend_execute.c:ZSTR_KNOWN Line | Count | Source | 114 | 32.9k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 32.9k | return zend_known_strings[idx]; | 116 | 32.9k | } |
Unexecuted instantiation: zend_extensions.c:ZSTR_KNOWN Unexecuted instantiation: zend_fibers.c:ZSTR_KNOWN Unexecuted instantiation: zend_float.c:ZSTR_KNOWN Unexecuted instantiation: zend_gc.c:ZSTR_KNOWN Unexecuted instantiation: zend_gdb.c:ZSTR_KNOWN zend_generators.c:ZSTR_KNOWN Line | Count | Source | 114 | 176 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 176 | return zend_known_strings[idx]; | 116 | 176 | } |
Unexecuted instantiation: zend_hash.c:ZSTR_KNOWN Unexecuted instantiation: zend_highlight.c:ZSTR_KNOWN Unexecuted instantiation: zend_hrtime.c:ZSTR_KNOWN zend_inheritance.c:ZSTR_KNOWN Line | Count | Source | 114 | 442k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 442k | return zend_known_strings[idx]; | 116 | 442k | } |
Unexecuted instantiation: zend_ini_parser.c:ZSTR_KNOWN Unexecuted instantiation: zend_ini_scanner.c:ZSTR_KNOWN Unexecuted instantiation: zend_ini.c:ZSTR_KNOWN zend_interfaces.c:ZSTR_KNOWN Line | Count | Source | 114 | 953 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 953 | return zend_known_strings[idx]; | 116 | 953 | } |
Unexecuted instantiation: zend_iterators.c:ZSTR_KNOWN zend_language_parser.c:ZSTR_KNOWN Line | Count | Source | 114 | 6.15k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 6.15k | return zend_known_strings[idx]; | 116 | 6.15k | } |
Unexecuted instantiation: zend_language_scanner.c:ZSTR_KNOWN Unexecuted instantiation: zend_lazy_objects.c:ZSTR_KNOWN Unexecuted instantiation: zend_list.c:ZSTR_KNOWN Unexecuted instantiation: zend_llist.c:ZSTR_KNOWN Unexecuted instantiation: zend_multibyte.c:ZSTR_KNOWN zend_object_handlers.c:ZSTR_KNOWN Line | Count | Source | 114 | 315 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 315 | return zend_known_strings[idx]; | 116 | 315 | } |
Unexecuted instantiation: zend_objects_API.c:ZSTR_KNOWN Unexecuted instantiation: zend_objects.c:ZSTR_KNOWN Unexecuted instantiation: zend_observer.c:ZSTR_KNOWN Unexecuted instantiation: zend_opcode.c:ZSTR_KNOWN zend_operators.c:ZSTR_KNOWN Line | Count | Source | 114 | 4.43k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 4.43k | return zend_known_strings[idx]; | 116 | 4.43k | } |
Unexecuted instantiation: zend_property_hooks.c:ZSTR_KNOWN Unexecuted instantiation: zend_ptr_stack.c:ZSTR_KNOWN Unexecuted instantiation: zend_signal.c:ZSTR_KNOWN Unexecuted instantiation: zend_smart_str.c:ZSTR_KNOWN Unexecuted instantiation: zend_sort.c:ZSTR_KNOWN Unexecuted instantiation: zend_stack.c:ZSTR_KNOWN Unexecuted instantiation: zend_stream.c:ZSTR_KNOWN Unexecuted instantiation: zend_string.c:ZSTR_KNOWN Unexecuted instantiation: zend_strtod.c:ZSTR_KNOWN Unexecuted instantiation: zend_system_id.c:ZSTR_KNOWN Unexecuted instantiation: zend_variables.c:ZSTR_KNOWN Unexecuted instantiation: zend_virtual_cwd.c:ZSTR_KNOWN Unexecuted instantiation: zend_vm_opcodes.c:ZSTR_KNOWN zend_weakrefs.c:ZSTR_KNOWN Line | Count | Source | 114 | 34 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 34 | return zend_known_strings[idx]; | 116 | 34 | } |
Line | Count | Source | 114 | 828k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 828k | return zend_known_strings[idx]; | 116 | 828k | } |
Unexecuted instantiation: internal_functions_cli.c:ZSTR_KNOWN Unexecuted instantiation: fuzzer-parser.c:ZSTR_KNOWN Unexecuted instantiation: fuzzer-sapi.c:ZSTR_KNOWN Unexecuted instantiation: fuzzer-tracing-jit.c:ZSTR_KNOWN Unexecuted instantiation: fuzzer-exif.c:ZSTR_KNOWN Unexecuted instantiation: fuzzer-unserialize.c:ZSTR_KNOWN Unexecuted instantiation: fuzzer-function-jit.c:ZSTR_KNOWN Unexecuted instantiation: fuzzer-json.c:ZSTR_KNOWN Unexecuted instantiation: fuzzer-unserializehash.c:ZSTR_KNOWN Unexecuted instantiation: fuzzer-execute.c:ZSTR_KNOWN |
117 | | |
118 | 11.3M | #define _ZSTR_HEADER_SIZE offsetof(zend_string, val) |
119 | | |
120 | 96.5k | #define _ZSTR_STRUCT_SIZE(len) (_ZSTR_HEADER_SIZE + len + 1) |
121 | | |
122 | 1.43k | #define ZSTR_MAX_OVERHEAD (ZEND_MM_ALIGNED_SIZE(_ZSTR_HEADER_SIZE + 1)) |
123 | | #define ZSTR_MAX_LEN (SIZE_MAX - ZSTR_MAX_OVERHEAD) |
124 | | |
125 | 7.76k | #define ZSTR_ALLOCA_ALLOC(str, _len, use_heap) do { \ |
126 | 7.76k | (str) = (zend_string *)do_alloca(ZEND_MM_ALIGNED_SIZE_EX(_ZSTR_STRUCT_SIZE(_len), 8), (use_heap)); \ |
127 | 7.76k | GC_SET_REFCOUNT(str, 1); \ |
128 | 7.76k | GC_TYPE_INFO(str) = GC_STRING; \ |
129 | 7.76k | ZSTR_H(str) = 0; \ |
130 | 7.76k | ZSTR_LEN(str) = _len; \ |
131 | 7.76k | } while (0) |
132 | | |
133 | | #define ZSTR_ALLOCA_INIT(str, s, len, use_heap) do { \ |
134 | | ZSTR_ALLOCA_ALLOC(str, len, use_heap); \ |
135 | | memcpy(ZSTR_VAL(str), (s), (len)); \ |
136 | | ZSTR_VAL(str)[(len)] = '\0'; \ |
137 | | } while (0) |
138 | | |
139 | 7.76k | #define ZSTR_ALLOCA_FREE(str, use_heap) free_alloca(str, use_heap) |
140 | | |
141 | 109k | #define ZSTR_INIT_LITERAL(s, persistent) (zend_string_init(("" s), sizeof(s) - 1, (persistent))) |
142 | | |
143 | | /*---*/ |
144 | | |
145 | | static zend_always_inline zend_ulong zend_string_hash_val(zend_string *s) |
146 | 171M | { |
147 | 171M | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); |
148 | 171M | } Unexecuted instantiation: php_date.c:zend_string_hash_val Unexecuted instantiation: astro.c:zend_string_hash_val Unexecuted instantiation: dow.c:zend_string_hash_val Unexecuted instantiation: parse_date.c:zend_string_hash_val Unexecuted instantiation: parse_tz.c:zend_string_hash_val Unexecuted instantiation: parse_posix.c:zend_string_hash_val Unexecuted instantiation: timelib.c:zend_string_hash_val Unexecuted instantiation: tm2unixtime.c:zend_string_hash_val Unexecuted instantiation: unixtime2tm.c:zend_string_hash_val Unexecuted instantiation: parse_iso_intervals.c:zend_string_hash_val Unexecuted instantiation: interval.c:zend_string_hash_val Unexecuted instantiation: php_pcre.c:zend_string_hash_val Unexecuted instantiation: exif.c:zend_string_hash_val Unexecuted instantiation: hash_adler32.c:zend_string_hash_val Unexecuted instantiation: hash_crc32.c:zend_string_hash_val Unexecuted instantiation: hash_fnv.c:zend_string_hash_val Unexecuted instantiation: hash_gost.c:zend_string_hash_val Unexecuted instantiation: hash_haval.c:zend_string_hash_val Unexecuted instantiation: hash_joaat.c:zend_string_hash_val Unexecuted instantiation: hash_md.c:zend_string_hash_val Unexecuted instantiation: hash_murmur.c:zend_string_hash_val Unexecuted instantiation: hash_ripemd.c:zend_string_hash_val Unexecuted instantiation: hash_sha_ni.c:zend_string_hash_val Unexecuted instantiation: hash_sha_sse2.c:zend_string_hash_val Unexecuted instantiation: hash_sha.c:zend_string_hash_val Unexecuted instantiation: hash_sha3.c:zend_string_hash_val Unexecuted instantiation: hash_snefru.c:zend_string_hash_val Unexecuted instantiation: hash_tiger.c:zend_string_hash_val Unexecuted instantiation: hash_whirlpool.c:zend_string_hash_val Unexecuted instantiation: hash_xxhash.c:zend_string_hash_val Unexecuted instantiation: hash.c:zend_string_hash_val Unexecuted instantiation: json_encoder.c:zend_string_hash_val Unexecuted instantiation: json_parser.tab.c:zend_string_hash_val Unexecuted instantiation: json_scanner.c:zend_string_hash_val Unexecuted instantiation: json.c:zend_string_hash_val Unexecuted instantiation: php_lexbor.c:zend_string_hash_val Unexecuted instantiation: shared_alloc_mmap.c:zend_string_hash_val Unexecuted instantiation: shared_alloc_posix.c:zend_string_hash_val Unexecuted instantiation: shared_alloc_shm.c:zend_string_hash_val Unexecuted instantiation: zend_accelerator_api.c:zend_string_hash_val Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_hash_val Unexecuted instantiation: zend_accelerator_debug.c:zend_string_hash_val zend_accelerator_hash.c:zend_string_hash_val Line | Count | Source | 146 | 399k | { | 147 | 399k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 399k | } |
Unexecuted instantiation: zend_accelerator_module.c:zend_string_hash_val zend_accelerator_util_funcs.c:zend_string_hash_val Line | Count | Source | 146 | 20.7k | { | 147 | 20.7k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 20.7k | } |
Unexecuted instantiation: zend_file_cache.c:zend_string_hash_val Unexecuted instantiation: zend_persist_calc.c:zend_string_hash_val zend_persist.c:zend_string_hash_val Line | Count | Source | 146 | 96.5k | { | 147 | 96.5k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 96.5k | } |
Unexecuted instantiation: zend_shared_alloc.c:zend_string_hash_val ZendAccelerator.c:zend_string_hash_val Line | Count | Source | 146 | 100M | { | 147 | 100M | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 100M | } |
Unexecuted instantiation: ir_cfg.c:zend_string_hash_val Unexecuted instantiation: ir_check.c:zend_string_hash_val Unexecuted instantiation: ir_dump.c:zend_string_hash_val Unexecuted instantiation: ir_emit.c:zend_string_hash_val Unexecuted instantiation: ir_gcm.c:zend_string_hash_val Unexecuted instantiation: ir_gdb.c:zend_string_hash_val Unexecuted instantiation: ir_patch.c:zend_string_hash_val Unexecuted instantiation: ir_perf.c:zend_string_hash_val Unexecuted instantiation: ir_ra.c:zend_string_hash_val Unexecuted instantiation: ir_save.c:zend_string_hash_val Unexecuted instantiation: ir_sccp.c:zend_string_hash_val Unexecuted instantiation: ir_strtab.c:zend_string_hash_val Unexecuted instantiation: ir.c:zend_string_hash_val Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_hash_val Unexecuted instantiation: zend_jit.c:zend_string_hash_val Unexecuted instantiation: csprng.c:zend_string_hash_val Unexecuted instantiation: engine_mt19937.c:zend_string_hash_val Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_hash_val Unexecuted instantiation: engine_secure.c:zend_string_hash_val Unexecuted instantiation: engine_user.c:zend_string_hash_val Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_hash_val Unexecuted instantiation: gammasection.c:zend_string_hash_val Unexecuted instantiation: random.c:zend_string_hash_val Unexecuted instantiation: randomizer.c:zend_string_hash_val Unexecuted instantiation: zend_utils.c:zend_string_hash_val Unexecuted instantiation: php_reflection.c:zend_string_hash_val Unexecuted instantiation: php_spl.c:zend_string_hash_val Unexecuted instantiation: spl_array.c:zend_string_hash_val Unexecuted instantiation: spl_directory.c:zend_string_hash_val Unexecuted instantiation: spl_dllist.c:zend_string_hash_val Unexecuted instantiation: spl_exceptions.c:zend_string_hash_val Unexecuted instantiation: spl_fixedarray.c:zend_string_hash_val Unexecuted instantiation: spl_functions.c:zend_string_hash_val Unexecuted instantiation: spl_heap.c:zend_string_hash_val Unexecuted instantiation: spl_iterators.c:zend_string_hash_val Unexecuted instantiation: spl_observer.c:zend_string_hash_val array.c:zend_string_hash_val Line | Count | Source | 146 | 1 | { | 147 | 1 | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 1 | } |
Unexecuted instantiation: assert.c:zend_string_hash_val Unexecuted instantiation: base64.c:zend_string_hash_val Unexecuted instantiation: basic_functions.c:zend_string_hash_val Unexecuted instantiation: browscap.c:zend_string_hash_val Unexecuted instantiation: crc32_x86.c:zend_string_hash_val Unexecuted instantiation: crc32.c:zend_string_hash_val Unexecuted instantiation: credits.c:zend_string_hash_val Unexecuted instantiation: crypt.c:zend_string_hash_val Unexecuted instantiation: css.c:zend_string_hash_val Unexecuted instantiation: datetime.c:zend_string_hash_val Unexecuted instantiation: dir.c:zend_string_hash_val Unexecuted instantiation: dl.c:zend_string_hash_val Unexecuted instantiation: dns.c:zend_string_hash_val Unexecuted instantiation: exec.c:zend_string_hash_val Unexecuted instantiation: file.c:zend_string_hash_val Unexecuted instantiation: filestat.c:zend_string_hash_val Unexecuted instantiation: filters.c:zend_string_hash_val Unexecuted instantiation: flock_compat.c:zend_string_hash_val Unexecuted instantiation: formatted_print.c:zend_string_hash_val Unexecuted instantiation: fsock.c:zend_string_hash_val Unexecuted instantiation: ftok.c:zend_string_hash_val Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_hash_val Unexecuted instantiation: head.c:zend_string_hash_val Unexecuted instantiation: hrtime.c:zend_string_hash_val Unexecuted instantiation: html.c:zend_string_hash_val Unexecuted instantiation: http_fopen_wrapper.c:zend_string_hash_val Unexecuted instantiation: http.c:zend_string_hash_val Unexecuted instantiation: image.c:zend_string_hash_val Unexecuted instantiation: incomplete_class.c:zend_string_hash_val Unexecuted instantiation: info.c:zend_string_hash_val Unexecuted instantiation: iptc.c:zend_string_hash_val Unexecuted instantiation: levenshtein.c:zend_string_hash_val Unexecuted instantiation: link.c:zend_string_hash_val Unexecuted instantiation: mail.c:zend_string_hash_val Unexecuted instantiation: math.c:zend_string_hash_val Unexecuted instantiation: md5.c:zend_string_hash_val Unexecuted instantiation: metaphone.c:zend_string_hash_val Unexecuted instantiation: microtime.c:zend_string_hash_val Unexecuted instantiation: net.c:zend_string_hash_val Unexecuted instantiation: pack.c:zend_string_hash_val Unexecuted instantiation: pageinfo.c:zend_string_hash_val Unexecuted instantiation: password.c:zend_string_hash_val Unexecuted instantiation: php_fopen_wrapper.c:zend_string_hash_val Unexecuted instantiation: proc_open.c:zend_string_hash_val Unexecuted instantiation: quot_print.c:zend_string_hash_val Unexecuted instantiation: scanf.c:zend_string_hash_val Unexecuted instantiation: sha1.c:zend_string_hash_val Unexecuted instantiation: soundex.c:zend_string_hash_val Unexecuted instantiation: streamsfuncs.c:zend_string_hash_val Unexecuted instantiation: string.c:zend_string_hash_val Unexecuted instantiation: strnatcmp.c:zend_string_hash_val Unexecuted instantiation: syslog.c:zend_string_hash_val Unexecuted instantiation: type.c:zend_string_hash_val Unexecuted instantiation: uniqid.c:zend_string_hash_val Unexecuted instantiation: url_scanner_ex.c:zend_string_hash_val Unexecuted instantiation: url.c:zend_string_hash_val Unexecuted instantiation: user_filters.c:zend_string_hash_val Unexecuted instantiation: uuencode.c:zend_string_hash_val Unexecuted instantiation: var_unserializer.c:zend_string_hash_val Unexecuted instantiation: var.c:zend_string_hash_val Unexecuted instantiation: versioning.c:zend_string_hash_val Unexecuted instantiation: crypt_sha256.c:zend_string_hash_val Unexecuted instantiation: crypt_sha512.c:zend_string_hash_val Unexecuted instantiation: php_crypt_r.c:zend_string_hash_val Unexecuted instantiation: php_uri.c:zend_string_hash_val Unexecuted instantiation: php_uri_common.c:zend_string_hash_val Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_hash_val Unexecuted instantiation: uri_parser_whatwg.c:zend_string_hash_val Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_hash_val Unexecuted instantiation: explicit_bzero.c:zend_string_hash_val Unexecuted instantiation: fopen_wrappers.c:zend_string_hash_val Unexecuted instantiation: getopt.c:zend_string_hash_val Unexecuted instantiation: main.c:zend_string_hash_val Unexecuted instantiation: network.c:zend_string_hash_val Unexecuted instantiation: output.c:zend_string_hash_val Unexecuted instantiation: php_content_types.c:zend_string_hash_val Unexecuted instantiation: php_ini_builder.c:zend_string_hash_val Unexecuted instantiation: php_ini.c:zend_string_hash_val Unexecuted instantiation: php_glob.c:zend_string_hash_val Unexecuted instantiation: php_odbc_utils.c:zend_string_hash_val Unexecuted instantiation: php_open_temporary_file.c:zend_string_hash_val Unexecuted instantiation: php_scandir.c:zend_string_hash_val Unexecuted instantiation: php_syslog.c:zend_string_hash_val Unexecuted instantiation: php_ticks.c:zend_string_hash_val Unexecuted instantiation: php_variables.c:zend_string_hash_val Unexecuted instantiation: reentrancy.c:zend_string_hash_val Unexecuted instantiation: rfc1867.c:zend_string_hash_val Unexecuted instantiation: safe_bcmp.c:zend_string_hash_val Unexecuted instantiation: SAPI.c:zend_string_hash_val Unexecuted instantiation: snprintf.c:zend_string_hash_val Unexecuted instantiation: spprintf.c:zend_string_hash_val Unexecuted instantiation: strlcat.c:zend_string_hash_val Unexecuted instantiation: strlcpy.c:zend_string_hash_val Unexecuted instantiation: cast.c:zend_string_hash_val Unexecuted instantiation: filter.c:zend_string_hash_val Unexecuted instantiation: glob_wrapper.c:zend_string_hash_val Unexecuted instantiation: memory.c:zend_string_hash_val Unexecuted instantiation: mmap.c:zend_string_hash_val Unexecuted instantiation: plain_wrapper.c:zend_string_hash_val Unexecuted instantiation: stream_errors.c:zend_string_hash_val Unexecuted instantiation: streams.c:zend_string_hash_val Unexecuted instantiation: transports.c:zend_string_hash_val Unexecuted instantiation: userspace.c:zend_string_hash_val Unexecuted instantiation: xp_socket.c:zend_string_hash_val Unexecuted instantiation: block_pass.c:zend_string_hash_val compact_literals.c:zend_string_hash_val Line | Count | Source | 146 | 176k | { | 147 | 176k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 176k | } |
Unexecuted instantiation: compact_vars.c:zend_string_hash_val Unexecuted instantiation: dce.c:zend_string_hash_val Unexecuted instantiation: dfa_pass.c:zend_string_hash_val Unexecuted instantiation: escape_analysis.c:zend_string_hash_val Unexecuted instantiation: nop_removal.c:zend_string_hash_val Unexecuted instantiation: optimize_func_calls.c:zend_string_hash_val Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_hash_val Unexecuted instantiation: pass1.c:zend_string_hash_val Unexecuted instantiation: pass3.c:zend_string_hash_val Unexecuted instantiation: sccp.c:zend_string_hash_val Unexecuted instantiation: scdf.c:zend_string_hash_val Unexecuted instantiation: zend_call_graph.c:zend_string_hash_val Unexecuted instantiation: zend_cfg.c:zend_string_hash_val Unexecuted instantiation: zend_dfg.c:zend_string_hash_val Unexecuted instantiation: zend_dump.c:zend_string_hash_val Unexecuted instantiation: zend_func_info.c:zend_string_hash_val Unexecuted instantiation: zend_inference.c:zend_string_hash_val zend_optimizer.c:zend_string_hash_val Line | Count | Source | 146 | 4.59k | { | 147 | 4.59k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 4.59k | } |
Unexecuted instantiation: zend_ssa.c:zend_string_hash_val Unexecuted instantiation: zend_alloc.c:zend_string_hash_val Unexecuted instantiation: zend_API.c:zend_string_hash_val Unexecuted instantiation: zend_ast.c:zend_string_hash_val Unexecuted instantiation: zend_attributes.c:zend_string_hash_val Unexecuted instantiation: zend_autoload.c:zend_string_hash_val Unexecuted instantiation: zend_builtin_functions.c:zend_string_hash_val Unexecuted instantiation: zend_call_stack.c:zend_string_hash_val Unexecuted instantiation: zend_closures.c:zend_string_hash_val zend_compile.c:zend_string_hash_val Line | Count | Source | 146 | 3.09M | { | 147 | 3.09M | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 3.09M | } |
Unexecuted instantiation: zend_constants.c:zend_string_hash_val Unexecuted instantiation: zend_cpuinfo.c:zend_string_hash_val Unexecuted instantiation: zend_default_classes.c:zend_string_hash_val Unexecuted instantiation: zend_dtrace.c:zend_string_hash_val Unexecuted instantiation: zend_enum.c:zend_string_hash_val Unexecuted instantiation: zend_exceptions.c:zend_string_hash_val zend_execute_API.c:zend_string_hash_val Line | Count | Source | 146 | 30 | { | 147 | 30 | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 30 | } |
Unexecuted instantiation: zend_execute.c:zend_string_hash_val Unexecuted instantiation: zend_extensions.c:zend_string_hash_val Unexecuted instantiation: zend_fibers.c:zend_string_hash_val Unexecuted instantiation: zend_float.c:zend_string_hash_val Unexecuted instantiation: zend_gc.c:zend_string_hash_val Unexecuted instantiation: zend_gdb.c:zend_string_hash_val Unexecuted instantiation: zend_generators.c:zend_string_hash_val zend_hash.c:zend_string_hash_val Line | Count | Source | 146 | 67.2M | { | 147 | 67.2M | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 67.2M | } |
Unexecuted instantiation: zend_highlight.c:zend_string_hash_val Unexecuted instantiation: zend_hrtime.c:zend_string_hash_val zend_inheritance.c:zend_string_hash_val Line | Count | Source | 146 | 1.84k | { | 147 | 1.84k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 1.84k | } |
Unexecuted instantiation: zend_ini_parser.c:zend_string_hash_val Unexecuted instantiation: zend_ini_scanner.c:zend_string_hash_val Unexecuted instantiation: zend_ini.c:zend_string_hash_val Unexecuted instantiation: zend_interfaces.c:zend_string_hash_val Unexecuted instantiation: zend_iterators.c:zend_string_hash_val Unexecuted instantiation: zend_language_parser.c:zend_string_hash_val Unexecuted instantiation: zend_language_scanner.c:zend_string_hash_val Unexecuted instantiation: zend_lazy_objects.c:zend_string_hash_val Unexecuted instantiation: zend_list.c:zend_string_hash_val Unexecuted instantiation: zend_llist.c:zend_string_hash_val Unexecuted instantiation: zend_multibyte.c:zend_string_hash_val zend_object_handlers.c:zend_string_hash_val Line | Count | Source | 146 | 216 | { | 147 | 216 | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 216 | } |
Unexecuted instantiation: zend_objects_API.c:zend_string_hash_val zend_objects.c:zend_string_hash_val Line | Count | Source | 146 | 5 | { | 147 | 5 | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 5 | } |
Unexecuted instantiation: zend_observer.c:zend_string_hash_val Unexecuted instantiation: zend_opcode.c:zend_string_hash_val Unexecuted instantiation: zend_operators.c:zend_string_hash_val Unexecuted instantiation: zend_property_hooks.c:zend_string_hash_val Unexecuted instantiation: zend_ptr_stack.c:zend_string_hash_val Unexecuted instantiation: zend_signal.c:zend_string_hash_val Unexecuted instantiation: zend_smart_str.c:zend_string_hash_val Unexecuted instantiation: zend_sort.c:zend_string_hash_val Unexecuted instantiation: zend_stack.c:zend_string_hash_val Unexecuted instantiation: zend_stream.c:zend_string_hash_val zend_string.c:zend_string_hash_val Line | Count | Source | 146 | 13.6k | { | 147 | 13.6k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 13.6k | } |
Unexecuted instantiation: zend_strtod.c:zend_string_hash_val Unexecuted instantiation: zend_system_id.c:zend_string_hash_val Unexecuted instantiation: zend_variables.c:zend_string_hash_val Unexecuted instantiation: zend_virtual_cwd.c:zend_string_hash_val Unexecuted instantiation: zend_vm_opcodes.c:zend_string_hash_val Unexecuted instantiation: zend_weakrefs.c:zend_string_hash_val Unexecuted instantiation: zend.c:zend_string_hash_val Unexecuted instantiation: internal_functions_cli.c:zend_string_hash_val Unexecuted instantiation: fuzzer-parser.c:zend_string_hash_val Unexecuted instantiation: fuzzer-sapi.c:zend_string_hash_val Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_hash_val Unexecuted instantiation: fuzzer-exif.c:zend_string_hash_val Unexecuted instantiation: fuzzer-unserialize.c:zend_string_hash_val Unexecuted instantiation: fuzzer-function-jit.c:zend_string_hash_val Unexecuted instantiation: fuzzer-json.c:zend_string_hash_val Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_hash_val Unexecuted instantiation: fuzzer-execute.c:zend_string_hash_val |
149 | | |
150 | | static zend_always_inline void zend_string_forget_hash_val(zend_string *s) |
151 | 7.34M | { |
152 | 7.34M | ZSTR_H(s) = 0; |
153 | 7.34M | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); |
154 | 7.34M | } Unexecuted instantiation: php_date.c:zend_string_forget_hash_val Unexecuted instantiation: astro.c:zend_string_forget_hash_val Unexecuted instantiation: dow.c:zend_string_forget_hash_val Unexecuted instantiation: parse_date.c:zend_string_forget_hash_val Unexecuted instantiation: parse_tz.c:zend_string_forget_hash_val Unexecuted instantiation: parse_posix.c:zend_string_forget_hash_val Unexecuted instantiation: timelib.c:zend_string_forget_hash_val Unexecuted instantiation: tm2unixtime.c:zend_string_forget_hash_val Unexecuted instantiation: unixtime2tm.c:zend_string_forget_hash_val Unexecuted instantiation: parse_iso_intervals.c:zend_string_forget_hash_val Unexecuted instantiation: interval.c:zend_string_forget_hash_val php_pcre.c:zend_string_forget_hash_val Line | Count | Source | 151 | 385 | { | 152 | 385 | ZSTR_H(s) = 0; | 153 | 385 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 385 | } |
Unexecuted instantiation: exif.c:zend_string_forget_hash_val Unexecuted instantiation: hash_adler32.c:zend_string_forget_hash_val Unexecuted instantiation: hash_crc32.c:zend_string_forget_hash_val Unexecuted instantiation: hash_fnv.c:zend_string_forget_hash_val Unexecuted instantiation: hash_gost.c:zend_string_forget_hash_val Unexecuted instantiation: hash_haval.c:zend_string_forget_hash_val Unexecuted instantiation: hash_joaat.c:zend_string_forget_hash_val Unexecuted instantiation: hash_md.c:zend_string_forget_hash_val Unexecuted instantiation: hash_murmur.c:zend_string_forget_hash_val Unexecuted instantiation: hash_ripemd.c:zend_string_forget_hash_val Unexecuted instantiation: hash_sha_ni.c:zend_string_forget_hash_val Unexecuted instantiation: hash_sha_sse2.c:zend_string_forget_hash_val Unexecuted instantiation: hash_sha.c:zend_string_forget_hash_val Unexecuted instantiation: hash_sha3.c:zend_string_forget_hash_val Unexecuted instantiation: hash_snefru.c:zend_string_forget_hash_val Unexecuted instantiation: hash_tiger.c:zend_string_forget_hash_val Unexecuted instantiation: hash_whirlpool.c:zend_string_forget_hash_val Unexecuted instantiation: hash_xxhash.c:zend_string_forget_hash_val Unexecuted instantiation: hash.c:zend_string_forget_hash_val Unexecuted instantiation: json_encoder.c:zend_string_forget_hash_val Unexecuted instantiation: json_parser.tab.c:zend_string_forget_hash_val Unexecuted instantiation: json_scanner.c:zend_string_forget_hash_val json.c:zend_string_forget_hash_val Line | Count | Source | 151 | 2.22k | { | 152 | 2.22k | ZSTR_H(s) = 0; | 153 | 2.22k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 2.22k | } |
Unexecuted instantiation: php_lexbor.c:zend_string_forget_hash_val Unexecuted instantiation: shared_alloc_mmap.c:zend_string_forget_hash_val Unexecuted instantiation: shared_alloc_posix.c:zend_string_forget_hash_val Unexecuted instantiation: shared_alloc_shm.c:zend_string_forget_hash_val Unexecuted instantiation: zend_accelerator_api.c:zend_string_forget_hash_val Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_forget_hash_val Unexecuted instantiation: zend_accelerator_debug.c:zend_string_forget_hash_val Unexecuted instantiation: zend_accelerator_hash.c:zend_string_forget_hash_val Unexecuted instantiation: zend_accelerator_module.c:zend_string_forget_hash_val Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_forget_hash_val Unexecuted instantiation: zend_file_cache.c:zend_string_forget_hash_val Unexecuted instantiation: zend_persist_calc.c:zend_string_forget_hash_val Unexecuted instantiation: zend_persist.c:zend_string_forget_hash_val Unexecuted instantiation: zend_shared_alloc.c:zend_string_forget_hash_val Unexecuted instantiation: ZendAccelerator.c:zend_string_forget_hash_val Unexecuted instantiation: ir_cfg.c:zend_string_forget_hash_val Unexecuted instantiation: ir_check.c:zend_string_forget_hash_val Unexecuted instantiation: ir_dump.c:zend_string_forget_hash_val Unexecuted instantiation: ir_emit.c:zend_string_forget_hash_val Unexecuted instantiation: ir_gcm.c:zend_string_forget_hash_val Unexecuted instantiation: ir_gdb.c:zend_string_forget_hash_val Unexecuted instantiation: ir_patch.c:zend_string_forget_hash_val Unexecuted instantiation: ir_perf.c:zend_string_forget_hash_val Unexecuted instantiation: ir_ra.c:zend_string_forget_hash_val Unexecuted instantiation: ir_save.c:zend_string_forget_hash_val Unexecuted instantiation: ir_sccp.c:zend_string_forget_hash_val Unexecuted instantiation: ir_strtab.c:zend_string_forget_hash_val Unexecuted instantiation: ir.c:zend_string_forget_hash_val Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_forget_hash_val Unexecuted instantiation: zend_jit.c:zend_string_forget_hash_val Unexecuted instantiation: csprng.c:zend_string_forget_hash_val Unexecuted instantiation: engine_mt19937.c:zend_string_forget_hash_val Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_forget_hash_val Unexecuted instantiation: engine_secure.c:zend_string_forget_hash_val Unexecuted instantiation: engine_user.c:zend_string_forget_hash_val Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_forget_hash_val Unexecuted instantiation: gammasection.c:zend_string_forget_hash_val Unexecuted instantiation: random.c:zend_string_forget_hash_val Unexecuted instantiation: randomizer.c:zend_string_forget_hash_val Unexecuted instantiation: zend_utils.c:zend_string_forget_hash_val php_reflection.c:zend_string_forget_hash_val Line | Count | Source | 151 | 502 | { | 152 | 502 | ZSTR_H(s) = 0; | 153 | 502 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 502 | } |
Unexecuted instantiation: php_spl.c:zend_string_forget_hash_val Unexecuted instantiation: spl_array.c:zend_string_forget_hash_val Unexecuted instantiation: spl_directory.c:zend_string_forget_hash_val Unexecuted instantiation: spl_dllist.c:zend_string_forget_hash_val Unexecuted instantiation: spl_exceptions.c:zend_string_forget_hash_val Unexecuted instantiation: spl_fixedarray.c:zend_string_forget_hash_val Unexecuted instantiation: spl_functions.c:zend_string_forget_hash_val Unexecuted instantiation: spl_heap.c:zend_string_forget_hash_val Unexecuted instantiation: spl_iterators.c:zend_string_forget_hash_val Unexecuted instantiation: spl_observer.c:zend_string_forget_hash_val Unexecuted instantiation: array.c:zend_string_forget_hash_val Unexecuted instantiation: assert.c:zend_string_forget_hash_val Unexecuted instantiation: base64.c:zend_string_forget_hash_val Unexecuted instantiation: basic_functions.c:zend_string_forget_hash_val Unexecuted instantiation: browscap.c:zend_string_forget_hash_val Unexecuted instantiation: crc32_x86.c:zend_string_forget_hash_val Unexecuted instantiation: crc32.c:zend_string_forget_hash_val Unexecuted instantiation: credits.c:zend_string_forget_hash_val Unexecuted instantiation: crypt.c:zend_string_forget_hash_val Unexecuted instantiation: css.c:zend_string_forget_hash_val Unexecuted instantiation: datetime.c:zend_string_forget_hash_val Unexecuted instantiation: dir.c:zend_string_forget_hash_val Unexecuted instantiation: dl.c:zend_string_forget_hash_val Unexecuted instantiation: dns.c:zend_string_forget_hash_val Unexecuted instantiation: exec.c:zend_string_forget_hash_val Unexecuted instantiation: file.c:zend_string_forget_hash_val Unexecuted instantiation: filestat.c:zend_string_forget_hash_val Unexecuted instantiation: filters.c:zend_string_forget_hash_val Unexecuted instantiation: flock_compat.c:zend_string_forget_hash_val formatted_print.c:zend_string_forget_hash_val Line | Count | Source | 151 | 90 | { | 152 | 90 | ZSTR_H(s) = 0; | 153 | 90 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 90 | } |
Unexecuted instantiation: fsock.c:zend_string_forget_hash_val Unexecuted instantiation: ftok.c:zend_string_forget_hash_val Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_forget_hash_val Unexecuted instantiation: head.c:zend_string_forget_hash_val Unexecuted instantiation: hrtime.c:zend_string_forget_hash_val html.c:zend_string_forget_hash_val Line | Count | Source | 151 | 3.46k | { | 152 | 3.46k | ZSTR_H(s) = 0; | 153 | 3.46k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 3.46k | } |
Unexecuted instantiation: http_fopen_wrapper.c:zend_string_forget_hash_val Unexecuted instantiation: http.c:zend_string_forget_hash_val Unexecuted instantiation: image.c:zend_string_forget_hash_val Unexecuted instantiation: incomplete_class.c:zend_string_forget_hash_val Unexecuted instantiation: info.c:zend_string_forget_hash_val Unexecuted instantiation: iptc.c:zend_string_forget_hash_val Unexecuted instantiation: levenshtein.c:zend_string_forget_hash_val Unexecuted instantiation: link.c:zend_string_forget_hash_val Unexecuted instantiation: mail.c:zend_string_forget_hash_val Unexecuted instantiation: math.c:zend_string_forget_hash_val Unexecuted instantiation: md5.c:zend_string_forget_hash_val Unexecuted instantiation: metaphone.c:zend_string_forget_hash_val Unexecuted instantiation: microtime.c:zend_string_forget_hash_val Unexecuted instantiation: net.c:zend_string_forget_hash_val Unexecuted instantiation: pack.c:zend_string_forget_hash_val Unexecuted instantiation: pageinfo.c:zend_string_forget_hash_val Unexecuted instantiation: password.c:zend_string_forget_hash_val Unexecuted instantiation: php_fopen_wrapper.c:zend_string_forget_hash_val Unexecuted instantiation: proc_open.c:zend_string_forget_hash_val quot_print.c:zend_string_forget_hash_val Line | Count | Source | 151 | 121 | { | 152 | 121 | ZSTR_H(s) = 0; | 153 | 121 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 121 | } |
Unexecuted instantiation: scanf.c:zend_string_forget_hash_val Unexecuted instantiation: sha1.c:zend_string_forget_hash_val Unexecuted instantiation: soundex.c:zend_string_forget_hash_val Unexecuted instantiation: streamsfuncs.c:zend_string_forget_hash_val string.c:zend_string_forget_hash_val Line | Count | Source | 151 | 1.45k | { | 152 | 1.45k | ZSTR_H(s) = 0; | 153 | 1.45k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 1.45k | } |
Unexecuted instantiation: strnatcmp.c:zend_string_forget_hash_val Unexecuted instantiation: syslog.c:zend_string_forget_hash_val Unexecuted instantiation: type.c:zend_string_forget_hash_val Unexecuted instantiation: uniqid.c:zend_string_forget_hash_val Unexecuted instantiation: url_scanner_ex.c:zend_string_forget_hash_val Unexecuted instantiation: url.c:zend_string_forget_hash_val Unexecuted instantiation: user_filters.c:zend_string_forget_hash_val Unexecuted instantiation: uuencode.c:zend_string_forget_hash_val Unexecuted instantiation: var_unserializer.c:zend_string_forget_hash_val var.c:zend_string_forget_hash_val Line | Count | Source | 151 | 1.45k | { | 152 | 1.45k | ZSTR_H(s) = 0; | 153 | 1.45k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 1.45k | } |
Unexecuted instantiation: versioning.c:zend_string_forget_hash_val Unexecuted instantiation: crypt_sha256.c:zend_string_forget_hash_val Unexecuted instantiation: crypt_sha512.c:zend_string_forget_hash_val Unexecuted instantiation: php_crypt_r.c:zend_string_forget_hash_val Unexecuted instantiation: php_uri.c:zend_string_forget_hash_val Unexecuted instantiation: php_uri_common.c:zend_string_forget_hash_val Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_forget_hash_val Unexecuted instantiation: uri_parser_whatwg.c:zend_string_forget_hash_val Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_forget_hash_val Unexecuted instantiation: explicit_bzero.c:zend_string_forget_hash_val fopen_wrappers.c:zend_string_forget_hash_val Line | Count | Source | 151 | 20 | { | 152 | 20 | ZSTR_H(s) = 0; | 153 | 20 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 20 | } |
Unexecuted instantiation: getopt.c:zend_string_forget_hash_val Unexecuted instantiation: main.c:zend_string_forget_hash_val Unexecuted instantiation: network.c:zend_string_forget_hash_val Unexecuted instantiation: output.c:zend_string_forget_hash_val Unexecuted instantiation: php_content_types.c:zend_string_forget_hash_val Unexecuted instantiation: php_ini_builder.c:zend_string_forget_hash_val Unexecuted instantiation: php_ini.c:zend_string_forget_hash_val Unexecuted instantiation: php_glob.c:zend_string_forget_hash_val Unexecuted instantiation: php_odbc_utils.c:zend_string_forget_hash_val Unexecuted instantiation: php_open_temporary_file.c:zend_string_forget_hash_val Unexecuted instantiation: php_scandir.c:zend_string_forget_hash_val Unexecuted instantiation: php_syslog.c:zend_string_forget_hash_val Unexecuted instantiation: php_ticks.c:zend_string_forget_hash_val Unexecuted instantiation: php_variables.c:zend_string_forget_hash_val Unexecuted instantiation: reentrancy.c:zend_string_forget_hash_val Unexecuted instantiation: rfc1867.c:zend_string_forget_hash_val Unexecuted instantiation: safe_bcmp.c:zend_string_forget_hash_val Unexecuted instantiation: SAPI.c:zend_string_forget_hash_val Unexecuted instantiation: snprintf.c:zend_string_forget_hash_val Unexecuted instantiation: spprintf.c:zend_string_forget_hash_val Unexecuted instantiation: strlcat.c:zend_string_forget_hash_val Unexecuted instantiation: strlcpy.c:zend_string_forget_hash_val Unexecuted instantiation: cast.c:zend_string_forget_hash_val Unexecuted instantiation: filter.c:zend_string_forget_hash_val Unexecuted instantiation: glob_wrapper.c:zend_string_forget_hash_val Unexecuted instantiation: memory.c:zend_string_forget_hash_val Unexecuted instantiation: mmap.c:zend_string_forget_hash_val Unexecuted instantiation: plain_wrapper.c:zend_string_forget_hash_val Unexecuted instantiation: stream_errors.c:zend_string_forget_hash_val Unexecuted instantiation: streams.c:zend_string_forget_hash_val Unexecuted instantiation: transports.c:zend_string_forget_hash_val Unexecuted instantiation: userspace.c:zend_string_forget_hash_val Unexecuted instantiation: xp_socket.c:zend_string_forget_hash_val block_pass.c:zend_string_forget_hash_val Line | Count | Source | 151 | 3.91k | { | 152 | 3.91k | ZSTR_H(s) = 0; | 153 | 3.91k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 3.91k | } |
Unexecuted instantiation: compact_literals.c:zend_string_forget_hash_val Unexecuted instantiation: compact_vars.c:zend_string_forget_hash_val Unexecuted instantiation: dce.c:zend_string_forget_hash_val Unexecuted instantiation: dfa_pass.c:zend_string_forget_hash_val Unexecuted instantiation: escape_analysis.c:zend_string_forget_hash_val Unexecuted instantiation: nop_removal.c:zend_string_forget_hash_val Unexecuted instantiation: optimize_func_calls.c:zend_string_forget_hash_val Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_forget_hash_val Unexecuted instantiation: pass1.c:zend_string_forget_hash_val Unexecuted instantiation: pass3.c:zend_string_forget_hash_val Unexecuted instantiation: sccp.c:zend_string_forget_hash_val Unexecuted instantiation: scdf.c:zend_string_forget_hash_val Unexecuted instantiation: zend_call_graph.c:zend_string_forget_hash_val Unexecuted instantiation: zend_cfg.c:zend_string_forget_hash_val Unexecuted instantiation: zend_dfg.c:zend_string_forget_hash_val Unexecuted instantiation: zend_dump.c:zend_string_forget_hash_val Unexecuted instantiation: zend_func_info.c:zend_string_forget_hash_val Unexecuted instantiation: zend_inference.c:zend_string_forget_hash_val Unexecuted instantiation: zend_optimizer.c:zend_string_forget_hash_val Unexecuted instantiation: zend_ssa.c:zend_string_forget_hash_val Unexecuted instantiation: zend_alloc.c:zend_string_forget_hash_val Unexecuted instantiation: zend_API.c:zend_string_forget_hash_val Unexecuted instantiation: zend_ast.c:zend_string_forget_hash_val zend_attributes.c:zend_string_forget_hash_val Line | Count | Source | 151 | 220 | { | 152 | 220 | ZSTR_H(s) = 0; | 153 | 220 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 220 | } |
Unexecuted instantiation: zend_autoload.c:zend_string_forget_hash_val Unexecuted instantiation: zend_builtin_functions.c:zend_string_forget_hash_val Unexecuted instantiation: zend_call_stack.c:zend_string_forget_hash_val Unexecuted instantiation: zend_closures.c:zend_string_forget_hash_val zend_compile.c:zend_string_forget_hash_val Line | Count | Source | 151 | 363 | { | 152 | 363 | ZSTR_H(s) = 0; | 153 | 363 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 363 | } |
Unexecuted instantiation: zend_constants.c:zend_string_forget_hash_val Unexecuted instantiation: zend_cpuinfo.c:zend_string_forget_hash_val Unexecuted instantiation: zend_default_classes.c:zend_string_forget_hash_val Unexecuted instantiation: zend_dtrace.c:zend_string_forget_hash_val Unexecuted instantiation: zend_enum.c:zend_string_forget_hash_val Unexecuted instantiation: zend_exceptions.c:zend_string_forget_hash_val Unexecuted instantiation: zend_execute_API.c:zend_string_forget_hash_val zend_execute.c:zend_string_forget_hash_val Line | Count | Source | 151 | 167k | { | 152 | 167k | ZSTR_H(s) = 0; | 153 | 167k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 167k | } |
Unexecuted instantiation: zend_extensions.c:zend_string_forget_hash_val Unexecuted instantiation: zend_fibers.c:zend_string_forget_hash_val Unexecuted instantiation: zend_float.c:zend_string_forget_hash_val Unexecuted instantiation: zend_gc.c:zend_string_forget_hash_val Unexecuted instantiation: zend_gdb.c:zend_string_forget_hash_val Unexecuted instantiation: zend_generators.c:zend_string_forget_hash_val Unexecuted instantiation: zend_hash.c:zend_string_forget_hash_val Unexecuted instantiation: zend_highlight.c:zend_string_forget_hash_val Unexecuted instantiation: zend_hrtime.c:zend_string_forget_hash_val Unexecuted instantiation: zend_inheritance.c:zend_string_forget_hash_val zend_ini_parser.c:zend_string_forget_hash_val Line | Count | Source | 151 | 1.28M | { | 152 | 1.28M | ZSTR_H(s) = 0; | 153 | 1.28M | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 1.28M | } |
Unexecuted instantiation: zend_ini_scanner.c:zend_string_forget_hash_val Unexecuted instantiation: zend_ini.c:zend_string_forget_hash_val Unexecuted instantiation: zend_interfaces.c:zend_string_forget_hash_val Unexecuted instantiation: zend_iterators.c:zend_string_forget_hash_val Unexecuted instantiation: zend_language_parser.c:zend_string_forget_hash_val Unexecuted instantiation: zend_language_scanner.c:zend_string_forget_hash_val Unexecuted instantiation: zend_lazy_objects.c:zend_string_forget_hash_val Unexecuted instantiation: zend_list.c:zend_string_forget_hash_val Unexecuted instantiation: zend_llist.c:zend_string_forget_hash_val Unexecuted instantiation: zend_multibyte.c:zend_string_forget_hash_val Unexecuted instantiation: zend_object_handlers.c:zend_string_forget_hash_val Unexecuted instantiation: zend_objects_API.c:zend_string_forget_hash_val Unexecuted instantiation: zend_objects.c:zend_string_forget_hash_val Unexecuted instantiation: zend_observer.c:zend_string_forget_hash_val Unexecuted instantiation: zend_opcode.c:zend_string_forget_hash_val zend_operators.c:zend_string_forget_hash_val Line | Count | Source | 151 | 639k | { | 152 | 639k | ZSTR_H(s) = 0; | 153 | 639k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 639k | } |
Unexecuted instantiation: zend_property_hooks.c:zend_string_forget_hash_val Unexecuted instantiation: zend_ptr_stack.c:zend_string_forget_hash_val Unexecuted instantiation: zend_signal.c:zend_string_forget_hash_val Unexecuted instantiation: zend_smart_str.c:zend_string_forget_hash_val Unexecuted instantiation: zend_sort.c:zend_string_forget_hash_val Unexecuted instantiation: zend_stack.c:zend_string_forget_hash_val Unexecuted instantiation: zend_stream.c:zend_string_forget_hash_val Unexecuted instantiation: zend_string.c:zend_string_forget_hash_val Unexecuted instantiation: zend_strtod.c:zend_string_forget_hash_val Unexecuted instantiation: zend_system_id.c:zend_string_forget_hash_val Unexecuted instantiation: zend_variables.c:zend_string_forget_hash_val Unexecuted instantiation: zend_virtual_cwd.c:zend_string_forget_hash_val Unexecuted instantiation: zend_vm_opcodes.c:zend_string_forget_hash_val Unexecuted instantiation: zend_weakrefs.c:zend_string_forget_hash_val zend.c:zend_string_forget_hash_val Line | Count | Source | 151 | 5.24M | { | 152 | 5.24M | ZSTR_H(s) = 0; | 153 | 5.24M | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 5.24M | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-parser.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-sapi.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-exif.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-unserialize.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-function-jit.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-json.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-execute.c:zend_string_forget_hash_val |
155 | | |
156 | | static zend_always_inline uint32_t zend_string_refcount(const zend_string *s) |
157 | 0 | { |
158 | 0 | if (!ZSTR_IS_INTERNED(s)) { |
159 | 0 | return GC_REFCOUNT(s); |
160 | 0 | } |
161 | 0 | return 1; |
162 | 0 | } Unexecuted instantiation: php_date.c:zend_string_refcount Unexecuted instantiation: astro.c:zend_string_refcount Unexecuted instantiation: dow.c:zend_string_refcount Unexecuted instantiation: parse_date.c:zend_string_refcount Unexecuted instantiation: parse_tz.c:zend_string_refcount Unexecuted instantiation: parse_posix.c:zend_string_refcount Unexecuted instantiation: timelib.c:zend_string_refcount Unexecuted instantiation: tm2unixtime.c:zend_string_refcount Unexecuted instantiation: unixtime2tm.c:zend_string_refcount Unexecuted instantiation: parse_iso_intervals.c:zend_string_refcount Unexecuted instantiation: interval.c:zend_string_refcount Unexecuted instantiation: php_pcre.c:zend_string_refcount Unexecuted instantiation: exif.c:zend_string_refcount Unexecuted instantiation: hash_adler32.c:zend_string_refcount Unexecuted instantiation: hash_crc32.c:zend_string_refcount Unexecuted instantiation: hash_fnv.c:zend_string_refcount Unexecuted instantiation: hash_gost.c:zend_string_refcount Unexecuted instantiation: hash_haval.c:zend_string_refcount Unexecuted instantiation: hash_joaat.c:zend_string_refcount Unexecuted instantiation: hash_md.c:zend_string_refcount Unexecuted instantiation: hash_murmur.c:zend_string_refcount Unexecuted instantiation: hash_ripemd.c:zend_string_refcount Unexecuted instantiation: hash_sha_ni.c:zend_string_refcount Unexecuted instantiation: hash_sha_sse2.c:zend_string_refcount Unexecuted instantiation: hash_sha.c:zend_string_refcount Unexecuted instantiation: hash_sha3.c:zend_string_refcount Unexecuted instantiation: hash_snefru.c:zend_string_refcount Unexecuted instantiation: hash_tiger.c:zend_string_refcount Unexecuted instantiation: hash_whirlpool.c:zend_string_refcount Unexecuted instantiation: hash_xxhash.c:zend_string_refcount Unexecuted instantiation: hash.c:zend_string_refcount Unexecuted instantiation: json_encoder.c:zend_string_refcount Unexecuted instantiation: json_parser.tab.c:zend_string_refcount Unexecuted instantiation: json_scanner.c:zend_string_refcount Unexecuted instantiation: json.c:zend_string_refcount Unexecuted instantiation: php_lexbor.c:zend_string_refcount Unexecuted instantiation: shared_alloc_mmap.c:zend_string_refcount Unexecuted instantiation: shared_alloc_posix.c:zend_string_refcount Unexecuted instantiation: shared_alloc_shm.c:zend_string_refcount Unexecuted instantiation: zend_accelerator_api.c:zend_string_refcount Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_refcount Unexecuted instantiation: zend_accelerator_debug.c:zend_string_refcount Unexecuted instantiation: zend_accelerator_hash.c:zend_string_refcount Unexecuted instantiation: zend_accelerator_module.c:zend_string_refcount Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_refcount Unexecuted instantiation: zend_file_cache.c:zend_string_refcount Unexecuted instantiation: zend_persist_calc.c:zend_string_refcount Unexecuted instantiation: zend_persist.c:zend_string_refcount Unexecuted instantiation: zend_shared_alloc.c:zend_string_refcount Unexecuted instantiation: ZendAccelerator.c:zend_string_refcount Unexecuted instantiation: ir_cfg.c:zend_string_refcount Unexecuted instantiation: ir_check.c:zend_string_refcount Unexecuted instantiation: ir_dump.c:zend_string_refcount Unexecuted instantiation: ir_emit.c:zend_string_refcount Unexecuted instantiation: ir_gcm.c:zend_string_refcount Unexecuted instantiation: ir_gdb.c:zend_string_refcount Unexecuted instantiation: ir_patch.c:zend_string_refcount Unexecuted instantiation: ir_perf.c:zend_string_refcount Unexecuted instantiation: ir_ra.c:zend_string_refcount Unexecuted instantiation: ir_save.c:zend_string_refcount Unexecuted instantiation: ir_sccp.c:zend_string_refcount Unexecuted instantiation: ir_strtab.c:zend_string_refcount Unexecuted instantiation: ir.c:zend_string_refcount Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_refcount Unexecuted instantiation: zend_jit.c:zend_string_refcount Unexecuted instantiation: csprng.c:zend_string_refcount Unexecuted instantiation: engine_mt19937.c:zend_string_refcount Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_refcount Unexecuted instantiation: engine_secure.c:zend_string_refcount Unexecuted instantiation: engine_user.c:zend_string_refcount Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_refcount Unexecuted instantiation: gammasection.c:zend_string_refcount Unexecuted instantiation: random.c:zend_string_refcount Unexecuted instantiation: randomizer.c:zend_string_refcount Unexecuted instantiation: zend_utils.c:zend_string_refcount Unexecuted instantiation: php_reflection.c:zend_string_refcount Unexecuted instantiation: php_spl.c:zend_string_refcount Unexecuted instantiation: spl_array.c:zend_string_refcount Unexecuted instantiation: spl_directory.c:zend_string_refcount Unexecuted instantiation: spl_dllist.c:zend_string_refcount Unexecuted instantiation: spl_exceptions.c:zend_string_refcount Unexecuted instantiation: spl_fixedarray.c:zend_string_refcount Unexecuted instantiation: spl_functions.c:zend_string_refcount Unexecuted instantiation: spl_heap.c:zend_string_refcount Unexecuted instantiation: spl_iterators.c:zend_string_refcount Unexecuted instantiation: spl_observer.c:zend_string_refcount Unexecuted instantiation: array.c:zend_string_refcount Unexecuted instantiation: assert.c:zend_string_refcount Unexecuted instantiation: base64.c:zend_string_refcount Unexecuted instantiation: basic_functions.c:zend_string_refcount Unexecuted instantiation: browscap.c:zend_string_refcount Unexecuted instantiation: crc32_x86.c:zend_string_refcount Unexecuted instantiation: crc32.c:zend_string_refcount Unexecuted instantiation: credits.c:zend_string_refcount Unexecuted instantiation: crypt.c:zend_string_refcount Unexecuted instantiation: css.c:zend_string_refcount Unexecuted instantiation: datetime.c:zend_string_refcount Unexecuted instantiation: dir.c:zend_string_refcount Unexecuted instantiation: dl.c:zend_string_refcount Unexecuted instantiation: dns.c:zend_string_refcount Unexecuted instantiation: exec.c:zend_string_refcount Unexecuted instantiation: file.c:zend_string_refcount Unexecuted instantiation: filestat.c:zend_string_refcount Unexecuted instantiation: filters.c:zend_string_refcount Unexecuted instantiation: flock_compat.c:zend_string_refcount Unexecuted instantiation: formatted_print.c:zend_string_refcount Unexecuted instantiation: fsock.c:zend_string_refcount Unexecuted instantiation: ftok.c:zend_string_refcount Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_refcount Unexecuted instantiation: head.c:zend_string_refcount Unexecuted instantiation: hrtime.c:zend_string_refcount Unexecuted instantiation: html.c:zend_string_refcount Unexecuted instantiation: http_fopen_wrapper.c:zend_string_refcount Unexecuted instantiation: http.c:zend_string_refcount Unexecuted instantiation: image.c:zend_string_refcount Unexecuted instantiation: incomplete_class.c:zend_string_refcount Unexecuted instantiation: info.c:zend_string_refcount Unexecuted instantiation: iptc.c:zend_string_refcount Unexecuted instantiation: levenshtein.c:zend_string_refcount Unexecuted instantiation: link.c:zend_string_refcount Unexecuted instantiation: mail.c:zend_string_refcount Unexecuted instantiation: math.c:zend_string_refcount Unexecuted instantiation: md5.c:zend_string_refcount Unexecuted instantiation: metaphone.c:zend_string_refcount Unexecuted instantiation: microtime.c:zend_string_refcount Unexecuted instantiation: net.c:zend_string_refcount Unexecuted instantiation: pack.c:zend_string_refcount Unexecuted instantiation: pageinfo.c:zend_string_refcount Unexecuted instantiation: password.c:zend_string_refcount Unexecuted instantiation: php_fopen_wrapper.c:zend_string_refcount Unexecuted instantiation: proc_open.c:zend_string_refcount Unexecuted instantiation: quot_print.c:zend_string_refcount Unexecuted instantiation: scanf.c:zend_string_refcount Unexecuted instantiation: sha1.c:zend_string_refcount Unexecuted instantiation: soundex.c:zend_string_refcount Unexecuted instantiation: streamsfuncs.c:zend_string_refcount Unexecuted instantiation: string.c:zend_string_refcount Unexecuted instantiation: strnatcmp.c:zend_string_refcount Unexecuted instantiation: syslog.c:zend_string_refcount Unexecuted instantiation: type.c:zend_string_refcount Unexecuted instantiation: uniqid.c:zend_string_refcount Unexecuted instantiation: url_scanner_ex.c:zend_string_refcount Unexecuted instantiation: url.c:zend_string_refcount Unexecuted instantiation: user_filters.c:zend_string_refcount Unexecuted instantiation: uuencode.c:zend_string_refcount Unexecuted instantiation: var_unserializer.c:zend_string_refcount Unexecuted instantiation: var.c:zend_string_refcount Unexecuted instantiation: versioning.c:zend_string_refcount Unexecuted instantiation: crypt_sha256.c:zend_string_refcount Unexecuted instantiation: crypt_sha512.c:zend_string_refcount Unexecuted instantiation: php_crypt_r.c:zend_string_refcount Unexecuted instantiation: php_uri.c:zend_string_refcount Unexecuted instantiation: php_uri_common.c:zend_string_refcount Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_refcount Unexecuted instantiation: uri_parser_whatwg.c:zend_string_refcount Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_refcount Unexecuted instantiation: explicit_bzero.c:zend_string_refcount Unexecuted instantiation: fopen_wrappers.c:zend_string_refcount Unexecuted instantiation: getopt.c:zend_string_refcount Unexecuted instantiation: main.c:zend_string_refcount Unexecuted instantiation: network.c:zend_string_refcount Unexecuted instantiation: output.c:zend_string_refcount Unexecuted instantiation: php_content_types.c:zend_string_refcount Unexecuted instantiation: php_ini_builder.c:zend_string_refcount Unexecuted instantiation: php_ini.c:zend_string_refcount Unexecuted instantiation: php_glob.c:zend_string_refcount Unexecuted instantiation: php_odbc_utils.c:zend_string_refcount Unexecuted instantiation: php_open_temporary_file.c:zend_string_refcount Unexecuted instantiation: php_scandir.c:zend_string_refcount Unexecuted instantiation: php_syslog.c:zend_string_refcount Unexecuted instantiation: php_ticks.c:zend_string_refcount Unexecuted instantiation: php_variables.c:zend_string_refcount Unexecuted instantiation: reentrancy.c:zend_string_refcount Unexecuted instantiation: rfc1867.c:zend_string_refcount Unexecuted instantiation: safe_bcmp.c:zend_string_refcount Unexecuted instantiation: SAPI.c:zend_string_refcount Unexecuted instantiation: snprintf.c:zend_string_refcount Unexecuted instantiation: spprintf.c:zend_string_refcount Unexecuted instantiation: strlcat.c:zend_string_refcount Unexecuted instantiation: strlcpy.c:zend_string_refcount Unexecuted instantiation: cast.c:zend_string_refcount Unexecuted instantiation: filter.c:zend_string_refcount Unexecuted instantiation: glob_wrapper.c:zend_string_refcount Unexecuted instantiation: memory.c:zend_string_refcount Unexecuted instantiation: mmap.c:zend_string_refcount Unexecuted instantiation: plain_wrapper.c:zend_string_refcount Unexecuted instantiation: stream_errors.c:zend_string_refcount Unexecuted instantiation: streams.c:zend_string_refcount Unexecuted instantiation: transports.c:zend_string_refcount Unexecuted instantiation: userspace.c:zend_string_refcount Unexecuted instantiation: xp_socket.c:zend_string_refcount Unexecuted instantiation: block_pass.c:zend_string_refcount Unexecuted instantiation: compact_literals.c:zend_string_refcount Unexecuted instantiation: compact_vars.c:zend_string_refcount Unexecuted instantiation: dce.c:zend_string_refcount Unexecuted instantiation: dfa_pass.c:zend_string_refcount Unexecuted instantiation: escape_analysis.c:zend_string_refcount Unexecuted instantiation: nop_removal.c:zend_string_refcount Unexecuted instantiation: optimize_func_calls.c:zend_string_refcount Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_refcount Unexecuted instantiation: pass1.c:zend_string_refcount Unexecuted instantiation: pass3.c:zend_string_refcount Unexecuted instantiation: sccp.c:zend_string_refcount Unexecuted instantiation: scdf.c:zend_string_refcount Unexecuted instantiation: zend_call_graph.c:zend_string_refcount Unexecuted instantiation: zend_cfg.c:zend_string_refcount Unexecuted instantiation: zend_dfg.c:zend_string_refcount Unexecuted instantiation: zend_dump.c:zend_string_refcount Unexecuted instantiation: zend_func_info.c:zend_string_refcount Unexecuted instantiation: zend_inference.c:zend_string_refcount Unexecuted instantiation: zend_optimizer.c:zend_string_refcount Unexecuted instantiation: zend_ssa.c:zend_string_refcount Unexecuted instantiation: zend_alloc.c:zend_string_refcount Unexecuted instantiation: zend_API.c:zend_string_refcount Unexecuted instantiation: zend_ast.c:zend_string_refcount Unexecuted instantiation: zend_attributes.c:zend_string_refcount Unexecuted instantiation: zend_autoload.c:zend_string_refcount Unexecuted instantiation: zend_builtin_functions.c:zend_string_refcount Unexecuted instantiation: zend_call_stack.c:zend_string_refcount Unexecuted instantiation: zend_closures.c:zend_string_refcount Unexecuted instantiation: zend_compile.c:zend_string_refcount Unexecuted instantiation: zend_constants.c:zend_string_refcount Unexecuted instantiation: zend_cpuinfo.c:zend_string_refcount Unexecuted instantiation: zend_default_classes.c:zend_string_refcount Unexecuted instantiation: zend_dtrace.c:zend_string_refcount Unexecuted instantiation: zend_enum.c:zend_string_refcount Unexecuted instantiation: zend_exceptions.c:zend_string_refcount Unexecuted instantiation: zend_execute_API.c:zend_string_refcount Unexecuted instantiation: zend_execute.c:zend_string_refcount Unexecuted instantiation: zend_extensions.c:zend_string_refcount Unexecuted instantiation: zend_fibers.c:zend_string_refcount Unexecuted instantiation: zend_float.c:zend_string_refcount Unexecuted instantiation: zend_gc.c:zend_string_refcount Unexecuted instantiation: zend_gdb.c:zend_string_refcount Unexecuted instantiation: zend_generators.c:zend_string_refcount Unexecuted instantiation: zend_hash.c:zend_string_refcount Unexecuted instantiation: zend_highlight.c:zend_string_refcount Unexecuted instantiation: zend_hrtime.c:zend_string_refcount Unexecuted instantiation: zend_inheritance.c:zend_string_refcount Unexecuted instantiation: zend_ini_parser.c:zend_string_refcount Unexecuted instantiation: zend_ini_scanner.c:zend_string_refcount Unexecuted instantiation: zend_ini.c:zend_string_refcount Unexecuted instantiation: zend_interfaces.c:zend_string_refcount Unexecuted instantiation: zend_iterators.c:zend_string_refcount Unexecuted instantiation: zend_language_parser.c:zend_string_refcount Unexecuted instantiation: zend_language_scanner.c:zend_string_refcount Unexecuted instantiation: zend_lazy_objects.c:zend_string_refcount Unexecuted instantiation: zend_list.c:zend_string_refcount Unexecuted instantiation: zend_llist.c:zend_string_refcount Unexecuted instantiation: zend_multibyte.c:zend_string_refcount Unexecuted instantiation: zend_object_handlers.c:zend_string_refcount Unexecuted instantiation: zend_objects_API.c:zend_string_refcount Unexecuted instantiation: zend_objects.c:zend_string_refcount Unexecuted instantiation: zend_observer.c:zend_string_refcount Unexecuted instantiation: zend_opcode.c:zend_string_refcount Unexecuted instantiation: zend_operators.c:zend_string_refcount Unexecuted instantiation: zend_property_hooks.c:zend_string_refcount Unexecuted instantiation: zend_ptr_stack.c:zend_string_refcount Unexecuted instantiation: zend_signal.c:zend_string_refcount Unexecuted instantiation: zend_smart_str.c:zend_string_refcount Unexecuted instantiation: zend_sort.c:zend_string_refcount Unexecuted instantiation: zend_stack.c:zend_string_refcount Unexecuted instantiation: zend_stream.c:zend_string_refcount Unexecuted instantiation: zend_string.c:zend_string_refcount Unexecuted instantiation: zend_strtod.c:zend_string_refcount Unexecuted instantiation: zend_system_id.c:zend_string_refcount Unexecuted instantiation: zend_variables.c:zend_string_refcount Unexecuted instantiation: zend_virtual_cwd.c:zend_string_refcount Unexecuted instantiation: zend_vm_opcodes.c:zend_string_refcount Unexecuted instantiation: zend_weakrefs.c:zend_string_refcount Unexecuted instantiation: zend.c:zend_string_refcount Unexecuted instantiation: internal_functions_cli.c:zend_string_refcount Unexecuted instantiation: fuzzer-parser.c:zend_string_refcount Unexecuted instantiation: fuzzer-sapi.c:zend_string_refcount Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_refcount Unexecuted instantiation: fuzzer-exif.c:zend_string_refcount Unexecuted instantiation: fuzzer-unserialize.c:zend_string_refcount Unexecuted instantiation: fuzzer-function-jit.c:zend_string_refcount Unexecuted instantiation: fuzzer-json.c:zend_string_refcount Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_refcount Unexecuted instantiation: fuzzer-execute.c:zend_string_refcount |
163 | | |
164 | | static zend_always_inline uint32_t zend_string_addref(zend_string *s) |
165 | 3.21M | { |
166 | 3.21M | if (!ZSTR_IS_INTERNED(s)) { |
167 | 3.09M | return GC_ADDREF(s); |
168 | 3.09M | } |
169 | 117k | return 1; |
170 | 3.21M | } Unexecuted instantiation: php_date.c:zend_string_addref Unexecuted instantiation: astro.c:zend_string_addref Unexecuted instantiation: dow.c:zend_string_addref Unexecuted instantiation: parse_date.c:zend_string_addref Unexecuted instantiation: parse_tz.c:zend_string_addref Unexecuted instantiation: parse_posix.c:zend_string_addref Unexecuted instantiation: timelib.c:zend_string_addref Unexecuted instantiation: tm2unixtime.c:zend_string_addref Unexecuted instantiation: unixtime2tm.c:zend_string_addref Unexecuted instantiation: parse_iso_intervals.c:zend_string_addref Unexecuted instantiation: interval.c:zend_string_addref Unexecuted instantiation: php_pcre.c:zend_string_addref Unexecuted instantiation: exif.c:zend_string_addref Unexecuted instantiation: hash_adler32.c:zend_string_addref Unexecuted instantiation: hash_crc32.c:zend_string_addref Unexecuted instantiation: hash_fnv.c:zend_string_addref Unexecuted instantiation: hash_gost.c:zend_string_addref Unexecuted instantiation: hash_haval.c:zend_string_addref Unexecuted instantiation: hash_joaat.c:zend_string_addref Unexecuted instantiation: hash_md.c:zend_string_addref Unexecuted instantiation: hash_murmur.c:zend_string_addref Unexecuted instantiation: hash_ripemd.c:zend_string_addref Unexecuted instantiation: hash_sha_ni.c:zend_string_addref Unexecuted instantiation: hash_sha_sse2.c:zend_string_addref Unexecuted instantiation: hash_sha.c:zend_string_addref Unexecuted instantiation: hash_sha3.c:zend_string_addref Unexecuted instantiation: hash_snefru.c:zend_string_addref Unexecuted instantiation: hash_tiger.c:zend_string_addref Unexecuted instantiation: hash_whirlpool.c:zend_string_addref Unexecuted instantiation: hash_xxhash.c:zend_string_addref Unexecuted instantiation: hash.c:zend_string_addref Unexecuted instantiation: json_encoder.c:zend_string_addref Unexecuted instantiation: json_parser.tab.c:zend_string_addref Unexecuted instantiation: json_scanner.c:zend_string_addref Unexecuted instantiation: json.c:zend_string_addref Unexecuted instantiation: php_lexbor.c:zend_string_addref Unexecuted instantiation: shared_alloc_mmap.c:zend_string_addref Unexecuted instantiation: shared_alloc_posix.c:zend_string_addref Unexecuted instantiation: shared_alloc_shm.c:zend_string_addref Unexecuted instantiation: zend_accelerator_api.c:zend_string_addref Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_addref Unexecuted instantiation: zend_accelerator_debug.c:zend_string_addref Unexecuted instantiation: zend_accelerator_hash.c:zend_string_addref Unexecuted instantiation: zend_accelerator_module.c:zend_string_addref zend_accelerator_util_funcs.c:zend_string_addref Line | Count | Source | 165 | 20.7k | { | 166 | 20.7k | if (!ZSTR_IS_INTERNED(s)) { | 167 | 20.7k | return GC_ADDREF(s); | 168 | 20.7k | } | 169 | 0 | return 1; | 170 | 20.7k | } |
Unexecuted instantiation: zend_file_cache.c:zend_string_addref Unexecuted instantiation: zend_persist_calc.c:zend_string_addref Unexecuted instantiation: zend_persist.c:zend_string_addref Unexecuted instantiation: zend_shared_alloc.c:zend_string_addref ZendAccelerator.c:zend_string_addref Line | Count | Source | 165 | 128 | { | 166 | 128 | if (!ZSTR_IS_INTERNED(s)) { | 167 | 0 | return GC_ADDREF(s); | 168 | 0 | } | 169 | 128 | return 1; | 170 | 128 | } |
Unexecuted instantiation: ir_cfg.c:zend_string_addref Unexecuted instantiation: ir_check.c:zend_string_addref Unexecuted instantiation: ir_dump.c:zend_string_addref Unexecuted instantiation: ir_emit.c:zend_string_addref Unexecuted instantiation: ir_gcm.c:zend_string_addref Unexecuted instantiation: ir_gdb.c:zend_string_addref Unexecuted instantiation: ir_patch.c:zend_string_addref Unexecuted instantiation: ir_perf.c:zend_string_addref Unexecuted instantiation: ir_ra.c:zend_string_addref Unexecuted instantiation: ir_save.c:zend_string_addref Unexecuted instantiation: ir_sccp.c:zend_string_addref Unexecuted instantiation: ir_strtab.c:zend_string_addref Unexecuted instantiation: ir.c:zend_string_addref Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_addref Unexecuted instantiation: zend_jit.c:zend_string_addref Unexecuted instantiation: csprng.c:zend_string_addref Unexecuted instantiation: engine_mt19937.c:zend_string_addref Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_addref Unexecuted instantiation: engine_secure.c:zend_string_addref Unexecuted instantiation: engine_user.c:zend_string_addref Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_addref Unexecuted instantiation: gammasection.c:zend_string_addref Unexecuted instantiation: random.c:zend_string_addref Unexecuted instantiation: randomizer.c:zend_string_addref Unexecuted instantiation: zend_utils.c:zend_string_addref php_reflection.c:zend_string_addref Line | Count | Source | 165 | 40 | { | 166 | 40 | if (!ZSTR_IS_INTERNED(s)) { | 167 | 2 | return GC_ADDREF(s); | 168 | 2 | } | 169 | 38 | return 1; | 170 | 40 | } |
Unexecuted instantiation: php_spl.c:zend_string_addref Unexecuted instantiation: spl_array.c:zend_string_addref Unexecuted instantiation: spl_directory.c:zend_string_addref Unexecuted instantiation: spl_dllist.c:zend_string_addref Unexecuted instantiation: spl_exceptions.c:zend_string_addref Unexecuted instantiation: spl_fixedarray.c:zend_string_addref Unexecuted instantiation: spl_functions.c:zend_string_addref Unexecuted instantiation: spl_heap.c:zend_string_addref Unexecuted instantiation: spl_iterators.c:zend_string_addref Unexecuted instantiation: spl_observer.c:zend_string_addref array.c:zend_string_addref Line | Count | Source | 165 | 1 | { | 166 | 1 | if (!ZSTR_IS_INTERNED(s)) { | 167 | 1 | return GC_ADDREF(s); | 168 | 1 | } | 169 | 0 | return 1; | 170 | 1 | } |
Unexecuted instantiation: assert.c:zend_string_addref Unexecuted instantiation: base64.c:zend_string_addref basic_functions.c:zend_string_addref Line | Count | Source | 165 | 6 | { | 166 | 6 | if (!ZSTR_IS_INTERNED(s)) { | 167 | 1 | return GC_ADDREF(s); | 168 | 1 | } | 169 | 5 | return 1; | 170 | 6 | } |
Unexecuted instantiation: browscap.c:zend_string_addref Unexecuted instantiation: crc32_x86.c:zend_string_addref Unexecuted instantiation: crc32.c:zend_string_addref Unexecuted instantiation: credits.c:zend_string_addref Unexecuted instantiation: crypt.c:zend_string_addref Unexecuted instantiation: css.c:zend_string_addref Unexecuted instantiation: datetime.c:zend_string_addref Unexecuted instantiation: dir.c:zend_string_addref Unexecuted instantiation: dl.c:zend_string_addref Unexecuted instantiation: dns.c:zend_string_addref Unexecuted instantiation: exec.c:zend_string_addref Unexecuted instantiation: file.c:zend_string_addref Unexecuted instantiation: filestat.c:zend_string_addref Unexecuted instantiation: filters.c:zend_string_addref Unexecuted instantiation: flock_compat.c:zend_string_addref Unexecuted instantiation: formatted_print.c:zend_string_addref Unexecuted instantiation: fsock.c:zend_string_addref Unexecuted instantiation: ftok.c:zend_string_addref Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_addref Unexecuted instantiation: head.c:zend_string_addref Unexecuted instantiation: hrtime.c:zend_string_addref Unexecuted instantiation: html.c:zend_string_addref Unexecuted instantiation: http_fopen_wrapper.c:zend_string_addref Unexecuted instantiation: http.c:zend_string_addref Unexecuted instantiation: image.c:zend_string_addref Unexecuted instantiation: incomplete_class.c:zend_string_addref Unexecuted instantiation: info.c:zend_string_addref Unexecuted instantiation: iptc.c:zend_string_addref Unexecuted instantiation: levenshtein.c:zend_string_addref Unexecuted instantiation: link.c:zend_string_addref Unexecuted instantiation: mail.c:zend_string_addref Unexecuted instantiation: math.c:zend_string_addref Unexecuted instantiation: md5.c:zend_string_addref Unexecuted instantiation: metaphone.c:zend_string_addref Unexecuted instantiation: microtime.c:zend_string_addref Unexecuted instantiation: net.c:zend_string_addref Unexecuted instantiation: pack.c:zend_string_addref Unexecuted instantiation: pageinfo.c:zend_string_addref Unexecuted instantiation: password.c:zend_string_addref Unexecuted instantiation: php_fopen_wrapper.c:zend_string_addref Unexecuted instantiation: proc_open.c:zend_string_addref Unexecuted instantiation: quot_print.c:zend_string_addref Unexecuted instantiation: scanf.c:zend_string_addref Unexecuted instantiation: sha1.c:zend_string_addref Unexecuted instantiation: soundex.c:zend_string_addref Unexecuted instantiation: streamsfuncs.c:zend_string_addref Unexecuted instantiation: string.c:zend_string_addref Unexecuted instantiation: strnatcmp.c:zend_string_addref Unexecuted instantiation: syslog.c:zend_string_addref Unexecuted instantiation: type.c:zend_string_addref Unexecuted instantiation: uniqid.c:zend_string_addref Unexecuted instantiation: url_scanner_ex.c:zend_string_addref Unexecuted instantiation: url.c:zend_string_addref Unexecuted instantiation: user_filters.c:zend_string_addref Unexecuted instantiation: uuencode.c:zend_string_addref Unexecuted instantiation: var_unserializer.c:zend_string_addref Unexecuted instantiation: var.c:zend_string_addref Unexecuted instantiation: versioning.c:zend_string_addref Unexecuted instantiation: crypt_sha256.c:zend_string_addref Unexecuted instantiation: crypt_sha512.c:zend_string_addref Unexecuted instantiation: php_crypt_r.c:zend_string_addref Unexecuted instantiation: php_uri.c:zend_string_addref Unexecuted instantiation: php_uri_common.c:zend_string_addref Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_addref Unexecuted instantiation: uri_parser_whatwg.c:zend_string_addref Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_addref Unexecuted instantiation: explicit_bzero.c:zend_string_addref Unexecuted instantiation: fopen_wrappers.c:zend_string_addref Unexecuted instantiation: getopt.c:zend_string_addref Unexecuted instantiation: main.c:zend_string_addref Unexecuted instantiation: network.c:zend_string_addref output.c:zend_string_addref Line | Count | Source | 165 | 51.4k | { | 166 | 51.4k | if (!ZSTR_IS_INTERNED(s)) { | 167 | 4.89k | return GC_ADDREF(s); | 168 | 4.89k | } | 169 | 46.5k | return 1; | 170 | 51.4k | } |
Unexecuted instantiation: php_content_types.c:zend_string_addref Unexecuted instantiation: php_ini_builder.c:zend_string_addref Unexecuted instantiation: php_ini.c:zend_string_addref Unexecuted instantiation: php_glob.c:zend_string_addref Unexecuted instantiation: php_odbc_utils.c:zend_string_addref Unexecuted instantiation: php_open_temporary_file.c:zend_string_addref Unexecuted instantiation: php_scandir.c:zend_string_addref Unexecuted instantiation: php_syslog.c:zend_string_addref Unexecuted instantiation: php_ticks.c:zend_string_addref Unexecuted instantiation: php_variables.c:zend_string_addref Unexecuted instantiation: reentrancy.c:zend_string_addref Unexecuted instantiation: rfc1867.c:zend_string_addref Unexecuted instantiation: safe_bcmp.c:zend_string_addref Unexecuted instantiation: SAPI.c:zend_string_addref Unexecuted instantiation: snprintf.c:zend_string_addref Unexecuted instantiation: spprintf.c:zend_string_addref Unexecuted instantiation: strlcat.c:zend_string_addref Unexecuted instantiation: strlcpy.c:zend_string_addref Unexecuted instantiation: cast.c:zend_string_addref Unexecuted instantiation: filter.c:zend_string_addref Unexecuted instantiation: glob_wrapper.c:zend_string_addref Unexecuted instantiation: memory.c:zend_string_addref Unexecuted instantiation: mmap.c:zend_string_addref Unexecuted instantiation: plain_wrapper.c:zend_string_addref Unexecuted instantiation: stream_errors.c:zend_string_addref Unexecuted instantiation: streams.c:zend_string_addref Unexecuted instantiation: transports.c:zend_string_addref Unexecuted instantiation: userspace.c:zend_string_addref Unexecuted instantiation: xp_socket.c:zend_string_addref Unexecuted instantiation: block_pass.c:zend_string_addref Unexecuted instantiation: compact_literals.c:zend_string_addref Unexecuted instantiation: compact_vars.c:zend_string_addref Unexecuted instantiation: dce.c:zend_string_addref Unexecuted instantiation: dfa_pass.c:zend_string_addref Unexecuted instantiation: escape_analysis.c:zend_string_addref Unexecuted instantiation: nop_removal.c:zend_string_addref Unexecuted instantiation: optimize_func_calls.c:zend_string_addref Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_addref Unexecuted instantiation: pass1.c:zend_string_addref Unexecuted instantiation: pass3.c:zend_string_addref Unexecuted instantiation: sccp.c:zend_string_addref Unexecuted instantiation: scdf.c:zend_string_addref Unexecuted instantiation: zend_call_graph.c:zend_string_addref Unexecuted instantiation: zend_cfg.c:zend_string_addref Unexecuted instantiation: zend_dfg.c:zend_string_addref Unexecuted instantiation: zend_dump.c:zend_string_addref Unexecuted instantiation: zend_func_info.c:zend_string_addref Unexecuted instantiation: zend_inference.c:zend_string_addref Unexecuted instantiation: zend_optimizer.c:zend_string_addref Unexecuted instantiation: zend_ssa.c:zend_string_addref Unexecuted instantiation: zend_alloc.c:zend_string_addref zend_API.c:zend_string_addref Line | Count | Source | 165 | 9.74k | { | 166 | 9.74k | if (!ZSTR_IS_INTERNED(s)) { | 167 | 7.50k | return GC_ADDREF(s); | 168 | 7.50k | } | 169 | 2.24k | return 1; | 170 | 9.74k | } |
Unexecuted instantiation: zend_ast.c:zend_string_addref Unexecuted instantiation: zend_attributes.c:zend_string_addref zend_autoload.c:zend_string_addref Line | Count | Source | 165 | 12 | { | 166 | 12 | if (!ZSTR_IS_INTERNED(s)) { | 167 | 12 | return GC_ADDREF(s); | 168 | 12 | } | 169 | 0 | return 1; | 170 | 12 | } |
Unexecuted instantiation: zend_builtin_functions.c:zend_string_addref Unexecuted instantiation: zend_call_stack.c:zend_string_addref zend_closures.c:zend_string_addref Line | Count | Source | 165 | 13.7k | { | 166 | 13.7k | if (!ZSTR_IS_INTERNED(s)) { | 167 | 1.35k | return GC_ADDREF(s); | 168 | 1.35k | } | 169 | 12.4k | return 1; | 170 | 13.7k | } |
zend_compile.c:zend_string_addref Line | Count | Source | 165 | 80.5k | { | 166 | 80.5k | if (!ZSTR_IS_INTERNED(s)) { | 167 | 69.1k | return GC_ADDREF(s); | 168 | 69.1k | } | 169 | 11.3k | return 1; | 170 | 80.5k | } |
Unexecuted instantiation: zend_constants.c:zend_string_addref Unexecuted instantiation: zend_cpuinfo.c:zend_string_addref Unexecuted instantiation: zend_default_classes.c:zend_string_addref Unexecuted instantiation: zend_dtrace.c:zend_string_addref Unexecuted instantiation: zend_enum.c:zend_string_addref Unexecuted instantiation: zend_exceptions.c:zend_string_addref zend_execute_API.c:zend_string_addref Line | Count | Source | 165 | 1.38k | { | 166 | 1.38k | if (!ZSTR_IS_INTERNED(s)) { | 167 | 1.38k | return GC_ADDREF(s); | 168 | 1.38k | } | 169 | 0 | return 1; | 170 | 1.38k | } |
zend_execute.c:zend_string_addref Line | Count | Source | 165 | 12.3k | { | 166 | 12.3k | if (!ZSTR_IS_INTERNED(s)) { | 167 | 8.16k | return GC_ADDREF(s); | 168 | 8.16k | } | 169 | 4.16k | return 1; | 170 | 12.3k | } |
Unexecuted instantiation: zend_extensions.c:zend_string_addref Unexecuted instantiation: zend_fibers.c:zend_string_addref Unexecuted instantiation: zend_float.c:zend_string_addref Unexecuted instantiation: zend_gc.c:zend_string_addref Unexecuted instantiation: zend_gdb.c:zend_string_addref Unexecuted instantiation: zend_generators.c:zend_string_addref zend_hash.c:zend_string_addref Line | Count | Source | 165 | 2.98M | { | 166 | 2.98M | if (!ZSTR_IS_INTERNED(s)) { | 167 | 2.97M | return GC_ADDREF(s); | 168 | 2.97M | } | 169 | 4.36k | return 1; | 170 | 2.98M | } |
Unexecuted instantiation: zend_highlight.c:zend_string_addref Unexecuted instantiation: zend_hrtime.c:zend_string_addref zend_inheritance.c:zend_string_addref Line | Count | Source | 165 | 41.0k | { | 166 | 41.0k | if (!ZSTR_IS_INTERNED(s)) { | 167 | 4.90k | return GC_ADDREF(s); | 168 | 4.90k | } | 169 | 36.1k | return 1; | 170 | 41.0k | } |
Unexecuted instantiation: zend_ini_parser.c:zend_string_addref Unexecuted instantiation: zend_ini_scanner.c:zend_string_addref Unexecuted instantiation: zend_ini.c:zend_string_addref Unexecuted instantiation: zend_interfaces.c:zend_string_addref Unexecuted instantiation: zend_iterators.c:zend_string_addref Unexecuted instantiation: zend_language_parser.c:zend_string_addref Unexecuted instantiation: zend_language_scanner.c:zend_string_addref Unexecuted instantiation: zend_lazy_objects.c:zend_string_addref Unexecuted instantiation: zend_list.c:zend_string_addref Unexecuted instantiation: zend_llist.c:zend_string_addref Unexecuted instantiation: zend_multibyte.c:zend_string_addref zend_object_handlers.c:zend_string_addref Line | Count | Source | 165 | 216 | { | 166 | 216 | if (!ZSTR_IS_INTERNED(s)) { | 167 | 216 | return GC_ADDREF(s); | 168 | 216 | } | 169 | 0 | return 1; | 170 | 216 | } |
Unexecuted instantiation: zend_objects_API.c:zend_string_addref zend_objects.c:zend_string_addref Line | Count | Source | 165 | 5 | { | 166 | 5 | if (!ZSTR_IS_INTERNED(s)) { | 167 | 5 | return GC_ADDREF(s); | 168 | 5 | } | 169 | 0 | return 1; | 170 | 5 | } |
Unexecuted instantiation: zend_observer.c:zend_string_addref Unexecuted instantiation: zend_opcode.c:zend_string_addref zend_operators.c:zend_string_addref Line | Count | Source | 165 | 2.44k | { | 166 | 2.44k | if (!ZSTR_IS_INTERNED(s)) { | 167 | 1.93k | return GC_ADDREF(s); | 168 | 1.93k | } | 169 | 504 | return 1; | 170 | 2.44k | } |
Unexecuted instantiation: zend_property_hooks.c:zend_string_addref Unexecuted instantiation: zend_ptr_stack.c:zend_string_addref Unexecuted instantiation: zend_signal.c:zend_string_addref Unexecuted instantiation: zend_smart_str.c:zend_string_addref Unexecuted instantiation: zend_sort.c:zend_string_addref Unexecuted instantiation: zend_stack.c:zend_string_addref Unexecuted instantiation: zend_stream.c:zend_string_addref Unexecuted instantiation: zend_string.c:zend_string_addref Unexecuted instantiation: zend_strtod.c:zend_string_addref Unexecuted instantiation: zend_system_id.c:zend_string_addref Unexecuted instantiation: zend_variables.c:zend_string_addref Unexecuted instantiation: zend_virtual_cwd.c:zend_string_addref Unexecuted instantiation: zend_vm_opcodes.c:zend_string_addref Unexecuted instantiation: zend_weakrefs.c:zend_string_addref Unexecuted instantiation: zend.c:zend_string_addref Unexecuted instantiation: internal_functions_cli.c:zend_string_addref Unexecuted instantiation: fuzzer-parser.c:zend_string_addref Unexecuted instantiation: fuzzer-sapi.c:zend_string_addref Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_addref Unexecuted instantiation: fuzzer-exif.c:zend_string_addref Unexecuted instantiation: fuzzer-unserialize.c:zend_string_addref Unexecuted instantiation: fuzzer-function-jit.c:zend_string_addref Unexecuted instantiation: fuzzer-json.c:zend_string_addref Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_addref Unexecuted instantiation: fuzzer-execute.c:zend_string_addref |
171 | | |
172 | | static zend_always_inline uint32_t zend_string_delref(zend_string *s) |
173 | 296 | { |
174 | 296 | if (!ZSTR_IS_INTERNED(s)) { |
175 | 162 | return GC_DELREF(s); |
176 | 162 | } |
177 | 134 | return 1; |
178 | 296 | } Unexecuted instantiation: php_date.c:zend_string_delref Unexecuted instantiation: astro.c:zend_string_delref Unexecuted instantiation: dow.c:zend_string_delref Unexecuted instantiation: parse_date.c:zend_string_delref Unexecuted instantiation: parse_tz.c:zend_string_delref Unexecuted instantiation: parse_posix.c:zend_string_delref Unexecuted instantiation: timelib.c:zend_string_delref Unexecuted instantiation: tm2unixtime.c:zend_string_delref Unexecuted instantiation: unixtime2tm.c:zend_string_delref Unexecuted instantiation: parse_iso_intervals.c:zend_string_delref Unexecuted instantiation: interval.c:zend_string_delref Unexecuted instantiation: php_pcre.c:zend_string_delref Unexecuted instantiation: exif.c:zend_string_delref Unexecuted instantiation: hash_adler32.c:zend_string_delref Unexecuted instantiation: hash_crc32.c:zend_string_delref Unexecuted instantiation: hash_fnv.c:zend_string_delref Unexecuted instantiation: hash_gost.c:zend_string_delref Unexecuted instantiation: hash_haval.c:zend_string_delref Unexecuted instantiation: hash_joaat.c:zend_string_delref Unexecuted instantiation: hash_md.c:zend_string_delref Unexecuted instantiation: hash_murmur.c:zend_string_delref Unexecuted instantiation: hash_ripemd.c:zend_string_delref Unexecuted instantiation: hash_sha_ni.c:zend_string_delref Unexecuted instantiation: hash_sha_sse2.c:zend_string_delref Unexecuted instantiation: hash_sha.c:zend_string_delref Unexecuted instantiation: hash_sha3.c:zend_string_delref Unexecuted instantiation: hash_snefru.c:zend_string_delref Unexecuted instantiation: hash_tiger.c:zend_string_delref Unexecuted instantiation: hash_whirlpool.c:zend_string_delref Unexecuted instantiation: hash_xxhash.c:zend_string_delref Unexecuted instantiation: hash.c:zend_string_delref Unexecuted instantiation: json_encoder.c:zend_string_delref Unexecuted instantiation: json_parser.tab.c:zend_string_delref Unexecuted instantiation: json_scanner.c:zend_string_delref Unexecuted instantiation: json.c:zend_string_delref Unexecuted instantiation: php_lexbor.c:zend_string_delref Unexecuted instantiation: shared_alloc_mmap.c:zend_string_delref Unexecuted instantiation: shared_alloc_posix.c:zend_string_delref Unexecuted instantiation: shared_alloc_shm.c:zend_string_delref Unexecuted instantiation: zend_accelerator_api.c:zend_string_delref Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_delref Unexecuted instantiation: zend_accelerator_debug.c:zend_string_delref Unexecuted instantiation: zend_accelerator_hash.c:zend_string_delref Unexecuted instantiation: zend_accelerator_module.c:zend_string_delref Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_delref Unexecuted instantiation: zend_file_cache.c:zend_string_delref Unexecuted instantiation: zend_persist_calc.c:zend_string_delref Unexecuted instantiation: zend_persist.c:zend_string_delref Unexecuted instantiation: zend_shared_alloc.c:zend_string_delref Unexecuted instantiation: ZendAccelerator.c:zend_string_delref Unexecuted instantiation: ir_cfg.c:zend_string_delref Unexecuted instantiation: ir_check.c:zend_string_delref Unexecuted instantiation: ir_dump.c:zend_string_delref Unexecuted instantiation: ir_emit.c:zend_string_delref Unexecuted instantiation: ir_gcm.c:zend_string_delref Unexecuted instantiation: ir_gdb.c:zend_string_delref Unexecuted instantiation: ir_patch.c:zend_string_delref Unexecuted instantiation: ir_perf.c:zend_string_delref Unexecuted instantiation: ir_ra.c:zend_string_delref Unexecuted instantiation: ir_save.c:zend_string_delref Unexecuted instantiation: ir_sccp.c:zend_string_delref Unexecuted instantiation: ir_strtab.c:zend_string_delref Unexecuted instantiation: ir.c:zend_string_delref Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_delref Unexecuted instantiation: zend_jit.c:zend_string_delref Unexecuted instantiation: csprng.c:zend_string_delref Unexecuted instantiation: engine_mt19937.c:zend_string_delref Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_delref Unexecuted instantiation: engine_secure.c:zend_string_delref Unexecuted instantiation: engine_user.c:zend_string_delref Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_delref Unexecuted instantiation: gammasection.c:zend_string_delref Unexecuted instantiation: random.c:zend_string_delref Unexecuted instantiation: randomizer.c:zend_string_delref Unexecuted instantiation: zend_utils.c:zend_string_delref Unexecuted instantiation: php_reflection.c:zend_string_delref Unexecuted instantiation: php_spl.c:zend_string_delref Unexecuted instantiation: spl_array.c:zend_string_delref Unexecuted instantiation: spl_directory.c:zend_string_delref Unexecuted instantiation: spl_dllist.c:zend_string_delref Unexecuted instantiation: spl_exceptions.c:zend_string_delref Unexecuted instantiation: spl_fixedarray.c:zend_string_delref Unexecuted instantiation: spl_functions.c:zend_string_delref Unexecuted instantiation: spl_heap.c:zend_string_delref Unexecuted instantiation: spl_iterators.c:zend_string_delref Unexecuted instantiation: spl_observer.c:zend_string_delref Unexecuted instantiation: array.c:zend_string_delref Unexecuted instantiation: assert.c:zend_string_delref Unexecuted instantiation: base64.c:zend_string_delref Unexecuted instantiation: basic_functions.c:zend_string_delref Unexecuted instantiation: browscap.c:zend_string_delref Unexecuted instantiation: crc32_x86.c:zend_string_delref Unexecuted instantiation: crc32.c:zend_string_delref Unexecuted instantiation: credits.c:zend_string_delref Unexecuted instantiation: crypt.c:zend_string_delref Unexecuted instantiation: css.c:zend_string_delref Unexecuted instantiation: datetime.c:zend_string_delref Unexecuted instantiation: dir.c:zend_string_delref Unexecuted instantiation: dl.c:zend_string_delref Unexecuted instantiation: dns.c:zend_string_delref Unexecuted instantiation: exec.c:zend_string_delref Unexecuted instantiation: file.c:zend_string_delref Unexecuted instantiation: filestat.c:zend_string_delref Unexecuted instantiation: filters.c:zend_string_delref Unexecuted instantiation: flock_compat.c:zend_string_delref Unexecuted instantiation: formatted_print.c:zend_string_delref Unexecuted instantiation: fsock.c:zend_string_delref Unexecuted instantiation: ftok.c:zend_string_delref Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_delref Unexecuted instantiation: head.c:zend_string_delref Unexecuted instantiation: hrtime.c:zend_string_delref Unexecuted instantiation: html.c:zend_string_delref Unexecuted instantiation: http_fopen_wrapper.c:zend_string_delref Unexecuted instantiation: http.c:zend_string_delref Unexecuted instantiation: image.c:zend_string_delref Unexecuted instantiation: incomplete_class.c:zend_string_delref Unexecuted instantiation: info.c:zend_string_delref Unexecuted instantiation: iptc.c:zend_string_delref Unexecuted instantiation: levenshtein.c:zend_string_delref Unexecuted instantiation: link.c:zend_string_delref Unexecuted instantiation: mail.c:zend_string_delref Unexecuted instantiation: math.c:zend_string_delref Unexecuted instantiation: md5.c:zend_string_delref Unexecuted instantiation: metaphone.c:zend_string_delref Unexecuted instantiation: microtime.c:zend_string_delref Unexecuted instantiation: net.c:zend_string_delref Unexecuted instantiation: pack.c:zend_string_delref Unexecuted instantiation: pageinfo.c:zend_string_delref Unexecuted instantiation: password.c:zend_string_delref Unexecuted instantiation: php_fopen_wrapper.c:zend_string_delref Unexecuted instantiation: proc_open.c:zend_string_delref Unexecuted instantiation: quot_print.c:zend_string_delref Unexecuted instantiation: scanf.c:zend_string_delref Unexecuted instantiation: sha1.c:zend_string_delref Unexecuted instantiation: soundex.c:zend_string_delref Unexecuted instantiation: streamsfuncs.c:zend_string_delref Unexecuted instantiation: string.c:zend_string_delref Unexecuted instantiation: strnatcmp.c:zend_string_delref Unexecuted instantiation: syslog.c:zend_string_delref Unexecuted instantiation: type.c:zend_string_delref Unexecuted instantiation: uniqid.c:zend_string_delref Unexecuted instantiation: url_scanner_ex.c:zend_string_delref Unexecuted instantiation: url.c:zend_string_delref Unexecuted instantiation: user_filters.c:zend_string_delref Unexecuted instantiation: uuencode.c:zend_string_delref Unexecuted instantiation: var_unserializer.c:zend_string_delref Unexecuted instantiation: var.c:zend_string_delref Unexecuted instantiation: versioning.c:zend_string_delref Unexecuted instantiation: crypt_sha256.c:zend_string_delref Unexecuted instantiation: crypt_sha512.c:zend_string_delref Unexecuted instantiation: php_crypt_r.c:zend_string_delref Unexecuted instantiation: php_uri.c:zend_string_delref Unexecuted instantiation: php_uri_common.c:zend_string_delref Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_delref Unexecuted instantiation: uri_parser_whatwg.c:zend_string_delref Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_delref Unexecuted instantiation: explicit_bzero.c:zend_string_delref Unexecuted instantiation: fopen_wrappers.c:zend_string_delref Unexecuted instantiation: getopt.c:zend_string_delref Unexecuted instantiation: main.c:zend_string_delref Unexecuted instantiation: network.c:zend_string_delref Unexecuted instantiation: output.c:zend_string_delref Unexecuted instantiation: php_content_types.c:zend_string_delref Unexecuted instantiation: php_ini_builder.c:zend_string_delref Unexecuted instantiation: php_ini.c:zend_string_delref Unexecuted instantiation: php_glob.c:zend_string_delref Unexecuted instantiation: php_odbc_utils.c:zend_string_delref Unexecuted instantiation: php_open_temporary_file.c:zend_string_delref Unexecuted instantiation: php_scandir.c:zend_string_delref Unexecuted instantiation: php_syslog.c:zend_string_delref Unexecuted instantiation: php_ticks.c:zend_string_delref Unexecuted instantiation: php_variables.c:zend_string_delref Unexecuted instantiation: reentrancy.c:zend_string_delref Unexecuted instantiation: rfc1867.c:zend_string_delref Unexecuted instantiation: safe_bcmp.c:zend_string_delref Unexecuted instantiation: SAPI.c:zend_string_delref Unexecuted instantiation: snprintf.c:zend_string_delref Unexecuted instantiation: spprintf.c:zend_string_delref Unexecuted instantiation: strlcat.c:zend_string_delref Unexecuted instantiation: strlcpy.c:zend_string_delref Unexecuted instantiation: cast.c:zend_string_delref Unexecuted instantiation: filter.c:zend_string_delref Unexecuted instantiation: glob_wrapper.c:zend_string_delref Unexecuted instantiation: memory.c:zend_string_delref Unexecuted instantiation: mmap.c:zend_string_delref Unexecuted instantiation: plain_wrapper.c:zend_string_delref Unexecuted instantiation: stream_errors.c:zend_string_delref Unexecuted instantiation: streams.c:zend_string_delref Unexecuted instantiation: transports.c:zend_string_delref Unexecuted instantiation: userspace.c:zend_string_delref Unexecuted instantiation: xp_socket.c:zend_string_delref Unexecuted instantiation: block_pass.c:zend_string_delref Unexecuted instantiation: compact_literals.c:zend_string_delref Unexecuted instantiation: compact_vars.c:zend_string_delref Unexecuted instantiation: dce.c:zend_string_delref Unexecuted instantiation: dfa_pass.c:zend_string_delref Unexecuted instantiation: escape_analysis.c:zend_string_delref Unexecuted instantiation: nop_removal.c:zend_string_delref Unexecuted instantiation: optimize_func_calls.c:zend_string_delref Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_delref Unexecuted instantiation: pass1.c:zend_string_delref Unexecuted instantiation: pass3.c:zend_string_delref Unexecuted instantiation: sccp.c:zend_string_delref Unexecuted instantiation: scdf.c:zend_string_delref Unexecuted instantiation: zend_call_graph.c:zend_string_delref Unexecuted instantiation: zend_cfg.c:zend_string_delref Unexecuted instantiation: zend_dfg.c:zend_string_delref Unexecuted instantiation: zend_dump.c:zend_string_delref Unexecuted instantiation: zend_func_info.c:zend_string_delref Unexecuted instantiation: zend_inference.c:zend_string_delref Unexecuted instantiation: zend_optimizer.c:zend_string_delref Unexecuted instantiation: zend_ssa.c:zend_string_delref Unexecuted instantiation: zend_alloc.c:zend_string_delref Unexecuted instantiation: zend_API.c:zend_string_delref Unexecuted instantiation: zend_ast.c:zend_string_delref Unexecuted instantiation: zend_attributes.c:zend_string_delref Unexecuted instantiation: zend_autoload.c:zend_string_delref Unexecuted instantiation: zend_builtin_functions.c:zend_string_delref Unexecuted instantiation: zend_call_stack.c:zend_string_delref Unexecuted instantiation: zend_closures.c:zend_string_delref Unexecuted instantiation: zend_compile.c:zend_string_delref Unexecuted instantiation: zend_constants.c:zend_string_delref Unexecuted instantiation: zend_cpuinfo.c:zend_string_delref Unexecuted instantiation: zend_default_classes.c:zend_string_delref Unexecuted instantiation: zend_dtrace.c:zend_string_delref Unexecuted instantiation: zend_enum.c:zend_string_delref Unexecuted instantiation: zend_exceptions.c:zend_string_delref Unexecuted instantiation: zend_execute_API.c:zend_string_delref Unexecuted instantiation: zend_execute.c:zend_string_delref Unexecuted instantiation: zend_extensions.c:zend_string_delref Unexecuted instantiation: zend_fibers.c:zend_string_delref Unexecuted instantiation: zend_float.c:zend_string_delref Unexecuted instantiation: zend_gc.c:zend_string_delref Unexecuted instantiation: zend_gdb.c:zend_string_delref Unexecuted instantiation: zend_generators.c:zend_string_delref zend_hash.c:zend_string_delref Line | Count | Source | 173 | 134 | { | 174 | 134 | if (!ZSTR_IS_INTERNED(s)) { | 175 | 0 | return GC_DELREF(s); | 176 | 0 | } | 177 | 134 | return 1; | 178 | 134 | } |
Unexecuted instantiation: zend_highlight.c:zend_string_delref Unexecuted instantiation: zend_hrtime.c:zend_string_delref Unexecuted instantiation: zend_inheritance.c:zend_string_delref Unexecuted instantiation: zend_ini_parser.c:zend_string_delref Unexecuted instantiation: zend_ini_scanner.c:zend_string_delref Unexecuted instantiation: zend_ini.c:zend_string_delref Unexecuted instantiation: zend_interfaces.c:zend_string_delref Unexecuted instantiation: zend_iterators.c:zend_string_delref Unexecuted instantiation: zend_language_parser.c:zend_string_delref Unexecuted instantiation: zend_language_scanner.c:zend_string_delref Unexecuted instantiation: zend_lazy_objects.c:zend_string_delref Unexecuted instantiation: zend_list.c:zend_string_delref Unexecuted instantiation: zend_llist.c:zend_string_delref Unexecuted instantiation: zend_multibyte.c:zend_string_delref Unexecuted instantiation: zend_object_handlers.c:zend_string_delref Unexecuted instantiation: zend_objects_API.c:zend_string_delref Unexecuted instantiation: zend_objects.c:zend_string_delref Unexecuted instantiation: zend_observer.c:zend_string_delref Unexecuted instantiation: zend_opcode.c:zend_string_delref Unexecuted instantiation: zend_operators.c:zend_string_delref Unexecuted instantiation: zend_property_hooks.c:zend_string_delref Unexecuted instantiation: zend_ptr_stack.c:zend_string_delref Unexecuted instantiation: zend_signal.c:zend_string_delref Unexecuted instantiation: zend_smart_str.c:zend_string_delref Unexecuted instantiation: zend_sort.c:zend_string_delref Unexecuted instantiation: zend_stack.c:zend_string_delref Unexecuted instantiation: zend_stream.c:zend_string_delref zend_string.c:zend_string_delref Line | Count | Source | 173 | 162 | { | 174 | 162 | if (!ZSTR_IS_INTERNED(s)) { | 175 | 162 | return GC_DELREF(s); | 176 | 162 | } | 177 | 0 | return 1; | 178 | 162 | } |
Unexecuted instantiation: zend_strtod.c:zend_string_delref Unexecuted instantiation: zend_system_id.c:zend_string_delref Unexecuted instantiation: zend_variables.c:zend_string_delref Unexecuted instantiation: zend_virtual_cwd.c:zend_string_delref Unexecuted instantiation: zend_vm_opcodes.c:zend_string_delref Unexecuted instantiation: zend_weakrefs.c:zend_string_delref Unexecuted instantiation: zend.c:zend_string_delref Unexecuted instantiation: internal_functions_cli.c:zend_string_delref Unexecuted instantiation: fuzzer-parser.c:zend_string_delref Unexecuted instantiation: fuzzer-sapi.c:zend_string_delref Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_delref Unexecuted instantiation: fuzzer-exif.c:zend_string_delref Unexecuted instantiation: fuzzer-unserialize.c:zend_string_delref Unexecuted instantiation: fuzzer-function-jit.c:zend_string_delref Unexecuted instantiation: fuzzer-json.c:zend_string_delref Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_delref Unexecuted instantiation: fuzzer-execute.c:zend_string_delref |
179 | | |
180 | | static zend_always_inline zend_string *zend_string_alloc(size_t len, bool persistent) |
181 | 68.5M | { |
182 | 68.5M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); |
183 | | |
184 | 68.5M | GC_SET_REFCOUNT(ret, 1); |
185 | 68.5M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); |
186 | 68.5M | ZSTR_H(ret) = 0; |
187 | 68.5M | ZSTR_LEN(ret) = len; |
188 | 68.5M | return ret; |
189 | 68.5M | } php_date.c:zend_string_alloc Line | Count | Source | 181 | 834 | { | 182 | 834 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 834 | GC_SET_REFCOUNT(ret, 1); | 185 | 834 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 834 | ZSTR_H(ret) = 0; | 187 | 834 | ZSTR_LEN(ret) = len; | 188 | 834 | return ret; | 189 | 834 | } |
Unexecuted instantiation: astro.c:zend_string_alloc Unexecuted instantiation: dow.c:zend_string_alloc Unexecuted instantiation: parse_date.c:zend_string_alloc Unexecuted instantiation: parse_tz.c:zend_string_alloc Unexecuted instantiation: parse_posix.c:zend_string_alloc Unexecuted instantiation: timelib.c:zend_string_alloc Unexecuted instantiation: tm2unixtime.c:zend_string_alloc Unexecuted instantiation: unixtime2tm.c:zend_string_alloc Unexecuted instantiation: parse_iso_intervals.c:zend_string_alloc Unexecuted instantiation: interval.c:zend_string_alloc php_pcre.c:zend_string_alloc Line | Count | Source | 181 | 1.18k | { | 182 | 1.18k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 1.18k | GC_SET_REFCOUNT(ret, 1); | 185 | 1.18k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 1.18k | ZSTR_H(ret) = 0; | 187 | 1.18k | ZSTR_LEN(ret) = len; | 188 | 1.18k | return ret; | 189 | 1.18k | } |
Unexecuted instantiation: exif.c:zend_string_alloc Unexecuted instantiation: hash_adler32.c:zend_string_alloc Unexecuted instantiation: hash_crc32.c:zend_string_alloc Unexecuted instantiation: hash_fnv.c:zend_string_alloc Unexecuted instantiation: hash_gost.c:zend_string_alloc Unexecuted instantiation: hash_haval.c:zend_string_alloc Unexecuted instantiation: hash_joaat.c:zend_string_alloc Unexecuted instantiation: hash_md.c:zend_string_alloc Unexecuted instantiation: hash_murmur.c:zend_string_alloc Unexecuted instantiation: hash_ripemd.c:zend_string_alloc Unexecuted instantiation: hash_sha_ni.c:zend_string_alloc Unexecuted instantiation: hash_sha_sse2.c:zend_string_alloc Unexecuted instantiation: hash_sha.c:zend_string_alloc Unexecuted instantiation: hash_sha3.c:zend_string_alloc Unexecuted instantiation: hash_snefru.c:zend_string_alloc Unexecuted instantiation: hash_tiger.c:zend_string_alloc Unexecuted instantiation: hash_whirlpool.c:zend_string_alloc Unexecuted instantiation: hash_xxhash.c:zend_string_alloc Line | Count | Source | 181 | 1.67k | { | 182 | 1.67k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 1.67k | GC_SET_REFCOUNT(ret, 1); | 185 | 1.67k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 1.67k | ZSTR_H(ret) = 0; | 187 | 1.67k | ZSTR_LEN(ret) = len; | 188 | 1.67k | return ret; | 189 | 1.67k | } |
Unexecuted instantiation: json_encoder.c:zend_string_alloc Unexecuted instantiation: json_parser.tab.c:zend_string_alloc json_scanner.c:zend_string_alloc Line | Count | Source | 181 | 42.1k | { | 182 | 42.1k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 42.1k | GC_SET_REFCOUNT(ret, 1); | 185 | 42.1k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 42.1k | ZSTR_H(ret) = 0; | 187 | 42.1k | ZSTR_LEN(ret) = len; | 188 | 42.1k | return ret; | 189 | 42.1k | } |
Line | Count | Source | 181 | 133 | { | 182 | 133 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 133 | GC_SET_REFCOUNT(ret, 1); | 185 | 133 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 133 | ZSTR_H(ret) = 0; | 187 | 133 | ZSTR_LEN(ret) = len; | 188 | 133 | return ret; | 189 | 133 | } |
Unexecuted instantiation: php_lexbor.c:zend_string_alloc Unexecuted instantiation: shared_alloc_mmap.c:zend_string_alloc Unexecuted instantiation: shared_alloc_posix.c:zend_string_alloc Unexecuted instantiation: shared_alloc_shm.c:zend_string_alloc Unexecuted instantiation: zend_accelerator_api.c:zend_string_alloc Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_alloc Unexecuted instantiation: zend_accelerator_debug.c:zend_string_alloc Unexecuted instantiation: zend_accelerator_hash.c:zend_string_alloc Unexecuted instantiation: zend_accelerator_module.c:zend_string_alloc Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_alloc Unexecuted instantiation: zend_file_cache.c:zend_string_alloc Unexecuted instantiation: zend_persist_calc.c:zend_string_alloc Unexecuted instantiation: zend_persist.c:zend_string_alloc Unexecuted instantiation: zend_shared_alloc.c:zend_string_alloc ZendAccelerator.c:zend_string_alloc Line | Count | Source | 181 | 807k | { | 182 | 807k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 807k | GC_SET_REFCOUNT(ret, 1); | 185 | 807k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 807k | ZSTR_H(ret) = 0; | 187 | 807k | ZSTR_LEN(ret) = len; | 188 | 807k | return ret; | 189 | 807k | } |
Unexecuted instantiation: ir_cfg.c:zend_string_alloc Unexecuted instantiation: ir_check.c:zend_string_alloc Unexecuted instantiation: ir_dump.c:zend_string_alloc Unexecuted instantiation: ir_emit.c:zend_string_alloc Unexecuted instantiation: ir_gcm.c:zend_string_alloc Unexecuted instantiation: ir_gdb.c:zend_string_alloc Unexecuted instantiation: ir_patch.c:zend_string_alloc Unexecuted instantiation: ir_perf.c:zend_string_alloc Unexecuted instantiation: ir_ra.c:zend_string_alloc Unexecuted instantiation: ir_save.c:zend_string_alloc Unexecuted instantiation: ir_sccp.c:zend_string_alloc Unexecuted instantiation: ir_strtab.c:zend_string_alloc Unexecuted instantiation: ir.c:zend_string_alloc Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_alloc Unexecuted instantiation: zend_jit.c:zend_string_alloc Unexecuted instantiation: csprng.c:zend_string_alloc Unexecuted instantiation: engine_mt19937.c:zend_string_alloc Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_alloc Unexecuted instantiation: engine_secure.c:zend_string_alloc Unexecuted instantiation: engine_user.c:zend_string_alloc Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_alloc Unexecuted instantiation: gammasection.c:zend_string_alloc random.c:zend_string_alloc Line | Count | Source | 181 | 64 | { | 182 | 64 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 64 | GC_SET_REFCOUNT(ret, 1); | 185 | 64 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 64 | ZSTR_H(ret) = 0; | 187 | 64 | ZSTR_LEN(ret) = len; | 188 | 64 | return ret; | 189 | 64 | } |
Unexecuted instantiation: randomizer.c:zend_string_alloc Unexecuted instantiation: zend_utils.c:zend_string_alloc php_reflection.c:zend_string_alloc Line | Count | Source | 181 | 294 | { | 182 | 294 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 294 | GC_SET_REFCOUNT(ret, 1); | 185 | 294 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 294 | ZSTR_H(ret) = 0; | 187 | 294 | ZSTR_LEN(ret) = len; | 188 | 294 | return ret; | 189 | 294 | } |
Unexecuted instantiation: php_spl.c:zend_string_alloc Unexecuted instantiation: spl_array.c:zend_string_alloc Unexecuted instantiation: spl_directory.c:zend_string_alloc Unexecuted instantiation: spl_dllist.c:zend_string_alloc Unexecuted instantiation: spl_exceptions.c:zend_string_alloc spl_fixedarray.c:zend_string_alloc Line | Count | Source | 181 | 16 | { | 182 | 16 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 16 | GC_SET_REFCOUNT(ret, 1); | 185 | 16 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 16 | ZSTR_H(ret) = 0; | 187 | 16 | ZSTR_LEN(ret) = len; | 188 | 16 | return ret; | 189 | 16 | } |
Unexecuted instantiation: spl_functions.c:zend_string_alloc Unexecuted instantiation: spl_heap.c:zend_string_alloc spl_iterators.c:zend_string_alloc Line | Count | Source | 181 | 4.65k | { | 182 | 4.65k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 4.65k | GC_SET_REFCOUNT(ret, 1); | 185 | 4.65k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 4.65k | ZSTR_H(ret) = 0; | 187 | 4.65k | ZSTR_LEN(ret) = len; | 188 | 4.65k | return ret; | 189 | 4.65k | } |
spl_observer.c:zend_string_alloc Line | Count | Source | 181 | 48 | { | 182 | 48 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 48 | GC_SET_REFCOUNT(ret, 1); | 185 | 48 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 48 | ZSTR_H(ret) = 0; | 187 | 48 | ZSTR_LEN(ret) = len; | 188 | 48 | return ret; | 189 | 48 | } |
Unexecuted instantiation: array.c:zend_string_alloc assert.c:zend_string_alloc Line | Count | Source | 181 | 39 | { | 182 | 39 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 39 | GC_SET_REFCOUNT(ret, 1); | 185 | 39 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 39 | ZSTR_H(ret) = 0; | 187 | 39 | ZSTR_LEN(ret) = len; | 188 | 39 | return ret; | 189 | 39 | } |
Unexecuted instantiation: base64.c:zend_string_alloc basic_functions.c:zend_string_alloc Line | Count | Source | 181 | 129 | { | 182 | 129 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 129 | GC_SET_REFCOUNT(ret, 1); | 185 | 129 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 129 | ZSTR_H(ret) = 0; | 187 | 129 | ZSTR_LEN(ret) = len; | 188 | 129 | return ret; | 189 | 129 | } |
Unexecuted instantiation: browscap.c:zend_string_alloc Unexecuted instantiation: crc32_x86.c:zend_string_alloc Unexecuted instantiation: crc32.c:zend_string_alloc Unexecuted instantiation: credits.c:zend_string_alloc crypt.c:zend_string_alloc Line | Count | Source | 181 | 6 | { | 182 | 6 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 6 | GC_SET_REFCOUNT(ret, 1); | 185 | 6 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 6 | ZSTR_H(ret) = 0; | 187 | 6 | ZSTR_LEN(ret) = len; | 188 | 6 | return ret; | 189 | 6 | } |
Unexecuted instantiation: css.c:zend_string_alloc Unexecuted instantiation: datetime.c:zend_string_alloc Line | Count | Source | 181 | 21 | { | 182 | 21 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 21 | GC_SET_REFCOUNT(ret, 1); | 185 | 21 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 21 | ZSTR_H(ret) = 0; | 187 | 21 | ZSTR_LEN(ret) = len; | 188 | 21 | return ret; | 189 | 21 | } |
Unexecuted instantiation: dl.c:zend_string_alloc Unexecuted instantiation: dns.c:zend_string_alloc Unexecuted instantiation: exec.c:zend_string_alloc Line | Count | Source | 181 | 6.61k | { | 182 | 6.61k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 6.61k | GC_SET_REFCOUNT(ret, 1); | 185 | 6.61k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 6.61k | ZSTR_H(ret) = 0; | 187 | 6.61k | ZSTR_LEN(ret) = len; | 188 | 6.61k | return ret; | 189 | 6.61k | } |
Unexecuted instantiation: filestat.c:zend_string_alloc Unexecuted instantiation: filters.c:zend_string_alloc Unexecuted instantiation: flock_compat.c:zend_string_alloc formatted_print.c:zend_string_alloc Line | Count | Source | 181 | 470 | { | 182 | 470 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 470 | GC_SET_REFCOUNT(ret, 1); | 185 | 470 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 470 | ZSTR_H(ret) = 0; | 187 | 470 | ZSTR_LEN(ret) = len; | 188 | 470 | return ret; | 189 | 470 | } |
Unexecuted instantiation: fsock.c:zend_string_alloc Unexecuted instantiation: ftok.c:zend_string_alloc Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_alloc Line | Count | Source | 181 | 9 | { | 182 | 9 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 9 | GC_SET_REFCOUNT(ret, 1); | 185 | 9 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 9 | ZSTR_H(ret) = 0; | 187 | 9 | ZSTR_LEN(ret) = len; | 188 | 9 | return ret; | 189 | 9 | } |
Unexecuted instantiation: hrtime.c:zend_string_alloc Line | Count | Source | 181 | 1.46k | { | 182 | 1.46k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 1.46k | GC_SET_REFCOUNT(ret, 1); | 185 | 1.46k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 1.46k | ZSTR_H(ret) = 0; | 187 | 1.46k | ZSTR_LEN(ret) = len; | 188 | 1.46k | return ret; | 189 | 1.46k | } |
Unexecuted instantiation: http_fopen_wrapper.c:zend_string_alloc Unexecuted instantiation: http.c:zend_string_alloc Unexecuted instantiation: image.c:zend_string_alloc Unexecuted instantiation: incomplete_class.c:zend_string_alloc Line | Count | Source | 181 | 35 | { | 182 | 35 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 35 | GC_SET_REFCOUNT(ret, 1); | 185 | 35 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 35 | ZSTR_H(ret) = 0; | 187 | 35 | ZSTR_LEN(ret) = len; | 188 | 35 | return ret; | 189 | 35 | } |
Unexecuted instantiation: iptc.c:zend_string_alloc Unexecuted instantiation: levenshtein.c:zend_string_alloc Unexecuted instantiation: link.c:zend_string_alloc Unexecuted instantiation: mail.c:zend_string_alloc Line | Count | Source | 181 | 14 | { | 182 | 14 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 14 | GC_SET_REFCOUNT(ret, 1); | 185 | 14 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 14 | ZSTR_H(ret) = 0; | 187 | 14 | ZSTR_LEN(ret) = len; | 188 | 14 | return ret; | 189 | 14 | } |
Line | Count | Source | 181 | 506 | { | 182 | 506 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 506 | GC_SET_REFCOUNT(ret, 1); | 185 | 506 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 506 | ZSTR_H(ret) = 0; | 187 | 506 | ZSTR_LEN(ret) = len; | 188 | 506 | return ret; | 189 | 506 | } |
Unexecuted instantiation: metaphone.c:zend_string_alloc Unexecuted instantiation: microtime.c:zend_string_alloc Unexecuted instantiation: net.c:zend_string_alloc Line | Count | Source | 181 | 7 | { | 182 | 7 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 7 | GC_SET_REFCOUNT(ret, 1); | 185 | 7 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 7 | ZSTR_H(ret) = 0; | 187 | 7 | ZSTR_LEN(ret) = len; | 188 | 7 | return ret; | 189 | 7 | } |
Unexecuted instantiation: pageinfo.c:zend_string_alloc password.c:zend_string_alloc Line | Count | Source | 181 | 12 | { | 182 | 12 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 12 | GC_SET_REFCOUNT(ret, 1); | 185 | 12 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 12 | ZSTR_H(ret) = 0; | 187 | 12 | ZSTR_LEN(ret) = len; | 188 | 12 | return ret; | 189 | 12 | } |
Unexecuted instantiation: php_fopen_wrapper.c:zend_string_alloc Unexecuted instantiation: proc_open.c:zend_string_alloc Unexecuted instantiation: quot_print.c:zend_string_alloc Unexecuted instantiation: scanf.c:zend_string_alloc Unexecuted instantiation: sha1.c:zend_string_alloc Unexecuted instantiation: soundex.c:zend_string_alloc Unexecuted instantiation: streamsfuncs.c:zend_string_alloc string.c:zend_string_alloc Line | Count | Source | 181 | 4.11k | { | 182 | 4.11k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 4.11k | GC_SET_REFCOUNT(ret, 1); | 185 | 4.11k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 4.11k | ZSTR_H(ret) = 0; | 187 | 4.11k | ZSTR_LEN(ret) = len; | 188 | 4.11k | return ret; | 189 | 4.11k | } |
Unexecuted instantiation: strnatcmp.c:zend_string_alloc Unexecuted instantiation: syslog.c:zend_string_alloc Unexecuted instantiation: type.c:zend_string_alloc Unexecuted instantiation: uniqid.c:zend_string_alloc url_scanner_ex.c:zend_string_alloc Line | Count | Source | 181 | 80 | { | 182 | 80 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 80 | GC_SET_REFCOUNT(ret, 1); | 185 | 80 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 80 | ZSTR_H(ret) = 0; | 187 | 80 | ZSTR_LEN(ret) = len; | 188 | 80 | return ret; | 189 | 80 | } |
Unexecuted instantiation: url.c:zend_string_alloc user_filters.c:zend_string_alloc Line | Count | Source | 181 | 332 | { | 182 | 332 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 332 | GC_SET_REFCOUNT(ret, 1); | 185 | 332 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 332 | ZSTR_H(ret) = 0; | 187 | 332 | ZSTR_LEN(ret) = len; | 188 | 332 | return ret; | 189 | 332 | } |
Unexecuted instantiation: uuencode.c:zend_string_alloc var_unserializer.c:zend_string_alloc Line | Count | Source | 181 | 87.9k | { | 182 | 87.9k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 87.9k | GC_SET_REFCOUNT(ret, 1); | 185 | 87.9k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 87.9k | ZSTR_H(ret) = 0; | 187 | 87.9k | ZSTR_LEN(ret) = len; | 188 | 87.9k | return ret; | 189 | 87.9k | } |
Line | Count | Source | 181 | 456 | { | 182 | 456 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 456 | GC_SET_REFCOUNT(ret, 1); | 185 | 456 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 456 | ZSTR_H(ret) = 0; | 187 | 456 | ZSTR_LEN(ret) = len; | 188 | 456 | return ret; | 189 | 456 | } |
Unexecuted instantiation: versioning.c:zend_string_alloc Unexecuted instantiation: crypt_sha256.c:zend_string_alloc Unexecuted instantiation: crypt_sha512.c:zend_string_alloc Unexecuted instantiation: php_crypt_r.c:zend_string_alloc php_uri.c:zend_string_alloc Line | Count | Source | 181 | 64 | { | 182 | 64 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 64 | GC_SET_REFCOUNT(ret, 1); | 185 | 64 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 64 | ZSTR_H(ret) = 0; | 187 | 64 | ZSTR_LEN(ret) = len; | 188 | 64 | return ret; | 189 | 64 | } |
Unexecuted instantiation: php_uri_common.c:zend_string_alloc Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_alloc Unexecuted instantiation: uri_parser_whatwg.c:zend_string_alloc Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_alloc Unexecuted instantiation: explicit_bzero.c:zend_string_alloc fopen_wrappers.c:zend_string_alloc Line | Count | Source | 181 | 58.1k | { | 182 | 58.1k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 58.1k | GC_SET_REFCOUNT(ret, 1); | 185 | 58.1k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 58.1k | ZSTR_H(ret) = 0; | 187 | 58.1k | ZSTR_LEN(ret) = len; | 188 | 58.1k | return ret; | 189 | 58.1k | } |
Unexecuted instantiation: getopt.c:zend_string_alloc Line | Count | Source | 181 | 12 | { | 182 | 12 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 12 | GC_SET_REFCOUNT(ret, 1); | 185 | 12 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 12 | ZSTR_H(ret) = 0; | 187 | 12 | ZSTR_LEN(ret) = len; | 188 | 12 | return ret; | 189 | 12 | } |
Unexecuted instantiation: network.c:zend_string_alloc output.c:zend_string_alloc Line | Count | Source | 181 | 3.66k | { | 182 | 3.66k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 3.66k | GC_SET_REFCOUNT(ret, 1); | 185 | 3.66k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 3.66k | ZSTR_H(ret) = 0; | 187 | 3.66k | ZSTR_LEN(ret) = len; | 188 | 3.66k | return ret; | 189 | 3.66k | } |
Unexecuted instantiation: php_content_types.c:zend_string_alloc Unexecuted instantiation: php_ini_builder.c:zend_string_alloc php_ini.c:zend_string_alloc Line | Count | Source | 181 | 208 | { | 182 | 208 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 208 | GC_SET_REFCOUNT(ret, 1); | 185 | 208 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 208 | ZSTR_H(ret) = 0; | 187 | 208 | ZSTR_LEN(ret) = len; | 188 | 208 | return ret; | 189 | 208 | } |
Unexecuted instantiation: php_glob.c:zend_string_alloc Unexecuted instantiation: php_odbc_utils.c:zend_string_alloc Unexecuted instantiation: php_open_temporary_file.c:zend_string_alloc Unexecuted instantiation: php_scandir.c:zend_string_alloc Unexecuted instantiation: php_syslog.c:zend_string_alloc Unexecuted instantiation: php_ticks.c:zend_string_alloc php_variables.c:zend_string_alloc Line | Count | Source | 181 | 146k | { | 182 | 146k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 146k | GC_SET_REFCOUNT(ret, 1); | 185 | 146k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 146k | ZSTR_H(ret) = 0; | 187 | 146k | ZSTR_LEN(ret) = len; | 188 | 146k | return ret; | 189 | 146k | } |
Unexecuted instantiation: reentrancy.c:zend_string_alloc Unexecuted instantiation: rfc1867.c:zend_string_alloc Unexecuted instantiation: safe_bcmp.c:zend_string_alloc Line | Count | Source | 181 | 32 | { | 182 | 32 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 32 | GC_SET_REFCOUNT(ret, 1); | 185 | 32 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 32 | ZSTR_H(ret) = 0; | 187 | 32 | ZSTR_LEN(ret) = len; | 188 | 32 | return ret; | 189 | 32 | } |
Unexecuted instantiation: snprintf.c:zend_string_alloc Unexecuted instantiation: spprintf.c:zend_string_alloc Unexecuted instantiation: strlcat.c:zend_string_alloc Unexecuted instantiation: strlcpy.c:zend_string_alloc Unexecuted instantiation: cast.c:zend_string_alloc Unexecuted instantiation: filter.c:zend_string_alloc Unexecuted instantiation: glob_wrapper.c:zend_string_alloc memory.c:zend_string_alloc Line | Count | Source | 181 | 1.89k | { | 182 | 1.89k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 1.89k | GC_SET_REFCOUNT(ret, 1); | 185 | 1.89k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 1.89k | ZSTR_H(ret) = 0; | 187 | 1.89k | ZSTR_LEN(ret) = len; | 188 | 1.89k | return ret; | 189 | 1.89k | } |
Unexecuted instantiation: mmap.c:zend_string_alloc plain_wrapper.c:zend_string_alloc Line | Count | Source | 181 | 83 | { | 182 | 83 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 83 | GC_SET_REFCOUNT(ret, 1); | 185 | 83 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 83 | ZSTR_H(ret) = 0; | 187 | 83 | ZSTR_LEN(ret) = len; | 188 | 83 | return ret; | 189 | 83 | } |
stream_errors.c:zend_string_alloc Line | Count | Source | 181 | 80 | { | 182 | 80 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 80 | GC_SET_REFCOUNT(ret, 1); | 185 | 80 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 80 | ZSTR_H(ret) = 0; | 187 | 80 | ZSTR_LEN(ret) = len; | 188 | 80 | return ret; | 189 | 80 | } |
streams.c:zend_string_alloc Line | Count | Source | 181 | 6 | { | 182 | 6 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 6 | GC_SET_REFCOUNT(ret, 1); | 185 | 6 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 6 | ZSTR_H(ret) = 0; | 187 | 6 | ZSTR_LEN(ret) = len; | 188 | 6 | return ret; | 189 | 6 | } |
Unexecuted instantiation: transports.c:zend_string_alloc userspace.c:zend_string_alloc Line | Count | Source | 181 | 13.1k | { | 182 | 13.1k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 13.1k | GC_SET_REFCOUNT(ret, 1); | 185 | 13.1k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 13.1k | ZSTR_H(ret) = 0; | 187 | 13.1k | ZSTR_LEN(ret) = len; | 188 | 13.1k | return ret; | 189 | 13.1k | } |
Unexecuted instantiation: xp_socket.c:zend_string_alloc block_pass.c:zend_string_alloc Line | Count | Source | 181 | 2.43k | { | 182 | 2.43k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 2.43k | GC_SET_REFCOUNT(ret, 1); | 185 | 2.43k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 2.43k | ZSTR_H(ret) = 0; | 187 | 2.43k | ZSTR_LEN(ret) = len; | 188 | 2.43k | return ret; | 189 | 2.43k | } |
compact_literals.c:zend_string_alloc Line | Count | Source | 181 | 9.45k | { | 182 | 9.45k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 9.45k | GC_SET_REFCOUNT(ret, 1); | 185 | 9.45k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 9.45k | ZSTR_H(ret) = 0; | 187 | 9.45k | ZSTR_LEN(ret) = len; | 188 | 9.45k | return ret; | 189 | 9.45k | } |
Unexecuted instantiation: compact_vars.c:zend_string_alloc Unexecuted instantiation: dce.c:zend_string_alloc Unexecuted instantiation: dfa_pass.c:zend_string_alloc Unexecuted instantiation: escape_analysis.c:zend_string_alloc Unexecuted instantiation: nop_removal.c:zend_string_alloc Unexecuted instantiation: optimize_func_calls.c:zend_string_alloc Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_alloc Unexecuted instantiation: pass1.c:zend_string_alloc Unexecuted instantiation: pass3.c:zend_string_alloc Unexecuted instantiation: sccp.c:zend_string_alloc Unexecuted instantiation: scdf.c:zend_string_alloc Unexecuted instantiation: zend_call_graph.c:zend_string_alloc Unexecuted instantiation: zend_cfg.c:zend_string_alloc Unexecuted instantiation: zend_dfg.c:zend_string_alloc Unexecuted instantiation: zend_dump.c:zend_string_alloc Unexecuted instantiation: zend_func_info.c:zend_string_alloc Unexecuted instantiation: zend_inference.c:zend_string_alloc zend_optimizer.c:zend_string_alloc Line | Count | Source | 181 | 2 | { | 182 | 2 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 2 | GC_SET_REFCOUNT(ret, 1); | 185 | 2 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 2 | ZSTR_H(ret) = 0; | 187 | 2 | ZSTR_LEN(ret) = len; | 188 | 2 | return ret; | 189 | 2 | } |
Unexecuted instantiation: zend_ssa.c:zend_string_alloc Unexecuted instantiation: zend_alloc.c:zend_string_alloc zend_API.c:zend_string_alloc Line | Count | Source | 181 | 522k | { | 182 | 522k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 522k | GC_SET_REFCOUNT(ret, 1); | 185 | 522k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 522k | ZSTR_H(ret) = 0; | 187 | 522k | ZSTR_LEN(ret) = len; | 188 | 522k | return ret; | 189 | 522k | } |
Unexecuted instantiation: zend_ast.c:zend_string_alloc zend_attributes.c:zend_string_alloc Line | Count | Source | 181 | 55 | { | 182 | 55 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 55 | GC_SET_REFCOUNT(ret, 1); | 185 | 55 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 55 | ZSTR_H(ret) = 0; | 187 | 55 | ZSTR_LEN(ret) = len; | 188 | 55 | return ret; | 189 | 55 | } |
Unexecuted instantiation: zend_autoload.c:zend_string_alloc zend_builtin_functions.c:zend_string_alloc Line | Count | Source | 181 | 434 | { | 182 | 434 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 434 | GC_SET_REFCOUNT(ret, 1); | 185 | 434 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 434 | ZSTR_H(ret) = 0; | 187 | 434 | ZSTR_LEN(ret) = len; | 188 | 434 | return ret; | 189 | 434 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_alloc Unexecuted instantiation: zend_closures.c:zend_string_alloc zend_compile.c:zend_string_alloc Line | Count | Source | 181 | 23.1M | { | 182 | 23.1M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 23.1M | GC_SET_REFCOUNT(ret, 1); | 185 | 23.1M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 23.1M | ZSTR_H(ret) = 0; | 187 | 23.1M | ZSTR_LEN(ret) = len; | 188 | 23.1M | return ret; | 189 | 23.1M | } |
zend_constants.c:zend_string_alloc Line | Count | Source | 181 | 507 | { | 182 | 507 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 507 | GC_SET_REFCOUNT(ret, 1); | 185 | 507 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 507 | ZSTR_H(ret) = 0; | 187 | 507 | ZSTR_LEN(ret) = len; | 188 | 507 | return ret; | 189 | 507 | } |
Unexecuted instantiation: zend_cpuinfo.c:zend_string_alloc Unexecuted instantiation: zend_default_classes.c:zend_string_alloc Unexecuted instantiation: zend_dtrace.c:zend_string_alloc zend_enum.c:zend_string_alloc Line | Count | Source | 181 | 12.3k | { | 182 | 12.3k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 12.3k | GC_SET_REFCOUNT(ret, 1); | 185 | 12.3k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 12.3k | ZSTR_H(ret) = 0; | 187 | 12.3k | ZSTR_LEN(ret) = len; | 188 | 12.3k | return ret; | 189 | 12.3k | } |
zend_exceptions.c:zend_string_alloc Line | Count | Source | 181 | 1.04M | { | 182 | 1.04M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 1.04M | GC_SET_REFCOUNT(ret, 1); | 185 | 1.04M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 1.04M | ZSTR_H(ret) = 0; | 187 | 1.04M | ZSTR_LEN(ret) = len; | 188 | 1.04M | return ret; | 189 | 1.04M | } |
zend_execute_API.c:zend_string_alloc Line | Count | Source | 181 | 113 | { | 182 | 113 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 113 | GC_SET_REFCOUNT(ret, 1); | 185 | 113 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 113 | ZSTR_H(ret) = 0; | 187 | 113 | ZSTR_LEN(ret) = len; | 188 | 113 | return ret; | 189 | 113 | } |
zend_execute.c:zend_string_alloc Line | Count | Source | 181 | 573k | { | 182 | 573k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 573k | GC_SET_REFCOUNT(ret, 1); | 185 | 573k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 573k | ZSTR_H(ret) = 0; | 187 | 573k | ZSTR_LEN(ret) = len; | 188 | 573k | return ret; | 189 | 573k | } |
Unexecuted instantiation: zend_extensions.c:zend_string_alloc Unexecuted instantiation: zend_fibers.c:zend_string_alloc Unexecuted instantiation: zend_float.c:zend_string_alloc Unexecuted instantiation: zend_gc.c:zend_string_alloc Unexecuted instantiation: zend_gdb.c:zend_string_alloc Unexecuted instantiation: zend_generators.c:zend_string_alloc zend_hash.c:zend_string_alloc Line | Count | Source | 181 | 112k | { | 182 | 112k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 112k | GC_SET_REFCOUNT(ret, 1); | 185 | 112k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 112k | ZSTR_H(ret) = 0; | 187 | 112k | ZSTR_LEN(ret) = len; | 188 | 112k | return ret; | 189 | 112k | } |
Unexecuted instantiation: zend_highlight.c:zend_string_alloc Unexecuted instantiation: zend_hrtime.c:zend_string_alloc Unexecuted instantiation: zend_inheritance.c:zend_string_alloc zend_ini_parser.c:zend_string_alloc Line | Count | Source | 181 | 388k | { | 182 | 388k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 388k | GC_SET_REFCOUNT(ret, 1); | 185 | 388k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 388k | ZSTR_H(ret) = 0; | 187 | 388k | ZSTR_LEN(ret) = len; | 188 | 388k | return ret; | 189 | 388k | } |
zend_ini_scanner.c:zend_string_alloc Line | Count | Source | 181 | 1.78M | { | 182 | 1.78M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 1.78M | GC_SET_REFCOUNT(ret, 1); | 185 | 1.78M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 1.78M | ZSTR_H(ret) = 0; | 187 | 1.78M | ZSTR_LEN(ret) = len; | 188 | 1.78M | return ret; | 189 | 1.78M | } |
zend_ini.c:zend_string_alloc Line | Count | Source | 181 | 58.1k | { | 182 | 58.1k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 58.1k | GC_SET_REFCOUNT(ret, 1); | 185 | 58.1k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 58.1k | ZSTR_H(ret) = 0; | 187 | 58.1k | ZSTR_LEN(ret) = len; | 188 | 58.1k | return ret; | 189 | 58.1k | } |
zend_interfaces.c:zend_string_alloc Line | Count | Source | 181 | 2.90k | { | 182 | 2.90k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 2.90k | GC_SET_REFCOUNT(ret, 1); | 185 | 2.90k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 2.90k | ZSTR_H(ret) = 0; | 187 | 2.90k | ZSTR_LEN(ret) = len; | 188 | 2.90k | return ret; | 189 | 2.90k | } |
Unexecuted instantiation: zend_iterators.c:zend_string_alloc Unexecuted instantiation: zend_language_parser.c:zend_string_alloc zend_language_scanner.c:zend_string_alloc Line | Count | Source | 181 | 6.13M | { | 182 | 6.13M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 6.13M | GC_SET_REFCOUNT(ret, 1); | 185 | 6.13M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 6.13M | ZSTR_H(ret) = 0; | 187 | 6.13M | ZSTR_LEN(ret) = len; | 188 | 6.13M | return ret; | 189 | 6.13M | } |
Unexecuted instantiation: zend_lazy_objects.c:zend_string_alloc Unexecuted instantiation: zend_list.c:zend_string_alloc Unexecuted instantiation: zend_llist.c:zend_string_alloc Unexecuted instantiation: zend_multibyte.c:zend_string_alloc zend_object_handlers.c:zend_string_alloc Line | Count | Source | 181 | 859 | { | 182 | 859 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 859 | GC_SET_REFCOUNT(ret, 1); | 185 | 859 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 859 | ZSTR_H(ret) = 0; | 187 | 859 | ZSTR_LEN(ret) = len; | 188 | 859 | return ret; | 189 | 859 | } |
Unexecuted instantiation: zend_objects_API.c:zend_string_alloc Unexecuted instantiation: zend_objects.c:zend_string_alloc Unexecuted instantiation: zend_observer.c:zend_string_alloc Unexecuted instantiation: zend_opcode.c:zend_string_alloc zend_operators.c:zend_string_alloc Line | Count | Source | 181 | 10.8M | { | 182 | 10.8M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 10.8M | GC_SET_REFCOUNT(ret, 1); | 185 | 10.8M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 10.8M | ZSTR_H(ret) = 0; | 187 | 10.8M | ZSTR_LEN(ret) = len; | 188 | 10.8M | return ret; | 189 | 10.8M | } |
zend_property_hooks.c:zend_string_alloc Line | Count | Source | 181 | 88 | { | 182 | 88 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 88 | GC_SET_REFCOUNT(ret, 1); | 185 | 88 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 88 | ZSTR_H(ret) = 0; | 187 | 88 | ZSTR_LEN(ret) = len; | 188 | 88 | return ret; | 189 | 88 | } |
Unexecuted instantiation: zend_ptr_stack.c:zend_string_alloc Unexecuted instantiation: zend_signal.c:zend_string_alloc zend_smart_str.c:zend_string_alloc Line | Count | Source | 181 | 5.28M | { | 182 | 5.28M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 5.28M | GC_SET_REFCOUNT(ret, 1); | 185 | 5.28M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 5.28M | ZSTR_H(ret) = 0; | 187 | 5.28M | ZSTR_LEN(ret) = len; | 188 | 5.28M | return ret; | 189 | 5.28M | } |
Unexecuted instantiation: zend_sort.c:zend_string_alloc Unexecuted instantiation: zend_stack.c:zend_string_alloc zend_stream.c:zend_string_alloc Line | Count | Source | 181 | 143k | { | 182 | 143k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 143k | GC_SET_REFCOUNT(ret, 1); | 185 | 143k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 143k | ZSTR_H(ret) = 0; | 187 | 143k | ZSTR_LEN(ret) = len; | 188 | 143k | return ret; | 189 | 143k | } |
zend_string.c:zend_string_alloc Line | Count | Source | 181 | 17.1M | { | 182 | 17.1M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 17.1M | GC_SET_REFCOUNT(ret, 1); | 185 | 17.1M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 17.1M | ZSTR_H(ret) = 0; | 187 | 17.1M | ZSTR_LEN(ret) = len; | 188 | 17.1M | return ret; | 189 | 17.1M | } |
Unexecuted instantiation: zend_strtod.c:zend_string_alloc Unexecuted instantiation: zend_system_id.c:zend_string_alloc zend_variables.c:zend_string_alloc Line | Count | Source | 181 | 135 | { | 182 | 135 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 135 | GC_SET_REFCOUNT(ret, 1); | 185 | 135 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 135 | ZSTR_H(ret) = 0; | 187 | 135 | ZSTR_LEN(ret) = len; | 188 | 135 | return ret; | 189 | 135 | } |
Unexecuted instantiation: zend_virtual_cwd.c:zend_string_alloc Unexecuted instantiation: zend_vm_opcodes.c:zend_string_alloc Unexecuted instantiation: zend_weakrefs.c:zend_string_alloc Unexecuted instantiation: zend.c:zend_string_alloc Unexecuted instantiation: internal_functions_cli.c:zend_string_alloc Unexecuted instantiation: fuzzer-parser.c:zend_string_alloc Unexecuted instantiation: fuzzer-sapi.c:zend_string_alloc fuzzer-tracing-jit.c:zend_string_alloc Line | Count | Source | 181 | 49.8k | { | 182 | 49.8k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 49.8k | GC_SET_REFCOUNT(ret, 1); | 185 | 49.8k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 49.8k | ZSTR_H(ret) = 0; | 187 | 49.8k | ZSTR_LEN(ret) = len; | 188 | 49.8k | return ret; | 189 | 49.8k | } |
Unexecuted instantiation: fuzzer-exif.c:zend_string_alloc Unexecuted instantiation: fuzzer-unserialize.c:zend_string_alloc fuzzer-function-jit.c:zend_string_alloc Line | Count | Source | 181 | 42.7k | { | 182 | 42.7k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 42.7k | GC_SET_REFCOUNT(ret, 1); | 185 | 42.7k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 42.7k | ZSTR_H(ret) = 0; | 187 | 42.7k | ZSTR_LEN(ret) = len; | 188 | 42.7k | return ret; | 189 | 42.7k | } |
Unexecuted instantiation: fuzzer-json.c:zend_string_alloc fuzzer-unserializehash.c:zend_string_alloc Line | Count | Source | 181 | 2.03k | { | 182 | 2.03k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 2.03k | GC_SET_REFCOUNT(ret, 1); | 185 | 2.03k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 2.03k | ZSTR_H(ret) = 0; | 187 | 2.03k | ZSTR_LEN(ret) = len; | 188 | 2.03k | return ret; | 189 | 2.03k | } |
Unexecuted instantiation: fuzzer-execute.c:zend_string_alloc |
190 | | |
191 | | static zend_always_inline zend_string *zend_string_safe_alloc(size_t n, size_t m, size_t l, bool persistent) |
192 | 456k | { |
193 | 456k | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); |
194 | | |
195 | 456k | GC_SET_REFCOUNT(ret, 1); |
196 | 456k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); |
197 | 456k | ZSTR_H(ret) = 0; |
198 | 456k | ZSTR_LEN(ret) = (n * m) + l; |
199 | 456k | return ret; |
200 | 456k | } Unexecuted instantiation: php_date.c:zend_string_safe_alloc Unexecuted instantiation: astro.c:zend_string_safe_alloc Unexecuted instantiation: dow.c:zend_string_safe_alloc Unexecuted instantiation: parse_date.c:zend_string_safe_alloc Unexecuted instantiation: parse_tz.c:zend_string_safe_alloc Unexecuted instantiation: parse_posix.c:zend_string_safe_alloc Unexecuted instantiation: timelib.c:zend_string_safe_alloc Unexecuted instantiation: tm2unixtime.c:zend_string_safe_alloc Unexecuted instantiation: unixtime2tm.c:zend_string_safe_alloc Unexecuted instantiation: parse_iso_intervals.c:zend_string_safe_alloc Unexecuted instantiation: interval.c:zend_string_safe_alloc php_pcre.c:zend_string_safe_alloc Line | Count | Source | 192 | 41 | { | 193 | 41 | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 194 | | | 195 | 41 | GC_SET_REFCOUNT(ret, 1); | 196 | 41 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 197 | 41 | ZSTR_H(ret) = 0; | 198 | 41 | ZSTR_LEN(ret) = (n * m) + l; | 199 | 41 | return ret; | 200 | 41 | } |
Unexecuted instantiation: exif.c:zend_string_safe_alloc Unexecuted instantiation: hash_adler32.c:zend_string_safe_alloc Unexecuted instantiation: hash_crc32.c:zend_string_safe_alloc Unexecuted instantiation: hash_fnv.c:zend_string_safe_alloc Unexecuted instantiation: hash_gost.c:zend_string_safe_alloc Unexecuted instantiation: hash_haval.c:zend_string_safe_alloc Unexecuted instantiation: hash_joaat.c:zend_string_safe_alloc Unexecuted instantiation: hash_md.c:zend_string_safe_alloc Unexecuted instantiation: hash_murmur.c:zend_string_safe_alloc Unexecuted instantiation: hash_ripemd.c:zend_string_safe_alloc Unexecuted instantiation: hash_sha_ni.c:zend_string_safe_alloc Unexecuted instantiation: hash_sha_sse2.c:zend_string_safe_alloc Unexecuted instantiation: hash_sha.c:zend_string_safe_alloc Unexecuted instantiation: hash_sha3.c:zend_string_safe_alloc Unexecuted instantiation: hash_snefru.c:zend_string_safe_alloc Unexecuted instantiation: hash_tiger.c:zend_string_safe_alloc Unexecuted instantiation: hash_whirlpool.c:zend_string_safe_alloc Unexecuted instantiation: hash_xxhash.c:zend_string_safe_alloc hash.c:zend_string_safe_alloc Line | Count | Source | 192 | 1.67k | { | 193 | 1.67k | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 194 | | | 195 | 1.67k | GC_SET_REFCOUNT(ret, 1); | 196 | 1.67k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 197 | 1.67k | ZSTR_H(ret) = 0; | 198 | 1.67k | ZSTR_LEN(ret) = (n * m) + l; | 199 | 1.67k | return ret; | 200 | 1.67k | } |
Unexecuted instantiation: json_encoder.c:zend_string_safe_alloc Unexecuted instantiation: json_parser.tab.c:zend_string_safe_alloc Unexecuted instantiation: json_scanner.c:zend_string_safe_alloc Unexecuted instantiation: json.c:zend_string_safe_alloc Unexecuted instantiation: php_lexbor.c:zend_string_safe_alloc Unexecuted instantiation: shared_alloc_mmap.c:zend_string_safe_alloc Unexecuted instantiation: shared_alloc_posix.c:zend_string_safe_alloc Unexecuted instantiation: shared_alloc_shm.c:zend_string_safe_alloc Unexecuted instantiation: zend_accelerator_api.c:zend_string_safe_alloc Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_safe_alloc Unexecuted instantiation: zend_accelerator_debug.c:zend_string_safe_alloc Unexecuted instantiation: zend_accelerator_hash.c:zend_string_safe_alloc Unexecuted instantiation: zend_accelerator_module.c:zend_string_safe_alloc Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_safe_alloc Unexecuted instantiation: zend_file_cache.c:zend_string_safe_alloc Unexecuted instantiation: zend_persist_calc.c:zend_string_safe_alloc Unexecuted instantiation: zend_persist.c:zend_string_safe_alloc Unexecuted instantiation: zend_shared_alloc.c:zend_string_safe_alloc Unexecuted instantiation: ZendAccelerator.c:zend_string_safe_alloc Unexecuted instantiation: ir_cfg.c:zend_string_safe_alloc Unexecuted instantiation: ir_check.c:zend_string_safe_alloc Unexecuted instantiation: ir_dump.c:zend_string_safe_alloc Unexecuted instantiation: ir_emit.c:zend_string_safe_alloc Unexecuted instantiation: ir_gcm.c:zend_string_safe_alloc Unexecuted instantiation: ir_gdb.c:zend_string_safe_alloc Unexecuted instantiation: ir_patch.c:zend_string_safe_alloc Unexecuted instantiation: ir_perf.c:zend_string_safe_alloc Unexecuted instantiation: ir_ra.c:zend_string_safe_alloc Unexecuted instantiation: ir_save.c:zend_string_safe_alloc Unexecuted instantiation: ir_sccp.c:zend_string_safe_alloc Unexecuted instantiation: ir_strtab.c:zend_string_safe_alloc Unexecuted instantiation: ir.c:zend_string_safe_alloc Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_safe_alloc Unexecuted instantiation: zend_jit.c:zend_string_safe_alloc Unexecuted instantiation: csprng.c:zend_string_safe_alloc Unexecuted instantiation: engine_mt19937.c:zend_string_safe_alloc Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_safe_alloc Unexecuted instantiation: engine_secure.c:zend_string_safe_alloc Unexecuted instantiation: engine_user.c:zend_string_safe_alloc Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_safe_alloc Unexecuted instantiation: gammasection.c:zend_string_safe_alloc Unexecuted instantiation: random.c:zend_string_safe_alloc Unexecuted instantiation: randomizer.c:zend_string_safe_alloc Unexecuted instantiation: zend_utils.c:zend_string_safe_alloc Unexecuted instantiation: php_reflection.c:zend_string_safe_alloc Unexecuted instantiation: php_spl.c:zend_string_safe_alloc Unexecuted instantiation: spl_array.c:zend_string_safe_alloc Unexecuted instantiation: spl_directory.c:zend_string_safe_alloc Unexecuted instantiation: spl_dllist.c:zend_string_safe_alloc Unexecuted instantiation: spl_exceptions.c:zend_string_safe_alloc Unexecuted instantiation: spl_fixedarray.c:zend_string_safe_alloc Unexecuted instantiation: spl_functions.c:zend_string_safe_alloc Unexecuted instantiation: spl_heap.c:zend_string_safe_alloc Unexecuted instantiation: spl_iterators.c:zend_string_safe_alloc Unexecuted instantiation: spl_observer.c:zend_string_safe_alloc Unexecuted instantiation: array.c:zend_string_safe_alloc Unexecuted instantiation: assert.c:zend_string_safe_alloc base64.c:zend_string_safe_alloc Line | Count | Source | 192 | 21 | { | 193 | 21 | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 194 | | | 195 | 21 | GC_SET_REFCOUNT(ret, 1); | 196 | 21 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 197 | 21 | ZSTR_H(ret) = 0; | 198 | 21 | ZSTR_LEN(ret) = (n * m) + l; | 199 | 21 | return ret; | 200 | 21 | } |
Unexecuted instantiation: basic_functions.c:zend_string_safe_alloc Unexecuted instantiation: browscap.c:zend_string_safe_alloc Unexecuted instantiation: crc32_x86.c:zend_string_safe_alloc Unexecuted instantiation: crc32.c:zend_string_safe_alloc Unexecuted instantiation: credits.c:zend_string_safe_alloc Unexecuted instantiation: crypt.c:zend_string_safe_alloc Unexecuted instantiation: css.c:zend_string_safe_alloc Unexecuted instantiation: datetime.c:zend_string_safe_alloc Unexecuted instantiation: dir.c:zend_string_safe_alloc Unexecuted instantiation: dl.c:zend_string_safe_alloc Unexecuted instantiation: dns.c:zend_string_safe_alloc exec.c:zend_string_safe_alloc Line | Count | Source | 192 | 25 | { | 193 | 25 | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 194 | | | 195 | 25 | GC_SET_REFCOUNT(ret, 1); | 196 | 25 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 197 | 25 | ZSTR_H(ret) = 0; | 198 | 25 | ZSTR_LEN(ret) = (n * m) + l; | 199 | 25 | return ret; | 200 | 25 | } |
Unexecuted instantiation: file.c:zend_string_safe_alloc Unexecuted instantiation: filestat.c:zend_string_safe_alloc Unexecuted instantiation: filters.c:zend_string_safe_alloc Unexecuted instantiation: flock_compat.c:zend_string_safe_alloc Unexecuted instantiation: formatted_print.c:zend_string_safe_alloc Unexecuted instantiation: fsock.c:zend_string_safe_alloc Unexecuted instantiation: ftok.c:zend_string_safe_alloc Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_safe_alloc Unexecuted instantiation: head.c:zend_string_safe_alloc Unexecuted instantiation: hrtime.c:zend_string_safe_alloc Unexecuted instantiation: html.c:zend_string_safe_alloc Unexecuted instantiation: http_fopen_wrapper.c:zend_string_safe_alloc Unexecuted instantiation: http.c:zend_string_safe_alloc Unexecuted instantiation: image.c:zend_string_safe_alloc Unexecuted instantiation: incomplete_class.c:zend_string_safe_alloc Unexecuted instantiation: info.c:zend_string_safe_alloc Unexecuted instantiation: iptc.c:zend_string_safe_alloc Unexecuted instantiation: levenshtein.c:zend_string_safe_alloc Unexecuted instantiation: link.c:zend_string_safe_alloc Unexecuted instantiation: mail.c:zend_string_safe_alloc Unexecuted instantiation: math.c:zend_string_safe_alloc Unexecuted instantiation: md5.c:zend_string_safe_alloc Unexecuted instantiation: metaphone.c:zend_string_safe_alloc Unexecuted instantiation: microtime.c:zend_string_safe_alloc Unexecuted instantiation: net.c:zend_string_safe_alloc Unexecuted instantiation: pack.c:zend_string_safe_alloc Unexecuted instantiation: pageinfo.c:zend_string_safe_alloc Unexecuted instantiation: password.c:zend_string_safe_alloc Unexecuted instantiation: php_fopen_wrapper.c:zend_string_safe_alloc Unexecuted instantiation: proc_open.c:zend_string_safe_alloc quot_print.c:zend_string_safe_alloc Line | Count | Source | 192 | 121 | { | 193 | 121 | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 194 | | | 195 | 121 | GC_SET_REFCOUNT(ret, 1); | 196 | 121 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 197 | 121 | ZSTR_H(ret) = 0; | 198 | 121 | ZSTR_LEN(ret) = (n * m) + l; | 199 | 121 | return ret; | 200 | 121 | } |
Unexecuted instantiation: scanf.c:zend_string_safe_alloc Unexecuted instantiation: sha1.c:zend_string_safe_alloc Unexecuted instantiation: soundex.c:zend_string_safe_alloc Unexecuted instantiation: streamsfuncs.c:zend_string_safe_alloc string.c:zend_string_safe_alloc Line | Count | Source | 192 | 2.76k | { | 193 | 2.76k | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 194 | | | 195 | 2.76k | GC_SET_REFCOUNT(ret, 1); | 196 | 2.76k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 197 | 2.76k | ZSTR_H(ret) = 0; | 198 | 2.76k | ZSTR_LEN(ret) = (n * m) + l; | 199 | 2.76k | return ret; | 200 | 2.76k | } |
Unexecuted instantiation: strnatcmp.c:zend_string_safe_alloc Unexecuted instantiation: syslog.c:zend_string_safe_alloc Unexecuted instantiation: type.c:zend_string_safe_alloc Unexecuted instantiation: uniqid.c:zend_string_safe_alloc Unexecuted instantiation: url_scanner_ex.c:zend_string_safe_alloc Unexecuted instantiation: url.c:zend_string_safe_alloc Unexecuted instantiation: user_filters.c:zend_string_safe_alloc Unexecuted instantiation: uuencode.c:zend_string_safe_alloc var_unserializer.c:zend_string_safe_alloc Line | Count | Source | 192 | 286k | { | 193 | 286k | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 194 | | | 195 | 286k | GC_SET_REFCOUNT(ret, 1); | 196 | 286k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 197 | 286k | ZSTR_H(ret) = 0; | 198 | 286k | ZSTR_LEN(ret) = (n * m) + l; | 199 | 286k | return ret; | 200 | 286k | } |
Unexecuted instantiation: var.c:zend_string_safe_alloc Unexecuted instantiation: versioning.c:zend_string_safe_alloc Unexecuted instantiation: crypt_sha256.c:zend_string_safe_alloc Unexecuted instantiation: crypt_sha512.c:zend_string_safe_alloc Unexecuted instantiation: php_crypt_r.c:zend_string_safe_alloc Unexecuted instantiation: php_uri.c:zend_string_safe_alloc Unexecuted instantiation: php_uri_common.c:zend_string_safe_alloc Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_safe_alloc Unexecuted instantiation: uri_parser_whatwg.c:zend_string_safe_alloc Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_safe_alloc Unexecuted instantiation: explicit_bzero.c:zend_string_safe_alloc Unexecuted instantiation: fopen_wrappers.c:zend_string_safe_alloc Unexecuted instantiation: getopt.c:zend_string_safe_alloc Unexecuted instantiation: main.c:zend_string_safe_alloc Unexecuted instantiation: network.c:zend_string_safe_alloc Unexecuted instantiation: output.c:zend_string_safe_alloc Unexecuted instantiation: php_content_types.c:zend_string_safe_alloc Unexecuted instantiation: php_ini_builder.c:zend_string_safe_alloc Unexecuted instantiation: php_ini.c:zend_string_safe_alloc Unexecuted instantiation: php_glob.c:zend_string_safe_alloc Unexecuted instantiation: php_odbc_utils.c:zend_string_safe_alloc Unexecuted instantiation: php_open_temporary_file.c:zend_string_safe_alloc Unexecuted instantiation: php_scandir.c:zend_string_safe_alloc Unexecuted instantiation: php_syslog.c:zend_string_safe_alloc Unexecuted instantiation: php_ticks.c:zend_string_safe_alloc Unexecuted instantiation: php_variables.c:zend_string_safe_alloc Unexecuted instantiation: reentrancy.c:zend_string_safe_alloc Unexecuted instantiation: rfc1867.c:zend_string_safe_alloc Unexecuted instantiation: safe_bcmp.c:zend_string_safe_alloc Unexecuted instantiation: SAPI.c:zend_string_safe_alloc Unexecuted instantiation: snprintf.c:zend_string_safe_alloc Unexecuted instantiation: spprintf.c:zend_string_safe_alloc Unexecuted instantiation: strlcat.c:zend_string_safe_alloc Unexecuted instantiation: strlcpy.c:zend_string_safe_alloc Unexecuted instantiation: cast.c:zend_string_safe_alloc Unexecuted instantiation: filter.c:zend_string_safe_alloc Unexecuted instantiation: glob_wrapper.c:zend_string_safe_alloc Unexecuted instantiation: memory.c:zend_string_safe_alloc Unexecuted instantiation: mmap.c:zend_string_safe_alloc Unexecuted instantiation: plain_wrapper.c:zend_string_safe_alloc Unexecuted instantiation: stream_errors.c:zend_string_safe_alloc Unexecuted instantiation: streams.c:zend_string_safe_alloc Unexecuted instantiation: transports.c:zend_string_safe_alloc Unexecuted instantiation: userspace.c:zend_string_safe_alloc Unexecuted instantiation: xp_socket.c:zend_string_safe_alloc Unexecuted instantiation: block_pass.c:zend_string_safe_alloc Unexecuted instantiation: compact_literals.c:zend_string_safe_alloc Unexecuted instantiation: compact_vars.c:zend_string_safe_alloc Unexecuted instantiation: dce.c:zend_string_safe_alloc Unexecuted instantiation: dfa_pass.c:zend_string_safe_alloc Unexecuted instantiation: escape_analysis.c:zend_string_safe_alloc Unexecuted instantiation: nop_removal.c:zend_string_safe_alloc Unexecuted instantiation: optimize_func_calls.c:zend_string_safe_alloc Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_safe_alloc Unexecuted instantiation: pass1.c:zend_string_safe_alloc Unexecuted instantiation: pass3.c:zend_string_safe_alloc Unexecuted instantiation: sccp.c:zend_string_safe_alloc Unexecuted instantiation: scdf.c:zend_string_safe_alloc Unexecuted instantiation: zend_call_graph.c:zend_string_safe_alloc Unexecuted instantiation: zend_cfg.c:zend_string_safe_alloc Unexecuted instantiation: zend_dfg.c:zend_string_safe_alloc Unexecuted instantiation: zend_dump.c:zend_string_safe_alloc Unexecuted instantiation: zend_func_info.c:zend_string_safe_alloc Unexecuted instantiation: zend_inference.c:zend_string_safe_alloc Unexecuted instantiation: zend_optimizer.c:zend_string_safe_alloc Unexecuted instantiation: zend_ssa.c:zend_string_safe_alloc Unexecuted instantiation: zend_alloc.c:zend_string_safe_alloc Unexecuted instantiation: zend_API.c:zend_string_safe_alloc Unexecuted instantiation: zend_ast.c:zend_string_safe_alloc Unexecuted instantiation: zend_attributes.c:zend_string_safe_alloc Unexecuted instantiation: zend_autoload.c:zend_string_safe_alloc Unexecuted instantiation: zend_builtin_functions.c:zend_string_safe_alloc Unexecuted instantiation: zend_call_stack.c:zend_string_safe_alloc Unexecuted instantiation: zend_closures.c:zend_string_safe_alloc Unexecuted instantiation: zend_compile.c:zend_string_safe_alloc Unexecuted instantiation: zend_constants.c:zend_string_safe_alloc Unexecuted instantiation: zend_cpuinfo.c:zend_string_safe_alloc Unexecuted instantiation: zend_default_classes.c:zend_string_safe_alloc Unexecuted instantiation: zend_dtrace.c:zend_string_safe_alloc Unexecuted instantiation: zend_enum.c:zend_string_safe_alloc Unexecuted instantiation: zend_exceptions.c:zend_string_safe_alloc Unexecuted instantiation: zend_execute_API.c:zend_string_safe_alloc Unexecuted instantiation: zend_execute.c:zend_string_safe_alloc Unexecuted instantiation: zend_extensions.c:zend_string_safe_alloc Unexecuted instantiation: zend_fibers.c:zend_string_safe_alloc Unexecuted instantiation: zend_float.c:zend_string_safe_alloc Unexecuted instantiation: zend_gc.c:zend_string_safe_alloc Unexecuted instantiation: zend_gdb.c:zend_string_safe_alloc Unexecuted instantiation: zend_generators.c:zend_string_safe_alloc Unexecuted instantiation: zend_hash.c:zend_string_safe_alloc Unexecuted instantiation: zend_highlight.c:zend_string_safe_alloc Unexecuted instantiation: zend_hrtime.c:zend_string_safe_alloc Unexecuted instantiation: zend_inheritance.c:zend_string_safe_alloc Unexecuted instantiation: zend_ini_parser.c:zend_string_safe_alloc Unexecuted instantiation: zend_ini_scanner.c:zend_string_safe_alloc Unexecuted instantiation: zend_ini.c:zend_string_safe_alloc Unexecuted instantiation: zend_interfaces.c:zend_string_safe_alloc Unexecuted instantiation: zend_iterators.c:zend_string_safe_alloc Unexecuted instantiation: zend_language_parser.c:zend_string_safe_alloc Unexecuted instantiation: zend_language_scanner.c:zend_string_safe_alloc Unexecuted instantiation: zend_lazy_objects.c:zend_string_safe_alloc Unexecuted instantiation: zend_list.c:zend_string_safe_alloc Unexecuted instantiation: zend_llist.c:zend_string_safe_alloc Unexecuted instantiation: zend_multibyte.c:zend_string_safe_alloc Unexecuted instantiation: zend_object_handlers.c:zend_string_safe_alloc Unexecuted instantiation: zend_objects_API.c:zend_string_safe_alloc Unexecuted instantiation: zend_objects.c:zend_string_safe_alloc Unexecuted instantiation: zend_observer.c:zend_string_safe_alloc Unexecuted instantiation: zend_opcode.c:zend_string_safe_alloc Unexecuted instantiation: zend_operators.c:zend_string_safe_alloc Unexecuted instantiation: zend_property_hooks.c:zend_string_safe_alloc Unexecuted instantiation: zend_ptr_stack.c:zend_string_safe_alloc Unexecuted instantiation: zend_signal.c:zend_string_safe_alloc Unexecuted instantiation: zend_smart_str.c:zend_string_safe_alloc Unexecuted instantiation: zend_sort.c:zend_string_safe_alloc Unexecuted instantiation: zend_stack.c:zend_string_safe_alloc Unexecuted instantiation: zend_stream.c:zend_string_safe_alloc zend_string.c:zend_string_safe_alloc Line | Count | Source | 192 | 165k | { | 193 | 165k | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 194 | | | 195 | 165k | GC_SET_REFCOUNT(ret, 1); | 196 | 165k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 197 | 165k | ZSTR_H(ret) = 0; | 198 | 165k | ZSTR_LEN(ret) = (n * m) + l; | 199 | 165k | return ret; | 200 | 165k | } |
Unexecuted instantiation: zend_strtod.c:zend_string_safe_alloc Unexecuted instantiation: zend_system_id.c:zend_string_safe_alloc Unexecuted instantiation: zend_variables.c:zend_string_safe_alloc Unexecuted instantiation: zend_virtual_cwd.c:zend_string_safe_alloc Unexecuted instantiation: zend_vm_opcodes.c:zend_string_safe_alloc Unexecuted instantiation: zend_weakrefs.c:zend_string_safe_alloc Unexecuted instantiation: zend.c:zend_string_safe_alloc Unexecuted instantiation: internal_functions_cli.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-parser.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-sapi.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-exif.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-unserialize.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-function-jit.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-json.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-execute.c:zend_string_safe_alloc |
201 | | |
202 | | static zend_always_inline zend_string *zend_string_init(const char *str, size_t len, bool persistent) |
203 | 30.7M | { |
204 | 30.7M | zend_string *ret = zend_string_alloc(len, persistent); |
205 | | |
206 | 30.7M | memcpy(ZSTR_VAL(ret), str, len); |
207 | 30.7M | ZSTR_VAL(ret)[len] = '\0'; |
208 | 30.7M | return ret; |
209 | 30.7M | } php_date.c:zend_string_init Line | Count | Source | 203 | 830 | { | 204 | 830 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 830 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 830 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 830 | return ret; | 209 | 830 | } |
Unexecuted instantiation: astro.c:zend_string_init Unexecuted instantiation: dow.c:zend_string_init Unexecuted instantiation: parse_date.c:zend_string_init Unexecuted instantiation: parse_tz.c:zend_string_init Unexecuted instantiation: parse_posix.c:zend_string_init Unexecuted instantiation: timelib.c:zend_string_init Unexecuted instantiation: tm2unixtime.c:zend_string_init Unexecuted instantiation: unixtime2tm.c:zend_string_init Unexecuted instantiation: parse_iso_intervals.c:zend_string_init Unexecuted instantiation: interval.c:zend_string_init php_pcre.c:zend_string_init Line | Count | Source | 203 | 947 | { | 204 | 947 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 947 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 947 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 947 | return ret; | 209 | 947 | } |
Unexecuted instantiation: exif.c:zend_string_init Unexecuted instantiation: hash_adler32.c:zend_string_init Unexecuted instantiation: hash_crc32.c:zend_string_init Unexecuted instantiation: hash_fnv.c:zend_string_init Unexecuted instantiation: hash_gost.c:zend_string_init Unexecuted instantiation: hash_haval.c:zend_string_init Unexecuted instantiation: hash_joaat.c:zend_string_init Unexecuted instantiation: hash_md.c:zend_string_init Unexecuted instantiation: hash_murmur.c:zend_string_init Unexecuted instantiation: hash_ripemd.c:zend_string_init Unexecuted instantiation: hash_sha_ni.c:zend_string_init Unexecuted instantiation: hash_sha_sse2.c:zend_string_init Unexecuted instantiation: hash_sha.c:zend_string_init Unexecuted instantiation: hash_sha3.c:zend_string_init Unexecuted instantiation: hash_snefru.c:zend_string_init Unexecuted instantiation: hash_tiger.c:zend_string_init Unexecuted instantiation: hash_whirlpool.c:zend_string_init Unexecuted instantiation: hash_xxhash.c:zend_string_init Unexecuted instantiation: hash.c:zend_string_init Unexecuted instantiation: json_encoder.c:zend_string_init Unexecuted instantiation: json_parser.tab.c:zend_string_init Unexecuted instantiation: json_scanner.c:zend_string_init Line | Count | Source | 203 | 133 | { | 204 | 133 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 133 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 133 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 133 | return ret; | 209 | 133 | } |
Unexecuted instantiation: php_lexbor.c:zend_string_init Unexecuted instantiation: shared_alloc_mmap.c:zend_string_init Unexecuted instantiation: shared_alloc_posix.c:zend_string_init Unexecuted instantiation: shared_alloc_shm.c:zend_string_init Unexecuted instantiation: zend_accelerator_api.c:zend_string_init Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_init Unexecuted instantiation: zend_accelerator_debug.c:zend_string_init Unexecuted instantiation: zend_accelerator_hash.c:zend_string_init Unexecuted instantiation: zend_accelerator_module.c:zend_string_init Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_init Unexecuted instantiation: zend_file_cache.c:zend_string_init Unexecuted instantiation: zend_persist_calc.c:zend_string_init Unexecuted instantiation: zend_persist.c:zend_string_init Unexecuted instantiation: zend_shared_alloc.c:zend_string_init ZendAccelerator.c:zend_string_init Line | Count | Source | 203 | 807k | { | 204 | 807k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 807k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 807k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 807k | return ret; | 209 | 807k | } |
Unexecuted instantiation: ir_cfg.c:zend_string_init Unexecuted instantiation: ir_check.c:zend_string_init Unexecuted instantiation: ir_dump.c:zend_string_init Unexecuted instantiation: ir_emit.c:zend_string_init Unexecuted instantiation: ir_gcm.c:zend_string_init Unexecuted instantiation: ir_gdb.c:zend_string_init Unexecuted instantiation: ir_patch.c:zend_string_init Unexecuted instantiation: ir_perf.c:zend_string_init Unexecuted instantiation: ir_ra.c:zend_string_init Unexecuted instantiation: ir_save.c:zend_string_init Unexecuted instantiation: ir_sccp.c:zend_string_init Unexecuted instantiation: ir_strtab.c:zend_string_init Unexecuted instantiation: ir.c:zend_string_init Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_init Unexecuted instantiation: zend_jit.c:zend_string_init Unexecuted instantiation: csprng.c:zend_string_init Unexecuted instantiation: engine_mt19937.c:zend_string_init Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_init Unexecuted instantiation: engine_secure.c:zend_string_init Unexecuted instantiation: engine_user.c:zend_string_init Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_init Unexecuted instantiation: gammasection.c:zend_string_init random.c:zend_string_init Line | Count | Source | 203 | 64 | { | 204 | 64 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 64 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 64 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 64 | return ret; | 209 | 64 | } |
Unexecuted instantiation: randomizer.c:zend_string_init Unexecuted instantiation: zend_utils.c:zend_string_init php_reflection.c:zend_string_init Line | Count | Source | 203 | 215 | { | 204 | 215 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 215 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 215 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 215 | return ret; | 209 | 215 | } |
Unexecuted instantiation: php_spl.c:zend_string_init Unexecuted instantiation: spl_array.c:zend_string_init Unexecuted instantiation: spl_directory.c:zend_string_init Unexecuted instantiation: spl_dllist.c:zend_string_init Unexecuted instantiation: spl_exceptions.c:zend_string_init spl_fixedarray.c:zend_string_init Line | Count | Source | 203 | 16 | { | 204 | 16 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 16 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 16 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 16 | return ret; | 209 | 16 | } |
Unexecuted instantiation: spl_functions.c:zend_string_init Unexecuted instantiation: spl_heap.c:zend_string_init spl_iterators.c:zend_string_init Line | Count | Source | 203 | 4.65k | { | 204 | 4.65k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 4.65k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 4.65k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 4.65k | return ret; | 209 | 4.65k | } |
spl_observer.c:zend_string_init Line | Count | Source | 203 | 48 | { | 204 | 48 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 48 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 48 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 48 | return ret; | 209 | 48 | } |
Unexecuted instantiation: array.c:zend_string_init assert.c:zend_string_init Line | Count | Source | 203 | 39 | { | 204 | 39 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 39 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 39 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 39 | return ret; | 209 | 39 | } |
Unexecuted instantiation: base64.c:zend_string_init basic_functions.c:zend_string_init Line | Count | Source | 203 | 129 | { | 204 | 129 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 129 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 129 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 129 | return ret; | 209 | 129 | } |
Unexecuted instantiation: browscap.c:zend_string_init Unexecuted instantiation: crc32_x86.c:zend_string_init Unexecuted instantiation: crc32.c:zend_string_init Unexecuted instantiation: credits.c:zend_string_init Line | Count | Source | 203 | 6 | { | 204 | 6 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 6 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 6 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 6 | return ret; | 209 | 6 | } |
Unexecuted instantiation: css.c:zend_string_init Unexecuted instantiation: datetime.c:zend_string_init Line | Count | Source | 203 | 21 | { | 204 | 21 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 21 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 21 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 21 | return ret; | 209 | 21 | } |
Unexecuted instantiation: dl.c:zend_string_init Unexecuted instantiation: dns.c:zend_string_init Unexecuted instantiation: exec.c:zend_string_init Line | Count | Source | 203 | 6.61k | { | 204 | 6.61k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 6.61k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 6.61k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 6.61k | return ret; | 209 | 6.61k | } |
Unexecuted instantiation: filestat.c:zend_string_init Unexecuted instantiation: filters.c:zend_string_init Unexecuted instantiation: flock_compat.c:zend_string_init Unexecuted instantiation: formatted_print.c:zend_string_init Unexecuted instantiation: fsock.c:zend_string_init Unexecuted instantiation: ftok.c:zend_string_init Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_init Line | Count | Source | 203 | 9 | { | 204 | 9 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 9 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 9 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 9 | return ret; | 209 | 9 | } |
Unexecuted instantiation: hrtime.c:zend_string_init Unexecuted instantiation: html.c:zend_string_init Unexecuted instantiation: http_fopen_wrapper.c:zend_string_init Unexecuted instantiation: http.c:zend_string_init Unexecuted instantiation: image.c:zend_string_init Unexecuted instantiation: incomplete_class.c:zend_string_init Line | Count | Source | 203 | 35 | { | 204 | 35 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 35 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 35 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 35 | return ret; | 209 | 35 | } |
Unexecuted instantiation: iptc.c:zend_string_init Unexecuted instantiation: levenshtein.c:zend_string_init Unexecuted instantiation: link.c:zend_string_init Unexecuted instantiation: mail.c:zend_string_init Line | Count | Source | 203 | 14 | { | 204 | 14 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 14 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 14 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 14 | return ret; | 209 | 14 | } |
Line | Count | Source | 203 | 6 | { | 204 | 6 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 6 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 6 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 6 | return ret; | 209 | 6 | } |
Unexecuted instantiation: metaphone.c:zend_string_init Unexecuted instantiation: microtime.c:zend_string_init Unexecuted instantiation: net.c:zend_string_init Unexecuted instantiation: pack.c:zend_string_init Unexecuted instantiation: pageinfo.c:zend_string_init Unexecuted instantiation: password.c:zend_string_init Unexecuted instantiation: php_fopen_wrapper.c:zend_string_init Unexecuted instantiation: proc_open.c:zend_string_init Unexecuted instantiation: quot_print.c:zend_string_init Unexecuted instantiation: scanf.c:zend_string_init Unexecuted instantiation: sha1.c:zend_string_init Unexecuted instantiation: soundex.c:zend_string_init Unexecuted instantiation: streamsfuncs.c:zend_string_init string.c:zend_string_init Line | Count | Source | 203 | 3.27k | { | 204 | 3.27k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 3.27k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 3.27k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 3.27k | return ret; | 209 | 3.27k | } |
Unexecuted instantiation: strnatcmp.c:zend_string_init Unexecuted instantiation: syslog.c:zend_string_init Unexecuted instantiation: type.c:zend_string_init Unexecuted instantiation: uniqid.c:zend_string_init url_scanner_ex.c:zend_string_init Line | Count | Source | 203 | 80 | { | 204 | 80 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 80 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 80 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 80 | return ret; | 209 | 80 | } |
Unexecuted instantiation: url.c:zend_string_init user_filters.c:zend_string_init Line | Count | Source | 203 | 332 | { | 204 | 332 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 332 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 332 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 332 | return ret; | 209 | 332 | } |
Unexecuted instantiation: uuencode.c:zend_string_init var_unserializer.c:zend_string_init Line | Count | Source | 203 | 87.9k | { | 204 | 87.9k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 87.9k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 87.9k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 87.9k | return ret; | 209 | 87.9k | } |
Line | Count | Source | 203 | 456 | { | 204 | 456 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 456 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 456 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 456 | return ret; | 209 | 456 | } |
Unexecuted instantiation: versioning.c:zend_string_init Unexecuted instantiation: crypt_sha256.c:zend_string_init Unexecuted instantiation: crypt_sha512.c:zend_string_init Unexecuted instantiation: php_crypt_r.c:zend_string_init php_uri.c:zend_string_init Line | Count | Source | 203 | 64 | { | 204 | 64 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 64 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 64 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 64 | return ret; | 209 | 64 | } |
Unexecuted instantiation: php_uri_common.c:zend_string_init Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_init Unexecuted instantiation: uri_parser_whatwg.c:zend_string_init Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_init Unexecuted instantiation: explicit_bzero.c:zend_string_init fopen_wrappers.c:zend_string_init Line | Count | Source | 203 | 58.1k | { | 204 | 58.1k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 58.1k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 58.1k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 58.1k | return ret; | 209 | 58.1k | } |
Unexecuted instantiation: getopt.c:zend_string_init Line | Count | Source | 203 | 12 | { | 204 | 12 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 12 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 12 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 12 | return ret; | 209 | 12 | } |
Unexecuted instantiation: network.c:zend_string_init output.c:zend_string_init Line | Count | Source | 203 | 3.66k | { | 204 | 3.66k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 3.66k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 3.66k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 3.66k | return ret; | 209 | 3.66k | } |
Unexecuted instantiation: php_content_types.c:zend_string_init Unexecuted instantiation: php_ini_builder.c:zend_string_init php_ini.c:zend_string_init Line | Count | Source | 203 | 208 | { | 204 | 208 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 208 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 208 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 208 | return ret; | 209 | 208 | } |
Unexecuted instantiation: php_glob.c:zend_string_init Unexecuted instantiation: php_odbc_utils.c:zend_string_init Unexecuted instantiation: php_open_temporary_file.c:zend_string_init Unexecuted instantiation: php_scandir.c:zend_string_init Unexecuted instantiation: php_syslog.c:zend_string_init Unexecuted instantiation: php_ticks.c:zend_string_init php_variables.c:zend_string_init Line | Count | Source | 203 | 146k | { | 204 | 146k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 146k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 146k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 146k | return ret; | 209 | 146k | } |
Unexecuted instantiation: reentrancy.c:zend_string_init Unexecuted instantiation: rfc1867.c:zend_string_init Unexecuted instantiation: safe_bcmp.c:zend_string_init Line | Count | Source | 203 | 32 | { | 204 | 32 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 32 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 32 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 32 | return ret; | 209 | 32 | } |
Unexecuted instantiation: snprintf.c:zend_string_init Unexecuted instantiation: spprintf.c:zend_string_init Unexecuted instantiation: strlcat.c:zend_string_init Unexecuted instantiation: strlcpy.c:zend_string_init Unexecuted instantiation: cast.c:zend_string_init Unexecuted instantiation: filter.c:zend_string_init Unexecuted instantiation: glob_wrapper.c:zend_string_init Unexecuted instantiation: memory.c:zend_string_init Unexecuted instantiation: mmap.c:zend_string_init plain_wrapper.c:zend_string_init Line | Count | Source | 203 | 83 | { | 204 | 83 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 83 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 83 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 83 | return ret; | 209 | 83 | } |
stream_errors.c:zend_string_init Line | Count | Source | 203 | 80 | { | 204 | 80 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 80 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 80 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 80 | return ret; | 209 | 80 | } |
Unexecuted instantiation: streams.c:zend_string_init Unexecuted instantiation: transports.c:zend_string_init userspace.c:zend_string_init Line | Count | Source | 203 | 13.1k | { | 204 | 13.1k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 13.1k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 13.1k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 13.1k | return ret; | 209 | 13.1k | } |
Unexecuted instantiation: xp_socket.c:zend_string_init Unexecuted instantiation: block_pass.c:zend_string_init compact_literals.c:zend_string_init Line | Count | Source | 203 | 9.45k | { | 204 | 9.45k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 9.45k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 9.45k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 9.45k | return ret; | 209 | 9.45k | } |
Unexecuted instantiation: compact_vars.c:zend_string_init Unexecuted instantiation: dce.c:zend_string_init Unexecuted instantiation: dfa_pass.c:zend_string_init Unexecuted instantiation: escape_analysis.c:zend_string_init Unexecuted instantiation: nop_removal.c:zend_string_init Unexecuted instantiation: optimize_func_calls.c:zend_string_init Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_init Unexecuted instantiation: pass1.c:zend_string_init Unexecuted instantiation: pass3.c:zend_string_init Unexecuted instantiation: sccp.c:zend_string_init Unexecuted instantiation: scdf.c:zend_string_init Unexecuted instantiation: zend_call_graph.c:zend_string_init Unexecuted instantiation: zend_cfg.c:zend_string_init Unexecuted instantiation: zend_dfg.c:zend_string_init Unexecuted instantiation: zend_dump.c:zend_string_init Unexecuted instantiation: zend_func_info.c:zend_string_init Unexecuted instantiation: zend_inference.c:zend_string_init zend_optimizer.c:zend_string_init Line | Count | Source | 203 | 2 | { | 204 | 2 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 2 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 2 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 2 | return ret; | 209 | 2 | } |
Unexecuted instantiation: zend_ssa.c:zend_string_init Unexecuted instantiation: zend_alloc.c:zend_string_init zend_API.c:zend_string_init Line | Count | Source | 203 | 522k | { | 204 | 522k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 522k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 522k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 522k | return ret; | 209 | 522k | } |
Unexecuted instantiation: zend_ast.c:zend_string_init zend_attributes.c:zend_string_init Line | Count | Source | 203 | 55 | { | 204 | 55 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 55 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 55 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 55 | return ret; | 209 | 55 | } |
Unexecuted instantiation: zend_autoload.c:zend_string_init zend_builtin_functions.c:zend_string_init Line | Count | Source | 203 | 428 | { | 204 | 428 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 428 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 428 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 428 | return ret; | 209 | 428 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_init Unexecuted instantiation: zend_closures.c:zend_string_init zend_compile.c:zend_string_init Line | Count | Source | 203 | 19.4M | { | 204 | 19.4M | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 19.4M | memcpy(ZSTR_VAL(ret), str, len); | 207 | 19.4M | ZSTR_VAL(ret)[len] = '\0'; | 208 | 19.4M | return ret; | 209 | 19.4M | } |
zend_constants.c:zend_string_init Line | Count | Source | 203 | 507 | { | 204 | 507 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 507 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 507 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 507 | return ret; | 209 | 507 | } |
Unexecuted instantiation: zend_cpuinfo.c:zend_string_init Unexecuted instantiation: zend_default_classes.c:zend_string_init Unexecuted instantiation: zend_dtrace.c:zend_string_init zend_enum.c:zend_string_init Line | Count | Source | 203 | 12.3k | { | 204 | 12.3k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 12.3k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 12.3k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 12.3k | return ret; | 209 | 12.3k | } |
zend_exceptions.c:zend_string_init Line | Count | Source | 203 | 1.04M | { | 204 | 1.04M | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 1.04M | memcpy(ZSTR_VAL(ret), str, len); | 207 | 1.04M | ZSTR_VAL(ret)[len] = '\0'; | 208 | 1.04M | return ret; | 209 | 1.04M | } |
zend_execute_API.c:zend_string_init Line | Count | Source | 203 | 33 | { | 204 | 33 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 33 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 33 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 33 | return ret; | 209 | 33 | } |
zend_execute.c:zend_string_init Line | Count | Source | 203 | 491 | { | 204 | 491 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 491 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 491 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 491 | return ret; | 209 | 491 | } |
Unexecuted instantiation: zend_extensions.c:zend_string_init Unexecuted instantiation: zend_fibers.c:zend_string_init Unexecuted instantiation: zend_float.c:zend_string_init Unexecuted instantiation: zend_gc.c:zend_string_init Unexecuted instantiation: zend_gdb.c:zend_string_init Unexecuted instantiation: zend_generators.c:zend_string_init zend_hash.c:zend_string_init Line | Count | Source | 203 | 112k | { | 204 | 112k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 112k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 112k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 112k | return ret; | 209 | 112k | } |
Unexecuted instantiation: zend_highlight.c:zend_string_init Unexecuted instantiation: zend_hrtime.c:zend_string_init Unexecuted instantiation: zend_inheritance.c:zend_string_init zend_ini_parser.c:zend_string_init Line | Count | Source | 203 | 21.6k | { | 204 | 21.6k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 21.6k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 21.6k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 21.6k | return ret; | 209 | 21.6k | } |
zend_ini_scanner.c:zend_string_init Line | Count | Source | 203 | 1.78M | { | 204 | 1.78M | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 1.78M | memcpy(ZSTR_VAL(ret), str, len); | 207 | 1.78M | ZSTR_VAL(ret)[len] = '\0'; | 208 | 1.78M | return ret; | 209 | 1.78M | } |
zend_ini.c:zend_string_init Line | Count | Source | 203 | 58.1k | { | 204 | 58.1k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 58.1k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 58.1k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 58.1k | return ret; | 209 | 58.1k | } |
zend_interfaces.c:zend_string_init Line | Count | Source | 203 | 2.90k | { | 204 | 2.90k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 2.90k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 2.90k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 2.90k | return ret; | 209 | 2.90k | } |
Unexecuted instantiation: zend_iterators.c:zend_string_init Unexecuted instantiation: zend_language_parser.c:zend_string_init zend_language_scanner.c:zend_string_init Line | Count | Source | 203 | 6.10M | { | 204 | 6.10M | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 6.10M | memcpy(ZSTR_VAL(ret), str, len); | 207 | 6.10M | ZSTR_VAL(ret)[len] = '\0'; | 208 | 6.10M | return ret; | 209 | 6.10M | } |
Unexecuted instantiation: zend_lazy_objects.c:zend_string_init Unexecuted instantiation: zend_list.c:zend_string_init Unexecuted instantiation: zend_llist.c:zend_string_init Unexecuted instantiation: zend_multibyte.c:zend_string_init zend_object_handlers.c:zend_string_init Line | Count | Source | 203 | 859 | { | 204 | 859 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 859 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 859 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 859 | return ret; | 209 | 859 | } |
Unexecuted instantiation: zend_objects_API.c:zend_string_init Unexecuted instantiation: zend_objects.c:zend_string_init Unexecuted instantiation: zend_observer.c:zend_string_init Unexecuted instantiation: zend_opcode.c:zend_string_init zend_operators.c:zend_string_init Line | Count | Source | 203 | 174k | { | 204 | 174k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 174k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 174k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 174k | return ret; | 209 | 174k | } |
zend_property_hooks.c:zend_string_init Line | Count | Source | 203 | 88 | { | 204 | 88 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 88 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 88 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 88 | return ret; | 209 | 88 | } |
Unexecuted instantiation: zend_ptr_stack.c:zend_string_init Unexecuted instantiation: zend_signal.c:zend_string_init Unexecuted instantiation: zend_smart_str.c:zend_string_init Unexecuted instantiation: zend_sort.c:zend_string_init Unexecuted instantiation: zend_stack.c:zend_string_init zend_stream.c:zend_string_init Line | Count | Source | 203 | 143k | { | 204 | 143k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 143k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 143k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 143k | return ret; | 209 | 143k | } |
zend_string.c:zend_string_init Line | Count | Source | 203 | 54.0k | { | 204 | 54.0k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 54.0k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 54.0k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 54.0k | return ret; | 209 | 54.0k | } |
Unexecuted instantiation: zend_strtod.c:zend_string_init Unexecuted instantiation: zend_system_id.c:zend_string_init zend_variables.c:zend_string_init Line | Count | Source | 203 | 135 | { | 204 | 135 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 135 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 135 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 135 | return ret; | 209 | 135 | } |
Unexecuted instantiation: zend_virtual_cwd.c:zend_string_init Unexecuted instantiation: zend_vm_opcodes.c:zend_string_init Unexecuted instantiation: zend_weakrefs.c:zend_string_init Unexecuted instantiation: zend.c:zend_string_init Unexecuted instantiation: internal_functions_cli.c:zend_string_init Unexecuted instantiation: fuzzer-parser.c:zend_string_init Unexecuted instantiation: fuzzer-sapi.c:zend_string_init fuzzer-tracing-jit.c:zend_string_init Line | Count | Source | 203 | 49.8k | { | 204 | 49.8k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 49.8k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 49.8k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 49.8k | return ret; | 209 | 49.8k | } |
Unexecuted instantiation: fuzzer-exif.c:zend_string_init Unexecuted instantiation: fuzzer-unserialize.c:zend_string_init fuzzer-function-jit.c:zend_string_init Line | Count | Source | 203 | 42.7k | { | 204 | 42.7k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 42.7k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 42.7k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 42.7k | return ret; | 209 | 42.7k | } |
Unexecuted instantiation: fuzzer-json.c:zend_string_init fuzzer-unserializehash.c:zend_string_init Line | Count | Source | 203 | 2.03k | { | 204 | 2.03k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 2.03k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 2.03k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 2.03k | return ret; | 209 | 2.03k | } |
Unexecuted instantiation: fuzzer-execute.c:zend_string_init |
210 | | |
211 | | static zend_always_inline zend_string *zend_string_init_fast(const char *str, size_t len) |
212 | 238k | { |
213 | 238k | if (len > 1) { |
214 | 234k | return zend_string_init(str, len, 0); |
215 | 234k | } else if (len == 0) { |
216 | 649 | return zend_empty_string; |
217 | 3.59k | } else /* if (len == 1) */ { |
218 | 3.59k | return ZSTR_CHAR((zend_uchar) *str); |
219 | 3.59k | } |
220 | 238k | } Unexecuted instantiation: php_date.c:zend_string_init_fast Unexecuted instantiation: astro.c:zend_string_init_fast Unexecuted instantiation: dow.c:zend_string_init_fast Unexecuted instantiation: parse_date.c:zend_string_init_fast Unexecuted instantiation: parse_tz.c:zend_string_init_fast Unexecuted instantiation: parse_posix.c:zend_string_init_fast Unexecuted instantiation: timelib.c:zend_string_init_fast Unexecuted instantiation: tm2unixtime.c:zend_string_init_fast Unexecuted instantiation: unixtime2tm.c:zend_string_init_fast Unexecuted instantiation: parse_iso_intervals.c:zend_string_init_fast Unexecuted instantiation: interval.c:zend_string_init_fast php_pcre.c:zend_string_init_fast Line | Count | Source | 212 | 688 | { | 213 | 688 | if (len > 1) { | 214 | 77 | return zend_string_init(str, len, 0); | 215 | 611 | } else if (len == 0) { | 216 | 144 | return zend_empty_string; | 217 | 467 | } else /* if (len == 1) */ { | 218 | 467 | return ZSTR_CHAR((zend_uchar) *str); | 219 | 467 | } | 220 | 688 | } |
Unexecuted instantiation: exif.c:zend_string_init_fast Unexecuted instantiation: hash_adler32.c:zend_string_init_fast Unexecuted instantiation: hash_crc32.c:zend_string_init_fast Unexecuted instantiation: hash_fnv.c:zend_string_init_fast Unexecuted instantiation: hash_gost.c:zend_string_init_fast Unexecuted instantiation: hash_haval.c:zend_string_init_fast Unexecuted instantiation: hash_joaat.c:zend_string_init_fast Unexecuted instantiation: hash_md.c:zend_string_init_fast Unexecuted instantiation: hash_murmur.c:zend_string_init_fast Unexecuted instantiation: hash_ripemd.c:zend_string_init_fast Unexecuted instantiation: hash_sha_ni.c:zend_string_init_fast Unexecuted instantiation: hash_sha_sse2.c:zend_string_init_fast Unexecuted instantiation: hash_sha.c:zend_string_init_fast Unexecuted instantiation: hash_sha3.c:zend_string_init_fast Unexecuted instantiation: hash_snefru.c:zend_string_init_fast Unexecuted instantiation: hash_tiger.c:zend_string_init_fast Unexecuted instantiation: hash_whirlpool.c:zend_string_init_fast Unexecuted instantiation: hash_xxhash.c:zend_string_init_fast Unexecuted instantiation: hash.c:zend_string_init_fast Unexecuted instantiation: json_encoder.c:zend_string_init_fast Unexecuted instantiation: json_parser.tab.c:zend_string_init_fast Unexecuted instantiation: json_scanner.c:zend_string_init_fast Unexecuted instantiation: json.c:zend_string_init_fast Unexecuted instantiation: php_lexbor.c:zend_string_init_fast Unexecuted instantiation: shared_alloc_mmap.c:zend_string_init_fast Unexecuted instantiation: shared_alloc_posix.c:zend_string_init_fast Unexecuted instantiation: shared_alloc_shm.c:zend_string_init_fast Unexecuted instantiation: zend_accelerator_api.c:zend_string_init_fast Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_init_fast Unexecuted instantiation: zend_accelerator_debug.c:zend_string_init_fast Unexecuted instantiation: zend_accelerator_hash.c:zend_string_init_fast Unexecuted instantiation: zend_accelerator_module.c:zend_string_init_fast Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_init_fast Unexecuted instantiation: zend_file_cache.c:zend_string_init_fast Unexecuted instantiation: zend_persist_calc.c:zend_string_init_fast Unexecuted instantiation: zend_persist.c:zend_string_init_fast Unexecuted instantiation: zend_shared_alloc.c:zend_string_init_fast Unexecuted instantiation: ZendAccelerator.c:zend_string_init_fast Unexecuted instantiation: ir_cfg.c:zend_string_init_fast Unexecuted instantiation: ir_check.c:zend_string_init_fast Unexecuted instantiation: ir_dump.c:zend_string_init_fast Unexecuted instantiation: ir_emit.c:zend_string_init_fast Unexecuted instantiation: ir_gcm.c:zend_string_init_fast Unexecuted instantiation: ir_gdb.c:zend_string_init_fast Unexecuted instantiation: ir_patch.c:zend_string_init_fast Unexecuted instantiation: ir_perf.c:zend_string_init_fast Unexecuted instantiation: ir_ra.c:zend_string_init_fast Unexecuted instantiation: ir_save.c:zend_string_init_fast Unexecuted instantiation: ir_sccp.c:zend_string_init_fast Unexecuted instantiation: ir_strtab.c:zend_string_init_fast Unexecuted instantiation: ir.c:zend_string_init_fast Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_init_fast Unexecuted instantiation: zend_jit.c:zend_string_init_fast Unexecuted instantiation: csprng.c:zend_string_init_fast Unexecuted instantiation: engine_mt19937.c:zend_string_init_fast Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_init_fast Unexecuted instantiation: engine_secure.c:zend_string_init_fast Unexecuted instantiation: engine_user.c:zend_string_init_fast Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_init_fast Unexecuted instantiation: gammasection.c:zend_string_init_fast Unexecuted instantiation: random.c:zend_string_init_fast Unexecuted instantiation: randomizer.c:zend_string_init_fast Unexecuted instantiation: zend_utils.c:zend_string_init_fast Unexecuted instantiation: php_reflection.c:zend_string_init_fast Unexecuted instantiation: php_spl.c:zend_string_init_fast Unexecuted instantiation: spl_array.c:zend_string_init_fast Unexecuted instantiation: spl_directory.c:zend_string_init_fast Unexecuted instantiation: spl_dllist.c:zend_string_init_fast Unexecuted instantiation: spl_exceptions.c:zend_string_init_fast Unexecuted instantiation: spl_fixedarray.c:zend_string_init_fast Unexecuted instantiation: spl_functions.c:zend_string_init_fast Unexecuted instantiation: spl_heap.c:zend_string_init_fast Unexecuted instantiation: spl_iterators.c:zend_string_init_fast Unexecuted instantiation: spl_observer.c:zend_string_init_fast Unexecuted instantiation: array.c:zend_string_init_fast Unexecuted instantiation: assert.c:zend_string_init_fast Unexecuted instantiation: base64.c:zend_string_init_fast Unexecuted instantiation: basic_functions.c:zend_string_init_fast Unexecuted instantiation: browscap.c:zend_string_init_fast Unexecuted instantiation: crc32_x86.c:zend_string_init_fast Unexecuted instantiation: crc32.c:zend_string_init_fast Unexecuted instantiation: credits.c:zend_string_init_fast Unexecuted instantiation: crypt.c:zend_string_init_fast Unexecuted instantiation: css.c:zend_string_init_fast Unexecuted instantiation: datetime.c:zend_string_init_fast Unexecuted instantiation: dir.c:zend_string_init_fast Unexecuted instantiation: dl.c:zend_string_init_fast Unexecuted instantiation: dns.c:zend_string_init_fast Unexecuted instantiation: exec.c:zend_string_init_fast Unexecuted instantiation: file.c:zend_string_init_fast Unexecuted instantiation: filestat.c:zend_string_init_fast Unexecuted instantiation: filters.c:zend_string_init_fast Unexecuted instantiation: flock_compat.c:zend_string_init_fast Unexecuted instantiation: formatted_print.c:zend_string_init_fast Unexecuted instantiation: fsock.c:zend_string_init_fast Unexecuted instantiation: ftok.c:zend_string_init_fast Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_init_fast Unexecuted instantiation: head.c:zend_string_init_fast Unexecuted instantiation: hrtime.c:zend_string_init_fast Unexecuted instantiation: html.c:zend_string_init_fast Unexecuted instantiation: http_fopen_wrapper.c:zend_string_init_fast Unexecuted instantiation: http.c:zend_string_init_fast Unexecuted instantiation: image.c:zend_string_init_fast Unexecuted instantiation: incomplete_class.c:zend_string_init_fast Unexecuted instantiation: info.c:zend_string_init_fast Unexecuted instantiation: iptc.c:zend_string_init_fast Unexecuted instantiation: levenshtein.c:zend_string_init_fast Unexecuted instantiation: link.c:zend_string_init_fast Unexecuted instantiation: mail.c:zend_string_init_fast Unexecuted instantiation: math.c:zend_string_init_fast Unexecuted instantiation: md5.c:zend_string_init_fast Unexecuted instantiation: metaphone.c:zend_string_init_fast Unexecuted instantiation: microtime.c:zend_string_init_fast Unexecuted instantiation: net.c:zend_string_init_fast Unexecuted instantiation: pack.c:zend_string_init_fast Unexecuted instantiation: pageinfo.c:zend_string_init_fast Unexecuted instantiation: password.c:zend_string_init_fast Unexecuted instantiation: php_fopen_wrapper.c:zend_string_init_fast Unexecuted instantiation: proc_open.c:zend_string_init_fast Unexecuted instantiation: quot_print.c:zend_string_init_fast Unexecuted instantiation: scanf.c:zend_string_init_fast Unexecuted instantiation: sha1.c:zend_string_init_fast Unexecuted instantiation: soundex.c:zend_string_init_fast Unexecuted instantiation: streamsfuncs.c:zend_string_init_fast string.c:zend_string_init_fast Line | Count | Source | 212 | 91 | { | 213 | 91 | if (len > 1) { | 214 | 87 | return zend_string_init(str, len, 0); | 215 | 87 | } else if (len == 0) { | 216 | 1 | return zend_empty_string; | 217 | 3 | } else /* if (len == 1) */ { | 218 | 3 | return ZSTR_CHAR((zend_uchar) *str); | 219 | 3 | } | 220 | 91 | } |
Unexecuted instantiation: strnatcmp.c:zend_string_init_fast Unexecuted instantiation: syslog.c:zend_string_init_fast Unexecuted instantiation: type.c:zend_string_init_fast Unexecuted instantiation: uniqid.c:zend_string_init_fast Unexecuted instantiation: url_scanner_ex.c:zend_string_init_fast Unexecuted instantiation: url.c:zend_string_init_fast Unexecuted instantiation: user_filters.c:zend_string_init_fast Unexecuted instantiation: uuencode.c:zend_string_init_fast var_unserializer.c:zend_string_init_fast Line | Count | Source | 212 | 90.8k | { | 213 | 90.8k | if (len > 1) { | 214 | 87.6k | return zend_string_init(str, len, 0); | 215 | 87.6k | } else if (len == 0) { | 216 | 298 | return zend_empty_string; | 217 | 2.81k | } else /* if (len == 1) */ { | 218 | 2.81k | return ZSTR_CHAR((zend_uchar) *str); | 219 | 2.81k | } | 220 | 90.8k | } |
Unexecuted instantiation: var.c:zend_string_init_fast Unexecuted instantiation: versioning.c:zend_string_init_fast Unexecuted instantiation: crypt_sha256.c:zend_string_init_fast Unexecuted instantiation: crypt_sha512.c:zend_string_init_fast Unexecuted instantiation: php_crypt_r.c:zend_string_init_fast Unexecuted instantiation: php_uri.c:zend_string_init_fast Unexecuted instantiation: php_uri_common.c:zend_string_init_fast Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_init_fast Unexecuted instantiation: uri_parser_whatwg.c:zend_string_init_fast Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_init_fast Unexecuted instantiation: explicit_bzero.c:zend_string_init_fast Unexecuted instantiation: fopen_wrappers.c:zend_string_init_fast Unexecuted instantiation: getopt.c:zend_string_init_fast Unexecuted instantiation: main.c:zend_string_init_fast Unexecuted instantiation: network.c:zend_string_init_fast Unexecuted instantiation: output.c:zend_string_init_fast Unexecuted instantiation: php_content_types.c:zend_string_init_fast Unexecuted instantiation: php_ini_builder.c:zend_string_init_fast Unexecuted instantiation: php_ini.c:zend_string_init_fast Unexecuted instantiation: php_glob.c:zend_string_init_fast Unexecuted instantiation: php_odbc_utils.c:zend_string_init_fast Unexecuted instantiation: php_open_temporary_file.c:zend_string_init_fast Unexecuted instantiation: php_scandir.c:zend_string_init_fast Unexecuted instantiation: php_syslog.c:zend_string_init_fast Unexecuted instantiation: php_ticks.c:zend_string_init_fast php_variables.c:zend_string_init_fast Line | Count | Source | 212 | 147k | { | 213 | 147k | if (len > 1) { | 214 | 146k | return zend_string_init(str, len, 0); | 215 | 146k | } else if (len == 0) { | 216 | 206 | return zend_empty_string; | 217 | 309 | } else /* if (len == 1) */ { | 218 | 309 | return ZSTR_CHAR((zend_uchar) *str); | 219 | 309 | } | 220 | 147k | } |
Unexecuted instantiation: reentrancy.c:zend_string_init_fast Unexecuted instantiation: rfc1867.c:zend_string_init_fast Unexecuted instantiation: safe_bcmp.c:zend_string_init_fast Unexecuted instantiation: SAPI.c:zend_string_init_fast Unexecuted instantiation: snprintf.c:zend_string_init_fast Unexecuted instantiation: spprintf.c:zend_string_init_fast Unexecuted instantiation: strlcat.c:zend_string_init_fast Unexecuted instantiation: strlcpy.c:zend_string_init_fast Unexecuted instantiation: cast.c:zend_string_init_fast Unexecuted instantiation: filter.c:zend_string_init_fast Unexecuted instantiation: glob_wrapper.c:zend_string_init_fast Unexecuted instantiation: memory.c:zend_string_init_fast Unexecuted instantiation: mmap.c:zend_string_init_fast Unexecuted instantiation: plain_wrapper.c:zend_string_init_fast Unexecuted instantiation: stream_errors.c:zend_string_init_fast Unexecuted instantiation: streams.c:zend_string_init_fast Unexecuted instantiation: transports.c:zend_string_init_fast Unexecuted instantiation: userspace.c:zend_string_init_fast Unexecuted instantiation: xp_socket.c:zend_string_init_fast Unexecuted instantiation: block_pass.c:zend_string_init_fast Unexecuted instantiation: compact_literals.c:zend_string_init_fast Unexecuted instantiation: compact_vars.c:zend_string_init_fast Unexecuted instantiation: dce.c:zend_string_init_fast Unexecuted instantiation: dfa_pass.c:zend_string_init_fast Unexecuted instantiation: escape_analysis.c:zend_string_init_fast Unexecuted instantiation: nop_removal.c:zend_string_init_fast Unexecuted instantiation: optimize_func_calls.c:zend_string_init_fast Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_init_fast Unexecuted instantiation: pass1.c:zend_string_init_fast Unexecuted instantiation: pass3.c:zend_string_init_fast Unexecuted instantiation: sccp.c:zend_string_init_fast Unexecuted instantiation: scdf.c:zend_string_init_fast Unexecuted instantiation: zend_call_graph.c:zend_string_init_fast Unexecuted instantiation: zend_cfg.c:zend_string_init_fast Unexecuted instantiation: zend_dfg.c:zend_string_init_fast Unexecuted instantiation: zend_dump.c:zend_string_init_fast Unexecuted instantiation: zend_func_info.c:zend_string_init_fast Unexecuted instantiation: zend_inference.c:zend_string_init_fast Unexecuted instantiation: zend_optimizer.c:zend_string_init_fast Unexecuted instantiation: zend_ssa.c:zend_string_init_fast Unexecuted instantiation: zend_alloc.c:zend_string_init_fast Unexecuted instantiation: zend_API.c:zend_string_init_fast Unexecuted instantiation: zend_ast.c:zend_string_init_fast Unexecuted instantiation: zend_attributes.c:zend_string_init_fast Unexecuted instantiation: zend_autoload.c:zend_string_init_fast Unexecuted instantiation: zend_builtin_functions.c:zend_string_init_fast Unexecuted instantiation: zend_call_stack.c:zend_string_init_fast Unexecuted instantiation: zend_closures.c:zend_string_init_fast Unexecuted instantiation: zend_compile.c:zend_string_init_fast Unexecuted instantiation: zend_constants.c:zend_string_init_fast Unexecuted instantiation: zend_cpuinfo.c:zend_string_init_fast Unexecuted instantiation: zend_default_classes.c:zend_string_init_fast Unexecuted instantiation: zend_dtrace.c:zend_string_init_fast Unexecuted instantiation: zend_enum.c:zend_string_init_fast Unexecuted instantiation: zend_exceptions.c:zend_string_init_fast Unexecuted instantiation: zend_execute_API.c:zend_string_init_fast Unexecuted instantiation: zend_execute.c:zend_string_init_fast Unexecuted instantiation: zend_extensions.c:zend_string_init_fast Unexecuted instantiation: zend_fibers.c:zend_string_init_fast Unexecuted instantiation: zend_float.c:zend_string_init_fast Unexecuted instantiation: zend_gc.c:zend_string_init_fast Unexecuted instantiation: zend_gdb.c:zend_string_init_fast Unexecuted instantiation: zend_generators.c:zend_string_init_fast Unexecuted instantiation: zend_hash.c:zend_string_init_fast Unexecuted instantiation: zend_highlight.c:zend_string_init_fast Unexecuted instantiation: zend_hrtime.c:zend_string_init_fast Unexecuted instantiation: zend_inheritance.c:zend_string_init_fast Unexecuted instantiation: zend_ini_parser.c:zend_string_init_fast Unexecuted instantiation: zend_ini_scanner.c:zend_string_init_fast Unexecuted instantiation: zend_ini.c:zend_string_init_fast Unexecuted instantiation: zend_interfaces.c:zend_string_init_fast Unexecuted instantiation: zend_iterators.c:zend_string_init_fast Unexecuted instantiation: zend_language_parser.c:zend_string_init_fast Unexecuted instantiation: zend_language_scanner.c:zend_string_init_fast Unexecuted instantiation: zend_lazy_objects.c:zend_string_init_fast Unexecuted instantiation: zend_list.c:zend_string_init_fast Unexecuted instantiation: zend_llist.c:zend_string_init_fast Unexecuted instantiation: zend_multibyte.c:zend_string_init_fast Unexecuted instantiation: zend_object_handlers.c:zend_string_init_fast Unexecuted instantiation: zend_objects_API.c:zend_string_init_fast Unexecuted instantiation: zend_objects.c:zend_string_init_fast Unexecuted instantiation: zend_observer.c:zend_string_init_fast Unexecuted instantiation: zend_opcode.c:zend_string_init_fast Unexecuted instantiation: zend_operators.c:zend_string_init_fast Unexecuted instantiation: zend_property_hooks.c:zend_string_init_fast Unexecuted instantiation: zend_ptr_stack.c:zend_string_init_fast Unexecuted instantiation: zend_signal.c:zend_string_init_fast Unexecuted instantiation: zend_smart_str.c:zend_string_init_fast Unexecuted instantiation: zend_sort.c:zend_string_init_fast Unexecuted instantiation: zend_stack.c:zend_string_init_fast Unexecuted instantiation: zend_stream.c:zend_string_init_fast Unexecuted instantiation: zend_string.c:zend_string_init_fast Unexecuted instantiation: zend_strtod.c:zend_string_init_fast Unexecuted instantiation: zend_system_id.c:zend_string_init_fast Unexecuted instantiation: zend_variables.c:zend_string_init_fast Unexecuted instantiation: zend_virtual_cwd.c:zend_string_init_fast Unexecuted instantiation: zend_vm_opcodes.c:zend_string_init_fast Unexecuted instantiation: zend_weakrefs.c:zend_string_init_fast Unexecuted instantiation: zend.c:zend_string_init_fast Unexecuted instantiation: internal_functions_cli.c:zend_string_init_fast Unexecuted instantiation: fuzzer-parser.c:zend_string_init_fast Unexecuted instantiation: fuzzer-sapi.c:zend_string_init_fast Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_init_fast Unexecuted instantiation: fuzzer-exif.c:zend_string_init_fast Unexecuted instantiation: fuzzer-unserialize.c:zend_string_init_fast Unexecuted instantiation: fuzzer-function-jit.c:zend_string_init_fast Unexecuted instantiation: fuzzer-json.c:zend_string_init_fast Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_init_fast Unexecuted instantiation: fuzzer-execute.c:zend_string_init_fast |
221 | | |
222 | | static zend_always_inline zend_string *zend_string_copy(zend_string *s) |
223 | 20.1M | { |
224 | 20.1M | if (!ZSTR_IS_INTERNED(s)) { |
225 | 12.9M | GC_ADDREF(s); |
226 | 12.9M | } |
227 | 20.1M | return s; |
228 | 20.1M | } php_date.c:zend_string_copy Line | Count | Source | 223 | 23 | { | 224 | 23 | if (!ZSTR_IS_INTERNED(s)) { | 225 | 20 | GC_ADDREF(s); | 226 | 20 | } | 227 | 23 | return s; | 228 | 23 | } |
Unexecuted instantiation: astro.c:zend_string_copy Unexecuted instantiation: dow.c:zend_string_copy Unexecuted instantiation: parse_date.c:zend_string_copy Unexecuted instantiation: parse_tz.c:zend_string_copy Unexecuted instantiation: parse_posix.c:zend_string_copy Unexecuted instantiation: timelib.c:zend_string_copy Unexecuted instantiation: tm2unixtime.c:zend_string_copy Unexecuted instantiation: unixtime2tm.c:zend_string_copy Unexecuted instantiation: parse_iso_intervals.c:zend_string_copy Unexecuted instantiation: interval.c:zend_string_copy php_pcre.c:zend_string_copy Line | Count | Source | 223 | 176 | { | 224 | 176 | if (!ZSTR_IS_INTERNED(s)) { | 225 | 9 | GC_ADDREF(s); | 226 | 9 | } | 227 | 176 | return s; | 228 | 176 | } |
Unexecuted instantiation: exif.c:zend_string_copy Unexecuted instantiation: hash_adler32.c:zend_string_copy Unexecuted instantiation: hash_crc32.c:zend_string_copy Unexecuted instantiation: hash_fnv.c:zend_string_copy Unexecuted instantiation: hash_gost.c:zend_string_copy Unexecuted instantiation: hash_haval.c:zend_string_copy Unexecuted instantiation: hash_joaat.c:zend_string_copy Unexecuted instantiation: hash_md.c:zend_string_copy Unexecuted instantiation: hash_murmur.c:zend_string_copy Unexecuted instantiation: hash_ripemd.c:zend_string_copy Unexecuted instantiation: hash_sha_ni.c:zend_string_copy Unexecuted instantiation: hash_sha_sse2.c:zend_string_copy Unexecuted instantiation: hash_sha.c:zend_string_copy Unexecuted instantiation: hash_sha3.c:zend_string_copy Unexecuted instantiation: hash_snefru.c:zend_string_copy Unexecuted instantiation: hash_tiger.c:zend_string_copy Unexecuted instantiation: hash_whirlpool.c:zend_string_copy Unexecuted instantiation: hash_xxhash.c:zend_string_copy Unexecuted instantiation: hash.c:zend_string_copy Unexecuted instantiation: json_encoder.c:zend_string_copy Unexecuted instantiation: json_parser.tab.c:zend_string_copy Unexecuted instantiation: json_scanner.c:zend_string_copy Unexecuted instantiation: json.c:zend_string_copy Unexecuted instantiation: php_lexbor.c:zend_string_copy Unexecuted instantiation: shared_alloc_mmap.c:zend_string_copy Unexecuted instantiation: shared_alloc_posix.c:zend_string_copy Unexecuted instantiation: shared_alloc_shm.c:zend_string_copy Unexecuted instantiation: zend_accelerator_api.c:zend_string_copy Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_copy Unexecuted instantiation: zend_accelerator_debug.c:zend_string_copy Unexecuted instantiation: zend_accelerator_hash.c:zend_string_copy Unexecuted instantiation: zend_accelerator_module.c:zend_string_copy zend_accelerator_util_funcs.c:zend_string_copy Line | Count | Source | 223 | 3.93k | { | 224 | 3.93k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 1.37k | GC_ADDREF(s); | 226 | 1.37k | } | 227 | 3.93k | return s; | 228 | 3.93k | } |
Unexecuted instantiation: zend_file_cache.c:zend_string_copy Unexecuted instantiation: zend_persist_calc.c:zend_string_copy Unexecuted instantiation: zend_persist.c:zend_string_copy Unexecuted instantiation: zend_shared_alloc.c:zend_string_copy ZendAccelerator.c:zend_string_copy Line | Count | Source | 223 | 50.2k | { | 224 | 50.2k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 50.2k | GC_ADDREF(s); | 226 | 50.2k | } | 227 | 50.2k | return s; | 228 | 50.2k | } |
Unexecuted instantiation: ir_cfg.c:zend_string_copy Unexecuted instantiation: ir_check.c:zend_string_copy Unexecuted instantiation: ir_dump.c:zend_string_copy Unexecuted instantiation: ir_emit.c:zend_string_copy Unexecuted instantiation: ir_gcm.c:zend_string_copy Unexecuted instantiation: ir_gdb.c:zend_string_copy Unexecuted instantiation: ir_patch.c:zend_string_copy Unexecuted instantiation: ir_perf.c:zend_string_copy Unexecuted instantiation: ir_ra.c:zend_string_copy Unexecuted instantiation: ir_save.c:zend_string_copy Unexecuted instantiation: ir_sccp.c:zend_string_copy Unexecuted instantiation: ir_strtab.c:zend_string_copy Unexecuted instantiation: ir.c:zend_string_copy Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_copy Unexecuted instantiation: zend_jit.c:zend_string_copy Unexecuted instantiation: csprng.c:zend_string_copy Unexecuted instantiation: engine_mt19937.c:zend_string_copy Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_copy Unexecuted instantiation: engine_secure.c:zend_string_copy Unexecuted instantiation: engine_user.c:zend_string_copy Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_copy Unexecuted instantiation: gammasection.c:zend_string_copy Unexecuted instantiation: random.c:zend_string_copy Unexecuted instantiation: randomizer.c:zend_string_copy Unexecuted instantiation: zend_utils.c:zend_string_copy php_reflection.c:zend_string_copy Line | Count | Source | 223 | 3.57k | { | 224 | 3.57k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 277 | GC_ADDREF(s); | 226 | 277 | } | 227 | 3.57k | return s; | 228 | 3.57k | } |
Unexecuted instantiation: php_spl.c:zend_string_copy Unexecuted instantiation: spl_array.c:zend_string_copy Unexecuted instantiation: spl_directory.c:zend_string_copy Unexecuted instantiation: spl_dllist.c:zend_string_copy Unexecuted instantiation: spl_exceptions.c:zend_string_copy Unexecuted instantiation: spl_fixedarray.c:zend_string_copy Unexecuted instantiation: spl_functions.c:zend_string_copy Unexecuted instantiation: spl_heap.c:zend_string_copy Unexecuted instantiation: spl_iterators.c:zend_string_copy Unexecuted instantiation: spl_observer.c:zend_string_copy Unexecuted instantiation: array.c:zend_string_copy Unexecuted instantiation: assert.c:zend_string_copy Unexecuted instantiation: base64.c:zend_string_copy basic_functions.c:zend_string_copy Line | Count | Source | 223 | 22 | { | 224 | 22 | if (!ZSTR_IS_INTERNED(s)) { | 225 | 22 | GC_ADDREF(s); | 226 | 22 | } | 227 | 22 | return s; | 228 | 22 | } |
Unexecuted instantiation: browscap.c:zend_string_copy Unexecuted instantiation: crc32_x86.c:zend_string_copy Unexecuted instantiation: crc32.c:zend_string_copy Unexecuted instantiation: credits.c:zend_string_copy Unexecuted instantiation: crypt.c:zend_string_copy Unexecuted instantiation: css.c:zend_string_copy Unexecuted instantiation: datetime.c:zend_string_copy Unexecuted instantiation: dir.c:zend_string_copy Unexecuted instantiation: dl.c:zend_string_copy Unexecuted instantiation: dns.c:zend_string_copy Unexecuted instantiation: exec.c:zend_string_copy Unexecuted instantiation: file.c:zend_string_copy Unexecuted instantiation: filestat.c:zend_string_copy Unexecuted instantiation: filters.c:zend_string_copy Unexecuted instantiation: flock_compat.c:zend_string_copy Unexecuted instantiation: formatted_print.c:zend_string_copy Unexecuted instantiation: fsock.c:zend_string_copy Unexecuted instantiation: ftok.c:zend_string_copy Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_copy Unexecuted instantiation: head.c:zend_string_copy Unexecuted instantiation: hrtime.c:zend_string_copy Line | Count | Source | 223 | 205 | { | 224 | 205 | if (!ZSTR_IS_INTERNED(s)) { | 225 | 205 | GC_ADDREF(s); | 226 | 205 | } | 227 | 205 | return s; | 228 | 205 | } |
Unexecuted instantiation: http_fopen_wrapper.c:zend_string_copy Unexecuted instantiation: http.c:zend_string_copy Unexecuted instantiation: image.c:zend_string_copy incomplete_class.c:zend_string_copy Line | Count | Source | 223 | 36 | { | 224 | 36 | if (!ZSTR_IS_INTERNED(s)) { | 225 | 0 | GC_ADDREF(s); | 226 | 0 | } | 227 | 36 | return s; | 228 | 36 | } |
Unexecuted instantiation: info.c:zend_string_copy Unexecuted instantiation: iptc.c:zend_string_copy Unexecuted instantiation: levenshtein.c:zend_string_copy Unexecuted instantiation: link.c:zend_string_copy Unexecuted instantiation: mail.c:zend_string_copy Unexecuted instantiation: math.c:zend_string_copy Unexecuted instantiation: md5.c:zend_string_copy Unexecuted instantiation: metaphone.c:zend_string_copy Unexecuted instantiation: microtime.c:zend_string_copy Unexecuted instantiation: net.c:zend_string_copy Unexecuted instantiation: pack.c:zend_string_copy Unexecuted instantiation: pageinfo.c:zend_string_copy Unexecuted instantiation: password.c:zend_string_copy Unexecuted instantiation: php_fopen_wrapper.c:zend_string_copy Unexecuted instantiation: proc_open.c:zend_string_copy Unexecuted instantiation: quot_print.c:zend_string_copy Unexecuted instantiation: scanf.c:zend_string_copy Unexecuted instantiation: sha1.c:zend_string_copy Unexecuted instantiation: soundex.c:zend_string_copy Unexecuted instantiation: streamsfuncs.c:zend_string_copy string.c:zend_string_copy Line | Count | Source | 223 | 1.89k | { | 224 | 1.89k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 1.54k | GC_ADDREF(s); | 226 | 1.54k | } | 227 | 1.89k | return s; | 228 | 1.89k | } |
Unexecuted instantiation: strnatcmp.c:zend_string_copy Unexecuted instantiation: syslog.c:zend_string_copy Unexecuted instantiation: type.c:zend_string_copy Unexecuted instantiation: uniqid.c:zend_string_copy Unexecuted instantiation: url_scanner_ex.c:zend_string_copy Unexecuted instantiation: url.c:zend_string_copy user_filters.c:zend_string_copy Line | Count | Source | 223 | 418 | { | 224 | 418 | if (!ZSTR_IS_INTERNED(s)) { | 225 | 3 | GC_ADDREF(s); | 226 | 3 | } | 227 | 418 | return s; | 228 | 418 | } |
Unexecuted instantiation: uuencode.c:zend_string_copy Unexecuted instantiation: var_unserializer.c:zend_string_copy Line | Count | Source | 223 | 440 | { | 224 | 440 | if (!ZSTR_IS_INTERNED(s)) { | 225 | 4 | GC_ADDREF(s); | 226 | 4 | } | 227 | 440 | return s; | 228 | 440 | } |
Unexecuted instantiation: versioning.c:zend_string_copy Unexecuted instantiation: crypt_sha256.c:zend_string_copy Unexecuted instantiation: crypt_sha512.c:zend_string_copy Unexecuted instantiation: php_crypt_r.c:zend_string_copy Unexecuted instantiation: php_uri.c:zend_string_copy Unexecuted instantiation: php_uri_common.c:zend_string_copy Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_copy Unexecuted instantiation: uri_parser_whatwg.c:zend_string_copy Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_copy Unexecuted instantiation: explicit_bzero.c:zend_string_copy Unexecuted instantiation: fopen_wrappers.c:zend_string_copy Unexecuted instantiation: getopt.c:zend_string_copy Line | Count | Source | 223 | 5.18M | { | 224 | 5.18M | if (!ZSTR_IS_INTERNED(s)) { | 225 | 2.93M | GC_ADDREF(s); | 226 | 2.93M | } | 227 | 5.18M | return s; | 228 | 5.18M | } |
Unexecuted instantiation: network.c:zend_string_copy output.c:zend_string_copy Line | Count | Source | 223 | 1.86k | { | 224 | 1.86k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 1.81k | GC_ADDREF(s); | 226 | 1.81k | } | 227 | 1.86k | return s; | 228 | 1.86k | } |
Unexecuted instantiation: php_content_types.c:zend_string_copy Unexecuted instantiation: php_ini_builder.c:zend_string_copy Unexecuted instantiation: php_ini.c:zend_string_copy Unexecuted instantiation: php_glob.c:zend_string_copy Unexecuted instantiation: php_odbc_utils.c:zend_string_copy Unexecuted instantiation: php_open_temporary_file.c:zend_string_copy Unexecuted instantiation: php_scandir.c:zend_string_copy Unexecuted instantiation: php_syslog.c:zend_string_copy Unexecuted instantiation: php_ticks.c:zend_string_copy Unexecuted instantiation: php_variables.c:zend_string_copy Unexecuted instantiation: reentrancy.c:zend_string_copy Unexecuted instantiation: rfc1867.c:zend_string_copy Unexecuted instantiation: safe_bcmp.c:zend_string_copy Unexecuted instantiation: SAPI.c:zend_string_copy Unexecuted instantiation: snprintf.c:zend_string_copy Unexecuted instantiation: spprintf.c:zend_string_copy Unexecuted instantiation: strlcat.c:zend_string_copy Unexecuted instantiation: strlcpy.c:zend_string_copy Unexecuted instantiation: cast.c:zend_string_copy Unexecuted instantiation: filter.c:zend_string_copy Unexecuted instantiation: glob_wrapper.c:zend_string_copy memory.c:zend_string_copy Line | Count | Source | 223 | 42 | { | 224 | 42 | if (!ZSTR_IS_INTERNED(s)) { | 225 | 42 | GC_ADDREF(s); | 226 | 42 | } | 227 | 42 | return s; | 228 | 42 | } |
Unexecuted instantiation: mmap.c:zend_string_copy Unexecuted instantiation: plain_wrapper.c:zend_string_copy Unexecuted instantiation: stream_errors.c:zend_string_copy Unexecuted instantiation: streams.c:zend_string_copy Unexecuted instantiation: transports.c:zend_string_copy Unexecuted instantiation: userspace.c:zend_string_copy Unexecuted instantiation: xp_socket.c:zend_string_copy Unexecuted instantiation: block_pass.c:zend_string_copy compact_literals.c:zend_string_copy Line | Count | Source | 223 | 589k | { | 224 | 589k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 93.7k | GC_ADDREF(s); | 226 | 93.7k | } | 227 | 589k | return s; | 228 | 589k | } |
Unexecuted instantiation: compact_vars.c:zend_string_copy Unexecuted instantiation: dce.c:zend_string_copy Unexecuted instantiation: dfa_pass.c:zend_string_copy Unexecuted instantiation: escape_analysis.c:zend_string_copy Unexecuted instantiation: nop_removal.c:zend_string_copy Unexecuted instantiation: optimize_func_calls.c:zend_string_copy Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_copy Unexecuted instantiation: pass1.c:zend_string_copy Unexecuted instantiation: pass3.c:zend_string_copy Unexecuted instantiation: sccp.c:zend_string_copy Unexecuted instantiation: scdf.c:zend_string_copy Unexecuted instantiation: zend_call_graph.c:zend_string_copy Unexecuted instantiation: zend_cfg.c:zend_string_copy Unexecuted instantiation: zend_dfg.c:zend_string_copy Unexecuted instantiation: zend_dump.c:zend_string_copy Unexecuted instantiation: zend_func_info.c:zend_string_copy Unexecuted instantiation: zend_inference.c:zend_string_copy Unexecuted instantiation: zend_optimizer.c:zend_string_copy Unexecuted instantiation: zend_ssa.c:zend_string_copy Unexecuted instantiation: zend_alloc.c:zend_string_copy zend_API.c:zend_string_copy Line | Count | Source | 223 | 44.6k | { | 224 | 44.6k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 14.9k | GC_ADDREF(s); | 226 | 14.9k | } | 227 | 44.6k | return s; | 228 | 44.6k | } |
Unexecuted instantiation: zend_ast.c:zend_string_copy zend_attributes.c:zend_string_copy Line | Count | Source | 223 | 2.52M | { | 224 | 2.52M | if (!ZSTR_IS_INTERNED(s)) { | 225 | 2.52M | GC_ADDREF(s); | 226 | 2.52M | } | 227 | 2.52M | return s; | 228 | 2.52M | } |
Unexecuted instantiation: zend_autoload.c:zend_string_copy zend_builtin_functions.c:zend_string_copy Line | Count | Source | 223 | 49.8k | { | 224 | 49.8k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 46 | GC_ADDREF(s); | 226 | 46 | } | 227 | 49.8k | return s; | 228 | 49.8k | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_copy Unexecuted instantiation: zend_closures.c:zend_string_copy zend_compile.c:zend_string_copy Line | Count | Source | 223 | 5.82M | { | 224 | 5.82M | if (!ZSTR_IS_INTERNED(s)) { | 225 | 1.99M | GC_ADDREF(s); | 226 | 1.99M | } | 227 | 5.82M | return s; | 228 | 5.82M | } |
zend_constants.c:zend_string_copy Line | Count | Source | 223 | 2.61k | { | 224 | 2.61k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 251 | GC_ADDREF(s); | 226 | 251 | } | 227 | 2.61k | return s; | 228 | 2.61k | } |
Unexecuted instantiation: zend_cpuinfo.c:zend_string_copy Unexecuted instantiation: zend_default_classes.c:zend_string_copy Unexecuted instantiation: zend_dtrace.c:zend_string_copy zend_enum.c:zend_string_copy Line | Count | Source | 223 | 12.3k | { | 224 | 12.3k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 0 | GC_ADDREF(s); | 226 | 0 | } | 227 | 12.3k | return s; | 228 | 12.3k | } |
zend_exceptions.c:zend_string_copy Line | Count | Source | 223 | 85.7k | { | 224 | 85.7k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 83.1k | GC_ADDREF(s); | 226 | 83.1k | } | 227 | 85.7k | return s; | 228 | 85.7k | } |
zend_execute_API.c:zend_string_copy Line | Count | Source | 223 | 98.3k | { | 224 | 98.3k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 92.1k | GC_ADDREF(s); | 226 | 92.1k | } | 227 | 98.3k | return s; | 228 | 98.3k | } |
zend_execute.c:zend_string_copy Line | Count | Source | 223 | 201k | { | 224 | 201k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 188k | GC_ADDREF(s); | 226 | 188k | } | 227 | 201k | return s; | 228 | 201k | } |
Unexecuted instantiation: zend_extensions.c:zend_string_copy Unexecuted instantiation: zend_fibers.c:zend_string_copy Unexecuted instantiation: zend_float.c:zend_string_copy Unexecuted instantiation: zend_gc.c:zend_string_copy Unexecuted instantiation: zend_gdb.c:zend_string_copy Unexecuted instantiation: zend_generators.c:zend_string_copy Unexecuted instantiation: zend_hash.c:zend_string_copy Unexecuted instantiation: zend_highlight.c:zend_string_copy Unexecuted instantiation: zend_hrtime.c:zend_string_copy zend_inheritance.c:zend_string_copy Line | Count | Source | 223 | 34 | { | 224 | 34 | if (!ZSTR_IS_INTERNED(s)) { | 225 | 6 | GC_ADDREF(s); | 226 | 6 | } | 227 | 34 | return s; | 228 | 34 | } |
Unexecuted instantiation: zend_ini_parser.c:zend_string_copy Unexecuted instantiation: zend_ini_scanner.c:zend_string_copy zend_ini.c:zend_string_copy Line | Count | Source | 223 | 58.8k | { | 224 | 58.8k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 58.4k | GC_ADDREF(s); | 226 | 58.4k | } | 227 | 58.8k | return s; | 228 | 58.8k | } |
Unexecuted instantiation: zend_interfaces.c:zend_string_copy Unexecuted instantiation: zend_iterators.c:zend_string_copy Unexecuted instantiation: zend_language_parser.c:zend_string_copy zend_language_scanner.c:zend_string_copy Line | Count | Source | 223 | 108k | { | 224 | 108k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 108k | GC_ADDREF(s); | 226 | 108k | } | 227 | 108k | return s; | 228 | 108k | } |
Unexecuted instantiation: zend_lazy_objects.c:zend_string_copy Unexecuted instantiation: zend_list.c:zend_string_copy Unexecuted instantiation: zend_llist.c:zend_string_copy Unexecuted instantiation: zend_multibyte.c:zend_string_copy zend_object_handlers.c:zend_string_copy Line | Count | Source | 223 | 24.4k | { | 224 | 24.4k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 3.08k | GC_ADDREF(s); | 226 | 3.08k | } | 227 | 24.4k | return s; | 228 | 24.4k | } |
Unexecuted instantiation: zend_objects_API.c:zend_string_copy Unexecuted instantiation: zend_objects.c:zend_string_copy Unexecuted instantiation: zend_observer.c:zend_string_copy zend_opcode.c:zend_string_copy Line | Count | Source | 223 | 1.93M | { | 224 | 1.93M | if (!ZSTR_IS_INTERNED(s)) { | 225 | 1.93M | GC_ADDREF(s); | 226 | 1.93M | } | 227 | 1.93M | return s; | 228 | 1.93M | } |
zend_operators.c:zend_string_copy Line | Count | Source | 223 | 2.79M | { | 224 | 2.79M | if (!ZSTR_IS_INTERNED(s)) { | 225 | 2.44M | GC_ADDREF(s); | 226 | 2.44M | } | 227 | 2.79M | return s; | 228 | 2.79M | } |
Unexecuted instantiation: zend_property_hooks.c:zend_string_copy Unexecuted instantiation: zend_ptr_stack.c:zend_string_copy Unexecuted instantiation: zend_signal.c:zend_string_copy Unexecuted instantiation: zend_smart_str.c:zend_string_copy Unexecuted instantiation: zend_sort.c:zend_string_copy Unexecuted instantiation: zend_stack.c:zend_string_copy zend_stream.c:zend_string_copy Line | Count | Source | 223 | 147k | { | 224 | 147k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 51.7k | GC_ADDREF(s); | 226 | 51.7k | } | 227 | 147k | return s; | 228 | 147k | } |
Unexecuted instantiation: zend_string.c:zend_string_copy Unexecuted instantiation: zend_strtod.c:zend_string_copy Unexecuted instantiation: zend_system_id.c:zend_string_copy Unexecuted instantiation: zend_variables.c:zend_string_copy Unexecuted instantiation: zend_virtual_cwd.c:zend_string_copy Unexecuted instantiation: zend_vm_opcodes.c:zend_string_copy Unexecuted instantiation: zend_weakrefs.c:zend_string_copy Line | Count | Source | 223 | 404k | { | 224 | 404k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 403k | GC_ADDREF(s); | 226 | 403k | } | 227 | 404k | return s; | 228 | 404k | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_copy Unexecuted instantiation: fuzzer-parser.c:zend_string_copy Unexecuted instantiation: fuzzer-sapi.c:zend_string_copy Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_copy Unexecuted instantiation: fuzzer-exif.c:zend_string_copy Unexecuted instantiation: fuzzer-unserialize.c:zend_string_copy Unexecuted instantiation: fuzzer-function-jit.c:zend_string_copy Unexecuted instantiation: fuzzer-json.c:zend_string_copy Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_copy Unexecuted instantiation: fuzzer-execute.c:zend_string_copy |
229 | | |
230 | | static zend_always_inline zend_string *zend_string_dup(zend_string *s, bool persistent) |
231 | 364 | { |
232 | 364 | if (ZSTR_IS_INTERNED(s)) { |
233 | 21 | return s; |
234 | 343 | } else { |
235 | 343 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); |
236 | 343 | } |
237 | 364 | } Unexecuted instantiation: php_date.c:zend_string_dup Unexecuted instantiation: astro.c:zend_string_dup Unexecuted instantiation: dow.c:zend_string_dup Unexecuted instantiation: parse_date.c:zend_string_dup Unexecuted instantiation: parse_tz.c:zend_string_dup Unexecuted instantiation: parse_posix.c:zend_string_dup Unexecuted instantiation: timelib.c:zend_string_dup Unexecuted instantiation: tm2unixtime.c:zend_string_dup Unexecuted instantiation: unixtime2tm.c:zend_string_dup Unexecuted instantiation: parse_iso_intervals.c:zend_string_dup Unexecuted instantiation: interval.c:zend_string_dup Unexecuted instantiation: php_pcre.c:zend_string_dup Unexecuted instantiation: exif.c:zend_string_dup Unexecuted instantiation: hash_adler32.c:zend_string_dup Unexecuted instantiation: hash_crc32.c:zend_string_dup Unexecuted instantiation: hash_fnv.c:zend_string_dup Unexecuted instantiation: hash_gost.c:zend_string_dup Unexecuted instantiation: hash_haval.c:zend_string_dup Unexecuted instantiation: hash_joaat.c:zend_string_dup Unexecuted instantiation: hash_md.c:zend_string_dup Unexecuted instantiation: hash_murmur.c:zend_string_dup Unexecuted instantiation: hash_ripemd.c:zend_string_dup Unexecuted instantiation: hash_sha_ni.c:zend_string_dup Unexecuted instantiation: hash_sha_sse2.c:zend_string_dup Unexecuted instantiation: hash_sha.c:zend_string_dup Unexecuted instantiation: hash_sha3.c:zend_string_dup Unexecuted instantiation: hash_snefru.c:zend_string_dup Unexecuted instantiation: hash_tiger.c:zend_string_dup Unexecuted instantiation: hash_whirlpool.c:zend_string_dup Unexecuted instantiation: hash_xxhash.c:zend_string_dup Unexecuted instantiation: hash.c:zend_string_dup Unexecuted instantiation: json_encoder.c:zend_string_dup Unexecuted instantiation: json_parser.tab.c:zend_string_dup Unexecuted instantiation: json_scanner.c:zend_string_dup Unexecuted instantiation: json.c:zend_string_dup Unexecuted instantiation: php_lexbor.c:zend_string_dup Unexecuted instantiation: shared_alloc_mmap.c:zend_string_dup Unexecuted instantiation: shared_alloc_posix.c:zend_string_dup Unexecuted instantiation: shared_alloc_shm.c:zend_string_dup Unexecuted instantiation: zend_accelerator_api.c:zend_string_dup Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_dup Unexecuted instantiation: zend_accelerator_debug.c:zend_string_dup Unexecuted instantiation: zend_accelerator_hash.c:zend_string_dup zend_accelerator_module.c:zend_string_dup Line | Count | Source | 231 | 21 | { | 232 | 21 | if (ZSTR_IS_INTERNED(s)) { | 233 | 21 | return s; | 234 | 21 | } else { | 235 | 0 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); | 236 | 0 | } | 237 | 21 | } |
Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_dup Unexecuted instantiation: zend_file_cache.c:zend_string_dup Unexecuted instantiation: zend_persist_calc.c:zend_string_dup Unexecuted instantiation: zend_persist.c:zend_string_dup Unexecuted instantiation: zend_shared_alloc.c:zend_string_dup Unexecuted instantiation: ZendAccelerator.c:zend_string_dup Unexecuted instantiation: ir_cfg.c:zend_string_dup Unexecuted instantiation: ir_check.c:zend_string_dup Unexecuted instantiation: ir_dump.c:zend_string_dup Unexecuted instantiation: ir_emit.c:zend_string_dup Unexecuted instantiation: ir_gcm.c:zend_string_dup Unexecuted instantiation: ir_gdb.c:zend_string_dup Unexecuted instantiation: ir_patch.c:zend_string_dup Unexecuted instantiation: ir_perf.c:zend_string_dup Unexecuted instantiation: ir_ra.c:zend_string_dup Unexecuted instantiation: ir_save.c:zend_string_dup Unexecuted instantiation: ir_sccp.c:zend_string_dup Unexecuted instantiation: ir_strtab.c:zend_string_dup Unexecuted instantiation: ir.c:zend_string_dup Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_dup Unexecuted instantiation: zend_jit.c:zend_string_dup Unexecuted instantiation: csprng.c:zend_string_dup Unexecuted instantiation: engine_mt19937.c:zend_string_dup Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_dup Unexecuted instantiation: engine_secure.c:zend_string_dup Unexecuted instantiation: engine_user.c:zend_string_dup Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_dup Unexecuted instantiation: gammasection.c:zend_string_dup Unexecuted instantiation: random.c:zend_string_dup Unexecuted instantiation: randomizer.c:zend_string_dup Unexecuted instantiation: zend_utils.c:zend_string_dup Unexecuted instantiation: php_reflection.c:zend_string_dup Unexecuted instantiation: php_spl.c:zend_string_dup Unexecuted instantiation: spl_array.c:zend_string_dup Unexecuted instantiation: spl_directory.c:zend_string_dup Unexecuted instantiation: spl_dllist.c:zend_string_dup Unexecuted instantiation: spl_exceptions.c:zend_string_dup Unexecuted instantiation: spl_fixedarray.c:zend_string_dup Unexecuted instantiation: spl_functions.c:zend_string_dup Unexecuted instantiation: spl_heap.c:zend_string_dup Unexecuted instantiation: spl_iterators.c:zend_string_dup Unexecuted instantiation: spl_observer.c:zend_string_dup Unexecuted instantiation: array.c:zend_string_dup Unexecuted instantiation: assert.c:zend_string_dup Unexecuted instantiation: base64.c:zend_string_dup Unexecuted instantiation: basic_functions.c:zend_string_dup Unexecuted instantiation: browscap.c:zend_string_dup Unexecuted instantiation: crc32_x86.c:zend_string_dup Unexecuted instantiation: crc32.c:zend_string_dup Unexecuted instantiation: credits.c:zend_string_dup Unexecuted instantiation: crypt.c:zend_string_dup Unexecuted instantiation: css.c:zend_string_dup Unexecuted instantiation: datetime.c:zend_string_dup Unexecuted instantiation: dir.c:zend_string_dup Unexecuted instantiation: dl.c:zend_string_dup Unexecuted instantiation: dns.c:zend_string_dup Unexecuted instantiation: exec.c:zend_string_dup Unexecuted instantiation: file.c:zend_string_dup Unexecuted instantiation: filestat.c:zend_string_dup Unexecuted instantiation: filters.c:zend_string_dup Unexecuted instantiation: flock_compat.c:zend_string_dup Unexecuted instantiation: formatted_print.c:zend_string_dup Unexecuted instantiation: fsock.c:zend_string_dup Unexecuted instantiation: ftok.c:zend_string_dup Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_dup Unexecuted instantiation: head.c:zend_string_dup Unexecuted instantiation: hrtime.c:zend_string_dup Unexecuted instantiation: html.c:zend_string_dup Unexecuted instantiation: http_fopen_wrapper.c:zend_string_dup Unexecuted instantiation: http.c:zend_string_dup Unexecuted instantiation: image.c:zend_string_dup Unexecuted instantiation: incomplete_class.c:zend_string_dup Unexecuted instantiation: info.c:zend_string_dup Unexecuted instantiation: iptc.c:zend_string_dup Unexecuted instantiation: levenshtein.c:zend_string_dup Unexecuted instantiation: link.c:zend_string_dup Unexecuted instantiation: mail.c:zend_string_dup Unexecuted instantiation: math.c:zend_string_dup Unexecuted instantiation: md5.c:zend_string_dup Unexecuted instantiation: metaphone.c:zend_string_dup Unexecuted instantiation: microtime.c:zend_string_dup Unexecuted instantiation: net.c:zend_string_dup Unexecuted instantiation: pack.c:zend_string_dup Unexecuted instantiation: pageinfo.c:zend_string_dup Unexecuted instantiation: password.c:zend_string_dup Unexecuted instantiation: php_fopen_wrapper.c:zend_string_dup Unexecuted instantiation: proc_open.c:zend_string_dup Unexecuted instantiation: quot_print.c:zend_string_dup Unexecuted instantiation: scanf.c:zend_string_dup Unexecuted instantiation: sha1.c:zend_string_dup Unexecuted instantiation: soundex.c:zend_string_dup Unexecuted instantiation: streamsfuncs.c:zend_string_dup Unexecuted instantiation: string.c:zend_string_dup Unexecuted instantiation: strnatcmp.c:zend_string_dup Unexecuted instantiation: syslog.c:zend_string_dup Unexecuted instantiation: type.c:zend_string_dup Unexecuted instantiation: uniqid.c:zend_string_dup Unexecuted instantiation: url_scanner_ex.c:zend_string_dup Unexecuted instantiation: url.c:zend_string_dup Unexecuted instantiation: user_filters.c:zend_string_dup Unexecuted instantiation: uuencode.c:zend_string_dup Unexecuted instantiation: var_unserializer.c:zend_string_dup Unexecuted instantiation: var.c:zend_string_dup Unexecuted instantiation: versioning.c:zend_string_dup Unexecuted instantiation: crypt_sha256.c:zend_string_dup Unexecuted instantiation: crypt_sha512.c:zend_string_dup Unexecuted instantiation: php_crypt_r.c:zend_string_dup Unexecuted instantiation: php_uri.c:zend_string_dup Unexecuted instantiation: php_uri_common.c:zend_string_dup Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_dup Unexecuted instantiation: uri_parser_whatwg.c:zend_string_dup Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_dup Unexecuted instantiation: explicit_bzero.c:zend_string_dup Unexecuted instantiation: fopen_wrappers.c:zend_string_dup Unexecuted instantiation: getopt.c:zend_string_dup Unexecuted instantiation: main.c:zend_string_dup Unexecuted instantiation: network.c:zend_string_dup Unexecuted instantiation: output.c:zend_string_dup Unexecuted instantiation: php_content_types.c:zend_string_dup Unexecuted instantiation: php_ini_builder.c:zend_string_dup php_ini.c:zend_string_dup Line | Count | Source | 231 | 208 | { | 232 | 208 | if (ZSTR_IS_INTERNED(s)) { | 233 | 0 | return s; | 234 | 208 | } else { | 235 | 208 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); | 236 | 208 | } | 237 | 208 | } |
Unexecuted instantiation: php_glob.c:zend_string_dup Unexecuted instantiation: php_odbc_utils.c:zend_string_dup Unexecuted instantiation: php_open_temporary_file.c:zend_string_dup Unexecuted instantiation: php_scandir.c:zend_string_dup Unexecuted instantiation: php_syslog.c:zend_string_dup Unexecuted instantiation: php_ticks.c:zend_string_dup Unexecuted instantiation: php_variables.c:zend_string_dup Unexecuted instantiation: reentrancy.c:zend_string_dup Unexecuted instantiation: rfc1867.c:zend_string_dup Unexecuted instantiation: safe_bcmp.c:zend_string_dup Unexecuted instantiation: SAPI.c:zend_string_dup Unexecuted instantiation: snprintf.c:zend_string_dup Unexecuted instantiation: spprintf.c:zend_string_dup Unexecuted instantiation: strlcat.c:zend_string_dup Unexecuted instantiation: strlcpy.c:zend_string_dup Unexecuted instantiation: cast.c:zend_string_dup Unexecuted instantiation: filter.c:zend_string_dup Unexecuted instantiation: glob_wrapper.c:zend_string_dup Unexecuted instantiation: memory.c:zend_string_dup Unexecuted instantiation: mmap.c:zend_string_dup Unexecuted instantiation: plain_wrapper.c:zend_string_dup Unexecuted instantiation: stream_errors.c:zend_string_dup Unexecuted instantiation: streams.c:zend_string_dup Unexecuted instantiation: transports.c:zend_string_dup Unexecuted instantiation: userspace.c:zend_string_dup Unexecuted instantiation: xp_socket.c:zend_string_dup Unexecuted instantiation: block_pass.c:zend_string_dup Unexecuted instantiation: compact_literals.c:zend_string_dup Unexecuted instantiation: compact_vars.c:zend_string_dup Unexecuted instantiation: dce.c:zend_string_dup Unexecuted instantiation: dfa_pass.c:zend_string_dup Unexecuted instantiation: escape_analysis.c:zend_string_dup Unexecuted instantiation: nop_removal.c:zend_string_dup Unexecuted instantiation: optimize_func_calls.c:zend_string_dup Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_dup Unexecuted instantiation: pass1.c:zend_string_dup Unexecuted instantiation: pass3.c:zend_string_dup Unexecuted instantiation: sccp.c:zend_string_dup Unexecuted instantiation: scdf.c:zend_string_dup Unexecuted instantiation: zend_call_graph.c:zend_string_dup Unexecuted instantiation: zend_cfg.c:zend_string_dup Unexecuted instantiation: zend_dfg.c:zend_string_dup Unexecuted instantiation: zend_dump.c:zend_string_dup Unexecuted instantiation: zend_func_info.c:zend_string_dup Unexecuted instantiation: zend_inference.c:zend_string_dup Unexecuted instantiation: zend_optimizer.c:zend_string_dup Unexecuted instantiation: zend_ssa.c:zend_string_dup Unexecuted instantiation: zend_alloc.c:zend_string_dup Unexecuted instantiation: zend_API.c:zend_string_dup Unexecuted instantiation: zend_ast.c:zend_string_dup Unexecuted instantiation: zend_attributes.c:zend_string_dup Unexecuted instantiation: zend_autoload.c:zend_string_dup Unexecuted instantiation: zend_builtin_functions.c:zend_string_dup Unexecuted instantiation: zend_call_stack.c:zend_string_dup Unexecuted instantiation: zend_closures.c:zend_string_dup Unexecuted instantiation: zend_compile.c:zend_string_dup Unexecuted instantiation: zend_constants.c:zend_string_dup Unexecuted instantiation: zend_cpuinfo.c:zend_string_dup Unexecuted instantiation: zend_default_classes.c:zend_string_dup Unexecuted instantiation: zend_dtrace.c:zend_string_dup Unexecuted instantiation: zend_enum.c:zend_string_dup Unexecuted instantiation: zend_exceptions.c:zend_string_dup Unexecuted instantiation: zend_execute_API.c:zend_string_dup Unexecuted instantiation: zend_execute.c:zend_string_dup Unexecuted instantiation: zend_extensions.c:zend_string_dup Unexecuted instantiation: zend_fibers.c:zend_string_dup Unexecuted instantiation: zend_float.c:zend_string_dup Unexecuted instantiation: zend_gc.c:zend_string_dup Unexecuted instantiation: zend_gdb.c:zend_string_dup Unexecuted instantiation: zend_generators.c:zend_string_dup Unexecuted instantiation: zend_hash.c:zend_string_dup Unexecuted instantiation: zend_highlight.c:zend_string_dup Unexecuted instantiation: zend_hrtime.c:zend_string_dup Unexecuted instantiation: zend_inheritance.c:zend_string_dup Unexecuted instantiation: zend_ini_parser.c:zend_string_dup Unexecuted instantiation: zend_ini_scanner.c:zend_string_dup Unexecuted instantiation: zend_ini.c:zend_string_dup Unexecuted instantiation: zend_interfaces.c:zend_string_dup Unexecuted instantiation: zend_iterators.c:zend_string_dup Unexecuted instantiation: zend_language_parser.c:zend_string_dup Unexecuted instantiation: zend_language_scanner.c:zend_string_dup Unexecuted instantiation: zend_lazy_objects.c:zend_string_dup Unexecuted instantiation: zend_list.c:zend_string_dup Unexecuted instantiation: zend_llist.c:zend_string_dup Unexecuted instantiation: zend_multibyte.c:zend_string_dup Unexecuted instantiation: zend_object_handlers.c:zend_string_dup Unexecuted instantiation: zend_objects_API.c:zend_string_dup Unexecuted instantiation: zend_objects.c:zend_string_dup Unexecuted instantiation: zend_observer.c:zend_string_dup Unexecuted instantiation: zend_opcode.c:zend_string_dup Unexecuted instantiation: zend_operators.c:zend_string_dup Unexecuted instantiation: zend_property_hooks.c:zend_string_dup Unexecuted instantiation: zend_ptr_stack.c:zend_string_dup Unexecuted instantiation: zend_signal.c:zend_string_dup Unexecuted instantiation: zend_smart_str.c:zend_string_dup Unexecuted instantiation: zend_sort.c:zend_string_dup Unexecuted instantiation: zend_stack.c:zend_string_dup Unexecuted instantiation: zend_stream.c:zend_string_dup Unexecuted instantiation: zend_string.c:zend_string_dup Unexecuted instantiation: zend_strtod.c:zend_string_dup Unexecuted instantiation: zend_system_id.c:zend_string_dup zend_variables.c:zend_string_dup Line | Count | Source | 231 | 135 | { | 232 | 135 | if (ZSTR_IS_INTERNED(s)) { | 233 | 0 | return s; | 234 | 135 | } else { | 235 | 135 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); | 236 | 135 | } | 237 | 135 | } |
Unexecuted instantiation: zend_virtual_cwd.c:zend_string_dup Unexecuted instantiation: zend_vm_opcodes.c:zend_string_dup Unexecuted instantiation: zend_weakrefs.c:zend_string_dup Unexecuted instantiation: zend.c:zend_string_dup Unexecuted instantiation: internal_functions_cli.c:zend_string_dup Unexecuted instantiation: fuzzer-parser.c:zend_string_dup Unexecuted instantiation: fuzzer-sapi.c:zend_string_dup Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_dup Unexecuted instantiation: fuzzer-exif.c:zend_string_dup Unexecuted instantiation: fuzzer-unserialize.c:zend_string_dup Unexecuted instantiation: fuzzer-function-jit.c:zend_string_dup Unexecuted instantiation: fuzzer-json.c:zend_string_dup Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_dup Unexecuted instantiation: fuzzer-execute.c:zend_string_dup |
238 | | |
239 | | static zend_always_inline zend_string *zend_string_separate(zend_string *s, bool persistent) |
240 | 0 | { |
241 | 0 | if (ZSTR_IS_INTERNED(s) || GC_REFCOUNT(s) > 1) { |
242 | 0 | if (!ZSTR_IS_INTERNED(s)) { |
243 | 0 | GC_DELREF(s); |
244 | 0 | } |
245 | 0 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); |
246 | 0 | } |
247 | | |
248 | 0 | zend_string_forget_hash_val(s); |
249 | 0 | return s; |
250 | 0 | } Unexecuted instantiation: php_date.c:zend_string_separate Unexecuted instantiation: astro.c:zend_string_separate Unexecuted instantiation: dow.c:zend_string_separate Unexecuted instantiation: parse_date.c:zend_string_separate Unexecuted instantiation: parse_tz.c:zend_string_separate Unexecuted instantiation: parse_posix.c:zend_string_separate Unexecuted instantiation: timelib.c:zend_string_separate Unexecuted instantiation: tm2unixtime.c:zend_string_separate Unexecuted instantiation: unixtime2tm.c:zend_string_separate Unexecuted instantiation: parse_iso_intervals.c:zend_string_separate Unexecuted instantiation: interval.c:zend_string_separate Unexecuted instantiation: php_pcre.c:zend_string_separate Unexecuted instantiation: exif.c:zend_string_separate Unexecuted instantiation: hash_adler32.c:zend_string_separate Unexecuted instantiation: hash_crc32.c:zend_string_separate Unexecuted instantiation: hash_fnv.c:zend_string_separate Unexecuted instantiation: hash_gost.c:zend_string_separate Unexecuted instantiation: hash_haval.c:zend_string_separate Unexecuted instantiation: hash_joaat.c:zend_string_separate Unexecuted instantiation: hash_md.c:zend_string_separate Unexecuted instantiation: hash_murmur.c:zend_string_separate Unexecuted instantiation: hash_ripemd.c:zend_string_separate Unexecuted instantiation: hash_sha_ni.c:zend_string_separate Unexecuted instantiation: hash_sha_sse2.c:zend_string_separate Unexecuted instantiation: hash_sha.c:zend_string_separate Unexecuted instantiation: hash_sha3.c:zend_string_separate Unexecuted instantiation: hash_snefru.c:zend_string_separate Unexecuted instantiation: hash_tiger.c:zend_string_separate Unexecuted instantiation: hash_whirlpool.c:zend_string_separate Unexecuted instantiation: hash_xxhash.c:zend_string_separate Unexecuted instantiation: hash.c:zend_string_separate Unexecuted instantiation: json_encoder.c:zend_string_separate Unexecuted instantiation: json_parser.tab.c:zend_string_separate Unexecuted instantiation: json_scanner.c:zend_string_separate Unexecuted instantiation: json.c:zend_string_separate Unexecuted instantiation: php_lexbor.c:zend_string_separate Unexecuted instantiation: shared_alloc_mmap.c:zend_string_separate Unexecuted instantiation: shared_alloc_posix.c:zend_string_separate Unexecuted instantiation: shared_alloc_shm.c:zend_string_separate Unexecuted instantiation: zend_accelerator_api.c:zend_string_separate Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_separate Unexecuted instantiation: zend_accelerator_debug.c:zend_string_separate Unexecuted instantiation: zend_accelerator_hash.c:zend_string_separate Unexecuted instantiation: zend_accelerator_module.c:zend_string_separate Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_separate Unexecuted instantiation: zend_file_cache.c:zend_string_separate Unexecuted instantiation: zend_persist_calc.c:zend_string_separate Unexecuted instantiation: zend_persist.c:zend_string_separate Unexecuted instantiation: zend_shared_alloc.c:zend_string_separate Unexecuted instantiation: ZendAccelerator.c:zend_string_separate Unexecuted instantiation: ir_cfg.c:zend_string_separate Unexecuted instantiation: ir_check.c:zend_string_separate Unexecuted instantiation: ir_dump.c:zend_string_separate Unexecuted instantiation: ir_emit.c:zend_string_separate Unexecuted instantiation: ir_gcm.c:zend_string_separate Unexecuted instantiation: ir_gdb.c:zend_string_separate Unexecuted instantiation: ir_patch.c:zend_string_separate Unexecuted instantiation: ir_perf.c:zend_string_separate Unexecuted instantiation: ir_ra.c:zend_string_separate Unexecuted instantiation: ir_save.c:zend_string_separate Unexecuted instantiation: ir_sccp.c:zend_string_separate Unexecuted instantiation: ir_strtab.c:zend_string_separate Unexecuted instantiation: ir.c:zend_string_separate Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_separate Unexecuted instantiation: zend_jit.c:zend_string_separate Unexecuted instantiation: csprng.c:zend_string_separate Unexecuted instantiation: engine_mt19937.c:zend_string_separate Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_separate Unexecuted instantiation: engine_secure.c:zend_string_separate Unexecuted instantiation: engine_user.c:zend_string_separate Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_separate Unexecuted instantiation: gammasection.c:zend_string_separate Unexecuted instantiation: random.c:zend_string_separate Unexecuted instantiation: randomizer.c:zend_string_separate Unexecuted instantiation: zend_utils.c:zend_string_separate Unexecuted instantiation: php_reflection.c:zend_string_separate Unexecuted instantiation: php_spl.c:zend_string_separate Unexecuted instantiation: spl_array.c:zend_string_separate Unexecuted instantiation: spl_directory.c:zend_string_separate Unexecuted instantiation: spl_dllist.c:zend_string_separate Unexecuted instantiation: spl_exceptions.c:zend_string_separate Unexecuted instantiation: spl_fixedarray.c:zend_string_separate Unexecuted instantiation: spl_functions.c:zend_string_separate Unexecuted instantiation: spl_heap.c:zend_string_separate Unexecuted instantiation: spl_iterators.c:zend_string_separate Unexecuted instantiation: spl_observer.c:zend_string_separate Unexecuted instantiation: array.c:zend_string_separate Unexecuted instantiation: assert.c:zend_string_separate Unexecuted instantiation: base64.c:zend_string_separate Unexecuted instantiation: basic_functions.c:zend_string_separate Unexecuted instantiation: browscap.c:zend_string_separate Unexecuted instantiation: crc32_x86.c:zend_string_separate Unexecuted instantiation: crc32.c:zend_string_separate Unexecuted instantiation: credits.c:zend_string_separate Unexecuted instantiation: crypt.c:zend_string_separate Unexecuted instantiation: css.c:zend_string_separate Unexecuted instantiation: datetime.c:zend_string_separate Unexecuted instantiation: dir.c:zend_string_separate Unexecuted instantiation: dl.c:zend_string_separate Unexecuted instantiation: dns.c:zend_string_separate Unexecuted instantiation: exec.c:zend_string_separate Unexecuted instantiation: file.c:zend_string_separate Unexecuted instantiation: filestat.c:zend_string_separate Unexecuted instantiation: filters.c:zend_string_separate Unexecuted instantiation: flock_compat.c:zend_string_separate Unexecuted instantiation: formatted_print.c:zend_string_separate Unexecuted instantiation: fsock.c:zend_string_separate Unexecuted instantiation: ftok.c:zend_string_separate Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_separate Unexecuted instantiation: head.c:zend_string_separate Unexecuted instantiation: hrtime.c:zend_string_separate Unexecuted instantiation: html.c:zend_string_separate Unexecuted instantiation: http_fopen_wrapper.c:zend_string_separate Unexecuted instantiation: http.c:zend_string_separate Unexecuted instantiation: image.c:zend_string_separate Unexecuted instantiation: incomplete_class.c:zend_string_separate Unexecuted instantiation: info.c:zend_string_separate Unexecuted instantiation: iptc.c:zend_string_separate Unexecuted instantiation: levenshtein.c:zend_string_separate Unexecuted instantiation: link.c:zend_string_separate Unexecuted instantiation: mail.c:zend_string_separate Unexecuted instantiation: math.c:zend_string_separate Unexecuted instantiation: md5.c:zend_string_separate Unexecuted instantiation: metaphone.c:zend_string_separate Unexecuted instantiation: microtime.c:zend_string_separate Unexecuted instantiation: net.c:zend_string_separate Unexecuted instantiation: pack.c:zend_string_separate Unexecuted instantiation: pageinfo.c:zend_string_separate Unexecuted instantiation: password.c:zend_string_separate Unexecuted instantiation: php_fopen_wrapper.c:zend_string_separate Unexecuted instantiation: proc_open.c:zend_string_separate Unexecuted instantiation: quot_print.c:zend_string_separate Unexecuted instantiation: scanf.c:zend_string_separate Unexecuted instantiation: sha1.c:zend_string_separate Unexecuted instantiation: soundex.c:zend_string_separate Unexecuted instantiation: streamsfuncs.c:zend_string_separate Unexecuted instantiation: string.c:zend_string_separate Unexecuted instantiation: strnatcmp.c:zend_string_separate Unexecuted instantiation: syslog.c:zend_string_separate Unexecuted instantiation: type.c:zend_string_separate Unexecuted instantiation: uniqid.c:zend_string_separate Unexecuted instantiation: url_scanner_ex.c:zend_string_separate Unexecuted instantiation: url.c:zend_string_separate Unexecuted instantiation: user_filters.c:zend_string_separate Unexecuted instantiation: uuencode.c:zend_string_separate Unexecuted instantiation: var_unserializer.c:zend_string_separate Unexecuted instantiation: var.c:zend_string_separate Unexecuted instantiation: versioning.c:zend_string_separate Unexecuted instantiation: crypt_sha256.c:zend_string_separate Unexecuted instantiation: crypt_sha512.c:zend_string_separate Unexecuted instantiation: php_crypt_r.c:zend_string_separate Unexecuted instantiation: php_uri.c:zend_string_separate Unexecuted instantiation: php_uri_common.c:zend_string_separate Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_separate Unexecuted instantiation: uri_parser_whatwg.c:zend_string_separate Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_separate Unexecuted instantiation: explicit_bzero.c:zend_string_separate Unexecuted instantiation: fopen_wrappers.c:zend_string_separate Unexecuted instantiation: getopt.c:zend_string_separate Unexecuted instantiation: main.c:zend_string_separate Unexecuted instantiation: network.c:zend_string_separate Unexecuted instantiation: output.c:zend_string_separate Unexecuted instantiation: php_content_types.c:zend_string_separate Unexecuted instantiation: php_ini_builder.c:zend_string_separate Unexecuted instantiation: php_ini.c:zend_string_separate Unexecuted instantiation: php_glob.c:zend_string_separate Unexecuted instantiation: php_odbc_utils.c:zend_string_separate Unexecuted instantiation: php_open_temporary_file.c:zend_string_separate Unexecuted instantiation: php_scandir.c:zend_string_separate Unexecuted instantiation: php_syslog.c:zend_string_separate Unexecuted instantiation: php_ticks.c:zend_string_separate Unexecuted instantiation: php_variables.c:zend_string_separate Unexecuted instantiation: reentrancy.c:zend_string_separate Unexecuted instantiation: rfc1867.c:zend_string_separate Unexecuted instantiation: safe_bcmp.c:zend_string_separate Unexecuted instantiation: SAPI.c:zend_string_separate Unexecuted instantiation: snprintf.c:zend_string_separate Unexecuted instantiation: spprintf.c:zend_string_separate Unexecuted instantiation: strlcat.c:zend_string_separate Unexecuted instantiation: strlcpy.c:zend_string_separate Unexecuted instantiation: cast.c:zend_string_separate Unexecuted instantiation: filter.c:zend_string_separate Unexecuted instantiation: glob_wrapper.c:zend_string_separate Unexecuted instantiation: memory.c:zend_string_separate Unexecuted instantiation: mmap.c:zend_string_separate Unexecuted instantiation: plain_wrapper.c:zend_string_separate Unexecuted instantiation: stream_errors.c:zend_string_separate Unexecuted instantiation: streams.c:zend_string_separate Unexecuted instantiation: transports.c:zend_string_separate Unexecuted instantiation: userspace.c:zend_string_separate Unexecuted instantiation: xp_socket.c:zend_string_separate Unexecuted instantiation: block_pass.c:zend_string_separate Unexecuted instantiation: compact_literals.c:zend_string_separate Unexecuted instantiation: compact_vars.c:zend_string_separate Unexecuted instantiation: dce.c:zend_string_separate Unexecuted instantiation: dfa_pass.c:zend_string_separate Unexecuted instantiation: escape_analysis.c:zend_string_separate Unexecuted instantiation: nop_removal.c:zend_string_separate Unexecuted instantiation: optimize_func_calls.c:zend_string_separate Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_separate Unexecuted instantiation: pass1.c:zend_string_separate Unexecuted instantiation: pass3.c:zend_string_separate Unexecuted instantiation: sccp.c:zend_string_separate Unexecuted instantiation: scdf.c:zend_string_separate Unexecuted instantiation: zend_call_graph.c:zend_string_separate Unexecuted instantiation: zend_cfg.c:zend_string_separate Unexecuted instantiation: zend_dfg.c:zend_string_separate Unexecuted instantiation: zend_dump.c:zend_string_separate Unexecuted instantiation: zend_func_info.c:zend_string_separate Unexecuted instantiation: zend_inference.c:zend_string_separate Unexecuted instantiation: zend_optimizer.c:zend_string_separate Unexecuted instantiation: zend_ssa.c:zend_string_separate Unexecuted instantiation: zend_alloc.c:zend_string_separate Unexecuted instantiation: zend_API.c:zend_string_separate Unexecuted instantiation: zend_ast.c:zend_string_separate Unexecuted instantiation: zend_attributes.c:zend_string_separate Unexecuted instantiation: zend_autoload.c:zend_string_separate Unexecuted instantiation: zend_builtin_functions.c:zend_string_separate Unexecuted instantiation: zend_call_stack.c:zend_string_separate Unexecuted instantiation: zend_closures.c:zend_string_separate Unexecuted instantiation: zend_compile.c:zend_string_separate Unexecuted instantiation: zend_constants.c:zend_string_separate Unexecuted instantiation: zend_cpuinfo.c:zend_string_separate Unexecuted instantiation: zend_default_classes.c:zend_string_separate Unexecuted instantiation: zend_dtrace.c:zend_string_separate Unexecuted instantiation: zend_enum.c:zend_string_separate Unexecuted instantiation: zend_exceptions.c:zend_string_separate Unexecuted instantiation: zend_execute_API.c:zend_string_separate Unexecuted instantiation: zend_execute.c:zend_string_separate Unexecuted instantiation: zend_extensions.c:zend_string_separate Unexecuted instantiation: zend_fibers.c:zend_string_separate Unexecuted instantiation: zend_float.c:zend_string_separate Unexecuted instantiation: zend_gc.c:zend_string_separate Unexecuted instantiation: zend_gdb.c:zend_string_separate Unexecuted instantiation: zend_generators.c:zend_string_separate Unexecuted instantiation: zend_hash.c:zend_string_separate Unexecuted instantiation: zend_highlight.c:zend_string_separate Unexecuted instantiation: zend_hrtime.c:zend_string_separate Unexecuted instantiation: zend_inheritance.c:zend_string_separate Unexecuted instantiation: zend_ini_parser.c:zend_string_separate Unexecuted instantiation: zend_ini_scanner.c:zend_string_separate Unexecuted instantiation: zend_ini.c:zend_string_separate Unexecuted instantiation: zend_interfaces.c:zend_string_separate Unexecuted instantiation: zend_iterators.c:zend_string_separate Unexecuted instantiation: zend_language_parser.c:zend_string_separate Unexecuted instantiation: zend_language_scanner.c:zend_string_separate Unexecuted instantiation: zend_lazy_objects.c:zend_string_separate Unexecuted instantiation: zend_list.c:zend_string_separate Unexecuted instantiation: zend_llist.c:zend_string_separate Unexecuted instantiation: zend_multibyte.c:zend_string_separate Unexecuted instantiation: zend_object_handlers.c:zend_string_separate Unexecuted instantiation: zend_objects_API.c:zend_string_separate Unexecuted instantiation: zend_objects.c:zend_string_separate Unexecuted instantiation: zend_observer.c:zend_string_separate Unexecuted instantiation: zend_opcode.c:zend_string_separate Unexecuted instantiation: zend_operators.c:zend_string_separate Unexecuted instantiation: zend_property_hooks.c:zend_string_separate Unexecuted instantiation: zend_ptr_stack.c:zend_string_separate Unexecuted instantiation: zend_signal.c:zend_string_separate Unexecuted instantiation: zend_smart_str.c:zend_string_separate Unexecuted instantiation: zend_sort.c:zend_string_separate Unexecuted instantiation: zend_stack.c:zend_string_separate Unexecuted instantiation: zend_stream.c:zend_string_separate Unexecuted instantiation: zend_string.c:zend_string_separate Unexecuted instantiation: zend_strtod.c:zend_string_separate Unexecuted instantiation: zend_system_id.c:zend_string_separate Unexecuted instantiation: zend_variables.c:zend_string_separate Unexecuted instantiation: zend_virtual_cwd.c:zend_string_separate Unexecuted instantiation: zend_vm_opcodes.c:zend_string_separate Unexecuted instantiation: zend_weakrefs.c:zend_string_separate Unexecuted instantiation: zend.c:zend_string_separate Unexecuted instantiation: internal_functions_cli.c:zend_string_separate Unexecuted instantiation: fuzzer-parser.c:zend_string_separate Unexecuted instantiation: fuzzer-sapi.c:zend_string_separate Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_separate Unexecuted instantiation: fuzzer-exif.c:zend_string_separate Unexecuted instantiation: fuzzer-unserialize.c:zend_string_separate Unexecuted instantiation: fuzzer-function-jit.c:zend_string_separate Unexecuted instantiation: fuzzer-json.c:zend_string_separate Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_separate Unexecuted instantiation: fuzzer-execute.c:zend_string_separate |
251 | | |
252 | | static zend_always_inline zend_string *zend_string_realloc(zend_string *s, size_t len, bool persistent) |
253 | 5.25M | { |
254 | 5.25M | zend_string *ret; |
255 | | |
256 | 5.25M | if (!ZSTR_IS_INTERNED(s)) { |
257 | 5.25M | if (EXPECTED(GC_REFCOUNT(s) == 1)) { |
258 | 5.25M | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); |
259 | 5.25M | ZSTR_LEN(ret) = len; |
260 | 5.25M | zend_string_forget_hash_val(ret); |
261 | 5.25M | return ret; |
262 | 5.25M | } |
263 | 5.25M | } |
264 | 1.89k | ret = zend_string_alloc(len, persistent); |
265 | 1.89k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); |
266 | 1.89k | if (!ZSTR_IS_INTERNED(s)) { |
267 | 0 | GC_DELREF(s); |
268 | 0 | } |
269 | 1.89k | return ret; |
270 | 5.25M | } Unexecuted instantiation: php_date.c:zend_string_realloc Unexecuted instantiation: astro.c:zend_string_realloc Unexecuted instantiation: dow.c:zend_string_realloc Unexecuted instantiation: parse_date.c:zend_string_realloc Unexecuted instantiation: parse_tz.c:zend_string_realloc Unexecuted instantiation: parse_posix.c:zend_string_realloc Unexecuted instantiation: timelib.c:zend_string_realloc Unexecuted instantiation: tm2unixtime.c:zend_string_realloc Unexecuted instantiation: unixtime2tm.c:zend_string_realloc Unexecuted instantiation: parse_iso_intervals.c:zend_string_realloc Unexecuted instantiation: interval.c:zend_string_realloc php_pcre.c:zend_string_realloc Line | Count | Source | 253 | 238 | { | 254 | 238 | zend_string *ret; | 255 | | | 256 | 238 | if (!ZSTR_IS_INTERNED(s)) { | 257 | 238 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 258 | 238 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 259 | 238 | ZSTR_LEN(ret) = len; | 260 | 238 | zend_string_forget_hash_val(ret); | 261 | 238 | return ret; | 262 | 238 | } | 263 | 238 | } | 264 | 0 | ret = zend_string_alloc(len, persistent); | 265 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 266 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 267 | 0 | GC_DELREF(s); | 268 | 0 | } | 269 | 0 | return ret; | 270 | 238 | } |
Unexecuted instantiation: exif.c:zend_string_realloc Unexecuted instantiation: hash_adler32.c:zend_string_realloc Unexecuted instantiation: hash_crc32.c:zend_string_realloc Unexecuted instantiation: hash_fnv.c:zend_string_realloc Unexecuted instantiation: hash_gost.c:zend_string_realloc Unexecuted instantiation: hash_haval.c:zend_string_realloc Unexecuted instantiation: hash_joaat.c:zend_string_realloc Unexecuted instantiation: hash_md.c:zend_string_realloc Unexecuted instantiation: hash_murmur.c:zend_string_realloc Unexecuted instantiation: hash_ripemd.c:zend_string_realloc Unexecuted instantiation: hash_sha_ni.c:zend_string_realloc Unexecuted instantiation: hash_sha_sse2.c:zend_string_realloc Unexecuted instantiation: hash_sha.c:zend_string_realloc Unexecuted instantiation: hash_sha3.c:zend_string_realloc Unexecuted instantiation: hash_snefru.c:zend_string_realloc Unexecuted instantiation: hash_tiger.c:zend_string_realloc Unexecuted instantiation: hash_whirlpool.c:zend_string_realloc Unexecuted instantiation: hash_xxhash.c:zend_string_realloc Unexecuted instantiation: hash.c:zend_string_realloc Unexecuted instantiation: json_encoder.c:zend_string_realloc Unexecuted instantiation: json_parser.tab.c:zend_string_realloc Unexecuted instantiation: json_scanner.c:zend_string_realloc json.c:zend_string_realloc Line | Count | Source | 253 | 2.22k | { | 254 | 2.22k | zend_string *ret; | 255 | | | 256 | 2.22k | if (!ZSTR_IS_INTERNED(s)) { | 257 | 2.22k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 258 | 2.22k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 259 | 2.22k | ZSTR_LEN(ret) = len; | 260 | 2.22k | zend_string_forget_hash_val(ret); | 261 | 2.22k | return ret; | 262 | 2.22k | } | 263 | 2.22k | } | 264 | 0 | ret = zend_string_alloc(len, persistent); | 265 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 266 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 267 | 0 | GC_DELREF(s); | 268 | 0 | } | 269 | 0 | return ret; | 270 | 2.22k | } |
Unexecuted instantiation: php_lexbor.c:zend_string_realloc Unexecuted instantiation: shared_alloc_mmap.c:zend_string_realloc Unexecuted instantiation: shared_alloc_posix.c:zend_string_realloc Unexecuted instantiation: shared_alloc_shm.c:zend_string_realloc Unexecuted instantiation: zend_accelerator_api.c:zend_string_realloc Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_realloc Unexecuted instantiation: zend_accelerator_debug.c:zend_string_realloc Unexecuted instantiation: zend_accelerator_hash.c:zend_string_realloc Unexecuted instantiation: zend_accelerator_module.c:zend_string_realloc Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_realloc Unexecuted instantiation: zend_file_cache.c:zend_string_realloc Unexecuted instantiation: zend_persist_calc.c:zend_string_realloc Unexecuted instantiation: zend_persist.c:zend_string_realloc Unexecuted instantiation: zend_shared_alloc.c:zend_string_realloc Unexecuted instantiation: ZendAccelerator.c:zend_string_realloc Unexecuted instantiation: ir_cfg.c:zend_string_realloc Unexecuted instantiation: ir_check.c:zend_string_realloc Unexecuted instantiation: ir_dump.c:zend_string_realloc Unexecuted instantiation: ir_emit.c:zend_string_realloc Unexecuted instantiation: ir_gcm.c:zend_string_realloc Unexecuted instantiation: ir_gdb.c:zend_string_realloc Unexecuted instantiation: ir_patch.c:zend_string_realloc Unexecuted instantiation: ir_perf.c:zend_string_realloc Unexecuted instantiation: ir_ra.c:zend_string_realloc Unexecuted instantiation: ir_save.c:zend_string_realloc Unexecuted instantiation: ir_sccp.c:zend_string_realloc Unexecuted instantiation: ir_strtab.c:zend_string_realloc Unexecuted instantiation: ir.c:zend_string_realloc Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_realloc Unexecuted instantiation: zend_jit.c:zend_string_realloc Unexecuted instantiation: csprng.c:zend_string_realloc Unexecuted instantiation: engine_mt19937.c:zend_string_realloc Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_realloc Unexecuted instantiation: engine_secure.c:zend_string_realloc Unexecuted instantiation: engine_user.c:zend_string_realloc Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_realloc Unexecuted instantiation: gammasection.c:zend_string_realloc Unexecuted instantiation: random.c:zend_string_realloc Unexecuted instantiation: randomizer.c:zend_string_realloc Unexecuted instantiation: zend_utils.c:zend_string_realloc php_reflection.c:zend_string_realloc Line | Count | Source | 253 | 502 | { | 254 | 502 | zend_string *ret; | 255 | | | 256 | 502 | if (!ZSTR_IS_INTERNED(s)) { | 257 | 502 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 258 | 502 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 259 | 502 | ZSTR_LEN(ret) = len; | 260 | 502 | zend_string_forget_hash_val(ret); | 261 | 502 | return ret; | 262 | 502 | } | 263 | 502 | } | 264 | 0 | ret = zend_string_alloc(len, persistent); | 265 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 266 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 267 | 0 | GC_DELREF(s); | 268 | 0 | } | 269 | 0 | return ret; | 270 | 502 | } |
Unexecuted instantiation: php_spl.c:zend_string_realloc Unexecuted instantiation: spl_array.c:zend_string_realloc Unexecuted instantiation: spl_directory.c:zend_string_realloc Unexecuted instantiation: spl_dllist.c:zend_string_realloc Unexecuted instantiation: spl_exceptions.c:zend_string_realloc Unexecuted instantiation: spl_fixedarray.c:zend_string_realloc Unexecuted instantiation: spl_functions.c:zend_string_realloc Unexecuted instantiation: spl_heap.c:zend_string_realloc Unexecuted instantiation: spl_iterators.c:zend_string_realloc Unexecuted instantiation: spl_observer.c:zend_string_realloc Unexecuted instantiation: array.c:zend_string_realloc Unexecuted instantiation: assert.c:zend_string_realloc Unexecuted instantiation: base64.c:zend_string_realloc Unexecuted instantiation: basic_functions.c:zend_string_realloc Unexecuted instantiation: browscap.c:zend_string_realloc Unexecuted instantiation: crc32_x86.c:zend_string_realloc Unexecuted instantiation: crc32.c:zend_string_realloc Unexecuted instantiation: credits.c:zend_string_realloc Unexecuted instantiation: crypt.c:zend_string_realloc Unexecuted instantiation: css.c:zend_string_realloc Unexecuted instantiation: datetime.c:zend_string_realloc Unexecuted instantiation: dir.c:zend_string_realloc Unexecuted instantiation: dl.c:zend_string_realloc Unexecuted instantiation: dns.c:zend_string_realloc Unexecuted instantiation: exec.c:zend_string_realloc Unexecuted instantiation: file.c:zend_string_realloc Unexecuted instantiation: filestat.c:zend_string_realloc Unexecuted instantiation: filters.c:zend_string_realloc Unexecuted instantiation: flock_compat.c:zend_string_realloc Unexecuted instantiation: formatted_print.c:zend_string_realloc Unexecuted instantiation: fsock.c:zend_string_realloc Unexecuted instantiation: ftok.c:zend_string_realloc Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_realloc Unexecuted instantiation: head.c:zend_string_realloc Unexecuted instantiation: hrtime.c:zend_string_realloc Unexecuted instantiation: html.c:zend_string_realloc Unexecuted instantiation: http_fopen_wrapper.c:zend_string_realloc Unexecuted instantiation: http.c:zend_string_realloc Unexecuted instantiation: image.c:zend_string_realloc Unexecuted instantiation: incomplete_class.c:zend_string_realloc Unexecuted instantiation: info.c:zend_string_realloc Unexecuted instantiation: iptc.c:zend_string_realloc Unexecuted instantiation: levenshtein.c:zend_string_realloc Unexecuted instantiation: link.c:zend_string_realloc Unexecuted instantiation: mail.c:zend_string_realloc Unexecuted instantiation: math.c:zend_string_realloc Unexecuted instantiation: md5.c:zend_string_realloc Unexecuted instantiation: metaphone.c:zend_string_realloc Unexecuted instantiation: microtime.c:zend_string_realloc Unexecuted instantiation: net.c:zend_string_realloc Unexecuted instantiation: pack.c:zend_string_realloc Unexecuted instantiation: pageinfo.c:zend_string_realloc Unexecuted instantiation: password.c:zend_string_realloc Unexecuted instantiation: php_fopen_wrapper.c:zend_string_realloc Unexecuted instantiation: proc_open.c:zend_string_realloc Unexecuted instantiation: quot_print.c:zend_string_realloc Unexecuted instantiation: scanf.c:zend_string_realloc Unexecuted instantiation: sha1.c:zend_string_realloc Unexecuted instantiation: soundex.c:zend_string_realloc Unexecuted instantiation: streamsfuncs.c:zend_string_realloc Unexecuted instantiation: string.c:zend_string_realloc Unexecuted instantiation: strnatcmp.c:zend_string_realloc Unexecuted instantiation: syslog.c:zend_string_realloc Unexecuted instantiation: type.c:zend_string_realloc Unexecuted instantiation: uniqid.c:zend_string_realloc Unexecuted instantiation: url_scanner_ex.c:zend_string_realloc Unexecuted instantiation: url.c:zend_string_realloc Unexecuted instantiation: user_filters.c:zend_string_realloc Unexecuted instantiation: uuencode.c:zend_string_realloc Unexecuted instantiation: var_unserializer.c:zend_string_realloc var.c:zend_string_realloc Line | Count | Source | 253 | 1.45k | { | 254 | 1.45k | zend_string *ret; | 255 | | | 256 | 1.45k | if (!ZSTR_IS_INTERNED(s)) { | 257 | 1.45k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 258 | 1.45k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 259 | 1.45k | ZSTR_LEN(ret) = len; | 260 | 1.45k | zend_string_forget_hash_val(ret); | 261 | 1.45k | return ret; | 262 | 1.45k | } | 263 | 1.45k | } | 264 | 0 | ret = zend_string_alloc(len, persistent); | 265 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 266 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 267 | 0 | GC_DELREF(s); | 268 | 0 | } | 269 | 0 | return ret; | 270 | 1.45k | } |
Unexecuted instantiation: versioning.c:zend_string_realloc Unexecuted instantiation: crypt_sha256.c:zend_string_realloc Unexecuted instantiation: crypt_sha512.c:zend_string_realloc Unexecuted instantiation: php_crypt_r.c:zend_string_realloc Unexecuted instantiation: php_uri.c:zend_string_realloc Unexecuted instantiation: php_uri_common.c:zend_string_realloc Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_realloc Unexecuted instantiation: uri_parser_whatwg.c:zend_string_realloc Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_realloc Unexecuted instantiation: explicit_bzero.c:zend_string_realloc fopen_wrappers.c:zend_string_realloc Line | Count | Source | 253 | 20 | { | 254 | 20 | zend_string *ret; | 255 | | | 256 | 20 | if (!ZSTR_IS_INTERNED(s)) { | 257 | 20 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 258 | 20 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 259 | 20 | ZSTR_LEN(ret) = len; | 260 | 20 | zend_string_forget_hash_val(ret); | 261 | 20 | return ret; | 262 | 20 | } | 263 | 20 | } | 264 | 0 | ret = zend_string_alloc(len, persistent); | 265 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 266 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 267 | 0 | GC_DELREF(s); | 268 | 0 | } | 269 | 0 | return ret; | 270 | 20 | } |
Unexecuted instantiation: getopt.c:zend_string_realloc Unexecuted instantiation: main.c:zend_string_realloc Unexecuted instantiation: network.c:zend_string_realloc Unexecuted instantiation: output.c:zend_string_realloc Unexecuted instantiation: php_content_types.c:zend_string_realloc Unexecuted instantiation: php_ini_builder.c:zend_string_realloc Unexecuted instantiation: php_ini.c:zend_string_realloc Unexecuted instantiation: php_glob.c:zend_string_realloc Unexecuted instantiation: php_odbc_utils.c:zend_string_realloc Unexecuted instantiation: php_open_temporary_file.c:zend_string_realloc Unexecuted instantiation: php_scandir.c:zend_string_realloc Unexecuted instantiation: php_syslog.c:zend_string_realloc Unexecuted instantiation: php_ticks.c:zend_string_realloc Unexecuted instantiation: php_variables.c:zend_string_realloc Unexecuted instantiation: reentrancy.c:zend_string_realloc Unexecuted instantiation: rfc1867.c:zend_string_realloc Unexecuted instantiation: safe_bcmp.c:zend_string_realloc Unexecuted instantiation: SAPI.c:zend_string_realloc Unexecuted instantiation: snprintf.c:zend_string_realloc Unexecuted instantiation: spprintf.c:zend_string_realloc Unexecuted instantiation: strlcat.c:zend_string_realloc Unexecuted instantiation: strlcpy.c:zend_string_realloc Unexecuted instantiation: cast.c:zend_string_realloc Unexecuted instantiation: filter.c:zend_string_realloc Unexecuted instantiation: glob_wrapper.c:zend_string_realloc memory.c:zend_string_realloc Line | Count | Source | 253 | 1.89k | { | 254 | 1.89k | zend_string *ret; | 255 | | | 256 | 1.89k | if (!ZSTR_IS_INTERNED(s)) { | 257 | 0 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 258 | 0 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 259 | 0 | ZSTR_LEN(ret) = len; | 260 | 0 | zend_string_forget_hash_val(ret); | 261 | 0 | return ret; | 262 | 0 | } | 263 | 0 | } | 264 | 1.89k | ret = zend_string_alloc(len, persistent); | 265 | 1.89k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 266 | 1.89k | if (!ZSTR_IS_INTERNED(s)) { | 267 | 0 | GC_DELREF(s); | 268 | 0 | } | 269 | 1.89k | return ret; | 270 | 1.89k | } |
Unexecuted instantiation: mmap.c:zend_string_realloc Unexecuted instantiation: plain_wrapper.c:zend_string_realloc Unexecuted instantiation: stream_errors.c:zend_string_realloc Unexecuted instantiation: streams.c:zend_string_realloc Unexecuted instantiation: transports.c:zend_string_realloc Unexecuted instantiation: userspace.c:zend_string_realloc Unexecuted instantiation: xp_socket.c:zend_string_realloc Unexecuted instantiation: block_pass.c:zend_string_realloc Unexecuted instantiation: compact_literals.c:zend_string_realloc Unexecuted instantiation: compact_vars.c:zend_string_realloc Unexecuted instantiation: dce.c:zend_string_realloc Unexecuted instantiation: dfa_pass.c:zend_string_realloc Unexecuted instantiation: escape_analysis.c:zend_string_realloc Unexecuted instantiation: nop_removal.c:zend_string_realloc Unexecuted instantiation: optimize_func_calls.c:zend_string_realloc Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_realloc Unexecuted instantiation: pass1.c:zend_string_realloc Unexecuted instantiation: pass3.c:zend_string_realloc Unexecuted instantiation: sccp.c:zend_string_realloc Unexecuted instantiation: scdf.c:zend_string_realloc Unexecuted instantiation: zend_call_graph.c:zend_string_realloc Unexecuted instantiation: zend_cfg.c:zend_string_realloc Unexecuted instantiation: zend_dfg.c:zend_string_realloc Unexecuted instantiation: zend_dump.c:zend_string_realloc Unexecuted instantiation: zend_func_info.c:zend_string_realloc Unexecuted instantiation: zend_inference.c:zend_string_realloc Unexecuted instantiation: zend_optimizer.c:zend_string_realloc Unexecuted instantiation: zend_ssa.c:zend_string_realloc Unexecuted instantiation: zend_alloc.c:zend_string_realloc Unexecuted instantiation: zend_API.c:zend_string_realloc Unexecuted instantiation: zend_ast.c:zend_string_realloc zend_attributes.c:zend_string_realloc Line | Count | Source | 253 | 220 | { | 254 | 220 | zend_string *ret; | 255 | | | 256 | 220 | if (!ZSTR_IS_INTERNED(s)) { | 257 | 220 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 258 | 220 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 259 | 220 | ZSTR_LEN(ret) = len; | 260 | 220 | zend_string_forget_hash_val(ret); | 261 | 220 | return ret; | 262 | 220 | } | 263 | 220 | } | 264 | 0 | ret = zend_string_alloc(len, persistent); | 265 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 266 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 267 | 0 | GC_DELREF(s); | 268 | 0 | } | 269 | 0 | return ret; | 270 | 220 | } |
Unexecuted instantiation: zend_autoload.c:zend_string_realloc Unexecuted instantiation: zend_builtin_functions.c:zend_string_realloc Unexecuted instantiation: zend_call_stack.c:zend_string_realloc Unexecuted instantiation: zend_closures.c:zend_string_realloc Unexecuted instantiation: zend_compile.c:zend_string_realloc Unexecuted instantiation: zend_constants.c:zend_string_realloc Unexecuted instantiation: zend_cpuinfo.c:zend_string_realloc Unexecuted instantiation: zend_default_classes.c:zend_string_realloc Unexecuted instantiation: zend_dtrace.c:zend_string_realloc Unexecuted instantiation: zend_enum.c:zend_string_realloc Unexecuted instantiation: zend_exceptions.c:zend_string_realloc Unexecuted instantiation: zend_execute_API.c:zend_string_realloc Unexecuted instantiation: zend_execute.c:zend_string_realloc Unexecuted instantiation: zend_extensions.c:zend_string_realloc Unexecuted instantiation: zend_fibers.c:zend_string_realloc Unexecuted instantiation: zend_float.c:zend_string_realloc Unexecuted instantiation: zend_gc.c:zend_string_realloc Unexecuted instantiation: zend_gdb.c:zend_string_realloc Unexecuted instantiation: zend_generators.c:zend_string_realloc Unexecuted instantiation: zend_hash.c:zend_string_realloc Unexecuted instantiation: zend_highlight.c:zend_string_realloc Unexecuted instantiation: zend_hrtime.c:zend_string_realloc Unexecuted instantiation: zend_inheritance.c:zend_string_realloc Unexecuted instantiation: zend_ini_parser.c:zend_string_realloc Unexecuted instantiation: zend_ini_scanner.c:zend_string_realloc Unexecuted instantiation: zend_ini.c:zend_string_realloc Unexecuted instantiation: zend_interfaces.c:zend_string_realloc Unexecuted instantiation: zend_iterators.c:zend_string_realloc Unexecuted instantiation: zend_language_parser.c:zend_string_realloc Unexecuted instantiation: zend_language_scanner.c:zend_string_realloc Unexecuted instantiation: zend_lazy_objects.c:zend_string_realloc Unexecuted instantiation: zend_list.c:zend_string_realloc Unexecuted instantiation: zend_llist.c:zend_string_realloc Unexecuted instantiation: zend_multibyte.c:zend_string_realloc Unexecuted instantiation: zend_object_handlers.c:zend_string_realloc Unexecuted instantiation: zend_objects_API.c:zend_string_realloc Unexecuted instantiation: zend_objects.c:zend_string_realloc Unexecuted instantiation: zend_observer.c:zend_string_realloc Unexecuted instantiation: zend_opcode.c:zend_string_realloc Unexecuted instantiation: zend_operators.c:zend_string_realloc Unexecuted instantiation: zend_property_hooks.c:zend_string_realloc Unexecuted instantiation: zend_ptr_stack.c:zend_string_realloc Unexecuted instantiation: zend_signal.c:zend_string_realloc Unexecuted instantiation: zend_smart_str.c:zend_string_realloc Unexecuted instantiation: zend_sort.c:zend_string_realloc Unexecuted instantiation: zend_stack.c:zend_string_realloc Unexecuted instantiation: zend_stream.c:zend_string_realloc Unexecuted instantiation: zend_string.c:zend_string_realloc Unexecuted instantiation: zend_strtod.c:zend_string_realloc Unexecuted instantiation: zend_system_id.c:zend_string_realloc Unexecuted instantiation: zend_variables.c:zend_string_realloc Unexecuted instantiation: zend_virtual_cwd.c:zend_string_realloc Unexecuted instantiation: zend_vm_opcodes.c:zend_string_realloc Unexecuted instantiation: zend_weakrefs.c:zend_string_realloc zend.c:zend_string_realloc Line | Count | Source | 253 | 5.24M | { | 254 | 5.24M | zend_string *ret; | 255 | | | 256 | 5.24M | if (!ZSTR_IS_INTERNED(s)) { | 257 | 5.24M | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 258 | 5.24M | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 259 | 5.24M | ZSTR_LEN(ret) = len; | 260 | 5.24M | zend_string_forget_hash_val(ret); | 261 | 5.24M | return ret; | 262 | 5.24M | } | 263 | 5.24M | } | 264 | 0 | ret = zend_string_alloc(len, persistent); | 265 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 266 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 267 | 0 | GC_DELREF(s); | 268 | 0 | } | 269 | 0 | return ret; | 270 | 5.24M | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_realloc Unexecuted instantiation: fuzzer-parser.c:zend_string_realloc Unexecuted instantiation: fuzzer-sapi.c:zend_string_realloc Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_realloc Unexecuted instantiation: fuzzer-exif.c:zend_string_realloc Unexecuted instantiation: fuzzer-unserialize.c:zend_string_realloc Unexecuted instantiation: fuzzer-function-jit.c:zend_string_realloc Unexecuted instantiation: fuzzer-json.c:zend_string_realloc Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_realloc Unexecuted instantiation: fuzzer-execute.c:zend_string_realloc |
271 | | |
272 | | static zend_always_inline zend_string *zend_string_extend(zend_string *s, size_t len, bool persistent) |
273 | 2.83M | { |
274 | 2.83M | zend_string *ret; |
275 | | |
276 | 2.83M | ZEND_ASSERT(len >= ZSTR_LEN(s)); |
277 | 2.83M | if (!ZSTR_IS_INTERNED(s)) { |
278 | 2.41M | if (EXPECTED(GC_REFCOUNT(s) == 1)) { |
279 | 2.09M | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); |
280 | 2.09M | ZSTR_LEN(ret) = len; |
281 | 2.09M | zend_string_forget_hash_val(ret); |
282 | 2.09M | return ret; |
283 | 2.09M | } |
284 | 2.41M | } |
285 | 741k | ret = zend_string_alloc(len, persistent); |
286 | 741k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); |
287 | 741k | if (!ZSTR_IS_INTERNED(s)) { |
288 | 318k | GC_DELREF(s); |
289 | 318k | } |
290 | 741k | return ret; |
291 | 2.83M | } Unexecuted instantiation: php_date.c:zend_string_extend Unexecuted instantiation: astro.c:zend_string_extend Unexecuted instantiation: dow.c:zend_string_extend Unexecuted instantiation: parse_date.c:zend_string_extend Unexecuted instantiation: parse_tz.c:zend_string_extend Unexecuted instantiation: parse_posix.c:zend_string_extend Unexecuted instantiation: timelib.c:zend_string_extend Unexecuted instantiation: tm2unixtime.c:zend_string_extend Unexecuted instantiation: unixtime2tm.c:zend_string_extend Unexecuted instantiation: parse_iso_intervals.c:zend_string_extend Unexecuted instantiation: interval.c:zend_string_extend php_pcre.c:zend_string_extend Line | Count | Source | 273 | 147 | { | 274 | 147 | zend_string *ret; | 275 | | | 276 | 147 | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 277 | 147 | if (!ZSTR_IS_INTERNED(s)) { | 278 | 147 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 279 | 147 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 280 | 147 | ZSTR_LEN(ret) = len; | 281 | 147 | zend_string_forget_hash_val(ret); | 282 | 147 | return ret; | 283 | 147 | } | 284 | 147 | } | 285 | 0 | ret = zend_string_alloc(len, persistent); | 286 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 287 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 288 | 0 | GC_DELREF(s); | 289 | 0 | } | 290 | 0 | return ret; | 291 | 147 | } |
Unexecuted instantiation: exif.c:zend_string_extend Unexecuted instantiation: hash_adler32.c:zend_string_extend Unexecuted instantiation: hash_crc32.c:zend_string_extend Unexecuted instantiation: hash_fnv.c:zend_string_extend Unexecuted instantiation: hash_gost.c:zend_string_extend Unexecuted instantiation: hash_haval.c:zend_string_extend Unexecuted instantiation: hash_joaat.c:zend_string_extend Unexecuted instantiation: hash_md.c:zend_string_extend Unexecuted instantiation: hash_murmur.c:zend_string_extend Unexecuted instantiation: hash_ripemd.c:zend_string_extend Unexecuted instantiation: hash_sha_ni.c:zend_string_extend Unexecuted instantiation: hash_sha_sse2.c:zend_string_extend Unexecuted instantiation: hash_sha.c:zend_string_extend Unexecuted instantiation: hash_sha3.c:zend_string_extend Unexecuted instantiation: hash_snefru.c:zend_string_extend Unexecuted instantiation: hash_tiger.c:zend_string_extend Unexecuted instantiation: hash_whirlpool.c:zend_string_extend Unexecuted instantiation: hash_xxhash.c:zend_string_extend Unexecuted instantiation: hash.c:zend_string_extend Unexecuted instantiation: json_encoder.c:zend_string_extend Unexecuted instantiation: json_parser.tab.c:zend_string_extend Unexecuted instantiation: json_scanner.c:zend_string_extend Unexecuted instantiation: json.c:zend_string_extend Unexecuted instantiation: php_lexbor.c:zend_string_extend Unexecuted instantiation: shared_alloc_mmap.c:zend_string_extend Unexecuted instantiation: shared_alloc_posix.c:zend_string_extend Unexecuted instantiation: shared_alloc_shm.c:zend_string_extend Unexecuted instantiation: zend_accelerator_api.c:zend_string_extend Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_extend Unexecuted instantiation: zend_accelerator_debug.c:zend_string_extend Unexecuted instantiation: zend_accelerator_hash.c:zend_string_extend Unexecuted instantiation: zend_accelerator_module.c:zend_string_extend Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_extend Unexecuted instantiation: zend_file_cache.c:zend_string_extend Unexecuted instantiation: zend_persist_calc.c:zend_string_extend Unexecuted instantiation: zend_persist.c:zend_string_extend Unexecuted instantiation: zend_shared_alloc.c:zend_string_extend Unexecuted instantiation: ZendAccelerator.c:zend_string_extend Unexecuted instantiation: ir_cfg.c:zend_string_extend Unexecuted instantiation: ir_check.c:zend_string_extend Unexecuted instantiation: ir_dump.c:zend_string_extend Unexecuted instantiation: ir_emit.c:zend_string_extend Unexecuted instantiation: ir_gcm.c:zend_string_extend Unexecuted instantiation: ir_gdb.c:zend_string_extend Unexecuted instantiation: ir_patch.c:zend_string_extend Unexecuted instantiation: ir_perf.c:zend_string_extend Unexecuted instantiation: ir_ra.c:zend_string_extend Unexecuted instantiation: ir_save.c:zend_string_extend Unexecuted instantiation: ir_sccp.c:zend_string_extend Unexecuted instantiation: ir_strtab.c:zend_string_extend Unexecuted instantiation: ir.c:zend_string_extend Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_extend Unexecuted instantiation: zend_jit.c:zend_string_extend Unexecuted instantiation: csprng.c:zend_string_extend Unexecuted instantiation: engine_mt19937.c:zend_string_extend Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_extend Unexecuted instantiation: engine_secure.c:zend_string_extend Unexecuted instantiation: engine_user.c:zend_string_extend Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_extend Unexecuted instantiation: gammasection.c:zend_string_extend Unexecuted instantiation: random.c:zend_string_extend Unexecuted instantiation: randomizer.c:zend_string_extend Unexecuted instantiation: zend_utils.c:zend_string_extend Unexecuted instantiation: php_reflection.c:zend_string_extend Unexecuted instantiation: php_spl.c:zend_string_extend Unexecuted instantiation: spl_array.c:zend_string_extend Unexecuted instantiation: spl_directory.c:zend_string_extend Unexecuted instantiation: spl_dllist.c:zend_string_extend Unexecuted instantiation: spl_exceptions.c:zend_string_extend Unexecuted instantiation: spl_fixedarray.c:zend_string_extend Unexecuted instantiation: spl_functions.c:zend_string_extend Unexecuted instantiation: spl_heap.c:zend_string_extend Unexecuted instantiation: spl_iterators.c:zend_string_extend Unexecuted instantiation: spl_observer.c:zend_string_extend Unexecuted instantiation: array.c:zend_string_extend Unexecuted instantiation: assert.c:zend_string_extend Unexecuted instantiation: base64.c:zend_string_extend Unexecuted instantiation: basic_functions.c:zend_string_extend Unexecuted instantiation: browscap.c:zend_string_extend Unexecuted instantiation: crc32_x86.c:zend_string_extend Unexecuted instantiation: crc32.c:zend_string_extend Unexecuted instantiation: credits.c:zend_string_extend Unexecuted instantiation: crypt.c:zend_string_extend Unexecuted instantiation: css.c:zend_string_extend Unexecuted instantiation: datetime.c:zend_string_extend Unexecuted instantiation: dir.c:zend_string_extend Unexecuted instantiation: dl.c:zend_string_extend Unexecuted instantiation: dns.c:zend_string_extend Unexecuted instantiation: exec.c:zend_string_extend Unexecuted instantiation: file.c:zend_string_extend Unexecuted instantiation: filestat.c:zend_string_extend Unexecuted instantiation: filters.c:zend_string_extend Unexecuted instantiation: flock_compat.c:zend_string_extend formatted_print.c:zend_string_extend Line | Count | Source | 273 | 90 | { | 274 | 90 | zend_string *ret; | 275 | | | 276 | 90 | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 277 | 90 | if (!ZSTR_IS_INTERNED(s)) { | 278 | 90 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 279 | 90 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 280 | 90 | ZSTR_LEN(ret) = len; | 281 | 90 | zend_string_forget_hash_val(ret); | 282 | 90 | return ret; | 283 | 90 | } | 284 | 90 | } | 285 | 0 | ret = zend_string_alloc(len, persistent); | 286 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 287 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 288 | 0 | GC_DELREF(s); | 289 | 0 | } | 290 | 0 | return ret; | 291 | 90 | } |
Unexecuted instantiation: fsock.c:zend_string_extend Unexecuted instantiation: ftok.c:zend_string_extend Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_extend Unexecuted instantiation: head.c:zend_string_extend Unexecuted instantiation: hrtime.c:zend_string_extend Unexecuted instantiation: html.c:zend_string_extend Unexecuted instantiation: http_fopen_wrapper.c:zend_string_extend Unexecuted instantiation: http.c:zend_string_extend Unexecuted instantiation: image.c:zend_string_extend Unexecuted instantiation: incomplete_class.c:zend_string_extend Unexecuted instantiation: info.c:zend_string_extend Unexecuted instantiation: iptc.c:zend_string_extend Unexecuted instantiation: levenshtein.c:zend_string_extend Unexecuted instantiation: link.c:zend_string_extend Unexecuted instantiation: mail.c:zend_string_extend Unexecuted instantiation: math.c:zend_string_extend Unexecuted instantiation: md5.c:zend_string_extend Unexecuted instantiation: metaphone.c:zend_string_extend Unexecuted instantiation: microtime.c:zend_string_extend Unexecuted instantiation: net.c:zend_string_extend Unexecuted instantiation: pack.c:zend_string_extend Unexecuted instantiation: pageinfo.c:zend_string_extend Unexecuted instantiation: password.c:zend_string_extend Unexecuted instantiation: php_fopen_wrapper.c:zend_string_extend Unexecuted instantiation: proc_open.c:zend_string_extend Unexecuted instantiation: quot_print.c:zend_string_extend Unexecuted instantiation: scanf.c:zend_string_extend Unexecuted instantiation: sha1.c:zend_string_extend Unexecuted instantiation: soundex.c:zend_string_extend Unexecuted instantiation: streamsfuncs.c:zend_string_extend Unexecuted instantiation: string.c:zend_string_extend Unexecuted instantiation: strnatcmp.c:zend_string_extend Unexecuted instantiation: syslog.c:zend_string_extend Unexecuted instantiation: type.c:zend_string_extend Unexecuted instantiation: uniqid.c:zend_string_extend Unexecuted instantiation: url_scanner_ex.c:zend_string_extend Unexecuted instantiation: url.c:zend_string_extend Unexecuted instantiation: user_filters.c:zend_string_extend Unexecuted instantiation: uuencode.c:zend_string_extend Unexecuted instantiation: var_unserializer.c:zend_string_extend Unexecuted instantiation: var.c:zend_string_extend Unexecuted instantiation: versioning.c:zend_string_extend Unexecuted instantiation: crypt_sha256.c:zend_string_extend Unexecuted instantiation: crypt_sha512.c:zend_string_extend Unexecuted instantiation: php_crypt_r.c:zend_string_extend Unexecuted instantiation: php_uri.c:zend_string_extend Unexecuted instantiation: php_uri_common.c:zend_string_extend Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_extend Unexecuted instantiation: uri_parser_whatwg.c:zend_string_extend Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_extend Unexecuted instantiation: explicit_bzero.c:zend_string_extend Unexecuted instantiation: fopen_wrappers.c:zend_string_extend Unexecuted instantiation: getopt.c:zend_string_extend Unexecuted instantiation: main.c:zend_string_extend Unexecuted instantiation: network.c:zend_string_extend Unexecuted instantiation: output.c:zend_string_extend Unexecuted instantiation: php_content_types.c:zend_string_extend Unexecuted instantiation: php_ini_builder.c:zend_string_extend Unexecuted instantiation: php_ini.c:zend_string_extend Unexecuted instantiation: php_glob.c:zend_string_extend Unexecuted instantiation: php_odbc_utils.c:zend_string_extend Unexecuted instantiation: php_open_temporary_file.c:zend_string_extend Unexecuted instantiation: php_scandir.c:zend_string_extend Unexecuted instantiation: php_syslog.c:zend_string_extend Unexecuted instantiation: php_ticks.c:zend_string_extend Unexecuted instantiation: php_variables.c:zend_string_extend Unexecuted instantiation: reentrancy.c:zend_string_extend Unexecuted instantiation: rfc1867.c:zend_string_extend Unexecuted instantiation: safe_bcmp.c:zend_string_extend Unexecuted instantiation: SAPI.c:zend_string_extend Unexecuted instantiation: snprintf.c:zend_string_extend Unexecuted instantiation: spprintf.c:zend_string_extend Unexecuted instantiation: strlcat.c:zend_string_extend Unexecuted instantiation: strlcpy.c:zend_string_extend Unexecuted instantiation: cast.c:zend_string_extend Unexecuted instantiation: filter.c:zend_string_extend Unexecuted instantiation: glob_wrapper.c:zend_string_extend Unexecuted instantiation: memory.c:zend_string_extend Unexecuted instantiation: mmap.c:zend_string_extend Unexecuted instantiation: plain_wrapper.c:zend_string_extend Unexecuted instantiation: stream_errors.c:zend_string_extend Unexecuted instantiation: streams.c:zend_string_extend Unexecuted instantiation: transports.c:zend_string_extend Unexecuted instantiation: userspace.c:zend_string_extend Unexecuted instantiation: xp_socket.c:zend_string_extend block_pass.c:zend_string_extend Line | Count | Source | 273 | 4.07k | { | 274 | 4.07k | zend_string *ret; | 275 | | | 276 | 4.07k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 277 | 4.07k | if (!ZSTR_IS_INTERNED(s)) { | 278 | 4.07k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 279 | 3.91k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 280 | 3.91k | ZSTR_LEN(ret) = len; | 281 | 3.91k | zend_string_forget_hash_val(ret); | 282 | 3.91k | return ret; | 283 | 3.91k | } | 284 | 4.07k | } | 285 | 160 | ret = zend_string_alloc(len, persistent); | 286 | 160 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 287 | 160 | if (!ZSTR_IS_INTERNED(s)) { | 288 | 160 | GC_DELREF(s); | 289 | 160 | } | 290 | 160 | return ret; | 291 | 4.07k | } |
Unexecuted instantiation: compact_literals.c:zend_string_extend Unexecuted instantiation: compact_vars.c:zend_string_extend Unexecuted instantiation: dce.c:zend_string_extend Unexecuted instantiation: dfa_pass.c:zend_string_extend Unexecuted instantiation: escape_analysis.c:zend_string_extend Unexecuted instantiation: nop_removal.c:zend_string_extend Unexecuted instantiation: optimize_func_calls.c:zend_string_extend Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_extend Unexecuted instantiation: pass1.c:zend_string_extend Unexecuted instantiation: pass3.c:zend_string_extend Unexecuted instantiation: sccp.c:zend_string_extend Unexecuted instantiation: scdf.c:zend_string_extend Unexecuted instantiation: zend_call_graph.c:zend_string_extend Unexecuted instantiation: zend_cfg.c:zend_string_extend Unexecuted instantiation: zend_dfg.c:zend_string_extend Unexecuted instantiation: zend_dump.c:zend_string_extend Unexecuted instantiation: zend_func_info.c:zend_string_extend Unexecuted instantiation: zend_inference.c:zend_string_extend Unexecuted instantiation: zend_optimizer.c:zend_string_extend Unexecuted instantiation: zend_ssa.c:zend_string_extend Unexecuted instantiation: zend_alloc.c:zend_string_extend Unexecuted instantiation: zend_API.c:zend_string_extend Unexecuted instantiation: zend_ast.c:zend_string_extend Unexecuted instantiation: zend_attributes.c:zend_string_extend Unexecuted instantiation: zend_autoload.c:zend_string_extend Unexecuted instantiation: zend_builtin_functions.c:zend_string_extend Unexecuted instantiation: zend_call_stack.c:zend_string_extend Unexecuted instantiation: zend_closures.c:zend_string_extend zend_compile.c:zend_string_extend Line | Count | Source | 273 | 363 | { | 274 | 363 | zend_string *ret; | 275 | | | 276 | 363 | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 277 | 363 | if (!ZSTR_IS_INTERNED(s)) { | 278 | 363 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 279 | 363 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 280 | 363 | ZSTR_LEN(ret) = len; | 281 | 363 | zend_string_forget_hash_val(ret); | 282 | 363 | return ret; | 283 | 363 | } | 284 | 363 | } | 285 | 0 | ret = zend_string_alloc(len, persistent); | 286 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 287 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 288 | 0 | GC_DELREF(s); | 289 | 0 | } | 290 | 0 | return ret; | 291 | 363 | } |
Unexecuted instantiation: zend_constants.c:zend_string_extend Unexecuted instantiation: zend_cpuinfo.c:zend_string_extend Unexecuted instantiation: zend_default_classes.c:zend_string_extend Unexecuted instantiation: zend_dtrace.c:zend_string_extend Unexecuted instantiation: zend_enum.c:zend_string_extend Unexecuted instantiation: zend_exceptions.c:zend_string_extend Unexecuted instantiation: zend_execute_API.c:zend_string_extend zend_execute.c:zend_string_extend Line | Count | Source | 273 | 167k | { | 274 | 167k | zend_string *ret; | 275 | | | 276 | 167k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 277 | 167k | if (!ZSTR_IS_INTERNED(s)) { | 278 | 167k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 279 | 167k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 280 | 167k | ZSTR_LEN(ret) = len; | 281 | 167k | zend_string_forget_hash_val(ret); | 282 | 167k | return ret; | 283 | 167k | } | 284 | 167k | } | 285 | 0 | ret = zend_string_alloc(len, persistent); | 286 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 287 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 288 | 0 | GC_DELREF(s); | 289 | 0 | } | 290 | 0 | return ret; | 291 | 167k | } |
Unexecuted instantiation: zend_extensions.c:zend_string_extend Unexecuted instantiation: zend_fibers.c:zend_string_extend Unexecuted instantiation: zend_float.c:zend_string_extend Unexecuted instantiation: zend_gc.c:zend_string_extend Unexecuted instantiation: zend_gdb.c:zend_string_extend Unexecuted instantiation: zend_generators.c:zend_string_extend Unexecuted instantiation: zend_hash.c:zend_string_extend Unexecuted instantiation: zend_highlight.c:zend_string_extend Unexecuted instantiation: zend_hrtime.c:zend_string_extend Unexecuted instantiation: zend_inheritance.c:zend_string_extend zend_ini_parser.c:zend_string_extend Line | Count | Source | 273 | 1.64M | { | 274 | 1.64M | zend_string *ret; | 275 | | | 276 | 1.64M | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 277 | 1.64M | if (!ZSTR_IS_INTERNED(s)) { | 278 | 1.28M | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 279 | 1.28M | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 280 | 1.28M | ZSTR_LEN(ret) = len; | 281 | 1.28M | zend_string_forget_hash_val(ret); | 282 | 1.28M | return ret; | 283 | 1.28M | } | 284 | 1.28M | } | 285 | 366k | ret = zend_string_alloc(len, persistent); | 286 | 366k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 287 | 366k | if (!ZSTR_IS_INTERNED(s)) { | 288 | 0 | GC_DELREF(s); | 289 | 0 | } | 290 | 366k | return ret; | 291 | 1.64M | } |
Unexecuted instantiation: zend_ini_scanner.c:zend_string_extend Unexecuted instantiation: zend_ini.c:zend_string_extend Unexecuted instantiation: zend_interfaces.c:zend_string_extend Unexecuted instantiation: zend_iterators.c:zend_string_extend Unexecuted instantiation: zend_language_parser.c:zend_string_extend zend_language_scanner.c:zend_string_extend Line | Count | Source | 273 | 30.2k | { | 274 | 30.2k | zend_string *ret; | 275 | | | 276 | 30.2k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 277 | 30.2k | if (!ZSTR_IS_INTERNED(s)) { | 278 | 24.1k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 279 | 0 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 280 | 0 | ZSTR_LEN(ret) = len; | 281 | 0 | zend_string_forget_hash_val(ret); | 282 | 0 | return ret; | 283 | 0 | } | 284 | 24.1k | } | 285 | 30.2k | ret = zend_string_alloc(len, persistent); | 286 | 30.2k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 287 | 30.2k | if (!ZSTR_IS_INTERNED(s)) { | 288 | 24.1k | GC_DELREF(s); | 289 | 24.1k | } | 290 | 30.2k | return ret; | 291 | 30.2k | } |
Unexecuted instantiation: zend_lazy_objects.c:zend_string_extend Unexecuted instantiation: zend_list.c:zend_string_extend Unexecuted instantiation: zend_llist.c:zend_string_extend Unexecuted instantiation: zend_multibyte.c:zend_string_extend Unexecuted instantiation: zend_object_handlers.c:zend_string_extend Unexecuted instantiation: zend_objects_API.c:zend_string_extend Unexecuted instantiation: zend_objects.c:zend_string_extend Unexecuted instantiation: zend_observer.c:zend_string_extend Unexecuted instantiation: zend_opcode.c:zend_string_extend zend_operators.c:zend_string_extend Line | Count | Source | 273 | 984k | { | 274 | 984k | zend_string *ret; | 275 | | | 276 | 984k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 277 | 984k | if (!ZSTR_IS_INTERNED(s)) { | 278 | 933k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 279 | 639k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 280 | 639k | ZSTR_LEN(ret) = len; | 281 | 639k | zend_string_forget_hash_val(ret); | 282 | 639k | return ret; | 283 | 639k | } | 284 | 933k | } | 285 | 344k | ret = zend_string_alloc(len, persistent); | 286 | 344k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 287 | 344k | if (!ZSTR_IS_INTERNED(s)) { | 288 | 294k | GC_DELREF(s); | 289 | 294k | } | 290 | 344k | return ret; | 291 | 984k | } |
Unexecuted instantiation: zend_property_hooks.c:zend_string_extend Unexecuted instantiation: zend_ptr_stack.c:zend_string_extend Unexecuted instantiation: zend_signal.c:zend_string_extend Unexecuted instantiation: zend_smart_str.c:zend_string_extend Unexecuted instantiation: zend_sort.c:zend_string_extend Unexecuted instantiation: zend_stack.c:zend_string_extend Unexecuted instantiation: zend_stream.c:zend_string_extend Unexecuted instantiation: zend_string.c:zend_string_extend Unexecuted instantiation: zend_strtod.c:zend_string_extend Unexecuted instantiation: zend_system_id.c:zend_string_extend Unexecuted instantiation: zend_variables.c:zend_string_extend Unexecuted instantiation: zend_virtual_cwd.c:zend_string_extend Unexecuted instantiation: zend_vm_opcodes.c:zend_string_extend Unexecuted instantiation: zend_weakrefs.c:zend_string_extend Unexecuted instantiation: zend.c:zend_string_extend Unexecuted instantiation: internal_functions_cli.c:zend_string_extend Unexecuted instantiation: fuzzer-parser.c:zend_string_extend Unexecuted instantiation: fuzzer-sapi.c:zend_string_extend Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_extend Unexecuted instantiation: fuzzer-exif.c:zend_string_extend Unexecuted instantiation: fuzzer-unserialize.c:zend_string_extend Unexecuted instantiation: fuzzer-function-jit.c:zend_string_extend Unexecuted instantiation: fuzzer-json.c:zend_string_extend Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_extend Unexecuted instantiation: fuzzer-execute.c:zend_string_extend |
292 | | |
293 | | static zend_always_inline zend_string *zend_string_truncate(zend_string *s, size_t len, bool persistent) |
294 | 1.57k | { |
295 | 1.57k | zend_string *ret; |
296 | | |
297 | 1.57k | ZEND_ASSERT(len <= ZSTR_LEN(s)); |
298 | 1.57k | if (!ZSTR_IS_INTERNED(s)) { |
299 | 1.57k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { |
300 | 1.57k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); |
301 | 1.57k | ZSTR_LEN(ret) = len; |
302 | 1.57k | zend_string_forget_hash_val(ret); |
303 | 1.57k | return ret; |
304 | 1.57k | } |
305 | 1.57k | } |
306 | 0 | ret = zend_string_alloc(len, persistent); |
307 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), len + 1); |
308 | 0 | if (!ZSTR_IS_INTERNED(s)) { |
309 | 0 | GC_DELREF(s); |
310 | 0 | } |
311 | 0 | return ret; |
312 | 1.57k | } Unexecuted instantiation: php_date.c:zend_string_truncate Unexecuted instantiation: astro.c:zend_string_truncate Unexecuted instantiation: dow.c:zend_string_truncate Unexecuted instantiation: parse_date.c:zend_string_truncate Unexecuted instantiation: parse_tz.c:zend_string_truncate Unexecuted instantiation: parse_posix.c:zend_string_truncate Unexecuted instantiation: timelib.c:zend_string_truncate Unexecuted instantiation: tm2unixtime.c:zend_string_truncate Unexecuted instantiation: unixtime2tm.c:zend_string_truncate Unexecuted instantiation: parse_iso_intervals.c:zend_string_truncate Unexecuted instantiation: interval.c:zend_string_truncate Unexecuted instantiation: php_pcre.c:zend_string_truncate Unexecuted instantiation: exif.c:zend_string_truncate Unexecuted instantiation: hash_adler32.c:zend_string_truncate Unexecuted instantiation: hash_crc32.c:zend_string_truncate Unexecuted instantiation: hash_fnv.c:zend_string_truncate Unexecuted instantiation: hash_gost.c:zend_string_truncate Unexecuted instantiation: hash_haval.c:zend_string_truncate Unexecuted instantiation: hash_joaat.c:zend_string_truncate Unexecuted instantiation: hash_md.c:zend_string_truncate Unexecuted instantiation: hash_murmur.c:zend_string_truncate Unexecuted instantiation: hash_ripemd.c:zend_string_truncate Unexecuted instantiation: hash_sha_ni.c:zend_string_truncate Unexecuted instantiation: hash_sha_sse2.c:zend_string_truncate Unexecuted instantiation: hash_sha.c:zend_string_truncate Unexecuted instantiation: hash_sha3.c:zend_string_truncate Unexecuted instantiation: hash_snefru.c:zend_string_truncate Unexecuted instantiation: hash_tiger.c:zend_string_truncate Unexecuted instantiation: hash_whirlpool.c:zend_string_truncate Unexecuted instantiation: hash_xxhash.c:zend_string_truncate Unexecuted instantiation: hash.c:zend_string_truncate Unexecuted instantiation: json_encoder.c:zend_string_truncate Unexecuted instantiation: json_parser.tab.c:zend_string_truncate Unexecuted instantiation: json_scanner.c:zend_string_truncate Unexecuted instantiation: json.c:zend_string_truncate Unexecuted instantiation: php_lexbor.c:zend_string_truncate Unexecuted instantiation: shared_alloc_mmap.c:zend_string_truncate Unexecuted instantiation: shared_alloc_posix.c:zend_string_truncate Unexecuted instantiation: shared_alloc_shm.c:zend_string_truncate Unexecuted instantiation: zend_accelerator_api.c:zend_string_truncate Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_truncate Unexecuted instantiation: zend_accelerator_debug.c:zend_string_truncate Unexecuted instantiation: zend_accelerator_hash.c:zend_string_truncate Unexecuted instantiation: zend_accelerator_module.c:zend_string_truncate Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_truncate Unexecuted instantiation: zend_file_cache.c:zend_string_truncate Unexecuted instantiation: zend_persist_calc.c:zend_string_truncate Unexecuted instantiation: zend_persist.c:zend_string_truncate Unexecuted instantiation: zend_shared_alloc.c:zend_string_truncate Unexecuted instantiation: ZendAccelerator.c:zend_string_truncate Unexecuted instantiation: ir_cfg.c:zend_string_truncate Unexecuted instantiation: ir_check.c:zend_string_truncate Unexecuted instantiation: ir_dump.c:zend_string_truncate Unexecuted instantiation: ir_emit.c:zend_string_truncate Unexecuted instantiation: ir_gcm.c:zend_string_truncate Unexecuted instantiation: ir_gdb.c:zend_string_truncate Unexecuted instantiation: ir_patch.c:zend_string_truncate Unexecuted instantiation: ir_perf.c:zend_string_truncate Unexecuted instantiation: ir_ra.c:zend_string_truncate Unexecuted instantiation: ir_save.c:zend_string_truncate Unexecuted instantiation: ir_sccp.c:zend_string_truncate Unexecuted instantiation: ir_strtab.c:zend_string_truncate Unexecuted instantiation: ir.c:zend_string_truncate Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_truncate Unexecuted instantiation: zend_jit.c:zend_string_truncate Unexecuted instantiation: csprng.c:zend_string_truncate Unexecuted instantiation: engine_mt19937.c:zend_string_truncate Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_truncate Unexecuted instantiation: engine_secure.c:zend_string_truncate Unexecuted instantiation: engine_user.c:zend_string_truncate Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_truncate Unexecuted instantiation: gammasection.c:zend_string_truncate Unexecuted instantiation: random.c:zend_string_truncate Unexecuted instantiation: randomizer.c:zend_string_truncate Unexecuted instantiation: zend_utils.c:zend_string_truncate Unexecuted instantiation: php_reflection.c:zend_string_truncate Unexecuted instantiation: php_spl.c:zend_string_truncate Unexecuted instantiation: spl_array.c:zend_string_truncate Unexecuted instantiation: spl_directory.c:zend_string_truncate Unexecuted instantiation: spl_dllist.c:zend_string_truncate Unexecuted instantiation: spl_exceptions.c:zend_string_truncate Unexecuted instantiation: spl_fixedarray.c:zend_string_truncate Unexecuted instantiation: spl_functions.c:zend_string_truncate Unexecuted instantiation: spl_heap.c:zend_string_truncate Unexecuted instantiation: spl_iterators.c:zend_string_truncate Unexecuted instantiation: spl_observer.c:zend_string_truncate Unexecuted instantiation: array.c:zend_string_truncate Unexecuted instantiation: assert.c:zend_string_truncate Unexecuted instantiation: base64.c:zend_string_truncate Unexecuted instantiation: basic_functions.c:zend_string_truncate Unexecuted instantiation: browscap.c:zend_string_truncate Unexecuted instantiation: crc32_x86.c:zend_string_truncate Unexecuted instantiation: crc32.c:zend_string_truncate Unexecuted instantiation: credits.c:zend_string_truncate Unexecuted instantiation: crypt.c:zend_string_truncate Unexecuted instantiation: css.c:zend_string_truncate Unexecuted instantiation: datetime.c:zend_string_truncate Unexecuted instantiation: dir.c:zend_string_truncate Unexecuted instantiation: dl.c:zend_string_truncate Unexecuted instantiation: dns.c:zend_string_truncate Unexecuted instantiation: exec.c:zend_string_truncate Unexecuted instantiation: file.c:zend_string_truncate Unexecuted instantiation: filestat.c:zend_string_truncate Unexecuted instantiation: filters.c:zend_string_truncate Unexecuted instantiation: flock_compat.c:zend_string_truncate Unexecuted instantiation: formatted_print.c:zend_string_truncate Unexecuted instantiation: fsock.c:zend_string_truncate Unexecuted instantiation: ftok.c:zend_string_truncate Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_truncate Unexecuted instantiation: head.c:zend_string_truncate Unexecuted instantiation: hrtime.c:zend_string_truncate Unexecuted instantiation: html.c:zend_string_truncate Unexecuted instantiation: http_fopen_wrapper.c:zend_string_truncate Unexecuted instantiation: http.c:zend_string_truncate Unexecuted instantiation: image.c:zend_string_truncate Unexecuted instantiation: incomplete_class.c:zend_string_truncate Unexecuted instantiation: info.c:zend_string_truncate Unexecuted instantiation: iptc.c:zend_string_truncate Unexecuted instantiation: levenshtein.c:zend_string_truncate Unexecuted instantiation: link.c:zend_string_truncate Unexecuted instantiation: mail.c:zend_string_truncate Unexecuted instantiation: math.c:zend_string_truncate Unexecuted instantiation: md5.c:zend_string_truncate Unexecuted instantiation: metaphone.c:zend_string_truncate Unexecuted instantiation: microtime.c:zend_string_truncate Unexecuted instantiation: net.c:zend_string_truncate Unexecuted instantiation: pack.c:zend_string_truncate Unexecuted instantiation: pageinfo.c:zend_string_truncate Unexecuted instantiation: password.c:zend_string_truncate Unexecuted instantiation: php_fopen_wrapper.c:zend_string_truncate Unexecuted instantiation: proc_open.c:zend_string_truncate quot_print.c:zend_string_truncate Line | Count | Source | 294 | 121 | { | 295 | 121 | zend_string *ret; | 296 | | | 297 | 121 | ZEND_ASSERT(len <= ZSTR_LEN(s)); | 298 | 121 | if (!ZSTR_IS_INTERNED(s)) { | 299 | 121 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 300 | 121 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 301 | 121 | ZSTR_LEN(ret) = len; | 302 | 121 | zend_string_forget_hash_val(ret); | 303 | 121 | return ret; | 304 | 121 | } | 305 | 121 | } | 306 | 0 | ret = zend_string_alloc(len, persistent); | 307 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), len + 1); | 308 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 309 | 0 | GC_DELREF(s); | 310 | 0 | } | 311 | 0 | return ret; | 312 | 121 | } |
Unexecuted instantiation: scanf.c:zend_string_truncate Unexecuted instantiation: sha1.c:zend_string_truncate Unexecuted instantiation: soundex.c:zend_string_truncate Unexecuted instantiation: streamsfuncs.c:zend_string_truncate string.c:zend_string_truncate Line | Count | Source | 294 | 1.45k | { | 295 | 1.45k | zend_string *ret; | 296 | | | 297 | 1.45k | ZEND_ASSERT(len <= ZSTR_LEN(s)); | 298 | 1.45k | if (!ZSTR_IS_INTERNED(s)) { | 299 | 1.45k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 300 | 1.45k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 301 | 1.45k | ZSTR_LEN(ret) = len; | 302 | 1.45k | zend_string_forget_hash_val(ret); | 303 | 1.45k | return ret; | 304 | 1.45k | } | 305 | 1.45k | } | 306 | 0 | ret = zend_string_alloc(len, persistent); | 307 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), len + 1); | 308 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 309 | 0 | GC_DELREF(s); | 310 | 0 | } | 311 | 0 | return ret; | 312 | 1.45k | } |
Unexecuted instantiation: strnatcmp.c:zend_string_truncate Unexecuted instantiation: syslog.c:zend_string_truncate Unexecuted instantiation: type.c:zend_string_truncate Unexecuted instantiation: uniqid.c:zend_string_truncate Unexecuted instantiation: url_scanner_ex.c:zend_string_truncate Unexecuted instantiation: url.c:zend_string_truncate Unexecuted instantiation: user_filters.c:zend_string_truncate Unexecuted instantiation: uuencode.c:zend_string_truncate Unexecuted instantiation: var_unserializer.c:zend_string_truncate Unexecuted instantiation: var.c:zend_string_truncate Unexecuted instantiation: versioning.c:zend_string_truncate Unexecuted instantiation: crypt_sha256.c:zend_string_truncate Unexecuted instantiation: crypt_sha512.c:zend_string_truncate Unexecuted instantiation: php_crypt_r.c:zend_string_truncate Unexecuted instantiation: php_uri.c:zend_string_truncate Unexecuted instantiation: php_uri_common.c:zend_string_truncate Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_truncate Unexecuted instantiation: uri_parser_whatwg.c:zend_string_truncate Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_truncate Unexecuted instantiation: explicit_bzero.c:zend_string_truncate Unexecuted instantiation: fopen_wrappers.c:zend_string_truncate Unexecuted instantiation: getopt.c:zend_string_truncate Unexecuted instantiation: main.c:zend_string_truncate Unexecuted instantiation: network.c:zend_string_truncate Unexecuted instantiation: output.c:zend_string_truncate Unexecuted instantiation: php_content_types.c:zend_string_truncate Unexecuted instantiation: php_ini_builder.c:zend_string_truncate Unexecuted instantiation: php_ini.c:zend_string_truncate Unexecuted instantiation: php_glob.c:zend_string_truncate Unexecuted instantiation: php_odbc_utils.c:zend_string_truncate Unexecuted instantiation: php_open_temporary_file.c:zend_string_truncate Unexecuted instantiation: php_scandir.c:zend_string_truncate Unexecuted instantiation: php_syslog.c:zend_string_truncate Unexecuted instantiation: php_ticks.c:zend_string_truncate Unexecuted instantiation: php_variables.c:zend_string_truncate Unexecuted instantiation: reentrancy.c:zend_string_truncate Unexecuted instantiation: rfc1867.c:zend_string_truncate Unexecuted instantiation: safe_bcmp.c:zend_string_truncate Unexecuted instantiation: SAPI.c:zend_string_truncate Unexecuted instantiation: snprintf.c:zend_string_truncate Unexecuted instantiation: spprintf.c:zend_string_truncate Unexecuted instantiation: strlcat.c:zend_string_truncate Unexecuted instantiation: strlcpy.c:zend_string_truncate Unexecuted instantiation: cast.c:zend_string_truncate Unexecuted instantiation: filter.c:zend_string_truncate Unexecuted instantiation: glob_wrapper.c:zend_string_truncate Unexecuted instantiation: memory.c:zend_string_truncate Unexecuted instantiation: mmap.c:zend_string_truncate Unexecuted instantiation: plain_wrapper.c:zend_string_truncate Unexecuted instantiation: stream_errors.c:zend_string_truncate Unexecuted instantiation: streams.c:zend_string_truncate Unexecuted instantiation: transports.c:zend_string_truncate Unexecuted instantiation: userspace.c:zend_string_truncate Unexecuted instantiation: xp_socket.c:zend_string_truncate Unexecuted instantiation: block_pass.c:zend_string_truncate Unexecuted instantiation: compact_literals.c:zend_string_truncate Unexecuted instantiation: compact_vars.c:zend_string_truncate Unexecuted instantiation: dce.c:zend_string_truncate Unexecuted instantiation: dfa_pass.c:zend_string_truncate Unexecuted instantiation: escape_analysis.c:zend_string_truncate Unexecuted instantiation: nop_removal.c:zend_string_truncate Unexecuted instantiation: optimize_func_calls.c:zend_string_truncate Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_truncate Unexecuted instantiation: pass1.c:zend_string_truncate Unexecuted instantiation: pass3.c:zend_string_truncate Unexecuted instantiation: sccp.c:zend_string_truncate Unexecuted instantiation: scdf.c:zend_string_truncate Unexecuted instantiation: zend_call_graph.c:zend_string_truncate Unexecuted instantiation: zend_cfg.c:zend_string_truncate Unexecuted instantiation: zend_dfg.c:zend_string_truncate Unexecuted instantiation: zend_dump.c:zend_string_truncate Unexecuted instantiation: zend_func_info.c:zend_string_truncate Unexecuted instantiation: zend_inference.c:zend_string_truncate Unexecuted instantiation: zend_optimizer.c:zend_string_truncate Unexecuted instantiation: zend_ssa.c:zend_string_truncate Unexecuted instantiation: zend_alloc.c:zend_string_truncate Unexecuted instantiation: zend_API.c:zend_string_truncate Unexecuted instantiation: zend_ast.c:zend_string_truncate Unexecuted instantiation: zend_attributes.c:zend_string_truncate Unexecuted instantiation: zend_autoload.c:zend_string_truncate Unexecuted instantiation: zend_builtin_functions.c:zend_string_truncate Unexecuted instantiation: zend_call_stack.c:zend_string_truncate Unexecuted instantiation: zend_closures.c:zend_string_truncate Unexecuted instantiation: zend_compile.c:zend_string_truncate Unexecuted instantiation: zend_constants.c:zend_string_truncate Unexecuted instantiation: zend_cpuinfo.c:zend_string_truncate Unexecuted instantiation: zend_default_classes.c:zend_string_truncate Unexecuted instantiation: zend_dtrace.c:zend_string_truncate Unexecuted instantiation: zend_enum.c:zend_string_truncate Unexecuted instantiation: zend_exceptions.c:zend_string_truncate Unexecuted instantiation: zend_execute_API.c:zend_string_truncate Unexecuted instantiation: zend_execute.c:zend_string_truncate Unexecuted instantiation: zend_extensions.c:zend_string_truncate Unexecuted instantiation: zend_fibers.c:zend_string_truncate Unexecuted instantiation: zend_float.c:zend_string_truncate Unexecuted instantiation: zend_gc.c:zend_string_truncate Unexecuted instantiation: zend_gdb.c:zend_string_truncate Unexecuted instantiation: zend_generators.c:zend_string_truncate Unexecuted instantiation: zend_hash.c:zend_string_truncate Unexecuted instantiation: zend_highlight.c:zend_string_truncate Unexecuted instantiation: zend_hrtime.c:zend_string_truncate Unexecuted instantiation: zend_inheritance.c:zend_string_truncate Unexecuted instantiation: zend_ini_parser.c:zend_string_truncate Unexecuted instantiation: zend_ini_scanner.c:zend_string_truncate Unexecuted instantiation: zend_ini.c:zend_string_truncate Unexecuted instantiation: zend_interfaces.c:zend_string_truncate Unexecuted instantiation: zend_iterators.c:zend_string_truncate Unexecuted instantiation: zend_language_parser.c:zend_string_truncate Unexecuted instantiation: zend_language_scanner.c:zend_string_truncate Unexecuted instantiation: zend_lazy_objects.c:zend_string_truncate Unexecuted instantiation: zend_list.c:zend_string_truncate Unexecuted instantiation: zend_llist.c:zend_string_truncate Unexecuted instantiation: zend_multibyte.c:zend_string_truncate Unexecuted instantiation: zend_object_handlers.c:zend_string_truncate Unexecuted instantiation: zend_objects_API.c:zend_string_truncate Unexecuted instantiation: zend_objects.c:zend_string_truncate Unexecuted instantiation: zend_observer.c:zend_string_truncate Unexecuted instantiation: zend_opcode.c:zend_string_truncate Unexecuted instantiation: zend_operators.c:zend_string_truncate Unexecuted instantiation: zend_property_hooks.c:zend_string_truncate Unexecuted instantiation: zend_ptr_stack.c:zend_string_truncate Unexecuted instantiation: zend_signal.c:zend_string_truncate Unexecuted instantiation: zend_smart_str.c:zend_string_truncate Unexecuted instantiation: zend_sort.c:zend_string_truncate Unexecuted instantiation: zend_stack.c:zend_string_truncate Unexecuted instantiation: zend_stream.c:zend_string_truncate Unexecuted instantiation: zend_string.c:zend_string_truncate Unexecuted instantiation: zend_strtod.c:zend_string_truncate Unexecuted instantiation: zend_system_id.c:zend_string_truncate Unexecuted instantiation: zend_variables.c:zend_string_truncate Unexecuted instantiation: zend_virtual_cwd.c:zend_string_truncate Unexecuted instantiation: zend_vm_opcodes.c:zend_string_truncate Unexecuted instantiation: zend_weakrefs.c:zend_string_truncate Unexecuted instantiation: zend.c:zend_string_truncate Unexecuted instantiation: internal_functions_cli.c:zend_string_truncate Unexecuted instantiation: fuzzer-parser.c:zend_string_truncate Unexecuted instantiation: fuzzer-sapi.c:zend_string_truncate Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_truncate Unexecuted instantiation: fuzzer-exif.c:zend_string_truncate Unexecuted instantiation: fuzzer-unserialize.c:zend_string_truncate Unexecuted instantiation: fuzzer-function-jit.c:zend_string_truncate Unexecuted instantiation: fuzzer-json.c:zend_string_truncate Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_truncate Unexecuted instantiation: fuzzer-execute.c:zend_string_truncate |
313 | | |
314 | | static zend_always_inline zend_string *zend_string_safe_realloc(zend_string *s, size_t n, size_t m, size_t l, bool persistent) |
315 | 3.46k | { |
316 | 3.46k | zend_string *ret; |
317 | | |
318 | 3.46k | if (!ZSTR_IS_INTERNED(s)) { |
319 | 3.46k | if (GC_REFCOUNT(s) == 1) { |
320 | 3.46k | ret = (zend_string *)safe_perealloc(s, n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); |
321 | 3.46k | ZSTR_LEN(ret) = (n * m) + l; |
322 | 3.46k | zend_string_forget_hash_val(ret); |
323 | 3.46k | return ret; |
324 | 3.46k | } |
325 | 3.46k | } |
326 | 0 | ret = zend_string_safe_alloc(n, m, l, persistent); |
327 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN((n * m) + l, ZSTR_LEN(s)) + 1); |
328 | 0 | if (!ZSTR_IS_INTERNED(s)) { |
329 | 0 | GC_DELREF(s); |
330 | 0 | } |
331 | 0 | return ret; |
332 | 3.46k | } Unexecuted instantiation: php_date.c:zend_string_safe_realloc Unexecuted instantiation: astro.c:zend_string_safe_realloc Unexecuted instantiation: dow.c:zend_string_safe_realloc Unexecuted instantiation: parse_date.c:zend_string_safe_realloc Unexecuted instantiation: parse_tz.c:zend_string_safe_realloc Unexecuted instantiation: parse_posix.c:zend_string_safe_realloc Unexecuted instantiation: timelib.c:zend_string_safe_realloc Unexecuted instantiation: tm2unixtime.c:zend_string_safe_realloc Unexecuted instantiation: unixtime2tm.c:zend_string_safe_realloc Unexecuted instantiation: parse_iso_intervals.c:zend_string_safe_realloc Unexecuted instantiation: interval.c:zend_string_safe_realloc Unexecuted instantiation: php_pcre.c:zend_string_safe_realloc Unexecuted instantiation: exif.c:zend_string_safe_realloc Unexecuted instantiation: hash_adler32.c:zend_string_safe_realloc Unexecuted instantiation: hash_crc32.c:zend_string_safe_realloc Unexecuted instantiation: hash_fnv.c:zend_string_safe_realloc Unexecuted instantiation: hash_gost.c:zend_string_safe_realloc Unexecuted instantiation: hash_haval.c:zend_string_safe_realloc Unexecuted instantiation: hash_joaat.c:zend_string_safe_realloc Unexecuted instantiation: hash_md.c:zend_string_safe_realloc Unexecuted instantiation: hash_murmur.c:zend_string_safe_realloc Unexecuted instantiation: hash_ripemd.c:zend_string_safe_realloc Unexecuted instantiation: hash_sha_ni.c:zend_string_safe_realloc Unexecuted instantiation: hash_sha_sse2.c:zend_string_safe_realloc Unexecuted instantiation: hash_sha.c:zend_string_safe_realloc Unexecuted instantiation: hash_sha3.c:zend_string_safe_realloc Unexecuted instantiation: hash_snefru.c:zend_string_safe_realloc Unexecuted instantiation: hash_tiger.c:zend_string_safe_realloc Unexecuted instantiation: hash_whirlpool.c:zend_string_safe_realloc Unexecuted instantiation: hash_xxhash.c:zend_string_safe_realloc Unexecuted instantiation: hash.c:zend_string_safe_realloc Unexecuted instantiation: json_encoder.c:zend_string_safe_realloc Unexecuted instantiation: json_parser.tab.c:zend_string_safe_realloc Unexecuted instantiation: json_scanner.c:zend_string_safe_realloc Unexecuted instantiation: json.c:zend_string_safe_realloc Unexecuted instantiation: php_lexbor.c:zend_string_safe_realloc Unexecuted instantiation: shared_alloc_mmap.c:zend_string_safe_realloc Unexecuted instantiation: shared_alloc_posix.c:zend_string_safe_realloc Unexecuted instantiation: shared_alloc_shm.c:zend_string_safe_realloc Unexecuted instantiation: zend_accelerator_api.c:zend_string_safe_realloc Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_safe_realloc Unexecuted instantiation: zend_accelerator_debug.c:zend_string_safe_realloc Unexecuted instantiation: zend_accelerator_hash.c:zend_string_safe_realloc Unexecuted instantiation: zend_accelerator_module.c:zend_string_safe_realloc Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_safe_realloc Unexecuted instantiation: zend_file_cache.c:zend_string_safe_realloc Unexecuted instantiation: zend_persist_calc.c:zend_string_safe_realloc Unexecuted instantiation: zend_persist.c:zend_string_safe_realloc Unexecuted instantiation: zend_shared_alloc.c:zend_string_safe_realloc Unexecuted instantiation: ZendAccelerator.c:zend_string_safe_realloc Unexecuted instantiation: ir_cfg.c:zend_string_safe_realloc Unexecuted instantiation: ir_check.c:zend_string_safe_realloc Unexecuted instantiation: ir_dump.c:zend_string_safe_realloc Unexecuted instantiation: ir_emit.c:zend_string_safe_realloc Unexecuted instantiation: ir_gcm.c:zend_string_safe_realloc Unexecuted instantiation: ir_gdb.c:zend_string_safe_realloc Unexecuted instantiation: ir_patch.c:zend_string_safe_realloc Unexecuted instantiation: ir_perf.c:zend_string_safe_realloc Unexecuted instantiation: ir_ra.c:zend_string_safe_realloc Unexecuted instantiation: ir_save.c:zend_string_safe_realloc Unexecuted instantiation: ir_sccp.c:zend_string_safe_realloc Unexecuted instantiation: ir_strtab.c:zend_string_safe_realloc Unexecuted instantiation: ir.c:zend_string_safe_realloc Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_safe_realloc Unexecuted instantiation: zend_jit.c:zend_string_safe_realloc Unexecuted instantiation: csprng.c:zend_string_safe_realloc Unexecuted instantiation: engine_mt19937.c:zend_string_safe_realloc Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_safe_realloc Unexecuted instantiation: engine_secure.c:zend_string_safe_realloc Unexecuted instantiation: engine_user.c:zend_string_safe_realloc Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_safe_realloc Unexecuted instantiation: gammasection.c:zend_string_safe_realloc Unexecuted instantiation: random.c:zend_string_safe_realloc Unexecuted instantiation: randomizer.c:zend_string_safe_realloc Unexecuted instantiation: zend_utils.c:zend_string_safe_realloc Unexecuted instantiation: php_reflection.c:zend_string_safe_realloc Unexecuted instantiation: php_spl.c:zend_string_safe_realloc Unexecuted instantiation: spl_array.c:zend_string_safe_realloc Unexecuted instantiation: spl_directory.c:zend_string_safe_realloc Unexecuted instantiation: spl_dllist.c:zend_string_safe_realloc Unexecuted instantiation: spl_exceptions.c:zend_string_safe_realloc Unexecuted instantiation: spl_fixedarray.c:zend_string_safe_realloc Unexecuted instantiation: spl_functions.c:zend_string_safe_realloc Unexecuted instantiation: spl_heap.c:zend_string_safe_realloc Unexecuted instantiation: spl_iterators.c:zend_string_safe_realloc Unexecuted instantiation: spl_observer.c:zend_string_safe_realloc Unexecuted instantiation: array.c:zend_string_safe_realloc Unexecuted instantiation: assert.c:zend_string_safe_realloc Unexecuted instantiation: base64.c:zend_string_safe_realloc Unexecuted instantiation: basic_functions.c:zend_string_safe_realloc Unexecuted instantiation: browscap.c:zend_string_safe_realloc Unexecuted instantiation: crc32_x86.c:zend_string_safe_realloc Unexecuted instantiation: crc32.c:zend_string_safe_realloc Unexecuted instantiation: credits.c:zend_string_safe_realloc Unexecuted instantiation: crypt.c:zend_string_safe_realloc Unexecuted instantiation: css.c:zend_string_safe_realloc Unexecuted instantiation: datetime.c:zend_string_safe_realloc Unexecuted instantiation: dir.c:zend_string_safe_realloc Unexecuted instantiation: dl.c:zend_string_safe_realloc Unexecuted instantiation: dns.c:zend_string_safe_realloc Unexecuted instantiation: exec.c:zend_string_safe_realloc Unexecuted instantiation: file.c:zend_string_safe_realloc Unexecuted instantiation: filestat.c:zend_string_safe_realloc Unexecuted instantiation: filters.c:zend_string_safe_realloc Unexecuted instantiation: flock_compat.c:zend_string_safe_realloc Unexecuted instantiation: formatted_print.c:zend_string_safe_realloc Unexecuted instantiation: fsock.c:zend_string_safe_realloc Unexecuted instantiation: ftok.c:zend_string_safe_realloc Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_safe_realloc Unexecuted instantiation: head.c:zend_string_safe_realloc Unexecuted instantiation: hrtime.c:zend_string_safe_realloc html.c:zend_string_safe_realloc Line | Count | Source | 315 | 3.46k | { | 316 | 3.46k | zend_string *ret; | 317 | | | 318 | 3.46k | if (!ZSTR_IS_INTERNED(s)) { | 319 | 3.46k | if (GC_REFCOUNT(s) == 1) { | 320 | 3.46k | ret = (zend_string *)safe_perealloc(s, n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 321 | 3.46k | ZSTR_LEN(ret) = (n * m) + l; | 322 | 3.46k | zend_string_forget_hash_val(ret); | 323 | 3.46k | return ret; | 324 | 3.46k | } | 325 | 3.46k | } | 326 | 0 | ret = zend_string_safe_alloc(n, m, l, persistent); | 327 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN((n * m) + l, ZSTR_LEN(s)) + 1); | 328 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 329 | 0 | GC_DELREF(s); | 330 | 0 | } | 331 | 0 | return ret; | 332 | 3.46k | } |
Unexecuted instantiation: http_fopen_wrapper.c:zend_string_safe_realloc Unexecuted instantiation: http.c:zend_string_safe_realloc Unexecuted instantiation: image.c:zend_string_safe_realloc Unexecuted instantiation: incomplete_class.c:zend_string_safe_realloc Unexecuted instantiation: info.c:zend_string_safe_realloc Unexecuted instantiation: iptc.c:zend_string_safe_realloc Unexecuted instantiation: levenshtein.c:zend_string_safe_realloc Unexecuted instantiation: link.c:zend_string_safe_realloc Unexecuted instantiation: mail.c:zend_string_safe_realloc Unexecuted instantiation: math.c:zend_string_safe_realloc Unexecuted instantiation: md5.c:zend_string_safe_realloc Unexecuted instantiation: metaphone.c:zend_string_safe_realloc Unexecuted instantiation: microtime.c:zend_string_safe_realloc Unexecuted instantiation: net.c:zend_string_safe_realloc Unexecuted instantiation: pack.c:zend_string_safe_realloc Unexecuted instantiation: pageinfo.c:zend_string_safe_realloc Unexecuted instantiation: password.c:zend_string_safe_realloc Unexecuted instantiation: php_fopen_wrapper.c:zend_string_safe_realloc Unexecuted instantiation: proc_open.c:zend_string_safe_realloc Unexecuted instantiation: quot_print.c:zend_string_safe_realloc Unexecuted instantiation: scanf.c:zend_string_safe_realloc Unexecuted instantiation: sha1.c:zend_string_safe_realloc Unexecuted instantiation: soundex.c:zend_string_safe_realloc Unexecuted instantiation: streamsfuncs.c:zend_string_safe_realloc Unexecuted instantiation: string.c:zend_string_safe_realloc Unexecuted instantiation: strnatcmp.c:zend_string_safe_realloc Unexecuted instantiation: syslog.c:zend_string_safe_realloc Unexecuted instantiation: type.c:zend_string_safe_realloc Unexecuted instantiation: uniqid.c:zend_string_safe_realloc Unexecuted instantiation: url_scanner_ex.c:zend_string_safe_realloc Unexecuted instantiation: url.c:zend_string_safe_realloc Unexecuted instantiation: user_filters.c:zend_string_safe_realloc Unexecuted instantiation: uuencode.c:zend_string_safe_realloc Unexecuted instantiation: var_unserializer.c:zend_string_safe_realloc Unexecuted instantiation: var.c:zend_string_safe_realloc Unexecuted instantiation: versioning.c:zend_string_safe_realloc Unexecuted instantiation: crypt_sha256.c:zend_string_safe_realloc Unexecuted instantiation: crypt_sha512.c:zend_string_safe_realloc Unexecuted instantiation: php_crypt_r.c:zend_string_safe_realloc Unexecuted instantiation: php_uri.c:zend_string_safe_realloc Unexecuted instantiation: php_uri_common.c:zend_string_safe_realloc Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_safe_realloc Unexecuted instantiation: uri_parser_whatwg.c:zend_string_safe_realloc Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_safe_realloc Unexecuted instantiation: explicit_bzero.c:zend_string_safe_realloc Unexecuted instantiation: fopen_wrappers.c:zend_string_safe_realloc Unexecuted instantiation: getopt.c:zend_string_safe_realloc Unexecuted instantiation: main.c:zend_string_safe_realloc Unexecuted instantiation: network.c:zend_string_safe_realloc Unexecuted instantiation: output.c:zend_string_safe_realloc Unexecuted instantiation: php_content_types.c:zend_string_safe_realloc Unexecuted instantiation: php_ini_builder.c:zend_string_safe_realloc Unexecuted instantiation: php_ini.c:zend_string_safe_realloc Unexecuted instantiation: php_glob.c:zend_string_safe_realloc Unexecuted instantiation: php_odbc_utils.c:zend_string_safe_realloc Unexecuted instantiation: php_open_temporary_file.c:zend_string_safe_realloc Unexecuted instantiation: php_scandir.c:zend_string_safe_realloc Unexecuted instantiation: php_syslog.c:zend_string_safe_realloc Unexecuted instantiation: php_ticks.c:zend_string_safe_realloc Unexecuted instantiation: php_variables.c:zend_string_safe_realloc Unexecuted instantiation: reentrancy.c:zend_string_safe_realloc Unexecuted instantiation: rfc1867.c:zend_string_safe_realloc Unexecuted instantiation: safe_bcmp.c:zend_string_safe_realloc Unexecuted instantiation: SAPI.c:zend_string_safe_realloc Unexecuted instantiation: snprintf.c:zend_string_safe_realloc Unexecuted instantiation: spprintf.c:zend_string_safe_realloc Unexecuted instantiation: strlcat.c:zend_string_safe_realloc Unexecuted instantiation: strlcpy.c:zend_string_safe_realloc Unexecuted instantiation: cast.c:zend_string_safe_realloc Unexecuted instantiation: filter.c:zend_string_safe_realloc Unexecuted instantiation: glob_wrapper.c:zend_string_safe_realloc Unexecuted instantiation: memory.c:zend_string_safe_realloc Unexecuted instantiation: mmap.c:zend_string_safe_realloc Unexecuted instantiation: plain_wrapper.c:zend_string_safe_realloc Unexecuted instantiation: stream_errors.c:zend_string_safe_realloc Unexecuted instantiation: streams.c:zend_string_safe_realloc Unexecuted instantiation: transports.c:zend_string_safe_realloc Unexecuted instantiation: userspace.c:zend_string_safe_realloc Unexecuted instantiation: xp_socket.c:zend_string_safe_realloc Unexecuted instantiation: block_pass.c:zend_string_safe_realloc Unexecuted instantiation: compact_literals.c:zend_string_safe_realloc Unexecuted instantiation: compact_vars.c:zend_string_safe_realloc Unexecuted instantiation: dce.c:zend_string_safe_realloc Unexecuted instantiation: dfa_pass.c:zend_string_safe_realloc Unexecuted instantiation: escape_analysis.c:zend_string_safe_realloc Unexecuted instantiation: nop_removal.c:zend_string_safe_realloc Unexecuted instantiation: optimize_func_calls.c:zend_string_safe_realloc Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_safe_realloc Unexecuted instantiation: pass1.c:zend_string_safe_realloc Unexecuted instantiation: pass3.c:zend_string_safe_realloc Unexecuted instantiation: sccp.c:zend_string_safe_realloc Unexecuted instantiation: scdf.c:zend_string_safe_realloc Unexecuted instantiation: zend_call_graph.c:zend_string_safe_realloc Unexecuted instantiation: zend_cfg.c:zend_string_safe_realloc Unexecuted instantiation: zend_dfg.c:zend_string_safe_realloc Unexecuted instantiation: zend_dump.c:zend_string_safe_realloc Unexecuted instantiation: zend_func_info.c:zend_string_safe_realloc Unexecuted instantiation: zend_inference.c:zend_string_safe_realloc Unexecuted instantiation: zend_optimizer.c:zend_string_safe_realloc Unexecuted instantiation: zend_ssa.c:zend_string_safe_realloc Unexecuted instantiation: zend_alloc.c:zend_string_safe_realloc Unexecuted instantiation: zend_API.c:zend_string_safe_realloc Unexecuted instantiation: zend_ast.c:zend_string_safe_realloc Unexecuted instantiation: zend_attributes.c:zend_string_safe_realloc Unexecuted instantiation: zend_autoload.c:zend_string_safe_realloc Unexecuted instantiation: zend_builtin_functions.c:zend_string_safe_realloc Unexecuted instantiation: zend_call_stack.c:zend_string_safe_realloc Unexecuted instantiation: zend_closures.c:zend_string_safe_realloc Unexecuted instantiation: zend_compile.c:zend_string_safe_realloc Unexecuted instantiation: zend_constants.c:zend_string_safe_realloc Unexecuted instantiation: zend_cpuinfo.c:zend_string_safe_realloc Unexecuted instantiation: zend_default_classes.c:zend_string_safe_realloc Unexecuted instantiation: zend_dtrace.c:zend_string_safe_realloc Unexecuted instantiation: zend_enum.c:zend_string_safe_realloc Unexecuted instantiation: zend_exceptions.c:zend_string_safe_realloc Unexecuted instantiation: zend_execute_API.c:zend_string_safe_realloc Unexecuted instantiation: zend_execute.c:zend_string_safe_realloc Unexecuted instantiation: zend_extensions.c:zend_string_safe_realloc Unexecuted instantiation: zend_fibers.c:zend_string_safe_realloc Unexecuted instantiation: zend_float.c:zend_string_safe_realloc Unexecuted instantiation: zend_gc.c:zend_string_safe_realloc Unexecuted instantiation: zend_gdb.c:zend_string_safe_realloc Unexecuted instantiation: zend_generators.c:zend_string_safe_realloc Unexecuted instantiation: zend_hash.c:zend_string_safe_realloc Unexecuted instantiation: zend_highlight.c:zend_string_safe_realloc Unexecuted instantiation: zend_hrtime.c:zend_string_safe_realloc Unexecuted instantiation: zend_inheritance.c:zend_string_safe_realloc Unexecuted instantiation: zend_ini_parser.c:zend_string_safe_realloc Unexecuted instantiation: zend_ini_scanner.c:zend_string_safe_realloc Unexecuted instantiation: zend_ini.c:zend_string_safe_realloc Unexecuted instantiation: zend_interfaces.c:zend_string_safe_realloc Unexecuted instantiation: zend_iterators.c:zend_string_safe_realloc Unexecuted instantiation: zend_language_parser.c:zend_string_safe_realloc Unexecuted instantiation: zend_language_scanner.c:zend_string_safe_realloc Unexecuted instantiation: zend_lazy_objects.c:zend_string_safe_realloc Unexecuted instantiation: zend_list.c:zend_string_safe_realloc Unexecuted instantiation: zend_llist.c:zend_string_safe_realloc Unexecuted instantiation: zend_multibyte.c:zend_string_safe_realloc Unexecuted instantiation: zend_object_handlers.c:zend_string_safe_realloc Unexecuted instantiation: zend_objects_API.c:zend_string_safe_realloc Unexecuted instantiation: zend_objects.c:zend_string_safe_realloc Unexecuted instantiation: zend_observer.c:zend_string_safe_realloc Unexecuted instantiation: zend_opcode.c:zend_string_safe_realloc Unexecuted instantiation: zend_operators.c:zend_string_safe_realloc Unexecuted instantiation: zend_property_hooks.c:zend_string_safe_realloc Unexecuted instantiation: zend_ptr_stack.c:zend_string_safe_realloc Unexecuted instantiation: zend_signal.c:zend_string_safe_realloc Unexecuted instantiation: zend_smart_str.c:zend_string_safe_realloc Unexecuted instantiation: zend_sort.c:zend_string_safe_realloc Unexecuted instantiation: zend_stack.c:zend_string_safe_realloc Unexecuted instantiation: zend_stream.c:zend_string_safe_realloc Unexecuted instantiation: zend_string.c:zend_string_safe_realloc Unexecuted instantiation: zend_strtod.c:zend_string_safe_realloc Unexecuted instantiation: zend_system_id.c:zend_string_safe_realloc Unexecuted instantiation: zend_variables.c:zend_string_safe_realloc Unexecuted instantiation: zend_virtual_cwd.c:zend_string_safe_realloc Unexecuted instantiation: zend_vm_opcodes.c:zend_string_safe_realloc Unexecuted instantiation: zend_weakrefs.c:zend_string_safe_realloc Unexecuted instantiation: zend.c:zend_string_safe_realloc Unexecuted instantiation: internal_functions_cli.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-parser.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-sapi.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-exif.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-unserialize.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-function-jit.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-json.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-execute.c:zend_string_safe_realloc |
333 | | |
334 | | static zend_always_inline void zend_string_free(zend_string *s) |
335 | 2.04M | { |
336 | 2.04M | if (!ZSTR_IS_INTERNED(s)) { |
337 | 1.80M | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); |
338 | 1.80M | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); |
339 | 1.80M | } |
340 | 2.04M | } Unexecuted instantiation: php_date.c:zend_string_free Unexecuted instantiation: astro.c:zend_string_free Unexecuted instantiation: dow.c:zend_string_free Unexecuted instantiation: parse_date.c:zend_string_free Unexecuted instantiation: parse_tz.c:zend_string_free Unexecuted instantiation: parse_posix.c:zend_string_free Unexecuted instantiation: timelib.c:zend_string_free Unexecuted instantiation: tm2unixtime.c:zend_string_free Unexecuted instantiation: unixtime2tm.c:zend_string_free Unexecuted instantiation: parse_iso_intervals.c:zend_string_free Unexecuted instantiation: interval.c:zend_string_free Unexecuted instantiation: php_pcre.c:zend_string_free Unexecuted instantiation: exif.c:zend_string_free Unexecuted instantiation: hash_adler32.c:zend_string_free Unexecuted instantiation: hash_crc32.c:zend_string_free Unexecuted instantiation: hash_fnv.c:zend_string_free Unexecuted instantiation: hash_gost.c:zend_string_free Unexecuted instantiation: hash_haval.c:zend_string_free Unexecuted instantiation: hash_joaat.c:zend_string_free Unexecuted instantiation: hash_md.c:zend_string_free Unexecuted instantiation: hash_murmur.c:zend_string_free Unexecuted instantiation: hash_ripemd.c:zend_string_free Unexecuted instantiation: hash_sha_ni.c:zend_string_free Unexecuted instantiation: hash_sha_sse2.c:zend_string_free Unexecuted instantiation: hash_sha.c:zend_string_free Unexecuted instantiation: hash_sha3.c:zend_string_free Unexecuted instantiation: hash_snefru.c:zend_string_free Unexecuted instantiation: hash_tiger.c:zend_string_free Unexecuted instantiation: hash_whirlpool.c:zend_string_free Unexecuted instantiation: hash_xxhash.c:zend_string_free Unexecuted instantiation: hash.c:zend_string_free Unexecuted instantiation: json_encoder.c:zend_string_free Unexecuted instantiation: json_parser.tab.c:zend_string_free Unexecuted instantiation: json_scanner.c:zend_string_free Unexecuted instantiation: json.c:zend_string_free Unexecuted instantiation: php_lexbor.c:zend_string_free Unexecuted instantiation: shared_alloc_mmap.c:zend_string_free Unexecuted instantiation: shared_alloc_posix.c:zend_string_free Unexecuted instantiation: shared_alloc_shm.c:zend_string_free Unexecuted instantiation: zend_accelerator_api.c:zend_string_free Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_free Unexecuted instantiation: zend_accelerator_debug.c:zend_string_free Unexecuted instantiation: zend_accelerator_hash.c:zend_string_free Unexecuted instantiation: zend_accelerator_module.c:zend_string_free Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_free Unexecuted instantiation: zend_file_cache.c:zend_string_free Unexecuted instantiation: zend_persist_calc.c:zend_string_free Unexecuted instantiation: zend_persist.c:zend_string_free Unexecuted instantiation: zend_shared_alloc.c:zend_string_free Unexecuted instantiation: ZendAccelerator.c:zend_string_free Unexecuted instantiation: ir_cfg.c:zend_string_free Unexecuted instantiation: ir_check.c:zend_string_free Unexecuted instantiation: ir_dump.c:zend_string_free Unexecuted instantiation: ir_emit.c:zend_string_free Unexecuted instantiation: ir_gcm.c:zend_string_free Unexecuted instantiation: ir_gdb.c:zend_string_free Unexecuted instantiation: ir_patch.c:zend_string_free Unexecuted instantiation: ir_perf.c:zend_string_free Unexecuted instantiation: ir_ra.c:zend_string_free Unexecuted instantiation: ir_save.c:zend_string_free Unexecuted instantiation: ir_sccp.c:zend_string_free Unexecuted instantiation: ir_strtab.c:zend_string_free Unexecuted instantiation: ir.c:zend_string_free Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_free Unexecuted instantiation: zend_jit.c:zend_string_free Unexecuted instantiation: csprng.c:zend_string_free Unexecuted instantiation: engine_mt19937.c:zend_string_free Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_free Unexecuted instantiation: engine_secure.c:zend_string_free Unexecuted instantiation: engine_user.c:zend_string_free Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_free Unexecuted instantiation: gammasection.c:zend_string_free Unexecuted instantiation: random.c:zend_string_free Unexecuted instantiation: randomizer.c:zend_string_free Unexecuted instantiation: zend_utils.c:zend_string_free Unexecuted instantiation: php_reflection.c:zend_string_free Unexecuted instantiation: php_spl.c:zend_string_free Unexecuted instantiation: spl_array.c:zend_string_free Unexecuted instantiation: spl_directory.c:zend_string_free Unexecuted instantiation: spl_dllist.c:zend_string_free Unexecuted instantiation: spl_exceptions.c:zend_string_free Unexecuted instantiation: spl_fixedarray.c:zend_string_free Unexecuted instantiation: spl_functions.c:zend_string_free Unexecuted instantiation: spl_heap.c:zend_string_free Unexecuted instantiation: spl_iterators.c:zend_string_free Unexecuted instantiation: spl_observer.c:zend_string_free Unexecuted instantiation: array.c:zend_string_free Unexecuted instantiation: assert.c:zend_string_free Unexecuted instantiation: base64.c:zend_string_free Unexecuted instantiation: basic_functions.c:zend_string_free Unexecuted instantiation: browscap.c:zend_string_free Unexecuted instantiation: crc32_x86.c:zend_string_free Unexecuted instantiation: crc32.c:zend_string_free Unexecuted instantiation: credits.c:zend_string_free Unexecuted instantiation: crypt.c:zend_string_free Unexecuted instantiation: css.c:zend_string_free Unexecuted instantiation: datetime.c:zend_string_free Unexecuted instantiation: dir.c:zend_string_free Unexecuted instantiation: dl.c:zend_string_free Unexecuted instantiation: dns.c:zend_string_free Unexecuted instantiation: exec.c:zend_string_free Unexecuted instantiation: file.c:zend_string_free Unexecuted instantiation: filestat.c:zend_string_free Unexecuted instantiation: filters.c:zend_string_free Unexecuted instantiation: flock_compat.c:zend_string_free Unexecuted instantiation: formatted_print.c:zend_string_free Unexecuted instantiation: fsock.c:zend_string_free Unexecuted instantiation: ftok.c:zend_string_free Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_free Unexecuted instantiation: head.c:zend_string_free Unexecuted instantiation: hrtime.c:zend_string_free Unexecuted instantiation: html.c:zend_string_free Unexecuted instantiation: http_fopen_wrapper.c:zend_string_free Unexecuted instantiation: http.c:zend_string_free Unexecuted instantiation: image.c:zend_string_free Unexecuted instantiation: incomplete_class.c:zend_string_free Line | Count | Source | 335 | 4 | { | 336 | 4 | if (!ZSTR_IS_INTERNED(s)) { | 337 | 4 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 338 | 4 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 339 | 4 | } | 340 | 4 | } |
Unexecuted instantiation: iptc.c:zend_string_free Unexecuted instantiation: levenshtein.c:zend_string_free Unexecuted instantiation: link.c:zend_string_free Unexecuted instantiation: mail.c:zend_string_free Unexecuted instantiation: math.c:zend_string_free Unexecuted instantiation: md5.c:zend_string_free Unexecuted instantiation: metaphone.c:zend_string_free Unexecuted instantiation: microtime.c:zend_string_free Unexecuted instantiation: net.c:zend_string_free Unexecuted instantiation: pack.c:zend_string_free Unexecuted instantiation: pageinfo.c:zend_string_free password.c:zend_string_free Line | Count | Source | 335 | 6 | { | 336 | 6 | if (!ZSTR_IS_INTERNED(s)) { | 337 | 6 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 338 | 6 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 339 | 6 | } | 340 | 6 | } |
Unexecuted instantiation: php_fopen_wrapper.c:zend_string_free Unexecuted instantiation: proc_open.c:zend_string_free Unexecuted instantiation: quot_print.c:zend_string_free Unexecuted instantiation: scanf.c:zend_string_free Unexecuted instantiation: sha1.c:zend_string_free Unexecuted instantiation: soundex.c:zend_string_free Unexecuted instantiation: streamsfuncs.c:zend_string_free Unexecuted instantiation: string.c:zend_string_free Unexecuted instantiation: strnatcmp.c:zend_string_free Unexecuted instantiation: syslog.c:zend_string_free Unexecuted instantiation: type.c:zend_string_free Unexecuted instantiation: uniqid.c:zend_string_free Unexecuted instantiation: url_scanner_ex.c:zend_string_free Unexecuted instantiation: url.c:zend_string_free Unexecuted instantiation: user_filters.c:zend_string_free Unexecuted instantiation: uuencode.c:zend_string_free Unexecuted instantiation: var_unserializer.c:zend_string_free Line | Count | Source | 335 | 1.45k | { | 336 | 1.45k | if (!ZSTR_IS_INTERNED(s)) { | 337 | 1.45k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 338 | 1.45k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 339 | 1.45k | } | 340 | 1.45k | } |
Unexecuted instantiation: versioning.c:zend_string_free Unexecuted instantiation: crypt_sha256.c:zend_string_free Unexecuted instantiation: crypt_sha512.c:zend_string_free Unexecuted instantiation: php_crypt_r.c:zend_string_free Unexecuted instantiation: php_uri.c:zend_string_free Unexecuted instantiation: php_uri_common.c:zend_string_free Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_free Unexecuted instantiation: uri_parser_whatwg.c:zend_string_free Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_free Unexecuted instantiation: explicit_bzero.c:zend_string_free Unexecuted instantiation: fopen_wrappers.c:zend_string_free Unexecuted instantiation: getopt.c:zend_string_free Line | Count | Source | 335 | 350k | { | 336 | 350k | if (!ZSTR_IS_INTERNED(s)) { | 337 | 350k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 338 | 350k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 339 | 350k | } | 340 | 350k | } |
Unexecuted instantiation: network.c:zend_string_free Unexecuted instantiation: output.c:zend_string_free Unexecuted instantiation: php_content_types.c:zend_string_free Unexecuted instantiation: php_ini_builder.c:zend_string_free Unexecuted instantiation: php_ini.c:zend_string_free Unexecuted instantiation: php_glob.c:zend_string_free Unexecuted instantiation: php_odbc_utils.c:zend_string_free Unexecuted instantiation: php_open_temporary_file.c:zend_string_free Unexecuted instantiation: php_scandir.c:zend_string_free Unexecuted instantiation: php_syslog.c:zend_string_free Unexecuted instantiation: php_ticks.c:zend_string_free Unexecuted instantiation: php_variables.c:zend_string_free Unexecuted instantiation: reentrancy.c:zend_string_free Unexecuted instantiation: rfc1867.c:zend_string_free Unexecuted instantiation: safe_bcmp.c:zend_string_free Unexecuted instantiation: SAPI.c:zend_string_free Unexecuted instantiation: snprintf.c:zend_string_free Unexecuted instantiation: spprintf.c:zend_string_free Unexecuted instantiation: strlcat.c:zend_string_free Unexecuted instantiation: strlcpy.c:zend_string_free Unexecuted instantiation: cast.c:zend_string_free Unexecuted instantiation: filter.c:zend_string_free Unexecuted instantiation: glob_wrapper.c:zend_string_free Unexecuted instantiation: memory.c:zend_string_free Unexecuted instantiation: mmap.c:zend_string_free Unexecuted instantiation: plain_wrapper.c:zend_string_free Unexecuted instantiation: stream_errors.c:zend_string_free streams.c:zend_string_free Line | Count | Source | 335 | 6 | { | 336 | 6 | if (!ZSTR_IS_INTERNED(s)) { | 337 | 6 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 338 | 6 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 339 | 6 | } | 340 | 6 | } |
Unexecuted instantiation: transports.c:zend_string_free Unexecuted instantiation: userspace.c:zend_string_free Unexecuted instantiation: xp_socket.c:zend_string_free Unexecuted instantiation: block_pass.c:zend_string_free Unexecuted instantiation: compact_literals.c:zend_string_free Unexecuted instantiation: compact_vars.c:zend_string_free Unexecuted instantiation: dce.c:zend_string_free Unexecuted instantiation: dfa_pass.c:zend_string_free Unexecuted instantiation: escape_analysis.c:zend_string_free Unexecuted instantiation: nop_removal.c:zend_string_free Unexecuted instantiation: optimize_func_calls.c:zend_string_free Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_free Unexecuted instantiation: pass1.c:zend_string_free Unexecuted instantiation: pass3.c:zend_string_free Unexecuted instantiation: sccp.c:zend_string_free Unexecuted instantiation: scdf.c:zend_string_free Unexecuted instantiation: zend_call_graph.c:zend_string_free Unexecuted instantiation: zend_cfg.c:zend_string_free Unexecuted instantiation: zend_dfg.c:zend_string_free Unexecuted instantiation: zend_dump.c:zend_string_free Unexecuted instantiation: zend_func_info.c:zend_string_free Unexecuted instantiation: zend_inference.c:zend_string_free Unexecuted instantiation: zend_optimizer.c:zend_string_free Unexecuted instantiation: zend_ssa.c:zend_string_free Unexecuted instantiation: zend_alloc.c:zend_string_free Unexecuted instantiation: zend_API.c:zend_string_free Unexecuted instantiation: zend_ast.c:zend_string_free Unexecuted instantiation: zend_attributes.c:zend_string_free Unexecuted instantiation: zend_autoload.c:zend_string_free Unexecuted instantiation: zend_builtin_functions.c:zend_string_free Unexecuted instantiation: zend_call_stack.c:zend_string_free Unexecuted instantiation: zend_closures.c:zend_string_free Unexecuted instantiation: zend_compile.c:zend_string_free Unexecuted instantiation: zend_constants.c:zend_string_free Unexecuted instantiation: zend_cpuinfo.c:zend_string_free Unexecuted instantiation: zend_default_classes.c:zend_string_free Unexecuted instantiation: zend_dtrace.c:zend_string_free Unexecuted instantiation: zend_enum.c:zend_string_free Unexecuted instantiation: zend_exceptions.c:zend_string_free Unexecuted instantiation: zend_execute_API.c:zend_string_free Unexecuted instantiation: zend_execute.c:zend_string_free Unexecuted instantiation: zend_extensions.c:zend_string_free Unexecuted instantiation: zend_fibers.c:zend_string_free Unexecuted instantiation: zend_float.c:zend_string_free Unexecuted instantiation: zend_gc.c:zend_string_free Unexecuted instantiation: zend_gdb.c:zend_string_free Unexecuted instantiation: zend_generators.c:zend_string_free Unexecuted instantiation: zend_hash.c:zend_string_free Unexecuted instantiation: zend_highlight.c:zend_string_free Unexecuted instantiation: zend_hrtime.c:zend_string_free Unexecuted instantiation: zend_inheritance.c:zend_string_free zend_ini_parser.c:zend_string_free Line | Count | Source | 335 | 1.69M | { | 336 | 1.69M | if (!ZSTR_IS_INTERNED(s)) { | 337 | 1.45M | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 338 | 1.45M | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 339 | 1.45M | } | 340 | 1.69M | } |
Unexecuted instantiation: zend_ini_scanner.c:zend_string_free Unexecuted instantiation: zend_ini.c:zend_string_free Unexecuted instantiation: zend_interfaces.c:zend_string_free Unexecuted instantiation: zend_iterators.c:zend_string_free Unexecuted instantiation: zend_language_parser.c:zend_string_free Unexecuted instantiation: zend_language_scanner.c:zend_string_free Unexecuted instantiation: zend_lazy_objects.c:zend_string_free Unexecuted instantiation: zend_list.c:zend_string_free Unexecuted instantiation: zend_llist.c:zend_string_free Unexecuted instantiation: zend_multibyte.c:zend_string_free Unexecuted instantiation: zend_object_handlers.c:zend_string_free Unexecuted instantiation: zend_objects_API.c:zend_string_free Unexecuted instantiation: zend_objects.c:zend_string_free Unexecuted instantiation: zend_observer.c:zend_string_free Unexecuted instantiation: zend_opcode.c:zend_string_free zend_operators.c:zend_string_free Line | Count | Source | 335 | 46 | { | 336 | 46 | if (!ZSTR_IS_INTERNED(s)) { | 337 | 46 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 338 | 46 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 339 | 46 | } | 340 | 46 | } |
Unexecuted instantiation: zend_property_hooks.c:zend_string_free Unexecuted instantiation: zend_ptr_stack.c:zend_string_free Unexecuted instantiation: zend_signal.c:zend_string_free Unexecuted instantiation: zend_smart_str.c:zend_string_free Unexecuted instantiation: zend_sort.c:zend_string_free Unexecuted instantiation: zend_stack.c:zend_string_free Unexecuted instantiation: zend_stream.c:zend_string_free Unexecuted instantiation: zend_string.c:zend_string_free Unexecuted instantiation: zend_strtod.c:zend_string_free Unexecuted instantiation: zend_system_id.c:zend_string_free Unexecuted instantiation: zend_variables.c:zend_string_free Unexecuted instantiation: zend_virtual_cwd.c:zend_string_free Unexecuted instantiation: zend_vm_opcodes.c:zend_string_free Unexecuted instantiation: zend_weakrefs.c:zend_string_free Unexecuted instantiation: zend.c:zend_string_free Unexecuted instantiation: internal_functions_cli.c:zend_string_free Unexecuted instantiation: fuzzer-parser.c:zend_string_free Unexecuted instantiation: fuzzer-sapi.c:zend_string_free Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_free Unexecuted instantiation: fuzzer-exif.c:zend_string_free Unexecuted instantiation: fuzzer-unserialize.c:zend_string_free Unexecuted instantiation: fuzzer-function-jit.c:zend_string_free Unexecuted instantiation: fuzzer-json.c:zend_string_free Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_free Unexecuted instantiation: fuzzer-execute.c:zend_string_free |
341 | | |
342 | | static zend_always_inline void zend_string_efree(zend_string *s) |
343 | 151k | { |
344 | 151k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); |
345 | 151k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); |
346 | 151k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); |
347 | 151k | efree(s); |
348 | 151k | } Unexecuted instantiation: php_date.c:zend_string_efree Unexecuted instantiation: astro.c:zend_string_efree Unexecuted instantiation: dow.c:zend_string_efree Unexecuted instantiation: parse_date.c:zend_string_efree Unexecuted instantiation: parse_tz.c:zend_string_efree Unexecuted instantiation: parse_posix.c:zend_string_efree Unexecuted instantiation: timelib.c:zend_string_efree Unexecuted instantiation: tm2unixtime.c:zend_string_efree Unexecuted instantiation: unixtime2tm.c:zend_string_efree Unexecuted instantiation: parse_iso_intervals.c:zend_string_efree Unexecuted instantiation: interval.c:zend_string_efree Unexecuted instantiation: php_pcre.c:zend_string_efree Unexecuted instantiation: exif.c:zend_string_efree Unexecuted instantiation: hash_adler32.c:zend_string_efree Unexecuted instantiation: hash_crc32.c:zend_string_efree Unexecuted instantiation: hash_fnv.c:zend_string_efree Unexecuted instantiation: hash_gost.c:zend_string_efree Unexecuted instantiation: hash_haval.c:zend_string_efree Unexecuted instantiation: hash_joaat.c:zend_string_efree Unexecuted instantiation: hash_md.c:zend_string_efree Unexecuted instantiation: hash_murmur.c:zend_string_efree Unexecuted instantiation: hash_ripemd.c:zend_string_efree Unexecuted instantiation: hash_sha_ni.c:zend_string_efree Unexecuted instantiation: hash_sha_sse2.c:zend_string_efree Unexecuted instantiation: hash_sha.c:zend_string_efree Unexecuted instantiation: hash_sha3.c:zend_string_efree Unexecuted instantiation: hash_snefru.c:zend_string_efree Unexecuted instantiation: hash_tiger.c:zend_string_efree Unexecuted instantiation: hash_whirlpool.c:zend_string_efree Unexecuted instantiation: hash_xxhash.c:zend_string_efree Line | Count | Source | 343 | 1.67k | { | 344 | 1.67k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 345 | 1.67k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 346 | 1.67k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 347 | 1.67k | efree(s); | 348 | 1.67k | } |
Unexecuted instantiation: json_encoder.c:zend_string_efree Unexecuted instantiation: json_parser.tab.c:zend_string_efree Unexecuted instantiation: json_scanner.c:zend_string_efree Unexecuted instantiation: json.c:zend_string_efree Unexecuted instantiation: php_lexbor.c:zend_string_efree Unexecuted instantiation: shared_alloc_mmap.c:zend_string_efree Unexecuted instantiation: shared_alloc_posix.c:zend_string_efree Unexecuted instantiation: shared_alloc_shm.c:zend_string_efree Unexecuted instantiation: zend_accelerator_api.c:zend_string_efree Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_efree Unexecuted instantiation: zend_accelerator_debug.c:zend_string_efree Unexecuted instantiation: zend_accelerator_hash.c:zend_string_efree Unexecuted instantiation: zend_accelerator_module.c:zend_string_efree Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_efree Unexecuted instantiation: zend_file_cache.c:zend_string_efree Unexecuted instantiation: zend_persist_calc.c:zend_string_efree Unexecuted instantiation: zend_persist.c:zend_string_efree Unexecuted instantiation: zend_shared_alloc.c:zend_string_efree Unexecuted instantiation: ZendAccelerator.c:zend_string_efree Unexecuted instantiation: ir_cfg.c:zend_string_efree Unexecuted instantiation: ir_check.c:zend_string_efree Unexecuted instantiation: ir_dump.c:zend_string_efree Unexecuted instantiation: ir_emit.c:zend_string_efree Unexecuted instantiation: ir_gcm.c:zend_string_efree Unexecuted instantiation: ir_gdb.c:zend_string_efree Unexecuted instantiation: ir_patch.c:zend_string_efree Unexecuted instantiation: ir_perf.c:zend_string_efree Unexecuted instantiation: ir_ra.c:zend_string_efree Unexecuted instantiation: ir_save.c:zend_string_efree Unexecuted instantiation: ir_sccp.c:zend_string_efree Unexecuted instantiation: ir_strtab.c:zend_string_efree Unexecuted instantiation: ir.c:zend_string_efree Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_efree Unexecuted instantiation: zend_jit.c:zend_string_efree Unexecuted instantiation: csprng.c:zend_string_efree Unexecuted instantiation: engine_mt19937.c:zend_string_efree Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_efree Unexecuted instantiation: engine_secure.c:zend_string_efree Unexecuted instantiation: engine_user.c:zend_string_efree Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_efree Unexecuted instantiation: gammasection.c:zend_string_efree Unexecuted instantiation: random.c:zend_string_efree Unexecuted instantiation: randomizer.c:zend_string_efree Unexecuted instantiation: zend_utils.c:zend_string_efree Unexecuted instantiation: php_reflection.c:zend_string_efree Unexecuted instantiation: php_spl.c:zend_string_efree Unexecuted instantiation: spl_array.c:zend_string_efree Unexecuted instantiation: spl_directory.c:zend_string_efree Unexecuted instantiation: spl_dllist.c:zend_string_efree Unexecuted instantiation: spl_exceptions.c:zend_string_efree Unexecuted instantiation: spl_fixedarray.c:zend_string_efree Unexecuted instantiation: spl_functions.c:zend_string_efree Unexecuted instantiation: spl_heap.c:zend_string_efree Unexecuted instantiation: spl_iterators.c:zend_string_efree Unexecuted instantiation: spl_observer.c:zend_string_efree Unexecuted instantiation: array.c:zend_string_efree Unexecuted instantiation: assert.c:zend_string_efree Unexecuted instantiation: base64.c:zend_string_efree Unexecuted instantiation: basic_functions.c:zend_string_efree Unexecuted instantiation: browscap.c:zend_string_efree Unexecuted instantiation: crc32_x86.c:zend_string_efree Unexecuted instantiation: crc32.c:zend_string_efree Unexecuted instantiation: credits.c:zend_string_efree Unexecuted instantiation: crypt.c:zend_string_efree Unexecuted instantiation: css.c:zend_string_efree Unexecuted instantiation: datetime.c:zend_string_efree Unexecuted instantiation: dir.c:zend_string_efree Unexecuted instantiation: dl.c:zend_string_efree Unexecuted instantiation: dns.c:zend_string_efree Unexecuted instantiation: exec.c:zend_string_efree Unexecuted instantiation: file.c:zend_string_efree Unexecuted instantiation: filestat.c:zend_string_efree Unexecuted instantiation: filters.c:zend_string_efree Unexecuted instantiation: flock_compat.c:zend_string_efree formatted_print.c:zend_string_efree Line | Count | Source | 343 | 444 | { | 344 | 444 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 345 | 444 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 346 | 444 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 347 | 444 | efree(s); | 348 | 444 | } |
Unexecuted instantiation: fsock.c:zend_string_efree Unexecuted instantiation: ftok.c:zend_string_efree Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_efree Unexecuted instantiation: head.c:zend_string_efree Unexecuted instantiation: hrtime.c:zend_string_efree Line | Count | Source | 343 | 213 | { | 344 | 213 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 345 | 213 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 346 | 213 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 347 | 213 | efree(s); | 348 | 213 | } |
Unexecuted instantiation: http_fopen_wrapper.c:zend_string_efree Unexecuted instantiation: http.c:zend_string_efree Unexecuted instantiation: image.c:zend_string_efree Unexecuted instantiation: incomplete_class.c:zend_string_efree Line | Count | Source | 343 | 28 | { | 344 | 28 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 345 | 28 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 346 | 28 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 347 | 28 | efree(s); | 348 | 28 | } |
Unexecuted instantiation: iptc.c:zend_string_efree Unexecuted instantiation: levenshtein.c:zend_string_efree Unexecuted instantiation: link.c:zend_string_efree Unexecuted instantiation: mail.c:zend_string_efree Unexecuted instantiation: math.c:zend_string_efree Unexecuted instantiation: md5.c:zend_string_efree Unexecuted instantiation: metaphone.c:zend_string_efree Unexecuted instantiation: microtime.c:zend_string_efree Unexecuted instantiation: net.c:zend_string_efree Unexecuted instantiation: pack.c:zend_string_efree Unexecuted instantiation: pageinfo.c:zend_string_efree password.c:zend_string_efree Line | Count | Source | 343 | 6 | { | 344 | 6 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 345 | 6 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 346 | 6 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 347 | 6 | efree(s); | 348 | 6 | } |
Unexecuted instantiation: php_fopen_wrapper.c:zend_string_efree Unexecuted instantiation: proc_open.c:zend_string_efree Unexecuted instantiation: quot_print.c:zend_string_efree Unexecuted instantiation: scanf.c:zend_string_efree Unexecuted instantiation: sha1.c:zend_string_efree Unexecuted instantiation: soundex.c:zend_string_efree Unexecuted instantiation: streamsfuncs.c:zend_string_efree Unexecuted instantiation: string.c:zend_string_efree Unexecuted instantiation: strnatcmp.c:zend_string_efree Unexecuted instantiation: syslog.c:zend_string_efree Unexecuted instantiation: type.c:zend_string_efree Unexecuted instantiation: uniqid.c:zend_string_efree Unexecuted instantiation: url_scanner_ex.c:zend_string_efree Unexecuted instantiation: url.c:zend_string_efree Unexecuted instantiation: user_filters.c:zend_string_efree Unexecuted instantiation: uuencode.c:zend_string_efree var_unserializer.c:zend_string_efree Line | Count | Source | 343 | 172 | { | 344 | 172 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 345 | 172 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 346 | 172 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 347 | 172 | efree(s); | 348 | 172 | } |
Unexecuted instantiation: var.c:zend_string_efree Unexecuted instantiation: versioning.c:zend_string_efree Unexecuted instantiation: crypt_sha256.c:zend_string_efree Unexecuted instantiation: crypt_sha512.c:zend_string_efree Unexecuted instantiation: php_crypt_r.c:zend_string_efree Unexecuted instantiation: php_uri.c:zend_string_efree Unexecuted instantiation: php_uri_common.c:zend_string_efree Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_efree Unexecuted instantiation: uri_parser_whatwg.c:zend_string_efree Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_efree Unexecuted instantiation: explicit_bzero.c:zend_string_efree Unexecuted instantiation: fopen_wrappers.c:zend_string_efree Unexecuted instantiation: getopt.c:zend_string_efree Unexecuted instantiation: main.c:zend_string_efree Unexecuted instantiation: network.c:zend_string_efree Unexecuted instantiation: output.c:zend_string_efree Unexecuted instantiation: php_content_types.c:zend_string_efree Unexecuted instantiation: php_ini_builder.c:zend_string_efree Unexecuted instantiation: php_ini.c:zend_string_efree Unexecuted instantiation: php_glob.c:zend_string_efree Unexecuted instantiation: php_odbc_utils.c:zend_string_efree Unexecuted instantiation: php_open_temporary_file.c:zend_string_efree Unexecuted instantiation: php_scandir.c:zend_string_efree Unexecuted instantiation: php_syslog.c:zend_string_efree Unexecuted instantiation: php_ticks.c:zend_string_efree Unexecuted instantiation: php_variables.c:zend_string_efree Unexecuted instantiation: reentrancy.c:zend_string_efree Unexecuted instantiation: rfc1867.c:zend_string_efree Unexecuted instantiation: safe_bcmp.c:zend_string_efree Unexecuted instantiation: SAPI.c:zend_string_efree Unexecuted instantiation: snprintf.c:zend_string_efree Unexecuted instantiation: spprintf.c:zend_string_efree Unexecuted instantiation: strlcat.c:zend_string_efree Unexecuted instantiation: strlcpy.c:zend_string_efree Unexecuted instantiation: cast.c:zend_string_efree Unexecuted instantiation: filter.c:zend_string_efree Unexecuted instantiation: glob_wrapper.c:zend_string_efree Unexecuted instantiation: memory.c:zend_string_efree Unexecuted instantiation: mmap.c:zend_string_efree Unexecuted instantiation: plain_wrapper.c:zend_string_efree Unexecuted instantiation: stream_errors.c:zend_string_efree Unexecuted instantiation: streams.c:zend_string_efree Unexecuted instantiation: transports.c:zend_string_efree Unexecuted instantiation: userspace.c:zend_string_efree Unexecuted instantiation: xp_socket.c:zend_string_efree Unexecuted instantiation: block_pass.c:zend_string_efree Unexecuted instantiation: compact_literals.c:zend_string_efree Unexecuted instantiation: compact_vars.c:zend_string_efree Unexecuted instantiation: dce.c:zend_string_efree Unexecuted instantiation: dfa_pass.c:zend_string_efree Unexecuted instantiation: escape_analysis.c:zend_string_efree Unexecuted instantiation: nop_removal.c:zend_string_efree Unexecuted instantiation: optimize_func_calls.c:zend_string_efree Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_efree Unexecuted instantiation: pass1.c:zend_string_efree Unexecuted instantiation: pass3.c:zend_string_efree Unexecuted instantiation: sccp.c:zend_string_efree Unexecuted instantiation: scdf.c:zend_string_efree Unexecuted instantiation: zend_call_graph.c:zend_string_efree Unexecuted instantiation: zend_cfg.c:zend_string_efree Unexecuted instantiation: zend_dfg.c:zend_string_efree Unexecuted instantiation: zend_dump.c:zend_string_efree Unexecuted instantiation: zend_func_info.c:zend_string_efree Unexecuted instantiation: zend_inference.c:zend_string_efree Unexecuted instantiation: zend_optimizer.c:zend_string_efree Unexecuted instantiation: zend_ssa.c:zend_string_efree Unexecuted instantiation: zend_alloc.c:zend_string_efree zend_API.c:zend_string_efree Line | Count | Source | 343 | 80 | { | 344 | 80 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 345 | 80 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 346 | 80 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 347 | 80 | efree(s); | 348 | 80 | } |
Unexecuted instantiation: zend_ast.c:zend_string_efree Unexecuted instantiation: zend_attributes.c:zend_string_efree Unexecuted instantiation: zend_autoload.c:zend_string_efree Unexecuted instantiation: zend_builtin_functions.c:zend_string_efree Unexecuted instantiation: zend_call_stack.c:zend_string_efree Unexecuted instantiation: zend_closures.c:zend_string_efree zend_compile.c:zend_string_efree Line | Count | Source | 343 | 1.00k | { | 344 | 1.00k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 345 | 1.00k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 346 | 1.00k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 347 | 1.00k | efree(s); | 348 | 1.00k | } |
zend_constants.c:zend_string_efree Line | Count | Source | 343 | 50.4k | { | 344 | 50.4k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 345 | 50.4k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 346 | 50.4k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 347 | 50.4k | efree(s); | 348 | 50.4k | } |
Unexecuted instantiation: zend_cpuinfo.c:zend_string_efree Unexecuted instantiation: zend_default_classes.c:zend_string_efree Unexecuted instantiation: zend_dtrace.c:zend_string_efree Unexecuted instantiation: zend_enum.c:zend_string_efree Unexecuted instantiation: zend_exceptions.c:zend_string_efree Unexecuted instantiation: zend_execute_API.c:zend_string_efree Unexecuted instantiation: zend_execute.c:zend_string_efree Unexecuted instantiation: zend_extensions.c:zend_string_efree Unexecuted instantiation: zend_fibers.c:zend_string_efree Unexecuted instantiation: zend_float.c:zend_string_efree Unexecuted instantiation: zend_gc.c:zend_string_efree Unexecuted instantiation: zend_gdb.c:zend_string_efree Unexecuted instantiation: zend_generators.c:zend_string_efree Unexecuted instantiation: zend_hash.c:zend_string_efree Unexecuted instantiation: zend_highlight.c:zend_string_efree Unexecuted instantiation: zend_hrtime.c:zend_string_efree zend_inheritance.c:zend_string_efree Line | Count | Source | 343 | 666 | { | 344 | 666 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 345 | 666 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 346 | 666 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 347 | 666 | efree(s); | 348 | 666 | } |
Unexecuted instantiation: zend_ini_parser.c:zend_string_efree Unexecuted instantiation: zend_ini_scanner.c:zend_string_efree Unexecuted instantiation: zend_ini.c:zend_string_efree Unexecuted instantiation: zend_interfaces.c:zend_string_efree Unexecuted instantiation: zend_iterators.c:zend_string_efree Unexecuted instantiation: zend_language_parser.c:zend_string_efree zend_language_scanner.c:zend_string_efree Line | Count | Source | 343 | 96.9k | { | 344 | 96.9k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 345 | 96.9k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 346 | 96.9k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 347 | 96.9k | efree(s); | 348 | 96.9k | } |
Unexecuted instantiation: zend_lazy_objects.c:zend_string_efree Unexecuted instantiation: zend_list.c:zend_string_efree Unexecuted instantiation: zend_llist.c:zend_string_efree Unexecuted instantiation: zend_multibyte.c:zend_string_efree Unexecuted instantiation: zend_object_handlers.c:zend_string_efree Unexecuted instantiation: zend_objects_API.c:zend_string_efree Unexecuted instantiation: zend_objects.c:zend_string_efree Unexecuted instantiation: zend_observer.c:zend_string_efree Unexecuted instantiation: zend_opcode.c:zend_string_efree Unexecuted instantiation: zend_operators.c:zend_string_efree Unexecuted instantiation: zend_property_hooks.c:zend_string_efree Unexecuted instantiation: zend_ptr_stack.c:zend_string_efree Unexecuted instantiation: zend_signal.c:zend_string_efree Unexecuted instantiation: zend_smart_str.c:zend_string_efree Unexecuted instantiation: zend_sort.c:zend_string_efree Unexecuted instantiation: zend_stack.c:zend_string_efree Unexecuted instantiation: zend_stream.c:zend_string_efree Unexecuted instantiation: zend_string.c:zend_string_efree Unexecuted instantiation: zend_strtod.c:zend_string_efree Unexecuted instantiation: zend_system_id.c:zend_string_efree Unexecuted instantiation: zend_variables.c:zend_string_efree Unexecuted instantiation: zend_virtual_cwd.c:zend_string_efree Unexecuted instantiation: zend_vm_opcodes.c:zend_string_efree Unexecuted instantiation: zend_weakrefs.c:zend_string_efree Unexecuted instantiation: zend.c:zend_string_efree Unexecuted instantiation: internal_functions_cli.c:zend_string_efree Unexecuted instantiation: fuzzer-parser.c:zend_string_efree Unexecuted instantiation: fuzzer-sapi.c:zend_string_efree Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_efree Unexecuted instantiation: fuzzer-exif.c:zend_string_efree Unexecuted instantiation: fuzzer-unserialize.c:zend_string_efree Unexecuted instantiation: fuzzer-function-jit.c:zend_string_efree Unexecuted instantiation: fuzzer-json.c:zend_string_efree Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_efree Unexecuted instantiation: fuzzer-execute.c:zend_string_efree |
349 | | |
350 | | static zend_always_inline void zend_string_release(zend_string *s) |
351 | 31.3M | { |
352 | 31.3M | if (!ZSTR_IS_INTERNED(s)) { |
353 | 20.1M | if (GC_DELREF(s) == 0) { |
354 | 10.4M | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); |
355 | 10.4M | } |
356 | 20.1M | } |
357 | 31.3M | } php_date.c:zend_string_release Line | Count | Source | 351 | 23 | { | 352 | 23 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 20 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 19 | } | 356 | 20 | } | 357 | 23 | } |
Unexecuted instantiation: astro.c:zend_string_release Unexecuted instantiation: dow.c:zend_string_release Unexecuted instantiation: parse_date.c:zend_string_release Unexecuted instantiation: parse_tz.c:zend_string_release Unexecuted instantiation: parse_posix.c:zend_string_release Unexecuted instantiation: timelib.c:zend_string_release Unexecuted instantiation: tm2unixtime.c:zend_string_release Unexecuted instantiation: unixtime2tm.c:zend_string_release Unexecuted instantiation: parse_iso_intervals.c:zend_string_release Unexecuted instantiation: interval.c:zend_string_release php_pcre.c:zend_string_release Line | Count | Source | 351 | 870 | { | 352 | 870 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 870 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 0 | } | 356 | 870 | } | 357 | 870 | } |
Unexecuted instantiation: exif.c:zend_string_release Unexecuted instantiation: hash_adler32.c:zend_string_release Unexecuted instantiation: hash_crc32.c:zend_string_release Unexecuted instantiation: hash_fnv.c:zend_string_release Unexecuted instantiation: hash_gost.c:zend_string_release Unexecuted instantiation: hash_haval.c:zend_string_release Unexecuted instantiation: hash_joaat.c:zend_string_release Unexecuted instantiation: hash_md.c:zend_string_release Unexecuted instantiation: hash_murmur.c:zend_string_release Unexecuted instantiation: hash_ripemd.c:zend_string_release Unexecuted instantiation: hash_sha_ni.c:zend_string_release Unexecuted instantiation: hash_sha_sse2.c:zend_string_release Unexecuted instantiation: hash_sha.c:zend_string_release Unexecuted instantiation: hash_sha3.c:zend_string_release Unexecuted instantiation: hash_snefru.c:zend_string_release Unexecuted instantiation: hash_tiger.c:zend_string_release Unexecuted instantiation: hash_whirlpool.c:zend_string_release Unexecuted instantiation: hash_xxhash.c:zend_string_release hash.c:zend_string_release Line | Count | Source | 351 | 3.95k | { | 352 | 3.95k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 3.95k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 207 | } | 356 | 3.95k | } | 357 | 3.95k | } |
Unexecuted instantiation: json_encoder.c:zend_string_release Unexecuted instantiation: json_parser.tab.c:zend_string_release Unexecuted instantiation: json_scanner.c:zend_string_release Unexecuted instantiation: json.c:zend_string_release Unexecuted instantiation: php_lexbor.c:zend_string_release Unexecuted instantiation: shared_alloc_mmap.c:zend_string_release Unexecuted instantiation: shared_alloc_posix.c:zend_string_release Unexecuted instantiation: shared_alloc_shm.c:zend_string_release Unexecuted instantiation: zend_accelerator_api.c:zend_string_release Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_release Unexecuted instantiation: zend_accelerator_debug.c:zend_string_release Unexecuted instantiation: zend_accelerator_hash.c:zend_string_release zend_accelerator_module.c:zend_string_release Line | Count | Source | 351 | 4 | { | 352 | 4 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 4 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 4 | } | 356 | 4 | } | 357 | 4 | } |
Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_release Unexecuted instantiation: zend_file_cache.c:zend_string_release Unexecuted instantiation: zend_persist_calc.c:zend_string_release Unexecuted instantiation: zend_persist.c:zend_string_release Unexecuted instantiation: zend_shared_alloc.c:zend_string_release ZendAccelerator.c:zend_string_release Line | Count | Source | 351 | 7.15M | { | 352 | 7.15M | if (!ZSTR_IS_INTERNED(s)) { | 353 | 4.01M | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 3.30M | } | 356 | 4.01M | } | 357 | 7.15M | } |
Unexecuted instantiation: ir_cfg.c:zend_string_release Unexecuted instantiation: ir_check.c:zend_string_release Unexecuted instantiation: ir_dump.c:zend_string_release Unexecuted instantiation: ir_emit.c:zend_string_release Unexecuted instantiation: ir_gcm.c:zend_string_release Unexecuted instantiation: ir_gdb.c:zend_string_release Unexecuted instantiation: ir_patch.c:zend_string_release Unexecuted instantiation: ir_perf.c:zend_string_release Unexecuted instantiation: ir_ra.c:zend_string_release Unexecuted instantiation: ir_save.c:zend_string_release Unexecuted instantiation: ir_sccp.c:zend_string_release Unexecuted instantiation: ir_strtab.c:zend_string_release Unexecuted instantiation: ir.c:zend_string_release Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_release Unexecuted instantiation: zend_jit.c:zend_string_release Unexecuted instantiation: csprng.c:zend_string_release Unexecuted instantiation: engine_mt19937.c:zend_string_release Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_release Unexecuted instantiation: engine_secure.c:zend_string_release Unexecuted instantiation: engine_user.c:zend_string_release Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_release Unexecuted instantiation: gammasection.c:zend_string_release Unexecuted instantiation: random.c:zend_string_release Unexecuted instantiation: randomizer.c:zend_string_release Unexecuted instantiation: zend_utils.c:zend_string_release php_reflection.c:zend_string_release Line | Count | Source | 351 | 4.68k | { | 352 | 4.68k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 1.00k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 798 | } | 356 | 1.00k | } | 357 | 4.68k | } |
Unexecuted instantiation: php_spl.c:zend_string_release Unexecuted instantiation: spl_array.c:zend_string_release Unexecuted instantiation: spl_directory.c:zend_string_release Unexecuted instantiation: spl_dllist.c:zend_string_release Unexecuted instantiation: spl_exceptions.c:zend_string_release Unexecuted instantiation: spl_fixedarray.c:zend_string_release Unexecuted instantiation: spl_functions.c:zend_string_release Unexecuted instantiation: spl_heap.c:zend_string_release spl_iterators.c:zend_string_release Line | Count | Source | 351 | 8.11k | { | 352 | 8.11k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 4.63k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 4.63k | } | 356 | 4.63k | } | 357 | 8.11k | } |
Unexecuted instantiation: spl_observer.c:zend_string_release array.c:zend_string_release Line | Count | Source | 351 | 49 | { | 352 | 49 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 0 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 0 | } | 356 | 0 | } | 357 | 49 | } |
Unexecuted instantiation: assert.c:zend_string_release Unexecuted instantiation: base64.c:zend_string_release basic_functions.c:zend_string_release Line | Count | Source | 351 | 535 | { | 352 | 535 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 430 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 417 | } | 356 | 430 | } | 357 | 535 | } |
Unexecuted instantiation: browscap.c:zend_string_release Unexecuted instantiation: crc32_x86.c:zend_string_release Unexecuted instantiation: crc32.c:zend_string_release Unexecuted instantiation: credits.c:zend_string_release Unexecuted instantiation: crypt.c:zend_string_release Unexecuted instantiation: css.c:zend_string_release Unexecuted instantiation: datetime.c:zend_string_release Unexecuted instantiation: dir.c:zend_string_release Unexecuted instantiation: dl.c:zend_string_release Unexecuted instantiation: dns.c:zend_string_release Unexecuted instantiation: exec.c:zend_string_release Unexecuted instantiation: file.c:zend_string_release Unexecuted instantiation: filestat.c:zend_string_release Unexecuted instantiation: filters.c:zend_string_release Unexecuted instantiation: flock_compat.c:zend_string_release Unexecuted instantiation: formatted_print.c:zend_string_release Unexecuted instantiation: fsock.c:zend_string_release Unexecuted instantiation: ftok.c:zend_string_release Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_release Unexecuted instantiation: head.c:zend_string_release Unexecuted instantiation: hrtime.c:zend_string_release Unexecuted instantiation: html.c:zend_string_release Unexecuted instantiation: http_fopen_wrapper.c:zend_string_release Unexecuted instantiation: http.c:zend_string_release Unexecuted instantiation: image.c:zend_string_release Unexecuted instantiation: incomplete_class.c:zend_string_release Unexecuted instantiation: info.c:zend_string_release Unexecuted instantiation: iptc.c:zend_string_release Unexecuted instantiation: levenshtein.c:zend_string_release Unexecuted instantiation: link.c:zend_string_release Unexecuted instantiation: mail.c:zend_string_release Unexecuted instantiation: math.c:zend_string_release Unexecuted instantiation: md5.c:zend_string_release Unexecuted instantiation: metaphone.c:zend_string_release Unexecuted instantiation: microtime.c:zend_string_release Unexecuted instantiation: net.c:zend_string_release Unexecuted instantiation: pack.c:zend_string_release Unexecuted instantiation: pageinfo.c:zend_string_release Unexecuted instantiation: password.c:zend_string_release Unexecuted instantiation: php_fopen_wrapper.c:zend_string_release Unexecuted instantiation: proc_open.c:zend_string_release Unexecuted instantiation: quot_print.c:zend_string_release Unexecuted instantiation: scanf.c:zend_string_release Unexecuted instantiation: sha1.c:zend_string_release Unexecuted instantiation: soundex.c:zend_string_release Unexecuted instantiation: streamsfuncs.c:zend_string_release Unexecuted instantiation: string.c:zend_string_release Unexecuted instantiation: strnatcmp.c:zend_string_release Unexecuted instantiation: syslog.c:zend_string_release Unexecuted instantiation: type.c:zend_string_release Unexecuted instantiation: uniqid.c:zend_string_release Unexecuted instantiation: url_scanner_ex.c:zend_string_release Unexecuted instantiation: url.c:zend_string_release user_filters.c:zend_string_release Line | Count | Source | 351 | 177 | { | 352 | 177 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 177 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 177 | } | 356 | 177 | } | 357 | 177 | } |
Unexecuted instantiation: uuencode.c:zend_string_release Unexecuted instantiation: var_unserializer.c:zend_string_release var.c:zend_string_release Line | Count | Source | 351 | 952 | { | 352 | 952 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 71 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 41 | } | 356 | 71 | } | 357 | 952 | } |
Unexecuted instantiation: versioning.c:zend_string_release Unexecuted instantiation: crypt_sha256.c:zend_string_release Unexecuted instantiation: crypt_sha512.c:zend_string_release Unexecuted instantiation: php_crypt_r.c:zend_string_release Unexecuted instantiation: php_uri.c:zend_string_release Unexecuted instantiation: php_uri_common.c:zend_string_release Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_release Unexecuted instantiation: uri_parser_whatwg.c:zend_string_release Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_release Unexecuted instantiation: explicit_bzero.c:zend_string_release fopen_wrappers.c:zend_string_release Line | Count | Source | 351 | 20 | { | 352 | 20 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 20 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 20 | } | 356 | 20 | } | 357 | 20 | } |
Unexecuted instantiation: getopt.c:zend_string_release main.c:zend_string_release Line | Count | Source | 351 | 8.13M | { | 352 | 8.13M | if (!ZSTR_IS_INTERNED(s)) { | 353 | 3.29M | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 2.38M | } | 356 | 3.29M | } | 357 | 8.13M | } |
Unexecuted instantiation: network.c:zend_string_release output.c:zend_string_release Line | Count | Source | 351 | 51.4k | { | 352 | 51.4k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 4.89k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 1.84k | } | 356 | 4.89k | } | 357 | 51.4k | } |
Unexecuted instantiation: php_content_types.c:zend_string_release Unexecuted instantiation: php_ini_builder.c:zend_string_release Unexecuted instantiation: php_ini.c:zend_string_release Unexecuted instantiation: php_glob.c:zend_string_release Unexecuted instantiation: php_odbc_utils.c:zend_string_release Unexecuted instantiation: php_open_temporary_file.c:zend_string_release Unexecuted instantiation: php_scandir.c:zend_string_release Unexecuted instantiation: php_syslog.c:zend_string_release Unexecuted instantiation: php_ticks.c:zend_string_release Unexecuted instantiation: php_variables.c:zend_string_release Unexecuted instantiation: reentrancy.c:zend_string_release Unexecuted instantiation: rfc1867.c:zend_string_release Unexecuted instantiation: safe_bcmp.c:zend_string_release Unexecuted instantiation: SAPI.c:zend_string_release Unexecuted instantiation: snprintf.c:zend_string_release Unexecuted instantiation: spprintf.c:zend_string_release Unexecuted instantiation: strlcat.c:zend_string_release Unexecuted instantiation: strlcpy.c:zend_string_release Unexecuted instantiation: cast.c:zend_string_release Unexecuted instantiation: filter.c:zend_string_release Unexecuted instantiation: glob_wrapper.c:zend_string_release memory.c:zend_string_release Line | Count | Source | 351 | 1.93k | { | 352 | 1.93k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 1.93k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 1.89k | } | 356 | 1.93k | } | 357 | 1.93k | } |
Unexecuted instantiation: mmap.c:zend_string_release Unexecuted instantiation: plain_wrapper.c:zend_string_release stream_errors.c:zend_string_release Line | Count | Source | 351 | 3.03k | { | 352 | 3.03k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 3.03k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 3.03k | } | 356 | 3.03k | } | 357 | 3.03k | } |
Unexecuted instantiation: streams.c:zend_string_release Unexecuted instantiation: transports.c:zend_string_release Unexecuted instantiation: userspace.c:zend_string_release Unexecuted instantiation: xp_socket.c:zend_string_release Unexecuted instantiation: block_pass.c:zend_string_release Unexecuted instantiation: compact_literals.c:zend_string_release Unexecuted instantiation: compact_vars.c:zend_string_release Unexecuted instantiation: dce.c:zend_string_release dfa_pass.c:zend_string_release Line | Count | Source | 351 | 371 | { | 352 | 371 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 335 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 327 | } | 356 | 335 | } | 357 | 371 | } |
Unexecuted instantiation: escape_analysis.c:zend_string_release Unexecuted instantiation: nop_removal.c:zend_string_release Unexecuted instantiation: optimize_func_calls.c:zend_string_release Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_release Unexecuted instantiation: pass1.c:zend_string_release Unexecuted instantiation: pass3.c:zend_string_release Unexecuted instantiation: sccp.c:zend_string_release Unexecuted instantiation: scdf.c:zend_string_release Unexecuted instantiation: zend_call_graph.c:zend_string_release Unexecuted instantiation: zend_cfg.c:zend_string_release Unexecuted instantiation: zend_dfg.c:zend_string_release Unexecuted instantiation: zend_dump.c:zend_string_release Unexecuted instantiation: zend_func_info.c:zend_string_release Unexecuted instantiation: zend_inference.c:zend_string_release Unexecuted instantiation: zend_optimizer.c:zend_string_release Unexecuted instantiation: zend_ssa.c:zend_string_release Unexecuted instantiation: zend_alloc.c:zend_string_release zend_API.c:zend_string_release Line | Count | Source | 351 | 39.3k | { | 352 | 39.3k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 3.88k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 3.65k | } | 356 | 3.88k | } | 357 | 39.3k | } |
zend_ast.c:zend_string_release Line | Count | Source | 351 | 7.95k | { | 352 | 7.95k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 7.89k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 7.88k | } | 356 | 7.89k | } | 357 | 7.95k | } |
zend_attributes.c:zend_string_release Line | Count | Source | 351 | 954k | { | 352 | 954k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 951k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 948k | } | 356 | 951k | } | 357 | 954k | } |
Unexecuted instantiation: zend_autoload.c:zend_string_release zend_builtin_functions.c:zend_string_release Line | Count | Source | 351 | 384 | { | 352 | 384 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 348 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 348 | } | 356 | 348 | } | 357 | 384 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_release zend_closures.c:zend_string_release Line | Count | Source | 351 | 984 | { | 352 | 984 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 223 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 75 | } | 356 | 223 | } | 357 | 984 | } |
zend_compile.c:zend_string_release Line | Count | Source | 351 | 5.24M | { | 352 | 5.24M | if (!ZSTR_IS_INTERNED(s)) { | 353 | 5.21M | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 2.56M | } | 356 | 5.21M | } | 357 | 5.24M | } |
zend_constants.c:zend_string_release Line | Count | Source | 351 | 683 | { | 352 | 683 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 83 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 1 | } | 356 | 83 | } | 357 | 683 | } |
Unexecuted instantiation: zend_cpuinfo.c:zend_string_release Unexecuted instantiation: zend_default_classes.c:zend_string_release Unexecuted instantiation: zend_dtrace.c:zend_string_release zend_enum.c:zend_string_release Line | Count | Source | 351 | 2.31k | { | 352 | 2.31k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 12 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 12 | } | 356 | 12 | } | 357 | 2.31k | } |
zend_exceptions.c:zend_string_release Line | Count | Source | 351 | 732k | { | 352 | 732k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 732k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 0 | } | 356 | 732k | } | 357 | 732k | } |
Unexecuted instantiation: zend_execute_API.c:zend_string_release zend_execute.c:zend_string_release Line | Count | Source | 351 | 16.6k | { | 352 | 16.6k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 9.74k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 1.52k | } | 356 | 9.74k | } | 357 | 16.6k | } |
Unexecuted instantiation: zend_extensions.c:zend_string_release Unexecuted instantiation: zend_fibers.c:zend_string_release Unexecuted instantiation: zend_float.c:zend_string_release Unexecuted instantiation: zend_gc.c:zend_string_release Unexecuted instantiation: zend_gdb.c:zend_string_release Unexecuted instantiation: zend_generators.c:zend_string_release zend_hash.c:zend_string_release Line | Count | Source | 351 | 4.92M | { | 352 | 4.92M | if (!ZSTR_IS_INTERNED(s)) { | 353 | 2.06M | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 177k | } | 356 | 2.06M | } | 357 | 4.92M | } |
Unexecuted instantiation: zend_highlight.c:zend_string_release Unexecuted instantiation: zend_hrtime.c:zend_string_release zend_inheritance.c:zend_string_release Line | Count | Source | 351 | 4.19k | { | 352 | 4.19k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 2.09k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 1.61k | } | 356 | 2.09k | } | 357 | 4.19k | } |
zend_ini_parser.c:zend_string_release Line | Count | Source | 351 | 727k | { | 352 | 727k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 719k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 448k | } | 356 | 719k | } | 357 | 727k | } |
Unexecuted instantiation: zend_ini_scanner.c:zend_string_release zend_ini.c:zend_string_release Line | Count | Source | 351 | 117k | { | 352 | 117k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 116k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 58.6k | } | 356 | 116k | } | 357 | 117k | } |
Unexecuted instantiation: zend_interfaces.c:zend_string_release Unexecuted instantiation: zend_iterators.c:zend_string_release Unexecuted instantiation: zend_language_parser.c:zend_string_release zend_language_scanner.c:zend_string_release Line | Count | Source | 351 | 30.2k | { | 352 | 30.2k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 30.2k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 0 | } | 356 | 30.2k | } | 357 | 30.2k | } |
Unexecuted instantiation: zend_lazy_objects.c:zend_string_release Unexecuted instantiation: zend_list.c:zend_string_release Unexecuted instantiation: zend_llist.c:zend_string_release Unexecuted instantiation: zend_multibyte.c:zend_string_release zend_object_handlers.c:zend_string_release Line | Count | Source | 351 | 335 | { | 352 | 335 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 335 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 286 | } | 356 | 335 | } | 357 | 335 | } |
Unexecuted instantiation: zend_objects_API.c:zend_string_release Unexecuted instantiation: zend_objects.c:zend_string_release Unexecuted instantiation: zend_observer.c:zend_string_release zend_opcode.c:zend_string_release Line | Count | Source | 351 | 446k | { | 352 | 446k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 372k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 368k | } | 356 | 372k | } | 357 | 446k | } |
zend_operators.c:zend_string_release Line | Count | Source | 351 | 14.1k | { | 352 | 14.1k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 10.1k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 10.1k | } | 356 | 10.1k | } | 357 | 14.1k | } |
zend_property_hooks.c:zend_string_release Line | Count | Source | 351 | 55 | { | 352 | 55 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 55 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 44 | } | 356 | 55 | } | 357 | 55 | } |
Unexecuted instantiation: zend_ptr_stack.c:zend_string_release Unexecuted instantiation: zend_signal.c:zend_string_release Unexecuted instantiation: zend_smart_str.c:zend_string_release Unexecuted instantiation: zend_sort.c:zend_string_release Unexecuted instantiation: zend_stack.c:zend_string_release zend_stream.c:zend_string_release Line | Count | Source | 351 | 288k | { | 352 | 288k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 194k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 85.3k | } | 356 | 194k | } | 357 | 288k | } |
zend_string.c:zend_string_release Line | Count | Source | 351 | 4.70k | { | 352 | 4.70k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 4.70k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 4.28k | } | 356 | 4.70k | } | 357 | 4.70k | } |
Unexecuted instantiation: zend_strtod.c:zend_string_release Unexecuted instantiation: zend_system_id.c:zend_string_release Unexecuted instantiation: zend_variables.c:zend_string_release Unexecuted instantiation: zend_virtual_cwd.c:zend_string_release Unexecuted instantiation: zend_vm_opcodes.c:zend_string_release Unexecuted instantiation: zend_weakrefs.c:zend_string_release zend.c:zend_string_release Line | Count | Source | 351 | 2.35M | { | 352 | 2.35M | if (!ZSTR_IS_INTERNED(s)) { | 353 | 2.35M | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 68.8k | } | 356 | 2.35M | } | 357 | 2.35M | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_release Unexecuted instantiation: fuzzer-parser.c:zend_string_release Unexecuted instantiation: fuzzer-sapi.c:zend_string_release fuzzer-tracing-jit.c:zend_string_release Line | Count | Source | 351 | 18.1k | { | 352 | 18.1k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 18.1k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 18.1k | } | 356 | 18.1k | } | 357 | 18.1k | } |
Unexecuted instantiation: fuzzer-exif.c:zend_string_release Unexecuted instantiation: fuzzer-unserialize.c:zend_string_release fuzzer-function-jit.c:zend_string_release Line | Count | Source | 351 | 16.4k | { | 352 | 16.4k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 16.4k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 16.4k | } | 356 | 16.4k | } | 357 | 16.4k | } |
Unexecuted instantiation: fuzzer-json.c:zend_string_release Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_release Unexecuted instantiation: fuzzer-execute.c:zend_string_release |
358 | | |
359 | | static zend_always_inline void zend_string_release_ex(zend_string *s, bool persistent) |
360 | 12.5M | { |
361 | 12.5M | if (!ZSTR_IS_INTERNED(s)) { |
362 | 8.09M | if (GC_DELREF(s) == 0) { |
363 | 3.13M | if (persistent) { |
364 | 400 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); |
365 | 400 | free(s); |
366 | 3.13M | } else { |
367 | 3.13M | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); |
368 | 3.13M | efree(s); |
369 | 3.13M | } |
370 | 3.13M | } |
371 | 8.09M | } |
372 | 12.5M | } php_date.c:zend_string_release_ex Line | Count | Source | 360 | 19.5k | { | 361 | 19.5k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 18.8k | if (GC_DELREF(s) == 0) { | 363 | 18.8k | if (persistent) { | 364 | 112 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 112 | free(s); | 366 | 18.7k | } else { | 367 | 18.7k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 18.7k | efree(s); | 369 | 18.7k | } | 370 | 18.8k | } | 371 | 18.8k | } | 372 | 19.5k | } |
Unexecuted instantiation: astro.c:zend_string_release_ex Unexecuted instantiation: dow.c:zend_string_release_ex Unexecuted instantiation: parse_date.c:zend_string_release_ex Unexecuted instantiation: parse_tz.c:zend_string_release_ex Unexecuted instantiation: parse_posix.c:zend_string_release_ex Unexecuted instantiation: timelib.c:zend_string_release_ex Unexecuted instantiation: tm2unixtime.c:zend_string_release_ex Unexecuted instantiation: unixtime2tm.c:zend_string_release_ex Unexecuted instantiation: parse_iso_intervals.c:zend_string_release_ex Unexecuted instantiation: interval.c:zend_string_release_ex php_pcre.c:zend_string_release_ex Line | Count | Source | 360 | 328 | { | 361 | 328 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 38 | if (GC_DELREF(s) == 0) { | 363 | 38 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 38 | } else { | 367 | 38 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 38 | efree(s); | 369 | 38 | } | 370 | 38 | } | 371 | 38 | } | 372 | 328 | } |
Unexecuted instantiation: exif.c:zend_string_release_ex Unexecuted instantiation: hash_adler32.c:zend_string_release_ex Unexecuted instantiation: hash_crc32.c:zend_string_release_ex Unexecuted instantiation: hash_fnv.c:zend_string_release_ex Unexecuted instantiation: hash_gost.c:zend_string_release_ex Unexecuted instantiation: hash_haval.c:zend_string_release_ex Unexecuted instantiation: hash_joaat.c:zend_string_release_ex Unexecuted instantiation: hash_md.c:zend_string_release_ex Unexecuted instantiation: hash_murmur.c:zend_string_release_ex Unexecuted instantiation: hash_ripemd.c:zend_string_release_ex Unexecuted instantiation: hash_sha_ni.c:zend_string_release_ex Unexecuted instantiation: hash_sha_sse2.c:zend_string_release_ex Unexecuted instantiation: hash_sha.c:zend_string_release_ex Unexecuted instantiation: hash_sha3.c:zend_string_release_ex Unexecuted instantiation: hash_snefru.c:zend_string_release_ex Unexecuted instantiation: hash_tiger.c:zend_string_release_ex Unexecuted instantiation: hash_whirlpool.c:zend_string_release_ex Unexecuted instantiation: hash_xxhash.c:zend_string_release_ex Unexecuted instantiation: hash.c:zend_string_release_ex Unexecuted instantiation: json_encoder.c:zend_string_release_ex json_parser.tab.c:zend_string_release_ex Line | Count | Source | 360 | 57.1k | { | 361 | 57.1k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 37.8k | if (GC_DELREF(s) == 0) { | 363 | 17.8k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 17.8k | } else { | 367 | 17.8k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 17.8k | efree(s); | 369 | 17.8k | } | 370 | 17.8k | } | 371 | 37.8k | } | 372 | 57.1k | } |
Unexecuted instantiation: json_scanner.c:zend_string_release_ex json.c:zend_string_release_ex Line | Count | Source | 360 | 86 | { | 361 | 86 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 86 | if (GC_DELREF(s) == 0) { | 363 | 86 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 86 | } else { | 367 | 86 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 86 | efree(s); | 369 | 86 | } | 370 | 86 | } | 371 | 86 | } | 372 | 86 | } |
Unexecuted instantiation: php_lexbor.c:zend_string_release_ex Unexecuted instantiation: shared_alloc_mmap.c:zend_string_release_ex Unexecuted instantiation: shared_alloc_posix.c:zend_string_release_ex Unexecuted instantiation: shared_alloc_shm.c:zend_string_release_ex Unexecuted instantiation: zend_accelerator_api.c:zend_string_release_ex Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_release_ex Unexecuted instantiation: zend_accelerator_debug.c:zend_string_release_ex Unexecuted instantiation: zend_accelerator_hash.c:zend_string_release_ex Unexecuted instantiation: zend_accelerator_module.c:zend_string_release_ex zend_accelerator_util_funcs.c:zend_string_release_ex Line | Count | Source | 360 | 76 | { | 361 | 76 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 76 | if (GC_DELREF(s) == 0) { | 363 | 76 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 76 | } else { | 367 | 76 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 76 | efree(s); | 369 | 76 | } | 370 | 76 | } | 371 | 76 | } | 372 | 76 | } |
Unexecuted instantiation: zend_file_cache.c:zend_string_release_ex zend_persist_calc.c:zend_string_release_ex Line | Count | Source | 360 | 1.84k | { | 361 | 1.84k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 1.84k | if (GC_DELREF(s) == 0) { | 363 | 1.58k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 1.58k | } else { | 367 | 1.58k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 1.58k | efree(s); | 369 | 1.58k | } | 370 | 1.58k | } | 371 | 1.84k | } | 372 | 1.84k | } |
zend_persist.c:zend_string_release_ex Line | Count | Source | 360 | 171k | { | 361 | 171k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 170k | if (GC_DELREF(s) == 0) { | 363 | 46.1k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 46.1k | } else { | 367 | 46.1k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 46.1k | efree(s); | 369 | 46.1k | } | 370 | 46.1k | } | 371 | 170k | } | 372 | 171k | } |
Unexecuted instantiation: zend_shared_alloc.c:zend_string_release_ex ZendAccelerator.c:zend_string_release_ex Line | Count | Source | 360 | 94.7k | { | 361 | 94.7k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 94.7k | if (GC_DELREF(s) == 0) { | 363 | 94.7k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 94.7k | } else { | 367 | 94.7k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 94.7k | efree(s); | 369 | 94.7k | } | 370 | 94.7k | } | 371 | 94.7k | } | 372 | 94.7k | } |
Unexecuted instantiation: ir_cfg.c:zend_string_release_ex Unexecuted instantiation: ir_check.c:zend_string_release_ex Unexecuted instantiation: ir_dump.c:zend_string_release_ex Unexecuted instantiation: ir_emit.c:zend_string_release_ex Unexecuted instantiation: ir_gcm.c:zend_string_release_ex Unexecuted instantiation: ir_gdb.c:zend_string_release_ex Unexecuted instantiation: ir_patch.c:zend_string_release_ex Unexecuted instantiation: ir_perf.c:zend_string_release_ex Unexecuted instantiation: ir_ra.c:zend_string_release_ex Unexecuted instantiation: ir_save.c:zend_string_release_ex Unexecuted instantiation: ir_sccp.c:zend_string_release_ex Unexecuted instantiation: ir_strtab.c:zend_string_release_ex Unexecuted instantiation: ir.c:zend_string_release_ex Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_release_ex Unexecuted instantiation: zend_jit.c:zend_string_release_ex Unexecuted instantiation: csprng.c:zend_string_release_ex Unexecuted instantiation: engine_mt19937.c:zend_string_release_ex Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_release_ex Unexecuted instantiation: engine_secure.c:zend_string_release_ex Unexecuted instantiation: engine_user.c:zend_string_release_ex Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_release_ex Unexecuted instantiation: gammasection.c:zend_string_release_ex random.c:zend_string_release_ex Line | Count | Source | 360 | 16 | { | 361 | 16 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 16 | if (GC_DELREF(s) == 0) { | 363 | 16 | if (persistent) { | 364 | 16 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 16 | free(s); | 366 | 16 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 16 | } | 371 | 16 | } | 372 | 16 | } |
Unexecuted instantiation: randomizer.c:zend_string_release_ex Unexecuted instantiation: zend_utils.c:zend_string_release_ex php_reflection.c:zend_string_release_ex Line | Count | Source | 360 | 4.34k | { | 361 | 4.34k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 1.97k | if (GC_DELREF(s) == 0) { | 363 | 1.81k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 1.81k | } else { | 367 | 1.81k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 1.81k | efree(s); | 369 | 1.81k | } | 370 | 1.81k | } | 371 | 1.97k | } | 372 | 4.34k | } |
Unexecuted instantiation: php_spl.c:zend_string_release_ex spl_array.c:zend_string_release_ex Line | Count | Source | 360 | 80 | { | 361 | 80 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 0 | if (GC_DELREF(s) == 0) { | 363 | 0 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 0 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 0 | } | 371 | 0 | } | 372 | 80 | } |
spl_directory.c:zend_string_release_ex Line | Count | Source | 360 | 256 | { | 361 | 256 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 0 | if (GC_DELREF(s) == 0) { | 363 | 0 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 0 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 0 | } | 371 | 0 | } | 372 | 256 | } |
spl_dllist.c:zend_string_release_ex Line | Count | Source | 360 | 64 | { | 361 | 64 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 0 | if (GC_DELREF(s) == 0) { | 363 | 0 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 0 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 0 | } | 371 | 0 | } | 372 | 64 | } |
Unexecuted instantiation: spl_exceptions.c:zend_string_release_ex Unexecuted instantiation: spl_fixedarray.c:zend_string_release_ex spl_functions.c:zend_string_release_ex Line | Count | Source | 360 | 85 | { | 361 | 85 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 85 | if (GC_DELREF(s) == 0) { | 363 | 0 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 0 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 0 | } | 371 | 85 | } | 372 | 85 | } |
spl_heap.c:zend_string_release_ex Line | Count | Source | 360 | 48 | { | 361 | 48 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 0 | if (GC_DELREF(s) == 0) { | 363 | 0 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 0 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 0 | } | 371 | 0 | } | 372 | 48 | } |
spl_iterators.c:zend_string_release_ex Line | Count | Source | 360 | 416 | { | 361 | 416 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 16 | if (GC_DELREF(s) == 0) { | 363 | 16 | if (persistent) { | 364 | 16 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 16 | free(s); | 366 | 16 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 16 | } | 371 | 16 | } | 372 | 416 | } |
spl_observer.c:zend_string_release_ex Line | Count | Source | 360 | 64 | { | 361 | 64 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 0 | if (GC_DELREF(s) == 0) { | 363 | 0 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 0 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 0 | } | 371 | 0 | } | 372 | 64 | } |
array.c:zend_string_release_ex Line | Count | Source | 360 | 2.01k | { | 361 | 2.01k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 192 | if (GC_DELREF(s) == 0) { | 363 | 187 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 187 | } else { | 367 | 187 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 187 | efree(s); | 369 | 187 | } | 370 | 187 | } | 371 | 192 | } | 372 | 2.01k | } |
assert.c:zend_string_release_ex Line | Count | Source | 360 | 78 | { | 361 | 78 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 43 | if (GC_DELREF(s) == 0) { | 363 | 39 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 39 | } else { | 367 | 39 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 39 | efree(s); | 369 | 39 | } | 370 | 39 | } | 371 | 43 | } | 372 | 78 | } |
Unexecuted instantiation: base64.c:zend_string_release_ex basic_functions.c:zend_string_release_ex Line | Count | Source | 360 | 664 | { | 361 | 664 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 104 | if (GC_DELREF(s) == 0) { | 363 | 72 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 72 | } else { | 367 | 72 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 72 | efree(s); | 369 | 72 | } | 370 | 72 | } | 371 | 104 | } | 372 | 664 | } |
Unexecuted instantiation: browscap.c:zend_string_release_ex Unexecuted instantiation: crc32_x86.c:zend_string_release_ex Unexecuted instantiation: crc32.c:zend_string_release_ex Unexecuted instantiation: credits.c:zend_string_release_ex Unexecuted instantiation: crypt.c:zend_string_release_ex Unexecuted instantiation: css.c:zend_string_release_ex Unexecuted instantiation: datetime.c:zend_string_release_ex dir.c:zend_string_release_ex Line | Count | Source | 360 | 16 | { | 361 | 16 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 16 | if (GC_DELREF(s) == 0) { | 363 | 16 | if (persistent) { | 364 | 16 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 16 | free(s); | 366 | 16 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 16 | } | 371 | 16 | } | 372 | 16 | } |
Unexecuted instantiation: dl.c:zend_string_release_ex Unexecuted instantiation: dns.c:zend_string_release_ex Unexecuted instantiation: exec.c:zend_string_release_ex Unexecuted instantiation: file.c:zend_string_release_ex Unexecuted instantiation: filestat.c:zend_string_release_ex Unexecuted instantiation: filters.c:zend_string_release_ex Unexecuted instantiation: flock_compat.c:zend_string_release_ex formatted_print.c:zend_string_release_ex Line | Count | Source | 360 | 11 | { | 361 | 11 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 6 | if (GC_DELREF(s) == 0) { | 363 | 6 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 6 | } else { | 367 | 6 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 6 | efree(s); | 369 | 6 | } | 370 | 6 | } | 371 | 6 | } | 372 | 11 | } |
Unexecuted instantiation: fsock.c:zend_string_release_ex Unexecuted instantiation: ftok.c:zend_string_release_ex Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_release_ex Unexecuted instantiation: head.c:zend_string_release_ex Unexecuted instantiation: hrtime.c:zend_string_release_ex Unexecuted instantiation: html.c:zend_string_release_ex Unexecuted instantiation: http_fopen_wrapper.c:zend_string_release_ex Unexecuted instantiation: http.c:zend_string_release_ex Unexecuted instantiation: image.c:zend_string_release_ex incomplete_class.c:zend_string_release_ex Line | Count | Source | 360 | 36 | { | 361 | 36 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 0 | if (GC_DELREF(s) == 0) { | 363 | 0 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 0 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 0 | } | 371 | 0 | } | 372 | 36 | } |
info.c:zend_string_release_ex Line | Count | Source | 360 | 8 | { | 361 | 8 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 8 | if (GC_DELREF(s) == 0) { | 363 | 8 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 8 | } else { | 367 | 8 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 8 | efree(s); | 369 | 8 | } | 370 | 8 | } | 371 | 8 | } | 372 | 8 | } |
Unexecuted instantiation: iptc.c:zend_string_release_ex Unexecuted instantiation: levenshtein.c:zend_string_release_ex Unexecuted instantiation: link.c:zend_string_release_ex Unexecuted instantiation: mail.c:zend_string_release_ex Unexecuted instantiation: math.c:zend_string_release_ex Unexecuted instantiation: md5.c:zend_string_release_ex Unexecuted instantiation: metaphone.c:zend_string_release_ex Unexecuted instantiation: microtime.c:zend_string_release_ex Unexecuted instantiation: net.c:zend_string_release_ex Unexecuted instantiation: pack.c:zend_string_release_ex Unexecuted instantiation: pageinfo.c:zend_string_release_ex password.c:zend_string_release_ex Line | Count | Source | 360 | 12 | { | 361 | 12 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 12 | if (GC_DELREF(s) == 0) { | 363 | 12 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 12 | } else { | 367 | 12 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 12 | efree(s); | 369 | 12 | } | 370 | 12 | } | 371 | 12 | } | 372 | 12 | } |
Unexecuted instantiation: php_fopen_wrapper.c:zend_string_release_ex Unexecuted instantiation: proc_open.c:zend_string_release_ex Unexecuted instantiation: quot_print.c:zend_string_release_ex Unexecuted instantiation: scanf.c:zend_string_release_ex Unexecuted instantiation: sha1.c:zend_string_release_ex Unexecuted instantiation: soundex.c:zend_string_release_ex Unexecuted instantiation: streamsfuncs.c:zend_string_release_ex string.c:zend_string_release_ex Line | Count | Source | 360 | 162 | { | 361 | 162 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 83 | if (GC_DELREF(s) == 0) { | 363 | 39 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 39 | } else { | 367 | 39 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 39 | efree(s); | 369 | 39 | } | 370 | 39 | } | 371 | 83 | } | 372 | 162 | } |
Unexecuted instantiation: strnatcmp.c:zend_string_release_ex Unexecuted instantiation: syslog.c:zend_string_release_ex Unexecuted instantiation: type.c:zend_string_release_ex Unexecuted instantiation: uniqid.c:zend_string_release_ex url_scanner_ex.c:zend_string_release_ex Line | Count | Source | 360 | 80 | { | 361 | 80 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 80 | if (GC_DELREF(s) == 0) { | 363 | 0 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 0 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 0 | } | 371 | 80 | } | 372 | 80 | } |
Unexecuted instantiation: url.c:zend_string_release_ex user_filters.c:zend_string_release_ex Line | Count | Source | 360 | 530 | { | 361 | 530 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 115 | if (GC_DELREF(s) == 0) { | 363 | 115 | if (persistent) { | 364 | 112 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 112 | free(s); | 366 | 112 | } else { | 367 | 3 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 3 | efree(s); | 369 | 3 | } | 370 | 115 | } | 371 | 115 | } | 372 | 530 | } |
Unexecuted instantiation: uuencode.c:zend_string_release_ex var_unserializer.c:zend_string_release_ex Line | Count | Source | 360 | 851k | { | 361 | 851k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 850k | if (GC_DELREF(s) == 0) { | 363 | 757k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 757k | } else { | 367 | 757k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 757k | efree(s); | 369 | 757k | } | 370 | 757k | } | 371 | 850k | } | 372 | 851k | } |
var.c:zend_string_release_ex Line | Count | Source | 360 | 12.2k | { | 361 | 12.2k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 1.71k | if (GC_DELREF(s) == 0) { | 363 | 1.42k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 1.42k | } else { | 367 | 1.42k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 1.42k | efree(s); | 369 | 1.42k | } | 370 | 1.42k | } | 371 | 1.71k | } | 372 | 12.2k | } |
Unexecuted instantiation: versioning.c:zend_string_release_ex Unexecuted instantiation: crypt_sha256.c:zend_string_release_ex Unexecuted instantiation: crypt_sha512.c:zend_string_release_ex Unexecuted instantiation: php_crypt_r.c:zend_string_release_ex php_uri.c:zend_string_release_ex Line | Count | Source | 360 | 96 | { | 361 | 96 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 48 | if (GC_DELREF(s) == 0) { | 363 | 48 | if (persistent) { | 364 | 48 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 48 | free(s); | 366 | 48 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 48 | } | 371 | 48 | } | 372 | 96 | } |
Unexecuted instantiation: php_uri_common.c:zend_string_release_ex Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_release_ex Unexecuted instantiation: uri_parser_whatwg.c:zend_string_release_ex Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_release_ex Unexecuted instantiation: explicit_bzero.c:zend_string_release_ex Unexecuted instantiation: fopen_wrappers.c:zend_string_release_ex Unexecuted instantiation: getopt.c:zend_string_release_ex main.c:zend_string_release_ex Line | Count | Source | 360 | 24 | { | 361 | 24 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 15 | if (GC_DELREF(s) == 0) { | 363 | 12 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 12 | } else { | 367 | 12 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 12 | efree(s); | 369 | 12 | } | 370 | 12 | } | 371 | 15 | } | 372 | 24 | } |
Unexecuted instantiation: network.c:zend_string_release_ex output.c:zend_string_release_ex Line | Count | Source | 360 | 3.73k | { | 361 | 3.73k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 3.62k | if (GC_DELREF(s) == 0) { | 363 | 1.79k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 1.79k | } else { | 367 | 1.79k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 1.79k | efree(s); | 369 | 1.79k | } | 370 | 1.79k | } | 371 | 3.62k | } | 372 | 3.73k | } |
Unexecuted instantiation: php_content_types.c:zend_string_release_ex Unexecuted instantiation: php_ini_builder.c:zend_string_release_ex Unexecuted instantiation: php_ini.c:zend_string_release_ex Unexecuted instantiation: php_glob.c:zend_string_release_ex Unexecuted instantiation: php_odbc_utils.c:zend_string_release_ex Unexecuted instantiation: php_open_temporary_file.c:zend_string_release_ex Unexecuted instantiation: php_scandir.c:zend_string_release_ex Unexecuted instantiation: php_syslog.c:zend_string_release_ex Unexecuted instantiation: php_ticks.c:zend_string_release_ex php_variables.c:zend_string_release_ex Line | Count | Source | 360 | 3.74k | { | 361 | 3.74k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 3.63k | if (GC_DELREF(s) == 0) { | 363 | 0 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 0 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 0 | } | 371 | 3.63k | } | 372 | 3.74k | } |
Unexecuted instantiation: reentrancy.c:zend_string_release_ex Unexecuted instantiation: rfc1867.c:zend_string_release_ex Unexecuted instantiation: safe_bcmp.c:zend_string_release_ex SAPI.c:zend_string_release_ex Line | Count | Source | 360 | 32 | { | 361 | 32 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 32 | if (GC_DELREF(s) == 0) { | 363 | 0 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 0 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 0 | } | 371 | 32 | } | 372 | 32 | } |
Unexecuted instantiation: snprintf.c:zend_string_release_ex Unexecuted instantiation: spprintf.c:zend_string_release_ex Unexecuted instantiation: strlcat.c:zend_string_release_ex Unexecuted instantiation: strlcpy.c:zend_string_release_ex Unexecuted instantiation: cast.c:zend_string_release_ex filter.c:zend_string_release_ex Line | Count | Source | 360 | 96 | { | 361 | 96 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 0 | if (GC_DELREF(s) == 0) { | 363 | 0 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 0 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 0 | } | 371 | 0 | } | 372 | 96 | } |
Unexecuted instantiation: glob_wrapper.c:zend_string_release_ex Unexecuted instantiation: memory.c:zend_string_release_ex Unexecuted instantiation: mmap.c:zend_string_release_ex Unexecuted instantiation: plain_wrapper.c:zend_string_release_ex stream_errors.c:zend_string_release_ex Line | Count | Source | 360 | 64 | { | 361 | 64 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 64 | if (GC_DELREF(s) == 0) { | 363 | 64 | if (persistent) { | 364 | 64 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 64 | free(s); | 366 | 64 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 64 | } | 371 | 64 | } | 372 | 64 | } |
streams.c:zend_string_release_ex Line | Count | Source | 360 | 183 | { | 361 | 183 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 87 | if (GC_DELREF(s) == 0) { | 363 | 87 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 87 | } else { | 367 | 87 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 87 | efree(s); | 369 | 87 | } | 370 | 87 | } | 371 | 87 | } | 372 | 183 | } |
transports.c:zend_string_release_ex Line | Count | Source | 360 | 64 | { | 361 | 64 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 0 | if (GC_DELREF(s) == 0) { | 363 | 0 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 0 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 0 | } | 371 | 0 | } | 372 | 64 | } |
userspace.c:zend_string_release_ex Line | Count | Source | 360 | 1.59k | { | 361 | 1.59k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 1.59k | if (GC_DELREF(s) == 0) { | 363 | 1.59k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 1.59k | } else { | 367 | 1.59k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 1.59k | efree(s); | 369 | 1.59k | } | 370 | 1.59k | } | 371 | 1.59k | } | 372 | 1.59k | } |
Unexecuted instantiation: xp_socket.c:zend_string_release_ex Unexecuted instantiation: block_pass.c:zend_string_release_ex compact_literals.c:zend_string_release_ex Line | Count | Source | 360 | 776k | { | 361 | 776k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 280k | if (GC_DELREF(s) == 0) { | 363 | 59.8k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 59.8k | } else { | 367 | 59.8k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 59.8k | efree(s); | 369 | 59.8k | } | 370 | 59.8k | } | 371 | 280k | } | 372 | 776k | } |
compact_vars.c:zend_string_release_ex Line | Count | Source | 360 | 4.97k | { | 361 | 4.97k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 822 | if (GC_DELREF(s) == 0) { | 363 | 772 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 772 | } else { | 367 | 772 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 772 | efree(s); | 369 | 772 | } | 370 | 772 | } | 371 | 822 | } | 372 | 4.97k | } |
Unexecuted instantiation: dce.c:zend_string_release_ex Unexecuted instantiation: dfa_pass.c:zend_string_release_ex Unexecuted instantiation: escape_analysis.c:zend_string_release_ex Unexecuted instantiation: nop_removal.c:zend_string_release_ex Unexecuted instantiation: optimize_func_calls.c:zend_string_release_ex Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_release_ex Unexecuted instantiation: pass1.c:zend_string_release_ex Unexecuted instantiation: pass3.c:zend_string_release_ex Unexecuted instantiation: sccp.c:zend_string_release_ex Unexecuted instantiation: scdf.c:zend_string_release_ex Unexecuted instantiation: zend_call_graph.c:zend_string_release_ex Unexecuted instantiation: zend_cfg.c:zend_string_release_ex Unexecuted instantiation: zend_dfg.c:zend_string_release_ex Unexecuted instantiation: zend_dump.c:zend_string_release_ex zend_func_info.c:zend_string_release_ex Line | Count | Source | 360 | 8.52k | { | 361 | 8.52k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 0 | if (GC_DELREF(s) == 0) { | 363 | 0 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 0 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 0 | } | 371 | 0 | } | 372 | 8.52k | } |
zend_inference.c:zend_string_release_ex Line | Count | Source | 360 | 4.37k | { | 361 | 4.37k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 3.83k | if (GC_DELREF(s) == 0) { | 363 | 3.71k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 3.71k | } else { | 367 | 3.71k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 3.71k | efree(s); | 369 | 3.71k | } | 370 | 3.71k | } | 371 | 3.83k | } | 372 | 4.37k | } |
Unexecuted instantiation: zend_optimizer.c:zend_string_release_ex Unexecuted instantiation: zend_ssa.c:zend_string_release_ex Unexecuted instantiation: zend_alloc.c:zend_string_release_ex zend_API.c:zend_string_release_ex Line | Count | Source | 360 | 50.5k | { | 361 | 50.5k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 42.0k | if (GC_DELREF(s) == 0) { | 363 | 15.0k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 15.0k | } else { | 367 | 15.0k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 15.0k | efree(s); | 369 | 15.0k | } | 370 | 15.0k | } | 371 | 42.0k | } | 372 | 50.5k | } |
zend_ast.c:zend_string_release_ex Line | Count | Source | 360 | 135k | { | 361 | 135k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 83.7k | if (GC_DELREF(s) == 0) { | 363 | 24.4k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 24.4k | } else { | 367 | 24.4k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 24.4k | efree(s); | 369 | 24.4k | } | 370 | 24.4k | } | 371 | 83.7k | } | 372 | 135k | } |
zend_attributes.c:zend_string_release_ex Line | Count | Source | 360 | 288 | { | 361 | 288 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 16 | if (GC_DELREF(s) == 0) { | 363 | 16 | if (persistent) { | 364 | 16 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 16 | free(s); | 366 | 16 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 16 | } | 371 | 16 | } | 372 | 288 | } |
Unexecuted instantiation: zend_autoload.c:zend_string_release_ex zend_builtin_functions.c:zend_string_release_ex Line | Count | Source | 360 | 983 | { | 361 | 983 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 747 | if (GC_DELREF(s) == 0) { | 363 | 729 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 729 | } else { | 367 | 729 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 729 | efree(s); | 369 | 729 | } | 370 | 729 | } | 371 | 747 | } | 372 | 983 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_release_ex zend_closures.c:zend_string_release_ex Line | Count | Source | 360 | 407 | { | 361 | 407 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 190 | if (GC_DELREF(s) == 0) { | 363 | 0 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 0 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 0 | } | 371 | 190 | } | 372 | 407 | } |
zend_compile.c:zend_string_release_ex Line | Count | Source | 360 | 2.27M | { | 361 | 2.27M | if (!ZSTR_IS_INTERNED(s)) { | 362 | 2.18M | if (GC_DELREF(s) == 0) { | 363 | 151k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 151k | } else { | 367 | 151k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 151k | efree(s); | 369 | 151k | } | 370 | 151k | } | 371 | 2.18M | } | 372 | 2.27M | } |
zend_constants.c:zend_string_release_ex Line | Count | Source | 360 | 156 | { | 361 | 156 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 39 | if (GC_DELREF(s) == 0) { | 363 | 39 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 39 | } else { | 367 | 39 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 39 | efree(s); | 369 | 39 | } | 370 | 39 | } | 371 | 39 | } | 372 | 156 | } |
Unexecuted instantiation: zend_cpuinfo.c:zend_string_release_ex Unexecuted instantiation: zend_default_classes.c:zend_string_release_ex Unexecuted instantiation: zend_dtrace.c:zend_string_release_ex Unexecuted instantiation: zend_enum.c:zend_string_release_ex zend_exceptions.c:zend_string_release_ex Line | Count | Source | 360 | 22.5k | { | 361 | 22.5k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 15.9k | if (GC_DELREF(s) == 0) { | 363 | 208 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 208 | } else { | 367 | 208 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 208 | efree(s); | 369 | 208 | } | 370 | 208 | } | 371 | 15.9k | } | 372 | 22.5k | } |
zend_execute_API.c:zend_string_release_ex Line | Count | Source | 360 | 733k | { | 361 | 733k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 583k | if (GC_DELREF(s) == 0) { | 363 | 150k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 150k | } else { | 367 | 150k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 150k | efree(s); | 369 | 150k | } | 370 | 150k | } | 371 | 583k | } | 372 | 733k | } |
zend_execute.c:zend_string_release_ex Line | Count | Source | 360 | 2.02M | { | 361 | 2.02M | if (!ZSTR_IS_INTERNED(s)) { | 362 | 542k | if (GC_DELREF(s) == 0) { | 363 | 175k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 175k | } else { | 367 | 175k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 175k | efree(s); | 369 | 175k | } | 370 | 175k | } | 371 | 542k | } | 372 | 2.02M | } |
Unexecuted instantiation: zend_extensions.c:zend_string_release_ex Unexecuted instantiation: zend_fibers.c:zend_string_release_ex Unexecuted instantiation: zend_float.c:zend_string_release_ex Unexecuted instantiation: zend_gc.c:zend_string_release_ex Unexecuted instantiation: zend_gdb.c:zend_string_release_ex Unexecuted instantiation: zend_generators.c:zend_string_release_ex zend_hash.c:zend_string_release_ex Line | Count | Source | 360 | 1.69M | { | 361 | 1.69M | if (!ZSTR_IS_INTERNED(s)) { | 362 | 709k | if (GC_DELREF(s) == 0) { | 363 | 629k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 629k | } else { | 367 | 629k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 629k | efree(s); | 369 | 629k | } | 370 | 629k | } | 371 | 709k | } | 372 | 1.69M | } |
Unexecuted instantiation: zend_highlight.c:zend_string_release_ex Unexecuted instantiation: zend_hrtime.c:zend_string_release_ex zend_inheritance.c:zend_string_release_ex Line | Count | Source | 360 | 9.23k | { | 361 | 9.23k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 4.50k | if (GC_DELREF(s) == 0) { | 363 | 1.31k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 1.31k | } else { | 367 | 1.31k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 1.31k | efree(s); | 369 | 1.31k | } | 370 | 1.31k | } | 371 | 4.50k | } | 372 | 9.23k | } |
Unexecuted instantiation: zend_ini_parser.c:zend_string_release_ex Unexecuted instantiation: zend_ini_scanner.c:zend_string_release_ex zend_ini.c:zend_string_release_ex Line | Count | Source | 360 | 507 | { | 361 | 507 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 507 | if (GC_DELREF(s) == 0) { | 363 | 507 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 507 | } else { | 367 | 507 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 507 | efree(s); | 369 | 507 | } | 370 | 507 | } | 371 | 507 | } | 372 | 507 | } |
Unexecuted instantiation: zend_interfaces.c:zend_string_release_ex Unexecuted instantiation: zend_iterators.c:zend_string_release_ex zend_language_parser.c:zend_string_release_ex Line | Count | Source | 360 | 426 | { | 361 | 426 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 426 | if (GC_DELREF(s) == 0) { | 363 | 426 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 426 | } else { | 367 | 426 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 426 | efree(s); | 369 | 426 | } | 370 | 426 | } | 371 | 426 | } | 372 | 426 | } |
zend_language_scanner.c:zend_string_release_ex Line | Count | Source | 360 | 116k | { | 361 | 116k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 116k | if (GC_DELREF(s) == 0) { | 363 | 7.74k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 7.74k | } else { | 367 | 7.74k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 7.74k | efree(s); | 369 | 7.74k | } | 370 | 7.74k | } | 371 | 116k | } | 372 | 116k | } |
Unexecuted instantiation: zend_lazy_objects.c:zend_string_release_ex Unexecuted instantiation: zend_list.c:zend_string_release_ex Unexecuted instantiation: zend_llist.c:zend_string_release_ex Unexecuted instantiation: zend_multibyte.c:zend_string_release_ex zend_object_handlers.c:zend_string_release_ex Line | Count | Source | 360 | 1.51k | { | 361 | 1.51k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 1.10k | if (GC_DELREF(s) == 0) { | 363 | 931 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 931 | } else { | 367 | 931 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 931 | efree(s); | 369 | 931 | } | 370 | 931 | } | 371 | 1.10k | } | 372 | 1.51k | } |
Unexecuted instantiation: zend_objects_API.c:zend_string_release_ex zend_objects.c:zend_string_release_ex Line | Count | Source | 360 | 22 | { | 361 | 22 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 0 | if (GC_DELREF(s) == 0) { | 363 | 0 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 0 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 0 | } | 371 | 0 | } | 372 | 22 | } |
Unexecuted instantiation: zend_observer.c:zend_string_release_ex zend_opcode.c:zend_string_release_ex Line | Count | Source | 360 | 3.21M | { | 361 | 3.21M | if (!ZSTR_IS_INTERNED(s)) { | 362 | 2.28M | if (GC_DELREF(s) == 0) { | 363 | 910k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 910k | } else { | 367 | 910k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 910k | efree(s); | 369 | 910k | } | 370 | 910k | } | 371 | 2.28M | } | 372 | 3.21M | } |
zend_operators.c:zend_string_release_ex Line | Count | Source | 360 | 250k | { | 361 | 250k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 58.2k | if (GC_DELREF(s) == 0) { | 363 | 52.5k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 52.5k | } else { | 367 | 52.5k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 52.5k | efree(s); | 369 | 52.5k | } | 370 | 52.5k | } | 371 | 58.2k | } | 372 | 250k | } |
Unexecuted instantiation: zend_property_hooks.c:zend_string_release_ex Unexecuted instantiation: zend_ptr_stack.c:zend_string_release_ex Unexecuted instantiation: zend_signal.c:zend_string_release_ex Unexecuted instantiation: zend_smart_str.c:zend_string_release_ex Unexecuted instantiation: zend_sort.c:zend_string_release_ex Unexecuted instantiation: zend_stack.c:zend_string_release_ex zend_stream.c:zend_string_release_ex Line | Count | Source | 360 | 93 | { | 361 | 93 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 83 | if (GC_DELREF(s) == 0) { | 363 | 29 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 29 | } else { | 367 | 29 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 29 | efree(s); | 369 | 29 | } | 370 | 29 | } | 371 | 83 | } | 372 | 93 | } |
Unexecuted instantiation: zend_string.c:zend_string_release_ex Unexecuted instantiation: zend_strtod.c:zend_string_release_ex Unexecuted instantiation: zend_system_id.c:zend_string_release_ex Unexecuted instantiation: zend_variables.c:zend_string_release_ex Unexecuted instantiation: zend_virtual_cwd.c:zend_string_release_ex Unexecuted instantiation: zend_vm_opcodes.c:zend_string_release_ex Unexecuted instantiation: zend_weakrefs.c:zend_string_release_ex zend.c:zend_string_release_ex Line | Count | Source | 360 | 21.3k | { | 361 | 21.3k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 2.42k | if (GC_DELREF(s) == 0) { | 363 | 2.41k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 2.41k | } else { | 367 | 2.41k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 2.41k | efree(s); | 369 | 2.41k | } | 370 | 2.41k | } | 371 | 2.42k | } | 372 | 21.3k | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_release_ex Unexecuted instantiation: fuzzer-parser.c:zend_string_release_ex Unexecuted instantiation: fuzzer-sapi.c:zend_string_release_ex Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_release_ex Unexecuted instantiation: fuzzer-exif.c:zend_string_release_ex Unexecuted instantiation: fuzzer-unserialize.c:zend_string_release_ex Unexecuted instantiation: fuzzer-function-jit.c:zend_string_release_ex Unexecuted instantiation: fuzzer-json.c:zend_string_release_ex Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_release_ex Unexecuted instantiation: fuzzer-execute.c:zend_string_release_ex |
373 | | |
374 | | static zend_always_inline bool zend_string_equals_cstr(const zend_string *s1, const char *s2, size_t s2_length) |
375 | 45.2M | { |
376 | 45.2M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); |
377 | 45.2M | } php_date.c:zend_string_equals_cstr Line | Count | Source | 375 | 821k | { | 376 | 821k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 821k | } |
Unexecuted instantiation: astro.c:zend_string_equals_cstr Unexecuted instantiation: dow.c:zend_string_equals_cstr Unexecuted instantiation: parse_date.c:zend_string_equals_cstr Unexecuted instantiation: parse_tz.c:zend_string_equals_cstr Unexecuted instantiation: parse_posix.c:zend_string_equals_cstr Unexecuted instantiation: timelib.c:zend_string_equals_cstr Unexecuted instantiation: tm2unixtime.c:zend_string_equals_cstr Unexecuted instantiation: unixtime2tm.c:zend_string_equals_cstr Unexecuted instantiation: parse_iso_intervals.c:zend_string_equals_cstr Unexecuted instantiation: interval.c:zend_string_equals_cstr Unexecuted instantiation: php_pcre.c:zend_string_equals_cstr Unexecuted instantiation: exif.c:zend_string_equals_cstr Unexecuted instantiation: hash_adler32.c:zend_string_equals_cstr Unexecuted instantiation: hash_crc32.c:zend_string_equals_cstr Unexecuted instantiation: hash_fnv.c:zend_string_equals_cstr Unexecuted instantiation: hash_gost.c:zend_string_equals_cstr Unexecuted instantiation: hash_haval.c:zend_string_equals_cstr Unexecuted instantiation: hash_joaat.c:zend_string_equals_cstr Unexecuted instantiation: hash_md.c:zend_string_equals_cstr Unexecuted instantiation: hash_murmur.c:zend_string_equals_cstr Unexecuted instantiation: hash_ripemd.c:zend_string_equals_cstr Unexecuted instantiation: hash_sha_ni.c:zend_string_equals_cstr Unexecuted instantiation: hash_sha_sse2.c:zend_string_equals_cstr Unexecuted instantiation: hash_sha.c:zend_string_equals_cstr Unexecuted instantiation: hash_sha3.c:zend_string_equals_cstr Unexecuted instantiation: hash_snefru.c:zend_string_equals_cstr Unexecuted instantiation: hash_tiger.c:zend_string_equals_cstr Unexecuted instantiation: hash_whirlpool.c:zend_string_equals_cstr Unexecuted instantiation: hash_xxhash.c:zend_string_equals_cstr Unexecuted instantiation: hash.c:zend_string_equals_cstr Unexecuted instantiation: json_encoder.c:zend_string_equals_cstr Unexecuted instantiation: json_parser.tab.c:zend_string_equals_cstr Unexecuted instantiation: json_scanner.c:zend_string_equals_cstr Unexecuted instantiation: json.c:zend_string_equals_cstr Unexecuted instantiation: php_lexbor.c:zend_string_equals_cstr Unexecuted instantiation: shared_alloc_mmap.c:zend_string_equals_cstr Unexecuted instantiation: shared_alloc_posix.c:zend_string_equals_cstr Unexecuted instantiation: shared_alloc_shm.c:zend_string_equals_cstr Unexecuted instantiation: zend_accelerator_api.c:zend_string_equals_cstr Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_equals_cstr Unexecuted instantiation: zend_accelerator_debug.c:zend_string_equals_cstr Unexecuted instantiation: zend_accelerator_hash.c:zend_string_equals_cstr Unexecuted instantiation: zend_accelerator_module.c:zend_string_equals_cstr Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_equals_cstr Unexecuted instantiation: zend_file_cache.c:zend_string_equals_cstr Unexecuted instantiation: zend_persist_calc.c:zend_string_equals_cstr Unexecuted instantiation: zend_persist.c:zend_string_equals_cstr Unexecuted instantiation: zend_shared_alloc.c:zend_string_equals_cstr ZendAccelerator.c:zend_string_equals_cstr Line | Count | Source | 375 | 42.9k | { | 376 | 42.9k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 42.9k | } |
Unexecuted instantiation: ir_cfg.c:zend_string_equals_cstr Unexecuted instantiation: ir_check.c:zend_string_equals_cstr Unexecuted instantiation: ir_dump.c:zend_string_equals_cstr Unexecuted instantiation: ir_emit.c:zend_string_equals_cstr Unexecuted instantiation: ir_gcm.c:zend_string_equals_cstr Unexecuted instantiation: ir_gdb.c:zend_string_equals_cstr Unexecuted instantiation: ir_patch.c:zend_string_equals_cstr Unexecuted instantiation: ir_perf.c:zend_string_equals_cstr Unexecuted instantiation: ir_ra.c:zend_string_equals_cstr Unexecuted instantiation: ir_save.c:zend_string_equals_cstr Unexecuted instantiation: ir_sccp.c:zend_string_equals_cstr Unexecuted instantiation: ir_strtab.c:zend_string_equals_cstr Unexecuted instantiation: ir.c:zend_string_equals_cstr Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_equals_cstr Unexecuted instantiation: zend_jit.c:zend_string_equals_cstr Unexecuted instantiation: csprng.c:zend_string_equals_cstr Unexecuted instantiation: engine_mt19937.c:zend_string_equals_cstr Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_equals_cstr Unexecuted instantiation: engine_secure.c:zend_string_equals_cstr Unexecuted instantiation: engine_user.c:zend_string_equals_cstr Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_equals_cstr Unexecuted instantiation: gammasection.c:zend_string_equals_cstr Unexecuted instantiation: random.c:zend_string_equals_cstr Unexecuted instantiation: randomizer.c:zend_string_equals_cstr Unexecuted instantiation: zend_utils.c:zend_string_equals_cstr Unexecuted instantiation: php_reflection.c:zend_string_equals_cstr Unexecuted instantiation: php_spl.c:zend_string_equals_cstr Unexecuted instantiation: spl_array.c:zend_string_equals_cstr Unexecuted instantiation: spl_directory.c:zend_string_equals_cstr Unexecuted instantiation: spl_dllist.c:zend_string_equals_cstr Unexecuted instantiation: spl_exceptions.c:zend_string_equals_cstr Unexecuted instantiation: spl_fixedarray.c:zend_string_equals_cstr Unexecuted instantiation: spl_functions.c:zend_string_equals_cstr Unexecuted instantiation: spl_heap.c:zend_string_equals_cstr Unexecuted instantiation: spl_iterators.c:zend_string_equals_cstr Unexecuted instantiation: spl_observer.c:zend_string_equals_cstr array.c:zend_string_equals_cstr Line | Count | Source | 375 | 3 | { | 376 | 3 | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 3 | } |
Unexecuted instantiation: assert.c:zend_string_equals_cstr Unexecuted instantiation: base64.c:zend_string_equals_cstr basic_functions.c:zend_string_equals_cstr Line | Count | Source | 375 | 3.73k | { | 376 | 3.73k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 3.73k | } |
Unexecuted instantiation: browscap.c:zend_string_equals_cstr Unexecuted instantiation: crc32_x86.c:zend_string_equals_cstr Unexecuted instantiation: crc32.c:zend_string_equals_cstr Unexecuted instantiation: credits.c:zend_string_equals_cstr Unexecuted instantiation: crypt.c:zend_string_equals_cstr Unexecuted instantiation: css.c:zend_string_equals_cstr Unexecuted instantiation: datetime.c:zend_string_equals_cstr Unexecuted instantiation: dir.c:zend_string_equals_cstr Unexecuted instantiation: dl.c:zend_string_equals_cstr Unexecuted instantiation: dns.c:zend_string_equals_cstr Unexecuted instantiation: exec.c:zend_string_equals_cstr Unexecuted instantiation: file.c:zend_string_equals_cstr Unexecuted instantiation: filestat.c:zend_string_equals_cstr Unexecuted instantiation: filters.c:zend_string_equals_cstr Unexecuted instantiation: flock_compat.c:zend_string_equals_cstr Unexecuted instantiation: formatted_print.c:zend_string_equals_cstr Unexecuted instantiation: fsock.c:zend_string_equals_cstr Unexecuted instantiation: ftok.c:zend_string_equals_cstr Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_equals_cstr Unexecuted instantiation: head.c:zend_string_equals_cstr Unexecuted instantiation: hrtime.c:zend_string_equals_cstr Unexecuted instantiation: html.c:zend_string_equals_cstr Unexecuted instantiation: http_fopen_wrapper.c:zend_string_equals_cstr Unexecuted instantiation: http.c:zend_string_equals_cstr Unexecuted instantiation: image.c:zend_string_equals_cstr Unexecuted instantiation: incomplete_class.c:zend_string_equals_cstr Unexecuted instantiation: info.c:zend_string_equals_cstr Unexecuted instantiation: iptc.c:zend_string_equals_cstr Unexecuted instantiation: levenshtein.c:zend_string_equals_cstr Unexecuted instantiation: link.c:zend_string_equals_cstr Unexecuted instantiation: mail.c:zend_string_equals_cstr Unexecuted instantiation: math.c:zend_string_equals_cstr Unexecuted instantiation: md5.c:zend_string_equals_cstr Unexecuted instantiation: metaphone.c:zend_string_equals_cstr Unexecuted instantiation: microtime.c:zend_string_equals_cstr Unexecuted instantiation: net.c:zend_string_equals_cstr Unexecuted instantiation: pack.c:zend_string_equals_cstr Unexecuted instantiation: pageinfo.c:zend_string_equals_cstr Unexecuted instantiation: password.c:zend_string_equals_cstr Unexecuted instantiation: php_fopen_wrapper.c:zend_string_equals_cstr Unexecuted instantiation: proc_open.c:zend_string_equals_cstr Unexecuted instantiation: quot_print.c:zend_string_equals_cstr Unexecuted instantiation: scanf.c:zend_string_equals_cstr Unexecuted instantiation: sha1.c:zend_string_equals_cstr Unexecuted instantiation: soundex.c:zend_string_equals_cstr Unexecuted instantiation: streamsfuncs.c:zend_string_equals_cstr string.c:zend_string_equals_cstr Line | Count | Source | 375 | 20 | { | 376 | 20 | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 20 | } |
Unexecuted instantiation: strnatcmp.c:zend_string_equals_cstr Unexecuted instantiation: syslog.c:zend_string_equals_cstr Unexecuted instantiation: type.c:zend_string_equals_cstr Unexecuted instantiation: uniqid.c:zend_string_equals_cstr Unexecuted instantiation: url_scanner_ex.c:zend_string_equals_cstr Unexecuted instantiation: url.c:zend_string_equals_cstr Unexecuted instantiation: user_filters.c:zend_string_equals_cstr Unexecuted instantiation: uuencode.c:zend_string_equals_cstr Unexecuted instantiation: var_unserializer.c:zend_string_equals_cstr Unexecuted instantiation: var.c:zend_string_equals_cstr Unexecuted instantiation: versioning.c:zend_string_equals_cstr Unexecuted instantiation: crypt_sha256.c:zend_string_equals_cstr Unexecuted instantiation: crypt_sha512.c:zend_string_equals_cstr Unexecuted instantiation: php_crypt_r.c:zend_string_equals_cstr Unexecuted instantiation: php_uri.c:zend_string_equals_cstr Unexecuted instantiation: php_uri_common.c:zend_string_equals_cstr Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_equals_cstr Unexecuted instantiation: uri_parser_whatwg.c:zend_string_equals_cstr Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_equals_cstr Unexecuted instantiation: explicit_bzero.c:zend_string_equals_cstr Unexecuted instantiation: fopen_wrappers.c:zend_string_equals_cstr Unexecuted instantiation: getopt.c:zend_string_equals_cstr main.c:zend_string_equals_cstr Line | Count | Source | 375 | 400 | { | 376 | 400 | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 400 | } |
Unexecuted instantiation: network.c:zend_string_equals_cstr Unexecuted instantiation: output.c:zend_string_equals_cstr Unexecuted instantiation: php_content_types.c:zend_string_equals_cstr Unexecuted instantiation: php_ini_builder.c:zend_string_equals_cstr Unexecuted instantiation: php_ini.c:zend_string_equals_cstr Unexecuted instantiation: php_glob.c:zend_string_equals_cstr Unexecuted instantiation: php_odbc_utils.c:zend_string_equals_cstr Unexecuted instantiation: php_open_temporary_file.c:zend_string_equals_cstr Unexecuted instantiation: php_scandir.c:zend_string_equals_cstr Unexecuted instantiation: php_syslog.c:zend_string_equals_cstr Unexecuted instantiation: php_ticks.c:zend_string_equals_cstr Unexecuted instantiation: php_variables.c:zend_string_equals_cstr Unexecuted instantiation: reentrancy.c:zend_string_equals_cstr Unexecuted instantiation: rfc1867.c:zend_string_equals_cstr Unexecuted instantiation: safe_bcmp.c:zend_string_equals_cstr Unexecuted instantiation: SAPI.c:zend_string_equals_cstr Unexecuted instantiation: snprintf.c:zend_string_equals_cstr Unexecuted instantiation: spprintf.c:zend_string_equals_cstr Unexecuted instantiation: strlcat.c:zend_string_equals_cstr Unexecuted instantiation: strlcpy.c:zend_string_equals_cstr Unexecuted instantiation: cast.c:zend_string_equals_cstr Unexecuted instantiation: filter.c:zend_string_equals_cstr Unexecuted instantiation: glob_wrapper.c:zend_string_equals_cstr Unexecuted instantiation: memory.c:zend_string_equals_cstr Unexecuted instantiation: mmap.c:zend_string_equals_cstr Unexecuted instantiation: plain_wrapper.c:zend_string_equals_cstr Unexecuted instantiation: stream_errors.c:zend_string_equals_cstr Unexecuted instantiation: streams.c:zend_string_equals_cstr Unexecuted instantiation: transports.c:zend_string_equals_cstr Unexecuted instantiation: userspace.c:zend_string_equals_cstr Unexecuted instantiation: xp_socket.c:zend_string_equals_cstr Unexecuted instantiation: block_pass.c:zend_string_equals_cstr Unexecuted instantiation: compact_literals.c:zend_string_equals_cstr Unexecuted instantiation: compact_vars.c:zend_string_equals_cstr Unexecuted instantiation: dce.c:zend_string_equals_cstr Unexecuted instantiation: dfa_pass.c:zend_string_equals_cstr Unexecuted instantiation: escape_analysis.c:zend_string_equals_cstr Unexecuted instantiation: nop_removal.c:zend_string_equals_cstr Unexecuted instantiation: optimize_func_calls.c:zend_string_equals_cstr Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_equals_cstr pass1.c:zend_string_equals_cstr Line | Count | Source | 375 | 23.4k | { | 376 | 23.4k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 23.4k | } |
Unexecuted instantiation: pass3.c:zend_string_equals_cstr Unexecuted instantiation: sccp.c:zend_string_equals_cstr Unexecuted instantiation: scdf.c:zend_string_equals_cstr Unexecuted instantiation: zend_call_graph.c:zend_string_equals_cstr Unexecuted instantiation: zend_cfg.c:zend_string_equals_cstr Unexecuted instantiation: zend_dfg.c:zend_string_equals_cstr Unexecuted instantiation: zend_dump.c:zend_string_equals_cstr Unexecuted instantiation: zend_func_info.c:zend_string_equals_cstr Unexecuted instantiation: zend_inference.c:zend_string_equals_cstr zend_optimizer.c:zend_string_equals_cstr Line | Count | Source | 375 | 1.08M | { | 376 | 1.08M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 1.08M | } |
zend_ssa.c:zend_string_equals_cstr Line | Count | Source | 375 | 121k | { | 376 | 121k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 121k | } |
Unexecuted instantiation: zend_alloc.c:zend_string_equals_cstr zend_API.c:zend_string_equals_cstr Line | Count | Source | 375 | 448k | { | 376 | 448k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 448k | } |
Unexecuted instantiation: zend_ast.c:zend_string_equals_cstr zend_attributes.c:zend_string_equals_cstr Line | Count | Source | 375 | 7.47M | { | 376 | 7.47M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 7.47M | } |
Unexecuted instantiation: zend_autoload.c:zend_string_equals_cstr Unexecuted instantiation: zend_builtin_functions.c:zend_string_equals_cstr Unexecuted instantiation: zend_call_stack.c:zend_string_equals_cstr Unexecuted instantiation: zend_closures.c:zend_string_equals_cstr zend_compile.c:zend_string_equals_cstr Line | Count | Source | 375 | 34.3M | { | 376 | 34.3M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 34.3M | } |
zend_constants.c:zend_string_equals_cstr Line | Count | Source | 375 | 11.5k | { | 376 | 11.5k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 11.5k | } |
Unexecuted instantiation: zend_cpuinfo.c:zend_string_equals_cstr Unexecuted instantiation: zend_default_classes.c:zend_string_equals_cstr Unexecuted instantiation: zend_dtrace.c:zend_string_equals_cstr Unexecuted instantiation: zend_enum.c:zend_string_equals_cstr zend_exceptions.c:zend_string_equals_cstr Line | Count | Source | 375 | 1.30k | { | 376 | 1.30k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 1.30k | } |
Unexecuted instantiation: zend_execute_API.c:zend_string_equals_cstr Unexecuted instantiation: zend_execute.c:zend_string_equals_cstr Unexecuted instantiation: zend_extensions.c:zend_string_equals_cstr Unexecuted instantiation: zend_fibers.c:zend_string_equals_cstr Unexecuted instantiation: zend_float.c:zend_string_equals_cstr Unexecuted instantiation: zend_gc.c:zend_string_equals_cstr Unexecuted instantiation: zend_gdb.c:zend_string_equals_cstr Unexecuted instantiation: zend_generators.c:zend_string_equals_cstr zend_hash.c:zend_string_equals_cstr Line | Count | Source | 375 | 777k | { | 376 | 777k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 777k | } |
Unexecuted instantiation: zend_highlight.c:zend_string_equals_cstr Unexecuted instantiation: zend_hrtime.c:zend_string_equals_cstr Unexecuted instantiation: zend_inheritance.c:zend_string_equals_cstr Unexecuted instantiation: zend_ini_parser.c:zend_string_equals_cstr Unexecuted instantiation: zend_ini_scanner.c:zend_string_equals_cstr Unexecuted instantiation: zend_ini.c:zend_string_equals_cstr Unexecuted instantiation: zend_interfaces.c:zend_string_equals_cstr Unexecuted instantiation: zend_iterators.c:zend_string_equals_cstr Unexecuted instantiation: zend_language_parser.c:zend_string_equals_cstr Unexecuted instantiation: zend_language_scanner.c:zend_string_equals_cstr Unexecuted instantiation: zend_lazy_objects.c:zend_string_equals_cstr Unexecuted instantiation: zend_list.c:zend_string_equals_cstr Unexecuted instantiation: zend_llist.c:zend_string_equals_cstr Unexecuted instantiation: zend_multibyte.c:zend_string_equals_cstr Unexecuted instantiation: zend_object_handlers.c:zend_string_equals_cstr Unexecuted instantiation: zend_objects_API.c:zend_string_equals_cstr Unexecuted instantiation: zend_objects.c:zend_string_equals_cstr Unexecuted instantiation: zend_observer.c:zend_string_equals_cstr Unexecuted instantiation: zend_opcode.c:zend_string_equals_cstr Unexecuted instantiation: zend_operators.c:zend_string_equals_cstr Unexecuted instantiation: zend_property_hooks.c:zend_string_equals_cstr Unexecuted instantiation: zend_ptr_stack.c:zend_string_equals_cstr Unexecuted instantiation: zend_signal.c:zend_string_equals_cstr Unexecuted instantiation: zend_smart_str.c:zend_string_equals_cstr Unexecuted instantiation: zend_sort.c:zend_string_equals_cstr Unexecuted instantiation: zend_stack.c:zend_string_equals_cstr Unexecuted instantiation: zend_stream.c:zend_string_equals_cstr zend_string.c:zend_string_equals_cstr Line | Count | Source | 375 | 52.2k | { | 376 | 52.2k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 52.2k | } |
Unexecuted instantiation: zend_strtod.c:zend_string_equals_cstr Unexecuted instantiation: zend_system_id.c:zend_string_equals_cstr Unexecuted instantiation: zend_variables.c:zend_string_equals_cstr Unexecuted instantiation: zend_virtual_cwd.c:zend_string_equals_cstr Unexecuted instantiation: zend_vm_opcodes.c:zend_string_equals_cstr Unexecuted instantiation: zend_weakrefs.c:zend_string_equals_cstr Unexecuted instantiation: zend.c:zend_string_equals_cstr Unexecuted instantiation: internal_functions_cli.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-parser.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-sapi.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-exif.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-unserialize.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-function-jit.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-json.c:zend_string_equals_cstr fuzzer-unserializehash.c:zend_string_equals_cstr Line | Count | Source | 375 | 21.7k | { | 376 | 21.7k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 21.7k | } |
Unexecuted instantiation: fuzzer-execute.c:zend_string_equals_cstr |
378 | | |
379 | | #if defined(__GNUC__) && (defined(__i386__) || (defined(__x86_64__) && !defined(__ILP32__))) |
380 | | BEGIN_EXTERN_C() |
381 | | ZEND_API bool ZEND_FASTCALL zend_string_equal_val(const zend_string *s1, const zend_string *s2); |
382 | | END_EXTERN_C() |
383 | | #else |
384 | | static zend_always_inline bool zend_string_equal_val(const zend_string *s1, const zend_string *s2) |
385 | | { |
386 | | return !memcmp(ZSTR_VAL(s1), ZSTR_VAL(s2), ZSTR_LEN(s1)); |
387 | | } |
388 | | #endif |
389 | | |
390 | | static zend_always_inline bool zend_string_equal_content(const zend_string *s1, const zend_string *s2) |
391 | 11.6M | { |
392 | 11.6M | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); |
393 | 11.6M | } Unexecuted instantiation: php_date.c:zend_string_equal_content Unexecuted instantiation: astro.c:zend_string_equal_content Unexecuted instantiation: dow.c:zend_string_equal_content Unexecuted instantiation: parse_date.c:zend_string_equal_content Unexecuted instantiation: parse_tz.c:zend_string_equal_content Unexecuted instantiation: parse_posix.c:zend_string_equal_content Unexecuted instantiation: timelib.c:zend_string_equal_content Unexecuted instantiation: tm2unixtime.c:zend_string_equal_content Unexecuted instantiation: unixtime2tm.c:zend_string_equal_content Unexecuted instantiation: parse_iso_intervals.c:zend_string_equal_content Unexecuted instantiation: interval.c:zend_string_equal_content Unexecuted instantiation: php_pcre.c:zend_string_equal_content Unexecuted instantiation: exif.c:zend_string_equal_content Unexecuted instantiation: hash_adler32.c:zend_string_equal_content Unexecuted instantiation: hash_crc32.c:zend_string_equal_content Unexecuted instantiation: hash_fnv.c:zend_string_equal_content Unexecuted instantiation: hash_gost.c:zend_string_equal_content Unexecuted instantiation: hash_haval.c:zend_string_equal_content Unexecuted instantiation: hash_joaat.c:zend_string_equal_content Unexecuted instantiation: hash_md.c:zend_string_equal_content Unexecuted instantiation: hash_murmur.c:zend_string_equal_content Unexecuted instantiation: hash_ripemd.c:zend_string_equal_content Unexecuted instantiation: hash_sha_ni.c:zend_string_equal_content Unexecuted instantiation: hash_sha_sse2.c:zend_string_equal_content Unexecuted instantiation: hash_sha.c:zend_string_equal_content Unexecuted instantiation: hash_sha3.c:zend_string_equal_content Unexecuted instantiation: hash_snefru.c:zend_string_equal_content Unexecuted instantiation: hash_tiger.c:zend_string_equal_content Unexecuted instantiation: hash_whirlpool.c:zend_string_equal_content Unexecuted instantiation: hash_xxhash.c:zend_string_equal_content Unexecuted instantiation: hash.c:zend_string_equal_content Unexecuted instantiation: json_encoder.c:zend_string_equal_content Unexecuted instantiation: json_parser.tab.c:zend_string_equal_content Unexecuted instantiation: json_scanner.c:zend_string_equal_content Unexecuted instantiation: json.c:zend_string_equal_content Unexecuted instantiation: php_lexbor.c:zend_string_equal_content Unexecuted instantiation: shared_alloc_mmap.c:zend_string_equal_content Unexecuted instantiation: shared_alloc_posix.c:zend_string_equal_content Unexecuted instantiation: shared_alloc_shm.c:zend_string_equal_content Unexecuted instantiation: zend_accelerator_api.c:zend_string_equal_content Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_equal_content Unexecuted instantiation: zend_accelerator_debug.c:zend_string_equal_content zend_accelerator_hash.c:zend_string_equal_content Line | Count | Source | 391 | 204k | { | 392 | 204k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 204k | } |
Unexecuted instantiation: zend_accelerator_module.c:zend_string_equal_content Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_equal_content Unexecuted instantiation: zend_file_cache.c:zend_string_equal_content Unexecuted instantiation: zend_persist_calc.c:zend_string_equal_content Unexecuted instantiation: zend_persist.c:zend_string_equal_content Unexecuted instantiation: zend_shared_alloc.c:zend_string_equal_content ZendAccelerator.c:zend_string_equal_content Line | Count | Source | 391 | 4.26M | { | 392 | 4.26M | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 4.26M | } |
Unexecuted instantiation: ir_cfg.c:zend_string_equal_content Unexecuted instantiation: ir_check.c:zend_string_equal_content Unexecuted instantiation: ir_dump.c:zend_string_equal_content Unexecuted instantiation: ir_emit.c:zend_string_equal_content Unexecuted instantiation: ir_gcm.c:zend_string_equal_content Unexecuted instantiation: ir_gdb.c:zend_string_equal_content Unexecuted instantiation: ir_patch.c:zend_string_equal_content Unexecuted instantiation: ir_perf.c:zend_string_equal_content Unexecuted instantiation: ir_ra.c:zend_string_equal_content Unexecuted instantiation: ir_save.c:zend_string_equal_content Unexecuted instantiation: ir_sccp.c:zend_string_equal_content Unexecuted instantiation: ir_strtab.c:zend_string_equal_content Unexecuted instantiation: ir.c:zend_string_equal_content Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_equal_content Unexecuted instantiation: zend_jit.c:zend_string_equal_content Unexecuted instantiation: csprng.c:zend_string_equal_content Unexecuted instantiation: engine_mt19937.c:zend_string_equal_content Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_equal_content Unexecuted instantiation: engine_secure.c:zend_string_equal_content Unexecuted instantiation: engine_user.c:zend_string_equal_content Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_equal_content Unexecuted instantiation: gammasection.c:zend_string_equal_content Unexecuted instantiation: random.c:zend_string_equal_content Unexecuted instantiation: randomizer.c:zend_string_equal_content Unexecuted instantiation: zend_utils.c:zend_string_equal_content php_reflection.c:zend_string_equal_content Line | Count | Source | 391 | 99 | { | 392 | 99 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 99 | } |
Unexecuted instantiation: php_spl.c:zend_string_equal_content Unexecuted instantiation: spl_array.c:zend_string_equal_content Unexecuted instantiation: spl_directory.c:zend_string_equal_content Unexecuted instantiation: spl_dllist.c:zend_string_equal_content Unexecuted instantiation: spl_exceptions.c:zend_string_equal_content Unexecuted instantiation: spl_fixedarray.c:zend_string_equal_content Unexecuted instantiation: spl_functions.c:zend_string_equal_content Unexecuted instantiation: spl_heap.c:zend_string_equal_content Unexecuted instantiation: spl_iterators.c:zend_string_equal_content Unexecuted instantiation: spl_observer.c:zend_string_equal_content array.c:zend_string_equal_content Line | Count | Source | 391 | 13.2k | { | 392 | 13.2k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 13.2k | } |
Unexecuted instantiation: assert.c:zend_string_equal_content Unexecuted instantiation: base64.c:zend_string_equal_content Unexecuted instantiation: basic_functions.c:zend_string_equal_content Unexecuted instantiation: browscap.c:zend_string_equal_content Unexecuted instantiation: crc32_x86.c:zend_string_equal_content Unexecuted instantiation: crc32.c:zend_string_equal_content Unexecuted instantiation: credits.c:zend_string_equal_content Unexecuted instantiation: crypt.c:zend_string_equal_content Unexecuted instantiation: css.c:zend_string_equal_content Unexecuted instantiation: datetime.c:zend_string_equal_content Unexecuted instantiation: dir.c:zend_string_equal_content Unexecuted instantiation: dl.c:zend_string_equal_content Unexecuted instantiation: dns.c:zend_string_equal_content Unexecuted instantiation: exec.c:zend_string_equal_content Unexecuted instantiation: file.c:zend_string_equal_content Unexecuted instantiation: filestat.c:zend_string_equal_content Unexecuted instantiation: filters.c:zend_string_equal_content Unexecuted instantiation: flock_compat.c:zend_string_equal_content Unexecuted instantiation: formatted_print.c:zend_string_equal_content Unexecuted instantiation: fsock.c:zend_string_equal_content Unexecuted instantiation: ftok.c:zend_string_equal_content Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_equal_content Unexecuted instantiation: head.c:zend_string_equal_content Unexecuted instantiation: hrtime.c:zend_string_equal_content Unexecuted instantiation: html.c:zend_string_equal_content Unexecuted instantiation: http_fopen_wrapper.c:zend_string_equal_content Unexecuted instantiation: http.c:zend_string_equal_content Unexecuted instantiation: image.c:zend_string_equal_content Unexecuted instantiation: incomplete_class.c:zend_string_equal_content Unexecuted instantiation: info.c:zend_string_equal_content Unexecuted instantiation: iptc.c:zend_string_equal_content Unexecuted instantiation: levenshtein.c:zend_string_equal_content Unexecuted instantiation: link.c:zend_string_equal_content Unexecuted instantiation: mail.c:zend_string_equal_content Unexecuted instantiation: math.c:zend_string_equal_content Unexecuted instantiation: md5.c:zend_string_equal_content Unexecuted instantiation: metaphone.c:zend_string_equal_content Unexecuted instantiation: microtime.c:zend_string_equal_content Unexecuted instantiation: net.c:zend_string_equal_content Unexecuted instantiation: pack.c:zend_string_equal_content Unexecuted instantiation: pageinfo.c:zend_string_equal_content Unexecuted instantiation: password.c:zend_string_equal_content Unexecuted instantiation: php_fopen_wrapper.c:zend_string_equal_content Unexecuted instantiation: proc_open.c:zend_string_equal_content Unexecuted instantiation: quot_print.c:zend_string_equal_content Unexecuted instantiation: scanf.c:zend_string_equal_content Unexecuted instantiation: sha1.c:zend_string_equal_content Unexecuted instantiation: soundex.c:zend_string_equal_content Unexecuted instantiation: streamsfuncs.c:zend_string_equal_content Unexecuted instantiation: string.c:zend_string_equal_content Unexecuted instantiation: strnatcmp.c:zend_string_equal_content Unexecuted instantiation: syslog.c:zend_string_equal_content Unexecuted instantiation: type.c:zend_string_equal_content Unexecuted instantiation: uniqid.c:zend_string_equal_content Unexecuted instantiation: url_scanner_ex.c:zend_string_equal_content Unexecuted instantiation: url.c:zend_string_equal_content Unexecuted instantiation: user_filters.c:zend_string_equal_content Unexecuted instantiation: uuencode.c:zend_string_equal_content Unexecuted instantiation: var_unserializer.c:zend_string_equal_content Unexecuted instantiation: var.c:zend_string_equal_content Unexecuted instantiation: versioning.c:zend_string_equal_content Unexecuted instantiation: crypt_sha256.c:zend_string_equal_content Unexecuted instantiation: crypt_sha512.c:zend_string_equal_content Unexecuted instantiation: php_crypt_r.c:zend_string_equal_content Unexecuted instantiation: php_uri.c:zend_string_equal_content Unexecuted instantiation: php_uri_common.c:zend_string_equal_content Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_equal_content Unexecuted instantiation: uri_parser_whatwg.c:zend_string_equal_content Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_equal_content Unexecuted instantiation: explicit_bzero.c:zend_string_equal_content Unexecuted instantiation: fopen_wrappers.c:zend_string_equal_content Unexecuted instantiation: getopt.c:zend_string_equal_content main.c:zend_string_equal_content Line | Count | Source | 391 | 16 | { | 392 | 16 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 16 | } |
Unexecuted instantiation: network.c:zend_string_equal_content Unexecuted instantiation: output.c:zend_string_equal_content Unexecuted instantiation: php_content_types.c:zend_string_equal_content Unexecuted instantiation: php_ini_builder.c:zend_string_equal_content Unexecuted instantiation: php_ini.c:zend_string_equal_content Unexecuted instantiation: php_glob.c:zend_string_equal_content Unexecuted instantiation: php_odbc_utils.c:zend_string_equal_content Unexecuted instantiation: php_open_temporary_file.c:zend_string_equal_content Unexecuted instantiation: php_scandir.c:zend_string_equal_content Unexecuted instantiation: php_syslog.c:zend_string_equal_content Unexecuted instantiation: php_ticks.c:zend_string_equal_content Unexecuted instantiation: php_variables.c:zend_string_equal_content Unexecuted instantiation: reentrancy.c:zend_string_equal_content Unexecuted instantiation: rfc1867.c:zend_string_equal_content Unexecuted instantiation: safe_bcmp.c:zend_string_equal_content Unexecuted instantiation: SAPI.c:zend_string_equal_content Unexecuted instantiation: snprintf.c:zend_string_equal_content Unexecuted instantiation: spprintf.c:zend_string_equal_content Unexecuted instantiation: strlcat.c:zend_string_equal_content Unexecuted instantiation: strlcpy.c:zend_string_equal_content Unexecuted instantiation: cast.c:zend_string_equal_content Unexecuted instantiation: filter.c:zend_string_equal_content Unexecuted instantiation: glob_wrapper.c:zend_string_equal_content Unexecuted instantiation: memory.c:zend_string_equal_content Unexecuted instantiation: mmap.c:zend_string_equal_content Unexecuted instantiation: plain_wrapper.c:zend_string_equal_content Unexecuted instantiation: stream_errors.c:zend_string_equal_content Unexecuted instantiation: streams.c:zend_string_equal_content Unexecuted instantiation: transports.c:zend_string_equal_content Unexecuted instantiation: userspace.c:zend_string_equal_content Unexecuted instantiation: xp_socket.c:zend_string_equal_content Unexecuted instantiation: block_pass.c:zend_string_equal_content Unexecuted instantiation: compact_literals.c:zend_string_equal_content Unexecuted instantiation: compact_vars.c:zend_string_equal_content Unexecuted instantiation: dce.c:zend_string_equal_content Unexecuted instantiation: dfa_pass.c:zend_string_equal_content Unexecuted instantiation: escape_analysis.c:zend_string_equal_content Unexecuted instantiation: nop_removal.c:zend_string_equal_content Unexecuted instantiation: optimize_func_calls.c:zend_string_equal_content Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_equal_content Unexecuted instantiation: pass1.c:zend_string_equal_content Unexecuted instantiation: pass3.c:zend_string_equal_content Unexecuted instantiation: sccp.c:zend_string_equal_content Unexecuted instantiation: scdf.c:zend_string_equal_content Unexecuted instantiation: zend_call_graph.c:zend_string_equal_content Unexecuted instantiation: zend_cfg.c:zend_string_equal_content Unexecuted instantiation: zend_dfg.c:zend_string_equal_content Unexecuted instantiation: zend_dump.c:zend_string_equal_content Unexecuted instantiation: zend_func_info.c:zend_string_equal_content Unexecuted instantiation: zend_inference.c:zend_string_equal_content Unexecuted instantiation: zend_optimizer.c:zend_string_equal_content Unexecuted instantiation: zend_ssa.c:zend_string_equal_content Unexecuted instantiation: zend_alloc.c:zend_string_equal_content zend_API.c:zend_string_equal_content Line | Count | Source | 391 | 25.9k | { | 392 | 25.9k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 25.9k | } |
Unexecuted instantiation: zend_ast.c:zend_string_equal_content zend_attributes.c:zend_string_equal_content Line | Count | Source | 391 | 1.86k | { | 392 | 1.86k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 1.86k | } |
zend_autoload.c:zend_string_equal_content Line | Count | Source | 391 | 12 | { | 392 | 12 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 12 | } |
zend_builtin_functions.c:zend_string_equal_content Line | Count | Source | 391 | 47 | { | 392 | 47 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 47 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_equal_content zend_closures.c:zend_string_equal_content Line | Count | Source | 391 | 311 | { | 392 | 311 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 311 | } |
zend_compile.c:zend_string_equal_content Line | Count | Source | 391 | 3.93M | { | 392 | 3.93M | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 3.93M | } |
Unexecuted instantiation: zend_constants.c:zend_string_equal_content Unexecuted instantiation: zend_cpuinfo.c:zend_string_equal_content Unexecuted instantiation: zend_default_classes.c:zend_string_equal_content Unexecuted instantiation: zend_dtrace.c:zend_string_equal_content zend_enum.c:zend_string_equal_content Line | Count | Source | 391 | 469 | { | 392 | 469 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 469 | } |
Unexecuted instantiation: zend_exceptions.c:zend_string_equal_content Unexecuted instantiation: zend_execute_API.c:zend_string_equal_content zend_execute.c:zend_string_equal_content Line | Count | Source | 391 | 43.5k | { | 392 | 43.5k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 43.5k | } |
Unexecuted instantiation: zend_extensions.c:zend_string_equal_content Unexecuted instantiation: zend_fibers.c:zend_string_equal_content Unexecuted instantiation: zend_float.c:zend_string_equal_content Unexecuted instantiation: zend_gc.c:zend_string_equal_content Unexecuted instantiation: zend_gdb.c:zend_string_equal_content Unexecuted instantiation: zend_generators.c:zend_string_equal_content zend_hash.c:zend_string_equal_content Line | Count | Source | 391 | 3.15M | { | 392 | 3.15M | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 3.15M | } |
Unexecuted instantiation: zend_highlight.c:zend_string_equal_content Unexecuted instantiation: zend_hrtime.c:zend_string_equal_content Unexecuted instantiation: zend_inheritance.c:zend_string_equal_content Unexecuted instantiation: zend_ini_parser.c:zend_string_equal_content Unexecuted instantiation: zend_ini_scanner.c:zend_string_equal_content Unexecuted instantiation: zend_ini.c:zend_string_equal_content Unexecuted instantiation: zend_interfaces.c:zend_string_equal_content Unexecuted instantiation: zend_iterators.c:zend_string_equal_content Unexecuted instantiation: zend_language_parser.c:zend_string_equal_content Unexecuted instantiation: zend_language_scanner.c:zend_string_equal_content Unexecuted instantiation: zend_lazy_objects.c:zend_string_equal_content Unexecuted instantiation: zend_list.c:zend_string_equal_content Unexecuted instantiation: zend_llist.c:zend_string_equal_content Unexecuted instantiation: zend_multibyte.c:zend_string_equal_content zend_object_handlers.c:zend_string_equal_content Line | Count | Source | 391 | 1.21k | { | 392 | 1.21k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 1.21k | } |
Unexecuted instantiation: zend_objects_API.c:zend_string_equal_content Unexecuted instantiation: zend_objects.c:zend_string_equal_content Unexecuted instantiation: zend_observer.c:zend_string_equal_content Unexecuted instantiation: zend_opcode.c:zend_string_equal_content zend_operators.c:zend_string_equal_content Line | Count | Source | 391 | 41.7k | { | 392 | 41.7k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 41.7k | } |
Unexecuted instantiation: zend_property_hooks.c:zend_string_equal_content Unexecuted instantiation: zend_ptr_stack.c:zend_string_equal_content Unexecuted instantiation: zend_signal.c:zend_string_equal_content Unexecuted instantiation: zend_smart_str.c:zend_string_equal_content Unexecuted instantiation: zend_sort.c:zend_string_equal_content Unexecuted instantiation: zend_stack.c:zend_string_equal_content Unexecuted instantiation: zend_stream.c:zend_string_equal_content zend_string.c:zend_string_equal_content Line | Count | Source | 391 | 4.70k | { | 392 | 4.70k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 4.70k | } |
Unexecuted instantiation: zend_strtod.c:zend_string_equal_content Unexecuted instantiation: zend_system_id.c:zend_string_equal_content Unexecuted instantiation: zend_variables.c:zend_string_equal_content Unexecuted instantiation: zend_virtual_cwd.c:zend_string_equal_content Unexecuted instantiation: zend_vm_opcodes.c:zend_string_equal_content Unexecuted instantiation: zend_weakrefs.c:zend_string_equal_content zend.c:zend_string_equal_content Line | Count | Source | 391 | 10 | { | 392 | 10 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 10 | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_equal_content Unexecuted instantiation: fuzzer-parser.c:zend_string_equal_content Unexecuted instantiation: fuzzer-sapi.c:zend_string_equal_content Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_equal_content Unexecuted instantiation: fuzzer-exif.c:zend_string_equal_content Unexecuted instantiation: fuzzer-unserialize.c:zend_string_equal_content Unexecuted instantiation: fuzzer-function-jit.c:zend_string_equal_content Unexecuted instantiation: fuzzer-json.c:zend_string_equal_content Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_equal_content Unexecuted instantiation: fuzzer-execute.c:zend_string_equal_content |
394 | | |
395 | | static zend_always_inline bool zend_string_equals(const zend_string *s1, const zend_string *s2) |
396 | 5.10M | { |
397 | 5.10M | return s1 == s2 || zend_string_equal_content(s1, s2); |
398 | 5.10M | } Unexecuted instantiation: php_date.c:zend_string_equals Unexecuted instantiation: astro.c:zend_string_equals Unexecuted instantiation: dow.c:zend_string_equals Unexecuted instantiation: parse_date.c:zend_string_equals Unexecuted instantiation: parse_tz.c:zend_string_equals Unexecuted instantiation: parse_posix.c:zend_string_equals Unexecuted instantiation: timelib.c:zend_string_equals Unexecuted instantiation: tm2unixtime.c:zend_string_equals Unexecuted instantiation: unixtime2tm.c:zend_string_equals Unexecuted instantiation: parse_iso_intervals.c:zend_string_equals Unexecuted instantiation: interval.c:zend_string_equals Unexecuted instantiation: php_pcre.c:zend_string_equals Unexecuted instantiation: exif.c:zend_string_equals Unexecuted instantiation: hash_adler32.c:zend_string_equals Unexecuted instantiation: hash_crc32.c:zend_string_equals Unexecuted instantiation: hash_fnv.c:zend_string_equals Unexecuted instantiation: hash_gost.c:zend_string_equals Unexecuted instantiation: hash_haval.c:zend_string_equals Unexecuted instantiation: hash_joaat.c:zend_string_equals Unexecuted instantiation: hash_md.c:zend_string_equals Unexecuted instantiation: hash_murmur.c:zend_string_equals Unexecuted instantiation: hash_ripemd.c:zend_string_equals Unexecuted instantiation: hash_sha_ni.c:zend_string_equals Unexecuted instantiation: hash_sha_sse2.c:zend_string_equals Unexecuted instantiation: hash_sha.c:zend_string_equals Unexecuted instantiation: hash_sha3.c:zend_string_equals Unexecuted instantiation: hash_snefru.c:zend_string_equals Unexecuted instantiation: hash_tiger.c:zend_string_equals Unexecuted instantiation: hash_whirlpool.c:zend_string_equals Unexecuted instantiation: hash_xxhash.c:zend_string_equals Unexecuted instantiation: hash.c:zend_string_equals Unexecuted instantiation: json_encoder.c:zend_string_equals Unexecuted instantiation: json_parser.tab.c:zend_string_equals Unexecuted instantiation: json_scanner.c:zend_string_equals Unexecuted instantiation: json.c:zend_string_equals Unexecuted instantiation: php_lexbor.c:zend_string_equals Unexecuted instantiation: shared_alloc_mmap.c:zend_string_equals Unexecuted instantiation: shared_alloc_posix.c:zend_string_equals Unexecuted instantiation: shared_alloc_shm.c:zend_string_equals Unexecuted instantiation: zend_accelerator_api.c:zend_string_equals Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_equals Unexecuted instantiation: zend_accelerator_debug.c:zend_string_equals zend_accelerator_hash.c:zend_string_equals Line | Count | Source | 396 | 346k | { | 397 | 346k | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 346k | } |
Unexecuted instantiation: zend_accelerator_module.c:zend_string_equals zend_accelerator_util_funcs.c:zend_string_equals Line | Count | Source | 396 | 1.31k | { | 397 | 1.31k | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 1.31k | } |
Unexecuted instantiation: zend_file_cache.c:zend_string_equals Unexecuted instantiation: zend_persist_calc.c:zend_string_equals Unexecuted instantiation: zend_persist.c:zend_string_equals Unexecuted instantiation: zend_shared_alloc.c:zend_string_equals ZendAccelerator.c:zend_string_equals Line | Count | Source | 396 | 50.2k | { | 397 | 50.2k | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 50.2k | } |
Unexecuted instantiation: ir_cfg.c:zend_string_equals Unexecuted instantiation: ir_check.c:zend_string_equals Unexecuted instantiation: ir_dump.c:zend_string_equals Unexecuted instantiation: ir_emit.c:zend_string_equals Unexecuted instantiation: ir_gcm.c:zend_string_equals Unexecuted instantiation: ir_gdb.c:zend_string_equals Unexecuted instantiation: ir_patch.c:zend_string_equals Unexecuted instantiation: ir_perf.c:zend_string_equals Unexecuted instantiation: ir_ra.c:zend_string_equals Unexecuted instantiation: ir_save.c:zend_string_equals Unexecuted instantiation: ir_sccp.c:zend_string_equals Unexecuted instantiation: ir_strtab.c:zend_string_equals Unexecuted instantiation: ir.c:zend_string_equals Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_equals Unexecuted instantiation: zend_jit.c:zend_string_equals Unexecuted instantiation: csprng.c:zend_string_equals Unexecuted instantiation: engine_mt19937.c:zend_string_equals Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_equals Unexecuted instantiation: engine_secure.c:zend_string_equals Unexecuted instantiation: engine_user.c:zend_string_equals Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_equals Unexecuted instantiation: gammasection.c:zend_string_equals Unexecuted instantiation: random.c:zend_string_equals Unexecuted instantiation: randomizer.c:zend_string_equals Unexecuted instantiation: zend_utils.c:zend_string_equals php_reflection.c:zend_string_equals Line | Count | Source | 396 | 126 | { | 397 | 126 | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 126 | } |
Unexecuted instantiation: php_spl.c:zend_string_equals Unexecuted instantiation: spl_array.c:zend_string_equals Unexecuted instantiation: spl_directory.c:zend_string_equals Unexecuted instantiation: spl_dllist.c:zend_string_equals Unexecuted instantiation: spl_exceptions.c:zend_string_equals Unexecuted instantiation: spl_fixedarray.c:zend_string_equals Unexecuted instantiation: spl_functions.c:zend_string_equals Unexecuted instantiation: spl_heap.c:zend_string_equals Unexecuted instantiation: spl_iterators.c:zend_string_equals Unexecuted instantiation: spl_observer.c:zend_string_equals array.c:zend_string_equals Line | Count | Source | 396 | 65 | { | 397 | 65 | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 65 | } |
Unexecuted instantiation: assert.c:zend_string_equals Unexecuted instantiation: base64.c:zend_string_equals Unexecuted instantiation: basic_functions.c:zend_string_equals Unexecuted instantiation: browscap.c:zend_string_equals Unexecuted instantiation: crc32_x86.c:zend_string_equals Unexecuted instantiation: crc32.c:zend_string_equals Unexecuted instantiation: credits.c:zend_string_equals Unexecuted instantiation: crypt.c:zend_string_equals Unexecuted instantiation: css.c:zend_string_equals Unexecuted instantiation: datetime.c:zend_string_equals Unexecuted instantiation: dir.c:zend_string_equals Unexecuted instantiation: dl.c:zend_string_equals Unexecuted instantiation: dns.c:zend_string_equals Unexecuted instantiation: exec.c:zend_string_equals Unexecuted instantiation: file.c:zend_string_equals Unexecuted instantiation: filestat.c:zend_string_equals Unexecuted instantiation: filters.c:zend_string_equals Unexecuted instantiation: flock_compat.c:zend_string_equals Unexecuted instantiation: formatted_print.c:zend_string_equals Unexecuted instantiation: fsock.c:zend_string_equals Unexecuted instantiation: ftok.c:zend_string_equals Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_equals Unexecuted instantiation: head.c:zend_string_equals Unexecuted instantiation: hrtime.c:zend_string_equals Unexecuted instantiation: html.c:zend_string_equals Unexecuted instantiation: http_fopen_wrapper.c:zend_string_equals Unexecuted instantiation: http.c:zend_string_equals Unexecuted instantiation: image.c:zend_string_equals Unexecuted instantiation: incomplete_class.c:zend_string_equals Unexecuted instantiation: info.c:zend_string_equals Unexecuted instantiation: iptc.c:zend_string_equals Unexecuted instantiation: levenshtein.c:zend_string_equals Unexecuted instantiation: link.c:zend_string_equals Unexecuted instantiation: mail.c:zend_string_equals Unexecuted instantiation: math.c:zend_string_equals Unexecuted instantiation: md5.c:zend_string_equals Unexecuted instantiation: metaphone.c:zend_string_equals Unexecuted instantiation: microtime.c:zend_string_equals Unexecuted instantiation: net.c:zend_string_equals Unexecuted instantiation: pack.c:zend_string_equals Unexecuted instantiation: pageinfo.c:zend_string_equals Unexecuted instantiation: password.c:zend_string_equals Unexecuted instantiation: php_fopen_wrapper.c:zend_string_equals Unexecuted instantiation: proc_open.c:zend_string_equals Unexecuted instantiation: quot_print.c:zend_string_equals Unexecuted instantiation: scanf.c:zend_string_equals Unexecuted instantiation: sha1.c:zend_string_equals Unexecuted instantiation: soundex.c:zend_string_equals Unexecuted instantiation: streamsfuncs.c:zend_string_equals Unexecuted instantiation: string.c:zend_string_equals Unexecuted instantiation: strnatcmp.c:zend_string_equals Unexecuted instantiation: syslog.c:zend_string_equals Unexecuted instantiation: type.c:zend_string_equals Unexecuted instantiation: uniqid.c:zend_string_equals Unexecuted instantiation: url_scanner_ex.c:zend_string_equals Unexecuted instantiation: url.c:zend_string_equals Unexecuted instantiation: user_filters.c:zend_string_equals Unexecuted instantiation: uuencode.c:zend_string_equals Unexecuted instantiation: var_unserializer.c:zend_string_equals Unexecuted instantiation: var.c:zend_string_equals Unexecuted instantiation: versioning.c:zend_string_equals Unexecuted instantiation: crypt_sha256.c:zend_string_equals Unexecuted instantiation: crypt_sha512.c:zend_string_equals Unexecuted instantiation: php_crypt_r.c:zend_string_equals Unexecuted instantiation: php_uri.c:zend_string_equals Unexecuted instantiation: php_uri_common.c:zend_string_equals Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_equals Unexecuted instantiation: uri_parser_whatwg.c:zend_string_equals Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_equals Unexecuted instantiation: explicit_bzero.c:zend_string_equals Unexecuted instantiation: fopen_wrappers.c:zend_string_equals Unexecuted instantiation: getopt.c:zend_string_equals main.c:zend_string_equals Line | Count | Source | 396 | 16 | { | 397 | 16 | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 16 | } |
Unexecuted instantiation: network.c:zend_string_equals Unexecuted instantiation: output.c:zend_string_equals Unexecuted instantiation: php_content_types.c:zend_string_equals Unexecuted instantiation: php_ini_builder.c:zend_string_equals Unexecuted instantiation: php_ini.c:zend_string_equals Unexecuted instantiation: php_glob.c:zend_string_equals Unexecuted instantiation: php_odbc_utils.c:zend_string_equals Unexecuted instantiation: php_open_temporary_file.c:zend_string_equals Unexecuted instantiation: php_scandir.c:zend_string_equals Unexecuted instantiation: php_syslog.c:zend_string_equals Unexecuted instantiation: php_ticks.c:zend_string_equals Unexecuted instantiation: php_variables.c:zend_string_equals Unexecuted instantiation: reentrancy.c:zend_string_equals Unexecuted instantiation: rfc1867.c:zend_string_equals Unexecuted instantiation: safe_bcmp.c:zend_string_equals Unexecuted instantiation: SAPI.c:zend_string_equals Unexecuted instantiation: snprintf.c:zend_string_equals Unexecuted instantiation: spprintf.c:zend_string_equals Unexecuted instantiation: strlcat.c:zend_string_equals Unexecuted instantiation: strlcpy.c:zend_string_equals Unexecuted instantiation: cast.c:zend_string_equals Unexecuted instantiation: filter.c:zend_string_equals Unexecuted instantiation: glob_wrapper.c:zend_string_equals Unexecuted instantiation: memory.c:zend_string_equals Unexecuted instantiation: mmap.c:zend_string_equals Unexecuted instantiation: plain_wrapper.c:zend_string_equals Unexecuted instantiation: stream_errors.c:zend_string_equals Unexecuted instantiation: streams.c:zend_string_equals Unexecuted instantiation: transports.c:zend_string_equals Unexecuted instantiation: userspace.c:zend_string_equals Unexecuted instantiation: xp_socket.c:zend_string_equals Unexecuted instantiation: block_pass.c:zend_string_equals Unexecuted instantiation: compact_literals.c:zend_string_equals Unexecuted instantiation: compact_vars.c:zend_string_equals Unexecuted instantiation: dce.c:zend_string_equals Unexecuted instantiation: dfa_pass.c:zend_string_equals Unexecuted instantiation: escape_analysis.c:zend_string_equals Unexecuted instantiation: nop_removal.c:zend_string_equals Unexecuted instantiation: optimize_func_calls.c:zend_string_equals Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_equals Unexecuted instantiation: pass1.c:zend_string_equals Unexecuted instantiation: pass3.c:zend_string_equals Unexecuted instantiation: sccp.c:zend_string_equals Unexecuted instantiation: scdf.c:zend_string_equals Unexecuted instantiation: zend_call_graph.c:zend_string_equals Unexecuted instantiation: zend_cfg.c:zend_string_equals Unexecuted instantiation: zend_dfg.c:zend_string_equals Unexecuted instantiation: zend_dump.c:zend_string_equals Unexecuted instantiation: zend_func_info.c:zend_string_equals Unexecuted instantiation: zend_inference.c:zend_string_equals Unexecuted instantiation: zend_optimizer.c:zend_string_equals Unexecuted instantiation: zend_ssa.c:zend_string_equals Unexecuted instantiation: zend_alloc.c:zend_string_equals zend_API.c:zend_string_equals Line | Count | Source | 396 | 26.6k | { | 397 | 26.6k | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 26.6k | } |
Unexecuted instantiation: zend_ast.c:zend_string_equals zend_attributes.c:zend_string_equals Line | Count | Source | 396 | 2.01k | { | 397 | 2.01k | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 2.01k | } |
zend_autoload.c:zend_string_equals Line | Count | Source | 396 | 12 | { | 397 | 12 | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 12 | } |
zend_builtin_functions.c:zend_string_equals Line | Count | Source | 396 | 227 | { | 397 | 227 | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 227 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_equals zend_closures.c:zend_string_equals Line | Count | Source | 396 | 716 | { | 397 | 716 | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 716 | } |
zend_compile.c:zend_string_equals Line | Count | Source | 396 | 4.59M | { | 397 | 4.59M | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 4.59M | } |
Unexecuted instantiation: zend_constants.c:zend_string_equals Unexecuted instantiation: zend_cpuinfo.c:zend_string_equals Unexecuted instantiation: zend_default_classes.c:zend_string_equals Unexecuted instantiation: zend_dtrace.c:zend_string_equals zend_enum.c:zend_string_equals Line | Count | Source | 396 | 2.23k | { | 397 | 2.23k | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 2.23k | } |
Unexecuted instantiation: zend_exceptions.c:zend_string_equals Unexecuted instantiation: zend_execute_API.c:zend_string_equals zend_execute.c:zend_string_equals Line | Count | Source | 396 | 43.4k | { | 397 | 43.4k | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 43.4k | } |
Unexecuted instantiation: zend_extensions.c:zend_string_equals Unexecuted instantiation: zend_fibers.c:zend_string_equals Unexecuted instantiation: zend_float.c:zend_string_equals Unexecuted instantiation: zend_gc.c:zend_string_equals Unexecuted instantiation: zend_gdb.c:zend_string_equals Unexecuted instantiation: zend_generators.c:zend_string_equals Unexecuted instantiation: zend_hash.c:zend_string_equals Unexecuted instantiation: zend_highlight.c:zend_string_equals Unexecuted instantiation: zend_hrtime.c:zend_string_equals Unexecuted instantiation: zend_inheritance.c:zend_string_equals Unexecuted instantiation: zend_ini_parser.c:zend_string_equals Unexecuted instantiation: zend_ini_scanner.c:zend_string_equals Unexecuted instantiation: zend_ini.c:zend_string_equals Unexecuted instantiation: zend_interfaces.c:zend_string_equals Unexecuted instantiation: zend_iterators.c:zend_string_equals Unexecuted instantiation: zend_language_parser.c:zend_string_equals Unexecuted instantiation: zend_language_scanner.c:zend_string_equals Unexecuted instantiation: zend_lazy_objects.c:zend_string_equals Unexecuted instantiation: zend_list.c:zend_string_equals Unexecuted instantiation: zend_llist.c:zend_string_equals Unexecuted instantiation: zend_multibyte.c:zend_string_equals Unexecuted instantiation: zend_object_handlers.c:zend_string_equals Unexecuted instantiation: zend_objects_API.c:zend_string_equals Unexecuted instantiation: zend_objects.c:zend_string_equals Unexecuted instantiation: zend_observer.c:zend_string_equals Unexecuted instantiation: zend_opcode.c:zend_string_equals zend_operators.c:zend_string_equals Line | Count | Source | 396 | 42.1k | { | 397 | 42.1k | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 42.1k | } |
Unexecuted instantiation: zend_property_hooks.c:zend_string_equals Unexecuted instantiation: zend_ptr_stack.c:zend_string_equals Unexecuted instantiation: zend_signal.c:zend_string_equals Unexecuted instantiation: zend_smart_str.c:zend_string_equals Unexecuted instantiation: zend_sort.c:zend_string_equals Unexecuted instantiation: zend_stack.c:zend_string_equals zend_stream.c:zend_string_equals Line | Count | Source | 396 | 723 | { | 397 | 723 | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 723 | } |
Unexecuted instantiation: zend_string.c:zend_string_equals Unexecuted instantiation: zend_strtod.c:zend_string_equals Unexecuted instantiation: zend_system_id.c:zend_string_equals Unexecuted instantiation: zend_variables.c:zend_string_equals Unexecuted instantiation: zend_virtual_cwd.c:zend_string_equals Unexecuted instantiation: zend_vm_opcodes.c:zend_string_equals Unexecuted instantiation: zend_weakrefs.c:zend_string_equals zend.c:zend_string_equals Line | Count | Source | 396 | 17 | { | 397 | 17 | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 17 | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_equals Unexecuted instantiation: fuzzer-parser.c:zend_string_equals Unexecuted instantiation: fuzzer-sapi.c:zend_string_equals Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_equals Unexecuted instantiation: fuzzer-exif.c:zend_string_equals Unexecuted instantiation: fuzzer-unserialize.c:zend_string_equals Unexecuted instantiation: fuzzer-function-jit.c:zend_string_equals Unexecuted instantiation: fuzzer-json.c:zend_string_equals Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_equals Unexecuted instantiation: fuzzer-execute.c:zend_string_equals |
399 | | |
400 | | #define zend_string_equals_ci(s1, s2) \ |
401 | 15.2M | (ZSTR_LEN(s1) == ZSTR_LEN(s2) && !zend_binary_strcasecmp(ZSTR_VAL(s1), ZSTR_LEN(s1), ZSTR_VAL(s2), ZSTR_LEN(s2))) |
402 | | |
403 | | #define zend_string_equals_literal_ci(str, c) \ |
404 | 9.27M | (ZSTR_LEN(str) == sizeof("" c) - 1 && !zend_binary_strcasecmp(ZSTR_VAL(str), ZSTR_LEN(str), (c), sizeof(c) - 1)) |
405 | | |
406 | | #define zend_string_equals_literal(str, literal) \ |
407 | 49.2M | zend_string_equals_cstr(str, "" literal, sizeof(literal) - 1) |
408 | | |
409 | | static zend_always_inline bool zend_string_starts_with_cstr(const zend_string *str, const char *prefix, size_t prefix_length) |
410 | 50.2k | { |
411 | 50.2k | return ZSTR_LEN(str) >= prefix_length && !memcmp(ZSTR_VAL(str), prefix, prefix_length); |
412 | 50.2k | } Unexecuted instantiation: php_date.c:zend_string_starts_with_cstr Unexecuted instantiation: astro.c:zend_string_starts_with_cstr Unexecuted instantiation: dow.c:zend_string_starts_with_cstr Unexecuted instantiation: parse_date.c:zend_string_starts_with_cstr Unexecuted instantiation: parse_tz.c:zend_string_starts_with_cstr Unexecuted instantiation: parse_posix.c:zend_string_starts_with_cstr Unexecuted instantiation: timelib.c:zend_string_starts_with_cstr Unexecuted instantiation: tm2unixtime.c:zend_string_starts_with_cstr Unexecuted instantiation: unixtime2tm.c:zend_string_starts_with_cstr Unexecuted instantiation: parse_iso_intervals.c:zend_string_starts_with_cstr Unexecuted instantiation: interval.c:zend_string_starts_with_cstr Unexecuted instantiation: php_pcre.c:zend_string_starts_with_cstr Unexecuted instantiation: exif.c:zend_string_starts_with_cstr Unexecuted instantiation: hash_adler32.c:zend_string_starts_with_cstr Unexecuted instantiation: hash_crc32.c:zend_string_starts_with_cstr Unexecuted instantiation: hash_fnv.c:zend_string_starts_with_cstr Unexecuted instantiation: hash_gost.c:zend_string_starts_with_cstr Unexecuted instantiation: hash_haval.c:zend_string_starts_with_cstr Unexecuted instantiation: hash_joaat.c:zend_string_starts_with_cstr Unexecuted instantiation: hash_md.c:zend_string_starts_with_cstr Unexecuted instantiation: hash_murmur.c:zend_string_starts_with_cstr Unexecuted instantiation: hash_ripemd.c:zend_string_starts_with_cstr Unexecuted instantiation: hash_sha_ni.c:zend_string_starts_with_cstr Unexecuted instantiation: hash_sha_sse2.c:zend_string_starts_with_cstr Unexecuted instantiation: hash_sha.c:zend_string_starts_with_cstr Unexecuted instantiation: hash_sha3.c:zend_string_starts_with_cstr Unexecuted instantiation: hash_snefru.c:zend_string_starts_with_cstr Unexecuted instantiation: hash_tiger.c:zend_string_starts_with_cstr Unexecuted instantiation: hash_whirlpool.c:zend_string_starts_with_cstr Unexecuted instantiation: hash_xxhash.c:zend_string_starts_with_cstr Unexecuted instantiation: hash.c:zend_string_starts_with_cstr Unexecuted instantiation: json_encoder.c:zend_string_starts_with_cstr Unexecuted instantiation: json_parser.tab.c:zend_string_starts_with_cstr Unexecuted instantiation: json_scanner.c:zend_string_starts_with_cstr Unexecuted instantiation: json.c:zend_string_starts_with_cstr Unexecuted instantiation: php_lexbor.c:zend_string_starts_with_cstr Unexecuted instantiation: shared_alloc_mmap.c:zend_string_starts_with_cstr Unexecuted instantiation: shared_alloc_posix.c:zend_string_starts_with_cstr Unexecuted instantiation: shared_alloc_shm.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_accelerator_api.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_accelerator_debug.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_accelerator_hash.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_accelerator_module.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_file_cache.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_persist_calc.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_persist.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_shared_alloc.c:zend_string_starts_with_cstr ZendAccelerator.c:zend_string_starts_with_cstr Line | Count | Source | 410 | 50.2k | { | 411 | 50.2k | return ZSTR_LEN(str) >= prefix_length && !memcmp(ZSTR_VAL(str), prefix, prefix_length); | 412 | 50.2k | } |
Unexecuted instantiation: ir_cfg.c:zend_string_starts_with_cstr Unexecuted instantiation: ir_check.c:zend_string_starts_with_cstr Unexecuted instantiation: ir_dump.c:zend_string_starts_with_cstr Unexecuted instantiation: ir_emit.c:zend_string_starts_with_cstr Unexecuted instantiation: ir_gcm.c:zend_string_starts_with_cstr Unexecuted instantiation: ir_gdb.c:zend_string_starts_with_cstr Unexecuted instantiation: ir_patch.c:zend_string_starts_with_cstr Unexecuted instantiation: ir_perf.c:zend_string_starts_with_cstr Unexecuted instantiation: ir_ra.c:zend_string_starts_with_cstr Unexecuted instantiation: ir_save.c:zend_string_starts_with_cstr Unexecuted instantiation: ir_sccp.c:zend_string_starts_with_cstr Unexecuted instantiation: ir_strtab.c:zend_string_starts_with_cstr Unexecuted instantiation: ir.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_jit.c:zend_string_starts_with_cstr Unexecuted instantiation: csprng.c:zend_string_starts_with_cstr Unexecuted instantiation: engine_mt19937.c:zend_string_starts_with_cstr Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_starts_with_cstr Unexecuted instantiation: engine_secure.c:zend_string_starts_with_cstr Unexecuted instantiation: engine_user.c:zend_string_starts_with_cstr Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_starts_with_cstr Unexecuted instantiation: gammasection.c:zend_string_starts_with_cstr Unexecuted instantiation: random.c:zend_string_starts_with_cstr Unexecuted instantiation: randomizer.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_utils.c:zend_string_starts_with_cstr Unexecuted instantiation: php_reflection.c:zend_string_starts_with_cstr Unexecuted instantiation: php_spl.c:zend_string_starts_with_cstr Unexecuted instantiation: spl_array.c:zend_string_starts_with_cstr Unexecuted instantiation: spl_directory.c:zend_string_starts_with_cstr Unexecuted instantiation: spl_dllist.c:zend_string_starts_with_cstr Unexecuted instantiation: spl_exceptions.c:zend_string_starts_with_cstr Unexecuted instantiation: spl_fixedarray.c:zend_string_starts_with_cstr Unexecuted instantiation: spl_functions.c:zend_string_starts_with_cstr Unexecuted instantiation: spl_heap.c:zend_string_starts_with_cstr Unexecuted instantiation: spl_iterators.c:zend_string_starts_with_cstr Unexecuted instantiation: spl_observer.c:zend_string_starts_with_cstr Unexecuted instantiation: array.c:zend_string_starts_with_cstr Unexecuted instantiation: assert.c:zend_string_starts_with_cstr Unexecuted instantiation: base64.c:zend_string_starts_with_cstr Unexecuted instantiation: basic_functions.c:zend_string_starts_with_cstr Unexecuted instantiation: browscap.c:zend_string_starts_with_cstr Unexecuted instantiation: crc32_x86.c:zend_string_starts_with_cstr Unexecuted instantiation: crc32.c:zend_string_starts_with_cstr Unexecuted instantiation: credits.c:zend_string_starts_with_cstr Unexecuted instantiation: crypt.c:zend_string_starts_with_cstr Unexecuted instantiation: css.c:zend_string_starts_with_cstr Unexecuted instantiation: datetime.c:zend_string_starts_with_cstr Unexecuted instantiation: dir.c:zend_string_starts_with_cstr Unexecuted instantiation: dl.c:zend_string_starts_with_cstr Unexecuted instantiation: dns.c:zend_string_starts_with_cstr Unexecuted instantiation: exec.c:zend_string_starts_with_cstr Unexecuted instantiation: file.c:zend_string_starts_with_cstr Unexecuted instantiation: filestat.c:zend_string_starts_with_cstr Unexecuted instantiation: filters.c:zend_string_starts_with_cstr Unexecuted instantiation: flock_compat.c:zend_string_starts_with_cstr Unexecuted instantiation: formatted_print.c:zend_string_starts_with_cstr Unexecuted instantiation: fsock.c:zend_string_starts_with_cstr Unexecuted instantiation: ftok.c:zend_string_starts_with_cstr Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_starts_with_cstr Unexecuted instantiation: head.c:zend_string_starts_with_cstr Unexecuted instantiation: hrtime.c:zend_string_starts_with_cstr Unexecuted instantiation: html.c:zend_string_starts_with_cstr Unexecuted instantiation: http_fopen_wrapper.c:zend_string_starts_with_cstr Unexecuted instantiation: http.c:zend_string_starts_with_cstr Unexecuted instantiation: image.c:zend_string_starts_with_cstr Unexecuted instantiation: incomplete_class.c:zend_string_starts_with_cstr Unexecuted instantiation: info.c:zend_string_starts_with_cstr Unexecuted instantiation: iptc.c:zend_string_starts_with_cstr Unexecuted instantiation: levenshtein.c:zend_string_starts_with_cstr Unexecuted instantiation: link.c:zend_string_starts_with_cstr Unexecuted instantiation: mail.c:zend_string_starts_with_cstr Unexecuted instantiation: math.c:zend_string_starts_with_cstr Unexecuted instantiation: md5.c:zend_string_starts_with_cstr Unexecuted instantiation: metaphone.c:zend_string_starts_with_cstr Unexecuted instantiation: microtime.c:zend_string_starts_with_cstr Unexecuted instantiation: net.c:zend_string_starts_with_cstr Unexecuted instantiation: pack.c:zend_string_starts_with_cstr Unexecuted instantiation: pageinfo.c:zend_string_starts_with_cstr Unexecuted instantiation: password.c:zend_string_starts_with_cstr Unexecuted instantiation: php_fopen_wrapper.c:zend_string_starts_with_cstr Unexecuted instantiation: proc_open.c:zend_string_starts_with_cstr Unexecuted instantiation: quot_print.c:zend_string_starts_with_cstr Unexecuted instantiation: scanf.c:zend_string_starts_with_cstr Unexecuted instantiation: sha1.c:zend_string_starts_with_cstr Unexecuted instantiation: soundex.c:zend_string_starts_with_cstr Unexecuted instantiation: streamsfuncs.c:zend_string_starts_with_cstr Unexecuted instantiation: string.c:zend_string_starts_with_cstr Unexecuted instantiation: strnatcmp.c:zend_string_starts_with_cstr Unexecuted instantiation: syslog.c:zend_string_starts_with_cstr Unexecuted instantiation: type.c:zend_string_starts_with_cstr Unexecuted instantiation: uniqid.c:zend_string_starts_with_cstr url_scanner_ex.c:zend_string_starts_with_cstr Line | Count | Source | 410 | 16 | { | 411 | 16 | return ZSTR_LEN(str) >= prefix_length && !memcmp(ZSTR_VAL(str), prefix, prefix_length); | 412 | 16 | } |
Unexecuted instantiation: url.c:zend_string_starts_with_cstr Unexecuted instantiation: user_filters.c:zend_string_starts_with_cstr Unexecuted instantiation: uuencode.c:zend_string_starts_with_cstr Unexecuted instantiation: var_unserializer.c:zend_string_starts_with_cstr Unexecuted instantiation: var.c:zend_string_starts_with_cstr Unexecuted instantiation: versioning.c:zend_string_starts_with_cstr Unexecuted instantiation: crypt_sha256.c:zend_string_starts_with_cstr Unexecuted instantiation: crypt_sha512.c:zend_string_starts_with_cstr Unexecuted instantiation: php_crypt_r.c:zend_string_starts_with_cstr Unexecuted instantiation: php_uri.c:zend_string_starts_with_cstr Unexecuted instantiation: php_uri_common.c:zend_string_starts_with_cstr Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_starts_with_cstr Unexecuted instantiation: uri_parser_whatwg.c:zend_string_starts_with_cstr Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_starts_with_cstr Unexecuted instantiation: explicit_bzero.c:zend_string_starts_with_cstr Unexecuted instantiation: fopen_wrappers.c:zend_string_starts_with_cstr Unexecuted instantiation: getopt.c:zend_string_starts_with_cstr Unexecuted instantiation: main.c:zend_string_starts_with_cstr Unexecuted instantiation: network.c:zend_string_starts_with_cstr Unexecuted instantiation: output.c:zend_string_starts_with_cstr Unexecuted instantiation: php_content_types.c:zend_string_starts_with_cstr Unexecuted instantiation: php_ini_builder.c:zend_string_starts_with_cstr Unexecuted instantiation: php_ini.c:zend_string_starts_with_cstr Unexecuted instantiation: php_glob.c:zend_string_starts_with_cstr Unexecuted instantiation: php_odbc_utils.c:zend_string_starts_with_cstr Unexecuted instantiation: php_open_temporary_file.c:zend_string_starts_with_cstr Unexecuted instantiation: php_scandir.c:zend_string_starts_with_cstr Unexecuted instantiation: php_syslog.c:zend_string_starts_with_cstr Unexecuted instantiation: php_ticks.c:zend_string_starts_with_cstr Unexecuted instantiation: php_variables.c:zend_string_starts_with_cstr Unexecuted instantiation: reentrancy.c:zend_string_starts_with_cstr Unexecuted instantiation: rfc1867.c:zend_string_starts_with_cstr Unexecuted instantiation: safe_bcmp.c:zend_string_starts_with_cstr Unexecuted instantiation: SAPI.c:zend_string_starts_with_cstr Unexecuted instantiation: snprintf.c:zend_string_starts_with_cstr Unexecuted instantiation: spprintf.c:zend_string_starts_with_cstr Unexecuted instantiation: strlcat.c:zend_string_starts_with_cstr Unexecuted instantiation: strlcpy.c:zend_string_starts_with_cstr Unexecuted instantiation: cast.c:zend_string_starts_with_cstr Unexecuted instantiation: filter.c:zend_string_starts_with_cstr Unexecuted instantiation: glob_wrapper.c:zend_string_starts_with_cstr Unexecuted instantiation: memory.c:zend_string_starts_with_cstr Unexecuted instantiation: mmap.c:zend_string_starts_with_cstr Unexecuted instantiation: plain_wrapper.c:zend_string_starts_with_cstr Unexecuted instantiation: stream_errors.c:zend_string_starts_with_cstr Unexecuted instantiation: streams.c:zend_string_starts_with_cstr Unexecuted instantiation: transports.c:zend_string_starts_with_cstr Unexecuted instantiation: userspace.c:zend_string_starts_with_cstr Unexecuted instantiation: xp_socket.c:zend_string_starts_with_cstr Unexecuted instantiation: block_pass.c:zend_string_starts_with_cstr Unexecuted instantiation: compact_literals.c:zend_string_starts_with_cstr Unexecuted instantiation: compact_vars.c:zend_string_starts_with_cstr Unexecuted instantiation: dce.c:zend_string_starts_with_cstr Unexecuted instantiation: dfa_pass.c:zend_string_starts_with_cstr Unexecuted instantiation: escape_analysis.c:zend_string_starts_with_cstr Unexecuted instantiation: nop_removal.c:zend_string_starts_with_cstr Unexecuted instantiation: optimize_func_calls.c:zend_string_starts_with_cstr Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_starts_with_cstr Unexecuted instantiation: pass1.c:zend_string_starts_with_cstr Unexecuted instantiation: pass3.c:zend_string_starts_with_cstr Unexecuted instantiation: sccp.c:zend_string_starts_with_cstr Unexecuted instantiation: scdf.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_call_graph.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_cfg.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_dfg.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_dump.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_func_info.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_inference.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_optimizer.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_ssa.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_alloc.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_API.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_ast.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_attributes.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_autoload.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_builtin_functions.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_call_stack.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_closures.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_compile.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_constants.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_cpuinfo.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_default_classes.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_dtrace.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_enum.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_exceptions.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_execute_API.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_execute.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_extensions.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_fibers.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_float.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_gc.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_gdb.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_generators.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_hash.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_highlight.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_hrtime.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_inheritance.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_ini_parser.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_ini_scanner.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_ini.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_interfaces.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_iterators.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_language_parser.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_language_scanner.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_lazy_objects.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_list.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_llist.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_multibyte.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_object_handlers.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_objects_API.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_objects.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_observer.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_opcode.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_operators.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_property_hooks.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_ptr_stack.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_signal.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_smart_str.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_sort.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_stack.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_stream.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_string.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_strtod.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_system_id.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_variables.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_virtual_cwd.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_vm_opcodes.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_weakrefs.c:zend_string_starts_with_cstr Unexecuted instantiation: zend.c:zend_string_starts_with_cstr Unexecuted instantiation: internal_functions_cli.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-parser.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-sapi.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-exif.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-unserialize.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-function-jit.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-json.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-execute.c:zend_string_starts_with_cstr |
413 | | |
414 | | static zend_always_inline bool zend_string_starts_with(const zend_string *str, const zend_string *prefix) |
415 | 0 | { |
416 | 0 | return zend_string_starts_with_cstr(str, ZSTR_VAL(prefix), ZSTR_LEN(prefix)); |
417 | 0 | } Unexecuted instantiation: php_date.c:zend_string_starts_with Unexecuted instantiation: astro.c:zend_string_starts_with Unexecuted instantiation: dow.c:zend_string_starts_with Unexecuted instantiation: parse_date.c:zend_string_starts_with Unexecuted instantiation: parse_tz.c:zend_string_starts_with Unexecuted instantiation: parse_posix.c:zend_string_starts_with Unexecuted instantiation: timelib.c:zend_string_starts_with Unexecuted instantiation: tm2unixtime.c:zend_string_starts_with Unexecuted instantiation: unixtime2tm.c:zend_string_starts_with Unexecuted instantiation: parse_iso_intervals.c:zend_string_starts_with Unexecuted instantiation: interval.c:zend_string_starts_with Unexecuted instantiation: php_pcre.c:zend_string_starts_with Unexecuted instantiation: exif.c:zend_string_starts_with Unexecuted instantiation: hash_adler32.c:zend_string_starts_with Unexecuted instantiation: hash_crc32.c:zend_string_starts_with Unexecuted instantiation: hash_fnv.c:zend_string_starts_with Unexecuted instantiation: hash_gost.c:zend_string_starts_with Unexecuted instantiation: hash_haval.c:zend_string_starts_with Unexecuted instantiation: hash_joaat.c:zend_string_starts_with Unexecuted instantiation: hash_md.c:zend_string_starts_with Unexecuted instantiation: hash_murmur.c:zend_string_starts_with Unexecuted instantiation: hash_ripemd.c:zend_string_starts_with Unexecuted instantiation: hash_sha_ni.c:zend_string_starts_with Unexecuted instantiation: hash_sha_sse2.c:zend_string_starts_with Unexecuted instantiation: hash_sha.c:zend_string_starts_with Unexecuted instantiation: hash_sha3.c:zend_string_starts_with Unexecuted instantiation: hash_snefru.c:zend_string_starts_with Unexecuted instantiation: hash_tiger.c:zend_string_starts_with Unexecuted instantiation: hash_whirlpool.c:zend_string_starts_with Unexecuted instantiation: hash_xxhash.c:zend_string_starts_with Unexecuted instantiation: hash.c:zend_string_starts_with Unexecuted instantiation: json_encoder.c:zend_string_starts_with Unexecuted instantiation: json_parser.tab.c:zend_string_starts_with Unexecuted instantiation: json_scanner.c:zend_string_starts_with Unexecuted instantiation: json.c:zend_string_starts_with Unexecuted instantiation: php_lexbor.c:zend_string_starts_with Unexecuted instantiation: shared_alloc_mmap.c:zend_string_starts_with Unexecuted instantiation: shared_alloc_posix.c:zend_string_starts_with Unexecuted instantiation: shared_alloc_shm.c:zend_string_starts_with Unexecuted instantiation: zend_accelerator_api.c:zend_string_starts_with Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_starts_with Unexecuted instantiation: zend_accelerator_debug.c:zend_string_starts_with Unexecuted instantiation: zend_accelerator_hash.c:zend_string_starts_with Unexecuted instantiation: zend_accelerator_module.c:zend_string_starts_with Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_starts_with Unexecuted instantiation: zend_file_cache.c:zend_string_starts_with Unexecuted instantiation: zend_persist_calc.c:zend_string_starts_with Unexecuted instantiation: zend_persist.c:zend_string_starts_with Unexecuted instantiation: zend_shared_alloc.c:zend_string_starts_with Unexecuted instantiation: ZendAccelerator.c:zend_string_starts_with Unexecuted instantiation: ir_cfg.c:zend_string_starts_with Unexecuted instantiation: ir_check.c:zend_string_starts_with Unexecuted instantiation: ir_dump.c:zend_string_starts_with Unexecuted instantiation: ir_emit.c:zend_string_starts_with Unexecuted instantiation: ir_gcm.c:zend_string_starts_with Unexecuted instantiation: ir_gdb.c:zend_string_starts_with Unexecuted instantiation: ir_patch.c:zend_string_starts_with Unexecuted instantiation: ir_perf.c:zend_string_starts_with Unexecuted instantiation: ir_ra.c:zend_string_starts_with Unexecuted instantiation: ir_save.c:zend_string_starts_with Unexecuted instantiation: ir_sccp.c:zend_string_starts_with Unexecuted instantiation: ir_strtab.c:zend_string_starts_with Unexecuted instantiation: ir.c:zend_string_starts_with Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_starts_with Unexecuted instantiation: zend_jit.c:zend_string_starts_with Unexecuted instantiation: csprng.c:zend_string_starts_with Unexecuted instantiation: engine_mt19937.c:zend_string_starts_with Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_starts_with Unexecuted instantiation: engine_secure.c:zend_string_starts_with Unexecuted instantiation: engine_user.c:zend_string_starts_with Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_starts_with Unexecuted instantiation: gammasection.c:zend_string_starts_with Unexecuted instantiation: random.c:zend_string_starts_with Unexecuted instantiation: randomizer.c:zend_string_starts_with Unexecuted instantiation: zend_utils.c:zend_string_starts_with Unexecuted instantiation: php_reflection.c:zend_string_starts_with Unexecuted instantiation: php_spl.c:zend_string_starts_with Unexecuted instantiation: spl_array.c:zend_string_starts_with Unexecuted instantiation: spl_directory.c:zend_string_starts_with Unexecuted instantiation: spl_dllist.c:zend_string_starts_with Unexecuted instantiation: spl_exceptions.c:zend_string_starts_with Unexecuted instantiation: spl_fixedarray.c:zend_string_starts_with Unexecuted instantiation: spl_functions.c:zend_string_starts_with Unexecuted instantiation: spl_heap.c:zend_string_starts_with Unexecuted instantiation: spl_iterators.c:zend_string_starts_with Unexecuted instantiation: spl_observer.c:zend_string_starts_with Unexecuted instantiation: array.c:zend_string_starts_with Unexecuted instantiation: assert.c:zend_string_starts_with Unexecuted instantiation: base64.c:zend_string_starts_with Unexecuted instantiation: basic_functions.c:zend_string_starts_with Unexecuted instantiation: browscap.c:zend_string_starts_with Unexecuted instantiation: crc32_x86.c:zend_string_starts_with Unexecuted instantiation: crc32.c:zend_string_starts_with Unexecuted instantiation: credits.c:zend_string_starts_with Unexecuted instantiation: crypt.c:zend_string_starts_with Unexecuted instantiation: css.c:zend_string_starts_with Unexecuted instantiation: datetime.c:zend_string_starts_with Unexecuted instantiation: dir.c:zend_string_starts_with Unexecuted instantiation: dl.c:zend_string_starts_with Unexecuted instantiation: dns.c:zend_string_starts_with Unexecuted instantiation: exec.c:zend_string_starts_with Unexecuted instantiation: file.c:zend_string_starts_with Unexecuted instantiation: filestat.c:zend_string_starts_with Unexecuted instantiation: filters.c:zend_string_starts_with Unexecuted instantiation: flock_compat.c:zend_string_starts_with Unexecuted instantiation: formatted_print.c:zend_string_starts_with Unexecuted instantiation: fsock.c:zend_string_starts_with Unexecuted instantiation: ftok.c:zend_string_starts_with Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_starts_with Unexecuted instantiation: head.c:zend_string_starts_with Unexecuted instantiation: hrtime.c:zend_string_starts_with Unexecuted instantiation: html.c:zend_string_starts_with Unexecuted instantiation: http_fopen_wrapper.c:zend_string_starts_with Unexecuted instantiation: http.c:zend_string_starts_with Unexecuted instantiation: image.c:zend_string_starts_with Unexecuted instantiation: incomplete_class.c:zend_string_starts_with Unexecuted instantiation: info.c:zend_string_starts_with Unexecuted instantiation: iptc.c:zend_string_starts_with Unexecuted instantiation: levenshtein.c:zend_string_starts_with Unexecuted instantiation: link.c:zend_string_starts_with Unexecuted instantiation: mail.c:zend_string_starts_with Unexecuted instantiation: math.c:zend_string_starts_with Unexecuted instantiation: md5.c:zend_string_starts_with Unexecuted instantiation: metaphone.c:zend_string_starts_with Unexecuted instantiation: microtime.c:zend_string_starts_with Unexecuted instantiation: net.c:zend_string_starts_with Unexecuted instantiation: pack.c:zend_string_starts_with Unexecuted instantiation: pageinfo.c:zend_string_starts_with Unexecuted instantiation: password.c:zend_string_starts_with Unexecuted instantiation: php_fopen_wrapper.c:zend_string_starts_with Unexecuted instantiation: proc_open.c:zend_string_starts_with Unexecuted instantiation: quot_print.c:zend_string_starts_with Unexecuted instantiation: scanf.c:zend_string_starts_with Unexecuted instantiation: sha1.c:zend_string_starts_with Unexecuted instantiation: soundex.c:zend_string_starts_with Unexecuted instantiation: streamsfuncs.c:zend_string_starts_with Unexecuted instantiation: string.c:zend_string_starts_with Unexecuted instantiation: strnatcmp.c:zend_string_starts_with Unexecuted instantiation: syslog.c:zend_string_starts_with Unexecuted instantiation: type.c:zend_string_starts_with Unexecuted instantiation: uniqid.c:zend_string_starts_with Unexecuted instantiation: url_scanner_ex.c:zend_string_starts_with Unexecuted instantiation: url.c:zend_string_starts_with Unexecuted instantiation: user_filters.c:zend_string_starts_with Unexecuted instantiation: uuencode.c:zend_string_starts_with Unexecuted instantiation: var_unserializer.c:zend_string_starts_with Unexecuted instantiation: var.c:zend_string_starts_with Unexecuted instantiation: versioning.c:zend_string_starts_with Unexecuted instantiation: crypt_sha256.c:zend_string_starts_with Unexecuted instantiation: crypt_sha512.c:zend_string_starts_with Unexecuted instantiation: php_crypt_r.c:zend_string_starts_with Unexecuted instantiation: php_uri.c:zend_string_starts_with Unexecuted instantiation: php_uri_common.c:zend_string_starts_with Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_starts_with Unexecuted instantiation: uri_parser_whatwg.c:zend_string_starts_with Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_starts_with Unexecuted instantiation: explicit_bzero.c:zend_string_starts_with Unexecuted instantiation: fopen_wrappers.c:zend_string_starts_with Unexecuted instantiation: getopt.c:zend_string_starts_with Unexecuted instantiation: main.c:zend_string_starts_with Unexecuted instantiation: network.c:zend_string_starts_with Unexecuted instantiation: output.c:zend_string_starts_with Unexecuted instantiation: php_content_types.c:zend_string_starts_with Unexecuted instantiation: php_ini_builder.c:zend_string_starts_with Unexecuted instantiation: php_ini.c:zend_string_starts_with Unexecuted instantiation: php_glob.c:zend_string_starts_with Unexecuted instantiation: php_odbc_utils.c:zend_string_starts_with Unexecuted instantiation: php_open_temporary_file.c:zend_string_starts_with Unexecuted instantiation: php_scandir.c:zend_string_starts_with Unexecuted instantiation: php_syslog.c:zend_string_starts_with Unexecuted instantiation: php_ticks.c:zend_string_starts_with Unexecuted instantiation: php_variables.c:zend_string_starts_with Unexecuted instantiation: reentrancy.c:zend_string_starts_with Unexecuted instantiation: rfc1867.c:zend_string_starts_with Unexecuted instantiation: safe_bcmp.c:zend_string_starts_with Unexecuted instantiation: SAPI.c:zend_string_starts_with Unexecuted instantiation: snprintf.c:zend_string_starts_with Unexecuted instantiation: spprintf.c:zend_string_starts_with Unexecuted instantiation: strlcat.c:zend_string_starts_with Unexecuted instantiation: strlcpy.c:zend_string_starts_with Unexecuted instantiation: cast.c:zend_string_starts_with Unexecuted instantiation: filter.c:zend_string_starts_with Unexecuted instantiation: glob_wrapper.c:zend_string_starts_with Unexecuted instantiation: memory.c:zend_string_starts_with Unexecuted instantiation: mmap.c:zend_string_starts_with Unexecuted instantiation: plain_wrapper.c:zend_string_starts_with Unexecuted instantiation: stream_errors.c:zend_string_starts_with Unexecuted instantiation: streams.c:zend_string_starts_with Unexecuted instantiation: transports.c:zend_string_starts_with Unexecuted instantiation: userspace.c:zend_string_starts_with Unexecuted instantiation: xp_socket.c:zend_string_starts_with Unexecuted instantiation: block_pass.c:zend_string_starts_with Unexecuted instantiation: compact_literals.c:zend_string_starts_with Unexecuted instantiation: compact_vars.c:zend_string_starts_with Unexecuted instantiation: dce.c:zend_string_starts_with Unexecuted instantiation: dfa_pass.c:zend_string_starts_with Unexecuted instantiation: escape_analysis.c:zend_string_starts_with Unexecuted instantiation: nop_removal.c:zend_string_starts_with Unexecuted instantiation: optimize_func_calls.c:zend_string_starts_with Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_starts_with Unexecuted instantiation: pass1.c:zend_string_starts_with Unexecuted instantiation: pass3.c:zend_string_starts_with Unexecuted instantiation: sccp.c:zend_string_starts_with Unexecuted instantiation: scdf.c:zend_string_starts_with Unexecuted instantiation: zend_call_graph.c:zend_string_starts_with Unexecuted instantiation: zend_cfg.c:zend_string_starts_with Unexecuted instantiation: zend_dfg.c:zend_string_starts_with Unexecuted instantiation: zend_dump.c:zend_string_starts_with Unexecuted instantiation: zend_func_info.c:zend_string_starts_with Unexecuted instantiation: zend_inference.c:zend_string_starts_with Unexecuted instantiation: zend_optimizer.c:zend_string_starts_with Unexecuted instantiation: zend_ssa.c:zend_string_starts_with Unexecuted instantiation: zend_alloc.c:zend_string_starts_with Unexecuted instantiation: zend_API.c:zend_string_starts_with Unexecuted instantiation: zend_ast.c:zend_string_starts_with Unexecuted instantiation: zend_attributes.c:zend_string_starts_with Unexecuted instantiation: zend_autoload.c:zend_string_starts_with Unexecuted instantiation: zend_builtin_functions.c:zend_string_starts_with Unexecuted instantiation: zend_call_stack.c:zend_string_starts_with Unexecuted instantiation: zend_closures.c:zend_string_starts_with Unexecuted instantiation: zend_compile.c:zend_string_starts_with Unexecuted instantiation: zend_constants.c:zend_string_starts_with Unexecuted instantiation: zend_cpuinfo.c:zend_string_starts_with Unexecuted instantiation: zend_default_classes.c:zend_string_starts_with Unexecuted instantiation: zend_dtrace.c:zend_string_starts_with Unexecuted instantiation: zend_enum.c:zend_string_starts_with Unexecuted instantiation: zend_exceptions.c:zend_string_starts_with Unexecuted instantiation: zend_execute_API.c:zend_string_starts_with Unexecuted instantiation: zend_execute.c:zend_string_starts_with Unexecuted instantiation: zend_extensions.c:zend_string_starts_with Unexecuted instantiation: zend_fibers.c:zend_string_starts_with Unexecuted instantiation: zend_float.c:zend_string_starts_with Unexecuted instantiation: zend_gc.c:zend_string_starts_with Unexecuted instantiation: zend_gdb.c:zend_string_starts_with Unexecuted instantiation: zend_generators.c:zend_string_starts_with Unexecuted instantiation: zend_hash.c:zend_string_starts_with Unexecuted instantiation: zend_highlight.c:zend_string_starts_with Unexecuted instantiation: zend_hrtime.c:zend_string_starts_with Unexecuted instantiation: zend_inheritance.c:zend_string_starts_with Unexecuted instantiation: zend_ini_parser.c:zend_string_starts_with Unexecuted instantiation: zend_ini_scanner.c:zend_string_starts_with Unexecuted instantiation: zend_ini.c:zend_string_starts_with Unexecuted instantiation: zend_interfaces.c:zend_string_starts_with Unexecuted instantiation: zend_iterators.c:zend_string_starts_with Unexecuted instantiation: zend_language_parser.c:zend_string_starts_with Unexecuted instantiation: zend_language_scanner.c:zend_string_starts_with Unexecuted instantiation: zend_lazy_objects.c:zend_string_starts_with Unexecuted instantiation: zend_list.c:zend_string_starts_with Unexecuted instantiation: zend_llist.c:zend_string_starts_with Unexecuted instantiation: zend_multibyte.c:zend_string_starts_with Unexecuted instantiation: zend_object_handlers.c:zend_string_starts_with Unexecuted instantiation: zend_objects_API.c:zend_string_starts_with Unexecuted instantiation: zend_objects.c:zend_string_starts_with Unexecuted instantiation: zend_observer.c:zend_string_starts_with Unexecuted instantiation: zend_opcode.c:zend_string_starts_with Unexecuted instantiation: zend_operators.c:zend_string_starts_with Unexecuted instantiation: zend_property_hooks.c:zend_string_starts_with Unexecuted instantiation: zend_ptr_stack.c:zend_string_starts_with Unexecuted instantiation: zend_signal.c:zend_string_starts_with Unexecuted instantiation: zend_smart_str.c:zend_string_starts_with Unexecuted instantiation: zend_sort.c:zend_string_starts_with Unexecuted instantiation: zend_stack.c:zend_string_starts_with Unexecuted instantiation: zend_stream.c:zend_string_starts_with Unexecuted instantiation: zend_string.c:zend_string_starts_with Unexecuted instantiation: zend_strtod.c:zend_string_starts_with Unexecuted instantiation: zend_system_id.c:zend_string_starts_with Unexecuted instantiation: zend_variables.c:zend_string_starts_with Unexecuted instantiation: zend_virtual_cwd.c:zend_string_starts_with Unexecuted instantiation: zend_vm_opcodes.c:zend_string_starts_with Unexecuted instantiation: zend_weakrefs.c:zend_string_starts_with Unexecuted instantiation: zend.c:zend_string_starts_with Unexecuted instantiation: internal_functions_cli.c:zend_string_starts_with Unexecuted instantiation: fuzzer-parser.c:zend_string_starts_with Unexecuted instantiation: fuzzer-sapi.c:zend_string_starts_with Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_starts_with Unexecuted instantiation: fuzzer-exif.c:zend_string_starts_with Unexecuted instantiation: fuzzer-unserialize.c:zend_string_starts_with Unexecuted instantiation: fuzzer-function-jit.c:zend_string_starts_with Unexecuted instantiation: fuzzer-json.c:zend_string_starts_with Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_starts_with Unexecuted instantiation: fuzzer-execute.c:zend_string_starts_with |
418 | | |
419 | | #define zend_string_starts_with_literal(str, prefix) \ |
420 | 100k | zend_string_starts_with_cstr(str, "" prefix, sizeof(prefix) - 1) |
421 | | |
422 | | static zend_always_inline bool zend_string_starts_with_cstr_ci(const zend_string *str, const char *prefix, size_t prefix_length) |
423 | 0 | { |
424 | 0 | return ZSTR_LEN(str) >= prefix_length && !strncasecmp(ZSTR_VAL(str), prefix, prefix_length); |
425 | 0 | } Unexecuted instantiation: php_date.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: astro.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: dow.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: parse_date.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: parse_tz.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: parse_posix.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: timelib.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: tm2unixtime.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: unixtime2tm.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: parse_iso_intervals.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: interval.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_pcre.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: exif.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_adler32.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_crc32.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_fnv.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_gost.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_haval.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_joaat.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_md.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_murmur.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_ripemd.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_sha_ni.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_sha_sse2.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_sha.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_sha3.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_snefru.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_tiger.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_whirlpool.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_xxhash.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: json_encoder.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: json_parser.tab.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: json_scanner.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: json.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_lexbor.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: shared_alloc_mmap.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: shared_alloc_posix.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: shared_alloc_shm.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_accelerator_api.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_accelerator_debug.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_accelerator_hash.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_accelerator_module.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_file_cache.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_persist_calc.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_persist.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_shared_alloc.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: ZendAccelerator.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: ir_cfg.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: ir_check.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: ir_dump.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: ir_emit.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: ir_gcm.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: ir_gdb.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: ir_patch.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: ir_perf.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: ir_ra.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: ir_save.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: ir_sccp.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: ir_strtab.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: ir.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_jit.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: csprng.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: engine_mt19937.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: engine_secure.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: engine_user.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: gammasection.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: random.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: randomizer.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_utils.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_reflection.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_spl.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: spl_array.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: spl_directory.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: spl_dllist.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: spl_exceptions.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: spl_fixedarray.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: spl_functions.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: spl_heap.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: spl_iterators.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: spl_observer.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: array.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: assert.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: base64.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: basic_functions.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: browscap.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: crc32_x86.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: crc32.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: credits.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: crypt.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: css.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: datetime.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: dir.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: dl.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: dns.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: exec.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: file.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: filestat.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: filters.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: flock_compat.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: formatted_print.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fsock.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: ftok.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: head.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hrtime.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: html.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: http_fopen_wrapper.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: http.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: image.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: incomplete_class.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: info.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: iptc.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: levenshtein.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: link.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: mail.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: math.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: md5.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: metaphone.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: microtime.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: net.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: pack.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: pageinfo.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: password.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_fopen_wrapper.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: proc_open.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: quot_print.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: scanf.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: sha1.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: soundex.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: streamsfuncs.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: string.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: strnatcmp.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: syslog.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: type.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: uniqid.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: url_scanner_ex.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: url.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: user_filters.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: uuencode.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: var_unserializer.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: var.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: versioning.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: crypt_sha256.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: crypt_sha512.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_crypt_r.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_uri.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_uri_common.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: uri_parser_whatwg.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: explicit_bzero.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fopen_wrappers.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: getopt.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: main.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: network.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: output.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_content_types.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_ini_builder.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_ini.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_glob.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_odbc_utils.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_open_temporary_file.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_scandir.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_syslog.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_ticks.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_variables.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: reentrancy.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: rfc1867.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: safe_bcmp.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: SAPI.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: snprintf.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: spprintf.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: strlcat.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: strlcpy.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: cast.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: filter.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: glob_wrapper.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: memory.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: mmap.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: plain_wrapper.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: stream_errors.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: streams.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: transports.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: userspace.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: xp_socket.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: block_pass.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: compact_literals.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: compact_vars.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: dce.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: dfa_pass.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: escape_analysis.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: nop_removal.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: optimize_func_calls.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: pass1.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: pass3.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: sccp.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: scdf.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_call_graph.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_cfg.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_dfg.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_dump.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_func_info.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_inference.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_optimizer.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_ssa.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_alloc.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_API.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_ast.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_attributes.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_autoload.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_builtin_functions.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_call_stack.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_closures.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_compile.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_constants.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_cpuinfo.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_default_classes.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_dtrace.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_enum.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_exceptions.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_execute_API.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_execute.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_extensions.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_fibers.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_float.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_gc.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_gdb.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_generators.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_hash.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_highlight.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_hrtime.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_inheritance.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_ini_parser.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_ini_scanner.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_ini.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_interfaces.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_iterators.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_language_parser.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_language_scanner.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_lazy_objects.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_list.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_llist.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_multibyte.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_object_handlers.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_objects_API.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_objects.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_observer.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_opcode.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_operators.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_property_hooks.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_ptr_stack.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_signal.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_smart_str.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_sort.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_stack.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_stream.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_string.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_strtod.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_system_id.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_variables.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_virtual_cwd.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_vm_opcodes.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_weakrefs.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: internal_functions_cli.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-parser.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-sapi.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-exif.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-unserialize.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-function-jit.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-json.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-execute.c:zend_string_starts_with_cstr_ci |
426 | | |
427 | | static zend_always_inline bool zend_string_starts_with_ci(const zend_string *str, const zend_string *prefix) |
428 | 0 | { |
429 | 0 | return zend_string_starts_with_cstr_ci(str, ZSTR_VAL(prefix), ZSTR_LEN(prefix)); |
430 | 0 | } Unexecuted instantiation: php_date.c:zend_string_starts_with_ci Unexecuted instantiation: astro.c:zend_string_starts_with_ci Unexecuted instantiation: dow.c:zend_string_starts_with_ci Unexecuted instantiation: parse_date.c:zend_string_starts_with_ci Unexecuted instantiation: parse_tz.c:zend_string_starts_with_ci Unexecuted instantiation: parse_posix.c:zend_string_starts_with_ci Unexecuted instantiation: timelib.c:zend_string_starts_with_ci Unexecuted instantiation: tm2unixtime.c:zend_string_starts_with_ci Unexecuted instantiation: unixtime2tm.c:zend_string_starts_with_ci Unexecuted instantiation: parse_iso_intervals.c:zend_string_starts_with_ci Unexecuted instantiation: interval.c:zend_string_starts_with_ci Unexecuted instantiation: php_pcre.c:zend_string_starts_with_ci Unexecuted instantiation: exif.c:zend_string_starts_with_ci Unexecuted instantiation: hash_adler32.c:zend_string_starts_with_ci Unexecuted instantiation: hash_crc32.c:zend_string_starts_with_ci Unexecuted instantiation: hash_fnv.c:zend_string_starts_with_ci Unexecuted instantiation: hash_gost.c:zend_string_starts_with_ci Unexecuted instantiation: hash_haval.c:zend_string_starts_with_ci Unexecuted instantiation: hash_joaat.c:zend_string_starts_with_ci Unexecuted instantiation: hash_md.c:zend_string_starts_with_ci Unexecuted instantiation: hash_murmur.c:zend_string_starts_with_ci Unexecuted instantiation: hash_ripemd.c:zend_string_starts_with_ci Unexecuted instantiation: hash_sha_ni.c:zend_string_starts_with_ci Unexecuted instantiation: hash_sha_sse2.c:zend_string_starts_with_ci Unexecuted instantiation: hash_sha.c:zend_string_starts_with_ci Unexecuted instantiation: hash_sha3.c:zend_string_starts_with_ci Unexecuted instantiation: hash_snefru.c:zend_string_starts_with_ci Unexecuted instantiation: hash_tiger.c:zend_string_starts_with_ci Unexecuted instantiation: hash_whirlpool.c:zend_string_starts_with_ci Unexecuted instantiation: hash_xxhash.c:zend_string_starts_with_ci Unexecuted instantiation: hash.c:zend_string_starts_with_ci Unexecuted instantiation: json_encoder.c:zend_string_starts_with_ci Unexecuted instantiation: json_parser.tab.c:zend_string_starts_with_ci Unexecuted instantiation: json_scanner.c:zend_string_starts_with_ci Unexecuted instantiation: json.c:zend_string_starts_with_ci Unexecuted instantiation: php_lexbor.c:zend_string_starts_with_ci Unexecuted instantiation: shared_alloc_mmap.c:zend_string_starts_with_ci Unexecuted instantiation: shared_alloc_posix.c:zend_string_starts_with_ci Unexecuted instantiation: shared_alloc_shm.c:zend_string_starts_with_ci Unexecuted instantiation: zend_accelerator_api.c:zend_string_starts_with_ci Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_starts_with_ci Unexecuted instantiation: zend_accelerator_debug.c:zend_string_starts_with_ci Unexecuted instantiation: zend_accelerator_hash.c:zend_string_starts_with_ci Unexecuted instantiation: zend_accelerator_module.c:zend_string_starts_with_ci Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_starts_with_ci Unexecuted instantiation: zend_file_cache.c:zend_string_starts_with_ci Unexecuted instantiation: zend_persist_calc.c:zend_string_starts_with_ci Unexecuted instantiation: zend_persist.c:zend_string_starts_with_ci Unexecuted instantiation: zend_shared_alloc.c:zend_string_starts_with_ci Unexecuted instantiation: ZendAccelerator.c:zend_string_starts_with_ci Unexecuted instantiation: ir_cfg.c:zend_string_starts_with_ci Unexecuted instantiation: ir_check.c:zend_string_starts_with_ci Unexecuted instantiation: ir_dump.c:zend_string_starts_with_ci Unexecuted instantiation: ir_emit.c:zend_string_starts_with_ci Unexecuted instantiation: ir_gcm.c:zend_string_starts_with_ci Unexecuted instantiation: ir_gdb.c:zend_string_starts_with_ci Unexecuted instantiation: ir_patch.c:zend_string_starts_with_ci Unexecuted instantiation: ir_perf.c:zend_string_starts_with_ci Unexecuted instantiation: ir_ra.c:zend_string_starts_with_ci Unexecuted instantiation: ir_save.c:zend_string_starts_with_ci Unexecuted instantiation: ir_sccp.c:zend_string_starts_with_ci Unexecuted instantiation: ir_strtab.c:zend_string_starts_with_ci Unexecuted instantiation: ir.c:zend_string_starts_with_ci Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_starts_with_ci Unexecuted instantiation: zend_jit.c:zend_string_starts_with_ci Unexecuted instantiation: csprng.c:zend_string_starts_with_ci Unexecuted instantiation: engine_mt19937.c:zend_string_starts_with_ci Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_starts_with_ci Unexecuted instantiation: engine_secure.c:zend_string_starts_with_ci Unexecuted instantiation: engine_user.c:zend_string_starts_with_ci Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_starts_with_ci Unexecuted instantiation: gammasection.c:zend_string_starts_with_ci Unexecuted instantiation: random.c:zend_string_starts_with_ci Unexecuted instantiation: randomizer.c:zend_string_starts_with_ci Unexecuted instantiation: zend_utils.c:zend_string_starts_with_ci Unexecuted instantiation: php_reflection.c:zend_string_starts_with_ci Unexecuted instantiation: php_spl.c:zend_string_starts_with_ci Unexecuted instantiation: spl_array.c:zend_string_starts_with_ci Unexecuted instantiation: spl_directory.c:zend_string_starts_with_ci Unexecuted instantiation: spl_dllist.c:zend_string_starts_with_ci Unexecuted instantiation: spl_exceptions.c:zend_string_starts_with_ci Unexecuted instantiation: spl_fixedarray.c:zend_string_starts_with_ci Unexecuted instantiation: spl_functions.c:zend_string_starts_with_ci Unexecuted instantiation: spl_heap.c:zend_string_starts_with_ci Unexecuted instantiation: spl_iterators.c:zend_string_starts_with_ci Unexecuted instantiation: spl_observer.c:zend_string_starts_with_ci Unexecuted instantiation: array.c:zend_string_starts_with_ci Unexecuted instantiation: assert.c:zend_string_starts_with_ci Unexecuted instantiation: base64.c:zend_string_starts_with_ci Unexecuted instantiation: basic_functions.c:zend_string_starts_with_ci Unexecuted instantiation: browscap.c:zend_string_starts_with_ci Unexecuted instantiation: crc32_x86.c:zend_string_starts_with_ci Unexecuted instantiation: crc32.c:zend_string_starts_with_ci Unexecuted instantiation: credits.c:zend_string_starts_with_ci Unexecuted instantiation: crypt.c:zend_string_starts_with_ci Unexecuted instantiation: css.c:zend_string_starts_with_ci Unexecuted instantiation: datetime.c:zend_string_starts_with_ci Unexecuted instantiation: dir.c:zend_string_starts_with_ci Unexecuted instantiation: dl.c:zend_string_starts_with_ci Unexecuted instantiation: dns.c:zend_string_starts_with_ci Unexecuted instantiation: exec.c:zend_string_starts_with_ci Unexecuted instantiation: file.c:zend_string_starts_with_ci Unexecuted instantiation: filestat.c:zend_string_starts_with_ci Unexecuted instantiation: filters.c:zend_string_starts_with_ci Unexecuted instantiation: flock_compat.c:zend_string_starts_with_ci Unexecuted instantiation: formatted_print.c:zend_string_starts_with_ci Unexecuted instantiation: fsock.c:zend_string_starts_with_ci Unexecuted instantiation: ftok.c:zend_string_starts_with_ci Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_starts_with_ci Unexecuted instantiation: head.c:zend_string_starts_with_ci Unexecuted instantiation: hrtime.c:zend_string_starts_with_ci Unexecuted instantiation: html.c:zend_string_starts_with_ci Unexecuted instantiation: http_fopen_wrapper.c:zend_string_starts_with_ci Unexecuted instantiation: http.c:zend_string_starts_with_ci Unexecuted instantiation: image.c:zend_string_starts_with_ci Unexecuted instantiation: incomplete_class.c:zend_string_starts_with_ci Unexecuted instantiation: info.c:zend_string_starts_with_ci Unexecuted instantiation: iptc.c:zend_string_starts_with_ci Unexecuted instantiation: levenshtein.c:zend_string_starts_with_ci Unexecuted instantiation: link.c:zend_string_starts_with_ci Unexecuted instantiation: mail.c:zend_string_starts_with_ci Unexecuted instantiation: math.c:zend_string_starts_with_ci Unexecuted instantiation: md5.c:zend_string_starts_with_ci Unexecuted instantiation: metaphone.c:zend_string_starts_with_ci Unexecuted instantiation: microtime.c:zend_string_starts_with_ci Unexecuted instantiation: net.c:zend_string_starts_with_ci Unexecuted instantiation: pack.c:zend_string_starts_with_ci Unexecuted instantiation: pageinfo.c:zend_string_starts_with_ci Unexecuted instantiation: password.c:zend_string_starts_with_ci Unexecuted instantiation: php_fopen_wrapper.c:zend_string_starts_with_ci Unexecuted instantiation: proc_open.c:zend_string_starts_with_ci Unexecuted instantiation: quot_print.c:zend_string_starts_with_ci Unexecuted instantiation: scanf.c:zend_string_starts_with_ci Unexecuted instantiation: sha1.c:zend_string_starts_with_ci Unexecuted instantiation: soundex.c:zend_string_starts_with_ci Unexecuted instantiation: streamsfuncs.c:zend_string_starts_with_ci Unexecuted instantiation: string.c:zend_string_starts_with_ci Unexecuted instantiation: strnatcmp.c:zend_string_starts_with_ci Unexecuted instantiation: syslog.c:zend_string_starts_with_ci Unexecuted instantiation: type.c:zend_string_starts_with_ci Unexecuted instantiation: uniqid.c:zend_string_starts_with_ci Unexecuted instantiation: url_scanner_ex.c:zend_string_starts_with_ci Unexecuted instantiation: url.c:zend_string_starts_with_ci Unexecuted instantiation: user_filters.c:zend_string_starts_with_ci Unexecuted instantiation: uuencode.c:zend_string_starts_with_ci Unexecuted instantiation: var_unserializer.c:zend_string_starts_with_ci Unexecuted instantiation: var.c:zend_string_starts_with_ci Unexecuted instantiation: versioning.c:zend_string_starts_with_ci Unexecuted instantiation: crypt_sha256.c:zend_string_starts_with_ci Unexecuted instantiation: crypt_sha512.c:zend_string_starts_with_ci Unexecuted instantiation: php_crypt_r.c:zend_string_starts_with_ci Unexecuted instantiation: php_uri.c:zend_string_starts_with_ci Unexecuted instantiation: php_uri_common.c:zend_string_starts_with_ci Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_starts_with_ci Unexecuted instantiation: uri_parser_whatwg.c:zend_string_starts_with_ci Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_starts_with_ci Unexecuted instantiation: explicit_bzero.c:zend_string_starts_with_ci Unexecuted instantiation: fopen_wrappers.c:zend_string_starts_with_ci Unexecuted instantiation: getopt.c:zend_string_starts_with_ci Unexecuted instantiation: main.c:zend_string_starts_with_ci Unexecuted instantiation: network.c:zend_string_starts_with_ci Unexecuted instantiation: output.c:zend_string_starts_with_ci Unexecuted instantiation: php_content_types.c:zend_string_starts_with_ci Unexecuted instantiation: php_ini_builder.c:zend_string_starts_with_ci Unexecuted instantiation: php_ini.c:zend_string_starts_with_ci Unexecuted instantiation: php_glob.c:zend_string_starts_with_ci Unexecuted instantiation: php_odbc_utils.c:zend_string_starts_with_ci Unexecuted instantiation: php_open_temporary_file.c:zend_string_starts_with_ci Unexecuted instantiation: php_scandir.c:zend_string_starts_with_ci Unexecuted instantiation: php_syslog.c:zend_string_starts_with_ci Unexecuted instantiation: php_ticks.c:zend_string_starts_with_ci Unexecuted instantiation: php_variables.c:zend_string_starts_with_ci Unexecuted instantiation: reentrancy.c:zend_string_starts_with_ci Unexecuted instantiation: rfc1867.c:zend_string_starts_with_ci Unexecuted instantiation: safe_bcmp.c:zend_string_starts_with_ci Unexecuted instantiation: SAPI.c:zend_string_starts_with_ci Unexecuted instantiation: snprintf.c:zend_string_starts_with_ci Unexecuted instantiation: spprintf.c:zend_string_starts_with_ci Unexecuted instantiation: strlcat.c:zend_string_starts_with_ci Unexecuted instantiation: strlcpy.c:zend_string_starts_with_ci Unexecuted instantiation: cast.c:zend_string_starts_with_ci Unexecuted instantiation: filter.c:zend_string_starts_with_ci Unexecuted instantiation: glob_wrapper.c:zend_string_starts_with_ci Unexecuted instantiation: memory.c:zend_string_starts_with_ci Unexecuted instantiation: mmap.c:zend_string_starts_with_ci Unexecuted instantiation: plain_wrapper.c:zend_string_starts_with_ci Unexecuted instantiation: stream_errors.c:zend_string_starts_with_ci Unexecuted instantiation: streams.c:zend_string_starts_with_ci Unexecuted instantiation: transports.c:zend_string_starts_with_ci Unexecuted instantiation: userspace.c:zend_string_starts_with_ci Unexecuted instantiation: xp_socket.c:zend_string_starts_with_ci Unexecuted instantiation: block_pass.c:zend_string_starts_with_ci Unexecuted instantiation: compact_literals.c:zend_string_starts_with_ci Unexecuted instantiation: compact_vars.c:zend_string_starts_with_ci Unexecuted instantiation: dce.c:zend_string_starts_with_ci Unexecuted instantiation: dfa_pass.c:zend_string_starts_with_ci Unexecuted instantiation: escape_analysis.c:zend_string_starts_with_ci Unexecuted instantiation: nop_removal.c:zend_string_starts_with_ci Unexecuted instantiation: optimize_func_calls.c:zend_string_starts_with_ci Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_starts_with_ci Unexecuted instantiation: pass1.c:zend_string_starts_with_ci Unexecuted instantiation: pass3.c:zend_string_starts_with_ci Unexecuted instantiation: sccp.c:zend_string_starts_with_ci Unexecuted instantiation: scdf.c:zend_string_starts_with_ci Unexecuted instantiation: zend_call_graph.c:zend_string_starts_with_ci Unexecuted instantiation: zend_cfg.c:zend_string_starts_with_ci Unexecuted instantiation: zend_dfg.c:zend_string_starts_with_ci Unexecuted instantiation: zend_dump.c:zend_string_starts_with_ci Unexecuted instantiation: zend_func_info.c:zend_string_starts_with_ci Unexecuted instantiation: zend_inference.c:zend_string_starts_with_ci Unexecuted instantiation: zend_optimizer.c:zend_string_starts_with_ci Unexecuted instantiation: zend_ssa.c:zend_string_starts_with_ci Unexecuted instantiation: zend_alloc.c:zend_string_starts_with_ci Unexecuted instantiation: zend_API.c:zend_string_starts_with_ci Unexecuted instantiation: zend_ast.c:zend_string_starts_with_ci Unexecuted instantiation: zend_attributes.c:zend_string_starts_with_ci Unexecuted instantiation: zend_autoload.c:zend_string_starts_with_ci Unexecuted instantiation: zend_builtin_functions.c:zend_string_starts_with_ci Unexecuted instantiation: zend_call_stack.c:zend_string_starts_with_ci Unexecuted instantiation: zend_closures.c:zend_string_starts_with_ci Unexecuted instantiation: zend_compile.c:zend_string_starts_with_ci Unexecuted instantiation: zend_constants.c:zend_string_starts_with_ci Unexecuted instantiation: zend_cpuinfo.c:zend_string_starts_with_ci Unexecuted instantiation: zend_default_classes.c:zend_string_starts_with_ci Unexecuted instantiation: zend_dtrace.c:zend_string_starts_with_ci Unexecuted instantiation: zend_enum.c:zend_string_starts_with_ci Unexecuted instantiation: zend_exceptions.c:zend_string_starts_with_ci Unexecuted instantiation: zend_execute_API.c:zend_string_starts_with_ci Unexecuted instantiation: zend_execute.c:zend_string_starts_with_ci Unexecuted instantiation: zend_extensions.c:zend_string_starts_with_ci Unexecuted instantiation: zend_fibers.c:zend_string_starts_with_ci Unexecuted instantiation: zend_float.c:zend_string_starts_with_ci Unexecuted instantiation: zend_gc.c:zend_string_starts_with_ci Unexecuted instantiation: zend_gdb.c:zend_string_starts_with_ci Unexecuted instantiation: zend_generators.c:zend_string_starts_with_ci Unexecuted instantiation: zend_hash.c:zend_string_starts_with_ci Unexecuted instantiation: zend_highlight.c:zend_string_starts_with_ci Unexecuted instantiation: zend_hrtime.c:zend_string_starts_with_ci Unexecuted instantiation: zend_inheritance.c:zend_string_starts_with_ci Unexecuted instantiation: zend_ini_parser.c:zend_string_starts_with_ci Unexecuted instantiation: zend_ini_scanner.c:zend_string_starts_with_ci Unexecuted instantiation: zend_ini.c:zend_string_starts_with_ci Unexecuted instantiation: zend_interfaces.c:zend_string_starts_with_ci Unexecuted instantiation: zend_iterators.c:zend_string_starts_with_ci Unexecuted instantiation: zend_language_parser.c:zend_string_starts_with_ci Unexecuted instantiation: zend_language_scanner.c:zend_string_starts_with_ci Unexecuted instantiation: zend_lazy_objects.c:zend_string_starts_with_ci Unexecuted instantiation: zend_list.c:zend_string_starts_with_ci Unexecuted instantiation: zend_llist.c:zend_string_starts_with_ci Unexecuted instantiation: zend_multibyte.c:zend_string_starts_with_ci Unexecuted instantiation: zend_object_handlers.c:zend_string_starts_with_ci Unexecuted instantiation: zend_objects_API.c:zend_string_starts_with_ci Unexecuted instantiation: zend_objects.c:zend_string_starts_with_ci Unexecuted instantiation: zend_observer.c:zend_string_starts_with_ci Unexecuted instantiation: zend_opcode.c:zend_string_starts_with_ci Unexecuted instantiation: zend_operators.c:zend_string_starts_with_ci Unexecuted instantiation: zend_property_hooks.c:zend_string_starts_with_ci Unexecuted instantiation: zend_ptr_stack.c:zend_string_starts_with_ci Unexecuted instantiation: zend_signal.c:zend_string_starts_with_ci Unexecuted instantiation: zend_smart_str.c:zend_string_starts_with_ci Unexecuted instantiation: zend_sort.c:zend_string_starts_with_ci Unexecuted instantiation: zend_stack.c:zend_string_starts_with_ci Unexecuted instantiation: zend_stream.c:zend_string_starts_with_ci Unexecuted instantiation: zend_string.c:zend_string_starts_with_ci Unexecuted instantiation: zend_strtod.c:zend_string_starts_with_ci Unexecuted instantiation: zend_system_id.c:zend_string_starts_with_ci Unexecuted instantiation: zend_variables.c:zend_string_starts_with_ci Unexecuted instantiation: zend_virtual_cwd.c:zend_string_starts_with_ci Unexecuted instantiation: zend_vm_opcodes.c:zend_string_starts_with_ci Unexecuted instantiation: zend_weakrefs.c:zend_string_starts_with_ci Unexecuted instantiation: zend.c:zend_string_starts_with_ci Unexecuted instantiation: internal_functions_cli.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-parser.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-sapi.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-exif.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-unserialize.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-function-jit.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-json.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-execute.c:zend_string_starts_with_ci |
431 | | |
432 | | #define zend_string_starts_with_literal_ci(str, prefix) \ |
433 | 0 | zend_string_starts_with_cstr_ci(str, "" prefix, sizeof(prefix) - 1) |
434 | | |
435 | | /* |
436 | | * DJBX33A (Daniel J. Bernstein, Times 33 with Addition) |
437 | | * |
438 | | * This is Daniel J. Bernstein's popular `times 33' hash function as |
439 | | * posted by him years ago on comp.lang.c. It basically uses a function |
440 | | * like ``hash(i) = hash(i-1) * 33 + str[i]''. This is one of the best |
441 | | * known hash functions for strings. Because it is both computed very |
442 | | * fast and distributes very well. |
443 | | * |
444 | | * The magic of number 33, i.e. why it works better than many other |
445 | | * constants, prime or not, has never been adequately explained by |
446 | | * anyone. So I try an explanation: if one experimentally tests all |
447 | | * multipliers between 1 and 256 (as RSE did now) one detects that even |
448 | | * numbers are not usable at all. The remaining 128 odd numbers |
449 | | * (except for the number 1) work more or less all equally well. They |
450 | | * all distribute in an acceptable way and this way fill a hash table |
451 | | * with an average percent of approx. 86%. |
452 | | * |
453 | | * If one compares the Chi^2 values of the variants, the number 33 not |
454 | | * even has the best value. But the number 33 and a few other equally |
455 | | * good numbers like 17, 31, 63, 127 and 129 have nevertheless a great |
456 | | * advantage to the remaining numbers in the large set of possible |
457 | | * multipliers: their multiply operation can be replaced by a faster |
458 | | * operation based on just one shift plus either a single addition |
459 | | * or subtraction operation. And because a hash function has to both |
460 | | * distribute good _and_ has to be very fast to compute, those few |
461 | | * numbers should be preferred and seems to be the reason why Daniel J. |
462 | | * Bernstein also preferred it. |
463 | | * |
464 | | * |
465 | | * -- Ralf S. Engelschall <rse@engelschall.com> |
466 | | */ |
467 | | |
468 | | static zend_always_inline zend_ulong zend_inline_hash_func(const char *str, size_t len) |
469 | 55.7M | { |
470 | 55.7M | zend_ulong hash = Z_UL(5381); |
471 | | |
472 | 55.7M | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) |
473 | | /* Version with multiplication works better on modern CPU */ |
474 | 397M | for (; len >= 8; len -= 8, str += 8) { |
475 | | # if defined(__aarch64__) && !defined(WORDS_BIGENDIAN) |
476 | | /* On some architectures it is beneficial to load 8 bytes at a |
477 | | time and extract each byte with a bit field extract instr. */ |
478 | | uint64_t chunk; |
479 | | |
480 | | memcpy(&chunk, str, sizeof(chunk)); |
481 | | hash = |
482 | | hash * 33 * 33 * 33 * 33 + |
483 | | ((chunk >> (8 * 0)) & 0xff) * 33 * 33 * 33 + |
484 | | ((chunk >> (8 * 1)) & 0xff) * 33 * 33 + |
485 | | ((chunk >> (8 * 2)) & 0xff) * 33 + |
486 | | ((chunk >> (8 * 3)) & 0xff); |
487 | | hash = |
488 | | hash * 33 * 33 * 33 * 33 + |
489 | | ((chunk >> (8 * 4)) & 0xff) * 33 * 33 * 33 + |
490 | | ((chunk >> (8 * 5)) & 0xff) * 33 * 33 + |
491 | | ((chunk >> (8 * 6)) & 0xff) * 33 + |
492 | | ((chunk >> (8 * 7)) & 0xff); |
493 | | # else |
494 | 342M | hash = |
495 | 342M | hash * Z_L(33 * 33 * 33 * 33) + |
496 | 342M | str[0] * Z_L(33 * 33 * 33) + |
497 | 342M | str[1] * Z_L(33 * 33) + |
498 | 342M | str[2] * Z_L(33) + |
499 | 342M | str[3]; |
500 | 342M | hash = |
501 | 342M | hash * Z_L(33 * 33 * 33 * 33) + |
502 | 342M | str[4] * Z_L(33 * 33 * 33) + |
503 | 342M | str[5] * Z_L(33 * 33) + |
504 | 342M | str[6] * Z_L(33) + |
505 | 342M | str[7]; |
506 | 342M | # endif |
507 | 342M | } |
508 | 55.7M | if (len >= 4) { |
509 | 25.0M | hash = |
510 | 25.0M | hash * Z_L(33 * 33 * 33 * 33) + |
511 | 25.0M | str[0] * Z_L(33 * 33 * 33) + |
512 | 25.0M | str[1] * Z_L(33 * 33) + |
513 | 25.0M | str[2] * Z_L(33) + |
514 | 25.0M | str[3]; |
515 | 25.0M | len -= 4; |
516 | 25.0M | str += 4; |
517 | 25.0M | } |
518 | 55.7M | if (len >= 2) { |
519 | 21.8M | if (len > 2) { |
520 | 10.9M | hash = |
521 | 10.9M | hash * Z_L(33 * 33 * 33) + |
522 | 10.9M | str[0] * Z_L(33 * 33) + |
523 | 10.9M | str[1] * Z_L(33) + |
524 | 10.9M | str[2]; |
525 | 10.9M | } else { |
526 | 10.8M | hash = |
527 | 10.8M | hash * Z_L(33 * 33) + |
528 | 10.8M | str[0] * Z_L(33) + |
529 | 10.8M | str[1]; |
530 | 10.8M | } |
531 | 33.9M | } else if (len != 0) { |
532 | 22.5M | hash = hash * Z_L(33) + *str; |
533 | 22.5M | } |
534 | | #else |
535 | | /* variant with the hash unrolled eight times */ |
536 | | for (; len >= 8; len -= 8) { |
537 | | hash = ((hash << 5) + hash) + *str++; |
538 | | hash = ((hash << 5) + hash) + *str++; |
539 | | hash = ((hash << 5) + hash) + *str++; |
540 | | hash = ((hash << 5) + hash) + *str++; |
541 | | hash = ((hash << 5) + hash) + *str++; |
542 | | hash = ((hash << 5) + hash) + *str++; |
543 | | hash = ((hash << 5) + hash) + *str++; |
544 | | hash = ((hash << 5) + hash) + *str++; |
545 | | } |
546 | | switch (len) { |
547 | | case 7: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
548 | | case 6: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
549 | | case 5: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
550 | | case 4: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
551 | | case 3: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
552 | | case 2: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
553 | | case 1: hash = ((hash << 5) + hash) + *str++; break; |
554 | | case 0: break; |
555 | | default: ZEND_UNREACHABLE(); |
556 | | } |
557 | | #endif |
558 | | |
559 | | /* Hash value can't be zero, so we always set the high bit */ |
560 | 55.7M | #if SIZEOF_ZEND_LONG == 8 |
561 | 55.7M | return hash | Z_UL(0x8000000000000000); |
562 | | #elif SIZEOF_ZEND_LONG == 4 |
563 | | return hash | Z_UL(0x80000000); |
564 | | #else |
565 | | # error "Unknown SIZEOF_ZEND_LONG" |
566 | | #endif |
567 | 55.7M | } Unexecuted instantiation: php_date.c:zend_inline_hash_func Unexecuted instantiation: astro.c:zend_inline_hash_func Unexecuted instantiation: dow.c:zend_inline_hash_func Unexecuted instantiation: parse_date.c:zend_inline_hash_func Unexecuted instantiation: parse_tz.c:zend_inline_hash_func Unexecuted instantiation: parse_posix.c:zend_inline_hash_func Unexecuted instantiation: timelib.c:zend_inline_hash_func Unexecuted instantiation: tm2unixtime.c:zend_inline_hash_func Unexecuted instantiation: unixtime2tm.c:zend_inline_hash_func Unexecuted instantiation: parse_iso_intervals.c:zend_inline_hash_func Unexecuted instantiation: interval.c:zend_inline_hash_func Unexecuted instantiation: php_pcre.c:zend_inline_hash_func Unexecuted instantiation: exif.c:zend_inline_hash_func Unexecuted instantiation: hash_adler32.c:zend_inline_hash_func Unexecuted instantiation: hash_crc32.c:zend_inline_hash_func Unexecuted instantiation: hash_fnv.c:zend_inline_hash_func Unexecuted instantiation: hash_gost.c:zend_inline_hash_func Unexecuted instantiation: hash_haval.c:zend_inline_hash_func Unexecuted instantiation: hash_joaat.c:zend_inline_hash_func Unexecuted instantiation: hash_md.c:zend_inline_hash_func Unexecuted instantiation: hash_murmur.c:zend_inline_hash_func Unexecuted instantiation: hash_ripemd.c:zend_inline_hash_func Unexecuted instantiation: hash_sha_ni.c:zend_inline_hash_func Unexecuted instantiation: hash_sha_sse2.c:zend_inline_hash_func Unexecuted instantiation: hash_sha.c:zend_inline_hash_func Unexecuted instantiation: hash_sha3.c:zend_inline_hash_func Unexecuted instantiation: hash_snefru.c:zend_inline_hash_func Unexecuted instantiation: hash_tiger.c:zend_inline_hash_func Unexecuted instantiation: hash_whirlpool.c:zend_inline_hash_func Unexecuted instantiation: hash_xxhash.c:zend_inline_hash_func Unexecuted instantiation: hash.c:zend_inline_hash_func Unexecuted instantiation: json_encoder.c:zend_inline_hash_func Unexecuted instantiation: json_parser.tab.c:zend_inline_hash_func Unexecuted instantiation: json_scanner.c:zend_inline_hash_func Unexecuted instantiation: json.c:zend_inline_hash_func Unexecuted instantiation: php_lexbor.c:zend_inline_hash_func Unexecuted instantiation: shared_alloc_mmap.c:zend_inline_hash_func Unexecuted instantiation: shared_alloc_posix.c:zend_inline_hash_func Unexecuted instantiation: shared_alloc_shm.c:zend_inline_hash_func Unexecuted instantiation: zend_accelerator_api.c:zend_inline_hash_func Unexecuted instantiation: zend_accelerator_blacklist.c:zend_inline_hash_func Unexecuted instantiation: zend_accelerator_debug.c:zend_inline_hash_func Unexecuted instantiation: zend_accelerator_hash.c:zend_inline_hash_func Unexecuted instantiation: zend_accelerator_module.c:zend_inline_hash_func Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_inline_hash_func Unexecuted instantiation: zend_file_cache.c:zend_inline_hash_func Unexecuted instantiation: zend_persist_calc.c:zend_inline_hash_func Unexecuted instantiation: zend_persist.c:zend_inline_hash_func Unexecuted instantiation: zend_shared_alloc.c:zend_inline_hash_func ZendAccelerator.c:zend_inline_hash_func Line | Count | Source | 469 | 48.1k | { | 470 | 48.1k | zend_ulong hash = Z_UL(5381); | 471 | | | 472 | 48.1k | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) | 473 | | /* Version with multiplication works better on modern CPU */ | 474 | 58.4k | for (; len >= 8; len -= 8, str += 8) { | 475 | | # if defined(__aarch64__) && !defined(WORDS_BIGENDIAN) | 476 | | /* On some architectures it is beneficial to load 8 bytes at a | 477 | | time and extract each byte with a bit field extract instr. */ | 478 | | uint64_t chunk; | 479 | | | 480 | | memcpy(&chunk, str, sizeof(chunk)); | 481 | | hash = | 482 | | hash * 33 * 33 * 33 * 33 + | 483 | | ((chunk >> (8 * 0)) & 0xff) * 33 * 33 * 33 + | 484 | | ((chunk >> (8 * 1)) & 0xff) * 33 * 33 + | 485 | | ((chunk >> (8 * 2)) & 0xff) * 33 + | 486 | | ((chunk >> (8 * 3)) & 0xff); | 487 | | hash = | 488 | | hash * 33 * 33 * 33 * 33 + | 489 | | ((chunk >> (8 * 4)) & 0xff) * 33 * 33 * 33 + | 490 | | ((chunk >> (8 * 5)) & 0xff) * 33 * 33 + | 491 | | ((chunk >> (8 * 6)) & 0xff) * 33 + | 492 | | ((chunk >> (8 * 7)) & 0xff); | 493 | | # else | 494 | 10.2k | hash = | 495 | 10.2k | hash * Z_L(33 * 33 * 33 * 33) + | 496 | 10.2k | str[0] * Z_L(33 * 33 * 33) + | 497 | 10.2k | str[1] * Z_L(33 * 33) + | 498 | 10.2k | str[2] * Z_L(33) + | 499 | 10.2k | str[3]; | 500 | 10.2k | hash = | 501 | 10.2k | hash * Z_L(33 * 33 * 33 * 33) + | 502 | 10.2k | str[4] * Z_L(33 * 33 * 33) + | 503 | 10.2k | str[5] * Z_L(33 * 33) + | 504 | 10.2k | str[6] * Z_L(33) + | 505 | 10.2k | str[7]; | 506 | 10.2k | # endif | 507 | 10.2k | } | 508 | 48.1k | if (len >= 4) { | 509 | 28.4k | hash = | 510 | 28.4k | hash * Z_L(33 * 33 * 33 * 33) + | 511 | 28.4k | str[0] * Z_L(33 * 33 * 33) + | 512 | 28.4k | str[1] * Z_L(33 * 33) + | 513 | 28.4k | str[2] * Z_L(33) + | 514 | 28.4k | str[3]; | 515 | 28.4k | len -= 4; | 516 | 28.4k | str += 4; | 517 | 28.4k | } | 518 | 48.1k | if (len >= 2) { | 519 | 24.2k | if (len > 2) { | 520 | 6.24k | hash = | 521 | 6.24k | hash * Z_L(33 * 33 * 33) + | 522 | 6.24k | str[0] * Z_L(33 * 33) + | 523 | 6.24k | str[1] * Z_L(33) + | 524 | 6.24k | str[2]; | 525 | 18.0k | } else { | 526 | 18.0k | hash = | 527 | 18.0k | hash * Z_L(33 * 33) + | 528 | 18.0k | str[0] * Z_L(33) + | 529 | 18.0k | str[1]; | 530 | 18.0k | } | 531 | 24.2k | } else if (len != 0) { | 532 | 17.0k | hash = hash * Z_L(33) + *str; | 533 | 17.0k | } | 534 | | #else | 535 | | /* variant with the hash unrolled eight times */ | 536 | | for (; len >= 8; len -= 8) { | 537 | | hash = ((hash << 5) + hash) + *str++; | 538 | | hash = ((hash << 5) + hash) + *str++; | 539 | | hash = ((hash << 5) + hash) + *str++; | 540 | | hash = ((hash << 5) + hash) + *str++; | 541 | | hash = ((hash << 5) + hash) + *str++; | 542 | | hash = ((hash << 5) + hash) + *str++; | 543 | | hash = ((hash << 5) + hash) + *str++; | 544 | | hash = ((hash << 5) + hash) + *str++; | 545 | | } | 546 | | switch (len) { | 547 | | case 7: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 548 | | case 6: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 549 | | case 5: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 550 | | case 4: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 551 | | case 3: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 552 | | case 2: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 553 | | case 1: hash = ((hash << 5) + hash) + *str++; break; | 554 | | case 0: break; | 555 | | default: ZEND_UNREACHABLE(); | 556 | | } | 557 | | #endif | 558 | | | 559 | | /* Hash value can't be zero, so we always set the high bit */ | 560 | 48.1k | #if SIZEOF_ZEND_LONG == 8 | 561 | 48.1k | return hash | Z_UL(0x8000000000000000); | 562 | | #elif SIZEOF_ZEND_LONG == 4 | 563 | | return hash | Z_UL(0x80000000); | 564 | | #else | 565 | | # error "Unknown SIZEOF_ZEND_LONG" | 566 | | #endif | 567 | 48.1k | } |
Unexecuted instantiation: ir_cfg.c:zend_inline_hash_func Unexecuted instantiation: ir_check.c:zend_inline_hash_func Unexecuted instantiation: ir_dump.c:zend_inline_hash_func Unexecuted instantiation: ir_emit.c:zend_inline_hash_func Unexecuted instantiation: ir_gcm.c:zend_inline_hash_func Unexecuted instantiation: ir_gdb.c:zend_inline_hash_func Unexecuted instantiation: ir_patch.c:zend_inline_hash_func Unexecuted instantiation: ir_perf.c:zend_inline_hash_func Unexecuted instantiation: ir_ra.c:zend_inline_hash_func Unexecuted instantiation: ir_save.c:zend_inline_hash_func Unexecuted instantiation: ir_sccp.c:zend_inline_hash_func Unexecuted instantiation: ir_strtab.c:zend_inline_hash_func Unexecuted instantiation: ir.c:zend_inline_hash_func Unexecuted instantiation: zend_jit_vm_helpers.c:zend_inline_hash_func Unexecuted instantiation: zend_jit.c:zend_inline_hash_func Unexecuted instantiation: csprng.c:zend_inline_hash_func Unexecuted instantiation: engine_mt19937.c:zend_inline_hash_func Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_inline_hash_func Unexecuted instantiation: engine_secure.c:zend_inline_hash_func Unexecuted instantiation: engine_user.c:zend_inline_hash_func Unexecuted instantiation: engine_xoshiro256starstar.c:zend_inline_hash_func Unexecuted instantiation: gammasection.c:zend_inline_hash_func Unexecuted instantiation: random.c:zend_inline_hash_func Unexecuted instantiation: randomizer.c:zend_inline_hash_func Unexecuted instantiation: zend_utils.c:zend_inline_hash_func Unexecuted instantiation: php_reflection.c:zend_inline_hash_func Unexecuted instantiation: php_spl.c:zend_inline_hash_func Unexecuted instantiation: spl_array.c:zend_inline_hash_func Unexecuted instantiation: spl_directory.c:zend_inline_hash_func Unexecuted instantiation: spl_dllist.c:zend_inline_hash_func Unexecuted instantiation: spl_exceptions.c:zend_inline_hash_func Unexecuted instantiation: spl_fixedarray.c:zend_inline_hash_func Unexecuted instantiation: spl_functions.c:zend_inline_hash_func Unexecuted instantiation: spl_heap.c:zend_inline_hash_func Unexecuted instantiation: spl_iterators.c:zend_inline_hash_func Unexecuted instantiation: spl_observer.c:zend_inline_hash_func Unexecuted instantiation: array.c:zend_inline_hash_func Unexecuted instantiation: assert.c:zend_inline_hash_func Unexecuted instantiation: base64.c:zend_inline_hash_func Unexecuted instantiation: basic_functions.c:zend_inline_hash_func Unexecuted instantiation: browscap.c:zend_inline_hash_func Unexecuted instantiation: crc32_x86.c:zend_inline_hash_func Unexecuted instantiation: crc32.c:zend_inline_hash_func Unexecuted instantiation: credits.c:zend_inline_hash_func Unexecuted instantiation: crypt.c:zend_inline_hash_func Unexecuted instantiation: css.c:zend_inline_hash_func Unexecuted instantiation: datetime.c:zend_inline_hash_func Unexecuted instantiation: dir.c:zend_inline_hash_func Unexecuted instantiation: dl.c:zend_inline_hash_func Unexecuted instantiation: dns.c:zend_inline_hash_func Unexecuted instantiation: exec.c:zend_inline_hash_func Unexecuted instantiation: file.c:zend_inline_hash_func Unexecuted instantiation: filestat.c:zend_inline_hash_func Unexecuted instantiation: filters.c:zend_inline_hash_func Unexecuted instantiation: flock_compat.c:zend_inline_hash_func Unexecuted instantiation: formatted_print.c:zend_inline_hash_func Unexecuted instantiation: fsock.c:zend_inline_hash_func Unexecuted instantiation: ftok.c:zend_inline_hash_func Unexecuted instantiation: ftp_fopen_wrapper.c:zend_inline_hash_func Unexecuted instantiation: head.c:zend_inline_hash_func Unexecuted instantiation: hrtime.c:zend_inline_hash_func html.c:zend_inline_hash_func Line | Count | Source | 469 | 7.65k | { | 470 | 7.65k | zend_ulong hash = Z_UL(5381); | 471 | | | 472 | 7.65k | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) | 473 | | /* Version with multiplication works better on modern CPU */ | 474 | 7.75k | for (; len >= 8; len -= 8, str += 8) { | 475 | | # if defined(__aarch64__) && !defined(WORDS_BIGENDIAN) | 476 | | /* On some architectures it is beneficial to load 8 bytes at a | 477 | | time and extract each byte with a bit field extract instr. */ | 478 | | uint64_t chunk; | 479 | | | 480 | | memcpy(&chunk, str, sizeof(chunk)); | 481 | | hash = | 482 | | hash * 33 * 33 * 33 * 33 + | 483 | | ((chunk >> (8 * 0)) & 0xff) * 33 * 33 * 33 + | 484 | | ((chunk >> (8 * 1)) & 0xff) * 33 * 33 + | 485 | | ((chunk >> (8 * 2)) & 0xff) * 33 + | 486 | | ((chunk >> (8 * 3)) & 0xff); | 487 | | hash = | 488 | | hash * 33 * 33 * 33 * 33 + | 489 | | ((chunk >> (8 * 4)) & 0xff) * 33 * 33 * 33 + | 490 | | ((chunk >> (8 * 5)) & 0xff) * 33 * 33 + | 491 | | ((chunk >> (8 * 6)) & 0xff) * 33 + | 492 | | ((chunk >> (8 * 7)) & 0xff); | 493 | | # else | 494 | 107 | hash = | 495 | 107 | hash * Z_L(33 * 33 * 33 * 33) + | 496 | 107 | str[0] * Z_L(33 * 33 * 33) + | 497 | 107 | str[1] * Z_L(33 * 33) + | 498 | 107 | str[2] * Z_L(33) + | 499 | 107 | str[3]; | 500 | 107 | hash = | 501 | 107 | hash * Z_L(33 * 33 * 33 * 33) + | 502 | 107 | str[4] * Z_L(33 * 33 * 33) + | 503 | 107 | str[5] * Z_L(33 * 33) + | 504 | 107 | str[6] * Z_L(33) + | 505 | 107 | str[7]; | 506 | 107 | # endif | 507 | 107 | } | 508 | 7.65k | if (len >= 4) { | 509 | 62 | hash = | 510 | 62 | hash * Z_L(33 * 33 * 33 * 33) + | 511 | 62 | str[0] * Z_L(33 * 33 * 33) + | 512 | 62 | str[1] * Z_L(33 * 33) + | 513 | 62 | str[2] * Z_L(33) + | 514 | 62 | str[3]; | 515 | 62 | len -= 4; | 516 | 62 | str += 4; | 517 | 62 | } | 518 | 7.65k | if (len >= 2) { | 519 | 7.58k | if (len > 2) { | 520 | 437 | hash = | 521 | 437 | hash * Z_L(33 * 33 * 33) + | 522 | 437 | str[0] * Z_L(33 * 33) + | 523 | 437 | str[1] * Z_L(33) + | 524 | 437 | str[2]; | 525 | 7.14k | } else { | 526 | 7.14k | hash = | 527 | 7.14k | hash * Z_L(33 * 33) + | 528 | 7.14k | str[0] * Z_L(33) + | 529 | 7.14k | str[1]; | 530 | 7.14k | } | 531 | 7.58k | } else if (len != 0) { | 532 | 58 | hash = hash * Z_L(33) + *str; | 533 | 58 | } | 534 | | #else | 535 | | /* variant with the hash unrolled eight times */ | 536 | | for (; len >= 8; len -= 8) { | 537 | | hash = ((hash << 5) + hash) + *str++; | 538 | | hash = ((hash << 5) + hash) + *str++; | 539 | | hash = ((hash << 5) + hash) + *str++; | 540 | | hash = ((hash << 5) + hash) + *str++; | 541 | | hash = ((hash << 5) + hash) + *str++; | 542 | | hash = ((hash << 5) + hash) + *str++; | 543 | | hash = ((hash << 5) + hash) + *str++; | 544 | | hash = ((hash << 5) + hash) + *str++; | 545 | | } | 546 | | switch (len) { | 547 | | case 7: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 548 | | case 6: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 549 | | case 5: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 550 | | case 4: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 551 | | case 3: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 552 | | case 2: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 553 | | case 1: hash = ((hash << 5) + hash) + *str++; break; | 554 | | case 0: break; | 555 | | default: ZEND_UNREACHABLE(); | 556 | | } | 557 | | #endif | 558 | | | 559 | | /* Hash value can't be zero, so we always set the high bit */ | 560 | 7.65k | #if SIZEOF_ZEND_LONG == 8 | 561 | 7.65k | return hash | Z_UL(0x8000000000000000); | 562 | | #elif SIZEOF_ZEND_LONG == 4 | 563 | | return hash | Z_UL(0x80000000); | 564 | | #else | 565 | | # error "Unknown SIZEOF_ZEND_LONG" | 566 | | #endif | 567 | 7.65k | } |
Unexecuted instantiation: http_fopen_wrapper.c:zend_inline_hash_func Unexecuted instantiation: http.c:zend_inline_hash_func Unexecuted instantiation: image.c:zend_inline_hash_func Unexecuted instantiation: incomplete_class.c:zend_inline_hash_func Unexecuted instantiation: info.c:zend_inline_hash_func Unexecuted instantiation: iptc.c:zend_inline_hash_func Unexecuted instantiation: levenshtein.c:zend_inline_hash_func Unexecuted instantiation: link.c:zend_inline_hash_func Unexecuted instantiation: mail.c:zend_inline_hash_func Unexecuted instantiation: math.c:zend_inline_hash_func Unexecuted instantiation: md5.c:zend_inline_hash_func Unexecuted instantiation: metaphone.c:zend_inline_hash_func Unexecuted instantiation: microtime.c:zend_inline_hash_func Unexecuted instantiation: net.c:zend_inline_hash_func Unexecuted instantiation: pack.c:zend_inline_hash_func Unexecuted instantiation: pageinfo.c:zend_inline_hash_func Unexecuted instantiation: password.c:zend_inline_hash_func Unexecuted instantiation: php_fopen_wrapper.c:zend_inline_hash_func Unexecuted instantiation: proc_open.c:zend_inline_hash_func Unexecuted instantiation: quot_print.c:zend_inline_hash_func Unexecuted instantiation: scanf.c:zend_inline_hash_func Unexecuted instantiation: sha1.c:zend_inline_hash_func Unexecuted instantiation: soundex.c:zend_inline_hash_func Unexecuted instantiation: streamsfuncs.c:zend_inline_hash_func Unexecuted instantiation: string.c:zend_inline_hash_func Unexecuted instantiation: strnatcmp.c:zend_inline_hash_func Unexecuted instantiation: syslog.c:zend_inline_hash_func Unexecuted instantiation: type.c:zend_inline_hash_func Unexecuted instantiation: uniqid.c:zend_inline_hash_func Unexecuted instantiation: url_scanner_ex.c:zend_inline_hash_func Unexecuted instantiation: url.c:zend_inline_hash_func Unexecuted instantiation: user_filters.c:zend_inline_hash_func Unexecuted instantiation: uuencode.c:zend_inline_hash_func Unexecuted instantiation: var_unserializer.c:zend_inline_hash_func Unexecuted instantiation: var.c:zend_inline_hash_func Unexecuted instantiation: versioning.c:zend_inline_hash_func Unexecuted instantiation: crypt_sha256.c:zend_inline_hash_func Unexecuted instantiation: crypt_sha512.c:zend_inline_hash_func Unexecuted instantiation: php_crypt_r.c:zend_inline_hash_func Unexecuted instantiation: php_uri.c:zend_inline_hash_func Unexecuted instantiation: php_uri_common.c:zend_inline_hash_func Unexecuted instantiation: uri_parser_rfc3986.c:zend_inline_hash_func Unexecuted instantiation: uri_parser_whatwg.c:zend_inline_hash_func Unexecuted instantiation: uri_parser_php_parse_url.c:zend_inline_hash_func Unexecuted instantiation: explicit_bzero.c:zend_inline_hash_func Unexecuted instantiation: fopen_wrappers.c:zend_inline_hash_func Unexecuted instantiation: getopt.c:zend_inline_hash_func Unexecuted instantiation: main.c:zend_inline_hash_func Unexecuted instantiation: network.c:zend_inline_hash_func Unexecuted instantiation: output.c:zend_inline_hash_func Unexecuted instantiation: php_content_types.c:zend_inline_hash_func Unexecuted instantiation: php_ini_builder.c:zend_inline_hash_func Unexecuted instantiation: php_ini.c:zend_inline_hash_func Unexecuted instantiation: php_glob.c:zend_inline_hash_func Unexecuted instantiation: php_odbc_utils.c:zend_inline_hash_func Unexecuted instantiation: php_open_temporary_file.c:zend_inline_hash_func Unexecuted instantiation: php_scandir.c:zend_inline_hash_func Unexecuted instantiation: php_syslog.c:zend_inline_hash_func Unexecuted instantiation: php_ticks.c:zend_inline_hash_func Unexecuted instantiation: php_variables.c:zend_inline_hash_func Unexecuted instantiation: reentrancy.c:zend_inline_hash_func Unexecuted instantiation: rfc1867.c:zend_inline_hash_func Unexecuted instantiation: safe_bcmp.c:zend_inline_hash_func Unexecuted instantiation: SAPI.c:zend_inline_hash_func Unexecuted instantiation: snprintf.c:zend_inline_hash_func Unexecuted instantiation: spprintf.c:zend_inline_hash_func Unexecuted instantiation: strlcat.c:zend_inline_hash_func Unexecuted instantiation: strlcpy.c:zend_inline_hash_func Unexecuted instantiation: cast.c:zend_inline_hash_func Unexecuted instantiation: filter.c:zend_inline_hash_func Unexecuted instantiation: glob_wrapper.c:zend_inline_hash_func Unexecuted instantiation: memory.c:zend_inline_hash_func Unexecuted instantiation: mmap.c:zend_inline_hash_func Unexecuted instantiation: plain_wrapper.c:zend_inline_hash_func Unexecuted instantiation: stream_errors.c:zend_inline_hash_func Unexecuted instantiation: streams.c:zend_inline_hash_func Unexecuted instantiation: transports.c:zend_inline_hash_func Unexecuted instantiation: userspace.c:zend_inline_hash_func Unexecuted instantiation: xp_socket.c:zend_inline_hash_func Unexecuted instantiation: block_pass.c:zend_inline_hash_func Unexecuted instantiation: compact_literals.c:zend_inline_hash_func Unexecuted instantiation: compact_vars.c:zend_inline_hash_func Unexecuted instantiation: dce.c:zend_inline_hash_func Unexecuted instantiation: dfa_pass.c:zend_inline_hash_func Unexecuted instantiation: escape_analysis.c:zend_inline_hash_func Unexecuted instantiation: nop_removal.c:zend_inline_hash_func Unexecuted instantiation: optimize_func_calls.c:zend_inline_hash_func Unexecuted instantiation: optimize_temp_vars_5.c:zend_inline_hash_func Unexecuted instantiation: pass1.c:zend_inline_hash_func Unexecuted instantiation: pass3.c:zend_inline_hash_func Unexecuted instantiation: sccp.c:zend_inline_hash_func Unexecuted instantiation: scdf.c:zend_inline_hash_func Unexecuted instantiation: zend_call_graph.c:zend_inline_hash_func Unexecuted instantiation: zend_cfg.c:zend_inline_hash_func Unexecuted instantiation: zend_dfg.c:zend_inline_hash_func Unexecuted instantiation: zend_dump.c:zend_inline_hash_func Unexecuted instantiation: zend_func_info.c:zend_inline_hash_func Unexecuted instantiation: zend_inference.c:zend_inline_hash_func Unexecuted instantiation: zend_optimizer.c:zend_inline_hash_func Unexecuted instantiation: zend_ssa.c:zend_inline_hash_func Unexecuted instantiation: zend_alloc.c:zend_inline_hash_func Unexecuted instantiation: zend_API.c:zend_inline_hash_func Unexecuted instantiation: zend_ast.c:zend_inline_hash_func Unexecuted instantiation: zend_attributes.c:zend_inline_hash_func Unexecuted instantiation: zend_autoload.c:zend_inline_hash_func Unexecuted instantiation: zend_builtin_functions.c:zend_inline_hash_func Unexecuted instantiation: zend_call_stack.c:zend_inline_hash_func Unexecuted instantiation: zend_closures.c:zend_inline_hash_func Unexecuted instantiation: zend_compile.c:zend_inline_hash_func Unexecuted instantiation: zend_constants.c:zend_inline_hash_func Unexecuted instantiation: zend_cpuinfo.c:zend_inline_hash_func Unexecuted instantiation: zend_default_classes.c:zend_inline_hash_func Unexecuted instantiation: zend_dtrace.c:zend_inline_hash_func Unexecuted instantiation: zend_enum.c:zend_inline_hash_func Unexecuted instantiation: zend_exceptions.c:zend_inline_hash_func Unexecuted instantiation: zend_execute_API.c:zend_inline_hash_func Unexecuted instantiation: zend_execute.c:zend_inline_hash_func Unexecuted instantiation: zend_extensions.c:zend_inline_hash_func Unexecuted instantiation: zend_fibers.c:zend_inline_hash_func Unexecuted instantiation: zend_float.c:zend_inline_hash_func Unexecuted instantiation: zend_gc.c:zend_inline_hash_func Unexecuted instantiation: zend_gdb.c:zend_inline_hash_func Unexecuted instantiation: zend_generators.c:zend_inline_hash_func zend_hash.c:zend_inline_hash_func Line | Count | Source | 469 | 3.00M | { | 470 | 3.00M | zend_ulong hash = Z_UL(5381); | 471 | | | 472 | 3.00M | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) | 473 | | /* Version with multiplication works better on modern CPU */ | 474 | 5.49M | for (; len >= 8; len -= 8, str += 8) { | 475 | | # if defined(__aarch64__) && !defined(WORDS_BIGENDIAN) | 476 | | /* On some architectures it is beneficial to load 8 bytes at a | 477 | | time and extract each byte with a bit field extract instr. */ | 478 | | uint64_t chunk; | 479 | | | 480 | | memcpy(&chunk, str, sizeof(chunk)); | 481 | | hash = | 482 | | hash * 33 * 33 * 33 * 33 + | 483 | | ((chunk >> (8 * 0)) & 0xff) * 33 * 33 * 33 + | 484 | | ((chunk >> (8 * 1)) & 0xff) * 33 * 33 + | 485 | | ((chunk >> (8 * 2)) & 0xff) * 33 + | 486 | | ((chunk >> (8 * 3)) & 0xff); | 487 | | hash = | 488 | | hash * 33 * 33 * 33 * 33 + | 489 | | ((chunk >> (8 * 4)) & 0xff) * 33 * 33 * 33 + | 490 | | ((chunk >> (8 * 5)) & 0xff) * 33 * 33 + | 491 | | ((chunk >> (8 * 6)) & 0xff) * 33 + | 492 | | ((chunk >> (8 * 7)) & 0xff); | 493 | | # else | 494 | 2.48M | hash = | 495 | 2.48M | hash * Z_L(33 * 33 * 33 * 33) + | 496 | 2.48M | str[0] * Z_L(33 * 33 * 33) + | 497 | 2.48M | str[1] * Z_L(33 * 33) + | 498 | 2.48M | str[2] * Z_L(33) + | 499 | 2.48M | str[3]; | 500 | 2.48M | hash = | 501 | 2.48M | hash * Z_L(33 * 33 * 33 * 33) + | 502 | 2.48M | str[4] * Z_L(33 * 33 * 33) + | 503 | 2.48M | str[5] * Z_L(33 * 33) + | 504 | 2.48M | str[6] * Z_L(33) + | 505 | 2.48M | str[7]; | 506 | 2.48M | # endif | 507 | 2.48M | } | 508 | 3.00M | if (len >= 4) { | 509 | 1.07M | hash = | 510 | 1.07M | hash * Z_L(33 * 33 * 33 * 33) + | 511 | 1.07M | str[0] * Z_L(33 * 33 * 33) + | 512 | 1.07M | str[1] * Z_L(33 * 33) + | 513 | 1.07M | str[2] * Z_L(33) + | 514 | 1.07M | str[3]; | 515 | 1.07M | len -= 4; | 516 | 1.07M | str += 4; | 517 | 1.07M | } | 518 | 3.00M | if (len >= 2) { | 519 | 865k | if (len > 2) { | 520 | 425k | hash = | 521 | 425k | hash * Z_L(33 * 33 * 33) + | 522 | 425k | str[0] * Z_L(33 * 33) + | 523 | 425k | str[1] * Z_L(33) + | 524 | 425k | str[2]; | 525 | 439k | } else { | 526 | 439k | hash = | 527 | 439k | hash * Z_L(33 * 33) + | 528 | 439k | str[0] * Z_L(33) + | 529 | 439k | str[1]; | 530 | 439k | } | 531 | 2.14M | } else if (len != 0) { | 532 | 1.39M | hash = hash * Z_L(33) + *str; | 533 | 1.39M | } | 534 | | #else | 535 | | /* variant with the hash unrolled eight times */ | 536 | | for (; len >= 8; len -= 8) { | 537 | | hash = ((hash << 5) + hash) + *str++; | 538 | | hash = ((hash << 5) + hash) + *str++; | 539 | | hash = ((hash << 5) + hash) + *str++; | 540 | | hash = ((hash << 5) + hash) + *str++; | 541 | | hash = ((hash << 5) + hash) + *str++; | 542 | | hash = ((hash << 5) + hash) + *str++; | 543 | | hash = ((hash << 5) + hash) + *str++; | 544 | | hash = ((hash << 5) + hash) + *str++; | 545 | | } | 546 | | switch (len) { | 547 | | case 7: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 548 | | case 6: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 549 | | case 5: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 550 | | case 4: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 551 | | case 3: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 552 | | case 2: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 553 | | case 1: hash = ((hash << 5) + hash) + *str++; break; | 554 | | case 0: break; | 555 | | default: ZEND_UNREACHABLE(); | 556 | | } | 557 | | #endif | 558 | | | 559 | | /* Hash value can't be zero, so we always set the high bit */ | 560 | 3.00M | #if SIZEOF_ZEND_LONG == 8 | 561 | 3.00M | return hash | Z_UL(0x8000000000000000); | 562 | | #elif SIZEOF_ZEND_LONG == 4 | 563 | | return hash | Z_UL(0x80000000); | 564 | | #else | 565 | | # error "Unknown SIZEOF_ZEND_LONG" | 566 | | #endif | 567 | 3.00M | } |
Unexecuted instantiation: zend_highlight.c:zend_inline_hash_func Unexecuted instantiation: zend_hrtime.c:zend_inline_hash_func Unexecuted instantiation: zend_inheritance.c:zend_inline_hash_func Unexecuted instantiation: zend_ini_parser.c:zend_inline_hash_func Unexecuted instantiation: zend_ini_scanner.c:zend_inline_hash_func Unexecuted instantiation: zend_ini.c:zend_inline_hash_func Unexecuted instantiation: zend_interfaces.c:zend_inline_hash_func Unexecuted instantiation: zend_iterators.c:zend_inline_hash_func Unexecuted instantiation: zend_language_parser.c:zend_inline_hash_func Unexecuted instantiation: zend_language_scanner.c:zend_inline_hash_func Unexecuted instantiation: zend_lazy_objects.c:zend_inline_hash_func Unexecuted instantiation: zend_list.c:zend_inline_hash_func Unexecuted instantiation: zend_llist.c:zend_inline_hash_func Unexecuted instantiation: zend_multibyte.c:zend_inline_hash_func Unexecuted instantiation: zend_object_handlers.c:zend_inline_hash_func Unexecuted instantiation: zend_objects_API.c:zend_inline_hash_func Unexecuted instantiation: zend_objects.c:zend_inline_hash_func Unexecuted instantiation: zend_observer.c:zend_inline_hash_func Unexecuted instantiation: zend_opcode.c:zend_inline_hash_func Unexecuted instantiation: zend_operators.c:zend_inline_hash_func Unexecuted instantiation: zend_property_hooks.c:zend_inline_hash_func Unexecuted instantiation: zend_ptr_stack.c:zend_inline_hash_func Unexecuted instantiation: zend_signal.c:zend_inline_hash_func Unexecuted instantiation: zend_smart_str.c:zend_inline_hash_func Unexecuted instantiation: zend_sort.c:zend_inline_hash_func Unexecuted instantiation: zend_stack.c:zend_inline_hash_func Unexecuted instantiation: zend_stream.c:zend_inline_hash_func zend_string.c:zend_inline_hash_func Line | Count | Source | 469 | 52.7M | { | 470 | 52.7M | zend_ulong hash = Z_UL(5381); | 471 | | | 472 | 52.7M | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) | 473 | | /* Version with multiplication works better on modern CPU */ | 474 | 392M | for (; len >= 8; len -= 8, str += 8) { | 475 | | # if defined(__aarch64__) && !defined(WORDS_BIGENDIAN) | 476 | | /* On some architectures it is beneficial to load 8 bytes at a | 477 | | time and extract each byte with a bit field extract instr. */ | 478 | | uint64_t chunk; | 479 | | | 480 | | memcpy(&chunk, str, sizeof(chunk)); | 481 | | hash = | 482 | | hash * 33 * 33 * 33 * 33 + | 483 | | ((chunk >> (8 * 0)) & 0xff) * 33 * 33 * 33 + | 484 | | ((chunk >> (8 * 1)) & 0xff) * 33 * 33 + | 485 | | ((chunk >> (8 * 2)) & 0xff) * 33 + | 486 | | ((chunk >> (8 * 3)) & 0xff); | 487 | | hash = | 488 | | hash * 33 * 33 * 33 * 33 + | 489 | | ((chunk >> (8 * 4)) & 0xff) * 33 * 33 * 33 + | 490 | | ((chunk >> (8 * 5)) & 0xff) * 33 * 33 + | 491 | | ((chunk >> (8 * 6)) & 0xff) * 33 + | 492 | | ((chunk >> (8 * 7)) & 0xff); | 493 | | # else | 494 | 339M | hash = | 495 | 339M | hash * Z_L(33 * 33 * 33 * 33) + | 496 | 339M | str[0] * Z_L(33 * 33 * 33) + | 497 | 339M | str[1] * Z_L(33 * 33) + | 498 | 339M | str[2] * Z_L(33) + | 499 | 339M | str[3]; | 500 | 339M | hash = | 501 | 339M | hash * Z_L(33 * 33 * 33 * 33) + | 502 | 339M | str[4] * Z_L(33 * 33 * 33) + | 503 | 339M | str[5] * Z_L(33 * 33) + | 504 | 339M | str[6] * Z_L(33) + | 505 | 339M | str[7]; | 506 | 339M | # endif | 507 | 339M | } | 508 | 52.7M | if (len >= 4) { | 509 | 23.9M | hash = | 510 | 23.9M | hash * Z_L(33 * 33 * 33 * 33) + | 511 | 23.9M | str[0] * Z_L(33 * 33 * 33) + | 512 | 23.9M | str[1] * Z_L(33 * 33) + | 513 | 23.9M | str[2] * Z_L(33) + | 514 | 23.9M | str[3]; | 515 | 23.9M | len -= 4; | 516 | 23.9M | str += 4; | 517 | 23.9M | } | 518 | 52.7M | if (len >= 2) { | 519 | 20.9M | if (len > 2) { | 520 | 10.5M | hash = | 521 | 10.5M | hash * Z_L(33 * 33 * 33) + | 522 | 10.5M | str[0] * Z_L(33 * 33) + | 523 | 10.5M | str[1] * Z_L(33) + | 524 | 10.5M | str[2]; | 525 | 10.5M | } else { | 526 | 10.3M | hash = | 527 | 10.3M | hash * Z_L(33 * 33) + | 528 | 10.3M | str[0] * Z_L(33) + | 529 | 10.3M | str[1]; | 530 | 10.3M | } | 531 | 31.7M | } else if (len != 0) { | 532 | 21.1M | hash = hash * Z_L(33) + *str; | 533 | 21.1M | } | 534 | | #else | 535 | | /* variant with the hash unrolled eight times */ | 536 | | for (; len >= 8; len -= 8) { | 537 | | hash = ((hash << 5) + hash) + *str++; | 538 | | hash = ((hash << 5) + hash) + *str++; | 539 | | hash = ((hash << 5) + hash) + *str++; | 540 | | hash = ((hash << 5) + hash) + *str++; | 541 | | hash = ((hash << 5) + hash) + *str++; | 542 | | hash = ((hash << 5) + hash) + *str++; | 543 | | hash = ((hash << 5) + hash) + *str++; | 544 | | hash = ((hash << 5) + hash) + *str++; | 545 | | } | 546 | | switch (len) { | 547 | | case 7: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 548 | | case 6: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 549 | | case 5: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 550 | | case 4: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 551 | | case 3: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 552 | | case 2: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 553 | | case 1: hash = ((hash << 5) + hash) + *str++; break; | 554 | | case 0: break; | 555 | | default: ZEND_UNREACHABLE(); | 556 | | } | 557 | | #endif | 558 | | | 559 | | /* Hash value can't be zero, so we always set the high bit */ | 560 | 52.7M | #if SIZEOF_ZEND_LONG == 8 | 561 | 52.7M | return hash | Z_UL(0x8000000000000000); | 562 | | #elif SIZEOF_ZEND_LONG == 4 | 563 | | return hash | Z_UL(0x80000000); | 564 | | #else | 565 | | # error "Unknown SIZEOF_ZEND_LONG" | 566 | | #endif | 567 | 52.7M | } |
Unexecuted instantiation: zend_strtod.c:zend_inline_hash_func Unexecuted instantiation: zend_system_id.c:zend_inline_hash_func Unexecuted instantiation: zend_variables.c:zend_inline_hash_func Unexecuted instantiation: zend_virtual_cwd.c:zend_inline_hash_func Unexecuted instantiation: zend_vm_opcodes.c:zend_inline_hash_func Unexecuted instantiation: zend_weakrefs.c:zend_inline_hash_func Unexecuted instantiation: zend.c:zend_inline_hash_func Unexecuted instantiation: internal_functions_cli.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-parser.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-sapi.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-tracing-jit.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-exif.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-unserialize.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-function-jit.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-json.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-unserializehash.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-execute.c:zend_inline_hash_func |
568 | | |
569 | | // When adding a new string here, please also update build/gen_stub.php to the |
570 | | // known strings to be used in property registration; see gh-15751 |
571 | | #define ZEND_KNOWN_STRINGS(_) \ |
572 | | _(ZEND_STR_FILE, "file") \ |
573 | | _(ZEND_STR_LINE, "line") \ |
574 | | _(ZEND_STR_FUNCTION, "function") \ |
575 | | _(ZEND_STR_CLASS, "class") \ |
576 | | _(ZEND_STR_OBJECT, "object") \ |
577 | | _(ZEND_STR_TYPE, "type") \ |
578 | | _(ZEND_STR_OBJECT_OPERATOR, "->") \ |
579 | | _(ZEND_STR_PAAMAYIM_NEKUDOTAYIM, "::") \ |
580 | | _(ZEND_STR_ARGS, "args") \ |
581 | | _(ZEND_STR_ARGUMENTS, "arguments") \ |
582 | | _(ZEND_STR_UNKNOWN, "unknown") \ |
583 | | _(ZEND_STR_UNKNOWN_CAPITALIZED, "Unknown") \ |
584 | | _(ZEND_STR_EXIT, "exit") \ |
585 | | _(ZEND_STR_CLONE, "clone") \ |
586 | | _(ZEND_STR_EVAL, "eval") \ |
587 | | _(ZEND_STR_INCLUDE, "include") \ |
588 | | _(ZEND_STR_REQUIRE, "require") \ |
589 | | _(ZEND_STR_INCLUDE_ONCE, "include_once") \ |
590 | | _(ZEND_STR_REQUIRE_ONCE, "require_once") \ |
591 | | _(ZEND_STR_SCALAR, "scalar") \ |
592 | | _(ZEND_STR_ERROR_REPORTING, "error_reporting") \ |
593 | | _(ZEND_STR_STATIC, "static") \ |
594 | | _(ZEND_STR_THIS, "this") \ |
595 | | _(ZEND_STR_VALUE, "value") \ |
596 | | _(ZEND_STR_KEY, "key") \ |
597 | | _(ZEND_STR_MAGIC_INVOKE, "__invoke") \ |
598 | | _(ZEND_STR_PREVIOUS, "previous") \ |
599 | | _(ZEND_STR_CODE, "code") \ |
600 | | _(ZEND_STR_MESSAGE, "message") \ |
601 | | _(ZEND_STR_SEVERITY, "severity") \ |
602 | | _(ZEND_STR_STRING, "string") \ |
603 | | _(ZEND_STR_TRACE, "trace") \ |
604 | | _(ZEND_STR_SCHEME, "scheme") \ |
605 | | _(ZEND_STR_HOST, "host") \ |
606 | | _(ZEND_STR_PORT, "port") \ |
607 | | _(ZEND_STR_USER, "user") \ |
608 | | _(ZEND_STR_USERNAME, "username") \ |
609 | | _(ZEND_STR_PASS, "pass") \ |
610 | | _(ZEND_STR_PASSWORD, "password") \ |
611 | | _(ZEND_STR_PATH, "path") \ |
612 | | _(ZEND_STR_QUERY, "query") \ |
613 | | _(ZEND_STR_FRAGMENT, "fragment") \ |
614 | | _(ZEND_STR_NULL, "NULL") \ |
615 | | _(ZEND_STR_BOOLEAN, "boolean") \ |
616 | | _(ZEND_STR_INTEGER, "integer") \ |
617 | | _(ZEND_STR_DOUBLE, "double") \ |
618 | | _(ZEND_STR_ARRAY, "array") \ |
619 | | _(ZEND_STR_RESOURCE, "resource") \ |
620 | | _(ZEND_STR_CLOSED_RESOURCE, "resource (closed)") \ |
621 | | _(ZEND_STR_NAME, "name") \ |
622 | | _(ZEND_STR_ARGV, "argv") \ |
623 | | _(ZEND_STR_ARGC, "argc") \ |
624 | | _(ZEND_STR_ARRAY_CAPITALIZED, "Array") \ |
625 | | _(ZEND_STR_BOOL, "bool") \ |
626 | | _(ZEND_STR_INT, "int") \ |
627 | | _(ZEND_STR_FLOAT, "float") \ |
628 | | _(ZEND_STR_CALLABLE, "callable") \ |
629 | | _(ZEND_STR_ITERABLE, "iterable") \ |
630 | | _(ZEND_STR_VOID, "void") \ |
631 | | _(ZEND_STR_NEVER, "never") \ |
632 | | _(ZEND_STR_FALSE, "false") \ |
633 | | _(ZEND_STR_TRUE, "true") \ |
634 | | _(ZEND_STR_NULL_LOWERCASE, "null") \ |
635 | | _(ZEND_STR_MIXED, "mixed") \ |
636 | | _(ZEND_STR_TRAVERSABLE, "Traversable") \ |
637 | | _(ZEND_STR_SELF, "self") \ |
638 | | _(ZEND_STR_PARENT, "parent") \ |
639 | | _(ZEND_STR_SLEEP, "__sleep") \ |
640 | | _(ZEND_STR_WAKEUP, "__wakeup") \ |
641 | | _(ZEND_STR_CASES, "cases") \ |
642 | | _(ZEND_STR_FROM, "from") \ |
643 | | _(ZEND_STR_TRYFROM, "tryFrom") \ |
644 | | _(ZEND_STR_TRYFROM_LOWERCASE, "tryfrom") \ |
645 | | _(ZEND_STR_AUTOGLOBAL_SERVER, "_SERVER") \ |
646 | | _(ZEND_STR_AUTOGLOBAL_ENV, "_ENV") \ |
647 | | _(ZEND_STR_AUTOGLOBAL_REQUEST, "_REQUEST") \ |
648 | | _(ZEND_STR_COUNT, "count") \ |
649 | | _(ZEND_STR_SENSITIVEPARAMETER, "SensitiveParameter") \ |
650 | | _(ZEND_STR_CONST_EXPR_PLACEHOLDER, "[constant expression]") \ |
651 | | _(ZEND_STR_DEPRECATED_CAPITALIZED, "Deprecated") \ |
652 | | _(ZEND_STR_SINCE, "since") \ |
653 | | _(ZEND_STR_GET, "get") \ |
654 | | _(ZEND_STR_SET, "set") \ |
655 | | _(ZEND_STR_8_DOT_0, "8.0") \ |
656 | | _(ZEND_STR_8_DOT_1, "8.1") \ |
657 | | _(ZEND_STR_8_DOT_2, "8.2") \ |
658 | | _(ZEND_STR_8_DOT_3, "8.3") \ |
659 | | _(ZEND_STR_8_DOT_4, "8.4") \ |
660 | | _(ZEND_STR_8_DOT_5, "8.5") \ |
661 | | |
662 | | |
663 | | typedef enum _zend_known_string_id { |
664 | | #define _ZEND_STR_ID(id, str) id, |
665 | | ZEND_KNOWN_STRINGS(_ZEND_STR_ID) |
666 | | #undef _ZEND_STR_ID |
667 | | ZEND_STR_LAST_KNOWN |
668 | | } zend_known_string_id; |
669 | | |
670 | | #endif /* ZEND_STRING_H */ |