/src/php-src/Zend/zend_string.h
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | +----------------------------------------------------------------------+ |
3 | | | Zend Engine | |
4 | | +----------------------------------------------------------------------+ |
5 | | | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | |
6 | | +----------------------------------------------------------------------+ |
7 | | | This source file is subject to version 2.00 of the Zend license, | |
8 | | | that is bundled with this package in the file LICENSE, and is | |
9 | | | available through the world-wide-web at the following url: | |
10 | | | http://www.zend.com/license/2_00.txt. | |
11 | | | If you did not receive a copy of the Zend license and are unable to | |
12 | | | obtain it through the world-wide-web, please send a note to | |
13 | | | license@zend.com so we can mail you a copy immediately. | |
14 | | +----------------------------------------------------------------------+ |
15 | | | Authors: 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 | 10.8G | #define ZSTR_VAL(zstr) (zstr)->val |
69 | 4.04G | #define ZSTR_LEN(zstr) (zstr)->len |
70 | 212M | #define ZSTR_H(zstr) (zstr)->h |
71 | | #define ZSTR_HASH(zstr) zend_string_hash_val(zstr) |
72 | | |
73 | | /* Compatibility macros */ |
74 | | |
75 | | #define IS_INTERNED(s) ZSTR_IS_INTERNED(s) |
76 | 0 | #define STR_EMPTY_ALLOC() ZSTR_EMPTY_ALLOC() |
77 | | #define _STR_HEADER_SIZE _ZSTR_HEADER_SIZE |
78 | | #define STR_ALLOCA_ALLOC(str, _len, use_heap) ZSTR_ALLOCA_ALLOC(str, _len, use_heap) |
79 | | #define STR_ALLOCA_INIT(str, s, len, use_heap) ZSTR_ALLOCA_INIT(str, s, len, use_heap) |
80 | | #define STR_ALLOCA_FREE(str, use_heap) ZSTR_ALLOCA_FREE(str, use_heap) |
81 | | |
82 | | /*---*/ |
83 | | |
84 | 80.8M | #define ZSTR_IS_INTERNED(s) (GC_FLAGS(s) & IS_STR_INTERNED) |
85 | 1.23k | #define ZSTR_IS_VALID_UTF8(s) (GC_FLAGS(s) & IS_STR_VALID_UTF8) |
86 | | |
87 | | /* These are properties, encoded as flags, that will hold on the resulting string |
88 | | * after concatenating two strings that have these property. |
89 | | * Example: concatenating two UTF-8 strings yields another UTF-8 string. */ |
90 | 4.55M | #define ZSTR_COPYABLE_CONCAT_PROPERTIES (IS_STR_VALID_UTF8) |
91 | | |
92 | 1.87M | #define ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(s) (GC_FLAGS(s) & ZSTR_COPYABLE_CONCAT_PROPERTIES) |
93 | | /* This macro returns the copyable concat properties which hold on both strings. */ |
94 | 2.35M | #define ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH(s1, s2) (GC_FLAGS(s1) & GC_FLAGS(s2) & ZSTR_COPYABLE_CONCAT_PROPERTIES) |
95 | | |
96 | 486 | #define ZSTR_COPY_CONCAT_PROPERTIES(out, in) do { \ |
97 | 486 | zend_string *_out = (out); \ |
98 | 486 | uint32_t properties = ZSTR_GET_COPYABLE_CONCAT_PROPERTIES((in)); \ |
99 | 486 | GC_ADD_FLAGS(_out, properties); \ |
100 | 486 | } while (0) |
101 | | |
102 | 9.61k | #define ZSTR_COPY_CONCAT_PROPERTIES_BOTH(out, in1, in2) do { \ |
103 | 9.61k | zend_string *_out = (out); \ |
104 | 9.61k | uint32_t properties = ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH((in1), (in2)); \ |
105 | 9.61k | GC_ADD_FLAGS(_out, properties); \ |
106 | 9.61k | } while (0) |
107 | | |
108 | 4.46M | #define ZSTR_EMPTY_ALLOC() zend_empty_string |
109 | 1.39M | #define ZSTR_CHAR(c) zend_one_char_string[c] |
110 | 45.3M | #define ZSTR_KNOWN(idx) zend_known_strings[idx] |
111 | | |
112 | 9.43M | #define _ZSTR_HEADER_SIZE XtOffsetOf(zend_string, val) |
113 | | |
114 | | #define _ZSTR_STRUCT_SIZE(len) (_ZSTR_HEADER_SIZE + len + 1) |
115 | | |
116 | 752 | #define ZSTR_MAX_OVERHEAD (ZEND_MM_ALIGNED_SIZE(_ZSTR_HEADER_SIZE + 1)) |
117 | | #define ZSTR_MAX_LEN (SIZE_MAX - ZSTR_MAX_OVERHEAD) |
118 | | |
119 | 5.94k | #define ZSTR_ALLOCA_ALLOC(str, _len, use_heap) do { \ |
120 | 5.94k | (str) = (zend_string *)do_alloca(ZEND_MM_ALIGNED_SIZE_EX(_ZSTR_STRUCT_SIZE(_len), 8), (use_heap)); \ |
121 | 5.94k | GC_SET_REFCOUNT(str, 1); \ |
122 | 5.94k | GC_TYPE_INFO(str) = GC_STRING; \ |
123 | 5.94k | ZSTR_H(str) = 0; \ |
124 | 5.94k | ZSTR_LEN(str) = _len; \ |
125 | 5.94k | } while (0) |
126 | | |
127 | | #define ZSTR_ALLOCA_INIT(str, s, len, use_heap) do { \ |
128 | | ZSTR_ALLOCA_ALLOC(str, len, use_heap); \ |
129 | | memcpy(ZSTR_VAL(str), (s), (len)); \ |
130 | | ZSTR_VAL(str)[(len)] = '\0'; \ |
131 | | } while (0) |
132 | | |
133 | 5.94k | #define ZSTR_ALLOCA_FREE(str, use_heap) free_alloca(str, use_heap) |
134 | | |
135 | 108k | #define ZSTR_INIT_LITERAL(s, persistent) (zend_string_init((s), strlen(s), (persistent))) |
136 | | |
137 | | /*---*/ |
138 | | |
139 | | static zend_always_inline zend_ulong zend_string_hash_val(zend_string *s) |
140 | 48.3M | { |
141 | 48.3M | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); |
142 | 48.3M | } 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: csprng.c:zend_string_hash_val Unexecuted instantiation: engine_mt19937.c:zend_string_hash_val Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_hash_val Unexecuted instantiation: engine_secure.c:zend_string_hash_val Unexecuted instantiation: engine_user.c:zend_string_hash_val Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_hash_val Unexecuted instantiation: gammasection.c:zend_string_hash_val Unexecuted instantiation: random.c:zend_string_hash_val Unexecuted instantiation: randomizer.c:zend_string_hash_val Unexecuted instantiation: zend_utils.c:zend_string_hash_val Unexecuted instantiation: php_reflection.c:zend_string_hash_val Unexecuted instantiation: php_spl.c:zend_string_hash_val Unexecuted instantiation: spl_array.c:zend_string_hash_val Unexecuted instantiation: spl_directory.c:zend_string_hash_val Unexecuted instantiation: spl_dllist.c:zend_string_hash_val Unexecuted instantiation: spl_exceptions.c:zend_string_hash_val Unexecuted instantiation: spl_fixedarray.c:zend_string_hash_val Unexecuted instantiation: spl_functions.c:zend_string_hash_val Unexecuted instantiation: spl_heap.c:zend_string_hash_val Unexecuted instantiation: spl_iterators.c:zend_string_hash_val Unexecuted instantiation: spl_observer.c:zend_string_hash_val Unexecuted instantiation: array.c:zend_string_hash_val Unexecuted instantiation: assert.c:zend_string_hash_val Unexecuted instantiation: base64.c:zend_string_hash_val Unexecuted instantiation: basic_functions.c:zend_string_hash_val Unexecuted instantiation: browscap.c:zend_string_hash_val Unexecuted instantiation: crc32_x86.c:zend_string_hash_val Unexecuted instantiation: crc32.c:zend_string_hash_val Unexecuted instantiation: credits.c:zend_string_hash_val Unexecuted instantiation: crypt.c:zend_string_hash_val Unexecuted instantiation: css.c:zend_string_hash_val Unexecuted instantiation: datetime.c:zend_string_hash_val Unexecuted instantiation: dir.c:zend_string_hash_val Unexecuted instantiation: dl.c:zend_string_hash_val Unexecuted instantiation: dns.c:zend_string_hash_val Unexecuted instantiation: exec.c:zend_string_hash_val Unexecuted instantiation: file.c:zend_string_hash_val Unexecuted instantiation: filestat.c:zend_string_hash_val Unexecuted instantiation: filters.c:zend_string_hash_val Unexecuted instantiation: flock_compat.c:zend_string_hash_val Unexecuted instantiation: formatted_print.c:zend_string_hash_val Unexecuted instantiation: fsock.c:zend_string_hash_val Unexecuted instantiation: ftok.c:zend_string_hash_val Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_hash_val Unexecuted instantiation: head.c:zend_string_hash_val Unexecuted instantiation: hrtime.c:zend_string_hash_val Unexecuted instantiation: html.c:zend_string_hash_val Unexecuted instantiation: http_fopen_wrapper.c:zend_string_hash_val Unexecuted instantiation: http.c:zend_string_hash_val Unexecuted instantiation: image.c:zend_string_hash_val Unexecuted instantiation: incomplete_class.c:zend_string_hash_val Unexecuted instantiation: info.c:zend_string_hash_val Unexecuted instantiation: iptc.c:zend_string_hash_val Unexecuted instantiation: levenshtein.c:zend_string_hash_val Unexecuted instantiation: link.c:zend_string_hash_val Unexecuted instantiation: mail.c:zend_string_hash_val Unexecuted instantiation: math.c:zend_string_hash_val Unexecuted instantiation: md5.c:zend_string_hash_val Unexecuted instantiation: metaphone.c:zend_string_hash_val Unexecuted instantiation: microtime.c:zend_string_hash_val Unexecuted instantiation: net.c:zend_string_hash_val Unexecuted instantiation: pack.c:zend_string_hash_val Unexecuted instantiation: pageinfo.c:zend_string_hash_val Unexecuted instantiation: password.c:zend_string_hash_val Unexecuted instantiation: php_fopen_wrapper.c:zend_string_hash_val Unexecuted instantiation: proc_open.c:zend_string_hash_val Unexecuted instantiation: quot_print.c:zend_string_hash_val Unexecuted instantiation: scanf.c:zend_string_hash_val Unexecuted instantiation: sha1.c:zend_string_hash_val Unexecuted instantiation: soundex.c:zend_string_hash_val Unexecuted instantiation: streamsfuncs.c:zend_string_hash_val Unexecuted instantiation: string.c:zend_string_hash_val Unexecuted instantiation: strnatcmp.c:zend_string_hash_val Unexecuted instantiation: syslog.c:zend_string_hash_val Unexecuted instantiation: type.c:zend_string_hash_val Unexecuted instantiation: uniqid.c:zend_string_hash_val Unexecuted instantiation: url_scanner_ex.c:zend_string_hash_val Unexecuted instantiation: url.c:zend_string_hash_val Unexecuted instantiation: user_filters.c:zend_string_hash_val Unexecuted instantiation: uuencode.c:zend_string_hash_val Unexecuted instantiation: var_unserializer.c:zend_string_hash_val Unexecuted instantiation: var.c:zend_string_hash_val Unexecuted instantiation: versioning.c:zend_string_hash_val Unexecuted instantiation: crypt_sha256.c:zend_string_hash_val Unexecuted instantiation: crypt_sha512.c:zend_string_hash_val Unexecuted instantiation: php_crypt_r.c:zend_string_hash_val Unexecuted instantiation: php_uri.c:zend_string_hash_val Unexecuted instantiation: php_uri_common.c:zend_string_hash_val Unexecuted instantiation: 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 | 140 | 227k | { | 141 | 227k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 142 | 227k | } |
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 | 140 | 3.92k | { | 141 | 3.92k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 142 | 3.92k | } |
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 | 140 | 1.49M | { | 141 | 1.49M | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 142 | 1.49M | } |
Unexecuted instantiation: zend_constants.c:zend_string_hash_val Unexecuted instantiation: zend_cpuinfo.c:zend_string_hash_val Unexecuted instantiation: zend_default_classes.c:zend_string_hash_val Unexecuted instantiation: zend_dtrace.c:zend_string_hash_val Unexecuted instantiation: zend_enum.c:zend_string_hash_val Unexecuted instantiation: zend_exceptions.c:zend_string_hash_val Unexecuted instantiation: zend_execute_API.c:zend_string_hash_val Unexecuted instantiation: zend_execute.c:zend_string_hash_val Unexecuted instantiation: zend_extensions.c:zend_string_hash_val Unexecuted instantiation: zend_fibers.c:zend_string_hash_val Unexecuted instantiation: zend_float.c:zend_string_hash_val Unexecuted instantiation: zend_gc.c:zend_string_hash_val Unexecuted instantiation: zend_gdb.c:zend_string_hash_val Unexecuted instantiation: zend_generators.c:zend_string_hash_val zend_hash.c:zend_string_hash_val Line | Count | Source | 140 | 45.5M | { | 141 | 45.5M | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 142 | 45.5M | } |
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 | 140 | 374 | { | 141 | 374 | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 142 | 374 | } |
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 | 140 | 10 | { | 141 | 10 | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 142 | 10 | } |
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 | 140 | 1.06M | { | 141 | 1.06M | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 142 | 1.06M | } |
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 |
143 | | |
144 | | static zend_always_inline void zend_string_forget_hash_val(zend_string *s) |
145 | 6.88M | { |
146 | 6.88M | ZSTR_H(s) = 0; |
147 | 6.88M | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); |
148 | 6.88M | } 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 | 145 | 207 | { | 146 | 207 | ZSTR_H(s) = 0; | 147 | 207 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 148 | 207 | } |
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 | 145 | 2.95k | { | 146 | 2.95k | ZSTR_H(s) = 0; | 147 | 2.95k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 148 | 2.95k | } |
Unexecuted instantiation: php_lexbor.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 | 145 | 209 | { | 146 | 209 | ZSTR_H(s) = 0; | 147 | 209 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 148 | 209 | } |
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 | 145 | 74 | { | 146 | 74 | ZSTR_H(s) = 0; | 147 | 74 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 148 | 74 | } |
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 | 145 | 5.61k | { | 146 | 5.61k | ZSTR_H(s) = 0; | 147 | 5.61k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 148 | 5.61k | } |
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 | 145 | 162 | { | 146 | 162 | ZSTR_H(s) = 0; | 147 | 162 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 148 | 162 | } |
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 | 145 | 943 | { | 146 | 943 | ZSTR_H(s) = 0; | 147 | 943 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 148 | 943 | } |
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 | 145 | 1.56k | { | 146 | 1.56k | ZSTR_H(s) = 0; | 147 | 1.56k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 148 | 1.56k | } |
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: explicit_bzero.c:zend_string_forget_hash_val fopen_wrappers.c:zend_string_forget_hash_val Line | Count | Source | 145 | 23 | { | 146 | 23 | ZSTR_H(s) = 0; | 147 | 23 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 148 | 23 | } |
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 | 145 | 3.83k | { | 146 | 3.83k | ZSTR_H(s) = 0; | 147 | 3.83k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 148 | 3.83k | } |
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 | 145 | 124 | { | 146 | 124 | ZSTR_H(s) = 0; | 147 | 124 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 148 | 124 | } |
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 | 145 | 2.19k | { | 146 | 2.19k | ZSTR_H(s) = 0; | 147 | 2.19k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 148 | 2.19k | } |
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 | 145 | 220k | { | 146 | 220k | ZSTR_H(s) = 0; | 147 | 220k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 148 | 220k | } |
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 | 145 | 1.12M | { | 146 | 1.12M | ZSTR_H(s) = 0; | 147 | 1.12M | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 148 | 1.12M | } |
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 | 145 | 899k | { | 146 | 899k | ZSTR_H(s) = 0; | 147 | 899k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 148 | 899k | } |
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 | 145 | 4.62M | { | 146 | 4.62M | ZSTR_H(s) = 0; | 147 | 4.62M | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 148 | 4.62M | } |
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 |
149 | | |
150 | | static zend_always_inline uint32_t zend_string_refcount(const zend_string *s) |
151 | 0 | { |
152 | 0 | if (!ZSTR_IS_INTERNED(s)) { |
153 | 0 | return GC_REFCOUNT(s); |
154 | 0 | } |
155 | 0 | return 1; |
156 | 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: 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: 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 |
157 | | |
158 | | static zend_always_inline uint32_t zend_string_addref(zend_string *s) |
159 | 1.57M | { |
160 | 1.57M | if (!ZSTR_IS_INTERNED(s)) { |
161 | 1.43M | return GC_ADDREF(s); |
162 | 1.43M | } |
163 | 140k | return 1; |
164 | 1.57M | } 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: 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 | 159 | 30 | { | 160 | 30 | if (!ZSTR_IS_INTERNED(s)) { | 161 | 0 | return GC_ADDREF(s); | 162 | 0 | } | 163 | 30 | return 1; | 164 | 30 | } |
Unexecuted instantiation: php_spl.c:zend_string_addref Unexecuted instantiation: spl_array.c:zend_string_addref Unexecuted instantiation: spl_directory.c:zend_string_addref Unexecuted instantiation: spl_dllist.c:zend_string_addref Unexecuted instantiation: spl_exceptions.c:zend_string_addref Unexecuted instantiation: spl_fixedarray.c:zend_string_addref Unexecuted instantiation: spl_functions.c:zend_string_addref Unexecuted instantiation: spl_heap.c:zend_string_addref Unexecuted instantiation: spl_iterators.c:zend_string_addref Unexecuted instantiation: spl_observer.c:zend_string_addref Unexecuted instantiation: array.c:zend_string_addref Unexecuted instantiation: assert.c:zend_string_addref Unexecuted instantiation: base64.c:zend_string_addref basic_functions.c:zend_string_addref Line | Count | Source | 159 | 5 | { | 160 | 5 | if (!ZSTR_IS_INTERNED(s)) { | 161 | 0 | return GC_ADDREF(s); | 162 | 0 | } | 163 | 5 | return 1; | 164 | 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: 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 | 159 | 65.5k | { | 160 | 65.5k | if (!ZSTR_IS_INTERNED(s)) { | 161 | 3.52k | return GC_ADDREF(s); | 162 | 3.52k | } | 163 | 62.0k | return 1; | 164 | 65.5k | } |
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 | 159 | 8.72k | { | 160 | 8.72k | if (!ZSTR_IS_INTERNED(s)) { | 161 | 5.74k | return GC_ADDREF(s); | 162 | 5.74k | } | 163 | 2.98k | return 1; | 164 | 8.72k | } |
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 | 159 | 13.4k | { | 160 | 13.4k | if (!ZSTR_IS_INTERNED(s)) { | 161 | 204 | return GC_ADDREF(s); | 162 | 204 | } | 163 | 13.2k | return 1; | 164 | 13.4k | } |
zend_compile.c:zend_string_addref Line | Count | Source | 159 | 19.1k | { | 160 | 19.1k | if (!ZSTR_IS_INTERNED(s)) { | 161 | 3.44k | return GC_ADDREF(s); | 162 | 3.44k | } | 163 | 15.6k | return 1; | 164 | 19.1k | } |
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 Unexecuted instantiation: zend_execute_API.c:zend_string_addref zend_execute.c:zend_string_addref Line | Count | Source | 159 | 12.6k | { | 160 | 12.6k | if (!ZSTR_IS_INTERNED(s)) { | 161 | 8.61k | return GC_ADDREF(s); | 162 | 8.61k | } | 163 | 4.03k | return 1; | 164 | 12.6k | } |
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 | 159 | 1.40M | { | 160 | 1.40M | if (!ZSTR_IS_INTERNED(s)) { | 161 | 1.40M | return GC_ADDREF(s); | 162 | 1.40M | } | 163 | 2.71k | return 1; | 164 | 1.40M | } |
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 | 159 | 42.3k | { | 160 | 42.3k | if (!ZSTR_IS_INTERNED(s)) { | 161 | 2.96k | return GC_ADDREF(s); | 162 | 2.96k | } | 163 | 39.4k | return 1; | 164 | 42.3k | } |
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 | 159 | 10 | { | 160 | 10 | if (!ZSTR_IS_INTERNED(s)) { | 161 | 10 | return GC_ADDREF(s); | 162 | 10 | } | 163 | 0 | return 1; | 164 | 10 | } |
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 | 159 | 1.68k | { | 160 | 1.68k | if (!ZSTR_IS_INTERNED(s)) { | 161 | 1.17k | return GC_ADDREF(s); | 162 | 1.17k | } | 163 | 517 | return 1; | 164 | 1.68k | } |
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 |
165 | | |
166 | | static zend_always_inline uint32_t zend_string_delref(zend_string *s) |
167 | 136k | { |
168 | 136k | if (!ZSTR_IS_INTERNED(s)) { |
169 | 136k | return GC_DELREF(s); |
170 | 136k | } |
171 | 72 | return 1; |
172 | 136k | } 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: 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: 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 | 167 | 72 | { | 168 | 72 | if (!ZSTR_IS_INTERNED(s)) { | 169 | 0 | return GC_DELREF(s); | 170 | 0 | } | 171 | 72 | return 1; | 172 | 72 | } |
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 | 167 | 136k | { | 168 | 136k | if (!ZSTR_IS_INTERNED(s)) { | 169 | 136k | return GC_DELREF(s); | 170 | 136k | } | 171 | 0 | return 1; | 172 | 136k | } |
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 |
173 | | |
174 | | static zend_always_inline zend_string *zend_string_alloc(size_t len, bool persistent) |
175 | 22.6M | { |
176 | 22.6M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); |
177 | | |
178 | 22.6M | GC_SET_REFCOUNT(ret, 1); |
179 | 22.6M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); |
180 | 22.6M | ZSTR_H(ret) = 0; |
181 | 22.6M | ZSTR_LEN(ret) = len; |
182 | 22.6M | return ret; |
183 | 22.6M | } php_date.c:zend_string_alloc Line | Count | Source | 175 | 1.58k | { | 176 | 1.58k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 1.58k | GC_SET_REFCOUNT(ret, 1); | 179 | 1.58k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 1.58k | ZSTR_H(ret) = 0; | 181 | 1.58k | ZSTR_LEN(ret) = len; | 182 | 1.58k | return ret; | 183 | 1.58k | } |
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 | 175 | 508 | { | 176 | 508 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 508 | GC_SET_REFCOUNT(ret, 1); | 179 | 508 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 508 | ZSTR_H(ret) = 0; | 181 | 508 | ZSTR_LEN(ret) = len; | 182 | 508 | return ret; | 183 | 508 | } |
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 | 175 | 1.97k | { | 176 | 1.97k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 1.97k | GC_SET_REFCOUNT(ret, 1); | 179 | 1.97k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 1.97k | ZSTR_H(ret) = 0; | 181 | 1.97k | ZSTR_LEN(ret) = len; | 182 | 1.97k | return ret; | 183 | 1.97k | } |
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 | 175 | 36.1k | { | 176 | 36.1k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 36.1k | GC_SET_REFCOUNT(ret, 1); | 179 | 36.1k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 36.1k | ZSTR_H(ret) = 0; | 181 | 36.1k | ZSTR_LEN(ret) = len; | 182 | 36.1k | return ret; | 183 | 36.1k | } |
Line | Count | Source | 175 | 281 | { | 176 | 281 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 281 | GC_SET_REFCOUNT(ret, 1); | 179 | 281 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 281 | ZSTR_H(ret) = 0; | 181 | 281 | ZSTR_LEN(ret) = len; | 182 | 281 | return ret; | 183 | 281 | } |
Unexecuted instantiation: php_lexbor.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 | 175 | 64 | { | 176 | 64 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 64 | GC_SET_REFCOUNT(ret, 1); | 179 | 64 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 64 | ZSTR_H(ret) = 0; | 181 | 64 | ZSTR_LEN(ret) = len; | 182 | 64 | return ret; | 183 | 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 | 175 | 330 | { | 176 | 330 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 330 | GC_SET_REFCOUNT(ret, 1); | 179 | 330 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 330 | ZSTR_H(ret) = 0; | 181 | 330 | ZSTR_LEN(ret) = len; | 182 | 330 | return ret; | 183 | 330 | } |
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 | 175 | 31 | { | 176 | 31 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 31 | GC_SET_REFCOUNT(ret, 1); | 179 | 31 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 31 | ZSTR_H(ret) = 0; | 181 | 31 | ZSTR_LEN(ret) = len; | 182 | 31 | return ret; | 183 | 31 | } |
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 | 175 | 32 | { | 176 | 32 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 32 | GC_SET_REFCOUNT(ret, 1); | 179 | 32 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 32 | ZSTR_H(ret) = 0; | 181 | 32 | ZSTR_LEN(ret) = len; | 182 | 32 | return ret; | 183 | 32 | } |
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 | 175 | 76 | { | 176 | 76 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 76 | GC_SET_REFCOUNT(ret, 1); | 179 | 76 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 76 | ZSTR_H(ret) = 0; | 181 | 76 | ZSTR_LEN(ret) = len; | 182 | 76 | return ret; | 183 | 76 | } |
Unexecuted instantiation: spl_observer.c:zend_string_alloc Unexecuted instantiation: array.c:zend_string_alloc assert.c:zend_string_alloc Line | Count | Source | 175 | 33 | { | 176 | 33 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 33 | GC_SET_REFCOUNT(ret, 1); | 179 | 33 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 33 | ZSTR_H(ret) = 0; | 181 | 33 | ZSTR_LEN(ret) = len; | 182 | 33 | return ret; | 183 | 33 | } |
Unexecuted instantiation: base64.c:zend_string_alloc basic_functions.c:zend_string_alloc Line | Count | Source | 175 | 170 | { | 176 | 170 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 170 | GC_SET_REFCOUNT(ret, 1); | 179 | 170 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 170 | ZSTR_H(ret) = 0; | 181 | 170 | ZSTR_LEN(ret) = len; | 182 | 170 | return ret; | 183 | 170 | } |
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 | 175 | 21 | { | 176 | 21 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 21 | GC_SET_REFCOUNT(ret, 1); | 179 | 21 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 21 | ZSTR_H(ret) = 0; | 181 | 21 | ZSTR_LEN(ret) = len; | 182 | 21 | return ret; | 183 | 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 | 175 | 7.82k | { | 176 | 7.82k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 7.82k | GC_SET_REFCOUNT(ret, 1); | 179 | 7.82k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 7.82k | ZSTR_H(ret) = 0; | 181 | 7.82k | ZSTR_LEN(ret) = len; | 182 | 7.82k | return ret; | 183 | 7.82k | } |
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 | 175 | 4.14k | { | 176 | 4.14k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 4.14k | GC_SET_REFCOUNT(ret, 1); | 179 | 4.14k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 4.14k | ZSTR_H(ret) = 0; | 181 | 4.14k | ZSTR_LEN(ret) = len; | 182 | 4.14k | return ret; | 183 | 4.14k | } |
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 | 175 | 5 | { | 176 | 5 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 5 | GC_SET_REFCOUNT(ret, 1); | 179 | 5 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 5 | ZSTR_H(ret) = 0; | 181 | 5 | ZSTR_LEN(ret) = len; | 182 | 5 | return ret; | 183 | 5 | } |
Unexecuted instantiation: hrtime.c:zend_string_alloc Line | Count | Source | 175 | 1.60k | { | 176 | 1.60k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 1.60k | GC_SET_REFCOUNT(ret, 1); | 179 | 1.60k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 1.60k | ZSTR_H(ret) = 0; | 181 | 1.60k | ZSTR_LEN(ret) = len; | 182 | 1.60k | return ret; | 183 | 1.60k | } |
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 | 175 | 46 | { | 176 | 46 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 46 | GC_SET_REFCOUNT(ret, 1); | 179 | 46 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 46 | ZSTR_H(ret) = 0; | 181 | 46 | ZSTR_LEN(ret) = len; | 182 | 46 | return ret; | 183 | 46 | } |
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 | 175 | 14 | { | 176 | 14 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 14 | GC_SET_REFCOUNT(ret, 1); | 179 | 14 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 14 | ZSTR_H(ret) = 0; | 181 | 14 | ZSTR_LEN(ret) = len; | 182 | 14 | return ret; | 183 | 14 | } |
Line | Count | Source | 175 | 357 | { | 176 | 357 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 357 | GC_SET_REFCOUNT(ret, 1); | 179 | 357 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 357 | ZSTR_H(ret) = 0; | 181 | 357 | ZSTR_LEN(ret) = len; | 182 | 357 | return ret; | 183 | 357 | } |
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 | 175 | 3.84k | { | 176 | 3.84k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 3.84k | GC_SET_REFCOUNT(ret, 1); | 179 | 3.84k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 3.84k | ZSTR_H(ret) = 0; | 181 | 3.84k | ZSTR_LEN(ret) = len; | 182 | 3.84k | return ret; | 183 | 3.84k | } |
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 | 175 | 80 | { | 176 | 80 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 80 | GC_SET_REFCOUNT(ret, 1); | 179 | 80 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 80 | ZSTR_H(ret) = 0; | 181 | 80 | ZSTR_LEN(ret) = len; | 182 | 80 | return ret; | 183 | 80 | } |
Unexecuted instantiation: url.c:zend_string_alloc user_filters.c:zend_string_alloc Line | Count | Source | 175 | 160 | { | 176 | 160 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 160 | GC_SET_REFCOUNT(ret, 1); | 179 | 160 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 160 | ZSTR_H(ret) = 0; | 181 | 160 | ZSTR_LEN(ret) = len; | 182 | 160 | return ret; | 183 | 160 | } |
Unexecuted instantiation: uuencode.c:zend_string_alloc var_unserializer.c:zend_string_alloc Line | Count | Source | 175 | 139k | { | 176 | 139k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 139k | GC_SET_REFCOUNT(ret, 1); | 179 | 139k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 139k | ZSTR_H(ret) = 0; | 181 | 139k | ZSTR_LEN(ret) = len; | 182 | 139k | return ret; | 183 | 139k | } |
Line | Count | Source | 175 | 289 | { | 176 | 289 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 289 | GC_SET_REFCOUNT(ret, 1); | 179 | 289 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 289 | ZSTR_H(ret) = 0; | 181 | 289 | ZSTR_LEN(ret) = len; | 182 | 289 | return ret; | 183 | 289 | } |
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 | 175 | 64 | { | 176 | 64 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 64 | GC_SET_REFCOUNT(ret, 1); | 179 | 64 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 64 | ZSTR_H(ret) = 0; | 181 | 64 | ZSTR_LEN(ret) = len; | 182 | 64 | return ret; | 183 | 64 | } |
Unexecuted instantiation: php_uri_common.c:zend_string_alloc Unexecuted instantiation: explicit_bzero.c:zend_string_alloc fopen_wrappers.c:zend_string_alloc Line | Count | Source | 175 | 81.1k | { | 176 | 81.1k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 81.1k | GC_SET_REFCOUNT(ret, 1); | 179 | 81.1k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 81.1k | ZSTR_H(ret) = 0; | 181 | 81.1k | ZSTR_LEN(ret) = len; | 182 | 81.1k | return ret; | 183 | 81.1k | } |
Unexecuted instantiation: getopt.c:zend_string_alloc Line | Count | Source | 175 | 10 | { | 176 | 10 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 10 | GC_SET_REFCOUNT(ret, 1); | 179 | 10 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 10 | ZSTR_H(ret) = 0; | 181 | 10 | ZSTR_LEN(ret) = len; | 182 | 10 | return ret; | 183 | 10 | } |
Unexecuted instantiation: network.c:zend_string_alloc output.c:zend_string_alloc Line | Count | Source | 175 | 3.79k | { | 176 | 3.79k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 3.79k | GC_SET_REFCOUNT(ret, 1); | 179 | 3.79k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 3.79k | ZSTR_H(ret) = 0; | 181 | 3.79k | ZSTR_LEN(ret) = len; | 182 | 3.79k | return ret; | 183 | 3.79k | } |
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 | 175 | 224 | { | 176 | 224 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 224 | GC_SET_REFCOUNT(ret, 1); | 179 | 224 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 224 | ZSTR_H(ret) = 0; | 181 | 224 | ZSTR_LEN(ret) = len; | 182 | 224 | return ret; | 183 | 224 | } |
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 | 175 | 164k | { | 176 | 164k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 164k | GC_SET_REFCOUNT(ret, 1); | 179 | 164k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 164k | ZSTR_H(ret) = 0; | 181 | 164k | ZSTR_LEN(ret) = len; | 182 | 164k | return ret; | 183 | 164k | } |
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 | 175 | 32 | { | 176 | 32 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 32 | GC_SET_REFCOUNT(ret, 1); | 179 | 32 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 32 | ZSTR_H(ret) = 0; | 181 | 32 | ZSTR_LEN(ret) = len; | 182 | 32 | return ret; | 183 | 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 | 175 | 6.11k | { | 176 | 6.11k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 6.11k | GC_SET_REFCOUNT(ret, 1); | 179 | 6.11k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 6.11k | ZSTR_H(ret) = 0; | 181 | 6.11k | ZSTR_LEN(ret) = len; | 182 | 6.11k | return ret; | 183 | 6.11k | } |
Unexecuted instantiation: mmap.c:zend_string_alloc plain_wrapper.c:zend_string_alloc Line | Count | Source | 175 | 40 | { | 176 | 40 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 40 | GC_SET_REFCOUNT(ret, 1); | 179 | 40 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 40 | ZSTR_H(ret) = 0; | 181 | 40 | ZSTR_LEN(ret) = len; | 182 | 40 | return ret; | 183 | 40 | } |
streams.c:zend_string_alloc Line | Count | Source | 175 | 5 | { | 176 | 5 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 5 | GC_SET_REFCOUNT(ret, 1); | 179 | 5 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 5 | ZSTR_H(ret) = 0; | 181 | 5 | ZSTR_LEN(ret) = len; | 182 | 5 | return ret; | 183 | 5 | } |
Unexecuted instantiation: transports.c:zend_string_alloc userspace.c:zend_string_alloc Line | Count | Source | 175 | 559 | { | 176 | 559 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 559 | GC_SET_REFCOUNT(ret, 1); | 179 | 559 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 559 | ZSTR_H(ret) = 0; | 181 | 559 | ZSTR_LEN(ret) = len; | 182 | 559 | return ret; | 183 | 559 | } |
Unexecuted instantiation: xp_socket.c:zend_string_alloc block_pass.c:zend_string_alloc Line | Count | Source | 175 | 2.01k | { | 176 | 2.01k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 2.01k | GC_SET_REFCOUNT(ret, 1); | 179 | 2.01k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 2.01k | ZSTR_H(ret) = 0; | 181 | 2.01k | ZSTR_LEN(ret) = len; | 182 | 2.01k | return ret; | 183 | 2.01k | } |
compact_literals.c:zend_string_alloc Line | Count | Source | 175 | 9.20k | { | 176 | 9.20k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 9.20k | GC_SET_REFCOUNT(ret, 1); | 179 | 9.20k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 9.20k | ZSTR_H(ret) = 0; | 181 | 9.20k | ZSTR_LEN(ret) = len; | 182 | 9.20k | return ret; | 183 | 9.20k | } |
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 | 175 | 30 | { | 176 | 30 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 30 | GC_SET_REFCOUNT(ret, 1); | 179 | 30 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 30 | ZSTR_H(ret) = 0; | 181 | 30 | ZSTR_LEN(ret) = len; | 182 | 30 | return ret; | 183 | 30 | } |
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 | 175 | 4 | { | 176 | 4 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 4 | GC_SET_REFCOUNT(ret, 1); | 179 | 4 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 4 | ZSTR_H(ret) = 0; | 181 | 4 | ZSTR_LEN(ret) = len; | 182 | 4 | return ret; | 183 | 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 | 175 | 441k | { | 176 | 441k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 441k | GC_SET_REFCOUNT(ret, 1); | 179 | 441k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 441k | ZSTR_H(ret) = 0; | 181 | 441k | ZSTR_LEN(ret) = len; | 182 | 441k | return ret; | 183 | 441k | } |
Unexecuted instantiation: zend_ast.c:zend_string_alloc zend_attributes.c:zend_string_alloc Line | Count | Source | 175 | 16 | { | 176 | 16 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 16 | GC_SET_REFCOUNT(ret, 1); | 179 | 16 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 16 | ZSTR_H(ret) = 0; | 181 | 16 | ZSTR_LEN(ret) = len; | 182 | 16 | return ret; | 183 | 16 | } |
zend_builtin_functions.c:zend_string_alloc Line | Count | Source | 175 | 312 | { | 176 | 312 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 312 | GC_SET_REFCOUNT(ret, 1); | 179 | 312 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 312 | ZSTR_H(ret) = 0; | 181 | 312 | ZSTR_LEN(ret) = len; | 182 | 312 | return ret; | 183 | 312 | } |
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 | 175 | 476k | { | 176 | 476k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 476k | GC_SET_REFCOUNT(ret, 1); | 179 | 476k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 476k | ZSTR_H(ret) = 0; | 181 | 476k | ZSTR_LEN(ret) = len; | 182 | 476k | return ret; | 183 | 476k | } |
zend_constants.c:zend_string_alloc Line | Count | Source | 175 | 498 | { | 176 | 498 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 498 | GC_SET_REFCOUNT(ret, 1); | 179 | 498 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 498 | ZSTR_H(ret) = 0; | 181 | 498 | ZSTR_LEN(ret) = len; | 182 | 498 | return ret; | 183 | 498 | } |
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 | 175 | 6.21k | { | 176 | 6.21k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 6.21k | GC_SET_REFCOUNT(ret, 1); | 179 | 6.21k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 6.21k | ZSTR_H(ret) = 0; | 181 | 6.21k | ZSTR_LEN(ret) = len; | 182 | 6.21k | return ret; | 183 | 6.21k | } |
zend_exceptions.c:zend_string_alloc Line | Count | Source | 175 | 1.56M | { | 176 | 1.56M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 1.56M | GC_SET_REFCOUNT(ret, 1); | 179 | 1.56M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 1.56M | ZSTR_H(ret) = 0; | 181 | 1.56M | ZSTR_LEN(ret) = len; | 182 | 1.56M | return ret; | 183 | 1.56M | } |
zend_execute_API.c:zend_string_alloc Line | Count | Source | 175 | 132 | { | 176 | 132 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 132 | GC_SET_REFCOUNT(ret, 1); | 179 | 132 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 132 | ZSTR_H(ret) = 0; | 181 | 132 | ZSTR_LEN(ret) = len; | 182 | 132 | return ret; | 183 | 132 | } |
zend_execute.c:zend_string_alloc Line | Count | Source | 175 | 824k | { | 176 | 824k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 824k | GC_SET_REFCOUNT(ret, 1); | 179 | 824k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 824k | ZSTR_H(ret) = 0; | 181 | 824k | ZSTR_LEN(ret) = len; | 182 | 824k | return ret; | 183 | 824k | } |
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 | 175 | 297k | { | 176 | 297k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 297k | GC_SET_REFCOUNT(ret, 1); | 179 | 297k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 297k | ZSTR_H(ret) = 0; | 181 | 297k | ZSTR_LEN(ret) = len; | 182 | 297k | return ret; | 183 | 297k | } |
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 | 175 | 349k | { | 176 | 349k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 349k | GC_SET_REFCOUNT(ret, 1); | 179 | 349k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 349k | ZSTR_H(ret) = 0; | 181 | 349k | ZSTR_LEN(ret) = len; | 182 | 349k | return ret; | 183 | 349k | } |
zend_ini_scanner.c:zend_string_alloc Line | Count | Source | 175 | 1.33M | { | 176 | 1.33M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 1.33M | GC_SET_REFCOUNT(ret, 1); | 179 | 1.33M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 1.33M | ZSTR_H(ret) = 0; | 181 | 1.33M | ZSTR_LEN(ret) = len; | 182 | 1.33M | return ret; | 183 | 1.33M | } |
zend_ini.c:zend_string_alloc Line | Count | Source | 175 | 81.1k | { | 176 | 81.1k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 81.1k | GC_SET_REFCOUNT(ret, 1); | 179 | 81.1k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 81.1k | ZSTR_H(ret) = 0; | 181 | 81.1k | ZSTR_LEN(ret) = len; | 182 | 81.1k | return ret; | 183 | 81.1k | } |
zend_interfaces.c:zend_string_alloc Line | Count | Source | 175 | 280k | { | 176 | 280k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 280k | GC_SET_REFCOUNT(ret, 1); | 179 | 280k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 280k | ZSTR_H(ret) = 0; | 181 | 280k | ZSTR_LEN(ret) = len; | 182 | 280k | return ret; | 183 | 280k | } |
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 | 175 | 7.21M | { | 176 | 7.21M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 7.21M | GC_SET_REFCOUNT(ret, 1); | 179 | 7.21M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 7.21M | ZSTR_H(ret) = 0; | 181 | 7.21M | ZSTR_LEN(ret) = len; | 182 | 7.21M | return ret; | 183 | 7.21M | } |
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 | 175 | 740 | { | 176 | 740 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 740 | GC_SET_REFCOUNT(ret, 1); | 179 | 740 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 740 | ZSTR_H(ret) = 0; | 181 | 740 | ZSTR_LEN(ret) = len; | 182 | 740 | return ret; | 183 | 740 | } |
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 | 175 | 3.20M | { | 176 | 3.20M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 3.20M | GC_SET_REFCOUNT(ret, 1); | 179 | 3.20M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 3.20M | ZSTR_H(ret) = 0; | 181 | 3.20M | ZSTR_LEN(ret) = len; | 182 | 3.20M | return ret; | 183 | 3.20M | } |
zend_property_hooks.c:zend_string_alloc Line | Count | Source | 175 | 104 | { | 176 | 104 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 104 | GC_SET_REFCOUNT(ret, 1); | 179 | 104 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 104 | ZSTR_H(ret) = 0; | 181 | 104 | ZSTR_LEN(ret) = len; | 182 | 104 | return ret; | 183 | 104 | } |
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 | 175 | 4.66M | { | 176 | 4.66M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 4.66M | GC_SET_REFCOUNT(ret, 1); | 179 | 4.66M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 4.66M | ZSTR_H(ret) = 0; | 181 | 4.66M | ZSTR_LEN(ret) = len; | 182 | 4.66M | return ret; | 183 | 4.66M | } |
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 | 175 | 156k | { | 176 | 156k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 156k | GC_SET_REFCOUNT(ret, 1); | 179 | 156k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 156k | ZSTR_H(ret) = 0; | 181 | 156k | ZSTR_LEN(ret) = len; | 182 | 156k | return ret; | 183 | 156k | } |
zend_string.c:zend_string_alloc Line | Count | Source | 175 | 1.03M | { | 176 | 1.03M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 1.03M | GC_SET_REFCOUNT(ret, 1); | 179 | 1.03M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 1.03M | ZSTR_H(ret) = 0; | 181 | 1.03M | ZSTR_LEN(ret) = len; | 182 | 1.03M | return ret; | 183 | 1.03M | } |
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 | 175 | 128 | { | 176 | 128 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 128 | GC_SET_REFCOUNT(ret, 1); | 179 | 128 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 128 | ZSTR_H(ret) = 0; | 181 | 128 | ZSTR_LEN(ret) = len; | 182 | 128 | return ret; | 183 | 128 | } |
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 fuzzer-sapi.c:zend_string_alloc Line | Count | Source | 175 | 10.8k | { | 176 | 10.8k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 10.8k | GC_SET_REFCOUNT(ret, 1); | 179 | 10.8k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 10.8k | ZSTR_H(ret) = 0; | 181 | 10.8k | ZSTR_LEN(ret) = len; | 182 | 10.8k | return ret; | 183 | 10.8k | } |
fuzzer-tracing-jit.c:zend_string_alloc Line | Count | Source | 175 | 106k | { | 176 | 106k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 106k | GC_SET_REFCOUNT(ret, 1); | 179 | 106k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 106k | ZSTR_H(ret) = 0; | 181 | 106k | ZSTR_LEN(ret) = len; | 182 | 106k | return ret; | 183 | 106k | } |
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 | 175 | 103k | { | 176 | 103k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 103k | GC_SET_REFCOUNT(ret, 1); | 179 | 103k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 103k | ZSTR_H(ret) = 0; | 181 | 103k | ZSTR_LEN(ret) = len; | 182 | 103k | return ret; | 183 | 103k | } |
Unexecuted instantiation: fuzzer-json.c:zend_string_alloc fuzzer-unserializehash.c:zend_string_alloc Line | Count | Source | 175 | 2.39k | { | 176 | 2.39k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 177 | | | 178 | 2.39k | GC_SET_REFCOUNT(ret, 1); | 179 | 2.39k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 180 | 2.39k | ZSTR_H(ret) = 0; | 181 | 2.39k | ZSTR_LEN(ret) = len; | 182 | 2.39k | return ret; | 183 | 2.39k | } |
Unexecuted instantiation: fuzzer-execute.c:zend_string_alloc |
184 | | |
185 | | static zend_always_inline zend_string *zend_string_safe_alloc(size_t n, size_t m, size_t l, bool persistent) |
186 | 418k | { |
187 | 418k | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); |
188 | | |
189 | 418k | GC_SET_REFCOUNT(ret, 1); |
190 | 418k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); |
191 | 418k | ZSTR_H(ret) = 0; |
192 | 418k | ZSTR_LEN(ret) = (n * m) + l; |
193 | 418k | return ret; |
194 | 418k | } 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 | 186 | 3 | { | 187 | 3 | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 188 | | | 189 | 3 | GC_SET_REFCOUNT(ret, 1); | 190 | 3 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 191 | 3 | ZSTR_H(ret) = 0; | 192 | 3 | ZSTR_LEN(ret) = (n * m) + l; | 193 | 3 | return ret; | 194 | 3 | } |
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 | 186 | 1.97k | { | 187 | 1.97k | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 188 | | | 189 | 1.97k | GC_SET_REFCOUNT(ret, 1); | 190 | 1.97k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 191 | 1.97k | ZSTR_H(ret) = 0; | 192 | 1.97k | ZSTR_LEN(ret) = (n * m) + l; | 193 | 1.97k | return ret; | 194 | 1.97k | } |
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: 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 | 186 | 12 | { | 187 | 12 | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 188 | | | 189 | 12 | GC_SET_REFCOUNT(ret, 1); | 190 | 12 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 191 | 12 | ZSTR_H(ret) = 0; | 192 | 12 | ZSTR_LEN(ret) = (n * m) + l; | 193 | 12 | return ret; | 194 | 12 | } |
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 | 186 | 15 | { | 187 | 15 | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 188 | | | 189 | 15 | GC_SET_REFCOUNT(ret, 1); | 190 | 15 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 191 | 15 | ZSTR_H(ret) = 0; | 192 | 15 | ZSTR_LEN(ret) = (n * m) + l; | 193 | 15 | return ret; | 194 | 15 | } |
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 | 186 | 162 | { | 187 | 162 | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 188 | | | 189 | 162 | GC_SET_REFCOUNT(ret, 1); | 190 | 162 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 191 | 162 | ZSTR_H(ret) = 0; | 192 | 162 | ZSTR_LEN(ret) = (n * m) + l; | 193 | 162 | return ret; | 194 | 162 | } |
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 | 186 | 1.80k | { | 187 | 1.80k | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 188 | | | 189 | 1.80k | GC_SET_REFCOUNT(ret, 1); | 190 | 1.80k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 191 | 1.80k | ZSTR_H(ret) = 0; | 192 | 1.80k | ZSTR_LEN(ret) = (n * m) + l; | 193 | 1.80k | return ret; | 194 | 1.80k | } |
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 | 186 | 414k | { | 187 | 414k | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 188 | | | 189 | 414k | GC_SET_REFCOUNT(ret, 1); | 190 | 414k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 191 | 414k | ZSTR_H(ret) = 0; | 192 | 414k | ZSTR_LEN(ret) = (n * m) + l; | 193 | 414k | return ret; | 194 | 414k | } |
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: 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 |
195 | | |
196 | | static zend_always_inline zend_string *zend_string_init(const char *str, size_t len, bool persistent) |
197 | 13.4M | { |
198 | 13.4M | zend_string *ret = zend_string_alloc(len, persistent); |
199 | | |
200 | 13.4M | memcpy(ZSTR_VAL(ret), str, len); |
201 | 13.4M | ZSTR_VAL(ret)[len] = '\0'; |
202 | 13.4M | return ret; |
203 | 13.4M | } php_date.c:zend_string_init Line | Count | Source | 197 | 1.58k | { | 198 | 1.58k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 1.58k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 1.58k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 1.58k | return ret; | 203 | 1.58k | } |
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 | 197 | 361 | { | 198 | 361 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 361 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 361 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 361 | return ret; | 203 | 361 | } |
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 | 197 | 281 | { | 198 | 281 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 281 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 281 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 281 | return ret; | 203 | 281 | } |
Unexecuted instantiation: php_lexbor.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 | 197 | 64 | { | 198 | 64 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 64 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 64 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 64 | return ret; | 203 | 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 | 197 | 290 | { | 198 | 290 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 290 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 290 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 290 | return ret; | 203 | 290 | } |
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 | 197 | 31 | { | 198 | 31 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 31 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 31 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 31 | return ret; | 203 | 31 | } |
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 | 197 | 32 | { | 198 | 32 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 32 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 32 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 32 | return ret; | 203 | 32 | } |
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 | 197 | 76 | { | 198 | 76 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 76 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 76 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 76 | return ret; | 203 | 76 | } |
Unexecuted instantiation: spl_observer.c:zend_string_init Unexecuted instantiation: array.c:zend_string_init assert.c:zend_string_init Line | Count | Source | 197 | 33 | { | 198 | 33 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 33 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 33 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 33 | return ret; | 203 | 33 | } |
Unexecuted instantiation: base64.c:zend_string_init basic_functions.c:zend_string_init Line | Count | Source | 197 | 170 | { | 198 | 170 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 170 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 170 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 170 | return ret; | 203 | 170 | } |
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 | 197 | 21 | { | 198 | 21 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 21 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 21 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 21 | return ret; | 203 | 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 | 197 | 7.82k | { | 198 | 7.82k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 7.82k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 7.82k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 7.82k | return ret; | 203 | 7.82k | } |
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 | 197 | 5 | { | 198 | 5 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 5 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 5 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 5 | return ret; | 203 | 5 | } |
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 | 197 | 46 | { | 198 | 46 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 46 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 46 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 46 | return ret; | 203 | 46 | } |
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 | 197 | 14 | { | 198 | 14 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 14 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 14 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 14 | return ret; | 203 | 14 | } |
Unexecuted instantiation: md5.c:zend_string_init Unexecuted instantiation: metaphone.c:zend_string_init Unexecuted instantiation: microtime.c:zend_string_init Unexecuted instantiation: net.c:zend_string_init Unexecuted instantiation: pack.c:zend_string_init Unexecuted instantiation: pageinfo.c:zend_string_init Unexecuted instantiation: password.c:zend_string_init Unexecuted instantiation: php_fopen_wrapper.c:zend_string_init Unexecuted instantiation: proc_open.c:zend_string_init Unexecuted instantiation: quot_print.c:zend_string_init Unexecuted instantiation: scanf.c:zend_string_init Unexecuted instantiation: sha1.c:zend_string_init Unexecuted instantiation: soundex.c:zend_string_init Unexecuted instantiation: streamsfuncs.c:zend_string_init string.c:zend_string_init Line | Count | Source | 197 | 2.93k | { | 198 | 2.93k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 2.93k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 2.93k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 2.93k | return ret; | 203 | 2.93k | } |
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 | 197 | 80 | { | 198 | 80 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 80 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 80 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 80 | return ret; | 203 | 80 | } |
Unexecuted instantiation: url.c:zend_string_init user_filters.c:zend_string_init Line | Count | Source | 197 | 160 | { | 198 | 160 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 160 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 160 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 160 | return ret; | 203 | 160 | } |
Unexecuted instantiation: uuencode.c:zend_string_init var_unserializer.c:zend_string_init Line | Count | Source | 197 | 139k | { | 198 | 139k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 139k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 139k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 139k | return ret; | 203 | 139k | } |
Line | Count | Source | 197 | 289 | { | 198 | 289 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 289 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 289 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 289 | return ret; | 203 | 289 | } |
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 | 197 | 64 | { | 198 | 64 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 64 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 64 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 64 | return ret; | 203 | 64 | } |
Unexecuted instantiation: php_uri_common.c:zend_string_init Unexecuted instantiation: explicit_bzero.c:zend_string_init fopen_wrappers.c:zend_string_init Line | Count | Source | 197 | 81.1k | { | 198 | 81.1k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 81.1k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 81.1k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 81.1k | return ret; | 203 | 81.1k | } |
Unexecuted instantiation: getopt.c:zend_string_init Line | Count | Source | 197 | 10 | { | 198 | 10 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 10 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 10 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 10 | return ret; | 203 | 10 | } |
Unexecuted instantiation: network.c:zend_string_init output.c:zend_string_init Line | Count | Source | 197 | 3.79k | { | 198 | 3.79k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 3.79k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 3.79k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 3.79k | return ret; | 203 | 3.79k | } |
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 | 197 | 224 | { | 198 | 224 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 224 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 224 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 224 | return ret; | 203 | 224 | } |
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 | 197 | 164k | { | 198 | 164k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 164k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 164k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 164k | return ret; | 203 | 164k | } |
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 | 197 | 32 | { | 198 | 32 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 32 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 32 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 32 | return ret; | 203 | 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 | 197 | 40 | { | 198 | 40 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 40 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 40 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 40 | return ret; | 203 | 40 | } |
Unexecuted instantiation: streams.c:zend_string_init Unexecuted instantiation: transports.c:zend_string_init userspace.c:zend_string_init Line | Count | Source | 197 | 559 | { | 198 | 559 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 559 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 559 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 559 | return ret; | 203 | 559 | } |
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 | 197 | 9.20k | { | 198 | 9.20k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 9.20k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 9.20k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 9.20k | return ret; | 203 | 9.20k | } |
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 | 197 | 30 | { | 198 | 30 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 30 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 30 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 30 | return ret; | 203 | 30 | } |
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 | 197 | 4 | { | 198 | 4 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 4 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 4 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 4 | return ret; | 203 | 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 | 197 | 441k | { | 198 | 441k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 441k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 441k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 441k | return ret; | 203 | 441k | } |
Unexecuted instantiation: zend_ast.c:zend_string_init zend_attributes.c:zend_string_init Line | Count | Source | 197 | 16 | { | 198 | 16 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 16 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 16 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 16 | return ret; | 203 | 16 | } |
zend_builtin_functions.c:zend_string_init Line | Count | Source | 197 | 304 | { | 198 | 304 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 304 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 304 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 304 | return ret; | 203 | 304 | } |
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 | 197 | 387k | { | 198 | 387k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 387k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 387k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 387k | return ret; | 203 | 387k | } |
zend_constants.c:zend_string_init Line | Count | Source | 197 | 498 | { | 198 | 498 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 498 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 498 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 498 | return ret; | 203 | 498 | } |
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 | 197 | 6.21k | { | 198 | 6.21k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 6.21k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 6.21k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 6.21k | return ret; | 203 | 6.21k | } |
zend_exceptions.c:zend_string_init Line | Count | Source | 197 | 1.56M | { | 198 | 1.56M | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 1.56M | memcpy(ZSTR_VAL(ret), str, len); | 201 | 1.56M | ZSTR_VAL(ret)[len] = '\0'; | 202 | 1.56M | return ret; | 203 | 1.56M | } |
zend_execute_API.c:zend_string_init Line | Count | Source | 197 | 45 | { | 198 | 45 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 45 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 45 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 45 | return ret; | 203 | 45 | } |
zend_execute.c:zend_string_init Line | Count | Source | 197 | 506 | { | 198 | 506 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 506 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 506 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 506 | return ret; | 203 | 506 | } |
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 | 197 | 297k | { | 198 | 297k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 297k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 297k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 297k | return ret; | 203 | 297k | } |
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 | 197 | 14.7k | { | 198 | 14.7k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 14.7k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 14.7k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 14.7k | return ret; | 203 | 14.7k | } |
zend_ini_scanner.c:zend_string_init Line | Count | Source | 197 | 1.33M | { | 198 | 1.33M | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 1.33M | memcpy(ZSTR_VAL(ret), str, len); | 201 | 1.33M | ZSTR_VAL(ret)[len] = '\0'; | 202 | 1.33M | return ret; | 203 | 1.33M | } |
zend_ini.c:zend_string_init Line | Count | Source | 197 | 81.1k | { | 198 | 81.1k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 81.1k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 81.1k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 81.1k | return ret; | 203 | 81.1k | } |
zend_interfaces.c:zend_string_init Line | Count | Source | 197 | 280k | { | 198 | 280k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 280k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 280k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 280k | return ret; | 203 | 280k | } |
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 | 197 | 7.19M | { | 198 | 7.19M | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 7.19M | memcpy(ZSTR_VAL(ret), str, len); | 201 | 7.19M | ZSTR_VAL(ret)[len] = '\0'; | 202 | 7.19M | return ret; | 203 | 7.19M | } |
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 | 197 | 740 | { | 198 | 740 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 740 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 740 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 740 | return ret; | 203 | 740 | } |
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 | 197 | 431k | { | 198 | 431k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 431k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 431k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 431k | return ret; | 203 | 431k | } |
zend_property_hooks.c:zend_string_init Line | Count | Source | 197 | 104 | { | 198 | 104 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 104 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 104 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 104 | return ret; | 203 | 104 | } |
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 | 197 | 156k | { | 198 | 156k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 156k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 156k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 156k | return ret; | 203 | 156k | } |
zend_string.c:zend_string_init Line | Count | Source | 197 | 599k | { | 198 | 599k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 599k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 599k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 599k | return ret; | 203 | 599k | } |
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 | 197 | 128 | { | 198 | 128 | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 128 | memcpy(ZSTR_VAL(ret), str, len); | 201 | 128 | ZSTR_VAL(ret)[len] = '\0'; | 202 | 128 | return ret; | 203 | 128 | } |
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 fuzzer-sapi.c:zend_string_init Line | Count | Source | 197 | 10.8k | { | 198 | 10.8k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 10.8k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 10.8k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 10.8k | return ret; | 203 | 10.8k | } |
fuzzer-tracing-jit.c:zend_string_init Line | Count | Source | 197 | 106k | { | 198 | 106k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 106k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 106k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 106k | return ret; | 203 | 106k | } |
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 | 197 | 103k | { | 198 | 103k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 103k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 103k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 103k | return ret; | 203 | 103k | } |
Unexecuted instantiation: fuzzer-json.c:zend_string_init fuzzer-unserializehash.c:zend_string_init Line | Count | Source | 197 | 2.39k | { | 198 | 2.39k | zend_string *ret = zend_string_alloc(len, persistent); | 199 | | | 200 | 2.39k | memcpy(ZSTR_VAL(ret), str, len); | 201 | 2.39k | ZSTR_VAL(ret)[len] = '\0'; | 202 | 2.39k | return ret; | 203 | 2.39k | } |
Unexecuted instantiation: fuzzer-execute.c:zend_string_init |
204 | | |
205 | | static zend_always_inline zend_string *zend_string_init_fast(const char *str, size_t len) |
206 | 311k | { |
207 | 311k | if (len > 1) { |
208 | 304k | return zend_string_init(str, len, 0); |
209 | 304k | } else if (len == 0) { |
210 | 2.11k | return zend_empty_string; |
211 | 5.25k | } else /* if (len == 1) */ { |
212 | 5.25k | return ZSTR_CHAR((zend_uchar) *str); |
213 | 5.25k | } |
214 | 311k | } 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 | 206 | 355 | { | 207 | 355 | if (len > 1) { | 208 | 52 | return zend_string_init(str, len, 0); | 209 | 303 | } else if (len == 0) { | 210 | 0 | return zend_empty_string; | 211 | 303 | } else /* if (len == 1) */ { | 212 | 303 | return ZSTR_CHAR((zend_uchar) *str); | 213 | 303 | } | 214 | 355 | } |
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: 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 | 206 | 215 | { | 207 | 215 | if (len > 1) { | 208 | 203 | return zend_string_init(str, len, 0); | 209 | 203 | } else if (len == 0) { | 210 | 5 | return zend_empty_string; | 211 | 7 | } else /* if (len == 1) */ { | 212 | 7 | return ZSTR_CHAR((zend_uchar) *str); | 213 | 7 | } | 214 | 215 | } |
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 | 206 | 145k | { | 207 | 145k | if (len > 1) { | 208 | 139k | return zend_string_init(str, len, 0); | 209 | 139k | } else if (len == 0) { | 210 | 1.65k | return zend_empty_string; | 211 | 4.25k | } else /* if (len == 1) */ { | 212 | 4.25k | return ZSTR_CHAR((zend_uchar) *str); | 213 | 4.25k | } | 214 | 145k | } |
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: 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 | 206 | 165k | { | 207 | 165k | if (len > 1) { | 208 | 164k | return zend_string_init(str, len, 0); | 209 | 164k | } else if (len == 0) { | 210 | 460 | return zend_empty_string; | 211 | 690 | } else /* if (len == 1) */ { | 212 | 690 | return ZSTR_CHAR((zend_uchar) *str); | 213 | 690 | } | 214 | 165k | } |
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 |
215 | | |
216 | | static zend_always_inline zend_string *zend_string_copy(zend_string *s) |
217 | 11.4M | { |
218 | 11.4M | if (!ZSTR_IS_INTERNED(s)) { |
219 | 5.95M | GC_ADDREF(s); |
220 | 5.95M | } |
221 | 11.4M | return s; |
222 | 11.4M | } php_date.c:zend_string_copy Line | Count | Source | 217 | 112 | { | 218 | 112 | if (!ZSTR_IS_INTERNED(s)) { | 219 | 104 | GC_ADDREF(s); | 220 | 104 | } | 221 | 112 | return s; | 222 | 112 | } |
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 | 217 | 108 | { | 218 | 108 | if (!ZSTR_IS_INTERNED(s)) { | 219 | 2 | GC_ADDREF(s); | 220 | 2 | } | 221 | 108 | return s; | 222 | 108 | } |
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: 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 | 217 | 2.61k | { | 218 | 2.61k | if (!ZSTR_IS_INTERNED(s)) { | 219 | 0 | GC_ADDREF(s); | 220 | 0 | } | 221 | 2.61k | return s; | 222 | 2.61k | } |
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 | 217 | 5 | { | 218 | 5 | if (!ZSTR_IS_INTERNED(s)) { | 219 | 5 | GC_ADDREF(s); | 220 | 5 | } | 221 | 5 | return s; | 222 | 5 | } |
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 | 217 | 15 | { | 218 | 15 | if (!ZSTR_IS_INTERNED(s)) { | 219 | 15 | GC_ADDREF(s); | 220 | 15 | } | 221 | 15 | return s; | 222 | 15 | } |
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 | 217 | 201 | { | 218 | 201 | if (!ZSTR_IS_INTERNED(s)) { | 219 | 201 | GC_ADDREF(s); | 220 | 201 | } | 221 | 201 | return s; | 222 | 201 | } |
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 | 217 | 42 | { | 218 | 42 | if (!ZSTR_IS_INTERNED(s)) { | 219 | 0 | GC_ADDREF(s); | 220 | 0 | } | 221 | 42 | return s; | 222 | 42 | } |
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 | 217 | 1.68k | { | 218 | 1.68k | if (!ZSTR_IS_INTERNED(s)) { | 219 | 1.50k | GC_ADDREF(s); | 220 | 1.50k | } | 221 | 1.68k | return s; | 222 | 1.68k | } |
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 | 217 | 38 | { | 218 | 38 | if (!ZSTR_IS_INTERNED(s)) { | 219 | 0 | GC_ADDREF(s); | 220 | 0 | } | 221 | 38 | return s; | 222 | 38 | } |
Unexecuted instantiation: uuencode.c:zend_string_copy Unexecuted instantiation: var_unserializer.c:zend_string_copy Line | Count | Source | 217 | 356 | { | 218 | 356 | if (!ZSTR_IS_INTERNED(s)) { | 219 | 0 | GC_ADDREF(s); | 220 | 0 | } | 221 | 356 | return s; | 222 | 356 | } |
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: explicit_bzero.c:zend_string_copy Unexecuted instantiation: fopen_wrappers.c:zend_string_copy Unexecuted instantiation: getopt.c:zend_string_copy Line | Count | Source | 217 | 6.71M | { | 218 | 6.71M | if (!ZSTR_IS_INTERNED(s)) { | 219 | 3.69M | GC_ADDREF(s); | 220 | 3.69M | } | 221 | 6.71M | return s; | 222 | 6.71M | } |
Unexecuted instantiation: network.c:zend_string_copy output.c:zend_string_copy Line | Count | Source | 217 | 1.92k | { | 218 | 1.92k | if (!ZSTR_IS_INTERNED(s)) { | 219 | 1.92k | GC_ADDREF(s); | 220 | 1.92k | } | 221 | 1.92k | return s; | 222 | 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 Unexecuted instantiation: memory.c:zend_string_copy 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 | 217 | 685k | { | 218 | 685k | if (!ZSTR_IS_INTERNED(s)) { | 219 | 131k | GC_ADDREF(s); | 220 | 131k | } | 221 | 685k | return s; | 222 | 685k | } |
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 | 217 | 27.4k | { | 218 | 27.4k | if (!ZSTR_IS_INTERNED(s)) { | 219 | 1.08k | GC_ADDREF(s); | 220 | 1.08k | } | 221 | 27.4k | return s; | 222 | 27.4k | } |
Unexecuted instantiation: zend_ast.c:zend_string_copy zend_attributes.c:zend_string_copy Line | Count | Source | 217 | 29.2k | { | 218 | 29.2k | if (!ZSTR_IS_INTERNED(s)) { | 219 | 28.3k | GC_ADDREF(s); | 220 | 28.3k | } | 221 | 29.2k | return s; | 222 | 29.2k | } |
zend_builtin_functions.c:zend_string_copy Line | Count | Source | 217 | 26.7k | { | 218 | 26.7k | if (!ZSTR_IS_INTERNED(s)) { | 219 | 0 | GC_ADDREF(s); | 220 | 0 | } | 221 | 26.7k | return s; | 222 | 26.7k | } |
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 | 217 | 1.96M | { | 218 | 1.96M | if (!ZSTR_IS_INTERNED(s)) { | 219 | 951k | GC_ADDREF(s); | 220 | 951k | } | 221 | 1.96M | return s; | 222 | 1.96M | } |
zend_constants.c:zend_string_copy Line | Count | Source | 217 | 2.31k | { | 218 | 2.31k | if (!ZSTR_IS_INTERNED(s)) { | 219 | 26 | GC_ADDREF(s); | 220 | 26 | } | 221 | 2.31k | return s; | 222 | 2.31k | } |
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 | 217 | 6.21k | { | 218 | 6.21k | if (!ZSTR_IS_INTERNED(s)) { | 219 | 0 | GC_ADDREF(s); | 220 | 0 | } | 221 | 6.21k | return s; | 222 | 6.21k | } |
zend_exceptions.c:zend_string_copy Line | Count | Source | 217 | 106k | { | 218 | 106k | if (!ZSTR_IS_INTERNED(s)) { | 219 | 103k | GC_ADDREF(s); | 220 | 103k | } | 221 | 106k | return s; | 222 | 106k | } |
zend_execute_API.c:zend_string_copy Line | Count | Source | 217 | 245k | { | 218 | 245k | if (!ZSTR_IS_INTERNED(s)) { | 219 | 1.35k | GC_ADDREF(s); | 220 | 1.35k | } | 221 | 245k | return s; | 222 | 245k | } |
zend_execute.c:zend_string_copy Line | Count | Source | 217 | 242k | { | 218 | 242k | if (!ZSTR_IS_INTERNED(s)) { | 219 | 232k | GC_ADDREF(s); | 220 | 232k | } | 221 | 242k | return s; | 222 | 242k | } |
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 | 217 | 30 | { | 218 | 30 | if (!ZSTR_IS_INTERNED(s)) { | 219 | 0 | GC_ADDREF(s); | 220 | 0 | } | 221 | 30 | return s; | 222 | 30 | } |
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 | 217 | 81.7k | { | 218 | 81.7k | if (!ZSTR_IS_INTERNED(s)) { | 219 | 81.4k | GC_ADDREF(s); | 220 | 81.4k | } | 221 | 81.7k | return s; | 222 | 81.7k | } |
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 | 217 | 143k | { | 218 | 143k | if (!ZSTR_IS_INTERNED(s)) { | 219 | 143k | GC_ADDREF(s); | 220 | 143k | } | 221 | 143k | return s; | 222 | 143k | } |
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 | 217 | 14.1k | { | 218 | 14.1k | if (!ZSTR_IS_INTERNED(s)) { | 219 | 714 | GC_ADDREF(s); | 220 | 714 | } | 221 | 14.1k | return s; | 222 | 14.1k | } |
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 | 217 | 198k | { | 218 | 198k | if (!ZSTR_IS_INTERNED(s)) { | 219 | 198k | GC_ADDREF(s); | 220 | 198k | } | 221 | 198k | return s; | 222 | 198k | } |
zend_operators.c:zend_string_copy Line | Count | Source | 217 | 810k | { | 218 | 810k | if (!ZSTR_IS_INTERNED(s)) { | 219 | 312k | GC_ADDREF(s); | 220 | 312k | } | 221 | 810k | return s; | 222 | 810k | } |
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 | 217 | 182k | { | 218 | 182k | if (!ZSTR_IS_INTERNED(s)) { | 219 | 67.3k | GC_ADDREF(s); | 220 | 67.3k | } | 221 | 182k | return s; | 222 | 182k | } |
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 | 217 | 1.39k | { | 218 | 1.39k | if (!ZSTR_IS_INTERNED(s)) { | 219 | 698 | GC_ADDREF(s); | 220 | 698 | } | 221 | 1.39k | return s; | 222 | 1.39k | } |
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 |
223 | | |
224 | | static zend_always_inline zend_string *zend_string_dup(zend_string *s, bool persistent) |
225 | 2.51k | { |
226 | 2.51k | if (ZSTR_IS_INTERNED(s)) { |
227 | 2.16k | return s; |
228 | 2.16k | } else { |
229 | 352 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); |
230 | 352 | } |
231 | 2.51k | } 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: 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: 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 | 225 | 224 | { | 226 | 224 | if (ZSTR_IS_INTERNED(s)) { | 227 | 0 | return s; | 228 | 224 | } else { | 229 | 224 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); | 230 | 224 | } | 231 | 224 | } |
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 zend_attributes.c:zend_string_dup Line | Count | Source | 225 | 2.16k | { | 226 | 2.16k | if (ZSTR_IS_INTERNED(s)) { | 227 | 2.16k | return s; | 228 | 2.16k | } else { | 229 | 0 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); | 230 | 0 | } | 231 | 2.16k | } |
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 | 225 | 128 | { | 226 | 128 | if (ZSTR_IS_INTERNED(s)) { | 227 | 0 | return s; | 228 | 128 | } else { | 229 | 128 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); | 230 | 128 | } | 231 | 128 | } |
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 |
232 | | |
233 | | static zend_always_inline zend_string *zend_string_separate(zend_string *s, bool persistent) |
234 | 0 | { |
235 | 0 | if (ZSTR_IS_INTERNED(s) || GC_REFCOUNT(s) > 1) { |
236 | 0 | if (!ZSTR_IS_INTERNED(s)) { |
237 | 0 | GC_DELREF(s); |
238 | 0 | } |
239 | 0 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); |
240 | 0 | } |
241 | | |
242 | 0 | zend_string_forget_hash_val(s); |
243 | 0 | return s; |
244 | 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: 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: 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 |
245 | | |
246 | | static zend_always_inline zend_string *zend_string_realloc(zend_string *s, size_t len, bool persistent) |
247 | 4.63M | { |
248 | 4.63M | zend_string *ret; |
249 | | |
250 | 4.63M | if (!ZSTR_IS_INTERNED(s)) { |
251 | 4.62M | if (EXPECTED(GC_REFCOUNT(s) == 1)) { |
252 | 4.62M | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); |
253 | 4.62M | ZSTR_LEN(ret) = len; |
254 | 4.62M | zend_string_forget_hash_val(ret); |
255 | 4.62M | return ret; |
256 | 4.62M | } |
257 | 4.62M | } |
258 | 6.11k | ret = zend_string_alloc(len, persistent); |
259 | 6.11k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); |
260 | 6.11k | if (!ZSTR_IS_INTERNED(s)) { |
261 | 0 | GC_DELREF(s); |
262 | 0 | } |
263 | 6.11k | return ret; |
264 | 4.63M | } 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 | 247 | 147 | { | 248 | 147 | zend_string *ret; | 249 | | | 250 | 147 | if (!ZSTR_IS_INTERNED(s)) { | 251 | 147 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 252 | 147 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 253 | 147 | ZSTR_LEN(ret) = len; | 254 | 147 | zend_string_forget_hash_val(ret); | 255 | 147 | return ret; | 256 | 147 | } | 257 | 147 | } | 258 | 0 | ret = zend_string_alloc(len, persistent); | 259 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 260 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 261 | 0 | GC_DELREF(s); | 262 | 0 | } | 263 | 0 | return ret; | 264 | 147 | } |
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 | 247 | 2.95k | { | 248 | 2.95k | zend_string *ret; | 249 | | | 250 | 2.95k | if (!ZSTR_IS_INTERNED(s)) { | 251 | 2.95k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 252 | 2.95k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 253 | 2.95k | ZSTR_LEN(ret) = len; | 254 | 2.95k | zend_string_forget_hash_val(ret); | 255 | 2.95k | return ret; | 256 | 2.95k | } | 257 | 2.95k | } | 258 | 0 | ret = zend_string_alloc(len, persistent); | 259 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 260 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 261 | 0 | GC_DELREF(s); | 262 | 0 | } | 263 | 0 | return ret; | 264 | 2.95k | } |
Unexecuted instantiation: php_lexbor.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 | 247 | 209 | { | 248 | 209 | zend_string *ret; | 249 | | | 250 | 209 | if (!ZSTR_IS_INTERNED(s)) { | 251 | 209 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 252 | 209 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 253 | 209 | ZSTR_LEN(ret) = len; | 254 | 209 | zend_string_forget_hash_val(ret); | 255 | 209 | return ret; | 256 | 209 | } | 257 | 209 | } | 258 | 0 | ret = zend_string_alloc(len, persistent); | 259 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 260 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 261 | 0 | GC_DELREF(s); | 262 | 0 | } | 263 | 0 | return ret; | 264 | 209 | } |
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 | 247 | 1.56k | { | 248 | 1.56k | zend_string *ret; | 249 | | | 250 | 1.56k | if (!ZSTR_IS_INTERNED(s)) { | 251 | 1.56k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 252 | 1.56k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 253 | 1.56k | ZSTR_LEN(ret) = len; | 254 | 1.56k | zend_string_forget_hash_val(ret); | 255 | 1.56k | return ret; | 256 | 1.56k | } | 257 | 1.56k | } | 258 | 0 | ret = zend_string_alloc(len, persistent); | 259 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 260 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 261 | 0 | GC_DELREF(s); | 262 | 0 | } | 263 | 0 | return ret; | 264 | 1.56k | } |
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: explicit_bzero.c:zend_string_realloc fopen_wrappers.c:zend_string_realloc Line | Count | Source | 247 | 23 | { | 248 | 23 | zend_string *ret; | 249 | | | 250 | 23 | if (!ZSTR_IS_INTERNED(s)) { | 251 | 23 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 252 | 23 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 253 | 23 | ZSTR_LEN(ret) = len; | 254 | 23 | zend_string_forget_hash_val(ret); | 255 | 23 | return ret; | 256 | 23 | } | 257 | 23 | } | 258 | 0 | ret = zend_string_alloc(len, persistent); | 259 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 260 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 261 | 0 | GC_DELREF(s); | 262 | 0 | } | 263 | 0 | return ret; | 264 | 23 | } |
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 | 247 | 6.11k | { | 248 | 6.11k | zend_string *ret; | 249 | | | 250 | 6.11k | if (!ZSTR_IS_INTERNED(s)) { | 251 | 0 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 252 | 0 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 253 | 0 | ZSTR_LEN(ret) = len; | 254 | 0 | zend_string_forget_hash_val(ret); | 255 | 0 | return ret; | 256 | 0 | } | 257 | 0 | } | 258 | 6.11k | ret = zend_string_alloc(len, persistent); | 259 | 6.11k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 260 | 6.11k | if (!ZSTR_IS_INTERNED(s)) { | 261 | 0 | GC_DELREF(s); | 262 | 0 | } | 263 | 6.11k | return ret; | 264 | 6.11k | } |
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 | 247 | 124 | { | 248 | 124 | zend_string *ret; | 249 | | | 250 | 124 | if (!ZSTR_IS_INTERNED(s)) { | 251 | 124 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 252 | 124 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 253 | 124 | ZSTR_LEN(ret) = len; | 254 | 124 | zend_string_forget_hash_val(ret); | 255 | 124 | return ret; | 256 | 124 | } | 257 | 124 | } | 258 | 0 | ret = zend_string_alloc(len, persistent); | 259 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 260 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 261 | 0 | GC_DELREF(s); | 262 | 0 | } | 263 | 0 | return ret; | 264 | 124 | } |
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 | 247 | 4.62M | { | 248 | 4.62M | zend_string *ret; | 249 | | | 250 | 4.62M | if (!ZSTR_IS_INTERNED(s)) { | 251 | 4.62M | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 252 | 4.62M | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 253 | 4.62M | ZSTR_LEN(ret) = len; | 254 | 4.62M | zend_string_forget_hash_val(ret); | 255 | 4.62M | return ret; | 256 | 4.62M | } | 257 | 4.62M | } | 258 | 0 | ret = zend_string_alloc(len, persistent); | 259 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 260 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 261 | 0 | GC_DELREF(s); | 262 | 0 | } | 263 | 0 | return ret; | 264 | 4.62M | } |
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 |
265 | | |
266 | | static zend_always_inline zend_string *zend_string_extend(zend_string *s, size_t len, bool persistent) |
267 | 3.32M | { |
268 | 3.32M | zend_string *ret; |
269 | | |
270 | 3.32M | ZEND_ASSERT(len >= ZSTR_LEN(s)); |
271 | 3.32M | if (!ZSTR_IS_INTERNED(s)) { |
272 | 2.73M | if (EXPECTED(GC_REFCOUNT(s) == 1)) { |
273 | 2.25M | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); |
274 | 2.25M | ZSTR_LEN(ret) = len; |
275 | 2.25M | zend_string_forget_hash_val(ret); |
276 | 2.25M | return ret; |
277 | 2.25M | } |
278 | 2.73M | } |
279 | 1.07M | ret = zend_string_alloc(len, persistent); |
280 | 1.07M | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); |
281 | 1.07M | if (!ZSTR_IS_INTERNED(s)) { |
282 | 481k | GC_DELREF(s); |
283 | 481k | } |
284 | 1.07M | return ret; |
285 | 3.32M | } 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 | 267 | 60 | { | 268 | 60 | zend_string *ret; | 269 | | | 270 | 60 | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 271 | 60 | if (!ZSTR_IS_INTERNED(s)) { | 272 | 60 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 273 | 60 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 274 | 60 | ZSTR_LEN(ret) = len; | 275 | 60 | zend_string_forget_hash_val(ret); | 276 | 60 | return ret; | 277 | 60 | } | 278 | 60 | } | 279 | 0 | ret = zend_string_alloc(len, persistent); | 280 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 281 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 282 | 0 | GC_DELREF(s); | 283 | 0 | } | 284 | 0 | return ret; | 285 | 60 | } |
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: 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 | 267 | 74 | { | 268 | 74 | zend_string *ret; | 269 | | | 270 | 74 | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 271 | 74 | if (!ZSTR_IS_INTERNED(s)) { | 272 | 74 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 273 | 74 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 274 | 74 | ZSTR_LEN(ret) = len; | 275 | 74 | zend_string_forget_hash_val(ret); | 276 | 74 | return ret; | 277 | 74 | } | 278 | 74 | } | 279 | 0 | ret = zend_string_alloc(len, persistent); | 280 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 281 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 282 | 0 | GC_DELREF(s); | 283 | 0 | } | 284 | 0 | return ret; | 285 | 74 | } |
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: 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 | 267 | 3.98k | { | 268 | 3.98k | zend_string *ret; | 269 | | | 270 | 3.98k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 271 | 3.98k | if (!ZSTR_IS_INTERNED(s)) { | 272 | 3.98k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 273 | 3.83k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 274 | 3.83k | ZSTR_LEN(ret) = len; | 275 | 3.83k | zend_string_forget_hash_val(ret); | 276 | 3.83k | return ret; | 277 | 3.83k | } | 278 | 3.98k | } | 279 | 150 | ret = zend_string_alloc(len, persistent); | 280 | 150 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 281 | 150 | if (!ZSTR_IS_INTERNED(s)) { | 282 | 150 | GC_DELREF(s); | 283 | 150 | } | 284 | 150 | return ret; | 285 | 3.98k | } |
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 | 267 | 2.19k | { | 268 | 2.19k | zend_string *ret; | 269 | | | 270 | 2.19k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 271 | 2.19k | if (!ZSTR_IS_INTERNED(s)) { | 272 | 2.19k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 273 | 2.19k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 274 | 2.19k | ZSTR_LEN(ret) = len; | 275 | 2.19k | zend_string_forget_hash_val(ret); | 276 | 2.19k | return ret; | 277 | 2.19k | } | 278 | 2.19k | } | 279 | 0 | ret = zend_string_alloc(len, persistent); | 280 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 281 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 282 | 0 | GC_DELREF(s); | 283 | 0 | } | 284 | 0 | return ret; | 285 | 2.19k | } |
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 | 267 | 220k | { | 268 | 220k | zend_string *ret; | 269 | | | 270 | 220k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 271 | 220k | if (!ZSTR_IS_INTERNED(s)) { | 272 | 220k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 273 | 220k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 274 | 220k | ZSTR_LEN(ret) = len; | 275 | 220k | zend_string_forget_hash_val(ret); | 276 | 220k | return ret; | 277 | 220k | } | 278 | 220k | } | 279 | 0 | ret = zend_string_alloc(len, persistent); | 280 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 281 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 282 | 0 | GC_DELREF(s); | 283 | 0 | } | 284 | 0 | return ret; | 285 | 220k | } |
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 | 267 | 1.46M | { | 268 | 1.46M | zend_string *ret; | 269 | | | 270 | 1.46M | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 271 | 1.46M | if (!ZSTR_IS_INTERNED(s)) { | 272 | 1.12M | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 273 | 1.12M | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 274 | 1.12M | ZSTR_LEN(ret) = len; | 275 | 1.12M | zend_string_forget_hash_val(ret); | 276 | 1.12M | return ret; | 277 | 1.12M | } | 278 | 1.12M | } | 279 | 334k | ret = zend_string_alloc(len, persistent); | 280 | 334k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 281 | 334k | if (!ZSTR_IS_INTERNED(s)) { | 282 | 0 | GC_DELREF(s); | 283 | 0 | } | 284 | 334k | return ret; | 285 | 1.46M | } |
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 | 267 | 27.7k | { | 268 | 27.7k | zend_string *ret; | 269 | | | 270 | 27.7k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 271 | 27.7k | if (!ZSTR_IS_INTERNED(s)) { | 272 | 16.3k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 273 | 0 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 274 | 0 | ZSTR_LEN(ret) = len; | 275 | 0 | zend_string_forget_hash_val(ret); | 276 | 0 | return ret; | 277 | 0 | } | 278 | 16.3k | } | 279 | 27.7k | ret = zend_string_alloc(len, persistent); | 280 | 27.7k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 281 | 27.7k | if (!ZSTR_IS_INTERNED(s)) { | 282 | 16.3k | GC_DELREF(s); | 283 | 16.3k | } | 284 | 27.7k | return ret; | 285 | 27.7k | } |
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 | 267 | 1.60M | { | 268 | 1.60M | zend_string *ret; | 269 | | | 270 | 1.60M | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 271 | 1.60M | if (!ZSTR_IS_INTERNED(s)) { | 272 | 1.36M | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 273 | 899k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 274 | 899k | ZSTR_LEN(ret) = len; | 275 | 899k | zend_string_forget_hash_val(ret); | 276 | 899k | return ret; | 277 | 899k | } | 278 | 1.36M | } | 279 | 708k | ret = zend_string_alloc(len, persistent); | 280 | 708k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 281 | 708k | if (!ZSTR_IS_INTERNED(s)) { | 282 | 464k | GC_DELREF(s); | 283 | 464k | } | 284 | 708k | return ret; | 285 | 1.60M | } |
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 |
286 | | |
287 | | static zend_always_inline zend_string *zend_string_truncate(zend_string *s, size_t len, bool persistent) |
288 | 1.10k | { |
289 | 1.10k | zend_string *ret; |
290 | | |
291 | 1.10k | ZEND_ASSERT(len <= ZSTR_LEN(s)); |
292 | 1.10k | if (!ZSTR_IS_INTERNED(s)) { |
293 | 1.10k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { |
294 | 1.10k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); |
295 | 1.10k | ZSTR_LEN(ret) = len; |
296 | 1.10k | zend_string_forget_hash_val(ret); |
297 | 1.10k | return ret; |
298 | 1.10k | } |
299 | 1.10k | } |
300 | 0 | ret = zend_string_alloc(len, persistent); |
301 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), len + 1); |
302 | 0 | if (!ZSTR_IS_INTERNED(s)) { |
303 | 0 | GC_DELREF(s); |
304 | 0 | } |
305 | 0 | return ret; |
306 | 1.10k | } 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: 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 | 288 | 162 | { | 289 | 162 | zend_string *ret; | 290 | | | 291 | 162 | ZEND_ASSERT(len <= ZSTR_LEN(s)); | 292 | 162 | if (!ZSTR_IS_INTERNED(s)) { | 293 | 162 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 294 | 162 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 295 | 162 | ZSTR_LEN(ret) = len; | 296 | 162 | zend_string_forget_hash_val(ret); | 297 | 162 | return ret; | 298 | 162 | } | 299 | 162 | } | 300 | 0 | ret = zend_string_alloc(len, persistent); | 301 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), len + 1); | 302 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 303 | 0 | GC_DELREF(s); | 304 | 0 | } | 305 | 0 | return ret; | 306 | 162 | } |
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 | 288 | 943 | { | 289 | 943 | zend_string *ret; | 290 | | | 291 | 943 | ZEND_ASSERT(len <= ZSTR_LEN(s)); | 292 | 943 | if (!ZSTR_IS_INTERNED(s)) { | 293 | 943 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 294 | 943 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 295 | 943 | ZSTR_LEN(ret) = len; | 296 | 943 | zend_string_forget_hash_val(ret); | 297 | 943 | return ret; | 298 | 943 | } | 299 | 943 | } | 300 | 0 | ret = zend_string_alloc(len, persistent); | 301 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), len + 1); | 302 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 303 | 0 | GC_DELREF(s); | 304 | 0 | } | 305 | 0 | return ret; | 306 | 943 | } |
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: 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 |
307 | | |
308 | | static zend_always_inline zend_string *zend_string_safe_realloc(zend_string *s, size_t n, size_t m, size_t l, bool persistent) |
309 | 5.61k | { |
310 | 5.61k | zend_string *ret; |
311 | | |
312 | 5.61k | if (!ZSTR_IS_INTERNED(s)) { |
313 | 5.61k | if (GC_REFCOUNT(s) == 1) { |
314 | 5.61k | ret = (zend_string *)safe_perealloc(s, n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); |
315 | 5.61k | ZSTR_LEN(ret) = (n * m) + l; |
316 | 5.61k | zend_string_forget_hash_val(ret); |
317 | 5.61k | return ret; |
318 | 5.61k | } |
319 | 5.61k | } |
320 | 0 | ret = zend_string_safe_alloc(n, m, l, persistent); |
321 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN((n * m) + l, ZSTR_LEN(s)) + 1); |
322 | 0 | if (!ZSTR_IS_INTERNED(s)) { |
323 | 0 | GC_DELREF(s); |
324 | 0 | } |
325 | 0 | return ret; |
326 | 5.61k | } 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: 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 | 309 | 5.61k | { | 310 | 5.61k | zend_string *ret; | 311 | | | 312 | 5.61k | if (!ZSTR_IS_INTERNED(s)) { | 313 | 5.61k | if (GC_REFCOUNT(s) == 1) { | 314 | 5.61k | ret = (zend_string *)safe_perealloc(s, n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 315 | 5.61k | ZSTR_LEN(ret) = (n * m) + l; | 316 | 5.61k | zend_string_forget_hash_val(ret); | 317 | 5.61k | return ret; | 318 | 5.61k | } | 319 | 5.61k | } | 320 | 0 | ret = zend_string_safe_alloc(n, m, l, persistent); | 321 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN((n * m) + l, ZSTR_LEN(s)) + 1); | 322 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 323 | 0 | GC_DELREF(s); | 324 | 0 | } | 325 | 0 | return ret; | 326 | 5.61k | } |
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: 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 |
327 | | |
328 | | static zend_always_inline void zend_string_free(zend_string *s) |
329 | 2.00M | { |
330 | 2.00M | if (!ZSTR_IS_INTERNED(s)) { |
331 | 1.69M | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); |
332 | 1.69M | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); |
333 | 1.69M | } |
334 | 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: 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 | 329 | 5 | { | 330 | 5 | if (!ZSTR_IS_INTERNED(s)) { | 331 | 5 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 332 | 5 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 333 | 5 | } | 334 | 5 | } |
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 | 329 | 940 | { | 330 | 940 | if (!ZSTR_IS_INTERNED(s)) { | 331 | 940 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 332 | 940 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 333 | 940 | } | 334 | 940 | } |
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: explicit_bzero.c:zend_string_free Unexecuted instantiation: fopen_wrappers.c:zend_string_free Unexecuted instantiation: getopt.c:zend_string_free Line | Count | Source | 329 | 519k | { | 330 | 519k | if (!ZSTR_IS_INTERNED(s)) { | 331 | 519k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 332 | 519k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 333 | 519k | } | 334 | 519k | } |
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 | 329 | 5 | { | 330 | 5 | if (!ZSTR_IS_INTERNED(s)) { | 331 | 5 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 332 | 5 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 333 | 5 | } | 334 | 5 | } |
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 | 329 | 1.48M | { | 330 | 1.48M | if (!ZSTR_IS_INTERNED(s)) { | 331 | 1.16M | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 332 | 1.16M | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 333 | 1.16M | } | 334 | 1.48M | } |
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 | 329 | 58 | { | 330 | 58 | if (!ZSTR_IS_INTERNED(s)) { | 331 | 58 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 332 | 58 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 333 | 58 | } | 334 | 58 | } |
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 |
335 | | |
336 | | static zend_always_inline void zend_string_efree(zend_string *s) |
337 | 188k | { |
338 | 188k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); |
339 | 188k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); |
340 | 188k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); |
341 | 188k | efree(s); |
342 | 188k | } Unexecuted instantiation: php_date.c:zend_string_efree Unexecuted instantiation: astro.c:zend_string_efree Unexecuted instantiation: dow.c:zend_string_efree Unexecuted instantiation: parse_date.c:zend_string_efree Unexecuted instantiation: parse_tz.c:zend_string_efree Unexecuted instantiation: parse_posix.c:zend_string_efree Unexecuted instantiation: timelib.c:zend_string_efree Unexecuted instantiation: tm2unixtime.c:zend_string_efree Unexecuted instantiation: unixtime2tm.c:zend_string_efree Unexecuted instantiation: parse_iso_intervals.c:zend_string_efree Unexecuted instantiation: interval.c:zend_string_efree Unexecuted instantiation: php_pcre.c:zend_string_efree Unexecuted instantiation: exif.c:zend_string_efree Unexecuted instantiation: hash_adler32.c:zend_string_efree Unexecuted instantiation: hash_crc32.c:zend_string_efree Unexecuted instantiation: hash_fnv.c:zend_string_efree Unexecuted instantiation: hash_gost.c:zend_string_efree Unexecuted instantiation: hash_haval.c:zend_string_efree Unexecuted instantiation: hash_joaat.c:zend_string_efree Unexecuted instantiation: hash_md.c:zend_string_efree Unexecuted instantiation: hash_murmur.c:zend_string_efree Unexecuted instantiation: hash_ripemd.c:zend_string_efree Unexecuted instantiation: hash_sha_ni.c:zend_string_efree Unexecuted instantiation: hash_sha_sse2.c:zend_string_efree Unexecuted instantiation: hash_sha.c:zend_string_efree Unexecuted instantiation: hash_sha3.c:zend_string_efree Unexecuted instantiation: hash_snefru.c:zend_string_efree Unexecuted instantiation: hash_tiger.c:zend_string_efree Unexecuted instantiation: hash_whirlpool.c:zend_string_efree Unexecuted instantiation: hash_xxhash.c:zend_string_efree Unexecuted instantiation: hash.c:zend_string_efree Unexecuted instantiation: json_encoder.c:zend_string_efree Unexecuted instantiation: json_parser.tab.c:zend_string_efree Unexecuted instantiation: json_scanner.c:zend_string_efree Unexecuted instantiation: json.c:zend_string_efree Unexecuted instantiation: php_lexbor.c:zend_string_efree Unexecuted instantiation: csprng.c:zend_string_efree Unexecuted instantiation: engine_mt19937.c:zend_string_efree Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_efree Unexecuted instantiation: engine_secure.c:zend_string_efree Unexecuted instantiation: engine_user.c:zend_string_efree Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_efree Unexecuted instantiation: gammasection.c:zend_string_efree Unexecuted instantiation: random.c:zend_string_efree Unexecuted instantiation: randomizer.c:zend_string_efree Unexecuted instantiation: zend_utils.c:zend_string_efree Unexecuted instantiation: php_reflection.c:zend_string_efree Unexecuted instantiation: php_spl.c:zend_string_efree Unexecuted instantiation: spl_array.c:zend_string_efree Unexecuted instantiation: spl_directory.c:zend_string_efree Unexecuted instantiation: spl_dllist.c:zend_string_efree Unexecuted instantiation: spl_exceptions.c:zend_string_efree Unexecuted instantiation: spl_fixedarray.c:zend_string_efree Unexecuted instantiation: spl_functions.c:zend_string_efree Unexecuted instantiation: spl_heap.c:zend_string_efree Unexecuted instantiation: spl_iterators.c:zend_string_efree Unexecuted instantiation: spl_observer.c:zend_string_efree Unexecuted instantiation: array.c:zend_string_efree Unexecuted instantiation: assert.c:zend_string_efree Unexecuted instantiation: base64.c:zend_string_efree Unexecuted instantiation: basic_functions.c:zend_string_efree Unexecuted instantiation: browscap.c:zend_string_efree Unexecuted instantiation: crc32_x86.c:zend_string_efree Unexecuted instantiation: crc32.c:zend_string_efree Unexecuted instantiation: credits.c:zend_string_efree Unexecuted instantiation: crypt.c:zend_string_efree Unexecuted instantiation: css.c:zend_string_efree Unexecuted instantiation: datetime.c:zend_string_efree Unexecuted instantiation: dir.c:zend_string_efree Unexecuted instantiation: dl.c:zend_string_efree Unexecuted instantiation: dns.c:zend_string_efree Unexecuted instantiation: exec.c:zend_string_efree Unexecuted instantiation: file.c:zend_string_efree Unexecuted instantiation: filestat.c:zend_string_efree Unexecuted instantiation: filters.c:zend_string_efree Unexecuted instantiation: flock_compat.c:zend_string_efree formatted_print.c:zend_string_efree Line | Count | Source | 337 | 4.11k | { | 338 | 4.11k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 339 | 4.11k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 340 | 4.11k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 341 | 4.11k | efree(s); | 342 | 4.11k | } |
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 | 337 | 144 | { | 338 | 144 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 339 | 144 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 340 | 144 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 341 | 144 | efree(s); | 342 | 144 | } |
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 | 337 | 35 | { | 338 | 35 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 339 | 35 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 340 | 35 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 341 | 35 | efree(s); | 342 | 35 | } |
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 | 337 | 214 | { | 338 | 214 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 339 | 214 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 340 | 214 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 341 | 214 | efree(s); | 342 | 214 | } |
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: 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 | 337 | 48 | { | 338 | 48 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 339 | 48 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 340 | 48 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 341 | 48 | efree(s); | 342 | 48 | } |
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 | 337 | 1.42k | { | 338 | 1.42k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 339 | 1.42k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 340 | 1.42k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 341 | 1.42k | efree(s); | 342 | 1.42k | } |
zend_constants.c:zend_string_efree Line | Count | Source | 337 | 67.4k | { | 338 | 67.4k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 339 | 67.4k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 340 | 67.4k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 341 | 67.4k | efree(s); | 342 | 67.4k | } |
Unexecuted instantiation: zend_cpuinfo.c:zend_string_efree Unexecuted instantiation: zend_default_classes.c:zend_string_efree Unexecuted instantiation: zend_dtrace.c:zend_string_efree Unexecuted instantiation: zend_enum.c:zend_string_efree Unexecuted instantiation: zend_exceptions.c:zend_string_efree Unexecuted instantiation: zend_execute_API.c:zend_string_efree zend_execute.c:zend_string_efree Line | Count | Source | 337 | 10 | { | 338 | 10 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 339 | 10 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 340 | 10 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 341 | 10 | efree(s); | 342 | 10 | } |
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 | 337 | 804 | { | 338 | 804 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 339 | 804 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 340 | 804 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 341 | 804 | efree(s); | 342 | 804 | } |
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 | 337 | 114k | { | 338 | 114k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 339 | 114k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 340 | 114k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 341 | 114k | efree(s); | 342 | 114k | } |
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 |
343 | | |
344 | | static zend_always_inline void zend_string_release(zend_string *s) |
345 | 19.6M | { |
346 | 19.6M | if (!ZSTR_IS_INTERNED(s)) { |
347 | 10.9M | if (GC_DELREF(s) == 0) { |
348 | 4.86M | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); |
349 | 4.86M | } |
350 | 10.9M | } |
351 | 19.6M | } php_date.c:zend_string_release Line | Count | Source | 345 | 850 | { | 346 | 850 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 218 | if (GC_DELREF(s) == 0) { | 348 | 216 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 216 | } | 350 | 218 | } | 351 | 850 | } |
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 | 345 | 309 | { | 346 | 309 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 309 | if (GC_DELREF(s) == 0) { | 348 | 0 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 0 | } | 350 | 309 | } | 351 | 309 | } |
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 | 345 | 4.02k | { | 346 | 4.02k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 4.02k | if (GC_DELREF(s) == 0) { | 348 | 265 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 265 | } | 350 | 4.02k | } | 351 | 4.02k | } |
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: 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 | 345 | 16 | { | 346 | 16 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 16 | if (GC_DELREF(s) == 0) { | 348 | 16 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 16 | } | 350 | 16 | } | 351 | 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 | 345 | 2.84k | { | 346 | 2.84k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 413 | if (GC_DELREF(s) == 0) { | 348 | 413 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 413 | } | 350 | 413 | } | 351 | 2.84k | } |
Unexecuted instantiation: php_spl.c:zend_string_release spl_array.c:zend_string_release Line | Count | Source | 345 | 80 | { | 346 | 80 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 0 | if (GC_DELREF(s) == 0) { | 348 | 0 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 0 | } | 350 | 0 | } | 351 | 80 | } |
spl_directory.c:zend_string_release Line | Count | Source | 345 | 281 | { | 346 | 281 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 20 | if (GC_DELREF(s) == 0) { | 348 | 15 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 15 | } | 350 | 20 | } | 351 | 281 | } |
spl_dllist.c:zend_string_release Line | Count | Source | 345 | 64 | { | 346 | 64 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 0 | if (GC_DELREF(s) == 0) { | 348 | 0 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 0 | } | 350 | 0 | } | 351 | 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 | 345 | 48 | { | 346 | 48 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 0 | if (GC_DELREF(s) == 0) { | 348 | 0 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 0 | } | 350 | 0 | } | 351 | 48 | } |
spl_iterators.c:zend_string_release Line | Count | Source | 345 | 521 | { | 346 | 521 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 76 | if (GC_DELREF(s) == 0) { | 348 | 76 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 76 | } | 350 | 76 | } | 351 | 521 | } |
spl_observer.c:zend_string_release Line | Count | Source | 345 | 64 | { | 346 | 64 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 0 | if (GC_DELREF(s) == 0) { | 348 | 0 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 0 | } | 350 | 0 | } | 351 | 64 | } |
array.c:zend_string_release Line | Count | Source | 345 | 47 | { | 346 | 47 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 0 | if (GC_DELREF(s) == 0) { | 348 | 0 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 0 | } | 350 | 0 | } | 351 | 47 | } |
Unexecuted instantiation: assert.c:zend_string_release Unexecuted instantiation: base64.c:zend_string_release basic_functions.c:zend_string_release Line | Count | Source | 345 | 897 | { | 346 | 897 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 840 | if (GC_DELREF(s) == 0) { | 348 | 467 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 467 | } | 350 | 840 | } | 351 | 897 | } |
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 | 345 | 16 | { | 346 | 16 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 16 | if (GC_DELREF(s) == 0) { | 348 | 16 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 16 | } | 350 | 16 | } | 351 | 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 | 345 | 144 | { | 346 | 144 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 144 | if (GC_DELREF(s) == 0) { | 348 | 144 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 144 | } | 350 | 144 | } | 351 | 144 | } |
Unexecuted instantiation: uuencode.c:zend_string_release Unexecuted instantiation: var_unserializer.c:zend_string_release var.c:zend_string_release Line | Count | Source | 345 | 833 | { | 346 | 833 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 42 | if (GC_DELREF(s) == 0) { | 348 | 32 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 32 | } | 350 | 42 | } | 351 | 833 | } |
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 | 345 | 48 | { | 346 | 48 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 48 | if (GC_DELREF(s) == 0) { | 348 | 48 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 48 | } | 350 | 48 | } | 351 | 48 | } |
Unexecuted instantiation: php_uri_common.c:zend_string_release Unexecuted instantiation: explicit_bzero.c:zend_string_release fopen_wrappers.c:zend_string_release Line | Count | Source | 345 | 23 | { | 346 | 23 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 23 | if (GC_DELREF(s) == 0) { | 348 | 23 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 23 | } | 350 | 23 | } | 351 | 23 | } |
Unexecuted instantiation: getopt.c:zend_string_release main.c:zend_string_release Line | Count | Source | 345 | 10.5M | { | 346 | 10.5M | if (!ZSTR_IS_INTERNED(s)) { | 347 | 4.22M | if (GC_DELREF(s) == 0) { | 348 | 3.35M | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 3.35M | } | 350 | 4.22M | } | 351 | 10.5M | } |
Unexecuted instantiation: network.c:zend_string_release output.c:zend_string_release Line | Count | Source | 345 | 65.5k | { | 346 | 65.5k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 3.52k | if (GC_DELREF(s) == 0) { | 348 | 581 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 581 | } | 350 | 3.52k | } | 351 | 65.5k | } |
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 | 345 | 6.11k | { | 346 | 6.11k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 6.11k | if (GC_DELREF(s) == 0) { | 348 | 6.11k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 6.11k | } | 350 | 6.11k | } | 351 | 6.11k | } |
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 | 345 | 398 | { | 346 | 398 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 359 | if (GC_DELREF(s) == 0) { | 348 | 340 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 340 | } | 350 | 359 | } | 351 | 398 | } |
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 | 345 | 38.9k | { | 346 | 38.9k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 4.52k | if (GC_DELREF(s) == 0) { | 348 | 4.42k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 4.42k | } | 350 | 4.52k | } | 351 | 38.9k | } |
zend_ast.c:zend_string_release Line | Count | Source | 345 | 6.67k | { | 346 | 6.67k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 6.60k | if (GC_DELREF(s) == 0) { | 348 | 6.60k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 6.60k | } | 350 | 6.60k | } | 351 | 6.67k | } |
zend_attributes.c:zend_string_release Line | Count | Source | 345 | 56.6k | { | 346 | 56.6k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 52.1k | if (GC_DELREF(s) == 0) { | 348 | 49.2k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 49.2k | } | 350 | 52.1k | } | 351 | 56.6k | } |
zend_builtin_functions.c:zend_string_release Line | Count | Source | 345 | 341 | { | 346 | 341 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 280 | if (GC_DELREF(s) == 0) { | 348 | 280 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 280 | } | 350 | 280 | } | 351 | 341 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_release zend_closures.c:zend_string_release Line | Count | Source | 345 | 684 | { | 346 | 684 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 40 | if (GC_DELREF(s) == 0) { | 348 | 15 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 15 | } | 350 | 40 | } | 351 | 684 | } |
zend_compile.c:zend_string_release Line | Count | Source | 345 | 299k | { | 346 | 299k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 263k | if (GC_DELREF(s) == 0) { | 348 | 66.8k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 66.8k | } | 350 | 263k | } | 351 | 299k | } |
zend_constants.c:zend_string_release Line | Count | Source | 345 | 502 | { | 346 | 502 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 44 | if (GC_DELREF(s) == 0) { | 348 | 2 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 2 | } | 350 | 44 | } | 351 | 502 | } |
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 | 345 | 734 | { | 346 | 734 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 14 | if (GC_DELREF(s) == 0) { | 348 | 14 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 14 | } | 350 | 14 | } | 351 | 734 | } |
zend_exceptions.c:zend_string_release Line | Count | Source | 345 | 1.13M | { | 346 | 1.13M | if (!ZSTR_IS_INTERNED(s)) { | 347 | 1.13M | if (GC_DELREF(s) == 0) { | 348 | 0 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 0 | } | 350 | 1.13M | } | 351 | 1.13M | } |
Unexecuted instantiation: zend_execute_API.c:zend_string_release zend_execute.c:zend_string_release Line | Count | Source | 345 | 16.3k | { | 346 | 16.3k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 9.92k | if (GC_DELREF(s) == 0) { | 348 | 1.31k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 1.31k | } | 350 | 9.92k | } | 351 | 16.3k | } |
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 | 345 | 2.62M | { | 346 | 2.62M | if (!ZSTR_IS_INTERNED(s)) { | 347 | 631k | if (GC_DELREF(s) == 0) { | 348 | 213k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 213k | } | 350 | 631k | } | 351 | 2.62M | } |
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 | 345 | 5.47k | { | 346 | 5.47k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 2.22k | if (GC_DELREF(s) == 0) { | 348 | 2.19k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 2.19k | } | 350 | 2.22k | } | 351 | 5.47k | } |
zend_ini_parser.c:zend_string_release Line | Count | Source | 345 | 518k | { | 346 | 518k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 513k | if (GC_DELREF(s) == 0) { | 348 | 359k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 359k | } | 350 | 513k | } | 351 | 518k | } |
Unexecuted instantiation: zend_ini_scanner.c:zend_string_release zend_ini.c:zend_string_release Line | Count | Source | 345 | 163k | { | 346 | 163k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 162k | if (GC_DELREF(s) == 0) { | 348 | 81.6k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 81.6k | } | 350 | 162k | } | 351 | 163k | } |
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 | 345 | 27.7k | { | 346 | 27.7k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 27.7k | if (GC_DELREF(s) == 0) { | 348 | 0 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 0 | } | 350 | 27.7k | } | 351 | 27.7k | } |
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 | 345 | 270 | { | 346 | 270 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 270 | if (GC_DELREF(s) == 0) { | 348 | 224 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 224 | } | 350 | 270 | } | 351 | 270 | } |
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 | 345 | 35.3k | { | 346 | 35.3k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 140 | if (GC_DELREF(s) == 0) { | 348 | 25 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 25 | } | 350 | 140 | } | 351 | 35.3k | } |
zend_operators.c:zend_string_release Line | Count | Source | 345 | 10.4k | { | 346 | 10.4k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 6.24k | if (GC_DELREF(s) == 0) { | 348 | 6.19k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 6.19k | } | 350 | 6.24k | } | 351 | 10.4k | } |
zend_property_hooks.c:zend_string_release Line | Count | Source | 345 | 65 | { | 346 | 65 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 65 | if (GC_DELREF(s) == 0) { | 348 | 52 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 52 | } | 350 | 65 | } | 351 | 65 | } |
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 | 345 | 339k | { | 346 | 339k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 224k | if (GC_DELREF(s) == 0) { | 348 | 80.3k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 80.3k | } | 350 | 224k | } | 351 | 339k | } |
zend_string.c:zend_string_release Line | Count | Source | 345 | 821k | { | 346 | 821k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 821k | if (GC_DELREF(s) == 0) { | 348 | 577k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 577k | } | 350 | 821k | } | 351 | 821k | } |
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 | 345 | 2.83M | { | 346 | 2.83M | if (!ZSTR_IS_INTERNED(s)) { | 347 | 2.83M | if (GC_DELREF(s) == 0) { | 348 | 3.09k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 3.09k | } | 350 | 2.83M | } | 351 | 2.83M | } |
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 | 345 | 23.7k | { | 346 | 23.7k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 23.7k | if (GC_DELREF(s) == 0) { | 348 | 23.7k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 23.7k | } | 350 | 23.7k | } | 351 | 23.7k | } |
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 | 345 | 24.1k | { | 346 | 24.1k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 24.1k | if (GC_DELREF(s) == 0) { | 348 | 24.1k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 349 | 24.1k | } | 350 | 24.1k | } | 351 | 24.1k | } |
Unexecuted instantiation: fuzzer-json.c:zend_string_release Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_release Unexecuted instantiation: fuzzer-execute.c:zend_string_release |
352 | | |
353 | | static zend_always_inline void zend_string_release_ex(zend_string *s, bool persistent) |
354 | 10.8M | { |
355 | 10.8M | if (!ZSTR_IS_INTERNED(s)) { |
356 | 4.35M | if (GC_DELREF(s) == 0) { |
357 | 2.87M | if (persistent) { |
358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); |
359 | 0 | free(s); |
360 | 2.87M | } else { |
361 | 2.87M | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); |
362 | 2.87M | efree(s); |
363 | 2.87M | } |
364 | 2.87M | } |
365 | 4.35M | } |
366 | 10.8M | } php_date.c:zend_string_release_ex Line | Count | Source | 354 | 95.0k | { | 355 | 95.0k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 94.8k | if (GC_DELREF(s) == 0) { | 357 | 94.8k | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 94.8k | } else { | 361 | 94.8k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 94.8k | efree(s); | 363 | 94.8k | } | 364 | 94.8k | } | 365 | 94.8k | } | 366 | 95.0k | } |
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 | 354 | 169 | { | 355 | 169 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 26 | if (GC_DELREF(s) == 0) { | 357 | 26 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 26 | } else { | 361 | 26 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 26 | efree(s); | 363 | 26 | } | 364 | 26 | } | 365 | 26 | } | 366 | 169 | } |
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 hash.c:zend_string_release_ex Line | Count | Source | 354 | 1.97k | { | 355 | 1.97k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 1.97k | if (GC_DELREF(s) == 0) { | 357 | 1.97k | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 1.97k | } else { | 361 | 1.97k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 1.97k | efree(s); | 363 | 1.97k | } | 364 | 1.97k | } | 365 | 1.97k | } | 366 | 1.97k | } |
Unexecuted instantiation: json_encoder.c:zend_string_release_ex json_parser.tab.c:zend_string_release_ex Line | Count | Source | 354 | 51.8k | { | 355 | 51.8k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 32.7k | if (GC_DELREF(s) == 0) { | 357 | 15.0k | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 15.0k | } else { | 361 | 15.0k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 15.0k | efree(s); | 363 | 15.0k | } | 364 | 15.0k | } | 365 | 32.7k | } | 366 | 51.8k | } |
Unexecuted instantiation: json_scanner.c:zend_string_release_ex json.c:zend_string_release_ex Line | Count | Source | 354 | 137 | { | 355 | 137 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 137 | if (GC_DELREF(s) == 0) { | 357 | 137 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 137 | } else { | 361 | 137 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 137 | efree(s); | 363 | 137 | } | 364 | 137 | } | 365 | 137 | } | 366 | 137 | } |
Unexecuted instantiation: php_lexbor.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 | 354 | 1.82k | { | 355 | 1.82k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 260 | if (GC_DELREF(s) == 0) { | 357 | 260 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 260 | } else { | 361 | 260 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 260 | efree(s); | 363 | 260 | } | 364 | 260 | } | 365 | 260 | } | 366 | 1.82k | } |
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 | 354 | 68 | { | 355 | 68 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 68 | if (GC_DELREF(s) == 0) { | 357 | 0 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 0 | } else { | 361 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 0 | efree(s); | 363 | 0 | } | 364 | 0 | } | 365 | 68 | } | 366 | 68 | } |
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 | 354 | 3.02k | { | 355 | 3.02k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 264 | if (GC_DELREF(s) == 0) { | 357 | 264 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 264 | } else { | 361 | 264 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 264 | efree(s); | 363 | 264 | } | 364 | 264 | } | 365 | 264 | } | 366 | 3.02k | } |
assert.c:zend_string_release_ex Line | Count | Source | 354 | 66 | { | 355 | 66 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 33 | if (GC_DELREF(s) == 0) { | 357 | 33 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 33 | } else { | 361 | 33 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 33 | efree(s); | 363 | 33 | } | 364 | 33 | } | 365 | 33 | } | 366 | 66 | } |
Unexecuted instantiation: base64.c:zend_string_release_ex basic_functions.c:zend_string_release_ex Line | Count | Source | 354 | 590 | { | 355 | 590 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 86 | if (GC_DELREF(s) == 0) { | 357 | 39 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 39 | } else { | 361 | 39 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 39 | efree(s); | 363 | 39 | } | 364 | 39 | } | 365 | 86 | } | 366 | 590 | } |
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 | 354 | 65 | { | 355 | 65 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 52 | if (GC_DELREF(s) == 0) { | 357 | 44 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 44 | } else { | 361 | 44 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 44 | efree(s); | 363 | 44 | } | 364 | 44 | } | 365 | 52 | } | 366 | 65 | } |
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 | 354 | 42 | { | 355 | 42 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 0 | if (GC_DELREF(s) == 0) { | 357 | 0 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 0 | } else { | 361 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 0 | efree(s); | 363 | 0 | } | 364 | 0 | } | 365 | 0 | } | 366 | 42 | } |
info.c:zend_string_release_ex Line | Count | Source | 354 | 15 | { | 355 | 15 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 10 | if (GC_DELREF(s) == 0) { | 357 | 10 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 10 | } else { | 361 | 10 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 10 | efree(s); | 363 | 10 | } | 364 | 10 | } | 365 | 10 | } | 366 | 15 | } |
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 | 354 | 385 | { | 355 | 385 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 211 | if (GC_DELREF(s) == 0) { | 357 | 88 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 88 | } else { | 361 | 88 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 88 | efree(s); | 363 | 88 | } | 364 | 88 | } | 365 | 211 | } | 366 | 385 | } |
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 | 354 | 80 | { | 355 | 80 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 80 | if (GC_DELREF(s) == 0) { | 357 | 0 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 0 | } else { | 361 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 0 | efree(s); | 363 | 0 | } | 364 | 0 | } | 365 | 80 | } | 366 | 80 | } |
Unexecuted instantiation: url.c:zend_string_release_ex user_filters.c:zend_string_release_ex Line | Count | Source | 354 | 38 | { | 355 | 38 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 0 | if (GC_DELREF(s) == 0) { | 357 | 0 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 0 | } else { | 361 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 0 | efree(s); | 363 | 0 | } | 364 | 0 | } | 365 | 0 | } | 366 | 38 | } |
Unexecuted instantiation: uuencode.c:zend_string_release_ex var_unserializer.c:zend_string_release_ex Line | Count | Source | 354 | 2.22M | { | 355 | 2.22M | if (!ZSTR_IS_INTERNED(s)) { | 356 | 1.05M | if (GC_DELREF(s) == 0) { | 357 | 1.05M | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 1.05M | } else { | 361 | 1.05M | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 1.05M | efree(s); | 363 | 1.05M | } | 364 | 1.05M | } | 365 | 1.05M | } | 366 | 2.22M | } |
var.c:zend_string_release_ex Line | Count | Source | 354 | 10.0k | { | 355 | 10.0k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 850 | if (GC_DELREF(s) == 0) { | 357 | 840 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 840 | } else { | 361 | 840 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 840 | efree(s); | 363 | 840 | } | 364 | 840 | } | 365 | 850 | } | 366 | 10.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 | 354 | 16 | { | 355 | 16 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 0 | if (GC_DELREF(s) == 0) { | 357 | 0 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 0 | } else { | 361 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 0 | efree(s); | 363 | 0 | } | 364 | 0 | } | 365 | 0 | } | 366 | 16 | } |
Unexecuted instantiation: php_uri_common.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 | 354 | 10 | { | 355 | 10 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 10 | if (GC_DELREF(s) == 0) { | 357 | 10 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 10 | } else { | 361 | 10 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 10 | efree(s); | 363 | 10 | } | 364 | 10 | } | 365 | 10 | } | 366 | 10 | } |
Unexecuted instantiation: network.c:zend_string_release_ex output.c:zend_string_release_ex Line | Count | Source | 354 | 3.85k | { | 355 | 3.85k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 3.85k | if (GC_DELREF(s) == 0) { | 357 | 1.92k | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 1.92k | } else { | 361 | 1.92k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 1.92k | efree(s); | 363 | 1.92k | } | 364 | 1.92k | } | 365 | 3.85k | } | 366 | 3.85k | } |
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 | 354 | 8.65k | { | 355 | 8.65k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 1.88k | if (GC_DELREF(s) == 0) { | 357 | 0 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 0 | } else { | 361 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 0 | efree(s); | 363 | 0 | } | 364 | 0 | } | 365 | 1.88k | } | 366 | 8.65k | } |
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 | 354 | 32 | { | 355 | 32 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 32 | if (GC_DELREF(s) == 0) { | 357 | 0 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 0 | } else { | 361 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 0 | efree(s); | 363 | 0 | } | 364 | 0 | } | 365 | 32 | } | 366 | 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 | 354 | 96 | { | 355 | 96 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 0 | if (GC_DELREF(s) == 0) { | 357 | 0 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 0 | } else { | 361 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 0 | efree(s); | 363 | 0 | } | 364 | 0 | } | 365 | 0 | } | 366 | 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 | 354 | 2 | { | 355 | 2 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 2 | if (GC_DELREF(s) == 0) { | 357 | 2 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 2 | } else { | 361 | 2 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 2 | efree(s); | 363 | 2 | } | 364 | 2 | } | 365 | 2 | } | 366 | 2 | } |
streams.c:zend_string_release_ex Line | Count | Source | 354 | 136 | { | 355 | 136 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 40 | if (GC_DELREF(s) == 0) { | 357 | 40 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 40 | } else { | 361 | 40 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 40 | efree(s); | 363 | 40 | } | 364 | 40 | } | 365 | 40 | } | 366 | 136 | } |
transports.c:zend_string_release_ex Line | Count | Source | 354 | 64 | { | 355 | 64 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 0 | if (GC_DELREF(s) == 0) { | 357 | 0 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 0 | } else { | 361 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 0 | efree(s); | 363 | 0 | } | 364 | 0 | } | 365 | 0 | } | 366 | 64 | } |
Unexecuted instantiation: userspace.c:zend_string_release_ex 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 | 354 | 923k | { | 355 | 923k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 369k | if (GC_DELREF(s) == 0) { | 357 | 69.1k | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 69.1k | } else { | 361 | 69.1k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 69.1k | efree(s); | 363 | 69.1k | } | 364 | 69.1k | } | 365 | 369k | } | 366 | 923k | } |
compact_vars.c:zend_string_release_ex Line | Count | Source | 354 | 3.93k | { | 355 | 3.93k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 651 | if (GC_DELREF(s) == 0) { | 357 | 627 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 627 | } else { | 361 | 627 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 627 | efree(s); | 363 | 627 | } | 364 | 627 | } | 365 | 651 | } | 366 | 3.93k | } |
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 | 354 | 8.59k | { | 355 | 8.59k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 0 | if (GC_DELREF(s) == 0) { | 357 | 0 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 0 | } else { | 361 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 0 | efree(s); | 363 | 0 | } | 364 | 0 | } | 365 | 0 | } | 366 | 8.59k | } |
zend_inference.c:zend_string_release_ex Line | Count | Source | 354 | 3.61k | { | 355 | 3.61k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 3.23k | if (GC_DELREF(s) == 0) { | 357 | 3.11k | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 3.11k | } else { | 361 | 3.11k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 3.11k | efree(s); | 363 | 3.11k | } | 364 | 3.11k | } | 365 | 3.23k | } | 366 | 3.61k | } |
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 | 354 | 72.2k | { | 355 | 72.2k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 62.6k | if (GC_DELREF(s) == 0) { | 357 | 28.2k | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 28.2k | } else { | 361 | 28.2k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 28.2k | efree(s); | 363 | 28.2k | } | 364 | 28.2k | } | 365 | 62.6k | } | 366 | 72.2k | } |
zend_ast.c:zend_string_release_ex Line | Count | Source | 354 | 152k | { | 355 | 152k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 92.9k | if (GC_DELREF(s) == 0) { | 357 | 35.8k | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 35.8k | } else { | 361 | 35.8k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 35.8k | efree(s); | 363 | 35.8k | } | 364 | 35.8k | } | 365 | 92.9k | } | 366 | 152k | } |
Unexecuted instantiation: zend_attributes.c:zend_string_release_ex zend_builtin_functions.c:zend_string_release_ex Line | Count | Source | 354 | 795 | { | 355 | 795 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 511 | if (GC_DELREF(s) == 0) { | 357 | 511 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 511 | } else { | 361 | 511 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 511 | efree(s); | 363 | 511 | } | 364 | 511 | } | 365 | 511 | } | 366 | 795 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_release_ex zend_closures.c:zend_string_release_ex Line | Count | Source | 354 | 366 | { | 355 | 366 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 169 | if (GC_DELREF(s) == 0) { | 357 | 0 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 0 | } else { | 361 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 0 | efree(s); | 363 | 0 | } | 364 | 0 | } | 365 | 169 | } | 366 | 366 | } |
zend_compile.c:zend_string_release_ex Line | Count | Source | 354 | 438k | { | 355 | 438k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 241k | if (GC_DELREF(s) == 0) { | 357 | 59.7k | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 59.7k | } else { | 361 | 59.7k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 59.7k | efree(s); | 363 | 59.7k | } | 364 | 59.7k | } | 365 | 241k | } | 366 | 438k | } |
zend_constants.c:zend_string_release_ex Line | Count | Source | 354 | 126 | { | 355 | 126 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 19 | if (GC_DELREF(s) == 0) { | 357 | 19 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 19 | } else { | 361 | 19 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 19 | efree(s); | 363 | 19 | } | 364 | 19 | } | 365 | 19 | } | 366 | 126 | } |
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 | 354 | 28.4k | { | 355 | 28.4k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 21.0k | if (GC_DELREF(s) == 0) { | 357 | 5.37k | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 5.37k | } else { | 361 | 5.37k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 5.37k | efree(s); | 363 | 5.37k | } | 364 | 5.37k | } | 365 | 21.0k | } | 366 | 28.4k | } |
zend_execute_API.c:zend_string_release_ex Line | Count | Source | 354 | 653k | { | 355 | 653k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 80.0k | if (GC_DELREF(s) == 0) { | 357 | 73.6k | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 73.6k | } else { | 361 | 73.6k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 73.6k | efree(s); | 363 | 73.6k | } | 364 | 73.6k | } | 365 | 80.0k | } | 366 | 653k | } |
zend_execute.c:zend_string_release_ex Line | Count | Source | 354 | 2.40M | { | 355 | 2.40M | if (!ZSTR_IS_INTERNED(s)) { | 356 | 726k | if (GC_DELREF(s) == 0) { | 357 | 222k | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 222k | } else { | 361 | 222k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 222k | efree(s); | 363 | 222k | } | 364 | 222k | } | 365 | 726k | } | 366 | 2.40M | } |
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 | 354 | 2.52M | { | 355 | 2.52M | if (!ZSTR_IS_INTERNED(s)) { | 356 | 1.05M | if (GC_DELREF(s) == 0) { | 357 | 997k | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 997k | } else { | 361 | 997k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 997k | efree(s); | 363 | 997k | } | 364 | 997k | } | 365 | 1.05M | } | 366 | 2.52M | } |
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 | 354 | 8.34k | { | 355 | 8.34k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 3.96k | if (GC_DELREF(s) == 0) { | 357 | 580 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 580 | } else { | 361 | 580 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 580 | efree(s); | 363 | 580 | } | 364 | 580 | } | 365 | 3.96k | } | 366 | 8.34k | } |
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 | 354 | 101 | { | 355 | 101 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 101 | if (GC_DELREF(s) == 0) { | 357 | 101 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 101 | } else { | 361 | 101 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 101 | efree(s); | 363 | 101 | } | 364 | 101 | } | 365 | 101 | } | 366 | 101 | } |
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 | 354 | 440 | { | 355 | 440 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 440 | if (GC_DELREF(s) == 0) { | 357 | 440 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 440 | } else { | 361 | 440 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 440 | efree(s); | 363 | 440 | } | 364 | 440 | } | 365 | 440 | } | 366 | 440 | } |
zend_language_scanner.c:zend_string_release_ex Line | Count | Source | 354 | 151k | { | 355 | 151k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 151k | if (GC_DELREF(s) == 0) { | 357 | 8.14k | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 8.14k | } else { | 361 | 8.14k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 8.14k | efree(s); | 363 | 8.14k | } | 364 | 8.14k | } | 365 | 151k | } | 366 | 151k | } |
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 | 354 | 1.25k | { | 355 | 1.25k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 926 | if (GC_DELREF(s) == 0) { | 357 | 811 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 811 | } else { | 361 | 811 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 811 | efree(s); | 363 | 811 | } | 364 | 811 | } | 365 | 926 | } | 366 | 1.25k | } |
Unexecuted instantiation: zend_objects_API.c:zend_string_release_ex Unexecuted instantiation: zend_objects.c:zend_string_release_ex Unexecuted instantiation: zend_observer.c:zend_string_release_ex zend_opcode.c:zend_string_release_ex Line | Count | Source | 354 | 480k | { | 355 | 480k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 224k | if (GC_DELREF(s) == 0) { | 357 | 82.9k | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 82.9k | } else { | 361 | 82.9k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 82.9k | efree(s); | 363 | 82.9k | } | 364 | 82.9k | } | 365 | 224k | } | 366 | 480k | } |
zend_operators.c:zend_string_release_ex Line | Count | Source | 354 | 605k | { | 355 | 605k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 119k | if (GC_DELREF(s) == 0) { | 357 | 114k | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 114k | } else { | 361 | 114k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 114k | efree(s); | 363 | 114k | } | 364 | 114k | } | 365 | 119k | } | 366 | 605k | } |
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 | 354 | 42 | { | 355 | 42 | if (!ZSTR_IS_INTERNED(s)) { | 356 | 38 | if (GC_DELREF(s) == 0) { | 357 | 15 | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 15 | } else { | 361 | 15 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 15 | efree(s); | 363 | 15 | } | 364 | 15 | } | 365 | 38 | } | 366 | 42 | } |
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 | 354 | 3.45k | { | 355 | 3.45k | if (!ZSTR_IS_INTERNED(s)) { | 356 | 1.95k | if (GC_DELREF(s) == 0) { | 357 | 1.95k | if (persistent) { | 358 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 359 | 0 | free(s); | 360 | 1.95k | } else { | 361 | 1.95k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 362 | 1.95k | efree(s); | 363 | 1.95k | } | 364 | 1.95k | } | 365 | 1.95k | } | 366 | 3.45k | } |
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 |
367 | | |
368 | | static zend_always_inline bool zend_string_equals_cstr(const zend_string *s1, const char *s2, size_t s2_length) |
369 | 12.7M | { |
370 | 12.7M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); |
371 | 12.7M | } php_date.c:zend_string_equals_cstr Line | Count | Source | 369 | 2.33M | { | 370 | 2.33M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 371 | 2.33M | } |
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: 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 | 369 | 25 | { | 370 | 25 | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 371 | 25 | } |
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 | 369 | 5.04k | { | 370 | 5.04k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 371 | 5.04k | } |
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 | 369 | 13 | { | 370 | 13 | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 371 | 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: 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 | 369 | 384 | { | 370 | 384 | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 371 | 384 | } |
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 | 369 | 30.7k | { | 370 | 30.7k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 371 | 30.7k | } |
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 | 369 | 1.08M | { | 370 | 1.08M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 371 | 1.08M | } |
zend_ssa.c:zend_string_equals_cstr Line | Count | Source | 369 | 104k | { | 370 | 104k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 371 | 104k | } |
Unexecuted instantiation: zend_alloc.c:zend_string_equals_cstr zend_API.c:zend_string_equals_cstr Line | Count | Source | 369 | 200k | { | 370 | 200k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 371 | 200k | } |
Unexecuted instantiation: zend_ast.c:zend_string_equals_cstr zend_attributes.c:zend_string_equals_cstr Line | Count | Source | 369 | 71.0k | { | 370 | 71.0k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 371 | 71.0k | } |
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 | 369 | 6.53M | { | 370 | 6.53M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 371 | 6.53M | } |
zend_constants.c:zend_string_equals_cstr Line | Count | Source | 369 | 11.0k | { | 370 | 11.0k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 371 | 11.0k | } |
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 | 369 | 1.24k | { | 370 | 1.24k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 371 | 1.24k | } |
Unexecuted instantiation: zend_execute_API.c:zend_string_equals_cstr zend_execute.c:zend_string_equals_cstr Line | Count | Source | 369 | 923 | { | 370 | 923 | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 371 | 923 | } |
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 | 369 | 937k | { | 370 | 937k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 371 | 937k | } |
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 | 369 | 1.34M | { | 370 | 1.34M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 371 | 1.34M | } |
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 | 369 | 43.9k | { | 370 | 43.9k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 371 | 43.9k | } |
Unexecuted instantiation: fuzzer-execute.c:zend_string_equals_cstr |
372 | | |
373 | | #if defined(__GNUC__) && (defined(__i386__) || (defined(__x86_64__) && !defined(__ILP32__))) |
374 | | BEGIN_EXTERN_C() |
375 | | ZEND_API bool ZEND_FASTCALL zend_string_equal_val(const zend_string *s1, const zend_string *s2); |
376 | | END_EXTERN_C() |
377 | | #else |
378 | | static zend_always_inline bool zend_string_equal_val(const zend_string *s1, const zend_string *s2) |
379 | | { |
380 | | return !memcmp(ZSTR_VAL(s1), ZSTR_VAL(s2), ZSTR_LEN(s1)); |
381 | | } |
382 | | #endif |
383 | | |
384 | | static zend_always_inline bool zend_string_equal_content(const zend_string *s1, const zend_string *s2) |
385 | 4.84M | { |
386 | 4.84M | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); |
387 | 4.84M | } 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: 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 | 385 | 165 | { | 386 | 165 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 387 | 165 | } |
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 | 385 | 5.26k | { | 386 | 5.26k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 387 | 5.26k | } |
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: 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 | 385 | 16 | { | 386 | 16 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 387 | 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 | 385 | 10.3k | { | 386 | 10.3k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 387 | 10.3k | } |
Unexecuted instantiation: zend_ast.c:zend_string_equal_content zend_attributes.c:zend_string_equal_content Line | Count | Source | 385 | 616 | { | 386 | 616 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 387 | 616 | } |
zend_builtin_functions.c:zend_string_equal_content Line | Count | Source | 385 | 54 | { | 386 | 54 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 387 | 54 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_equal_content zend_closures.c:zend_string_equal_content Line | Count | Source | 385 | 324 | { | 386 | 324 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 387 | 324 | } |
zend_compile.c:zend_string_equal_content Line | Count | Source | 385 | 2.08M | { | 386 | 2.08M | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 387 | 2.08M | } |
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 | 385 | 469 | { | 386 | 469 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 387 | 469 | } |
Unexecuted instantiation: zend_exceptions.c:zend_string_equal_content Unexecuted instantiation: zend_execute_API.c:zend_string_equal_content zend_execute.c:zend_string_equal_content Line | Count | Source | 385 | 45.7k | { | 386 | 45.7k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 387 | 45.7k | } |
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 | 385 | 1.85M | { | 386 | 1.85M | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 387 | 1.85M | } |
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 | 385 | 577 | { | 386 | 577 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 387 | 577 | } |
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 | 385 | 16.9k | { | 386 | 16.9k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 387 | 16.9k | } |
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 | 385 | 823k | { | 386 | 823k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 387 | 823k | } |
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 | 385 | 5 | { | 386 | 5 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 387 | 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 |
388 | | |
389 | | static zend_always_inline bool zend_string_equals(const zend_string *s1, const zend_string *s2) |
390 | 2.87M | { |
391 | 2.87M | return s1 == s2 || zend_string_equal_content(s1, s2); |
392 | 2.87M | } 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: 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 | 390 | 175 | { | 391 | 175 | return s1 == s2 || zend_string_equal_content(s1, s2); | 392 | 175 | } |
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 | 390 | 48 | { | 391 | 48 | return s1 == s2 || zend_string_equal_content(s1, s2); | 392 | 48 | } |
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: 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 | 390 | 16 | { | 391 | 16 | return s1 == s2 || zend_string_equal_content(s1, s2); | 392 | 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 | 390 | 11.1k | { | 391 | 11.1k | return s1 == s2 || zend_string_equal_content(s1, s2); | 392 | 11.1k | } |
Unexecuted instantiation: zend_ast.c:zend_string_equals zend_attributes.c:zend_string_equals Line | Count | Source | 390 | 748 | { | 391 | 748 | return s1 == s2 || zend_string_equal_content(s1, s2); | 392 | 748 | } |
zend_builtin_functions.c:zend_string_equals Line | Count | Source | 390 | 250 | { | 391 | 250 | return s1 == s2 || zend_string_equal_content(s1, s2); | 392 | 250 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_equals zend_closures.c:zend_string_equals Line | Count | Source | 390 | 620 | { | 391 | 620 | return s1 == s2 || zend_string_equal_content(s1, s2); | 392 | 620 | } |
zend_compile.c:zend_string_equals Line | Count | Source | 390 | 2.79M | { | 391 | 2.79M | return s1 == s2 || zend_string_equal_content(s1, s2); | 392 | 2.79M | } |
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 | 390 | 2.23k | { | 391 | 2.23k | return s1 == s2 || zend_string_equal_content(s1, s2); | 392 | 2.23k | } |
Unexecuted instantiation: zend_exceptions.c:zend_string_equals Unexecuted instantiation: zend_execute_API.c:zend_string_equals zend_execute.c:zend_string_equals Line | Count | Source | 390 | 46.4k | { | 391 | 46.4k | return s1 == s2 || zend_string_equal_content(s1, s2); | 392 | 46.4k | } |
Unexecuted instantiation: zend_extensions.c:zend_string_equals Unexecuted instantiation: zend_fibers.c:zend_string_equals Unexecuted instantiation: zend_float.c:zend_string_equals Unexecuted instantiation: zend_gc.c:zend_string_equals Unexecuted instantiation: zend_gdb.c:zend_string_equals Unexecuted instantiation: zend_generators.c:zend_string_equals Unexecuted instantiation: zend_hash.c:zend_string_equals Unexecuted instantiation: zend_highlight.c:zend_string_equals Unexecuted instantiation: zend_hrtime.c:zend_string_equals Unexecuted instantiation: zend_inheritance.c:zend_string_equals Unexecuted instantiation: zend_ini_parser.c:zend_string_equals Unexecuted instantiation: zend_ini_scanner.c:zend_string_equals Unexecuted instantiation: zend_ini.c:zend_string_equals Unexecuted instantiation: zend_interfaces.c:zend_string_equals Unexecuted instantiation: zend_iterators.c:zend_string_equals Unexecuted instantiation: zend_language_parser.c:zend_string_equals Unexecuted instantiation: zend_language_scanner.c:zend_string_equals Unexecuted instantiation: zend_lazy_objects.c:zend_string_equals Unexecuted instantiation: zend_list.c:zend_string_equals Unexecuted instantiation: zend_llist.c:zend_string_equals Unexecuted instantiation: zend_multibyte.c:zend_string_equals Unexecuted instantiation: zend_object_handlers.c:zend_string_equals Unexecuted instantiation: zend_objects_API.c:zend_string_equals Unexecuted instantiation: zend_objects.c:zend_string_equals Unexecuted instantiation: zend_observer.c:zend_string_equals Unexecuted instantiation: zend_opcode.c:zend_string_equals zend_operators.c:zend_string_equals Line | Count | Source | 390 | 17.1k | { | 391 | 17.1k | return s1 == s2 || zend_string_equal_content(s1, s2); | 392 | 17.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 | 390 | 553 | { | 391 | 553 | return s1 == s2 || zend_string_equal_content(s1, s2); | 392 | 553 | } |
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 | 390 | 10 | { | 391 | 10 | return s1 == s2 || zend_string_equal_content(s1, s2); | 392 | 10 | } |
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 |
393 | | |
394 | | #define zend_string_equals_ci(s1, s2) \ |
395 | 3.03M | (ZSTR_LEN(s1) == ZSTR_LEN(s2) && !zend_binary_strcasecmp(ZSTR_VAL(s1), ZSTR_LEN(s1), ZSTR_VAL(s2), ZSTR_LEN(s2))) |
396 | | |
397 | | #define zend_string_equals_literal_ci(str, c) \ |
398 | 195k | (ZSTR_LEN(str) == sizeof("" c) - 1 && !zend_binary_strcasecmp(ZSTR_VAL(str), ZSTR_LEN(str), (c), sizeof(c) - 1)) |
399 | | |
400 | | #define zend_string_equals_literal(str, literal) \ |
401 | 16.3M | zend_string_equals_cstr(str, "" literal, sizeof(literal) - 1) |
402 | | |
403 | | static zend_always_inline bool zend_string_starts_with_cstr(const zend_string *str, const char *prefix, size_t prefix_length) |
404 | 44 | { |
405 | 44 | return ZSTR_LEN(str) >= prefix_length && !memcmp(ZSTR_VAL(str), prefix, prefix_length); |
406 | 44 | } 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: 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 string.c:zend_string_starts_with_cstr Line | Count | Source | 404 | 28 | { | 405 | 28 | return ZSTR_LEN(str) >= prefix_length && !memcmp(ZSTR_VAL(str), prefix, prefix_length); | 406 | 28 | } |
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 | 404 | 16 | { | 405 | 16 | return ZSTR_LEN(str) >= prefix_length && !memcmp(ZSTR_VAL(str), prefix, prefix_length); | 406 | 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: 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 |
407 | | |
408 | | static zend_always_inline bool zend_string_starts_with(const zend_string *str, const zend_string *prefix) |
409 | 28 | { |
410 | 28 | return zend_string_starts_with_cstr(str, ZSTR_VAL(prefix), ZSTR_LEN(prefix)); |
411 | 28 | } 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: 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 string.c:zend_string_starts_with Line | Count | Source | 409 | 28 | { | 410 | 28 | return zend_string_starts_with_cstr(str, ZSTR_VAL(prefix), ZSTR_LEN(prefix)); | 411 | 28 | } |
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: 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 |
412 | | |
413 | | #define zend_string_starts_with_literal(str, prefix) \ |
414 | 16 | zend_string_starts_with_cstr(str, prefix, strlen(prefix)) |
415 | | |
416 | | static zend_always_inline bool zend_string_starts_with_cstr_ci(const zend_string *str, const char *prefix, size_t prefix_length) |
417 | 0 | { |
418 | 0 | return ZSTR_LEN(str) >= prefix_length && !strncasecmp(ZSTR_VAL(str), prefix, prefix_length); |
419 | 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: 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: 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 |
420 | | |
421 | | static zend_always_inline bool zend_string_starts_with_ci(const zend_string *str, const zend_string *prefix) |
422 | 0 | { |
423 | 0 | return zend_string_starts_with_cstr_ci(str, ZSTR_VAL(prefix), ZSTR_LEN(prefix)); |
424 | 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: 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: 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 |
425 | | |
426 | | #define zend_string_starts_with_literal_ci(str, prefix) \ |
427 | | zend_string_starts_with_cstr_ci(str, prefix, strlen(prefix)) |
428 | | |
429 | | /* |
430 | | * DJBX33A (Daniel J. Bernstein, Times 33 with Addition) |
431 | | * |
432 | | * This is Daniel J. Bernstein's popular `times 33' hash function as |
433 | | * posted by him years ago on comp.lang.c. It basically uses a function |
434 | | * like ``hash(i) = hash(i-1) * 33 + str[i]''. This is one of the best |
435 | | * known hash functions for strings. Because it is both computed very |
436 | | * fast and distributes very well. |
437 | | * |
438 | | * The magic of number 33, i.e. why it works better than many other |
439 | | * constants, prime or not, has never been adequately explained by |
440 | | * anyone. So I try an explanation: if one experimentally tests all |
441 | | * multipliers between 1 and 256 (as RSE did now) one detects that even |
442 | | * numbers are not usable at all. The remaining 128 odd numbers |
443 | | * (except for the number 1) work more or less all equally well. They |
444 | | * all distribute in an acceptable way and this way fill a hash table |
445 | | * with an average percent of approx. 86%. |
446 | | * |
447 | | * If one compares the Chi^2 values of the variants, the number 33 not |
448 | | * even has the best value. But the number 33 and a few other equally |
449 | | * good numbers like 17, 31, 63, 127 and 129 have nevertheless a great |
450 | | * advantage to the remaining numbers in the large set of possible |
451 | | * multipliers: their multiply operation can be replaced by a faster |
452 | | * operation based on just one shift plus either a single addition |
453 | | * or subtraction operation. And because a hash function has to both |
454 | | * distribute good _and_ has to be very fast to compute, those few |
455 | | * numbers should be preferred and seems to be the reason why Daniel J. |
456 | | * Bernstein also preferred it. |
457 | | * |
458 | | * |
459 | | * -- Ralf S. Engelschall <rse@engelschall.com> |
460 | | */ |
461 | | |
462 | | static zend_always_inline zend_ulong zend_inline_hash_func(const char *str, size_t len) |
463 | 13.2M | { |
464 | 13.2M | zend_ulong hash = Z_UL(5381); |
465 | | |
466 | 13.2M | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) |
467 | | /* Version with multiplication works better on modern CPU */ |
468 | 226M | for (; len >= 8; len -= 8, str += 8) { |
469 | | # if defined(__aarch64__) && !defined(WORDS_BIGENDIAN) |
470 | | /* On some architectures it is beneficial to load 8 bytes at a |
471 | | time and extract each byte with a bit field extract instr. */ |
472 | | uint64_t chunk; |
473 | | |
474 | | memcpy(&chunk, str, sizeof(chunk)); |
475 | | hash = |
476 | | hash * 33 * 33 * 33 * 33 + |
477 | | ((chunk >> (8 * 0)) & 0xff) * 33 * 33 * 33 + |
478 | | ((chunk >> (8 * 1)) & 0xff) * 33 * 33 + |
479 | | ((chunk >> (8 * 2)) & 0xff) * 33 + |
480 | | ((chunk >> (8 * 3)) & 0xff); |
481 | | hash = |
482 | | hash * 33 * 33 * 33 * 33 + |
483 | | ((chunk >> (8 * 4)) & 0xff) * 33 * 33 * 33 + |
484 | | ((chunk >> (8 * 5)) & 0xff) * 33 * 33 + |
485 | | ((chunk >> (8 * 6)) & 0xff) * 33 + |
486 | | ((chunk >> (8 * 7)) & 0xff); |
487 | | # else |
488 | 212M | hash = |
489 | 212M | hash * Z_L(33 * 33 * 33 * 33) + |
490 | 212M | str[0] * Z_L(33 * 33 * 33) + |
491 | 212M | str[1] * Z_L(33 * 33) + |
492 | 212M | str[2] * Z_L(33) + |
493 | 212M | str[3]; |
494 | 212M | hash = |
495 | 212M | hash * Z_L(33 * 33 * 33 * 33) + |
496 | 212M | str[4] * Z_L(33 * 33 * 33) + |
497 | 212M | str[5] * Z_L(33 * 33) + |
498 | 212M | str[6] * Z_L(33) + |
499 | 212M | str[7]; |
500 | 212M | # endif |
501 | 212M | } |
502 | 13.2M | if (len >= 4) { |
503 | 5.38M | hash = |
504 | 5.38M | hash * Z_L(33 * 33 * 33 * 33) + |
505 | 5.38M | str[0] * Z_L(33 * 33 * 33) + |
506 | 5.38M | str[1] * Z_L(33 * 33) + |
507 | 5.38M | str[2] * Z_L(33) + |
508 | 5.38M | str[3]; |
509 | 5.38M | len -= 4; |
510 | 5.38M | str += 4; |
511 | 5.38M | } |
512 | 13.2M | if (len >= 2) { |
513 | 5.19M | if (len > 2) { |
514 | 3.22M | hash = |
515 | 3.22M | hash * Z_L(33 * 33 * 33) + |
516 | 3.22M | str[0] * Z_L(33 * 33) + |
517 | 3.22M | str[1] * Z_L(33) + |
518 | 3.22M | str[2]; |
519 | 3.22M | } else { |
520 | 1.96M | hash = |
521 | 1.96M | hash * Z_L(33 * 33) + |
522 | 1.96M | str[0] * Z_L(33) + |
523 | 1.96M | str[1]; |
524 | 1.96M | } |
525 | 8.04M | } else if (len != 0) { |
526 | 4.41M | hash = hash * Z_L(33) + *str; |
527 | 4.41M | } |
528 | | #else |
529 | | /* variant with the hash unrolled eight times */ |
530 | | for (; len >= 8; len -= 8) { |
531 | | hash = ((hash << 5) + hash) + *str++; |
532 | | hash = ((hash << 5) + hash) + *str++; |
533 | | hash = ((hash << 5) + hash) + *str++; |
534 | | hash = ((hash << 5) + hash) + *str++; |
535 | | hash = ((hash << 5) + hash) + *str++; |
536 | | hash = ((hash << 5) + hash) + *str++; |
537 | | hash = ((hash << 5) + hash) + *str++; |
538 | | hash = ((hash << 5) + hash) + *str++; |
539 | | } |
540 | | switch (len) { |
541 | | case 7: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
542 | | case 6: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
543 | | case 5: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
544 | | case 4: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
545 | | case 3: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
546 | | case 2: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
547 | | case 1: hash = ((hash << 5) + hash) + *str++; break; |
548 | | case 0: break; |
549 | | EMPTY_SWITCH_DEFAULT_CASE() |
550 | | } |
551 | | #endif |
552 | | |
553 | | /* Hash value can't be zero, so we always set the high bit */ |
554 | 13.2M | #if SIZEOF_ZEND_LONG == 8 |
555 | 13.2M | return hash | Z_UL(0x8000000000000000); |
556 | | #elif SIZEOF_ZEND_LONG == 4 |
557 | | return hash | Z_UL(0x80000000); |
558 | | #else |
559 | | # error "Unknown SIZEOF_ZEND_LONG" |
560 | | #endif |
561 | 13.2M | } 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: 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 | 463 | 10.6k | { | 464 | 10.6k | zend_ulong hash = Z_UL(5381); | 465 | | | 466 | 10.6k | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) | 467 | | /* Version with multiplication works better on modern CPU */ | 468 | 10.9k | for (; len >= 8; len -= 8, str += 8) { | 469 | | # if defined(__aarch64__) && !defined(WORDS_BIGENDIAN) | 470 | | /* On some architectures it is beneficial to load 8 bytes at a | 471 | | time and extract each byte with a bit field extract instr. */ | 472 | | uint64_t chunk; | 473 | | | 474 | | memcpy(&chunk, str, sizeof(chunk)); | 475 | | hash = | 476 | | hash * 33 * 33 * 33 * 33 + | 477 | | ((chunk >> (8 * 0)) & 0xff) * 33 * 33 * 33 + | 478 | | ((chunk >> (8 * 1)) & 0xff) * 33 * 33 + | 479 | | ((chunk >> (8 * 2)) & 0xff) * 33 + | 480 | | ((chunk >> (8 * 3)) & 0xff); | 481 | | hash = | 482 | | hash * 33 * 33 * 33 * 33 + | 483 | | ((chunk >> (8 * 4)) & 0xff) * 33 * 33 * 33 + | 484 | | ((chunk >> (8 * 5)) & 0xff) * 33 * 33 + | 485 | | ((chunk >> (8 * 6)) & 0xff) * 33 + | 486 | | ((chunk >> (8 * 7)) & 0xff); | 487 | | # else | 488 | 291 | hash = | 489 | 291 | hash * Z_L(33 * 33 * 33 * 33) + | 490 | 291 | str[0] * Z_L(33 * 33 * 33) + | 491 | 291 | str[1] * Z_L(33 * 33) + | 492 | 291 | str[2] * Z_L(33) + | 493 | 291 | str[3]; | 494 | 291 | hash = | 495 | 291 | hash * Z_L(33 * 33 * 33 * 33) + | 496 | 291 | str[4] * Z_L(33 * 33 * 33) + | 497 | 291 | str[5] * Z_L(33 * 33) + | 498 | 291 | str[6] * Z_L(33) + | 499 | 291 | str[7]; | 500 | 291 | # endif | 501 | 291 | } | 502 | 10.6k | if (len >= 4) { | 503 | 320 | hash = | 504 | 320 | hash * Z_L(33 * 33 * 33 * 33) + | 505 | 320 | str[0] * Z_L(33 * 33 * 33) + | 506 | 320 | str[1] * Z_L(33 * 33) + | 507 | 320 | str[2] * Z_L(33) + | 508 | 320 | str[3]; | 509 | 320 | len -= 4; | 510 | 320 | str += 4; | 511 | 320 | } | 512 | 10.6k | if (len >= 2) { | 513 | 10.5k | if (len > 2) { | 514 | 686 | hash = | 515 | 686 | hash * Z_L(33 * 33 * 33) + | 516 | 686 | str[0] * Z_L(33 * 33) + | 517 | 686 | str[1] * Z_L(33) + | 518 | 686 | str[2]; | 519 | 9.91k | } else { | 520 | 9.91k | hash = | 521 | 9.91k | hash * Z_L(33 * 33) + | 522 | 9.91k | str[0] * Z_L(33) + | 523 | 9.91k | str[1]; | 524 | 9.91k | } | 525 | 10.5k | } else if (len != 0) { | 526 | 30 | hash = hash * Z_L(33) + *str; | 527 | 30 | } | 528 | | #else | 529 | | /* variant with the hash unrolled eight times */ | 530 | | for (; len >= 8; len -= 8) { | 531 | | hash = ((hash << 5) + hash) + *str++; | 532 | | hash = ((hash << 5) + hash) + *str++; | 533 | | hash = ((hash << 5) + hash) + *str++; | 534 | | hash = ((hash << 5) + hash) + *str++; | 535 | | hash = ((hash << 5) + hash) + *str++; | 536 | | hash = ((hash << 5) + hash) + *str++; | 537 | | hash = ((hash << 5) + hash) + *str++; | 538 | | hash = ((hash << 5) + hash) + *str++; | 539 | | } | 540 | | switch (len) { | 541 | | case 7: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 542 | | case 6: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 543 | | case 5: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 544 | | case 4: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 545 | | case 3: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 546 | | case 2: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 547 | | case 1: hash = ((hash << 5) + hash) + *str++; break; | 548 | | case 0: break; | 549 | | EMPTY_SWITCH_DEFAULT_CASE() | 550 | | } | 551 | | #endif | 552 | | | 553 | | /* Hash value can't be zero, so we always set the high bit */ | 554 | 10.6k | #if SIZEOF_ZEND_LONG == 8 | 555 | 10.6k | return hash | Z_UL(0x8000000000000000); | 556 | | #elif SIZEOF_ZEND_LONG == 4 | 557 | | return hash | Z_UL(0x80000000); | 558 | | #else | 559 | | # error "Unknown SIZEOF_ZEND_LONG" | 560 | | #endif | 561 | 10.6k | } |
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: 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 | 463 | 5.46M | { | 464 | 5.46M | zend_ulong hash = Z_UL(5381); | 465 | | | 466 | 5.46M | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) | 467 | | /* Version with multiplication works better on modern CPU */ | 468 | 9.21M | for (; len >= 8; len -= 8, str += 8) { | 469 | | # if defined(__aarch64__) && !defined(WORDS_BIGENDIAN) | 470 | | /* On some architectures it is beneficial to load 8 bytes at a | 471 | | time and extract each byte with a bit field extract instr. */ | 472 | | uint64_t chunk; | 473 | | | 474 | | memcpy(&chunk, str, sizeof(chunk)); | 475 | | hash = | 476 | | hash * 33 * 33 * 33 * 33 + | 477 | | ((chunk >> (8 * 0)) & 0xff) * 33 * 33 * 33 + | 478 | | ((chunk >> (8 * 1)) & 0xff) * 33 * 33 + | 479 | | ((chunk >> (8 * 2)) & 0xff) * 33 + | 480 | | ((chunk >> (8 * 3)) & 0xff); | 481 | | hash = | 482 | | hash * 33 * 33 * 33 * 33 + | 483 | | ((chunk >> (8 * 4)) & 0xff) * 33 * 33 * 33 + | 484 | | ((chunk >> (8 * 5)) & 0xff) * 33 * 33 + | 485 | | ((chunk >> (8 * 6)) & 0xff) * 33 + | 486 | | ((chunk >> (8 * 7)) & 0xff); | 487 | | # else | 488 | 3.74M | hash = | 489 | 3.74M | hash * Z_L(33 * 33 * 33 * 33) + | 490 | 3.74M | str[0] * Z_L(33 * 33 * 33) + | 491 | 3.74M | str[1] * Z_L(33 * 33) + | 492 | 3.74M | str[2] * Z_L(33) + | 493 | 3.74M | str[3]; | 494 | 3.74M | hash = | 495 | 3.74M | hash * Z_L(33 * 33 * 33 * 33) + | 496 | 3.74M | str[4] * Z_L(33 * 33 * 33) + | 497 | 3.74M | str[5] * Z_L(33 * 33) + | 498 | 3.74M | str[6] * Z_L(33) + | 499 | 3.74M | str[7]; | 500 | 3.74M | # endif | 501 | 3.74M | } | 502 | 5.46M | if (len >= 4) { | 503 | 2.13M | hash = | 504 | 2.13M | hash * Z_L(33 * 33 * 33 * 33) + | 505 | 2.13M | str[0] * Z_L(33 * 33 * 33) + | 506 | 2.13M | str[1] * Z_L(33 * 33) + | 507 | 2.13M | str[2] * Z_L(33) + | 508 | 2.13M | str[3]; | 509 | 2.13M | len -= 4; | 510 | 2.13M | str += 4; | 511 | 2.13M | } | 512 | 5.46M | if (len >= 2) { | 513 | 1.76M | if (len > 2) { | 514 | 1.04M | hash = | 515 | 1.04M | hash * Z_L(33 * 33 * 33) + | 516 | 1.04M | str[0] * Z_L(33 * 33) + | 517 | 1.04M | str[1] * Z_L(33) + | 518 | 1.04M | str[2]; | 519 | 1.04M | } else { | 520 | 720k | hash = | 521 | 720k | hash * Z_L(33 * 33) + | 522 | 720k | str[0] * Z_L(33) + | 523 | 720k | str[1]; | 524 | 720k | } | 525 | 3.69M | } else if (len != 0) { | 526 | 2.77M | hash = hash * Z_L(33) + *str; | 527 | 2.77M | } | 528 | | #else | 529 | | /* variant with the hash unrolled eight times */ | 530 | | for (; len >= 8; len -= 8) { | 531 | | hash = ((hash << 5) + hash) + *str++; | 532 | | hash = ((hash << 5) + hash) + *str++; | 533 | | hash = ((hash << 5) + hash) + *str++; | 534 | | hash = ((hash << 5) + hash) + *str++; | 535 | | hash = ((hash << 5) + hash) + *str++; | 536 | | hash = ((hash << 5) + hash) + *str++; | 537 | | hash = ((hash << 5) + hash) + *str++; | 538 | | hash = ((hash << 5) + hash) + *str++; | 539 | | } | 540 | | switch (len) { | 541 | | case 7: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 542 | | case 6: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 543 | | case 5: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 544 | | case 4: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 545 | | case 3: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 546 | | case 2: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 547 | | case 1: hash = ((hash << 5) + hash) + *str++; break; | 548 | | case 0: break; | 549 | | EMPTY_SWITCH_DEFAULT_CASE() | 550 | | } | 551 | | #endif | 552 | | | 553 | | /* Hash value can't be zero, so we always set the high bit */ | 554 | 5.46M | #if SIZEOF_ZEND_LONG == 8 | 555 | 5.46M | return hash | Z_UL(0x8000000000000000); | 556 | | #elif SIZEOF_ZEND_LONG == 4 | 557 | | return hash | Z_UL(0x80000000); | 558 | | #else | 559 | | # error "Unknown SIZEOF_ZEND_LONG" | 560 | | #endif | 561 | 5.46M | } |
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 | 463 | 7.76M | { | 464 | 7.76M | zend_ulong hash = Z_UL(5381); | 465 | | | 466 | 7.76M | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) | 467 | | /* Version with multiplication works better on modern CPU */ | 468 | 216M | for (; len >= 8; len -= 8, str += 8) { | 469 | | # if defined(__aarch64__) && !defined(WORDS_BIGENDIAN) | 470 | | /* On some architectures it is beneficial to load 8 bytes at a | 471 | | time and extract each byte with a bit field extract instr. */ | 472 | | uint64_t chunk; | 473 | | | 474 | | memcpy(&chunk, str, sizeof(chunk)); | 475 | | hash = | 476 | | hash * 33 * 33 * 33 * 33 + | 477 | | ((chunk >> (8 * 0)) & 0xff) * 33 * 33 * 33 + | 478 | | ((chunk >> (8 * 1)) & 0xff) * 33 * 33 + | 479 | | ((chunk >> (8 * 2)) & 0xff) * 33 + | 480 | | ((chunk >> (8 * 3)) & 0xff); | 481 | | hash = | 482 | | hash * 33 * 33 * 33 * 33 + | 483 | | ((chunk >> (8 * 4)) & 0xff) * 33 * 33 * 33 + | 484 | | ((chunk >> (8 * 5)) & 0xff) * 33 * 33 + | 485 | | ((chunk >> (8 * 6)) & 0xff) * 33 + | 486 | | ((chunk >> (8 * 7)) & 0xff); | 487 | | # else | 488 | 209M | hash = | 489 | 209M | hash * Z_L(33 * 33 * 33 * 33) + | 490 | 209M | str[0] * Z_L(33 * 33 * 33) + | 491 | 209M | str[1] * Z_L(33 * 33) + | 492 | 209M | str[2] * Z_L(33) + | 493 | 209M | str[3]; | 494 | 209M | hash = | 495 | 209M | hash * Z_L(33 * 33 * 33 * 33) + | 496 | 209M | str[4] * Z_L(33 * 33 * 33) + | 497 | 209M | str[5] * Z_L(33 * 33) + | 498 | 209M | str[6] * Z_L(33) + | 499 | 209M | str[7]; | 500 | 209M | # endif | 501 | 209M | } | 502 | 7.76M | if (len >= 4) { | 503 | 3.24M | hash = | 504 | 3.24M | hash * Z_L(33 * 33 * 33 * 33) + | 505 | 3.24M | str[0] * Z_L(33 * 33 * 33) + | 506 | 3.24M | str[1] * Z_L(33 * 33) + | 507 | 3.24M | str[2] * Z_L(33) + | 508 | 3.24M | str[3]; | 509 | 3.24M | len -= 4; | 510 | 3.24M | str += 4; | 511 | 3.24M | } | 512 | 7.76M | if (len >= 2) { | 513 | 3.42M | if (len > 2) { | 514 | 2.18M | hash = | 515 | 2.18M | hash * Z_L(33 * 33 * 33) + | 516 | 2.18M | str[0] * Z_L(33 * 33) + | 517 | 2.18M | str[1] * Z_L(33) + | 518 | 2.18M | str[2]; | 519 | 2.18M | } else { | 520 | 1.23M | hash = | 521 | 1.23M | hash * Z_L(33 * 33) + | 522 | 1.23M | str[0] * Z_L(33) + | 523 | 1.23M | str[1]; | 524 | 1.23M | } | 525 | 4.34M | } else if (len != 0) { | 526 | 1.63M | hash = hash * Z_L(33) + *str; | 527 | 1.63M | } | 528 | | #else | 529 | | /* variant with the hash unrolled eight times */ | 530 | | for (; len >= 8; len -= 8) { | 531 | | hash = ((hash << 5) + hash) + *str++; | 532 | | hash = ((hash << 5) + hash) + *str++; | 533 | | hash = ((hash << 5) + hash) + *str++; | 534 | | hash = ((hash << 5) + hash) + *str++; | 535 | | hash = ((hash << 5) + hash) + *str++; | 536 | | hash = ((hash << 5) + hash) + *str++; | 537 | | hash = ((hash << 5) + hash) + *str++; | 538 | | hash = ((hash << 5) + hash) + *str++; | 539 | | } | 540 | | switch (len) { | 541 | | case 7: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 542 | | case 6: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 543 | | case 5: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 544 | | case 4: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 545 | | case 3: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 546 | | case 2: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 547 | | case 1: hash = ((hash << 5) + hash) + *str++; break; | 548 | | case 0: break; | 549 | | EMPTY_SWITCH_DEFAULT_CASE() | 550 | | } | 551 | | #endif | 552 | | | 553 | | /* Hash value can't be zero, so we always set the high bit */ | 554 | 7.76M | #if SIZEOF_ZEND_LONG == 8 | 555 | 7.76M | return hash | Z_UL(0x8000000000000000); | 556 | | #elif SIZEOF_ZEND_LONG == 4 | 557 | | return hash | Z_UL(0x80000000); | 558 | | #else | 559 | | # error "Unknown SIZEOF_ZEND_LONG" | 560 | | #endif | 561 | 7.76M | } |
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 |
562 | | |
563 | | // When adding a new string here, please also update build/gen_stub.php to the |
564 | | // known strings to be used in property registration; see gh-15751 |
565 | | #define ZEND_KNOWN_STRINGS(_) \ |
566 | | _(ZEND_STR_FILE, "file") \ |
567 | | _(ZEND_STR_LINE, "line") \ |
568 | | _(ZEND_STR_FUNCTION, "function") \ |
569 | | _(ZEND_STR_CLASS, "class") \ |
570 | | _(ZEND_STR_OBJECT, "object") \ |
571 | | _(ZEND_STR_TYPE, "type") \ |
572 | | _(ZEND_STR_OBJECT_OPERATOR, "->") \ |
573 | | _(ZEND_STR_PAAMAYIM_NEKUDOTAYIM, "::") \ |
574 | | _(ZEND_STR_ARGS, "args") \ |
575 | | _(ZEND_STR_UNKNOWN, "unknown") \ |
576 | | _(ZEND_STR_UNKNOWN_CAPITALIZED, "Unknown") \ |
577 | | _(ZEND_STR_EXIT, "exit") \ |
578 | | _(ZEND_STR_EVAL, "eval") \ |
579 | | _(ZEND_STR_INCLUDE, "include") \ |
580 | | _(ZEND_STR_REQUIRE, "require") \ |
581 | | _(ZEND_STR_INCLUDE_ONCE, "include_once") \ |
582 | | _(ZEND_STR_REQUIRE_ONCE, "require_once") \ |
583 | | _(ZEND_STR_SCALAR, "scalar") \ |
584 | | _(ZEND_STR_ERROR_REPORTING, "error_reporting") \ |
585 | | _(ZEND_STR_STATIC, "static") \ |
586 | | _(ZEND_STR_THIS, "this") \ |
587 | | _(ZEND_STR_VALUE, "value") \ |
588 | | _(ZEND_STR_KEY, "key") \ |
589 | | _(ZEND_STR_MAGIC_INVOKE, "__invoke") \ |
590 | | _(ZEND_STR_PREVIOUS, "previous") \ |
591 | | _(ZEND_STR_CODE, "code") \ |
592 | | _(ZEND_STR_MESSAGE, "message") \ |
593 | | _(ZEND_STR_SEVERITY, "severity") \ |
594 | | _(ZEND_STR_STRING, "string") \ |
595 | | _(ZEND_STR_TRACE, "trace") \ |
596 | | _(ZEND_STR_SCHEME, "scheme") \ |
597 | | _(ZEND_STR_HOST, "host") \ |
598 | | _(ZEND_STR_PORT, "port") \ |
599 | | _(ZEND_STR_USER, "user") \ |
600 | | _(ZEND_STR_USERNAME, "username") \ |
601 | | _(ZEND_STR_PASS, "pass") \ |
602 | | _(ZEND_STR_PASSWORD, "password") \ |
603 | | _(ZEND_STR_PATH, "path") \ |
604 | | _(ZEND_STR_QUERY, "query") \ |
605 | | _(ZEND_STR_FRAGMENT, "fragment") \ |
606 | | _(ZEND_STR_NULL, "NULL") \ |
607 | | _(ZEND_STR_BOOLEAN, "boolean") \ |
608 | | _(ZEND_STR_INTEGER, "integer") \ |
609 | | _(ZEND_STR_DOUBLE, "double") \ |
610 | | _(ZEND_STR_ARRAY, "array") \ |
611 | | _(ZEND_STR_RESOURCE, "resource") \ |
612 | | _(ZEND_STR_CLOSED_RESOURCE, "resource (closed)") \ |
613 | | _(ZEND_STR_NAME, "name") \ |
614 | | _(ZEND_STR_ARGV, "argv") \ |
615 | | _(ZEND_STR_ARGC, "argc") \ |
616 | | _(ZEND_STR_ARRAY_CAPITALIZED, "Array") \ |
617 | | _(ZEND_STR_BOOL, "bool") \ |
618 | | _(ZEND_STR_INT, "int") \ |
619 | | _(ZEND_STR_FLOAT, "float") \ |
620 | | _(ZEND_STR_CALLABLE, "callable") \ |
621 | | _(ZEND_STR_ITERABLE, "iterable") \ |
622 | | _(ZEND_STR_VOID, "void") \ |
623 | | _(ZEND_STR_NEVER, "never") \ |
624 | | _(ZEND_STR_FALSE, "false") \ |
625 | | _(ZEND_STR_TRUE, "true") \ |
626 | | _(ZEND_STR_NULL_LOWERCASE, "null") \ |
627 | | _(ZEND_STR_MIXED, "mixed") \ |
628 | | _(ZEND_STR_TRAVERSABLE, "Traversable") \ |
629 | | _(ZEND_STR_SELF, "self") \ |
630 | | _(ZEND_STR_PARENT, "parent") \ |
631 | | _(ZEND_STR_SLEEP, "__sleep") \ |
632 | | _(ZEND_STR_WAKEUP, "__wakeup") \ |
633 | | _(ZEND_STR_CASES, "cases") \ |
634 | | _(ZEND_STR_FROM, "from") \ |
635 | | _(ZEND_STR_TRYFROM, "tryFrom") \ |
636 | | _(ZEND_STR_TRYFROM_LOWERCASE, "tryfrom") \ |
637 | | _(ZEND_STR_AUTOGLOBAL_SERVER, "_SERVER") \ |
638 | | _(ZEND_STR_AUTOGLOBAL_ENV, "_ENV") \ |
639 | | _(ZEND_STR_AUTOGLOBAL_REQUEST, "_REQUEST") \ |
640 | | _(ZEND_STR_COUNT, "count") \ |
641 | | _(ZEND_STR_SENSITIVEPARAMETER, "SensitiveParameter") \ |
642 | | _(ZEND_STR_CONST_EXPR_PLACEHOLDER, "[constant expression]") \ |
643 | | _(ZEND_STR_DEPRECATED_CAPITALIZED, "Deprecated") \ |
644 | | _(ZEND_STR_SINCE, "since") \ |
645 | | _(ZEND_STR_GET, "get") \ |
646 | | _(ZEND_STR_SET, "set") \ |
647 | | |
648 | | |
649 | | typedef enum _zend_known_string_id { |
650 | | #define _ZEND_STR_ID(id, str) id, |
651 | | ZEND_KNOWN_STRINGS(_ZEND_STR_ID) |
652 | | #undef _ZEND_STR_ID |
653 | | ZEND_STR_LAST_KNOWN |
654 | | } zend_known_string_id; |
655 | | |
656 | | #endif /* ZEND_STRING_H */ |