/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.1G | #define ZSTR_VAL(zstr) (zstr)->val |
69 | 3.84G | #define ZSTR_LEN(zstr) (zstr)->len |
70 | 235M | #define ZSTR_H(zstr) (zstr)->h |
71 | | #define ZSTR_HASH(zstr) zend_string_hash_val(zstr) |
72 | | |
73 | | /*---*/ |
74 | | |
75 | 85.1M | #define ZSTR_IS_INTERNED(s) (GC_FLAGS(s) & IS_STR_INTERNED) |
76 | 840 | #define ZSTR_IS_VALID_UTF8(s) (GC_FLAGS(s) & IS_STR_VALID_UTF8) |
77 | | |
78 | | /* These are properties, encoded as flags, that will hold on the resulting string |
79 | | * after concatenating two strings that have these property. |
80 | | * Example: concatenating two UTF-8 strings yields another UTF-8 string. */ |
81 | 4.34M | #define ZSTR_COPYABLE_CONCAT_PROPERTIES (IS_STR_VALID_UTF8) |
82 | | |
83 | 1.84M | #define ZSTR_GET_COPYABLE_CONCAT_PROPERTIES(s) (GC_FLAGS(s) & ZSTR_COPYABLE_CONCAT_PROPERTIES) |
84 | | /* This macro returns the copyable concat properties which hold on both strings. */ |
85 | 2.20M | #define ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH(s1, s2) (GC_FLAGS(s1) & GC_FLAGS(s2) & ZSTR_COPYABLE_CONCAT_PROPERTIES) |
86 | | |
87 | 480 | #define ZSTR_COPY_CONCAT_PROPERTIES(out, in) do { \ |
88 | 480 | zend_string *_out = (out); \ |
89 | 480 | uint32_t properties = ZSTR_GET_COPYABLE_CONCAT_PROPERTIES((in)); \ |
90 | 480 | GC_ADD_FLAGS(_out, properties); \ |
91 | 480 | } while (0) |
92 | | |
93 | 9.81k | #define ZSTR_COPY_CONCAT_PROPERTIES_BOTH(out, in1, in2) do { \ |
94 | 9.81k | zend_string *_out = (out); \ |
95 | 9.81k | uint32_t properties = ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH((in1), (in2)); \ |
96 | 9.81k | GC_ADD_FLAGS(_out, properties); \ |
97 | 9.81k | } while (0) |
98 | | |
99 | 4.07M | #define ZSTR_EMPTY_ALLOC() zend_empty_string |
100 | 1.05M | #define ZSTR_CHAR(c) zend_one_char_string[c] |
101 | 47.6M | #define ZSTR_KNOWN(idx) zend_known_strings[idx] |
102 | | |
103 | 8.76M | #define _ZSTR_HEADER_SIZE XtOffsetOf(zend_string, val) |
104 | | |
105 | | #define _ZSTR_STRUCT_SIZE(len) (_ZSTR_HEADER_SIZE + len + 1) |
106 | | |
107 | 1.59k | #define ZSTR_MAX_OVERHEAD (ZEND_MM_ALIGNED_SIZE(_ZSTR_HEADER_SIZE + 1)) |
108 | | #define ZSTR_MAX_LEN (SIZE_MAX - ZSTR_MAX_OVERHEAD) |
109 | | |
110 | 6.67k | #define ZSTR_ALLOCA_ALLOC(str, _len, use_heap) do { \ |
111 | 6.67k | (str) = (zend_string *)do_alloca(ZEND_MM_ALIGNED_SIZE_EX(_ZSTR_STRUCT_SIZE(_len), 8), (use_heap)); \ |
112 | 6.67k | GC_SET_REFCOUNT(str, 1); \ |
113 | 6.67k | GC_TYPE_INFO(str) = GC_STRING; \ |
114 | 6.67k | ZSTR_H(str) = 0; \ |
115 | 6.67k | ZSTR_LEN(str) = _len; \ |
116 | 6.67k | } while (0) |
117 | | |
118 | | #define ZSTR_ALLOCA_INIT(str, s, len, use_heap) do { \ |
119 | | ZSTR_ALLOCA_ALLOC(str, len, use_heap); \ |
120 | | memcpy(ZSTR_VAL(str), (s), (len)); \ |
121 | | ZSTR_VAL(str)[(len)] = '\0'; \ |
122 | | } while (0) |
123 | | |
124 | 6.67k | #define ZSTR_ALLOCA_FREE(str, use_heap) free_alloca(str, use_heap) |
125 | | |
126 | 117k | #define ZSTR_INIT_LITERAL(s, persistent) (zend_string_init((s), strlen(s), (persistent))) |
127 | | |
128 | | /*---*/ |
129 | | |
130 | | static zend_always_inline zend_ulong zend_string_hash_val(zend_string *s) |
131 | 54.4M | { |
132 | 54.4M | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); |
133 | 54.4M | } 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: php_uriparser.c:zend_string_hash_val Unexecuted instantiation: explicit_bzero.c:zend_string_hash_val Unexecuted instantiation: fopen_wrappers.c:zend_string_hash_val Unexecuted instantiation: getopt.c:zend_string_hash_val Unexecuted instantiation: main.c:zend_string_hash_val Unexecuted instantiation: network.c:zend_string_hash_val Unexecuted instantiation: output.c:zend_string_hash_val Unexecuted instantiation: php_content_types.c:zend_string_hash_val Unexecuted instantiation: php_ini_builder.c:zend_string_hash_val Unexecuted instantiation: php_ini.c:zend_string_hash_val Unexecuted instantiation: php_glob.c:zend_string_hash_val Unexecuted instantiation: php_odbc_utils.c:zend_string_hash_val Unexecuted instantiation: php_open_temporary_file.c:zend_string_hash_val Unexecuted instantiation: php_scandir.c:zend_string_hash_val Unexecuted instantiation: php_syslog.c:zend_string_hash_val Unexecuted instantiation: php_ticks.c:zend_string_hash_val Unexecuted instantiation: php_variables.c:zend_string_hash_val Unexecuted instantiation: reentrancy.c:zend_string_hash_val Unexecuted instantiation: rfc1867.c:zend_string_hash_val Unexecuted instantiation: safe_bcmp.c:zend_string_hash_val Unexecuted instantiation: SAPI.c:zend_string_hash_val Unexecuted instantiation: snprintf.c:zend_string_hash_val Unexecuted instantiation: spprintf.c:zend_string_hash_val Unexecuted instantiation: strlcat.c:zend_string_hash_val Unexecuted instantiation: strlcpy.c:zend_string_hash_val Unexecuted instantiation: cast.c:zend_string_hash_val Unexecuted instantiation: filter.c:zend_string_hash_val Unexecuted instantiation: glob_wrapper.c:zend_string_hash_val Unexecuted instantiation: memory.c:zend_string_hash_val Unexecuted instantiation: mmap.c:zend_string_hash_val Unexecuted instantiation: plain_wrapper.c:zend_string_hash_val Unexecuted instantiation: streams.c:zend_string_hash_val Unexecuted instantiation: transports.c:zend_string_hash_val Unexecuted instantiation: userspace.c:zend_string_hash_val Unexecuted instantiation: xp_socket.c:zend_string_hash_val Unexecuted instantiation: block_pass.c:zend_string_hash_val compact_literals.c:zend_string_hash_val Line | Count | Source | 131 | 260k | { | 132 | 260k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 133 | 260k | } |
Unexecuted instantiation: compact_vars.c:zend_string_hash_val Unexecuted instantiation: dce.c:zend_string_hash_val Unexecuted instantiation: dfa_pass.c:zend_string_hash_val Unexecuted instantiation: escape_analysis.c:zend_string_hash_val Unexecuted instantiation: nop_removal.c:zend_string_hash_val Unexecuted instantiation: optimize_func_calls.c:zend_string_hash_val Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_hash_val Unexecuted instantiation: pass1.c:zend_string_hash_val Unexecuted instantiation: pass3.c:zend_string_hash_val Unexecuted instantiation: sccp.c:zend_string_hash_val Unexecuted instantiation: scdf.c:zend_string_hash_val Unexecuted instantiation: zend_call_graph.c:zend_string_hash_val Unexecuted instantiation: zend_cfg.c:zend_string_hash_val Unexecuted instantiation: zend_dfg.c:zend_string_hash_val Unexecuted instantiation: zend_dump.c:zend_string_hash_val Unexecuted instantiation: zend_func_info.c:zend_string_hash_val Unexecuted instantiation: zend_inference.c:zend_string_hash_val zend_optimizer.c:zend_string_hash_val Line | Count | Source | 131 | 5.22k | { | 132 | 5.22k | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 133 | 5.22k | } |
Unexecuted instantiation: zend_ssa.c:zend_string_hash_val Unexecuted instantiation: zend_alloc.c:zend_string_hash_val Unexecuted instantiation: zend_API.c:zend_string_hash_val Unexecuted instantiation: zend_ast.c:zend_string_hash_val Unexecuted instantiation: zend_attributes.c:zend_string_hash_val Unexecuted instantiation: zend_builtin_functions.c:zend_string_hash_val Unexecuted instantiation: zend_call_stack.c:zend_string_hash_val Unexecuted instantiation: zend_closures.c:zend_string_hash_val zend_compile.c:zend_string_hash_val Line | Count | Source | 131 | 1.69M | { | 132 | 1.69M | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 133 | 1.69M | } |
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 | 131 | 49.5M | { | 132 | 49.5M | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 133 | 49.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 | 131 | 406 | { | 132 | 406 | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 133 | 406 | } |
Unexecuted instantiation: zend_ini_parser.c:zend_string_hash_val Unexecuted instantiation: zend_ini_scanner.c:zend_string_hash_val Unexecuted instantiation: zend_ini.c:zend_string_hash_val Unexecuted instantiation: zend_interfaces.c:zend_string_hash_val Unexecuted instantiation: zend_iterators.c:zend_string_hash_val Unexecuted instantiation: zend_language_parser.c:zend_string_hash_val Unexecuted instantiation: zend_language_scanner.c:zend_string_hash_val Unexecuted instantiation: zend_lazy_objects.c:zend_string_hash_val Unexecuted instantiation: zend_list.c:zend_string_hash_val Unexecuted instantiation: zend_llist.c:zend_string_hash_val Unexecuted instantiation: zend_multibyte.c:zend_string_hash_val zend_object_handlers.c:zend_string_hash_val Line | Count | Source | 131 | 10 | { | 132 | 10 | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 133 | 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 | 131 | 2.97M | { | 132 | 2.97M | return ZSTR_H(s) ? ZSTR_H(s) : zend_string_hash_func(s); | 133 | 2.97M | } |
Unexecuted instantiation: zend_strtod.c:zend_string_hash_val Unexecuted instantiation: zend_system_id.c:zend_string_hash_val Unexecuted instantiation: zend_variables.c:zend_string_hash_val Unexecuted instantiation: zend_virtual_cwd.c:zend_string_hash_val Unexecuted instantiation: zend_vm_opcodes.c:zend_string_hash_val Unexecuted instantiation: zend_weakrefs.c:zend_string_hash_val Unexecuted instantiation: zend.c:zend_string_hash_val Unexecuted instantiation: internal_functions_cli.c:zend_string_hash_val Unexecuted instantiation: fuzzer-parser.c:zend_string_hash_val Unexecuted instantiation: fuzzer-sapi.c:zend_string_hash_val Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_hash_val Unexecuted instantiation: fuzzer-exif.c:zend_string_hash_val Unexecuted instantiation: fuzzer-unserialize.c:zend_string_hash_val Unexecuted instantiation: fuzzer-function-jit.c:zend_string_hash_val Unexecuted instantiation: fuzzer-json.c:zend_string_hash_val Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_hash_val Unexecuted instantiation: fuzzer-execute.c:zend_string_hash_val |
134 | | |
135 | | static zend_always_inline void zend_string_forget_hash_val(zend_string *s) |
136 | 6.38M | { |
137 | 6.38M | ZSTR_H(s) = 0; |
138 | 6.38M | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); |
139 | 6.38M | } Unexecuted instantiation: php_date.c:zend_string_forget_hash_val Unexecuted instantiation: astro.c:zend_string_forget_hash_val Unexecuted instantiation: dow.c:zend_string_forget_hash_val Unexecuted instantiation: parse_date.c:zend_string_forget_hash_val Unexecuted instantiation: parse_tz.c:zend_string_forget_hash_val Unexecuted instantiation: parse_posix.c:zend_string_forget_hash_val Unexecuted instantiation: timelib.c:zend_string_forget_hash_val Unexecuted instantiation: tm2unixtime.c:zend_string_forget_hash_val Unexecuted instantiation: unixtime2tm.c:zend_string_forget_hash_val Unexecuted instantiation: parse_iso_intervals.c:zend_string_forget_hash_val Unexecuted instantiation: interval.c:zend_string_forget_hash_val php_pcre.c:zend_string_forget_hash_val Line | Count | Source | 136 | 613 | { | 137 | 613 | ZSTR_H(s) = 0; | 138 | 613 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 613 | } |
Unexecuted instantiation: exif.c:zend_string_forget_hash_val Unexecuted instantiation: hash_adler32.c:zend_string_forget_hash_val Unexecuted instantiation: hash_crc32.c:zend_string_forget_hash_val Unexecuted instantiation: hash_fnv.c:zend_string_forget_hash_val Unexecuted instantiation: hash_gost.c:zend_string_forget_hash_val Unexecuted instantiation: hash_haval.c:zend_string_forget_hash_val Unexecuted instantiation: hash_joaat.c:zend_string_forget_hash_val Unexecuted instantiation: hash_md.c:zend_string_forget_hash_val Unexecuted instantiation: hash_murmur.c:zend_string_forget_hash_val Unexecuted instantiation: hash_ripemd.c:zend_string_forget_hash_val Unexecuted instantiation: hash_sha_ni.c:zend_string_forget_hash_val Unexecuted instantiation: hash_sha_sse2.c:zend_string_forget_hash_val Unexecuted instantiation: hash_sha.c:zend_string_forget_hash_val Unexecuted instantiation: hash_sha3.c:zend_string_forget_hash_val Unexecuted instantiation: hash_snefru.c:zend_string_forget_hash_val Unexecuted instantiation: hash_tiger.c:zend_string_forget_hash_val Unexecuted instantiation: hash_whirlpool.c:zend_string_forget_hash_val Unexecuted instantiation: hash_xxhash.c:zend_string_forget_hash_val Unexecuted instantiation: hash.c:zend_string_forget_hash_val Unexecuted instantiation: json_encoder.c:zend_string_forget_hash_val Unexecuted instantiation: json_parser.tab.c:zend_string_forget_hash_val Unexecuted instantiation: json_scanner.c:zend_string_forget_hash_val json.c:zend_string_forget_hash_val Line | Count | Source | 136 | 2.28k | { | 137 | 2.28k | ZSTR_H(s) = 0; | 138 | 2.28k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 2.28k | } |
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 | 136 | 326 | { | 137 | 326 | ZSTR_H(s) = 0; | 138 | 326 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 326 | } |
Unexecuted instantiation: php_spl.c:zend_string_forget_hash_val Unexecuted instantiation: spl_array.c:zend_string_forget_hash_val Unexecuted instantiation: spl_directory.c:zend_string_forget_hash_val Unexecuted instantiation: spl_dllist.c:zend_string_forget_hash_val Unexecuted instantiation: spl_exceptions.c:zend_string_forget_hash_val Unexecuted instantiation: spl_fixedarray.c:zend_string_forget_hash_val Unexecuted instantiation: spl_functions.c:zend_string_forget_hash_val Unexecuted instantiation: spl_heap.c:zend_string_forget_hash_val Unexecuted instantiation: spl_iterators.c:zend_string_forget_hash_val Unexecuted instantiation: spl_observer.c:zend_string_forget_hash_val Unexecuted instantiation: array.c:zend_string_forget_hash_val Unexecuted instantiation: assert.c:zend_string_forget_hash_val Unexecuted instantiation: base64.c:zend_string_forget_hash_val Unexecuted instantiation: basic_functions.c:zend_string_forget_hash_val Unexecuted instantiation: browscap.c:zend_string_forget_hash_val Unexecuted instantiation: crc32_x86.c:zend_string_forget_hash_val Unexecuted instantiation: crc32.c:zend_string_forget_hash_val Unexecuted instantiation: credits.c:zend_string_forget_hash_val Unexecuted instantiation: crypt.c:zend_string_forget_hash_val Unexecuted instantiation: css.c:zend_string_forget_hash_val Unexecuted instantiation: datetime.c:zend_string_forget_hash_val Unexecuted instantiation: dir.c:zend_string_forget_hash_val Unexecuted instantiation: dl.c:zend_string_forget_hash_val Unexecuted instantiation: dns.c:zend_string_forget_hash_val Unexecuted instantiation: exec.c:zend_string_forget_hash_val Unexecuted instantiation: file.c:zend_string_forget_hash_val Unexecuted instantiation: filestat.c:zend_string_forget_hash_val Unexecuted instantiation: filters.c:zend_string_forget_hash_val Unexecuted instantiation: flock_compat.c:zend_string_forget_hash_val formatted_print.c:zend_string_forget_hash_val Line | Count | Source | 136 | 112 | { | 137 | 112 | ZSTR_H(s) = 0; | 138 | 112 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 112 | } |
Unexecuted instantiation: fsock.c:zend_string_forget_hash_val Unexecuted instantiation: ftok.c:zend_string_forget_hash_val Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_forget_hash_val Unexecuted instantiation: head.c:zend_string_forget_hash_val Unexecuted instantiation: hrtime.c:zend_string_forget_hash_val html.c:zend_string_forget_hash_val Line | Count | Source | 136 | 4.97k | { | 137 | 4.97k | ZSTR_H(s) = 0; | 138 | 4.97k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 4.97k | } |
Unexecuted instantiation: http_fopen_wrapper.c:zend_string_forget_hash_val Unexecuted instantiation: http.c:zend_string_forget_hash_val Unexecuted instantiation: image.c:zend_string_forget_hash_val Unexecuted instantiation: incomplete_class.c:zend_string_forget_hash_val Unexecuted instantiation: info.c:zend_string_forget_hash_val Unexecuted instantiation: iptc.c:zend_string_forget_hash_val Unexecuted instantiation: levenshtein.c:zend_string_forget_hash_val Unexecuted instantiation: link.c:zend_string_forget_hash_val Unexecuted instantiation: mail.c:zend_string_forget_hash_val Unexecuted instantiation: math.c:zend_string_forget_hash_val Unexecuted instantiation: md5.c:zend_string_forget_hash_val Unexecuted instantiation: metaphone.c:zend_string_forget_hash_val Unexecuted instantiation: microtime.c:zend_string_forget_hash_val Unexecuted instantiation: net.c:zend_string_forget_hash_val Unexecuted instantiation: pack.c:zend_string_forget_hash_val Unexecuted instantiation: pageinfo.c:zend_string_forget_hash_val Unexecuted instantiation: password.c:zend_string_forget_hash_val Unexecuted instantiation: php_fopen_wrapper.c:zend_string_forget_hash_val Unexecuted instantiation: proc_open.c:zend_string_forget_hash_val quot_print.c:zend_string_forget_hash_val Line | Count | Source | 136 | 205 | { | 137 | 205 | ZSTR_H(s) = 0; | 138 | 205 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 205 | } |
Unexecuted instantiation: scanf.c:zend_string_forget_hash_val Unexecuted instantiation: sha1.c:zend_string_forget_hash_val Unexecuted instantiation: soundex.c:zend_string_forget_hash_val Unexecuted instantiation: streamsfuncs.c:zend_string_forget_hash_val string.c:zend_string_forget_hash_val Line | Count | Source | 136 | 1.02k | { | 137 | 1.02k | ZSTR_H(s) = 0; | 138 | 1.02k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 1.02k | } |
Unexecuted instantiation: strnatcmp.c:zend_string_forget_hash_val Unexecuted instantiation: syslog.c:zend_string_forget_hash_val Unexecuted instantiation: type.c:zend_string_forget_hash_val Unexecuted instantiation: uniqid.c:zend_string_forget_hash_val Unexecuted instantiation: url_scanner_ex.c:zend_string_forget_hash_val Unexecuted instantiation: url.c:zend_string_forget_hash_val Unexecuted instantiation: user_filters.c:zend_string_forget_hash_val Unexecuted instantiation: uuencode.c:zend_string_forget_hash_val Unexecuted instantiation: var_unserializer.c:zend_string_forget_hash_val var.c:zend_string_forget_hash_val Line | Count | Source | 136 | 1.30k | { | 137 | 1.30k | ZSTR_H(s) = 0; | 138 | 1.30k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 1.30k | } |
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: php_uriparser.c:zend_string_forget_hash_val Unexecuted instantiation: explicit_bzero.c:zend_string_forget_hash_val fopen_wrappers.c:zend_string_forget_hash_val Line | Count | Source | 136 | 23 | { | 137 | 23 | ZSTR_H(s) = 0; | 138 | 23 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 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 | 136 | 3.89k | { | 137 | 3.89k | ZSTR_H(s) = 0; | 138 | 3.89k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 3.89k | } |
Unexecuted instantiation: compact_literals.c:zend_string_forget_hash_val Unexecuted instantiation: compact_vars.c:zend_string_forget_hash_val Unexecuted instantiation: dce.c:zend_string_forget_hash_val Unexecuted instantiation: dfa_pass.c:zend_string_forget_hash_val Unexecuted instantiation: escape_analysis.c:zend_string_forget_hash_val Unexecuted instantiation: nop_removal.c:zend_string_forget_hash_val Unexecuted instantiation: optimize_func_calls.c:zend_string_forget_hash_val Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_forget_hash_val Unexecuted instantiation: pass1.c:zend_string_forget_hash_val Unexecuted instantiation: pass3.c:zend_string_forget_hash_val Unexecuted instantiation: sccp.c:zend_string_forget_hash_val Unexecuted instantiation: scdf.c:zend_string_forget_hash_val Unexecuted instantiation: zend_call_graph.c:zend_string_forget_hash_val Unexecuted instantiation: zend_cfg.c:zend_string_forget_hash_val Unexecuted instantiation: zend_dfg.c:zend_string_forget_hash_val Unexecuted instantiation: zend_dump.c:zend_string_forget_hash_val Unexecuted instantiation: zend_func_info.c:zend_string_forget_hash_val Unexecuted instantiation: zend_inference.c:zend_string_forget_hash_val Unexecuted instantiation: zend_optimizer.c:zend_string_forget_hash_val Unexecuted instantiation: zend_ssa.c:zend_string_forget_hash_val Unexecuted instantiation: zend_alloc.c:zend_string_forget_hash_val Unexecuted instantiation: zend_API.c:zend_string_forget_hash_val Unexecuted instantiation: zend_ast.c:zend_string_forget_hash_val zend_attributes.c:zend_string_forget_hash_val Line | Count | Source | 136 | 120 | { | 137 | 120 | ZSTR_H(s) = 0; | 138 | 120 | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 120 | } |
Unexecuted instantiation: zend_builtin_functions.c:zend_string_forget_hash_val Unexecuted instantiation: zend_call_stack.c:zend_string_forget_hash_val Unexecuted instantiation: zend_closures.c:zend_string_forget_hash_val zend_compile.c:zend_string_forget_hash_val Line | Count | Source | 136 | 1.59k | { | 137 | 1.59k | ZSTR_H(s) = 0; | 138 | 1.59k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 1.59k | } |
Unexecuted instantiation: zend_constants.c:zend_string_forget_hash_val Unexecuted instantiation: zend_cpuinfo.c:zend_string_forget_hash_val Unexecuted instantiation: zend_default_classes.c:zend_string_forget_hash_val Unexecuted instantiation: zend_dtrace.c:zend_string_forget_hash_val Unexecuted instantiation: zend_enum.c:zend_string_forget_hash_val Unexecuted instantiation: zend_exceptions.c:zend_string_forget_hash_val Unexecuted instantiation: zend_execute_API.c:zend_string_forget_hash_val zend_execute.c:zend_string_forget_hash_val Line | Count | Source | 136 | 194k | { | 137 | 194k | ZSTR_H(s) = 0; | 138 | 194k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 194k | } |
Unexecuted instantiation: zend_extensions.c:zend_string_forget_hash_val Unexecuted instantiation: zend_fibers.c:zend_string_forget_hash_val Unexecuted instantiation: zend_float.c:zend_string_forget_hash_val Unexecuted instantiation: zend_gc.c:zend_string_forget_hash_val Unexecuted instantiation: zend_gdb.c:zend_string_forget_hash_val Unexecuted instantiation: zend_generators.c:zend_string_forget_hash_val Unexecuted instantiation: zend_hash.c:zend_string_forget_hash_val Unexecuted instantiation: zend_highlight.c:zend_string_forget_hash_val Unexecuted instantiation: zend_hrtime.c:zend_string_forget_hash_val Unexecuted instantiation: zend_inheritance.c:zend_string_forget_hash_val zend_ini_parser.c:zend_string_forget_hash_val Line | Count | Source | 136 | 1.13M | { | 137 | 1.13M | ZSTR_H(s) = 0; | 138 | 1.13M | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 1.13M | } |
Unexecuted instantiation: zend_ini_scanner.c:zend_string_forget_hash_val Unexecuted instantiation: zend_ini.c:zend_string_forget_hash_val Unexecuted instantiation: zend_interfaces.c:zend_string_forget_hash_val Unexecuted instantiation: zend_iterators.c:zend_string_forget_hash_val Unexecuted instantiation: zend_language_parser.c:zend_string_forget_hash_val Unexecuted instantiation: zend_language_scanner.c:zend_string_forget_hash_val Unexecuted instantiation: zend_lazy_objects.c:zend_string_forget_hash_val Unexecuted instantiation: zend_list.c:zend_string_forget_hash_val Unexecuted instantiation: zend_llist.c:zend_string_forget_hash_val Unexecuted instantiation: zend_multibyte.c:zend_string_forget_hash_val Unexecuted instantiation: zend_object_handlers.c:zend_string_forget_hash_val Unexecuted instantiation: zend_objects_API.c:zend_string_forget_hash_val Unexecuted instantiation: zend_objects.c:zend_string_forget_hash_val Unexecuted instantiation: zend_observer.c:zend_string_forget_hash_val Unexecuted instantiation: zend_opcode.c:zend_string_forget_hash_val zend_operators.c:zend_string_forget_hash_val Line | Count | Source | 136 | 850k | { | 137 | 850k | ZSTR_H(s) = 0; | 138 | 850k | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 850k | } |
Unexecuted instantiation: zend_property_hooks.c:zend_string_forget_hash_val Unexecuted instantiation: zend_ptr_stack.c:zend_string_forget_hash_val Unexecuted instantiation: zend_signal.c:zend_string_forget_hash_val Unexecuted instantiation: zend_smart_str.c:zend_string_forget_hash_val Unexecuted instantiation: zend_sort.c:zend_string_forget_hash_val Unexecuted instantiation: zend_stack.c:zend_string_forget_hash_val Unexecuted instantiation: zend_stream.c:zend_string_forget_hash_val Unexecuted instantiation: zend_string.c:zend_string_forget_hash_val Unexecuted instantiation: zend_strtod.c:zend_string_forget_hash_val Unexecuted instantiation: zend_system_id.c:zend_string_forget_hash_val Unexecuted instantiation: zend_variables.c:zend_string_forget_hash_val Unexecuted instantiation: zend_virtual_cwd.c:zend_string_forget_hash_val Unexecuted instantiation: zend_vm_opcodes.c:zend_string_forget_hash_val Unexecuted instantiation: zend_weakrefs.c:zend_string_forget_hash_val zend.c:zend_string_forget_hash_val Line | Count | Source | 136 | 4.18M | { | 137 | 4.18M | ZSTR_H(s) = 0; | 138 | 4.18M | GC_DEL_FLAGS(s, IS_STR_VALID_UTF8); | 139 | 4.18M | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-parser.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-sapi.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-exif.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-unserialize.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-function-jit.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-json.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_forget_hash_val Unexecuted instantiation: fuzzer-execute.c:zend_string_forget_hash_val |
140 | | |
141 | | static zend_always_inline uint32_t zend_string_refcount(const zend_string *s) |
142 | 0 | { |
143 | 0 | if (!ZSTR_IS_INTERNED(s)) { |
144 | 0 | return GC_REFCOUNT(s); |
145 | 0 | } |
146 | 0 | return 1; |
147 | 0 | } Unexecuted instantiation: php_date.c:zend_string_refcount Unexecuted instantiation: astro.c:zend_string_refcount Unexecuted instantiation: dow.c:zend_string_refcount Unexecuted instantiation: parse_date.c:zend_string_refcount Unexecuted instantiation: parse_tz.c:zend_string_refcount Unexecuted instantiation: parse_posix.c:zend_string_refcount Unexecuted instantiation: timelib.c:zend_string_refcount Unexecuted instantiation: tm2unixtime.c:zend_string_refcount Unexecuted instantiation: unixtime2tm.c:zend_string_refcount Unexecuted instantiation: parse_iso_intervals.c:zend_string_refcount Unexecuted instantiation: interval.c:zend_string_refcount Unexecuted instantiation: php_pcre.c:zend_string_refcount Unexecuted instantiation: exif.c:zend_string_refcount Unexecuted instantiation: hash_adler32.c:zend_string_refcount Unexecuted instantiation: hash_crc32.c:zend_string_refcount Unexecuted instantiation: hash_fnv.c:zend_string_refcount Unexecuted instantiation: hash_gost.c:zend_string_refcount Unexecuted instantiation: hash_haval.c:zend_string_refcount Unexecuted instantiation: hash_joaat.c:zend_string_refcount Unexecuted instantiation: hash_md.c:zend_string_refcount Unexecuted instantiation: hash_murmur.c:zend_string_refcount Unexecuted instantiation: hash_ripemd.c:zend_string_refcount Unexecuted instantiation: hash_sha_ni.c:zend_string_refcount Unexecuted instantiation: hash_sha_sse2.c:zend_string_refcount Unexecuted instantiation: hash_sha.c:zend_string_refcount Unexecuted instantiation: hash_sha3.c:zend_string_refcount Unexecuted instantiation: hash_snefru.c:zend_string_refcount Unexecuted instantiation: hash_tiger.c:zend_string_refcount Unexecuted instantiation: hash_whirlpool.c:zend_string_refcount Unexecuted instantiation: hash_xxhash.c:zend_string_refcount Unexecuted instantiation: hash.c:zend_string_refcount Unexecuted instantiation: json_encoder.c:zend_string_refcount Unexecuted instantiation: json_parser.tab.c:zend_string_refcount Unexecuted instantiation: json_scanner.c:zend_string_refcount Unexecuted instantiation: json.c:zend_string_refcount Unexecuted instantiation: php_lexbor.c:zend_string_refcount Unexecuted instantiation: 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: php_uriparser.c:zend_string_refcount Unexecuted instantiation: explicit_bzero.c:zend_string_refcount Unexecuted instantiation: fopen_wrappers.c:zend_string_refcount Unexecuted instantiation: getopt.c:zend_string_refcount Unexecuted instantiation: main.c:zend_string_refcount Unexecuted instantiation: network.c:zend_string_refcount Unexecuted instantiation: output.c:zend_string_refcount Unexecuted instantiation: php_content_types.c:zend_string_refcount Unexecuted instantiation: php_ini_builder.c:zend_string_refcount Unexecuted instantiation: php_ini.c:zend_string_refcount Unexecuted instantiation: php_glob.c:zend_string_refcount Unexecuted instantiation: php_odbc_utils.c:zend_string_refcount Unexecuted instantiation: php_open_temporary_file.c:zend_string_refcount Unexecuted instantiation: php_scandir.c:zend_string_refcount Unexecuted instantiation: php_syslog.c:zend_string_refcount Unexecuted instantiation: php_ticks.c:zend_string_refcount Unexecuted instantiation: php_variables.c:zend_string_refcount Unexecuted instantiation: reentrancy.c:zend_string_refcount Unexecuted instantiation: rfc1867.c:zend_string_refcount Unexecuted instantiation: safe_bcmp.c:zend_string_refcount Unexecuted instantiation: SAPI.c:zend_string_refcount Unexecuted instantiation: snprintf.c:zend_string_refcount Unexecuted instantiation: spprintf.c:zend_string_refcount Unexecuted instantiation: strlcat.c:zend_string_refcount Unexecuted instantiation: strlcpy.c:zend_string_refcount Unexecuted instantiation: cast.c:zend_string_refcount Unexecuted instantiation: filter.c:zend_string_refcount Unexecuted instantiation: glob_wrapper.c:zend_string_refcount Unexecuted instantiation: memory.c:zend_string_refcount Unexecuted instantiation: mmap.c:zend_string_refcount Unexecuted instantiation: plain_wrapper.c:zend_string_refcount Unexecuted instantiation: streams.c:zend_string_refcount Unexecuted instantiation: transports.c:zend_string_refcount Unexecuted instantiation: userspace.c:zend_string_refcount Unexecuted instantiation: xp_socket.c:zend_string_refcount Unexecuted instantiation: block_pass.c:zend_string_refcount Unexecuted instantiation: compact_literals.c:zend_string_refcount Unexecuted instantiation: compact_vars.c:zend_string_refcount Unexecuted instantiation: dce.c:zend_string_refcount Unexecuted instantiation: dfa_pass.c:zend_string_refcount Unexecuted instantiation: escape_analysis.c:zend_string_refcount Unexecuted instantiation: nop_removal.c:zend_string_refcount Unexecuted instantiation: optimize_func_calls.c:zend_string_refcount Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_refcount Unexecuted instantiation: pass1.c:zend_string_refcount Unexecuted instantiation: pass3.c:zend_string_refcount Unexecuted instantiation: sccp.c:zend_string_refcount Unexecuted instantiation: scdf.c:zend_string_refcount Unexecuted instantiation: zend_call_graph.c:zend_string_refcount Unexecuted instantiation: zend_cfg.c:zend_string_refcount Unexecuted instantiation: zend_dfg.c:zend_string_refcount Unexecuted instantiation: zend_dump.c:zend_string_refcount Unexecuted instantiation: zend_func_info.c:zend_string_refcount Unexecuted instantiation: zend_inference.c:zend_string_refcount Unexecuted instantiation: zend_optimizer.c:zend_string_refcount Unexecuted instantiation: zend_ssa.c:zend_string_refcount Unexecuted instantiation: zend_alloc.c:zend_string_refcount Unexecuted instantiation: zend_API.c:zend_string_refcount Unexecuted instantiation: zend_ast.c:zend_string_refcount Unexecuted instantiation: zend_attributes.c:zend_string_refcount Unexecuted instantiation: zend_builtin_functions.c:zend_string_refcount Unexecuted instantiation: zend_call_stack.c:zend_string_refcount Unexecuted instantiation: zend_closures.c:zend_string_refcount Unexecuted instantiation: zend_compile.c:zend_string_refcount Unexecuted instantiation: zend_constants.c:zend_string_refcount Unexecuted instantiation: zend_cpuinfo.c:zend_string_refcount Unexecuted instantiation: zend_default_classes.c:zend_string_refcount Unexecuted instantiation: zend_dtrace.c:zend_string_refcount Unexecuted instantiation: zend_enum.c:zend_string_refcount Unexecuted instantiation: zend_exceptions.c:zend_string_refcount Unexecuted instantiation: zend_execute_API.c:zend_string_refcount Unexecuted instantiation: zend_execute.c:zend_string_refcount Unexecuted instantiation: zend_extensions.c:zend_string_refcount Unexecuted instantiation: zend_fibers.c:zend_string_refcount Unexecuted instantiation: zend_float.c:zend_string_refcount Unexecuted instantiation: zend_gc.c:zend_string_refcount Unexecuted instantiation: zend_gdb.c:zend_string_refcount Unexecuted instantiation: zend_generators.c:zend_string_refcount Unexecuted instantiation: zend_hash.c:zend_string_refcount Unexecuted instantiation: zend_highlight.c:zend_string_refcount Unexecuted instantiation: zend_hrtime.c:zend_string_refcount Unexecuted instantiation: zend_inheritance.c:zend_string_refcount Unexecuted instantiation: zend_ini_parser.c:zend_string_refcount Unexecuted instantiation: zend_ini_scanner.c:zend_string_refcount Unexecuted instantiation: zend_ini.c:zend_string_refcount Unexecuted instantiation: zend_interfaces.c:zend_string_refcount Unexecuted instantiation: zend_iterators.c:zend_string_refcount Unexecuted instantiation: zend_language_parser.c:zend_string_refcount Unexecuted instantiation: zend_language_scanner.c:zend_string_refcount Unexecuted instantiation: zend_lazy_objects.c:zend_string_refcount Unexecuted instantiation: zend_list.c:zend_string_refcount Unexecuted instantiation: zend_llist.c:zend_string_refcount Unexecuted instantiation: zend_multibyte.c:zend_string_refcount Unexecuted instantiation: zend_object_handlers.c:zend_string_refcount Unexecuted instantiation: zend_objects_API.c:zend_string_refcount Unexecuted instantiation: zend_objects.c:zend_string_refcount Unexecuted instantiation: zend_observer.c:zend_string_refcount Unexecuted instantiation: zend_opcode.c:zend_string_refcount Unexecuted instantiation: zend_operators.c:zend_string_refcount Unexecuted instantiation: zend_property_hooks.c:zend_string_refcount Unexecuted instantiation: zend_ptr_stack.c:zend_string_refcount Unexecuted instantiation: zend_signal.c:zend_string_refcount Unexecuted instantiation: zend_smart_str.c:zend_string_refcount Unexecuted instantiation: zend_sort.c:zend_string_refcount Unexecuted instantiation: zend_stack.c:zend_string_refcount Unexecuted instantiation: zend_stream.c:zend_string_refcount Unexecuted instantiation: zend_string.c:zend_string_refcount Unexecuted instantiation: zend_strtod.c:zend_string_refcount Unexecuted instantiation: zend_system_id.c:zend_string_refcount Unexecuted instantiation: zend_variables.c:zend_string_refcount Unexecuted instantiation: zend_virtual_cwd.c:zend_string_refcount Unexecuted instantiation: zend_vm_opcodes.c:zend_string_refcount Unexecuted instantiation: zend_weakrefs.c:zend_string_refcount Unexecuted instantiation: zend.c:zend_string_refcount Unexecuted instantiation: internal_functions_cli.c:zend_string_refcount Unexecuted instantiation: fuzzer-parser.c:zend_string_refcount Unexecuted instantiation: fuzzer-sapi.c:zend_string_refcount Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_refcount Unexecuted instantiation: fuzzer-exif.c:zend_string_refcount Unexecuted instantiation: fuzzer-unserialize.c:zend_string_refcount Unexecuted instantiation: fuzzer-function-jit.c:zend_string_refcount Unexecuted instantiation: fuzzer-json.c:zend_string_refcount Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_refcount Unexecuted instantiation: fuzzer-execute.c:zend_string_refcount |
148 | | |
149 | | static zend_always_inline uint32_t zend_string_addref(zend_string *s) |
150 | 1.40M | { |
151 | 1.40M | if (!ZSTR_IS_INTERNED(s)) { |
152 | 1.27M | return GC_ADDREF(s); |
153 | 1.27M | } |
154 | 132k | return 1; |
155 | 1.40M | } 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 | 150 | 27 | { | 151 | 27 | if (!ZSTR_IS_INTERNED(s)) { | 152 | 0 | return GC_ADDREF(s); | 153 | 0 | } | 154 | 27 | return 1; | 155 | 27 | } |
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 | 150 | 5 | { | 151 | 5 | if (!ZSTR_IS_INTERNED(s)) { | 152 | 0 | return GC_ADDREF(s); | 153 | 0 | } | 154 | 5 | return 1; | 155 | 5 | } |
Unexecuted instantiation: browscap.c:zend_string_addref Unexecuted instantiation: crc32_x86.c:zend_string_addref Unexecuted instantiation: crc32.c:zend_string_addref Unexecuted instantiation: credits.c:zend_string_addref Unexecuted instantiation: crypt.c:zend_string_addref Unexecuted instantiation: css.c:zend_string_addref Unexecuted instantiation: datetime.c:zend_string_addref Unexecuted instantiation: dir.c:zend_string_addref Unexecuted instantiation: dl.c:zend_string_addref Unexecuted instantiation: dns.c:zend_string_addref Unexecuted instantiation: exec.c:zend_string_addref Unexecuted instantiation: file.c:zend_string_addref Unexecuted instantiation: filestat.c:zend_string_addref Unexecuted instantiation: filters.c:zend_string_addref Unexecuted instantiation: flock_compat.c:zend_string_addref Unexecuted instantiation: formatted_print.c:zend_string_addref Unexecuted instantiation: fsock.c:zend_string_addref Unexecuted instantiation: ftok.c:zend_string_addref Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_addref Unexecuted instantiation: head.c:zend_string_addref Unexecuted instantiation: hrtime.c:zend_string_addref Unexecuted instantiation: html.c:zend_string_addref Unexecuted instantiation: http_fopen_wrapper.c:zend_string_addref Unexecuted instantiation: http.c:zend_string_addref Unexecuted instantiation: image.c:zend_string_addref Unexecuted instantiation: incomplete_class.c:zend_string_addref Unexecuted instantiation: info.c:zend_string_addref Unexecuted instantiation: iptc.c:zend_string_addref Unexecuted instantiation: levenshtein.c:zend_string_addref Unexecuted instantiation: link.c:zend_string_addref Unexecuted instantiation: mail.c:zend_string_addref Unexecuted instantiation: math.c:zend_string_addref Unexecuted instantiation: md5.c:zend_string_addref Unexecuted instantiation: metaphone.c:zend_string_addref Unexecuted instantiation: microtime.c:zend_string_addref Unexecuted instantiation: net.c:zend_string_addref Unexecuted instantiation: pack.c:zend_string_addref Unexecuted instantiation: pageinfo.c:zend_string_addref Unexecuted instantiation: password.c:zend_string_addref Unexecuted instantiation: php_fopen_wrapper.c:zend_string_addref Unexecuted instantiation: proc_open.c:zend_string_addref Unexecuted instantiation: quot_print.c:zend_string_addref Unexecuted instantiation: scanf.c:zend_string_addref Unexecuted instantiation: sha1.c:zend_string_addref Unexecuted instantiation: soundex.c:zend_string_addref Unexecuted instantiation: streamsfuncs.c:zend_string_addref Unexecuted instantiation: string.c:zend_string_addref Unexecuted instantiation: strnatcmp.c:zend_string_addref Unexecuted instantiation: syslog.c:zend_string_addref Unexecuted instantiation: type.c:zend_string_addref Unexecuted instantiation: uniqid.c:zend_string_addref Unexecuted instantiation: url_scanner_ex.c:zend_string_addref Unexecuted instantiation: url.c:zend_string_addref Unexecuted instantiation: user_filters.c:zend_string_addref Unexecuted instantiation: uuencode.c:zend_string_addref Unexecuted instantiation: var_unserializer.c:zend_string_addref Unexecuted instantiation: var.c:zend_string_addref Unexecuted instantiation: versioning.c:zend_string_addref Unexecuted instantiation: crypt_sha256.c:zend_string_addref Unexecuted instantiation: crypt_sha512.c:zend_string_addref Unexecuted instantiation: php_crypt_r.c:zend_string_addref Unexecuted instantiation: php_uri.c:zend_string_addref Unexecuted instantiation: php_uri_common.c:zend_string_addref Unexecuted instantiation: php_uriparser.c:zend_string_addref Unexecuted instantiation: explicit_bzero.c:zend_string_addref Unexecuted instantiation: fopen_wrappers.c:zend_string_addref Unexecuted instantiation: getopt.c:zend_string_addref Unexecuted instantiation: main.c:zend_string_addref Unexecuted instantiation: network.c:zend_string_addref output.c:zend_string_addref Line | Count | Source | 150 | 65.4k | { | 151 | 65.4k | if (!ZSTR_IS_INTERNED(s)) { | 152 | 4.78k | return GC_ADDREF(s); | 153 | 4.78k | } | 154 | 60.6k | return 1; | 155 | 65.4k | } |
Unexecuted instantiation: php_content_types.c:zend_string_addref Unexecuted instantiation: php_ini_builder.c:zend_string_addref Unexecuted instantiation: php_ini.c:zend_string_addref Unexecuted instantiation: php_glob.c:zend_string_addref Unexecuted instantiation: php_odbc_utils.c:zend_string_addref Unexecuted instantiation: php_open_temporary_file.c:zend_string_addref Unexecuted instantiation: php_scandir.c:zend_string_addref Unexecuted instantiation: php_syslog.c:zend_string_addref Unexecuted instantiation: php_ticks.c:zend_string_addref Unexecuted instantiation: php_variables.c:zend_string_addref Unexecuted instantiation: reentrancy.c:zend_string_addref Unexecuted instantiation: rfc1867.c:zend_string_addref Unexecuted instantiation: safe_bcmp.c:zend_string_addref Unexecuted instantiation: SAPI.c:zend_string_addref Unexecuted instantiation: snprintf.c:zend_string_addref Unexecuted instantiation: spprintf.c:zend_string_addref Unexecuted instantiation: strlcat.c:zend_string_addref Unexecuted instantiation: strlcpy.c:zend_string_addref Unexecuted instantiation: cast.c:zend_string_addref Unexecuted instantiation: filter.c:zend_string_addref Unexecuted instantiation: glob_wrapper.c:zend_string_addref Unexecuted instantiation: memory.c:zend_string_addref Unexecuted instantiation: mmap.c:zend_string_addref Unexecuted instantiation: plain_wrapper.c:zend_string_addref Unexecuted instantiation: streams.c:zend_string_addref Unexecuted instantiation: transports.c:zend_string_addref Unexecuted instantiation: userspace.c:zend_string_addref Unexecuted instantiation: xp_socket.c:zend_string_addref Unexecuted instantiation: block_pass.c:zend_string_addref Unexecuted instantiation: compact_literals.c:zend_string_addref Unexecuted instantiation: compact_vars.c:zend_string_addref Unexecuted instantiation: dce.c:zend_string_addref Unexecuted instantiation: dfa_pass.c:zend_string_addref Unexecuted instantiation: escape_analysis.c:zend_string_addref Unexecuted instantiation: nop_removal.c:zend_string_addref Unexecuted instantiation: optimize_func_calls.c:zend_string_addref Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_addref Unexecuted instantiation: pass1.c:zend_string_addref Unexecuted instantiation: pass3.c:zend_string_addref Unexecuted instantiation: sccp.c:zend_string_addref Unexecuted instantiation: scdf.c:zend_string_addref Unexecuted instantiation: zend_call_graph.c:zend_string_addref Unexecuted instantiation: zend_cfg.c:zend_string_addref Unexecuted instantiation: zend_dfg.c:zend_string_addref Unexecuted instantiation: zend_dump.c:zend_string_addref Unexecuted instantiation: zend_func_info.c:zend_string_addref Unexecuted instantiation: zend_inference.c:zend_string_addref Unexecuted instantiation: zend_optimizer.c:zend_string_addref Unexecuted instantiation: zend_ssa.c:zend_string_addref Unexecuted instantiation: zend_alloc.c:zend_string_addref zend_API.c:zend_string_addref Line | Count | Source | 150 | 8.87k | { | 151 | 8.87k | if (!ZSTR_IS_INTERNED(s)) { | 152 | 6.20k | return GC_ADDREF(s); | 153 | 6.20k | } | 154 | 2.66k | return 1; | 155 | 8.87k | } |
Unexecuted instantiation: zend_ast.c:zend_string_addref Unexecuted instantiation: zend_attributes.c:zend_string_addref Unexecuted instantiation: zend_builtin_functions.c:zend_string_addref Unexecuted instantiation: zend_call_stack.c:zend_string_addref zend_closures.c:zend_string_addref Line | Count | Source | 150 | 12.0k | { | 151 | 12.0k | if (!ZSTR_IS_INTERNED(s)) { | 152 | 90 | return GC_ADDREF(s); | 153 | 90 | } | 154 | 11.9k | return 1; | 155 | 12.0k | } |
zend_compile.c:zend_string_addref Line | Count | Source | 150 | 17.8k | { | 151 | 17.8k | if (!ZSTR_IS_INTERNED(s)) { | 152 | 2.67k | return GC_ADDREF(s); | 153 | 2.67k | } | 154 | 15.1k | return 1; | 155 | 17.8k | } |
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 | 150 | 12.3k | { | 151 | 12.3k | if (!ZSTR_IS_INTERNED(s)) { | 152 | 8.95k | return GC_ADDREF(s); | 153 | 8.95k | } | 154 | 3.40k | return 1; | 155 | 12.3k | } |
Unexecuted instantiation: zend_extensions.c:zend_string_addref Unexecuted instantiation: zend_fibers.c:zend_string_addref Unexecuted instantiation: zend_float.c:zend_string_addref Unexecuted instantiation: zend_gc.c:zend_string_addref Unexecuted instantiation: zend_gdb.c:zend_string_addref Unexecuted instantiation: zend_generators.c:zend_string_addref zend_hash.c:zend_string_addref Line | Count | Source | 150 | 1.25M | { | 151 | 1.25M | if (!ZSTR_IS_INTERNED(s)) { | 152 | 1.24M | return GC_ADDREF(s); | 153 | 1.24M | } | 154 | 1.58k | return 1; | 155 | 1.25M | } |
Unexecuted instantiation: zend_highlight.c:zend_string_addref Unexecuted instantiation: zend_hrtime.c:zend_string_addref zend_inheritance.c:zend_string_addref Line | Count | Source | 150 | 39.9k | { | 151 | 39.9k | if (!ZSTR_IS_INTERNED(s)) { | 152 | 3.14k | return GC_ADDREF(s); | 153 | 3.14k | } | 154 | 36.8k | return 1; | 155 | 39.9k | } |
Unexecuted instantiation: zend_ini_parser.c:zend_string_addref Unexecuted instantiation: zend_ini_scanner.c:zend_string_addref Unexecuted instantiation: zend_ini.c:zend_string_addref Unexecuted instantiation: zend_interfaces.c:zend_string_addref Unexecuted instantiation: zend_iterators.c:zend_string_addref Unexecuted instantiation: zend_language_parser.c:zend_string_addref Unexecuted instantiation: zend_language_scanner.c:zend_string_addref Unexecuted instantiation: zend_lazy_objects.c:zend_string_addref Unexecuted instantiation: zend_list.c:zend_string_addref Unexecuted instantiation: zend_llist.c:zend_string_addref Unexecuted instantiation: zend_multibyte.c:zend_string_addref zend_object_handlers.c:zend_string_addref Line | Count | Source | 150 | 10 | { | 151 | 10 | if (!ZSTR_IS_INTERNED(s)) { | 152 | 10 | return GC_ADDREF(s); | 153 | 10 | } | 154 | 0 | return 1; | 155 | 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 | 150 | 2.02k | { | 151 | 2.02k | if (!ZSTR_IS_INTERNED(s)) { | 152 | 1.79k | return GC_ADDREF(s); | 153 | 1.79k | } | 154 | 229 | return 1; | 155 | 2.02k | } |
Unexecuted instantiation: zend_property_hooks.c:zend_string_addref Unexecuted instantiation: zend_ptr_stack.c:zend_string_addref Unexecuted instantiation: zend_signal.c:zend_string_addref Unexecuted instantiation: zend_smart_str.c:zend_string_addref Unexecuted instantiation: zend_sort.c:zend_string_addref Unexecuted instantiation: zend_stack.c:zend_string_addref Unexecuted instantiation: zend_stream.c:zend_string_addref Unexecuted instantiation: zend_string.c:zend_string_addref Unexecuted instantiation: zend_strtod.c:zend_string_addref Unexecuted instantiation: zend_system_id.c:zend_string_addref Unexecuted instantiation: zend_variables.c:zend_string_addref Unexecuted instantiation: zend_virtual_cwd.c:zend_string_addref Unexecuted instantiation: zend_vm_opcodes.c:zend_string_addref Unexecuted instantiation: zend_weakrefs.c:zend_string_addref Unexecuted instantiation: zend.c:zend_string_addref Unexecuted instantiation: internal_functions_cli.c:zend_string_addref Unexecuted instantiation: fuzzer-parser.c:zend_string_addref Unexecuted instantiation: fuzzer-sapi.c:zend_string_addref Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_addref Unexecuted instantiation: fuzzer-exif.c:zend_string_addref Unexecuted instantiation: fuzzer-unserialize.c:zend_string_addref Unexecuted instantiation: fuzzer-function-jit.c:zend_string_addref Unexecuted instantiation: fuzzer-json.c:zend_string_addref Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_addref Unexecuted instantiation: fuzzer-execute.c:zend_string_addref |
156 | | |
157 | | static zend_always_inline uint32_t zend_string_delref(zend_string *s) |
158 | 147k | { |
159 | 147k | if (!ZSTR_IS_INTERNED(s)) { |
160 | 147k | return GC_DELREF(s); |
161 | 147k | } |
162 | 81 | return 1; |
163 | 147k | } 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: php_uriparser.c:zend_string_delref Unexecuted instantiation: explicit_bzero.c:zend_string_delref Unexecuted instantiation: fopen_wrappers.c:zend_string_delref Unexecuted instantiation: getopt.c:zend_string_delref Unexecuted instantiation: main.c:zend_string_delref Unexecuted instantiation: network.c:zend_string_delref Unexecuted instantiation: output.c:zend_string_delref Unexecuted instantiation: php_content_types.c:zend_string_delref Unexecuted instantiation: php_ini_builder.c:zend_string_delref Unexecuted instantiation: php_ini.c:zend_string_delref Unexecuted instantiation: php_glob.c:zend_string_delref Unexecuted instantiation: php_odbc_utils.c:zend_string_delref Unexecuted instantiation: php_open_temporary_file.c:zend_string_delref Unexecuted instantiation: php_scandir.c:zend_string_delref Unexecuted instantiation: php_syslog.c:zend_string_delref Unexecuted instantiation: php_ticks.c:zend_string_delref Unexecuted instantiation: php_variables.c:zend_string_delref Unexecuted instantiation: reentrancy.c:zend_string_delref Unexecuted instantiation: rfc1867.c:zend_string_delref Unexecuted instantiation: safe_bcmp.c:zend_string_delref Unexecuted instantiation: SAPI.c:zend_string_delref Unexecuted instantiation: snprintf.c:zend_string_delref Unexecuted instantiation: spprintf.c:zend_string_delref Unexecuted instantiation: strlcat.c:zend_string_delref Unexecuted instantiation: strlcpy.c:zend_string_delref Unexecuted instantiation: cast.c:zend_string_delref Unexecuted instantiation: filter.c:zend_string_delref Unexecuted instantiation: glob_wrapper.c:zend_string_delref Unexecuted instantiation: memory.c:zend_string_delref Unexecuted instantiation: mmap.c:zend_string_delref Unexecuted instantiation: plain_wrapper.c:zend_string_delref Unexecuted instantiation: streams.c:zend_string_delref Unexecuted instantiation: transports.c:zend_string_delref Unexecuted instantiation: userspace.c:zend_string_delref Unexecuted instantiation: xp_socket.c:zend_string_delref Unexecuted instantiation: block_pass.c:zend_string_delref Unexecuted instantiation: compact_literals.c:zend_string_delref Unexecuted instantiation: compact_vars.c:zend_string_delref Unexecuted instantiation: dce.c:zend_string_delref Unexecuted instantiation: dfa_pass.c:zend_string_delref Unexecuted instantiation: escape_analysis.c:zend_string_delref Unexecuted instantiation: nop_removal.c:zend_string_delref Unexecuted instantiation: optimize_func_calls.c:zend_string_delref Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_delref Unexecuted instantiation: pass1.c:zend_string_delref Unexecuted instantiation: pass3.c:zend_string_delref Unexecuted instantiation: sccp.c:zend_string_delref Unexecuted instantiation: scdf.c:zend_string_delref Unexecuted instantiation: zend_call_graph.c:zend_string_delref Unexecuted instantiation: zend_cfg.c:zend_string_delref Unexecuted instantiation: zend_dfg.c:zend_string_delref Unexecuted instantiation: zend_dump.c:zend_string_delref Unexecuted instantiation: zend_func_info.c:zend_string_delref Unexecuted instantiation: zend_inference.c:zend_string_delref Unexecuted instantiation: zend_optimizer.c:zend_string_delref Unexecuted instantiation: zend_ssa.c:zend_string_delref Unexecuted instantiation: zend_alloc.c:zend_string_delref Unexecuted instantiation: zend_API.c:zend_string_delref Unexecuted instantiation: zend_ast.c:zend_string_delref Unexecuted instantiation: zend_attributes.c:zend_string_delref Unexecuted instantiation: zend_builtin_functions.c:zend_string_delref Unexecuted instantiation: zend_call_stack.c:zend_string_delref Unexecuted instantiation: zend_closures.c:zend_string_delref Unexecuted instantiation: zend_compile.c:zend_string_delref Unexecuted instantiation: zend_constants.c:zend_string_delref Unexecuted instantiation: zend_cpuinfo.c:zend_string_delref Unexecuted instantiation: zend_default_classes.c:zend_string_delref Unexecuted instantiation: zend_dtrace.c:zend_string_delref Unexecuted instantiation: zend_enum.c:zend_string_delref Unexecuted instantiation: zend_exceptions.c:zend_string_delref Unexecuted instantiation: zend_execute_API.c:zend_string_delref Unexecuted instantiation: zend_execute.c:zend_string_delref Unexecuted instantiation: zend_extensions.c:zend_string_delref Unexecuted instantiation: zend_fibers.c:zend_string_delref Unexecuted instantiation: zend_float.c:zend_string_delref Unexecuted instantiation: zend_gc.c:zend_string_delref Unexecuted instantiation: zend_gdb.c:zend_string_delref Unexecuted instantiation: zend_generators.c:zend_string_delref zend_hash.c:zend_string_delref Line | Count | Source | 158 | 81 | { | 159 | 81 | if (!ZSTR_IS_INTERNED(s)) { | 160 | 0 | return GC_DELREF(s); | 161 | 0 | } | 162 | 81 | return 1; | 163 | 81 | } |
Unexecuted instantiation: zend_highlight.c:zend_string_delref Unexecuted instantiation: zend_hrtime.c:zend_string_delref Unexecuted instantiation: zend_inheritance.c:zend_string_delref Unexecuted instantiation: zend_ini_parser.c:zend_string_delref Unexecuted instantiation: zend_ini_scanner.c:zend_string_delref Unexecuted instantiation: zend_ini.c:zend_string_delref Unexecuted instantiation: zend_interfaces.c:zend_string_delref Unexecuted instantiation: zend_iterators.c:zend_string_delref Unexecuted instantiation: zend_language_parser.c:zend_string_delref Unexecuted instantiation: zend_language_scanner.c:zend_string_delref Unexecuted instantiation: zend_lazy_objects.c:zend_string_delref Unexecuted instantiation: zend_list.c:zend_string_delref Unexecuted instantiation: zend_llist.c:zend_string_delref Unexecuted instantiation: zend_multibyte.c:zend_string_delref Unexecuted instantiation: zend_object_handlers.c:zend_string_delref Unexecuted instantiation: zend_objects_API.c:zend_string_delref Unexecuted instantiation: zend_objects.c:zend_string_delref Unexecuted instantiation: zend_observer.c:zend_string_delref Unexecuted instantiation: zend_opcode.c:zend_string_delref Unexecuted instantiation: zend_operators.c:zend_string_delref Unexecuted instantiation: zend_property_hooks.c:zend_string_delref Unexecuted instantiation: zend_ptr_stack.c:zend_string_delref Unexecuted instantiation: zend_signal.c:zend_string_delref Unexecuted instantiation: zend_smart_str.c:zend_string_delref Unexecuted instantiation: zend_sort.c:zend_string_delref Unexecuted instantiation: zend_stack.c:zend_string_delref Unexecuted instantiation: zend_stream.c:zend_string_delref zend_string.c:zend_string_delref Line | Count | Source | 158 | 147k | { | 159 | 147k | if (!ZSTR_IS_INTERNED(s)) { | 160 | 147k | return GC_DELREF(s); | 161 | 147k | } | 162 | 0 | return 1; | 163 | 147k | } |
Unexecuted instantiation: zend_strtod.c:zend_string_delref Unexecuted instantiation: zend_system_id.c:zend_string_delref Unexecuted instantiation: zend_variables.c:zend_string_delref Unexecuted instantiation: zend_virtual_cwd.c:zend_string_delref Unexecuted instantiation: zend_vm_opcodes.c:zend_string_delref Unexecuted instantiation: zend_weakrefs.c:zend_string_delref Unexecuted instantiation: zend.c:zend_string_delref Unexecuted instantiation: internal_functions_cli.c:zend_string_delref Unexecuted instantiation: fuzzer-parser.c:zend_string_delref Unexecuted instantiation: fuzzer-sapi.c:zend_string_delref Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_delref Unexecuted instantiation: fuzzer-exif.c:zend_string_delref Unexecuted instantiation: fuzzer-unserialize.c:zend_string_delref Unexecuted instantiation: fuzzer-function-jit.c:zend_string_delref Unexecuted instantiation: fuzzer-json.c:zend_string_delref Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_delref Unexecuted instantiation: fuzzer-execute.c:zend_string_delref |
164 | | |
165 | | static zend_always_inline zend_string *zend_string_alloc(size_t len, bool persistent) |
166 | 28.2M | { |
167 | 28.2M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); |
168 | | |
169 | 28.2M | GC_SET_REFCOUNT(ret, 1); |
170 | 28.2M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); |
171 | 28.2M | ZSTR_H(ret) = 0; |
172 | 28.2M | ZSTR_LEN(ret) = len; |
173 | 28.2M | return ret; |
174 | 28.2M | } php_date.c:zend_string_alloc Line | Count | Source | 166 | 993 | { | 167 | 993 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 993 | GC_SET_REFCOUNT(ret, 1); | 170 | 993 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 993 | ZSTR_H(ret) = 0; | 172 | 993 | ZSTR_LEN(ret) = len; | 173 | 993 | return ret; | 174 | 993 | } |
Unexecuted instantiation: astro.c:zend_string_alloc Unexecuted instantiation: dow.c:zend_string_alloc Unexecuted instantiation: parse_date.c:zend_string_alloc Unexecuted instantiation: parse_tz.c:zend_string_alloc Unexecuted instantiation: parse_posix.c:zend_string_alloc Unexecuted instantiation: timelib.c:zend_string_alloc Unexecuted instantiation: tm2unixtime.c:zend_string_alloc Unexecuted instantiation: unixtime2tm.c:zend_string_alloc Unexecuted instantiation: parse_iso_intervals.c:zend_string_alloc Unexecuted instantiation: interval.c:zend_string_alloc php_pcre.c:zend_string_alloc Line | Count | Source | 166 | 634 | { | 167 | 634 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 634 | GC_SET_REFCOUNT(ret, 1); | 170 | 634 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 634 | ZSTR_H(ret) = 0; | 172 | 634 | ZSTR_LEN(ret) = len; | 173 | 634 | return ret; | 174 | 634 | } |
Unexecuted instantiation: exif.c:zend_string_alloc Unexecuted instantiation: hash_adler32.c:zend_string_alloc Unexecuted instantiation: hash_crc32.c:zend_string_alloc Unexecuted instantiation: hash_fnv.c:zend_string_alloc Unexecuted instantiation: hash_gost.c:zend_string_alloc Unexecuted instantiation: hash_haval.c:zend_string_alloc Unexecuted instantiation: hash_joaat.c:zend_string_alloc Unexecuted instantiation: hash_md.c:zend_string_alloc Unexecuted instantiation: hash_murmur.c:zend_string_alloc Unexecuted instantiation: hash_ripemd.c:zend_string_alloc Unexecuted instantiation: hash_sha_ni.c:zend_string_alloc Unexecuted instantiation: hash_sha_sse2.c:zend_string_alloc Unexecuted instantiation: hash_sha.c:zend_string_alloc Unexecuted instantiation: hash_sha3.c:zend_string_alloc Unexecuted instantiation: hash_snefru.c:zend_string_alloc Unexecuted instantiation: hash_tiger.c:zend_string_alloc Unexecuted instantiation: hash_whirlpool.c:zend_string_alloc Unexecuted instantiation: hash_xxhash.c:zend_string_alloc Line | Count | Source | 166 | 1.87k | { | 167 | 1.87k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 1.87k | GC_SET_REFCOUNT(ret, 1); | 170 | 1.87k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 1.87k | ZSTR_H(ret) = 0; | 172 | 1.87k | ZSTR_LEN(ret) = len; | 173 | 1.87k | return ret; | 174 | 1.87k | } |
Unexecuted instantiation: json_encoder.c:zend_string_alloc Unexecuted instantiation: json_parser.tab.c:zend_string_alloc json_scanner.c:zend_string_alloc Line | Count | Source | 166 | 39.0k | { | 167 | 39.0k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 39.0k | GC_SET_REFCOUNT(ret, 1); | 170 | 39.0k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 39.0k | ZSTR_H(ret) = 0; | 172 | 39.0k | ZSTR_LEN(ret) = len; | 173 | 39.0k | return ret; | 174 | 39.0k | } |
Line | Count | Source | 166 | 275 | { | 167 | 275 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 275 | GC_SET_REFCOUNT(ret, 1); | 170 | 275 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 275 | ZSTR_H(ret) = 0; | 172 | 275 | ZSTR_LEN(ret) = len; | 173 | 275 | return ret; | 174 | 275 | } |
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 | 166 | 64 | { | 167 | 64 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 64 | GC_SET_REFCOUNT(ret, 1); | 170 | 64 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 64 | ZSTR_H(ret) = 0; | 172 | 64 | ZSTR_LEN(ret) = len; | 173 | 64 | return ret; | 174 | 64 | } |
Unexecuted instantiation: randomizer.c:zend_string_alloc Unexecuted instantiation: zend_utils.c:zend_string_alloc php_reflection.c:zend_string_alloc Line | Count | Source | 166 | 342 | { | 167 | 342 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 342 | GC_SET_REFCOUNT(ret, 1); | 170 | 342 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 342 | ZSTR_H(ret) = 0; | 172 | 342 | ZSTR_LEN(ret) = len; | 173 | 342 | return ret; | 174 | 342 | } |
Unexecuted instantiation: php_spl.c:zend_string_alloc Unexecuted instantiation: spl_array.c:zend_string_alloc spl_directory.c:zend_string_alloc Line | Count | Source | 166 | 15 | { | 167 | 15 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 15 | GC_SET_REFCOUNT(ret, 1); | 170 | 15 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 15 | ZSTR_H(ret) = 0; | 172 | 15 | ZSTR_LEN(ret) = len; | 173 | 15 | return ret; | 174 | 15 | } |
Unexecuted instantiation: spl_dllist.c:zend_string_alloc Unexecuted instantiation: spl_exceptions.c:zend_string_alloc spl_fixedarray.c:zend_string_alloc Line | Count | Source | 166 | 16 | { | 167 | 16 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 16 | GC_SET_REFCOUNT(ret, 1); | 170 | 16 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 16 | ZSTR_H(ret) = 0; | 172 | 16 | ZSTR_LEN(ret) = len; | 173 | 16 | return ret; | 174 | 16 | } |
Unexecuted instantiation: spl_functions.c:zend_string_alloc Unexecuted instantiation: spl_heap.c:zend_string_alloc spl_iterators.c:zend_string_alloc Line | Count | Source | 166 | 4.04k | { | 167 | 4.04k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 4.04k | GC_SET_REFCOUNT(ret, 1); | 170 | 4.04k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 4.04k | ZSTR_H(ret) = 0; | 172 | 4.04k | ZSTR_LEN(ret) = len; | 173 | 4.04k | return ret; | 174 | 4.04k | } |
Unexecuted instantiation: spl_observer.c:zend_string_alloc Unexecuted instantiation: array.c:zend_string_alloc assert.c:zend_string_alloc Line | Count | Source | 166 | 37 | { | 167 | 37 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 37 | GC_SET_REFCOUNT(ret, 1); | 170 | 37 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 37 | ZSTR_H(ret) = 0; | 172 | 37 | ZSTR_LEN(ret) = len; | 173 | 37 | return ret; | 174 | 37 | } |
Unexecuted instantiation: base64.c:zend_string_alloc basic_functions.c:zend_string_alloc Line | Count | Source | 166 | 174 | { | 167 | 174 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 174 | GC_SET_REFCOUNT(ret, 1); | 170 | 174 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 174 | ZSTR_H(ret) = 0; | 172 | 174 | ZSTR_LEN(ret) = len; | 173 | 174 | return ret; | 174 | 174 | } |
Unexecuted instantiation: browscap.c:zend_string_alloc Unexecuted instantiation: crc32_x86.c:zend_string_alloc Unexecuted instantiation: crc32.c:zend_string_alloc Unexecuted instantiation: credits.c:zend_string_alloc Unexecuted instantiation: crypt.c:zend_string_alloc Unexecuted instantiation: css.c:zend_string_alloc Unexecuted instantiation: datetime.c:zend_string_alloc Line | Count | Source | 166 | 21 | { | 167 | 21 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 21 | GC_SET_REFCOUNT(ret, 1); | 170 | 21 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 21 | ZSTR_H(ret) = 0; | 172 | 21 | ZSTR_LEN(ret) = len; | 173 | 21 | return ret; | 174 | 21 | } |
Unexecuted instantiation: dl.c:zend_string_alloc Unexecuted instantiation: dns.c:zend_string_alloc Unexecuted instantiation: exec.c:zend_string_alloc Line | Count | Source | 166 | 8.62k | { | 167 | 8.62k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 8.62k | GC_SET_REFCOUNT(ret, 1); | 170 | 8.62k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 8.62k | ZSTR_H(ret) = 0; | 172 | 8.62k | ZSTR_LEN(ret) = len; | 173 | 8.62k | return ret; | 174 | 8.62k | } |
Unexecuted instantiation: filestat.c:zend_string_alloc Unexecuted instantiation: filters.c:zend_string_alloc Unexecuted instantiation: flock_compat.c:zend_string_alloc formatted_print.c:zend_string_alloc Line | Count | Source | 166 | 3.93k | { | 167 | 3.93k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 3.93k | GC_SET_REFCOUNT(ret, 1); | 170 | 3.93k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 3.93k | ZSTR_H(ret) = 0; | 172 | 3.93k | ZSTR_LEN(ret) = len; | 173 | 3.93k | return ret; | 174 | 3.93k | } |
Unexecuted instantiation: fsock.c:zend_string_alloc Unexecuted instantiation: ftok.c:zend_string_alloc Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_alloc Line | Count | Source | 166 | 5 | { | 167 | 5 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 5 | GC_SET_REFCOUNT(ret, 1); | 170 | 5 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 5 | ZSTR_H(ret) = 0; | 172 | 5 | ZSTR_LEN(ret) = len; | 173 | 5 | return ret; | 174 | 5 | } |
Unexecuted instantiation: hrtime.c:zend_string_alloc Line | Count | Source | 166 | 1.98k | { | 167 | 1.98k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 1.98k | GC_SET_REFCOUNT(ret, 1); | 170 | 1.98k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 1.98k | ZSTR_H(ret) = 0; | 172 | 1.98k | ZSTR_LEN(ret) = len; | 173 | 1.98k | return ret; | 174 | 1.98k | } |
Unexecuted instantiation: http_fopen_wrapper.c:zend_string_alloc Unexecuted instantiation: http.c:zend_string_alloc Unexecuted instantiation: image.c:zend_string_alloc Unexecuted instantiation: incomplete_class.c:zend_string_alloc Line | Count | Source | 166 | 86 | { | 167 | 86 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 86 | GC_SET_REFCOUNT(ret, 1); | 170 | 86 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 86 | ZSTR_H(ret) = 0; | 172 | 86 | ZSTR_LEN(ret) = len; | 173 | 86 | return ret; | 174 | 86 | } |
Unexecuted instantiation: iptc.c:zend_string_alloc Unexecuted instantiation: levenshtein.c:zend_string_alloc Unexecuted instantiation: link.c:zend_string_alloc Unexecuted instantiation: mail.c:zend_string_alloc Line | Count | Source | 166 | 14 | { | 167 | 14 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 14 | GC_SET_REFCOUNT(ret, 1); | 170 | 14 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 14 | ZSTR_H(ret) = 0; | 172 | 14 | ZSTR_LEN(ret) = len; | 173 | 14 | return ret; | 174 | 14 | } |
Line | Count | Source | 166 | 356 | { | 167 | 356 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 356 | GC_SET_REFCOUNT(ret, 1); | 170 | 356 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 356 | ZSTR_H(ret) = 0; | 172 | 356 | ZSTR_LEN(ret) = len; | 173 | 356 | return ret; | 174 | 356 | } |
Unexecuted instantiation: metaphone.c:zend_string_alloc Unexecuted instantiation: microtime.c:zend_string_alloc Unexecuted instantiation: net.c:zend_string_alloc Unexecuted instantiation: pack.c:zend_string_alloc Unexecuted instantiation: pageinfo.c:zend_string_alloc Unexecuted instantiation: password.c:zend_string_alloc Unexecuted instantiation: php_fopen_wrapper.c:zend_string_alloc Unexecuted instantiation: proc_open.c:zend_string_alloc Unexecuted instantiation: quot_print.c:zend_string_alloc Unexecuted instantiation: scanf.c:zend_string_alloc Unexecuted instantiation: sha1.c:zend_string_alloc Unexecuted instantiation: soundex.c:zend_string_alloc Unexecuted instantiation: streamsfuncs.c:zend_string_alloc string.c:zend_string_alloc Line | Count | Source | 166 | 4.06k | { | 167 | 4.06k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 4.06k | GC_SET_REFCOUNT(ret, 1); | 170 | 4.06k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 4.06k | ZSTR_H(ret) = 0; | 172 | 4.06k | ZSTR_LEN(ret) = len; | 173 | 4.06k | return ret; | 174 | 4.06k | } |
Unexecuted instantiation: strnatcmp.c:zend_string_alloc Unexecuted instantiation: syslog.c:zend_string_alloc Unexecuted instantiation: type.c:zend_string_alloc Unexecuted instantiation: uniqid.c:zend_string_alloc url_scanner_ex.c:zend_string_alloc Line | Count | Source | 166 | 80 | { | 167 | 80 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 80 | GC_SET_REFCOUNT(ret, 1); | 170 | 80 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 80 | ZSTR_H(ret) = 0; | 172 | 80 | ZSTR_LEN(ret) = len; | 173 | 80 | return ret; | 174 | 80 | } |
Unexecuted instantiation: url.c:zend_string_alloc user_filters.c:zend_string_alloc Line | Count | Source | 166 | 172 | { | 167 | 172 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 172 | GC_SET_REFCOUNT(ret, 1); | 170 | 172 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 172 | ZSTR_H(ret) = 0; | 172 | 172 | ZSTR_LEN(ret) = len; | 173 | 172 | return ret; | 174 | 172 | } |
Unexecuted instantiation: uuencode.c:zend_string_alloc var_unserializer.c:zend_string_alloc Line | Count | Source | 166 | 105k | { | 167 | 105k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 105k | GC_SET_REFCOUNT(ret, 1); | 170 | 105k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 105k | ZSTR_H(ret) = 0; | 172 | 105k | ZSTR_LEN(ret) = len; | 173 | 105k | return ret; | 174 | 105k | } |
Line | Count | Source | 166 | 319 | { | 167 | 319 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 319 | GC_SET_REFCOUNT(ret, 1); | 170 | 319 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 319 | ZSTR_H(ret) = 0; | 172 | 319 | ZSTR_LEN(ret) = len; | 173 | 319 | return ret; | 174 | 319 | } |
Unexecuted instantiation: versioning.c:zend_string_alloc Unexecuted instantiation: crypt_sha256.c:zend_string_alloc Unexecuted instantiation: crypt_sha512.c:zend_string_alloc Unexecuted instantiation: php_crypt_r.c:zend_string_alloc php_uri.c:zend_string_alloc Line | Count | Source | 166 | 64 | { | 167 | 64 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 64 | GC_SET_REFCOUNT(ret, 1); | 170 | 64 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 64 | ZSTR_H(ret) = 0; | 172 | 64 | ZSTR_LEN(ret) = len; | 173 | 64 | return ret; | 174 | 64 | } |
Unexecuted instantiation: php_uri_common.c:zend_string_alloc Unexecuted instantiation: php_uriparser.c:zend_string_alloc Unexecuted instantiation: explicit_bzero.c:zend_string_alloc fopen_wrappers.c:zend_string_alloc Line | Count | Source | 166 | 86.0k | { | 167 | 86.0k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 86.0k | GC_SET_REFCOUNT(ret, 1); | 170 | 86.0k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 86.0k | ZSTR_H(ret) = 0; | 172 | 86.0k | ZSTR_LEN(ret) = len; | 173 | 86.0k | return ret; | 174 | 86.0k | } |
Unexecuted instantiation: getopt.c:zend_string_alloc Line | Count | Source | 166 | 5 | { | 167 | 5 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 5 | GC_SET_REFCOUNT(ret, 1); | 170 | 5 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 5 | ZSTR_H(ret) = 0; | 172 | 5 | ZSTR_LEN(ret) = len; | 173 | 5 | return ret; | 174 | 5 | } |
Unexecuted instantiation: network.c:zend_string_alloc output.c:zend_string_alloc Line | Count | Source | 166 | 4.69k | { | 167 | 4.69k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 4.69k | GC_SET_REFCOUNT(ret, 1); | 170 | 4.69k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 4.69k | ZSTR_H(ret) = 0; | 172 | 4.69k | ZSTR_LEN(ret) = len; | 173 | 4.69k | return ret; | 174 | 4.69k | } |
Unexecuted instantiation: php_content_types.c:zend_string_alloc Unexecuted instantiation: php_ini_builder.c:zend_string_alloc php_ini.c:zend_string_alloc Line | Count | Source | 166 | 224 | { | 167 | 224 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 224 | GC_SET_REFCOUNT(ret, 1); | 170 | 224 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 224 | ZSTR_H(ret) = 0; | 172 | 224 | ZSTR_LEN(ret) = len; | 173 | 224 | return ret; | 174 | 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 | 166 | 164k | { | 167 | 164k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 164k | GC_SET_REFCOUNT(ret, 1); | 170 | 164k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 164k | ZSTR_H(ret) = 0; | 172 | 164k | ZSTR_LEN(ret) = len; | 173 | 164k | return ret; | 174 | 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 | 166 | 32 | { | 167 | 32 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 32 | GC_SET_REFCOUNT(ret, 1); | 170 | 32 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 32 | ZSTR_H(ret) = 0; | 172 | 32 | ZSTR_LEN(ret) = len; | 173 | 32 | return ret; | 174 | 32 | } |
Unexecuted instantiation: snprintf.c:zend_string_alloc Unexecuted instantiation: spprintf.c:zend_string_alloc Unexecuted instantiation: strlcat.c:zend_string_alloc Unexecuted instantiation: strlcpy.c:zend_string_alloc Unexecuted instantiation: cast.c:zend_string_alloc Unexecuted instantiation: filter.c:zend_string_alloc Unexecuted instantiation: glob_wrapper.c:zend_string_alloc memory.c:zend_string_alloc Line | Count | Source | 166 | 5.80k | { | 167 | 5.80k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 5.80k | GC_SET_REFCOUNT(ret, 1); | 170 | 5.80k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 5.80k | ZSTR_H(ret) = 0; | 172 | 5.80k | ZSTR_LEN(ret) = len; | 173 | 5.80k | return ret; | 174 | 5.80k | } |
Unexecuted instantiation: mmap.c:zend_string_alloc plain_wrapper.c:zend_string_alloc Line | Count | Source | 166 | 50 | { | 167 | 50 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 50 | GC_SET_REFCOUNT(ret, 1); | 170 | 50 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 50 | ZSTR_H(ret) = 0; | 172 | 50 | ZSTR_LEN(ret) = len; | 173 | 50 | return ret; | 174 | 50 | } |
streams.c:zend_string_alloc Line | Count | Source | 166 | 5 | { | 167 | 5 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 5 | GC_SET_REFCOUNT(ret, 1); | 170 | 5 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 5 | ZSTR_H(ret) = 0; | 172 | 5 | ZSTR_LEN(ret) = len; | 173 | 5 | return ret; | 174 | 5 | } |
Unexecuted instantiation: transports.c:zend_string_alloc userspace.c:zend_string_alloc Line | Count | Source | 166 | 813 | { | 167 | 813 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 813 | GC_SET_REFCOUNT(ret, 1); | 170 | 813 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 813 | ZSTR_H(ret) = 0; | 172 | 813 | ZSTR_LEN(ret) = len; | 173 | 813 | return ret; | 174 | 813 | } |
Unexecuted instantiation: xp_socket.c:zend_string_alloc block_pass.c:zend_string_alloc Line | Count | Source | 166 | 2.55k | { | 167 | 2.55k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 2.55k | GC_SET_REFCOUNT(ret, 1); | 170 | 2.55k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 2.55k | ZSTR_H(ret) = 0; | 172 | 2.55k | ZSTR_LEN(ret) = len; | 173 | 2.55k | return ret; | 174 | 2.55k | } |
compact_literals.c:zend_string_alloc Line | Count | Source | 166 | 9.47k | { | 167 | 9.47k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 9.47k | GC_SET_REFCOUNT(ret, 1); | 170 | 9.47k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 9.47k | ZSTR_H(ret) = 0; | 172 | 9.47k | ZSTR_LEN(ret) = len; | 173 | 9.47k | return ret; | 174 | 9.47k | } |
Unexecuted instantiation: compact_vars.c:zend_string_alloc Unexecuted instantiation: dce.c:zend_string_alloc Unexecuted instantiation: dfa_pass.c:zend_string_alloc Unexecuted instantiation: escape_analysis.c:zend_string_alloc Unexecuted instantiation: nop_removal.c:zend_string_alloc Unexecuted instantiation: optimize_func_calls.c:zend_string_alloc Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_alloc Unexecuted instantiation: pass1.c:zend_string_alloc Unexecuted instantiation: pass3.c:zend_string_alloc Line | Count | Source | 166 | 34 | { | 167 | 34 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 34 | GC_SET_REFCOUNT(ret, 1); | 170 | 34 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 34 | ZSTR_H(ret) = 0; | 172 | 34 | ZSTR_LEN(ret) = len; | 173 | 34 | return ret; | 174 | 34 | } |
Unexecuted instantiation: scdf.c:zend_string_alloc Unexecuted instantiation: zend_call_graph.c:zend_string_alloc Unexecuted instantiation: zend_cfg.c:zend_string_alloc Unexecuted instantiation: zend_dfg.c:zend_string_alloc Unexecuted instantiation: zend_dump.c:zend_string_alloc Unexecuted instantiation: zend_func_info.c:zend_string_alloc Unexecuted instantiation: zend_inference.c:zend_string_alloc zend_optimizer.c:zend_string_alloc Line | Count | Source | 166 | 6 | { | 167 | 6 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 6 | GC_SET_REFCOUNT(ret, 1); | 170 | 6 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 6 | ZSTR_H(ret) = 0; | 172 | 6 | ZSTR_LEN(ret) = len; | 173 | 6 | return ret; | 174 | 6 | } |
Unexecuted instantiation: zend_ssa.c:zend_string_alloc Unexecuted instantiation: zend_alloc.c:zend_string_alloc zend_API.c:zend_string_alloc Line | Count | Source | 166 | 388k | { | 167 | 388k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 388k | GC_SET_REFCOUNT(ret, 1); | 170 | 388k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 388k | ZSTR_H(ret) = 0; | 172 | 388k | ZSTR_LEN(ret) = len; | 173 | 388k | return ret; | 174 | 388k | } |
Unexecuted instantiation: zend_ast.c:zend_string_alloc zend_attributes.c:zend_string_alloc Line | Count | Source | 166 | 16 | { | 167 | 16 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 16 | GC_SET_REFCOUNT(ret, 1); | 170 | 16 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 16 | ZSTR_H(ret) = 0; | 172 | 16 | ZSTR_LEN(ret) = len; | 173 | 16 | return ret; | 174 | 16 | } |
zend_builtin_functions.c:zend_string_alloc Line | Count | Source | 166 | 343 | { | 167 | 343 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 343 | GC_SET_REFCOUNT(ret, 1); | 170 | 343 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 343 | ZSTR_H(ret) = 0; | 172 | 343 | ZSTR_LEN(ret) = len; | 173 | 343 | return ret; | 174 | 343 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_alloc Unexecuted instantiation: zend_closures.c:zend_string_alloc zend_compile.c:zend_string_alloc Line | Count | Source | 166 | 1.43M | { | 167 | 1.43M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 1.43M | GC_SET_REFCOUNT(ret, 1); | 170 | 1.43M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 1.43M | ZSTR_H(ret) = 0; | 172 | 1.43M | ZSTR_LEN(ret) = len; | 173 | 1.43M | return ret; | 174 | 1.43M | } |
zend_constants.c:zend_string_alloc Line | Count | Source | 166 | 546 | { | 167 | 546 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 546 | GC_SET_REFCOUNT(ret, 1); | 170 | 546 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 546 | ZSTR_H(ret) = 0; | 172 | 546 | ZSTR_LEN(ret) = len; | 173 | 546 | return ret; | 174 | 546 | } |
Unexecuted instantiation: zend_cpuinfo.c:zend_string_alloc Unexecuted instantiation: zend_default_classes.c:zend_string_alloc Unexecuted instantiation: zend_dtrace.c:zend_string_alloc zend_enum.c:zend_string_alloc Line | Count | Source | 166 | 5.56k | { | 167 | 5.56k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 5.56k | GC_SET_REFCOUNT(ret, 1); | 170 | 5.56k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 5.56k | ZSTR_H(ret) = 0; | 172 | 5.56k | ZSTR_LEN(ret) = len; | 173 | 5.56k | return ret; | 174 | 5.56k | } |
zend_exceptions.c:zend_string_alloc Line | Count | Source | 166 | 1.53M | { | 167 | 1.53M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 1.53M | GC_SET_REFCOUNT(ret, 1); | 170 | 1.53M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 1.53M | ZSTR_H(ret) = 0; | 172 | 1.53M | ZSTR_LEN(ret) = len; | 173 | 1.53M | return ret; | 174 | 1.53M | } |
zend_execute_API.c:zend_string_alloc Line | Count | Source | 166 | 134 | { | 167 | 134 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 134 | GC_SET_REFCOUNT(ret, 1); | 170 | 134 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 134 | ZSTR_H(ret) = 0; | 172 | 134 | ZSTR_LEN(ret) = len; | 173 | 134 | return ret; | 174 | 134 | } |
zend_execute.c:zend_string_alloc Line | Count | Source | 166 | 746k | { | 167 | 746k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 746k | GC_SET_REFCOUNT(ret, 1); | 170 | 746k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 746k | ZSTR_H(ret) = 0; | 172 | 746k | ZSTR_LEN(ret) = len; | 173 | 746k | return ret; | 174 | 746k | } |
Unexecuted instantiation: zend_extensions.c:zend_string_alloc Unexecuted instantiation: zend_fibers.c:zend_string_alloc Unexecuted instantiation: zend_float.c:zend_string_alloc Unexecuted instantiation: zend_gc.c:zend_string_alloc Unexecuted instantiation: zend_gdb.c:zend_string_alloc Unexecuted instantiation: zend_generators.c:zend_string_alloc zend_hash.c:zend_string_alloc Line | Count | Source | 166 | 273k | { | 167 | 273k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 273k | GC_SET_REFCOUNT(ret, 1); | 170 | 273k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 273k | ZSTR_H(ret) = 0; | 172 | 273k | ZSTR_LEN(ret) = len; | 173 | 273k | return ret; | 174 | 273k | } |
Unexecuted instantiation: zend_highlight.c:zend_string_alloc Unexecuted instantiation: zend_hrtime.c:zend_string_alloc Unexecuted instantiation: zend_inheritance.c:zend_string_alloc zend_ini_parser.c:zend_string_alloc Line | Count | Source | 166 | 345k | { | 167 | 345k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 345k | GC_SET_REFCOUNT(ret, 1); | 170 | 345k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 345k | ZSTR_H(ret) = 0; | 172 | 345k | ZSTR_LEN(ret) = len; | 173 | 345k | return ret; | 174 | 345k | } |
zend_ini_scanner.c:zend_string_alloc Line | Count | Source | 166 | 1.32M | { | 167 | 1.32M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 1.32M | GC_SET_REFCOUNT(ret, 1); | 170 | 1.32M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 1.32M | ZSTR_H(ret) = 0; | 172 | 1.32M | ZSTR_LEN(ret) = len; | 173 | 1.32M | return ret; | 174 | 1.32M | } |
zend_ini.c:zend_string_alloc Line | Count | Source | 166 | 86.1k | { | 167 | 86.1k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 86.1k | GC_SET_REFCOUNT(ret, 1); | 170 | 86.1k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 86.1k | ZSTR_H(ret) = 0; | 172 | 86.1k | ZSTR_LEN(ret) = len; | 173 | 86.1k | return ret; | 174 | 86.1k | } |
zend_interfaces.c:zend_string_alloc Line | Count | Source | 166 | 185k | { | 167 | 185k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 185k | GC_SET_REFCOUNT(ret, 1); | 170 | 185k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 185k | ZSTR_H(ret) = 0; | 172 | 185k | ZSTR_LEN(ret) = len; | 173 | 185k | return ret; | 174 | 185k | } |
Unexecuted instantiation: zend_iterators.c:zend_string_alloc Unexecuted instantiation: zend_language_parser.c:zend_string_alloc zend_language_scanner.c:zend_string_alloc Line | Count | Source | 166 | 10.9M | { | 167 | 10.9M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 10.9M | GC_SET_REFCOUNT(ret, 1); | 170 | 10.9M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 10.9M | ZSTR_H(ret) = 0; | 172 | 10.9M | ZSTR_LEN(ret) = len; | 173 | 10.9M | return ret; | 174 | 10.9M | } |
Unexecuted instantiation: zend_lazy_objects.c:zend_string_alloc Unexecuted instantiation: zend_list.c:zend_string_alloc Unexecuted instantiation: zend_llist.c:zend_string_alloc Unexecuted instantiation: zend_multibyte.c:zend_string_alloc zend_object_handlers.c:zend_string_alloc Line | Count | Source | 166 | 792 | { | 167 | 792 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 792 | GC_SET_REFCOUNT(ret, 1); | 170 | 792 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 792 | ZSTR_H(ret) = 0; | 172 | 792 | ZSTR_LEN(ret) = len; | 173 | 792 | return ret; | 174 | 792 | } |
Unexecuted instantiation: zend_objects_API.c:zend_string_alloc Unexecuted instantiation: zend_objects.c:zend_string_alloc Unexecuted instantiation: zend_observer.c:zend_string_alloc Unexecuted instantiation: zend_opcode.c:zend_string_alloc zend_operators.c:zend_string_alloc Line | Count | Source | 166 | 3.82M | { | 167 | 3.82M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 3.82M | GC_SET_REFCOUNT(ret, 1); | 170 | 3.82M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 3.82M | ZSTR_H(ret) = 0; | 172 | 3.82M | ZSTR_LEN(ret) = len; | 173 | 3.82M | return ret; | 174 | 3.82M | } |
zend_property_hooks.c:zend_string_alloc Line | Count | Source | 166 | 88 | { | 167 | 88 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 88 | GC_SET_REFCOUNT(ret, 1); | 170 | 88 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 88 | ZSTR_H(ret) = 0; | 172 | 88 | ZSTR_LEN(ret) = len; | 173 | 88 | return ret; | 174 | 88 | } |
Unexecuted instantiation: zend_ptr_stack.c:zend_string_alloc Unexecuted instantiation: zend_signal.c:zend_string_alloc zend_smart_str.c:zend_string_alloc Line | Count | Source | 166 | 4.32M | { | 167 | 4.32M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 4.32M | GC_SET_REFCOUNT(ret, 1); | 170 | 4.32M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 4.32M | ZSTR_H(ret) = 0; | 172 | 4.32M | ZSTR_LEN(ret) = len; | 173 | 4.32M | return ret; | 174 | 4.32M | } |
Unexecuted instantiation: zend_sort.c:zend_string_alloc Unexecuted instantiation: zend_stack.c:zend_string_alloc zend_stream.c:zend_string_alloc Line | Count | Source | 166 | 156k | { | 167 | 156k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 156k | GC_SET_REFCOUNT(ret, 1); | 170 | 156k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 156k | ZSTR_H(ret) = 0; | 172 | 156k | ZSTR_LEN(ret) = len; | 173 | 156k | return ret; | 174 | 156k | } |
zend_string.c:zend_string_alloc Line | Count | Source | 166 | 2.05M | { | 167 | 2.05M | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 2.05M | GC_SET_REFCOUNT(ret, 1); | 170 | 2.05M | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 2.05M | ZSTR_H(ret) = 0; | 172 | 2.05M | ZSTR_LEN(ret) = len; | 173 | 2.05M | return ret; | 174 | 2.05M | } |
Unexecuted instantiation: zend_strtod.c:zend_string_alloc Unexecuted instantiation: zend_system_id.c:zend_string_alloc zend_variables.c:zend_string_alloc Line | Count | Source | 166 | 107 | { | 167 | 107 | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 107 | GC_SET_REFCOUNT(ret, 1); | 170 | 107 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 107 | ZSTR_H(ret) = 0; | 172 | 107 | ZSTR_LEN(ret) = len; | 173 | 107 | return ret; | 174 | 107 | } |
Unexecuted instantiation: zend_virtual_cwd.c:zend_string_alloc Unexecuted instantiation: zend_vm_opcodes.c:zend_string_alloc Unexecuted instantiation: zend_weakrefs.c:zend_string_alloc Unexecuted instantiation: zend.c:zend_string_alloc Unexecuted instantiation: internal_functions_cli.c:zend_string_alloc Unexecuted instantiation: fuzzer-parser.c:zend_string_alloc Unexecuted instantiation: fuzzer-sapi.c:zend_string_alloc fuzzer-tracing-jit.c:zend_string_alloc Line | Count | Source | 166 | 67.2k | { | 167 | 67.2k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 67.2k | GC_SET_REFCOUNT(ret, 1); | 170 | 67.2k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 67.2k | ZSTR_H(ret) = 0; | 172 | 67.2k | ZSTR_LEN(ret) = len; | 173 | 67.2k | return ret; | 174 | 67.2k | } |
Unexecuted instantiation: fuzzer-exif.c:zend_string_alloc Unexecuted instantiation: fuzzer-unserialize.c:zend_string_alloc fuzzer-function-jit.c:zend_string_alloc Line | Count | Source | 166 | 68.6k | { | 167 | 68.6k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 68.6k | GC_SET_REFCOUNT(ret, 1); | 170 | 68.6k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 68.6k | ZSTR_H(ret) = 0; | 172 | 68.6k | ZSTR_LEN(ret) = len; | 173 | 68.6k | return ret; | 174 | 68.6k | } |
Unexecuted instantiation: fuzzer-json.c:zend_string_alloc fuzzer-unserializehash.c:zend_string_alloc Line | Count | Source | 166 | 2.45k | { | 167 | 2.45k | zend_string *ret = (zend_string *)pemalloc(ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 168 | | | 169 | 2.45k | GC_SET_REFCOUNT(ret, 1); | 170 | 2.45k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 171 | 2.45k | ZSTR_H(ret) = 0; | 172 | 2.45k | ZSTR_LEN(ret) = len; | 173 | 2.45k | return ret; | 174 | 2.45k | } |
Unexecuted instantiation: fuzzer-execute.c:zend_string_alloc |
175 | | |
176 | | static zend_always_inline zend_string *zend_string_safe_alloc(size_t n, size_t m, size_t l, bool persistent) |
177 | 270k | { |
178 | 270k | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); |
179 | | |
180 | 270k | GC_SET_REFCOUNT(ret, 1); |
181 | 270k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); |
182 | 270k | ZSTR_H(ret) = 0; |
183 | 270k | ZSTR_LEN(ret) = (n * m) + l; |
184 | 270k | return ret; |
185 | 270k | } Unexecuted instantiation: php_date.c:zend_string_safe_alloc Unexecuted instantiation: astro.c:zend_string_safe_alloc Unexecuted instantiation: dow.c:zend_string_safe_alloc Unexecuted instantiation: parse_date.c:zend_string_safe_alloc Unexecuted instantiation: parse_tz.c:zend_string_safe_alloc Unexecuted instantiation: parse_posix.c:zend_string_safe_alloc Unexecuted instantiation: timelib.c:zend_string_safe_alloc Unexecuted instantiation: tm2unixtime.c:zend_string_safe_alloc Unexecuted instantiation: unixtime2tm.c:zend_string_safe_alloc Unexecuted instantiation: parse_iso_intervals.c:zend_string_safe_alloc Unexecuted instantiation: interval.c:zend_string_safe_alloc php_pcre.c:zend_string_safe_alloc Line | Count | Source | 177 | 3 | { | 178 | 3 | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 179 | | | 180 | 3 | GC_SET_REFCOUNT(ret, 1); | 181 | 3 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 182 | 3 | ZSTR_H(ret) = 0; | 183 | 3 | ZSTR_LEN(ret) = (n * m) + l; | 184 | 3 | return ret; | 185 | 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 | 177 | 1.87k | { | 178 | 1.87k | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 179 | | | 180 | 1.87k | GC_SET_REFCOUNT(ret, 1); | 181 | 1.87k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 182 | 1.87k | ZSTR_H(ret) = 0; | 183 | 1.87k | ZSTR_LEN(ret) = (n * m) + l; | 184 | 1.87k | return ret; | 185 | 1.87k | } |
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 | 177 | 13 | { | 178 | 13 | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 179 | | | 180 | 13 | GC_SET_REFCOUNT(ret, 1); | 181 | 13 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 182 | 13 | ZSTR_H(ret) = 0; | 183 | 13 | ZSTR_LEN(ret) = (n * m) + l; | 184 | 13 | return ret; | 185 | 13 | } |
Unexecuted instantiation: basic_functions.c:zend_string_safe_alloc Unexecuted instantiation: browscap.c:zend_string_safe_alloc Unexecuted instantiation: crc32_x86.c:zend_string_safe_alloc Unexecuted instantiation: crc32.c:zend_string_safe_alloc Unexecuted instantiation: credits.c:zend_string_safe_alloc Unexecuted instantiation: crypt.c:zend_string_safe_alloc Unexecuted instantiation: css.c:zend_string_safe_alloc Unexecuted instantiation: datetime.c:zend_string_safe_alloc Unexecuted instantiation: dir.c:zend_string_safe_alloc Unexecuted instantiation: dl.c:zend_string_safe_alloc Unexecuted instantiation: dns.c:zend_string_safe_alloc exec.c:zend_string_safe_alloc Line | Count | Source | 177 | 20 | { | 178 | 20 | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 179 | | | 180 | 20 | GC_SET_REFCOUNT(ret, 1); | 181 | 20 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 182 | 20 | ZSTR_H(ret) = 0; | 183 | 20 | ZSTR_LEN(ret) = (n * m) + l; | 184 | 20 | return ret; | 185 | 20 | } |
Unexecuted instantiation: file.c:zend_string_safe_alloc Unexecuted instantiation: filestat.c:zend_string_safe_alloc Unexecuted instantiation: filters.c:zend_string_safe_alloc Unexecuted instantiation: flock_compat.c:zend_string_safe_alloc Unexecuted instantiation: formatted_print.c:zend_string_safe_alloc Unexecuted instantiation: fsock.c:zend_string_safe_alloc Unexecuted instantiation: ftok.c:zend_string_safe_alloc Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_safe_alloc Unexecuted instantiation: head.c:zend_string_safe_alloc Unexecuted instantiation: hrtime.c:zend_string_safe_alloc Unexecuted instantiation: html.c:zend_string_safe_alloc Unexecuted instantiation: http_fopen_wrapper.c:zend_string_safe_alloc Unexecuted instantiation: http.c:zend_string_safe_alloc Unexecuted instantiation: image.c:zend_string_safe_alloc Unexecuted instantiation: incomplete_class.c:zend_string_safe_alloc Unexecuted instantiation: info.c:zend_string_safe_alloc Unexecuted instantiation: iptc.c:zend_string_safe_alloc Unexecuted instantiation: levenshtein.c:zend_string_safe_alloc Unexecuted instantiation: link.c:zend_string_safe_alloc Unexecuted instantiation: mail.c:zend_string_safe_alloc Unexecuted instantiation: math.c:zend_string_safe_alloc Unexecuted instantiation: md5.c:zend_string_safe_alloc Unexecuted instantiation: metaphone.c:zend_string_safe_alloc Unexecuted instantiation: microtime.c:zend_string_safe_alloc Unexecuted instantiation: net.c:zend_string_safe_alloc Unexecuted instantiation: pack.c:zend_string_safe_alloc Unexecuted instantiation: pageinfo.c:zend_string_safe_alloc Unexecuted instantiation: password.c:zend_string_safe_alloc Unexecuted instantiation: php_fopen_wrapper.c:zend_string_safe_alloc Unexecuted instantiation: proc_open.c:zend_string_safe_alloc quot_print.c:zend_string_safe_alloc Line | Count | Source | 177 | 205 | { | 178 | 205 | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 179 | | | 180 | 205 | GC_SET_REFCOUNT(ret, 1); | 181 | 205 | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 182 | 205 | ZSTR_H(ret) = 0; | 183 | 205 | ZSTR_LEN(ret) = (n * m) + l; | 184 | 205 | return ret; | 185 | 205 | } |
Unexecuted instantiation: scanf.c:zend_string_safe_alloc Unexecuted instantiation: sha1.c:zend_string_safe_alloc Unexecuted instantiation: soundex.c:zend_string_safe_alloc Unexecuted instantiation: streamsfuncs.c:zend_string_safe_alloc string.c:zend_string_safe_alloc Line | Count | Source | 177 | 1.86k | { | 178 | 1.86k | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 179 | | | 180 | 1.86k | GC_SET_REFCOUNT(ret, 1); | 181 | 1.86k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 182 | 1.86k | ZSTR_H(ret) = 0; | 183 | 1.86k | ZSTR_LEN(ret) = (n * m) + l; | 184 | 1.86k | return ret; | 185 | 1.86k | } |
Unexecuted instantiation: strnatcmp.c:zend_string_safe_alloc Unexecuted instantiation: syslog.c:zend_string_safe_alloc Unexecuted instantiation: type.c:zend_string_safe_alloc Unexecuted instantiation: uniqid.c:zend_string_safe_alloc Unexecuted instantiation: url_scanner_ex.c:zend_string_safe_alloc Unexecuted instantiation: url.c:zend_string_safe_alloc Unexecuted instantiation: user_filters.c:zend_string_safe_alloc Unexecuted instantiation: uuencode.c:zend_string_safe_alloc var_unserializer.c:zend_string_safe_alloc Line | Count | Source | 177 | 266k | { | 178 | 266k | zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 179 | | | 180 | 266k | GC_SET_REFCOUNT(ret, 1); | 181 | 266k | GC_TYPE_INFO(ret) = GC_STRING | ((persistent ? IS_STR_PERSISTENT : 0) << GC_FLAGS_SHIFT); | 182 | 266k | ZSTR_H(ret) = 0; | 183 | 266k | ZSTR_LEN(ret) = (n * m) + l; | 184 | 266k | return ret; | 185 | 266k | } |
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: php_uriparser.c:zend_string_safe_alloc Unexecuted instantiation: explicit_bzero.c:zend_string_safe_alloc Unexecuted instantiation: fopen_wrappers.c:zend_string_safe_alloc Unexecuted instantiation: getopt.c:zend_string_safe_alloc Unexecuted instantiation: main.c:zend_string_safe_alloc Unexecuted instantiation: network.c:zend_string_safe_alloc Unexecuted instantiation: output.c:zend_string_safe_alloc Unexecuted instantiation: php_content_types.c:zend_string_safe_alloc Unexecuted instantiation: php_ini_builder.c:zend_string_safe_alloc Unexecuted instantiation: php_ini.c:zend_string_safe_alloc Unexecuted instantiation: php_glob.c:zend_string_safe_alloc Unexecuted instantiation: php_odbc_utils.c:zend_string_safe_alloc Unexecuted instantiation: php_open_temporary_file.c:zend_string_safe_alloc Unexecuted instantiation: php_scandir.c:zend_string_safe_alloc Unexecuted instantiation: php_syslog.c:zend_string_safe_alloc Unexecuted instantiation: php_ticks.c:zend_string_safe_alloc Unexecuted instantiation: php_variables.c:zend_string_safe_alloc Unexecuted instantiation: reentrancy.c:zend_string_safe_alloc Unexecuted instantiation: rfc1867.c:zend_string_safe_alloc Unexecuted instantiation: safe_bcmp.c:zend_string_safe_alloc Unexecuted instantiation: SAPI.c:zend_string_safe_alloc Unexecuted instantiation: snprintf.c:zend_string_safe_alloc Unexecuted instantiation: spprintf.c:zend_string_safe_alloc Unexecuted instantiation: strlcat.c:zend_string_safe_alloc Unexecuted instantiation: strlcpy.c:zend_string_safe_alloc Unexecuted instantiation: cast.c:zend_string_safe_alloc Unexecuted instantiation: filter.c:zend_string_safe_alloc Unexecuted instantiation: glob_wrapper.c:zend_string_safe_alloc Unexecuted instantiation: memory.c:zend_string_safe_alloc Unexecuted instantiation: mmap.c:zend_string_safe_alloc Unexecuted instantiation: plain_wrapper.c:zend_string_safe_alloc Unexecuted instantiation: streams.c:zend_string_safe_alloc Unexecuted instantiation: transports.c:zend_string_safe_alloc Unexecuted instantiation: userspace.c:zend_string_safe_alloc Unexecuted instantiation: xp_socket.c:zend_string_safe_alloc Unexecuted instantiation: block_pass.c:zend_string_safe_alloc Unexecuted instantiation: compact_literals.c:zend_string_safe_alloc Unexecuted instantiation: compact_vars.c:zend_string_safe_alloc Unexecuted instantiation: dce.c:zend_string_safe_alloc Unexecuted instantiation: dfa_pass.c:zend_string_safe_alloc Unexecuted instantiation: escape_analysis.c:zend_string_safe_alloc Unexecuted instantiation: nop_removal.c:zend_string_safe_alloc Unexecuted instantiation: optimize_func_calls.c:zend_string_safe_alloc Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_safe_alloc Unexecuted instantiation: pass1.c:zend_string_safe_alloc Unexecuted instantiation: pass3.c:zend_string_safe_alloc Unexecuted instantiation: sccp.c:zend_string_safe_alloc Unexecuted instantiation: scdf.c:zend_string_safe_alloc Unexecuted instantiation: zend_call_graph.c:zend_string_safe_alloc Unexecuted instantiation: zend_cfg.c:zend_string_safe_alloc Unexecuted instantiation: zend_dfg.c:zend_string_safe_alloc Unexecuted instantiation: zend_dump.c:zend_string_safe_alloc Unexecuted instantiation: zend_func_info.c:zend_string_safe_alloc Unexecuted instantiation: zend_inference.c:zend_string_safe_alloc Unexecuted instantiation: zend_optimizer.c:zend_string_safe_alloc Unexecuted instantiation: zend_ssa.c:zend_string_safe_alloc Unexecuted instantiation: zend_alloc.c:zend_string_safe_alloc Unexecuted instantiation: zend_API.c:zend_string_safe_alloc Unexecuted instantiation: zend_ast.c:zend_string_safe_alloc Unexecuted instantiation: zend_attributes.c:zend_string_safe_alloc Unexecuted instantiation: zend_builtin_functions.c:zend_string_safe_alloc Unexecuted instantiation: zend_call_stack.c:zend_string_safe_alloc Unexecuted instantiation: zend_closures.c:zend_string_safe_alloc Unexecuted instantiation: zend_compile.c:zend_string_safe_alloc Unexecuted instantiation: zend_constants.c:zend_string_safe_alloc Unexecuted instantiation: zend_cpuinfo.c:zend_string_safe_alloc Unexecuted instantiation: zend_default_classes.c:zend_string_safe_alloc Unexecuted instantiation: zend_dtrace.c:zend_string_safe_alloc Unexecuted instantiation: zend_enum.c:zend_string_safe_alloc Unexecuted instantiation: zend_exceptions.c:zend_string_safe_alloc Unexecuted instantiation: zend_execute_API.c:zend_string_safe_alloc Unexecuted instantiation: zend_execute.c:zend_string_safe_alloc Unexecuted instantiation: zend_extensions.c:zend_string_safe_alloc Unexecuted instantiation: zend_fibers.c:zend_string_safe_alloc Unexecuted instantiation: zend_float.c:zend_string_safe_alloc Unexecuted instantiation: zend_gc.c:zend_string_safe_alloc Unexecuted instantiation: zend_gdb.c:zend_string_safe_alloc Unexecuted instantiation: zend_generators.c:zend_string_safe_alloc Unexecuted instantiation: zend_hash.c:zend_string_safe_alloc Unexecuted instantiation: zend_highlight.c:zend_string_safe_alloc Unexecuted instantiation: zend_hrtime.c:zend_string_safe_alloc Unexecuted instantiation: zend_inheritance.c:zend_string_safe_alloc Unexecuted instantiation: zend_ini_parser.c:zend_string_safe_alloc Unexecuted instantiation: zend_ini_scanner.c:zend_string_safe_alloc Unexecuted instantiation: zend_ini.c:zend_string_safe_alloc Unexecuted instantiation: zend_interfaces.c:zend_string_safe_alloc Unexecuted instantiation: zend_iterators.c:zend_string_safe_alloc Unexecuted instantiation: zend_language_parser.c:zend_string_safe_alloc Unexecuted instantiation: zend_language_scanner.c:zend_string_safe_alloc Unexecuted instantiation: zend_lazy_objects.c:zend_string_safe_alloc Unexecuted instantiation: zend_list.c:zend_string_safe_alloc Unexecuted instantiation: zend_llist.c:zend_string_safe_alloc Unexecuted instantiation: zend_multibyte.c:zend_string_safe_alloc Unexecuted instantiation: zend_object_handlers.c:zend_string_safe_alloc Unexecuted instantiation: zend_objects_API.c:zend_string_safe_alloc Unexecuted instantiation: zend_objects.c:zend_string_safe_alloc Unexecuted instantiation: zend_observer.c:zend_string_safe_alloc Unexecuted instantiation: zend_opcode.c:zend_string_safe_alloc Unexecuted instantiation: zend_operators.c:zend_string_safe_alloc Unexecuted instantiation: zend_property_hooks.c:zend_string_safe_alloc Unexecuted instantiation: zend_ptr_stack.c:zend_string_safe_alloc Unexecuted instantiation: zend_signal.c:zend_string_safe_alloc Unexecuted instantiation: zend_smart_str.c:zend_string_safe_alloc Unexecuted instantiation: zend_sort.c:zend_string_safe_alloc Unexecuted instantiation: zend_stack.c:zend_string_safe_alloc Unexecuted instantiation: zend_stream.c:zend_string_safe_alloc Unexecuted instantiation: zend_string.c:zend_string_safe_alloc Unexecuted instantiation: zend_strtod.c:zend_string_safe_alloc Unexecuted instantiation: zend_system_id.c:zend_string_safe_alloc Unexecuted instantiation: zend_variables.c:zend_string_safe_alloc Unexecuted instantiation: zend_virtual_cwd.c:zend_string_safe_alloc Unexecuted instantiation: zend_vm_opcodes.c:zend_string_safe_alloc Unexecuted instantiation: zend_weakrefs.c:zend_string_safe_alloc Unexecuted instantiation: zend.c:zend_string_safe_alloc Unexecuted instantiation: internal_functions_cli.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-parser.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-sapi.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-exif.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-unserialize.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-function-jit.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-json.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_safe_alloc Unexecuted instantiation: fuzzer-execute.c:zend_string_safe_alloc |
186 | | |
187 | | static zend_always_inline zend_string *zend_string_init(const char *str, size_t len, bool persistent) |
188 | 17.4M | { |
189 | 17.4M | zend_string *ret = zend_string_alloc(len, persistent); |
190 | | |
191 | 17.4M | memcpy(ZSTR_VAL(ret), str, len); |
192 | 17.4M | ZSTR_VAL(ret)[len] = '\0'; |
193 | 17.4M | return ret; |
194 | 17.4M | } php_date.c:zend_string_init Line | Count | Source | 188 | 993 | { | 189 | 993 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 993 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 993 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 993 | return ret; | 194 | 993 | } |
Unexecuted instantiation: astro.c:zend_string_init Unexecuted instantiation: dow.c:zend_string_init Unexecuted instantiation: parse_date.c:zend_string_init Unexecuted instantiation: parse_tz.c:zend_string_init Unexecuted instantiation: parse_posix.c:zend_string_init Unexecuted instantiation: timelib.c:zend_string_init Unexecuted instantiation: tm2unixtime.c:zend_string_init Unexecuted instantiation: unixtime2tm.c:zend_string_init Unexecuted instantiation: parse_iso_intervals.c:zend_string_init Unexecuted instantiation: interval.c:zend_string_init php_pcre.c:zend_string_init Line | Count | Source | 188 | 400 | { | 189 | 400 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 400 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 400 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 400 | return ret; | 194 | 400 | } |
Unexecuted instantiation: exif.c:zend_string_init Unexecuted instantiation: hash_adler32.c:zend_string_init Unexecuted instantiation: hash_crc32.c:zend_string_init Unexecuted instantiation: hash_fnv.c:zend_string_init Unexecuted instantiation: hash_gost.c:zend_string_init Unexecuted instantiation: hash_haval.c:zend_string_init Unexecuted instantiation: hash_joaat.c:zend_string_init Unexecuted instantiation: hash_md.c:zend_string_init Unexecuted instantiation: hash_murmur.c:zend_string_init Unexecuted instantiation: hash_ripemd.c:zend_string_init Unexecuted instantiation: hash_sha_ni.c:zend_string_init Unexecuted instantiation: hash_sha_sse2.c:zend_string_init Unexecuted instantiation: hash_sha.c:zend_string_init Unexecuted instantiation: hash_sha3.c:zend_string_init Unexecuted instantiation: hash_snefru.c:zend_string_init Unexecuted instantiation: hash_tiger.c:zend_string_init Unexecuted instantiation: hash_whirlpool.c:zend_string_init Unexecuted instantiation: hash_xxhash.c:zend_string_init Unexecuted instantiation: hash.c:zend_string_init Unexecuted instantiation: json_encoder.c:zend_string_init Unexecuted instantiation: json_parser.tab.c:zend_string_init Unexecuted instantiation: json_scanner.c:zend_string_init Line | Count | Source | 188 | 275 | { | 189 | 275 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 275 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 275 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 275 | return ret; | 194 | 275 | } |
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 | 188 | 64 | { | 189 | 64 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 64 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 64 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 64 | return ret; | 194 | 64 | } |
Unexecuted instantiation: randomizer.c:zend_string_init Unexecuted instantiation: zend_utils.c:zend_string_init php_reflection.c:zend_string_init Line | Count | Source | 188 | 286 | { | 189 | 286 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 286 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 286 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 286 | return ret; | 194 | 286 | } |
Unexecuted instantiation: php_spl.c:zend_string_init Unexecuted instantiation: spl_array.c:zend_string_init spl_directory.c:zend_string_init Line | Count | Source | 188 | 15 | { | 189 | 15 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 15 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 15 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 15 | return ret; | 194 | 15 | } |
Unexecuted instantiation: spl_dllist.c:zend_string_init Unexecuted instantiation: spl_exceptions.c:zend_string_init spl_fixedarray.c:zend_string_init Line | Count | Source | 188 | 16 | { | 189 | 16 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 16 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 16 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 16 | return ret; | 194 | 16 | } |
Unexecuted instantiation: spl_functions.c:zend_string_init Unexecuted instantiation: spl_heap.c:zend_string_init spl_iterators.c:zend_string_init Line | Count | Source | 188 | 4.04k | { | 189 | 4.04k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 4.04k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 4.04k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 4.04k | return ret; | 194 | 4.04k | } |
Unexecuted instantiation: spl_observer.c:zend_string_init Unexecuted instantiation: array.c:zend_string_init assert.c:zend_string_init Line | Count | Source | 188 | 37 | { | 189 | 37 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 37 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 37 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 37 | return ret; | 194 | 37 | } |
Unexecuted instantiation: base64.c:zend_string_init basic_functions.c:zend_string_init Line | Count | Source | 188 | 174 | { | 189 | 174 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 174 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 174 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 174 | return ret; | 194 | 174 | } |
Unexecuted instantiation: browscap.c:zend_string_init Unexecuted instantiation: crc32_x86.c:zend_string_init Unexecuted instantiation: crc32.c:zend_string_init Unexecuted instantiation: credits.c:zend_string_init Unexecuted instantiation: crypt.c:zend_string_init Unexecuted instantiation: css.c:zend_string_init Unexecuted instantiation: datetime.c:zend_string_init Line | Count | Source | 188 | 21 | { | 189 | 21 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 21 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 21 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 21 | return ret; | 194 | 21 | } |
Unexecuted instantiation: dl.c:zend_string_init Unexecuted instantiation: dns.c:zend_string_init Unexecuted instantiation: exec.c:zend_string_init Line | Count | Source | 188 | 8.62k | { | 189 | 8.62k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 8.62k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 8.62k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 8.62k | return ret; | 194 | 8.62k | } |
Unexecuted instantiation: filestat.c:zend_string_init Unexecuted instantiation: filters.c:zend_string_init Unexecuted instantiation: flock_compat.c:zend_string_init Unexecuted instantiation: formatted_print.c:zend_string_init Unexecuted instantiation: fsock.c:zend_string_init Unexecuted instantiation: ftok.c:zend_string_init Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_init Line | Count | Source | 188 | 5 | { | 189 | 5 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 5 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 5 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 5 | return ret; | 194 | 5 | } |
Unexecuted instantiation: hrtime.c:zend_string_init Unexecuted instantiation: html.c:zend_string_init Unexecuted instantiation: http_fopen_wrapper.c:zend_string_init Unexecuted instantiation: http.c:zend_string_init Unexecuted instantiation: image.c:zend_string_init Unexecuted instantiation: incomplete_class.c:zend_string_init Line | Count | Source | 188 | 86 | { | 189 | 86 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 86 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 86 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 86 | return ret; | 194 | 86 | } |
Unexecuted instantiation: iptc.c:zend_string_init Unexecuted instantiation: levenshtein.c:zend_string_init Unexecuted instantiation: link.c:zend_string_init Unexecuted instantiation: mail.c:zend_string_init Line | Count | Source | 188 | 14 | { | 189 | 14 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 14 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 14 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 14 | return ret; | 194 | 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 | 188 | 3.14k | { | 189 | 3.14k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 3.14k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 3.14k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 3.14k | return ret; | 194 | 3.14k | } |
Unexecuted instantiation: strnatcmp.c:zend_string_init Unexecuted instantiation: syslog.c:zend_string_init Unexecuted instantiation: type.c:zend_string_init Unexecuted instantiation: uniqid.c:zend_string_init url_scanner_ex.c:zend_string_init Line | Count | Source | 188 | 80 | { | 189 | 80 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 80 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 80 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 80 | return ret; | 194 | 80 | } |
Unexecuted instantiation: url.c:zend_string_init user_filters.c:zend_string_init Line | Count | Source | 188 | 172 | { | 189 | 172 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 172 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 172 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 172 | return ret; | 194 | 172 | } |
Unexecuted instantiation: uuencode.c:zend_string_init var_unserializer.c:zend_string_init Line | Count | Source | 188 | 105k | { | 189 | 105k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 105k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 105k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 105k | return ret; | 194 | 105k | } |
Line | Count | Source | 188 | 319 | { | 189 | 319 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 319 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 319 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 319 | return ret; | 194 | 319 | } |
Unexecuted instantiation: versioning.c:zend_string_init Unexecuted instantiation: crypt_sha256.c:zend_string_init Unexecuted instantiation: crypt_sha512.c:zend_string_init Unexecuted instantiation: php_crypt_r.c:zend_string_init php_uri.c:zend_string_init Line | Count | Source | 188 | 64 | { | 189 | 64 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 64 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 64 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 64 | return ret; | 194 | 64 | } |
Unexecuted instantiation: php_uri_common.c:zend_string_init Unexecuted instantiation: php_uriparser.c:zend_string_init Unexecuted instantiation: explicit_bzero.c:zend_string_init fopen_wrappers.c:zend_string_init Line | Count | Source | 188 | 86.0k | { | 189 | 86.0k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 86.0k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 86.0k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 86.0k | return ret; | 194 | 86.0k | } |
Unexecuted instantiation: getopt.c:zend_string_init Line | Count | Source | 188 | 5 | { | 189 | 5 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 5 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 5 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 5 | return ret; | 194 | 5 | } |
Unexecuted instantiation: network.c:zend_string_init output.c:zend_string_init Line | Count | Source | 188 | 4.69k | { | 189 | 4.69k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 4.69k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 4.69k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 4.69k | return ret; | 194 | 4.69k | } |
Unexecuted instantiation: php_content_types.c:zend_string_init Unexecuted instantiation: php_ini_builder.c:zend_string_init php_ini.c:zend_string_init Line | Count | Source | 188 | 224 | { | 189 | 224 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 224 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 224 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 224 | return ret; | 194 | 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 | 188 | 164k | { | 189 | 164k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 164k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 164k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 164k | return ret; | 194 | 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 | 188 | 32 | { | 189 | 32 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 32 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 32 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 32 | return ret; | 194 | 32 | } |
Unexecuted instantiation: snprintf.c:zend_string_init Unexecuted instantiation: spprintf.c:zend_string_init Unexecuted instantiation: strlcat.c:zend_string_init Unexecuted instantiation: strlcpy.c:zend_string_init Unexecuted instantiation: cast.c:zend_string_init Unexecuted instantiation: filter.c:zend_string_init Unexecuted instantiation: glob_wrapper.c:zend_string_init Unexecuted instantiation: memory.c:zend_string_init Unexecuted instantiation: mmap.c:zend_string_init plain_wrapper.c:zend_string_init Line | Count | Source | 188 | 50 | { | 189 | 50 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 50 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 50 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 50 | return ret; | 194 | 50 | } |
Unexecuted instantiation: streams.c:zend_string_init Unexecuted instantiation: transports.c:zend_string_init userspace.c:zend_string_init Line | Count | Source | 188 | 813 | { | 189 | 813 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 813 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 813 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 813 | return ret; | 194 | 813 | } |
Unexecuted instantiation: xp_socket.c:zend_string_init Unexecuted instantiation: block_pass.c:zend_string_init compact_literals.c:zend_string_init Line | Count | Source | 188 | 9.47k | { | 189 | 9.47k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 9.47k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 9.47k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 9.47k | return ret; | 194 | 9.47k | } |
Unexecuted instantiation: compact_vars.c:zend_string_init Unexecuted instantiation: dce.c:zend_string_init Unexecuted instantiation: dfa_pass.c:zend_string_init Unexecuted instantiation: escape_analysis.c:zend_string_init Unexecuted instantiation: nop_removal.c:zend_string_init Unexecuted instantiation: optimize_func_calls.c:zend_string_init Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_init Unexecuted instantiation: pass1.c:zend_string_init Unexecuted instantiation: pass3.c:zend_string_init Line | Count | Source | 188 | 34 | { | 189 | 34 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 34 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 34 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 34 | return ret; | 194 | 34 | } |
Unexecuted instantiation: scdf.c:zend_string_init Unexecuted instantiation: zend_call_graph.c:zend_string_init Unexecuted instantiation: zend_cfg.c:zend_string_init Unexecuted instantiation: zend_dfg.c:zend_string_init Unexecuted instantiation: zend_dump.c:zend_string_init Unexecuted instantiation: zend_func_info.c:zend_string_init Unexecuted instantiation: zend_inference.c:zend_string_init zend_optimizer.c:zend_string_init Line | Count | Source | 188 | 6 | { | 189 | 6 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 6 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 6 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 6 | return ret; | 194 | 6 | } |
Unexecuted instantiation: zend_ssa.c:zend_string_init Unexecuted instantiation: zend_alloc.c:zend_string_init zend_API.c:zend_string_init Line | Count | Source | 188 | 388k | { | 189 | 388k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 388k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 388k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 388k | return ret; | 194 | 388k | } |
Unexecuted instantiation: zend_ast.c:zend_string_init zend_attributes.c:zend_string_init Line | Count | Source | 188 | 16 | { | 189 | 16 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 16 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 16 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 16 | return ret; | 194 | 16 | } |
zend_builtin_functions.c:zend_string_init Line | Count | Source | 188 | 335 | { | 189 | 335 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 335 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 335 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 335 | return ret; | 194 | 335 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_init Unexecuted instantiation: zend_closures.c:zend_string_init zend_compile.c:zend_string_init Line | Count | Source | 188 | 1.18M | { | 189 | 1.18M | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 1.18M | memcpy(ZSTR_VAL(ret), str, len); | 192 | 1.18M | ZSTR_VAL(ret)[len] = '\0'; | 193 | 1.18M | return ret; | 194 | 1.18M | } |
zend_constants.c:zend_string_init Line | Count | Source | 188 | 546 | { | 189 | 546 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 546 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 546 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 546 | return ret; | 194 | 546 | } |
Unexecuted instantiation: zend_cpuinfo.c:zend_string_init Unexecuted instantiation: zend_default_classes.c:zend_string_init Unexecuted instantiation: zend_dtrace.c:zend_string_init zend_enum.c:zend_string_init Line | Count | Source | 188 | 5.56k | { | 189 | 5.56k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 5.56k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 5.56k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 5.56k | return ret; | 194 | 5.56k | } |
zend_exceptions.c:zend_string_init Line | Count | Source | 188 | 1.53M | { | 189 | 1.53M | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 1.53M | memcpy(ZSTR_VAL(ret), str, len); | 192 | 1.53M | ZSTR_VAL(ret)[len] = '\0'; | 193 | 1.53M | return ret; | 194 | 1.53M | } |
zend_execute_API.c:zend_string_init Line | Count | Source | 188 | 45 | { | 189 | 45 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 45 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 45 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 45 | return ret; | 194 | 45 | } |
zend_execute.c:zend_string_init Line | Count | Source | 188 | 458 | { | 189 | 458 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 458 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 458 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 458 | return ret; | 194 | 458 | } |
Unexecuted instantiation: zend_extensions.c:zend_string_init Unexecuted instantiation: zend_fibers.c:zend_string_init Unexecuted instantiation: zend_float.c:zend_string_init Unexecuted instantiation: zend_gc.c:zend_string_init Unexecuted instantiation: zend_gdb.c:zend_string_init Unexecuted instantiation: zend_generators.c:zend_string_init zend_hash.c:zend_string_init Line | Count | Source | 188 | 273k | { | 189 | 273k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 273k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 273k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 273k | return ret; | 194 | 273k | } |
Unexecuted instantiation: zend_highlight.c:zend_string_init Unexecuted instantiation: zend_hrtime.c:zend_string_init Unexecuted instantiation: zend_inheritance.c:zend_string_init zend_ini_parser.c:zend_string_init Line | Count | Source | 188 | 13.7k | { | 189 | 13.7k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 13.7k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 13.7k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 13.7k | return ret; | 194 | 13.7k | } |
zend_ini_scanner.c:zend_string_init Line | Count | Source | 188 | 1.32M | { | 189 | 1.32M | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 1.32M | memcpy(ZSTR_VAL(ret), str, len); | 192 | 1.32M | ZSTR_VAL(ret)[len] = '\0'; | 193 | 1.32M | return ret; | 194 | 1.32M | } |
zend_ini.c:zend_string_init Line | Count | Source | 188 | 86.1k | { | 189 | 86.1k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 86.1k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 86.1k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 86.1k | return ret; | 194 | 86.1k | } |
zend_interfaces.c:zend_string_init Line | Count | Source | 188 | 185k | { | 189 | 185k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 185k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 185k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 185k | return ret; | 194 | 185k | } |
Unexecuted instantiation: zend_iterators.c:zend_string_init Unexecuted instantiation: zend_language_parser.c:zend_string_init zend_language_scanner.c:zend_string_init Line | Count | Source | 188 | 10.9M | { | 189 | 10.9M | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 10.9M | memcpy(ZSTR_VAL(ret), str, len); | 192 | 10.9M | ZSTR_VAL(ret)[len] = '\0'; | 193 | 10.9M | return ret; | 194 | 10.9M | } |
Unexecuted instantiation: zend_lazy_objects.c:zend_string_init Unexecuted instantiation: zend_list.c:zend_string_init Unexecuted instantiation: zend_llist.c:zend_string_init Unexecuted instantiation: zend_multibyte.c:zend_string_init zend_object_handlers.c:zend_string_init Line | Count | Source | 188 | 792 | { | 189 | 792 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 792 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 792 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 792 | return ret; | 194 | 792 | } |
Unexecuted instantiation: zend_objects_API.c:zend_string_init Unexecuted instantiation: zend_objects.c:zend_string_init Unexecuted instantiation: zend_observer.c:zend_string_init Unexecuted instantiation: zend_opcode.c:zend_string_init zend_operators.c:zend_string_init Line | Count | Source | 188 | 342k | { | 189 | 342k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 342k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 342k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 342k | return ret; | 194 | 342k | } |
zend_property_hooks.c:zend_string_init Line | Count | Source | 188 | 88 | { | 189 | 88 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 88 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 88 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 88 | return ret; | 194 | 88 | } |
Unexecuted instantiation: zend_ptr_stack.c:zend_string_init Unexecuted instantiation: zend_signal.c:zend_string_init Unexecuted instantiation: zend_smart_str.c:zend_string_init Unexecuted instantiation: zend_sort.c:zend_string_init Unexecuted instantiation: zend_stack.c:zend_string_init zend_stream.c:zend_string_init Line | Count | Source | 188 | 156k | { | 189 | 156k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 156k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 156k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 156k | return ret; | 194 | 156k | } |
zend_string.c:zend_string_init Line | Count | Source | 188 | 518k | { | 189 | 518k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 518k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 518k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 518k | return ret; | 194 | 518k | } |
Unexecuted instantiation: zend_strtod.c:zend_string_init Unexecuted instantiation: zend_system_id.c:zend_string_init zend_variables.c:zend_string_init Line | Count | Source | 188 | 107 | { | 189 | 107 | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 107 | memcpy(ZSTR_VAL(ret), str, len); | 192 | 107 | ZSTR_VAL(ret)[len] = '\0'; | 193 | 107 | return ret; | 194 | 107 | } |
Unexecuted instantiation: zend_virtual_cwd.c:zend_string_init Unexecuted instantiation: zend_vm_opcodes.c:zend_string_init Unexecuted instantiation: zend_weakrefs.c:zend_string_init Unexecuted instantiation: zend.c:zend_string_init Unexecuted instantiation: internal_functions_cli.c:zend_string_init Unexecuted instantiation: fuzzer-parser.c:zend_string_init Unexecuted instantiation: fuzzer-sapi.c:zend_string_init fuzzer-tracing-jit.c:zend_string_init Line | Count | Source | 188 | 67.2k | { | 189 | 67.2k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 67.2k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 67.2k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 67.2k | return ret; | 194 | 67.2k | } |
Unexecuted instantiation: fuzzer-exif.c:zend_string_init Unexecuted instantiation: fuzzer-unserialize.c:zend_string_init fuzzer-function-jit.c:zend_string_init Line | Count | Source | 188 | 68.6k | { | 189 | 68.6k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 68.6k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 68.6k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 68.6k | return ret; | 194 | 68.6k | } |
Unexecuted instantiation: fuzzer-json.c:zend_string_init fuzzer-unserializehash.c:zend_string_init Line | Count | Source | 188 | 2.45k | { | 189 | 2.45k | zend_string *ret = zend_string_alloc(len, persistent); | 190 | | | 191 | 2.45k | memcpy(ZSTR_VAL(ret), str, len); | 192 | 2.45k | ZSTR_VAL(ret)[len] = '\0'; | 193 | 2.45k | return ret; | 194 | 2.45k | } |
Unexecuted instantiation: fuzzer-execute.c:zend_string_init |
195 | | |
196 | | static zend_always_inline zend_string *zend_string_init_fast(const char *str, size_t len) |
197 | 275k | { |
198 | 275k | if (len > 1) { |
199 | 270k | return zend_string_init(str, len, 0); |
200 | 270k | } else if (len == 0) { |
201 | 2.27k | return zend_empty_string; |
202 | 2.81k | } else /* if (len == 1) */ { |
203 | 2.81k | return ZSTR_CHAR((zend_uchar) *str); |
204 | 2.81k | } |
205 | 275k | } Unexecuted instantiation: php_date.c:zend_string_init_fast Unexecuted instantiation: astro.c:zend_string_init_fast Unexecuted instantiation: dow.c:zend_string_init_fast Unexecuted instantiation: parse_date.c:zend_string_init_fast Unexecuted instantiation: parse_tz.c:zend_string_init_fast Unexecuted instantiation: parse_posix.c:zend_string_init_fast Unexecuted instantiation: timelib.c:zend_string_init_fast Unexecuted instantiation: tm2unixtime.c:zend_string_init_fast Unexecuted instantiation: unixtime2tm.c:zend_string_init_fast Unexecuted instantiation: parse_iso_intervals.c:zend_string_init_fast Unexecuted instantiation: interval.c:zend_string_init_fast php_pcre.c:zend_string_init_fast Line | Count | Source | 197 | 382 | { | 198 | 382 | if (len > 1) { | 199 | 46 | return zend_string_init(str, len, 0); | 200 | 336 | } else if (len == 0) { | 201 | 2 | return zend_empty_string; | 202 | 334 | } else /* if (len == 1) */ { | 203 | 334 | return ZSTR_CHAR((zend_uchar) *str); | 204 | 334 | } | 205 | 382 | } |
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 | 197 | 201 | { | 198 | 201 | if (len > 1) { | 199 | 185 | return zend_string_init(str, len, 0); | 200 | 185 | } else if (len == 0) { | 201 | 11 | return zend_empty_string; | 202 | 11 | } else /* if (len == 1) */ { | 203 | 5 | return ZSTR_CHAR((zend_uchar) *str); | 204 | 5 | } | 205 | 201 | } |
Unexecuted instantiation: strnatcmp.c:zend_string_init_fast Unexecuted instantiation: syslog.c:zend_string_init_fast Unexecuted instantiation: type.c:zend_string_init_fast Unexecuted instantiation: uniqid.c:zend_string_init_fast Unexecuted instantiation: url_scanner_ex.c:zend_string_init_fast Unexecuted instantiation: url.c:zend_string_init_fast Unexecuted instantiation: user_filters.c:zend_string_init_fast Unexecuted instantiation: uuencode.c:zend_string_init_fast var_unserializer.c:zend_string_init_fast Line | Count | Source | 197 | 108k | { | 198 | 108k | if (len > 1) { | 199 | 105k | return zend_string_init(str, len, 0); | 200 | 105k | } else if (len == 0) { | 201 | 1.76k | return zend_empty_string; | 202 | 1.76k | } else /* if (len == 1) */ { | 203 | 1.74k | return ZSTR_CHAR((zend_uchar) *str); | 204 | 1.74k | } | 205 | 108k | } |
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: php_uriparser.c:zend_string_init_fast Unexecuted instantiation: explicit_bzero.c:zend_string_init_fast Unexecuted instantiation: fopen_wrappers.c:zend_string_init_fast Unexecuted instantiation: getopt.c:zend_string_init_fast Unexecuted instantiation: main.c:zend_string_init_fast Unexecuted instantiation: network.c:zend_string_init_fast Unexecuted instantiation: output.c:zend_string_init_fast Unexecuted instantiation: php_content_types.c:zend_string_init_fast Unexecuted instantiation: php_ini_builder.c:zend_string_init_fast Unexecuted instantiation: php_ini.c:zend_string_init_fast Unexecuted instantiation: php_glob.c:zend_string_init_fast Unexecuted instantiation: php_odbc_utils.c:zend_string_init_fast Unexecuted instantiation: php_open_temporary_file.c:zend_string_init_fast Unexecuted instantiation: php_scandir.c:zend_string_init_fast Unexecuted instantiation: php_syslog.c:zend_string_init_fast Unexecuted instantiation: php_ticks.c:zend_string_init_fast php_variables.c:zend_string_init_fast Line | Count | Source | 197 | 165k | { | 198 | 165k | if (len > 1) { | 199 | 164k | return zend_string_init(str, len, 0); | 200 | 164k | } else if (len == 0) { | 201 | 490 | return zend_empty_string; | 202 | 735 | } else /* if (len == 1) */ { | 203 | 735 | return ZSTR_CHAR((zend_uchar) *str); | 204 | 735 | } | 205 | 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 |
206 | | |
207 | | static zend_always_inline zend_string *zend_string_copy(zend_string *s) |
208 | 11.5M | { |
209 | 11.5M | if (!ZSTR_IS_INTERNED(s)) { |
210 | 6.18M | GC_ADDREF(s); |
211 | 6.18M | } |
212 | 11.5M | return s; |
213 | 11.5M | } php_date.c:zend_string_copy Line | Count | Source | 208 | 80 | { | 209 | 80 | if (!ZSTR_IS_INTERNED(s)) { | 210 | 49 | GC_ADDREF(s); | 211 | 49 | } | 212 | 80 | return s; | 213 | 80 | } |
Unexecuted instantiation: astro.c:zend_string_copy Unexecuted instantiation: dow.c:zend_string_copy Unexecuted instantiation: parse_date.c:zend_string_copy Unexecuted instantiation: parse_tz.c:zend_string_copy Unexecuted instantiation: parse_posix.c:zend_string_copy Unexecuted instantiation: timelib.c:zend_string_copy Unexecuted instantiation: tm2unixtime.c:zend_string_copy Unexecuted instantiation: unixtime2tm.c:zend_string_copy Unexecuted instantiation: parse_iso_intervals.c:zend_string_copy Unexecuted instantiation: interval.c:zend_string_copy php_pcre.c:zend_string_copy Line | Count | Source | 208 | 158 | { | 209 | 158 | if (!ZSTR_IS_INTERNED(s)) { | 210 | 0 | GC_ADDREF(s); | 211 | 0 | } | 212 | 158 | return s; | 213 | 158 | } |
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 | 208 | 2.66k | { | 209 | 2.66k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 22 | GC_ADDREF(s); | 211 | 22 | } | 212 | 2.66k | return s; | 213 | 2.66k | } |
Unexecuted instantiation: php_spl.c:zend_string_copy Unexecuted instantiation: spl_array.c:zend_string_copy spl_directory.c:zend_string_copy Line | Count | Source | 208 | 5 | { | 209 | 5 | if (!ZSTR_IS_INTERNED(s)) { | 210 | 5 | GC_ADDREF(s); | 211 | 5 | } | 212 | 5 | return s; | 213 | 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 | 208 | 19 | { | 209 | 19 | if (!ZSTR_IS_INTERNED(s)) { | 210 | 19 | GC_ADDREF(s); | 211 | 19 | } | 212 | 19 | return s; | 213 | 19 | } |
Unexecuted instantiation: browscap.c:zend_string_copy Unexecuted instantiation: crc32_x86.c:zend_string_copy Unexecuted instantiation: crc32.c:zend_string_copy Unexecuted instantiation: credits.c:zend_string_copy Unexecuted instantiation: crypt.c:zend_string_copy Unexecuted instantiation: css.c:zend_string_copy Unexecuted instantiation: datetime.c:zend_string_copy Unexecuted instantiation: dir.c:zend_string_copy Unexecuted instantiation: dl.c:zend_string_copy Unexecuted instantiation: dns.c:zend_string_copy Unexecuted instantiation: exec.c:zend_string_copy Unexecuted instantiation: file.c:zend_string_copy Unexecuted instantiation: filestat.c:zend_string_copy Unexecuted instantiation: filters.c:zend_string_copy Unexecuted instantiation: flock_compat.c:zend_string_copy Unexecuted instantiation: formatted_print.c:zend_string_copy Unexecuted instantiation: fsock.c:zend_string_copy Unexecuted instantiation: ftok.c:zend_string_copy Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_copy Unexecuted instantiation: head.c:zend_string_copy Unexecuted instantiation: hrtime.c:zend_string_copy Line | Count | Source | 208 | 160 | { | 209 | 160 | if (!ZSTR_IS_INTERNED(s)) { | 210 | 160 | GC_ADDREF(s); | 211 | 160 | } | 212 | 160 | return s; | 213 | 160 | } |
Unexecuted instantiation: http_fopen_wrapper.c:zend_string_copy Unexecuted instantiation: http.c:zend_string_copy Unexecuted instantiation: image.c:zend_string_copy incomplete_class.c:zend_string_copy Line | Count | Source | 208 | 36 | { | 209 | 36 | if (!ZSTR_IS_INTERNED(s)) { | 210 | 0 | GC_ADDREF(s); | 211 | 0 | } | 212 | 36 | return s; | 213 | 36 | } |
Unexecuted instantiation: info.c:zend_string_copy Unexecuted instantiation: iptc.c:zend_string_copy Unexecuted instantiation: levenshtein.c:zend_string_copy Unexecuted instantiation: link.c:zend_string_copy Unexecuted instantiation: mail.c:zend_string_copy Unexecuted instantiation: math.c:zend_string_copy Unexecuted instantiation: md5.c:zend_string_copy Unexecuted instantiation: metaphone.c:zend_string_copy Unexecuted instantiation: microtime.c:zend_string_copy Unexecuted instantiation: net.c:zend_string_copy Unexecuted instantiation: pack.c:zend_string_copy Unexecuted instantiation: pageinfo.c:zend_string_copy Unexecuted instantiation: password.c:zend_string_copy Unexecuted instantiation: php_fopen_wrapper.c:zend_string_copy Unexecuted instantiation: proc_open.c:zend_string_copy Unexecuted instantiation: quot_print.c:zend_string_copy Unexecuted instantiation: scanf.c:zend_string_copy Unexecuted instantiation: sha1.c:zend_string_copy Unexecuted instantiation: soundex.c:zend_string_copy Unexecuted instantiation: streamsfuncs.c:zend_string_copy string.c:zend_string_copy Line | Count | Source | 208 | 2.27k | { | 209 | 2.27k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 2.05k | GC_ADDREF(s); | 211 | 2.05k | } | 212 | 2.27k | return s; | 213 | 2.27k | } |
Unexecuted instantiation: strnatcmp.c:zend_string_copy Unexecuted instantiation: syslog.c:zend_string_copy Unexecuted instantiation: type.c:zend_string_copy Unexecuted instantiation: uniqid.c:zend_string_copy Unexecuted instantiation: url_scanner_ex.c:zend_string_copy Unexecuted instantiation: url.c:zend_string_copy user_filters.c:zend_string_copy Line | Count | Source | 208 | 216 | { | 209 | 216 | if (!ZSTR_IS_INTERNED(s)) { | 210 | 0 | GC_ADDREF(s); | 211 | 0 | } | 212 | 216 | return s; | 213 | 216 | } |
Unexecuted instantiation: uuencode.c:zend_string_copy Unexecuted instantiation: var_unserializer.c:zend_string_copy Line | Count | Source | 208 | 359 | { | 209 | 359 | if (!ZSTR_IS_INTERNED(s)) { | 210 | 0 | GC_ADDREF(s); | 211 | 0 | } | 212 | 359 | return s; | 213 | 359 | } |
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: php_uriparser.c:zend_string_copy Unexecuted instantiation: explicit_bzero.c:zend_string_copy Unexecuted instantiation: fopen_wrappers.c:zend_string_copy Unexecuted instantiation: getopt.c:zend_string_copy Line | Count | Source | 208 | 6.01M | { | 209 | 6.01M | if (!ZSTR_IS_INTERNED(s)) { | 210 | 3.34M | GC_ADDREF(s); | 211 | 3.34M | } | 212 | 6.01M | return s; | 213 | 6.01M | } |
Unexecuted instantiation: network.c:zend_string_copy output.c:zend_string_copy Line | Count | Source | 208 | 2.37k | { | 209 | 2.37k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 2.32k | GC_ADDREF(s); | 211 | 2.32k | } | 212 | 2.37k | return s; | 213 | 2.37k | } |
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 | 208 | 681k | { | 209 | 681k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 143k | GC_ADDREF(s); | 211 | 143k | } | 212 | 681k | return s; | 213 | 681k | } |
Unexecuted instantiation: compact_vars.c:zend_string_copy Unexecuted instantiation: dce.c:zend_string_copy Unexecuted instantiation: dfa_pass.c:zend_string_copy Unexecuted instantiation: escape_analysis.c:zend_string_copy Unexecuted instantiation: nop_removal.c:zend_string_copy Unexecuted instantiation: optimize_func_calls.c:zend_string_copy Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_copy Unexecuted instantiation: pass1.c:zend_string_copy Unexecuted instantiation: pass3.c:zend_string_copy Unexecuted instantiation: sccp.c:zend_string_copy Unexecuted instantiation: scdf.c:zend_string_copy Unexecuted instantiation: zend_call_graph.c:zend_string_copy Unexecuted instantiation: zend_cfg.c:zend_string_copy Unexecuted instantiation: zend_dfg.c:zend_string_copy Unexecuted instantiation: zend_dump.c:zend_string_copy Unexecuted instantiation: zend_func_info.c:zend_string_copy Unexecuted instantiation: zend_inference.c:zend_string_copy Unexecuted instantiation: zend_optimizer.c:zend_string_copy Unexecuted instantiation: zend_ssa.c:zend_string_copy Unexecuted instantiation: zend_alloc.c:zend_string_copy zend_API.c:zend_string_copy Line | Count | Source | 208 | 35.0k | { | 209 | 35.0k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 1.24k | GC_ADDREF(s); | 211 | 1.24k | } | 212 | 35.0k | return s; | 213 | 35.0k | } |
Unexecuted instantiation: zend_ast.c:zend_string_copy zend_attributes.c:zend_string_copy Line | Count | Source | 208 | 441k | { | 209 | 441k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 440k | GC_ADDREF(s); | 211 | 440k | } | 212 | 441k | return s; | 213 | 441k | } |
zend_builtin_functions.c:zend_string_copy Line | Count | Source | 208 | 31.5k | { | 209 | 31.5k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 5 | GC_ADDREF(s); | 211 | 5 | } | 212 | 31.5k | return s; | 213 | 31.5k | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_copy Unexecuted instantiation: zend_closures.c:zend_string_copy zend_compile.c:zend_string_copy Line | Count | Source | 208 | 2.28M | { | 209 | 2.28M | if (!ZSTR_IS_INTERNED(s)) { | 210 | 1.00M | GC_ADDREF(s); | 211 | 1.00M | } | 212 | 2.28M | return s; | 213 | 2.28M | } |
zend_constants.c:zend_string_copy Line | Count | Source | 208 | 2.71k | { | 209 | 2.71k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 37 | GC_ADDREF(s); | 211 | 37 | } | 212 | 2.71k | return s; | 213 | 2.71k | } |
Unexecuted instantiation: zend_cpuinfo.c:zend_string_copy Unexecuted instantiation: zend_default_classes.c:zend_string_copy Unexecuted instantiation: zend_dtrace.c:zend_string_copy zend_enum.c:zend_string_copy Line | Count | Source | 208 | 5.56k | { | 209 | 5.56k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 0 | GC_ADDREF(s); | 211 | 0 | } | 212 | 5.56k | return s; | 213 | 5.56k | } |
zend_exceptions.c:zend_string_copy Line | Count | Source | 208 | 95.6k | { | 209 | 95.6k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 93.1k | GC_ADDREF(s); | 211 | 93.1k | } | 212 | 95.6k | return s; | 213 | 95.6k | } |
zend_execute_API.c:zend_string_copy Line | Count | Source | 208 | 222k | { | 209 | 222k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 1.11k | GC_ADDREF(s); | 211 | 1.11k | } | 212 | 222k | return s; | 213 | 222k | } |
zend_execute.c:zend_string_copy Line | Count | Source | 208 | 218k | { | 209 | 218k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 207k | GC_ADDREF(s); | 211 | 207k | } | 212 | 218k | return s; | 213 | 218k | } |
Unexecuted instantiation: zend_extensions.c:zend_string_copy Unexecuted instantiation: zend_fibers.c:zend_string_copy Unexecuted instantiation: zend_float.c:zend_string_copy Unexecuted instantiation: zend_gc.c:zend_string_copy Unexecuted instantiation: zend_gdb.c:zend_string_copy Unexecuted instantiation: zend_generators.c:zend_string_copy Unexecuted instantiation: zend_hash.c:zend_string_copy Unexecuted instantiation: zend_highlight.c:zend_string_copy Unexecuted instantiation: zend_hrtime.c:zend_string_copy zend_inheritance.c:zend_string_copy Line | Count | Source | 208 | 32 | { | 209 | 32 | if (!ZSTR_IS_INTERNED(s)) { | 210 | 0 | GC_ADDREF(s); | 211 | 0 | } | 212 | 32 | return s; | 213 | 32 | } |
Unexecuted instantiation: zend_ini_parser.c:zend_string_copy Unexecuted instantiation: zend_ini_scanner.c:zend_string_copy zend_ini.c:zend_string_copy Line | Count | Source | 208 | 86.7k | { | 209 | 86.7k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 86.3k | GC_ADDREF(s); | 211 | 86.3k | } | 212 | 86.7k | return s; | 213 | 86.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 | 208 | 143k | { | 209 | 143k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 143k | GC_ADDREF(s); | 211 | 143k | } | 212 | 143k | return s; | 213 | 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 | 208 | 14.0k | { | 209 | 14.0k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 487 | GC_ADDREF(s); | 211 | 487 | } | 212 | 14.0k | return s; | 213 | 14.0k | } |
Unexecuted instantiation: zend_objects_API.c:zend_string_copy Unexecuted instantiation: zend_objects.c:zend_string_copy Unexecuted instantiation: zend_observer.c:zend_string_copy zend_opcode.c:zend_string_copy Line | Count | Source | 208 | 266k | { | 209 | 266k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 266k | GC_ADDREF(s); | 211 | 266k | } | 212 | 266k | return s; | 213 | 266k | } |
zend_operators.c:zend_string_copy Line | Count | Source | 208 | 858k | { | 209 | 858k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 380k | GC_ADDREF(s); | 211 | 380k | } | 212 | 858k | return s; | 213 | 858k | } |
Unexecuted instantiation: zend_property_hooks.c:zend_string_copy Unexecuted instantiation: zend_ptr_stack.c:zend_string_copy Unexecuted instantiation: zend_signal.c:zend_string_copy Unexecuted instantiation: zend_smart_str.c:zend_string_copy Unexecuted instantiation: zend_sort.c:zend_string_copy Unexecuted instantiation: zend_stack.c:zend_string_copy zend_stream.c:zend_string_copy Line | Count | Source | 208 | 172k | { | 209 | 172k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 68.5k | GC_ADDREF(s); | 211 | 68.5k | } | 212 | 172k | return s; | 213 | 172k | } |
Unexecuted instantiation: zend_string.c:zend_string_copy Unexecuted instantiation: zend_strtod.c:zend_string_copy Unexecuted instantiation: zend_system_id.c:zend_string_copy Unexecuted instantiation: zend_variables.c:zend_string_copy Unexecuted instantiation: zend_virtual_cwd.c:zend_string_copy Unexecuted instantiation: zend_vm_opcodes.c:zend_string_copy Unexecuted instantiation: zend_weakrefs.c:zend_string_copy Line | Count | Source | 208 | 1.24k | { | 209 | 1.24k | if (!ZSTR_IS_INTERNED(s)) { | 210 | 622 | GC_ADDREF(s); | 211 | 622 | } | 212 | 1.24k | return s; | 213 | 1.24k | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_copy Unexecuted instantiation: fuzzer-parser.c:zend_string_copy Unexecuted instantiation: fuzzer-sapi.c:zend_string_copy Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_copy Unexecuted instantiation: fuzzer-exif.c:zend_string_copy Unexecuted instantiation: fuzzer-unserialize.c:zend_string_copy Unexecuted instantiation: fuzzer-function-jit.c:zend_string_copy Unexecuted instantiation: fuzzer-json.c:zend_string_copy Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_copy Unexecuted instantiation: fuzzer-execute.c:zend_string_copy |
214 | | |
215 | | static zend_always_inline zend_string *zend_string_dup(zend_string *s, bool persistent) |
216 | 1.85k | { |
217 | 1.85k | if (ZSTR_IS_INTERNED(s)) { |
218 | 1.52k | return s; |
219 | 1.52k | } else { |
220 | 331 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); |
221 | 331 | } |
222 | 1.85k | } 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: php_uriparser.c:zend_string_dup Unexecuted instantiation: explicit_bzero.c:zend_string_dup Unexecuted instantiation: fopen_wrappers.c:zend_string_dup Unexecuted instantiation: getopt.c:zend_string_dup Unexecuted instantiation: main.c:zend_string_dup Unexecuted instantiation: network.c:zend_string_dup Unexecuted instantiation: output.c:zend_string_dup Unexecuted instantiation: php_content_types.c:zend_string_dup Unexecuted instantiation: php_ini_builder.c:zend_string_dup php_ini.c:zend_string_dup Line | Count | Source | 216 | 224 | { | 217 | 224 | if (ZSTR_IS_INTERNED(s)) { | 218 | 0 | return s; | 219 | 224 | } else { | 220 | 224 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); | 221 | 224 | } | 222 | 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 | 216 | 1.52k | { | 217 | 1.52k | if (ZSTR_IS_INTERNED(s)) { | 218 | 1.52k | return s; | 219 | 1.52k | } else { | 220 | 0 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); | 221 | 0 | } | 222 | 1.52k | } |
Unexecuted instantiation: zend_builtin_functions.c:zend_string_dup Unexecuted instantiation: zend_call_stack.c:zend_string_dup Unexecuted instantiation: zend_closures.c:zend_string_dup Unexecuted instantiation: zend_compile.c:zend_string_dup Unexecuted instantiation: zend_constants.c:zend_string_dup Unexecuted instantiation: zend_cpuinfo.c:zend_string_dup Unexecuted instantiation: zend_default_classes.c:zend_string_dup Unexecuted instantiation: zend_dtrace.c:zend_string_dup Unexecuted instantiation: zend_enum.c:zend_string_dup Unexecuted instantiation: zend_exceptions.c:zend_string_dup Unexecuted instantiation: zend_execute_API.c:zend_string_dup Unexecuted instantiation: zend_execute.c:zend_string_dup Unexecuted instantiation: zend_extensions.c:zend_string_dup Unexecuted instantiation: zend_fibers.c:zend_string_dup Unexecuted instantiation: zend_float.c:zend_string_dup Unexecuted instantiation: zend_gc.c:zend_string_dup Unexecuted instantiation: zend_gdb.c:zend_string_dup Unexecuted instantiation: zend_generators.c:zend_string_dup Unexecuted instantiation: zend_hash.c:zend_string_dup Unexecuted instantiation: zend_highlight.c:zend_string_dup Unexecuted instantiation: zend_hrtime.c:zend_string_dup Unexecuted instantiation: zend_inheritance.c:zend_string_dup Unexecuted instantiation: zend_ini_parser.c:zend_string_dup Unexecuted instantiation: zend_ini_scanner.c:zend_string_dup Unexecuted instantiation: zend_ini.c:zend_string_dup Unexecuted instantiation: zend_interfaces.c:zend_string_dup Unexecuted instantiation: zend_iterators.c:zend_string_dup Unexecuted instantiation: zend_language_parser.c:zend_string_dup Unexecuted instantiation: zend_language_scanner.c:zend_string_dup Unexecuted instantiation: zend_lazy_objects.c:zend_string_dup Unexecuted instantiation: zend_list.c:zend_string_dup Unexecuted instantiation: zend_llist.c:zend_string_dup Unexecuted instantiation: zend_multibyte.c:zend_string_dup Unexecuted instantiation: zend_object_handlers.c:zend_string_dup Unexecuted instantiation: zend_objects_API.c:zend_string_dup Unexecuted instantiation: zend_objects.c:zend_string_dup Unexecuted instantiation: zend_observer.c:zend_string_dup Unexecuted instantiation: zend_opcode.c:zend_string_dup Unexecuted instantiation: zend_operators.c:zend_string_dup Unexecuted instantiation: zend_property_hooks.c:zend_string_dup Unexecuted instantiation: zend_ptr_stack.c:zend_string_dup Unexecuted instantiation: zend_signal.c:zend_string_dup Unexecuted instantiation: zend_smart_str.c:zend_string_dup Unexecuted instantiation: zend_sort.c:zend_string_dup Unexecuted instantiation: zend_stack.c:zend_string_dup Unexecuted instantiation: zend_stream.c:zend_string_dup Unexecuted instantiation: zend_string.c:zend_string_dup Unexecuted instantiation: zend_strtod.c:zend_string_dup Unexecuted instantiation: zend_system_id.c:zend_string_dup zend_variables.c:zend_string_dup Line | Count | Source | 216 | 107 | { | 217 | 107 | if (ZSTR_IS_INTERNED(s)) { | 218 | 0 | return s; | 219 | 107 | } else { | 220 | 107 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); | 221 | 107 | } | 222 | 107 | } |
Unexecuted instantiation: zend_virtual_cwd.c:zend_string_dup Unexecuted instantiation: zend_vm_opcodes.c:zend_string_dup Unexecuted instantiation: zend_weakrefs.c:zend_string_dup Unexecuted instantiation: zend.c:zend_string_dup Unexecuted instantiation: internal_functions_cli.c:zend_string_dup Unexecuted instantiation: fuzzer-parser.c:zend_string_dup Unexecuted instantiation: fuzzer-sapi.c:zend_string_dup Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_dup Unexecuted instantiation: fuzzer-exif.c:zend_string_dup Unexecuted instantiation: fuzzer-unserialize.c:zend_string_dup Unexecuted instantiation: fuzzer-function-jit.c:zend_string_dup Unexecuted instantiation: fuzzer-json.c:zend_string_dup Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_dup Unexecuted instantiation: fuzzer-execute.c:zend_string_dup |
223 | | |
224 | | static zend_always_inline zend_string *zend_string_separate(zend_string *s, bool persistent) |
225 | 0 | { |
226 | 0 | if (ZSTR_IS_INTERNED(s) || GC_REFCOUNT(s) > 1) { |
227 | 0 | if (!ZSTR_IS_INTERNED(s)) { |
228 | 0 | GC_DELREF(s); |
229 | 0 | } |
230 | 0 | return zend_string_init(ZSTR_VAL(s), ZSTR_LEN(s), persistent); |
231 | 0 | } |
232 | | |
233 | 0 | zend_string_forget_hash_val(s); |
234 | 0 | return s; |
235 | 0 | } Unexecuted instantiation: php_date.c:zend_string_separate Unexecuted instantiation: astro.c:zend_string_separate Unexecuted instantiation: dow.c:zend_string_separate Unexecuted instantiation: parse_date.c:zend_string_separate Unexecuted instantiation: parse_tz.c:zend_string_separate Unexecuted instantiation: parse_posix.c:zend_string_separate Unexecuted instantiation: timelib.c:zend_string_separate Unexecuted instantiation: tm2unixtime.c:zend_string_separate Unexecuted instantiation: unixtime2tm.c:zend_string_separate Unexecuted instantiation: parse_iso_intervals.c:zend_string_separate Unexecuted instantiation: interval.c:zend_string_separate Unexecuted instantiation: php_pcre.c:zend_string_separate Unexecuted instantiation: exif.c:zend_string_separate Unexecuted instantiation: hash_adler32.c:zend_string_separate Unexecuted instantiation: hash_crc32.c:zend_string_separate Unexecuted instantiation: hash_fnv.c:zend_string_separate Unexecuted instantiation: hash_gost.c:zend_string_separate Unexecuted instantiation: hash_haval.c:zend_string_separate Unexecuted instantiation: hash_joaat.c:zend_string_separate Unexecuted instantiation: hash_md.c:zend_string_separate Unexecuted instantiation: hash_murmur.c:zend_string_separate Unexecuted instantiation: hash_ripemd.c:zend_string_separate Unexecuted instantiation: hash_sha_ni.c:zend_string_separate Unexecuted instantiation: hash_sha_sse2.c:zend_string_separate Unexecuted instantiation: hash_sha.c:zend_string_separate Unexecuted instantiation: hash_sha3.c:zend_string_separate Unexecuted instantiation: hash_snefru.c:zend_string_separate Unexecuted instantiation: hash_tiger.c:zend_string_separate Unexecuted instantiation: hash_whirlpool.c:zend_string_separate Unexecuted instantiation: hash_xxhash.c:zend_string_separate Unexecuted instantiation: hash.c:zend_string_separate Unexecuted instantiation: json_encoder.c:zend_string_separate Unexecuted instantiation: json_parser.tab.c:zend_string_separate Unexecuted instantiation: json_scanner.c:zend_string_separate Unexecuted instantiation: json.c:zend_string_separate Unexecuted instantiation: php_lexbor.c:zend_string_separate Unexecuted instantiation: 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: php_uriparser.c:zend_string_separate Unexecuted instantiation: explicit_bzero.c:zend_string_separate Unexecuted instantiation: fopen_wrappers.c:zend_string_separate Unexecuted instantiation: getopt.c:zend_string_separate Unexecuted instantiation: main.c:zend_string_separate Unexecuted instantiation: network.c:zend_string_separate Unexecuted instantiation: output.c:zend_string_separate Unexecuted instantiation: php_content_types.c:zend_string_separate Unexecuted instantiation: php_ini_builder.c:zend_string_separate Unexecuted instantiation: php_ini.c:zend_string_separate Unexecuted instantiation: php_glob.c:zend_string_separate Unexecuted instantiation: php_odbc_utils.c:zend_string_separate Unexecuted instantiation: php_open_temporary_file.c:zend_string_separate Unexecuted instantiation: php_scandir.c:zend_string_separate Unexecuted instantiation: php_syslog.c:zend_string_separate Unexecuted instantiation: php_ticks.c:zend_string_separate Unexecuted instantiation: php_variables.c:zend_string_separate Unexecuted instantiation: reentrancy.c:zend_string_separate Unexecuted instantiation: rfc1867.c:zend_string_separate Unexecuted instantiation: safe_bcmp.c:zend_string_separate Unexecuted instantiation: SAPI.c:zend_string_separate Unexecuted instantiation: snprintf.c:zend_string_separate Unexecuted instantiation: spprintf.c:zend_string_separate Unexecuted instantiation: strlcat.c:zend_string_separate Unexecuted instantiation: strlcpy.c:zend_string_separate Unexecuted instantiation: cast.c:zend_string_separate Unexecuted instantiation: filter.c:zend_string_separate Unexecuted instantiation: glob_wrapper.c:zend_string_separate Unexecuted instantiation: memory.c:zend_string_separate Unexecuted instantiation: mmap.c:zend_string_separate Unexecuted instantiation: plain_wrapper.c:zend_string_separate Unexecuted instantiation: streams.c:zend_string_separate Unexecuted instantiation: transports.c:zend_string_separate Unexecuted instantiation: userspace.c:zend_string_separate Unexecuted instantiation: xp_socket.c:zend_string_separate Unexecuted instantiation: block_pass.c:zend_string_separate Unexecuted instantiation: compact_literals.c:zend_string_separate Unexecuted instantiation: compact_vars.c:zend_string_separate Unexecuted instantiation: dce.c:zend_string_separate Unexecuted instantiation: dfa_pass.c:zend_string_separate Unexecuted instantiation: escape_analysis.c:zend_string_separate Unexecuted instantiation: nop_removal.c:zend_string_separate Unexecuted instantiation: optimize_func_calls.c:zend_string_separate Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_separate Unexecuted instantiation: pass1.c:zend_string_separate Unexecuted instantiation: pass3.c:zend_string_separate Unexecuted instantiation: sccp.c:zend_string_separate Unexecuted instantiation: scdf.c:zend_string_separate Unexecuted instantiation: zend_call_graph.c:zend_string_separate Unexecuted instantiation: zend_cfg.c:zend_string_separate Unexecuted instantiation: zend_dfg.c:zend_string_separate Unexecuted instantiation: zend_dump.c:zend_string_separate Unexecuted instantiation: zend_func_info.c:zend_string_separate Unexecuted instantiation: zend_inference.c:zend_string_separate Unexecuted instantiation: zend_optimizer.c:zend_string_separate Unexecuted instantiation: zend_ssa.c:zend_string_separate Unexecuted instantiation: zend_alloc.c:zend_string_separate Unexecuted instantiation: zend_API.c:zend_string_separate Unexecuted instantiation: zend_ast.c:zend_string_separate Unexecuted instantiation: zend_attributes.c:zend_string_separate Unexecuted instantiation: zend_builtin_functions.c:zend_string_separate Unexecuted instantiation: zend_call_stack.c:zend_string_separate Unexecuted instantiation: zend_closures.c:zend_string_separate Unexecuted instantiation: zend_compile.c:zend_string_separate Unexecuted instantiation: zend_constants.c:zend_string_separate Unexecuted instantiation: zend_cpuinfo.c:zend_string_separate Unexecuted instantiation: zend_default_classes.c:zend_string_separate Unexecuted instantiation: zend_dtrace.c:zend_string_separate Unexecuted instantiation: zend_enum.c:zend_string_separate Unexecuted instantiation: zend_exceptions.c:zend_string_separate Unexecuted instantiation: zend_execute_API.c:zend_string_separate Unexecuted instantiation: zend_execute.c:zend_string_separate Unexecuted instantiation: zend_extensions.c:zend_string_separate Unexecuted instantiation: zend_fibers.c:zend_string_separate Unexecuted instantiation: zend_float.c:zend_string_separate Unexecuted instantiation: zend_gc.c:zend_string_separate Unexecuted instantiation: zend_gdb.c:zend_string_separate Unexecuted instantiation: zend_generators.c:zend_string_separate Unexecuted instantiation: zend_hash.c:zend_string_separate Unexecuted instantiation: zend_highlight.c:zend_string_separate Unexecuted instantiation: zend_hrtime.c:zend_string_separate Unexecuted instantiation: zend_inheritance.c:zend_string_separate Unexecuted instantiation: zend_ini_parser.c:zend_string_separate Unexecuted instantiation: zend_ini_scanner.c:zend_string_separate Unexecuted instantiation: zend_ini.c:zend_string_separate Unexecuted instantiation: zend_interfaces.c:zend_string_separate Unexecuted instantiation: zend_iterators.c:zend_string_separate Unexecuted instantiation: zend_language_parser.c:zend_string_separate Unexecuted instantiation: zend_language_scanner.c:zend_string_separate Unexecuted instantiation: zend_lazy_objects.c:zend_string_separate Unexecuted instantiation: zend_list.c:zend_string_separate Unexecuted instantiation: zend_llist.c:zend_string_separate Unexecuted instantiation: zend_multibyte.c:zend_string_separate Unexecuted instantiation: zend_object_handlers.c:zend_string_separate Unexecuted instantiation: zend_objects_API.c:zend_string_separate Unexecuted instantiation: zend_objects.c:zend_string_separate Unexecuted instantiation: zend_observer.c:zend_string_separate Unexecuted instantiation: zend_opcode.c:zend_string_separate Unexecuted instantiation: zend_operators.c:zend_string_separate Unexecuted instantiation: zend_property_hooks.c:zend_string_separate Unexecuted instantiation: zend_ptr_stack.c:zend_string_separate Unexecuted instantiation: zend_signal.c:zend_string_separate Unexecuted instantiation: zend_smart_str.c:zend_string_separate Unexecuted instantiation: zend_sort.c:zend_string_separate Unexecuted instantiation: zend_stack.c:zend_string_separate Unexecuted instantiation: zend_stream.c:zend_string_separate Unexecuted instantiation: zend_string.c:zend_string_separate Unexecuted instantiation: zend_strtod.c:zend_string_separate Unexecuted instantiation: zend_system_id.c:zend_string_separate Unexecuted instantiation: zend_variables.c:zend_string_separate Unexecuted instantiation: zend_virtual_cwd.c:zend_string_separate Unexecuted instantiation: zend_vm_opcodes.c:zend_string_separate Unexecuted instantiation: zend_weakrefs.c:zend_string_separate Unexecuted instantiation: zend.c:zend_string_separate Unexecuted instantiation: internal_functions_cli.c:zend_string_separate Unexecuted instantiation: fuzzer-parser.c:zend_string_separate Unexecuted instantiation: fuzzer-sapi.c:zend_string_separate Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_separate Unexecuted instantiation: fuzzer-exif.c:zend_string_separate Unexecuted instantiation: fuzzer-unserialize.c:zend_string_separate Unexecuted instantiation: fuzzer-function-jit.c:zend_string_separate Unexecuted instantiation: fuzzer-json.c:zend_string_separate Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_separate Unexecuted instantiation: fuzzer-execute.c:zend_string_separate |
236 | | |
237 | | static zend_always_inline zend_string *zend_string_realloc(zend_string *s, size_t len, bool persistent) |
238 | 4.19M | { |
239 | 4.19M | zend_string *ret; |
240 | | |
241 | 4.19M | if (!ZSTR_IS_INTERNED(s)) { |
242 | 4.18M | if (EXPECTED(GC_REFCOUNT(s) == 1)) { |
243 | 4.18M | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); |
244 | 4.18M | ZSTR_LEN(ret) = len; |
245 | 4.18M | zend_string_forget_hash_val(ret); |
246 | 4.18M | return ret; |
247 | 4.18M | } |
248 | 4.18M | } |
249 | 5.80k | ret = zend_string_alloc(len, persistent); |
250 | 5.80k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); |
251 | 5.80k | if (!ZSTR_IS_INTERNED(s)) { |
252 | 0 | GC_DELREF(s); |
253 | 0 | } |
254 | 5.80k | return ret; |
255 | 4.19M | } Unexecuted instantiation: php_date.c:zend_string_realloc Unexecuted instantiation: astro.c:zend_string_realloc Unexecuted instantiation: dow.c:zend_string_realloc Unexecuted instantiation: parse_date.c:zend_string_realloc Unexecuted instantiation: parse_tz.c:zend_string_realloc Unexecuted instantiation: parse_posix.c:zend_string_realloc Unexecuted instantiation: timelib.c:zend_string_realloc Unexecuted instantiation: tm2unixtime.c:zend_string_realloc Unexecuted instantiation: unixtime2tm.c:zend_string_realloc Unexecuted instantiation: parse_iso_intervals.c:zend_string_realloc Unexecuted instantiation: interval.c:zend_string_realloc php_pcre.c:zend_string_realloc Line | Count | Source | 238 | 234 | { | 239 | 234 | zend_string *ret; | 240 | | | 241 | 234 | if (!ZSTR_IS_INTERNED(s)) { | 242 | 234 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 243 | 234 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 244 | 234 | ZSTR_LEN(ret) = len; | 245 | 234 | zend_string_forget_hash_val(ret); | 246 | 234 | return ret; | 247 | 234 | } | 248 | 234 | } | 249 | 0 | ret = zend_string_alloc(len, persistent); | 250 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 251 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 252 | 0 | GC_DELREF(s); | 253 | 0 | } | 254 | 0 | return ret; | 255 | 234 | } |
Unexecuted instantiation: exif.c:zend_string_realloc Unexecuted instantiation: hash_adler32.c:zend_string_realloc Unexecuted instantiation: hash_crc32.c:zend_string_realloc Unexecuted instantiation: hash_fnv.c:zend_string_realloc Unexecuted instantiation: hash_gost.c:zend_string_realloc Unexecuted instantiation: hash_haval.c:zend_string_realloc Unexecuted instantiation: hash_joaat.c:zend_string_realloc Unexecuted instantiation: hash_md.c:zend_string_realloc Unexecuted instantiation: hash_murmur.c:zend_string_realloc Unexecuted instantiation: hash_ripemd.c:zend_string_realloc Unexecuted instantiation: hash_sha_ni.c:zend_string_realloc Unexecuted instantiation: hash_sha_sse2.c:zend_string_realloc Unexecuted instantiation: hash_sha.c:zend_string_realloc Unexecuted instantiation: hash_sha3.c:zend_string_realloc Unexecuted instantiation: hash_snefru.c:zend_string_realloc Unexecuted instantiation: hash_tiger.c:zend_string_realloc Unexecuted instantiation: hash_whirlpool.c:zend_string_realloc Unexecuted instantiation: hash_xxhash.c:zend_string_realloc Unexecuted instantiation: hash.c:zend_string_realloc Unexecuted instantiation: json_encoder.c:zend_string_realloc Unexecuted instantiation: json_parser.tab.c:zend_string_realloc Unexecuted instantiation: json_scanner.c:zend_string_realloc json.c:zend_string_realloc Line | Count | Source | 238 | 2.28k | { | 239 | 2.28k | zend_string *ret; | 240 | | | 241 | 2.28k | if (!ZSTR_IS_INTERNED(s)) { | 242 | 2.28k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 243 | 2.28k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 244 | 2.28k | ZSTR_LEN(ret) = len; | 245 | 2.28k | zend_string_forget_hash_val(ret); | 246 | 2.28k | return ret; | 247 | 2.28k | } | 248 | 2.28k | } | 249 | 0 | ret = zend_string_alloc(len, persistent); | 250 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 251 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 252 | 0 | GC_DELREF(s); | 253 | 0 | } | 254 | 0 | return ret; | 255 | 2.28k | } |
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 | 238 | 326 | { | 239 | 326 | zend_string *ret; | 240 | | | 241 | 326 | if (!ZSTR_IS_INTERNED(s)) { | 242 | 326 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 243 | 326 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 244 | 326 | ZSTR_LEN(ret) = len; | 245 | 326 | zend_string_forget_hash_val(ret); | 246 | 326 | return ret; | 247 | 326 | } | 248 | 326 | } | 249 | 0 | ret = zend_string_alloc(len, persistent); | 250 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 251 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 252 | 0 | GC_DELREF(s); | 253 | 0 | } | 254 | 0 | return ret; | 255 | 326 | } |
Unexecuted instantiation: php_spl.c:zend_string_realloc Unexecuted instantiation: spl_array.c:zend_string_realloc Unexecuted instantiation: spl_directory.c:zend_string_realloc Unexecuted instantiation: spl_dllist.c:zend_string_realloc Unexecuted instantiation: spl_exceptions.c:zend_string_realloc Unexecuted instantiation: spl_fixedarray.c:zend_string_realloc Unexecuted instantiation: spl_functions.c:zend_string_realloc Unexecuted instantiation: spl_heap.c:zend_string_realloc Unexecuted instantiation: spl_iterators.c:zend_string_realloc Unexecuted instantiation: spl_observer.c:zend_string_realloc Unexecuted instantiation: array.c:zend_string_realloc Unexecuted instantiation: assert.c:zend_string_realloc Unexecuted instantiation: base64.c:zend_string_realloc Unexecuted instantiation: basic_functions.c:zend_string_realloc Unexecuted instantiation: browscap.c:zend_string_realloc Unexecuted instantiation: crc32_x86.c:zend_string_realloc Unexecuted instantiation: crc32.c:zend_string_realloc Unexecuted instantiation: credits.c:zend_string_realloc Unexecuted instantiation: crypt.c:zend_string_realloc Unexecuted instantiation: css.c:zend_string_realloc Unexecuted instantiation: datetime.c:zend_string_realloc Unexecuted instantiation: dir.c:zend_string_realloc Unexecuted instantiation: dl.c:zend_string_realloc Unexecuted instantiation: dns.c:zend_string_realloc Unexecuted instantiation: exec.c:zend_string_realloc Unexecuted instantiation: file.c:zend_string_realloc Unexecuted instantiation: filestat.c:zend_string_realloc Unexecuted instantiation: filters.c:zend_string_realloc Unexecuted instantiation: flock_compat.c:zend_string_realloc Unexecuted instantiation: formatted_print.c:zend_string_realloc Unexecuted instantiation: fsock.c:zend_string_realloc Unexecuted instantiation: ftok.c:zend_string_realloc Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_realloc Unexecuted instantiation: head.c:zend_string_realloc Unexecuted instantiation: hrtime.c:zend_string_realloc Unexecuted instantiation: html.c:zend_string_realloc Unexecuted instantiation: http_fopen_wrapper.c:zend_string_realloc Unexecuted instantiation: http.c:zend_string_realloc Unexecuted instantiation: image.c:zend_string_realloc Unexecuted instantiation: incomplete_class.c:zend_string_realloc Unexecuted instantiation: info.c:zend_string_realloc Unexecuted instantiation: iptc.c:zend_string_realloc Unexecuted instantiation: levenshtein.c:zend_string_realloc Unexecuted instantiation: link.c:zend_string_realloc Unexecuted instantiation: mail.c:zend_string_realloc Unexecuted instantiation: math.c:zend_string_realloc Unexecuted instantiation: md5.c:zend_string_realloc Unexecuted instantiation: metaphone.c:zend_string_realloc Unexecuted instantiation: microtime.c:zend_string_realloc Unexecuted instantiation: net.c:zend_string_realloc Unexecuted instantiation: pack.c:zend_string_realloc Unexecuted instantiation: pageinfo.c:zend_string_realloc Unexecuted instantiation: password.c:zend_string_realloc Unexecuted instantiation: php_fopen_wrapper.c:zend_string_realloc Unexecuted instantiation: proc_open.c:zend_string_realloc Unexecuted instantiation: quot_print.c:zend_string_realloc Unexecuted instantiation: scanf.c:zend_string_realloc Unexecuted instantiation: sha1.c:zend_string_realloc Unexecuted instantiation: soundex.c:zend_string_realloc Unexecuted instantiation: streamsfuncs.c:zend_string_realloc Unexecuted instantiation: string.c:zend_string_realloc Unexecuted instantiation: strnatcmp.c:zend_string_realloc Unexecuted instantiation: syslog.c:zend_string_realloc Unexecuted instantiation: type.c:zend_string_realloc Unexecuted instantiation: uniqid.c:zend_string_realloc Unexecuted instantiation: url_scanner_ex.c:zend_string_realloc Unexecuted instantiation: url.c:zend_string_realloc Unexecuted instantiation: user_filters.c:zend_string_realloc Unexecuted instantiation: uuencode.c:zend_string_realloc Unexecuted instantiation: var_unserializer.c:zend_string_realloc var.c:zend_string_realloc Line | Count | Source | 238 | 1.30k | { | 239 | 1.30k | zend_string *ret; | 240 | | | 241 | 1.30k | if (!ZSTR_IS_INTERNED(s)) { | 242 | 1.30k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 243 | 1.30k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 244 | 1.30k | ZSTR_LEN(ret) = len; | 245 | 1.30k | zend_string_forget_hash_val(ret); | 246 | 1.30k | return ret; | 247 | 1.30k | } | 248 | 1.30k | } | 249 | 0 | ret = zend_string_alloc(len, persistent); | 250 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 251 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 252 | 0 | GC_DELREF(s); | 253 | 0 | } | 254 | 0 | return ret; | 255 | 1.30k | } |
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: php_uriparser.c:zend_string_realloc Unexecuted instantiation: explicit_bzero.c:zend_string_realloc fopen_wrappers.c:zend_string_realloc Line | Count | Source | 238 | 23 | { | 239 | 23 | zend_string *ret; | 240 | | | 241 | 23 | if (!ZSTR_IS_INTERNED(s)) { | 242 | 23 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 243 | 23 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 244 | 23 | ZSTR_LEN(ret) = len; | 245 | 23 | zend_string_forget_hash_val(ret); | 246 | 23 | return ret; | 247 | 23 | } | 248 | 23 | } | 249 | 0 | ret = zend_string_alloc(len, persistent); | 250 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 251 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 252 | 0 | GC_DELREF(s); | 253 | 0 | } | 254 | 0 | return ret; | 255 | 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 | 238 | 5.80k | { | 239 | 5.80k | zend_string *ret; | 240 | | | 241 | 5.80k | if (!ZSTR_IS_INTERNED(s)) { | 242 | 0 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 243 | 0 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 244 | 0 | ZSTR_LEN(ret) = len; | 245 | 0 | zend_string_forget_hash_val(ret); | 246 | 0 | return ret; | 247 | 0 | } | 248 | 0 | } | 249 | 5.80k | ret = zend_string_alloc(len, persistent); | 250 | 5.80k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 251 | 5.80k | if (!ZSTR_IS_INTERNED(s)) { | 252 | 0 | GC_DELREF(s); | 253 | 0 | } | 254 | 5.80k | return ret; | 255 | 5.80k | } |
Unexecuted instantiation: mmap.c:zend_string_realloc Unexecuted instantiation: plain_wrapper.c:zend_string_realloc Unexecuted instantiation: streams.c:zend_string_realloc Unexecuted instantiation: transports.c:zend_string_realloc Unexecuted instantiation: userspace.c:zend_string_realloc Unexecuted instantiation: xp_socket.c:zend_string_realloc Unexecuted instantiation: block_pass.c:zend_string_realloc Unexecuted instantiation: compact_literals.c:zend_string_realloc Unexecuted instantiation: compact_vars.c:zend_string_realloc Unexecuted instantiation: dce.c:zend_string_realloc Unexecuted instantiation: dfa_pass.c:zend_string_realloc Unexecuted instantiation: escape_analysis.c:zend_string_realloc Unexecuted instantiation: nop_removal.c:zend_string_realloc Unexecuted instantiation: optimize_func_calls.c:zend_string_realloc Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_realloc Unexecuted instantiation: pass1.c:zend_string_realloc Unexecuted instantiation: pass3.c:zend_string_realloc Unexecuted instantiation: sccp.c:zend_string_realloc Unexecuted instantiation: scdf.c:zend_string_realloc Unexecuted instantiation: zend_call_graph.c:zend_string_realloc Unexecuted instantiation: zend_cfg.c:zend_string_realloc Unexecuted instantiation: zend_dfg.c:zend_string_realloc Unexecuted instantiation: zend_dump.c:zend_string_realloc Unexecuted instantiation: zend_func_info.c:zend_string_realloc Unexecuted instantiation: zend_inference.c:zend_string_realloc Unexecuted instantiation: zend_optimizer.c:zend_string_realloc Unexecuted instantiation: zend_ssa.c:zend_string_realloc Unexecuted instantiation: zend_alloc.c:zend_string_realloc Unexecuted instantiation: zend_API.c:zend_string_realloc Unexecuted instantiation: zend_ast.c:zend_string_realloc zend_attributes.c:zend_string_realloc Line | Count | Source | 238 | 120 | { | 239 | 120 | zend_string *ret; | 240 | | | 241 | 120 | if (!ZSTR_IS_INTERNED(s)) { | 242 | 120 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 243 | 120 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 244 | 120 | ZSTR_LEN(ret) = len; | 245 | 120 | zend_string_forget_hash_val(ret); | 246 | 120 | return ret; | 247 | 120 | } | 248 | 120 | } | 249 | 0 | ret = zend_string_alloc(len, persistent); | 250 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 251 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 252 | 0 | GC_DELREF(s); | 253 | 0 | } | 254 | 0 | return ret; | 255 | 120 | } |
Unexecuted instantiation: zend_builtin_functions.c:zend_string_realloc Unexecuted instantiation: zend_call_stack.c:zend_string_realloc Unexecuted instantiation: zend_closures.c:zend_string_realloc Unexecuted instantiation: zend_compile.c:zend_string_realloc Unexecuted instantiation: zend_constants.c:zend_string_realloc Unexecuted instantiation: zend_cpuinfo.c:zend_string_realloc Unexecuted instantiation: zend_default_classes.c:zend_string_realloc Unexecuted instantiation: zend_dtrace.c:zend_string_realloc Unexecuted instantiation: zend_enum.c:zend_string_realloc Unexecuted instantiation: zend_exceptions.c:zend_string_realloc Unexecuted instantiation: zend_execute_API.c:zend_string_realloc Unexecuted instantiation: zend_execute.c:zend_string_realloc Unexecuted instantiation: zend_extensions.c:zend_string_realloc Unexecuted instantiation: zend_fibers.c:zend_string_realloc Unexecuted instantiation: zend_float.c:zend_string_realloc Unexecuted instantiation: zend_gc.c:zend_string_realloc Unexecuted instantiation: zend_gdb.c:zend_string_realloc Unexecuted instantiation: zend_generators.c:zend_string_realloc Unexecuted instantiation: zend_hash.c:zend_string_realloc Unexecuted instantiation: zend_highlight.c:zend_string_realloc Unexecuted instantiation: zend_hrtime.c:zend_string_realloc Unexecuted instantiation: zend_inheritance.c:zend_string_realloc Unexecuted instantiation: zend_ini_parser.c:zend_string_realloc Unexecuted instantiation: zend_ini_scanner.c:zend_string_realloc Unexecuted instantiation: zend_ini.c:zend_string_realloc Unexecuted instantiation: zend_interfaces.c:zend_string_realloc Unexecuted instantiation: zend_iterators.c:zend_string_realloc Unexecuted instantiation: zend_language_parser.c:zend_string_realloc Unexecuted instantiation: zend_language_scanner.c:zend_string_realloc Unexecuted instantiation: zend_lazy_objects.c:zend_string_realloc Unexecuted instantiation: zend_list.c:zend_string_realloc Unexecuted instantiation: zend_llist.c:zend_string_realloc Unexecuted instantiation: zend_multibyte.c:zend_string_realloc Unexecuted instantiation: zend_object_handlers.c:zend_string_realloc Unexecuted instantiation: zend_objects_API.c:zend_string_realloc Unexecuted instantiation: zend_objects.c:zend_string_realloc Unexecuted instantiation: zend_observer.c:zend_string_realloc Unexecuted instantiation: zend_opcode.c:zend_string_realloc Unexecuted instantiation: zend_operators.c:zend_string_realloc Unexecuted instantiation: zend_property_hooks.c:zend_string_realloc Unexecuted instantiation: zend_ptr_stack.c:zend_string_realloc Unexecuted instantiation: zend_signal.c:zend_string_realloc Unexecuted instantiation: zend_smart_str.c:zend_string_realloc Unexecuted instantiation: zend_sort.c:zend_string_realloc Unexecuted instantiation: zend_stack.c:zend_string_realloc Unexecuted instantiation: zend_stream.c:zend_string_realloc Unexecuted instantiation: zend_string.c:zend_string_realloc Unexecuted instantiation: zend_strtod.c:zend_string_realloc Unexecuted instantiation: zend_system_id.c:zend_string_realloc Unexecuted instantiation: zend_variables.c:zend_string_realloc Unexecuted instantiation: zend_virtual_cwd.c:zend_string_realloc Unexecuted instantiation: zend_vm_opcodes.c:zend_string_realloc Unexecuted instantiation: zend_weakrefs.c:zend_string_realloc zend.c:zend_string_realloc Line | Count | Source | 238 | 4.18M | { | 239 | 4.18M | zend_string *ret; | 240 | | | 241 | 4.18M | if (!ZSTR_IS_INTERNED(s)) { | 242 | 4.18M | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 243 | 4.18M | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 244 | 4.18M | ZSTR_LEN(ret) = len; | 245 | 4.18M | zend_string_forget_hash_val(ret); | 246 | 4.18M | return ret; | 247 | 4.18M | } | 248 | 4.18M | } | 249 | 0 | ret = zend_string_alloc(len, persistent); | 250 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN(len, ZSTR_LEN(s)) + 1); | 251 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 252 | 0 | GC_DELREF(s); | 253 | 0 | } | 254 | 0 | return ret; | 255 | 4.18M | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_realloc Unexecuted instantiation: fuzzer-parser.c:zend_string_realloc Unexecuted instantiation: fuzzer-sapi.c:zend_string_realloc Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_realloc Unexecuted instantiation: fuzzer-exif.c:zend_string_realloc Unexecuted instantiation: fuzzer-unserialize.c:zend_string_realloc Unexecuted instantiation: fuzzer-function-jit.c:zend_string_realloc Unexecuted instantiation: fuzzer-json.c:zend_string_realloc Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_realloc Unexecuted instantiation: fuzzer-execute.c:zend_string_realloc |
256 | | |
257 | | static zend_always_inline zend_string *zend_string_extend(zend_string *s, size_t len, bool persistent) |
258 | 3.23M | { |
259 | 3.23M | zend_string *ret; |
260 | | |
261 | 3.23M | ZEND_ASSERT(len >= ZSTR_LEN(s)); |
262 | 3.23M | if (!ZSTR_IS_INTERNED(s)) { |
263 | 2.64M | if (EXPECTED(GC_REFCOUNT(s) == 1)) { |
264 | 2.18M | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); |
265 | 2.18M | ZSTR_LEN(ret) = len; |
266 | 2.18M | zend_string_forget_hash_val(ret); |
267 | 2.18M | return ret; |
268 | 2.18M | } |
269 | 2.64M | } |
270 | 1.04M | ret = zend_string_alloc(len, persistent); |
271 | 1.04M | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); |
272 | 1.04M | if (!ZSTR_IS_INTERNED(s)) { |
273 | 458k | GC_DELREF(s); |
274 | 458k | } |
275 | 1.04M | return ret; |
276 | 3.23M | } Unexecuted instantiation: php_date.c:zend_string_extend Unexecuted instantiation: astro.c:zend_string_extend Unexecuted instantiation: dow.c:zend_string_extend Unexecuted instantiation: parse_date.c:zend_string_extend Unexecuted instantiation: parse_tz.c:zend_string_extend Unexecuted instantiation: parse_posix.c:zend_string_extend Unexecuted instantiation: timelib.c:zend_string_extend Unexecuted instantiation: tm2unixtime.c:zend_string_extend Unexecuted instantiation: unixtime2tm.c:zend_string_extend Unexecuted instantiation: parse_iso_intervals.c:zend_string_extend Unexecuted instantiation: interval.c:zend_string_extend php_pcre.c:zend_string_extend Line | Count | Source | 258 | 379 | { | 259 | 379 | zend_string *ret; | 260 | | | 261 | 379 | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 262 | 379 | if (!ZSTR_IS_INTERNED(s)) { | 263 | 379 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 264 | 379 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 265 | 379 | ZSTR_LEN(ret) = len; | 266 | 379 | zend_string_forget_hash_val(ret); | 267 | 379 | return ret; | 268 | 379 | } | 269 | 379 | } | 270 | 0 | ret = zend_string_alloc(len, persistent); | 271 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 272 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 273 | 0 | GC_DELREF(s); | 274 | 0 | } | 275 | 0 | return ret; | 276 | 379 | } |
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 | 258 | 112 | { | 259 | 112 | zend_string *ret; | 260 | | | 261 | 112 | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 262 | 112 | if (!ZSTR_IS_INTERNED(s)) { | 263 | 112 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 264 | 112 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 265 | 112 | ZSTR_LEN(ret) = len; | 266 | 112 | zend_string_forget_hash_val(ret); | 267 | 112 | return ret; | 268 | 112 | } | 269 | 112 | } | 270 | 0 | ret = zend_string_alloc(len, persistent); | 271 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 272 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 273 | 0 | GC_DELREF(s); | 274 | 0 | } | 275 | 0 | return ret; | 276 | 112 | } |
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: php_uriparser.c:zend_string_extend Unexecuted instantiation: explicit_bzero.c:zend_string_extend Unexecuted instantiation: fopen_wrappers.c:zend_string_extend Unexecuted instantiation: getopt.c:zend_string_extend Unexecuted instantiation: main.c:zend_string_extend Unexecuted instantiation: network.c:zend_string_extend Unexecuted instantiation: output.c:zend_string_extend Unexecuted instantiation: php_content_types.c:zend_string_extend Unexecuted instantiation: php_ini_builder.c:zend_string_extend Unexecuted instantiation: php_ini.c:zend_string_extend Unexecuted instantiation: php_glob.c:zend_string_extend Unexecuted instantiation: php_odbc_utils.c:zend_string_extend Unexecuted instantiation: php_open_temporary_file.c:zend_string_extend Unexecuted instantiation: php_scandir.c:zend_string_extend Unexecuted instantiation: php_syslog.c:zend_string_extend Unexecuted instantiation: php_ticks.c:zend_string_extend Unexecuted instantiation: php_variables.c:zend_string_extend Unexecuted instantiation: reentrancy.c:zend_string_extend Unexecuted instantiation: rfc1867.c:zend_string_extend Unexecuted instantiation: safe_bcmp.c:zend_string_extend Unexecuted instantiation: SAPI.c:zend_string_extend Unexecuted instantiation: snprintf.c:zend_string_extend Unexecuted instantiation: spprintf.c:zend_string_extend Unexecuted instantiation: strlcat.c:zend_string_extend Unexecuted instantiation: strlcpy.c:zend_string_extend Unexecuted instantiation: cast.c:zend_string_extend Unexecuted instantiation: filter.c:zend_string_extend Unexecuted instantiation: glob_wrapper.c:zend_string_extend Unexecuted instantiation: memory.c:zend_string_extend Unexecuted instantiation: mmap.c:zend_string_extend Unexecuted instantiation: plain_wrapper.c:zend_string_extend Unexecuted instantiation: streams.c:zend_string_extend Unexecuted instantiation: transports.c:zend_string_extend Unexecuted instantiation: userspace.c:zend_string_extend Unexecuted instantiation: xp_socket.c:zend_string_extend block_pass.c:zend_string_extend Line | Count | Source | 258 | 4.21k | { | 259 | 4.21k | zend_string *ret; | 260 | | | 261 | 4.21k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 262 | 4.21k | if (!ZSTR_IS_INTERNED(s)) { | 263 | 4.21k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 264 | 3.89k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 265 | 3.89k | ZSTR_LEN(ret) = len; | 266 | 3.89k | zend_string_forget_hash_val(ret); | 267 | 3.89k | return ret; | 268 | 3.89k | } | 269 | 4.21k | } | 270 | 315 | ret = zend_string_alloc(len, persistent); | 271 | 315 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 272 | 315 | if (!ZSTR_IS_INTERNED(s)) { | 273 | 315 | GC_DELREF(s); | 274 | 315 | } | 275 | 315 | return ret; | 276 | 4.21k | } |
Unexecuted instantiation: compact_literals.c:zend_string_extend Unexecuted instantiation: compact_vars.c:zend_string_extend Unexecuted instantiation: dce.c:zend_string_extend Unexecuted instantiation: dfa_pass.c:zend_string_extend Unexecuted instantiation: escape_analysis.c:zend_string_extend Unexecuted instantiation: nop_removal.c:zend_string_extend Unexecuted instantiation: optimize_func_calls.c:zend_string_extend Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_extend Unexecuted instantiation: pass1.c:zend_string_extend Unexecuted instantiation: pass3.c:zend_string_extend Unexecuted instantiation: sccp.c:zend_string_extend Unexecuted instantiation: scdf.c:zend_string_extend Unexecuted instantiation: zend_call_graph.c:zend_string_extend Unexecuted instantiation: zend_cfg.c:zend_string_extend Unexecuted instantiation: zend_dfg.c:zend_string_extend Unexecuted instantiation: zend_dump.c:zend_string_extend Unexecuted instantiation: zend_func_info.c:zend_string_extend Unexecuted instantiation: zend_inference.c:zend_string_extend Unexecuted instantiation: zend_optimizer.c:zend_string_extend Unexecuted instantiation: zend_ssa.c:zend_string_extend Unexecuted instantiation: zend_alloc.c:zend_string_extend Unexecuted instantiation: zend_API.c:zend_string_extend Unexecuted instantiation: zend_ast.c:zend_string_extend Unexecuted instantiation: zend_attributes.c:zend_string_extend Unexecuted instantiation: zend_builtin_functions.c:zend_string_extend Unexecuted instantiation: zend_call_stack.c:zend_string_extend Unexecuted instantiation: zend_closures.c:zend_string_extend zend_compile.c:zend_string_extend Line | Count | Source | 258 | 1.59k | { | 259 | 1.59k | zend_string *ret; | 260 | | | 261 | 1.59k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 262 | 1.59k | if (!ZSTR_IS_INTERNED(s)) { | 263 | 1.59k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 264 | 1.59k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 265 | 1.59k | ZSTR_LEN(ret) = len; | 266 | 1.59k | zend_string_forget_hash_val(ret); | 267 | 1.59k | return ret; | 268 | 1.59k | } | 269 | 1.59k | } | 270 | 0 | ret = zend_string_alloc(len, persistent); | 271 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 272 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 273 | 0 | GC_DELREF(s); | 274 | 0 | } | 275 | 0 | return ret; | 276 | 1.59k | } |
Unexecuted instantiation: zend_constants.c:zend_string_extend Unexecuted instantiation: zend_cpuinfo.c:zend_string_extend Unexecuted instantiation: zend_default_classes.c:zend_string_extend Unexecuted instantiation: zend_dtrace.c:zend_string_extend Unexecuted instantiation: zend_enum.c:zend_string_extend Unexecuted instantiation: zend_exceptions.c:zend_string_extend Unexecuted instantiation: zend_execute_API.c:zend_string_extend zend_execute.c:zend_string_extend Line | Count | Source | 258 | 194k | { | 259 | 194k | zend_string *ret; | 260 | | | 261 | 194k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 262 | 194k | if (!ZSTR_IS_INTERNED(s)) { | 263 | 194k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 264 | 194k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 265 | 194k | ZSTR_LEN(ret) = len; | 266 | 194k | zend_string_forget_hash_val(ret); | 267 | 194k | return ret; | 268 | 194k | } | 269 | 194k | } | 270 | 0 | ret = zend_string_alloc(len, persistent); | 271 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 272 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 273 | 0 | GC_DELREF(s); | 274 | 0 | } | 275 | 0 | return ret; | 276 | 194k | } |
Unexecuted instantiation: zend_extensions.c:zend_string_extend Unexecuted instantiation: zend_fibers.c:zend_string_extend Unexecuted instantiation: zend_float.c:zend_string_extend Unexecuted instantiation: zend_gc.c:zend_string_extend Unexecuted instantiation: zend_gdb.c:zend_string_extend Unexecuted instantiation: zend_generators.c:zend_string_extend Unexecuted instantiation: zend_hash.c:zend_string_extend Unexecuted instantiation: zend_highlight.c:zend_string_extend Unexecuted instantiation: zend_hrtime.c:zend_string_extend Unexecuted instantiation: zend_inheritance.c:zend_string_extend zend_ini_parser.c:zend_string_extend Line | Count | Source | 258 | 1.46M | { | 259 | 1.46M | zend_string *ret; | 260 | | | 261 | 1.46M | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 262 | 1.46M | if (!ZSTR_IS_INTERNED(s)) { | 263 | 1.13M | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 264 | 1.13M | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 265 | 1.13M | ZSTR_LEN(ret) = len; | 266 | 1.13M | zend_string_forget_hash_val(ret); | 267 | 1.13M | return ret; | 268 | 1.13M | } | 269 | 1.13M | } | 270 | 331k | ret = zend_string_alloc(len, persistent); | 271 | 331k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 272 | 331k | if (!ZSTR_IS_INTERNED(s)) { | 273 | 0 | GC_DELREF(s); | 274 | 0 | } | 275 | 331k | return ret; | 276 | 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 | 258 | 28.4k | { | 259 | 28.4k | zend_string *ret; | 260 | | | 261 | 28.4k | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 262 | 28.4k | if (!ZSTR_IS_INTERNED(s)) { | 263 | 17.4k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 264 | 0 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 265 | 0 | ZSTR_LEN(ret) = len; | 266 | 0 | zend_string_forget_hash_val(ret); | 267 | 0 | return ret; | 268 | 0 | } | 269 | 17.4k | } | 270 | 28.4k | ret = zend_string_alloc(len, persistent); | 271 | 28.4k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 272 | 28.4k | if (!ZSTR_IS_INTERNED(s)) { | 273 | 17.4k | GC_DELREF(s); | 274 | 17.4k | } | 275 | 28.4k | return ret; | 276 | 28.4k | } |
Unexecuted instantiation: zend_lazy_objects.c:zend_string_extend Unexecuted instantiation: zend_list.c:zend_string_extend Unexecuted instantiation: zend_llist.c:zend_string_extend Unexecuted instantiation: zend_multibyte.c:zend_string_extend Unexecuted instantiation: zend_object_handlers.c:zend_string_extend Unexecuted instantiation: zend_objects_API.c:zend_string_extend Unexecuted instantiation: zend_objects.c:zend_string_extend Unexecuted instantiation: zend_observer.c:zend_string_extend Unexecuted instantiation: zend_opcode.c:zend_string_extend zend_operators.c:zend_string_extend Line | Count | Source | 258 | 1.53M | { | 259 | 1.53M | zend_string *ret; | 260 | | | 261 | 1.53M | ZEND_ASSERT(len >= ZSTR_LEN(s)); | 262 | 1.53M | if (!ZSTR_IS_INTERNED(s)) { | 263 | 1.29M | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 264 | 850k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 265 | 850k | ZSTR_LEN(ret) = len; | 266 | 850k | zend_string_forget_hash_val(ret); | 267 | 850k | return ret; | 268 | 850k | } | 269 | 1.29M | } | 270 | 686k | ret = zend_string_alloc(len, persistent); | 271 | 686k | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), ZSTR_LEN(s) + 1); | 272 | 686k | if (!ZSTR_IS_INTERNED(s)) { | 273 | 440k | GC_DELREF(s); | 274 | 440k | } | 275 | 686k | return ret; | 276 | 1.53M | } |
Unexecuted instantiation: zend_property_hooks.c:zend_string_extend Unexecuted instantiation: zend_ptr_stack.c:zend_string_extend Unexecuted instantiation: zend_signal.c:zend_string_extend Unexecuted instantiation: zend_smart_str.c:zend_string_extend Unexecuted instantiation: zend_sort.c:zend_string_extend Unexecuted instantiation: zend_stack.c:zend_string_extend Unexecuted instantiation: zend_stream.c:zend_string_extend Unexecuted instantiation: zend_string.c:zend_string_extend Unexecuted instantiation: zend_strtod.c:zend_string_extend Unexecuted instantiation: zend_system_id.c:zend_string_extend Unexecuted instantiation: zend_variables.c:zend_string_extend Unexecuted instantiation: zend_virtual_cwd.c:zend_string_extend Unexecuted instantiation: zend_vm_opcodes.c:zend_string_extend Unexecuted instantiation: zend_weakrefs.c:zend_string_extend Unexecuted instantiation: zend.c:zend_string_extend Unexecuted instantiation: internal_functions_cli.c:zend_string_extend Unexecuted instantiation: fuzzer-parser.c:zend_string_extend Unexecuted instantiation: fuzzer-sapi.c:zend_string_extend Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_extend Unexecuted instantiation: fuzzer-exif.c:zend_string_extend Unexecuted instantiation: fuzzer-unserialize.c:zend_string_extend Unexecuted instantiation: fuzzer-function-jit.c:zend_string_extend Unexecuted instantiation: fuzzer-json.c:zend_string_extend Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_extend Unexecuted instantiation: fuzzer-execute.c:zend_string_extend |
277 | | |
278 | | static zend_always_inline zend_string *zend_string_truncate(zend_string *s, size_t len, bool persistent) |
279 | 1.22k | { |
280 | 1.22k | zend_string *ret; |
281 | | |
282 | 1.22k | ZEND_ASSERT(len <= ZSTR_LEN(s)); |
283 | 1.22k | if (!ZSTR_IS_INTERNED(s)) { |
284 | 1.22k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { |
285 | 1.22k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); |
286 | 1.22k | ZSTR_LEN(ret) = len; |
287 | 1.22k | zend_string_forget_hash_val(ret); |
288 | 1.22k | return ret; |
289 | 1.22k | } |
290 | 1.22k | } |
291 | 0 | ret = zend_string_alloc(len, persistent); |
292 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), len + 1); |
293 | 0 | if (!ZSTR_IS_INTERNED(s)) { |
294 | 0 | GC_DELREF(s); |
295 | 0 | } |
296 | 0 | return ret; |
297 | 1.22k | } 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 | 279 | 205 | { | 280 | 205 | zend_string *ret; | 281 | | | 282 | 205 | ZEND_ASSERT(len <= ZSTR_LEN(s)); | 283 | 205 | if (!ZSTR_IS_INTERNED(s)) { | 284 | 205 | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 285 | 205 | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 286 | 205 | ZSTR_LEN(ret) = len; | 287 | 205 | zend_string_forget_hash_val(ret); | 288 | 205 | return ret; | 289 | 205 | } | 290 | 205 | } | 291 | 0 | ret = zend_string_alloc(len, persistent); | 292 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), len + 1); | 293 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 294 | 0 | GC_DELREF(s); | 295 | 0 | } | 296 | 0 | return ret; | 297 | 205 | } |
Unexecuted instantiation: scanf.c:zend_string_truncate Unexecuted instantiation: sha1.c:zend_string_truncate Unexecuted instantiation: soundex.c:zend_string_truncate Unexecuted instantiation: streamsfuncs.c:zend_string_truncate string.c:zend_string_truncate Line | Count | Source | 279 | 1.02k | { | 280 | 1.02k | zend_string *ret; | 281 | | | 282 | 1.02k | ZEND_ASSERT(len <= ZSTR_LEN(s)); | 283 | 1.02k | if (!ZSTR_IS_INTERNED(s)) { | 284 | 1.02k | if (EXPECTED(GC_REFCOUNT(s) == 1)) { | 285 | 1.02k | ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); | 286 | 1.02k | ZSTR_LEN(ret) = len; | 287 | 1.02k | zend_string_forget_hash_val(ret); | 288 | 1.02k | return ret; | 289 | 1.02k | } | 290 | 1.02k | } | 291 | 0 | ret = zend_string_alloc(len, persistent); | 292 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), len + 1); | 293 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 294 | 0 | GC_DELREF(s); | 295 | 0 | } | 296 | 0 | return ret; | 297 | 1.02k | } |
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: php_uriparser.c:zend_string_truncate Unexecuted instantiation: explicit_bzero.c:zend_string_truncate Unexecuted instantiation: fopen_wrappers.c:zend_string_truncate Unexecuted instantiation: getopt.c:zend_string_truncate Unexecuted instantiation: main.c:zend_string_truncate Unexecuted instantiation: network.c:zend_string_truncate Unexecuted instantiation: output.c:zend_string_truncate Unexecuted instantiation: php_content_types.c:zend_string_truncate Unexecuted instantiation: php_ini_builder.c:zend_string_truncate Unexecuted instantiation: php_ini.c:zend_string_truncate Unexecuted instantiation: php_glob.c:zend_string_truncate Unexecuted instantiation: php_odbc_utils.c:zend_string_truncate Unexecuted instantiation: php_open_temporary_file.c:zend_string_truncate Unexecuted instantiation: php_scandir.c:zend_string_truncate Unexecuted instantiation: php_syslog.c:zend_string_truncate Unexecuted instantiation: php_ticks.c:zend_string_truncate Unexecuted instantiation: php_variables.c:zend_string_truncate Unexecuted instantiation: reentrancy.c:zend_string_truncate Unexecuted instantiation: rfc1867.c:zend_string_truncate Unexecuted instantiation: safe_bcmp.c:zend_string_truncate Unexecuted instantiation: SAPI.c:zend_string_truncate Unexecuted instantiation: snprintf.c:zend_string_truncate Unexecuted instantiation: spprintf.c:zend_string_truncate Unexecuted instantiation: strlcat.c:zend_string_truncate Unexecuted instantiation: strlcpy.c:zend_string_truncate Unexecuted instantiation: cast.c:zend_string_truncate Unexecuted instantiation: filter.c:zend_string_truncate Unexecuted instantiation: glob_wrapper.c:zend_string_truncate Unexecuted instantiation: memory.c:zend_string_truncate Unexecuted instantiation: mmap.c:zend_string_truncate Unexecuted instantiation: plain_wrapper.c:zend_string_truncate Unexecuted instantiation: streams.c:zend_string_truncate Unexecuted instantiation: transports.c:zend_string_truncate Unexecuted instantiation: userspace.c:zend_string_truncate Unexecuted instantiation: xp_socket.c:zend_string_truncate Unexecuted instantiation: block_pass.c:zend_string_truncate Unexecuted instantiation: compact_literals.c:zend_string_truncate Unexecuted instantiation: compact_vars.c:zend_string_truncate Unexecuted instantiation: dce.c:zend_string_truncate Unexecuted instantiation: dfa_pass.c:zend_string_truncate Unexecuted instantiation: escape_analysis.c:zend_string_truncate Unexecuted instantiation: nop_removal.c:zend_string_truncate Unexecuted instantiation: optimize_func_calls.c:zend_string_truncate Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_truncate Unexecuted instantiation: pass1.c:zend_string_truncate Unexecuted instantiation: pass3.c:zend_string_truncate Unexecuted instantiation: sccp.c:zend_string_truncate Unexecuted instantiation: scdf.c:zend_string_truncate Unexecuted instantiation: zend_call_graph.c:zend_string_truncate Unexecuted instantiation: zend_cfg.c:zend_string_truncate Unexecuted instantiation: zend_dfg.c:zend_string_truncate Unexecuted instantiation: zend_dump.c:zend_string_truncate Unexecuted instantiation: zend_func_info.c:zend_string_truncate Unexecuted instantiation: zend_inference.c:zend_string_truncate Unexecuted instantiation: zend_optimizer.c:zend_string_truncate Unexecuted instantiation: zend_ssa.c:zend_string_truncate Unexecuted instantiation: zend_alloc.c:zend_string_truncate Unexecuted instantiation: zend_API.c:zend_string_truncate Unexecuted instantiation: zend_ast.c:zend_string_truncate Unexecuted instantiation: zend_attributes.c:zend_string_truncate Unexecuted instantiation: zend_builtin_functions.c:zend_string_truncate Unexecuted instantiation: zend_call_stack.c:zend_string_truncate Unexecuted instantiation: zend_closures.c:zend_string_truncate Unexecuted instantiation: zend_compile.c:zend_string_truncate Unexecuted instantiation: zend_constants.c:zend_string_truncate Unexecuted instantiation: zend_cpuinfo.c:zend_string_truncate Unexecuted instantiation: zend_default_classes.c:zend_string_truncate Unexecuted instantiation: zend_dtrace.c:zend_string_truncate Unexecuted instantiation: zend_enum.c:zend_string_truncate Unexecuted instantiation: zend_exceptions.c:zend_string_truncate Unexecuted instantiation: zend_execute_API.c:zend_string_truncate Unexecuted instantiation: zend_execute.c:zend_string_truncate Unexecuted instantiation: zend_extensions.c:zend_string_truncate Unexecuted instantiation: zend_fibers.c:zend_string_truncate Unexecuted instantiation: zend_float.c:zend_string_truncate Unexecuted instantiation: zend_gc.c:zend_string_truncate Unexecuted instantiation: zend_gdb.c:zend_string_truncate Unexecuted instantiation: zend_generators.c:zend_string_truncate Unexecuted instantiation: zend_hash.c:zend_string_truncate Unexecuted instantiation: zend_highlight.c:zend_string_truncate Unexecuted instantiation: zend_hrtime.c:zend_string_truncate Unexecuted instantiation: zend_inheritance.c:zend_string_truncate Unexecuted instantiation: zend_ini_parser.c:zend_string_truncate Unexecuted instantiation: zend_ini_scanner.c:zend_string_truncate Unexecuted instantiation: zend_ini.c:zend_string_truncate Unexecuted instantiation: zend_interfaces.c:zend_string_truncate Unexecuted instantiation: zend_iterators.c:zend_string_truncate Unexecuted instantiation: zend_language_parser.c:zend_string_truncate Unexecuted instantiation: zend_language_scanner.c:zend_string_truncate Unexecuted instantiation: zend_lazy_objects.c:zend_string_truncate Unexecuted instantiation: zend_list.c:zend_string_truncate Unexecuted instantiation: zend_llist.c:zend_string_truncate Unexecuted instantiation: zend_multibyte.c:zend_string_truncate Unexecuted instantiation: zend_object_handlers.c:zend_string_truncate Unexecuted instantiation: zend_objects_API.c:zend_string_truncate Unexecuted instantiation: zend_objects.c:zend_string_truncate Unexecuted instantiation: zend_observer.c:zend_string_truncate Unexecuted instantiation: zend_opcode.c:zend_string_truncate Unexecuted instantiation: zend_operators.c:zend_string_truncate Unexecuted instantiation: zend_property_hooks.c:zend_string_truncate Unexecuted instantiation: zend_ptr_stack.c:zend_string_truncate Unexecuted instantiation: zend_signal.c:zend_string_truncate Unexecuted instantiation: zend_smart_str.c:zend_string_truncate Unexecuted instantiation: zend_sort.c:zend_string_truncate Unexecuted instantiation: zend_stack.c:zend_string_truncate Unexecuted instantiation: zend_stream.c:zend_string_truncate Unexecuted instantiation: zend_string.c:zend_string_truncate Unexecuted instantiation: zend_strtod.c:zend_string_truncate Unexecuted instantiation: zend_system_id.c:zend_string_truncate Unexecuted instantiation: zend_variables.c:zend_string_truncate Unexecuted instantiation: zend_virtual_cwd.c:zend_string_truncate Unexecuted instantiation: zend_vm_opcodes.c:zend_string_truncate Unexecuted instantiation: zend_weakrefs.c:zend_string_truncate Unexecuted instantiation: zend.c:zend_string_truncate Unexecuted instantiation: internal_functions_cli.c:zend_string_truncate Unexecuted instantiation: fuzzer-parser.c:zend_string_truncate Unexecuted instantiation: fuzzer-sapi.c:zend_string_truncate Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_truncate Unexecuted instantiation: fuzzer-exif.c:zend_string_truncate Unexecuted instantiation: fuzzer-unserialize.c:zend_string_truncate Unexecuted instantiation: fuzzer-function-jit.c:zend_string_truncate Unexecuted instantiation: fuzzer-json.c:zend_string_truncate Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_truncate Unexecuted instantiation: fuzzer-execute.c:zend_string_truncate |
298 | | |
299 | | static zend_always_inline zend_string *zend_string_safe_realloc(zend_string *s, size_t n, size_t m, size_t l, bool persistent) |
300 | 4.97k | { |
301 | 4.97k | zend_string *ret; |
302 | | |
303 | 4.97k | if (!ZSTR_IS_INTERNED(s)) { |
304 | 4.97k | if (GC_REFCOUNT(s) == 1) { |
305 | 4.97k | ret = (zend_string *)safe_perealloc(s, n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); |
306 | 4.97k | ZSTR_LEN(ret) = (n * m) + l; |
307 | 4.97k | zend_string_forget_hash_val(ret); |
308 | 4.97k | return ret; |
309 | 4.97k | } |
310 | 4.97k | } |
311 | 0 | ret = zend_string_safe_alloc(n, m, l, persistent); |
312 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN((n * m) + l, ZSTR_LEN(s)) + 1); |
313 | 0 | if (!ZSTR_IS_INTERNED(s)) { |
314 | 0 | GC_DELREF(s); |
315 | 0 | } |
316 | 0 | return ret; |
317 | 4.97k | } 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 | 300 | 4.97k | { | 301 | 4.97k | zend_string *ret; | 302 | | | 303 | 4.97k | if (!ZSTR_IS_INTERNED(s)) { | 304 | 4.97k | if (GC_REFCOUNT(s) == 1) { | 305 | 4.97k | ret = (zend_string *)safe_perealloc(s, n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persistent); | 306 | 4.97k | ZSTR_LEN(ret) = (n * m) + l; | 307 | 4.97k | zend_string_forget_hash_val(ret); | 308 | 4.97k | return ret; | 309 | 4.97k | } | 310 | 4.97k | } | 311 | 0 | ret = zend_string_safe_alloc(n, m, l, persistent); | 312 | 0 | memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN((n * m) + l, ZSTR_LEN(s)) + 1); | 313 | 0 | if (!ZSTR_IS_INTERNED(s)) { | 314 | 0 | GC_DELREF(s); | 315 | 0 | } | 316 | 0 | return ret; | 317 | 4.97k | } |
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: php_uriparser.c:zend_string_safe_realloc Unexecuted instantiation: explicit_bzero.c:zend_string_safe_realloc Unexecuted instantiation: fopen_wrappers.c:zend_string_safe_realloc Unexecuted instantiation: getopt.c:zend_string_safe_realloc Unexecuted instantiation: main.c:zend_string_safe_realloc Unexecuted instantiation: network.c:zend_string_safe_realloc Unexecuted instantiation: output.c:zend_string_safe_realloc Unexecuted instantiation: php_content_types.c:zend_string_safe_realloc Unexecuted instantiation: php_ini_builder.c:zend_string_safe_realloc Unexecuted instantiation: php_ini.c:zend_string_safe_realloc Unexecuted instantiation: php_glob.c:zend_string_safe_realloc Unexecuted instantiation: php_odbc_utils.c:zend_string_safe_realloc Unexecuted instantiation: php_open_temporary_file.c:zend_string_safe_realloc Unexecuted instantiation: php_scandir.c:zend_string_safe_realloc Unexecuted instantiation: php_syslog.c:zend_string_safe_realloc Unexecuted instantiation: php_ticks.c:zend_string_safe_realloc Unexecuted instantiation: php_variables.c:zend_string_safe_realloc Unexecuted instantiation: reentrancy.c:zend_string_safe_realloc Unexecuted instantiation: rfc1867.c:zend_string_safe_realloc Unexecuted instantiation: safe_bcmp.c:zend_string_safe_realloc Unexecuted instantiation: SAPI.c:zend_string_safe_realloc Unexecuted instantiation: snprintf.c:zend_string_safe_realloc Unexecuted instantiation: spprintf.c:zend_string_safe_realloc Unexecuted instantiation: strlcat.c:zend_string_safe_realloc Unexecuted instantiation: strlcpy.c:zend_string_safe_realloc Unexecuted instantiation: cast.c:zend_string_safe_realloc Unexecuted instantiation: filter.c:zend_string_safe_realloc Unexecuted instantiation: glob_wrapper.c:zend_string_safe_realloc Unexecuted instantiation: memory.c:zend_string_safe_realloc Unexecuted instantiation: mmap.c:zend_string_safe_realloc Unexecuted instantiation: plain_wrapper.c:zend_string_safe_realloc Unexecuted instantiation: streams.c:zend_string_safe_realloc Unexecuted instantiation: transports.c:zend_string_safe_realloc Unexecuted instantiation: userspace.c:zend_string_safe_realloc Unexecuted instantiation: xp_socket.c:zend_string_safe_realloc Unexecuted instantiation: block_pass.c:zend_string_safe_realloc Unexecuted instantiation: compact_literals.c:zend_string_safe_realloc Unexecuted instantiation: compact_vars.c:zend_string_safe_realloc Unexecuted instantiation: dce.c:zend_string_safe_realloc Unexecuted instantiation: dfa_pass.c:zend_string_safe_realloc Unexecuted instantiation: escape_analysis.c:zend_string_safe_realloc Unexecuted instantiation: nop_removal.c:zend_string_safe_realloc Unexecuted instantiation: optimize_func_calls.c:zend_string_safe_realloc Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_safe_realloc Unexecuted instantiation: pass1.c:zend_string_safe_realloc Unexecuted instantiation: pass3.c:zend_string_safe_realloc Unexecuted instantiation: sccp.c:zend_string_safe_realloc Unexecuted instantiation: scdf.c:zend_string_safe_realloc Unexecuted instantiation: zend_call_graph.c:zend_string_safe_realloc Unexecuted instantiation: zend_cfg.c:zend_string_safe_realloc Unexecuted instantiation: zend_dfg.c:zend_string_safe_realloc Unexecuted instantiation: zend_dump.c:zend_string_safe_realloc Unexecuted instantiation: zend_func_info.c:zend_string_safe_realloc Unexecuted instantiation: zend_inference.c:zend_string_safe_realloc Unexecuted instantiation: zend_optimizer.c:zend_string_safe_realloc Unexecuted instantiation: zend_ssa.c:zend_string_safe_realloc Unexecuted instantiation: zend_alloc.c:zend_string_safe_realloc Unexecuted instantiation: zend_API.c:zend_string_safe_realloc Unexecuted instantiation: zend_ast.c:zend_string_safe_realloc Unexecuted instantiation: zend_attributes.c:zend_string_safe_realloc Unexecuted instantiation: zend_builtin_functions.c:zend_string_safe_realloc Unexecuted instantiation: zend_call_stack.c:zend_string_safe_realloc Unexecuted instantiation: zend_closures.c:zend_string_safe_realloc Unexecuted instantiation: zend_compile.c:zend_string_safe_realloc Unexecuted instantiation: zend_constants.c:zend_string_safe_realloc Unexecuted instantiation: zend_cpuinfo.c:zend_string_safe_realloc Unexecuted instantiation: zend_default_classes.c:zend_string_safe_realloc Unexecuted instantiation: zend_dtrace.c:zend_string_safe_realloc Unexecuted instantiation: zend_enum.c:zend_string_safe_realloc Unexecuted instantiation: zend_exceptions.c:zend_string_safe_realloc Unexecuted instantiation: zend_execute_API.c:zend_string_safe_realloc Unexecuted instantiation: zend_execute.c:zend_string_safe_realloc Unexecuted instantiation: zend_extensions.c:zend_string_safe_realloc Unexecuted instantiation: zend_fibers.c:zend_string_safe_realloc Unexecuted instantiation: zend_float.c:zend_string_safe_realloc Unexecuted instantiation: zend_gc.c:zend_string_safe_realloc Unexecuted instantiation: zend_gdb.c:zend_string_safe_realloc Unexecuted instantiation: zend_generators.c:zend_string_safe_realloc Unexecuted instantiation: zend_hash.c:zend_string_safe_realloc Unexecuted instantiation: zend_highlight.c:zend_string_safe_realloc Unexecuted instantiation: zend_hrtime.c:zend_string_safe_realloc Unexecuted instantiation: zend_inheritance.c:zend_string_safe_realloc Unexecuted instantiation: zend_ini_parser.c:zend_string_safe_realloc Unexecuted instantiation: zend_ini_scanner.c:zend_string_safe_realloc Unexecuted instantiation: zend_ini.c:zend_string_safe_realloc Unexecuted instantiation: zend_interfaces.c:zend_string_safe_realloc Unexecuted instantiation: zend_iterators.c:zend_string_safe_realloc Unexecuted instantiation: zend_language_parser.c:zend_string_safe_realloc Unexecuted instantiation: zend_language_scanner.c:zend_string_safe_realloc Unexecuted instantiation: zend_lazy_objects.c:zend_string_safe_realloc Unexecuted instantiation: zend_list.c:zend_string_safe_realloc Unexecuted instantiation: zend_llist.c:zend_string_safe_realloc Unexecuted instantiation: zend_multibyte.c:zend_string_safe_realloc Unexecuted instantiation: zend_object_handlers.c:zend_string_safe_realloc Unexecuted instantiation: zend_objects_API.c:zend_string_safe_realloc Unexecuted instantiation: zend_objects.c:zend_string_safe_realloc Unexecuted instantiation: zend_observer.c:zend_string_safe_realloc Unexecuted instantiation: zend_opcode.c:zend_string_safe_realloc Unexecuted instantiation: zend_operators.c:zend_string_safe_realloc Unexecuted instantiation: zend_property_hooks.c:zend_string_safe_realloc Unexecuted instantiation: zend_ptr_stack.c:zend_string_safe_realloc Unexecuted instantiation: zend_signal.c:zend_string_safe_realloc Unexecuted instantiation: zend_smart_str.c:zend_string_safe_realloc Unexecuted instantiation: zend_sort.c:zend_string_safe_realloc Unexecuted instantiation: zend_stack.c:zend_string_safe_realloc Unexecuted instantiation: zend_stream.c:zend_string_safe_realloc Unexecuted instantiation: zend_string.c:zend_string_safe_realloc Unexecuted instantiation: zend_strtod.c:zend_string_safe_realloc Unexecuted instantiation: zend_system_id.c:zend_string_safe_realloc Unexecuted instantiation: zend_variables.c:zend_string_safe_realloc Unexecuted instantiation: zend_virtual_cwd.c:zend_string_safe_realloc Unexecuted instantiation: zend_vm_opcodes.c:zend_string_safe_realloc Unexecuted instantiation: zend_weakrefs.c:zend_string_safe_realloc Unexecuted instantiation: zend.c:zend_string_safe_realloc Unexecuted instantiation: internal_functions_cli.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-parser.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-sapi.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-exif.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-unserialize.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-function-jit.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-json.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_safe_realloc Unexecuted instantiation: fuzzer-execute.c:zend_string_safe_realloc |
318 | | |
319 | | static zend_always_inline void zend_string_free(zend_string *s) |
320 | 1.87M | { |
321 | 1.87M | if (!ZSTR_IS_INTERNED(s)) { |
322 | 1.55M | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); |
323 | 1.55M | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); |
324 | 1.55M | } |
325 | 1.87M | } 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 | 320 | 11 | { | 321 | 11 | if (!ZSTR_IS_INTERNED(s)) { | 322 | 11 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 323 | 11 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 324 | 11 | } | 325 | 11 | } |
Unexecuted instantiation: iptc.c:zend_string_free Unexecuted instantiation: levenshtein.c:zend_string_free Unexecuted instantiation: link.c:zend_string_free Unexecuted instantiation: mail.c:zend_string_free Unexecuted instantiation: math.c:zend_string_free Unexecuted instantiation: md5.c:zend_string_free Unexecuted instantiation: metaphone.c:zend_string_free Unexecuted instantiation: microtime.c:zend_string_free Unexecuted instantiation: net.c:zend_string_free Unexecuted instantiation: pack.c:zend_string_free Unexecuted instantiation: pageinfo.c:zend_string_free Unexecuted instantiation: password.c:zend_string_free Unexecuted instantiation: php_fopen_wrapper.c:zend_string_free Unexecuted instantiation: proc_open.c:zend_string_free Unexecuted instantiation: quot_print.c:zend_string_free Unexecuted instantiation: scanf.c:zend_string_free Unexecuted instantiation: sha1.c:zend_string_free Unexecuted instantiation: soundex.c:zend_string_free Unexecuted instantiation: streamsfuncs.c:zend_string_free Unexecuted instantiation: string.c:zend_string_free Unexecuted instantiation: strnatcmp.c:zend_string_free Unexecuted instantiation: syslog.c:zend_string_free Unexecuted instantiation: type.c:zend_string_free Unexecuted instantiation: uniqid.c:zend_string_free Unexecuted instantiation: url_scanner_ex.c:zend_string_free Unexecuted instantiation: url.c:zend_string_free Unexecuted instantiation: user_filters.c:zend_string_free Unexecuted instantiation: uuencode.c:zend_string_free Unexecuted instantiation: var_unserializer.c:zend_string_free Line | Count | Source | 320 | 994 | { | 321 | 994 | if (!ZSTR_IS_INTERNED(s)) { | 322 | 994 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 323 | 994 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 324 | 994 | } | 325 | 994 | } |
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: php_uriparser.c:zend_string_free Unexecuted instantiation: explicit_bzero.c:zend_string_free Unexecuted instantiation: fopen_wrappers.c:zend_string_free Unexecuted instantiation: getopt.c:zend_string_free Line | Count | Source | 320 | 379k | { | 321 | 379k | if (!ZSTR_IS_INTERNED(s)) { | 322 | 379k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 323 | 379k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 324 | 379k | } | 325 | 379k | } |
Unexecuted instantiation: network.c:zend_string_free Unexecuted instantiation: output.c:zend_string_free Unexecuted instantiation: php_content_types.c:zend_string_free Unexecuted instantiation: php_ini_builder.c:zend_string_free Unexecuted instantiation: php_ini.c:zend_string_free Unexecuted instantiation: php_glob.c:zend_string_free Unexecuted instantiation: php_odbc_utils.c:zend_string_free Unexecuted instantiation: php_open_temporary_file.c:zend_string_free Unexecuted instantiation: php_scandir.c:zend_string_free Unexecuted instantiation: php_syslog.c:zend_string_free Unexecuted instantiation: php_ticks.c:zend_string_free Unexecuted instantiation: php_variables.c:zend_string_free Unexecuted instantiation: reentrancy.c:zend_string_free Unexecuted instantiation: rfc1867.c:zend_string_free Unexecuted instantiation: safe_bcmp.c:zend_string_free Unexecuted instantiation: SAPI.c:zend_string_free Unexecuted instantiation: snprintf.c:zend_string_free Unexecuted instantiation: spprintf.c:zend_string_free Unexecuted instantiation: strlcat.c:zend_string_free Unexecuted instantiation: strlcpy.c:zend_string_free Unexecuted instantiation: cast.c:zend_string_free Unexecuted instantiation: filter.c:zend_string_free Unexecuted instantiation: glob_wrapper.c:zend_string_free Unexecuted instantiation: memory.c:zend_string_free Unexecuted instantiation: mmap.c:zend_string_free Unexecuted instantiation: plain_wrapper.c:zend_string_free streams.c:zend_string_free Line | Count | Source | 320 | 5 | { | 321 | 5 | if (!ZSTR_IS_INTERNED(s)) { | 322 | 5 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 323 | 5 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 324 | 5 | } | 325 | 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 | 320 | 1.49M | { | 321 | 1.49M | if (!ZSTR_IS_INTERNED(s)) { | 322 | 1.17M | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 323 | 1.17M | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 324 | 1.17M | } | 325 | 1.49M | } |
Unexecuted instantiation: zend_ini_scanner.c:zend_string_free Unexecuted instantiation: zend_ini.c:zend_string_free Unexecuted instantiation: zend_interfaces.c:zend_string_free Unexecuted instantiation: zend_iterators.c:zend_string_free Unexecuted instantiation: zend_language_parser.c:zend_string_free Unexecuted instantiation: zend_language_scanner.c:zend_string_free Unexecuted instantiation: zend_lazy_objects.c:zend_string_free Unexecuted instantiation: zend_list.c:zend_string_free Unexecuted instantiation: zend_llist.c:zend_string_free Unexecuted instantiation: zend_multibyte.c:zend_string_free Unexecuted instantiation: zend_object_handlers.c:zend_string_free Unexecuted instantiation: zend_objects_API.c:zend_string_free Unexecuted instantiation: zend_objects.c:zend_string_free Unexecuted instantiation: zend_observer.c:zend_string_free Unexecuted instantiation: zend_opcode.c:zend_string_free zend_operators.c:zend_string_free Line | Count | Source | 320 | 46 | { | 321 | 46 | if (!ZSTR_IS_INTERNED(s)) { | 322 | 46 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 323 | 46 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 324 | 46 | } | 325 | 46 | } |
Unexecuted instantiation: zend_property_hooks.c:zend_string_free Unexecuted instantiation: zend_ptr_stack.c:zend_string_free Unexecuted instantiation: zend_signal.c:zend_string_free Unexecuted instantiation: zend_smart_str.c:zend_string_free Unexecuted instantiation: zend_sort.c:zend_string_free Unexecuted instantiation: zend_stack.c:zend_string_free Unexecuted instantiation: zend_stream.c:zend_string_free Unexecuted instantiation: zend_string.c:zend_string_free Unexecuted instantiation: zend_strtod.c:zend_string_free Unexecuted instantiation: zend_system_id.c:zend_string_free Unexecuted instantiation: zend_variables.c:zend_string_free Unexecuted instantiation: zend_virtual_cwd.c:zend_string_free Unexecuted instantiation: zend_vm_opcodes.c:zend_string_free Unexecuted instantiation: zend_weakrefs.c:zend_string_free Unexecuted instantiation: zend.c:zend_string_free Unexecuted instantiation: internal_functions_cli.c:zend_string_free Unexecuted instantiation: fuzzer-parser.c:zend_string_free Unexecuted instantiation: fuzzer-sapi.c:zend_string_free Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_free Unexecuted instantiation: fuzzer-exif.c:zend_string_free Unexecuted instantiation: fuzzer-unserialize.c:zend_string_free Unexecuted instantiation: fuzzer-function-jit.c:zend_string_free Unexecuted instantiation: fuzzer-json.c:zend_string_free Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_free Unexecuted instantiation: fuzzer-execute.c:zend_string_free |
326 | | |
327 | | static zend_always_inline void zend_string_efree(zend_string *s) |
328 | 252k | { |
329 | 252k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); |
330 | 252k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); |
331 | 252k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); |
332 | 252k | efree(s); |
333 | 252k | } Unexecuted instantiation: php_date.c:zend_string_efree Unexecuted instantiation: astro.c:zend_string_efree Unexecuted instantiation: dow.c:zend_string_efree Unexecuted instantiation: parse_date.c:zend_string_efree Unexecuted instantiation: parse_tz.c:zend_string_efree Unexecuted instantiation: parse_posix.c:zend_string_efree Unexecuted instantiation: timelib.c:zend_string_efree Unexecuted instantiation: tm2unixtime.c:zend_string_efree Unexecuted instantiation: unixtime2tm.c:zend_string_efree Unexecuted instantiation: parse_iso_intervals.c:zend_string_efree Unexecuted instantiation: interval.c:zend_string_efree Unexecuted instantiation: php_pcre.c:zend_string_efree Unexecuted instantiation: exif.c:zend_string_efree Unexecuted instantiation: hash_adler32.c:zend_string_efree Unexecuted instantiation: hash_crc32.c:zend_string_efree Unexecuted instantiation: hash_fnv.c:zend_string_efree Unexecuted instantiation: hash_gost.c:zend_string_efree Unexecuted instantiation: hash_haval.c:zend_string_efree Unexecuted instantiation: hash_joaat.c:zend_string_efree Unexecuted instantiation: hash_md.c:zend_string_efree Unexecuted instantiation: hash_murmur.c:zend_string_efree Unexecuted instantiation: hash_ripemd.c:zend_string_efree Unexecuted instantiation: hash_sha_ni.c:zend_string_efree Unexecuted instantiation: hash_sha_sse2.c:zend_string_efree Unexecuted instantiation: hash_sha.c:zend_string_efree Unexecuted instantiation: hash_sha3.c:zend_string_efree Unexecuted instantiation: hash_snefru.c:zend_string_efree Unexecuted instantiation: hash_tiger.c:zend_string_efree Unexecuted instantiation: hash_whirlpool.c:zend_string_efree Unexecuted instantiation: hash_xxhash.c:zend_string_efree Line | Count | Source | 328 | 1.87k | { | 329 | 1.87k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 1.87k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 1.87k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 1.87k | efree(s); | 333 | 1.87k | } |
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 | 328 | 3.89k | { | 329 | 3.89k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 3.89k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 3.89k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 3.89k | efree(s); | 333 | 3.89k | } |
Unexecuted instantiation: fsock.c:zend_string_efree Unexecuted instantiation: ftok.c:zend_string_efree Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_efree Unexecuted instantiation: head.c:zend_string_efree Unexecuted instantiation: hrtime.c:zend_string_efree Line | Count | Source | 328 | 209 | { | 329 | 209 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 209 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 209 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 209 | efree(s); | 333 | 209 | } |
Unexecuted instantiation: http_fopen_wrapper.c:zend_string_efree Unexecuted instantiation: http.c:zend_string_efree Unexecuted instantiation: image.c:zend_string_efree Unexecuted instantiation: incomplete_class.c:zend_string_efree Line | Count | Source | 328 | 77 | { | 329 | 77 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 77 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 77 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 77 | efree(s); | 333 | 77 | } |
Unexecuted instantiation: iptc.c:zend_string_efree Unexecuted instantiation: levenshtein.c:zend_string_efree Unexecuted instantiation: link.c:zend_string_efree Unexecuted instantiation: mail.c:zend_string_efree Unexecuted instantiation: math.c:zend_string_efree Unexecuted instantiation: md5.c:zend_string_efree Unexecuted instantiation: metaphone.c:zend_string_efree Unexecuted instantiation: microtime.c:zend_string_efree Unexecuted instantiation: net.c:zend_string_efree Unexecuted instantiation: pack.c:zend_string_efree Unexecuted instantiation: pageinfo.c:zend_string_efree Unexecuted instantiation: password.c:zend_string_efree Unexecuted instantiation: php_fopen_wrapper.c:zend_string_efree Unexecuted instantiation: proc_open.c:zend_string_efree Unexecuted instantiation: quot_print.c:zend_string_efree Unexecuted instantiation: scanf.c:zend_string_efree Unexecuted instantiation: sha1.c:zend_string_efree Unexecuted instantiation: soundex.c:zend_string_efree Unexecuted instantiation: streamsfuncs.c:zend_string_efree Unexecuted instantiation: string.c:zend_string_efree Unexecuted instantiation: strnatcmp.c:zend_string_efree Unexecuted instantiation: syslog.c:zend_string_efree Unexecuted instantiation: type.c:zend_string_efree Unexecuted instantiation: uniqid.c:zend_string_efree Unexecuted instantiation: url_scanner_ex.c:zend_string_efree Unexecuted instantiation: url.c:zend_string_efree Unexecuted instantiation: user_filters.c:zend_string_efree Unexecuted instantiation: uuencode.c:zend_string_efree var_unserializer.c:zend_string_efree Line | Count | Source | 328 | 205 | { | 329 | 205 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 205 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 205 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 205 | efree(s); | 333 | 205 | } |
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: php_uriparser.c:zend_string_efree Unexecuted instantiation: explicit_bzero.c:zend_string_efree Unexecuted instantiation: fopen_wrappers.c:zend_string_efree Unexecuted instantiation: getopt.c:zend_string_efree Unexecuted instantiation: main.c:zend_string_efree Unexecuted instantiation: network.c:zend_string_efree Unexecuted instantiation: output.c:zend_string_efree Unexecuted instantiation: php_content_types.c:zend_string_efree Unexecuted instantiation: php_ini_builder.c:zend_string_efree Unexecuted instantiation: php_ini.c:zend_string_efree Unexecuted instantiation: php_glob.c:zend_string_efree Unexecuted instantiation: php_odbc_utils.c:zend_string_efree Unexecuted instantiation: php_open_temporary_file.c:zend_string_efree Unexecuted instantiation: php_scandir.c:zend_string_efree Unexecuted instantiation: php_syslog.c:zend_string_efree Unexecuted instantiation: php_ticks.c:zend_string_efree Unexecuted instantiation: php_variables.c:zend_string_efree Unexecuted instantiation: reentrancy.c:zend_string_efree Unexecuted instantiation: rfc1867.c:zend_string_efree Unexecuted instantiation: safe_bcmp.c:zend_string_efree Unexecuted instantiation: SAPI.c:zend_string_efree Unexecuted instantiation: snprintf.c:zend_string_efree Unexecuted instantiation: spprintf.c:zend_string_efree Unexecuted instantiation: strlcat.c:zend_string_efree Unexecuted instantiation: strlcpy.c:zend_string_efree Unexecuted instantiation: cast.c:zend_string_efree Unexecuted instantiation: filter.c:zend_string_efree Unexecuted instantiation: glob_wrapper.c:zend_string_efree Unexecuted instantiation: memory.c:zend_string_efree Unexecuted instantiation: mmap.c:zend_string_efree Unexecuted instantiation: plain_wrapper.c:zend_string_efree Unexecuted instantiation: streams.c:zend_string_efree Unexecuted instantiation: transports.c:zend_string_efree Unexecuted instantiation: userspace.c:zend_string_efree Unexecuted instantiation: xp_socket.c:zend_string_efree Unexecuted instantiation: block_pass.c:zend_string_efree Unexecuted instantiation: compact_literals.c:zend_string_efree Unexecuted instantiation: compact_vars.c:zend_string_efree Unexecuted instantiation: dce.c:zend_string_efree Unexecuted instantiation: dfa_pass.c:zend_string_efree Unexecuted instantiation: escape_analysis.c:zend_string_efree Unexecuted instantiation: nop_removal.c:zend_string_efree Unexecuted instantiation: optimize_func_calls.c:zend_string_efree Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_efree Unexecuted instantiation: pass1.c:zend_string_efree Unexecuted instantiation: pass3.c:zend_string_efree Unexecuted instantiation: sccp.c:zend_string_efree Unexecuted instantiation: scdf.c:zend_string_efree Unexecuted instantiation: zend_call_graph.c:zend_string_efree Unexecuted instantiation: zend_cfg.c:zend_string_efree Unexecuted instantiation: zend_dfg.c:zend_string_efree Unexecuted instantiation: zend_dump.c:zend_string_efree Unexecuted instantiation: zend_func_info.c:zend_string_efree Unexecuted instantiation: zend_inference.c:zend_string_efree Unexecuted instantiation: zend_optimizer.c:zend_string_efree Unexecuted instantiation: zend_ssa.c:zend_string_efree Unexecuted instantiation: zend_alloc.c:zend_string_efree zend_API.c:zend_string_efree Line | Count | Source | 328 | 48 | { | 329 | 48 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 48 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 48 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 48 | efree(s); | 333 | 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 | 328 | 1.12k | { | 329 | 1.12k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 1.12k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 1.12k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 1.12k | efree(s); | 333 | 1.12k | } |
zend_constants.c:zend_string_efree Line | Count | Source | 328 | 68.7k | { | 329 | 68.7k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 68.7k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 68.7k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 68.7k | efree(s); | 333 | 68.7k | } |
Unexecuted instantiation: zend_cpuinfo.c:zend_string_efree Unexecuted instantiation: zend_default_classes.c:zend_string_efree Unexecuted instantiation: zend_dtrace.c:zend_string_efree Unexecuted instantiation: zend_enum.c:zend_string_efree Unexecuted instantiation: zend_exceptions.c:zend_string_efree Unexecuted instantiation: zend_execute_API.c:zend_string_efree Unexecuted instantiation: zend_execute.c:zend_string_efree Unexecuted instantiation: zend_extensions.c:zend_string_efree Unexecuted instantiation: zend_fibers.c:zend_string_efree Unexecuted instantiation: zend_float.c:zend_string_efree Unexecuted instantiation: zend_gc.c:zend_string_efree Unexecuted instantiation: zend_gdb.c:zend_string_efree Unexecuted instantiation: zend_generators.c:zend_string_efree Unexecuted instantiation: zend_hash.c:zend_string_efree Unexecuted instantiation: zend_highlight.c:zend_string_efree Unexecuted instantiation: zend_hrtime.c:zend_string_efree zend_inheritance.c:zend_string_efree Line | Count | Source | 328 | 840 | { | 329 | 840 | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 840 | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 840 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 840 | efree(s); | 333 | 840 | } |
Unexecuted instantiation: zend_ini_parser.c:zend_string_efree Unexecuted instantiation: zend_ini_scanner.c:zend_string_efree Unexecuted instantiation: zend_ini.c:zend_string_efree Unexecuted instantiation: zend_interfaces.c:zend_string_efree Unexecuted instantiation: zend_iterators.c:zend_string_efree Unexecuted instantiation: zend_language_parser.c:zend_string_efree zend_language_scanner.c:zend_string_efree Line | Count | Source | 328 | 175k | { | 329 | 175k | ZEND_ASSERT(!ZSTR_IS_INTERNED(s)); | 330 | 175k | ZEND_ASSERT(GC_REFCOUNT(s) <= 1); | 331 | 175k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 332 | 175k | efree(s); | 333 | 175k | } |
Unexecuted instantiation: zend_lazy_objects.c:zend_string_efree Unexecuted instantiation: zend_list.c:zend_string_efree Unexecuted instantiation: zend_llist.c:zend_string_efree Unexecuted instantiation: zend_multibyte.c:zend_string_efree Unexecuted instantiation: zend_object_handlers.c:zend_string_efree Unexecuted instantiation: zend_objects_API.c:zend_string_efree Unexecuted instantiation: zend_objects.c:zend_string_efree Unexecuted instantiation: zend_observer.c:zend_string_efree Unexecuted instantiation: zend_opcode.c:zend_string_efree Unexecuted instantiation: zend_operators.c:zend_string_efree Unexecuted instantiation: zend_property_hooks.c:zend_string_efree Unexecuted instantiation: zend_ptr_stack.c:zend_string_efree Unexecuted instantiation: zend_signal.c:zend_string_efree Unexecuted instantiation: zend_smart_str.c:zend_string_efree Unexecuted instantiation: zend_sort.c:zend_string_efree Unexecuted instantiation: zend_stack.c:zend_string_efree Unexecuted instantiation: zend_stream.c:zend_string_efree Unexecuted instantiation: zend_string.c:zend_string_efree Unexecuted instantiation: zend_strtod.c:zend_string_efree Unexecuted instantiation: zend_system_id.c:zend_string_efree Unexecuted instantiation: zend_variables.c:zend_string_efree Unexecuted instantiation: zend_virtual_cwd.c:zend_string_efree Unexecuted instantiation: zend_vm_opcodes.c:zend_string_efree Unexecuted instantiation: zend_weakrefs.c:zend_string_efree Unexecuted instantiation: zend.c:zend_string_efree Unexecuted instantiation: internal_functions_cli.c:zend_string_efree Unexecuted instantiation: fuzzer-parser.c:zend_string_efree Unexecuted instantiation: fuzzer-sapi.c:zend_string_efree Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_efree Unexecuted instantiation: fuzzer-exif.c:zend_string_efree Unexecuted instantiation: fuzzer-unserialize.c:zend_string_efree Unexecuted instantiation: fuzzer-function-jit.c:zend_string_efree Unexecuted instantiation: fuzzer-json.c:zend_string_efree Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_efree Unexecuted instantiation: fuzzer-execute.c:zend_string_efree |
334 | | |
335 | | static zend_always_inline void zend_string_release(zend_string *s) |
336 | 21.7M | { |
337 | 21.7M | if (!ZSTR_IS_INTERNED(s)) { |
338 | 13.7M | if (GC_DELREF(s) == 0) { |
339 | 7.46M | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); |
340 | 7.46M | } |
341 | 13.7M | } |
342 | 21.7M | } php_date.c:zend_string_release Line | Count | Source | 336 | 819 | { | 337 | 819 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 164 | if (GC_DELREF(s) == 0) { | 339 | 162 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 162 | } | 341 | 164 | } | 342 | 819 | } |
Unexecuted instantiation: astro.c:zend_string_release Unexecuted instantiation: dow.c:zend_string_release Unexecuted instantiation: parse_date.c:zend_string_release Unexecuted instantiation: parse_tz.c:zend_string_release Unexecuted instantiation: parse_posix.c:zend_string_release Unexecuted instantiation: timelib.c:zend_string_release Unexecuted instantiation: tm2unixtime.c:zend_string_release Unexecuted instantiation: unixtime2tm.c:zend_string_release Unexecuted instantiation: parse_iso_intervals.c:zend_string_release Unexecuted instantiation: interval.c:zend_string_release php_pcre.c:zend_string_release Line | Count | Source | 336 | 354 | { | 337 | 354 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 354 | if (GC_DELREF(s) == 0) { | 339 | 0 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 0 | } | 341 | 354 | } | 342 | 354 | } |
Unexecuted instantiation: exif.c:zend_string_release Unexecuted instantiation: hash_adler32.c:zend_string_release Unexecuted instantiation: hash_crc32.c:zend_string_release Unexecuted instantiation: hash_fnv.c:zend_string_release Unexecuted instantiation: hash_gost.c:zend_string_release Unexecuted instantiation: hash_haval.c:zend_string_release Unexecuted instantiation: hash_joaat.c:zend_string_release Unexecuted instantiation: hash_md.c:zend_string_release Unexecuted instantiation: hash_murmur.c:zend_string_release Unexecuted instantiation: hash_ripemd.c:zend_string_release Unexecuted instantiation: hash_sha_ni.c:zend_string_release Unexecuted instantiation: hash_sha_sse2.c:zend_string_release Unexecuted instantiation: hash_sha.c:zend_string_release Unexecuted instantiation: hash_sha3.c:zend_string_release Unexecuted instantiation: hash_snefru.c:zend_string_release Unexecuted instantiation: hash_tiger.c:zend_string_release Unexecuted instantiation: hash_whirlpool.c:zend_string_release Unexecuted instantiation: hash_xxhash.c:zend_string_release hash.c:zend_string_release Line | Count | Source | 336 | 3.77k | { | 337 | 3.77k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 3.77k | if (GC_DELREF(s) == 0) { | 339 | 269 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 269 | } | 341 | 3.77k | } | 342 | 3.77k | } |
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 | 336 | 16 | { | 337 | 16 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 16 | if (GC_DELREF(s) == 0) { | 339 | 16 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 16 | } | 341 | 16 | } | 342 | 16 | } |
Unexecuted instantiation: randomizer.c:zend_string_release Unexecuted instantiation: zend_utils.c:zend_string_release php_reflection.c:zend_string_release Line | Count | Source | 336 | 133k | { | 337 | 133k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 24.9k | if (GC_DELREF(s) == 0) { | 339 | 24.9k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 24.9k | } | 341 | 24.9k | } | 342 | 133k | } |
Unexecuted instantiation: php_spl.c:zend_string_release spl_array.c:zend_string_release Line | Count | Source | 336 | 80 | { | 337 | 80 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 0 | if (GC_DELREF(s) == 0) { | 339 | 0 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 0 | } | 341 | 0 | } | 342 | 80 | } |
spl_directory.c:zend_string_release Line | Count | Source | 336 | 281 | { | 337 | 281 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 20 | if (GC_DELREF(s) == 0) { | 339 | 15 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 15 | } | 341 | 20 | } | 342 | 281 | } |
spl_dllist.c:zend_string_release Line | Count | Source | 336 | 64 | { | 337 | 64 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 0 | if (GC_DELREF(s) == 0) { | 339 | 0 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 0 | } | 341 | 0 | } | 342 | 64 | } |
Unexecuted instantiation: spl_exceptions.c:zend_string_release Unexecuted instantiation: spl_fixedarray.c:zend_string_release Unexecuted instantiation: spl_functions.c:zend_string_release spl_heap.c:zend_string_release Line | Count | Source | 336 | 48 | { | 337 | 48 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 0 | if (GC_DELREF(s) == 0) { | 339 | 0 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 0 | } | 341 | 0 | } | 342 | 48 | } |
spl_iterators.c:zend_string_release Line | Count | Source | 336 | 7.47k | { | 337 | 7.47k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 4.04k | if (GC_DELREF(s) == 0) { | 339 | 4.04k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 4.04k | } | 341 | 4.04k | } | 342 | 7.47k | } |
spl_observer.c:zend_string_release Line | Count | Source | 336 | 64 | { | 337 | 64 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 0 | if (GC_DELREF(s) == 0) { | 339 | 0 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 0 | } | 341 | 0 | } | 342 | 64 | } |
array.c:zend_string_release Line | Count | Source | 336 | 47 | { | 337 | 47 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 0 | if (GC_DELREF(s) == 0) { | 339 | 0 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 0 | } | 341 | 0 | } | 342 | 47 | } |
Unexecuted instantiation: assert.c:zend_string_release Unexecuted instantiation: base64.c:zend_string_release basic_functions.c:zend_string_release Line | Count | Source | 336 | 454 | { | 337 | 454 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 364 | if (GC_DELREF(s) == 0) { | 339 | 255 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 255 | } | 341 | 364 | } | 342 | 454 | } |
Unexecuted instantiation: browscap.c:zend_string_release Unexecuted instantiation: crc32_x86.c:zend_string_release Unexecuted instantiation: crc32.c:zend_string_release Unexecuted instantiation: credits.c:zend_string_release Unexecuted instantiation: crypt.c:zend_string_release Unexecuted instantiation: css.c:zend_string_release Unexecuted instantiation: datetime.c:zend_string_release dir.c:zend_string_release Line | Count | Source | 336 | 16 | { | 337 | 16 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 16 | if (GC_DELREF(s) == 0) { | 339 | 16 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 16 | } | 341 | 16 | } | 342 | 16 | } |
Unexecuted instantiation: dl.c:zend_string_release Unexecuted instantiation: dns.c:zend_string_release Unexecuted instantiation: exec.c:zend_string_release Unexecuted instantiation: file.c:zend_string_release Unexecuted instantiation: filestat.c:zend_string_release Unexecuted instantiation: filters.c:zend_string_release Unexecuted instantiation: flock_compat.c:zend_string_release Unexecuted instantiation: formatted_print.c:zend_string_release Unexecuted instantiation: fsock.c:zend_string_release Unexecuted instantiation: ftok.c:zend_string_release Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_release Unexecuted instantiation: head.c:zend_string_release Unexecuted instantiation: hrtime.c:zend_string_release Unexecuted instantiation: html.c:zend_string_release Unexecuted instantiation: http_fopen_wrapper.c:zend_string_release Unexecuted instantiation: http.c:zend_string_release Unexecuted instantiation: image.c:zend_string_release Unexecuted instantiation: incomplete_class.c:zend_string_release Unexecuted instantiation: info.c:zend_string_release Unexecuted instantiation: iptc.c:zend_string_release Unexecuted instantiation: levenshtein.c:zend_string_release Unexecuted instantiation: link.c:zend_string_release Unexecuted instantiation: mail.c:zend_string_release Unexecuted instantiation: math.c:zend_string_release Unexecuted instantiation: md5.c:zend_string_release Unexecuted instantiation: metaphone.c:zend_string_release Unexecuted instantiation: microtime.c:zend_string_release Unexecuted instantiation: net.c:zend_string_release Unexecuted instantiation: pack.c:zend_string_release Unexecuted instantiation: pageinfo.c:zend_string_release Unexecuted instantiation: password.c:zend_string_release Unexecuted instantiation: php_fopen_wrapper.c:zend_string_release Unexecuted instantiation: proc_open.c:zend_string_release Unexecuted instantiation: quot_print.c:zend_string_release Unexecuted instantiation: scanf.c:zend_string_release Unexecuted instantiation: sha1.c:zend_string_release Unexecuted instantiation: soundex.c:zend_string_release Unexecuted instantiation: streamsfuncs.c:zend_string_release Unexecuted instantiation: string.c:zend_string_release Unexecuted instantiation: strnatcmp.c:zend_string_release Unexecuted instantiation: syslog.c:zend_string_release Unexecuted instantiation: type.c:zend_string_release Unexecuted instantiation: uniqid.c:zend_string_release Unexecuted instantiation: url_scanner_ex.c:zend_string_release Unexecuted instantiation: url.c:zend_string_release user_filters.c:zend_string_release Line | Count | Source | 336 | 152 | { | 337 | 152 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 152 | if (GC_DELREF(s) == 0) { | 339 | 152 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 152 | } | 341 | 152 | } | 342 | 152 | } |
Unexecuted instantiation: uuencode.c:zend_string_release Unexecuted instantiation: var_unserializer.c:zend_string_release var.c:zend_string_release Line | Count | Source | 336 | 841 | { | 337 | 841 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 45 | if (GC_DELREF(s) == 0) { | 339 | 32 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 32 | } | 341 | 45 | } | 342 | 841 | } |
Unexecuted instantiation: versioning.c:zend_string_release Unexecuted instantiation: crypt_sha256.c:zend_string_release Unexecuted instantiation: crypt_sha512.c:zend_string_release Unexecuted instantiation: php_crypt_r.c:zend_string_release php_uri.c:zend_string_release Line | Count | Source | 336 | 48 | { | 337 | 48 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 48 | if (GC_DELREF(s) == 0) { | 339 | 48 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 48 | } | 341 | 48 | } | 342 | 48 | } |
Unexecuted instantiation: php_uri_common.c:zend_string_release Unexecuted instantiation: php_uriparser.c:zend_string_release Unexecuted instantiation: explicit_bzero.c:zend_string_release fopen_wrappers.c:zend_string_release Line | Count | Source | 336 | 23 | { | 337 | 23 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 23 | if (GC_DELREF(s) == 0) { | 339 | 23 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 23 | } | 341 | 23 | } | 342 | 23 | } |
Unexecuted instantiation: getopt.c:zend_string_release main.c:zend_string_release Line | Count | Source | 336 | 9.39M | { | 337 | 9.39M | if (!ZSTR_IS_INTERNED(s)) { | 338 | 3.73M | if (GC_DELREF(s) == 0) { | 339 | 3.00M | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 3.00M | } | 341 | 3.73M | } | 342 | 9.39M | } |
Unexecuted instantiation: network.c:zend_string_release output.c:zend_string_release Line | Count | Source | 336 | 65.4k | { | 337 | 65.4k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 4.78k | if (GC_DELREF(s) == 0) { | 339 | 835 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 835 | } | 341 | 4.78k | } | 342 | 65.4k | } |
Unexecuted instantiation: php_content_types.c:zend_string_release Unexecuted instantiation: php_ini_builder.c:zend_string_release Unexecuted instantiation: php_ini.c:zend_string_release Unexecuted instantiation: php_glob.c:zend_string_release Unexecuted instantiation: php_odbc_utils.c:zend_string_release Unexecuted instantiation: php_open_temporary_file.c:zend_string_release Unexecuted instantiation: php_scandir.c:zend_string_release Unexecuted instantiation: php_syslog.c:zend_string_release Unexecuted instantiation: php_ticks.c:zend_string_release Unexecuted instantiation: php_variables.c:zend_string_release Unexecuted instantiation: reentrancy.c:zend_string_release Unexecuted instantiation: rfc1867.c:zend_string_release Unexecuted instantiation: safe_bcmp.c:zend_string_release Unexecuted instantiation: SAPI.c:zend_string_release Unexecuted instantiation: snprintf.c:zend_string_release Unexecuted instantiation: spprintf.c:zend_string_release Unexecuted instantiation: strlcat.c:zend_string_release Unexecuted instantiation: strlcpy.c:zend_string_release Unexecuted instantiation: cast.c:zend_string_release Unexecuted instantiation: filter.c:zend_string_release Unexecuted instantiation: glob_wrapper.c:zend_string_release memory.c:zend_string_release Line | Count | Source | 336 | 5.81k | { | 337 | 5.81k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 5.80k | if (GC_DELREF(s) == 0) { | 339 | 5.80k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 5.80k | } | 341 | 5.80k | } | 342 | 5.81k | } |
Unexecuted instantiation: mmap.c:zend_string_release Unexecuted instantiation: plain_wrapper.c:zend_string_release Unexecuted instantiation: streams.c:zend_string_release Unexecuted instantiation: transports.c:zend_string_release Unexecuted instantiation: userspace.c:zend_string_release Unexecuted instantiation: xp_socket.c:zend_string_release Unexecuted instantiation: block_pass.c:zend_string_release Unexecuted instantiation: compact_literals.c:zend_string_release Unexecuted instantiation: compact_vars.c:zend_string_release Unexecuted instantiation: dce.c:zend_string_release dfa_pass.c:zend_string_release Line | Count | Source | 336 | 405 | { | 337 | 405 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 377 | if (GC_DELREF(s) == 0) { | 339 | 359 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 359 | } | 341 | 377 | } | 342 | 405 | } |
Unexecuted instantiation: escape_analysis.c:zend_string_release Unexecuted instantiation: nop_removal.c:zend_string_release Unexecuted instantiation: optimize_func_calls.c:zend_string_release Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_release Unexecuted instantiation: pass1.c:zend_string_release Unexecuted instantiation: pass3.c:zend_string_release Unexecuted instantiation: sccp.c:zend_string_release Unexecuted instantiation: scdf.c:zend_string_release Unexecuted instantiation: zend_call_graph.c:zend_string_release Unexecuted instantiation: zend_cfg.c:zend_string_release Unexecuted instantiation: zend_dfg.c:zend_string_release Unexecuted instantiation: zend_dump.c:zend_string_release Unexecuted instantiation: zend_func_info.c:zend_string_release Unexecuted instantiation: zend_inference.c:zend_string_release Unexecuted instantiation: zend_optimizer.c:zend_string_release Unexecuted instantiation: zend_ssa.c:zend_string_release Unexecuted instantiation: zend_alloc.c:zend_string_release zend_API.c:zend_string_release Line | Count | Source | 336 | 38.8k | { | 337 | 38.8k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 4.48k | if (GC_DELREF(s) == 0) { | 339 | 4.35k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 4.35k | } | 341 | 4.48k | } | 342 | 38.8k | } |
zend_ast.c:zend_string_release Line | Count | Source | 336 | 7.24k | { | 337 | 7.24k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 7.16k | if (GC_DELREF(s) == 0) { | 339 | 7.16k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 7.16k | } | 341 | 7.16k | } | 342 | 7.24k | } |
zend_attributes.c:zend_string_release Line | Count | Source | 336 | 854k | { | 337 | 854k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 850k | if (GC_DELREF(s) == 0) { | 339 | 847k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 847k | } | 341 | 850k | } | 342 | 854k | } |
zend_builtin_functions.c:zend_string_release Line | Count | Source | 336 | 336 | { | 337 | 336 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 284 | if (GC_DELREF(s) == 0) { | 339 | 284 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 284 | } | 341 | 284 | } | 342 | 336 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_release zend_closures.c:zend_string_release Line | Count | Source | 336 | 956 | { | 337 | 956 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 52 | if (GC_DELREF(s) == 0) { | 339 | 19 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 19 | } | 341 | 52 | } | 342 | 956 | } |
zend_compile.c:zend_string_release Line | Count | Source | 336 | 1.14M | { | 337 | 1.14M | if (!ZSTR_IS_INTERNED(s)) { | 338 | 1.08M | if (GC_DELREF(s) == 0) { | 339 | 475k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 475k | } | 341 | 1.08M | } | 342 | 1.14M | } |
zend_constants.c:zend_string_release Line | Count | Source | 336 | 585 | { | 337 | 585 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 86 | if (GC_DELREF(s) == 0) { | 339 | 2 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 2 | } | 341 | 86 | } | 342 | 585 | } |
Unexecuted instantiation: zend_cpuinfo.c:zend_string_release Unexecuted instantiation: zend_default_classes.c:zend_string_release Unexecuted instantiation: zend_dtrace.c:zend_string_release zend_enum.c:zend_string_release Line | Count | Source | 336 | 733 | { | 337 | 733 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 13 | if (GC_DELREF(s) == 0) { | 339 | 13 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 13 | } | 341 | 13 | } | 342 | 733 | } |
zend_exceptions.c:zend_string_release Line | Count | Source | 336 | 1.12M | { | 337 | 1.12M | if (!ZSTR_IS_INTERNED(s)) { | 338 | 1.12M | if (GC_DELREF(s) == 0) { | 339 | 0 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 0 | } | 341 | 1.12M | } | 342 | 1.12M | } |
Unexecuted instantiation: zend_execute_API.c:zend_string_release zend_execute.c:zend_string_release Line | Count | Source | 336 | 16.3k | { | 337 | 16.3k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 10.4k | if (GC_DELREF(s) == 0) { | 339 | 1.47k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 1.47k | } | 341 | 10.4k | } | 342 | 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 | 336 | 2.49M | { | 337 | 2.49M | if (!ZSTR_IS_INTERNED(s)) { | 338 | 629k | if (GC_DELREF(s) == 0) { | 339 | 216k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 216k | } | 341 | 629k | } | 342 | 2.49M | } |
Unexecuted instantiation: zend_highlight.c:zend_string_release Unexecuted instantiation: zend_hrtime.c:zend_string_release zend_inheritance.c:zend_string_release Line | Count | Source | 336 | 4.72k | { | 337 | 4.72k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 1.67k | if (GC_DELREF(s) == 0) { | 339 | 1.64k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 1.64k | } | 341 | 1.67k | } | 342 | 4.72k | } |
zend_ini_parser.c:zend_string_release Line | Count | Source | 336 | 497k | { | 337 | 497k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 491k | if (GC_DELREF(s) == 0) { | 339 | 340k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 340k | } | 341 | 491k | } | 342 | 497k | } |
Unexecuted instantiation: zend_ini_scanner.c:zend_string_release zend_ini.c:zend_string_release Line | Count | Source | 336 | 173k | { | 337 | 173k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 172k | if (GC_DELREF(s) == 0) { | 339 | 86.5k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 86.5k | } | 341 | 172k | } | 342 | 173k | } |
Unexecuted instantiation: zend_interfaces.c:zend_string_release Unexecuted instantiation: zend_iterators.c:zend_string_release Unexecuted instantiation: zend_language_parser.c:zend_string_release zend_language_scanner.c:zend_string_release Line | Count | Source | 336 | 28.4k | { | 337 | 28.4k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 28.4k | if (GC_DELREF(s) == 0) { | 339 | 0 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 0 | } | 341 | 28.4k | } | 342 | 28.4k | } |
Unexecuted instantiation: zend_lazy_objects.c:zend_string_release Unexecuted instantiation: zend_list.c:zend_string_release Unexecuted instantiation: zend_llist.c:zend_string_release Unexecuted instantiation: zend_multibyte.c:zend_string_release zend_object_handlers.c:zend_string_release Line | Count | Source | 336 | 322 | { | 337 | 322 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 322 | if (GC_DELREF(s) == 0) { | 339 | 264 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 264 | } | 341 | 322 | } | 342 | 322 | } |
Unexecuted instantiation: zend_objects_API.c:zend_string_release Unexecuted instantiation: zend_objects.c:zend_string_release Unexecuted instantiation: zend_observer.c:zend_string_release zend_opcode.c:zend_string_release Line | Count | Source | 336 | 91.2k | { | 337 | 91.2k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 143 | if (GC_DELREF(s) == 0) { | 339 | 27 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 27 | } | 341 | 143 | } | 342 | 91.2k | } |
zend_operators.c:zend_string_release Line | Count | Source | 336 | 9.35k | { | 337 | 9.35k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 5.69k | if (GC_DELREF(s) == 0) { | 339 | 5.69k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 5.69k | } | 341 | 5.69k | } | 342 | 9.35k | } |
zend_property_hooks.c:zend_string_release Line | Count | Source | 336 | 55 | { | 337 | 55 | if (!ZSTR_IS_INTERNED(s)) { | 338 | 55 | if (GC_DELREF(s) == 0) { | 339 | 44 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 44 | } | 341 | 55 | } | 342 | 55 | } |
Unexecuted instantiation: zend_ptr_stack.c:zend_string_release Unexecuted instantiation: zend_signal.c:zend_string_release Unexecuted instantiation: zend_smart_str.c:zend_string_release Unexecuted instantiation: zend_sort.c:zend_string_release Unexecuted instantiation: zend_stack.c:zend_string_release zend_stream.c:zend_string_release Line | Count | Source | 336 | 329k | { | 337 | 329k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 225k | if (GC_DELREF(s) == 0) { | 339 | 81.5k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 81.5k | } | 341 | 225k | } | 342 | 329k | } |
zend_string.c:zend_string_release Line | Count | Source | 336 | 2.69M | { | 337 | 2.69M | if (!ZSTR_IS_INTERNED(s)) { | 338 | 2.69M | if (GC_DELREF(s) == 0) { | 339 | 2.29M | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 2.29M | } | 341 | 2.69M | } | 342 | 2.69M | } |
Unexecuted instantiation: zend_strtod.c:zend_string_release Unexecuted instantiation: zend_system_id.c:zend_string_release Unexecuted instantiation: zend_variables.c:zend_string_release Unexecuted instantiation: zend_virtual_cwd.c:zend_string_release Unexecuted instantiation: zend_vm_opcodes.c:zend_string_release Unexecuted instantiation: zend_weakrefs.c:zend_string_release zend.c:zend_string_release Line | Count | Source | 336 | 2.61M | { | 337 | 2.61M | if (!ZSTR_IS_INTERNED(s)) { | 338 | 2.61M | if (GC_DELREF(s) == 0) { | 339 | 5 | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 5 | } | 341 | 2.61M | } | 342 | 2.61M | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_release Unexecuted instantiation: fuzzer-parser.c:zend_string_release Unexecuted instantiation: fuzzer-sapi.c:zend_string_release fuzzer-tracing-jit.c:zend_string_release Line | Count | Source | 336 | 24.5k | { | 337 | 24.5k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 24.5k | if (GC_DELREF(s) == 0) { | 339 | 24.5k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 24.5k | } | 341 | 24.5k | } | 342 | 24.5k | } |
Unexecuted instantiation: fuzzer-exif.c:zend_string_release Unexecuted instantiation: fuzzer-unserialize.c:zend_string_release fuzzer-function-jit.c:zend_string_release Line | Count | Source | 336 | 25.3k | { | 337 | 25.3k | if (!ZSTR_IS_INTERNED(s)) { | 338 | 25.3k | if (GC_DELREF(s) == 0) { | 339 | 25.3k | pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT); | 340 | 25.3k | } | 341 | 25.3k | } | 342 | 25.3k | } |
Unexecuted instantiation: fuzzer-json.c:zend_string_release Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_release Unexecuted instantiation: fuzzer-execute.c:zend_string_release |
343 | | |
344 | | static zend_always_inline void zend_string_release_ex(zend_string *s, bool persistent) |
345 | 10.0M | { |
346 | 10.0M | if (!ZSTR_IS_INTERNED(s)) { |
347 | 4.18M | if (GC_DELREF(s) == 0) { |
348 | 2.58M | if (persistent) { |
349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); |
350 | 0 | free(s); |
351 | 2.58M | } else { |
352 | 2.58M | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); |
353 | 2.58M | efree(s); |
354 | 2.58M | } |
355 | 2.58M | } |
356 | 4.18M | } |
357 | 10.0M | } php_date.c:zend_string_release_ex Line | Count | Source | 345 | 77.4k | { | 346 | 77.4k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 77.3k | if (GC_DELREF(s) == 0) { | 348 | 77.3k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 77.3k | } else { | 352 | 77.3k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 77.3k | efree(s); | 354 | 77.3k | } | 355 | 77.3k | } | 356 | 77.3k | } | 357 | 77.4k | } |
Unexecuted instantiation: astro.c:zend_string_release_ex Unexecuted instantiation: dow.c:zend_string_release_ex Unexecuted instantiation: parse_date.c:zend_string_release_ex Unexecuted instantiation: parse_tz.c:zend_string_release_ex Unexecuted instantiation: parse_posix.c:zend_string_release_ex Unexecuted instantiation: timelib.c:zend_string_release_ex Unexecuted instantiation: tm2unixtime.c:zend_string_release_ex Unexecuted instantiation: unixtime2tm.c:zend_string_release_ex Unexecuted instantiation: parse_iso_intervals.c:zend_string_release_ex Unexecuted instantiation: interval.c:zend_string_release_ex php_pcre.c:zend_string_release_ex Line | Count | Source | 345 | 184 | { | 346 | 184 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 20 | if (GC_DELREF(s) == 0) { | 348 | 20 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 20 | } else { | 352 | 20 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 20 | efree(s); | 354 | 20 | } | 355 | 20 | } | 356 | 20 | } | 357 | 184 | } |
Unexecuted instantiation: exif.c:zend_string_release_ex Unexecuted instantiation: hash_adler32.c:zend_string_release_ex Unexecuted instantiation: hash_crc32.c:zend_string_release_ex Unexecuted instantiation: hash_fnv.c:zend_string_release_ex Unexecuted instantiation: hash_gost.c:zend_string_release_ex Unexecuted instantiation: hash_haval.c:zend_string_release_ex Unexecuted instantiation: hash_joaat.c:zend_string_release_ex Unexecuted instantiation: hash_md.c:zend_string_release_ex Unexecuted instantiation: hash_murmur.c:zend_string_release_ex Unexecuted instantiation: hash_ripemd.c:zend_string_release_ex Unexecuted instantiation: hash_sha_ni.c:zend_string_release_ex Unexecuted instantiation: hash_sha_sse2.c:zend_string_release_ex Unexecuted instantiation: hash_sha.c:zend_string_release_ex Unexecuted instantiation: hash_sha3.c:zend_string_release_ex Unexecuted instantiation: hash_snefru.c:zend_string_release_ex Unexecuted instantiation: hash_tiger.c:zend_string_release_ex Unexecuted instantiation: hash_whirlpool.c:zend_string_release_ex Unexecuted instantiation: hash_xxhash.c:zend_string_release_ex Unexecuted instantiation: hash.c:zend_string_release_ex Unexecuted instantiation: json_encoder.c:zend_string_release_ex json_parser.tab.c:zend_string_release_ex Line | Count | Source | 345 | 54.6k | { | 346 | 54.6k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 35.5k | if (GC_DELREF(s) == 0) { | 348 | 16.1k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 16.1k | } else { | 352 | 16.1k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 16.1k | efree(s); | 354 | 16.1k | } | 355 | 16.1k | } | 356 | 35.5k | } | 357 | 54.6k | } |
Unexecuted instantiation: json_scanner.c:zend_string_release_ex json.c:zend_string_release_ex Line | Count | Source | 345 | 110 | { | 346 | 110 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 110 | if (GC_DELREF(s) == 0) { | 348 | 110 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 110 | } else { | 352 | 110 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 110 | efree(s); | 354 | 110 | } | 355 | 110 | } | 356 | 110 | } | 357 | 110 | } |
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 | 345 | 118k | { | 346 | 118k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 111k | if (GC_DELREF(s) == 0) { | 348 | 111k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 111k | } else { | 352 | 111k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 111k | efree(s); | 354 | 111k | } | 355 | 111k | } | 356 | 111k | } | 357 | 118k | } |
Unexecuted instantiation: php_spl.c:zend_string_release_ex Unexecuted instantiation: spl_array.c:zend_string_release_ex Unexecuted instantiation: spl_directory.c:zend_string_release_ex Unexecuted instantiation: spl_dllist.c:zend_string_release_ex Unexecuted instantiation: spl_exceptions.c:zend_string_release_ex Unexecuted instantiation: spl_fixedarray.c:zend_string_release_ex spl_functions.c:zend_string_release_ex Line | Count | Source | 345 | 64 | { | 346 | 64 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 64 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 64 | } | 357 | 64 | } |
Unexecuted instantiation: spl_heap.c:zend_string_release_ex Unexecuted instantiation: spl_iterators.c:zend_string_release_ex Unexecuted instantiation: spl_observer.c:zend_string_release_ex array.c:zend_string_release_ex Line | Count | Source | 345 | 2.71k | { | 346 | 2.71k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 203 | if (GC_DELREF(s) == 0) { | 348 | 198 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 198 | } else { | 352 | 198 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 198 | efree(s); | 354 | 198 | } | 355 | 198 | } | 356 | 203 | } | 357 | 2.71k | } |
assert.c:zend_string_release_ex Line | Count | Source | 345 | 74 | { | 346 | 74 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 40 | if (GC_DELREF(s) == 0) { | 348 | 37 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 37 | } else { | 352 | 37 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 37 | efree(s); | 354 | 37 | } | 355 | 37 | } | 356 | 40 | } | 357 | 74 | } |
Unexecuted instantiation: base64.c:zend_string_release_ex basic_functions.c:zend_string_release_ex Line | Count | Source | 345 | 595 | { | 346 | 595 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 74 | if (GC_DELREF(s) == 0) { | 348 | 36 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 36 | } else { | 352 | 36 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 36 | efree(s); | 354 | 36 | } | 355 | 36 | } | 356 | 74 | } | 357 | 595 | } |
Unexecuted instantiation: browscap.c:zend_string_release_ex Unexecuted instantiation: crc32_x86.c:zend_string_release_ex Unexecuted instantiation: crc32.c:zend_string_release_ex Unexecuted instantiation: credits.c:zend_string_release_ex Unexecuted instantiation: crypt.c:zend_string_release_ex Unexecuted instantiation: css.c:zend_string_release_ex Unexecuted instantiation: datetime.c:zend_string_release_ex Unexecuted instantiation: dir.c:zend_string_release_ex Unexecuted instantiation: dl.c:zend_string_release_ex Unexecuted instantiation: dns.c:zend_string_release_ex Unexecuted instantiation: exec.c:zend_string_release_ex Unexecuted instantiation: file.c:zend_string_release_ex Unexecuted instantiation: filestat.c:zend_string_release_ex Unexecuted instantiation: filters.c:zend_string_release_ex Unexecuted instantiation: flock_compat.c:zend_string_release_ex formatted_print.c:zend_string_release_ex Line | Count | Source | 345 | 56 | { | 346 | 56 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 5 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 5 | } | 357 | 56 | } |
Unexecuted instantiation: fsock.c:zend_string_release_ex Unexecuted instantiation: ftok.c:zend_string_release_ex Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_release_ex Unexecuted instantiation: head.c:zend_string_release_ex Unexecuted instantiation: hrtime.c:zend_string_release_ex Unexecuted instantiation: html.c:zend_string_release_ex Unexecuted instantiation: http_fopen_wrapper.c:zend_string_release_ex Unexecuted instantiation: http.c:zend_string_release_ex Unexecuted instantiation: image.c:zend_string_release_ex incomplete_class.c:zend_string_release_ex Line | Count | Source | 345 | 36 | { | 346 | 36 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 0 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 0 | } | 357 | 36 | } |
info.c:zend_string_release_ex Line | Count | Source | 345 | 33 | { | 346 | 33 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 22 | if (GC_DELREF(s) == 0) { | 348 | 22 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 22 | } else { | 352 | 22 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 22 | efree(s); | 354 | 22 | } | 355 | 22 | } | 356 | 22 | } | 357 | 33 | } |
Unexecuted instantiation: iptc.c:zend_string_release_ex Unexecuted instantiation: levenshtein.c:zend_string_release_ex Unexecuted instantiation: link.c:zend_string_release_ex Unexecuted instantiation: mail.c:zend_string_release_ex Unexecuted instantiation: math.c:zend_string_release_ex Unexecuted instantiation: md5.c:zend_string_release_ex Unexecuted instantiation: metaphone.c:zend_string_release_ex Unexecuted instantiation: microtime.c:zend_string_release_ex Unexecuted instantiation: net.c:zend_string_release_ex Unexecuted instantiation: pack.c:zend_string_release_ex Unexecuted instantiation: pageinfo.c:zend_string_release_ex Unexecuted instantiation: password.c:zend_string_release_ex Unexecuted instantiation: php_fopen_wrapper.c:zend_string_release_ex Unexecuted instantiation: proc_open.c:zend_string_release_ex Unexecuted instantiation: quot_print.c:zend_string_release_ex Unexecuted instantiation: scanf.c:zend_string_release_ex Unexecuted instantiation: sha1.c:zend_string_release_ex Unexecuted instantiation: soundex.c:zend_string_release_ex Unexecuted instantiation: streamsfuncs.c:zend_string_release_ex string.c:zend_string_release_ex Line | Count | Source | 345 | 395 | { | 346 | 395 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 211 | if (GC_DELREF(s) == 0) { | 348 | 78 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 78 | } else { | 352 | 78 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 78 | efree(s); | 354 | 78 | } | 355 | 78 | } | 356 | 211 | } | 357 | 395 | } |
Unexecuted instantiation: strnatcmp.c:zend_string_release_ex Unexecuted instantiation: syslog.c:zend_string_release_ex Unexecuted instantiation: type.c:zend_string_release_ex Unexecuted instantiation: uniqid.c:zend_string_release_ex url_scanner_ex.c:zend_string_release_ex Line | Count | Source | 345 | 80 | { | 346 | 80 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 80 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 80 | } | 357 | 80 | } |
Unexecuted instantiation: url.c:zend_string_release_ex user_filters.c:zend_string_release_ex Line | Count | Source | 345 | 216 | { | 346 | 216 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 0 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 0 | } | 357 | 216 | } |
Unexecuted instantiation: uuencode.c:zend_string_release_ex var_unserializer.c:zend_string_release_ex Line | Count | Source | 345 | 1.74M | { | 346 | 1.74M | if (!ZSTR_IS_INTERNED(s)) { | 347 | 820k | if (GC_DELREF(s) == 0) { | 348 | 820k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 820k | } else { | 352 | 820k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 820k | efree(s); | 354 | 820k | } | 355 | 820k | } | 356 | 820k | } | 357 | 1.74M | } |
var.c:zend_string_release_ex Line | Count | Source | 345 | 10.3k | { | 346 | 10.3k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 934 | if (GC_DELREF(s) == 0) { | 348 | 924 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 924 | } else { | 352 | 924 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 924 | efree(s); | 354 | 924 | } | 355 | 924 | } | 356 | 934 | } | 357 | 10.3k | } |
Unexecuted instantiation: versioning.c:zend_string_release_ex Unexecuted instantiation: crypt_sha256.c:zend_string_release_ex Unexecuted instantiation: crypt_sha512.c:zend_string_release_ex Unexecuted instantiation: php_crypt_r.c:zend_string_release_ex php_uri.c:zend_string_release_ex Line | Count | Source | 345 | 32 | { | 346 | 32 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 0 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 0 | } | 357 | 32 | } |
Unexecuted instantiation: php_uri_common.c:zend_string_release_ex Unexecuted instantiation: php_uriparser.c:zend_string_release_ex Unexecuted instantiation: explicit_bzero.c:zend_string_release_ex Unexecuted instantiation: fopen_wrappers.c:zend_string_release_ex Unexecuted instantiation: getopt.c:zend_string_release_ex main.c:zend_string_release_ex Line | Count | Source | 345 | 5 | { | 346 | 5 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 5 | if (GC_DELREF(s) == 0) { | 348 | 5 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 5 | } else { | 352 | 5 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 5 | efree(s); | 354 | 5 | } | 355 | 5 | } | 356 | 5 | } | 357 | 5 | } |
Unexecuted instantiation: network.c:zend_string_release_ex output.c:zend_string_release_ex Line | Count | Source | 345 | 4.74k | { | 346 | 4.74k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 4.64k | if (GC_DELREF(s) == 0) { | 348 | 2.32k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 2.32k | } else { | 352 | 2.32k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 2.32k | efree(s); | 354 | 2.32k | } | 355 | 2.32k | } | 356 | 4.64k | } | 357 | 4.74k | } |
Unexecuted instantiation: php_content_types.c:zend_string_release_ex Unexecuted instantiation: php_ini_builder.c:zend_string_release_ex Unexecuted instantiation: php_ini.c:zend_string_release_ex Unexecuted instantiation: php_glob.c:zend_string_release_ex Unexecuted instantiation: php_odbc_utils.c:zend_string_release_ex Unexecuted instantiation: php_open_temporary_file.c:zend_string_release_ex Unexecuted instantiation: php_scandir.c:zend_string_release_ex Unexecuted instantiation: php_syslog.c:zend_string_release_ex Unexecuted instantiation: php_ticks.c:zend_string_release_ex php_variables.c:zend_string_release_ex Line | Count | Source | 345 | 9.26k | { | 346 | 9.26k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 2.66k | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 2.66k | } | 357 | 9.26k | } |
Unexecuted instantiation: reentrancy.c:zend_string_release_ex Unexecuted instantiation: rfc1867.c:zend_string_release_ex Unexecuted instantiation: safe_bcmp.c:zend_string_release_ex SAPI.c:zend_string_release_ex Line | Count | Source | 345 | 32 | { | 346 | 32 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 32 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 32 | } | 357 | 32 | } |
Unexecuted instantiation: snprintf.c:zend_string_release_ex Unexecuted instantiation: spprintf.c:zend_string_release_ex Unexecuted instantiation: strlcat.c:zend_string_release_ex Unexecuted instantiation: strlcpy.c:zend_string_release_ex Unexecuted instantiation: cast.c:zend_string_release_ex filter.c:zend_string_release_ex Line | Count | Source | 345 | 96 | { | 346 | 96 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 0 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 0 | } | 357 | 96 | } |
Unexecuted instantiation: glob_wrapper.c:zend_string_release_ex Unexecuted instantiation: memory.c:zend_string_release_ex Unexecuted instantiation: mmap.c:zend_string_release_ex plain_wrapper.c:zend_string_release_ex Line | Count | Source | 345 | 2 | { | 346 | 2 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 2 | if (GC_DELREF(s) == 0) { | 348 | 2 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 2 | } else { | 352 | 2 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 2 | efree(s); | 354 | 2 | } | 355 | 2 | } | 356 | 2 | } | 357 | 2 | } |
streams.c:zend_string_release_ex Line | Count | Source | 345 | 146 | { | 346 | 146 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 50 | if (GC_DELREF(s) == 0) { | 348 | 50 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 50 | } else { | 352 | 50 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 50 | efree(s); | 354 | 50 | } | 355 | 50 | } | 356 | 50 | } | 357 | 146 | } |
transports.c:zend_string_release_ex Line | Count | Source | 345 | 64 | { | 346 | 64 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 0 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 0 | } | 357 | 64 | } |
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 | 345 | 953k | { | 346 | 953k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 415k | if (GC_DELREF(s) == 0) { | 348 | 97.2k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 97.2k | } else { | 352 | 97.2k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 97.2k | efree(s); | 354 | 97.2k | } | 355 | 97.2k | } | 356 | 415k | } | 357 | 953k | } |
compact_vars.c:zend_string_release_ex Line | Count | Source | 345 | 4.23k | { | 346 | 4.23k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 747 | if (GC_DELREF(s) == 0) { | 348 | 711 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 711 | } else { | 352 | 711 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 711 | efree(s); | 354 | 711 | } | 355 | 711 | } | 356 | 747 | } | 357 | 4.23k | } |
Unexecuted instantiation: dce.c:zend_string_release_ex Unexecuted instantiation: dfa_pass.c:zend_string_release_ex Unexecuted instantiation: escape_analysis.c:zend_string_release_ex Unexecuted instantiation: nop_removal.c:zend_string_release_ex Unexecuted instantiation: optimize_func_calls.c:zend_string_release_ex Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_release_ex Unexecuted instantiation: pass1.c:zend_string_release_ex Unexecuted instantiation: pass3.c:zend_string_release_ex Unexecuted instantiation: sccp.c:zend_string_release_ex Unexecuted instantiation: scdf.c:zend_string_release_ex Unexecuted instantiation: zend_call_graph.c:zend_string_release_ex Unexecuted instantiation: zend_cfg.c:zend_string_release_ex Unexecuted instantiation: zend_dfg.c:zend_string_release_ex Unexecuted instantiation: zend_dump.c:zend_string_release_ex zend_func_info.c:zend_string_release_ex Line | Count | Source | 345 | 8.51k | { | 346 | 8.51k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 0 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 0 | } | 357 | 8.51k | } |
zend_inference.c:zend_string_release_ex Line | Count | Source | 345 | 4.93k | { | 346 | 4.93k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 4.10k | if (GC_DELREF(s) == 0) { | 348 | 3.96k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 3.96k | } else { | 352 | 3.96k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 3.96k | efree(s); | 354 | 3.96k | } | 355 | 3.96k | } | 356 | 4.10k | } | 357 | 4.93k | } |
Unexecuted instantiation: zend_optimizer.c:zend_string_release_ex Unexecuted instantiation: zend_ssa.c:zend_string_release_ex Unexecuted instantiation: zend_alloc.c:zend_string_release_ex zend_API.c:zend_string_release_ex Line | Count | Source | 345 | 61.1k | { | 346 | 61.1k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 51.4k | if (GC_DELREF(s) == 0) { | 348 | 18.9k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 18.9k | } else { | 352 | 18.9k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 18.9k | efree(s); | 354 | 18.9k | } | 355 | 18.9k | } | 356 | 51.4k | } | 357 | 61.1k | } |
zend_ast.c:zend_string_release_ex Line | Count | Source | 345 | 150k | { | 346 | 150k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 92.5k | if (GC_DELREF(s) == 0) { | 348 | 35.2k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 35.2k | } else { | 352 | 35.2k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 35.2k | efree(s); | 354 | 35.2k | } | 355 | 35.2k | } | 356 | 92.5k | } | 357 | 150k | } |
Unexecuted instantiation: zend_attributes.c:zend_string_release_ex zend_builtin_functions.c:zend_string_release_ex Line | Count | Source | 345 | 858 | { | 346 | 858 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 603 | if (GC_DELREF(s) == 0) { | 348 | 603 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 603 | } else { | 352 | 603 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 603 | efree(s); | 354 | 603 | } | 355 | 603 | } | 356 | 603 | } | 357 | 858 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_release_ex zend_closures.c:zend_string_release_ex Line | Count | Source | 345 | 387 | { | 346 | 387 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 191 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 191 | } | 357 | 387 | } |
zend_compile.c:zend_string_release_ex Line | Count | Source | 345 | 413k | { | 346 | 413k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 328k | if (GC_DELREF(s) == 0) { | 348 | 71.0k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 71.0k | } else { | 352 | 71.0k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 71.0k | efree(s); | 354 | 71.0k | } | 355 | 71.0k | } | 356 | 328k | } | 357 | 413k | } |
zend_constants.c:zend_string_release_ex Line | Count | Source | 345 | 137 | { | 346 | 137 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 19 | if (GC_DELREF(s) == 0) { | 348 | 19 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 19 | } else { | 352 | 19 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 19 | efree(s); | 354 | 19 | } | 355 | 19 | } | 356 | 19 | } | 357 | 137 | } |
Unexecuted instantiation: zend_cpuinfo.c:zend_string_release_ex Unexecuted instantiation: zend_default_classes.c:zend_string_release_ex Unexecuted instantiation: zend_dtrace.c:zend_string_release_ex Unexecuted instantiation: zend_enum.c:zend_string_release_ex zend_exceptions.c:zend_string_release_ex Line | Count | Source | 345 | 29.3k | { | 346 | 29.3k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 21.8k | if (GC_DELREF(s) == 0) { | 348 | 5.67k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 5.67k | } else { | 352 | 5.67k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 5.67k | efree(s); | 354 | 5.67k | } | 355 | 5.67k | } | 356 | 21.8k | } | 357 | 29.3k | } |
zend_execute_API.c:zend_string_release_ex Line | Count | Source | 345 | 620k | { | 346 | 620k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 62.7k | if (GC_DELREF(s) == 0) { | 348 | 57.5k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 57.5k | } else { | 352 | 57.5k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 57.5k | efree(s); | 354 | 57.5k | } | 355 | 57.5k | } | 356 | 62.7k | } | 357 | 620k | } |
zend_execute.c:zend_string_release_ex Line | Count | Source | 345 | 2.29M | { | 346 | 2.29M | if (!ZSTR_IS_INTERNED(s)) { | 347 | 662k | if (GC_DELREF(s) == 0) { | 348 | 196k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 196k | } else { | 352 | 196k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 196k | efree(s); | 354 | 196k | } | 355 | 196k | } | 356 | 662k | } | 357 | 2.29M | } |
Unexecuted instantiation: zend_extensions.c:zend_string_release_ex Unexecuted instantiation: zend_fibers.c:zend_string_release_ex Unexecuted instantiation: zend_float.c:zend_string_release_ex Unexecuted instantiation: zend_gc.c:zend_string_release_ex Unexecuted instantiation: zend_gdb.c:zend_string_release_ex Unexecuted instantiation: zend_generators.c:zend_string_release_ex zend_hash.c:zend_string_release_ex Line | Count | Source | 345 | 1.92M | { | 346 | 1.92M | if (!ZSTR_IS_INTERNED(s)) { | 347 | 869k | if (GC_DELREF(s) == 0) { | 348 | 817k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 817k | } else { | 352 | 817k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 817k | efree(s); | 354 | 817k | } | 355 | 817k | } | 356 | 869k | } | 357 | 1.92M | } |
Unexecuted instantiation: zend_highlight.c:zend_string_release_ex Unexecuted instantiation: zend_hrtime.c:zend_string_release_ex zend_inheritance.c:zend_string_release_ex Line | Count | Source | 345 | 7.73k | { | 346 | 7.73k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 3.69k | if (GC_DELREF(s) == 0) { | 348 | 607 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 607 | } else { | 352 | 607 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 607 | efree(s); | 354 | 607 | } | 355 | 607 | } | 356 | 3.69k | } | 357 | 7.73k | } |
Unexecuted instantiation: zend_ini_parser.c:zend_string_release_ex Unexecuted instantiation: zend_ini_scanner.c:zend_string_release_ex zend_ini.c:zend_string_release_ex Line | Count | Source | 345 | 195 | { | 346 | 195 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 195 | if (GC_DELREF(s) == 0) { | 348 | 195 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 195 | } else { | 352 | 195 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 195 | efree(s); | 354 | 195 | } | 355 | 195 | } | 356 | 195 | } | 357 | 195 | } |
Unexecuted instantiation: zend_interfaces.c:zend_string_release_ex Unexecuted instantiation: zend_iterators.c:zend_string_release_ex zend_language_parser.c:zend_string_release_ex Line | Count | Source | 345 | 284 | { | 346 | 284 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 284 | if (GC_DELREF(s) == 0) { | 348 | 284 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 284 | } else { | 352 | 284 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 284 | efree(s); | 354 | 284 | } | 355 | 284 | } | 356 | 284 | } | 357 | 284 | } |
zend_language_scanner.c:zend_string_release_ex Line | Count | Source | 345 | 152k | { | 346 | 152k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 152k | if (GC_DELREF(s) == 0) { | 348 | 9.70k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 9.70k | } else { | 352 | 9.70k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 9.70k | efree(s); | 354 | 9.70k | } | 355 | 9.70k | } | 356 | 152k | } | 357 | 152k | } |
Unexecuted instantiation: zend_lazy_objects.c:zend_string_release_ex Unexecuted instantiation: zend_list.c:zend_string_release_ex Unexecuted instantiation: zend_llist.c:zend_string_release_ex Unexecuted instantiation: zend_multibyte.c:zend_string_release_ex zend_object_handlers.c:zend_string_release_ex Line | Count | Source | 345 | 1.36k | { | 346 | 1.36k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 981 | if (GC_DELREF(s) == 0) { | 348 | 864 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 864 | } else { | 352 | 864 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 864 | efree(s); | 354 | 864 | } | 355 | 864 | } | 356 | 981 | } | 357 | 1.36k | } |
Unexecuted instantiation: zend_objects_API.c:zend_string_release_ex zend_objects.c:zend_string_release_ex Line | Count | Source | 345 | 15 | { | 346 | 15 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 0 | if (GC_DELREF(s) == 0) { | 348 | 0 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 0 | } else { | 352 | 0 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 0 | efree(s); | 354 | 0 | } | 355 | 0 | } | 356 | 0 | } | 357 | 15 | } |
Unexecuted instantiation: zend_observer.c:zend_string_release_ex zend_opcode.c:zend_string_release_ex Line | Count | Source | 345 | 874k | { | 346 | 874k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 375k | if (GC_DELREF(s) == 0) { | 348 | 156k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 156k | } else { | 352 | 156k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 156k | efree(s); | 354 | 156k | } | 355 | 156k | } | 356 | 375k | } | 357 | 874k | } |
zend_operators.c:zend_string_release_ex Line | Count | Source | 345 | 505k | { | 346 | 505k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 81.6k | if (GC_DELREF(s) == 0) { | 348 | 75.0k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 75.0k | } else { | 352 | 75.0k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 75.0k | efree(s); | 354 | 75.0k | } | 355 | 75.0k | } | 356 | 81.6k | } | 357 | 505k | } |
Unexecuted instantiation: zend_property_hooks.c:zend_string_release_ex Unexecuted instantiation: zend_ptr_stack.c:zend_string_release_ex Unexecuted instantiation: zend_signal.c:zend_string_release_ex Unexecuted instantiation: zend_smart_str.c:zend_string_release_ex Unexecuted instantiation: zend_sort.c:zend_string_release_ex Unexecuted instantiation: zend_stack.c:zend_string_release_ex zend_stream.c:zend_string_release_ex Line | Count | Source | 345 | 58 | { | 346 | 58 | if (!ZSTR_IS_INTERNED(s)) { | 347 | 48 | if (GC_DELREF(s) == 0) { | 348 | 15 | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 15 | } else { | 352 | 15 | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 15 | efree(s); | 354 | 15 | } | 355 | 15 | } | 356 | 48 | } | 357 | 58 | } |
Unexecuted instantiation: zend_string.c:zend_string_release_ex Unexecuted instantiation: zend_strtod.c:zend_string_release_ex Unexecuted instantiation: zend_system_id.c:zend_string_release_ex Unexecuted instantiation: zend_variables.c:zend_string_release_ex Unexecuted instantiation: zend_virtual_cwd.c:zend_string_release_ex Unexecuted instantiation: zend_vm_opcodes.c:zend_string_release_ex Unexecuted instantiation: zend_weakrefs.c:zend_string_release_ex zend.c:zend_string_release_ex Line | Count | Source | 345 | 3.48k | { | 346 | 3.48k | if (!ZSTR_IS_INTERNED(s)) { | 347 | 2.02k | if (GC_DELREF(s) == 0) { | 348 | 2.02k | if (persistent) { | 349 | 0 | ZEND_ASSERT(GC_FLAGS(s) & IS_STR_PERSISTENT); | 350 | 0 | free(s); | 351 | 2.02k | } else { | 352 | 2.02k | ZEND_ASSERT(!(GC_FLAGS(s) & IS_STR_PERSISTENT)); | 353 | 2.02k | efree(s); | 354 | 2.02k | } | 355 | 2.02k | } | 356 | 2.02k | } | 357 | 3.48k | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_release_ex Unexecuted instantiation: fuzzer-parser.c:zend_string_release_ex Unexecuted instantiation: fuzzer-sapi.c:zend_string_release_ex Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_release_ex Unexecuted instantiation: fuzzer-exif.c:zend_string_release_ex Unexecuted instantiation: fuzzer-unserialize.c:zend_string_release_ex Unexecuted instantiation: fuzzer-function-jit.c:zend_string_release_ex Unexecuted instantiation: fuzzer-json.c:zend_string_release_ex Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_release_ex Unexecuted instantiation: fuzzer-execute.c:zend_string_release_ex |
358 | | |
359 | | static zend_always_inline bool zend_string_equals_cstr(const zend_string *s1, const char *s2, size_t s2_length) |
360 | 14.4M | { |
361 | 14.4M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); |
362 | 14.4M | } php_date.c:zend_string_equals_cstr Line | Count | Source | 360 | 1.87M | { | 361 | 1.87M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 1.87M | } |
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 | 360 | 27 | { | 361 | 27 | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 27 | } |
Unexecuted instantiation: php_spl.c:zend_string_equals_cstr Unexecuted instantiation: spl_array.c:zend_string_equals_cstr Unexecuted instantiation: spl_directory.c:zend_string_equals_cstr Unexecuted instantiation: spl_dllist.c:zend_string_equals_cstr Unexecuted instantiation: spl_exceptions.c:zend_string_equals_cstr Unexecuted instantiation: spl_fixedarray.c:zend_string_equals_cstr Unexecuted instantiation: spl_functions.c:zend_string_equals_cstr Unexecuted instantiation: spl_heap.c:zend_string_equals_cstr Unexecuted instantiation: spl_iterators.c:zend_string_equals_cstr Unexecuted instantiation: spl_observer.c:zend_string_equals_cstr Unexecuted instantiation: array.c:zend_string_equals_cstr Unexecuted instantiation: assert.c:zend_string_equals_cstr Unexecuted instantiation: base64.c:zend_string_equals_cstr basic_functions.c:zend_string_equals_cstr Line | Count | Source | 360 | 6.22k | { | 361 | 6.22k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 6.22k | } |
Unexecuted instantiation: browscap.c:zend_string_equals_cstr Unexecuted instantiation: crc32_x86.c:zend_string_equals_cstr Unexecuted instantiation: crc32.c:zend_string_equals_cstr Unexecuted instantiation: credits.c:zend_string_equals_cstr Unexecuted instantiation: crypt.c:zend_string_equals_cstr Unexecuted instantiation: css.c:zend_string_equals_cstr Unexecuted instantiation: datetime.c:zend_string_equals_cstr Unexecuted instantiation: dir.c:zend_string_equals_cstr Unexecuted instantiation: dl.c:zend_string_equals_cstr Unexecuted instantiation: dns.c:zend_string_equals_cstr Unexecuted instantiation: exec.c:zend_string_equals_cstr Unexecuted instantiation: file.c:zend_string_equals_cstr Unexecuted instantiation: filestat.c:zend_string_equals_cstr Unexecuted instantiation: filters.c:zend_string_equals_cstr Unexecuted instantiation: flock_compat.c:zend_string_equals_cstr Unexecuted instantiation: formatted_print.c:zend_string_equals_cstr Unexecuted instantiation: fsock.c:zend_string_equals_cstr Unexecuted instantiation: ftok.c:zend_string_equals_cstr Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_equals_cstr Unexecuted instantiation: head.c:zend_string_equals_cstr Unexecuted instantiation: hrtime.c:zend_string_equals_cstr Unexecuted instantiation: html.c:zend_string_equals_cstr Unexecuted instantiation: http_fopen_wrapper.c:zend_string_equals_cstr Unexecuted instantiation: http.c:zend_string_equals_cstr Unexecuted instantiation: image.c:zend_string_equals_cstr Unexecuted instantiation: incomplete_class.c:zend_string_equals_cstr Unexecuted instantiation: info.c:zend_string_equals_cstr Unexecuted instantiation: iptc.c:zend_string_equals_cstr Unexecuted instantiation: levenshtein.c:zend_string_equals_cstr Unexecuted instantiation: link.c:zend_string_equals_cstr Unexecuted instantiation: mail.c:zend_string_equals_cstr Unexecuted instantiation: math.c:zend_string_equals_cstr Unexecuted instantiation: md5.c:zend_string_equals_cstr Unexecuted instantiation: metaphone.c:zend_string_equals_cstr Unexecuted instantiation: microtime.c:zend_string_equals_cstr Unexecuted instantiation: net.c:zend_string_equals_cstr Unexecuted instantiation: pack.c:zend_string_equals_cstr Unexecuted instantiation: pageinfo.c:zend_string_equals_cstr Unexecuted instantiation: password.c:zend_string_equals_cstr Unexecuted instantiation: php_fopen_wrapper.c:zend_string_equals_cstr Unexecuted instantiation: proc_open.c:zend_string_equals_cstr Unexecuted instantiation: quot_print.c:zend_string_equals_cstr Unexecuted instantiation: scanf.c:zend_string_equals_cstr Unexecuted instantiation: sha1.c:zend_string_equals_cstr Unexecuted instantiation: soundex.c:zend_string_equals_cstr Unexecuted instantiation: streamsfuncs.c:zend_string_equals_cstr string.c:zend_string_equals_cstr Line | Count | Source | 360 | 17 | { | 361 | 17 | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 17 | } |
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: php_uriparser.c:zend_string_equals_cstr Unexecuted instantiation: explicit_bzero.c:zend_string_equals_cstr Unexecuted instantiation: fopen_wrappers.c:zend_string_equals_cstr Unexecuted instantiation: getopt.c:zend_string_equals_cstr main.c:zend_string_equals_cstr Line | Count | Source | 360 | 384 | { | 361 | 384 | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 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 | 360 | 64.2k | { | 361 | 64.2k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 64.2k | } |
Unexecuted instantiation: pass3.c:zend_string_equals_cstr Unexecuted instantiation: sccp.c:zend_string_equals_cstr Unexecuted instantiation: scdf.c:zend_string_equals_cstr Unexecuted instantiation: zend_call_graph.c:zend_string_equals_cstr Unexecuted instantiation: zend_cfg.c:zend_string_equals_cstr Unexecuted instantiation: zend_dfg.c:zend_string_equals_cstr Unexecuted instantiation: zend_dump.c:zend_string_equals_cstr Unexecuted instantiation: zend_func_info.c:zend_string_equals_cstr Unexecuted instantiation: zend_inference.c:zend_string_equals_cstr zend_optimizer.c:zend_string_equals_cstr Line | Count | Source | 360 | 1.12M | { | 361 | 1.12M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 1.12M | } |
zend_ssa.c:zend_string_equals_cstr Line | Count | Source | 360 | 120k | { | 361 | 120k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 120k | } |
Unexecuted instantiation: zend_alloc.c:zend_string_equals_cstr zend_API.c:zend_string_equals_cstr Line | Count | Source | 360 | 178k | { | 361 | 178k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 178k | } |
Unexecuted instantiation: zend_ast.c:zend_string_equals_cstr zend_attributes.c:zend_string_equals_cstr Line | Count | Source | 360 | 1.24M | { | 361 | 1.24M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 1.24M | } |
Unexecuted instantiation: zend_builtin_functions.c:zend_string_equals_cstr Unexecuted instantiation: zend_call_stack.c:zend_string_equals_cstr Unexecuted instantiation: zend_closures.c:zend_string_equals_cstr zend_compile.c:zend_string_equals_cstr Line | Count | Source | 360 | 7.82M | { | 361 | 7.82M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 7.82M | } |
zend_constants.c:zend_string_equals_cstr Line | Count | Source | 360 | 11.4k | { | 361 | 11.4k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 11.4k | } |
Unexecuted instantiation: zend_cpuinfo.c:zend_string_equals_cstr Unexecuted instantiation: zend_default_classes.c:zend_string_equals_cstr Unexecuted instantiation: zend_dtrace.c:zend_string_equals_cstr Unexecuted instantiation: zend_enum.c:zend_string_equals_cstr zend_exceptions.c:zend_string_equals_cstr Line | Count | Source | 360 | 1.22k | { | 361 | 1.22k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 1.22k | } |
Unexecuted instantiation: zend_execute_API.c:zend_string_equals_cstr zend_execute.c:zend_string_equals_cstr Line | Count | Source | 360 | 1.25k | { | 361 | 1.25k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 1.25k | } |
Unexecuted instantiation: zend_extensions.c:zend_string_equals_cstr Unexecuted instantiation: zend_fibers.c:zend_string_equals_cstr Unexecuted instantiation: zend_float.c:zend_string_equals_cstr Unexecuted instantiation: zend_gc.c:zend_string_equals_cstr Unexecuted instantiation: zend_gdb.c:zend_string_equals_cstr Unexecuted instantiation: zend_generators.c:zend_string_equals_cstr zend_hash.c:zend_string_equals_cstr Line | Count | Source | 360 | 871k | { | 361 | 871k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 871k | } |
Unexecuted instantiation: zend_highlight.c:zend_string_equals_cstr Unexecuted instantiation: zend_hrtime.c:zend_string_equals_cstr Unexecuted instantiation: zend_inheritance.c:zend_string_equals_cstr Unexecuted instantiation: zend_ini_parser.c:zend_string_equals_cstr Unexecuted instantiation: zend_ini_scanner.c:zend_string_equals_cstr Unexecuted instantiation: zend_ini.c:zend_string_equals_cstr Unexecuted instantiation: zend_interfaces.c:zend_string_equals_cstr Unexecuted instantiation: zend_iterators.c:zend_string_equals_cstr Unexecuted instantiation: zend_language_parser.c:zend_string_equals_cstr Unexecuted instantiation: zend_language_scanner.c:zend_string_equals_cstr Unexecuted instantiation: zend_lazy_objects.c:zend_string_equals_cstr Unexecuted instantiation: zend_list.c:zend_string_equals_cstr Unexecuted instantiation: zend_llist.c:zend_string_equals_cstr Unexecuted instantiation: zend_multibyte.c:zend_string_equals_cstr Unexecuted instantiation: zend_object_handlers.c:zend_string_equals_cstr Unexecuted instantiation: zend_objects_API.c:zend_string_equals_cstr Unexecuted instantiation: zend_objects.c:zend_string_equals_cstr Unexecuted instantiation: zend_observer.c:zend_string_equals_cstr Unexecuted instantiation: zend_opcode.c:zend_string_equals_cstr Unexecuted instantiation: zend_operators.c:zend_string_equals_cstr Unexecuted instantiation: zend_property_hooks.c:zend_string_equals_cstr Unexecuted instantiation: zend_ptr_stack.c:zend_string_equals_cstr Unexecuted instantiation: zend_signal.c:zend_string_equals_cstr Unexecuted instantiation: zend_smart_str.c:zend_string_equals_cstr Unexecuted instantiation: zend_sort.c:zend_string_equals_cstr Unexecuted instantiation: zend_stack.c:zend_string_equals_cstr Unexecuted instantiation: zend_stream.c:zend_string_equals_cstr zend_string.c:zend_string_equals_cstr Line | Count | Source | 360 | 1.07M | { | 361 | 1.07M | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 1.07M | } |
Unexecuted instantiation: zend_strtod.c:zend_string_equals_cstr Unexecuted instantiation: zend_system_id.c:zend_string_equals_cstr Unexecuted instantiation: zend_variables.c:zend_string_equals_cstr Unexecuted instantiation: zend_virtual_cwd.c:zend_string_equals_cstr Unexecuted instantiation: zend_vm_opcodes.c:zend_string_equals_cstr Unexecuted instantiation: zend_weakrefs.c:zend_string_equals_cstr Unexecuted instantiation: zend.c:zend_string_equals_cstr Unexecuted instantiation: internal_functions_cli.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-parser.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-sapi.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-exif.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-unserialize.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-function-jit.c:zend_string_equals_cstr Unexecuted instantiation: fuzzer-json.c:zend_string_equals_cstr fuzzer-unserializehash.c:zend_string_equals_cstr Line | Count | Source | 360 | 31.0k | { | 361 | 31.0k | return ZSTR_LEN(s1) == s2_length && !memcmp(ZSTR_VAL(s1), s2, s2_length); | 362 | 31.0k | } |
Unexecuted instantiation: fuzzer-execute.c:zend_string_equals_cstr |
363 | | |
364 | | #if defined(__GNUC__) && (defined(__i386__) || (defined(__x86_64__) && !defined(__ILP32__))) |
365 | | BEGIN_EXTERN_C() |
366 | | ZEND_API bool ZEND_FASTCALL zend_string_equal_val(const zend_string *s1, const zend_string *s2); |
367 | | END_EXTERN_C() |
368 | | #else |
369 | | static zend_always_inline bool zend_string_equal_val(const zend_string *s1, const zend_string *s2) |
370 | | { |
371 | | return !memcmp(ZSTR_VAL(s1), ZSTR_VAL(s2), ZSTR_LEN(s1)); |
372 | | } |
373 | | #endif |
374 | | |
375 | | static zend_always_inline bool zend_string_equal_content(const zend_string *s1, const zend_string *s2) |
376 | 6.93M | { |
377 | 6.93M | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); |
378 | 6.93M | } 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 | 376 | 152 | { | 377 | 152 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 152 | } |
Unexecuted instantiation: php_spl.c:zend_string_equal_content Unexecuted instantiation: spl_array.c:zend_string_equal_content Unexecuted instantiation: spl_directory.c:zend_string_equal_content Unexecuted instantiation: spl_dllist.c:zend_string_equal_content Unexecuted instantiation: spl_exceptions.c:zend_string_equal_content Unexecuted instantiation: spl_fixedarray.c:zend_string_equal_content Unexecuted instantiation: spl_functions.c:zend_string_equal_content Unexecuted instantiation: spl_heap.c:zend_string_equal_content Unexecuted instantiation: spl_iterators.c:zend_string_equal_content Unexecuted instantiation: spl_observer.c:zend_string_equal_content array.c:zend_string_equal_content Line | Count | Source | 376 | 5.26k | { | 377 | 5.26k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 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: php_uriparser.c:zend_string_equal_content Unexecuted instantiation: explicit_bzero.c:zend_string_equal_content Unexecuted instantiation: fopen_wrappers.c:zend_string_equal_content Unexecuted instantiation: getopt.c:zend_string_equal_content main.c:zend_string_equal_content Line | Count | Source | 376 | 16 | { | 377 | 16 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 16 | } |
Unexecuted instantiation: network.c:zend_string_equal_content Unexecuted instantiation: output.c:zend_string_equal_content Unexecuted instantiation: php_content_types.c:zend_string_equal_content Unexecuted instantiation: php_ini_builder.c:zend_string_equal_content Unexecuted instantiation: php_ini.c:zend_string_equal_content Unexecuted instantiation: php_glob.c:zend_string_equal_content Unexecuted instantiation: php_odbc_utils.c:zend_string_equal_content Unexecuted instantiation: php_open_temporary_file.c:zend_string_equal_content Unexecuted instantiation: php_scandir.c:zend_string_equal_content Unexecuted instantiation: php_syslog.c:zend_string_equal_content Unexecuted instantiation: php_ticks.c:zend_string_equal_content Unexecuted instantiation: php_variables.c:zend_string_equal_content Unexecuted instantiation: reentrancy.c:zend_string_equal_content Unexecuted instantiation: rfc1867.c:zend_string_equal_content Unexecuted instantiation: safe_bcmp.c:zend_string_equal_content Unexecuted instantiation: SAPI.c:zend_string_equal_content Unexecuted instantiation: snprintf.c:zend_string_equal_content Unexecuted instantiation: spprintf.c:zend_string_equal_content Unexecuted instantiation: strlcat.c:zend_string_equal_content Unexecuted instantiation: strlcpy.c:zend_string_equal_content Unexecuted instantiation: cast.c:zend_string_equal_content Unexecuted instantiation: filter.c:zend_string_equal_content Unexecuted instantiation: glob_wrapper.c:zend_string_equal_content Unexecuted instantiation: memory.c:zend_string_equal_content Unexecuted instantiation: mmap.c:zend_string_equal_content Unexecuted instantiation: plain_wrapper.c:zend_string_equal_content Unexecuted instantiation: streams.c:zend_string_equal_content Unexecuted instantiation: transports.c:zend_string_equal_content Unexecuted instantiation: userspace.c:zend_string_equal_content Unexecuted instantiation: xp_socket.c:zend_string_equal_content Unexecuted instantiation: block_pass.c:zend_string_equal_content Unexecuted instantiation: compact_literals.c:zend_string_equal_content Unexecuted instantiation: compact_vars.c:zend_string_equal_content Unexecuted instantiation: dce.c:zend_string_equal_content Unexecuted instantiation: dfa_pass.c:zend_string_equal_content Unexecuted instantiation: escape_analysis.c:zend_string_equal_content Unexecuted instantiation: nop_removal.c:zend_string_equal_content Unexecuted instantiation: optimize_func_calls.c:zend_string_equal_content Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_equal_content Unexecuted instantiation: pass1.c:zend_string_equal_content Unexecuted instantiation: pass3.c:zend_string_equal_content Unexecuted instantiation: sccp.c:zend_string_equal_content Unexecuted instantiation: scdf.c:zend_string_equal_content Unexecuted instantiation: zend_call_graph.c:zend_string_equal_content Unexecuted instantiation: zend_cfg.c:zend_string_equal_content Unexecuted instantiation: zend_dfg.c:zend_string_equal_content Unexecuted instantiation: zend_dump.c:zend_string_equal_content Unexecuted instantiation: zend_func_info.c:zend_string_equal_content Unexecuted instantiation: zend_inference.c:zend_string_equal_content Unexecuted instantiation: zend_optimizer.c:zend_string_equal_content Unexecuted instantiation: zend_ssa.c:zend_string_equal_content Unexecuted instantiation: zend_alloc.c:zend_string_equal_content zend_API.c:zend_string_equal_content Line | Count | Source | 376 | 9.70k | { | 377 | 9.70k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 9.70k | } |
Unexecuted instantiation: zend_ast.c:zend_string_equal_content zend_attributes.c:zend_string_equal_content Line | Count | Source | 376 | 754 | { | 377 | 754 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 754 | } |
zend_builtin_functions.c:zend_string_equal_content Line | Count | Source | 376 | 41 | { | 377 | 41 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 41 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_equal_content zend_closures.c:zend_string_equal_content Line | Count | Source | 376 | 225 | { | 377 | 225 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 225 | } |
zend_compile.c:zend_string_equal_content Line | Count | Source | 376 | 2.48M | { | 377 | 2.48M | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 2.48M | } |
Unexecuted instantiation: zend_constants.c:zend_string_equal_content Unexecuted instantiation: zend_cpuinfo.c:zend_string_equal_content Unexecuted instantiation: zend_default_classes.c:zend_string_equal_content Unexecuted instantiation: zend_dtrace.c:zend_string_equal_content zend_enum.c:zend_string_equal_content Line | Count | Source | 376 | 455 | { | 377 | 455 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 455 | } |
Unexecuted instantiation: zend_exceptions.c:zend_string_equal_content Unexecuted instantiation: zend_execute_API.c:zend_string_equal_content zend_execute.c:zend_string_equal_content Line | Count | Source | 376 | 44.5k | { | 377 | 44.5k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 44.5k | } |
Unexecuted instantiation: zend_extensions.c:zend_string_equal_content Unexecuted instantiation: zend_fibers.c:zend_string_equal_content Unexecuted instantiation: zend_float.c:zend_string_equal_content Unexecuted instantiation: zend_gc.c:zend_string_equal_content Unexecuted instantiation: zend_gdb.c:zend_string_equal_content Unexecuted instantiation: zend_generators.c:zend_string_equal_content zend_hash.c:zend_string_equal_content Line | Count | Source | 376 | 1.65M | { | 377 | 1.65M | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 1.65M | } |
Unexecuted instantiation: zend_highlight.c:zend_string_equal_content Unexecuted instantiation: zend_hrtime.c:zend_string_equal_content Unexecuted instantiation: zend_inheritance.c:zend_string_equal_content Unexecuted instantiation: zend_ini_parser.c:zend_string_equal_content Unexecuted instantiation: zend_ini_scanner.c:zend_string_equal_content Unexecuted instantiation: zend_ini.c:zend_string_equal_content Unexecuted instantiation: zend_interfaces.c:zend_string_equal_content Unexecuted instantiation: zend_iterators.c:zend_string_equal_content Unexecuted instantiation: zend_language_parser.c:zend_string_equal_content Unexecuted instantiation: zend_language_scanner.c:zend_string_equal_content Unexecuted instantiation: zend_lazy_objects.c:zend_string_equal_content Unexecuted instantiation: zend_list.c:zend_string_equal_content Unexecuted instantiation: zend_llist.c:zend_string_equal_content Unexecuted instantiation: zend_multibyte.c:zend_string_equal_content zend_object_handlers.c:zend_string_equal_content Line | Count | Source | 376 | 627 | { | 377 | 627 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 627 | } |
Unexecuted instantiation: zend_objects_API.c:zend_string_equal_content Unexecuted instantiation: zend_objects.c:zend_string_equal_content Unexecuted instantiation: zend_observer.c:zend_string_equal_content Unexecuted instantiation: zend_opcode.c:zend_string_equal_content zend_operators.c:zend_string_equal_content Line | Count | Source | 376 | 31.6k | { | 377 | 31.6k | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 31.6k | } |
Unexecuted instantiation: zend_property_hooks.c:zend_string_equal_content Unexecuted instantiation: zend_ptr_stack.c:zend_string_equal_content Unexecuted instantiation: zend_signal.c:zend_string_equal_content Unexecuted instantiation: zend_smart_str.c:zend_string_equal_content Unexecuted instantiation: zend_sort.c:zend_string_equal_content Unexecuted instantiation: zend_stack.c:zend_string_equal_content Unexecuted instantiation: zend_stream.c:zend_string_equal_content zend_string.c:zend_string_equal_content Line | Count | Source | 376 | 2.69M | { | 377 | 2.69M | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 2.69M | } |
Unexecuted instantiation: zend_strtod.c:zend_string_equal_content Unexecuted instantiation: zend_system_id.c:zend_string_equal_content Unexecuted instantiation: zend_variables.c:zend_string_equal_content Unexecuted instantiation: zend_virtual_cwd.c:zend_string_equal_content Unexecuted instantiation: zend_vm_opcodes.c:zend_string_equal_content Unexecuted instantiation: zend_weakrefs.c:zend_string_equal_content zend.c:zend_string_equal_content Line | Count | Source | 376 | 5 | { | 377 | 5 | return ZSTR_LEN(s1) == ZSTR_LEN(s2) && zend_string_equal_val(s1, s2); | 378 | 5 | } |
Unexecuted instantiation: internal_functions_cli.c:zend_string_equal_content Unexecuted instantiation: fuzzer-parser.c:zend_string_equal_content Unexecuted instantiation: fuzzer-sapi.c:zend_string_equal_content Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_equal_content Unexecuted instantiation: fuzzer-exif.c:zend_string_equal_content Unexecuted instantiation: fuzzer-unserialize.c:zend_string_equal_content Unexecuted instantiation: fuzzer-function-jit.c:zend_string_equal_content Unexecuted instantiation: fuzzer-json.c:zend_string_equal_content Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_equal_content Unexecuted instantiation: fuzzer-execute.c:zend_string_equal_content |
379 | | |
380 | | static zend_always_inline bool zend_string_equals(const zend_string *s1, const zend_string *s2) |
381 | 3.33M | { |
382 | 3.33M | return s1 == s2 || zend_string_equal_content(s1, s2); |
383 | 3.33M | } 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 | 381 | 162 | { | 382 | 162 | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 162 | } |
Unexecuted instantiation: php_spl.c:zend_string_equals Unexecuted instantiation: spl_array.c:zend_string_equals Unexecuted instantiation: spl_directory.c:zend_string_equals Unexecuted instantiation: spl_dllist.c:zend_string_equals Unexecuted instantiation: spl_exceptions.c:zend_string_equals Unexecuted instantiation: spl_fixedarray.c:zend_string_equals Unexecuted instantiation: spl_functions.c:zend_string_equals Unexecuted instantiation: spl_heap.c:zend_string_equals Unexecuted instantiation: spl_iterators.c:zend_string_equals Unexecuted instantiation: spl_observer.c:zend_string_equals array.c:zend_string_equals Line | Count | Source | 381 | 53 | { | 382 | 53 | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 53 | } |
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: php_uriparser.c:zend_string_equals Unexecuted instantiation: explicit_bzero.c:zend_string_equals Unexecuted instantiation: fopen_wrappers.c:zend_string_equals Unexecuted instantiation: getopt.c:zend_string_equals main.c:zend_string_equals Line | Count | Source | 381 | 16 | { | 382 | 16 | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 16 | } |
Unexecuted instantiation: network.c:zend_string_equals Unexecuted instantiation: output.c:zend_string_equals Unexecuted instantiation: php_content_types.c:zend_string_equals Unexecuted instantiation: php_ini_builder.c:zend_string_equals Unexecuted instantiation: php_ini.c:zend_string_equals Unexecuted instantiation: php_glob.c:zend_string_equals Unexecuted instantiation: php_odbc_utils.c:zend_string_equals Unexecuted instantiation: php_open_temporary_file.c:zend_string_equals Unexecuted instantiation: php_scandir.c:zend_string_equals Unexecuted instantiation: php_syslog.c:zend_string_equals Unexecuted instantiation: php_ticks.c:zend_string_equals Unexecuted instantiation: php_variables.c:zend_string_equals Unexecuted instantiation: reentrancy.c:zend_string_equals Unexecuted instantiation: rfc1867.c:zend_string_equals Unexecuted instantiation: safe_bcmp.c:zend_string_equals Unexecuted instantiation: SAPI.c:zend_string_equals Unexecuted instantiation: snprintf.c:zend_string_equals Unexecuted instantiation: spprintf.c:zend_string_equals Unexecuted instantiation: strlcat.c:zend_string_equals Unexecuted instantiation: strlcpy.c:zend_string_equals Unexecuted instantiation: cast.c:zend_string_equals Unexecuted instantiation: filter.c:zend_string_equals Unexecuted instantiation: glob_wrapper.c:zend_string_equals Unexecuted instantiation: memory.c:zend_string_equals Unexecuted instantiation: mmap.c:zend_string_equals Unexecuted instantiation: plain_wrapper.c:zend_string_equals Unexecuted instantiation: streams.c:zend_string_equals Unexecuted instantiation: transports.c:zend_string_equals Unexecuted instantiation: userspace.c:zend_string_equals Unexecuted instantiation: xp_socket.c:zend_string_equals Unexecuted instantiation: block_pass.c:zend_string_equals Unexecuted instantiation: compact_literals.c:zend_string_equals Unexecuted instantiation: compact_vars.c:zend_string_equals Unexecuted instantiation: dce.c:zend_string_equals Unexecuted instantiation: dfa_pass.c:zend_string_equals Unexecuted instantiation: escape_analysis.c:zend_string_equals Unexecuted instantiation: nop_removal.c:zend_string_equals Unexecuted instantiation: optimize_func_calls.c:zend_string_equals Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_equals Unexecuted instantiation: pass1.c:zend_string_equals Unexecuted instantiation: pass3.c:zend_string_equals Unexecuted instantiation: sccp.c:zend_string_equals Unexecuted instantiation: scdf.c:zend_string_equals Unexecuted instantiation: zend_call_graph.c:zend_string_equals Unexecuted instantiation: zend_cfg.c:zend_string_equals Unexecuted instantiation: zend_dfg.c:zend_string_equals Unexecuted instantiation: zend_dump.c:zend_string_equals Unexecuted instantiation: zend_func_info.c:zend_string_equals Unexecuted instantiation: zend_inference.c:zend_string_equals Unexecuted instantiation: zend_optimizer.c:zend_string_equals Unexecuted instantiation: zend_ssa.c:zend_string_equals Unexecuted instantiation: zend_alloc.c:zend_string_equals zend_API.c:zend_string_equals Line | Count | Source | 381 | 10.3k | { | 382 | 10.3k | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 10.3k | } |
Unexecuted instantiation: zend_ast.c:zend_string_equals zend_attributes.c:zend_string_equals Line | Count | Source | 381 | 892 | { | 382 | 892 | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 892 | } |
zend_builtin_functions.c:zend_string_equals Line | Count | Source | 381 | 215 | { | 382 | 215 | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 215 | } |
Unexecuted instantiation: zend_call_stack.c:zend_string_equals zend_closures.c:zend_string_equals Line | Count | Source | 381 | 559 | { | 382 | 559 | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 559 | } |
zend_compile.c:zend_string_equals Line | Count | Source | 381 | 3.24M | { | 382 | 3.24M | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 3.24M | } |
Unexecuted instantiation: zend_constants.c:zend_string_equals Unexecuted instantiation: zend_cpuinfo.c:zend_string_equals Unexecuted instantiation: zend_default_classes.c:zend_string_equals Unexecuted instantiation: zend_dtrace.c:zend_string_equals zend_enum.c:zend_string_equals Line | Count | Source | 381 | 2.20k | { | 382 | 2.20k | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 2.20k | } |
Unexecuted instantiation: zend_exceptions.c:zend_string_equals Unexecuted instantiation: zend_execute_API.c:zend_string_equals zend_execute.c:zend_string_equals Line | Count | Source | 381 | 45.0k | { | 382 | 45.0k | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 45.0k | } |
Unexecuted instantiation: zend_extensions.c:zend_string_equals Unexecuted instantiation: zend_fibers.c:zend_string_equals Unexecuted instantiation: zend_float.c:zend_string_equals Unexecuted instantiation: zend_gc.c:zend_string_equals Unexecuted instantiation: zend_gdb.c:zend_string_equals Unexecuted instantiation: zend_generators.c:zend_string_equals Unexecuted instantiation: zend_hash.c:zend_string_equals Unexecuted instantiation: zend_highlight.c:zend_string_equals Unexecuted instantiation: zend_hrtime.c:zend_string_equals Unexecuted instantiation: zend_inheritance.c:zend_string_equals Unexecuted instantiation: zend_ini_parser.c:zend_string_equals Unexecuted instantiation: zend_ini_scanner.c:zend_string_equals Unexecuted instantiation: zend_ini.c:zend_string_equals Unexecuted instantiation: zend_interfaces.c:zend_string_equals Unexecuted instantiation: zend_iterators.c:zend_string_equals Unexecuted instantiation: zend_language_parser.c:zend_string_equals Unexecuted instantiation: zend_language_scanner.c:zend_string_equals Unexecuted instantiation: zend_lazy_objects.c:zend_string_equals Unexecuted instantiation: zend_list.c:zend_string_equals Unexecuted instantiation: zend_llist.c:zend_string_equals Unexecuted instantiation: zend_multibyte.c:zend_string_equals Unexecuted instantiation: zend_object_handlers.c:zend_string_equals Unexecuted instantiation: zend_objects_API.c:zend_string_equals Unexecuted instantiation: zend_objects.c:zend_string_equals Unexecuted instantiation: zend_observer.c:zend_string_equals Unexecuted instantiation: zend_opcode.c:zend_string_equals zend_operators.c:zend_string_equals Line | Count | Source | 381 | 31.5k | { | 382 | 31.5k | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 31.5k | } |
Unexecuted instantiation: zend_property_hooks.c:zend_string_equals Unexecuted instantiation: zend_ptr_stack.c:zend_string_equals Unexecuted instantiation: zend_signal.c:zend_string_equals Unexecuted instantiation: zend_smart_str.c:zend_string_equals Unexecuted instantiation: zend_sort.c:zend_string_equals Unexecuted instantiation: zend_stack.c:zend_string_equals zend_stream.c:zend_string_equals Line | Count | Source | 381 | 67 | { | 382 | 67 | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 67 | } |
Unexecuted instantiation: zend_string.c:zend_string_equals Unexecuted instantiation: zend_strtod.c:zend_string_equals Unexecuted instantiation: zend_system_id.c:zend_string_equals Unexecuted instantiation: zend_variables.c:zend_string_equals Unexecuted instantiation: zend_virtual_cwd.c:zend_string_equals Unexecuted instantiation: zend_vm_opcodes.c:zend_string_equals Unexecuted instantiation: zend_weakrefs.c:zend_string_equals zend.c:zend_string_equals Line | Count | Source | 381 | 10 | { | 382 | 10 | return s1 == s2 || zend_string_equal_content(s1, s2); | 383 | 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 |
384 | | |
385 | | #define zend_string_equals_ci(s1, s2) \ |
386 | 4.63M | (ZSTR_LEN(s1) == ZSTR_LEN(s2) && !zend_binary_strcasecmp(ZSTR_VAL(s1), ZSTR_LEN(s1), ZSTR_VAL(s2), ZSTR_LEN(s2))) |
387 | | |
388 | | #define zend_string_equals_literal_ci(str, c) \ |
389 | 588k | (ZSTR_LEN(str) == sizeof("" c) - 1 && !zend_binary_strcasecmp(ZSTR_VAL(str), ZSTR_LEN(str), (c), sizeof(c) - 1)) |
390 | | |
391 | | #define zend_string_equals_literal(str, literal) \ |
392 | 16.8M | zend_string_equals_cstr(str, "" literal, sizeof(literal) - 1) |
393 | | |
394 | | static zend_always_inline bool zend_string_starts_with_cstr(const zend_string *str, const char *prefix, size_t prefix_length) |
395 | 16 | { |
396 | 16 | return ZSTR_LEN(str) >= prefix_length && !memcmp(ZSTR_VAL(str), prefix, prefix_length); |
397 | 16 | } 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 Unexecuted instantiation: string.c:zend_string_starts_with_cstr Unexecuted instantiation: strnatcmp.c:zend_string_starts_with_cstr Unexecuted instantiation: syslog.c:zend_string_starts_with_cstr Unexecuted instantiation: type.c:zend_string_starts_with_cstr Unexecuted instantiation: uniqid.c:zend_string_starts_with_cstr url_scanner_ex.c:zend_string_starts_with_cstr Line | Count | Source | 395 | 16 | { | 396 | 16 | return ZSTR_LEN(str) >= prefix_length && !memcmp(ZSTR_VAL(str), prefix, prefix_length); | 397 | 16 | } |
Unexecuted instantiation: url.c:zend_string_starts_with_cstr Unexecuted instantiation: user_filters.c:zend_string_starts_with_cstr Unexecuted instantiation: uuencode.c:zend_string_starts_with_cstr Unexecuted instantiation: var_unserializer.c:zend_string_starts_with_cstr Unexecuted instantiation: var.c:zend_string_starts_with_cstr Unexecuted instantiation: versioning.c:zend_string_starts_with_cstr Unexecuted instantiation: crypt_sha256.c:zend_string_starts_with_cstr Unexecuted instantiation: crypt_sha512.c:zend_string_starts_with_cstr Unexecuted instantiation: php_crypt_r.c:zend_string_starts_with_cstr Unexecuted instantiation: php_uri.c:zend_string_starts_with_cstr Unexecuted instantiation: php_uri_common.c:zend_string_starts_with_cstr Unexecuted instantiation: php_uriparser.c:zend_string_starts_with_cstr Unexecuted instantiation: explicit_bzero.c:zend_string_starts_with_cstr Unexecuted instantiation: fopen_wrappers.c:zend_string_starts_with_cstr Unexecuted instantiation: getopt.c:zend_string_starts_with_cstr Unexecuted instantiation: main.c:zend_string_starts_with_cstr Unexecuted instantiation: network.c:zend_string_starts_with_cstr Unexecuted instantiation: output.c:zend_string_starts_with_cstr Unexecuted instantiation: php_content_types.c:zend_string_starts_with_cstr Unexecuted instantiation: php_ini_builder.c:zend_string_starts_with_cstr Unexecuted instantiation: php_ini.c:zend_string_starts_with_cstr Unexecuted instantiation: php_glob.c:zend_string_starts_with_cstr Unexecuted instantiation: php_odbc_utils.c:zend_string_starts_with_cstr Unexecuted instantiation: php_open_temporary_file.c:zend_string_starts_with_cstr Unexecuted instantiation: php_scandir.c:zend_string_starts_with_cstr Unexecuted instantiation: php_syslog.c:zend_string_starts_with_cstr Unexecuted instantiation: php_ticks.c:zend_string_starts_with_cstr Unexecuted instantiation: php_variables.c:zend_string_starts_with_cstr Unexecuted instantiation: reentrancy.c:zend_string_starts_with_cstr Unexecuted instantiation: rfc1867.c:zend_string_starts_with_cstr Unexecuted instantiation: safe_bcmp.c:zend_string_starts_with_cstr Unexecuted instantiation: SAPI.c:zend_string_starts_with_cstr Unexecuted instantiation: snprintf.c:zend_string_starts_with_cstr Unexecuted instantiation: spprintf.c:zend_string_starts_with_cstr Unexecuted instantiation: strlcat.c:zend_string_starts_with_cstr Unexecuted instantiation: strlcpy.c:zend_string_starts_with_cstr Unexecuted instantiation: cast.c:zend_string_starts_with_cstr Unexecuted instantiation: filter.c:zend_string_starts_with_cstr Unexecuted instantiation: glob_wrapper.c:zend_string_starts_with_cstr Unexecuted instantiation: memory.c:zend_string_starts_with_cstr Unexecuted instantiation: mmap.c:zend_string_starts_with_cstr Unexecuted instantiation: plain_wrapper.c:zend_string_starts_with_cstr Unexecuted instantiation: streams.c:zend_string_starts_with_cstr Unexecuted instantiation: transports.c:zend_string_starts_with_cstr Unexecuted instantiation: userspace.c:zend_string_starts_with_cstr Unexecuted instantiation: xp_socket.c:zend_string_starts_with_cstr Unexecuted instantiation: block_pass.c:zend_string_starts_with_cstr Unexecuted instantiation: compact_literals.c:zend_string_starts_with_cstr Unexecuted instantiation: compact_vars.c:zend_string_starts_with_cstr Unexecuted instantiation: dce.c:zend_string_starts_with_cstr Unexecuted instantiation: dfa_pass.c:zend_string_starts_with_cstr Unexecuted instantiation: escape_analysis.c:zend_string_starts_with_cstr Unexecuted instantiation: nop_removal.c:zend_string_starts_with_cstr Unexecuted instantiation: optimize_func_calls.c:zend_string_starts_with_cstr Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_starts_with_cstr Unexecuted instantiation: pass1.c:zend_string_starts_with_cstr Unexecuted instantiation: pass3.c:zend_string_starts_with_cstr Unexecuted instantiation: sccp.c:zend_string_starts_with_cstr Unexecuted instantiation: scdf.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_call_graph.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_cfg.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_dfg.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_dump.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_func_info.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_inference.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_optimizer.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_ssa.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_alloc.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_API.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_ast.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_attributes.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_builtin_functions.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_call_stack.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_closures.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_compile.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_constants.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_cpuinfo.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_default_classes.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_dtrace.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_enum.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_exceptions.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_execute_API.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_execute.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_extensions.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_fibers.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_float.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_gc.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_gdb.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_generators.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_hash.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_highlight.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_hrtime.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_inheritance.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_ini_parser.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_ini_scanner.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_ini.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_interfaces.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_iterators.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_language_parser.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_language_scanner.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_lazy_objects.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_list.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_llist.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_multibyte.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_object_handlers.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_objects_API.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_objects.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_observer.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_opcode.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_operators.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_property_hooks.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_ptr_stack.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_signal.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_smart_str.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_sort.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_stack.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_stream.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_string.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_strtod.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_system_id.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_variables.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_virtual_cwd.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_vm_opcodes.c:zend_string_starts_with_cstr Unexecuted instantiation: zend_weakrefs.c:zend_string_starts_with_cstr Unexecuted instantiation: zend.c:zend_string_starts_with_cstr Unexecuted instantiation: internal_functions_cli.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-parser.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-sapi.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-exif.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-unserialize.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-function-jit.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-json.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_starts_with_cstr Unexecuted instantiation: fuzzer-execute.c:zend_string_starts_with_cstr |
398 | | |
399 | | static zend_always_inline bool zend_string_starts_with(const zend_string *str, const zend_string *prefix) |
400 | 0 | { |
401 | 0 | return zend_string_starts_with_cstr(str, ZSTR_VAL(prefix), ZSTR_LEN(prefix)); |
402 | 0 | } Unexecuted instantiation: php_date.c:zend_string_starts_with Unexecuted instantiation: astro.c:zend_string_starts_with Unexecuted instantiation: dow.c:zend_string_starts_with Unexecuted instantiation: parse_date.c:zend_string_starts_with Unexecuted instantiation: parse_tz.c:zend_string_starts_with Unexecuted instantiation: parse_posix.c:zend_string_starts_with Unexecuted instantiation: timelib.c:zend_string_starts_with Unexecuted instantiation: tm2unixtime.c:zend_string_starts_with Unexecuted instantiation: unixtime2tm.c:zend_string_starts_with Unexecuted instantiation: parse_iso_intervals.c:zend_string_starts_with Unexecuted instantiation: interval.c:zend_string_starts_with Unexecuted instantiation: php_pcre.c:zend_string_starts_with Unexecuted instantiation: exif.c:zend_string_starts_with Unexecuted instantiation: hash_adler32.c:zend_string_starts_with Unexecuted instantiation: hash_crc32.c:zend_string_starts_with Unexecuted instantiation: hash_fnv.c:zend_string_starts_with Unexecuted instantiation: hash_gost.c:zend_string_starts_with Unexecuted instantiation: hash_haval.c:zend_string_starts_with Unexecuted instantiation: hash_joaat.c:zend_string_starts_with Unexecuted instantiation: hash_md.c:zend_string_starts_with Unexecuted instantiation: hash_murmur.c:zend_string_starts_with Unexecuted instantiation: hash_ripemd.c:zend_string_starts_with Unexecuted instantiation: hash_sha_ni.c:zend_string_starts_with Unexecuted instantiation: hash_sha_sse2.c:zend_string_starts_with Unexecuted instantiation: hash_sha.c:zend_string_starts_with Unexecuted instantiation: hash_sha3.c:zend_string_starts_with Unexecuted instantiation: hash_snefru.c:zend_string_starts_with Unexecuted instantiation: hash_tiger.c:zend_string_starts_with Unexecuted instantiation: hash_whirlpool.c:zend_string_starts_with Unexecuted instantiation: hash_xxhash.c:zend_string_starts_with Unexecuted instantiation: hash.c:zend_string_starts_with Unexecuted instantiation: json_encoder.c:zend_string_starts_with Unexecuted instantiation: json_parser.tab.c:zend_string_starts_with Unexecuted instantiation: json_scanner.c:zend_string_starts_with Unexecuted instantiation: json.c:zend_string_starts_with Unexecuted instantiation: php_lexbor.c:zend_string_starts_with Unexecuted instantiation: csprng.c:zend_string_starts_with Unexecuted instantiation: engine_mt19937.c:zend_string_starts_with Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_string_starts_with Unexecuted instantiation: engine_secure.c:zend_string_starts_with Unexecuted instantiation: engine_user.c:zend_string_starts_with Unexecuted instantiation: engine_xoshiro256starstar.c:zend_string_starts_with Unexecuted instantiation: gammasection.c:zend_string_starts_with Unexecuted instantiation: random.c:zend_string_starts_with Unexecuted instantiation: randomizer.c:zend_string_starts_with Unexecuted instantiation: zend_utils.c:zend_string_starts_with Unexecuted instantiation: php_reflection.c:zend_string_starts_with Unexecuted instantiation: php_spl.c:zend_string_starts_with Unexecuted instantiation: spl_array.c:zend_string_starts_with Unexecuted instantiation: spl_directory.c:zend_string_starts_with Unexecuted instantiation: spl_dllist.c:zend_string_starts_with Unexecuted instantiation: spl_exceptions.c:zend_string_starts_with Unexecuted instantiation: spl_fixedarray.c:zend_string_starts_with Unexecuted instantiation: spl_functions.c:zend_string_starts_with Unexecuted instantiation: spl_heap.c:zend_string_starts_with Unexecuted instantiation: spl_iterators.c:zend_string_starts_with Unexecuted instantiation: spl_observer.c:zend_string_starts_with Unexecuted instantiation: array.c:zend_string_starts_with Unexecuted instantiation: assert.c:zend_string_starts_with Unexecuted instantiation: base64.c:zend_string_starts_with Unexecuted instantiation: basic_functions.c:zend_string_starts_with Unexecuted instantiation: browscap.c:zend_string_starts_with Unexecuted instantiation: crc32_x86.c:zend_string_starts_with Unexecuted instantiation: crc32.c:zend_string_starts_with Unexecuted instantiation: credits.c:zend_string_starts_with Unexecuted instantiation: crypt.c:zend_string_starts_with Unexecuted instantiation: css.c:zend_string_starts_with Unexecuted instantiation: datetime.c:zend_string_starts_with Unexecuted instantiation: dir.c:zend_string_starts_with Unexecuted instantiation: dl.c:zend_string_starts_with Unexecuted instantiation: dns.c:zend_string_starts_with Unexecuted instantiation: exec.c:zend_string_starts_with Unexecuted instantiation: file.c:zend_string_starts_with Unexecuted instantiation: filestat.c:zend_string_starts_with Unexecuted instantiation: filters.c:zend_string_starts_with Unexecuted instantiation: flock_compat.c:zend_string_starts_with Unexecuted instantiation: formatted_print.c:zend_string_starts_with Unexecuted instantiation: fsock.c:zend_string_starts_with Unexecuted instantiation: ftok.c:zend_string_starts_with Unexecuted instantiation: ftp_fopen_wrapper.c:zend_string_starts_with Unexecuted instantiation: head.c:zend_string_starts_with Unexecuted instantiation: hrtime.c:zend_string_starts_with Unexecuted instantiation: html.c:zend_string_starts_with Unexecuted instantiation: http_fopen_wrapper.c:zend_string_starts_with Unexecuted instantiation: http.c:zend_string_starts_with Unexecuted instantiation: image.c:zend_string_starts_with Unexecuted instantiation: incomplete_class.c:zend_string_starts_with Unexecuted instantiation: info.c:zend_string_starts_with Unexecuted instantiation: iptc.c:zend_string_starts_with Unexecuted instantiation: levenshtein.c:zend_string_starts_with Unexecuted instantiation: link.c:zend_string_starts_with Unexecuted instantiation: mail.c:zend_string_starts_with Unexecuted instantiation: math.c:zend_string_starts_with Unexecuted instantiation: md5.c:zend_string_starts_with Unexecuted instantiation: metaphone.c:zend_string_starts_with Unexecuted instantiation: microtime.c:zend_string_starts_with Unexecuted instantiation: net.c:zend_string_starts_with Unexecuted instantiation: pack.c:zend_string_starts_with Unexecuted instantiation: pageinfo.c:zend_string_starts_with Unexecuted instantiation: password.c:zend_string_starts_with Unexecuted instantiation: php_fopen_wrapper.c:zend_string_starts_with Unexecuted instantiation: proc_open.c:zend_string_starts_with Unexecuted instantiation: quot_print.c:zend_string_starts_with Unexecuted instantiation: scanf.c:zend_string_starts_with Unexecuted instantiation: sha1.c:zend_string_starts_with Unexecuted instantiation: soundex.c:zend_string_starts_with Unexecuted instantiation: streamsfuncs.c:zend_string_starts_with Unexecuted instantiation: string.c:zend_string_starts_with Unexecuted instantiation: strnatcmp.c:zend_string_starts_with Unexecuted instantiation: syslog.c:zend_string_starts_with Unexecuted instantiation: type.c:zend_string_starts_with Unexecuted instantiation: uniqid.c:zend_string_starts_with Unexecuted instantiation: url_scanner_ex.c:zend_string_starts_with Unexecuted instantiation: url.c:zend_string_starts_with Unexecuted instantiation: user_filters.c:zend_string_starts_with Unexecuted instantiation: uuencode.c:zend_string_starts_with Unexecuted instantiation: var_unserializer.c:zend_string_starts_with Unexecuted instantiation: var.c:zend_string_starts_with Unexecuted instantiation: versioning.c:zend_string_starts_with Unexecuted instantiation: crypt_sha256.c:zend_string_starts_with Unexecuted instantiation: crypt_sha512.c:zend_string_starts_with Unexecuted instantiation: php_crypt_r.c:zend_string_starts_with Unexecuted instantiation: php_uri.c:zend_string_starts_with Unexecuted instantiation: php_uri_common.c:zend_string_starts_with Unexecuted instantiation: php_uriparser.c:zend_string_starts_with Unexecuted instantiation: explicit_bzero.c:zend_string_starts_with Unexecuted instantiation: fopen_wrappers.c:zend_string_starts_with Unexecuted instantiation: getopt.c:zend_string_starts_with Unexecuted instantiation: main.c:zend_string_starts_with Unexecuted instantiation: network.c:zend_string_starts_with Unexecuted instantiation: output.c:zend_string_starts_with Unexecuted instantiation: php_content_types.c:zend_string_starts_with Unexecuted instantiation: php_ini_builder.c:zend_string_starts_with Unexecuted instantiation: php_ini.c:zend_string_starts_with Unexecuted instantiation: php_glob.c:zend_string_starts_with Unexecuted instantiation: php_odbc_utils.c:zend_string_starts_with Unexecuted instantiation: php_open_temporary_file.c:zend_string_starts_with Unexecuted instantiation: php_scandir.c:zend_string_starts_with Unexecuted instantiation: php_syslog.c:zend_string_starts_with Unexecuted instantiation: php_ticks.c:zend_string_starts_with Unexecuted instantiation: php_variables.c:zend_string_starts_with Unexecuted instantiation: reentrancy.c:zend_string_starts_with Unexecuted instantiation: rfc1867.c:zend_string_starts_with Unexecuted instantiation: safe_bcmp.c:zend_string_starts_with Unexecuted instantiation: SAPI.c:zend_string_starts_with Unexecuted instantiation: snprintf.c:zend_string_starts_with Unexecuted instantiation: spprintf.c:zend_string_starts_with Unexecuted instantiation: strlcat.c:zend_string_starts_with Unexecuted instantiation: strlcpy.c:zend_string_starts_with Unexecuted instantiation: cast.c:zend_string_starts_with Unexecuted instantiation: filter.c:zend_string_starts_with Unexecuted instantiation: glob_wrapper.c:zend_string_starts_with Unexecuted instantiation: memory.c:zend_string_starts_with Unexecuted instantiation: mmap.c:zend_string_starts_with Unexecuted instantiation: plain_wrapper.c:zend_string_starts_with Unexecuted instantiation: streams.c:zend_string_starts_with Unexecuted instantiation: transports.c:zend_string_starts_with Unexecuted instantiation: userspace.c:zend_string_starts_with Unexecuted instantiation: xp_socket.c:zend_string_starts_with Unexecuted instantiation: block_pass.c:zend_string_starts_with Unexecuted instantiation: compact_literals.c:zend_string_starts_with Unexecuted instantiation: compact_vars.c:zend_string_starts_with Unexecuted instantiation: dce.c:zend_string_starts_with Unexecuted instantiation: dfa_pass.c:zend_string_starts_with Unexecuted instantiation: escape_analysis.c:zend_string_starts_with Unexecuted instantiation: nop_removal.c:zend_string_starts_with Unexecuted instantiation: optimize_func_calls.c:zend_string_starts_with Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_starts_with Unexecuted instantiation: pass1.c:zend_string_starts_with Unexecuted instantiation: pass3.c:zend_string_starts_with Unexecuted instantiation: sccp.c:zend_string_starts_with Unexecuted instantiation: scdf.c:zend_string_starts_with Unexecuted instantiation: zend_call_graph.c:zend_string_starts_with Unexecuted instantiation: zend_cfg.c:zend_string_starts_with Unexecuted instantiation: zend_dfg.c:zend_string_starts_with Unexecuted instantiation: zend_dump.c:zend_string_starts_with Unexecuted instantiation: zend_func_info.c:zend_string_starts_with Unexecuted instantiation: zend_inference.c:zend_string_starts_with Unexecuted instantiation: zend_optimizer.c:zend_string_starts_with Unexecuted instantiation: zend_ssa.c:zend_string_starts_with Unexecuted instantiation: zend_alloc.c:zend_string_starts_with Unexecuted instantiation: zend_API.c:zend_string_starts_with Unexecuted instantiation: zend_ast.c:zend_string_starts_with Unexecuted instantiation: zend_attributes.c:zend_string_starts_with Unexecuted instantiation: zend_builtin_functions.c:zend_string_starts_with Unexecuted instantiation: zend_call_stack.c:zend_string_starts_with Unexecuted instantiation: zend_closures.c:zend_string_starts_with Unexecuted instantiation: zend_compile.c:zend_string_starts_with Unexecuted instantiation: zend_constants.c:zend_string_starts_with Unexecuted instantiation: zend_cpuinfo.c:zend_string_starts_with Unexecuted instantiation: zend_default_classes.c:zend_string_starts_with Unexecuted instantiation: zend_dtrace.c:zend_string_starts_with Unexecuted instantiation: zend_enum.c:zend_string_starts_with Unexecuted instantiation: zend_exceptions.c:zend_string_starts_with Unexecuted instantiation: zend_execute_API.c:zend_string_starts_with Unexecuted instantiation: zend_execute.c:zend_string_starts_with Unexecuted instantiation: zend_extensions.c:zend_string_starts_with Unexecuted instantiation: zend_fibers.c:zend_string_starts_with Unexecuted instantiation: zend_float.c:zend_string_starts_with Unexecuted instantiation: zend_gc.c:zend_string_starts_with Unexecuted instantiation: zend_gdb.c:zend_string_starts_with Unexecuted instantiation: zend_generators.c:zend_string_starts_with Unexecuted instantiation: zend_hash.c:zend_string_starts_with Unexecuted instantiation: zend_highlight.c:zend_string_starts_with Unexecuted instantiation: zend_hrtime.c:zend_string_starts_with Unexecuted instantiation: zend_inheritance.c:zend_string_starts_with Unexecuted instantiation: zend_ini_parser.c:zend_string_starts_with Unexecuted instantiation: zend_ini_scanner.c:zend_string_starts_with Unexecuted instantiation: zend_ini.c:zend_string_starts_with Unexecuted instantiation: zend_interfaces.c:zend_string_starts_with Unexecuted instantiation: zend_iterators.c:zend_string_starts_with Unexecuted instantiation: zend_language_parser.c:zend_string_starts_with Unexecuted instantiation: zend_language_scanner.c:zend_string_starts_with Unexecuted instantiation: zend_lazy_objects.c:zend_string_starts_with Unexecuted instantiation: zend_list.c:zend_string_starts_with Unexecuted instantiation: zend_llist.c:zend_string_starts_with Unexecuted instantiation: zend_multibyte.c:zend_string_starts_with Unexecuted instantiation: zend_object_handlers.c:zend_string_starts_with Unexecuted instantiation: zend_objects_API.c:zend_string_starts_with Unexecuted instantiation: zend_objects.c:zend_string_starts_with Unexecuted instantiation: zend_observer.c:zend_string_starts_with Unexecuted instantiation: zend_opcode.c:zend_string_starts_with Unexecuted instantiation: zend_operators.c:zend_string_starts_with Unexecuted instantiation: zend_property_hooks.c:zend_string_starts_with Unexecuted instantiation: zend_ptr_stack.c:zend_string_starts_with Unexecuted instantiation: zend_signal.c:zend_string_starts_with Unexecuted instantiation: zend_smart_str.c:zend_string_starts_with Unexecuted instantiation: zend_sort.c:zend_string_starts_with Unexecuted instantiation: zend_stack.c:zend_string_starts_with Unexecuted instantiation: zend_stream.c:zend_string_starts_with Unexecuted instantiation: zend_string.c:zend_string_starts_with Unexecuted instantiation: zend_strtod.c:zend_string_starts_with Unexecuted instantiation: zend_system_id.c:zend_string_starts_with Unexecuted instantiation: zend_variables.c:zend_string_starts_with Unexecuted instantiation: zend_virtual_cwd.c:zend_string_starts_with Unexecuted instantiation: zend_vm_opcodes.c:zend_string_starts_with Unexecuted instantiation: zend_weakrefs.c:zend_string_starts_with Unexecuted instantiation: zend.c:zend_string_starts_with Unexecuted instantiation: internal_functions_cli.c:zend_string_starts_with Unexecuted instantiation: fuzzer-parser.c:zend_string_starts_with Unexecuted instantiation: fuzzer-sapi.c:zend_string_starts_with Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_starts_with Unexecuted instantiation: fuzzer-exif.c:zend_string_starts_with Unexecuted instantiation: fuzzer-unserialize.c:zend_string_starts_with Unexecuted instantiation: fuzzer-function-jit.c:zend_string_starts_with Unexecuted instantiation: fuzzer-json.c:zend_string_starts_with Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_starts_with Unexecuted instantiation: fuzzer-execute.c:zend_string_starts_with |
403 | | |
404 | | #define zend_string_starts_with_literal(str, prefix) \ |
405 | 16 | zend_string_starts_with_cstr(str, prefix, strlen(prefix)) |
406 | | |
407 | | static zend_always_inline bool zend_string_starts_with_cstr_ci(const zend_string *str, const char *prefix, size_t prefix_length) |
408 | 0 | { |
409 | 0 | return ZSTR_LEN(str) >= prefix_length && !strncasecmp(ZSTR_VAL(str), prefix, prefix_length); |
410 | 0 | } Unexecuted instantiation: php_date.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: astro.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: dow.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: parse_date.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: parse_tz.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: parse_posix.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: timelib.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: tm2unixtime.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: unixtime2tm.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: parse_iso_intervals.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: interval.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_pcre.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: exif.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_adler32.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_crc32.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_fnv.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_gost.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_haval.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_joaat.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_md.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_murmur.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_ripemd.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_sha_ni.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_sha_sse2.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_sha.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_sha3.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_snefru.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_tiger.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_whirlpool.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash_xxhash.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: hash.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: json_encoder.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: json_parser.tab.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: json_scanner.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: json.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_lexbor.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: 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: php_uriparser.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: explicit_bzero.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fopen_wrappers.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: getopt.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: main.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: network.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: output.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_content_types.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_ini_builder.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_ini.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_glob.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_odbc_utils.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_open_temporary_file.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_scandir.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_syslog.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_ticks.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: php_variables.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: reentrancy.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: rfc1867.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: safe_bcmp.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: SAPI.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: snprintf.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: spprintf.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: strlcat.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: strlcpy.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: cast.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: filter.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: glob_wrapper.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: memory.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: mmap.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: plain_wrapper.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: streams.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: transports.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: userspace.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: xp_socket.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: block_pass.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: compact_literals.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: compact_vars.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: dce.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: dfa_pass.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: escape_analysis.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: nop_removal.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: optimize_func_calls.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: pass1.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: pass3.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: sccp.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: scdf.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_call_graph.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_cfg.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_dfg.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_dump.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_func_info.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_inference.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_optimizer.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_ssa.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_alloc.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_API.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_ast.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_attributes.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_builtin_functions.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_call_stack.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_closures.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_compile.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_constants.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_cpuinfo.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_default_classes.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_dtrace.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_enum.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_exceptions.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_execute_API.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_execute.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_extensions.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_fibers.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_float.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_gc.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_gdb.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_generators.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_hash.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_highlight.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_hrtime.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_inheritance.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_ini_parser.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_ini_scanner.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_ini.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_interfaces.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_iterators.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_language_parser.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_language_scanner.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_lazy_objects.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_list.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_llist.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_multibyte.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_object_handlers.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_objects_API.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_objects.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_observer.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_opcode.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_operators.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_property_hooks.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_ptr_stack.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_signal.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_smart_str.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_sort.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_stack.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_stream.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_string.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_strtod.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_system_id.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_variables.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_virtual_cwd.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_vm_opcodes.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend_weakrefs.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: zend.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: internal_functions_cli.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-parser.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-sapi.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-exif.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-unserialize.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-function-jit.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-json.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_starts_with_cstr_ci Unexecuted instantiation: fuzzer-execute.c:zend_string_starts_with_cstr_ci |
411 | | |
412 | | static zend_always_inline bool zend_string_starts_with_ci(const zend_string *str, const zend_string *prefix) |
413 | 0 | { |
414 | 0 | return zend_string_starts_with_cstr_ci(str, ZSTR_VAL(prefix), ZSTR_LEN(prefix)); |
415 | 0 | } Unexecuted instantiation: php_date.c:zend_string_starts_with_ci Unexecuted instantiation: astro.c:zend_string_starts_with_ci Unexecuted instantiation: dow.c:zend_string_starts_with_ci Unexecuted instantiation: parse_date.c:zend_string_starts_with_ci Unexecuted instantiation: parse_tz.c:zend_string_starts_with_ci Unexecuted instantiation: parse_posix.c:zend_string_starts_with_ci Unexecuted instantiation: timelib.c:zend_string_starts_with_ci Unexecuted instantiation: tm2unixtime.c:zend_string_starts_with_ci Unexecuted instantiation: unixtime2tm.c:zend_string_starts_with_ci Unexecuted instantiation: parse_iso_intervals.c:zend_string_starts_with_ci Unexecuted instantiation: interval.c:zend_string_starts_with_ci Unexecuted instantiation: php_pcre.c:zend_string_starts_with_ci Unexecuted instantiation: exif.c:zend_string_starts_with_ci Unexecuted instantiation: hash_adler32.c:zend_string_starts_with_ci Unexecuted instantiation: hash_crc32.c:zend_string_starts_with_ci Unexecuted instantiation: hash_fnv.c:zend_string_starts_with_ci Unexecuted instantiation: hash_gost.c:zend_string_starts_with_ci Unexecuted instantiation: hash_haval.c:zend_string_starts_with_ci Unexecuted instantiation: hash_joaat.c:zend_string_starts_with_ci Unexecuted instantiation: hash_md.c:zend_string_starts_with_ci Unexecuted instantiation: hash_murmur.c:zend_string_starts_with_ci Unexecuted instantiation: hash_ripemd.c:zend_string_starts_with_ci Unexecuted instantiation: hash_sha_ni.c:zend_string_starts_with_ci Unexecuted instantiation: hash_sha_sse2.c:zend_string_starts_with_ci Unexecuted instantiation: hash_sha.c:zend_string_starts_with_ci Unexecuted instantiation: hash_sha3.c:zend_string_starts_with_ci Unexecuted instantiation: hash_snefru.c:zend_string_starts_with_ci Unexecuted instantiation: hash_tiger.c:zend_string_starts_with_ci Unexecuted instantiation: hash_whirlpool.c:zend_string_starts_with_ci Unexecuted instantiation: hash_xxhash.c:zend_string_starts_with_ci Unexecuted instantiation: hash.c:zend_string_starts_with_ci Unexecuted instantiation: json_encoder.c:zend_string_starts_with_ci Unexecuted instantiation: json_parser.tab.c:zend_string_starts_with_ci Unexecuted instantiation: json_scanner.c:zend_string_starts_with_ci Unexecuted instantiation: json.c:zend_string_starts_with_ci Unexecuted instantiation: php_lexbor.c:zend_string_starts_with_ci Unexecuted instantiation: 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: php_uriparser.c:zend_string_starts_with_ci Unexecuted instantiation: explicit_bzero.c:zend_string_starts_with_ci Unexecuted instantiation: fopen_wrappers.c:zend_string_starts_with_ci Unexecuted instantiation: getopt.c:zend_string_starts_with_ci Unexecuted instantiation: main.c:zend_string_starts_with_ci Unexecuted instantiation: network.c:zend_string_starts_with_ci Unexecuted instantiation: output.c:zend_string_starts_with_ci Unexecuted instantiation: php_content_types.c:zend_string_starts_with_ci Unexecuted instantiation: php_ini_builder.c:zend_string_starts_with_ci Unexecuted instantiation: php_ini.c:zend_string_starts_with_ci Unexecuted instantiation: php_glob.c:zend_string_starts_with_ci Unexecuted instantiation: php_odbc_utils.c:zend_string_starts_with_ci Unexecuted instantiation: php_open_temporary_file.c:zend_string_starts_with_ci Unexecuted instantiation: php_scandir.c:zend_string_starts_with_ci Unexecuted instantiation: php_syslog.c:zend_string_starts_with_ci Unexecuted instantiation: php_ticks.c:zend_string_starts_with_ci Unexecuted instantiation: php_variables.c:zend_string_starts_with_ci Unexecuted instantiation: reentrancy.c:zend_string_starts_with_ci Unexecuted instantiation: rfc1867.c:zend_string_starts_with_ci Unexecuted instantiation: safe_bcmp.c:zend_string_starts_with_ci Unexecuted instantiation: SAPI.c:zend_string_starts_with_ci Unexecuted instantiation: snprintf.c:zend_string_starts_with_ci Unexecuted instantiation: spprintf.c:zend_string_starts_with_ci Unexecuted instantiation: strlcat.c:zend_string_starts_with_ci Unexecuted instantiation: strlcpy.c:zend_string_starts_with_ci Unexecuted instantiation: cast.c:zend_string_starts_with_ci Unexecuted instantiation: filter.c:zend_string_starts_with_ci Unexecuted instantiation: glob_wrapper.c:zend_string_starts_with_ci Unexecuted instantiation: memory.c:zend_string_starts_with_ci Unexecuted instantiation: mmap.c:zend_string_starts_with_ci Unexecuted instantiation: plain_wrapper.c:zend_string_starts_with_ci Unexecuted instantiation: streams.c:zend_string_starts_with_ci Unexecuted instantiation: transports.c:zend_string_starts_with_ci Unexecuted instantiation: userspace.c:zend_string_starts_with_ci Unexecuted instantiation: xp_socket.c:zend_string_starts_with_ci Unexecuted instantiation: block_pass.c:zend_string_starts_with_ci Unexecuted instantiation: compact_literals.c:zend_string_starts_with_ci Unexecuted instantiation: compact_vars.c:zend_string_starts_with_ci Unexecuted instantiation: dce.c:zend_string_starts_with_ci Unexecuted instantiation: dfa_pass.c:zend_string_starts_with_ci Unexecuted instantiation: escape_analysis.c:zend_string_starts_with_ci Unexecuted instantiation: nop_removal.c:zend_string_starts_with_ci Unexecuted instantiation: optimize_func_calls.c:zend_string_starts_with_ci Unexecuted instantiation: optimize_temp_vars_5.c:zend_string_starts_with_ci Unexecuted instantiation: pass1.c:zend_string_starts_with_ci Unexecuted instantiation: pass3.c:zend_string_starts_with_ci Unexecuted instantiation: sccp.c:zend_string_starts_with_ci Unexecuted instantiation: scdf.c:zend_string_starts_with_ci Unexecuted instantiation: zend_call_graph.c:zend_string_starts_with_ci Unexecuted instantiation: zend_cfg.c:zend_string_starts_with_ci Unexecuted instantiation: zend_dfg.c:zend_string_starts_with_ci Unexecuted instantiation: zend_dump.c:zend_string_starts_with_ci Unexecuted instantiation: zend_func_info.c:zend_string_starts_with_ci Unexecuted instantiation: zend_inference.c:zend_string_starts_with_ci Unexecuted instantiation: zend_optimizer.c:zend_string_starts_with_ci Unexecuted instantiation: zend_ssa.c:zend_string_starts_with_ci Unexecuted instantiation: zend_alloc.c:zend_string_starts_with_ci Unexecuted instantiation: zend_API.c:zend_string_starts_with_ci Unexecuted instantiation: zend_ast.c:zend_string_starts_with_ci Unexecuted instantiation: zend_attributes.c:zend_string_starts_with_ci Unexecuted instantiation: zend_builtin_functions.c:zend_string_starts_with_ci Unexecuted instantiation: zend_call_stack.c:zend_string_starts_with_ci Unexecuted instantiation: zend_closures.c:zend_string_starts_with_ci Unexecuted instantiation: zend_compile.c:zend_string_starts_with_ci Unexecuted instantiation: zend_constants.c:zend_string_starts_with_ci Unexecuted instantiation: zend_cpuinfo.c:zend_string_starts_with_ci Unexecuted instantiation: zend_default_classes.c:zend_string_starts_with_ci Unexecuted instantiation: zend_dtrace.c:zend_string_starts_with_ci Unexecuted instantiation: zend_enum.c:zend_string_starts_with_ci Unexecuted instantiation: zend_exceptions.c:zend_string_starts_with_ci Unexecuted instantiation: zend_execute_API.c:zend_string_starts_with_ci Unexecuted instantiation: zend_execute.c:zend_string_starts_with_ci Unexecuted instantiation: zend_extensions.c:zend_string_starts_with_ci Unexecuted instantiation: zend_fibers.c:zend_string_starts_with_ci Unexecuted instantiation: zend_float.c:zend_string_starts_with_ci Unexecuted instantiation: zend_gc.c:zend_string_starts_with_ci Unexecuted instantiation: zend_gdb.c:zend_string_starts_with_ci Unexecuted instantiation: zend_generators.c:zend_string_starts_with_ci Unexecuted instantiation: zend_hash.c:zend_string_starts_with_ci Unexecuted instantiation: zend_highlight.c:zend_string_starts_with_ci Unexecuted instantiation: zend_hrtime.c:zend_string_starts_with_ci Unexecuted instantiation: zend_inheritance.c:zend_string_starts_with_ci Unexecuted instantiation: zend_ini_parser.c:zend_string_starts_with_ci Unexecuted instantiation: zend_ini_scanner.c:zend_string_starts_with_ci Unexecuted instantiation: zend_ini.c:zend_string_starts_with_ci Unexecuted instantiation: zend_interfaces.c:zend_string_starts_with_ci Unexecuted instantiation: zend_iterators.c:zend_string_starts_with_ci Unexecuted instantiation: zend_language_parser.c:zend_string_starts_with_ci Unexecuted instantiation: zend_language_scanner.c:zend_string_starts_with_ci Unexecuted instantiation: zend_lazy_objects.c:zend_string_starts_with_ci Unexecuted instantiation: zend_list.c:zend_string_starts_with_ci Unexecuted instantiation: zend_llist.c:zend_string_starts_with_ci Unexecuted instantiation: zend_multibyte.c:zend_string_starts_with_ci Unexecuted instantiation: zend_object_handlers.c:zend_string_starts_with_ci Unexecuted instantiation: zend_objects_API.c:zend_string_starts_with_ci Unexecuted instantiation: zend_objects.c:zend_string_starts_with_ci Unexecuted instantiation: zend_observer.c:zend_string_starts_with_ci Unexecuted instantiation: zend_opcode.c:zend_string_starts_with_ci Unexecuted instantiation: zend_operators.c:zend_string_starts_with_ci Unexecuted instantiation: zend_property_hooks.c:zend_string_starts_with_ci Unexecuted instantiation: zend_ptr_stack.c:zend_string_starts_with_ci Unexecuted instantiation: zend_signal.c:zend_string_starts_with_ci Unexecuted instantiation: zend_smart_str.c:zend_string_starts_with_ci Unexecuted instantiation: zend_sort.c:zend_string_starts_with_ci Unexecuted instantiation: zend_stack.c:zend_string_starts_with_ci Unexecuted instantiation: zend_stream.c:zend_string_starts_with_ci Unexecuted instantiation: zend_string.c:zend_string_starts_with_ci Unexecuted instantiation: zend_strtod.c:zend_string_starts_with_ci Unexecuted instantiation: zend_system_id.c:zend_string_starts_with_ci Unexecuted instantiation: zend_variables.c:zend_string_starts_with_ci Unexecuted instantiation: zend_virtual_cwd.c:zend_string_starts_with_ci Unexecuted instantiation: zend_vm_opcodes.c:zend_string_starts_with_ci Unexecuted instantiation: zend_weakrefs.c:zend_string_starts_with_ci Unexecuted instantiation: zend.c:zend_string_starts_with_ci Unexecuted instantiation: internal_functions_cli.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-parser.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-sapi.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-tracing-jit.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-exif.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-unserialize.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-function-jit.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-json.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-unserializehash.c:zend_string_starts_with_ci Unexecuted instantiation: fuzzer-execute.c:zend_string_starts_with_ci |
416 | | |
417 | | #define zend_string_starts_with_literal_ci(str, prefix) \ |
418 | | zend_string_starts_with_cstr_ci(str, prefix, strlen(prefix)) |
419 | | |
420 | | /* |
421 | | * DJBX33A (Daniel J. Bernstein, Times 33 with Addition) |
422 | | * |
423 | | * This is Daniel J. Bernstein's popular `times 33' hash function as |
424 | | * posted by him years ago on comp.lang.c. It basically uses a function |
425 | | * like ``hash(i) = hash(i-1) * 33 + str[i]''. This is one of the best |
426 | | * known hash functions for strings. Because it is both computed very |
427 | | * fast and distributes very well. |
428 | | * |
429 | | * The magic of number 33, i.e. why it works better than many other |
430 | | * constants, prime or not, has never been adequately explained by |
431 | | * anyone. So I try an explanation: if one experimentally tests all |
432 | | * multipliers between 1 and 256 (as RSE did now) one detects that even |
433 | | * numbers are not usable at all. The remaining 128 odd numbers |
434 | | * (except for the number 1) work more or less all equally well. They |
435 | | * all distribute in an acceptable way and this way fill a hash table |
436 | | * with an average percent of approx. 86%. |
437 | | * |
438 | | * If one compares the Chi^2 values of the variants, the number 33 not |
439 | | * even has the best value. But the number 33 and a few other equally |
440 | | * good numbers like 17, 31, 63, 127 and 129 have nevertheless a great |
441 | | * advantage to the remaining numbers in the large set of possible |
442 | | * multipliers: their multiply operation can be replaced by a faster |
443 | | * operation based on just one shift plus either a single addition |
444 | | * or subtraction operation. And because a hash function has to both |
445 | | * distribute good _and_ has to be very fast to compute, those few |
446 | | * numbers should be preferred and seems to be the reason why Daniel J. |
447 | | * Bernstein also preferred it. |
448 | | * |
449 | | * |
450 | | * -- Ralf S. Engelschall <rse@engelschall.com> |
451 | | */ |
452 | | |
453 | | static zend_always_inline zend_ulong zend_inline_hash_func(const char *str, size_t len) |
454 | 14.2M | { |
455 | 14.2M | zend_ulong hash = Z_UL(5381); |
456 | | |
457 | 14.2M | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) |
458 | | /* Version with multiplication works better on modern CPU */ |
459 | 317M | for (; len >= 8; len -= 8, str += 8) { |
460 | | # if defined(__aarch64__) && !defined(WORDS_BIGENDIAN) |
461 | | /* On some architectures it is beneficial to load 8 bytes at a |
462 | | time and extract each byte with a bit field extract instr. */ |
463 | | uint64_t chunk; |
464 | | |
465 | | memcpy(&chunk, str, sizeof(chunk)); |
466 | | hash = |
467 | | hash * 33 * 33 * 33 * 33 + |
468 | | ((chunk >> (8 * 0)) & 0xff) * 33 * 33 * 33 + |
469 | | ((chunk >> (8 * 1)) & 0xff) * 33 * 33 + |
470 | | ((chunk >> (8 * 2)) & 0xff) * 33 + |
471 | | ((chunk >> (8 * 3)) & 0xff); |
472 | | hash = |
473 | | hash * 33 * 33 * 33 * 33 + |
474 | | ((chunk >> (8 * 4)) & 0xff) * 33 * 33 * 33 + |
475 | | ((chunk >> (8 * 5)) & 0xff) * 33 * 33 + |
476 | | ((chunk >> (8 * 6)) & 0xff) * 33 + |
477 | | ((chunk >> (8 * 7)) & 0xff); |
478 | | # else |
479 | 303M | hash = |
480 | 303M | hash * Z_L(33 * 33 * 33 * 33) + |
481 | 303M | str[0] * Z_L(33 * 33 * 33) + |
482 | 303M | str[1] * Z_L(33 * 33) + |
483 | 303M | str[2] * Z_L(33) + |
484 | 303M | str[3]; |
485 | 303M | hash = |
486 | 303M | hash * Z_L(33 * 33 * 33 * 33) + |
487 | 303M | str[4] * Z_L(33 * 33 * 33) + |
488 | 303M | str[5] * Z_L(33 * 33) + |
489 | 303M | str[6] * Z_L(33) + |
490 | 303M | str[7]; |
491 | 303M | # endif |
492 | 303M | } |
493 | 14.2M | if (len >= 4) { |
494 | 6.09M | hash = |
495 | 6.09M | hash * Z_L(33 * 33 * 33 * 33) + |
496 | 6.09M | str[0] * Z_L(33 * 33 * 33) + |
497 | 6.09M | str[1] * Z_L(33 * 33) + |
498 | 6.09M | str[2] * Z_L(33) + |
499 | 6.09M | str[3]; |
500 | 6.09M | len -= 4; |
501 | 6.09M | str += 4; |
502 | 6.09M | } |
503 | 14.2M | if (len >= 2) { |
504 | 5.54M | if (len > 2) { |
505 | 3.16M | hash = |
506 | 3.16M | hash * Z_L(33 * 33 * 33) + |
507 | 3.16M | str[0] * Z_L(33 * 33) + |
508 | 3.16M | str[1] * Z_L(33) + |
509 | 3.16M | str[2]; |
510 | 3.16M | } else { |
511 | 2.38M | hash = |
512 | 2.38M | hash * Z_L(33 * 33) + |
513 | 2.38M | str[0] * Z_L(33) + |
514 | 2.38M | str[1]; |
515 | 2.38M | } |
516 | 8.74M | } else if (len != 0) { |
517 | 5.24M | hash = hash * Z_L(33) + *str; |
518 | 5.24M | } |
519 | | #else |
520 | | /* variant with the hash unrolled eight times */ |
521 | | for (; len >= 8; len -= 8) { |
522 | | hash = ((hash << 5) + hash) + *str++; |
523 | | hash = ((hash << 5) + hash) + *str++; |
524 | | hash = ((hash << 5) + hash) + *str++; |
525 | | hash = ((hash << 5) + hash) + *str++; |
526 | | hash = ((hash << 5) + hash) + *str++; |
527 | | hash = ((hash << 5) + hash) + *str++; |
528 | | hash = ((hash << 5) + hash) + *str++; |
529 | | hash = ((hash << 5) + hash) + *str++; |
530 | | } |
531 | | switch (len) { |
532 | | case 7: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
533 | | case 6: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
534 | | case 5: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
535 | | case 4: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
536 | | case 3: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
537 | | case 2: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ |
538 | | case 1: hash = ((hash << 5) + hash) + *str++; break; |
539 | | case 0: break; |
540 | | EMPTY_SWITCH_DEFAULT_CASE() |
541 | | } |
542 | | #endif |
543 | | |
544 | | /* Hash value can't be zero, so we always set the high bit */ |
545 | 14.2M | #if SIZEOF_ZEND_LONG == 8 |
546 | 14.2M | return hash | Z_UL(0x8000000000000000); |
547 | | #elif SIZEOF_ZEND_LONG == 4 |
548 | | return hash | Z_UL(0x80000000); |
549 | | #else |
550 | | # error "Unknown SIZEOF_ZEND_LONG" |
551 | | #endif |
552 | 14.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 | 454 | 11.7k | { | 455 | 11.7k | zend_ulong hash = Z_UL(5381); | 456 | | | 457 | 11.7k | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) | 458 | | /* Version with multiplication works better on modern CPU */ | 459 | 11.8k | for (; len >= 8; len -= 8, str += 8) { | 460 | | # if defined(__aarch64__) && !defined(WORDS_BIGENDIAN) | 461 | | /* On some architectures it is beneficial to load 8 bytes at a | 462 | | time and extract each byte with a bit field extract instr. */ | 463 | | uint64_t chunk; | 464 | | | 465 | | memcpy(&chunk, str, sizeof(chunk)); | 466 | | hash = | 467 | | hash * 33 * 33 * 33 * 33 + | 468 | | ((chunk >> (8 * 0)) & 0xff) * 33 * 33 * 33 + | 469 | | ((chunk >> (8 * 1)) & 0xff) * 33 * 33 + | 470 | | ((chunk >> (8 * 2)) & 0xff) * 33 + | 471 | | ((chunk >> (8 * 3)) & 0xff); | 472 | | hash = | 473 | | hash * 33 * 33 * 33 * 33 + | 474 | | ((chunk >> (8 * 4)) & 0xff) * 33 * 33 * 33 + | 475 | | ((chunk >> (8 * 5)) & 0xff) * 33 * 33 + | 476 | | ((chunk >> (8 * 6)) & 0xff) * 33 + | 477 | | ((chunk >> (8 * 7)) & 0xff); | 478 | | # else | 479 | 114 | hash = | 480 | 114 | hash * Z_L(33 * 33 * 33 * 33) + | 481 | 114 | str[0] * Z_L(33 * 33 * 33) + | 482 | 114 | str[1] * Z_L(33 * 33) + | 483 | 114 | str[2] * Z_L(33) + | 484 | 114 | str[3]; | 485 | 114 | hash = | 486 | 114 | hash * Z_L(33 * 33 * 33 * 33) + | 487 | 114 | str[4] * Z_L(33 * 33 * 33) + | 488 | 114 | str[5] * Z_L(33 * 33) + | 489 | 114 | str[6] * Z_L(33) + | 490 | 114 | str[7]; | 491 | 114 | # endif | 492 | 114 | } | 493 | 11.7k | if (len >= 4) { | 494 | 181 | hash = | 495 | 181 | hash * Z_L(33 * 33 * 33 * 33) + | 496 | 181 | str[0] * Z_L(33 * 33 * 33) + | 497 | 181 | str[1] * Z_L(33 * 33) + | 498 | 181 | str[2] * Z_L(33) + | 499 | 181 | str[3]; | 500 | 181 | len -= 4; | 501 | 181 | str += 4; | 502 | 181 | } | 503 | 11.7k | if (len >= 2) { | 504 | 11.5k | if (len > 2) { | 505 | 3.85k | hash = | 506 | 3.85k | hash * Z_L(33 * 33 * 33) + | 507 | 3.85k | str[0] * Z_L(33 * 33) + | 508 | 3.85k | str[1] * Z_L(33) + | 509 | 3.85k | str[2]; | 510 | 7.73k | } else { | 511 | 7.73k | hash = | 512 | 7.73k | hash * Z_L(33 * 33) + | 513 | 7.73k | str[0] * Z_L(33) + | 514 | 7.73k | str[1]; | 515 | 7.73k | } | 516 | 11.5k | } else if (len != 0) { | 517 | 111 | hash = hash * Z_L(33) + *str; | 518 | 111 | } | 519 | | #else | 520 | | /* variant with the hash unrolled eight times */ | 521 | | for (; len >= 8; len -= 8) { | 522 | | hash = ((hash << 5) + hash) + *str++; | 523 | | hash = ((hash << 5) + hash) + *str++; | 524 | | hash = ((hash << 5) + hash) + *str++; | 525 | | hash = ((hash << 5) + hash) + *str++; | 526 | | hash = ((hash << 5) + hash) + *str++; | 527 | | hash = ((hash << 5) + hash) + *str++; | 528 | | hash = ((hash << 5) + hash) + *str++; | 529 | | hash = ((hash << 5) + hash) + *str++; | 530 | | } | 531 | | switch (len) { | 532 | | case 7: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 533 | | case 6: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 534 | | case 5: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 535 | | case 4: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 536 | | case 3: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 537 | | case 2: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 538 | | case 1: hash = ((hash << 5) + hash) + *str++; break; | 539 | | case 0: break; | 540 | | EMPTY_SWITCH_DEFAULT_CASE() | 541 | | } | 542 | | #endif | 543 | | | 544 | | /* Hash value can't be zero, so we always set the high bit */ | 545 | 11.7k | #if SIZEOF_ZEND_LONG == 8 | 546 | 11.7k | return hash | Z_UL(0x8000000000000000); | 547 | | #elif SIZEOF_ZEND_LONG == 4 | 548 | | return hash | Z_UL(0x80000000); | 549 | | #else | 550 | | # error "Unknown SIZEOF_ZEND_LONG" | 551 | | #endif | 552 | 11.7k | } |
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: php_uriparser.c:zend_inline_hash_func Unexecuted instantiation: explicit_bzero.c:zend_inline_hash_func Unexecuted instantiation: fopen_wrappers.c:zend_inline_hash_func Unexecuted instantiation: getopt.c:zend_inline_hash_func Unexecuted instantiation: main.c:zend_inline_hash_func Unexecuted instantiation: network.c:zend_inline_hash_func Unexecuted instantiation: output.c:zend_inline_hash_func Unexecuted instantiation: php_content_types.c:zend_inline_hash_func Unexecuted instantiation: php_ini_builder.c:zend_inline_hash_func Unexecuted instantiation: php_ini.c:zend_inline_hash_func Unexecuted instantiation: php_glob.c:zend_inline_hash_func Unexecuted instantiation: php_odbc_utils.c:zend_inline_hash_func Unexecuted instantiation: php_open_temporary_file.c:zend_inline_hash_func Unexecuted instantiation: php_scandir.c:zend_inline_hash_func Unexecuted instantiation: php_syslog.c:zend_inline_hash_func Unexecuted instantiation: php_ticks.c:zend_inline_hash_func Unexecuted instantiation: php_variables.c:zend_inline_hash_func Unexecuted instantiation: reentrancy.c:zend_inline_hash_func Unexecuted instantiation: rfc1867.c:zend_inline_hash_func Unexecuted instantiation: safe_bcmp.c:zend_inline_hash_func Unexecuted instantiation: SAPI.c:zend_inline_hash_func Unexecuted instantiation: snprintf.c:zend_inline_hash_func Unexecuted instantiation: spprintf.c:zend_inline_hash_func Unexecuted instantiation: strlcat.c:zend_inline_hash_func Unexecuted instantiation: strlcpy.c:zend_inline_hash_func Unexecuted instantiation: cast.c:zend_inline_hash_func Unexecuted instantiation: filter.c:zend_inline_hash_func Unexecuted instantiation: glob_wrapper.c:zend_inline_hash_func Unexecuted instantiation: memory.c:zend_inline_hash_func Unexecuted instantiation: mmap.c:zend_inline_hash_func Unexecuted instantiation: plain_wrapper.c:zend_inline_hash_func Unexecuted instantiation: streams.c:zend_inline_hash_func Unexecuted instantiation: transports.c:zend_inline_hash_func Unexecuted instantiation: userspace.c:zend_inline_hash_func Unexecuted instantiation: xp_socket.c:zend_inline_hash_func Unexecuted instantiation: block_pass.c:zend_inline_hash_func Unexecuted instantiation: compact_literals.c:zend_inline_hash_func Unexecuted instantiation: compact_vars.c:zend_inline_hash_func Unexecuted instantiation: dce.c:zend_inline_hash_func Unexecuted instantiation: dfa_pass.c:zend_inline_hash_func Unexecuted instantiation: escape_analysis.c:zend_inline_hash_func Unexecuted instantiation: nop_removal.c:zend_inline_hash_func Unexecuted instantiation: optimize_func_calls.c:zend_inline_hash_func Unexecuted instantiation: optimize_temp_vars_5.c:zend_inline_hash_func Unexecuted instantiation: pass1.c:zend_inline_hash_func Unexecuted instantiation: pass3.c:zend_inline_hash_func Unexecuted instantiation: sccp.c:zend_inline_hash_func Unexecuted instantiation: scdf.c:zend_inline_hash_func Unexecuted instantiation: zend_call_graph.c:zend_inline_hash_func Unexecuted instantiation: zend_cfg.c:zend_inline_hash_func Unexecuted instantiation: zend_dfg.c:zend_inline_hash_func Unexecuted instantiation: zend_dump.c:zend_inline_hash_func Unexecuted instantiation: zend_func_info.c:zend_inline_hash_func Unexecuted instantiation: zend_inference.c:zend_inline_hash_func Unexecuted instantiation: zend_optimizer.c:zend_inline_hash_func Unexecuted instantiation: zend_ssa.c:zend_inline_hash_func Unexecuted instantiation: zend_alloc.c:zend_inline_hash_func Unexecuted instantiation: zend_API.c:zend_inline_hash_func Unexecuted instantiation: zend_ast.c:zend_inline_hash_func Unexecuted instantiation: zend_attributes.c:zend_inline_hash_func Unexecuted instantiation: zend_builtin_functions.c:zend_inline_hash_func Unexecuted instantiation: zend_call_stack.c:zend_inline_hash_func Unexecuted instantiation: zend_closures.c:zend_inline_hash_func Unexecuted instantiation: zend_compile.c:zend_inline_hash_func Unexecuted instantiation: zend_constants.c:zend_inline_hash_func Unexecuted instantiation: zend_cpuinfo.c:zend_inline_hash_func Unexecuted instantiation: zend_default_classes.c:zend_inline_hash_func Unexecuted instantiation: zend_dtrace.c:zend_inline_hash_func Unexecuted instantiation: zend_enum.c:zend_inline_hash_func Unexecuted instantiation: zend_exceptions.c:zend_inline_hash_func Unexecuted instantiation: zend_execute_API.c:zend_inline_hash_func Unexecuted instantiation: zend_execute.c:zend_inline_hash_func Unexecuted instantiation: zend_extensions.c:zend_inline_hash_func Unexecuted instantiation: zend_fibers.c:zend_inline_hash_func Unexecuted instantiation: zend_float.c:zend_inline_hash_func Unexecuted instantiation: zend_gc.c:zend_inline_hash_func Unexecuted instantiation: zend_gdb.c:zend_inline_hash_func Unexecuted instantiation: zend_generators.c:zend_inline_hash_func zend_hash.c:zend_inline_hash_func Line | Count | Source | 454 | 4.59M | { | 455 | 4.59M | zend_ulong hash = Z_UL(5381); | 456 | | | 457 | 4.59M | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) | 458 | | /* Version with multiplication works better on modern CPU */ | 459 | 7.87M | for (; len >= 8; len -= 8, str += 8) { | 460 | | # if defined(__aarch64__) && !defined(WORDS_BIGENDIAN) | 461 | | /* On some architectures it is beneficial to load 8 bytes at a | 462 | | time and extract each byte with a bit field extract instr. */ | 463 | | uint64_t chunk; | 464 | | | 465 | | memcpy(&chunk, str, sizeof(chunk)); | 466 | | hash = | 467 | | hash * 33 * 33 * 33 * 33 + | 468 | | ((chunk >> (8 * 0)) & 0xff) * 33 * 33 * 33 + | 469 | | ((chunk >> (8 * 1)) & 0xff) * 33 * 33 + | 470 | | ((chunk >> (8 * 2)) & 0xff) * 33 + | 471 | | ((chunk >> (8 * 3)) & 0xff); | 472 | | hash = | 473 | | hash * 33 * 33 * 33 * 33 + | 474 | | ((chunk >> (8 * 4)) & 0xff) * 33 * 33 * 33 + | 475 | | ((chunk >> (8 * 5)) & 0xff) * 33 * 33 + | 476 | | ((chunk >> (8 * 6)) & 0xff) * 33 + | 477 | | ((chunk >> (8 * 7)) & 0xff); | 478 | | # else | 479 | 3.28M | hash = | 480 | 3.28M | hash * Z_L(33 * 33 * 33 * 33) + | 481 | 3.28M | str[0] * Z_L(33 * 33 * 33) + | 482 | 3.28M | str[1] * Z_L(33 * 33) + | 483 | 3.28M | str[2] * Z_L(33) + | 484 | 3.28M | str[3]; | 485 | 3.28M | hash = | 486 | 3.28M | hash * Z_L(33 * 33 * 33 * 33) + | 487 | 3.28M | str[4] * Z_L(33 * 33 * 33) + | 488 | 3.28M | str[5] * Z_L(33 * 33) + | 489 | 3.28M | str[6] * Z_L(33) + | 490 | 3.28M | str[7]; | 491 | 3.28M | # endif | 492 | 3.28M | } | 493 | 4.59M | if (len >= 4) { | 494 | 1.76M | hash = | 495 | 1.76M | hash * Z_L(33 * 33 * 33 * 33) + | 496 | 1.76M | str[0] * Z_L(33 * 33 * 33) + | 497 | 1.76M | str[1] * Z_L(33 * 33) + | 498 | 1.76M | str[2] * Z_L(33) + | 499 | 1.76M | str[3]; | 500 | 1.76M | len -= 4; | 501 | 1.76M | str += 4; | 502 | 1.76M | } | 503 | 4.59M | if (len >= 2) { | 504 | 1.52M | if (len > 2) { | 505 | 827k | hash = | 506 | 827k | hash * Z_L(33 * 33 * 33) + | 507 | 827k | str[0] * Z_L(33 * 33) + | 508 | 827k | str[1] * Z_L(33) + | 509 | 827k | str[2]; | 510 | 827k | } else { | 511 | 700k | hash = | 512 | 700k | hash * Z_L(33 * 33) + | 513 | 700k | str[0] * Z_L(33) + | 514 | 700k | str[1]; | 515 | 700k | } | 516 | 3.06M | } else if (len != 0) { | 517 | 2.28M | hash = hash * Z_L(33) + *str; | 518 | 2.28M | } | 519 | | #else | 520 | | /* variant with the hash unrolled eight times */ | 521 | | for (; len >= 8; len -= 8) { | 522 | | hash = ((hash << 5) + hash) + *str++; | 523 | | hash = ((hash << 5) + hash) + *str++; | 524 | | hash = ((hash << 5) + hash) + *str++; | 525 | | hash = ((hash << 5) + hash) + *str++; | 526 | | hash = ((hash << 5) + hash) + *str++; | 527 | | hash = ((hash << 5) + hash) + *str++; | 528 | | hash = ((hash << 5) + hash) + *str++; | 529 | | hash = ((hash << 5) + hash) + *str++; | 530 | | } | 531 | | switch (len) { | 532 | | case 7: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 533 | | case 6: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 534 | | case 5: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 535 | | case 4: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 536 | | case 3: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 537 | | case 2: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 538 | | case 1: hash = ((hash << 5) + hash) + *str++; break; | 539 | | case 0: break; | 540 | | EMPTY_SWITCH_DEFAULT_CASE() | 541 | | } | 542 | | #endif | 543 | | | 544 | | /* Hash value can't be zero, so we always set the high bit */ | 545 | 4.59M | #if SIZEOF_ZEND_LONG == 8 | 546 | 4.59M | return hash | Z_UL(0x8000000000000000); | 547 | | #elif SIZEOF_ZEND_LONG == 4 | 548 | | return hash | Z_UL(0x80000000); | 549 | | #else | 550 | | # error "Unknown SIZEOF_ZEND_LONG" | 551 | | #endif | 552 | 4.59M | } |
Unexecuted instantiation: zend_highlight.c:zend_inline_hash_func Unexecuted instantiation: zend_hrtime.c:zend_inline_hash_func Unexecuted instantiation: zend_inheritance.c:zend_inline_hash_func Unexecuted instantiation: zend_ini_parser.c:zend_inline_hash_func Unexecuted instantiation: zend_ini_scanner.c:zend_inline_hash_func Unexecuted instantiation: zend_ini.c:zend_inline_hash_func Unexecuted instantiation: zend_interfaces.c:zend_inline_hash_func Unexecuted instantiation: zend_iterators.c:zend_inline_hash_func Unexecuted instantiation: zend_language_parser.c:zend_inline_hash_func Unexecuted instantiation: zend_language_scanner.c:zend_inline_hash_func Unexecuted instantiation: zend_lazy_objects.c:zend_inline_hash_func Unexecuted instantiation: zend_list.c:zend_inline_hash_func Unexecuted instantiation: zend_llist.c:zend_inline_hash_func Unexecuted instantiation: zend_multibyte.c:zend_inline_hash_func Unexecuted instantiation: zend_object_handlers.c:zend_inline_hash_func Unexecuted instantiation: zend_objects_API.c:zend_inline_hash_func Unexecuted instantiation: zend_objects.c:zend_inline_hash_func Unexecuted instantiation: zend_observer.c:zend_inline_hash_func Unexecuted instantiation: zend_opcode.c:zend_inline_hash_func Unexecuted instantiation: zend_operators.c:zend_inline_hash_func Unexecuted instantiation: zend_property_hooks.c:zend_inline_hash_func Unexecuted instantiation: zend_ptr_stack.c:zend_inline_hash_func Unexecuted instantiation: zend_signal.c:zend_inline_hash_func Unexecuted instantiation: zend_smart_str.c:zend_inline_hash_func Unexecuted instantiation: zend_sort.c:zend_inline_hash_func Unexecuted instantiation: zend_stack.c:zend_inline_hash_func Unexecuted instantiation: zend_stream.c:zend_inline_hash_func zend_string.c:zend_inline_hash_func Line | Count | Source | 454 | 9.68M | { | 455 | 9.68M | zend_ulong hash = Z_UL(5381); | 456 | | | 457 | 9.68M | #if defined(_WIN32) || defined(__i386__) || defined(__x86_64__) || defined(__aarch64__) | 458 | | /* Version with multiplication works better on modern CPU */ | 459 | 309M | for (; len >= 8; len -= 8, str += 8) { | 460 | | # if defined(__aarch64__) && !defined(WORDS_BIGENDIAN) | 461 | | /* On some architectures it is beneficial to load 8 bytes at a | 462 | | time and extract each byte with a bit field extract instr. */ | 463 | | uint64_t chunk; | 464 | | | 465 | | memcpy(&chunk, str, sizeof(chunk)); | 466 | | hash = | 467 | | hash * 33 * 33 * 33 * 33 + | 468 | | ((chunk >> (8 * 0)) & 0xff) * 33 * 33 * 33 + | 469 | | ((chunk >> (8 * 1)) & 0xff) * 33 * 33 + | 470 | | ((chunk >> (8 * 2)) & 0xff) * 33 + | 471 | | ((chunk >> (8 * 3)) & 0xff); | 472 | | hash = | 473 | | hash * 33 * 33 * 33 * 33 + | 474 | | ((chunk >> (8 * 4)) & 0xff) * 33 * 33 * 33 + | 475 | | ((chunk >> (8 * 5)) & 0xff) * 33 * 33 + | 476 | | ((chunk >> (8 * 6)) & 0xff) * 33 + | 477 | | ((chunk >> (8 * 7)) & 0xff); | 478 | | # else | 479 | 299M | hash = | 480 | 299M | hash * Z_L(33 * 33 * 33 * 33) + | 481 | 299M | str[0] * Z_L(33 * 33 * 33) + | 482 | 299M | str[1] * Z_L(33 * 33) + | 483 | 299M | str[2] * Z_L(33) + | 484 | 299M | str[3]; | 485 | 299M | hash = | 486 | 299M | hash * Z_L(33 * 33 * 33 * 33) + | 487 | 299M | str[4] * Z_L(33 * 33 * 33) + | 488 | 299M | str[5] * Z_L(33 * 33) + | 489 | 299M | str[6] * Z_L(33) + | 490 | 299M | str[7]; | 491 | 299M | # endif | 492 | 299M | } | 493 | 9.68M | if (len >= 4) { | 494 | 4.32M | hash = | 495 | 4.32M | hash * Z_L(33 * 33 * 33 * 33) + | 496 | 4.32M | str[0] * Z_L(33 * 33 * 33) + | 497 | 4.32M | str[1] * Z_L(33 * 33) + | 498 | 4.32M | str[2] * Z_L(33) + | 499 | 4.32M | str[3]; | 500 | 4.32M | len -= 4; | 501 | 4.32M | str += 4; | 502 | 4.32M | } | 503 | 9.68M | if (len >= 2) { | 504 | 4.00M | if (len > 2) { | 505 | 2.33M | hash = | 506 | 2.33M | hash * Z_L(33 * 33 * 33) + | 507 | 2.33M | str[0] * Z_L(33 * 33) + | 508 | 2.33M | str[1] * Z_L(33) + | 509 | 2.33M | str[2]; | 510 | 2.33M | } else { | 511 | 1.67M | hash = | 512 | 1.67M | hash * Z_L(33 * 33) + | 513 | 1.67M | str[0] * Z_L(33) + | 514 | 1.67M | str[1]; | 515 | 1.67M | } | 516 | 5.67M | } else if (len != 0) { | 517 | 2.95M | hash = hash * Z_L(33) + *str; | 518 | 2.95M | } | 519 | | #else | 520 | | /* variant with the hash unrolled eight times */ | 521 | | for (; len >= 8; len -= 8) { | 522 | | hash = ((hash << 5) + hash) + *str++; | 523 | | hash = ((hash << 5) + hash) + *str++; | 524 | | hash = ((hash << 5) + hash) + *str++; | 525 | | hash = ((hash << 5) + hash) + *str++; | 526 | | hash = ((hash << 5) + hash) + *str++; | 527 | | hash = ((hash << 5) + hash) + *str++; | 528 | | hash = ((hash << 5) + hash) + *str++; | 529 | | hash = ((hash << 5) + hash) + *str++; | 530 | | } | 531 | | switch (len) { | 532 | | case 7: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 533 | | case 6: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 534 | | case 5: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 535 | | case 4: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 536 | | case 3: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 537 | | case 2: hash = ((hash << 5) + hash) + *str++; /* fallthrough... */ | 538 | | case 1: hash = ((hash << 5) + hash) + *str++; break; | 539 | | case 0: break; | 540 | | EMPTY_SWITCH_DEFAULT_CASE() | 541 | | } | 542 | | #endif | 543 | | | 544 | | /* Hash value can't be zero, so we always set the high bit */ | 545 | 9.68M | #if SIZEOF_ZEND_LONG == 8 | 546 | 9.68M | return hash | Z_UL(0x8000000000000000); | 547 | | #elif SIZEOF_ZEND_LONG == 4 | 548 | | return hash | Z_UL(0x80000000); | 549 | | #else | 550 | | # error "Unknown SIZEOF_ZEND_LONG" | 551 | | #endif | 552 | 9.68M | } |
Unexecuted instantiation: zend_strtod.c:zend_inline_hash_func Unexecuted instantiation: zend_system_id.c:zend_inline_hash_func Unexecuted instantiation: zend_variables.c:zend_inline_hash_func Unexecuted instantiation: zend_virtual_cwd.c:zend_inline_hash_func Unexecuted instantiation: zend_vm_opcodes.c:zend_inline_hash_func Unexecuted instantiation: zend_weakrefs.c:zend_inline_hash_func Unexecuted instantiation: zend.c:zend_inline_hash_func Unexecuted instantiation: internal_functions_cli.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-parser.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-sapi.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-tracing-jit.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-exif.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-unserialize.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-function-jit.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-json.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-unserializehash.c:zend_inline_hash_func Unexecuted instantiation: fuzzer-execute.c:zend_inline_hash_func |
553 | | |
554 | | // When adding a new string here, please also update build/gen_stub.php to the |
555 | | // known strings to be used in property registration; see gh-15751 |
556 | | #define ZEND_KNOWN_STRINGS(_) \ |
557 | | _(ZEND_STR_FILE, "file") \ |
558 | | _(ZEND_STR_LINE, "line") \ |
559 | | _(ZEND_STR_FUNCTION, "function") \ |
560 | | _(ZEND_STR_CLASS, "class") \ |
561 | | _(ZEND_STR_OBJECT, "object") \ |
562 | | _(ZEND_STR_TYPE, "type") \ |
563 | | _(ZEND_STR_OBJECT_OPERATOR, "->") \ |
564 | | _(ZEND_STR_PAAMAYIM_NEKUDOTAYIM, "::") \ |
565 | | _(ZEND_STR_ARGS, "args") \ |
566 | | _(ZEND_STR_UNKNOWN, "unknown") \ |
567 | | _(ZEND_STR_UNKNOWN_CAPITALIZED, "Unknown") \ |
568 | | _(ZEND_STR_EXIT, "exit") \ |
569 | | _(ZEND_STR_CLONE, "clone") \ |
570 | | _(ZEND_STR_EVAL, "eval") \ |
571 | | _(ZEND_STR_INCLUDE, "include") \ |
572 | | _(ZEND_STR_REQUIRE, "require") \ |
573 | | _(ZEND_STR_INCLUDE_ONCE, "include_once") \ |
574 | | _(ZEND_STR_REQUIRE_ONCE, "require_once") \ |
575 | | _(ZEND_STR_SCALAR, "scalar") \ |
576 | | _(ZEND_STR_ERROR_REPORTING, "error_reporting") \ |
577 | | _(ZEND_STR_STATIC, "static") \ |
578 | | _(ZEND_STR_THIS, "this") \ |
579 | | _(ZEND_STR_VALUE, "value") \ |
580 | | _(ZEND_STR_KEY, "key") \ |
581 | | _(ZEND_STR_MAGIC_INVOKE, "__invoke") \ |
582 | | _(ZEND_STR_PREVIOUS, "previous") \ |
583 | | _(ZEND_STR_CODE, "code") \ |
584 | | _(ZEND_STR_MESSAGE, "message") \ |
585 | | _(ZEND_STR_SEVERITY, "severity") \ |
586 | | _(ZEND_STR_STRING, "string") \ |
587 | | _(ZEND_STR_TRACE, "trace") \ |
588 | | _(ZEND_STR_SCHEME, "scheme") \ |
589 | | _(ZEND_STR_HOST, "host") \ |
590 | | _(ZEND_STR_PORT, "port") \ |
591 | | _(ZEND_STR_USER, "user") \ |
592 | | _(ZEND_STR_USERNAME, "username") \ |
593 | | _(ZEND_STR_PASS, "pass") \ |
594 | | _(ZEND_STR_PASSWORD, "password") \ |
595 | | _(ZEND_STR_PATH, "path") \ |
596 | | _(ZEND_STR_QUERY, "query") \ |
597 | | _(ZEND_STR_FRAGMENT, "fragment") \ |
598 | | _(ZEND_STR_NULL, "NULL") \ |
599 | | _(ZEND_STR_BOOLEAN, "boolean") \ |
600 | | _(ZEND_STR_INTEGER, "integer") \ |
601 | | _(ZEND_STR_DOUBLE, "double") \ |
602 | | _(ZEND_STR_ARRAY, "array") \ |
603 | | _(ZEND_STR_RESOURCE, "resource") \ |
604 | | _(ZEND_STR_CLOSED_RESOURCE, "resource (closed)") \ |
605 | | _(ZEND_STR_NAME, "name") \ |
606 | | _(ZEND_STR_ARGV, "argv") \ |
607 | | _(ZEND_STR_ARGC, "argc") \ |
608 | | _(ZEND_STR_ARRAY_CAPITALIZED, "Array") \ |
609 | | _(ZEND_STR_BOOL, "bool") \ |
610 | | _(ZEND_STR_INT, "int") \ |
611 | | _(ZEND_STR_FLOAT, "float") \ |
612 | | _(ZEND_STR_CALLABLE, "callable") \ |
613 | | _(ZEND_STR_ITERABLE, "iterable") \ |
614 | | _(ZEND_STR_VOID, "void") \ |
615 | | _(ZEND_STR_NEVER, "never") \ |
616 | | _(ZEND_STR_FALSE, "false") \ |
617 | | _(ZEND_STR_TRUE, "true") \ |
618 | | _(ZEND_STR_NULL_LOWERCASE, "null") \ |
619 | | _(ZEND_STR_MIXED, "mixed") \ |
620 | | _(ZEND_STR_TRAVERSABLE, "Traversable") \ |
621 | | _(ZEND_STR_SELF, "self") \ |
622 | | _(ZEND_STR_PARENT, "parent") \ |
623 | | _(ZEND_STR_SLEEP, "__sleep") \ |
624 | | _(ZEND_STR_WAKEUP, "__wakeup") \ |
625 | | _(ZEND_STR_CASES, "cases") \ |
626 | | _(ZEND_STR_FROM, "from") \ |
627 | | _(ZEND_STR_TRYFROM, "tryFrom") \ |
628 | | _(ZEND_STR_TRYFROM_LOWERCASE, "tryfrom") \ |
629 | | _(ZEND_STR_AUTOGLOBAL_SERVER, "_SERVER") \ |
630 | | _(ZEND_STR_AUTOGLOBAL_ENV, "_ENV") \ |
631 | | _(ZEND_STR_AUTOGLOBAL_REQUEST, "_REQUEST") \ |
632 | | _(ZEND_STR_COUNT, "count") \ |
633 | | _(ZEND_STR_SENSITIVEPARAMETER, "SensitiveParameter") \ |
634 | | _(ZEND_STR_CONST_EXPR_PLACEHOLDER, "[constant expression]") \ |
635 | | _(ZEND_STR_DEPRECATED_CAPITALIZED, "Deprecated") \ |
636 | | _(ZEND_STR_SINCE, "since") \ |
637 | | _(ZEND_STR_GET, "get") \ |
638 | | _(ZEND_STR_SET, "set") \ |
639 | | _(ZEND_STR_8_DOT_0, "8.0") \ |
640 | | _(ZEND_STR_8_DOT_1, "8.1") \ |
641 | | _(ZEND_STR_8_DOT_2, "8.2") \ |
642 | | _(ZEND_STR_8_DOT_3, "8.3") \ |
643 | | _(ZEND_STR_8_DOT_4, "8.4") \ |
644 | | _(ZEND_STR_8_DOT_5, "8.5") \ |
645 | | |
646 | | |
647 | | typedef enum _zend_known_string_id { |
648 | | #define _ZEND_STR_ID(id, str) id, |
649 | | ZEND_KNOWN_STRINGS(_ZEND_STR_ID) |
650 | | #undef _ZEND_STR_ID |
651 | | ZEND_STR_LAST_KNOWN |
652 | | } zend_known_string_id; |
653 | | |
654 | | #endif /* ZEND_STRING_H */ |