/src/php-src/Zend/zend_string.h
Line | Count | Source |
1 | | /* |
2 | | +----------------------------------------------------------------------+ |
3 | | | Zend Engine | |
4 | | +----------------------------------------------------------------------+ |
5 | | | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | |
6 | | +----------------------------------------------------------------------+ |
7 | | | This source file is subject to version 2.00 of the Zend license, | |
8 | | | that is bundled with this package in the file LICENSE, and is | |
9 | | | available through the world-wide-web at the following url: | |
10 | | | http://www.zend.com/license/2_00.txt. | |
11 | | | If you did not receive a copy of the Zend license and are unable to | |
12 | | | obtain it through the world-wide-web, please send a note to | |
13 | | | license@zend.com so we can mail you a copy immediately. | |
14 | | +----------------------------------------------------------------------+ |
15 | | | Authors: Dmitry Stogov <dmitry@php.net> | |
16 | | +----------------------------------------------------------------------+ |
17 | | */ |
18 | | |
19 | | #ifndef ZEND_STRING_H |
20 | | #define ZEND_STRING_H |
21 | | |
22 | | #include "zend_types.h" |
23 | | #include "zend_gc.h" |
24 | | #include "zend_alloc.h" |
25 | | |
26 | | BEGIN_EXTERN_C() |
27 | | |
28 | | typedef void (*zend_string_copy_storage_func_t)(void); |
29 | | typedef zend_string *(ZEND_FASTCALL *zend_new_interned_string_func_t)(zend_string *str); |
30 | | typedef zend_string *(ZEND_FASTCALL *zend_string_init_interned_func_t)(const char *str, size_t size, bool permanent); |
31 | | typedef zend_string *(ZEND_FASTCALL *zend_string_init_existing_interned_func_t)(const char *str, size_t size, bool permanent); |
32 | | |
33 | | ZEND_API extern zend_new_interned_string_func_t zend_new_interned_string; |
34 | | ZEND_API extern zend_string_init_interned_func_t zend_string_init_interned; |
35 | | /* Init an interned string if it already exists, but do not create a new one if it does not. */ |
36 | | ZEND_API extern zend_string_init_existing_interned_func_t zend_string_init_existing_interned; |
37 | | |
38 | | ZEND_API zend_ulong ZEND_FASTCALL zend_string_hash_func(zend_string *str); |
39 | | ZEND_API zend_ulong ZEND_FASTCALL zend_hash_func(const char *str, size_t len); |
40 | | ZEND_API zend_string* ZEND_FASTCALL zend_interned_string_find_permanent(zend_string *str); |
41 | | |
42 | | ZEND_API zend_string *zend_string_concat2( |
43 | | const char *str1, size_t str1_len, |
44 | | const char *str2, size_t str2_len); |
45 | | ZEND_API zend_string *zend_string_concat3( |
46 | | const char *str1, size_t str1_len, |
47 | | const char *str2, size_t str2_len, |
48 | | const char *str3, size_t str3_len); |
49 | | |
50 | | ZEND_API void zend_interned_strings_init(void); |
51 | | ZEND_API void zend_interned_strings_dtor(void); |
52 | | ZEND_API void zend_interned_strings_activate(void); |
53 | | ZEND_API void zend_interned_strings_deactivate(void); |
54 | | ZEND_API void zend_interned_strings_set_request_storage_handlers( |
55 | | zend_new_interned_string_func_t handler, |
56 | | zend_string_init_interned_func_t init_handler, |
57 | | zend_string_init_existing_interned_func_t init_existing_handler); |
58 | | ZEND_API void zend_interned_strings_switch_storage(bool request); |
59 | | |
60 | | ZEND_API extern zend_string *zend_empty_string; |
61 | | ZEND_API extern zend_string *zend_one_char_string[256]; |
62 | | ZEND_API extern zend_string **zend_known_strings; |
63 | | |
64 | | END_EXTERN_C() |
65 | | |
66 | | /* Shortcuts */ |
67 | | |
68 | 8.13G | #define ZSTR_VAL(zstr) (zstr)->val |
69 | 3.18G | #define ZSTR_LEN(zstr) (zstr)->len |
70 | 325M | #define ZSTR_H(zstr) (zstr)->h |
71 | | #define ZSTR_HASH(zstr) zend_string_hash_val(zstr) |
72 | | |
73 | | /*---*/ |
74 | | |
75 | 117M | #define ZSTR_IS_INTERNED(s) (GC_FLAGS(s) & IS_STR_INTERNED) |
76 | 252k | #define ZSTR_IS_VALID_UTF8(s) (GC_FLAGS(s) & IS_STR_VALID_UTF8) |
77 | | |
78 | | /* These are properties, encoded as flags, that will hold on the resulting string |
79 | | * after concatenating two strings that have these property. |
80 | | * Example: concatenating two UTF-8 strings yields another UTF-8 string. */ |
81 | 3.24M | #define ZSTR_COPYABLE_CONCAT_PROPERTIES (IS_STR_VALID_UTF8) |
82 | | |
83 | 1.36M | #define ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(s) (GC_FLAGS(s) & ZSTR_COPYABLE_CONCAT_PROPERTIES) |
84 | | /* This macro returns the copyable concat properties which hold on both strings. */ |
85 | 1.61M | #define ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH(s1, s2) (GC_FLAGS(s1) & GC_FLAGS(s2) & ZSTR_COPYABLE_CONCAT_PROPERTIES) |
86 | | |
87 | 608 | #define ZSTR_COPY_CONCAT_PROPERTIES(out, in) do { \ |
88 | 608 | zend_string *_out = (out); \ |
89 | 608 | uint32_t properties = ZSTR_GET_COPYABLE_CONCAT_PROPERTIES((in)); \ |
90 | 608 | GC_ADD_FLAGS(_out, properties); \ |
91 | 608 | } while (0) |
92 | | |
93 | 8.47k | #define ZSTR_COPY_CONCAT_PROPERTIES_BOTH(out, in1, in2) do { \ |
94 | 8.47k | zend_string *_out = (out); \ |
95 | 8.47k | uint32_t properties = ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH((in1), (in2)); \ |
96 | 8.47k | GC_ADD_FLAGS(_out, properties); \ |
97 | 8.47k | } while (0) |
98 | | |
99 | 3.50M | #define ZSTR_EMPTY_ALLOC() zend_empty_string |
100 | 1.08M | #define ZSTR_CHAR(c) zend_one_char_string[c] |
101 | 39.4M | #define ZSTR_KNOWN(idx) zend_known_strings[idx] |
102 | | |
103 | 9.46M | #define _ZSTR_HEADER_SIZE XtOffsetOf(zend_string, val) |
104 | | |
105 | 131k | #define _ZSTR_STRUCT_SIZE(len) (_ZSTR_HEADER_SIZE + len + 1) |
106 | | |
107 | 934 | #define ZSTR_MAX_OVERHEAD (ZEND_MM_ALIGNED_SIZE(_ZSTR_HEADER_SIZE + 1)) |
108 | | #define ZSTR_MAX_LEN (SIZE_MAX - ZSTR_MAX_OVERHEAD) |
109 | | |
110 | 6.67k | #define ZSTR_ALLOCA_ALLOC(str, _len, use_heap) do { \ |
111 | 6.67k | (str) = (zend_string *)do_alloca(ZEND_MM_ALIGNED_SIZE_EX(_ZSTR_STRUCT_SIZE(_len), 8), (use_heap)); \ |
112 | 6.67k | GC_SET_REFCOUNT(str, 1); \ |
113 | 6.67k | GC_TYPE_INFO(str) = GC_STRING; \ |
114 | 6.67k | ZSTR_H(str) = 0; \ |
115 | 6.67k | ZSTR_LEN(str) = _len; \ |
116 | 6.67k | } while (0) |
117 | | |
118 | | #define ZSTR_ALLOCA_INIT(str, s, len, use_heap) do { \ |
119 | | ZSTR_ALLOCA_ALLOC(str, len, use_heap); \ |
120 | | memcpy(ZSTR_VAL(str), (s), (len)); \ |
121 | | ZSTR_VAL(str)[(len)] = '\0'; \ |
122 | | } while (0) |
123 | | |
124 | 6.67k | #define ZSTR_ALLOCA_FREE(str, use_heap) free_alloca(str, use_heap) |
125 | | |
126 | 104k | #define ZSTR_INIT_LITERAL(s, persistent) (zend_string_init(("" s), sizeof(s) - 1, (persistent))) |
127 | | |
128 | | /*---*/ |
129 | | |
130 | | static zend_always_inline zend_ulong zend_string_hash_val(zend_string *s) |
131 | 94.8M | { |
132 | 94.8M | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); |
133 | 94.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 | 131 | 438k | { | 132 | 438k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 133 | 438k | } |
Unexecuted instantiation: zend_accelerator_module.c:zend_string_hash_val zend_accelerator_util_funcs.c:zend_string_hash_val Line | Count | Source | 131 | 20.2k | { | 132 | 20.2k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 133 | 20.2k | } |
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 | 131 | 131k | { | 132 | 131k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 133 | 131k | } |
Unexecuted instantiation: zend_shared_alloc.c:zend_string_hash_val ZendAccelerator.c:zend_string_hash_val Line | Count | Source | 131 | 41.9M | { | 132 | 41.9M | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 133 | 41.9M | } |
Unexecuted instantiation: ir_cfg.c:zend_string_hash_val Unexecuted instantiation: ir_check.c:zend_string_hash_val Unexecuted instantiation: ir_dump.c:zend_string_hash_val Unexecuted instantiation: ir_emit.c:zend_string_hash_val Unexecuted instantiation: ir_gcm.c:zend_string_hash_val Unexecuted instantiation: ir_gdb.c:zend_string_hash_val Unexecuted instantiation: ir_patch.c:zend_string_hash_val Unexecuted instantiation: ir_perf.c:zend_string_hash_val Unexecuted instantiation: ir_ra.c:zend_string_hash_val Unexecuted instantiation: ir_save.c:zend_string_hash_val Unexecuted instantiation: ir_sccp.c:zend_string_hash_val Unexecuted instantiation: ir_strtab.c:zend_string_hash_val Unexecuted instantiation: ir.c:zend_string_hash_val Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_hash_val Unexecuted instantiation: zend_jit.c:zend_string_hash_val Unexecuted instantiation: csprng.c:zend_string_hash_val Unexecuted instantiation: engine_mt19937.c:zend_string_hash_val Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_hash_val Unexecuted instantiation: engine_secure.c:zend_string_hash_val Unexecuted instantiation: engine_user.c:zend_string_hash_val Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_hash_val Unexecuted instantiation: gammasection.c:zend_string_hash_val Unexecuted instantiation: random.c:zend_string_hash_val Unexecuted instantiation: randomizer.c:zend_string_hash_val Unexecuted instantiation: zend_utils.c:zend_string_hash_val Unexecuted instantiation: php_reflection.c:zend_string_hash_val Unexecuted instantiation: php_spl.c:zend_string_hash_val Unexecuted instantiation: spl_array.c:zend_string_hash_val Unexecuted instantiation: spl_directory.c:zend_string_hash_val Unexecuted instantiation: spl_dllist.c:zend_string_hash_val Unexecuted instantiation: spl_exceptions.c:zend_string_hash_val Unexecuted instantiation: spl_fixedarray.c:zend_string_hash_val Unexecuted instantiation: spl_functions.c:zend_string_hash_val Unexecuted instantiation: spl_heap.c:zend_string_hash_val Unexecuted instantiation: spl_iterators.c:zend_string_hash_val Unexecuted instantiation: spl_observer.c:zend_string_hash_val array.c:zend_string_hash_val Line | Count | Source | 131 | 1 | { | 132 | 1 | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 133 | 1 | } |
Unexecuted instantiation: assert.c:zend_string_hash_val Unexecuted instantiation: base64.c:zend_string_hash_val Unexecuted instantiation: basic_functions.c:zend_string_hash_val Unexecuted instantiation: browscap.c:zend_string_hash_val Unexecuted instantiation: crc32_x86.c:zend_string_hash_val Unexecuted instantiation: crc32.c:zend_string_hash_val Unexecuted instantiation: credits.c:zend_string_hash_val Unexecuted instantiation: crypt.c:zend_string_hash_val Unexecuted instantiation: css.c:zend_string_hash_val Unexecuted instantiation: datetime.c:zend_string_hash_val Unexecuted instantiation: dir.c:zend_string_hash_val Unexecuted instantiation: dl.c:zend_string_hash_val Unexecuted instantiation: dns.c:zend_string_hash_val Unexecuted instantiation: exec.c:zend_string_hash_val Unexecuted instantiation: file.c:zend_string_hash_val Unexecuted instantiation: filestat.c:zend_string_hash_val Unexecuted instantiation: filters.c:zend_string_hash_val Unexecuted instantiation: flock_compat.c:zend_string_hash_val Unexecuted instantiation: formatted_print.c:zend_string_hash_val Unexecuted instantiation: fsock.c:zend_string_hash_val Unexecuted instantiation: ftok.c:zend_string_hash_val Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_hash_val Unexecuted instantiation: head.c:zend_string_hash_val Unexecuted instantiation: hrtime.c:zend_string_hash_val Unexecuted instantiation: html.c:zend_string_hash_val Unexecuted instantiation: http_fopen_wrapper.c:zend_string_hash_val Unexecuted instantiation: http.c:zend_string_hash_val Unexecuted instantiation: image.c:zend_string_hash_val Unexecuted instantiation: incomplete_class.c:zend_string_hash_val Unexecuted instantiation: info.c:zend_string_hash_val Unexecuted instantiation: iptc.c:zend_string_hash_val Unexecuted instantiation: levenshtein.c:zend_string_hash_val Unexecuted instantiation: link.c:zend_string_hash_val Unexecuted instantiation: mail.c:zend_string_hash_val Unexecuted instantiation: math.c:zend_string_hash_val Unexecuted instantiation: md5.c:zend_string_hash_val Unexecuted instantiation: metaphone.c:zend_string_hash_val Unexecuted instantiation: microtime.c:zend_string_hash_val Unexecuted instantiation: net.c:zend_string_hash_val Unexecuted instantiation: pack.c:zend_string_hash_val Unexecuted instantiation: pageinfo.c:zend_string_hash_val Unexecuted instantiation: password.c:zend_string_hash_val Unexecuted instantiation: php_fopen_wrapper.c:zend_string_hash_val Unexecuted instantiation: proc_open.c:zend_string_hash_val Unexecuted instantiation: quot_print.c:zend_string_hash_val Unexecuted instantiation: scanf.c:zend_string_hash_val Unexecuted instantiation: sha1.c:zend_string_hash_val Unexecuted instantiation: soundex.c:zend_string_hash_val Unexecuted instantiation: streamsfuncs.c:zend_string_hash_val Unexecuted instantiation: string.c:zend_string_hash_val Unexecuted instantiation: strnatcmp.c:zend_string_hash_val Unexecuted instantiation: syslog.c:zend_string_hash_val Unexecuted instantiation: type.c:zend_string_hash_val Unexecuted instantiation: uniqid.c:zend_string_hash_val Unexecuted instantiation: url_scanner_ex.c:zend_string_hash_val Unexecuted instantiation: url.c:zend_string_hash_val Unexecuted instantiation: user_filters.c:zend_string_hash_val Unexecuted instantiation: uuencode.c:zend_string_hash_val Unexecuted instantiation: var_unserializer.c:zend_string_hash_val Unexecuted instantiation: var.c:zend_string_hash_val Unexecuted instantiation: versioning.c:zend_string_hash_val Unexecuted instantiation: crypt_sha256.c:zend_string_hash_val Unexecuted instantiation: crypt_sha512.c:zend_string_hash_val Unexecuted instantiation: php_crypt_r.c:zend_string_hash_val Unexecuted instantiation: php_uri.c:zend_string_hash_val Unexecuted instantiation: php_uri_common.c:zend_string_hash_val Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_hash_val Unexecuted instantiation: uri_parser_whatwg.c:zend_string_hash_val Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_hash_val Unexecuted instantiation: explicit_bzero.c:zend_string_hash_val Unexecuted instantiation: fopen_wrappers.c:zend_string_hash_val Unexecuted instantiation: getopt.c:zend_string_hash_val Unexecuted instantiation: main.c:zend_string_hash_val Unexecuted instantiation: network.c:zend_string_hash_val Unexecuted instantiation: output.c:zend_string_hash_val Unexecuted instantiation: php_content_types.c:zend_string_hash_val Unexecuted instantiation: php_ini_builder.c:zend_string_hash_val Unexecuted instantiation: php_ini.c:zend_string_hash_val Unexecuted instantiation: php_glob.c:zend_string_hash_val Unexecuted instantiation: php_odbc_utils.c:zend_string_hash_val Unexecuted instantiation: php_open_temporary_file.c:zend_string_hash_val Unexecuted instantiation: php_scandir.c:zend_string_hash_val Unexecuted instantiation: php_syslog.c:zend_string_hash_val Unexecuted instantiation: php_ticks.c:zend_string_hash_val Unexecuted instantiation: php_variables.c:zend_string_hash_val Unexecuted instantiation: reentrancy.c:zend_string_hash_val Unexecuted instantiation: rfc1867.c:zend_string_hash_val Unexecuted instantiation: safe_bcmp.c:zend_string_hash_val Unexecuted instantiation: SAPI.c:zend_string_hash_val Unexecuted instantiation: snprintf.c:zend_string_hash_val Unexecuted instantiation: spprintf.c:zend_string_hash_val Unexecuted instantiation: strlcat.c:zend_string_hash_val Unexecuted instantiation: strlcpy.c:zend_string_hash_val Unexecuted instantiation: cast.c:zend_string_hash_val Unexecuted instantiation: filter.c:zend_string_hash_val Unexecuted instantiation: glob_wrapper.c:zend_string_hash_val Unexecuted instantiation: memory.c:zend_string_hash_val Unexecuted instantiation: mmap.c:zend_string_hash_val Unexecuted instantiation: plain_wrapper.c:zend_string_hash_val Unexecuted instantiation: 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 | 131 | 235k | { | 132 | 235k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 133 | 235k | } |
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 | 131 | 4.72k | { | 132 | 4.72k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 133 | 4.72k | } |
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_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 | 131 | 2.08M | { | 132 | 2.08M | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 133 | 2.08M | } |
Unexecuted instantiation: zend_constants.c:zend_string_hash_val Unexecuted instantiation: zend_cpuinfo.c:zend_string_hash_val Unexecuted instantiation: zend_default_classes.c:zend_string_hash_val Unexecuted instantiation: zend_dtrace.c:zend_string_hash_val Unexecuted instantiation: zend_enum.c:zend_string_hash_val Unexecuted instantiation: zend_exceptions.c:zend_string_hash_val zend_execute_API.c:zend_string_hash_val Line | Count | Source | 131 | 15 | { | 132 | 15 | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 133 | 15 | } |
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 | 131 | 49.9M | { | 132 | 49.9M | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 133 | 49.9M | } |
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 | 131 | 1.68k | { | 132 | 1.68k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 133 | 1.68k | } |
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 | 131 | 48 | { | 132 | 48 | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 133 | 48 | } |
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 | 131 | 13.2k | { | 132 | 13.2k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 133 | 13.2k | } |
Unexecuted instantiation: zend_strtod.c:zend_string_hash_val Unexecuted instantiation: zend_system_id.c:zend_string_hash_val Unexecuted instantiation: zend_variables.c:zend_string_hash_val Unexecuted instantiation: zend_virtual_cwd.c:zend_string_hash_val Unexecuted instantiation: zend_vm_opcodes.c:zend_string_hash_val Unexecuted instantiation: zend_weakrefs.c:zend_string_hash_val Unexecuted instantiation: zend.c:zend_string_hash_val Unexecuted instantiation: internal_functions_cli.c:zend_string_hash_val Unexecuted instantiation: fuzzer-parser.c:zend_string_hash_val Unexecuted instantiation: fuzzer-sapi.c:zend_string_hash_val Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_hash_val Unexecuted instantiation: fuzzer-exif.c:zend_string_hash_val Unexecuted instantiation: fuzzer-unserialize.c:zend_string_hash_val Unexecuted instantiation: fuzzer-function-jit.c:zend_string_hash_val Unexecuted instantiation: fuzzer-json.c:zend_string_hash_val Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_hash_val Unexecuted instantiation: fuzzer-execute.c:zend_string_hash_val |
134 | | |
135 | | static zend_always_inline void zend_string_forget_hash_val(zend_string *s) |
136 | 6.41M | { |
137 | 6.41M | ZSTR_H(s) = 0; |
138 | 6.41M | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); |
139 | 6.41M | } 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 | 136 | 296 | { | 137 | 296 | ZSTR_H(s) = 0; | 138 | 296 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 296 | } |
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 | 136 | 1.71k | { | 137 | 1.71k | ZSTR_H(s) = 0; | 138 | 1.71k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 1.71k | } |
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 | 136 | 277 | { | 137 | 277 | ZSTR_H(s) = 0; | 138 | 277 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 277 | } |
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 | 136 | 77 | { | 137 | 77 | ZSTR_H(s) = 0; | 138 | 77 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 77 | } |
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 | 136 | 3.68k | { | 137 | 3.68k | ZSTR_H(s) = 0; | 138 | 3.68k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 3.68k | } |
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 | 136 | 146 | { | 137 | 146 | ZSTR_H(s) = 0; | 138 | 146 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 146 | } |
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 | 136 | 1.04k | { | 137 | 1.04k | ZSTR_H(s) = 0; | 138 | 1.04k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 1.04k | } |
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 | 136 | 862 | { | 137 | 862 | ZSTR_H(s) = 0; | 138 | 862 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 862 | } |
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 | 136 | 24 | { | 137 | 24 | ZSTR_H(s) = 0; | 138 | 24 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 24 | } |
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: 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 | 136 | 3.90k | { | 137 | 3.90k | ZSTR_H(s) = 0; | 138 | 3.90k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 3.90k | } |
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 | 136 | 220 | { | 137 | 220 | ZSTR_H(s) = 0; | 138 | 220 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 220 | } |
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 | 136 | 1.50k | { | 137 | 1.50k | ZSTR_H(s) = 0; | 138 | 1.50k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 1.50k | } |
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 | 136 | 169k | { | 137 | 169k | ZSTR_H(s) = 0; | 138 | 169k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 169k | } |
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 | 136 | 1.16M | { | 137 | 1.16M | ZSTR_H(s) = 0; | 138 | 1.16M | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 1.16M | } |
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 | 136 | 684k | { | 137 | 684k | ZSTR_H(s) = 0; | 138 | 684k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 684k | } |
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 | 136 | 4.38M | { | 137 | 4.38M | ZSTR_H(s) = 0; | 138 | 4.38M | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 4.38M | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-parser.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-sapi.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-exif.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-unserialize.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-function-jit.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-json.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-execute.c:zend_string_forget_hash_val |
140 | | |
141 | | static zend_always_inline uint32_t zend_string_refcount(const zend_string *s) |
142 | 0 | { |
143 | 0 | if (!ZSTR_IS_INTERNED(s)) { |
144 | 0 | return GC_REFCOUNT(s); |
145 | 0 | } |
146 | 0 | return 1; |
147 | 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: 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_builtin_functions.c:zend_string_refcount Unexecuted instantiation: zend_call_stack.c:zend_string_refcount Unexecuted instantiation: zend_closures.c:zend_string_refcount Unexecuted instantiation: zend_compile.c:zend_string_refcount Unexecuted instantiation: zend_constants.c:zend_string_refcount Unexecuted instantiation: zend_cpuinfo.c:zend_string_refcount Unexecuted instantiation: zend_default_classes.c:zend_string_refcount Unexecuted instantiation: zend_dtrace.c:zend_string_refcount Unexecuted instantiation: zend_enum.c:zend_string_refcount Unexecuted instantiation: zend_exceptions.c:zend_string_refcount Unexecuted instantiation: zend_execute_API.c:zend_string_refcount Unexecuted instantiation: zend_execute.c:zend_string_refcount Unexecuted instantiation: zend_extensions.c:zend_string_refcount Unexecuted instantiation: zend_fibers.c:zend_string_refcount Unexecuted instantiation: zend_float.c:zend_string_refcount Unexecuted instantiation: zend_gc.c:zend_string_refcount Unexecuted instantiation: zend_gdb.c:zend_string_refcount Unexecuted instantiation: zend_generators.c:zend_string_refcount Unexecuted instantiation: zend_hash.c:zend_string_refcount Unexecuted instantiation: zend_highlight.c:zend_string_refcount Unexecuted instantiation: zend_hrtime.c:zend_string_refcount Unexecuted instantiation: zend_inheritance.c:zend_string_refcount Unexecuted instantiation: zend_ini_parser.c:zend_string_refcount Unexecuted instantiation: zend_ini_scanner.c:zend_string_refcount Unexecuted instantiation: zend_ini.c:zend_string_refcount Unexecuted instantiation: zend_interfaces.c:zend_string_refcount Unexecuted instantiation: zend_iterators.c:zend_string_refcount Unexecuted instantiation: zend_language_parser.c:zend_string_refcount Unexecuted instantiation: zend_language_scanner.c:zend_string_refcount Unexecuted instantiation: zend_lazy_objects.c:zend_string_refcount Unexecuted instantiation: zend_list.c:zend_string_refcount Unexecuted instantiation: zend_llist.c:zend_string_refcount Unexecuted instantiation: zend_multibyte.c:zend_string_refcount Unexecuted instantiation: zend_object_handlers.c:zend_string_refcount Unexecuted instantiation: zend_objects_API.c:zend_string_refcount Unexecuted instantiation: zend_objects.c:zend_string_refcount Unexecuted instantiation: zend_observer.c:zend_string_refcount Unexecuted instantiation: zend_opcode.c:zend_string_refcount Unexecuted instantiation: zend_operators.c:zend_string_refcount Unexecuted instantiation: zend_property_hooks.c:zend_string_refcount Unexecuted instantiation: zend_ptr_stack.c:zend_string_refcount Unexecuted instantiation: zend_signal.c:zend_string_refcount Unexecuted instantiation: zend_smart_str.c:zend_string_refcount Unexecuted instantiation: zend_sort.c:zend_string_refcount Unexecuted instantiation: zend_stack.c:zend_string_refcount Unexecuted instantiation: zend_stream.c:zend_string_refcount Unexecuted instantiation: zend_string.c:zend_string_refcount Unexecuted instantiation: zend_strtod.c:zend_string_refcount Unexecuted instantiation: zend_system_id.c:zend_string_refcount Unexecuted instantiation: zend_variables.c:zend_string_refcount Unexecuted instantiation: zend_virtual_cwd.c:zend_string_refcount Unexecuted instantiation: zend_vm_opcodes.c:zend_string_refcount Unexecuted instantiation: zend_weakrefs.c:zend_string_refcount Unexecuted instantiation: zend.c:zend_string_refcount Unexecuted instantiation: internal_functions_cli.c:zend_string_refcount Unexecuted instantiation: fuzzer-parser.c:zend_string_refcount Unexecuted instantiation: fuzzer-sapi.c:zend_string_refcount Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_refcount Unexecuted instantiation: fuzzer-exif.c:zend_string_refcount Unexecuted instantiation: fuzzer-unserialize.c:zend_string_refcount Unexecuted instantiation: fuzzer-function-jit.c:zend_string_refcount Unexecuted instantiation: fuzzer-json.c:zend_string_refcount Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_refcount Unexecuted instantiation: fuzzer-execute.c:zend_string_refcount |
148 | | |
149 | | static zend_always_inline uint32_t zend_string_addref(zend_string *s) |
150 | 1.70M | { |
151 | 1.70M | if (!ZSTR_IS_INTERNED(s)) { |
152 | 1.57M | return GC_ADDREF(s); |
153 | 1.57M | } |
154 | 124k | return 1; |
155 | 1.70M | } 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 | 150 | 20.2k | { | 151 | 20.2k | if (!ZSTR_IS_INTERNED(s)) { | 152 | 20.2k | return GC_ADDREF(s); | 153 | 20.2k | } | 154 | 0 | return 1; | 155 | 20.2k | } |
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 | 150 | 128 | { | 151 | 128 | if (!ZSTR_IS_INTERNED(s)) { | 152 | 0 | return GC_ADDREF(s); | 153 | 0 | } | 154 | 128 | return 1; | 155 | 128 | } |
Unexecuted instantiation: ir_cfg.c:zend_string_addref Unexecuted instantiation: ir_check.c:zend_string_addref Unexecuted instantiation: ir_dump.c:zend_string_addref Unexecuted instantiation: ir_emit.c:zend_string_addref Unexecuted instantiation: ir_gcm.c:zend_string_addref Unexecuted instantiation: ir_gdb.c:zend_string_addref Unexecuted instantiation: ir_patch.c:zend_string_addref Unexecuted instantiation: ir_perf.c:zend_string_addref Unexecuted instantiation: ir_ra.c:zend_string_addref Unexecuted instantiation: ir_save.c:zend_string_addref Unexecuted instantiation: ir_sccp.c:zend_string_addref Unexecuted instantiation: ir_strtab.c:zend_string_addref Unexecuted instantiation: ir.c:zend_string_addref Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_addref Unexecuted instantiation: zend_jit.c:zend_string_addref Unexecuted instantiation: csprng.c:zend_string_addref Unexecuted instantiation: engine_mt19937.c:zend_string_addref Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_addref Unexecuted instantiation: engine_secure.c:zend_string_addref Unexecuted instantiation: engine_user.c:zend_string_addref Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_addref Unexecuted instantiation: gammasection.c:zend_string_addref Unexecuted instantiation: random.c:zend_string_addref Unexecuted instantiation: randomizer.c:zend_string_addref Unexecuted instantiation: zend_utils.c:zend_string_addref php_reflection.c:zend_string_addref Line | Count | Source | 150 | 28 | { | 151 | 28 | if (!ZSTR_IS_INTERNED(s)) { | 152 | 0 | return GC_ADDREF(s); | 153 | 0 | } | 154 | 28 | return 1; | 155 | 28 | } |
Unexecuted instantiation: php_spl.c:zend_string_addref Unexecuted instantiation: spl_array.c:zend_string_addref Unexecuted instantiation: spl_directory.c:zend_string_addref Unexecuted instantiation: spl_dllist.c:zend_string_addref Unexecuted instantiation: spl_exceptions.c:zend_string_addref Unexecuted instantiation: spl_fixedarray.c:zend_string_addref Unexecuted instantiation: spl_functions.c:zend_string_addref Unexecuted instantiation: spl_heap.c:zend_string_addref Unexecuted instantiation: spl_iterators.c:zend_string_addref Unexecuted instantiation: spl_observer.c:zend_string_addref array.c:zend_string_addref Line | Count | Source | 150 | 1 | { | 151 | 1 | if (!ZSTR_IS_INTERNED(s)) { | 152 | 1 | return GC_ADDREF(s); | 153 | 1 | } | 154 | 0 | return 1; | 155 | 1 | } |
Unexecuted instantiation: assert.c:zend_string_addref Unexecuted instantiation: base64.c:zend_string_addref basic_functions.c:zend_string_addref Line | Count | Source | 150 | 5 | { | 151 | 5 | if (!ZSTR_IS_INTERNED(s)) { | 152 | 0 | return GC_ADDREF(s); | 153 | 0 | } | 154 | 5 | return 1; | 155 | 5 | } |
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 | 150 | 57.0k | { | 151 | 57.0k | if (!ZSTR_IS_INTERNED(s)) { | 152 | 2.79k | return GC_ADDREF(s); | 153 | 2.79k | } | 154 | 54.2k | return 1; | 155 | 57.0k | } |
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: 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 | 150 | 7.42k | { | 151 | 7.42k | if (!ZSTR_IS_INTERNED(s)) { | 152 | 4.72k | return GC_ADDREF(s); | 153 | 4.72k | } | 154 | 2.69k | return 1; | 155 | 7.42k | } |
Unexecuted instantiation: zend_ast.c:zend_string_addref Unexecuted instantiation: zend_attributes.c:zend_string_addref 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 | 150 | 13.0k | { | 151 | 13.0k | if (!ZSTR_IS_INTERNED(s)) { | 152 | 615 | return GC_ADDREF(s); | 153 | 615 | } | 154 | 12.4k | return 1; | 155 | 13.0k | } |
zend_compile.c:zend_string_addref Line | Count | Source | 150 | 21.4k | { | 151 | 21.4k | if (!ZSTR_IS_INTERNED(s)) { | 152 | 12.2k | return GC_ADDREF(s); | 153 | 12.2k | } | 154 | 9.14k | return 1; | 155 | 21.4k | } |
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 | 150 | 45 | { | 151 | 45 | if (!ZSTR_IS_INTERNED(s)) { | 152 | 45 | return GC_ADDREF(s); | 153 | 45 | } | 154 | 0 | return 1; | 155 | 45 | } |
zend_execute.c:zend_string_addref Line | Count | Source | 150 | 10.4k | { | 151 | 10.4k | if (!ZSTR_IS_INTERNED(s)) { | 152 | 7.49k | return GC_ADDREF(s); | 153 | 7.49k | } | 154 | 2.98k | return 1; | 155 | 10.4k | } |
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 | 150 | 1.52M | { | 151 | 1.52M | if (!ZSTR_IS_INTERNED(s)) { | 152 | 1.52M | return GC_ADDREF(s); | 153 | 1.52M | } | 154 | 4.10k | return 1; | 155 | 1.52M | } |
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 | 150 | 43.0k | { | 151 | 43.0k | if (!ZSTR_IS_INTERNED(s)) { | 152 | 4.49k | return GC_ADDREF(s); | 153 | 4.49k | } | 154 | 38.5k | return 1; | 155 | 43.0k | } |
Unexecuted instantiation: zend_ini_parser.c:zend_string_addref Unexecuted instantiation: zend_ini_scanner.c:zend_string_addref Unexecuted instantiation: zend_ini.c:zend_string_addref Unexecuted instantiation: zend_interfaces.c:zend_string_addref Unexecuted instantiation: zend_iterators.c:zend_string_addref Unexecuted instantiation: zend_language_parser.c:zend_string_addref Unexecuted instantiation: zend_language_scanner.c:zend_string_addref Unexecuted instantiation: zend_lazy_objects.c:zend_string_addref Unexecuted instantiation: zend_list.c:zend_string_addref Unexecuted instantiation: zend_llist.c:zend_string_addref Unexecuted instantiation: zend_multibyte.c:zend_string_addref zend_object_handlers.c:zend_string_addref Line | Count | Source | 150 | 48 | { | 151 | 48 | if (!ZSTR_IS_INTERNED(s)) { | 152 | 48 | return GC_ADDREF(s); | 153 | 48 | } | 154 | 0 | return 1; | 155 | 48 | } |
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 | 150 | 2.16k | { | 151 | 2.16k | if (!ZSTR_IS_INTERNED(s)) { | 152 | 1.64k | return GC_ADDREF(s); | 153 | 1.64k | } | 154 | 521 | return 1; | 155 | 2.16k | } |
Unexecuted instantiation: zend_property_hooks.c:zend_string_addref Unexecuted instantiation: zend_ptr_stack.c:zend_string_addref Unexecuted instantiation: zend_signal.c:zend_string_addref Unexecuted instantiation: zend_smart_str.c:zend_string_addref Unexecuted instantiation: zend_sort.c:zend_string_addref Unexecuted instantiation: zend_stack.c:zend_string_addref Unexecuted instantiation: zend_stream.c:zend_string_addref Unexecuted instantiation: zend_string.c:zend_string_addref Unexecuted instantiation: zend_strtod.c:zend_string_addref Unexecuted instantiation: zend_system_id.c:zend_string_addref Unexecuted instantiation: zend_variables.c:zend_string_addref Unexecuted instantiation: zend_virtual_cwd.c:zend_string_addref Unexecuted instantiation: zend_vm_opcodes.c:zend_string_addref Unexecuted instantiation: zend_weakrefs.c:zend_string_addref Unexecuted instantiation: zend.c:zend_string_addref Unexecuted instantiation: internal_functions_cli.c:zend_string_addref Unexecuted instantiation: fuzzer-parser.c:zend_string_addref Unexecuted instantiation: fuzzer-sapi.c:zend_string_addref Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_addref Unexecuted instantiation: fuzzer-exif.c:zend_string_addref Unexecuted instantiation: fuzzer-unserialize.c:zend_string_addref Unexecuted instantiation: fuzzer-function-jit.c:zend_string_addref Unexecuted instantiation: fuzzer-json.c:zend_string_addref Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_addref Unexecuted instantiation: fuzzer-execute.c:zend_string_addref |
156 | | |
157 | | static zend_always_inline uint32_t zend_string_delref(zend_string *s) |
158 | 429 | { |
159 | 429 | if (!ZSTR_IS_INTERNED(s)) { |
160 | 322 | return GC_DELREF(s); |
161 | 322 | } |
162 | 107 | return 1; |
163 | 429 | } 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: 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_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 | 158 | 107 | { | 159 | 107 | if (!ZSTR_IS_INTERNED(s)) { | 160 | 0 | return GC_DELREF(s); | 161 | 0 | } | 162 | 107 | return 1; | 163 | 107 | } |
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 | 158 | 322 | { | 159 | 322 | if (!ZSTR_IS_INTERNED(s)) { | 160 | 322 | return GC_DELREF(s); | 161 | 322 | } | 162 | 0 | return 1; | 163 | 322 | } |
Unexecuted instantiation: zend_strtod.c:zend_string_delref Unexecuted instantiation: zend_system_id.c:zend_string_delref Unexecuted instantiation: zend_variables.c:zend_string_delref Unexecuted instantiation: zend_virtual_cwd.c:zend_string_delref Unexecuted instantiation: zend_vm_opcodes.c:zend_string_delref Unexecuted instantiation: zend_weakrefs.c:zend_string_delref Unexecuted instantiation: zend.c:zend_string_delref Unexecuted instantiation: internal_functions_cli.c:zend_string_delref Unexecuted instantiation: fuzzer-parser.c:zend_string_delref Unexecuted instantiation: fuzzer-sapi.c:zend_string_delref Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_delref Unexecuted instantiation: fuzzer-exif.c:zend_string_delref Unexecuted instantiation: fuzzer-unserialize.c:zend_string_delref Unexecuted instantiation: fuzzer-function-jit.c:zend_string_delref Unexecuted instantiation: fuzzer-json.c:zend_string_delref Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_delref Unexecuted instantiation: fuzzer-execute.c:zend_string_delref |
164 | | |
165 | | static zend_always_inline zend_string *zend_string_alloc(size_t len, bool persistent) |
166 | 41.7M | { |
167 | 41.7M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); |
168 | | |
169 | 41.7M | GC_SET_REFCOUNT(ret, 1); |
170 | 41.7M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); |
171 | 41.7M | ZSTR_H(ret) = 0; |
172 | 41.7M | ZSTR_LEN(ret) = len; |
173 | 41.7M | return ret; |
174 | 41.7M | } php_date.c:zend_string_alloc Line | Count | Source | 166 | 1.16k | { | 167 | 1.16k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 1.16k | GC_SET_REFCOUNT(ret, 1); | 170 | 1.16k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 1.16k | ZSTR_H(ret) = 0; | 172 | 1.16k | ZSTR_LEN(ret) = len; | 173 | 1.16k | return ret; | 174 | 1.16k | } |
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 | 166 | 651 | { | 167 | 651 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 651 | GC_SET_REFCOUNT(ret, 1); | 170 | 651 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 651 | ZSTR_H(ret) = 0; | 172 | 651 | ZSTR_LEN(ret) = len; | 173 | 651 | return ret; | 174 | 651 | } |
Unexecuted instantiation: exif.c:zend_string_alloc Unexecuted instantiation: hash_adler32.c:zend_string_alloc Unexecuted instantiation: hash_crc32.c:zend_string_alloc Unexecuted instantiation: hash_fnv.c:zend_string_alloc Unexecuted instantiation: hash_gost.c:zend_string_alloc Unexecuted instantiation: hash_haval.c:zend_string_alloc Unexecuted instantiation: hash_joaat.c:zend_string_alloc Unexecuted instantiation: hash_md.c:zend_string_alloc Unexecuted instantiation: hash_murmur.c:zend_string_alloc Unexecuted instantiation: hash_ripemd.c:zend_string_alloc Unexecuted instantiation: hash_sha_ni.c:zend_string_alloc Unexecuted instantiation: hash_sha_sse2.c:zend_string_alloc Unexecuted instantiation: hash_sha.c:zend_string_alloc Unexecuted instantiation: hash_sha3.c:zend_string_alloc Unexecuted instantiation: hash_snefru.c:zend_string_alloc Unexecuted instantiation: hash_tiger.c:zend_string_alloc Unexecuted instantiation: hash_whirlpool.c:zend_string_alloc Unexecuted instantiation: hash_xxhash.c:zend_string_alloc Line | Count | Source | 166 | 1.86k | { | 167 | 1.86k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 1.86k | GC_SET_REFCOUNT(ret, 1); | 170 | 1.86k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 1.86k | ZSTR_H(ret) = 0; | 172 | 1.86k | ZSTR_LEN(ret) = len; | 173 | 1.86k | return ret; | 174 | 1.86k | } |
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 | 166 | 38.2k | { | 167 | 38.2k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 38.2k | GC_SET_REFCOUNT(ret, 1); | 170 | 38.2k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 38.2k | ZSTR_H(ret) = 0; | 172 | 38.2k | ZSTR_LEN(ret) = len; | 173 | 38.2k | return ret; | 174 | 38.2k | } |
Line | Count | Source | 166 | 227 | { | 167 | 227 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 227 | GC_SET_REFCOUNT(ret, 1); | 170 | 227 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 227 | ZSTR_H(ret) = 0; | 172 | 227 | ZSTR_LEN(ret) = len; | 173 | 227 | return ret; | 174 | 227 | } |
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 | 166 | 1.34M | { | 167 | 1.34M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 1.34M | GC_SET_REFCOUNT(ret, 1); | 170 | 1.34M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 1.34M | ZSTR_H(ret) = 0; | 172 | 1.34M | ZSTR_LEN(ret) = len; | 173 | 1.34M | return ret; | 174 | 1.34M | } |
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 | 166 | 64 | { | 167 | 64 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 64 | GC_SET_REFCOUNT(ret, 1); | 170 | 64 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 64 | ZSTR_H(ret) = 0; | 172 | 64 | ZSTR_LEN(ret) = len; | 173 | 64 | return ret; | 174 | 64 | } |
Unexecuted instantiation: randomizer.c:zend_string_alloc Unexecuted instantiation: zend_utils.c:zend_string_alloc php_reflection.c:zend_string_alloc Line | Count | Source | 166 | 339 | { | 167 | 339 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 339 | GC_SET_REFCOUNT(ret, 1); | 170 | 339 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 339 | ZSTR_H(ret) = 0; | 172 | 339 | ZSTR_LEN(ret) = len; | 173 | 339 | return ret; | 174 | 339 | } |
Unexecuted instantiation: php_spl.c:zend_string_alloc Unexecuted instantiation: spl_array.c:zend_string_alloc spl_directory.c:zend_string_alloc Line | Count | Source | 166 | 6 | { | 167 | 6 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 6 | GC_SET_REFCOUNT(ret, 1); | 170 | 6 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 6 | ZSTR_H(ret) = 0; | 172 | 6 | ZSTR_LEN(ret) = len; | 173 | 6 | return ret; | 174 | 6 | } |
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 | 166 | 16 | { | 167 | 16 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 16 | GC_SET_REFCOUNT(ret, 1); | 170 | 16 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 16 | ZSTR_H(ret) = 0; | 172 | 16 | ZSTR_LEN(ret) = len; | 173 | 16 | return ret; | 174 | 16 | } |
Unexecuted instantiation: spl_functions.c:zend_string_alloc Unexecuted instantiation: spl_heap.c:zend_string_alloc spl_iterators.c:zend_string_alloc Line | Count | Source | 166 | 2.98k | { | 167 | 2.98k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 2.98k | GC_SET_REFCOUNT(ret, 1); | 170 | 2.98k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 2.98k | ZSTR_H(ret) = 0; | 172 | 2.98k | ZSTR_LEN(ret) = len; | 173 | 2.98k | return ret; | 174 | 2.98k | } |
spl_observer.c:zend_string_alloc Line | Count | Source | 166 | 48 | { | 167 | 48 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 48 | GC_SET_REFCOUNT(ret, 1); | 170 | 48 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 48 | ZSTR_H(ret) = 0; | 172 | 48 | ZSTR_LEN(ret) = len; | 173 | 48 | return ret; | 174 | 48 | } |
Unexecuted instantiation: array.c:zend_string_alloc assert.c:zend_string_alloc Line | Count | Source | 166 | 43 | { | 167 | 43 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 43 | GC_SET_REFCOUNT(ret, 1); | 170 | 43 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 43 | ZSTR_H(ret) = 0; | 172 | 43 | ZSTR_LEN(ret) = len; | 173 | 43 | return ret; | 174 | 43 | } |
Unexecuted instantiation: base64.c:zend_string_alloc basic_functions.c:zend_string_alloc Line | Count | Source | 166 | 118 | { | 167 | 118 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 118 | GC_SET_REFCOUNT(ret, 1); | 170 | 118 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 118 | ZSTR_H(ret) = 0; | 172 | 118 | ZSTR_LEN(ret) = len; | 173 | 118 | return ret; | 174 | 118 | } |
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 | 166 | 21 | { | 167 | 21 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 21 | GC_SET_REFCOUNT(ret, 1); | 170 | 21 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 21 | ZSTR_H(ret) = 0; | 172 | 21 | ZSTR_LEN(ret) = len; | 173 | 21 | return ret; | 174 | 21 | } |
Unexecuted instantiation: dl.c:zend_string_alloc Unexecuted instantiation: dns.c:zend_string_alloc Unexecuted instantiation: exec.c:zend_string_alloc Line | Count | Source | 166 | 6.18k | { | 167 | 6.18k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 6.18k | GC_SET_REFCOUNT(ret, 1); | 170 | 6.18k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 6.18k | ZSTR_H(ret) = 0; | 172 | 6.18k | ZSTR_LEN(ret) = len; | 173 | 6.18k | return ret; | 174 | 6.18k | } |
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 | 166 | 4.02k | { | 167 | 4.02k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 4.02k | GC_SET_REFCOUNT(ret, 1); | 170 | 4.02k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 4.02k | ZSTR_H(ret) = 0; | 172 | 4.02k | ZSTR_LEN(ret) = len; | 173 | 4.02k | return ret; | 174 | 4.02k | } |
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 | 166 | 6 | { | 167 | 6 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 6 | GC_SET_REFCOUNT(ret, 1); | 170 | 6 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 6 | ZSTR_H(ret) = 0; | 172 | 6 | ZSTR_LEN(ret) = len; | 173 | 6 | return ret; | 174 | 6 | } |
Unexecuted instantiation: hrtime.c:zend_string_alloc Line | Count | Source | 166 | 1.57k | { | 167 | 1.57k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 1.57k | GC_SET_REFCOUNT(ret, 1); | 170 | 1.57k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 1.57k | ZSTR_H(ret) = 0; | 172 | 1.57k | ZSTR_LEN(ret) = len; | 173 | 1.57k | return ret; | 174 | 1.57k | } |
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 | 166 | 72 | { | 167 | 72 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 72 | GC_SET_REFCOUNT(ret, 1); | 170 | 72 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 72 | ZSTR_H(ret) = 0; | 172 | 72 | ZSTR_LEN(ret) = len; | 173 | 72 | return ret; | 174 | 72 | } |
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 | 166 | 17 | { | 167 | 17 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 17 | GC_SET_REFCOUNT(ret, 1); | 170 | 17 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 17 | ZSTR_H(ret) = 0; | 172 | 17 | ZSTR_LEN(ret) = len; | 173 | 17 | return ret; | 174 | 17 | } |
Line | Count | Source | 166 | 379 | { | 167 | 379 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 379 | GC_SET_REFCOUNT(ret, 1); | 170 | 379 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 379 | ZSTR_H(ret) = 0; | 172 | 379 | ZSTR_LEN(ret) = len; | 173 | 379 | return ret; | 174 | 379 | } |
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 | 166 | 3.54k | { | 167 | 3.54k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 3.54k | GC_SET_REFCOUNT(ret, 1); | 170 | 3.54k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 3.54k | ZSTR_H(ret) = 0; | 172 | 3.54k | ZSTR_LEN(ret) = len; | 173 | 3.54k | return ret; | 174 | 3.54k | } |
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 | 166 | 80 | { | 167 | 80 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 80 | GC_SET_REFCOUNT(ret, 1); | 170 | 80 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 80 | ZSTR_H(ret) = 0; | 172 | 80 | ZSTR_LEN(ret) = len; | 173 | 80 | return ret; | 174 | 80 | } |
Unexecuted instantiation: url.c:zend_string_alloc user_filters.c:zend_string_alloc Line | Count | Source | 166 | 202 | { | 167 | 202 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 202 | GC_SET_REFCOUNT(ret, 1); | 170 | 202 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 202 | ZSTR_H(ret) = 0; | 172 | 202 | ZSTR_LEN(ret) = len; | 173 | 202 | return ret; | 174 | 202 | } |
Unexecuted instantiation: uuencode.c:zend_string_alloc var_unserializer.c:zend_string_alloc Line | Count | Source | 166 | 92.1k | { | 167 | 92.1k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 92.1k | GC_SET_REFCOUNT(ret, 1); | 170 | 92.1k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 92.1k | ZSTR_H(ret) = 0; | 172 | 92.1k | ZSTR_LEN(ret) = len; | 173 | 92.1k | return ret; | 174 | 92.1k | } |
Line | Count | Source | 166 | 319 | { | 167 | 319 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 319 | GC_SET_REFCOUNT(ret, 1); | 170 | 319 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 319 | ZSTR_H(ret) = 0; | 172 | 319 | ZSTR_LEN(ret) = len; | 173 | 319 | return ret; | 174 | 319 | } |
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 | 166 | 64 | { | 167 | 64 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 64 | GC_SET_REFCOUNT(ret, 1); | 170 | 64 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 64 | ZSTR_H(ret) = 0; | 172 | 64 | ZSTR_LEN(ret) = len; | 173 | 64 | return ret; | 174 | 64 | } |
Unexecuted instantiation: php_uri_common.c:zend_string_alloc Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_alloc Unexecuted instantiation: uri_parser_whatwg.c:zend_string_alloc Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_alloc Unexecuted instantiation: explicit_bzero.c:zend_string_alloc fopen_wrappers.c:zend_string_alloc Line | Count | Source | 166 | 73.9k | { | 167 | 73.9k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 73.9k | GC_SET_REFCOUNT(ret, 1); | 170 | 73.9k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 73.9k | ZSTR_H(ret) = 0; | 172 | 73.9k | ZSTR_LEN(ret) = len; | 173 | 73.9k | return ret; | 174 | 73.9k | } |
Unexecuted instantiation: getopt.c:zend_string_alloc Line | Count | Source | 166 | 5 | { | 167 | 5 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 5 | GC_SET_REFCOUNT(ret, 1); | 170 | 5 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 5 | ZSTR_H(ret) = 0; | 172 | 5 | ZSTR_LEN(ret) = len; | 173 | 5 | return ret; | 174 | 5 | } |
Unexecuted instantiation: network.c:zend_string_alloc output.c:zend_string_alloc Line | Count | Source | 166 | 3.78k | { | 167 | 3.78k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 3.78k | GC_SET_REFCOUNT(ret, 1); | 170 | 3.78k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 3.78k | ZSTR_H(ret) = 0; | 172 | 3.78k | ZSTR_LEN(ret) = len; | 173 | 3.78k | return ret; | 174 | 3.78k | } |
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 | 166 | 208 | { | 167 | 208 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 208 | GC_SET_REFCOUNT(ret, 1); | 170 | 208 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 208 | ZSTR_H(ret) = 0; | 172 | 208 | ZSTR_LEN(ret) = len; | 173 | 208 | return ret; | 174 | 208 | } |
Unexecuted instantiation: php_glob.c:zend_string_alloc Unexecuted instantiation: php_odbc_utils.c:zend_string_alloc Unexecuted instantiation: php_open_temporary_file.c:zend_string_alloc Unexecuted instantiation: php_scandir.c:zend_string_alloc Unexecuted instantiation: php_syslog.c:zend_string_alloc Unexecuted instantiation: php_ticks.c:zend_string_alloc php_variables.c:zend_string_alloc Line | Count | Source | 166 | 177k | { | 167 | 177k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 177k | GC_SET_REFCOUNT(ret, 1); | 170 | 177k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 177k | ZSTR_H(ret) = 0; | 172 | 177k | ZSTR_LEN(ret) = len; | 173 | 177k | return ret; | 174 | 177k | } |
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 | 166 | 32 | { | 167 | 32 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 32 | GC_SET_REFCOUNT(ret, 1); | 170 | 32 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 32 | ZSTR_H(ret) = 0; | 172 | 32 | ZSTR_LEN(ret) = len; | 173 | 32 | return ret; | 174 | 32 | } |
Unexecuted instantiation: snprintf.c:zend_string_alloc Unexecuted instantiation: spprintf.c:zend_string_alloc Unexecuted instantiation: strlcat.c:zend_string_alloc Unexecuted instantiation: strlcpy.c:zend_string_alloc Unexecuted instantiation: cast.c:zend_string_alloc Unexecuted instantiation: filter.c:zend_string_alloc Unexecuted instantiation: glob_wrapper.c:zend_string_alloc memory.c:zend_string_alloc Line | Count | Source | 166 | 6.12k | { | 167 | 6.12k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 6.12k | GC_SET_REFCOUNT(ret, 1); | 170 | 6.12k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 6.12k | ZSTR_H(ret) = 0; | 172 | 6.12k | ZSTR_LEN(ret) = len; | 173 | 6.12k | return ret; | 174 | 6.12k | } |
Unexecuted instantiation: mmap.c:zend_string_alloc plain_wrapper.c:zend_string_alloc Line | Count | Source | 166 | 64 | { | 167 | 64 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 64 | GC_SET_REFCOUNT(ret, 1); | 170 | 64 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 64 | ZSTR_H(ret) = 0; | 172 | 64 | ZSTR_LEN(ret) = len; | 173 | 64 | return ret; | 174 | 64 | } |
streams.c:zend_string_alloc Line | Count | Source | 166 | 6 | { | 167 | 6 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 6 | GC_SET_REFCOUNT(ret, 1); | 170 | 6 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 6 | ZSTR_H(ret) = 0; | 172 | 6 | ZSTR_LEN(ret) = len; | 173 | 6 | return ret; | 174 | 6 | } |
Unexecuted instantiation: transports.c:zend_string_alloc userspace.c:zend_string_alloc Line | Count | Source | 166 | 8.86k | { | 167 | 8.86k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 8.86k | GC_SET_REFCOUNT(ret, 1); | 170 | 8.86k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 8.86k | ZSTR_H(ret) = 0; | 172 | 8.86k | ZSTR_LEN(ret) = len; | 173 | 8.86k | return ret; | 174 | 8.86k | } |
Unexecuted instantiation: xp_socket.c:zend_string_alloc block_pass.c:zend_string_alloc Line | Count | Source | 166 | 2.41k | { | 167 | 2.41k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 2.41k | GC_SET_REFCOUNT(ret, 1); | 170 | 2.41k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 2.41k | ZSTR_H(ret) = 0; | 172 | 2.41k | ZSTR_LEN(ret) = len; | 173 | 2.41k | return ret; | 174 | 2.41k | } |
compact_literals.c:zend_string_alloc Line | Count | Source | 166 | 8.87k | { | 167 | 8.87k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 8.87k | GC_SET_REFCOUNT(ret, 1); | 170 | 8.87k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 8.87k | ZSTR_H(ret) = 0; | 172 | 8.87k | ZSTR_LEN(ret) = len; | 173 | 8.87k | return ret; | 174 | 8.87k | } |
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 Line | Count | Source | 166 | 34 | { | 167 | 34 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 34 | GC_SET_REFCOUNT(ret, 1); | 170 | 34 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 34 | ZSTR_H(ret) = 0; | 172 | 34 | ZSTR_LEN(ret) = len; | 173 | 34 | return ret; | 174 | 34 | } |
Unexecuted instantiation: scdf.c:zend_string_alloc Unexecuted instantiation: zend_call_graph.c:zend_string_alloc Unexecuted instantiation: zend_cfg.c:zend_string_alloc Unexecuted instantiation: zend_dfg.c:zend_string_alloc Unexecuted instantiation: zend_dump.c:zend_string_alloc Unexecuted instantiation: zend_func_info.c:zend_string_alloc Unexecuted instantiation: zend_inference.c:zend_string_alloc zend_optimizer.c:zend_string_alloc Line | Count | Source | 166 | 4 | { | 167 | 4 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 4 | GC_SET_REFCOUNT(ret, 1); | 170 | 4 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 4 | ZSTR_H(ret) = 0; | 172 | 4 | ZSTR_LEN(ret) = len; | 173 | 4 | return ret; | 174 | 4 | } |
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 | 166 | 458k | { | 167 | 458k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 458k | GC_SET_REFCOUNT(ret, 1); | 170 | 458k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 458k | ZSTR_H(ret) = 0; | 172 | 458k | ZSTR_LEN(ret) = len; | 173 | 458k | return ret; | 174 | 458k | } |
Unexecuted instantiation: zend_ast.c:zend_string_alloc zend_attributes.c:zend_string_alloc Line | Count | Source | 166 | 41 | { | 167 | 41 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 41 | GC_SET_REFCOUNT(ret, 1); | 170 | 41 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 41 | ZSTR_H(ret) = 0; | 172 | 41 | ZSTR_LEN(ret) = len; | 173 | 41 | return ret; | 174 | 41 | } |
zend_builtin_functions.c:zend_string_alloc Line | Count | Source | 166 | 355 | { | 167 | 355 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 355 | GC_SET_REFCOUNT(ret, 1); | 170 | 355 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 355 | ZSTR_H(ret) = 0; | 172 | 355 | ZSTR_LEN(ret) = len; | 173 | 355 | return ret; | 174 | 355 | } |
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 | 166 | 9.17M | { | 167 | 9.17M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 9.17M | GC_SET_REFCOUNT(ret, 1); | 170 | 9.17M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 9.17M | ZSTR_H(ret) = 0; | 172 | 9.17M | ZSTR_LEN(ret) = len; | 173 | 9.17M | return ret; | 174 | 9.17M | } |
zend_constants.c:zend_string_alloc Line | Count | Source | 166 | 520 | { | 167 | 520 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 520 | GC_SET_REFCOUNT(ret, 1); | 170 | 520 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 520 | ZSTR_H(ret) = 0; | 172 | 520 | ZSTR_LEN(ret) = len; | 173 | 520 | return ret; | 174 | 520 | } |
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 | 166 | 6.58k | { | 167 | 6.58k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 6.58k | GC_SET_REFCOUNT(ret, 1); | 170 | 6.58k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 6.58k | ZSTR_H(ret) = 0; | 172 | 6.58k | ZSTR_LEN(ret) = len; | 173 | 6.58k | return ret; | 174 | 6.58k | } |
zend_exceptions.c:zend_string_alloc Line | Count | Source | 166 | 1.20M | { | 167 | 1.20M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 1.20M | GC_SET_REFCOUNT(ret, 1); | 170 | 1.20M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 1.20M | ZSTR_H(ret) = 0; | 172 | 1.20M | ZSTR_LEN(ret) = len; | 173 | 1.20M | return ret; | 174 | 1.20M | } |
zend_execute_API.c:zend_string_alloc Line | Count | Source | 166 | 128 | { | 167 | 128 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 128 | GC_SET_REFCOUNT(ret, 1); | 170 | 128 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 128 | ZSTR_H(ret) = 0; | 172 | 128 | ZSTR_LEN(ret) = len; | 173 | 128 | return ret; | 174 | 128 | } |
zend_execute.c:zend_string_alloc Line | Count | Source | 166 | 573k | { | 167 | 573k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 573k | GC_SET_REFCOUNT(ret, 1); | 170 | 573k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 573k | ZSTR_H(ret) = 0; | 172 | 573k | ZSTR_LEN(ret) = len; | 173 | 573k | return ret; | 174 | 573k | } |
Unexecuted instantiation: zend_extensions.c:zend_string_alloc Unexecuted instantiation: zend_fibers.c:zend_string_alloc Unexecuted instantiation: zend_float.c:zend_string_alloc Unexecuted instantiation: zend_gc.c:zend_string_alloc Unexecuted instantiation: zend_gdb.c:zend_string_alloc Unexecuted instantiation: zend_generators.c:zend_string_alloc zend_hash.c:zend_string_alloc Line | Count | Source | 166 | 223k | { | 167 | 223k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 223k | GC_SET_REFCOUNT(ret, 1); | 170 | 223k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 223k | ZSTR_H(ret) = 0; | 172 | 223k | ZSTR_LEN(ret) = len; | 173 | 223k | return ret; | 174 | 223k | } |
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 | 166 | 355k | { | 167 | 355k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 355k | GC_SET_REFCOUNT(ret, 1); | 170 | 355k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 355k | ZSTR_H(ret) = 0; | 172 | 355k | ZSTR_LEN(ret) = len; | 173 | 355k | return ret; | 174 | 355k | } |
zend_ini_scanner.c:zend_string_alloc Line | Count | Source | 166 | 1.56M | { | 167 | 1.56M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 1.56M | GC_SET_REFCOUNT(ret, 1); | 170 | 1.56M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 1.56M | ZSTR_H(ret) = 0; | 172 | 1.56M | ZSTR_LEN(ret) = len; | 173 | 1.56M | return ret; | 174 | 1.56M | } |
zend_ini.c:zend_string_alloc Line | Count | Source | 166 | 74.0k | { | 167 | 74.0k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 74.0k | GC_SET_REFCOUNT(ret, 1); | 170 | 74.0k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 74.0k | ZSTR_H(ret) = 0; | 172 | 74.0k | ZSTR_LEN(ret) = len; | 173 | 74.0k | return ret; | 174 | 74.0k | } |
zend_interfaces.c:zend_string_alloc Line | Count | Source | 166 | 213k | { | 167 | 213k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 213k | GC_SET_REFCOUNT(ret, 1); | 170 | 213k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 213k | ZSTR_H(ret) = 0; | 172 | 213k | ZSTR_LEN(ret) = len; | 173 | 213k | return ret; | 174 | 213k | } |
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 | 166 | 6.86M | { | 167 | 6.86M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 6.86M | GC_SET_REFCOUNT(ret, 1); | 170 | 6.86M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 6.86M | ZSTR_H(ret) = 0; | 172 | 6.86M | ZSTR_LEN(ret) = len; | 173 | 6.86M | return ret; | 174 | 6.86M | } |
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 | 166 | 712 | { | 167 | 712 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 712 | GC_SET_REFCOUNT(ret, 1); | 170 | 712 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 712 | ZSTR_H(ret) = 0; | 172 | 712 | ZSTR_LEN(ret) = len; | 173 | 712 | return ret; | 174 | 712 | } |
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 | 166 | 7.05M | { | 167 | 7.05M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 7.05M | GC_SET_REFCOUNT(ret, 1); | 170 | 7.05M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 7.05M | ZSTR_H(ret) = 0; | 172 | 7.05M | ZSTR_LEN(ret) = len; | 173 | 7.05M | return ret; | 174 | 7.05M | } |
zend_property_hooks.c:zend_string_alloc Line | Count | Source | 166 | 88 | { | 167 | 88 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 88 | GC_SET_REFCOUNT(ret, 1); | 170 | 88 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 88 | ZSTR_H(ret) = 0; | 172 | 88 | ZSTR_LEN(ret) = len; | 173 | 88 | return ret; | 174 | 88 | } |
Unexecuted instantiation: zend_ptr_stack.c:zend_string_alloc Unexecuted instantiation: zend_signal.c:zend_string_alloc zend_smart_str.c:zend_string_alloc Line | Count | Source | 166 | 4.43M | { | 167 | 4.43M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 4.43M | GC_SET_REFCOUNT(ret, 1); | 170 | 4.43M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 4.43M | ZSTR_H(ret) = 0; | 172 | 4.43M | ZSTR_LEN(ret) = len; | 173 | 4.43M | return ret; | 174 | 4.43M | } |
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 | 166 | 174k | { | 167 | 174k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 174k | GC_SET_REFCOUNT(ret, 1); | 170 | 174k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 174k | ZSTR_H(ret) = 0; | 172 | 174k | ZSTR_LEN(ret) = len; | 173 | 174k | return ret; | 174 | 174k | } |
zend_string.c:zend_string_alloc Line | Count | Source | 166 | 7.46M | { | 167 | 7.46M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 7.46M | GC_SET_REFCOUNT(ret, 1); | 170 | 7.46M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 7.46M | ZSTR_H(ret) = 0; | 172 | 7.46M | ZSTR_LEN(ret) = len; | 173 | 7.46M | return ret; | 174 | 7.46M | } |
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 | 166 | 143 | { | 167 | 143 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 143 | GC_SET_REFCOUNT(ret, 1); | 170 | 143 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 143 | ZSTR_H(ret) = 0; | 172 | 143 | ZSTR_LEN(ret) = len; | 173 | 143 | return ret; | 174 | 143 | } |
Unexecuted instantiation: zend_virtual_cwd.c:zend_string_alloc Unexecuted instantiation: zend_vm_opcodes.c:zend_string_alloc Unexecuted instantiation: zend_weakrefs.c:zend_string_alloc Unexecuted instantiation: zend.c:zend_string_alloc Unexecuted instantiation: internal_functions_cli.c:zend_string_alloc Unexecuted instantiation: fuzzer-parser.c:zend_string_alloc Unexecuted instantiation: fuzzer-sapi.c:zend_string_alloc fuzzer-tracing-jit.c:zend_string_alloc Line | Count | Source | 166 | 60.4k | { | 167 | 60.4k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 60.4k | GC_SET_REFCOUNT(ret, 1); | 170 | 60.4k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 60.4k | ZSTR_H(ret) = 0; | 172 | 60.4k | ZSTR_LEN(ret) = len; | 173 | 60.4k | return ret; | 174 | 60.4k | } |
Unexecuted instantiation: fuzzer-exif.c:zend_string_alloc Unexecuted instantiation: fuzzer-unserialize.c:zend_string_alloc fuzzer-function-jit.c:zend_string_alloc Line | Count | Source | 166 | 56.2k | { | 167 | 56.2k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 56.2k | GC_SET_REFCOUNT(ret, 1); | 170 | 56.2k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 56.2k | ZSTR_H(ret) = 0; | 172 | 56.2k | ZSTR_LEN(ret) = len; | 173 | 56.2k | return ret; | 174 | 56.2k | } |
Unexecuted instantiation: fuzzer-json.c:zend_string_alloc fuzzer-unserializehash.c:zend_string_alloc Line | Count | Source | 166 | 2.29k | { | 167 | 2.29k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 2.29k | GC_SET_REFCOUNT(ret, 1); | 170 | 2.29k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 2.29k | ZSTR_H(ret) = 0; | 172 | 2.29k | ZSTR_LEN(ret) = len; | 173 | 2.29k | return ret; | 174 | 2.29k | } |
Unexecuted instantiation: fuzzer-execute.c:zend_string_alloc |
175 | | |
176 | | static zend_always_inline zend_string *zend_string_safe_alloc(size_t n, size_t m, size_t l, bool persistent) |
177 | 373k | { |
178 | 373k | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); |
179 | | |
180 | 373k | GC_SET_REFCOUNT(ret, 1); |
181 | 373k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); |
182 | 373k | ZSTR_H(ret) = 0; |
183 | 373k | ZSTR_LEN(ret) = (n * m) + l; |
184 | 373k | return ret; |
185 | 373k | } Unexecuted instantiation: php_date.c:zend_string_safe_alloc Unexecuted instantiation: astro.c:zend_string_safe_alloc Unexecuted instantiation: dow.c:zend_string_safe_alloc Unexecuted instantiation: parse_date.c:zend_string_safe_alloc Unexecuted instantiation: parse_tz.c:zend_string_safe_alloc Unexecuted instantiation: parse_posix.c:zend_string_safe_alloc Unexecuted instantiation: timelib.c:zend_string_safe_alloc Unexecuted instantiation: tm2unixtime.c:zend_string_safe_alloc Unexecuted instantiation: unixtime2tm.c:zend_string_safe_alloc Unexecuted instantiation: parse_iso_intervals.c:zend_string_safe_alloc Unexecuted instantiation: interval.c:zend_string_safe_alloc php_pcre.c:zend_string_safe_alloc Line | Count | Source | 177 | 6 | { | 178 | 6 | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 179 | | | 180 | 6 | GC_SET_REFCOUNT(ret, 1); | 181 | 6 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 182 | 6 | ZSTR_H(ret) = 0; | 183 | 6 | ZSTR_LEN(ret) = (n * m) + l; | 184 | 6 | return ret; | 185 | 6 | } |
Unexecuted instantiation: exif.c:zend_string_safe_alloc Unexecuted instantiation: hash_adler32.c:zend_string_safe_alloc Unexecuted instantiation: hash_crc32.c:zend_string_safe_alloc Unexecuted instantiation: hash_fnv.c:zend_string_safe_alloc Unexecuted instantiation: hash_gost.c:zend_string_safe_alloc Unexecuted instantiation: hash_haval.c:zend_string_safe_alloc Unexecuted instantiation: hash_joaat.c:zend_string_safe_alloc Unexecuted instantiation: hash_md.c:zend_string_safe_alloc Unexecuted instantiation: hash_murmur.c:zend_string_safe_alloc Unexecuted instantiation: hash_ripemd.c:zend_string_safe_alloc Unexecuted instantiation: hash_sha_ni.c:zend_string_safe_alloc Unexecuted instantiation: hash_sha_sse2.c:zend_string_safe_alloc Unexecuted instantiation: hash_sha.c:zend_string_safe_alloc Unexecuted instantiation: hash_sha3.c:zend_string_safe_alloc Unexecuted instantiation: hash_snefru.c:zend_string_safe_alloc Unexecuted instantiation: hash_tiger.c:zend_string_safe_alloc Unexecuted instantiation: hash_whirlpool.c:zend_string_safe_alloc Unexecuted instantiation: hash_xxhash.c:zend_string_safe_alloc hash.c:zend_string_safe_alloc Line | Count | Source | 177 | 1.86k | { | 178 | 1.86k | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 179 | | | 180 | 1.86k | GC_SET_REFCOUNT(ret, 1); | 181 | 1.86k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 182 | 1.86k | ZSTR_H(ret) = 0; | 183 | 1.86k | ZSTR_LEN(ret) = (n * m) + l; | 184 | 1.86k | return ret; | 185 | 1.86k | } |
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 | 177 | 10 | { | 178 | 10 | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 179 | | | 180 | 10 | GC_SET_REFCOUNT(ret, 1); | 181 | 10 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 182 | 10 | ZSTR_H(ret) = 0; | 183 | 10 | ZSTR_LEN(ret) = (n * m) + l; | 184 | 10 | return ret; | 185 | 10 | } |
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 | 177 | 35 | { | 178 | 35 | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 179 | | | 180 | 35 | GC_SET_REFCOUNT(ret, 1); | 181 | 35 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 182 | 35 | ZSTR_H(ret) = 0; | 183 | 35 | ZSTR_LEN(ret) = (n * m) + l; | 184 | 35 | return ret; | 185 | 35 | } |
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 | 177 | 146 | { | 178 | 146 | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 179 | | | 180 | 146 | GC_SET_REFCOUNT(ret, 1); | 181 | 146 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 182 | 146 | ZSTR_H(ret) = 0; | 183 | 146 | ZSTR_LEN(ret) = (n * m) + l; | 184 | 146 | return ret; | 185 | 146 | } |
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 | 177 | 1.99k | { | 178 | 1.99k | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 179 | | | 180 | 1.99k | GC_SET_REFCOUNT(ret, 1); | 181 | 1.99k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 182 | 1.99k | ZSTR_H(ret) = 0; | 183 | 1.99k | ZSTR_LEN(ret) = (n * m) + l; | 184 | 1.99k | return ret; | 185 | 1.99k | } |
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 | 177 | 369k | { | 178 | 369k | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 179 | | | 180 | 369k | GC_SET_REFCOUNT(ret, 1); | 181 | 369k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 182 | 369k | ZSTR_H(ret) = 0; | 183 | 369k | ZSTR_LEN(ret) = (n * m) + l; | 184 | 369k | return ret; | 185 | 369k | } |
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: 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_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 Unexecuted instantiation: zend_string.c:zend_string_safe_alloc Unexecuted instantiation: zend_strtod.c:zend_string_safe_alloc Unexecuted instantiation: zend_system_id.c:zend_string_safe_alloc Unexecuted instantiation: zend_variables.c:zend_string_safe_alloc Unexecuted instantiation: zend_virtual_cwd.c:zend_string_safe_alloc Unexecuted instantiation: zend_vm_opcodes.c:zend_string_safe_alloc Unexecuted instantiation: zend_weakrefs.c:zend_string_safe_alloc Unexecuted instantiation: zend.c:zend_string_safe_alloc Unexecuted instantiation: internal_functions_cli.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-parser.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-sapi.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-exif.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-unserialize.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-function-jit.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-json.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-execute.c:zend_string_safe_alloc |
186 | | |
187 | | static zend_always_inline zend_string *zend_string_init(const char *str, size_t len, bool persistent) |
188 | 20.6M | { |
189 | 20.6M | zend_string *ret = zend_string_alloc(len, persistent); |
190 | | |
191 | 20.6M | memcpy(ZSTR_VAL(ret), str, len); |
192 | 20.6M | ZSTR_VAL(ret)[len] = '\0'; |
193 | 20.6M | return ret; |
194 | 20.6M | } php_date.c:zend_string_init Line | Count | Source | 188 | 1.16k | { | 189 | 1.16k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 1.16k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 1.16k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 1.16k | return ret; | 194 | 1.16k | } |
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 | 188 | 466 | { | 189 | 466 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 466 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 466 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 466 | return ret; | 194 | 466 | } |
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 | 188 | 227 | { | 189 | 227 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 227 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 227 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 227 | return ret; | 194 | 227 | } |
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 | 188 | 1.34M | { | 189 | 1.34M | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 1.34M | memcpy(ZSTR_VAL(ret), str, len); | 192 | 1.34M | ZSTR_VAL(ret)[len] = '\0'; | 193 | 1.34M | return ret; | 194 | 1.34M | } |
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 | 188 | 64 | { | 189 | 64 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 64 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 64 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 64 | return ret; | 194 | 64 | } |
Unexecuted instantiation: randomizer.c:zend_string_init Unexecuted instantiation: zend_utils.c:zend_string_init php_reflection.c:zend_string_init Line | Count | Source | 188 | 269 | { | 189 | 269 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 269 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 269 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 269 | return ret; | 194 | 269 | } |
Unexecuted instantiation: php_spl.c:zend_string_init Unexecuted instantiation: spl_array.c:zend_string_init spl_directory.c:zend_string_init Line | Count | Source | 188 | 6 | { | 189 | 6 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 6 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 6 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 6 | return ret; | 194 | 6 | } |
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 | 188 | 16 | { | 189 | 16 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 16 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 16 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 16 | return ret; | 194 | 16 | } |
Unexecuted instantiation: spl_functions.c:zend_string_init Unexecuted instantiation: spl_heap.c:zend_string_init spl_iterators.c:zend_string_init Line | Count | Source | 188 | 2.98k | { | 189 | 2.98k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 2.98k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 2.98k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 2.98k | return ret; | 194 | 2.98k | } |
spl_observer.c:zend_string_init Line | Count | Source | 188 | 48 | { | 189 | 48 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 48 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 48 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 48 | return ret; | 194 | 48 | } |
Unexecuted instantiation: array.c:zend_string_init assert.c:zend_string_init Line | Count | Source | 188 | 43 | { | 189 | 43 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 43 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 43 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 43 | return ret; | 194 | 43 | } |
Unexecuted instantiation: base64.c:zend_string_init basic_functions.c:zend_string_init Line | Count | Source | 188 | 118 | { | 189 | 118 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 118 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 118 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 118 | return ret; | 194 | 118 | } |
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 | 188 | 21 | { | 189 | 21 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 21 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 21 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 21 | return ret; | 194 | 21 | } |
Unexecuted instantiation: dl.c:zend_string_init Unexecuted instantiation: dns.c:zend_string_init Unexecuted instantiation: exec.c:zend_string_init Line | Count | Source | 188 | 6.18k | { | 189 | 6.18k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 6.18k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 6.18k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 6.18k | return ret; | 194 | 6.18k | } |
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 | 188 | 6 | { | 189 | 6 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 6 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 6 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 6 | return ret; | 194 | 6 | } |
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 | 188 | 72 | { | 189 | 72 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 72 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 72 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 72 | return ret; | 194 | 72 | } |
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 | 188 | 17 | { | 189 | 17 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 17 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 17 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 17 | return ret; | 194 | 17 | } |
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 | 188 | 2.60k | { | 189 | 2.60k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 2.60k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 2.60k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 2.60k | return ret; | 194 | 2.60k | } |
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 | 188 | 80 | { | 189 | 80 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 80 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 80 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 80 | return ret; | 194 | 80 | } |
Unexecuted instantiation: url.c:zend_string_init user_filters.c:zend_string_init Line | Count | Source | 188 | 202 | { | 189 | 202 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 202 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 202 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 202 | return ret; | 194 | 202 | } |
Unexecuted instantiation: uuencode.c:zend_string_init var_unserializer.c:zend_string_init Line | Count | Source | 188 | 92.1k | { | 189 | 92.1k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 92.1k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 92.1k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 92.1k | return ret; | 194 | 92.1k | } |
Line | Count | Source | 188 | 319 | { | 189 | 319 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 319 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 319 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 319 | return ret; | 194 | 319 | } |
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 | 188 | 64 | { | 189 | 64 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 64 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 64 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 64 | return ret; | 194 | 64 | } |
Unexecuted instantiation: php_uri_common.c:zend_string_init Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_init Unexecuted instantiation: uri_parser_whatwg.c:zend_string_init Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_init Unexecuted instantiation: explicit_bzero.c:zend_string_init fopen_wrappers.c:zend_string_init Line | Count | Source | 188 | 73.9k | { | 189 | 73.9k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 73.9k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 73.9k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 73.9k | return ret; | 194 | 73.9k | } |
Unexecuted instantiation: getopt.c:zend_string_init Line | Count | Source | 188 | 5 | { | 189 | 5 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 5 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 5 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 5 | return ret; | 194 | 5 | } |
Unexecuted instantiation: network.c:zend_string_init output.c:zend_string_init Line | Count | Source | 188 | 3.78k | { | 189 | 3.78k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 3.78k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 3.78k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 3.78k | return ret; | 194 | 3.78k | } |
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 | 188 | 208 | { | 189 | 208 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 208 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 208 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 208 | return ret; | 194 | 208 | } |
Unexecuted instantiation: php_glob.c:zend_string_init Unexecuted instantiation: php_odbc_utils.c:zend_string_init Unexecuted instantiation: php_open_temporary_file.c:zend_string_init Unexecuted instantiation: php_scandir.c:zend_string_init Unexecuted instantiation: php_syslog.c:zend_string_init Unexecuted instantiation: php_ticks.c:zend_string_init php_variables.c:zend_string_init Line | Count | Source | 188 | 177k | { | 189 | 177k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 177k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 177k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 177k | return ret; | 194 | 177k | } |
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 | 188 | 32 | { | 189 | 32 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 32 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 32 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 32 | return ret; | 194 | 32 | } |
Unexecuted instantiation: snprintf.c:zend_string_init Unexecuted instantiation: spprintf.c:zend_string_init Unexecuted instantiation: strlcat.c:zend_string_init Unexecuted instantiation: strlcpy.c:zend_string_init Unexecuted instantiation: cast.c:zend_string_init Unexecuted instantiation: filter.c:zend_string_init Unexecuted instantiation: glob_wrapper.c:zend_string_init Unexecuted instantiation: memory.c:zend_string_init Unexecuted instantiation: mmap.c:zend_string_init plain_wrapper.c:zend_string_init Line | Count | Source | 188 | 64 | { | 189 | 64 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 64 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 64 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 64 | return ret; | 194 | 64 | } |
Unexecuted instantiation: streams.c:zend_string_init Unexecuted instantiation: transports.c:zend_string_init userspace.c:zend_string_init Line | Count | Source | 188 | 8.86k | { | 189 | 8.86k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 8.86k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 8.86k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 8.86k | return ret; | 194 | 8.86k | } |
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 | 188 | 8.87k | { | 189 | 8.87k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 8.87k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 8.87k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 8.87k | return ret; | 194 | 8.87k | } |
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 Line | Count | Source | 188 | 34 | { | 189 | 34 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 34 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 34 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 34 | return ret; | 194 | 34 | } |
Unexecuted instantiation: scdf.c:zend_string_init Unexecuted instantiation: zend_call_graph.c:zend_string_init Unexecuted instantiation: zend_cfg.c:zend_string_init Unexecuted instantiation: zend_dfg.c:zend_string_init Unexecuted instantiation: zend_dump.c:zend_string_init Unexecuted instantiation: zend_func_info.c:zend_string_init Unexecuted instantiation: zend_inference.c:zend_string_init zend_optimizer.c:zend_string_init Line | Count | Source | 188 | 4 | { | 189 | 4 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 4 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 4 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 4 | return ret; | 194 | 4 | } |
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 | 188 | 457k | { | 189 | 457k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 457k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 457k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 457k | return ret; | 194 | 457k | } |
Unexecuted instantiation: zend_ast.c:zend_string_init zend_attributes.c:zend_string_init Line | Count | Source | 188 | 41 | { | 189 | 41 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 41 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 41 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 41 | return ret; | 194 | 41 | } |
zend_builtin_functions.c:zend_string_init Line | Count | Source | 188 | 347 | { | 189 | 347 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 347 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 347 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 347 | return ret; | 194 | 347 | } |
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 | 188 | 7.64M | { | 189 | 7.64M | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 7.64M | memcpy(ZSTR_VAL(ret), str, len); | 192 | 7.64M | ZSTR_VAL(ret)[len] = '\0'; | 193 | 7.64M | return ret; | 194 | 7.64M | } |
zend_constants.c:zend_string_init Line | Count | Source | 188 | 520 | { | 189 | 520 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 520 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 520 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 520 | return ret; | 194 | 520 | } |
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 | 188 | 6.58k | { | 189 | 6.58k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 6.58k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 6.58k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 6.58k | return ret; | 194 | 6.58k | } |
zend_exceptions.c:zend_string_init Line | Count | Source | 188 | 1.20M | { | 189 | 1.20M | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 1.20M | memcpy(ZSTR_VAL(ret), str, len); | 192 | 1.20M | ZSTR_VAL(ret)[len] = '\0'; | 193 | 1.20M | return ret; | 194 | 1.20M | } |
zend_execute_API.c:zend_string_init Line | Count | Source | 188 | 38 | { | 189 | 38 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 38 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 38 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 38 | return ret; | 194 | 38 | } |
zend_execute.c:zend_string_init Line | Count | Source | 188 | 426 | { | 189 | 426 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 426 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 426 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 426 | return ret; | 194 | 426 | } |
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 | 188 | 223k | { | 189 | 223k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 223k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 223k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 223k | return ret; | 194 | 223k | } |
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 | 188 | 30.2k | { | 189 | 30.2k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 30.2k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 30.2k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 30.2k | return ret; | 194 | 30.2k | } |
zend_ini_scanner.c:zend_string_init Line | Count | Source | 188 | 1.56M | { | 189 | 1.56M | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 1.56M | memcpy(ZSTR_VAL(ret), str, len); | 192 | 1.56M | ZSTR_VAL(ret)[len] = '\0'; | 193 | 1.56M | return ret; | 194 | 1.56M | } |
zend_ini.c:zend_string_init Line | Count | Source | 188 | 74.0k | { | 189 | 74.0k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 74.0k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 74.0k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 74.0k | return ret; | 194 | 74.0k | } |
zend_interfaces.c:zend_string_init Line | Count | Source | 188 | 213k | { | 189 | 213k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 213k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 213k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 213k | return ret; | 194 | 213k | } |
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 | 188 | 6.84M | { | 189 | 6.84M | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 6.84M | memcpy(ZSTR_VAL(ret), str, len); | 192 | 6.84M | ZSTR_VAL(ret)[len] = '\0'; | 193 | 6.84M | return ret; | 194 | 6.84M | } |
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 | 188 | 712 | { | 189 | 712 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 712 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 712 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 712 | return ret; | 194 | 712 | } |
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 | 188 | 279k | { | 189 | 279k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 279k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 279k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 279k | return ret; | 194 | 279k | } |
zend_property_hooks.c:zend_string_init Line | Count | Source | 188 | 88 | { | 189 | 88 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 88 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 88 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 88 | return ret; | 194 | 88 | } |
Unexecuted instantiation: zend_ptr_stack.c:zend_string_init Unexecuted instantiation: zend_signal.c:zend_string_init Unexecuted instantiation: zend_smart_str.c:zend_string_init Unexecuted instantiation: zend_sort.c:zend_string_init Unexecuted instantiation: zend_stack.c:zend_string_init zend_stream.c:zend_string_init Line | Count | Source | 188 | 174k | { | 189 | 174k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 174k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 174k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 174k | return ret; | 194 | 174k | } |
zend_string.c:zend_string_init Line | Count | Source | 188 | 46.5k | { | 189 | 46.5k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 46.5k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 46.5k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 46.5k | return ret; | 194 | 46.5k | } |
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 | 188 | 143 | { | 189 | 143 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 143 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 143 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 143 | return ret; | 194 | 143 | } |
Unexecuted instantiation: zend_virtual_cwd.c:zend_string_init Unexecuted instantiation: zend_vm_opcodes.c:zend_string_init Unexecuted instantiation: zend_weakrefs.c:zend_string_init Unexecuted instantiation: zend.c:zend_string_init Unexecuted instantiation: internal_functions_cli.c:zend_string_init Unexecuted instantiation: fuzzer-parser.c:zend_string_init Unexecuted instantiation: fuzzer-sapi.c:zend_string_init fuzzer-tracing-jit.c:zend_string_init Line | Count | Source | 188 | 60.4k | { | 189 | 60.4k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 60.4k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 60.4k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 60.4k | return ret; | 194 | 60.4k | } |
Unexecuted instantiation: fuzzer-exif.c:zend_string_init Unexecuted instantiation: fuzzer-unserialize.c:zend_string_init fuzzer-function-jit.c:zend_string_init Line | Count | Source | 188 | 56.2k | { | 189 | 56.2k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 56.2k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 56.2k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 56.2k | return ret; | 194 | 56.2k | } |
Unexecuted instantiation: fuzzer-json.c:zend_string_init fuzzer-unserializehash.c:zend_string_init Line | Count | Source | 188 | 2.29k | { | 189 | 2.29k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 2.29k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 2.29k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 2.29k | return ret; | 194 | 2.29k | } |
Unexecuted instantiation: fuzzer-execute.c:zend_string_init |
195 | | |
196 | | static zend_always_inline zend_string *zend_string_init_fast(const char *str, size_t len) |
197 | 271k | { |
198 | 271k | if (len > 1) { |
199 | 270k | return zend_string_init(str, len, 0); |
200 | 270k | } else if (len == 0) { |
201 | 448 | return zend_empty_string; |
202 | 1.09k | } else /* if (len == 1) */ { |
203 | 1.09k | return ZSTR_CHAR((zend_uchar) *str); |
204 | 1.09k | } |
205 | 271k | } 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 | 197 | 354 | { | 198 | 354 | if (len > 1) { | 199 | 46 | return zend_string_init(str, len, 0); | 200 | 308 | } else if (len == 0) { | 201 | 2 | return zend_empty_string; | 202 | 306 | } else /* if (len == 1) */ { | 203 | 306 | return ZSTR_CHAR((zend_uchar) *str); | 204 | 306 | } | 205 | 354 | } |
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 | 197 | 80 | { | 198 | 80 | if (len > 1) { | 199 | 68 | return zend_string_init(str, len, 0); | 200 | 68 | } else if (len == 0) { | 201 | 7 | return zend_empty_string; | 202 | 7 | } else /* if (len == 1) */ { | 203 | 5 | return ZSTR_CHAR((zend_uchar) *str); | 204 | 5 | } | 205 | 80 | } |
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 | 197 | 92.5k | { | 198 | 92.5k | if (len > 1) { | 199 | 91.9k | return zend_string_init(str, len, 0); | 200 | 91.9k | } else if (len == 0) { | 201 | 209 | return zend_empty_string; | 202 | 436 | } else /* if (len == 1) */ { | 203 | 436 | return ZSTR_CHAR((zend_uchar) *str); | 204 | 436 | } | 205 | 92.5k | } |
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 | 197 | 178k | { | 198 | 178k | if (len > 1) { | 199 | 177k | return zend_string_init(str, len, 0); | 200 | 177k | } else if (len == 0) { | 201 | 230 | return zend_empty_string; | 202 | 345 | } else /* if (len == 1) */ { | 203 | 345 | return ZSTR_CHAR((zend_uchar) *str); | 204 | 345 | } | 205 | 178k | } |
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: 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_builtin_functions.c:zend_string_init_fast Unexecuted instantiation: zend_call_stack.c:zend_string_init_fast Unexecuted instantiation: zend_closures.c:zend_string_init_fast Unexecuted instantiation: zend_compile.c:zend_string_init_fast Unexecuted instantiation: zend_constants.c:zend_string_init_fast Unexecuted instantiation: zend_cpuinfo.c:zend_string_init_fast Unexecuted instantiation: zend_default_classes.c:zend_string_init_fast Unexecuted instantiation: zend_dtrace.c:zend_string_init_fast Unexecuted instantiation: zend_enum.c:zend_string_init_fast Unexecuted instantiation: zend_exceptions.c:zend_string_init_fast Unexecuted instantiation: zend_execute_API.c:zend_string_init_fast Unexecuted instantiation: zend_execute.c:zend_string_init_fast Unexecuted instantiation: zend_extensions.c:zend_string_init_fast Unexecuted instantiation: zend_fibers.c:zend_string_init_fast Unexecuted instantiation: zend_float.c:zend_string_init_fast Unexecuted instantiation: zend_gc.c:zend_string_init_fast Unexecuted instantiation: zend_gdb.c:zend_string_init_fast Unexecuted instantiation: zend_generators.c:zend_string_init_fast Unexecuted instantiation: zend_hash.c:zend_string_init_fast Unexecuted instantiation: zend_highlight.c:zend_string_init_fast Unexecuted instantiation: zend_hrtime.c:zend_string_init_fast Unexecuted instantiation: zend_inheritance.c:zend_string_init_fast Unexecuted instantiation: zend_ini_parser.c:zend_string_init_fast Unexecuted instantiation: zend_ini_scanner.c:zend_string_init_fast Unexecuted instantiation: zend_ini.c:zend_string_init_fast Unexecuted instantiation: zend_interfaces.c:zend_string_init_fast Unexecuted instantiation: zend_iterators.c:zend_string_init_fast Unexecuted instantiation: zend_language_parser.c:zend_string_init_fast Unexecuted instantiation: zend_language_scanner.c:zend_string_init_fast Unexecuted instantiation: zend_lazy_objects.c:zend_string_init_fast Unexecuted instantiation: zend_list.c:zend_string_init_fast Unexecuted instantiation: zend_llist.c:zend_string_init_fast Unexecuted instantiation: zend_multibyte.c:zend_string_init_fast Unexecuted instantiation: zend_object_handlers.c:zend_string_init_fast Unexecuted instantiation: zend_objects_API.c:zend_string_init_fast Unexecuted instantiation: zend_objects.c:zend_string_init_fast Unexecuted instantiation: zend_observer.c:zend_string_init_fast Unexecuted instantiation: zend_opcode.c:zend_string_init_fast Unexecuted instantiation: zend_operators.c:zend_string_init_fast Unexecuted instantiation: zend_property_hooks.c:zend_string_init_fast Unexecuted instantiation: zend_ptr_stack.c:zend_string_init_fast Unexecuted instantiation: zend_signal.c:zend_string_init_fast Unexecuted instantiation: zend_smart_str.c:zend_string_init_fast Unexecuted instantiation: zend_sort.c:zend_string_init_fast Unexecuted instantiation: zend_stack.c:zend_string_init_fast Unexecuted instantiation: zend_stream.c:zend_string_init_fast Unexecuted instantiation: zend_string.c:zend_string_init_fast Unexecuted instantiation: zend_strtod.c:zend_string_init_fast Unexecuted instantiation: zend_system_id.c:zend_string_init_fast Unexecuted instantiation: zend_variables.c:zend_string_init_fast Unexecuted instantiation: zend_virtual_cwd.c:zend_string_init_fast Unexecuted instantiation: zend_vm_opcodes.c:zend_string_init_fast Unexecuted instantiation: zend_weakrefs.c:zend_string_init_fast Unexecuted instantiation: zend.c:zend_string_init_fast Unexecuted instantiation: internal_functions_cli.c:zend_string_init_fast Unexecuted instantiation: fuzzer-parser.c:zend_string_init_fast Unexecuted instantiation: fuzzer-sapi.c:zend_string_init_fast Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_init_fast Unexecuted instantiation: fuzzer-exif.c:zend_string_init_fast Unexecuted instantiation: fuzzer-unserialize.c:zend_string_init_fast Unexecuted instantiation: fuzzer-function-jit.c:zend_string_init_fast Unexecuted instantiation: fuzzer-json.c:zend_string_init_fast Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_init_fast Unexecuted instantiation: fuzzer-execute.c:zend_string_init_fast |
206 | | |
207 | | static zend_always_inline zend_string *zend_string_copy(zend_string *s) |
208 | 14.3M | { |
209 | 14.3M | if (!ZSTR_IS_INTERNED(s)) { |
210 | 8.93M | GC_ADDREF(s); |
211 | 8.93M | } |
212 | 14.3M | return s; |
213 | 14.3M | } php_date.c:zend_string_copy Line | Count | Source | 208 | 79 | { | 209 | 79 | if (!ZSTR_IS_INTERNED(s)) { | 210 | 49 | GC_ADDREF(s); | 211 | 49 | } | 212 | 79 | return s; | 213 | 79 | } |
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 | 208 | 107 | { | 209 | 107 | if (!ZSTR_IS_INTERNED(s)) { | 210 | 5 | GC_ADDREF(s); | 211 | 5 | } | 212 | 107 | return s; | 213 | 107 | } |
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 | 208 | 4.14k | { | 209 | 4.14k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 1.44k | GC_ADDREF(s); | 211 | 1.44k | } | 212 | 4.14k | return s; | 213 | 4.14k | } |
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 | 208 | 60.5k | { | 209 | 60.5k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 60.4k | GC_ADDREF(s); | 211 | 60.4k | } | 212 | 60.5k | return s; | 213 | 60.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 | 208 | 3.04k | { | 209 | 3.04k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 96 | GC_ADDREF(s); | 211 | 96 | } | 212 | 3.04k | return s; | 213 | 3.04k | } |
Unexecuted instantiation: php_spl.c:zend_string_copy Unexecuted instantiation: spl_array.c:zend_string_copy spl_directory.c:zend_string_copy Line | Count | Source | 208 | 2 | { | 209 | 2 | if (!ZSTR_IS_INTERNED(s)) { | 210 | 2 | GC_ADDREF(s); | 211 | 2 | } | 212 | 2 | return s; | 213 | 2 | } |
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 | 208 | 14 | { | 209 | 14 | if (!ZSTR_IS_INTERNED(s)) { | 210 | 14 | GC_ADDREF(s); | 211 | 14 | } | 212 | 14 | return s; | 213 | 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 | 208 | 154 | { | 209 | 154 | if (!ZSTR_IS_INTERNED(s)) { | 210 | 154 | GC_ADDREF(s); | 211 | 154 | } | 212 | 154 | return s; | 213 | 154 | } |
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 | 208 | 36 | { | 209 | 36 | if (!ZSTR_IS_INTERNED(s)) { | 210 | 0 | GC_ADDREF(s); | 211 | 0 | } | 212 | 36 | return s; | 213 | 36 | } |
Unexecuted instantiation: info.c:zend_string_copy Unexecuted instantiation: iptc.c:zend_string_copy Unexecuted instantiation: levenshtein.c:zend_string_copy Unexecuted instantiation: link.c:zend_string_copy Unexecuted instantiation: mail.c:zend_string_copy Unexecuted instantiation: math.c:zend_string_copy Unexecuted instantiation: md5.c:zend_string_copy Unexecuted instantiation: metaphone.c:zend_string_copy Unexecuted instantiation: microtime.c:zend_string_copy Unexecuted instantiation: net.c:zend_string_copy Unexecuted instantiation: pack.c:zend_string_copy Unexecuted instantiation: pageinfo.c:zend_string_copy Unexecuted instantiation: password.c:zend_string_copy Unexecuted instantiation: php_fopen_wrapper.c:zend_string_copy Unexecuted instantiation: proc_open.c:zend_string_copy Unexecuted instantiation: quot_print.c:zend_string_copy Unexecuted instantiation: scanf.c:zend_string_copy Unexecuted instantiation: sha1.c:zend_string_copy Unexecuted instantiation: soundex.c:zend_string_copy Unexecuted instantiation: streamsfuncs.c:zend_string_copy string.c:zend_string_copy Line | Count | Source | 208 | 1.72k | { | 209 | 1.72k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 1.51k | GC_ADDREF(s); | 211 | 1.51k | } | 212 | 1.72k | return s; | 213 | 1.72k | } |
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 | 208 | 224 | { | 209 | 224 | if (!ZSTR_IS_INTERNED(s)) { | 210 | 3 | GC_ADDREF(s); | 211 | 3 | } | 212 | 224 | return s; | 213 | 224 | } |
Unexecuted instantiation: uuencode.c:zend_string_copy Unexecuted instantiation: var_unserializer.c:zend_string_copy Line | Count | Source | 208 | 338 | { | 209 | 338 | if (!ZSTR_IS_INTERNED(s)) { | 210 | 4 | GC_ADDREF(s); | 211 | 4 | } | 212 | 338 | return s; | 213 | 338 | } |
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 | 208 | 5.46M | { | 209 | 5.46M | if (!ZSTR_IS_INTERNED(s)) { | 210 | 2.87M | GC_ADDREF(s); | 211 | 2.87M | } | 212 | 5.46M | return s; | 213 | 5.46M | } |
Unexecuted instantiation: network.c:zend_string_copy output.c:zend_string_copy Line | Count | Source | 208 | 1.92k | { | 209 | 1.92k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 1.87k | GC_ADDREF(s); | 211 | 1.87k | } | 212 | 1.92k | return s; | 213 | 1.92k | } |
Unexecuted instantiation: php_content_types.c:zend_string_copy Unexecuted instantiation: php_ini_builder.c:zend_string_copy Unexecuted instantiation: php_ini.c:zend_string_copy Unexecuted instantiation: php_glob.c:zend_string_copy Unexecuted instantiation: php_odbc_utils.c:zend_string_copy Unexecuted instantiation: php_open_temporary_file.c:zend_string_copy Unexecuted instantiation: php_scandir.c:zend_string_copy Unexecuted instantiation: php_syslog.c:zend_string_copy Unexecuted instantiation: php_ticks.c:zend_string_copy Unexecuted instantiation: php_variables.c:zend_string_copy Unexecuted instantiation: reentrancy.c:zend_string_copy Unexecuted instantiation: rfc1867.c:zend_string_copy Unexecuted instantiation: safe_bcmp.c:zend_string_copy Unexecuted instantiation: SAPI.c:zend_string_copy Unexecuted instantiation: snprintf.c:zend_string_copy Unexecuted instantiation: spprintf.c:zend_string_copy Unexecuted instantiation: strlcat.c:zend_string_copy Unexecuted instantiation: strlcpy.c:zend_string_copy Unexecuted instantiation: cast.c:zend_string_copy Unexecuted instantiation: filter.c:zend_string_copy Unexecuted instantiation: glob_wrapper.c:zend_string_copy memory.c:zend_string_copy Line | Count | Source | 208 | 8 | { | 209 | 8 | if (!ZSTR_IS_INTERNED(s)) { | 210 | 8 | GC_ADDREF(s); | 211 | 8 | } | 212 | 8 | return s; | 213 | 8 | } |
Unexecuted instantiation: mmap.c:zend_string_copy Unexecuted instantiation: plain_wrapper.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 | 208 | 598k | { | 209 | 598k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 114k | GC_ADDREF(s); | 211 | 114k | } | 212 | 598k | return s; | 213 | 598k | } |
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 | 208 | 53.7k | { | 209 | 53.7k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 32.3k | GC_ADDREF(s); | 211 | 32.3k | } | 212 | 53.7k | return s; | 213 | 53.7k | } |
Unexecuted instantiation: zend_ast.c:zend_string_copy zend_attributes.c:zend_string_copy Line | Count | Source | 208 | 1.63M | { | 209 | 1.63M | if (!ZSTR_IS_INTERNED(s)) { | 210 | 1.63M | GC_ADDREF(s); | 211 | 1.63M | } | 212 | 1.63M | return s; | 213 | 1.63M | } |
zend_builtin_functions.c:zend_string_copy Line | Count | Source | 208 | 35.3k | { | 209 | 35.3k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 23 | GC_ADDREF(s); | 211 | 23 | } | 212 | 35.3k | return s; | 213 | 35.3k | } |
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 | 208 | 3.25M | { | 209 | 3.25M | if (!ZSTR_IS_INTERNED(s)) { | 210 | 1.28M | GC_ADDREF(s); | 211 | 1.28M | } | 212 | 3.25M | return s; | 213 | 3.25M | } |
zend_constants.c:zend_string_copy Line | Count | Source | 208 | 2.78k | { | 209 | 2.78k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 147 | GC_ADDREF(s); | 211 | 147 | } | 212 | 2.78k | return s; | 213 | 2.78k | } |
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 | 208 | 6.58k | { | 209 | 6.58k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 0 | GC_ADDREF(s); | 211 | 0 | } | 212 | 6.58k | return s; | 213 | 6.58k | } |
zend_exceptions.c:zend_string_copy Line | Count | Source | 208 | 81.9k | { | 209 | 81.9k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 79.5k | GC_ADDREF(s); | 211 | 79.5k | } | 212 | 81.9k | return s; | 213 | 81.9k | } |
zend_execute_API.c:zend_string_copy Line | Count | Source | 208 | 179k | { | 209 | 179k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 173k | GC_ADDREF(s); | 211 | 173k | } | 212 | 179k | return s; | 213 | 179k | } |
zend_execute.c:zend_string_copy Line | Count | Source | 208 | 192k | { | 209 | 192k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 182k | GC_ADDREF(s); | 211 | 182k | } | 212 | 192k | return s; | 213 | 192k | } |
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 | 208 | 34 | { | 209 | 34 | if (!ZSTR_IS_INTERNED(s)) { | 210 | 4 | GC_ADDREF(s); | 211 | 4 | } | 212 | 34 | return s; | 213 | 34 | } |
Unexecuted instantiation: zend_ini_parser.c:zend_string_copy Unexecuted instantiation: zend_ini_scanner.c:zend_string_copy zend_ini.c:zend_string_copy Line | Count | Source | 208 | 74.5k | { | 209 | 74.5k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 74.2k | GC_ADDREF(s); | 211 | 74.2k | } | 212 | 74.5k | return s; | 213 | 74.5k | } |
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 | 208 | 134k | { | 209 | 134k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 134k | GC_ADDREF(s); | 211 | 134k | } | 212 | 134k | return s; | 213 | 134k | } |
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 | 208 | 14.6k | { | 209 | 14.6k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 592 | GC_ADDREF(s); | 211 | 592 | } | 212 | 14.6k | return s; | 213 | 14.6k | } |
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 | 208 | 807k | { | 209 | 807k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 807k | GC_ADDREF(s); | 211 | 807k | } | 212 | 807k | return s; | 213 | 807k | } |
zend_operators.c:zend_string_copy Line | Count | Source | 208 | 1.49M | { | 209 | 1.49M | if (!ZSTR_IS_INTERNED(s)) { | 210 | 1.25M | GC_ADDREF(s); | 211 | 1.25M | } | 212 | 1.49M | return s; | 213 | 1.49M | } |
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 | 208 | 128k | { | 209 | 128k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 60.5k | GC_ADDREF(s); | 211 | 60.5k | } | 212 | 128k | return s; | 213 | 128k | } |
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 | 208 | 165k | { | 209 | 165k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 165k | GC_ADDREF(s); | 211 | 165k | } | 212 | 165k | return s; | 213 | 165k | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_copy Unexecuted instantiation: fuzzer-parser.c:zend_string_copy Unexecuted instantiation: fuzzer-sapi.c:zend_string_copy Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_copy Unexecuted instantiation: fuzzer-exif.c:zend_string_copy Unexecuted instantiation: fuzzer-unserialize.c:zend_string_copy Unexecuted instantiation: fuzzer-function-jit.c:zend_string_copy Unexecuted instantiation: fuzzer-json.c:zend_string_copy Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_copy Unexecuted instantiation: fuzzer-execute.c:zend_string_copy |
214 | | |
215 | | static zend_always_inline zend_string *zend_string_dup(zend_string *s, bool persistent) |
216 | 369 | { |
217 | 369 | if (ZSTR_IS_INTERNED(s)) { |
218 | 18 | return s; |
219 | 351 | } else { |
220 | 351 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); |
221 | 351 | } |
222 | 369 | } 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 | 216 | 18 | { | 217 | 18 | if (ZSTR_IS_INTERNED(s)) { | 218 | 18 | return s; | 219 | 18 | } else { | 220 | 0 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); | 221 | 0 | } | 222 | 18 | } |
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 | 216 | 208 | { | 217 | 208 | if (ZSTR_IS_INTERNED(s)) { | 218 | 0 | return s; | 219 | 208 | } else { | 220 | 208 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); | 221 | 208 | } | 222 | 208 | } |
Unexecuted instantiation: php_glob.c:zend_string_dup Unexecuted instantiation: php_odbc_utils.c:zend_string_dup Unexecuted instantiation: php_open_temporary_file.c:zend_string_dup Unexecuted instantiation: php_scandir.c:zend_string_dup Unexecuted instantiation: php_syslog.c:zend_string_dup Unexecuted instantiation: php_ticks.c:zend_string_dup Unexecuted instantiation: php_variables.c:zend_string_dup Unexecuted instantiation: reentrancy.c:zend_string_dup Unexecuted instantiation: rfc1867.c:zend_string_dup Unexecuted instantiation: safe_bcmp.c:zend_string_dup Unexecuted instantiation: SAPI.c:zend_string_dup Unexecuted instantiation: snprintf.c:zend_string_dup Unexecuted instantiation: spprintf.c:zend_string_dup Unexecuted instantiation: strlcat.c:zend_string_dup Unexecuted instantiation: strlcpy.c:zend_string_dup Unexecuted instantiation: cast.c:zend_string_dup Unexecuted instantiation: filter.c:zend_string_dup Unexecuted instantiation: glob_wrapper.c:zend_string_dup Unexecuted instantiation: memory.c:zend_string_dup Unexecuted instantiation: mmap.c:zend_string_dup Unexecuted instantiation: plain_wrapper.c:zend_string_dup Unexecuted instantiation: 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_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 | 216 | 143 | { | 217 | 143 | if (ZSTR_IS_INTERNED(s)) { | 218 | 0 | return s; | 219 | 143 | } else { | 220 | 143 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); | 221 | 143 | } | 222 | 143 | } |
Unexecuted instantiation: zend_virtual_cwd.c:zend_string_dup Unexecuted instantiation: zend_vm_opcodes.c:zend_string_dup Unexecuted instantiation: zend_weakrefs.c:zend_string_dup Unexecuted instantiation: zend.c:zend_string_dup Unexecuted instantiation: internal_functions_cli.c:zend_string_dup Unexecuted instantiation: fuzzer-parser.c:zend_string_dup Unexecuted instantiation: fuzzer-sapi.c:zend_string_dup Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_dup Unexecuted instantiation: fuzzer-exif.c:zend_string_dup Unexecuted instantiation: fuzzer-unserialize.c:zend_string_dup Unexecuted instantiation: fuzzer-function-jit.c:zend_string_dup Unexecuted instantiation: fuzzer-json.c:zend_string_dup Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_dup Unexecuted instantiation: fuzzer-execute.c:zend_string_dup |
223 | | |
224 | | static zend_always_inline zend_string *zend_string_separate(zend_string *s, bool persistent) |
225 | 0 | { |
226 | 0 | if (ZSTR_IS_INTERNED(s) || GC_REFCOUNT(s) > 1) { |
227 | 0 | if (!ZSTR_IS_INTERNED(s)) { |
228 | 0 | GC_DELREF(s); |
229 | 0 | } |
230 | 0 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); |
231 | 0 | } |
232 | | |
233 | 0 | zend_string_forget_hash_val(s); |
234 | 0 | return s; |
235 | 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: 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_builtin_functions.c:zend_string_separate Unexecuted instantiation: zend_call_stack.c:zend_string_separate Unexecuted instantiation: zend_closures.c:zend_string_separate Unexecuted instantiation: zend_compile.c:zend_string_separate Unexecuted instantiation: zend_constants.c:zend_string_separate Unexecuted instantiation: zend_cpuinfo.c:zend_string_separate Unexecuted instantiation: zend_default_classes.c:zend_string_separate Unexecuted instantiation: zend_dtrace.c:zend_string_separate Unexecuted instantiation: zend_enum.c:zend_string_separate Unexecuted instantiation: zend_exceptions.c:zend_string_separate Unexecuted instantiation: zend_execute_API.c:zend_string_separate Unexecuted instantiation: zend_execute.c:zend_string_separate Unexecuted instantiation: zend_extensions.c:zend_string_separate Unexecuted instantiation: zend_fibers.c:zend_string_separate Unexecuted instantiation: zend_float.c:zend_string_separate Unexecuted instantiation: zend_gc.c:zend_string_separate Unexecuted instantiation: zend_gdb.c:zend_string_separate Unexecuted instantiation: zend_generators.c:zend_string_separate Unexecuted instantiation: zend_hash.c:zend_string_separate Unexecuted instantiation: zend_highlight.c:zend_string_separate Unexecuted instantiation: zend_hrtime.c:zend_string_separate Unexecuted instantiation: zend_inheritance.c:zend_string_separate Unexecuted instantiation: zend_ini_parser.c:zend_string_separate Unexecuted instantiation: zend_ini_scanner.c:zend_string_separate Unexecuted instantiation: zend_ini.c:zend_string_separate Unexecuted instantiation: zend_interfaces.c:zend_string_separate Unexecuted instantiation: zend_iterators.c:zend_string_separate Unexecuted instantiation: zend_language_parser.c:zend_string_separate Unexecuted instantiation: zend_language_scanner.c:zend_string_separate Unexecuted instantiation: zend_lazy_objects.c:zend_string_separate Unexecuted instantiation: zend_list.c:zend_string_separate Unexecuted instantiation: zend_llist.c:zend_string_separate Unexecuted instantiation: zend_multibyte.c:zend_string_separate Unexecuted instantiation: zend_object_handlers.c:zend_string_separate Unexecuted instantiation: zend_objects_API.c:zend_string_separate Unexecuted instantiation: zend_objects.c:zend_string_separate Unexecuted instantiation: zend_observer.c:zend_string_separate Unexecuted instantiation: zend_opcode.c:zend_string_separate Unexecuted instantiation: zend_operators.c:zend_string_separate Unexecuted instantiation: zend_property_hooks.c:zend_string_separate Unexecuted instantiation: zend_ptr_stack.c:zend_string_separate Unexecuted instantiation: zend_signal.c:zend_string_separate Unexecuted instantiation: zend_smart_str.c:zend_string_separate Unexecuted instantiation: zend_sort.c:zend_string_separate Unexecuted instantiation: zend_stack.c:zend_string_separate Unexecuted instantiation: zend_stream.c:zend_string_separate Unexecuted instantiation: zend_string.c:zend_string_separate Unexecuted instantiation: zend_strtod.c:zend_string_separate Unexecuted instantiation: zend_system_id.c:zend_string_separate Unexecuted instantiation: zend_variables.c:zend_string_separate Unexecuted instantiation: zend_virtual_cwd.c:zend_string_separate Unexecuted instantiation: zend_vm_opcodes.c:zend_string_separate Unexecuted instantiation: zend_weakrefs.c:zend_string_separate Unexecuted instantiation: zend.c:zend_string_separate Unexecuted instantiation: internal_functions_cli.c:zend_string_separate Unexecuted instantiation: fuzzer-parser.c:zend_string_separate Unexecuted instantiation: fuzzer-sapi.c:zend_string_separate Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_separate Unexecuted instantiation: fuzzer-exif.c:zend_string_separate Unexecuted instantiation: fuzzer-unserialize.c:zend_string_separate Unexecuted instantiation: fuzzer-function-jit.c:zend_string_separate Unexecuted instantiation: fuzzer-json.c:zend_string_separate Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_separate Unexecuted instantiation: fuzzer-execute.c:zend_string_separate |
236 | | |
237 | | static zend_always_inline zend_string *zend_string_realloc(zend_string *s, size_t len, bool persistent) |
238 | 4.39M | { |
239 | 4.39M | zend_string *ret; |
240 | | |
241 | 4.39M | if (!ZSTR_IS_INTERNED(s)) { |
242 | 4.39M | if (EXPECTED(GC_REFCOUNT(s) == 1)) { |
243 | 4.39M | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); |
244 | 4.39M | ZSTR_LEN(ret) = len; |
245 | 4.39M | zend_string_forget_hash_val(ret); |
246 | 4.39M | return ret; |
247 | 4.39M | } |
248 | 4.39M | } |
249 | 6.12k | ret = zend_string_alloc(len, persistent); |
250 | 6.12k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); |
251 | 6.12k | if (!ZSTR_IS_INTERNED(s)) { |
252 | 0 | GC_DELREF(s); |
253 | 0 | } |
254 | 6.12k | return ret; |
255 | 4.39M | } 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 | 238 | 185 | { | 239 | 185 | zend_string *ret; | 240 | | | 241 | 185 | if (!ZSTR_IS_INTERNED(s)) { | 242 | 185 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 243 | 185 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 244 | 185 | ZSTR_LEN(ret) = len; | 245 | 185 | zend_string_forget_hash_val(ret); | 246 | 185 | return ret; | 247 | 185 | } | 248 | 185 | } | 249 | 0 | ret = zend_string_alloc(len, persistent); | 250 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 251 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 252 | 0 | GC_DELREF(s); | 253 | 0 | } | 254 | 0 | return ret; | 255 | 185 | } |
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 | 238 | 1.71k | { | 239 | 1.71k | zend_string *ret; | 240 | | | 241 | 1.71k | if (!ZSTR_IS_INTERNED(s)) { | 242 | 1.71k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 243 | 1.71k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 244 | 1.71k | ZSTR_LEN(ret) = len; | 245 | 1.71k | zend_string_forget_hash_val(ret); | 246 | 1.71k | return ret; | 247 | 1.71k | } | 248 | 1.71k | } | 249 | 0 | ret = zend_string_alloc(len, persistent); | 250 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 251 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 252 | 0 | GC_DELREF(s); | 253 | 0 | } | 254 | 0 | return ret; | 255 | 1.71k | } |
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 | 238 | 277 | { | 239 | 277 | zend_string *ret; | 240 | | | 241 | 277 | if (!ZSTR_IS_INTERNED(s)) { | 242 | 277 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 243 | 277 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 244 | 277 | ZSTR_LEN(ret) = len; | 245 | 277 | zend_string_forget_hash_val(ret); | 246 | 277 | return ret; | 247 | 277 | } | 248 | 277 | } | 249 | 0 | ret = zend_string_alloc(len, persistent); | 250 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 251 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 252 | 0 | GC_DELREF(s); | 253 | 0 | } | 254 | 0 | return ret; | 255 | 277 | } |
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 | 238 | 862 | { | 239 | 862 | zend_string *ret; | 240 | | | 241 | 862 | if (!ZSTR_IS_INTERNED(s)) { | 242 | 862 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 243 | 862 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 244 | 862 | ZSTR_LEN(ret) = len; | 245 | 862 | zend_string_forget_hash_val(ret); | 246 | 862 | return ret; | 247 | 862 | } | 248 | 862 | } | 249 | 0 | ret = zend_string_alloc(len, persistent); | 250 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 251 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 252 | 0 | GC_DELREF(s); | 253 | 0 | } | 254 | 0 | return ret; | 255 | 862 | } |
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 | 238 | 24 | { | 239 | 24 | zend_string *ret; | 240 | | | 241 | 24 | if (!ZSTR_IS_INTERNED(s)) { | 242 | 24 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 243 | 24 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 244 | 24 | ZSTR_LEN(ret) = len; | 245 | 24 | zend_string_forget_hash_val(ret); | 246 | 24 | return ret; | 247 | 24 | } | 248 | 24 | } | 249 | 0 | ret = zend_string_alloc(len, persistent); | 250 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 251 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 252 | 0 | GC_DELREF(s); | 253 | 0 | } | 254 | 0 | return ret; | 255 | 24 | } |
Unexecuted instantiation: getopt.c:zend_string_realloc Unexecuted instantiation: main.c:zend_string_realloc Unexecuted instantiation: network.c:zend_string_realloc Unexecuted instantiation: output.c:zend_string_realloc Unexecuted instantiation: php_content_types.c:zend_string_realloc Unexecuted instantiation: php_ini_builder.c:zend_string_realloc Unexecuted instantiation: php_ini.c:zend_string_realloc Unexecuted instantiation: php_glob.c:zend_string_realloc Unexecuted instantiation: php_odbc_utils.c:zend_string_realloc Unexecuted instantiation: php_open_temporary_file.c:zend_string_realloc Unexecuted instantiation: php_scandir.c:zend_string_realloc Unexecuted instantiation: php_syslog.c:zend_string_realloc Unexecuted instantiation: php_ticks.c:zend_string_realloc Unexecuted instantiation: php_variables.c:zend_string_realloc Unexecuted instantiation: reentrancy.c:zend_string_realloc Unexecuted instantiation: rfc1867.c:zend_string_realloc Unexecuted instantiation: safe_bcmp.c:zend_string_realloc Unexecuted instantiation: SAPI.c:zend_string_realloc Unexecuted instantiation: snprintf.c:zend_string_realloc Unexecuted instantiation: spprintf.c:zend_string_realloc Unexecuted instantiation: strlcat.c:zend_string_realloc Unexecuted instantiation: strlcpy.c:zend_string_realloc Unexecuted instantiation: cast.c:zend_string_realloc Unexecuted instantiation: filter.c:zend_string_realloc Unexecuted instantiation: glob_wrapper.c:zend_string_realloc memory.c:zend_string_realloc Line | Count | Source | 238 | 6.12k | { | 239 | 6.12k | zend_string *ret; | 240 | | | 241 | 6.12k | if (!ZSTR_IS_INTERNED(s)) { | 242 | 0 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 243 | 0 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 244 | 0 | ZSTR_LEN(ret) = len; | 245 | 0 | zend_string_forget_hash_val(ret); | 246 | 0 | return ret; | 247 | 0 | } | 248 | 0 | } | 249 | 6.12k | ret = zend_string_alloc(len, persistent); | 250 | 6.12k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 251 | 6.12k | if (!ZSTR_IS_INTERNED(s)) { | 252 | 0 | GC_DELREF(s); | 253 | 0 | } | 254 | 6.12k | return ret; | 255 | 6.12k | } |
Unexecuted instantiation: mmap.c:zend_string_realloc Unexecuted instantiation: plain_wrapper.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 | 238 | 220 | { | 239 | 220 | zend_string *ret; | 240 | | | 241 | 220 | if (!ZSTR_IS_INTERNED(s)) { | 242 | 220 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 243 | 220 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 244 | 220 | ZSTR_LEN(ret) = len; | 245 | 220 | zend_string_forget_hash_val(ret); | 246 | 220 | return ret; | 247 | 220 | } | 248 | 220 | } | 249 | 0 | ret = zend_string_alloc(len, persistent); | 250 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 251 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 252 | 0 | GC_DELREF(s); | 253 | 0 | } | 254 | 0 | return ret; | 255 | 220 | } |
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 | 238 | 4.38M | { | 239 | 4.38M | zend_string *ret; | 240 | | | 241 | 4.38M | if (!ZSTR_IS_INTERNED(s)) { | 242 | 4.38M | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 243 | 4.38M | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 244 | 4.38M | ZSTR_LEN(ret) = len; | 245 | 4.38M | zend_string_forget_hash_val(ret); | 246 | 4.38M | return ret; | 247 | 4.38M | } | 248 | 4.38M | } | 249 | 0 | ret = zend_string_alloc(len, persistent); | 250 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 251 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 252 | 0 | GC_DELREF(s); | 253 | 0 | } | 254 | 0 | return ret; | 255 | 4.38M | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_realloc Unexecuted instantiation: fuzzer-parser.c:zend_string_realloc Unexecuted instantiation: fuzzer-sapi.c:zend_string_realloc Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_realloc Unexecuted instantiation: fuzzer-exif.c:zend_string_realloc Unexecuted instantiation: fuzzer-unserialize.c:zend_string_realloc Unexecuted instantiation: fuzzer-function-jit.c:zend_string_realloc Unexecuted instantiation: fuzzer-json.c:zend_string_realloc Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_realloc Unexecuted instantiation: fuzzer-execute.c:zend_string_realloc |
256 | | |
257 | | static zend_always_inline zend_string *zend_string_extend(zend_string *s, size_t len, bool persistent) |
258 | 2.79M | { |
259 | 2.79M | zend_string *ret; |
260 | | |
261 | 2.79M | ZEND_ASSERT(len >= ZSTR_LEN(s)); |
262 | 2.79M | if (!ZSTR_IS_INTERNED(s)) { |
263 | 2.37M | if (EXPECTED(GC_REFCOUNT(s) == 1)) { |
264 | 2.01M | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); |
265 | 2.01M | ZSTR_LEN(ret) = len; |
266 | 2.01M | zend_string_forget_hash_val(ret); |
267 | 2.01M | return ret; |
268 | 2.01M | } |
269 | 2.37M | } |
270 | 777k | ret = zend_string_alloc(len, persistent); |
271 | 777k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); |
272 | 777k | if (!ZSTR_IS_INTERNED(s)) { |
273 | 357k | GC_DELREF(s); |
274 | 357k | } |
275 | 777k | return ret; |
276 | 2.79M | } 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 | 258 | 111 | { | 259 | 111 | zend_string *ret; | 260 | | | 261 | 111 | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 262 | 111 | if (!ZSTR_IS_INTERNED(s)) { | 263 | 111 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 264 | 111 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 265 | 111 | ZSTR_LEN(ret) = len; | 266 | 111 | zend_string_forget_hash_val(ret); | 267 | 111 | return ret; | 268 | 111 | } | 269 | 111 | } | 270 | 0 | ret = zend_string_alloc(len, persistent); | 271 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 272 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 273 | 0 | GC_DELREF(s); | 274 | 0 | } | 275 | 0 | return ret; | 276 | 111 | } |
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 | 258 | 77 | { | 259 | 77 | zend_string *ret; | 260 | | | 261 | 77 | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 262 | 77 | if (!ZSTR_IS_INTERNED(s)) { | 263 | 77 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 264 | 77 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 265 | 77 | ZSTR_LEN(ret) = len; | 266 | 77 | zend_string_forget_hash_val(ret); | 267 | 77 | return ret; | 268 | 77 | } | 269 | 77 | } | 270 | 0 | ret = zend_string_alloc(len, persistent); | 271 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 272 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 273 | 0 | GC_DELREF(s); | 274 | 0 | } | 275 | 0 | return ret; | 276 | 77 | } |
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: 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 | 258 | 4.11k | { | 259 | 4.11k | zend_string *ret; | 260 | | | 261 | 4.11k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 262 | 4.11k | if (!ZSTR_IS_INTERNED(s)) { | 263 | 4.11k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 264 | 3.90k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 265 | 3.90k | ZSTR_LEN(ret) = len; | 266 | 3.90k | zend_string_forget_hash_val(ret); | 267 | 3.90k | return ret; | 268 | 3.90k | } | 269 | 4.11k | } | 270 | 214 | ret = zend_string_alloc(len, persistent); | 271 | 214 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 272 | 214 | if (!ZSTR_IS_INTERNED(s)) { | 273 | 214 | GC_DELREF(s); | 274 | 214 | } | 275 | 214 | return ret; | 276 | 4.11k | } |
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_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 | 258 | 1.50k | { | 259 | 1.50k | zend_string *ret; | 260 | | | 261 | 1.50k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 262 | 1.50k | if (!ZSTR_IS_INTERNED(s)) { | 263 | 1.50k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 264 | 1.50k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 265 | 1.50k | ZSTR_LEN(ret) = len; | 266 | 1.50k | zend_string_forget_hash_val(ret); | 267 | 1.50k | return ret; | 268 | 1.50k | } | 269 | 1.50k | } | 270 | 0 | ret = zend_string_alloc(len, persistent); | 271 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 272 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 273 | 0 | GC_DELREF(s); | 274 | 0 | } | 275 | 0 | return ret; | 276 | 1.50k | } |
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 | 258 | 168k | { | 259 | 168k | zend_string *ret; | 260 | | | 261 | 168k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 262 | 168k | if (!ZSTR_IS_INTERNED(s)) { | 263 | 168k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 264 | 168k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 265 | 168k | ZSTR_LEN(ret) = len; | 266 | 168k | zend_string_forget_hash_val(ret); | 267 | 168k | return ret; | 268 | 168k | } | 269 | 168k | } | 270 | 0 | ret = zend_string_alloc(len, persistent); | 271 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 272 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 273 | 0 | GC_DELREF(s); | 274 | 0 | } | 275 | 0 | return ret; | 276 | 168k | } |
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 | 258 | 1.48M | { | 259 | 1.48M | zend_string *ret; | 260 | | | 261 | 1.48M | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 262 | 1.48M | if (!ZSTR_IS_INTERNED(s)) { | 263 | 1.16M | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 264 | 1.16M | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 265 | 1.16M | ZSTR_LEN(ret) = len; | 266 | 1.16M | zend_string_forget_hash_val(ret); | 267 | 1.16M | return ret; | 268 | 1.16M | } | 269 | 1.16M | } | 270 | 325k | ret = zend_string_alloc(len, persistent); | 271 | 325k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 272 | 325k | if (!ZSTR_IS_INTERNED(s)) { | 273 | 0 | GC_DELREF(s); | 274 | 0 | } | 275 | 325k | return ret; | 276 | 1.48M | } |
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 | 258 | 26.1k | { | 259 | 26.1k | zend_string *ret; | 260 | | | 261 | 26.1k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 262 | 26.1k | if (!ZSTR_IS_INTERNED(s)) { | 263 | 16.8k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 264 | 0 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 265 | 0 | ZSTR_LEN(ret) = len; | 266 | 0 | zend_string_forget_hash_val(ret); | 267 | 0 | return ret; | 268 | 0 | } | 269 | 16.8k | } | 270 | 26.1k | ret = zend_string_alloc(len, persistent); | 271 | 26.1k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 272 | 26.1k | if (!ZSTR_IS_INTERNED(s)) { | 273 | 16.8k | GC_DELREF(s); | 274 | 16.8k | } | 275 | 26.1k | return ret; | 276 | 26.1k | } |
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 | 258 | 1.10M | { | 259 | 1.10M | zend_string *ret; | 260 | | | 261 | 1.10M | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 262 | 1.10M | if (!ZSTR_IS_INTERNED(s)) { | 263 | 1.02M | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 264 | 683k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 265 | 683k | ZSTR_LEN(ret) = len; | 266 | 683k | zend_string_forget_hash_val(ret); | 267 | 683k | return ret; | 268 | 683k | } | 269 | 1.02M | } | 270 | 425k | ret = zend_string_alloc(len, persistent); | 271 | 425k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 272 | 425k | if (!ZSTR_IS_INTERNED(s)) { | 273 | 340k | GC_DELREF(s); | 274 | 340k | } | 275 | 425k | return ret; | 276 | 1.10M | } |
Unexecuted instantiation: zend_property_hooks.c:zend_string_extend Unexecuted instantiation: zend_ptr_stack.c:zend_string_extend Unexecuted instantiation: zend_signal.c:zend_string_extend Unexecuted instantiation: zend_smart_str.c:zend_string_extend Unexecuted instantiation: zend_sort.c:zend_string_extend Unexecuted instantiation: zend_stack.c:zend_string_extend Unexecuted instantiation: zend_stream.c:zend_string_extend Unexecuted instantiation: zend_string.c:zend_string_extend Unexecuted instantiation: zend_strtod.c:zend_string_extend Unexecuted instantiation: zend_system_id.c:zend_string_extend Unexecuted instantiation: zend_variables.c:zend_string_extend Unexecuted instantiation: zend_virtual_cwd.c:zend_string_extend Unexecuted instantiation: zend_vm_opcodes.c:zend_string_extend Unexecuted instantiation: zend_weakrefs.c:zend_string_extend Unexecuted instantiation: zend.c:zend_string_extend Unexecuted instantiation: internal_functions_cli.c:zend_string_extend Unexecuted instantiation: fuzzer-parser.c:zend_string_extend Unexecuted instantiation: fuzzer-sapi.c:zend_string_extend Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_extend Unexecuted instantiation: fuzzer-exif.c:zend_string_extend Unexecuted instantiation: fuzzer-unserialize.c:zend_string_extend Unexecuted instantiation: fuzzer-function-jit.c:zend_string_extend Unexecuted instantiation: fuzzer-json.c:zend_string_extend Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_extend Unexecuted instantiation: fuzzer-execute.c:zend_string_extend |
277 | | |
278 | | static zend_always_inline zend_string *zend_string_truncate(zend_string *s, size_t len, bool persistent) |
279 | 1.18k | { |
280 | 1.18k | zend_string *ret; |
281 | | |
282 | 1.18k | ZEND_ASSERT(len <= ZSTR_LEN(s)); |
283 | 1.18k | if (!ZSTR_IS_INTERNED(s)) { |
284 | 1.18k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { |
285 | 1.18k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); |
286 | 1.18k | ZSTR_LEN(ret) = len; |
287 | 1.18k | zend_string_forget_hash_val(ret); |
288 | 1.18k | return ret; |
289 | 1.18k | } |
290 | 1.18k | } |
291 | 0 | ret = zend_string_alloc(len, persistent); |
292 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), len + 1); |
293 | 0 | if (!ZSTR_IS_INTERNED(s)) { |
294 | 0 | GC_DELREF(s); |
295 | 0 | } |
296 | 0 | return ret; |
297 | 1.18k | } 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 | 279 | 146 | { | 280 | 146 | zend_string *ret; | 281 | | | 282 | 146 | ZEND_ASSERT(len <= ZSTR_LEN(s)); | 283 | 146 | if (!ZSTR_IS_INTERNED(s)) { | 284 | 146 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 285 | 146 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 286 | 146 | ZSTR_LEN(ret) = len; | 287 | 146 | zend_string_forget_hash_val(ret); | 288 | 146 | return ret; | 289 | 146 | } | 290 | 146 | } | 291 | 0 | ret = zend_string_alloc(len, persistent); | 292 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), len + 1); | 293 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 294 | 0 | GC_DELREF(s); | 295 | 0 | } | 296 | 0 | return ret; | 297 | 146 | } |
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 | 279 | 1.04k | { | 280 | 1.04k | zend_string *ret; | 281 | | | 282 | 1.04k | ZEND_ASSERT(len <= ZSTR_LEN(s)); | 283 | 1.04k | if (!ZSTR_IS_INTERNED(s)) { | 284 | 1.04k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 285 | 1.04k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 286 | 1.04k | ZSTR_LEN(ret) = len; | 287 | 1.04k | zend_string_forget_hash_val(ret); | 288 | 1.04k | return ret; | 289 | 1.04k | } | 290 | 1.04k | } | 291 | 0 | ret = zend_string_alloc(len, persistent); | 292 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), len + 1); | 293 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 294 | 0 | GC_DELREF(s); | 295 | 0 | } | 296 | 0 | return ret; | 297 | 1.04k | } |
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: 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_builtin_functions.c:zend_string_truncate Unexecuted instantiation: zend_call_stack.c:zend_string_truncate Unexecuted instantiation: zend_closures.c:zend_string_truncate Unexecuted instantiation: zend_compile.c:zend_string_truncate Unexecuted instantiation: zend_constants.c:zend_string_truncate Unexecuted instantiation: zend_cpuinfo.c:zend_string_truncate Unexecuted instantiation: zend_default_classes.c:zend_string_truncate Unexecuted instantiation: zend_dtrace.c:zend_string_truncate Unexecuted instantiation: zend_enum.c:zend_string_truncate Unexecuted instantiation: zend_exceptions.c:zend_string_truncate Unexecuted instantiation: zend_execute_API.c:zend_string_truncate Unexecuted instantiation: zend_execute.c:zend_string_truncate Unexecuted instantiation: zend_extensions.c:zend_string_truncate Unexecuted instantiation: zend_fibers.c:zend_string_truncate Unexecuted instantiation: zend_float.c:zend_string_truncate Unexecuted instantiation: zend_gc.c:zend_string_truncate Unexecuted instantiation: zend_gdb.c:zend_string_truncate Unexecuted instantiation: zend_generators.c:zend_string_truncate Unexecuted instantiation: zend_hash.c:zend_string_truncate Unexecuted instantiation: zend_highlight.c:zend_string_truncate Unexecuted instantiation: zend_hrtime.c:zend_string_truncate Unexecuted instantiation: zend_inheritance.c:zend_string_truncate Unexecuted instantiation: zend_ini_parser.c:zend_string_truncate Unexecuted instantiation: zend_ini_scanner.c:zend_string_truncate Unexecuted instantiation: zend_ini.c:zend_string_truncate Unexecuted instantiation: zend_interfaces.c:zend_string_truncate Unexecuted instantiation: zend_iterators.c:zend_string_truncate Unexecuted instantiation: zend_language_parser.c:zend_string_truncate Unexecuted instantiation: zend_language_scanner.c:zend_string_truncate Unexecuted instantiation: zend_lazy_objects.c:zend_string_truncate Unexecuted instantiation: zend_list.c:zend_string_truncate Unexecuted instantiation: zend_llist.c:zend_string_truncate Unexecuted instantiation: zend_multibyte.c:zend_string_truncate Unexecuted instantiation: zend_object_handlers.c:zend_string_truncate Unexecuted instantiation: zend_objects_API.c:zend_string_truncate Unexecuted instantiation: zend_objects.c:zend_string_truncate Unexecuted instantiation: zend_observer.c:zend_string_truncate Unexecuted instantiation: zend_opcode.c:zend_string_truncate Unexecuted instantiation: zend_operators.c:zend_string_truncate Unexecuted instantiation: zend_property_hooks.c:zend_string_truncate Unexecuted instantiation: zend_ptr_stack.c:zend_string_truncate Unexecuted instantiation: zend_signal.c:zend_string_truncate Unexecuted instantiation: zend_smart_str.c:zend_string_truncate Unexecuted instantiation: zend_sort.c:zend_string_truncate Unexecuted instantiation: zend_stack.c:zend_string_truncate Unexecuted instantiation: zend_stream.c:zend_string_truncate Unexecuted instantiation: zend_string.c:zend_string_truncate Unexecuted instantiation: zend_strtod.c:zend_string_truncate Unexecuted instantiation: zend_system_id.c:zend_string_truncate Unexecuted instantiation: zend_variables.c:zend_string_truncate Unexecuted instantiation: zend_virtual_cwd.c:zend_string_truncate Unexecuted instantiation: zend_vm_opcodes.c:zend_string_truncate Unexecuted instantiation: zend_weakrefs.c:zend_string_truncate Unexecuted instantiation: zend.c:zend_string_truncate Unexecuted instantiation: internal_functions_cli.c:zend_string_truncate Unexecuted instantiation: fuzzer-parser.c:zend_string_truncate Unexecuted instantiation: fuzzer-sapi.c:zend_string_truncate Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_truncate Unexecuted instantiation: fuzzer-exif.c:zend_string_truncate Unexecuted instantiation: fuzzer-unserialize.c:zend_string_truncate Unexecuted instantiation: fuzzer-function-jit.c:zend_string_truncate Unexecuted instantiation: fuzzer-json.c:zend_string_truncate Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_truncate Unexecuted instantiation: fuzzer-execute.c:zend_string_truncate |
298 | | |
299 | | static zend_always_inline zend_string *zend_string_safe_realloc(zend_string *s, size_t n, size_t m, size_t l, bool persistent) |
300 | 3.68k | { |
301 | 3.68k | zend_string *ret; |
302 | | |
303 | 3.68k | if (!ZSTR_IS_INTERNED(s)) { |
304 | 3.68k | if (GC_REFCOUNT(s) == 1) { |
305 | 3.68k | ret = (zend_string *)safe_perealloc(s, n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); |
306 | 3.68k | ZSTR_LEN(ret) = (n * m) + l; |
307 | 3.68k | zend_string_forget_hash_val(ret); |
308 | 3.68k | return ret; |
309 | 3.68k | } |
310 | 3.68k | } |
311 | 0 | ret = zend_string_safe_alloc(n, m, l, persistent); |
312 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN((n * m) + l, ZSTR_LEN(s)) + 1); |
313 | 0 | if (!ZSTR_IS_INTERNED(s)) { |
314 | 0 | GC_DELREF(s); |
315 | 0 | } |
316 | 0 | return ret; |
317 | 3.68k | } 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 | 300 | 3.68k | { | 301 | 3.68k | zend_string *ret; | 302 | | | 303 | 3.68k | if (!ZSTR_IS_INTERNED(s)) { | 304 | 3.68k | if (GC_REFCOUNT(s) == 1) { | 305 | 3.68k | ret = (zend_string *)safe_perealloc(s, n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 306 | 3.68k | ZSTR_LEN(ret) = (n * m) + l; | 307 | 3.68k | zend_string_forget_hash_val(ret); | 308 | 3.68k | return ret; | 309 | 3.68k | } | 310 | 3.68k | } | 311 | 0 | ret = zend_string_safe_alloc(n, m, l, persistent); | 312 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN((n * m) + l, ZSTR_LEN(s)) + 1); | 313 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 314 | 0 | GC_DELREF(s); | 315 | 0 | } | 316 | 0 | return ret; | 317 | 3.68k | } |
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: 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_builtin_functions.c:zend_string_safe_realloc Unexecuted instantiation: zend_call_stack.c:zend_string_safe_realloc Unexecuted instantiation: zend_closures.c:zend_string_safe_realloc Unexecuted instantiation: zend_compile.c:zend_string_safe_realloc Unexecuted instantiation: zend_constants.c:zend_string_safe_realloc Unexecuted instantiation: zend_cpuinfo.c:zend_string_safe_realloc Unexecuted instantiation: zend_default_classes.c:zend_string_safe_realloc Unexecuted instantiation: zend_dtrace.c:zend_string_safe_realloc Unexecuted instantiation: zend_enum.c:zend_string_safe_realloc Unexecuted instantiation: zend_exceptions.c:zend_string_safe_realloc Unexecuted instantiation: zend_execute_API.c:zend_string_safe_realloc Unexecuted instantiation: zend_execute.c:zend_string_safe_realloc Unexecuted instantiation: zend_extensions.c:zend_string_safe_realloc Unexecuted instantiation: zend_fibers.c:zend_string_safe_realloc Unexecuted instantiation: zend_float.c:zend_string_safe_realloc Unexecuted instantiation: zend_gc.c:zend_string_safe_realloc Unexecuted instantiation: zend_gdb.c:zend_string_safe_realloc Unexecuted instantiation: zend_generators.c:zend_string_safe_realloc Unexecuted instantiation: zend_hash.c:zend_string_safe_realloc Unexecuted instantiation: zend_highlight.c:zend_string_safe_realloc Unexecuted instantiation: zend_hrtime.c:zend_string_safe_realloc Unexecuted instantiation: zend_inheritance.c:zend_string_safe_realloc Unexecuted instantiation: zend_ini_parser.c:zend_string_safe_realloc Unexecuted instantiation: zend_ini_scanner.c:zend_string_safe_realloc Unexecuted instantiation: zend_ini.c:zend_string_safe_realloc Unexecuted instantiation: zend_interfaces.c:zend_string_safe_realloc Unexecuted instantiation: zend_iterators.c:zend_string_safe_realloc Unexecuted instantiation: zend_language_parser.c:zend_string_safe_realloc Unexecuted instantiation: zend_language_scanner.c:zend_string_safe_realloc Unexecuted instantiation: zend_lazy_objects.c:zend_string_safe_realloc Unexecuted instantiation: zend_list.c:zend_string_safe_realloc Unexecuted instantiation: zend_llist.c:zend_string_safe_realloc Unexecuted instantiation: zend_multibyte.c:zend_string_safe_realloc Unexecuted instantiation: zend_object_handlers.c:zend_string_safe_realloc Unexecuted instantiation: zend_objects_API.c:zend_string_safe_realloc Unexecuted instantiation: zend_objects.c:zend_string_safe_realloc Unexecuted instantiation: zend_observer.c:zend_string_safe_realloc Unexecuted instantiation: zend_opcode.c:zend_string_safe_realloc Unexecuted instantiation: zend_operators.c:zend_string_safe_realloc Unexecuted instantiation: zend_property_hooks.c:zend_string_safe_realloc Unexecuted instantiation: zend_ptr_stack.c:zend_string_safe_realloc Unexecuted instantiation: zend_signal.c:zend_string_safe_realloc Unexecuted instantiation: zend_smart_str.c:zend_string_safe_realloc Unexecuted instantiation: zend_sort.c:zend_string_safe_realloc Unexecuted instantiation: zend_stack.c:zend_string_safe_realloc Unexecuted instantiation: zend_stream.c:zend_string_safe_realloc Unexecuted instantiation: zend_string.c:zend_string_safe_realloc Unexecuted instantiation: zend_strtod.c:zend_string_safe_realloc Unexecuted instantiation: zend_system_id.c:zend_string_safe_realloc Unexecuted instantiation: zend_variables.c:zend_string_safe_realloc Unexecuted instantiation: zend_virtual_cwd.c:zend_string_safe_realloc Unexecuted instantiation: zend_vm_opcodes.c:zend_string_safe_realloc Unexecuted instantiation: zend_weakrefs.c:zend_string_safe_realloc Unexecuted instantiation: zend.c:zend_string_safe_realloc Unexecuted instantiation: internal_functions_cli.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-parser.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-sapi.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-exif.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-unserialize.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-function-jit.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-json.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-execute.c:zend_string_safe_realloc |
318 | | |
319 | | static zend_always_inline void zend_string_free(zend_string *s) |
320 | 2.00M | { |
321 | 2.00M | if (!ZSTR_IS_INTERNED(s)) { |
322 | 1.75M | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); |
323 | 1.75M | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); |
324 | 1.75M | } |
325 | 2.00M | } Unexecuted instantiation: php_date.c:zend_string_free Unexecuted instantiation: astro.c:zend_string_free Unexecuted instantiation: dow.c:zend_string_free Unexecuted instantiation: parse_date.c:zend_string_free Unexecuted instantiation: parse_tz.c:zend_string_free Unexecuted instantiation: parse_posix.c:zend_string_free Unexecuted instantiation: timelib.c:zend_string_free Unexecuted instantiation: tm2unixtime.c:zend_string_free Unexecuted instantiation: unixtime2tm.c:zend_string_free Unexecuted instantiation: parse_iso_intervals.c:zend_string_free Unexecuted instantiation: interval.c:zend_string_free Unexecuted instantiation: php_pcre.c:zend_string_free Unexecuted instantiation: exif.c:zend_string_free Unexecuted instantiation: hash_adler32.c:zend_string_free Unexecuted instantiation: hash_crc32.c:zend_string_free Unexecuted instantiation: hash_fnv.c:zend_string_free Unexecuted instantiation: hash_gost.c:zend_string_free Unexecuted instantiation: hash_haval.c:zend_string_free Unexecuted instantiation: hash_joaat.c:zend_string_free Unexecuted instantiation: hash_md.c:zend_string_free Unexecuted instantiation: hash_murmur.c:zend_string_free Unexecuted instantiation: hash_ripemd.c:zend_string_free Unexecuted instantiation: hash_sha_ni.c:zend_string_free Unexecuted instantiation: hash_sha_sse2.c:zend_string_free Unexecuted instantiation: hash_sha.c:zend_string_free Unexecuted instantiation: hash_sha3.c:zend_string_free Unexecuted instantiation: hash_snefru.c:zend_string_free Unexecuted instantiation: hash_tiger.c:zend_string_free Unexecuted instantiation: hash_whirlpool.c:zend_string_free Unexecuted instantiation: hash_xxhash.c:zend_string_free Unexecuted instantiation: hash.c:zend_string_free Unexecuted instantiation: json_encoder.c:zend_string_free Unexecuted instantiation: json_parser.tab.c:zend_string_free Unexecuted instantiation: json_scanner.c:zend_string_free Unexecuted instantiation: json.c:zend_string_free Unexecuted instantiation: php_lexbor.c:zend_string_free Unexecuted instantiation: shared_alloc_mmap.c:zend_string_free Unexecuted instantiation: shared_alloc_posix.c:zend_string_free Unexecuted instantiation: shared_alloc_shm.c:zend_string_free Unexecuted instantiation: zend_accelerator_api.c:zend_string_free Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_free Unexecuted instantiation: zend_accelerator_debug.c:zend_string_free Unexecuted instantiation: zend_accelerator_hash.c:zend_string_free Unexecuted instantiation: zend_accelerator_module.c:zend_string_free Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_string_free Unexecuted instantiation: zend_file_cache.c:zend_string_free Unexecuted instantiation: zend_persist_calc.c:zend_string_free Unexecuted instantiation: zend_persist.c:zend_string_free Unexecuted instantiation: zend_shared_alloc.c:zend_string_free Unexecuted instantiation: ZendAccelerator.c:zend_string_free Unexecuted instantiation: ir_cfg.c:zend_string_free Unexecuted instantiation: ir_check.c:zend_string_free Unexecuted instantiation: ir_dump.c:zend_string_free Unexecuted instantiation: ir_emit.c:zend_string_free Unexecuted instantiation: ir_gcm.c:zend_string_free Unexecuted instantiation: ir_gdb.c:zend_string_free Unexecuted instantiation: ir_patch.c:zend_string_free Unexecuted instantiation: ir_perf.c:zend_string_free Unexecuted instantiation: ir_ra.c:zend_string_free Unexecuted instantiation: ir_save.c:zend_string_free Unexecuted instantiation: ir_sccp.c:zend_string_free Unexecuted instantiation: ir_strtab.c:zend_string_free Unexecuted instantiation: ir.c:zend_string_free Unexecuted instantiation: zend_jit_vm_helpers.c:zend_string_free Unexecuted instantiation: zend_jit.c:zend_string_free Unexecuted instantiation: csprng.c:zend_string_free Unexecuted instantiation: engine_mt19937.c:zend_string_free Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_free Unexecuted instantiation: engine_secure.c:zend_string_free Unexecuted instantiation: engine_user.c:zend_string_free Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_free Unexecuted instantiation: gammasection.c:zend_string_free Unexecuted instantiation: random.c:zend_string_free Unexecuted instantiation: randomizer.c:zend_string_free Unexecuted instantiation: zend_utils.c:zend_string_free Unexecuted instantiation: php_reflection.c:zend_string_free Unexecuted instantiation: php_spl.c:zend_string_free Unexecuted instantiation: spl_array.c:zend_string_free Unexecuted instantiation: spl_directory.c:zend_string_free Unexecuted instantiation: spl_dllist.c:zend_string_free Unexecuted instantiation: spl_exceptions.c:zend_string_free Unexecuted instantiation: spl_fixedarray.c:zend_string_free Unexecuted instantiation: spl_functions.c:zend_string_free Unexecuted instantiation: spl_heap.c:zend_string_free Unexecuted instantiation: spl_iterators.c:zend_string_free Unexecuted instantiation: spl_observer.c:zend_string_free Unexecuted instantiation: array.c:zend_string_free Unexecuted instantiation: assert.c:zend_string_free Unexecuted instantiation: base64.c:zend_string_free Unexecuted instantiation: basic_functions.c:zend_string_free Unexecuted instantiation: browscap.c:zend_string_free Unexecuted instantiation: crc32_x86.c:zend_string_free Unexecuted instantiation: crc32.c:zend_string_free Unexecuted instantiation: credits.c:zend_string_free Unexecuted instantiation: crypt.c:zend_string_free Unexecuted instantiation: css.c:zend_string_free Unexecuted instantiation: datetime.c:zend_string_free Unexecuted instantiation: dir.c:zend_string_free Unexecuted instantiation: dl.c:zend_string_free Unexecuted instantiation: dns.c:zend_string_free Unexecuted instantiation: exec.c:zend_string_free Unexecuted instantiation: file.c:zend_string_free Unexecuted instantiation: filestat.c:zend_string_free Unexecuted instantiation: filters.c:zend_string_free Unexecuted instantiation: flock_compat.c:zend_string_free Unexecuted instantiation: formatted_print.c:zend_string_free Unexecuted instantiation: fsock.c:zend_string_free Unexecuted instantiation: ftok.c:zend_string_free Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_free Unexecuted instantiation: head.c:zend_string_free Unexecuted instantiation: hrtime.c:zend_string_free Unexecuted instantiation: html.c:zend_string_free Unexecuted instantiation: http_fopen_wrapper.c:zend_string_free Unexecuted instantiation: http.c:zend_string_free Unexecuted instantiation: image.c:zend_string_free Unexecuted instantiation: incomplete_class.c:zend_string_free Line | Count | Source | 320 | 9 | { | 321 | 9 | if (!ZSTR_IS_INTERNED(s)) { | 322 | 9 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 323 | 9 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 324 | 9 | } | 325 | 9 | } |
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 | 320 | 1.02k | { | 321 | 1.02k | if (!ZSTR_IS_INTERNED(s)) { | 322 | 1.02k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 323 | 1.02k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 324 | 1.02k | } | 325 | 1.02k | } |
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 | 320 | 464k | { | 321 | 464k | if (!ZSTR_IS_INTERNED(s)) { | 322 | 464k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 323 | 464k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 324 | 464k | } | 325 | 464k | } |
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 streams.c:zend_string_free Line | Count | Source | 320 | 6 | { | 321 | 6 | if (!ZSTR_IS_INTERNED(s)) { | 322 | 6 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 323 | 6 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 324 | 6 | } | 325 | 6 | } |
Unexecuted instantiation: transports.c:zend_string_free Unexecuted instantiation: userspace.c:zend_string_free Unexecuted instantiation: xp_socket.c:zend_string_free Unexecuted instantiation: block_pass.c:zend_string_free Unexecuted instantiation: compact_literals.c:zend_string_free Unexecuted instantiation: compact_vars.c:zend_string_free Unexecuted instantiation: dce.c:zend_string_free Unexecuted instantiation: dfa_pass.c:zend_string_free Unexecuted instantiation: escape_analysis.c:zend_string_free Unexecuted instantiation: nop_removal.c:zend_string_free Unexecuted instantiation: optimize_func_calls.c:zend_string_free Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_free Unexecuted instantiation: pass1.c:zend_string_free Unexecuted instantiation: pass3.c:zend_string_free Unexecuted instantiation: sccp.c:zend_string_free Unexecuted instantiation: scdf.c:zend_string_free Unexecuted instantiation: zend_call_graph.c:zend_string_free Unexecuted instantiation: zend_cfg.c:zend_string_free Unexecuted instantiation: zend_dfg.c:zend_string_free Unexecuted instantiation: zend_dump.c:zend_string_free Unexecuted instantiation: zend_func_info.c:zend_string_free Unexecuted instantiation: zend_inference.c:zend_string_free Unexecuted instantiation: zend_optimizer.c:zend_string_free Unexecuted instantiation: zend_ssa.c:zend_string_free Unexecuted instantiation: zend_alloc.c:zend_string_free Unexecuted instantiation: zend_API.c:zend_string_free Unexecuted instantiation: zend_ast.c:zend_string_free Unexecuted instantiation: zend_attributes.c:zend_string_free Unexecuted instantiation: zend_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 | 320 | 1.54M | { | 321 | 1.54M | if (!ZSTR_IS_INTERNED(s)) { | 322 | 1.28M | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 323 | 1.28M | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 324 | 1.28M | } | 325 | 1.54M | } |
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 | 320 | 52 | { | 321 | 52 | if (!ZSTR_IS_INTERNED(s)) { | 322 | 52 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 323 | 52 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 324 | 52 | } | 325 | 52 | } |
Unexecuted instantiation: zend_property_hooks.c:zend_string_free Unexecuted instantiation: zend_ptr_stack.c:zend_string_free Unexecuted instantiation: zend_signal.c:zend_string_free Unexecuted instantiation: zend_smart_str.c:zend_string_free Unexecuted instantiation: zend_sort.c:zend_string_free Unexecuted instantiation: zend_stack.c:zend_string_free Unexecuted instantiation: zend_stream.c:zend_string_free Unexecuted instantiation: zend_string.c:zend_string_free Unexecuted instantiation: zend_strtod.c:zend_string_free Unexecuted instantiation: zend_system_id.c:zend_string_free Unexecuted instantiation: zend_variables.c:zend_string_free Unexecuted instantiation: zend_virtual_cwd.c:zend_string_free Unexecuted instantiation: zend_vm_opcodes.c:zend_string_free Unexecuted instantiation: zend_weakrefs.c:zend_string_free Unexecuted instantiation: zend.c:zend_string_free Unexecuted instantiation: internal_functions_cli.c:zend_string_free Unexecuted instantiation: fuzzer-parser.c:zend_string_free Unexecuted instantiation: fuzzer-sapi.c:zend_string_free Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_free Unexecuted instantiation: fuzzer-exif.c:zend_string_free Unexecuted instantiation: fuzzer-unserialize.c:zend_string_free Unexecuted instantiation: fuzzer-function-jit.c:zend_string_free Unexecuted instantiation: fuzzer-json.c:zend_string_free Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_free Unexecuted instantiation: fuzzer-execute.c:zend_string_free |
326 | | |
327 | | static zend_always_inline void zend_string_efree(zend_string *s) |
328 | 184k | { |
329 | 184k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); |
330 | 184k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); |
331 | 184k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); |
332 | 184k | efree(s); |
333 | 184k | } Unexecuted instantiation: php_date.c:zend_string_efree Unexecuted instantiation: astro.c:zend_string_efree Unexecuted instantiation: dow.c:zend_string_efree Unexecuted instantiation: parse_date.c:zend_string_efree Unexecuted instantiation: parse_tz.c:zend_string_efree Unexecuted instantiation: parse_posix.c:zend_string_efree Unexecuted instantiation: timelib.c:zend_string_efree Unexecuted instantiation: tm2unixtime.c:zend_string_efree Unexecuted instantiation: unixtime2tm.c:zend_string_efree Unexecuted instantiation: parse_iso_intervals.c:zend_string_efree Unexecuted instantiation: interval.c:zend_string_efree Unexecuted instantiation: php_pcre.c:zend_string_efree Unexecuted instantiation: exif.c:zend_string_efree Unexecuted instantiation: hash_adler32.c:zend_string_efree Unexecuted instantiation: hash_crc32.c:zend_string_efree Unexecuted instantiation: hash_fnv.c:zend_string_efree Unexecuted instantiation: hash_gost.c:zend_string_efree Unexecuted instantiation: hash_haval.c:zend_string_efree Unexecuted instantiation: hash_joaat.c:zend_string_efree Unexecuted instantiation: hash_md.c:zend_string_efree Unexecuted instantiation: hash_murmur.c:zend_string_efree Unexecuted instantiation: hash_ripemd.c:zend_string_efree Unexecuted instantiation: hash_sha_ni.c:zend_string_efree Unexecuted instantiation: hash_sha_sse2.c:zend_string_efree Unexecuted instantiation: hash_sha.c:zend_string_efree Unexecuted instantiation: hash_sha3.c:zend_string_efree Unexecuted instantiation: hash_snefru.c:zend_string_efree Unexecuted instantiation: hash_tiger.c:zend_string_efree Unexecuted instantiation: hash_whirlpool.c:zend_string_efree Unexecuted instantiation: hash_xxhash.c:zend_string_efree Line | Count | Source | 328 | 1.86k | { | 329 | 1.86k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 1.86k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 1.86k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 1.86k | efree(s); | 333 | 1.86k | } |
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 php_reflection.c:zend_string_efree Line | Count | Source | 328 | 1 | { | 329 | 1 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 1 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 1 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 1 | efree(s); | 333 | 1 | } |
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 | 328 | 3.99k | { | 329 | 3.99k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 3.99k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 3.99k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 3.99k | efree(s); | 333 | 3.99k | } |
Unexecuted instantiation: fsock.c:zend_string_efree Unexecuted instantiation: ftok.c:zend_string_efree Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_efree Unexecuted instantiation: head.c:zend_string_efree Unexecuted instantiation: hrtime.c:zend_string_efree Line | Count | Source | 328 | 239 | { | 329 | 239 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 239 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 239 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 239 | efree(s); | 333 | 239 | } |
Unexecuted instantiation: http_fopen_wrapper.c:zend_string_efree Unexecuted instantiation: http.c:zend_string_efree Unexecuted instantiation: image.c:zend_string_efree Unexecuted instantiation: incomplete_class.c:zend_string_efree Line | Count | Source | 328 | 63 | { | 329 | 63 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 63 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 63 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 63 | efree(s); | 333 | 63 | } |
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 | 328 | 184 | { | 329 | 184 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 184 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 184 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 184 | efree(s); | 333 | 184 | } |
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: 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 | 328 | 64 | { | 329 | 64 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 64 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 64 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 64 | efree(s); | 333 | 64 | } |
Unexecuted instantiation: zend_ast.c:zend_string_efree Unexecuted instantiation: zend_attributes.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 | 328 | 826 | { | 329 | 826 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 826 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 826 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 826 | efree(s); | 333 | 826 | } |
zend_constants.c:zend_string_efree Line | Count | Source | 328 | 60.6k | { | 329 | 60.6k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 60.6k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 60.6k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 60.6k | efree(s); | 333 | 60.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 | 328 | 770 | { | 329 | 770 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 770 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 770 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 770 | efree(s); | 333 | 770 | } |
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 | 328 | 115k | { | 329 | 115k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 115k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 115k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 115k | efree(s); | 333 | 115k | } |
Unexecuted instantiation: zend_lazy_objects.c:zend_string_efree Unexecuted instantiation: zend_list.c:zend_string_efree Unexecuted instantiation: zend_llist.c:zend_string_efree Unexecuted instantiation: zend_multibyte.c:zend_string_efree Unexecuted instantiation: zend_object_handlers.c:zend_string_efree Unexecuted instantiation: zend_objects_API.c:zend_string_efree Unexecuted instantiation: zend_objects.c:zend_string_efree Unexecuted instantiation: zend_observer.c:zend_string_efree Unexecuted instantiation: zend_opcode.c:zend_string_efree Unexecuted instantiation: zend_operators.c:zend_string_efree Unexecuted instantiation: zend_property_hooks.c:zend_string_efree Unexecuted instantiation: zend_ptr_stack.c:zend_string_efree Unexecuted instantiation: zend_signal.c:zend_string_efree Unexecuted instantiation: zend_smart_str.c:zend_string_efree Unexecuted instantiation: zend_sort.c:zend_string_efree Unexecuted instantiation: zend_stack.c:zend_string_efree Unexecuted instantiation: zend_stream.c:zend_string_efree Unexecuted instantiation: zend_string.c:zend_string_efree Unexecuted instantiation: zend_strtod.c:zend_string_efree Unexecuted instantiation: zend_system_id.c:zend_string_efree Unexecuted instantiation: zend_variables.c:zend_string_efree Unexecuted instantiation: zend_virtual_cwd.c:zend_string_efree Unexecuted instantiation: zend_vm_opcodes.c:zend_string_efree Unexecuted instantiation: zend_weakrefs.c:zend_string_efree Unexecuted instantiation: zend.c:zend_string_efree Unexecuted instantiation: internal_functions_cli.c:zend_string_efree Unexecuted instantiation: fuzzer-parser.c:zend_string_efree Unexecuted instantiation: fuzzer-sapi.c:zend_string_efree Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_efree Unexecuted instantiation: fuzzer-exif.c:zend_string_efree Unexecuted instantiation: fuzzer-unserialize.c:zend_string_efree Unexecuted instantiation: fuzzer-function-jit.c:zend_string_efree Unexecuted instantiation: fuzzer-json.c:zend_string_efree Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_efree Unexecuted instantiation: fuzzer-execute.c:zend_string_efree |
334 | | |
335 | | static zend_always_inline void zend_string_release(zend_string *s) |
336 | 24.9M | { |
337 | 24.9M | if (!ZSTR_IS_INTERNED(s)) { |
338 | 15.8M | if (GC_DELREF(s) == 0) { |
339 | 8.48M | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); |
340 | 8.48M | } |
341 | 15.8M | } |
342 | 24.9M | } php_date.c:zend_string_release Line | Count | Source | 336 | 818 | { | 337 | 818 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 164 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 162 | } | 341 | 164 | } | 342 | 818 | } |
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 | 336 | 420 | { | 337 | 420 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 420 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 0 | } | 341 | 420 | } | 342 | 420 | } |
Unexecuted instantiation: exif.c:zend_string_release Unexecuted instantiation: hash_adler32.c:zend_string_release Unexecuted instantiation: hash_crc32.c:zend_string_release Unexecuted instantiation: hash_fnv.c:zend_string_release Unexecuted instantiation: hash_gost.c:zend_string_release Unexecuted instantiation: hash_haval.c:zend_string_release Unexecuted instantiation: hash_joaat.c:zend_string_release Unexecuted instantiation: hash_md.c:zend_string_release Unexecuted instantiation: hash_murmur.c:zend_string_release Unexecuted instantiation: hash_ripemd.c:zend_string_release Unexecuted instantiation: hash_sha_ni.c:zend_string_release Unexecuted instantiation: hash_sha_sse2.c:zend_string_release Unexecuted instantiation: hash_sha.c:zend_string_release Unexecuted instantiation: hash_sha3.c:zend_string_release Unexecuted instantiation: hash_snefru.c:zend_string_release Unexecuted instantiation: hash_tiger.c:zend_string_release Unexecuted instantiation: hash_whirlpool.c:zend_string_release Unexecuted instantiation: hash_xxhash.c:zend_string_release hash.c:zend_string_release Line | Count | Source | 336 | 3.98k | { | 337 | 3.98k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 3.98k | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 226 | } | 341 | 3.98k | } | 342 | 3.98k | } |
Unexecuted instantiation: json_encoder.c:zend_string_release Unexecuted instantiation: json_parser.tab.c:zend_string_release Unexecuted instantiation: json_scanner.c:zend_string_release Unexecuted instantiation: json.c:zend_string_release Unexecuted instantiation: php_lexbor.c:zend_string_release Unexecuted instantiation: shared_alloc_mmap.c:zend_string_release Unexecuted instantiation: shared_alloc_posix.c:zend_string_release Unexecuted instantiation: shared_alloc_shm.c:zend_string_release Unexecuted instantiation: zend_accelerator_api.c:zend_string_release Unexecuted instantiation: zend_accelerator_blacklist.c:zend_string_release Unexecuted instantiation: zend_accelerator_debug.c:zend_string_release Unexecuted instantiation: zend_accelerator_hash.c:zend_string_release zend_accelerator_module.c:zend_string_release Line | Count | Source | 336 | 9 | { | 337 | 9 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 9 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 9 | } | 341 | 9 | } | 342 | 9 | } |
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 | 336 | 4.08M | { | 337 | 4.08M | if (!ZSTR_IS_INTERNED(s)) { | 338 | 2.31M | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 1.57M | } | 341 | 2.31M | } | 342 | 4.08M | } |
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 random.c:zend_string_release Line | Count | Source | 336 | 16 | { | 337 | 16 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 16 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 16 | } | 341 | 16 | } | 342 | 16 | } |
Unexecuted instantiation: randomizer.c:zend_string_release Unexecuted instantiation: zend_utils.c:zend_string_release php_reflection.c:zend_string_release Line | Count | Source | 336 | 3.23k | { | 337 | 3.23k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 487 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 442 | } | 341 | 487 | } | 342 | 3.23k | } |
Unexecuted instantiation: php_spl.c:zend_string_release spl_array.c:zend_string_release Line | Count | Source | 336 | 80 | { | 337 | 80 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 0 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 0 | } | 341 | 0 | } | 342 | 80 | } |
spl_directory.c:zend_string_release Line | Count | Source | 336 | 266 | { | 337 | 266 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 8 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 6 | } | 341 | 8 | } | 342 | 266 | } |
spl_dllist.c:zend_string_release Line | Count | Source | 336 | 64 | { | 337 | 64 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 0 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 0 | } | 341 | 0 | } | 342 | 64 | } |
Unexecuted instantiation: spl_exceptions.c:zend_string_release Unexecuted instantiation: spl_fixedarray.c:zend_string_release Unexecuted instantiation: spl_functions.c:zend_string_release spl_heap.c:zend_string_release Line | Count | Source | 336 | 48 | { | 337 | 48 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 0 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 0 | } | 341 | 0 | } | 342 | 48 | } |
spl_iterators.c:zend_string_release Line | Count | Source | 336 | 5.60k | { | 337 | 5.60k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 2.98k | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 2.98k | } | 341 | 2.98k | } | 342 | 5.60k | } |
spl_observer.c:zend_string_release Line | Count | Source | 336 | 64 | { | 337 | 64 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 0 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 0 | } | 341 | 0 | } | 342 | 64 | } |
array.c:zend_string_release Line | Count | Source | 336 | 50 | { | 337 | 50 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 0 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 0 | } | 341 | 0 | } | 342 | 50 | } |
Unexecuted instantiation: assert.c:zend_string_release Unexecuted instantiation: base64.c:zend_string_release basic_functions.c:zend_string_release Line | Count | Source | 336 | 169 | { | 337 | 169 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 119 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 111 | } | 341 | 119 | } | 342 | 169 | } |
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 dir.c:zend_string_release Line | Count | Source | 336 | 16 | { | 337 | 16 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 16 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 16 | } | 341 | 16 | } | 342 | 16 | } |
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 | 336 | 172 | { | 337 | 172 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 172 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 172 | } | 341 | 172 | } | 342 | 172 | } |
Unexecuted instantiation: uuencode.c:zend_string_release Unexecuted instantiation: var_unserializer.c:zend_string_release var.c:zend_string_release Line | Count | Source | 336 | 859 | { | 337 | 859 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 47 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 34 | } | 341 | 47 | } | 342 | 859 | } |
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 php_uri.c:zend_string_release Line | Count | Source | 336 | 48 | { | 337 | 48 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 48 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 48 | } | 341 | 48 | } | 342 | 48 | } |
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 | 336 | 24 | { | 337 | 24 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 24 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 24 | } | 341 | 24 | } | 342 | 24 | } |
Unexecuted instantiation: getopt.c:zend_string_release main.c:zend_string_release Line | Count | Source | 336 | 8.66M | { | 337 | 8.66M | if (!ZSTR_IS_INTERNED(s)) { | 338 | 3.35M | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 2.66M | } | 341 | 3.35M | } | 342 | 8.66M | } |
Unexecuted instantiation: network.c:zend_string_release output.c:zend_string_release Line | Count | Source | 336 | 57.0k | { | 337 | 57.0k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 2.79k | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 1.42k | } | 341 | 2.79k | } | 342 | 57.0k | } |
Unexecuted instantiation: php_content_types.c:zend_string_release Unexecuted instantiation: php_ini_builder.c:zend_string_release Unexecuted instantiation: php_ini.c:zend_string_release Unexecuted instantiation: php_glob.c:zend_string_release Unexecuted instantiation: php_odbc_utils.c:zend_string_release Unexecuted instantiation: php_open_temporary_file.c:zend_string_release Unexecuted instantiation: php_scandir.c:zend_string_release Unexecuted instantiation: php_syslog.c:zend_string_release Unexecuted instantiation: php_ticks.c:zend_string_release Unexecuted instantiation: php_variables.c:zend_string_release Unexecuted instantiation: reentrancy.c:zend_string_release Unexecuted instantiation: rfc1867.c:zend_string_release Unexecuted instantiation: safe_bcmp.c:zend_string_release Unexecuted instantiation: SAPI.c:zend_string_release Unexecuted instantiation: snprintf.c:zend_string_release Unexecuted instantiation: spprintf.c:zend_string_release Unexecuted instantiation: strlcat.c:zend_string_release Unexecuted instantiation: strlcpy.c:zend_string_release Unexecuted instantiation: cast.c:zend_string_release Unexecuted instantiation: filter.c:zend_string_release Unexecuted instantiation: glob_wrapper.c:zend_string_release memory.c:zend_string_release Line | Count | Source | 336 | 6.13k | { | 337 | 6.13k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 6.12k | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 6.12k | } | 341 | 6.12k | } | 342 | 6.13k | } |
Unexecuted instantiation: mmap.c:zend_string_release Unexecuted instantiation: plain_wrapper.c:zend_string_release 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 | 336 | 389 | { | 337 | 389 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 355 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 345 | } | 341 | 355 | } | 342 | 389 | } |
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 | 336 | 37.1k | { | 337 | 37.1k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 3.33k | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 3.19k | } | 341 | 3.33k | } | 342 | 37.1k | } |
zend_ast.c:zend_string_release Line | Count | Source | 336 | 7.14k | { | 337 | 7.14k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 7.05k | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 7.04k | } | 341 | 7.05k | } | 342 | 7.14k | } |
zend_attributes.c:zend_string_release Line | Count | Source | 336 | 1.50M | { | 337 | 1.50M | if (!ZSTR_IS_INTERNED(s)) { | 338 | 1.50M | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 1.49M | } | 341 | 1.50M | } | 342 | 1.50M | } |
zend_builtin_functions.c:zend_string_release Line | Count | Source | 336 | 335 | { | 337 | 335 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 281 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 281 | } | 341 | 281 | } | 342 | 335 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_release zend_closures.c:zend_string_release Line | Count | Source | 336 | 922 | { | 337 | 922 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 60 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 21 | } | 341 | 60 | } | 342 | 922 | } |
zend_compile.c:zend_string_release Line | Count | Source | 336 | 3.49M | { | 337 | 3.49M | if (!ZSTR_IS_INTERNED(s)) { | 338 | 3.46M | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 1.66M | } | 341 | 3.46M | } | 342 | 3.49M | } |
zend_constants.c:zend_string_release Line | Count | Source | 336 | 581 | { | 337 | 581 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 96 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 3 | } | 341 | 96 | } | 342 | 581 | } |
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 | 336 | 733 | { | 337 | 733 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 13 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 13 | } | 341 | 13 | } | 342 | 733 | } |
zend_exceptions.c:zend_string_release Line | Count | Source | 336 | 844k | { | 337 | 844k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 844k | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 0 | } | 341 | 844k | } | 342 | 844k | } |
Unexecuted instantiation: zend_execute_API.c:zend_string_release zend_execute.c:zend_string_release Line | Count | Source | 336 | 14.2k | { | 337 | 14.2k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 8.90k | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 1.39k | } | 341 | 8.90k | } | 342 | 14.2k | } |
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 | 336 | 2.40M | { | 337 | 2.40M | if (!ZSTR_IS_INTERNED(s)) { | 338 | 673k | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 206k | } | 341 | 673k | } | 342 | 2.40M | } |
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 | 336 | 4.60k | { | 337 | 4.60k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 2.14k | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 1.67k | } | 341 | 2.14k | } | 342 | 4.60k | } |
zend_ini_parser.c:zend_string_release Line | Count | Source | 336 | 641k | { | 337 | 641k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 636k | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 418k | } | 341 | 636k | } | 342 | 641k | } |
Unexecuted instantiation: zend_ini_scanner.c:zend_string_release zend_ini.c:zend_string_release Line | Count | Source | 336 | 148k | { | 337 | 148k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 148k | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 74.4k | } | 341 | 148k | } | 342 | 148k | } |
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 | 336 | 26.1k | { | 337 | 26.1k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 26.1k | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 0 | } | 341 | 26.1k | } | 342 | 26.1k | } |
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 | 336 | 267 | { | 337 | 267 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 267 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 221 | } | 341 | 267 | } | 342 | 267 | } |
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 | 336 | 180k | { | 337 | 180k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 137k | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 133k | } | 341 | 137k | } | 342 | 180k | } |
zend_operators.c:zend_string_release Line | Count | Source | 336 | 10.3k | { | 337 | 10.3k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 7.06k | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 5.89k | } | 341 | 7.06k | } | 342 | 10.3k | } |
zend_property_hooks.c:zend_string_release Line | Count | Source | 336 | 55 | { | 337 | 55 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 55 | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 44 | } | 341 | 55 | } | 342 | 55 | } |
Unexecuted instantiation: zend_ptr_stack.c:zend_string_release Unexecuted instantiation: zend_signal.c:zend_string_release Unexecuted instantiation: zend_smart_str.c:zend_string_release Unexecuted instantiation: zend_sort.c:zend_string_release Unexecuted instantiation: zend_stack.c:zend_string_release zend_stream.c:zend_string_release Line | Count | Source | 336 | 300k | { | 337 | 300k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 234k | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 100k | } | 341 | 234k | } | 342 | 300k | } |
zend_string.c:zend_string_release Line | Count | Source | 336 | 4.31k | { | 337 | 4.31k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 4.31k | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 4.12k | } | 341 | 4.31k | } | 342 | 4.31k | } |
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 | 336 | 2.41M | { | 337 | 2.41M | if (!ZSTR_IS_INTERNED(s)) { | 338 | 2.41M | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 72.0k | } | 341 | 2.41M | } | 342 | 2.41M | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_release Unexecuted instantiation: fuzzer-parser.c:zend_string_release Unexecuted instantiation: fuzzer-sapi.c:zend_string_release fuzzer-tracing-jit.c:zend_string_release Line | Count | Source | 336 | 21.9k | { | 337 | 21.9k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 21.9k | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 21.9k | } | 341 | 21.9k | } | 342 | 21.9k | } |
Unexecuted instantiation: fuzzer-exif.c:zend_string_release Unexecuted instantiation: fuzzer-unserialize.c:zend_string_release fuzzer-function-jit.c:zend_string_release Line | Count | Source | 336 | 20.9k | { | 337 | 20.9k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 20.9k | if (GC_DELREF(s) == 0) { | 339 | | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 20.9k | } | 341 | 20.9k | } | 342 | 20.9k | } |
Unexecuted instantiation: fuzzer-json.c:zend_string_release Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_release Unexecuted instantiation: fuzzer-execute.c:zend_string_release |
343 | | |
344 | | static zend_always_inline void zend_string_release_ex(zend_string *s, bool persistent) |
345 | 10.8M | { |
346 | 10.8M | if (!ZSTR_IS_INTERNED(s)) { |
347 | 6.77M | if (GC_DELREF(s) == 0) { |
348 | 3.67M | if (persistent) { |
349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); |
350 | 0 | free(s); |
351 | 3.67M | } else { |
352 | 3.67M | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); |
353 | 3.67M | efree(s); |
354 | 3.67M | } |
355 | 3.67M | } |
356 | 6.77M | } |
357 | 10.8M | } php_date.c:zend_string_release_ex Line | Count | Source | 345 | 78.7k | { | 346 | 78.7k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 78.6k | if (GC_DELREF(s) == 0) { | 348 | 78.6k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 78.6k | } else { | 352 | 78.6k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 78.6k | efree(s); | 354 | 78.6k | } | 355 | 78.6k | } | 356 | 78.6k | } | 357 | 78.7k | } |
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 | 345 | 171 | { | 346 | 171 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 20 | if (GC_DELREF(s) == 0) { | 348 | 20 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 20 | } else { | 352 | 20 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 20 | efree(s); | 354 | 20 | } | 355 | 20 | } | 356 | 20 | } | 357 | 171 | } |
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 | 345 | 52.9k | { | 346 | 52.9k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 34.5k | if (GC_DELREF(s) == 0) { | 348 | 15.6k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 15.6k | } else { | 352 | 15.6k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 15.6k | efree(s); | 354 | 15.6k | } | 355 | 15.6k | } | 356 | 34.5k | } | 357 | 52.9k | } |
Unexecuted instantiation: json_scanner.c:zend_string_release_ex json.c:zend_string_release_ex Line | Count | Source | 345 | 95 | { | 346 | 95 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 95 | if (GC_DELREF(s) == 0) { | 348 | 95 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 95 | } else { | 352 | 95 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 95 | efree(s); | 354 | 95 | } | 355 | 95 | } | 356 | 95 | } | 357 | 95 | } |
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 | 345 | 57 | { | 346 | 57 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 57 | if (GC_DELREF(s) == 0) { | 348 | 57 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 57 | } else { | 352 | 57 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 57 | efree(s); | 354 | 57 | } | 355 | 57 | } | 356 | 57 | } | 357 | 57 | } |
Unexecuted instantiation: zend_file_cache.c:zend_string_release_ex zend_persist_calc.c:zend_string_release_ex Line | Count | Source | 345 | 1.53k | { | 346 | 1.53k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 1.53k | if (GC_DELREF(s) == 0) { | 348 | 1.32k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 1.32k | } else { | 352 | 1.32k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 1.32k | efree(s); | 354 | 1.32k | } | 355 | 1.32k | } | 356 | 1.53k | } | 357 | 1.53k | } |
zend_persist.c:zend_string_release_ex Line | Count | Source | 345 | 203k | { | 346 | 203k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 203k | if (GC_DELREF(s) == 0) { | 348 | 70.7k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 70.7k | } else { | 352 | 70.7k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 70.7k | efree(s); | 354 | 70.7k | } | 355 | 70.7k | } | 356 | 203k | } | 357 | 203k | } |
Unexecuted instantiation: zend_shared_alloc.c:zend_string_release_ex ZendAccelerator.c:zend_string_release_ex Line | Count | Source | 345 | 122k | { | 346 | 122k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 122k | if (GC_DELREF(s) == 0) { | 348 | 122k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 122k | } else { | 352 | 122k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 122k | efree(s); | 354 | 122k | } | 355 | 122k | } | 356 | 122k | } | 357 | 122k | } |
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 Unexecuted instantiation: random.c:zend_string_release_ex 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 | 345 | 2.11k | { | 346 | 2.11k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 553 | if (GC_DELREF(s) == 0) { | 348 | 482 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 482 | } else { | 352 | 482 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 482 | efree(s); | 354 | 482 | } | 355 | 482 | } | 356 | 553 | } | 357 | 2.11k | } |
Unexecuted instantiation: php_spl.c:zend_string_release_ex Unexecuted instantiation: spl_array.c:zend_string_release_ex Unexecuted instantiation: spl_directory.c:zend_string_release_ex Unexecuted instantiation: spl_dllist.c:zend_string_release_ex 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 | 345 | 67 | { | 346 | 67 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 67 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 67 | } | 357 | 67 | } |
Unexecuted instantiation: spl_heap.c:zend_string_release_ex Unexecuted instantiation: spl_iterators.c:zend_string_release_ex Unexecuted instantiation: spl_observer.c:zend_string_release_ex array.c:zend_string_release_ex Line | Count | Source | 345 | 1.36k | { | 346 | 1.36k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 53 | if (GC_DELREF(s) == 0) { | 348 | 53 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 53 | } else { | 352 | 53 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 53 | efree(s); | 354 | 53 | } | 355 | 53 | } | 356 | 53 | } | 357 | 1.36k | } |
assert.c:zend_string_release_ex Line | Count | Source | 345 | 86 | { | 346 | 86 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 46 | if (GC_DELREF(s) == 0) { | 348 | 43 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 43 | } else { | 352 | 43 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 43 | efree(s); | 354 | 43 | } | 355 | 43 | } | 356 | 46 | } | 357 | 86 | } |
Unexecuted instantiation: base64.c:zend_string_release_ex basic_functions.c:zend_string_release_ex Line | Count | Source | 345 | 596 | { | 346 | 596 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 76 | if (GC_DELREF(s) == 0) { | 348 | 39 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 39 | } else { | 352 | 39 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 39 | efree(s); | 354 | 39 | } | 355 | 39 | } | 356 | 76 | } | 357 | 596 | } |
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 Unexecuted instantiation: dir.c:zend_string_release_ex 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 | 345 | 40 | { | 346 | 40 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 5 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 5 | } | 357 | 40 | } |
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 | 345 | 36 | { | 346 | 36 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 0 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 0 | } | 357 | 36 | } |
info.c:zend_string_release_ex Line | Count | Source | 345 | 18 | { | 346 | 18 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 18 | if (GC_DELREF(s) == 0) { | 348 | 18 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 18 | } else { | 352 | 18 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 18 | efree(s); | 354 | 18 | } | 355 | 18 | } | 356 | 18 | } | 357 | 18 | } |
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 | 345 | 349 | { | 346 | 349 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 191 | if (GC_DELREF(s) == 0) { | 348 | 73 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 73 | } else { | 352 | 73 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 73 | efree(s); | 354 | 73 | } | 355 | 73 | } | 356 | 191 | } | 357 | 349 | } |
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 | 345 | 80 | { | 346 | 80 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 80 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 80 | } | 357 | 80 | } |
Unexecuted instantiation: url.c:zend_string_release_ex user_filters.c:zend_string_release_ex Line | Count | Source | 345 | 224 | { | 346 | 224 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 3 | if (GC_DELREF(s) == 0) { | 348 | 3 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 3 | } else { | 352 | 3 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 3 | efree(s); | 354 | 3 | } | 355 | 3 | } | 356 | 3 | } | 357 | 224 | } |
Unexecuted instantiation: uuencode.c:zend_string_release_ex var_unserializer.c:zend_string_release_ex Line | Count | Source | 345 | 1.71M | { | 346 | 1.71M | if (!ZSTR_IS_INTERNED(s)) { | 347 | 1.71M | if (GC_DELREF(s) == 0) { | 348 | 1.50M | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 1.50M | } else { | 352 | 1.50M | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 1.50M | efree(s); | 354 | 1.50M | } | 355 | 1.50M | } | 356 | 1.71M | } | 357 | 1.71M | } |
var.c:zend_string_release_ex Line | Count | Source | 345 | 11.0k | { | 346 | 11.0k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 1.06k | if (GC_DELREF(s) == 0) { | 348 | 963 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 963 | } else { | 352 | 963 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 963 | efree(s); | 354 | 963 | } | 355 | 963 | } | 356 | 1.06k | } | 357 | 11.0k | } |
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 | 345 | 48 | { | 346 | 48 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 0 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 0 | } | 357 | 48 | } |
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 | 345 | 10 | { | 346 | 10 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 5 | if (GC_DELREF(s) == 0) { | 348 | 5 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 5 | } else { | 352 | 5 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 5 | efree(s); | 354 | 5 | } | 355 | 5 | } | 356 | 5 | } | 357 | 10 | } |
Unexecuted instantiation: network.c:zend_string_release_ex output.c:zend_string_release_ex Line | Count | Source | 345 | 3.84k | { | 346 | 3.84k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 3.74k | if (GC_DELREF(s) == 0) { | 348 | 1.86k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 1.86k | } else { | 352 | 1.86k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 1.86k | efree(s); | 354 | 1.86k | } | 355 | 1.86k | } | 356 | 3.74k | } | 357 | 3.84k | } |
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 | 345 | 4.37k | { | 346 | 4.37k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 4.25k | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 4.25k | } | 357 | 4.37k | } |
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 | 345 | 32 | { | 346 | 32 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 32 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 32 | } | 357 | 32 | } |
Unexecuted instantiation: snprintf.c:zend_string_release_ex Unexecuted instantiation: spprintf.c:zend_string_release_ex Unexecuted instantiation: strlcat.c:zend_string_release_ex Unexecuted instantiation: strlcpy.c:zend_string_release_ex Unexecuted instantiation: cast.c:zend_string_release_ex filter.c:zend_string_release_ex Line | Count | Source | 345 | 96 | { | 346 | 96 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 0 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 0 | } | 357 | 96 | } |
Unexecuted instantiation: glob_wrapper.c:zend_string_release_ex Unexecuted instantiation: memory.c:zend_string_release_ex Unexecuted instantiation: mmap.c:zend_string_release_ex plain_wrapper.c:zend_string_release_ex Line | Count | Source | 345 | 2 | { | 346 | 2 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 2 | if (GC_DELREF(s) == 0) { | 348 | 2 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 2 | } else { | 352 | 2 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 2 | efree(s); | 354 | 2 | } | 355 | 2 | } | 356 | 2 | } | 357 | 2 | } |
streams.c:zend_string_release_ex Line | Count | Source | 345 | 160 | { | 346 | 160 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 64 | if (GC_DELREF(s) == 0) { | 348 | 64 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 64 | } else { | 352 | 64 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 64 | efree(s); | 354 | 64 | } | 355 | 64 | } | 356 | 64 | } | 357 | 160 | } |
transports.c:zend_string_release_ex Line | Count | Source | 345 | 64 | { | 346 | 64 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 0 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 0 | } | 357 | 64 | } |
userspace.c:zend_string_release_ex Line | Count | Source | 345 | 628 | { | 346 | 628 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 628 | if (GC_DELREF(s) == 0) { | 348 | 628 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 628 | } else { | 352 | 628 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 628 | efree(s); | 354 | 628 | } | 355 | 628 | } | 356 | 628 | } | 357 | 628 | } |
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 | 345 | 844k | { | 346 | 844k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 361k | if (GC_DELREF(s) == 0) { | 348 | 90.4k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 90.4k | } else { | 352 | 90.4k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 90.4k | efree(s); | 354 | 90.4k | } | 355 | 90.4k | } | 356 | 361k | } | 357 | 844k | } |
compact_vars.c:zend_string_release_ex Line | Count | Source | 345 | 3.82k | { | 346 | 3.82k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 729 | if (GC_DELREF(s) == 0) { | 348 | 689 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 689 | } else { | 352 | 689 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 689 | efree(s); | 354 | 689 | } | 355 | 689 | } | 356 | 729 | } | 357 | 3.82k | } |
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 | 345 | 8.51k | { | 346 | 8.51k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 0 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 0 | } | 357 | 8.51k | } |
zend_inference.c:zend_string_release_ex Line | Count | Source | 345 | 4.23k | { | 346 | 4.23k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 3.78k | if (GC_DELREF(s) == 0) { | 348 | 3.67k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 3.67k | } else { | 352 | 3.67k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 3.67k | efree(s); | 354 | 3.67k | } | 355 | 3.67k | } | 356 | 3.78k | } | 357 | 4.23k | } |
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 | 345 | 63.9k | { | 346 | 63.9k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 54.1k | if (GC_DELREF(s) == 0) { | 348 | 22.4k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 22.4k | } else { | 352 | 22.4k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 22.4k | efree(s); | 354 | 22.4k | } | 355 | 22.4k | } | 356 | 54.1k | } | 357 | 63.9k | } |
zend_ast.c:zend_string_release_ex Line | Count | Source | 345 | 137k | { | 346 | 137k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 85.3k | if (GC_DELREF(s) == 0) { | 348 | 26.7k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 26.7k | } else { | 352 | 26.7k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 26.7k | efree(s); | 354 | 26.7k | } | 355 | 26.7k | } | 356 | 85.3k | } | 357 | 137k | } |
Unexecuted instantiation: zend_attributes.c:zend_string_release_ex zend_builtin_functions.c:zend_string_release_ex Line | Count | Source | 345 | 918 | { | 346 | 918 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 631 | if (GC_DELREF(s) == 0) { | 348 | 628 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 628 | } else { | 352 | 628 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 628 | efree(s); | 354 | 628 | } | 355 | 628 | } | 356 | 631 | } | 357 | 918 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_release_ex zend_closures.c:zend_string_release_ex Line | Count | Source | 345 | 424 | { | 346 | 424 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 210 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 210 | } | 357 | 424 | } |
zend_compile.c:zend_string_release_ex Line | Count | Source | 345 | 1.06M | { | 346 | 1.06M | if (!ZSTR_IS_INTERNED(s)) { | 347 | 984k | if (GC_DELREF(s) == 0) { | 348 | 126k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 126k | } else { | 352 | 126k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 126k | efree(s); | 354 | 126k | } | 355 | 126k | } | 356 | 984k | } | 357 | 1.06M | } |
zend_constants.c:zend_string_release_ex Line | Count | Source | 345 | 129 | { | 346 | 129 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 22 | if (GC_DELREF(s) == 0) { | 348 | 22 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 22 | } else { | 352 | 22 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 22 | efree(s); | 354 | 22 | } | 355 | 22 | } | 356 | 22 | } | 357 | 129 | } |
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 | 345 | 18.1k | { | 346 | 18.1k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 12.2k | if (GC_DELREF(s) == 0) { | 348 | 189 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 189 | } else { | 352 | 189 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 189 | efree(s); | 354 | 189 | } | 355 | 189 | } | 356 | 12.2k | } | 357 | 18.1k | } |
zend_execute_API.c:zend_string_release_ex Line | Count | Source | 345 | 615k | { | 346 | 615k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 461k | if (GC_DELREF(s) == 0) { | 348 | 135k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 135k | } else { | 352 | 135k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 135k | efree(s); | 354 | 135k | } | 355 | 135k | } | 356 | 461k | } | 357 | 615k | } |
zend_execute.c:zend_string_release_ex Line | Count | Source | 345 | 1.81M | { | 346 | 1.81M | if (!ZSTR_IS_INTERNED(s)) { | 347 | 523k | if (GC_DELREF(s) == 0) { | 348 | 173k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 173k | } else { | 352 | 173k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 173k | efree(s); | 354 | 173k | } | 355 | 173k | } | 356 | 523k | } | 357 | 1.81M | } |
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 | 345 | 2.22M | { | 346 | 2.22M | if (!ZSTR_IS_INTERNED(s)) { | 347 | 975k | if (GC_DELREF(s) == 0) { | 348 | 879k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 879k | } else { | 352 | 879k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 879k | efree(s); | 354 | 879k | } | 355 | 879k | } | 356 | 975k | } | 357 | 2.22M | } |
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 | 345 | 8.80k | { | 346 | 8.80k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 4.22k | if (GC_DELREF(s) == 0) { | 348 | 910 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 910 | } else { | 352 | 910 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 910 | efree(s); | 354 | 910 | } | 355 | 910 | } | 356 | 4.22k | } | 357 | 8.80k | } |
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 | 345 | 196 | { | 346 | 196 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 196 | if (GC_DELREF(s) == 0) { | 348 | 196 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 196 | } else { | 352 | 196 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 196 | efree(s); | 354 | 196 | } | 355 | 196 | } | 356 | 196 | } | 357 | 196 | } |
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 | 345 | 343 | { | 346 | 343 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 343 | if (GC_DELREF(s) == 0) { | 348 | 343 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 343 | } else { | 352 | 343 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 343 | efree(s); | 354 | 343 | } | 355 | 343 | } | 356 | 343 | } | 357 | 343 | } |
zend_language_scanner.c:zend_string_release_ex Line | Count | Source | 345 | 141k | { | 346 | 141k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 141k | if (GC_DELREF(s) == 0) { | 348 | 7.02k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 7.02k | } else { | 352 | 7.02k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 7.02k | efree(s); | 354 | 7.02k | } | 355 | 7.02k | } | 356 | 141k | } | 357 | 141k | } |
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 | 345 | 1.26k | { | 346 | 1.26k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 888 | if (GC_DELREF(s) == 0) { | 348 | 769 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 769 | } else { | 352 | 769 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 769 | efree(s); | 354 | 769 | } | 355 | 769 | } | 356 | 888 | } | 357 | 1.26k | } |
Unexecuted instantiation: zend_objects_API.c:zend_string_release_ex zend_objects.c:zend_string_release_ex Line | Count | Source | 345 | 15 | { | 346 | 15 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 0 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 0 | } | 357 | 15 | } |
Unexecuted instantiation: zend_observer.c:zend_string_release_ex zend_opcode.c:zend_string_release_ex Line | Count | Source | 345 | 1.43M | { | 346 | 1.43M | if (!ZSTR_IS_INTERNED(s)) { | 347 | 943k | if (GC_DELREF(s) == 0) { | 348 | 352k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 352k | } else { | 352 | 352k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 352k | efree(s); | 354 | 352k | } | 355 | 352k | } | 356 | 943k | } | 357 | 1.43M | } |
zend_operators.c:zend_string_release_ex Line | Count | Source | 345 | 295k | { | 346 | 295k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 59.2k | if (GC_DELREF(s) == 0) { | 348 | 54.0k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 54.0k | } else { | 352 | 54.0k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 54.0k | efree(s); | 354 | 54.0k | } | 355 | 54.0k | } | 356 | 59.2k | } | 357 | 295k | } |
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 | 345 | 72 | { | 346 | 72 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 62 | if (GC_DELREF(s) == 0) { | 348 | 20 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 20 | } else { | 352 | 20 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 20 | efree(s); | 354 | 20 | } | 355 | 20 | } | 356 | 62 | } | 357 | 72 | } |
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 | 345 | 3.92k | { | 346 | 3.92k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 2.26k | if (GC_DELREF(s) == 0) { | 348 | 2.25k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 2.25k | } else { | 352 | 2.25k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 2.25k | efree(s); | 354 | 2.25k | } | 355 | 2.25k | } | 356 | 2.26k | } | 357 | 3.92k | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_release_ex Unexecuted instantiation: fuzzer-parser.c:zend_string_release_ex Unexecuted instantiation: fuzzer-sapi.c:zend_string_release_ex Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_release_ex Unexecuted instantiation: fuzzer-exif.c:zend_string_release_ex Unexecuted instantiation: fuzzer-unserialize.c:zend_string_release_ex Unexecuted instantiation: fuzzer-function-jit.c:zend_string_release_ex Unexecuted instantiation: fuzzer-json.c:zend_string_release_ex Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_release_ex Unexecuted instantiation: fuzzer-execute.c:zend_string_release_ex |
358 | | |
359 | | static zend_always_inline bool zend_string_equals_cstr(const zend_string *s1, const char *s2, size_t s2_length) |
360 | 25.9M | { |
361 | 25.9M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); |
362 | 25.9M | } php_date.c:zend_string_equals_cstr Line | Count | Source | 360 | 1.80M | { | 361 | 1.80M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 1.80M | } |
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 | 360 | 17.8k | { | 361 | 17.8k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 17.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 php_reflection.c:zend_string_equals_cstr Line | Count | Source | 360 | 45 | { | 361 | 45 | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 45 | } |
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 | 360 | 3.44k | { | 361 | 3.44k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 3.44k | } |
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 | 360 | 13 | { | 361 | 13 | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 13 | } |
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 | 360 | 400 | { | 361 | 400 | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 400 | } |
Unexecuted instantiation: network.c:zend_string_equals_cstr Unexecuted instantiation: output.c:zend_string_equals_cstr Unexecuted instantiation: php_content_types.c:zend_string_equals_cstr Unexecuted instantiation: php_ini_builder.c:zend_string_equals_cstr Unexecuted instantiation: php_ini.c:zend_string_equals_cstr Unexecuted instantiation: php_glob.c:zend_string_equals_cstr Unexecuted instantiation: php_odbc_utils.c:zend_string_equals_cstr Unexecuted instantiation: php_open_temporary_file.c:zend_string_equals_cstr Unexecuted instantiation: php_scandir.c:zend_string_equals_cstr Unexecuted instantiation: php_syslog.c:zend_string_equals_cstr Unexecuted instantiation: php_ticks.c:zend_string_equals_cstr Unexecuted instantiation: php_variables.c:zend_string_equals_cstr Unexecuted instantiation: reentrancy.c:zend_string_equals_cstr Unexecuted instantiation: rfc1867.c:zend_string_equals_cstr Unexecuted instantiation: safe_bcmp.c:zend_string_equals_cstr Unexecuted instantiation: SAPI.c:zend_string_equals_cstr Unexecuted instantiation: snprintf.c:zend_string_equals_cstr Unexecuted instantiation: spprintf.c:zend_string_equals_cstr Unexecuted instantiation: strlcat.c:zend_string_equals_cstr Unexecuted instantiation: strlcpy.c:zend_string_equals_cstr Unexecuted instantiation: cast.c:zend_string_equals_cstr Unexecuted instantiation: filter.c:zend_string_equals_cstr Unexecuted instantiation: glob_wrapper.c:zend_string_equals_cstr Unexecuted instantiation: memory.c:zend_string_equals_cstr Unexecuted instantiation: mmap.c:zend_string_equals_cstr Unexecuted instantiation: plain_wrapper.c:zend_string_equals_cstr Unexecuted instantiation: 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 | 360 | 55.4k | { | 361 | 55.4k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 55.4k | } |
Unexecuted instantiation: pass3.c:zend_string_equals_cstr Unexecuted instantiation: sccp.c:zend_string_equals_cstr Unexecuted instantiation: scdf.c:zend_string_equals_cstr Unexecuted instantiation: zend_call_graph.c:zend_string_equals_cstr Unexecuted instantiation: zend_cfg.c:zend_string_equals_cstr Unexecuted instantiation: zend_dfg.c:zend_string_equals_cstr Unexecuted instantiation: zend_dump.c:zend_string_equals_cstr Unexecuted instantiation: zend_func_info.c:zend_string_equals_cstr Unexecuted instantiation: zend_inference.c:zend_string_equals_cstr zend_optimizer.c:zend_string_equals_cstr Line | Count | Source | 360 | 1.06M | { | 361 | 1.06M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 1.06M | } |
zend_ssa.c:zend_string_equals_cstr Line | Count | Source | 360 | 102k | { | 361 | 102k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 102k | } |
Unexecuted instantiation: zend_alloc.c:zend_string_equals_cstr zend_API.c:zend_string_equals_cstr Line | Count | Source | 360 | 223k | { | 361 | 223k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 223k | } |
Unexecuted instantiation: zend_ast.c:zend_string_equals_cstr zend_attributes.c:zend_string_equals_cstr Line | Count | Source | 360 | 4.77M | { | 361 | 4.77M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 4.77M | } |
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 | 360 | 16.7M | { | 361 | 16.7M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 16.7M | } |
zend_constants.c:zend_string_equals_cstr Line | Count | Source | 360 | 11.5k | { | 361 | 11.5k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 11.5k | } |
Unexecuted instantiation: zend_cpuinfo.c:zend_string_equals_cstr Unexecuted instantiation: zend_default_classes.c:zend_string_equals_cstr Unexecuted instantiation: zend_dtrace.c:zend_string_equals_cstr Unexecuted instantiation: zend_enum.c:zend_string_equals_cstr zend_exceptions.c:zend_string_equals_cstr Line | Count | Source | 360 | 1.35k | { | 361 | 1.35k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 1.35k | } |
Unexecuted instantiation: zend_execute_API.c:zend_string_equals_cstr zend_execute.c:zend_string_equals_cstr Line | Count | Source | 360 | 1.39k | { | 361 | 1.39k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 1.39k | } |
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 | 360 | 1.13M | { | 361 | 1.13M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 1.13M | } |
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 | 360 | 19.8k | { | 361 | 19.8k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 19.8k | } |
Unexecuted instantiation: zend_strtod.c:zend_string_equals_cstr Unexecuted instantiation: zend_system_id.c:zend_string_equals_cstr Unexecuted instantiation: zend_variables.c:zend_string_equals_cstr Unexecuted instantiation: zend_virtual_cwd.c:zend_string_equals_cstr Unexecuted instantiation: zend_vm_opcodes.c:zend_string_equals_cstr Unexecuted instantiation: zend_weakrefs.c:zend_string_equals_cstr Unexecuted instantiation: zend.c:zend_string_equals_cstr Unexecuted instantiation: internal_functions_cli.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-parser.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-sapi.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-exif.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-unserialize.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-function-jit.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-json.c:zend_string_equals_cstr fuzzer-unserializehash.c:zend_string_equals_cstr Line | Count | Source | 360 | 29.7k | { | 361 | 29.7k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 29.7k | } |
Unexecuted instantiation: fuzzer-execute.c:zend_string_equals_cstr |
363 | | |
364 | | #if defined(__GNUC__) && (defined(__i386__) || (defined(__x86_64__) && !defined(__ILP32__))) |
365 | | BEGIN_EXTERN_C() |
366 | | ZEND_API bool ZEND_FASTCALL zend_string_equal_val(const zend_string *s1, const zend_string *s2); |
367 | | END_EXTERN_C() |
368 | | #else |
369 | | static zend_always_inline bool zend_string_equal_val(const zend_string *s1, const zend_string *s2) |
370 | | { |
371 | | return !memcmp(ZSTR_VAL(s1), ZSTR_VAL(s2), ZSTR_LEN(s1)); |
372 | | } |
373 | | #endif |
374 | | |
375 | | static zend_always_inline bool zend_string_equal_content(const zend_string *s1, const zend_string *s2) |
376 | 7.96M | { |
377 | 7.96M | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); |
378 | 7.96M | } 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 | 376 | 252k | { | 377 | 252k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 252k | } |
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 | 376 | 2.57M | { | 377 | 2.57M | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 2.57M | } |
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 | 376 | 152 | { | 377 | 152 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 152 | } |
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 | 376 | 7.88k | { | 377 | 7.88k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 7.88k | } |
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 | 376 | 16 | { | 377 | 16 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 16 | } |
Unexecuted instantiation: network.c:zend_string_equal_content Unexecuted instantiation: output.c:zend_string_equal_content Unexecuted instantiation: php_content_types.c:zend_string_equal_content Unexecuted instantiation: php_ini_builder.c:zend_string_equal_content Unexecuted instantiation: php_ini.c:zend_string_equal_content Unexecuted instantiation: php_glob.c:zend_string_equal_content Unexecuted instantiation: php_odbc_utils.c:zend_string_equal_content Unexecuted instantiation: php_open_temporary_file.c:zend_string_equal_content Unexecuted instantiation: php_scandir.c:zend_string_equal_content Unexecuted instantiation: php_syslog.c:zend_string_equal_content Unexecuted instantiation: php_ticks.c:zend_string_equal_content Unexecuted instantiation: php_variables.c:zend_string_equal_content Unexecuted instantiation: reentrancy.c:zend_string_equal_content Unexecuted instantiation: rfc1867.c:zend_string_equal_content Unexecuted instantiation: safe_bcmp.c:zend_string_equal_content Unexecuted instantiation: SAPI.c:zend_string_equal_content Unexecuted instantiation: snprintf.c:zend_string_equal_content Unexecuted instantiation: spprintf.c:zend_string_equal_content Unexecuted instantiation: strlcat.c:zend_string_equal_content Unexecuted instantiation: strlcpy.c:zend_string_equal_content Unexecuted instantiation: cast.c:zend_string_equal_content Unexecuted instantiation: filter.c:zend_string_equal_content Unexecuted instantiation: glob_wrapper.c:zend_string_equal_content Unexecuted instantiation: memory.c:zend_string_equal_content Unexecuted instantiation: mmap.c:zend_string_equal_content Unexecuted instantiation: plain_wrapper.c:zend_string_equal_content Unexecuted instantiation: 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 | 376 | 13.4k | { | 377 | 13.4k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 13.4k | } |
Unexecuted instantiation: zend_ast.c:zend_string_equal_content zend_attributes.c:zend_string_equal_content Line | Count | Source | 376 | 2.02k | { | 377 | 2.02k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 2.02k | } |
zend_builtin_functions.c:zend_string_equal_content Line | Count | Source | 376 | 42 | { | 377 | 42 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 42 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_equal_content zend_closures.c:zend_string_equal_content Line | Count | Source | 376 | 256 | { | 377 | 256 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 256 | } |
zend_compile.c:zend_string_equal_content Line | Count | Source | 376 | 2.72M | { | 377 | 2.72M | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 2.72M | } |
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 | 376 | 484 | { | 377 | 484 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 484 | } |
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 | 376 | 38.0k | { | 377 | 38.0k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 38.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 | 376 | 2.31M | { | 377 | 2.31M | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 2.31M | } |
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 | 376 | 596 | { | 377 | 596 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 596 | } |
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 | 376 | 30.0k | { | 377 | 30.0k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 30.0k | } |
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 | 376 | 4.31k | { | 377 | 4.31k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 4.31k | } |
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 | 376 | 5 | { | 377 | 5 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 5 | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_equal_content Unexecuted instantiation: fuzzer-parser.c:zend_string_equal_content Unexecuted instantiation: fuzzer-sapi.c:zend_string_equal_content Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_equal_content Unexecuted instantiation: fuzzer-exif.c:zend_string_equal_content Unexecuted instantiation: fuzzer-unserialize.c:zend_string_equal_content Unexecuted instantiation: fuzzer-function-jit.c:zend_string_equal_content Unexecuted instantiation: fuzzer-json.c:zend_string_equal_content Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_equal_content Unexecuted instantiation: fuzzer-execute.c:zend_string_equal_content |
379 | | |
380 | | static zend_always_inline bool zend_string_equals(const zend_string *s1, const zend_string *s2) |
381 | 3.86M | { |
382 | 3.86M | return s1 == s2 || zend_string_equal_content(s1, s2); |
383 | 3.86M | } 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 | 381 | 376k | { | 382 | 376k | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 376k | } |
Unexecuted instantiation: zend_accelerator_module.c:zend_string_equals zend_accelerator_util_funcs.c:zend_string_equals Line | Count | Source | 381 | 1.37k | { | 382 | 1.37k | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 1.37k | } |
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 | 381 | 60.4k | { | 382 | 60.4k | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 60.4k | } |
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 | 381 | 167 | { | 382 | 167 | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 167 | } |
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 | 381 | 50 | { | 382 | 50 | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 50 | } |
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 | 381 | 16 | { | 382 | 16 | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 16 | } |
Unexecuted instantiation: network.c:zend_string_equals Unexecuted instantiation: output.c:zend_string_equals Unexecuted instantiation: php_content_types.c:zend_string_equals Unexecuted instantiation: php_ini_builder.c:zend_string_equals Unexecuted instantiation: php_ini.c:zend_string_equals Unexecuted instantiation: php_glob.c:zend_string_equals Unexecuted instantiation: php_odbc_utils.c:zend_string_equals Unexecuted instantiation: php_open_temporary_file.c:zend_string_equals Unexecuted instantiation: php_scandir.c:zend_string_equals Unexecuted instantiation: php_syslog.c:zend_string_equals Unexecuted instantiation: php_ticks.c:zend_string_equals Unexecuted instantiation: php_variables.c:zend_string_equals Unexecuted instantiation: reentrancy.c:zend_string_equals Unexecuted instantiation: rfc1867.c:zend_string_equals Unexecuted instantiation: safe_bcmp.c:zend_string_equals Unexecuted instantiation: SAPI.c:zend_string_equals Unexecuted instantiation: snprintf.c:zend_string_equals Unexecuted instantiation: spprintf.c:zend_string_equals Unexecuted instantiation: strlcat.c:zend_string_equals Unexecuted instantiation: strlcpy.c:zend_string_equals Unexecuted instantiation: cast.c:zend_string_equals Unexecuted instantiation: filter.c:zend_string_equals Unexecuted instantiation: glob_wrapper.c:zend_string_equals Unexecuted instantiation: memory.c:zend_string_equals Unexecuted instantiation: mmap.c:zend_string_equals Unexecuted instantiation: plain_wrapper.c:zend_string_equals Unexecuted instantiation: 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 | 381 | 14.3k | { | 382 | 14.3k | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 14.3k | } |
Unexecuted instantiation: zend_ast.c:zend_string_equals zend_attributes.c:zend_string_equals Line | Count | Source | 381 | 2.17k | { | 382 | 2.17k | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 2.17k | } |
zend_builtin_functions.c:zend_string_equals Line | Count | Source | 381 | 225 | { | 382 | 225 | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 225 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_equals zend_closures.c:zend_string_equals Line | Count | Source | 381 | 601 | { | 382 | 601 | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 601 | } |
zend_compile.c:zend_string_equals Line | Count | Source | 381 | 3.33M | { | 382 | 3.33M | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 3.33M | } |
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 | 381 | 2.37k | { | 382 | 2.37k | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 2.37k | } |
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 | 381 | 38.9k | { | 382 | 38.9k | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 38.9k | } |
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 | 381 | 30.1k | { | 382 | 30.1k | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 30.1k | } |
Unexecuted instantiation: zend_property_hooks.c:zend_string_equals Unexecuted instantiation: zend_ptr_stack.c:zend_string_equals Unexecuted instantiation: zend_signal.c:zend_string_equals Unexecuted instantiation: zend_smart_str.c:zend_string_equals Unexecuted instantiation: zend_sort.c:zend_string_equals Unexecuted instantiation: zend_stack.c:zend_string_equals zend_stream.c:zend_string_equals Line | Count | Source | 381 | 33 | { | 382 | 33 | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 33 | } |
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 | 381 | 11 | { | 382 | 11 | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 11 | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_equals Unexecuted instantiation: fuzzer-parser.c:zend_string_equals Unexecuted instantiation: fuzzer-sapi.c:zend_string_equals Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_equals Unexecuted instantiation: fuzzer-exif.c:zend_string_equals Unexecuted instantiation: fuzzer-unserialize.c:zend_string_equals Unexecuted instantiation: fuzzer-function-jit.c:zend_string_equals Unexecuted instantiation: fuzzer-json.c:zend_string_equals Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_equals Unexecuted instantiation: fuzzer-execute.c:zend_string_equals |
384 | | |
385 | | #define zend_string_equals_ci(s1, s2) \ |
386 | 9.06M | (ZSTR_LEN(s1) == ZSTR_LEN(s2) && !zend_binary_strcasecmp(ZSTR_VAL(s1), ZSTR_LEN(s1), ZSTR_VAL(s2), ZSTR_LEN(s2))) |
387 | | |
388 | | #define zend_string_equals_literal_ci(str, c) \ |
389 | 3.72M | (ZSTR_LEN(str) == sizeof("" c) - 1 && !zend_binary_strcasecmp(ZSTR_VAL(str), ZSTR_LEN(str), (c), sizeof(c) - 1)) |
390 | | |
391 | | #define zend_string_equals_literal(str, literal) \ |
392 | 28.0M | zend_string_equals_cstr(str, "" literal, sizeof(literal) - 1) |
393 | | |
394 | | static zend_always_inline bool zend_string_starts_with_cstr(const zend_string *str, const char *prefix, size_t prefix_length) |
395 | 60.4k | { |
396 | 60.4k | return ZSTR_LEN(str) >= prefix_length && !memcmp(ZSTR_VAL(str), prefix, prefix_length); |
397 | 60.4k | } 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 | 395 | 60.4k | { | 396 | 60.4k | return ZSTR_LEN(str) >= prefix_length && !memcmp(ZSTR_VAL(str), prefix, prefix_length); | 397 | 60.4k | } |
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 | 395 | 16 | { | 396 | 16 | return ZSTR_LEN(str) >= prefix_length && !memcmp(ZSTR_VAL(str), prefix, prefix_length); | 397 | 16 | } |
Unexecuted instantiation: url.c:zend_string_starts_with_cstr Unexecuted instantiation: user_filters.c:zend_string_starts_with_cstr Unexecuted instantiation: uuencode.c:zend_string_starts_with_cstr Unexecuted instantiation: var_unserializer.c:zend_string_starts_with_cstr Unexecuted instantiation: var.c:zend_string_starts_with_cstr Unexecuted instantiation: versioning.c:zend_string_starts_with_cstr Unexecuted instantiation: crypt_sha256.c:zend_string_starts_with_cstr Unexecuted instantiation: crypt_sha512.c:zend_string_starts_with_cstr Unexecuted instantiation: php_crypt_r.c:zend_string_starts_with_cstr Unexecuted instantiation: php_uri.c:zend_string_starts_with_cstr Unexecuted instantiation: php_uri_common.c:zend_string_starts_with_cstr Unexecuted instantiation: uri_parser_rfc3986.c:zend_string_starts_with_cstr Unexecuted instantiation: uri_parser_whatwg.c:zend_string_starts_with_cstr Unexecuted instantiation: uri_parser_php_parse_url.c:zend_string_starts_with_cstr Unexecuted instantiation: explicit_bzero.c:zend_string_starts_with_cstr Unexecuted instantiation: fopen_wrappers.c:zend_string_starts_with_cstr Unexecuted instantiation: getopt.c:zend_string_starts_with_cstr Unexecuted instantiation: main.c:zend_string_starts_with_cstr Unexecuted instantiation: network.c:zend_string_starts_with_cstr Unexecuted instantiation: output.c:zend_string_starts_with_cstr Unexecuted instantiation: php_content_types.c:zend_string_starts_with_cstr Unexecuted instantiation: php_ini_builder.c:zend_string_starts_with_cstr Unexecuted instantiation: php_ini.c:zend_string_starts_with_cstr Unexecuted instantiation: php_glob.c:zend_string_starts_with_cstr Unexecuted instantiation: php_odbc_utils.c:zend_string_starts_with_cstr Unexecuted instantiation: php_open_temporary_file.c:zend_string_starts_with_cstr Unexecuted instantiation: php_scandir.c:zend_string_starts_with_cstr Unexecuted instantiation: php_syslog.c:zend_string_starts_with_cstr Unexecuted instantiation: php_ticks.c:zend_string_starts_with_cstr Unexecuted instantiation: php_variables.c:zend_string_starts_with_cstr Unexecuted instantiation: reentrancy.c:zend_string_starts_with_cstr Unexecuted instantiation: rfc1867.c:zend_string_starts_with_cstr Unexecuted instantiation: safe_bcmp.c:zend_string_starts_with_cstr Unexecuted instantiation: SAPI.c:zend_string_starts_with_cstr Unexecuted instantiation: snprintf.c:zend_string_starts_with_cstr Unexecuted instantiation: spprintf.c:zend_string_starts_with_cstr Unexecuted instantiation: strlcat.c:zend_string_starts_with_cstr Unexecuted instantiation: strlcpy.c:zend_string_starts_with_cstr Unexecuted instantiation: cast.c:zend_string_starts_with_cstr Unexecuted instantiation: filter.c:zend_string_starts_with_cstr Unexecuted instantiation: glob_wrapper.c:zend_string_starts_with_cstr Unexecuted instantiation: memory.c:zend_string_starts_with_cstr Unexecuted instantiation: mmap.c:zend_string_starts_with_cstr Unexecuted instantiation: plain_wrapper.c:zend_string_starts_with_cstr Unexecuted instantiation: 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_builtin_functions.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_call_stack.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_closures.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_compile.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_constants.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_cpuinfo.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_default_classes.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_dtrace.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_enum.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_exceptions.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_execute_API.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_execute.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_extensions.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_fibers.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_float.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_gc.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_gdb.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_generators.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_hash.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_highlight.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_hrtime.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_inheritance.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_ini_parser.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_ini_scanner.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_ini.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_interfaces.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_iterators.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_language_parser.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_language_scanner.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_lazy_objects.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_list.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_llist.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_multibyte.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_object_handlers.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_objects_API.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_objects.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_observer.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_opcode.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_operators.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_property_hooks.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_ptr_stack.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_signal.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_smart_str.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_sort.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_stack.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_stream.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_string.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_strtod.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_system_id.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_variables.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_virtual_cwd.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_vm_opcodes.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_weakrefs.c:zend_string_starts_with_cstr Unexecuted instantiation: zend.c:zend_string_starts_with_cstr Unexecuted instantiation: internal_functions_cli.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-parser.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-sapi.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-exif.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-unserialize.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-function-jit.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-json.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-execute.c:zend_string_starts_with_cstr |
398 | | |
399 | | static zend_always_inline bool zend_string_starts_with(const zend_string *str, const zend_string *prefix) |
400 | 0 | { |
401 | 0 | return zend_string_starts_with_cstr(str, ZSTR_VAL(prefix), ZSTR_LEN(prefix)); |
402 | 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: 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_builtin_functions.c:zend_string_starts_with Unexecuted instantiation: zend_call_stack.c:zend_string_starts_with Unexecuted instantiation: zend_closures.c:zend_string_starts_with Unexecuted instantiation: zend_compile.c:zend_string_starts_with Unexecuted instantiation: zend_constants.c:zend_string_starts_with Unexecuted instantiation: zend_cpuinfo.c:zend_string_starts_with Unexecuted instantiation: zend_default_classes.c:zend_string_starts_with Unexecuted instantiation: zend_dtrace.c:zend_string_starts_with Unexecuted instantiation: zend_enum.c:zend_string_starts_with Unexecuted instantiation: zend_exceptions.c:zend_string_starts_with Unexecuted instantiation: zend_execute_API.c:zend_string_starts_with Unexecuted instantiation: zend_execute.c:zend_string_starts_with Unexecuted instantiation: zend_extensions.c:zend_string_starts_with Unexecuted instantiation: zend_fibers.c:zend_string_starts_with Unexecuted instantiation: zend_float.c:zend_string_starts_with Unexecuted instantiation: zend_gc.c:zend_string_starts_with Unexecuted instantiation: zend_gdb.c:zend_string_starts_with Unexecuted instantiation: zend_generators.c:zend_string_starts_with Unexecuted instantiation: zend_hash.c:zend_string_starts_with Unexecuted instantiation: zend_highlight.c:zend_string_starts_with Unexecuted instantiation: zend_hrtime.c:zend_string_starts_with Unexecuted instantiation: zend_inheritance.c:zend_string_starts_with Unexecuted instantiation: zend_ini_parser.c:zend_string_starts_with Unexecuted instantiation: zend_ini_scanner.c:zend_string_starts_with Unexecuted instantiation: zend_ini.c:zend_string_starts_with Unexecuted instantiation: zend_interfaces.c:zend_string_starts_with Unexecuted instantiation: zend_iterators.c:zend_string_starts_with Unexecuted instantiation: zend_language_parser.c:zend_string_starts_with Unexecuted instantiation: zend_language_scanner.c:zend_string_starts_with Unexecuted instantiation: zend_lazy_objects.c:zend_string_starts_with Unexecuted instantiation: zend_list.c:zend_string_starts_with Unexecuted instantiation: zend_llist.c:zend_string_starts_with Unexecuted instantiation: zend_multibyte.c:zend_string_starts_with Unexecuted instantiation: zend_object_handlers.c:zend_string_starts_with Unexecuted instantiation: zend_objects_API.c:zend_string_starts_with Unexecuted instantiation: zend_objects.c:zend_string_starts_with Unexecuted instantiation: zend_observer.c:zend_string_starts_with Unexecuted instantiation: zend_opcode.c:zend_string_starts_with Unexecuted instantiation: zend_operators.c:zend_string_starts_with Unexecuted instantiation: zend_property_hooks.c:zend_string_starts_with Unexecuted instantiation: zend_ptr_stack.c:zend_string_starts_with Unexecuted instantiation: zend_signal.c:zend_string_starts_with Unexecuted instantiation: zend_smart_str.c:zend_string_starts_with Unexecuted instantiation: zend_sort.c:zend_string_starts_with Unexecuted instantiation: zend_stack.c:zend_string_starts_with Unexecuted instantiation: zend_stream.c:zend_string_starts_with Unexecuted instantiation: zend_string.c:zend_string_starts_with Unexecuted instantiation: zend_strtod.c:zend_string_starts_with Unexecuted instantiation: zend_system_id.c:zend_string_starts_with Unexecuted instantiation: zend_variables.c:zend_string_starts_with Unexecuted instantiation: zend_virtual_cwd.c:zend_string_starts_with Unexecuted instantiation: zend_vm_opcodes.c:zend_string_starts_with Unexecuted instantiation: zend_weakrefs.c:zend_string_starts_with Unexecuted instantiation: zend.c:zend_string_starts_with Unexecuted instantiation: internal_functions_cli.c:zend_string_starts_with Unexecuted instantiation: fuzzer-parser.c:zend_string_starts_with Unexecuted instantiation: fuzzer-sapi.c:zend_string_starts_with Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_starts_with Unexecuted instantiation: fuzzer-exif.c:zend_string_starts_with Unexecuted instantiation: fuzzer-unserialize.c:zend_string_starts_with Unexecuted instantiation: fuzzer-function-jit.c:zend_string_starts_with Unexecuted instantiation: fuzzer-json.c:zend_string_starts_with Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_starts_with Unexecuted instantiation: fuzzer-execute.c:zend_string_starts_with |
403 | | |
404 | | #define zend_string_starts_with_literal(str, prefix) \ |
405 | 120k | zend_string_starts_with_cstr(str, "" prefix, sizeof(prefix) - 1) |
406 | | |
407 | | static zend_always_inline bool zend_string_starts_with_cstr_ci(const zend_string *str, const char *prefix, size_t prefix_length) |
408 | 0 | { |
409 | 0 | return ZSTR_LEN(str) >= prefix_length && !strncasecmp(ZSTR_VAL(str), prefix, prefix_length); |
410 | 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: 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_builtin_functions.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_call_stack.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_closures.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_compile.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_constants.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_cpuinfo.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_default_classes.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_dtrace.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_enum.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_exceptions.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_execute_API.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_execute.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_extensions.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_fibers.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_float.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_gc.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_gdb.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_generators.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_hash.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_highlight.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_hrtime.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_inheritance.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_ini_parser.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_ini_scanner.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_ini.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_interfaces.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_iterators.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_language_parser.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_language_scanner.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_lazy_objects.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_list.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_llist.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_multibyte.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_object_handlers.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_objects_API.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_objects.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_observer.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_opcode.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_operators.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_property_hooks.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_ptr_stack.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_signal.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_smart_str.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_sort.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_stack.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_stream.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_string.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_strtod.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_system_id.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_variables.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_virtual_cwd.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_vm_opcodes.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_weakrefs.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: internal_functions_cli.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-parser.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-sapi.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-exif.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-unserialize.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-function-jit.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-json.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-execute.c:zend_string_starts_with_cstr_ci |
411 | | |
412 | | static zend_always_inline bool zend_string_starts_with_ci(const zend_string *str, const zend_string *prefix) |
413 | 0 | { |
414 | 0 | return zend_string_starts_with_cstr_ci(str, ZSTR_VAL(prefix), ZSTR_LEN(prefix)); |
415 | 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: 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_builtin_functions.c:zend_string_starts_with_ci Unexecuted instantiation: zend_call_stack.c:zend_string_starts_with_ci Unexecuted instantiation: zend_closures.c:zend_string_starts_with_ci Unexecuted instantiation: zend_compile.c:zend_string_starts_with_ci Unexecuted instantiation: zend_constants.c:zend_string_starts_with_ci Unexecuted instantiation: zend_cpuinfo.c:zend_string_starts_with_ci Unexecuted instantiation: zend_default_classes.c:zend_string_starts_with_ci Unexecuted instantiation: zend_dtrace.c:zend_string_starts_with_ci Unexecuted instantiation: zend_enum.c:zend_string_starts_with_ci Unexecuted instantiation: zend_exceptions.c:zend_string_starts_with_ci Unexecuted instantiation: zend_execute_API.c:zend_string_starts_with_ci Unexecuted instantiation: zend_execute.c:zend_string_starts_with_ci Unexecuted instantiation: zend_extensions.c:zend_string_starts_with_ci Unexecuted instantiation: zend_fibers.c:zend_string_starts_with_ci Unexecuted instantiation: zend_float.c:zend_string_starts_with_ci Unexecuted instantiation: zend_gc.c:zend_string_starts_with_ci Unexecuted instantiation: zend_gdb.c:zend_string_starts_with_ci Unexecuted instantiation: zend_generators.c:zend_string_starts_with_ci Unexecuted instantiation: zend_hash.c:zend_string_starts_with_ci Unexecuted instantiation: zend_highlight.c:zend_string_starts_with_ci Unexecuted instantiation: zend_hrtime.c:zend_string_starts_with_ci Unexecuted instantiation: zend_inheritance.c:zend_string_starts_with_ci Unexecuted instantiation: zend_ini_parser.c:zend_string_starts_with_ci Unexecuted instantiation: zend_ini_scanner.c:zend_string_starts_with_ci Unexecuted instantiation: zend_ini.c:zend_string_starts_with_ci Unexecuted instantiation: zend_interfaces.c:zend_string_starts_with_ci Unexecuted instantiation: zend_iterators.c:zend_string_starts_with_ci Unexecuted instantiation: zend_language_parser.c:zend_string_starts_with_ci Unexecuted instantiation: zend_language_scanner.c:zend_string_starts_with_ci Unexecuted instantiation: zend_lazy_objects.c:zend_string_starts_with_ci Unexecuted instantiation: zend_list.c:zend_string_starts_with_ci Unexecuted instantiation: zend_llist.c:zend_string_starts_with_ci Unexecuted instantiation: zend_multibyte.c:zend_string_starts_with_ci Unexecuted instantiation: zend_object_handlers.c:zend_string_starts_with_ci Unexecuted instantiation: zend_objects_API.c:zend_string_starts_with_ci Unexecuted instantiation: zend_objects.c:zend_string_starts_with_ci Unexecuted instantiation: zend_observer.c:zend_string_starts_with_ci Unexecuted instantiation: zend_opcode.c:zend_string_starts_with_ci Unexecuted instantiation: zend_operators.c:zend_string_starts_with_ci Unexecuted instantiation: zend_property_hooks.c:zend_string_starts_with_ci Unexecuted instantiation: zend_ptr_stack.c:zend_string_starts_with_ci Unexecuted instantiation: zend_signal.c:zend_string_starts_with_ci Unexecuted instantiation: zend_smart_str.c:zend_string_starts_with_ci Unexecuted instantiation: zend_sort.c:zend_string_starts_with_ci Unexecuted instantiation: zend_stack.c:zend_string_starts_with_ci Unexecuted instantiation: zend_stream.c:zend_string_starts_with_ci Unexecuted instantiation: zend_string.c:zend_string_starts_with_ci Unexecuted instantiation: zend_strtod.c:zend_string_starts_with_ci Unexecuted instantiation: zend_system_id.c:zend_string_starts_with_ci Unexecuted instantiation: zend_variables.c:zend_string_starts_with_ci Unexecuted instantiation: zend_virtual_cwd.c:zend_string_starts_with_ci Unexecuted instantiation: zend_vm_opcodes.c:zend_string_starts_with_ci Unexecuted instantiation: zend_weakrefs.c:zend_string_starts_with_ci Unexecuted instantiation: zend.c:zend_string_starts_with_ci Unexecuted instantiation: internal_functions_cli.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-parser.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-sapi.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-exif.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-unserialize.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-function-jit.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-json.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-execute.c:zend_string_starts_with_ci |
416 | | |
417 | | #define zend_string_starts_with_literal_ci(str, prefix) \ |
418 | 0 | zend_string_starts_with_cstr_ci(str, "" prefix, sizeof(prefix) - 1) |
419 | | |
420 | | /* |
421 | | * DJBX33A (Daniel J. Bernstein, Times 33 with Addition) |
422 | | * |
423 | | * This is Daniel J. Bernstein's popular `times 33' hash function as |
424 | | * posted by him years ago on comp.lang.c. It basically uses a function |
425 | | * like ``hash(i) = hash(i-1) * 33 + str[i]''. This is one of the best |
426 | | * known hash functions for strings. Because it is both computed very |
427 | | * fast and distributes very well. |
428 | | * |
429 | | * The magic of number 33, i.e. why it works better than many other |
430 | | * constants, prime or not, has never been adequately explained by |
431 | | * anyone. So I try an explanation: if one experimentally tests all |
432 | | * multipliers between 1 and 256 (as RSE did now) one detects that even |
433 | | * numbers are not usable at all. The remaining 128 odd numbers |
434 | | * (except for the number 1) work more or less all equally well. They |
435 | | * all distribute in an acceptable way and this way fill a hash table |
436 | | * with an average percent of approx. 86%. |
437 | | * |
438 | | * If one compares the Chi^2 values of the variants, the number 33 not |
439 | | * even has the best value. But the number 33 and a few other equally |
440 | | * good numbers like 17, 31, 63, 127 and 129 have nevertheless a great |
441 | | * advantage to the remaining numbers in the large set of possible |
442 | | * multipliers: their multiply operation can be replaced by a faster |
443 | | * operation based on just one shift plus either a single addition |
444 | | * or subtraction operation. And because a hash function has to both |
445 | | * distribute good _and_ has to be very fast to compute, those few |
446 | | * numbers should be preferred and seems to be the reason why Daniel J. |
447 | | * Bernstein also preferred it. |
448 | | * |
449 | | * |
450 | | * -- Ralf S. Engelschall <rse@engelschall.com> |
451 | | */ |
452 | | |
453 | | static zend_always_inline zend_ulong zend_inline_hash_func(const char *str, size_t len) |
454 | 29.8M | { |
455 | 29.8M | zend_ulong hash = Z_UL(5381); |
456 | | |
457 | 29.8M | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) |
458 | | /* Version with multiplication works better on modern CPU */ |
459 | 321M | for (; len >= 8; len -= 8, str += 8) { |
460 | | # if defined(__aarch64__) && !defined(WORDS_BIGENDIAN) |
461 | | /* On some architectures it is beneficial to load 8 bytes at a |
462 | | time and extract each byte with a bit field extract instr. */ |
463 | | uint64_t chunk; |
464 | | |
465 | | memcpy(&chunk, str, sizeof(chunk)); |
466 | | hash = |
467 | | hash * 33 * 33 * 33 * 33 + |
468 | | ((chunk >> (8 * 0)) & 0xff) * 33 * 33 * 33 + |
469 | | ((chunk >> (8 * 1)) & 0xff) * 33 * 33 + |
470 | | ((chunk >> (8 * 2)) & 0xff) * 33 + |
471 | | ((chunk >> (8 * 3)) & 0xff); |
472 | | hash = |
473 | | hash * 33 * 33 * 33 * 33 + |
474 | | ((chunk >> (8 * 4)) & 0xff) * 33 * 33 * 33 + |
475 | | ((chunk >> (8 * 5)) & 0xff) * 33 * 33 + |
476 | | ((chunk >> (8 * 6)) & 0xff) * 33 + |
477 | | ((chunk >> (8 * 7)) & 0xff); |
478 | | # else |
479 | 291M | hash = |
480 | 291M | hash * Z_L(33 * 33 * 33 * 33) + |
481 | 291M | str[0] * Z_L(33 * 33 * 33) + |
482 | 291M | str[1] * Z_L(33 * 33) + |
483 | 291M | str[2] * Z_L(33) + |
484 | 291M | str[3]; |
485 | 291M | hash = |
486 | 291M | hash * Z_L(33 * 33 * 33 * 33) + |
487 | 291M | str[4] * Z_L(33 * 33 * 33) + |
488 | 291M | str[5] * Z_L(33 * 33) + |
489 | 291M | str[6] * Z_L(33) + |
490 | 291M | str[7]; |
491 | 291M | # endif |
492 | 291M | } |
493 | 29.8M | if (len >= 4) { |
494 | 14.1M | hash = |
495 | 14.1M | hash * Z_L(33 * 33 * 33 * 33) + |
496 | 14.1M | str[0] * Z_L(33 * 33 * 33) + |
497 | 14.1M | str[1] * Z_L(33 * 33) + |
498 | 14.1M | str[2] * Z_L(33) + |
499 | 14.1M | str[3]; |
500 | 14.1M | len -= 4; |
501 | 14.1M | str += 4; |
502 | 14.1M | } |
503 | 29.8M | if (len >= 2) { |
504 | 12.1M | if (len > 2) { |
505 | 7.57M | hash = |
506 | 7.57M | hash * Z_L(33 * 33 * 33) + |
507 | 7.57M | str[0] * Z_L(33 * 33) + |
508 | 7.57M | str[1] * Z_L(33) + |
509 | 7.57M | str[2]; |
510 | 7.57M | } else { |
511 | 4.55M | hash = |
512 | 4.55M | hash * Z_L(33 * 33) + |
513 | 4.55M | str[0] * Z_L(33) + |
514 | 4.55M | str[1]; |
515 | 4.55M | } |
516 | 17.7M | } else if (len != 0) { |
517 | 12.9M | hash = hash * Z_L(33) + *str; |
518 | 12.9M | } |
519 | | #else |
520 | | /* variant with the hash unrolled eight times */ |
521 | | for (; len >= 8; len -= 8) { |
522 | | hash = ((hash << 5) + hash) + *str++; |
523 | | hash = ((hash << 5) + hash) + *str++; |
524 | | hash = ((hash << 5) + hash) + *str++; |
525 | | hash = ((hash << 5) + hash) + *str++; |
526 | | hash = ((hash << 5) + hash) + *str++; |
527 | | hash = ((hash << 5) + hash) + *str++; |
528 | | hash = ((hash << 5) + hash) + *str++; |
529 | | hash = ((hash << 5) + hash) + *str++; |
530 | | } |
531 | | switch (len) { |
532 | | case 7: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
533 | | case 6: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
534 | | case 5: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
535 | | case 4: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
536 | | case 3: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
537 | | case 2: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
538 | | case 1: hash = ((hash << 5) + hash) + *str++; break; |
539 | | case 0: break; |
540 | | EMPTY_SWITCH_DEFAULT_CASE() |
541 | | } |
542 | | #endif |
543 | | |
544 | | /* Hash value can't be zero, so we always set the high bit */ |
545 | 29.8M | #if SIZEOF_ZEND_LONG == 8 |
546 | 29.8M | return hash | Z_UL(0x8000000000000000); |
547 | | #elif SIZEOF_ZEND_LONG == 4 |
548 | | return hash | Z_UL(0x80000000); |
549 | | #else |
550 | | # error "Unknown SIZEOF_ZEND_LONG" |
551 | | #endif |
552 | 29.8M | } 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 | 454 | 22.2k | { | 455 | 22.2k | zend_ulong hash = Z_UL(5381); | 456 | | | 457 | 22.2k | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) | 458 | | /* Version with multiplication works better on modern CPU */ | 459 | 28.9k | for (; len >= 8; len -= 8, str += 8) { | 460 | | # if defined(__aarch64__) && !defined(WORDS_BIGENDIAN) | 461 | | /* On some architectures it is beneficial to load 8 bytes at a | 462 | | time and extract each byte with a bit field extract instr. */ | 463 | | uint64_t chunk; | 464 | | | 465 | | memcpy(&chunk, str, sizeof(chunk)); | 466 | | hash = | 467 | | hash * 33 * 33 * 33 * 33 + | 468 | | ((chunk >> (8 * 0)) & 0xff) * 33 * 33 * 33 + | 469 | | ((chunk >> (8 * 1)) & 0xff) * 33 * 33 + | 470 | | ((chunk >> (8 * 2)) & 0xff) * 33 + | 471 | | ((chunk >> (8 * 3)) & 0xff); | 472 | | hash = | 473 | | hash * 33 * 33 * 33 * 33 + | 474 | | ((chunk >> (8 * 4)) & 0xff) * 33 * 33 * 33 + | 475 | | ((chunk >> (8 * 5)) & 0xff) * 33 * 33 + | 476 | | ((chunk >> (8 * 6)) & 0xff) * 33 + | 477 | | ((chunk >> (8 * 7)) & 0xff); | 478 | | # else | 479 | 6.69k | hash = | 480 | 6.69k | hash * Z_L(33 * 33 * 33 * 33) + | 481 | 6.69k | str[0] * Z_L(33 * 33 * 33) + | 482 | 6.69k | str[1] * Z_L(33 * 33) + | 483 | 6.69k | str[2] * Z_L(33) + | 484 | 6.69k | str[3]; | 485 | 6.69k | hash = | 486 | 6.69k | hash * Z_L(33 * 33 * 33 * 33) + | 487 | 6.69k | str[4] * Z_L(33 * 33 * 33) + | 488 | 6.69k | str[5] * Z_L(33 * 33) + | 489 | 6.69k | str[6] * Z_L(33) + | 490 | 6.69k | str[7]; | 491 | 6.69k | # endif | 492 | 6.69k | } | 493 | 22.2k | if (len >= 4) { | 494 | 12.2k | hash = | 495 | 12.2k | hash * Z_L(33 * 33 * 33 * 33) + | 496 | 12.2k | str[0] * Z_L(33 * 33 * 33) + | 497 | 12.2k | str[1] * Z_L(33 * 33) + | 498 | 12.2k | str[2] * Z_L(33) + | 499 | 12.2k | str[3]; | 500 | 12.2k | len -= 4; | 501 | 12.2k | str += 4; | 502 | 12.2k | } | 503 | 22.2k | if (len >= 2) { | 504 | 10.6k | if (len > 2) { | 505 | 3.10k | hash = | 506 | 3.10k | hash * Z_L(33 * 33 * 33) + | 507 | 3.10k | str[0] * Z_L(33 * 33) + | 508 | 3.10k | str[1] * Z_L(33) + | 509 | 3.10k | str[2]; | 510 | 7.55k | } else { | 511 | 7.55k | hash = | 512 | 7.55k | hash * Z_L(33 * 33) + | 513 | 7.55k | str[0] * Z_L(33) + | 514 | 7.55k | str[1]; | 515 | 7.55k | } | 516 | 11.5k | } else if (len != 0) { | 517 | 7.40k | hash = hash * Z_L(33) + *str; | 518 | 7.40k | } | 519 | | #else | 520 | | /* variant with the hash unrolled eight times */ | 521 | | for (; len >= 8; len -= 8) { | 522 | | hash = ((hash << 5) + hash) + *str++; | 523 | | hash = ((hash << 5) + hash) + *str++; | 524 | | hash = ((hash << 5) + hash) + *str++; | 525 | | hash = ((hash << 5) + hash) + *str++; | 526 | | hash = ((hash << 5) + hash) + *str++; | 527 | | hash = ((hash << 5) + hash) + *str++; | 528 | | hash = ((hash << 5) + hash) + *str++; | 529 | | hash = ((hash << 5) + hash) + *str++; | 530 | | } | 531 | | switch (len) { | 532 | | case 7: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 533 | | case 6: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 534 | | case 5: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 535 | | case 4: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 536 | | case 3: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 537 | | case 2: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 538 | | case 1: hash = ((hash << 5) + hash) + *str++; break; | 539 | | case 0: break; | 540 | | EMPTY_SWITCH_DEFAULT_CASE() | 541 | | } | 542 | | #endif | 543 | | | 544 | | /* Hash value can't be zero, so we always set the high bit */ | 545 | 22.2k | #if SIZEOF_ZEND_LONG == 8 | 546 | 22.2k | return hash | Z_UL(0x8000000000000000); | 547 | | #elif SIZEOF_ZEND_LONG == 4 | 548 | | return hash | Z_UL(0x80000000); | 549 | | #else | 550 | | # error "Unknown SIZEOF_ZEND_LONG" | 551 | | #endif | 552 | 22.2k | } |
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 | 454 | 5.77k | { | 455 | 5.77k | zend_ulong hash = Z_UL(5381); | 456 | | | 457 | 5.77k | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) | 458 | | /* Version with multiplication works better on modern CPU */ | 459 | 5.82k | for (; len >= 8; len -= 8, str += 8) { | 460 | | # if defined(__aarch64__) && !defined(WORDS_BIGENDIAN) | 461 | | /* On some architectures it is beneficial to load 8 bytes at a | 462 | | time and extract each byte with a bit field extract instr. */ | 463 | | uint64_t chunk; | 464 | | | 465 | | memcpy(&chunk, str, sizeof(chunk)); | 466 | | hash = | 467 | | hash * 33 * 33 * 33 * 33 + | 468 | | ((chunk >> (8 * 0)) & 0xff) * 33 * 33 * 33 + | 469 | | ((chunk >> (8 * 1)) & 0xff) * 33 * 33 + | 470 | | ((chunk >> (8 * 2)) & 0xff) * 33 + | 471 | | ((chunk >> (8 * 3)) & 0xff); | 472 | | hash = | 473 | | hash * 33 * 33 * 33 * 33 + | 474 | | ((chunk >> (8 * 4)) & 0xff) * 33 * 33 * 33 + | 475 | | ((chunk >> (8 * 5)) & 0xff) * 33 * 33 + | 476 | | ((chunk >> (8 * 6)) & 0xff) * 33 + | 477 | | ((chunk >> (8 * 7)) & 0xff); | 478 | | # else | 479 | 46 | hash = | 480 | 46 | hash * Z_L(33 * 33 * 33 * 33) + | 481 | 46 | str[0] * Z_L(33 * 33 * 33) + | 482 | 46 | str[1] * Z_L(33 * 33) + | 483 | 46 | str[2] * Z_L(33) + | 484 | 46 | str[3]; | 485 | 46 | hash = | 486 | 46 | hash * Z_L(33 * 33 * 33 * 33) + | 487 | 46 | str[4] * Z_L(33 * 33 * 33) + | 488 | 46 | str[5] * Z_L(33 * 33) + | 489 | 46 | str[6] * Z_L(33) + | 490 | 46 | str[7]; | 491 | 46 | # endif | 492 | 46 | } | 493 | 5.77k | if (len >= 4) { | 494 | 48 | hash = | 495 | 48 | hash * Z_L(33 * 33 * 33 * 33) + | 496 | 48 | str[0] * Z_L(33 * 33 * 33) + | 497 | 48 | str[1] * Z_L(33 * 33) + | 498 | 48 | str[2] * Z_L(33) + | 499 | 48 | str[3]; | 500 | 48 | len -= 4; | 501 | 48 | str += 4; | 502 | 48 | } | 503 | 5.77k | if (len >= 2) { | 504 | 5.73k | if (len > 2) { | 505 | 315 | hash = | 506 | 315 | hash * Z_L(33 * 33 * 33) + | 507 | 315 | str[0] * Z_L(33 * 33) + | 508 | 315 | str[1] * Z_L(33) + | 509 | 315 | str[2]; | 510 | 5.41k | } else { | 511 | 5.41k | hash = | 512 | 5.41k | hash * Z_L(33 * 33) + | 513 | 5.41k | str[0] * Z_L(33) + | 514 | 5.41k | str[1]; | 515 | 5.41k | } | 516 | 5.73k | } else if (len != 0) { | 517 | 46 | hash = hash * Z_L(33) + *str; | 518 | 46 | } | 519 | | #else | 520 | | /* variant with the hash unrolled eight times */ | 521 | | for (; len >= 8; len -= 8) { | 522 | | hash = ((hash << 5) + hash) + *str++; | 523 | | hash = ((hash << 5) + hash) + *str++; | 524 | | hash = ((hash << 5) + hash) + *str++; | 525 | | hash = ((hash << 5) + hash) + *str++; | 526 | | hash = ((hash << 5) + hash) + *str++; | 527 | | hash = ((hash << 5) + hash) + *str++; | 528 | | hash = ((hash << 5) + hash) + *str++; | 529 | | hash = ((hash << 5) + hash) + *str++; | 530 | | } | 531 | | switch (len) { | 532 | | case 7: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 533 | | case 6: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 534 | | case 5: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 535 | | case 4: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 536 | | case 3: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 537 | | case 2: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 538 | | case 1: hash = ((hash << 5) + hash) + *str++; break; | 539 | | case 0: break; | 540 | | EMPTY_SWITCH_DEFAULT_CASE() | 541 | | } | 542 | | #endif | 543 | | | 544 | | /* Hash value can't be zero, so we always set the high bit */ | 545 | 5.77k | #if SIZEOF_ZEND_LONG == 8 | 546 | 5.77k | return hash | Z_UL(0x8000000000000000); | 547 | | #elif SIZEOF_ZEND_LONG == 4 | 548 | | return hash | Z_UL(0x80000000); | 549 | | #else | 550 | | # error "Unknown SIZEOF_ZEND_LONG" | 551 | | #endif | 552 | 5.77k | } |
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: 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_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 | 454 | 4.57M | { | 455 | 4.57M | zend_ulong hash = Z_UL(5381); | 456 | | | 457 | 4.57M | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) | 458 | | /* Version with multiplication works better on modern CPU */ | 459 | 8.24M | for (; len >= 8; len -= 8, str += 8) { | 460 | | # if defined(__aarch64__) && !defined(WORDS_BIGENDIAN) | 461 | | /* On some architectures it is beneficial to load 8 bytes at a | 462 | | time and extract each byte with a bit field extract instr. */ | 463 | | uint64_t chunk; | 464 | | | 465 | | memcpy(&chunk, str, sizeof(chunk)); | 466 | | hash = | 467 | | hash * 33 * 33 * 33 * 33 + | 468 | | ((chunk >> (8 * 0)) & 0xff) * 33 * 33 * 33 + | 469 | | ((chunk >> (8 * 1)) & 0xff) * 33 * 33 + | 470 | | ((chunk >> (8 * 2)) & 0xff) * 33 + | 471 | | ((chunk >> (8 * 3)) & 0xff); | 472 | | hash = | 473 | | hash * 33 * 33 * 33 * 33 + | 474 | | ((chunk >> (8 * 4)) & 0xff) * 33 * 33 * 33 + | 475 | | ((chunk >> (8 * 5)) & 0xff) * 33 * 33 + | 476 | | ((chunk >> (8 * 6)) & 0xff) * 33 + | 477 | | ((chunk >> (8 * 7)) & 0xff); | 478 | | # else | 479 | 3.66M | hash = | 480 | 3.66M | hash * Z_L(33 * 33 * 33 * 33) + | 481 | 3.66M | str[0] * Z_L(33 * 33 * 33) + | 482 | 3.66M | str[1] * Z_L(33 * 33) + | 483 | 3.66M | str[2] * Z_L(33) + | 484 | 3.66M | str[3]; | 485 | 3.66M | hash = | 486 | 3.66M | hash * Z_L(33 * 33 * 33 * 33) + | 487 | 3.66M | str[4] * Z_L(33 * 33 * 33) + | 488 | 3.66M | str[5] * Z_L(33 * 33) + | 489 | 3.66M | str[6] * Z_L(33) + | 490 | 3.66M | str[7]; | 491 | 3.66M | # endif | 492 | 3.66M | } | 493 | 4.57M | if (len >= 4) { | 494 | 1.65M | hash = | 495 | 1.65M | hash * Z_L(33 * 33 * 33 * 33) + | 496 | 1.65M | str[0] * Z_L(33 * 33 * 33) + | 497 | 1.65M | str[1] * Z_L(33 * 33) + | 498 | 1.65M | str[2] * Z_L(33) + | 499 | 1.65M | str[3]; | 500 | 1.65M | len -= 4; | 501 | 1.65M | str += 4; | 502 | 1.65M | } | 503 | 4.57M | if (len >= 2) { | 504 | 1.41M | if (len > 2) { | 505 | 795k | hash = | 506 | 795k | hash * Z_L(33 * 33 * 33) + | 507 | 795k | str[0] * Z_L(33 * 33) + | 508 | 795k | str[1] * Z_L(33) + | 509 | 795k | str[2]; | 510 | 795k | } else { | 511 | 622k | hash = | 512 | 622k | hash * Z_L(33 * 33) + | 513 | 622k | str[0] * Z_L(33) + | 514 | 622k | str[1]; | 515 | 622k | } | 516 | 3.15M | } else if (len != 0) { | 517 | 2.14M | hash = hash * Z_L(33) + *str; | 518 | 2.14M | } | 519 | | #else | 520 | | /* variant with the hash unrolled eight times */ | 521 | | for (; len >= 8; len -= 8) { | 522 | | hash = ((hash << 5) + hash) + *str++; | 523 | | hash = ((hash << 5) + hash) + *str++; | 524 | | hash = ((hash << 5) + hash) + *str++; | 525 | | hash = ((hash << 5) + hash) + *str++; | 526 | | hash = ((hash << 5) + hash) + *str++; | 527 | | hash = ((hash << 5) + hash) + *str++; | 528 | | hash = ((hash << 5) + hash) + *str++; | 529 | | hash = ((hash << 5) + hash) + *str++; | 530 | | } | 531 | | switch (len) { | 532 | | case 7: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 533 | | case 6: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 534 | | case 5: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 535 | | case 4: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 536 | | case 3: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 537 | | case 2: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 538 | | case 1: hash = ((hash << 5) + hash) + *str++; break; | 539 | | case 0: break; | 540 | | EMPTY_SWITCH_DEFAULT_CASE() | 541 | | } | 542 | | #endif | 543 | | | 544 | | /* Hash value can't be zero, so we always set the high bit */ | 545 | 4.57M | #if SIZEOF_ZEND_LONG == 8 | 546 | 4.57M | return hash | Z_UL(0x8000000000000000); | 547 | | #elif SIZEOF_ZEND_LONG == 4 | 548 | | return hash | Z_UL(0x80000000); | 549 | | #else | 550 | | # error "Unknown SIZEOF_ZEND_LONG" | 551 | | #endif | 552 | 4.57M | } |
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 | 454 | 25.2M | { | 455 | 25.2M | zend_ulong hash = Z_UL(5381); | 456 | | | 457 | 25.2M | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) | 458 | | /* Version with multiplication works better on modern CPU */ | 459 | 312M | for (; len >= 8; len -= 8, str += 8) { | 460 | | # if defined(__aarch64__) && !defined(WORDS_BIGENDIAN) | 461 | | /* On some architectures it is beneficial to load 8 bytes at a | 462 | | time and extract each byte with a bit field extract instr. */ | 463 | | uint64_t chunk; | 464 | | | 465 | | memcpy(&chunk, str, sizeof(chunk)); | 466 | | hash = | 467 | | hash * 33 * 33 * 33 * 33 + | 468 | | ((chunk >> (8 * 0)) & 0xff) * 33 * 33 * 33 + | 469 | | ((chunk >> (8 * 1)) & 0xff) * 33 * 33 + | 470 | | ((chunk >> (8 * 2)) & 0xff) * 33 + | 471 | | ((chunk >> (8 * 3)) & 0xff); | 472 | | hash = | 473 | | hash * 33 * 33 * 33 * 33 + | 474 | | ((chunk >> (8 * 4)) & 0xff) * 33 * 33 * 33 + | 475 | | ((chunk >> (8 * 5)) & 0xff) * 33 * 33 + | 476 | | ((chunk >> (8 * 6)) & 0xff) * 33 + | 477 | | ((chunk >> (8 * 7)) & 0xff); | 478 | | # else | 479 | 287M | hash = | 480 | 287M | hash * Z_L(33 * 33 * 33 * 33) + | 481 | 287M | str[0] * Z_L(33 * 33 * 33) + | 482 | 287M | str[1] * Z_L(33 * 33) + | 483 | 287M | str[2] * Z_L(33) + | 484 | 287M | str[3]; | 485 | 287M | hash = | 486 | 287M | hash * Z_L(33 * 33 * 33 * 33) + | 487 | 287M | str[4] * Z_L(33 * 33 * 33) + | 488 | 287M | str[5] * Z_L(33 * 33) + | 489 | 287M | str[6] * Z_L(33) + | 490 | 287M | str[7]; | 491 | 287M | # endif | 492 | 287M | } | 493 | 25.2M | if (len >= 4) { | 494 | 12.4M | hash = | 495 | 12.4M | hash * Z_L(33 * 33 * 33 * 33) + | 496 | 12.4M | str[0] * Z_L(33 * 33 * 33) + | 497 | 12.4M | str[1] * Z_L(33 * 33) + | 498 | 12.4M | str[2] * Z_L(33) + | 499 | 12.4M | str[3]; | 500 | 12.4M | len -= 4; | 501 | 12.4M | str += 4; | 502 | 12.4M | } | 503 | 25.2M | if (len >= 2) { | 504 | 10.6M | if (len > 2) { | 505 | 6.77M | hash = | 506 | 6.77M | hash * Z_L(33 * 33 * 33) + | 507 | 6.77M | str[0] * Z_L(33 * 33) + | 508 | 6.77M | str[1] * Z_L(33) + | 509 | 6.77M | str[2]; | 510 | 6.77M | } else { | 511 | 3.91M | hash = | 512 | 3.91M | hash * Z_L(33 * 33) + | 513 | 3.91M | str[0] * Z_L(33) + | 514 | 3.91M | str[1]; | 515 | 3.91M | } | 516 | 14.5M | } else if (len != 0) { | 517 | 10.8M | hash = hash * Z_L(33) + *str; | 518 | 10.8M | } | 519 | | #else | 520 | | /* variant with the hash unrolled eight times */ | 521 | | for (; len >= 8; len -= 8) { | 522 | | hash = ((hash << 5) + hash) + *str++; | 523 | | hash = ((hash << 5) + hash) + *str++; | 524 | | hash = ((hash << 5) + hash) + *str++; | 525 | | hash = ((hash << 5) + hash) + *str++; | 526 | | hash = ((hash << 5) + hash) + *str++; | 527 | | hash = ((hash << 5) + hash) + *str++; | 528 | | hash = ((hash << 5) + hash) + *str++; | 529 | | hash = ((hash << 5) + hash) + *str++; | 530 | | } | 531 | | switch (len) { | 532 | | case 7: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 533 | | case 6: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 534 | | case 5: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 535 | | case 4: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 536 | | case 3: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 537 | | case 2: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 538 | | case 1: hash = ((hash << 5) + hash) + *str++; break; | 539 | | case 0: break; | 540 | | EMPTY_SWITCH_DEFAULT_CASE() | 541 | | } | 542 | | #endif | 543 | | | 544 | | /* Hash value can't be zero, so we always set the high bit */ | 545 | 25.2M | #if SIZEOF_ZEND_LONG == 8 | 546 | 25.2M | return hash | Z_UL(0x8000000000000000); | 547 | | #elif SIZEOF_ZEND_LONG == 4 | 548 | | return hash | Z_UL(0x80000000); | 549 | | #else | 550 | | # error "Unknown SIZEOF_ZEND_LONG" | 551 | | #endif | 552 | 25.2M | } |
Unexecuted instantiation: zend_strtod.c:zend_inline_hash_func Unexecuted instantiation: zend_system_id.c:zend_inline_hash_func Unexecuted instantiation: zend_variables.c:zend_inline_hash_func Unexecuted instantiation: zend_virtual_cwd.c:zend_inline_hash_func Unexecuted instantiation: zend_vm_opcodes.c:zend_inline_hash_func Unexecuted instantiation: zend_weakrefs.c:zend_inline_hash_func Unexecuted instantiation: zend.c:zend_inline_hash_func Unexecuted instantiation: internal_functions_cli.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-parser.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-sapi.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-tracing-jit.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-exif.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-unserialize.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-function-jit.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-json.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-unserializehash.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-execute.c:zend_inline_hash_func |
553 | | |
554 | | // When adding a new string here, please also update build/gen_stub.php to the |
555 | | // known strings to be used in property registration; see gh-15751 |
556 | | #define ZEND_KNOWN_STRINGS(_) \ |
557 | | _(ZEND_STR_FILE, "file") \ |
558 | | _(ZEND_STR_LINE, "line") \ |
559 | | _(ZEND_STR_FUNCTION, "function") \ |
560 | | _(ZEND_STR_CLASS, "class") \ |
561 | | _(ZEND_STR_OBJECT, "object") \ |
562 | | _(ZEND_STR_TYPE, "type") \ |
563 | | _(ZEND_STR_OBJECT_OPERATOR, "->") \ |
564 | | _(ZEND_STR_PAAMAYIM_NEKUDOTAYIM, "::") \ |
565 | | _(ZEND_STR_ARGS, "args") \ |
566 | | _(ZEND_STR_UNKNOWN, "unknown") \ |
567 | | _(ZEND_STR_UNKNOWN_CAPITALIZED, "Unknown") \ |
568 | | _(ZEND_STR_EXIT, "exit") \ |
569 | | _(ZEND_STR_CLONE, "clone") \ |
570 | | _(ZEND_STR_EVAL, "eval") \ |
571 | | _(ZEND_STR_INCLUDE, "include") \ |
572 | | _(ZEND_STR_REQUIRE, "require") \ |
573 | | _(ZEND_STR_INCLUDE_ONCE, "include_once") \ |
574 | | _(ZEND_STR_REQUIRE_ONCE, "require_once") \ |
575 | | _(ZEND_STR_SCALAR, "scalar") \ |
576 | | _(ZEND_STR_ERROR_REPORTING, "error_reporting") \ |
577 | | _(ZEND_STR_STATIC, "static") \ |
578 | | _(ZEND_STR_THIS, "this") \ |
579 | | _(ZEND_STR_VALUE, "value") \ |
580 | | _(ZEND_STR_KEY, "key") \ |
581 | | _(ZEND_STR_MAGIC_INVOKE, "__invoke") \ |
582 | | _(ZEND_STR_PREVIOUS, "previous") \ |
583 | | _(ZEND_STR_CODE, "code") \ |
584 | | _(ZEND_STR_MESSAGE, "message") \ |
585 | | _(ZEND_STR_SEVERITY, "severity") \ |
586 | | _(ZEND_STR_STRING, "string") \ |
587 | | _(ZEND_STR_TRACE, "trace") \ |
588 | | _(ZEND_STR_SCHEME, "scheme") \ |
589 | | _(ZEND_STR_HOST, "host") \ |
590 | | _(ZEND_STR_PORT, "port") \ |
591 | | _(ZEND_STR_USER, "user") \ |
592 | | _(ZEND_STR_USERNAME, "username") \ |
593 | | _(ZEND_STR_PASS, "pass") \ |
594 | | _(ZEND_STR_PASSWORD, "password") \ |
595 | | _(ZEND_STR_PATH, "path") \ |
596 | | _(ZEND_STR_QUERY, "query") \ |
597 | | _(ZEND_STR_FRAGMENT, "fragment") \ |
598 | | _(ZEND_STR_NULL, "NULL") \ |
599 | | _(ZEND_STR_BOOLEAN, "boolean") \ |
600 | | _(ZEND_STR_INTEGER, "integer") \ |
601 | | _(ZEND_STR_DOUBLE, "double") \ |
602 | | _(ZEND_STR_ARRAY, "array") \ |
603 | | _(ZEND_STR_RESOURCE, "resource") \ |
604 | | _(ZEND_STR_CLOSED_RESOURCE, "resource (closed)") \ |
605 | | _(ZEND_STR_NAME, "name") \ |
606 | | _(ZEND_STR_ARGV, "argv") \ |
607 | | _(ZEND_STR_ARGC, "argc") \ |
608 | | _(ZEND_STR_ARRAY_CAPITALIZED, "Array") \ |
609 | | _(ZEND_STR_BOOL, "bool") \ |
610 | | _(ZEND_STR_INT, "int") \ |
611 | | _(ZEND_STR_FLOAT, "float") \ |
612 | | _(ZEND_STR_CALLABLE, "callable") \ |
613 | | _(ZEND_STR_ITERABLE, "iterable") \ |
614 | | _(ZEND_STR_VOID, "void") \ |
615 | | _(ZEND_STR_NEVER, "never") \ |
616 | | _(ZEND_STR_FALSE, "false") \ |
617 | | _(ZEND_STR_TRUE, "true") \ |
618 | | _(ZEND_STR_NULL_LOWERCASE, "null") \ |
619 | | _(ZEND_STR_MIXED, "mixed") \ |
620 | | _(ZEND_STR_TRAVERSABLE, "Traversable") \ |
621 | | _(ZEND_STR_SELF, "self") \ |
622 | | _(ZEND_STR_PARENT, "parent") \ |
623 | | _(ZEND_STR_SLEEP, "__sleep") \ |
624 | | _(ZEND_STR_WAKEUP, "__wakeup") \ |
625 | | _(ZEND_STR_CASES, "cases") \ |
626 | | _(ZEND_STR_FROM, "from") \ |
627 | | _(ZEND_STR_TRYFROM, "tryFrom") \ |
628 | | _(ZEND_STR_TRYFROM_LOWERCASE, "tryfrom") \ |
629 | | _(ZEND_STR_AUTOGLOBAL_SERVER, "_SERVER") \ |
630 | | _(ZEND_STR_AUTOGLOBAL_ENV, "_ENV") \ |
631 | | _(ZEND_STR_AUTOGLOBAL_REQUEST, "_REQUEST") \ |
632 | | _(ZEND_STR_COUNT, "count") \ |
633 | | _(ZEND_STR_SENSITIVEPARAMETER, "SensitiveParameter") \ |
634 | | _(ZEND_STR_CONST_EXPR_PLACEHOLDER, "[constant expression]") \ |
635 | | _(ZEND_STR_DEPRECATED_CAPITALIZED, "Deprecated") \ |
636 | | _(ZEND_STR_SINCE, "since") \ |
637 | | _(ZEND_STR_GET, "get") \ |
638 | | _(ZEND_STR_SET, "set") \ |
639 | | _(ZEND_STR_8_DOT_0, "8.0") \ |
640 | | _(ZEND_STR_8_DOT_1, "8.1") \ |
641 | | _(ZEND_STR_8_DOT_2, "8.2") \ |
642 | | _(ZEND_STR_8_DOT_3, "8.3") \ |
643 | | _(ZEND_STR_8_DOT_4, "8.4") \ |
644 | | _(ZEND_STR_8_DOT_5, "8.5") \ |
645 | | |
646 | | |
647 | | typedef enum _zend_known_string_id { |
648 | | #define _ZEND_STR_ID(id, str) id, |
649 | | ZEND_KNOWN_STRINGS(_ZEND_STR_ID) |
650 | | #undef _ZEND_STR_ID |
651 | | ZEND_STR_LAST_KNOWN |
652 | | } zend_known_string_id; |
653 | | |
654 | | #endif /* ZEND_STRING_H */ |