/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 | 3.43G | #define ZSTR_VAL(zstr) (zstr)->val |
68 | 1.26G | #define ZSTR_LEN(zstr) (zstr)->len |
69 | 87.7M | #define ZSTR_H(zstr) (zstr)->h |
70 | | #define ZSTR_HASH(zstr) zend_string_hash_val(zstr) |
71 | | |
72 | | /*---*/ |
73 | | |
74 | 26.2M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { |
75 | 26.2M | return GC_FLAGS(s) & IS_STR_INTERNED; |
76 | 26.2M | } php_date.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 320 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 320 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 320 | } |
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 | 1.54k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 1.54k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 1.54k | } |
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 Unexecuted instantiation: hash.c:ZSTR_IS_INTERNED Unexecuted instantiation: json_encoder.c:ZSTR_IS_INTERNED json_parser.tab.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 20 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 20 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 20 | } |
json_scanner.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 20 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 20 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 20 | } |
Line | Count | Source | 74 | 2.65k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 2.65k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 2.65k | } |
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 | 4 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 4 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 4 | } |
zend_accelerator_util_funcs.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 44.7k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 44.7k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 44.7k | } |
Unexecuted instantiation: zend_file_cache.c:ZSTR_IS_INTERNED zend_persist_calc.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 316k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 316k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 316k | } |
zend_persist.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 87.0k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 87.0k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 87.0k | } |
Unexecuted instantiation: zend_shared_alloc.c:ZSTR_IS_INTERNED ZendAccelerator.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 1.02M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 1.02M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 1.02M | } |
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 | 10 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 10 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 10 | } |
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 | 8.66k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 8.66k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 8.66k | } |
Unexecuted instantiation: php_spl.c:ZSTR_IS_INTERNED spl_array.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 10 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 10 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 10 | } |
spl_directory.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 34 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 34 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 34 | } |
spl_dllist.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 8 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 8 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 8 | } |
Unexecuted instantiation: spl_exceptions.c:ZSTR_IS_INTERNED spl_fixedarray.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 4 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 4 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 4 | } |
spl_functions.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 28 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 28 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 28 | } |
spl_heap.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 6 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 6 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 6 | } |
spl_iterators.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 52 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 52 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 52 | } |
spl_observer.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 20 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 20 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 20 | } |
Line | Count | Source | 74 | 1.17k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 1.17k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 1.17k | } |
assert.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 44 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 44 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 44 | } |
base64.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 6 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 6 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 6 | } |
basic_functions.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 62.4k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 62.4k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 62.4k | } |
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 | 2 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 2 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 2 | } |
Unexecuted instantiation: dl.c:ZSTR_IS_INTERNED Unexecuted instantiation: dns.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 12 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 12 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 12 | } |
Line | Count | Source | 74 | 8 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 8 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 8 | } |
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 | 192 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 192 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 192 | } |
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 | 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 | } |
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 | 30 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 30 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 30 | } |
Unexecuted instantiation: info.c:ZSTR_IS_INTERNED 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 Unexecuted instantiation: password.c:ZSTR_IS_INTERNED 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 | 120 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 120 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 120 | } |
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 | 3.68k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 3.68k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 3.68k | } |
Unexecuted instantiation: strnatcmp.c:ZSTR_IS_INTERNED Unexecuted instantiation: syslog.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 38 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 38 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 38 | } |
Unexecuted instantiation: uniqid.c:ZSTR_IS_INTERNED url_scanner_ex.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 10 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 10 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 10 | } |
Unexecuted instantiation: url.c:ZSTR_IS_INTERNED user_filters.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 184 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 184 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 184 | } |
Unexecuted instantiation: uuencode.c:ZSTR_IS_INTERNED var_unserializer.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 29.8k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 29.8k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 29.8k | } |
Line | Count | Source | 74 | 6.28k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 6.28k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 6.28k | } |
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 | 12 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 12 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 12 | } |
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 | 8 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 8 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 8 | } |
Unexecuted instantiation: getopt.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 3.95M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 3.95M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 3.95M | } |
Unexecuted instantiation: network.c:ZSTR_IS_INTERNED output.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 41.8k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 41.8k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 41.8k | } |
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 | 30 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 30 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 30 | } |
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 | 29.1k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 29.1k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 29.1k | } |
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 | 4 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 4 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 4 | } |
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 | 12 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 12 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 12 | } |
Unexecuted instantiation: glob_wrapper.c:ZSTR_IS_INTERNED Unexecuted instantiation: memory.c:ZSTR_IS_INTERNED 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 | 446 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 446 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 446 | } |
streams.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 50 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 50 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 50 | } |
transports.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 8 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 8 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 8 | } |
userspace.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 562 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 562 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 562 | } |
Unexecuted instantiation: xp_socket.c:ZSTR_IS_INTERNED block_pass.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 5.49k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 5.49k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 5.49k | } |
compact_literals.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 673k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 673k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 673k | } |
compact_vars.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 2.43k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 2.43k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 2.43k | } |
Unexecuted instantiation: dce.c:ZSTR_IS_INTERNED dfa_pass.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 197 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 197 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 197 | } |
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 | 1.06k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 1.06k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 1.06k | } |
zend_inference.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 2.19k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 2.19k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 2.19k | } |
zend_optimizer.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 44 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 44 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 44 | } |
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 | 48.9k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 48.9k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 48.9k | } |
zend_ast.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 36.9k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 36.9k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 36.9k | } |
zend_attributes.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 2.43k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 2.43k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 2.43k | } |
zend_autoload.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 352 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 352 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 352 | } |
zend_builtin_functions.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 6.14M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 6.14M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 6.14M | } |
Unexecuted instantiation: zend_call_stack.c:ZSTR_IS_INTERNED zend_closures.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 5.36k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 5.36k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 5.36k | } |
zend_compile.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 1.74M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 1.74M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 1.74M | } |
zend_constants.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 24.7k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 24.7k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 24.7k | } |
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 | 2.48k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 2.48k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 2.48k | } |
zend_exceptions.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 848k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 848k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 848k | } |
zend_execute_API.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 42.5k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 42.5k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 42.5k | } |
zend_execute.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 1.56M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 1.56M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 1.56M | } |
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 | 58 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 58 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 58 | } |
zend_hash.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 1.82M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 1.82M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 1.82M | } |
zend_highlight.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 869k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 869k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 869k | } |
Unexecuted instantiation: zend_hrtime.c:ZSTR_IS_INTERNED zend_inheritance.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 17.8k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 17.8k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 17.8k | } |
zend_ini_parser.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 1.57M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 1.57M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 1.57M | } |
Unexecuted instantiation: zend_ini_scanner.c:ZSTR_IS_INTERNED zend_ini.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 77.8k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 77.8k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 77.8k | } |
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 | 14 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 14 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 14 | } |
zend_language_scanner.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 173k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 173k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 173k | } |
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 | 23.1k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 23.1k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 23.1k | } |
Unexecuted instantiation: zend_objects_API.c:ZSTR_IS_INTERNED zend_objects.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 26 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 26 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 26 | } |
Unexecuted instantiation: zend_observer.c:ZSTR_IS_INTERNED zend_opcode.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 68.7k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 68.7k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 68.7k | } |
zend_operators.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 1.00M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 1.00M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 1.00M | } |
zend_property_hooks.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 324 | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 324 | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 324 | } |
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 | 231k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 231k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 231k | } |
zend_string.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 4.73k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 4.73k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 4.73k | } |
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 | 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 | } |
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 | 1.76M | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 1.76M | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 1.76M | } |
Unexecuted instantiation: internal_functions_cli.c:ZSTR_IS_INTERNED fuzzer-function-jit.c:ZSTR_IS_INTERNED Line | Count | Source | 74 | 16.0k | static zend_always_inline bool ZSTR_IS_INTERNED(const zend_string *s) { | 75 | 16.0k | return GC_FLAGS(s) & IS_STR_INTERNED; | 76 | 16.0k | } |
Unexecuted instantiation: fuzzer-sapi.c:ZSTR_IS_INTERNED |
77 | | |
78 | 94.2k | static inline bool ZSTR_IS_VALID_UTF8(const zend_string *s) { |
79 | 94.2k | return GC_FLAGS(s) & IS_STR_VALID_UTF8; |
80 | 94.2k | } 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 | 353 | static inline bool ZSTR_IS_VALID_UTF8(const zend_string *s) { | 79 | 353 | return GC_FLAGS(s) & IS_STR_VALID_UTF8; | 80 | 353 | } |
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 | 50.2k | static inline bool ZSTR_IS_VALID_UTF8(const zend_string *s) { | 79 | 50.2k | return GC_FLAGS(s) & IS_STR_VALID_UTF8; | 80 | 50.2k | } |
Unexecuted instantiation: zend_shared_alloc.c:ZSTR_IS_VALID_UTF8 ZendAccelerator.c:ZSTR_IS_VALID_UTF8 Line | Count | Source | 78 | 43.6k | static inline bool ZSTR_IS_VALID_UTF8(const zend_string *s) { | 79 | 43.6k | return GC_FLAGS(s) & IS_STR_VALID_UTF8; | 80 | 43.6k | } |
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-function-jit.c:ZSTR_IS_VALID_UTF8 Unexecuted instantiation: fuzzer-sapi.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 | 2.41M | #define ZSTR_COPYABLE_CONCAT_PROPERTIES (IS_STR_VALID_UTF8) |
86 | | |
87 | 2.27M | static inline uint32_t ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(const zend_string *s) { |
88 | 2.27M | return GC_FLAGS(s) & ZSTR_COPYABLE_CONCAT_PROPERTIES; |
89 | 2.27M | } 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 | 330 | static inline uint32_t ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(const zend_string *s) { | 88 | 330 | return GC_FLAGS(s) & ZSTR_COPYABLE_CONCAT_PROPERTIES; | 89 | 330 | } |
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 | 1.33M | static inline uint32_t ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(const zend_string *s) { | 88 | 1.33M | return GC_FLAGS(s) & ZSTR_COPYABLE_CONCAT_PROPERTIES; | 89 | 1.33M | } |
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 | 936k | static inline uint32_t ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(const zend_string *s) { | 88 | 936k | return GC_FLAGS(s) & ZSTR_COPYABLE_CONCAT_PROPERTIES; | 89 | 936k | } |
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 | 20 | static inline uint32_t ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(const zend_string *s) { | 88 | 20 | return GC_FLAGS(s) & ZSTR_COPYABLE_CONCAT_PROPERTIES; | 89 | 20 | } |
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-function-jit.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES Unexecuted instantiation: fuzzer-sapi.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES |
90 | | |
91 | | /* This function returns the copyable concat properties which hold on both strings. */ |
92 | 693k | static inline uint32_t ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH(const zend_string *s1, const zend_string *s2) { |
93 | 693k | return ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(s1) & ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(s2); |
94 | 693k | } 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 | 224k | static inline uint32_t ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH(const zend_string *s1, const zend_string *s2) { | 93 | 224k | return ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(s1) & ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(s2); | 94 | 224k | } |
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 | 468k | static inline uint32_t ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH(const zend_string *s1, const zend_string *s2) { | 93 | 468k | return ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(s1) & ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(s2); | 94 | 468k | } |
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-function-jit.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fuzzer-sapi.c:ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH |
95 | | |
96 | 324 | static inline void ZSTR_COPY_CONCAT_PROPERTIES(zend_string *out, const zend_string *in) { |
97 | 324 | uint32_t properties = ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(in); |
98 | 324 | GC_ADD_FLAGS(out, properties); |
99 | 324 | } 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 | 324 | static inline void ZSTR_COPY_CONCAT_PROPERTIES(zend_string *out, const zend_string *in) { | 97 | 324 | uint32_t properties = ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(in); | 98 | 324 | GC_ADD_FLAGS(out, properties); | 99 | 324 | } |
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-function-jit.c:ZSTR_COPY_CONCAT_PROPERTIES Unexecuted instantiation: fuzzer-sapi.c:ZSTR_COPY_CONCAT_PROPERTIES |
100 | | |
101 | 3.62k | static inline void ZSTR_COPY_CONCAT_PROPERTIES_BOTH(zend_string *out, const zend_string *in1, const zend_string *in2) { |
102 | 3.62k | uint32_t properties = ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH(in1, in2); |
103 | 3.62k | GC_ADD_FLAGS(out, properties); |
104 | 3.62k | } 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 | 3.62k | static inline void ZSTR_COPY_CONCAT_PROPERTIES_BOTH(zend_string *out, const zend_string *in1, const zend_string *in2) { | 102 | 3.62k | uint32_t properties = ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH(in1, in2); | 103 | 3.62k | GC_ADD_FLAGS(out, properties); | 104 | 3.62k | } |
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-function-jit.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH Unexecuted instantiation: fuzzer-sapi.c:ZSTR_COPY_CONCAT_PROPERTIES_BOTH |
105 | | |
106 | 1.42M | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { |
107 | 1.42M | return zend_empty_string; |
108 | 1.42M | } php_date.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: 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 Unexecuted instantiation: json_scanner.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: 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 | 6 | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 6 | return zend_empty_string; | 108 | 6 | } |
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 Unexecuted instantiation: spl_iterators.c:ZSTR_EMPTY_ALLOC 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 | 2 | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 2 | return zend_empty_string; | 108 | 2 | } |
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 | 219 | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 219 | return zend_empty_string; | 108 | 219 | } |
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 | 4 | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 4 | return zend_empty_string; | 108 | 4 | } |
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 | 790k | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 790k | return zend_empty_string; | 108 | 790k | } |
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 Unexecuted instantiation: memory.c:ZSTR_EMPTY_ALLOC 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 | 12 | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 12 | return zend_empty_string; | 108 | 12 | } |
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 | 112 | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 112 | return zend_empty_string; | 108 | 112 | } |
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 | 2.28k | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 2.28k | return zend_empty_string; | 108 | 2.28k | } |
Unexecuted instantiation: zend_execute_API.c:ZSTR_EMPTY_ALLOC zend_execute.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 9.31k | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 9.31k | return zend_empty_string; | 108 | 9.31k | } |
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 | 231k | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 231k | return zend_empty_string; | 108 | 231k | } |
Unexecuted instantiation: zend_ini_scanner.c:ZSTR_EMPTY_ALLOC zend_ini.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 480 | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 480 | return zend_empty_string; | 108 | 480 | } |
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 | 12 | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 12 | return zend_empty_string; | 108 | 12 | } |
zend_language_scanner.c:ZSTR_EMPTY_ALLOC Line | Count | Source | 106 | 12.5k | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 12.5k | return zend_empty_string; | 108 | 12.5k | } |
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 | 380k | static zend_always_inline zend_string *ZSTR_EMPTY_ALLOC(void) { | 107 | 380k | return zend_empty_string; | 108 | 380k | } |
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-function-jit.c:ZSTR_EMPTY_ALLOC Unexecuted instantiation: fuzzer-sapi.c:ZSTR_EMPTY_ALLOC |
109 | | |
110 | 650k | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { |
111 | 650k | return zend_one_char_string[c]; |
112 | 650k | } 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 | 182 | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 182 | return zend_one_char_string[c]; | 112 | 182 | } |
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 | 512 | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 512 | return zend_one_char_string[c]; | 112 | 512 | } |
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 Unexecuted instantiation: spl_directory.c:ZSTR_CHAR 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 | 104 | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 104 | return zend_one_char_string[c]; | 112 | 104 | } |
Unexecuted instantiation: assert.c:ZSTR_CHAR Unexecuted instantiation: base64.c:ZSTR_CHAR basic_functions.c:ZSTR_CHAR Line | Count | Source | 110 | 4 | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 4 | return zend_one_char_string[c]; | 112 | 4 | } |
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 | 310 | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 310 | return zend_one_char_string[c]; | 112 | 310 | } |
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 | 1.25k | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 1.25k | return zend_one_char_string[c]; | 112 | 1.25k | } |
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 | 144 | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 144 | return zend_one_char_string[c]; | 112 | 144 | } |
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 | 6 | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 6 | return zend_one_char_string[c]; | 112 | 6 | } |
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 | 102 | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 102 | return zend_one_char_string[c]; | 112 | 102 | } |
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 | 538 | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 538 | return zend_one_char_string[c]; | 112 | 538 | } |
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 | 566k | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 566k | return zend_one_char_string[c]; | 112 | 566k | } |
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 | 80.5k | static zend_always_inline zend_string *ZSTR_CHAR(unsigned char c) { | 111 | 80.5k | return zend_one_char_string[c]; | 112 | 80.5k | } |
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-function-jit.c:ZSTR_CHAR Unexecuted instantiation: fuzzer-sapi.c:ZSTR_CHAR |
113 | | |
114 | 25.6M | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { |
115 | 25.6M | return zend_known_strings[idx]; |
116 | 25.6M | } Line | Count | Source | 114 | 138 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 138 | return zend_known_strings[idx]; | 116 | 138 | } |
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 | 14 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 14 | return zend_known_strings[idx]; | 116 | 14 | } |
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 | 32.1k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 32.1k | return zend_known_strings[idx]; | 116 | 32.1k | } |
Unexecuted instantiation: zend_shared_alloc.c:ZSTR_KNOWN ZendAccelerator.c:ZSTR_KNOWN Line | Count | Source | 114 | 70.8k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 70.8k | return zend_known_strings[idx]; | 116 | 70.8k | } |
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 | 16 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 16 | return zend_known_strings[idx]; | 116 | 16 | } |
Unexecuted instantiation: randomizer.c:ZSTR_KNOWN Unexecuted instantiation: zend_utils.c:ZSTR_KNOWN php_reflection.c:ZSTR_KNOWN Line | Count | Source | 114 | 76 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 76 | return zend_known_strings[idx]; | 116 | 76 | } |
Unexecuted instantiation: php_spl.c:ZSTR_KNOWN Line | Count | Source | 114 | 20 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 20 | return zend_known_strings[idx]; | 116 | 20 | } |
spl_directory.c:ZSTR_KNOWN Line | Count | Source | 114 | 6 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 6 | return zend_known_strings[idx]; | 116 | 6 | } |
Line | Count | Source | 114 | 46 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 46 | return zend_known_strings[idx]; | 116 | 46 | } |
Unexecuted instantiation: spl_exceptions.c:ZSTR_KNOWN spl_fixedarray.c:ZSTR_KNOWN Line | Count | Source | 114 | 8 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 8 | return zend_known_strings[idx]; | 116 | 8 | } |
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 | 24 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 24 | return zend_known_strings[idx]; | 116 | 24 | } |
Line | Count | Source | 114 | 20 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 20 | return zend_known_strings[idx]; | 116 | 20 | } |
Unexecuted instantiation: assert.c:ZSTR_KNOWN Unexecuted instantiation: base64.c:ZSTR_KNOWN basic_functions.c:ZSTR_KNOWN Line | Count | Source | 114 | 123k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 123k | return zend_known_strings[idx]; | 116 | 123k | } |
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 | 2 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 2 | return zend_known_strings[idx]; | 116 | 2 | } |
Unexecuted instantiation: dl.c:ZSTR_KNOWN Unexecuted instantiation: dns.c:ZSTR_KNOWN Unexecuted instantiation: exec.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: 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 | 350 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 350 | return zend_known_strings[idx]; | 116 | 350 | } |
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 | 322 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 322 | return zend_known_strings[idx]; | 116 | 322 | } |
Line | Count | Source | 114 | 172 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 172 | return zend_known_strings[idx]; | 116 | 172 | } |
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 | 6 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 6 | return zend_known_strings[idx]; | 116 | 6 | } |
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 | 2 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 2 | return zend_known_strings[idx]; | 116 | 2 | } |
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 | 6 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 6 | return zend_known_strings[idx]; | 116 | 6 | } |
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 | 6 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 6 | return zend_known_strings[idx]; | 116 | 6 | } |
Line | Count | Source | 114 | 10 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 10 | return zend_known_strings[idx]; | 116 | 10 | } |
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 | 5.71k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 5.71k | return zend_known_strings[idx]; | 116 | 5.71k | } |
Line | Count | Source | 114 | 9.83k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 9.83k | return zend_known_strings[idx]; | 116 | 9.83k | } |
zend_attributes.c:ZSTR_KNOWN Line | Count | Source | 114 | 410 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 410 | return zend_known_strings[idx]; | 116 | 410 | } |
Unexecuted instantiation: zend_autoload.c:ZSTR_KNOWN zend_builtin_functions.c:ZSTR_KNOWN Line | Count | Source | 114 | 4.89M | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 4.89M | return zend_known_strings[idx]; | 116 | 4.89M | } |
Unexecuted instantiation: zend_call_stack.c:ZSTR_KNOWN zend_closures.c:ZSTR_KNOWN Line | Count | Source | 114 | 926 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 926 | return zend_known_strings[idx]; | 116 | 926 | } |
zend_compile.c:ZSTR_KNOWN Line | Count | Source | 114 | 1.03M | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 1.03M | return zend_known_strings[idx]; | 116 | 1.03M | } |
zend_constants.c:ZSTR_KNOWN Line | Count | Source | 114 | 660 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 660 | return zend_known_strings[idx]; | 116 | 660 | } |
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 | 2.50k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 2.50k | return zend_known_strings[idx]; | 116 | 2.50k | } |
zend_exceptions.c:ZSTR_KNOWN Line | Count | Source | 114 | 19.4M | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 19.4M | return zend_known_strings[idx]; | 116 | 19.4M | } |
Unexecuted instantiation: zend_execute_API.c:ZSTR_KNOWN zend_execute.c:ZSTR_KNOWN Line | Count | Source | 114 | 10.3k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 10.3k | return zend_known_strings[idx]; | 116 | 10.3k | } |
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 | 72 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 72 | return zend_known_strings[idx]; | 116 | 72 | } |
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 | 8.60k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 8.60k | return zend_known_strings[idx]; | 116 | 8.60k | } |
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 | 122 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 122 | return zend_known_strings[idx]; | 116 | 122 | } |
Unexecuted instantiation: zend_iterators.c:ZSTR_KNOWN zend_language_parser.c:ZSTR_KNOWN Line | Count | Source | 114 | 998 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 998 | return zend_known_strings[idx]; | 116 | 998 | } |
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 | 106 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 106 | return zend_known_strings[idx]; | 116 | 106 | } |
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 | 2.40k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 2.40k | return zend_known_strings[idx]; | 116 | 2.40k | } |
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 | 4 | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 4 | return zend_known_strings[idx]; | 116 | 4 | } |
Line | Count | Source | 114 | 26.4k | static zend_always_inline zend_string *ZSTR_KNOWN(size_t idx) { | 115 | 26.4k | return zend_known_strings[idx]; | 116 | 26.4k | } |
Unexecuted instantiation: internal_functions_cli.c:ZSTR_KNOWN Unexecuted instantiation: fuzzer-function-jit.c:ZSTR_KNOWN Unexecuted instantiation: fuzzer-sapi.c:ZSTR_KNOWN |
117 | | |
118 | 1.99M | #define _ZSTR_HEADER_SIZE offsetof(zend_string, val) |
119 | | |
120 | 50.2k | #define _ZSTR_STRUCT_SIZE(len) (_ZSTR_HEADER_SIZE + len + 1) |
121 | | |
122 | 760 | #define ZSTR_MAX_OVERHEAD (ZEND_MM_ALIGNED_SIZE(_ZSTR_HEADER_SIZE + 1)) |
123 | | #define ZSTR_MAX_LEN (SIZE_MAX - ZSTR_MAX_OVERHEAD) |
124 | | |
125 | 2.92k | #define ZSTR_ALLOCA_ALLOC(str, _len, use_heap) do { \ |
126 | 2.92k | (str) = (zend_string *)do_alloca(ZEND_MM_ALIGNED_SIZE_EX(_ZSTR_STRUCT_SIZE(_len), 8), (use_heap)); \ |
127 | 2.92k | GC_SET_REFCOUNT(str, 1); \ |
128 | 2.92k | GC_TYPE_INFO(str) = GC_STRING; \ |
129 | 2.92k | ZSTR_H(str) = 0; \ |
130 | 2.92k | ZSTR_LEN(str) = _len; \ |
131 | 2.92k | } 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 | 2.92k | #define ZSTR_ALLOCA_FREE(str, use_heap) free_alloca(str, use_heap) |
140 | | |
141 | 17.7k | #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 | 24.8M | { |
147 | 24.8M | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); |
148 | 24.8M | } 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 | 177k | { | 147 | 177k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 177k | } |
Unexecuted instantiation: zend_accelerator_module.c:zend_string_hash_val zend_accelerator_util_funcs.c:zend_string_hash_val Line | Count | Source | 146 | 9.34k | { | 147 | 9.34k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 9.34k | } |
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 | 50.2k | { | 147 | 50.2k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 50.2k | } |
Unexecuted instantiation: zend_shared_alloc.c:zend_string_hash_val ZendAccelerator.c:zend_string_hash_val Line | Count | Source | 146 | 1.81M | { | 147 | 1.81M | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 1.81M | } |
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 Unexecuted instantiation: array.c:zend_string_hash_val 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 | 84.9k | { | 147 | 84.9k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 84.9k | } |
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 | 2.80k | { | 147 | 2.80k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 2.80k | } |
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 | 436k | { | 147 | 436k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 436k | } |
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 Unexecuted instantiation: zend_execute_API.c:zend_string_hash_val 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 | 22.2M | { | 147 | 22.2M | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 22.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 | 148 | { | 147 | 148 | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 148 | } |
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 | 6 | { | 147 | 6 | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 6 | } |
Unexecuted instantiation: zend_objects_API.c:zend_string_hash_val Unexecuted instantiation: zend_objects.c:zend_string_hash_val 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 | 1.70k | { | 147 | 1.70k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 148 | 1.70k | } |
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-function-jit.c:zend_string_hash_val Unexecuted instantiation: fuzzer-sapi.c:zend_string_hash_val |
149 | | |
150 | | static zend_always_inline void zend_string_forget_hash_val(zend_string *s) |
151 | 1.80M | { |
152 | 1.80M | ZSTR_H(s) = 0; |
153 | 1.80M | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); |
154 | 1.80M | } 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 | 144 | { | 152 | 144 | ZSTR_H(s) = 0; | 153 | 144 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 144 | } |
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 | 1.26k | { | 152 | 1.26k | ZSTR_H(s) = 0; | 153 | 1.26k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 1.26k | } |
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 | 148 | { | 152 | 148 | ZSTR_H(s) = 0; | 153 | 148 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 148 | } |
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 | 34 | { | 152 | 34 | ZSTR_H(s) = 0; | 153 | 34 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 34 | } |
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 | 1.42k | { | 152 | 1.42k | ZSTR_H(s) = 0; | 153 | 1.42k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 1.42k | } |
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 | 60 | { | 152 | 60 | ZSTR_H(s) = 0; | 153 | 60 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 60 | } |
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 | 492 | { | 152 | 492 | ZSTR_H(s) = 0; | 153 | 492 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 492 | } |
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 | 552 | { | 152 | 552 | ZSTR_H(s) = 0; | 153 | 552 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 552 | } |
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 | 4 | { | 152 | 4 | ZSTR_H(s) = 0; | 153 | 4 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 4 | } |
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 | 1.86k | { | 152 | 1.86k | ZSTR_H(s) = 0; | 153 | 1.86k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 1.86k | } |
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 | 60 | { | 152 | 60 | ZSTR_H(s) = 0; | 153 | 60 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 60 | } |
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 | 31 | { | 152 | 31 | ZSTR_H(s) = 0; | 153 | 31 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 31 | } |
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 | 87.7k | { | 152 | 87.7k | ZSTR_H(s) = 0; | 153 | 87.7k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 87.7k | } |
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 | 447k | { | 152 | 447k | ZSTR_H(s) = 0; | 153 | 447k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 447k | } |
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 | 308k | { | 152 | 308k | ZSTR_H(s) = 0; | 153 | 308k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 308k | } |
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 | 956k | { | 152 | 956k | ZSTR_H(s) = 0; | 153 | 956k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 154 | 956k | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-function-jit.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-sapi.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-function-jit.c:zend_string_refcount Unexecuted instantiation: fuzzer-sapi.c:zend_string_refcount |
163 | | |
164 | | static zend_always_inline uint32_t zend_string_addref(zend_string *s) |
165 | 288k | { |
166 | 288k | if (!ZSTR_IS_INTERNED(s)) { |
167 | 254k | return GC_ADDREF(s); |
168 | 254k | } |
169 | 33.9k | return 1; |
170 | 288k | } 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 | 9.34k | { | 166 | 9.34k | if (!ZSTR_IS_INTERNED(s)) { | 167 | 9.34k | return GC_ADDREF(s); | 168 | 9.34k | } | 169 | 0 | return 1; | 170 | 9.34k | } |
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 | 16 | { | 166 | 16 | if (!ZSTR_IS_INTERNED(s)) { | 167 | 0 | return GC_ADDREF(s); | 168 | 0 | } | 169 | 16 | return 1; | 170 | 16 | } |
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 | 14 | { | 166 | 14 | if (!ZSTR_IS_INTERNED(s)) { | 167 | 0 | return GC_ADDREF(s); | 168 | 0 | } | 169 | 14 | return 1; | 170 | 14 | } |
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 Unexecuted instantiation: array.c:zend_string_addref Unexecuted instantiation: assert.c:zend_string_addref Unexecuted instantiation: base64.c:zend_string_addref basic_functions.c:zend_string_addref Line | Count | Source | 165 | 2 | { | 166 | 2 | if (!ZSTR_IS_INTERNED(s)) { | 167 | 0 | return GC_ADDREF(s); | 168 | 0 | } | 169 | 2 | return 1; | 170 | 2 | } |
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 | 19.3k | { | 166 | 19.3k | if (!ZSTR_IS_INTERNED(s)) { | 167 | 251 | return GC_ADDREF(s); | 168 | 251 | } | 169 | 19.0k | return 1; | 170 | 19.3k | } |
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 | 1.73k | { | 166 | 1.73k | if (!ZSTR_IS_INTERNED(s)) { | 167 | 729 | return GC_ADDREF(s); | 168 | 729 | } | 169 | 1.00k | return 1; | 170 | 1.73k | } |
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 | 4 | { | 166 | 4 | if (!ZSTR_IS_INTERNED(s)) { | 167 | 4 | return GC_ADDREF(s); | 168 | 4 | } | 169 | 0 | return 1; | 170 | 4 | } |
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 | 4.58k | { | 166 | 4.58k | if (!ZSTR_IS_INTERNED(s)) { | 167 | 65 | return GC_ADDREF(s); | 168 | 65 | } | 169 | 4.52k | return 1; | 170 | 4.58k | } |
zend_compile.c:zend_string_addref Line | Count | Source | 165 | 2.73k | { | 166 | 2.73k | if (!ZSTR_IS_INTERNED(s)) { | 167 | 466 | return GC_ADDREF(s); | 168 | 466 | } | 169 | 2.26k | return 1; | 170 | 2.73k | } |
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 | 6 | { | 166 | 6 | if (!ZSTR_IS_INTERNED(s)) { | 167 | 6 | return GC_ADDREF(s); | 168 | 6 | } | 169 | 0 | return 1; | 170 | 6 | } |
zend_execute.c:zend_string_addref Line | Count | Source | 165 | 3.57k | { | 166 | 3.57k | if (!ZSTR_IS_INTERNED(s)) { | 167 | 1.94k | return GC_ADDREF(s); | 168 | 1.94k | } | 169 | 1.63k | return 1; | 170 | 3.57k | } |
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 | 240k | { | 166 | 240k | if (!ZSTR_IS_INTERNED(s)) { | 167 | 240k | return GC_ADDREF(s); | 168 | 240k | } | 169 | 142 | return 1; | 170 | 240k | } |
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 | 6.18k | { | 166 | 6.18k | if (!ZSTR_IS_INTERNED(s)) { | 167 | 1.09k | return GC_ADDREF(s); | 168 | 1.09k | } | 169 | 5.09k | return 1; | 170 | 6.18k | } |
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 | 6 | { | 166 | 6 | if (!ZSTR_IS_INTERNED(s)) { | 167 | 6 | return GC_ADDREF(s); | 168 | 6 | } | 169 | 0 | return 1; | 170 | 6 | } |
Unexecuted instantiation: zend_objects_API.c:zend_string_addref Unexecuted instantiation: zend_objects.c:zend_string_addref 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 | 497 | { | 166 | 497 | if (!ZSTR_IS_INTERNED(s)) { | 167 | 297 | return GC_ADDREF(s); | 168 | 297 | } | 169 | 200 | return 1; | 170 | 497 | } |
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-function-jit.c:zend_string_addref Unexecuted instantiation: fuzzer-sapi.c:zend_string_addref |
171 | | |
172 | | static zend_always_inline uint32_t zend_string_delref(zend_string *s) |
173 | 38 | { |
174 | 38 | if (!ZSTR_IS_INTERNED(s)) { |
175 | 20 | return GC_DELREF(s); |
176 | 20 | } |
177 | 18 | return 1; |
178 | 38 | } 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 | 18 | { | 174 | 18 | if (!ZSTR_IS_INTERNED(s)) { | 175 | 0 | return GC_DELREF(s); | 176 | 0 | } | 177 | 18 | return 1; | 178 | 18 | } |
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 | 20 | { | 174 | 20 | if (!ZSTR_IS_INTERNED(s)) { | 175 | 20 | return GC_DELREF(s); | 176 | 20 | } | 177 | 0 | return 1; | 178 | 20 | } |
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-function-jit.c:zend_string_delref Unexecuted instantiation: fuzzer-sapi.c:zend_string_delref |
179 | | |
180 | | static zend_always_inline zend_string *zend_string_alloc(size_t len, bool persistent) |
181 | 5.11M | { |
182 | 5.11M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); |
183 | | |
184 | 5.11M | GC_SET_REFCOUNT(ret, 1); |
185 | 5.11M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); |
186 | 5.11M | ZSTR_H(ret) = 0; |
187 | 5.11M | ZSTR_LEN(ret) = len; |
188 | 5.11M | return ret; |
189 | 5.11M | } php_date.c:zend_string_alloc Line | Count | Source | 181 | 103 | { | 182 | 103 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 103 | GC_SET_REFCOUNT(ret, 1); | 185 | 103 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 103 | ZSTR_H(ret) = 0; | 187 | 103 | ZSTR_LEN(ret) = len; | 188 | 103 | return ret; | 189 | 103 | } |
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 | 290 | { | 182 | 290 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 290 | GC_SET_REFCOUNT(ret, 1); | 185 | 290 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 290 | ZSTR_H(ret) = 0; | 187 | 290 | ZSTR_LEN(ret) = len; | 188 | 290 | return ret; | 189 | 290 | } |
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 Unexecuted instantiation: hash.c:zend_string_alloc 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 | 20 | { | 182 | 20 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 20 | GC_SET_REFCOUNT(ret, 1); | 185 | 20 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 20 | ZSTR_H(ret) = 0; | 187 | 20 | ZSTR_LEN(ret) = len; | 188 | 20 | return ret; | 189 | 20 | } |
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: 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 | 4.09k | { | 182 | 4.09k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 4.09k | GC_SET_REFCOUNT(ret, 1); | 185 | 4.09k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 4.09k | ZSTR_H(ret) = 0; | 187 | 4.09k | ZSTR_LEN(ret) = len; | 188 | 4.09k | return ret; | 189 | 4.09k | } |
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 | 8 | { | 182 | 8 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 8 | GC_SET_REFCOUNT(ret, 1); | 185 | 8 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 8 | ZSTR_H(ret) = 0; | 187 | 8 | ZSTR_LEN(ret) = len; | 188 | 8 | return ret; | 189 | 8 | } |
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 | 112 | { | 182 | 112 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 112 | GC_SET_REFCOUNT(ret, 1); | 185 | 112 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 112 | ZSTR_H(ret) = 0; | 187 | 112 | ZSTR_LEN(ret) = len; | 188 | 112 | return ret; | 189 | 112 | } |
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 | 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: spl_functions.c:zend_string_alloc Unexecuted instantiation: spl_heap.c:zend_string_alloc spl_iterators.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 | } |
spl_observer.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: array.c:zend_string_alloc assert.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: base64.c:zend_string_alloc basic_functions.c:zend_string_alloc Line | Count | Source | 181 | 29 | { | 182 | 29 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 29 | GC_SET_REFCOUNT(ret, 1); | 185 | 29 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 29 | ZSTR_H(ret) = 0; | 187 | 29 | ZSTR_LEN(ret) = len; | 188 | 29 | return ret; | 189 | 29 | } |
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 Unexecuted instantiation: crypt.c:zend_string_alloc Unexecuted instantiation: css.c:zend_string_alloc Unexecuted instantiation: datetime.c:zend_string_alloc Line | Count | Source | 181 | 4 | { | 182 | 4 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 4 | GC_SET_REFCOUNT(ret, 1); | 185 | 4 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 4 | ZSTR_H(ret) = 0; | 187 | 4 | ZSTR_LEN(ret) = len; | 188 | 4 | return ret; | 189 | 4 | } |
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 | 226 | { | 182 | 226 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 226 | GC_SET_REFCOUNT(ret, 1); | 185 | 226 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 226 | ZSTR_H(ret) = 0; | 187 | 226 | ZSTR_LEN(ret) = len; | 188 | 226 | return ret; | 189 | 226 | } |
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 | 156 | { | 182 | 156 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 156 | GC_SET_REFCOUNT(ret, 1); | 185 | 156 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 156 | ZSTR_H(ret) = 0; | 187 | 156 | ZSTR_LEN(ret) = len; | 188 | 156 | return ret; | 189 | 156 | } |
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 | 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: hrtime.c:zend_string_alloc Line | Count | Source | 181 | 455 | { | 182 | 455 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 455 | GC_SET_REFCOUNT(ret, 1); | 185 | 455 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 455 | ZSTR_H(ret) = 0; | 187 | 455 | ZSTR_LEN(ret) = len; | 188 | 455 | return ret; | 189 | 455 | } |
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 | 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: 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 | 246 | { | 182 | 246 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 246 | GC_SET_REFCOUNT(ret, 1); | 185 | 246 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 246 | ZSTR_H(ret) = 0; | 187 | 246 | ZSTR_LEN(ret) = len; | 188 | 246 | return ret; | 189 | 246 | } |
Unexecuted instantiation: metaphone.c:zend_string_alloc Unexecuted instantiation: microtime.c:zend_string_alloc Unexecuted instantiation: net.c:zend_string_alloc Unexecuted instantiation: pack.c:zend_string_alloc Unexecuted instantiation: pageinfo.c:zend_string_alloc Unexecuted instantiation: password.c:zend_string_alloc 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 | 1.68k | { | 182 | 1.68k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 1.68k | GC_SET_REFCOUNT(ret, 1); | 185 | 1.68k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 1.68k | ZSTR_H(ret) = 0; | 187 | 1.68k | ZSTR_LEN(ret) = len; | 188 | 1.68k | return ret; | 189 | 1.68k | } |
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 | 10 | { | 182 | 10 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 10 | GC_SET_REFCOUNT(ret, 1); | 185 | 10 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 10 | ZSTR_H(ret) = 0; | 187 | 10 | ZSTR_LEN(ret) = len; | 188 | 10 | return ret; | 189 | 10 | } |
Unexecuted instantiation: url.c:zend_string_alloc user_filters.c:zend_string_alloc Line | Count | Source | 181 | 86 | { | 182 | 86 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 86 | GC_SET_REFCOUNT(ret, 1); | 185 | 86 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 86 | ZSTR_H(ret) = 0; | 187 | 86 | ZSTR_LEN(ret) = len; | 188 | 86 | return ret; | 189 | 86 | } |
Unexecuted instantiation: uuencode.c:zend_string_alloc var_unserializer.c:zend_string_alloc Line | Count | Source | 181 | 856 | { | 182 | 856 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 856 | GC_SET_REFCOUNT(ret, 1); | 185 | 856 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 856 | ZSTR_H(ret) = 0; | 187 | 856 | ZSTR_LEN(ret) = len; | 188 | 856 | return ret; | 189 | 856 | } |
Line | Count | Source | 181 | 154 | { | 182 | 154 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 154 | GC_SET_REFCOUNT(ret, 1); | 185 | 154 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 154 | ZSTR_H(ret) = 0; | 187 | 154 | ZSTR_LEN(ret) = len; | 188 | 154 | return ret; | 189 | 154 | } |
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 | 8 | { | 182 | 8 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 8 | GC_SET_REFCOUNT(ret, 1); | 185 | 8 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 8 | ZSTR_H(ret) = 0; | 187 | 8 | ZSTR_LEN(ret) = len; | 188 | 8 | return ret; | 189 | 8 | } |
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 | 25.7k | { | 182 | 25.7k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 25.7k | GC_SET_REFCOUNT(ret, 1); | 185 | 25.7k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 25.7k | ZSTR_H(ret) = 0; | 187 | 25.7k | ZSTR_LEN(ret) = len; | 188 | 25.7k | return ret; | 189 | 25.7k | } |
Unexecuted instantiation: getopt.c:zend_string_alloc Line | Count | Source | 181 | 4 | { | 182 | 4 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 4 | GC_SET_REFCOUNT(ret, 1); | 185 | 4 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 4 | ZSTR_H(ret) = 0; | 187 | 4 | ZSTR_LEN(ret) = len; | 188 | 4 | return ret; | 189 | 4 | } |
Unexecuted instantiation: network.c:zend_string_alloc output.c:zend_string_alloc Line | Count | Source | 181 | 2.06k | { | 182 | 2.06k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 2.06k | GC_SET_REFCOUNT(ret, 1); | 185 | 2.06k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 2.06k | ZSTR_H(ret) = 0; | 187 | 2.06k | ZSTR_LEN(ret) = len; | 188 | 2.06k | return ret; | 189 | 2.06k | } |
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 | 30 | { | 182 | 30 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 30 | GC_SET_REFCOUNT(ret, 1); | 185 | 30 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 30 | ZSTR_H(ret) = 0; | 187 | 30 | ZSTR_LEN(ret) = len; | 188 | 30 | return ret; | 189 | 30 | } |
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 | 27.1k | { | 182 | 27.1k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 27.1k | GC_SET_REFCOUNT(ret, 1); | 185 | 27.1k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 27.1k | ZSTR_H(ret) = 0; | 187 | 27.1k | ZSTR_LEN(ret) = len; | 188 | 27.1k | return ret; | 189 | 27.1k | } |
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 | 4 | { | 182 | 4 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 4 | GC_SET_REFCOUNT(ret, 1); | 185 | 4 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 4 | ZSTR_H(ret) = 0; | 187 | 4 | ZSTR_LEN(ret) = len; | 188 | 4 | return ret; | 189 | 4 | } |
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 Unexecuted instantiation: memory.c:zend_string_alloc Unexecuted instantiation: mmap.c:zend_string_alloc plain_wrapper.c:zend_string_alloc Line | Count | Source | 181 | 36 | { | 182 | 36 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 36 | GC_SET_REFCOUNT(ret, 1); | 185 | 36 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 36 | ZSTR_H(ret) = 0; | 187 | 36 | ZSTR_LEN(ret) = len; | 188 | 36 | return ret; | 189 | 36 | } |
stream_errors.c:zend_string_alloc Line | Count | Source | 181 | 10 | { | 182 | 10 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 10 | GC_SET_REFCOUNT(ret, 1); | 185 | 10 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 10 | ZSTR_H(ret) = 0; | 187 | 10 | ZSTR_LEN(ret) = len; | 188 | 10 | return ret; | 189 | 10 | } |
streams.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: transports.c:zend_string_alloc userspace.c:zend_string_alloc Line | Count | Source | 181 | 974 | { | 182 | 974 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 974 | GC_SET_REFCOUNT(ret, 1); | 185 | 974 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 974 | ZSTR_H(ret) = 0; | 187 | 974 | ZSTR_LEN(ret) = len; | 188 | 974 | return ret; | 189 | 974 | } |
Unexecuted instantiation: xp_socket.c:zend_string_alloc block_pass.c:zend_string_alloc Line | Count | Source | 181 | 1.28k | { | 182 | 1.28k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 1.28k | GC_SET_REFCOUNT(ret, 1); | 185 | 1.28k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 1.28k | ZSTR_H(ret) = 0; | 187 | 1.28k | ZSTR_LEN(ret) = len; | 188 | 1.28k | return ret; | 189 | 1.28k | } |
compact_literals.c:zend_string_alloc Line | Count | Source | 181 | 5.50k | { | 182 | 5.50k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 5.50k | GC_SET_REFCOUNT(ret, 1); | 185 | 5.50k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 5.50k | ZSTR_H(ret) = 0; | 187 | 5.50k | ZSTR_LEN(ret) = len; | 188 | 5.50k | return ret; | 189 | 5.50k | } |
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 Unexecuted instantiation: zend_optimizer.c:zend_string_alloc 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 | 2.00k | { | 182 | 2.00k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 2.00k | GC_SET_REFCOUNT(ret, 1); | 185 | 2.00k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 2.00k | ZSTR_H(ret) = 0; | 187 | 2.00k | ZSTR_LEN(ret) = len; | 188 | 2.00k | return ret; | 189 | 2.00k | } |
Unexecuted instantiation: zend_ast.c:zend_string_alloc zend_attributes.c:zend_string_alloc Line | Count | Source | 181 | 18 | { | 182 | 18 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 18 | GC_SET_REFCOUNT(ret, 1); | 185 | 18 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 18 | ZSTR_H(ret) = 0; | 187 | 18 | ZSTR_LEN(ret) = len; | 188 | 18 | return ret; | 189 | 18 | } |
Unexecuted instantiation: zend_autoload.c:zend_string_alloc zend_builtin_functions.c:zend_string_alloc Line | Count | Source | 181 | 122 | { | 182 | 122 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 122 | GC_SET_REFCOUNT(ret, 1); | 185 | 122 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 122 | ZSTR_H(ret) = 0; | 187 | 122 | ZSTR_LEN(ret) = len; | 188 | 122 | return ret; | 189 | 122 | } |
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 | 37.5k | { | 182 | 37.5k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 37.5k | GC_SET_REFCOUNT(ret, 1); | 185 | 37.5k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 37.5k | ZSTR_H(ret) = 0; | 187 | 37.5k | ZSTR_LEN(ret) = len; | 188 | 37.5k | return ret; | 189 | 37.5k | } |
zend_constants.c:zend_string_alloc Line | Count | Source | 181 | 166 | { | 182 | 166 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 166 | GC_SET_REFCOUNT(ret, 1); | 185 | 166 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 166 | ZSTR_H(ret) = 0; | 187 | 166 | ZSTR_LEN(ret) = len; | 188 | 166 | return ret; | 189 | 166 | } |
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 | 513 | { | 182 | 513 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 513 | GC_SET_REFCOUNT(ret, 1); | 185 | 513 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 513 | ZSTR_H(ret) = 0; | 187 | 513 | ZSTR_LEN(ret) = len; | 188 | 513 | return ret; | 189 | 513 | } |
zend_exceptions.c:zend_string_alloc Line | Count | Source | 181 | 361k | { | 182 | 361k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 361k | GC_SET_REFCOUNT(ret, 1); | 185 | 361k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 361k | ZSTR_H(ret) = 0; | 187 | 361k | ZSTR_LEN(ret) = len; | 188 | 361k | return ret; | 189 | 361k | } |
zend_execute_API.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 | } |
zend_execute.c:zend_string_alloc Line | Count | Source | 181 | 283k | { | 182 | 283k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 283k | GC_SET_REFCOUNT(ret, 1); | 185 | 283k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 283k | ZSTR_H(ret) = 0; | 187 | 283k | ZSTR_LEN(ret) = len; | 188 | 283k | return ret; | 189 | 283k | } |
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 | 5.44k | { | 182 | 5.44k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 5.44k | GC_SET_REFCOUNT(ret, 1); | 185 | 5.44k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 5.44k | ZSTR_H(ret) = 0; | 187 | 5.44k | ZSTR_LEN(ret) = len; | 188 | 5.44k | return ret; | 189 | 5.44k | } |
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 | 136k | { | 182 | 136k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 136k | GC_SET_REFCOUNT(ret, 1); | 185 | 136k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 136k | ZSTR_H(ret) = 0; | 187 | 136k | ZSTR_LEN(ret) = len; | 188 | 136k | return ret; | 189 | 136k | } |
zend_ini_scanner.c:zend_string_alloc Line | Count | Source | 181 | 625k | { | 182 | 625k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 625k | GC_SET_REFCOUNT(ret, 1); | 185 | 625k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 625k | ZSTR_H(ret) = 0; | 187 | 625k | ZSTR_LEN(ret) = len; | 188 | 625k | return ret; | 189 | 625k | } |
zend_ini.c:zend_string_alloc Line | Count | Source | 181 | 25.7k | { | 182 | 25.7k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 25.7k | GC_SET_REFCOUNT(ret, 1); | 185 | 25.7k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 25.7k | ZSTR_H(ret) = 0; | 187 | 25.7k | ZSTR_LEN(ret) = len; | 188 | 25.7k | return ret; | 189 | 25.7k | } |
zend_interfaces.c:zend_string_alloc Line | Count | Source | 181 | 42 | { | 182 | 42 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 42 | GC_SET_REFCOUNT(ret, 1); | 185 | 42 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 42 | ZSTR_H(ret) = 0; | 187 | 42 | ZSTR_LEN(ret) = len; | 188 | 42 | return ret; | 189 | 42 | } |
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 | 2.05M | { | 182 | 2.05M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 2.05M | GC_SET_REFCOUNT(ret, 1); | 185 | 2.05M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 2.05M | ZSTR_H(ret) = 0; | 187 | 2.05M | ZSTR_LEN(ret) = len; | 188 | 2.05M | return ret; | 189 | 2.05M | } |
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 | 336 | { | 182 | 336 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 336 | GC_SET_REFCOUNT(ret, 1); | 185 | 336 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 336 | ZSTR_H(ret) = 0; | 187 | 336 | ZSTR_LEN(ret) = len; | 188 | 336 | return ret; | 189 | 336 | } |
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 | 462k | { | 182 | 462k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 462k | GC_SET_REFCOUNT(ret, 1); | 185 | 462k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 462k | ZSTR_H(ret) = 0; | 187 | 462k | ZSTR_LEN(ret) = len; | 188 | 462k | return ret; | 189 | 462k | } |
zend_property_hooks.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: 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 | 964k | { | 182 | 964k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 964k | GC_SET_REFCOUNT(ret, 1); | 185 | 964k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 964k | ZSTR_H(ret) = 0; | 187 | 964k | ZSTR_LEN(ret) = len; | 188 | 964k | return ret; | 189 | 964k | } |
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 | 25.7k | { | 182 | 25.7k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 25.7k | GC_SET_REFCOUNT(ret, 1); | 185 | 25.7k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 25.7k | ZSTR_H(ret) = 0; | 187 | 25.7k | ZSTR_LEN(ret) = len; | 188 | 25.7k | return ret; | 189 | 25.7k | } |
zend_string.c:zend_string_alloc Line | Count | Source | 181 | 20.5k | { | 182 | 20.5k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 20.5k | GC_SET_REFCOUNT(ret, 1); | 185 | 20.5k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 20.5k | ZSTR_H(ret) = 0; | 187 | 20.5k | ZSTR_LEN(ret) = len; | 188 | 20.5k | return ret; | 189 | 20.5k | } |
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 | 44 | { | 182 | 44 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 44 | GC_SET_REFCOUNT(ret, 1); | 185 | 44 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 44 | ZSTR_H(ret) = 0; | 187 | 44 | ZSTR_LEN(ret) = len; | 188 | 44 | return ret; | 189 | 44 | } |
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 fuzzer-function-jit.c:zend_string_alloc Line | Count | Source | 181 | 41.7k | { | 182 | 41.7k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 183 | | | 184 | 41.7k | GC_SET_REFCOUNT(ret, 1); | 185 | 41.7k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 186 | 41.7k | ZSTR_H(ret) = 0; | 187 | 41.7k | ZSTR_LEN(ret) = len; | 188 | 41.7k | return ret; | 189 | 41.7k | } |
Unexecuted instantiation: fuzzer-sapi.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 | 79.6k | { |
193 | 79.6k | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); |
194 | | |
195 | 79.6k | GC_SET_REFCOUNT(ret, 1); |
196 | 79.6k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); |
197 | 79.6k | ZSTR_H(ret) = 0; |
198 | 79.6k | ZSTR_LEN(ret) = (n * m) + l; |
199 | 79.6k | return ret; |
200 | 79.6k | } 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 Unexecuted instantiation: php_pcre.c:zend_string_safe_alloc 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 Unexecuted instantiation: hash.c:zend_string_safe_alloc 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 | 6 | { | 193 | 6 | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 194 | | | 195 | 6 | GC_SET_REFCOUNT(ret, 1); | 196 | 6 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 197 | 6 | ZSTR_H(ret) = 0; | 198 | 6 | ZSTR_LEN(ret) = (n * m) + l; | 199 | 6 | return ret; | 200 | 6 | } |
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 | 12 | { | 193 | 12 | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 194 | | | 195 | 12 | GC_SET_REFCOUNT(ret, 1); | 196 | 12 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 197 | 12 | ZSTR_H(ret) = 0; | 198 | 12 | ZSTR_LEN(ret) = (n * m) + l; | 199 | 12 | return ret; | 200 | 12 | } |
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 | 60 | { | 193 | 60 | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 194 | | | 195 | 60 | GC_SET_REFCOUNT(ret, 1); | 196 | 60 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 197 | 60 | ZSTR_H(ret) = 0; | 198 | 60 | ZSTR_LEN(ret) = (n * m) + l; | 199 | 60 | return ret; | 200 | 60 | } |
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 | 1.05k | { | 193 | 1.05k | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 194 | | | 195 | 1.05k | GC_SET_REFCOUNT(ret, 1); | 196 | 1.05k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 197 | 1.05k | ZSTR_H(ret) = 0; | 198 | 1.05k | ZSTR_LEN(ret) = (n * m) + l; | 199 | 1.05k | return ret; | 200 | 1.05k | } |
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 | 6 | { | 193 | 6 | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 194 | | | 195 | 6 | GC_SET_REFCOUNT(ret, 1); | 196 | 6 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 197 | 6 | ZSTR_H(ret) = 0; | 198 | 6 | ZSTR_LEN(ret) = (n * m) + l; | 199 | 6 | return ret; | 200 | 6 | } |
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 | 78.5k | { | 193 | 78.5k | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 194 | | | 195 | 78.5k | GC_SET_REFCOUNT(ret, 1); | 196 | 78.5k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 197 | 78.5k | ZSTR_H(ret) = 0; | 198 | 78.5k | ZSTR_LEN(ret) = (n * m) + l; | 199 | 78.5k | return ret; | 200 | 78.5k | } |
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-function-jit.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-sapi.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 | 3.25M | { |
204 | 3.25M | zend_string *ret = zend_string_alloc(len, persistent); |
205 | | |
206 | 3.25M | memcpy(ZSTR_VAL(ret), str, len); |
207 | 3.25M | ZSTR_VAL(ret)[len] = '\0'; |
208 | 3.25M | return ret; |
209 | 3.25M | } php_date.c:zend_string_init Line | Count | Source | 203 | 103 | { | 204 | 103 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 103 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 103 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 103 | return ret; | 209 | 103 | } |
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 | 198 | { | 204 | 198 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 198 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 198 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 198 | return ret; | 209 | 198 | } |
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 | 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: 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 | 4.09k | { | 204 | 4.09k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 4.09k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 4.09k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 4.09k | return ret; | 209 | 4.09k | } |
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 | 8 | { | 204 | 8 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 8 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 8 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 8 | return ret; | 209 | 8 | } |
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 | 86 | { | 204 | 86 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 86 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 86 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 86 | return ret; | 209 | 86 | } |
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 | 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: spl_functions.c:zend_string_init Unexecuted instantiation: spl_heap.c:zend_string_init spl_iterators.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 | } |
spl_observer.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: array.c:zend_string_init assert.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: base64.c:zend_string_init basic_functions.c:zend_string_init Line | Count | Source | 203 | 29 | { | 204 | 29 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 29 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 29 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 29 | return ret; | 209 | 29 | } |
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 Unexecuted instantiation: crypt.c:zend_string_init Unexecuted instantiation: css.c:zend_string_init Unexecuted instantiation: datetime.c:zend_string_init Line | Count | Source | 203 | 4 | { | 204 | 4 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 4 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 4 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 4 | return ret; | 209 | 4 | } |
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 | 226 | { | 204 | 226 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 226 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 226 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 226 | return ret; | 209 | 226 | } |
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 | 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: 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 | 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: 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 | } |
Unexecuted instantiation: md5.c:zend_string_init 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 | 1.24k | { | 204 | 1.24k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 1.24k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 1.24k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 1.24k | return ret; | 209 | 1.24k | } |
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 | 10 | { | 204 | 10 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 10 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 10 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 10 | return ret; | 209 | 10 | } |
Unexecuted instantiation: url.c:zend_string_init user_filters.c:zend_string_init Line | Count | Source | 203 | 86 | { | 204 | 86 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 86 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 86 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 86 | return ret; | 209 | 86 | } |
Unexecuted instantiation: uuencode.c:zend_string_init var_unserializer.c:zend_string_init Line | Count | Source | 203 | 856 | { | 204 | 856 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 856 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 856 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 856 | return ret; | 209 | 856 | } |
Line | Count | Source | 203 | 154 | { | 204 | 154 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 154 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 154 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 154 | return ret; | 209 | 154 | } |
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 | 8 | { | 204 | 8 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 8 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 8 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 8 | return ret; | 209 | 8 | } |
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 | 25.7k | { | 204 | 25.7k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 25.7k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 25.7k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 25.7k | return ret; | 209 | 25.7k | } |
Unexecuted instantiation: getopt.c:zend_string_init Line | Count | Source | 203 | 4 | { | 204 | 4 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 4 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 4 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 4 | return ret; | 209 | 4 | } |
Unexecuted instantiation: network.c:zend_string_init output.c:zend_string_init Line | Count | Source | 203 | 2.06k | { | 204 | 2.06k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 2.06k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 2.06k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 2.06k | return ret; | 209 | 2.06k | } |
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 | 30 | { | 204 | 30 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 30 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 30 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 30 | return ret; | 209 | 30 | } |
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 | 27.1k | { | 204 | 27.1k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 27.1k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 27.1k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 27.1k | return ret; | 209 | 27.1k | } |
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 | 4 | { | 204 | 4 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 4 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 4 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 4 | return ret; | 209 | 4 | } |
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 | 36 | { | 204 | 36 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 36 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 36 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 36 | return ret; | 209 | 36 | } |
stream_errors.c:zend_string_init Line | Count | Source | 203 | 10 | { | 204 | 10 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 10 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 10 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 10 | return ret; | 209 | 10 | } |
Unexecuted instantiation: streams.c:zend_string_init Unexecuted instantiation: transports.c:zend_string_init userspace.c:zend_string_init Line | Count | Source | 203 | 974 | { | 204 | 974 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 974 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 974 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 974 | return ret; | 209 | 974 | } |
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 | 5.50k | { | 204 | 5.50k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 5.50k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 5.50k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 5.50k | return ret; | 209 | 5.50k | } |
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 Unexecuted instantiation: zend_optimizer.c:zend_string_init 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 | 1.93k | { | 204 | 1.93k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 1.93k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 1.93k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 1.93k | return ret; | 209 | 1.93k | } |
Unexecuted instantiation: zend_ast.c:zend_string_init zend_attributes.c:zend_string_init Line | Count | Source | 203 | 18 | { | 204 | 18 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 18 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 18 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 18 | return ret; | 209 | 18 | } |
Unexecuted instantiation: zend_autoload.c:zend_string_init zend_builtin_functions.c:zend_string_init Line | Count | Source | 203 | 120 | { | 204 | 120 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 120 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 120 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 120 | return ret; | 209 | 120 | } |
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 | 10.8k | { | 204 | 10.8k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 10.8k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 10.8k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 10.8k | return ret; | 209 | 10.8k | } |
zend_constants.c:zend_string_init Line | Count | Source | 203 | 166 | { | 204 | 166 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 166 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 166 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 166 | return ret; | 209 | 166 | } |
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 | 513 | { | 204 | 513 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 513 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 513 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 513 | return ret; | 209 | 513 | } |
zend_exceptions.c:zend_string_init Line | Count | Source | 203 | 361k | { | 204 | 361k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 361k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 361k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 361k | return ret; | 209 | 361k | } |
zend_execute_API.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 | } |
zend_execute.c:zend_string_init Line | Count | Source | 203 | 168 | { | 204 | 168 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 168 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 168 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 168 | return ret; | 209 | 168 | } |
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 | 5.44k | { | 204 | 5.44k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 5.44k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 5.44k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 5.44k | return ret; | 209 | 5.44k | } |
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 | 5.08k | { | 204 | 5.08k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 5.08k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 5.08k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 5.08k | return ret; | 209 | 5.08k | } |
zend_ini_scanner.c:zend_string_init Line | Count | Source | 203 | 625k | { | 204 | 625k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 625k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 625k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 625k | return ret; | 209 | 625k | } |
zend_ini.c:zend_string_init Line | Count | Source | 203 | 25.7k | { | 204 | 25.7k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 25.7k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 25.7k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 25.7k | return ret; | 209 | 25.7k | } |
zend_interfaces.c:zend_string_init Line | Count | Source | 203 | 42 | { | 204 | 42 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 42 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 42 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 42 | return ret; | 209 | 42 | } |
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 | 2.03M | { | 204 | 2.03M | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 2.03M | memcpy(ZSTR_VAL(ret), str, len); | 207 | 2.03M | ZSTR_VAL(ret)[len] = '\0'; | 208 | 2.03M | return ret; | 209 | 2.03M | } |
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 | 336 | { | 204 | 336 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 336 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 336 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 336 | return ret; | 209 | 336 | } |
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 | 43.5k | { | 204 | 43.5k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 43.5k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 43.5k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 43.5k | return ret; | 209 | 43.5k | } |
zend_property_hooks.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: 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 | 25.7k | { | 204 | 25.7k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 25.7k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 25.7k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 25.7k | return ret; | 209 | 25.7k | } |
zend_string.c:zend_string_init Line | Count | Source | 203 | 6.75k | { | 204 | 6.75k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 6.75k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 6.75k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 6.75k | return ret; | 209 | 6.75k | } |
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 | 44 | { | 204 | 44 | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 44 | memcpy(ZSTR_VAL(ret), str, len); | 207 | 44 | ZSTR_VAL(ret)[len] = '\0'; | 208 | 44 | return ret; | 209 | 44 | } |
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 fuzzer-function-jit.c:zend_string_init Line | Count | Source | 203 | 41.7k | { | 204 | 41.7k | zend_string *ret = zend_string_alloc(len, persistent); | 205 | | | 206 | 41.7k | memcpy(ZSTR_VAL(ret), str, len); | 207 | 41.7k | ZSTR_VAL(ret)[len] = '\0'; | 208 | 41.7k | return ret; | 209 | 41.7k | } |
Unexecuted instantiation: fuzzer-sapi.c:zend_string_init |
210 | | |
211 | | static zend_always_inline zend_string *zend_string_init_fast(const char *str, size_t len) |
212 | 30.0k | { |
213 | 30.0k | if (len > 1) { |
214 | 28.0k | return zend_string_init(str, len, 0); |
215 | 28.0k | } else if (len == 0) { |
216 | 467 | return zend_empty_string; |
217 | 1.58k | } else /* if (len == 1) */ { |
218 | 1.58k | return ZSTR_CHAR((zend_uchar) *str); |
219 | 1.58k | } |
220 | 30.0k | } 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 | 486 | { | 213 | 486 | if (len > 1) { | 214 | 36 | return zend_string_init(str, len, 0); | 215 | 450 | } else if (len == 0) { | 216 | 268 | return zend_empty_string; | 217 | 268 | } else /* if (len == 1) */ { | 218 | 182 | return ZSTR_CHAR((zend_uchar) *str); | 219 | 182 | } | 220 | 486 | } |
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 | 32 | { | 213 | 32 | if (len > 1) { | 214 | 32 | return zend_string_init(str, len, 0); | 215 | 32 | } else if (len == 0) { | 216 | 0 | return zend_empty_string; | 217 | 0 | } else /* if (len == 1) */ { | 218 | 0 | return ZSTR_CHAR((zend_uchar) *str); | 219 | 0 | } | 220 | 32 | } |
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 | 2.16k | { | 213 | 2.16k | if (len > 1) { | 214 | 808 | return zend_string_init(str, len, 0); | 215 | 1.35k | } else if (len == 0) { | 216 | 103 | return zend_empty_string; | 217 | 1.25k | } else /* if (len == 1) */ { | 218 | 1.25k | return ZSTR_CHAR((zend_uchar) *str); | 219 | 1.25k | } | 220 | 2.16k | } |
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 | 27.3k | { | 213 | 27.3k | if (len > 1) { | 214 | 27.1k | return zend_string_init(str, len, 0); | 215 | 27.1k | } else if (len == 0) { | 216 | 96 | return zend_empty_string; | 217 | 144 | } else /* if (len == 1) */ { | 218 | 144 | return ZSTR_CHAR((zend_uchar) *str); | 219 | 144 | } | 220 | 27.3k | } |
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-function-jit.c:zend_string_init_fast Unexecuted instantiation: fuzzer-sapi.c:zend_string_init_fast |
221 | | |
222 | | static zend_always_inline zend_string *zend_string_copy(zend_string *s) |
223 | 2.85M | { |
224 | 2.85M | if (!ZSTR_IS_INTERNED(s)) { |
225 | 1.44M | GC_ADDREF(s); |
226 | 1.44M | } |
227 | 2.85M | return s; |
228 | 2.85M | } Unexecuted instantiation: php_date.c:zend_string_copy 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 | 60 | { | 224 | 60 | if (!ZSTR_IS_INTERNED(s)) { | 225 | 0 | GC_ADDREF(s); | 226 | 0 | } | 227 | 60 | return s; | 228 | 60 | } |
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 | 777 | { | 224 | 777 | if (!ZSTR_IS_INTERNED(s)) { | 225 | 278 | GC_ADDREF(s); | 226 | 278 | } | 227 | 777 | return s; | 228 | 777 | } |
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 | 23.5k | { | 224 | 23.5k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 23.5k | GC_ADDREF(s); | 226 | 23.5k | } | 227 | 23.5k | return s; | 228 | 23.5k | } |
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 | 1.40k | { | 224 | 1.40k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 64 | GC_ADDREF(s); | 226 | 64 | } | 227 | 1.40k | return s; | 228 | 1.40k | } |
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 | 14 | { | 224 | 14 | if (!ZSTR_IS_INTERNED(s)) { | 225 | 14 | GC_ADDREF(s); | 226 | 14 | } | 227 | 14 | return s; | 228 | 14 | } |
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 | 137 | { | 224 | 137 | if (!ZSTR_IS_INTERNED(s)) { | 225 | 137 | GC_ADDREF(s); | 226 | 137 | } | 227 | 137 | return s; | 228 | 137 | } |
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 | 6 | { | 224 | 6 | if (!ZSTR_IS_INTERNED(s)) { | 225 | 0 | GC_ADDREF(s); | 226 | 0 | } | 227 | 6 | return s; | 228 | 6 | } |
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 | 905 | { | 224 | 905 | if (!ZSTR_IS_INTERNED(s)) { | 225 | 796 | GC_ADDREF(s); | 226 | 796 | } | 227 | 905 | return s; | 228 | 905 | } |
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 | 58 | { | 224 | 58 | if (!ZSTR_IS_INTERNED(s)) { | 225 | 0 | GC_ADDREF(s); | 226 | 0 | } | 227 | 58 | return s; | 228 | 58 | } |
Unexecuted instantiation: uuencode.c:zend_string_copy Unexecuted instantiation: var_unserializer.c:zend_string_copy Line | Count | Source | 223 | 175 | { | 224 | 175 | if (!ZSTR_IS_INTERNED(s)) { | 225 | 0 | GC_ADDREF(s); | 226 | 0 | } | 227 | 175 | return s; | 228 | 175 | } |
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 | 1.58M | { | 224 | 1.58M | if (!ZSTR_IS_INTERNED(s)) { | 225 | 791k | GC_ADDREF(s); | 226 | 791k | } | 227 | 1.58M | return s; | 228 | 1.58M | } |
Unexecuted instantiation: network.c:zend_string_copy output.c:zend_string_copy Line | Count | Source | 223 | 1.03k | { | 224 | 1.03k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 1.02k | GC_ADDREF(s); | 226 | 1.02k | } | 227 | 1.03k | return s; | 228 | 1.03k | } |
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 Unexecuted instantiation: memory.c:zend_string_copy 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 | 291k | { | 224 | 291k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 51.8k | GC_ADDREF(s); | 226 | 51.8k | } | 227 | 291k | return s; | 228 | 291k | } |
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 | 6.41k | { | 224 | 6.41k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 327 | GC_ADDREF(s); | 226 | 327 | } | 227 | 6.41k | return s; | 228 | 6.41k | } |
Unexecuted instantiation: zend_ast.c:zend_string_copy zend_attributes.c:zend_string_copy Line | Count | Source | 223 | 1.86k | { | 224 | 1.86k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 1.67k | GC_ADDREF(s); | 226 | 1.67k | } | 227 | 1.86k | return s; | 228 | 1.86k | } |
Unexecuted instantiation: zend_autoload.c:zend_string_copy zend_builtin_functions.c:zend_string_copy Line | Count | Source | 223 | 24.6k | { | 224 | 24.6k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 2 | GC_ADDREF(s); | 226 | 2 | } | 227 | 24.6k | return s; | 228 | 24.6k | } |
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 | 433k | { | 224 | 433k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 226k | GC_ADDREF(s); | 226 | 226k | } | 227 | 433k | return s; | 228 | 433k | } |
zend_constants.c:zend_string_copy Line | Count | Source | 223 | 806 | { | 224 | 806 | if (!ZSTR_IS_INTERNED(s)) { | 225 | 8 | GC_ADDREF(s); | 226 | 8 | } | 227 | 806 | return s; | 228 | 806 | } |
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 | 513 | { | 224 | 513 | if (!ZSTR_IS_INTERNED(s)) { | 225 | 0 | GC_ADDREF(s); | 226 | 0 | } | 227 | 513 | return s; | 228 | 513 | } |
zend_exceptions.c:zend_string_copy Line | Count | Source | 223 | 43.6k | { | 224 | 43.6k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 42.2k | GC_ADDREF(s); | 226 | 42.2k | } | 227 | 43.6k | return s; | 228 | 43.6k | } |
zend_execute_API.c:zend_string_copy Line | Count | Source | 223 | 2.44k | { | 224 | 2.44k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 218 | GC_ADDREF(s); | 226 | 218 | } | 227 | 2.44k | return s; | 228 | 2.44k | } |
zend_execute.c:zend_string_copy Line | Count | Source | 223 | 104k | { | 224 | 104k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 99.6k | GC_ADDREF(s); | 226 | 99.6k | } | 227 | 104k | return s; | 228 | 104k | } |
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 | 8 | { | 224 | 8 | if (!ZSTR_IS_INTERNED(s)) { | 225 | 0 | GC_ADDREF(s); | 226 | 0 | } | 227 | 8 | return s; | 228 | 8 | } |
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 | 25.8k | { | 224 | 25.8k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 25.7k | GC_ADDREF(s); | 226 | 25.7k | } | 227 | 25.8k | return s; | 228 | 25.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 | 25.7k | { | 224 | 25.7k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 25.7k | GC_ADDREF(s); | 226 | 25.7k | } | 227 | 25.7k | return s; | 228 | 25.7k | } |
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 | 13.0k | { | 224 | 13.0k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 306 | GC_ADDREF(s); | 226 | 306 | } | 227 | 13.0k | return s; | 228 | 13.0k | } |
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 | 48.3k | { | 224 | 48.3k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 48.2k | GC_ADDREF(s); | 226 | 48.2k | } | 227 | 48.3k | return s; | 228 | 48.3k | } |
zend_operators.c:zend_string_copy Line | Count | Source | 223 | 115k | { | 224 | 115k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 83.2k | GC_ADDREF(s); | 226 | 83.2k | } | 227 | 115k | return s; | 228 | 115k | } |
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 | 102k | { | 224 | 102k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 23.6k | GC_ADDREF(s); | 226 | 23.6k | } | 227 | 102k | return s; | 228 | 102k | } |
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 | 2.00k | { | 224 | 2.00k | if (!ZSTR_IS_INTERNED(s)) { | 225 | 1.83k | GC_ADDREF(s); | 226 | 1.83k | } | 227 | 2.00k | return s; | 228 | 2.00k | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_copy Unexecuted instantiation: fuzzer-function-jit.c:zend_string_copy Unexecuted instantiation: fuzzer-sapi.c:zend_string_copy |
229 | | |
230 | | static zend_always_inline zend_string *zend_string_dup(zend_string *s, bool persistent) |
231 | 78 | { |
232 | 78 | if (ZSTR_IS_INTERNED(s)) { |
233 | 4 | return s; |
234 | 74 | } else { |
235 | 74 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); |
236 | 74 | } |
237 | 78 | } 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 | 4 | { | 232 | 4 | if (ZSTR_IS_INTERNED(s)) { | 233 | 4 | return s; | 234 | 4 | } else { | 235 | 0 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); | 236 | 0 | } | 237 | 4 | } |
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 | 30 | { | 232 | 30 | if (ZSTR_IS_INTERNED(s)) { | 233 | 0 | return s; | 234 | 30 | } else { | 235 | 30 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); | 236 | 30 | } | 237 | 30 | } |
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 | 44 | { | 232 | 44 | if (ZSTR_IS_INTERNED(s)) { | 233 | 0 | return s; | 234 | 44 | } else { | 235 | 44 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); | 236 | 44 | } | 237 | 44 | } |
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-function-jit.c:zend_string_dup Unexecuted instantiation: fuzzer-sapi.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-function-jit.c:zend_string_separate Unexecuted instantiation: fuzzer-sapi.c:zend_string_separate |
251 | | |
252 | | static zend_always_inline zend_string *zend_string_realloc(zend_string *s, size_t len, bool persistent) |
253 | 958k | { |
254 | 958k | zend_string *ret; |
255 | | |
256 | 958k | if (!ZSTR_IS_INTERNED(s)) { |
257 | 958k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { |
258 | 958k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); |
259 | 958k | ZSTR_LEN(ret) = len; |
260 | 958k | zend_string_forget_hash_val(ret); |
261 | 958k | return ret; |
262 | 958k | } |
263 | 958k | } |
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 | 958k | } 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 | 90 | { | 254 | 90 | zend_string *ret; | 255 | | | 256 | 90 | if (!ZSTR_IS_INTERNED(s)) { | 257 | 90 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 258 | 90 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 259 | 90 | ZSTR_LEN(ret) = len; | 260 | 90 | zend_string_forget_hash_val(ret); | 261 | 90 | return ret; | 262 | 90 | } | 263 | 90 | } | 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 | 90 | } |
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 | 1.26k | { | 254 | 1.26k | zend_string *ret; | 255 | | | 256 | 1.26k | if (!ZSTR_IS_INTERNED(s)) { | 257 | 1.26k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 258 | 1.26k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 259 | 1.26k | ZSTR_LEN(ret) = len; | 260 | 1.26k | zend_string_forget_hash_val(ret); | 261 | 1.26k | return ret; | 262 | 1.26k | } | 263 | 1.26k | } | 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.26k | } |
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 | 148 | { | 254 | 148 | zend_string *ret; | 255 | | | 256 | 148 | if (!ZSTR_IS_INTERNED(s)) { | 257 | 148 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 258 | 148 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 259 | 148 | ZSTR_LEN(ret) = len; | 260 | 148 | zend_string_forget_hash_val(ret); | 261 | 148 | return ret; | 262 | 148 | } | 263 | 148 | } | 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 | 148 | } |
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 | 552 | { | 254 | 552 | zend_string *ret; | 255 | | | 256 | 552 | if (!ZSTR_IS_INTERNED(s)) { | 257 | 552 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 258 | 552 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 259 | 552 | ZSTR_LEN(ret) = len; | 260 | 552 | zend_string_forget_hash_val(ret); | 261 | 552 | return ret; | 262 | 552 | } | 263 | 552 | } | 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 | 552 | } |
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 | 4 | { | 254 | 4 | zend_string *ret; | 255 | | | 256 | 4 | if (!ZSTR_IS_INTERNED(s)) { | 257 | 4 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 258 | 4 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 259 | 4 | ZSTR_LEN(ret) = len; | 260 | 4 | zend_string_forget_hash_val(ret); | 261 | 4 | return ret; | 262 | 4 | } | 263 | 4 | } | 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 | 4 | } |
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 Unexecuted instantiation: memory.c:zend_string_realloc 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 | 60 | { | 254 | 60 | zend_string *ret; | 255 | | | 256 | 60 | if (!ZSTR_IS_INTERNED(s)) { | 257 | 60 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 258 | 60 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 259 | 60 | ZSTR_LEN(ret) = len; | 260 | 60 | zend_string_forget_hash_val(ret); | 261 | 60 | return ret; | 262 | 60 | } | 263 | 60 | } | 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 | 60 | } |
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 | 956k | { | 254 | 956k | zend_string *ret; | 255 | | | 256 | 956k | if (!ZSTR_IS_INTERNED(s)) { | 257 | 956k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 258 | 956k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 259 | 956k | ZSTR_LEN(ret) = len; | 260 | 956k | zend_string_forget_hash_val(ret); | 261 | 956k | return ret; | 262 | 956k | } | 263 | 956k | } | 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 | 956k | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_realloc Unexecuted instantiation: fuzzer-function-jit.c:zend_string_realloc Unexecuted instantiation: fuzzer-sapi.c:zend_string_realloc |
271 | | |
272 | | static zend_always_inline zend_string *zend_string_extend(zend_string *s, size_t len, bool persistent) |
273 | 1.15M | { |
274 | 1.15M | zend_string *ret; |
275 | | |
276 | 1.15M | ZEND_ASSERT(len >= ZSTR_LEN(s)); |
277 | 1.15M | if (!ZSTR_IS_INTERNED(s)) { |
278 | 994k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { |
279 | 845k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); |
280 | 845k | ZSTR_LEN(ret) = len; |
281 | 845k | zend_string_forget_hash_val(ret); |
282 | 845k | return ret; |
283 | 845k | } |
284 | 994k | } |
285 | 305k | ret = zend_string_alloc(len, persistent); |
286 | 305k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); |
287 | 305k | if (!ZSTR_IS_INTERNED(s)) { |
288 | 149k | GC_DELREF(s); |
289 | 149k | } |
290 | 305k | return ret; |
291 | 1.15M | } 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 | 54 | { | 274 | 54 | zend_string *ret; | 275 | | | 276 | 54 | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 277 | 54 | if (!ZSTR_IS_INTERNED(s)) { | 278 | 54 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 279 | 54 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 280 | 54 | ZSTR_LEN(ret) = len; | 281 | 54 | zend_string_forget_hash_val(ret); | 282 | 54 | return ret; | 283 | 54 | } | 284 | 54 | } | 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 | 54 | } |
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 | 34 | { | 274 | 34 | zend_string *ret; | 275 | | | 276 | 34 | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 277 | 34 | if (!ZSTR_IS_INTERNED(s)) { | 278 | 34 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 279 | 34 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 280 | 34 | ZSTR_LEN(ret) = len; | 281 | 34 | zend_string_forget_hash_val(ret); | 282 | 34 | return ret; | 283 | 34 | } | 284 | 34 | } | 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 | 34 | } |
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 | 1.94k | { | 274 | 1.94k | zend_string *ret; | 275 | | | 276 | 1.94k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 277 | 1.94k | if (!ZSTR_IS_INTERNED(s)) { | 278 | 1.94k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 279 | 1.86k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 280 | 1.86k | ZSTR_LEN(ret) = len; | 281 | 1.86k | zend_string_forget_hash_val(ret); | 282 | 1.86k | return ret; | 283 | 1.86k | } | 284 | 1.94k | } | 285 | 86 | ret = zend_string_alloc(len, persistent); | 286 | 86 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 287 | 86 | if (!ZSTR_IS_INTERNED(s)) { | 288 | 86 | GC_DELREF(s); | 289 | 86 | } | 290 | 86 | return ret; | 291 | 1.94k | } |
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 | 31 | { | 274 | 31 | zend_string *ret; | 275 | | | 276 | 31 | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 277 | 31 | if (!ZSTR_IS_INTERNED(s)) { | 278 | 31 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 279 | 31 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 280 | 31 | ZSTR_LEN(ret) = len; | 281 | 31 | zend_string_forget_hash_val(ret); | 282 | 31 | return ret; | 283 | 31 | } | 284 | 31 | } | 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 | 31 | } |
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 | 87.7k | { | 274 | 87.7k | zend_string *ret; | 275 | | | 276 | 87.7k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 277 | 87.7k | if (!ZSTR_IS_INTERNED(s)) { | 278 | 87.7k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 279 | 87.7k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 280 | 87.7k | ZSTR_LEN(ret) = len; | 281 | 87.7k | zend_string_forget_hash_val(ret); | 282 | 87.7k | return ret; | 283 | 87.7k | } | 284 | 87.7k | } | 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 | 87.7k | } |
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 | 578k | { | 274 | 578k | zend_string *ret; | 275 | | | 276 | 578k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 277 | 578k | if (!ZSTR_IS_INTERNED(s)) { | 278 | 447k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 279 | 447k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 280 | 447k | ZSTR_LEN(ret) = len; | 281 | 447k | zend_string_forget_hash_val(ret); | 282 | 447k | return ret; | 283 | 447k | } | 284 | 447k | } | 285 | 130k | ret = zend_string_alloc(len, persistent); | 286 | 130k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 287 | 130k | if (!ZSTR_IS_INTERNED(s)) { | 288 | 0 | GC_DELREF(s); | 289 | 0 | } | 290 | 130k | return ret; | 291 | 578k | } |
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 | 19.2k | { | 274 | 19.2k | zend_string *ret; | 275 | | | 276 | 19.2k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 277 | 19.2k | if (!ZSTR_IS_INTERNED(s)) { | 278 | 14.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 | 14.1k | } | 285 | 19.2k | ret = zend_string_alloc(len, persistent); | 286 | 19.2k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 287 | 19.2k | if (!ZSTR_IS_INTERNED(s)) { | 288 | 14.1k | GC_DELREF(s); | 289 | 14.1k | } | 290 | 19.2k | return ret; | 291 | 19.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 | 462k | { | 274 | 462k | zend_string *ret; | 275 | | | 276 | 462k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 277 | 462k | if (!ZSTR_IS_INTERNED(s)) { | 278 | 443k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 279 | 308k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 280 | 308k | ZSTR_LEN(ret) = len; | 281 | 308k | zend_string_forget_hash_val(ret); | 282 | 308k | return ret; | 283 | 308k | } | 284 | 443k | } | 285 | 154k | ret = zend_string_alloc(len, persistent); | 286 | 154k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 287 | 154k | if (!ZSTR_IS_INTERNED(s)) { | 288 | 135k | GC_DELREF(s); | 289 | 135k | } | 290 | 154k | return ret; | 291 | 462k | } |
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-function-jit.c:zend_string_extend Unexecuted instantiation: fuzzer-sapi.c:zend_string_extend |
292 | | |
293 | | static zend_always_inline zend_string *zend_string_truncate(zend_string *s, size_t len, bool persistent) |
294 | 552 | { |
295 | 552 | zend_string *ret; |
296 | | |
297 | 552 | ZEND_ASSERT(len <= ZSTR_LEN(s)); |
298 | 552 | if (!ZSTR_IS_INTERNED(s)) { |
299 | 552 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { |
300 | 552 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); |
301 | 552 | ZSTR_LEN(ret) = len; |
302 | 552 | zend_string_forget_hash_val(ret); |
303 | 552 | return ret; |
304 | 552 | } |
305 | 552 | } |
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 | 552 | } 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 | 60 | { | 295 | 60 | zend_string *ret; | 296 | | | 297 | 60 | ZEND_ASSERT(len <= ZSTR_LEN(s)); | 298 | 60 | if (!ZSTR_IS_INTERNED(s)) { | 299 | 60 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 300 | 60 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 301 | 60 | ZSTR_LEN(ret) = len; | 302 | 60 | zend_string_forget_hash_val(ret); | 303 | 60 | return ret; | 304 | 60 | } | 305 | 60 | } | 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 | 60 | } |
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 | 492 | { | 295 | 492 | zend_string *ret; | 296 | | | 297 | 492 | ZEND_ASSERT(len <= ZSTR_LEN(s)); | 298 | 492 | if (!ZSTR_IS_INTERNED(s)) { | 299 | 492 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 300 | 492 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 301 | 492 | ZSTR_LEN(ret) = len; | 302 | 492 | zend_string_forget_hash_val(ret); | 303 | 492 | return ret; | 304 | 492 | } | 305 | 492 | } | 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 | 492 | } |
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-function-jit.c:zend_string_truncate Unexecuted instantiation: fuzzer-sapi.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 | 1.42k | { |
316 | 1.42k | zend_string *ret; |
317 | | |
318 | 1.42k | if (!ZSTR_IS_INTERNED(s)) { |
319 | 1.42k | if (GC_REFCOUNT(s) == 1) { |
320 | 1.42k | ret = (zend_string *)safe_perealloc(s, n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); |
321 | 1.42k | ZSTR_LEN(ret) = (n * m) + l; |
322 | 1.42k | zend_string_forget_hash_val(ret); |
323 | 1.42k | return ret; |
324 | 1.42k | } |
325 | 1.42k | } |
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 | 1.42k | } 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 | 1.42k | { | 316 | 1.42k | zend_string *ret; | 317 | | | 318 | 1.42k | if (!ZSTR_IS_INTERNED(s)) { | 319 | 1.42k | if (GC_REFCOUNT(s) == 1) { | 320 | 1.42k | ret = (zend_string *)safe_perealloc(s, n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 321 | 1.42k | ZSTR_LEN(ret) = (n * m) + l; | 322 | 1.42k | zend_string_forget_hash_val(ret); | 323 | 1.42k | return ret; | 324 | 1.42k | } | 325 | 1.42k | } | 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 | 1.42k | } |
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-function-jit.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-sapi.c:zend_string_safe_realloc |
333 | | |
334 | | static zend_always_inline void zend_string_free(zend_string *s) |
335 | 590k | { |
336 | 590k | if (!ZSTR_IS_INTERNED(s)) { |
337 | 491k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); |
338 | 491k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); |
339 | 491k | } |
340 | 590k | } 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 Unexecuted instantiation: info.c:zend_string_free 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 Unexecuted instantiation: password.c:zend_string_free 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 | 498 | { | 336 | 498 | if (!ZSTR_IS_INTERNED(s)) { | 337 | 498 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 338 | 498 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 339 | 498 | } | 340 | 498 | } |
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 | 1.81k | { | 336 | 1.81k | if (!ZSTR_IS_INTERNED(s)) { | 337 | 1.81k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 338 | 1.81k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 339 | 1.81k | } | 340 | 1.81k | } |
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 | 2 | { | 336 | 2 | if (!ZSTR_IS_INTERNED(s)) { | 337 | 2 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 338 | 2 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 339 | 2 | } | 340 | 2 | } |
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 | 588k | { | 336 | 588k | if (!ZSTR_IS_INTERNED(s)) { | 337 | 489k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 338 | 489k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 339 | 489k | } | 340 | 588k | } |
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 | 16 | { | 336 | 16 | if (!ZSTR_IS_INTERNED(s)) { | 337 | 16 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 338 | 16 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 339 | 16 | } | 340 | 16 | } |
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-function-jit.c:zend_string_free Unexecuted instantiation: fuzzer-sapi.c:zend_string_free |
341 | | |
342 | | static zend_always_inline void zend_string_efree(zend_string *s) |
343 | 65.7k | { |
344 | 65.7k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); |
345 | 65.7k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); |
346 | 65.7k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); |
347 | 65.7k | efree(s); |
348 | 65.7k | } 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 Unexecuted instantiation: hash.c:zend_string_efree 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 | 150 | { | 344 | 150 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 345 | 150 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 346 | 150 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 347 | 150 | efree(s); | 348 | 150 | } |
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 Unexecuted instantiation: html.c:zend_string_efree 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 Unexecuted instantiation: info.c:zend_string_efree 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 Unexecuted instantiation: password.c:zend_string_efree 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 | 4 | { | 344 | 4 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 345 | 4 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 346 | 4 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 347 | 4 | efree(s); | 348 | 4 | } |
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 | 10 | { | 344 | 10 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 345 | 10 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 346 | 10 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 347 | 10 | efree(s); | 348 | 10 | } |
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 | 224 | { | 344 | 224 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 345 | 224 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 346 | 224 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 347 | 224 | efree(s); | 348 | 224 | } |
zend_constants.c:zend_string_efree Line | Count | Source | 343 | 23.6k | { | 344 | 23.6k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 345 | 23.6k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 346 | 23.6k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 347 | 23.6k | efree(s); | 348 | 23.6k | } |
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 | 68 | { | 344 | 68 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 345 | 68 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 346 | 68 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 347 | 68 | efree(s); | 348 | 68 | } |
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 | 41.6k | { | 344 | 41.6k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 345 | 41.6k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 346 | 41.6k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 347 | 41.6k | efree(s); | 348 | 41.6k | } |
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-function-jit.c:zend_string_efree Unexecuted instantiation: fuzzer-sapi.c:zend_string_efree |
349 | | |
350 | | static zend_always_inline void zend_string_release(zend_string *s) |
351 | 5.67M | { |
352 | 5.67M | if (!ZSTR_IS_INTERNED(s)) { |
353 | 3.30M | if (GC_DELREF(s) == 0) { |
354 | 1.55M | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); |
355 | 1.55M | } |
356 | 3.30M | } |
357 | 5.67M | } Unexecuted instantiation: php_date.c:zend_string_release 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 | 162 | { | 352 | 162 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 162 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 0 | } | 356 | 162 | } | 357 | 162 | } |
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 Unexecuted instantiation: hash.c:zend_string_release 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 Unexecuted instantiation: zend_accelerator_module.c:zend_string_release 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 | 973k | { | 352 | 973k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 725k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 410k | } | 356 | 725k | } | 357 | 973k | } |
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 | 1.29k | { | 352 | 1.29k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 208 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 208 | } | 356 | 208 | } | 357 | 1.29k | } |
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 Unexecuted instantiation: spl_iterators.c:zend_string_release Unexecuted instantiation: spl_observer.c:zend_string_release array.c:zend_string_release Line | Count | Source | 351 | 14 | { | 352 | 14 | 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 | 14 | } |
Unexecuted instantiation: assert.c:zend_string_release Unexecuted instantiation: base64.c:zend_string_release basic_functions.c:zend_string_release Line | Count | Source | 351 | 346 | { | 352 | 346 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 277 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 271 | } | 356 | 277 | } | 357 | 346 | } |
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 | 54 | { | 352 | 54 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 54 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 54 | } | 356 | 54 | } | 357 | 54 | } |
Unexecuted instantiation: uuencode.c:zend_string_release Unexecuted instantiation: var_unserializer.c:zend_string_release var.c:zend_string_release Line | Count | Source | 351 | 352 | { | 352 | 352 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 26 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 18 | } | 356 | 26 | } | 357 | 352 | } |
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 | 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: getopt.c:zend_string_release main.c:zend_string_release Line | Count | Source | 351 | 2.37M | { | 352 | 2.37M | if (!ZSTR_IS_INTERNED(s)) { | 353 | 794k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 790k | } | 356 | 794k | } | 357 | 2.37M | } |
Unexecuted instantiation: network.c:zend_string_release output.c:zend_string_release Line | Count | Source | 351 | 19.3k | { | 352 | 19.3k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 251 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 241 | } | 356 | 251 | } | 357 | 19.3k | } |
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 Unexecuted instantiation: memory.c:zend_string_release 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 | 438 | { | 352 | 438 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 438 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 438 | } | 356 | 438 | } | 357 | 438 | } |
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 | 197 | { | 352 | 197 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 181 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 177 | } | 356 | 181 | } | 357 | 197 | } |
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 | 8.81k | { | 352 | 8.81k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 2.00k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 1.93k | } | 356 | 2.00k | } | 357 | 8.81k | } |
zend_ast.c:zend_string_release Line | Count | Source | 351 | 2.25k | { | 352 | 2.25k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 2.24k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 2.24k | } | 356 | 2.24k | } | 357 | 2.25k | } |
zend_attributes.c:zend_string_release Line | Count | Source | 351 | 254 | { | 352 | 254 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 250 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 124 | } | 356 | 250 | } | 357 | 254 | } |
Unexecuted instantiation: zend_autoload.c:zend_string_release zend_builtin_functions.c:zend_string_release Line | Count | Source | 351 | 118 | { | 352 | 118 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 110 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 110 | } | 356 | 110 | } | 357 | 118 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_release zend_closures.c:zend_string_release Line | Count | Source | 351 | 262 | { | 352 | 262 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 36 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 12 | } | 356 | 36 | } | 357 | 262 | } |
zend_compile.c:zend_string_release Line | Count | Source | 351 | 60.7k | { | 352 | 60.7k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 51.2k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 20.3k | } | 356 | 51.2k | } | 357 | 60.7k | } |
zend_constants.c:zend_string_release Line | Count | Source | 351 | 144 | { | 352 | 144 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 32 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 0 | } | 356 | 32 | } | 357 | 144 | } |
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 | 292 | { | 352 | 292 | 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 | 292 | } |
zend_exceptions.c:zend_string_release Line | Count | Source | 351 | 316k | { | 352 | 316k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 316k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 0 | } | 356 | 316k | } | 357 | 316k | } |
Unexecuted instantiation: zend_execute_API.c:zend_string_release zend_execute.c:zend_string_release Line | Count | Source | 351 | 5.16k | { | 352 | 5.16k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 2.53k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 595 | } | 356 | 2.53k | } | 357 | 5.16k | } |
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 | 629k | { | 352 | 629k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 211k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 77.3k | } | 356 | 211k | } | 357 | 629k | } |
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 | 568 | { | 352 | 568 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 199 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 184 | } | 356 | 199 | } | 357 | 568 | } |
zend_ini_parser.c:zend_string_release Line | Count | Source | 351 | 273k | { | 352 | 273k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 272k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 184k | } | 356 | 272k | } | 357 | 273k | } |
Unexecuted instantiation: zend_ini_scanner.c:zend_string_release zend_ini.c:zend_string_release Line | Count | Source | 351 | 51.7k | { | 352 | 51.7k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 51.5k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 25.8k | } | 356 | 51.5k | } | 357 | 51.7k | } |
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 | 19.2k | { | 352 | 19.2k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 19.2k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 0 | } | 356 | 19.2k | } | 357 | 19.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 | 106 | { | 352 | 106 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 106 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 90 | } | 356 | 106 | } | 357 | 106 | } |
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 | 336 | { | 352 | 336 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 45 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 9 | } | 356 | 45 | } | 357 | 336 | } |
zend_operators.c:zend_string_release Line | Count | Source | 351 | 5.01k | { | 352 | 5.01k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 2.88k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 2.88k | } | 356 | 2.88k | } | 357 | 5.01k | } |
zend_property_hooks.c:zend_string_release Line | Count | Source | 351 | 10 | { | 352 | 10 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 10 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 8 | } | 356 | 10 | } | 357 | 10 | } |
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 | 128k | { | 352 | 128k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 49.3k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 23.4k | } | 356 | 49.3k | } | 357 | 128k | } |
zend_string.c:zend_string_release Line | Count | Source | 351 | 592 | { | 352 | 592 | if (!ZSTR_IS_INTERNED(s)) { | 353 | 592 | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 536 | } | 356 | 592 | } | 357 | 592 | } |
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 | 789k | { | 352 | 789k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 789k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 367 | } | 356 | 789k | } | 357 | 789k | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_release fuzzer-function-jit.c:zend_string_release Line | Count | Source | 351 | 16.0k | { | 352 | 16.0k | if (!ZSTR_IS_INTERNED(s)) { | 353 | 16.0k | if (GC_DELREF(s) == 0) { | 354 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 355 | 16.0k | } | 356 | 16.0k | } | 357 | 16.0k | } |
Unexecuted instantiation: fuzzer-sapi.c:zend_string_release |
358 | | |
359 | | static zend_always_inline void zend_string_release_ex(zend_string *s, bool persistent) |
360 | 1.96M | { |
361 | 1.96M | if (!ZSTR_IS_INTERNED(s)) { |
362 | 676k | if (GC_DELREF(s) == 0) { |
363 | 255k | if (persistent) { |
364 | 50 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); |
365 | 50 | free(s); |
366 | 255k | } else { |
367 | 255k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); |
368 | 255k | efree(s); |
369 | 255k | } |
370 | 255k | } |
371 | 676k | } |
372 | 1.96M | } php_date.c:zend_string_release_ex Line | Count | Source | 360 | 92 | { | 361 | 92 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 14 | if (GC_DELREF(s) == 0) { | 363 | 14 | if (persistent) { | 364 | 14 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 14 | free(s); | 366 | 14 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 14 | } | 371 | 14 | } | 372 | 92 | } |
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 | 232 | { | 361 | 232 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 16 | if (GC_DELREF(s) == 0) { | 363 | 16 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 16 | } else { | 367 | 16 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 16 | efree(s); | 369 | 16 | } | 370 | 16 | } | 371 | 16 | } | 372 | 232 | } |
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 | 20 | { | 361 | 20 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 20 | 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 | 20 | } | 372 | 20 | } |
Unexecuted instantiation: json_scanner.c:zend_string_release_ex json.c:zend_string_release_ex Line | Count | Source | 360 | 40 | { | 361 | 40 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 40 | if (GC_DELREF(s) == 0) { | 363 | 40 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 40 | } else { | 367 | 40 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 40 | efree(s); | 369 | 40 | } | 370 | 40 | } | 371 | 40 | } | 372 | 40 | } |
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 | 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: zend_file_cache.c:zend_string_release_ex zend_persist_calc.c:zend_string_release_ex Line | Count | Source | 360 | 921 | { | 361 | 921 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 921 | if (GC_DELREF(s) == 0) { | 363 | 803 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 803 | } else { | 367 | 803 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 803 | efree(s); | 369 | 803 | } | 370 | 803 | } | 371 | 921 | } | 372 | 921 | } |
zend_persist.c:zend_string_release_ex Line | Count | Source | 360 | 87.0k | { | 361 | 87.0k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 86.9k | if (GC_DELREF(s) == 0) { | 363 | 26.5k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 26.5k | } else { | 367 | 26.5k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 26.5k | efree(s); | 369 | 26.5k | } | 370 | 26.5k | } | 371 | 86.9k | } | 372 | 87.0k | } |
Unexecuted instantiation: zend_shared_alloc.c:zend_string_release_ex ZendAccelerator.c:zend_string_release_ex Line | Count | Source | 360 | 25.7k | { | 361 | 25.7k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 25.7k | if (GC_DELREF(s) == 0) { | 363 | 25.7k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 25.7k | } else { | 367 | 25.7k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 25.7k | efree(s); | 369 | 25.7k | } | 370 | 25.7k | } | 371 | 25.7k | } | 372 | 25.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 | 2 | { | 361 | 2 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 2 | if (GC_DELREF(s) == 0) { | 363 | 2 | if (persistent) { | 364 | 2 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 2 | free(s); | 366 | 2 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 2 | } | 371 | 2 | } | 372 | 2 | } |
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 | 1.03k | { | 361 | 1.03k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 258 | if (GC_DELREF(s) == 0) { | 363 | 194 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 194 | } else { | 367 | 194 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 194 | efree(s); | 369 | 194 | } | 370 | 194 | } | 371 | 258 | } | 372 | 1.03k | } |
Unexecuted instantiation: php_spl.c:zend_string_release_ex spl_array.c:zend_string_release_ex Line | Count | Source | 360 | 10 | { | 361 | 10 | 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 | 10 | } |
spl_directory.c:zend_string_release_ex Line | Count | Source | 360 | 32 | { | 361 | 32 | 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 | 32 | } |
spl_dllist.c:zend_string_release_ex Line | Count | Source | 360 | 8 | { | 361 | 8 | 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 | } |
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 | 28 | { | 361 | 28 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 28 | 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 | 28 | } | 372 | 28 | } |
spl_heap.c:zend_string_release_ex Line | Count | Source | 360 | 6 | { | 361 | 6 | 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 | 6 | } |
spl_iterators.c:zend_string_release_ex Line | Count | Source | 360 | 52 | { | 361 | 52 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 2 | if (GC_DELREF(s) == 0) { | 363 | 2 | if (persistent) { | 364 | 2 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 2 | free(s); | 366 | 2 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 2 | } | 371 | 2 | } | 372 | 52 | } |
spl_observer.c:zend_string_release_ex Line | Count | Source | 360 | 8 | { | 361 | 8 | 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 | } |
array.c:zend_string_release_ex Line | Count | Source | 360 | 1.14k | { | 361 | 1.14k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 40 | 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 | 40 | } | 372 | 1.14k | } |
assert.c:zend_string_release_ex Line | Count | Source | 360 | 32 | { | 361 | 32 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 20 | if (GC_DELREF(s) == 0) { | 363 | 16 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 16 | } else { | 367 | 16 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 16 | efree(s); | 369 | 16 | } | 370 | 16 | } | 371 | 20 | } | 372 | 32 | } |
Unexecuted instantiation: base64.c:zend_string_release_ex basic_functions.c:zend_string_release_ex Line | Count | Source | 360 | 73 | { | 361 | 73 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 33 | if (GC_DELREF(s) == 0) { | 363 | 17 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 17 | } else { | 367 | 17 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 17 | efree(s); | 369 | 17 | } | 370 | 17 | } | 371 | 33 | } | 372 | 73 | } |
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 | 2 | { | 361 | 2 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 2 | if (GC_DELREF(s) == 0) { | 363 | 2 | if (persistent) { | 364 | 2 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 2 | free(s); | 366 | 2 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 2 | } | 371 | 2 | } | 372 | 2 | } |
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 | 2 | { | 361 | 2 | 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 | 2 | } |
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 | 6 | { | 361 | 6 | 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 | 6 | } |
Unexecuted instantiation: info.c:zend_string_release_ex 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 Unexecuted instantiation: password.c:zend_string_release_ex 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 | 138 | { | 361 | 138 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 75 | 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 | 75 | } | 372 | 138 | } |
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 | 10 | { | 361 | 10 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 10 | 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 | 10 | } | 372 | 10 | } |
Unexecuted instantiation: url.c:zend_string_release_ex user_filters.c:zend_string_release_ex Line | Count | Source | 360 | 72 | { | 361 | 72 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 14 | if (GC_DELREF(s) == 0) { | 363 | 14 | if (persistent) { | 364 | 14 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 14 | free(s); | 366 | 14 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 14 | } | 371 | 14 | } | 372 | 72 | } |
Unexecuted instantiation: uuencode.c:zend_string_release_ex var_unserializer.c:zend_string_release_ex Line | Count | Source | 360 | 743 | { | 361 | 743 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 338 | if (GC_DELREF(s) == 0) { | 363 | 322 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 322 | } else { | 367 | 322 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 322 | efree(s); | 369 | 322 | } | 370 | 322 | } | 371 | 338 | } | 372 | 743 | } |
var.c:zend_string_release_ex Line | Count | Source | 360 | 4.15k | { | 361 | 4.15k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 515 | if (GC_DELREF(s) == 0) { | 363 | 509 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 509 | } else { | 367 | 509 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 509 | efree(s); | 369 | 509 | } | 370 | 509 | } | 371 | 515 | } | 372 | 4.15k | } |
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 | 12 | { | 361 | 12 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 6 | if (GC_DELREF(s) == 0) { | 363 | 6 | if (persistent) { | 364 | 6 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 6 | free(s); | 366 | 6 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 6 | } | 371 | 6 | } | 372 | 12 | } |
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 | 8 | { | 361 | 8 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 4 | if (GC_DELREF(s) == 0) { | 363 | 4 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 4 | } else { | 367 | 4 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 4 | efree(s); | 369 | 4 | } | 370 | 4 | } | 371 | 4 | } | 372 | 8 | } |
Unexecuted instantiation: network.c:zend_string_release_ex output.c:zend_string_release_ex Line | Count | Source | 360 | 2.07k | { | 361 | 2.07k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 2.04k | if (GC_DELREF(s) == 0) { | 363 | 1.02k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 1.02k | } else { | 367 | 1.02k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 1.02k | efree(s); | 369 | 1.02k | } | 370 | 1.02k | } | 371 | 2.04k | } | 372 | 2.07k | } |
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 | 1.77k | { | 361 | 1.77k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 1.72k | 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 | 1.72k | } | 372 | 1.77k | } |
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 | 4 | { | 361 | 4 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 4 | 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 | 4 | } | 372 | 4 | } |
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 | 12 | { | 361 | 12 | 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 | 12 | } |
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 | 8 | { | 361 | 8 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 8 | if (GC_DELREF(s) == 0) { | 363 | 8 | if (persistent) { | 364 | 8 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 8 | free(s); | 366 | 8 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 8 | } | 371 | 8 | } | 372 | 8 | } |
streams.c:zend_string_release_ex Line | Count | Source | 360 | 48 | { | 361 | 48 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 36 | if (GC_DELREF(s) == 0) { | 363 | 36 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 36 | } else { | 367 | 36 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 36 | efree(s); | 369 | 36 | } | 370 | 36 | } | 371 | 36 | } | 372 | 48 | } |
transports.c:zend_string_release_ex Line | Count | Source | 360 | 8 | { | 361 | 8 | 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 | } |
userspace.c:zend_string_release_ex Line | Count | Source | 360 | 562 | { | 361 | 562 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 562 | if (GC_DELREF(s) == 0) { | 363 | 562 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 562 | } else { | 367 | 562 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 562 | efree(s); | 369 | 562 | } | 370 | 562 | } | 371 | 562 | } | 372 | 562 | } |
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 | 381k | { | 361 | 381k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 141k | if (GC_DELREF(s) == 0) { | 363 | 26.8k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 26.8k | } else { | 367 | 26.8k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 26.8k | efree(s); | 369 | 26.8k | } | 370 | 26.8k | } | 371 | 141k | } | 372 | 381k | } |
compact_vars.c:zend_string_release_ex Line | Count | Source | 360 | 2.43k | { | 361 | 2.43k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 368 | if (GC_DELREF(s) == 0) { | 363 | 344 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 344 | } else { | 367 | 344 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 344 | efree(s); | 369 | 344 | } | 370 | 344 | } | 371 | 368 | } | 372 | 2.43k | } |
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 | 1.06k | { | 361 | 1.06k | 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 | 1.06k | } |
zend_inference.c:zend_string_release_ex Line | Count | Source | 360 | 2.19k | { | 361 | 2.19k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 1.85k | if (GC_DELREF(s) == 0) { | 363 | 1.80k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 1.80k | } else { | 367 | 1.80k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 1.80k | efree(s); | 369 | 1.80k | } | 370 | 1.80k | } | 371 | 1.85k | } | 372 | 2.19k | } |
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 | 5.51k | { | 361 | 5.51k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 2.73k | if (GC_DELREF(s) == 0) { | 363 | 879 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 879 | } else { | 367 | 879 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 879 | efree(s); | 369 | 879 | } | 370 | 879 | } | 371 | 2.73k | } | 372 | 5.51k | } |
zend_ast.c:zend_string_release_ex Line | Count | Source | 360 | 30.8k | { | 361 | 30.8k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 25.8k | if (GC_DELREF(s) == 0) { | 363 | 7.24k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 7.24k | } else { | 367 | 7.24k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 7.24k | efree(s); | 369 | 7.24k | } | 370 | 7.24k | } | 371 | 25.8k | } | 372 | 30.8k | } |
zend_attributes.c:zend_string_release_ex Line | Count | Source | 360 | 36 | { | 361 | 36 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 2 | if (GC_DELREF(s) == 0) { | 363 | 2 | if (persistent) { | 364 | 2 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 2 | free(s); | 366 | 2 | } else { | 367 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 0 | efree(s); | 369 | 0 | } | 370 | 2 | } | 371 | 2 | } | 372 | 36 | } |
Unexecuted instantiation: zend_autoload.c:zend_string_release_ex zend_builtin_functions.c:zend_string_release_ex Line | Count | Source | 360 | 326 | { | 361 | 326 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 236 | if (GC_DELREF(s) == 0) { | 363 | 232 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 232 | } else { | 367 | 232 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 232 | efree(s); | 369 | 232 | } | 370 | 232 | } | 371 | 236 | } | 372 | 326 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_release_ex zend_closures.c:zend_string_release_ex Line | Count | Source | 360 | 124 | { | 361 | 124 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 48 | 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 | 48 | } | 372 | 124 | } |
zend_compile.c:zend_string_release_ex Line | Count | Source | 360 | 48.6k | { | 361 | 48.6k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 34.4k | if (GC_DELREF(s) == 0) { | 363 | 1.15k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 1.15k | } else { | 367 | 1.15k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 1.15k | efree(s); | 369 | 1.15k | } | 370 | 1.15k | } | 371 | 34.4k | } | 372 | 48.6k | } |
zend_constants.c:zend_string_release_ex Line | Count | Source | 360 | 60 | { | 361 | 60 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 16 | if (GC_DELREF(s) == 0) { | 363 | 16 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 16 | } else { | 367 | 16 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 16 | efree(s); | 369 | 16 | } | 370 | 16 | } | 371 | 16 | } | 372 | 60 | } |
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 | 10.4k | { | 361 | 10.4k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 7.05k | if (GC_DELREF(s) == 0) { | 363 | 179 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 179 | } else { | 367 | 179 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 179 | efree(s); | 369 | 179 | } | 370 | 179 | } | 371 | 7.05k | } | 372 | 10.4k | } |
zend_execute_API.c:zend_string_release_ex Line | Count | Source | 360 | 28.0k | { | 361 | 28.0k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 6.82k | if (GC_DELREF(s) == 0) { | 363 | 6.34k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 6.34k | } else { | 367 | 6.34k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 6.34k | efree(s); | 369 | 6.34k | } | 370 | 6.34k | } | 371 | 6.82k | } | 372 | 28.0k | } |
zend_execute.c:zend_string_release_ex Line | Count | Source | 360 | 1.08M | { | 361 | 1.08M | if (!ZSTR_IS_INTERNED(s)) { | 362 | 238k | if (GC_DELREF(s) == 0) { | 363 | 88.0k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 88.0k | } else { | 367 | 88.0k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 88.0k | efree(s); | 369 | 88.0k | } | 370 | 88.0k | } | 371 | 238k | } | 372 | 1.08M | } |
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 | 36.8k | { | 361 | 36.8k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 27.2k | if (GC_DELREF(s) == 0) { | 363 | 26.8k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 26.8k | } else { | 367 | 26.8k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 26.8k | efree(s); | 369 | 26.8k | } | 370 | 26.8k | } | 371 | 27.2k | } | 372 | 36.8k | } |
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 | 2.38k | { | 361 | 2.38k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 1.06k | if (GC_DELREF(s) == 0) { | 363 | 222 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 222 | } else { | 367 | 222 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 222 | efree(s); | 369 | 222 | } | 370 | 222 | } | 371 | 1.06k | } | 372 | 2.38k | } |
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 | 220 | { | 361 | 220 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 220 | if (GC_DELREF(s) == 0) { | 363 | 220 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 220 | } else { | 367 | 220 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 220 | efree(s); | 369 | 220 | } | 370 | 220 | } | 371 | 220 | } | 372 | 220 | } |
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 | 14 | { | 361 | 14 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 14 | if (GC_DELREF(s) == 0) { | 363 | 14 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 14 | } else { | 367 | 14 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 14 | efree(s); | 369 | 14 | } | 370 | 14 | } | 371 | 14 | } | 372 | 14 | } |
zend_language_scanner.c:zend_string_release_ex Line | Count | Source | 360 | 28.8k | { | 361 | 28.8k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 28.7k | if (GC_DELREF(s) == 0) { | 363 | 3.07k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 3.07k | } else { | 367 | 3.07k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 3.07k | efree(s); | 369 | 3.07k | } | 370 | 3.07k | } | 371 | 28.7k | } | 372 | 28.8k | } |
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 | 601 | { | 361 | 601 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 432 | if (GC_DELREF(s) == 0) { | 363 | 370 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 370 | } else { | 367 | 370 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 370 | efree(s); | 369 | 370 | } | 370 | 370 | } | 371 | 432 | } | 372 | 601 | } |
Unexecuted instantiation: zend_objects_API.c:zend_string_release_ex zend_objects.c:zend_string_release_ex Line | Count | Source | 360 | 6 | { | 361 | 6 | 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 | 6 | } |
Unexecuted instantiation: zend_observer.c:zend_string_release_ex zend_opcode.c:zend_string_release_ex Line | Count | Source | 360 | 20.1k | { | 361 | 20.1k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 4.41k | if (GC_DELREF(s) == 0) { | 363 | 1.55k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 1.55k | } else { | 367 | 1.55k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 1.55k | efree(s); | 369 | 1.55k | } | 370 | 1.55k | } | 371 | 4.41k | } | 372 | 20.1k | } |
zend_operators.c:zend_string_release_ex Line | Count | Source | 360 | 141k | { | 361 | 141k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 34.4k | if (GC_DELREF(s) == 0) { | 363 | 33.4k | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 33.4k | } else { | 367 | 33.4k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 33.4k | efree(s); | 369 | 33.4k | } | 370 | 33.4k | } | 371 | 34.4k | } | 372 | 141k | } |
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 | 38 | { | 361 | 38 | if (!ZSTR_IS_INTERNED(s)) { | 362 | 36 | 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 | 36 | } | 372 | 38 | } |
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 | 17.9k | { | 361 | 17.9k | if (!ZSTR_IS_INTERNED(s)) { | 362 | 932 | if (GC_DELREF(s) == 0) { | 363 | 932 | if (persistent) { | 364 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 365 | 0 | free(s); | 366 | 932 | } else { | 367 | 932 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 368 | 932 | efree(s); | 369 | 932 | } | 370 | 932 | } | 371 | 932 | } | 372 | 17.9k | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_release_ex Unexecuted instantiation: fuzzer-function-jit.c:zend_string_release_ex Unexecuted instantiation: fuzzer-sapi.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 | 3.52M | { |
376 | 3.52M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); |
377 | 3.52M | } php_date.c:zend_string_equals_cstr Line | Count | Source | 375 | 144 | { | 376 | 144 | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 144 | } |
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 | 27.8k | { | 376 | 27.8k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 27.8k | } |
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 Unexecuted instantiation: array.c:zend_string_equals_cstr 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 | 504 | { | 376 | 504 | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 504 | } |
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 | 12 | { | 376 | 12 | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 12 | } |
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 | 50 | { | 376 | 50 | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 50 | } |
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 | 8.10k | { | 376 | 8.10k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 8.10k | } |
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 | 536k | { | 376 | 536k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 536k | } |
zend_ssa.c:zend_string_equals_cstr Line | Count | Source | 375 | 64.4k | { | 376 | 64.4k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 64.4k | } |
Unexecuted instantiation: zend_alloc.c:zend_string_equals_cstr zend_API.c:zend_string_equals_cstr Line | Count | Source | 375 | 45.6k | { | 376 | 45.6k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 45.6k | } |
Unexecuted instantiation: zend_ast.c:zend_string_equals_cstr zend_attributes.c:zend_string_equals_cstr Line | Count | Source | 375 | 3.69k | { | 376 | 3.69k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 3.69k | } |
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 | 2.65M | { | 376 | 2.65M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 2.65M | } |
zend_constants.c:zend_string_equals_cstr Line | Count | Source | 375 | 1.90k | { | 376 | 1.90k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 1.90k | } |
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 | 212 | { | 376 | 212 | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 212 | } |
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 | 174k | { | 376 | 174k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 174k | } |
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 | 6.52k | { | 376 | 6.52k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 377 | 6.52k | } |
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-function-jit.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-sapi.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 | 1.76M | { |
392 | 1.76M | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); |
393 | 1.76M | } 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 | 74.9k | { | 392 | 74.9k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 74.9k | } |
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 | 731k | { | 392 | 731k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 731k | } |
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 | 48 | { | 392 | 48 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 48 | } |
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 | 6.45k | { | 392 | 6.45k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 6.45k | } |
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 | 2 | { | 392 | 2 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 2 | } |
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 | 2.65k | { | 392 | 2.65k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 2.65k | } |
Unexecuted instantiation: zend_ast.c:zend_string_equal_content zend_attributes.c:zend_string_equal_content Line | Count | Source | 391 | 466 | { | 392 | 466 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 466 | } |
zend_autoload.c:zend_string_equal_content Line | Count | Source | 391 | 4 | { | 392 | 4 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 4 | } |
zend_builtin_functions.c:zend_string_equal_content Line | Count | Source | 391 | 20 | { | 392 | 20 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 20 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_equal_content zend_closures.c:zend_string_equal_content Line | Count | Source | 391 | 116 | { | 392 | 116 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 116 | } |
zend_compile.c:zend_string_equal_content Line | Count | Source | 391 | 661k | { | 392 | 661k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 661k | } |
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 | 152 | { | 392 | 152 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 152 | } |
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 | 13.0k | { | 392 | 13.0k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 13.0k | } |
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 | 262k | { | 392 | 262k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 262k | } |
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 | 455 | { | 392 | 455 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 455 | } |
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 | 9.35k | { | 392 | 9.35k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 9.35k | } |
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 | 592 | { | 392 | 592 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 592 | } |
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 | 4 | { | 392 | 4 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 393 | 4 | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_equal_content Unexecuted instantiation: fuzzer-function-jit.c:zend_string_equal_content Unexecuted instantiation: fuzzer-sapi.c:zend_string_equal_content |
394 | | |
395 | | static zend_always_inline bool zend_string_equals(const zend_string *s1, const zend_string *s2) |
396 | 1.10M | { |
397 | 1.10M | return s1 == s2 || zend_string_equal_content(s1, s2); |
398 | 1.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 | 177k | { | 397 | 177k | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 177k | } |
Unexecuted instantiation: zend_accelerator_module.c:zend_string_equals zend_accelerator_util_funcs.c:zend_string_equals Line | Count | Source | 396 | 259 | { | 397 | 259 | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 259 | } |
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 | 23.5k | { | 397 | 23.5k | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 23.5k | } |
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 | 56 | { | 397 | 56 | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 56 | } |
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 | 20 | { | 397 | 20 | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 20 | } |
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 | 2 | { | 397 | 2 | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 2 | } |
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 | 2.79k | { | 397 | 2.79k | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 2.79k | } |
Unexecuted instantiation: zend_ast.c:zend_string_equals zend_attributes.c:zend_string_equals Line | Count | Source | 396 | 498 | { | 397 | 498 | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 498 | } |
zend_autoload.c:zend_string_equals Line | Count | Source | 396 | 4 | { | 397 | 4 | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 4 | } |
zend_builtin_functions.c:zend_string_equals Line | Count | Source | 396 | 76 | { | 397 | 76 | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 76 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_equals zend_closures.c:zend_string_equals Line | Count | Source | 396 | 232 | { | 397 | 232 | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 232 | } |
zend_compile.c:zend_string_equals Line | Count | Source | 396 | 881k | { | 397 | 881k | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 881k | } |
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 | 656 | { | 397 | 656 | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 656 | } |
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 | 13.2k | { | 397 | 13.2k | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 13.2k | } |
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 | 9.55k | { | 397 | 9.55k | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 9.55k | } |
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 | 26 | { | 397 | 26 | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 26 | } |
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 | 4 | { | 397 | 4 | return s1 == s2 || zend_string_equal_content(s1, s2); | 398 | 4 | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_equals Unexecuted instantiation: fuzzer-function-jit.c:zend_string_equals Unexecuted instantiation: fuzzer-sapi.c:zend_string_equals |
399 | | |
400 | | #define zend_string_equals_ci(s1, s2) \ |
401 | 419k | (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 | 28.6k | (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 | 4.21M | 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 | 23.5k | { |
411 | 23.5k | return ZSTR_LEN(str) >= prefix_length && !memcmp(ZSTR_VAL(str), prefix, prefix_length); |
412 | 23.5k | } 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 | 23.5k | { | 411 | 23.5k | return ZSTR_LEN(str) >= prefix_length && !memcmp(ZSTR_VAL(str), prefix, prefix_length); | 412 | 23.5k | } |
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 | 2 | { | 411 | 2 | return ZSTR_LEN(str) >= prefix_length && !memcmp(ZSTR_VAL(str), prefix, prefix_length); | 412 | 2 | } |
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-function-jit.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-sapi.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-function-jit.c:zend_string_starts_with Unexecuted instantiation: fuzzer-sapi.c:zend_string_starts_with |
418 | | |
419 | | #define zend_string_starts_with_literal(str, prefix) \ |
420 | 47.1k | 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-function-jit.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-sapi.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-function-jit.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-sapi.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 | 1.35M | { |
470 | 1.35M | zend_ulong hash = Z_UL(5381); |
471 | | |
472 | 1.35M | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) |
473 | | /* Version with multiplication works better on modern CPU */ |
474 | 30.9M | 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 | 29.5M | hash = |
495 | 29.5M | hash * Z_L(33 * 33 * 33 * 33) + |
496 | 29.5M | str[0] * Z_L(33 * 33 * 33) + |
497 | 29.5M | str[1] * Z_L(33 * 33) + |
498 | 29.5M | str[2] * Z_L(33) + |
499 | 29.5M | str[3]; |
500 | 29.5M | hash = |
501 | 29.5M | hash * Z_L(33 * 33 * 33 * 33) + |
502 | 29.5M | str[4] * Z_L(33 * 33 * 33) + |
503 | 29.5M | str[5] * Z_L(33 * 33) + |
504 | 29.5M | str[6] * Z_L(33) + |
505 | 29.5M | str[7]; |
506 | 29.5M | # endif |
507 | 29.5M | } |
508 | 1.35M | if (len >= 4) { |
509 | 479k | hash = |
510 | 479k | hash * Z_L(33 * 33 * 33 * 33) + |
511 | 479k | str[0] * Z_L(33 * 33 * 33) + |
512 | 479k | str[1] * Z_L(33 * 33) + |
513 | 479k | str[2] * Z_L(33) + |
514 | 479k | str[3]; |
515 | 479k | len -= 4; |
516 | 479k | str += 4; |
517 | 479k | } |
518 | 1.35M | if (len >= 2) { |
519 | 644k | if (len > 2) { |
520 | 339k | hash = |
521 | 339k | hash * Z_L(33 * 33 * 33) + |
522 | 339k | str[0] * Z_L(33 * 33) + |
523 | 339k | str[1] * Z_L(33) + |
524 | 339k | str[2]; |
525 | 339k | } else { |
526 | 304k | hash = |
527 | 304k | hash * Z_L(33 * 33) + |
528 | 304k | str[0] * Z_L(33) + |
529 | 304k | str[1]; |
530 | 304k | } |
531 | 714k | } else if (len != 0) { |
532 | 305k | hash = hash * Z_L(33) + *str; |
533 | 305k | } |
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 | 1.35M | #if SIZEOF_ZEND_LONG == 8 |
561 | 1.35M | 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 | 1.35M | } 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 | 29.5k | { | 470 | 29.5k | zend_ulong hash = Z_UL(5381); | 471 | | | 472 | 29.5k | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) | 473 | | /* Version with multiplication works better on modern CPU */ | 474 | 34.6k | 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 | 5.01k | hash = | 495 | 5.01k | hash * Z_L(33 * 33 * 33 * 33) + | 496 | 5.01k | str[0] * Z_L(33 * 33 * 33) + | 497 | 5.01k | str[1] * Z_L(33 * 33) + | 498 | 5.01k | str[2] * Z_L(33) + | 499 | 5.01k | str[3]; | 500 | 5.01k | hash = | 501 | 5.01k | hash * Z_L(33 * 33 * 33 * 33) + | 502 | 5.01k | str[4] * Z_L(33 * 33 * 33) + | 503 | 5.01k | str[5] * Z_L(33 * 33) + | 504 | 5.01k | str[6] * Z_L(33) + | 505 | 5.01k | str[7]; | 506 | 5.01k | # endif | 507 | 5.01k | } | 508 | 29.5k | if (len >= 4) { | 509 | 17.4k | hash = | 510 | 17.4k | hash * Z_L(33 * 33 * 33 * 33) + | 511 | 17.4k | str[0] * Z_L(33 * 33 * 33) + | 512 | 17.4k | str[1] * Z_L(33 * 33) + | 513 | 17.4k | str[2] * Z_L(33) + | 514 | 17.4k | str[3]; | 515 | 17.4k | len -= 4; | 516 | 17.4k | str += 4; | 517 | 17.4k | } | 518 | 29.5k | if (len >= 2) { | 519 | 16.1k | if (len > 2) { | 520 | 3.55k | hash = | 521 | 3.55k | hash * Z_L(33 * 33 * 33) + | 522 | 3.55k | str[0] * Z_L(33 * 33) + | 523 | 3.55k | str[1] * Z_L(33) + | 524 | 3.55k | str[2]; | 525 | 12.5k | } else { | 526 | 12.5k | hash = | 527 | 12.5k | hash * Z_L(33 * 33) + | 528 | 12.5k | str[0] * Z_L(33) + | 529 | 12.5k | str[1]; | 530 | 12.5k | } | 531 | 16.1k | } else if (len != 0) { | 532 | 9.66k | hash = hash * Z_L(33) + *str; | 533 | 9.66k | } | 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 | 29.5k | #if SIZEOF_ZEND_LONG == 8 | 561 | 29.5k | 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 | 29.5k | } |
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 | 4.73k | { | 470 | 4.73k | zend_ulong hash = Z_UL(5381); | 471 | | | 472 | 4.73k | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) | 473 | | /* Version with multiplication works better on modern CPU */ | 474 | 4.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 | 18 | hash = | 495 | 18 | hash * Z_L(33 * 33 * 33 * 33) + | 496 | 18 | str[0] * Z_L(33 * 33 * 33) + | 497 | 18 | str[1] * Z_L(33 * 33) + | 498 | 18 | str[2] * Z_L(33) + | 499 | 18 | str[3]; | 500 | 18 | hash = | 501 | 18 | hash * Z_L(33 * 33 * 33 * 33) + | 502 | 18 | str[4] * Z_L(33 * 33 * 33) + | 503 | 18 | str[5] * Z_L(33 * 33) + | 504 | 18 | str[6] * Z_L(33) + | 505 | 18 | str[7]; | 506 | 18 | # endif | 507 | 18 | } | 508 | 4.73k | if (len >= 4) { | 509 | 38 | hash = | 510 | 38 | hash * Z_L(33 * 33 * 33 * 33) + | 511 | 38 | str[0] * Z_L(33 * 33 * 33) + | 512 | 38 | str[1] * Z_L(33 * 33) + | 513 | 38 | str[2] * Z_L(33) + | 514 | 38 | str[3]; | 515 | 38 | len -= 4; | 516 | 38 | str += 4; | 517 | 38 | } | 518 | 4.73k | if (len >= 2) { | 519 | 4.70k | if (len > 2) { | 520 | 319 | hash = | 521 | 319 | hash * Z_L(33 * 33 * 33) + | 522 | 319 | str[0] * Z_L(33 * 33) + | 523 | 319 | str[1] * Z_L(33) + | 524 | 319 | str[2]; | 525 | 4.38k | } else { | 526 | 4.38k | hash = | 527 | 4.38k | hash * Z_L(33 * 33) + | 528 | 4.38k | str[0] * Z_L(33) + | 529 | 4.38k | str[1]; | 530 | 4.38k | } | 531 | 4.70k | } else if (len != 0) { | 532 | 36 | hash = hash * Z_L(33) + *str; | 533 | 36 | } | 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 | 4.73k | #if SIZEOF_ZEND_LONG == 8 | 561 | 4.73k | 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 | 4.73k | } |
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 | 260k | { | 470 | 260k | zend_ulong hash = Z_UL(5381); | 471 | | | 472 | 260k | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) | 473 | | /* Version with multiplication works better on modern CPU */ | 474 | 601k | 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 | 340k | hash = | 495 | 340k | hash * Z_L(33 * 33 * 33 * 33) + | 496 | 340k | str[0] * Z_L(33 * 33 * 33) + | 497 | 340k | str[1] * Z_L(33 * 33) + | 498 | 340k | str[2] * Z_L(33) + | 499 | 340k | str[3]; | 500 | 340k | hash = | 501 | 340k | hash * Z_L(33 * 33 * 33 * 33) + | 502 | 340k | str[4] * Z_L(33 * 33 * 33) + | 503 | 340k | str[5] * Z_L(33 * 33) + | 504 | 340k | str[6] * Z_L(33) + | 505 | 340k | str[7]; | 506 | 340k | # endif | 507 | 340k | } | 508 | 260k | if (len >= 4) { | 509 | 35.0k | hash = | 510 | 35.0k | hash * Z_L(33 * 33 * 33 * 33) + | 511 | 35.0k | str[0] * Z_L(33 * 33 * 33) + | 512 | 35.0k | str[1] * Z_L(33 * 33) + | 513 | 35.0k | str[2] * Z_L(33) + | 514 | 35.0k | str[3]; | 515 | 35.0k | len -= 4; | 516 | 35.0k | str += 4; | 517 | 35.0k | } | 518 | 260k | if (len >= 2) { | 519 | 126k | if (len > 2) { | 520 | 48.2k | hash = | 521 | 48.2k | hash * Z_L(33 * 33 * 33) + | 522 | 48.2k | str[0] * Z_L(33 * 33) + | 523 | 48.2k | str[1] * Z_L(33) + | 524 | 48.2k | str[2]; | 525 | 78.2k | } else { | 526 | 78.2k | hash = | 527 | 78.2k | hash * Z_L(33 * 33) + | 528 | 78.2k | str[0] * Z_L(33) + | 529 | 78.2k | str[1]; | 530 | 78.2k | } | 531 | 134k | } else if (len != 0) { | 532 | 56.3k | hash = hash * Z_L(33) + *str; | 533 | 56.3k | } | 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 | 260k | #if SIZEOF_ZEND_LONG == 8 | 561 | 260k | 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 | 260k | } |
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 | 1.06M | { | 470 | 1.06M | zend_ulong hash = Z_UL(5381); | 471 | | | 472 | 1.06M | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) | 473 | | /* Version with multiplication works better on modern CPU */ | 474 | 30.3M | 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 | 29.2M | hash = | 495 | 29.2M | hash * Z_L(33 * 33 * 33 * 33) + | 496 | 29.2M | str[0] * Z_L(33 * 33 * 33) + | 497 | 29.2M | str[1] * Z_L(33 * 33) + | 498 | 29.2M | str[2] * Z_L(33) + | 499 | 29.2M | str[3]; | 500 | 29.2M | hash = | 501 | 29.2M | hash * Z_L(33 * 33 * 33 * 33) + | 502 | 29.2M | str[4] * Z_L(33 * 33 * 33) + | 503 | 29.2M | str[5] * Z_L(33 * 33) + | 504 | 29.2M | str[6] * Z_L(33) + | 505 | 29.2M | str[7]; | 506 | 29.2M | # endif | 507 | 29.2M | } | 508 | 1.06M | if (len >= 4) { | 509 | 426k | hash = | 510 | 426k | hash * Z_L(33 * 33 * 33 * 33) + | 511 | 426k | str[0] * Z_L(33 * 33 * 33) + | 512 | 426k | str[1] * Z_L(33 * 33) + | 513 | 426k | str[2] * Z_L(33) + | 514 | 426k | str[3]; | 515 | 426k | len -= 4; | 516 | 426k | str += 4; | 517 | 426k | } | 518 | 1.06M | if (len >= 2) { | 519 | 496k | if (len > 2) { | 520 | 287k | hash = | 521 | 287k | hash * Z_L(33 * 33 * 33) + | 522 | 287k | str[0] * Z_L(33 * 33) + | 523 | 287k | str[1] * Z_L(33) + | 524 | 287k | str[2]; | 525 | 287k | } else { | 526 | 209k | hash = | 527 | 209k | hash * Z_L(33 * 33) + | 528 | 209k | str[0] * Z_L(33) + | 529 | 209k | str[1]; | 530 | 209k | } | 531 | 566k | } else if (len != 0) { | 532 | 239k | hash = hash * Z_L(33) + *str; | 533 | 239k | } | 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 | 1.06M | #if SIZEOF_ZEND_LONG == 8 | 561 | 1.06M | 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 | 1.06M | } |
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-function-jit.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-sapi.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 */ |