/src/php-src/Zend/zend_smart_str.h
Line | Count | Source |
1 | | /* |
2 | | +----------------------------------------------------------------------+ |
3 | | | Copyright (c) The PHP Group | |
4 | | +----------------------------------------------------------------------+ |
5 | | | This source file is subject to version 3.01 of the PHP license, | |
6 | | | that is bundled with this package in the file LICENSE, and is | |
7 | | | available through the world-wide-web at the following url: | |
8 | | | https://www.php.net/license/3_01.txt | |
9 | | | If you did not receive a copy of the PHP license and are unable to | |
10 | | | obtain it through the world-wide-web, please send a note to | |
11 | | | license@php.net so we can mail you a copy immediately. | |
12 | | +----------------------------------------------------------------------+ |
13 | | | Author: Sascha Schumann <sascha@schumann.cx> | |
14 | | +----------------------------------------------------------------------+ |
15 | | */ |
16 | | |
17 | | #ifndef ZEND_SMART_STR_H |
18 | | #define ZEND_SMART_STR_H |
19 | | |
20 | | #include <zend.h> |
21 | | #include "zend_globals.h" |
22 | | #include "zend_smart_str_public.h" |
23 | | |
24 | | BEGIN_EXTERN_C() |
25 | | |
26 | | ZEND_API void ZEND_FASTCALL smart_str_erealloc(smart_str *str, size_t len); |
27 | | ZEND_API void ZEND_FASTCALL smart_str_realloc(smart_str *str, size_t len); |
28 | | ZEND_API void ZEND_FASTCALL smart_str_append_escaped(smart_str *str, const char *s, size_t l); |
29 | | /* If zero_fraction is true, then a ".0" will be added to numbers that would not otherwise |
30 | | * have a fractional part and look like integers. */ |
31 | | ZEND_API void ZEND_FASTCALL smart_str_append_double( |
32 | | smart_str *str, double num, int precision, bool zero_fraction); |
33 | | ZEND_API void smart_str_append_printf(smart_str *dest, const char *format, ...) |
34 | | ZEND_ATTRIBUTE_FORMAT(printf, 2, 3); |
35 | | ZEND_API void ZEND_FASTCALL smart_str_append_escaped_truncated(smart_str *str, const zend_string *value, size_t length); |
36 | | ZEND_API void ZEND_FASTCALL smart_str_append_scalar(smart_str *str, const zval *value, size_t truncate); |
37 | | ZEND_API zend_result ZEND_FASTCALL smart_str_append_zval(smart_str *dest, const zval *value, size_t truncate); |
38 | | END_EXTERN_C() |
39 | | |
40 | 30.2M | static zend_always_inline size_t smart_str_alloc(smart_str *str, size_t len, bool persistent) { |
41 | 30.2M | if (UNEXPECTED(!str->s)) { |
42 | 1.00M | goto do_smart_str_realloc; |
43 | 29.2M | } else { |
44 | 29.2M | len += ZSTR_LEN(str->s); |
45 | 29.2M | if (UNEXPECTED(len >= str->a)) { |
46 | 1.01M | do_smart_str_realloc: |
47 | 1.01M | if (persistent) { |
48 | 0 | smart_str_realloc(str, len); |
49 | 1.01M | } else { |
50 | 1.01M | smart_str_erealloc(str, len); |
51 | 1.01M | } |
52 | 1.01M | } |
53 | 29.2M | } |
54 | 30.2M | return len; |
55 | 30.2M | } php_date.c:smart_str_alloc Line | Count | Source | 40 | 272k | static zend_always_inline size_t smart_str_alloc(smart_str *str, size_t len, bool persistent) { | 41 | 272k | if (UNEXPECTED(!str->s)) { | 42 | 195 | goto do_smart_str_realloc; | 43 | 272k | } else { | 44 | 272k | len += ZSTR_LEN(str->s); | 45 | 272k | if (UNEXPECTED(len >= str->a)) { | 46 | 444 | do_smart_str_realloc: | 47 | 444 | if (persistent) { | 48 | 0 | smart_str_realloc(str, len); | 49 | 444 | } else { | 50 | 444 | smart_str_erealloc(str, len); | 51 | 444 | } | 52 | 444 | } | 53 | 272k | } | 54 | 272k | return len; | 55 | 272k | } |
Unexecuted instantiation: php_pcre.c:smart_str_alloc Unexecuted instantiation: hash.c:smart_str_alloc json_encoder.c:smart_str_alloc Line | Count | Source | 40 | 3.77k | static zend_always_inline size_t smart_str_alloc(smart_str *str, size_t len, bool persistent) { | 41 | 3.77k | if (UNEXPECTED(!str->s)) { | 42 | 636 | goto do_smart_str_realloc; | 43 | 3.14k | } else { | 44 | 3.14k | len += ZSTR_LEN(str->s); | 45 | 3.14k | if (UNEXPECTED(len >= str->a)) { | 46 | 639 | do_smart_str_realloc: | 47 | 639 | if (persistent) { | 48 | 0 | smart_str_realloc(str, len); | 49 | 639 | } else { | 50 | 639 | smart_str_erealloc(str, len); | 51 | 639 | } | 52 | 639 | } | 53 | 3.14k | } | 54 | 3.77k | return len; | 55 | 3.77k | } |
Unexecuted instantiation: json.c:smart_str_alloc Unexecuted instantiation: zend_jit.c:smart_str_alloc php_reflection.c:smart_str_alloc Line | Count | Source | 40 | 3.09k | static zend_always_inline size_t smart_str_alloc(smart_str *str, size_t len, bool persistent) { | 41 | 3.09k | if (UNEXPECTED(!str->s)) { | 42 | 111 | goto do_smart_str_realloc; | 43 | 2.98k | } else { | 44 | 2.98k | len += ZSTR_LEN(str->s); | 45 | 2.98k | if (UNEXPECTED(len >= str->a)) { | 46 | 153 | do_smart_str_realloc: | 47 | 153 | if (persistent) { | 48 | 0 | smart_str_realloc(str, len); | 49 | 153 | } else { | 50 | 153 | smart_str_erealloc(str, len); | 51 | 153 | } | 52 | 153 | } | 53 | 2.98k | } | 54 | 3.09k | return len; | 55 | 3.09k | } |
Unexecuted instantiation: spl_array.c:smart_str_alloc Unexecuted instantiation: spl_dllist.c:smart_str_alloc Unexecuted instantiation: spl_iterators.c:smart_str_alloc Unexecuted instantiation: spl_observer.c:smart_str_alloc Unexecuted instantiation: array.c:smart_str_alloc Unexecuted instantiation: basic_functions.c:smart_str_alloc Unexecuted instantiation: file.c:smart_str_alloc Unexecuted instantiation: filters.c:smart_str_alloc Unexecuted instantiation: head.c:smart_str_alloc Unexecuted instantiation: http_fopen_wrapper.c:smart_str_alloc Unexecuted instantiation: http.c:smart_str_alloc Unexecuted instantiation: mail.c:smart_str_alloc Unexecuted instantiation: proc_open.c:smart_str_alloc Unexecuted instantiation: string.c:smart_str_alloc Unexecuted instantiation: url_scanner_ex.c:smart_str_alloc Unexecuted instantiation: url.c:smart_str_alloc Line | Count | Source | 40 | 29.8k | static zend_always_inline size_t smart_str_alloc(smart_str *str, size_t len, bool persistent) { | 41 | 29.8k | if (UNEXPECTED(!str->s)) { | 42 | 601 | goto do_smart_str_realloc; | 43 | 29.2k | } else { | 44 | 29.2k | len += ZSTR_LEN(str->s); | 45 | 29.2k | if (UNEXPECTED(len >= str->a)) { | 46 | 725 | do_smart_str_realloc: | 47 | 725 | if (persistent) { | 48 | 0 | smart_str_realloc(str, len); | 49 | 725 | } else { | 50 | 725 | smart_str_erealloc(str, len); | 51 | 725 | } | 52 | 725 | } | 53 | 29.2k | } | 54 | 29.8k | return len; | 55 | 29.8k | } |
Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_alloc Unexecuted instantiation: uri_parser_whatwg.c:smart_str_alloc fopen_wrappers.c:smart_str_alloc Line | Count | Source | 40 | 15 | static zend_always_inline size_t smart_str_alloc(smart_str *str, size_t len, bool persistent) { | 41 | 15 | if (UNEXPECTED(!str->s)) { | 42 | 15 | goto do_smart_str_realloc; | 43 | 15 | } else { | 44 | 0 | len += ZSTR_LEN(str->s); | 45 | 0 | if (UNEXPECTED(len >= str->a)) { | 46 | 15 | do_smart_str_realloc: | 47 | 15 | if (persistent) { | 48 | 0 | smart_str_realloc(str, len); | 49 | 15 | } else { | 50 | 15 | smart_str_erealloc(str, len); | 51 | 15 | } | 52 | 15 | } | 53 | 0 | } | 54 | 15 | return len; | 55 | 15 | } |
Unexecuted instantiation: php_variables.c:smart_str_alloc spprintf.c:smart_str_alloc Line | Count | Source | 40 | 29.4M | static zend_always_inline size_t smart_str_alloc(smart_str *str, size_t len, bool persistent) { | 41 | 29.4M | if (UNEXPECTED(!str->s)) { | 42 | 994k | goto do_smart_str_realloc; | 43 | 28.4M | } else { | 44 | 28.4M | len += ZSTR_LEN(str->s); | 45 | 28.4M | if (UNEXPECTED(len >= str->a)) { | 46 | 1.00M | do_smart_str_realloc: | 47 | 1.00M | if (persistent) { | 48 | 0 | smart_str_realloc(str, len); | 49 | 1.00M | } else { | 50 | 1.00M | smart_str_erealloc(str, len); | 51 | 1.00M | } | 52 | 1.00M | } | 53 | 28.4M | } | 54 | 29.4M | return len; | 55 | 29.4M | } |
Unexecuted instantiation: zend_dump.c:smart_str_alloc zend_ast.c:smart_str_alloc Line | Count | Source | 40 | 211k | static zend_always_inline size_t smart_str_alloc(smart_str *str, size_t len, bool persistent) { | 41 | 211k | if (UNEXPECTED(!str->s)) { | 42 | 732 | goto do_smart_str_realloc; | 43 | 210k | } else { | 44 | 210k | len += ZSTR_LEN(str->s); | 45 | 210k | if (UNEXPECTED(len >= str->a)) { | 46 | 952 | do_smart_str_realloc: | 47 | 952 | if (persistent) { | 48 | 0 | smart_str_realloc(str, len); | 49 | 952 | } else { | 50 | 952 | smart_str_erealloc(str, len); | 51 | 952 | } | 52 | 952 | } | 53 | 210k | } | 54 | 211k | return len; | 55 | 211k | } |
zend_attributes.c:smart_str_alloc Line | Count | Source | 40 | 168 | static zend_always_inline size_t smart_str_alloc(smart_str *str, size_t len, bool persistent) { | 41 | 168 | if (UNEXPECTED(!str->s)) { | 42 | 126 | goto do_smart_str_realloc; | 43 | 126 | } else { | 44 | 42 | len += ZSTR_LEN(str->s); | 45 | 42 | if (UNEXPECTED(len >= str->a)) { | 46 | 126 | do_smart_str_realloc: | 47 | 126 | if (persistent) { | 48 | 0 | smart_str_realloc(str, len); | 49 | 126 | } else { | 50 | 126 | smart_str_erealloc(str, len); | 51 | 126 | } | 52 | 126 | } | 53 | 42 | } | 54 | 168 | return len; | 55 | 168 | } |
Unexecuted instantiation: zend_builtin_functions.c:smart_str_alloc zend_exceptions.c:smart_str_alloc Line | Count | Source | 40 | 183k | static zend_always_inline size_t smart_str_alloc(smart_str *str, size_t len, bool persistent) { | 41 | 183k | if (UNEXPECTED(!str->s)) { | 42 | 5.95k | goto do_smart_str_realloc; | 43 | 177k | } else { | 44 | 177k | len += ZSTR_LEN(str->s); | 45 | 177k | if (UNEXPECTED(len >= str->a)) { | 46 | 6.94k | do_smart_str_realloc: | 47 | 6.94k | if (persistent) { | 48 | 0 | smart_str_realloc(str, len); | 49 | 6.94k | } else { | 50 | 6.94k | smart_str_erealloc(str, len); | 51 | 6.94k | } | 52 | 6.94k | } | 53 | 177k | } | 54 | 183k | return len; | 55 | 183k | } |
zend_execute.c:smart_str_alloc Line | Count | Source | 40 | 18 | static zend_always_inline size_t smart_str_alloc(smart_str *str, size_t len, bool persistent) { | 41 | 18 | if (UNEXPECTED(!str->s)) { | 42 | 9 | goto do_smart_str_realloc; | 43 | 9 | } else { | 44 | 9 | len += ZSTR_LEN(str->s); | 45 | 9 | if (UNEXPECTED(len >= str->a)) { | 46 | 9 | do_smart_str_realloc: | 47 | 9 | if (persistent) { | 48 | 0 | smart_str_realloc(str, len); | 49 | 9 | } else { | 50 | 9 | smart_str_erealloc(str, len); | 51 | 9 | } | 52 | 9 | } | 53 | 9 | } | 54 | 18 | return len; | 55 | 18 | } |
zend_inheritance.c:smart_str_alloc Line | Count | Source | 40 | 9.02k | static zend_always_inline size_t smart_str_alloc(smart_str *str, size_t len, bool persistent) { | 41 | 9.02k | if (UNEXPECTED(!str->s)) { | 42 | 954 | goto do_smart_str_realloc; | 43 | 8.07k | } else { | 44 | 8.07k | len += ZSTR_LEN(str->s); | 45 | 8.07k | if (UNEXPECTED(len >= str->a)) { | 46 | 954 | do_smart_str_realloc: | 47 | 954 | if (persistent) { | 48 | 0 | smart_str_realloc(str, len); | 49 | 954 | } else { | 50 | 954 | smart_str_erealloc(str, len); | 51 | 954 | } | 52 | 954 | } | 53 | 8.07k | } | 54 | 9.02k | return len; | 55 | 9.02k | } |
Unexecuted instantiation: zend_ini.c:smart_str_alloc zend_smart_str.c:smart_str_alloc Line | Count | Source | 40 | 45.8k | static zend_always_inline size_t smart_str_alloc(smart_str *str, size_t len, bool persistent) { | 41 | 45.8k | if (UNEXPECTED(!str->s)) { | 42 | 216 | goto do_smart_str_realloc; | 43 | 45.5k | } else { | 44 | 45.5k | len += ZSTR_LEN(str->s); | 45 | 45.5k | if (UNEXPECTED(len >= str->a)) { | 46 | 673 | do_smart_str_realloc: | 47 | 673 | if (persistent) { | 48 | 0 | smart_str_realloc(str, len); | 49 | 673 | } else { | 50 | 673 | smart_str_erealloc(str, len); | 51 | 673 | } | 52 | 673 | } | 53 | 45.5k | } | 54 | 45.8k | return len; | 55 | 45.8k | } |
Line | Count | Source | 40 | 37.9k | static zend_always_inline size_t smart_str_alloc(smart_str *str, size_t len, bool persistent) { | 41 | 37.9k | if (UNEXPECTED(!str->s)) { | 42 | 1.37k | goto do_smart_str_realloc; | 43 | 36.6k | } else { | 44 | 36.6k | len += ZSTR_LEN(str->s); | 45 | 36.6k | if (UNEXPECTED(len >= str->a)) { | 46 | 1.42k | do_smart_str_realloc: | 47 | 1.42k | if (persistent) { | 48 | 0 | smart_str_realloc(str, len); | 49 | 1.42k | } else { | 50 | 1.42k | smart_str_erealloc(str, len); | 51 | 1.42k | } | 52 | 1.42k | } | 53 | 36.6k | } | 54 | 37.9k | return len; | 55 | 37.9k | } |
|
56 | | |
57 | 6.82k | static zend_always_inline char* smart_str_extend_ex(smart_str *dest, size_t len, bool persistent) { |
58 | 6.82k | size_t new_len = smart_str_alloc(dest, len, persistent); |
59 | 6.82k | char *ret = ZSTR_VAL(dest->s) + ZSTR_LEN(dest->s); |
60 | 6.82k | ZSTR_LEN(dest->s) = new_len; |
61 | 6.82k | return ret; |
62 | 6.82k | } Unexecuted instantiation: php_date.c:smart_str_extend_ex Unexecuted instantiation: php_pcre.c:smart_str_extend_ex Unexecuted instantiation: hash.c:smart_str_extend_ex json_encoder.c:smart_str_extend_ex Line | Count | Source | 57 | 126 | static zend_always_inline char* smart_str_extend_ex(smart_str *dest, size_t len, bool persistent) { | 58 | 126 | size_t new_len = smart_str_alloc(dest, len, persistent); | 59 | 126 | char *ret = ZSTR_VAL(dest->s) + ZSTR_LEN(dest->s); | 60 | 126 | ZSTR_LEN(dest->s) = new_len; | 61 | 126 | return ret; | 62 | 126 | } |
Unexecuted instantiation: json.c:smart_str_extend_ex Unexecuted instantiation: zend_jit.c:smart_str_extend_ex Unexecuted instantiation: php_reflection.c:smart_str_extend_ex Unexecuted instantiation: spl_array.c:smart_str_extend_ex Unexecuted instantiation: spl_dllist.c:smart_str_extend_ex Unexecuted instantiation: spl_iterators.c:smart_str_extend_ex Unexecuted instantiation: spl_observer.c:smart_str_extend_ex Unexecuted instantiation: array.c:smart_str_extend_ex Unexecuted instantiation: basic_functions.c:smart_str_extend_ex Unexecuted instantiation: file.c:smart_str_extend_ex Unexecuted instantiation: filters.c:smart_str_extend_ex Unexecuted instantiation: head.c:smart_str_extend_ex Unexecuted instantiation: http_fopen_wrapper.c:smart_str_extend_ex Unexecuted instantiation: http.c:smart_str_extend_ex Unexecuted instantiation: mail.c:smart_str_extend_ex Unexecuted instantiation: proc_open.c:smart_str_extend_ex Unexecuted instantiation: string.c:smart_str_extend_ex Unexecuted instantiation: url_scanner_ex.c:smart_str_extend_ex Unexecuted instantiation: url.c:smart_str_extend_ex var.c:smart_str_extend_ex Line | Count | Source | 57 | 6.69k | static zend_always_inline char* smart_str_extend_ex(smart_str *dest, size_t len, bool persistent) { | 58 | 6.69k | size_t new_len = smart_str_alloc(dest, len, persistent); | 59 | 6.69k | char *ret = ZSTR_VAL(dest->s) + ZSTR_LEN(dest->s); | 60 | 6.69k | ZSTR_LEN(dest->s) = new_len; | 61 | 6.69k | return ret; | 62 | 6.69k | } |
Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_extend_ex Unexecuted instantiation: uri_parser_whatwg.c:smart_str_extend_ex Unexecuted instantiation: fopen_wrappers.c:smart_str_extend_ex Unexecuted instantiation: php_variables.c:smart_str_extend_ex Unexecuted instantiation: spprintf.c:smart_str_extend_ex Unexecuted instantiation: zend_dump.c:smart_str_extend_ex Unexecuted instantiation: zend_ast.c:smart_str_extend_ex Unexecuted instantiation: zend_attributes.c:smart_str_extend_ex Unexecuted instantiation: zend_builtin_functions.c:smart_str_extend_ex Unexecuted instantiation: zend_exceptions.c:smart_str_extend_ex Unexecuted instantiation: zend_execute.c:smart_str_extend_ex Unexecuted instantiation: zend_inheritance.c:smart_str_extend_ex Unexecuted instantiation: zend_ini.c:smart_str_extend_ex Unexecuted instantiation: zend_smart_str.c:smart_str_extend_ex Unexecuted instantiation: zend.c:smart_str_extend_ex |
63 | | |
64 | | static zend_always_inline char* smart_str_extend(smart_str *dest, size_t length) |
65 | 6.82k | { |
66 | 6.82k | return smart_str_extend_ex(dest, length, false); |
67 | 6.82k | } Unexecuted instantiation: php_date.c:smart_str_extend Unexecuted instantiation: php_pcre.c:smart_str_extend Unexecuted instantiation: hash.c:smart_str_extend json_encoder.c:smart_str_extend Line | Count | Source | 65 | 126 | { | 66 | | return smart_str_extend_ex(dest, length, false); | 67 | 126 | } |
Unexecuted instantiation: json.c:smart_str_extend Unexecuted instantiation: zend_jit.c:smart_str_extend Unexecuted instantiation: php_reflection.c:smart_str_extend Unexecuted instantiation: spl_array.c:smart_str_extend Unexecuted instantiation: spl_dllist.c:smart_str_extend Unexecuted instantiation: spl_iterators.c:smart_str_extend Unexecuted instantiation: spl_observer.c:smart_str_extend Unexecuted instantiation: array.c:smart_str_extend Unexecuted instantiation: basic_functions.c:smart_str_extend Unexecuted instantiation: file.c:smart_str_extend Unexecuted instantiation: filters.c:smart_str_extend Unexecuted instantiation: head.c:smart_str_extend Unexecuted instantiation: http_fopen_wrapper.c:smart_str_extend Unexecuted instantiation: http.c:smart_str_extend Unexecuted instantiation: mail.c:smart_str_extend Unexecuted instantiation: proc_open.c:smart_str_extend Unexecuted instantiation: string.c:smart_str_extend Unexecuted instantiation: url_scanner_ex.c:smart_str_extend Unexecuted instantiation: url.c:smart_str_extend Line | Count | Source | 65 | 6.69k | { | 66 | | return smart_str_extend_ex(dest, length, false); | 67 | 6.69k | } |
Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_extend Unexecuted instantiation: uri_parser_whatwg.c:smart_str_extend Unexecuted instantiation: fopen_wrappers.c:smart_str_extend Unexecuted instantiation: php_variables.c:smart_str_extend Unexecuted instantiation: spprintf.c:smart_str_extend Unexecuted instantiation: zend_dump.c:smart_str_extend Unexecuted instantiation: zend_ast.c:smart_str_extend Unexecuted instantiation: zend_attributes.c:smart_str_extend Unexecuted instantiation: zend_builtin_functions.c:smart_str_extend Unexecuted instantiation: zend_exceptions.c:smart_str_extend Unexecuted instantiation: zend_execute.c:smart_str_extend Unexecuted instantiation: zend_inheritance.c:smart_str_extend Unexecuted instantiation: zend_ini.c:smart_str_extend Unexecuted instantiation: zend_smart_str.c:smart_str_extend Unexecuted instantiation: zend.c:smart_str_extend |
68 | | |
69 | 233k | static zend_always_inline void smart_str_free_ex(smart_str *str, bool persistent) { |
70 | 233k | if (str->s) { |
71 | 509 | zend_string_release_ex(str->s, persistent); |
72 | 509 | str->s = NULL; |
73 | 509 | } |
74 | 233k | str->a = 0; |
75 | 233k | } Unexecuted instantiation: php_date.c:smart_str_free_ex Unexecuted instantiation: php_pcre.c:smart_str_free_ex Unexecuted instantiation: hash.c:smart_str_free_ex Unexecuted instantiation: json_encoder.c:smart_str_free_ex Line | Count | Source | 69 | 26 | static zend_always_inline void smart_str_free_ex(smart_str *str, bool persistent) { | 70 | 26 | if (str->s) { | 71 | 26 | zend_string_release_ex(str->s, persistent); | 72 | | str->s = NULL; | 73 | 26 | } | 74 | 26 | str->a = 0; | 75 | 26 | } |
Unexecuted instantiation: zend_jit.c:smart_str_free_ex php_reflection.c:smart_str_free_ex Line | Count | Source | 69 | 264 | static zend_always_inline void smart_str_free_ex(smart_str *str, bool persistent) { | 70 | 264 | if (str->s) { | 71 | 138 | zend_string_release_ex(str->s, persistent); | 72 | | str->s = NULL; | 73 | 138 | } | 74 | 264 | str->a = 0; | 75 | 264 | } |
Unexecuted instantiation: spl_array.c:smart_str_free_ex Unexecuted instantiation: spl_dllist.c:smart_str_free_ex Unexecuted instantiation: spl_iterators.c:smart_str_free_ex Unexecuted instantiation: spl_observer.c:smart_str_free_ex Unexecuted instantiation: array.c:smart_str_free_ex Unexecuted instantiation: basic_functions.c:smart_str_free_ex Unexecuted instantiation: file.c:smart_str_free_ex Unexecuted instantiation: filters.c:smart_str_free_ex Unexecuted instantiation: head.c:smart_str_free_ex Unexecuted instantiation: http_fopen_wrapper.c:smart_str_free_ex Unexecuted instantiation: http.c:smart_str_free_ex Unexecuted instantiation: mail.c:smart_str_free_ex Unexecuted instantiation: proc_open.c:smart_str_free_ex string.c:smart_str_free_ex Line | Count | Source | 69 | 1.01k | static zend_always_inline void smart_str_free_ex(smart_str *str, bool persistent) { | 70 | 1.01k | if (str->s) { | 71 | 0 | zend_string_release_ex(str->s, persistent); | 72 | | str->s = NULL; | 73 | 0 | } | 74 | 1.01k | str->a = 0; | 75 | 1.01k | } |
url_scanner_ex.c:smart_str_free_ex Line | Count | Source | 69 | 231k | static zend_always_inline void smart_str_free_ex(smart_str *str, bool persistent) { | 70 | 231k | if (str->s) { | 71 | 0 | zend_string_release_ex(str->s, persistent); | 72 | | str->s = NULL; | 73 | 0 | } | 74 | 231k | str->a = 0; | 75 | 231k | } |
Unexecuted instantiation: url.c:smart_str_free_ex Line | Count | Source | 69 | 150 | static zend_always_inline void smart_str_free_ex(smart_str *str, bool persistent) { | 70 | 150 | if (str->s) { | 71 | 123 | zend_string_release_ex(str->s, persistent); | 72 | | str->s = NULL; | 73 | 123 | } | 74 | 150 | str->a = 0; | 75 | 150 | } |
Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_free_ex Unexecuted instantiation: uri_parser_whatwg.c:smart_str_free_ex Unexecuted instantiation: fopen_wrappers.c:smart_str_free_ex Unexecuted instantiation: php_variables.c:smart_str_free_ex Unexecuted instantiation: spprintf.c:smart_str_free_ex Unexecuted instantiation: zend_dump.c:smart_str_free_ex Unexecuted instantiation: zend_ast.c:smart_str_free_ex Unexecuted instantiation: zend_attributes.c:smart_str_free_ex Unexecuted instantiation: zend_builtin_functions.c:smart_str_free_ex Unexecuted instantiation: zend_exceptions.c:smart_str_free_ex zend_execute.c:smart_str_free_ex Line | Count | Source | 69 | 120 | static zend_always_inline void smart_str_free_ex(smart_str *str, bool persistent) { | 70 | 120 | if (str->s) { | 71 | 120 | zend_string_release_ex(str->s, persistent); | 72 | | str->s = NULL; | 73 | 120 | } | 74 | 120 | str->a = 0; | 75 | 120 | } |
Unexecuted instantiation: zend_inheritance.c:smart_str_free_ex zend_ini.c:smart_str_free_ex Line | Count | Source | 69 | 102 | static zend_always_inline void smart_str_free_ex(smart_str *str, bool persistent) { | 70 | 102 | if (str->s) { | 71 | 102 | zend_string_release_ex(str->s, persistent); | 72 | | str->s = NULL; | 73 | 102 | } | 74 | 102 | str->a = 0; | 75 | 102 | } |
Unexecuted instantiation: zend_smart_str.c:smart_str_free_ex Unexecuted instantiation: zend.c:smart_str_free_ex |
76 | | |
77 | | static zend_always_inline void smart_str_free(smart_str *str) |
78 | 233k | { |
79 | 233k | smart_str_free_ex(str, false); |
80 | 233k | } Unexecuted instantiation: php_date.c:smart_str_free Unexecuted instantiation: php_pcre.c:smart_str_free Unexecuted instantiation: hash.c:smart_str_free Unexecuted instantiation: json_encoder.c:smart_str_free Line | Count | Source | 78 | 26 | { | 79 | | smart_str_free_ex(str, false); | 80 | 26 | } |
Unexecuted instantiation: zend_jit.c:smart_str_free php_reflection.c:smart_str_free Line | Count | Source | 78 | 264 | { | 79 | | smart_str_free_ex(str, false); | 80 | 264 | } |
Unexecuted instantiation: spl_array.c:smart_str_free Unexecuted instantiation: spl_dllist.c:smart_str_free Unexecuted instantiation: spl_iterators.c:smart_str_free Unexecuted instantiation: spl_observer.c:smart_str_free Unexecuted instantiation: array.c:smart_str_free Unexecuted instantiation: basic_functions.c:smart_str_free Unexecuted instantiation: file.c:smart_str_free Unexecuted instantiation: filters.c:smart_str_free Unexecuted instantiation: head.c:smart_str_free Unexecuted instantiation: http_fopen_wrapper.c:smart_str_free Unexecuted instantiation: http.c:smart_str_free Unexecuted instantiation: mail.c:smart_str_free Unexecuted instantiation: proc_open.c:smart_str_free Line | Count | Source | 78 | 1.01k | { | 79 | | smart_str_free_ex(str, false); | 80 | 1.01k | } |
url_scanner_ex.c:smart_str_free Line | Count | Source | 78 | 231k | { | 79 | | smart_str_free_ex(str, false); | 80 | 231k | } |
Unexecuted instantiation: url.c:smart_str_free Line | Count | Source | 78 | 150 | { | 79 | | smart_str_free_ex(str, false); | 80 | 150 | } |
Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_free Unexecuted instantiation: uri_parser_whatwg.c:smart_str_free Unexecuted instantiation: fopen_wrappers.c:smart_str_free Unexecuted instantiation: php_variables.c:smart_str_free Unexecuted instantiation: spprintf.c:smart_str_free Unexecuted instantiation: zend_dump.c:smart_str_free Unexecuted instantiation: zend_ast.c:smart_str_free Unexecuted instantiation: zend_attributes.c:smart_str_free Unexecuted instantiation: zend_builtin_functions.c:smart_str_free Unexecuted instantiation: zend_exceptions.c:smart_str_free zend_execute.c:smart_str_free Line | Count | Source | 78 | 120 | { | 79 | | smart_str_free_ex(str, false); | 80 | 120 | } |
Unexecuted instantiation: zend_inheritance.c:smart_str_free zend_ini.c:smart_str_free Line | Count | Source | 78 | 102 | { | 79 | | smart_str_free_ex(str, false); | 80 | 102 | } |
Unexecuted instantiation: zend_smart_str.c:smart_str_free Unexecuted instantiation: zend.c:smart_str_free |
81 | | |
82 | 1.00M | static zend_always_inline void smart_str_0(smart_str *str) { |
83 | 1.00M | if (str->s) { |
84 | 1.00M | ZSTR_VAL(str->s)[ZSTR_LEN(str->s)] = '\0'; |
85 | 1.00M | } |
86 | 1.00M | } Line | Count | Source | 82 | 195 | static zend_always_inline void smart_str_0(smart_str *str) { | 83 | 195 | if (str->s) { | 84 | 195 | ZSTR_VAL(str->s)[ZSTR_LEN(str->s)] = '\0'; | 85 | 195 | } | 86 | 195 | } |
Unexecuted instantiation: php_pcre.c:smart_str_0 Unexecuted instantiation: hash.c:smart_str_0 Unexecuted instantiation: json_encoder.c:smart_str_0 Line | Count | Source | 82 | 610 | static zend_always_inline void smart_str_0(smart_str *str) { | 83 | 610 | if (str->s) { | 84 | 610 | ZSTR_VAL(str->s)[ZSTR_LEN(str->s)] = '\0'; | 85 | 610 | } | 86 | 610 | } |
Unexecuted instantiation: zend_jit.c:smart_str_0 php_reflection.c:smart_str_0 Line | Count | Source | 82 | 276 | static zend_always_inline void smart_str_0(smart_str *str) { | 83 | 276 | if (str->s) { | 84 | 276 | ZSTR_VAL(str->s)[ZSTR_LEN(str->s)] = '\0'; | 85 | 276 | } | 86 | 276 | } |
Unexecuted instantiation: spl_array.c:smart_str_0 Unexecuted instantiation: spl_dllist.c:smart_str_0 Unexecuted instantiation: spl_iterators.c:smart_str_0 Unexecuted instantiation: spl_observer.c:smart_str_0 Unexecuted instantiation: array.c:smart_str_0 Unexecuted instantiation: basic_functions.c:smart_str_0 Unexecuted instantiation: file.c:smart_str_0 Unexecuted instantiation: filters.c:smart_str_0 Unexecuted instantiation: head.c:smart_str_0 Unexecuted instantiation: http_fopen_wrapper.c:smart_str_0 Unexecuted instantiation: http.c:smart_str_0 Unexecuted instantiation: mail.c:smart_str_0 Unexecuted instantiation: proc_open.c:smart_str_0 Unexecuted instantiation: string.c:smart_str_0 Unexecuted instantiation: url_scanner_ex.c:smart_str_0 Unexecuted instantiation: url.c:smart_str_0 Line | Count | Source | 82 | 1.11k | static zend_always_inline void smart_str_0(smart_str *str) { | 83 | 1.11k | if (str->s) { | 84 | 1.08k | ZSTR_VAL(str->s)[ZSTR_LEN(str->s)] = '\0'; | 85 | 1.08k | } | 86 | 1.11k | } |
Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_0 Unexecuted instantiation: uri_parser_whatwg.c:smart_str_0 fopen_wrappers.c:smart_str_0 Line | Count | Source | 82 | 15 | static zend_always_inline void smart_str_0(smart_str *str) { | 83 | 15 | if (str->s) { | 84 | 15 | ZSTR_VAL(str->s)[ZSTR_LEN(str->s)] = '\0'; | 85 | 15 | } | 86 | 15 | } |
Unexecuted instantiation: php_variables.c:smart_str_0 Unexecuted instantiation: spprintf.c:smart_str_0 Unexecuted instantiation: zend_dump.c:smart_str_0 Line | Count | Source | 82 | 732 | static zend_always_inline void smart_str_0(smart_str *str) { | 83 | 732 | if (str->s) { | 84 | 732 | ZSTR_VAL(str->s)[ZSTR_LEN(str->s)] = '\0'; | 85 | 732 | } | 86 | 732 | } |
zend_attributes.c:smart_str_0 Line | Count | Source | 82 | 126 | static zend_always_inline void smart_str_0(smart_str *str) { | 83 | 126 | if (str->s) { | 84 | 126 | ZSTR_VAL(str->s)[ZSTR_LEN(str->s)] = '\0'; | 85 | 126 | } | 86 | 126 | } |
Unexecuted instantiation: zend_builtin_functions.c:smart_str_0 zend_exceptions.c:smart_str_0 Line | Count | Source | 82 | 5.96k | static zend_always_inline void smart_str_0(smart_str *str) { | 83 | 5.96k | if (str->s) { | 84 | 5.95k | ZSTR_VAL(str->s)[ZSTR_LEN(str->s)] = '\0'; | 85 | 5.95k | } | 86 | 5.96k | } |
zend_execute.c:smart_str_0 Line | Count | Source | 82 | 120 | static zend_always_inline void smart_str_0(smart_str *str) { | 83 | 120 | if (str->s) { | 84 | 120 | ZSTR_VAL(str->s)[ZSTR_LEN(str->s)] = '\0'; | 85 | 120 | } | 86 | 120 | } |
zend_inheritance.c:smart_str_0 Line | Count | Source | 82 | 954 | static zend_always_inline void smart_str_0(smart_str *str) { | 83 | 954 | if (str->s) { | 84 | 954 | ZSTR_VAL(str->s)[ZSTR_LEN(str->s)] = '\0'; | 85 | 954 | } | 86 | 954 | } |
Line | Count | Source | 82 | 102 | static zend_always_inline void smart_str_0(smart_str *str) { | 83 | 102 | if (str->s) { | 84 | 102 | ZSTR_VAL(str->s)[ZSTR_LEN(str->s)] = '\0'; | 85 | 102 | } | 86 | 102 | } |
Unexecuted instantiation: zend_smart_str.c:smart_str_0 Line | Count | Source | 82 | 995k | static zend_always_inline void smart_str_0(smart_str *str) { | 83 | 995k | if (str->s) { | 84 | 995k | ZSTR_VAL(str->s)[ZSTR_LEN(str->s)] = '\0'; | 85 | 995k | } | 86 | 995k | } |
|
87 | | |
88 | 162 | static zend_always_inline size_t smart_str_get_len(smart_str *str) { |
89 | 162 | return str->s ? ZSTR_LEN(str->s) : 0; |
90 | 162 | } Unexecuted instantiation: php_date.c:smart_str_get_len Unexecuted instantiation: php_pcre.c:smart_str_get_len Unexecuted instantiation: hash.c:smart_str_get_len Unexecuted instantiation: json_encoder.c:smart_str_get_len Unexecuted instantiation: json.c:smart_str_get_len Unexecuted instantiation: zend_jit.c:smart_str_get_len Unexecuted instantiation: php_reflection.c:smart_str_get_len Unexecuted instantiation: spl_array.c:smart_str_get_len Unexecuted instantiation: spl_dllist.c:smart_str_get_len Unexecuted instantiation: spl_iterators.c:smart_str_get_len Unexecuted instantiation: spl_observer.c:smart_str_get_len Unexecuted instantiation: array.c:smart_str_get_len Unexecuted instantiation: basic_functions.c:smart_str_get_len Unexecuted instantiation: file.c:smart_str_get_len Unexecuted instantiation: filters.c:smart_str_get_len Unexecuted instantiation: head.c:smart_str_get_len Unexecuted instantiation: http_fopen_wrapper.c:smart_str_get_len Unexecuted instantiation: http.c:smart_str_get_len Unexecuted instantiation: mail.c:smart_str_get_len Unexecuted instantiation: proc_open.c:smart_str_get_len Unexecuted instantiation: string.c:smart_str_get_len Unexecuted instantiation: url_scanner_ex.c:smart_str_get_len Unexecuted instantiation: url.c:smart_str_get_len Unexecuted instantiation: var.c:smart_str_get_len Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_get_len Unexecuted instantiation: uri_parser_whatwg.c:smart_str_get_len fopen_wrappers.c:smart_str_get_len Line | Count | Source | 88 | 15 | static zend_always_inline size_t smart_str_get_len(smart_str *str) { | 89 | 15 | return str->s ? ZSTR_LEN(str->s) : 0; | 90 | 15 | } |
Unexecuted instantiation: php_variables.c:smart_str_get_len Unexecuted instantiation: spprintf.c:smart_str_get_len Unexecuted instantiation: zend_dump.c:smart_str_get_len Unexecuted instantiation: zend_ast.c:smart_str_get_len zend_attributes.c:smart_str_get_len Line | Count | Source | 88 | 147 | static zend_always_inline size_t smart_str_get_len(smart_str *str) { | 89 | 147 | return str->s ? ZSTR_LEN(str->s) : 0; | 90 | 147 | } |
Unexecuted instantiation: zend_builtin_functions.c:smart_str_get_len Unexecuted instantiation: zend_exceptions.c:smart_str_get_len Unexecuted instantiation: zend_execute.c:smart_str_get_len Unexecuted instantiation: zend_inheritance.c:smart_str_get_len Unexecuted instantiation: zend_ini.c:smart_str_get_len Unexecuted instantiation: zend_smart_str.c:smart_str_get_len Unexecuted instantiation: zend.c:smart_str_get_len |
91 | | |
92 | | static zend_always_inline void smart_str_trim_to_size_ex(smart_str *str, bool persistent) |
93 | 995k | { |
94 | 995k | if (str->s && str->a > ZSTR_LEN(str->s)) { |
95 | 995k | str->s = zend_string_realloc(str->s, ZSTR_LEN(str->s), persistent); |
96 | 995k | str->a = ZSTR_LEN(str->s); |
97 | 995k | } |
98 | 995k | } Unexecuted instantiation: php_date.c:smart_str_trim_to_size_ex Unexecuted instantiation: php_pcre.c:smart_str_trim_to_size_ex Unexecuted instantiation: hash.c:smart_str_trim_to_size_ex Unexecuted instantiation: json_encoder.c:smart_str_trim_to_size_ex json.c:smart_str_trim_to_size_ex Line | Count | Source | 93 | 610 | { | 94 | 610 | if (str->s && str->a > ZSTR_LEN(str->s)) { | 95 | 610 | str->s = zend_string_realloc(str->s, ZSTR_LEN(str->s), persistent); | 96 | 610 | str->a = ZSTR_LEN(str->s); | 97 | 610 | } | 98 | 610 | } |
Unexecuted instantiation: zend_jit.c:smart_str_trim_to_size_ex php_reflection.c:smart_str_trim_to_size_ex Line | Count | Source | 93 | 162 | { | 94 | 162 | if (str->s && str->a > ZSTR_LEN(str->s)) { | 95 | 162 | str->s = zend_string_realloc(str->s, ZSTR_LEN(str->s), persistent); | 96 | 162 | str->a = ZSTR_LEN(str->s); | 97 | 162 | } | 98 | 162 | } |
Unexecuted instantiation: spl_array.c:smart_str_trim_to_size_ex Unexecuted instantiation: spl_dllist.c:smart_str_trim_to_size_ex Unexecuted instantiation: spl_iterators.c:smart_str_trim_to_size_ex Unexecuted instantiation: spl_observer.c:smart_str_trim_to_size_ex Unexecuted instantiation: array.c:smart_str_trim_to_size_ex Unexecuted instantiation: basic_functions.c:smart_str_trim_to_size_ex Unexecuted instantiation: file.c:smart_str_trim_to_size_ex Unexecuted instantiation: filters.c:smart_str_trim_to_size_ex Unexecuted instantiation: head.c:smart_str_trim_to_size_ex Unexecuted instantiation: http_fopen_wrapper.c:smart_str_trim_to_size_ex Unexecuted instantiation: http.c:smart_str_trim_to_size_ex Unexecuted instantiation: mail.c:smart_str_trim_to_size_ex Unexecuted instantiation: proc_open.c:smart_str_trim_to_size_ex Unexecuted instantiation: string.c:smart_str_trim_to_size_ex Unexecuted instantiation: url_scanner_ex.c:smart_str_trim_to_size_ex Unexecuted instantiation: url.c:smart_str_trim_to_size_ex var.c:smart_str_trim_to_size_ex Line | Count | Source | 93 | 481 | { | 94 | 481 | if (str->s && str->a > ZSTR_LEN(str->s)) { | 95 | 481 | str->s = zend_string_realloc(str->s, ZSTR_LEN(str->s), persistent); | 96 | 481 | str->a = ZSTR_LEN(str->s); | 97 | 481 | } | 98 | 481 | } |
Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_trim_to_size_ex Unexecuted instantiation: uri_parser_whatwg.c:smart_str_trim_to_size_ex fopen_wrappers.c:smart_str_trim_to_size_ex Line | Count | Source | 93 | 15 | { | 94 | 15 | if (str->s && str->a > ZSTR_LEN(str->s)) { | 95 | 15 | str->s = zend_string_realloc(str->s, ZSTR_LEN(str->s), persistent); | 96 | 15 | str->a = ZSTR_LEN(str->s); | 97 | 15 | } | 98 | 15 | } |
Unexecuted instantiation: php_variables.c:smart_str_trim_to_size_ex Unexecuted instantiation: spprintf.c:smart_str_trim_to_size_ex Unexecuted instantiation: zend_dump.c:smart_str_trim_to_size_ex Unexecuted instantiation: zend_ast.c:smart_str_trim_to_size_ex zend_attributes.c:smart_str_trim_to_size_ex Line | Count | Source | 93 | 126 | { | 94 | 126 | if (str->s && str->a > ZSTR_LEN(str->s)) { | 95 | 126 | str->s = zend_string_realloc(str->s, ZSTR_LEN(str->s), persistent); | 96 | 126 | str->a = ZSTR_LEN(str->s); | 97 | 126 | } | 98 | 126 | } |
Unexecuted instantiation: zend_builtin_functions.c:smart_str_trim_to_size_ex Unexecuted instantiation: zend_exceptions.c:smart_str_trim_to_size_ex Unexecuted instantiation: zend_execute.c:smart_str_trim_to_size_ex Unexecuted instantiation: zend_inheritance.c:smart_str_trim_to_size_ex Unexecuted instantiation: zend_ini.c:smart_str_trim_to_size_ex Unexecuted instantiation: zend_smart_str.c:smart_str_trim_to_size_ex zend.c:smart_str_trim_to_size_ex Line | Count | Source | 93 | 994k | { | 94 | 994k | if (str->s && str->a > ZSTR_LEN(str->s)) { | 95 | 994k | str->s = zend_string_realloc(str->s, ZSTR_LEN(str->s), persistent); | 96 | 994k | str->a = ZSTR_LEN(str->s); | 97 | 994k | } | 98 | 994k | } |
|
99 | | |
100 | | static zend_always_inline void smart_str_trim_to_size(smart_str *dest) |
101 | 0 | { |
102 | 0 | smart_str_trim_to_size_ex(dest, false); |
103 | 0 | } Unexecuted instantiation: php_date.c:smart_str_trim_to_size Unexecuted instantiation: php_pcre.c:smart_str_trim_to_size Unexecuted instantiation: hash.c:smart_str_trim_to_size Unexecuted instantiation: json_encoder.c:smart_str_trim_to_size Unexecuted instantiation: json.c:smart_str_trim_to_size Unexecuted instantiation: zend_jit.c:smart_str_trim_to_size Unexecuted instantiation: php_reflection.c:smart_str_trim_to_size Unexecuted instantiation: spl_array.c:smart_str_trim_to_size Unexecuted instantiation: spl_dllist.c:smart_str_trim_to_size Unexecuted instantiation: spl_iterators.c:smart_str_trim_to_size Unexecuted instantiation: spl_observer.c:smart_str_trim_to_size Unexecuted instantiation: array.c:smart_str_trim_to_size Unexecuted instantiation: basic_functions.c:smart_str_trim_to_size Unexecuted instantiation: file.c:smart_str_trim_to_size Unexecuted instantiation: filters.c:smart_str_trim_to_size Unexecuted instantiation: head.c:smart_str_trim_to_size Unexecuted instantiation: http_fopen_wrapper.c:smart_str_trim_to_size Unexecuted instantiation: http.c:smart_str_trim_to_size Unexecuted instantiation: mail.c:smart_str_trim_to_size Unexecuted instantiation: proc_open.c:smart_str_trim_to_size Unexecuted instantiation: string.c:smart_str_trim_to_size Unexecuted instantiation: url_scanner_ex.c:smart_str_trim_to_size Unexecuted instantiation: url.c:smart_str_trim_to_size Unexecuted instantiation: var.c:smart_str_trim_to_size Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_trim_to_size Unexecuted instantiation: uri_parser_whatwg.c:smart_str_trim_to_size Unexecuted instantiation: fopen_wrappers.c:smart_str_trim_to_size Unexecuted instantiation: php_variables.c:smart_str_trim_to_size Unexecuted instantiation: spprintf.c:smart_str_trim_to_size Unexecuted instantiation: zend_dump.c:smart_str_trim_to_size Unexecuted instantiation: zend_ast.c:smart_str_trim_to_size Unexecuted instantiation: zend_attributes.c:smart_str_trim_to_size Unexecuted instantiation: zend_builtin_functions.c:smart_str_trim_to_size Unexecuted instantiation: zend_exceptions.c:smart_str_trim_to_size Unexecuted instantiation: zend_execute.c:smart_str_trim_to_size Unexecuted instantiation: zend_inheritance.c:smart_str_trim_to_size Unexecuted instantiation: zend_ini.c:smart_str_trim_to_size Unexecuted instantiation: zend_smart_str.c:smart_str_trim_to_size Unexecuted instantiation: zend.c:smart_str_trim_to_size |
104 | | |
105 | 995k | static zend_always_inline zend_string *smart_str_extract_ex(smart_str *str, bool persistent) { |
106 | 995k | if (str->s) { |
107 | 995k | zend_string *res; |
108 | 995k | smart_str_0(str); |
109 | 995k | smart_str_trim_to_size_ex(str, persistent); |
110 | 995k | res = str->s; |
111 | 995k | str->s = NULL; |
112 | 995k | return res; |
113 | 995k | } else { |
114 | 3 | return ZSTR_EMPTY_ALLOC(); |
115 | 3 | } |
116 | 995k | } Unexecuted instantiation: php_date.c:smart_str_extract_ex Unexecuted instantiation: php_pcre.c:smart_str_extract_ex Unexecuted instantiation: hash.c:smart_str_extract_ex Unexecuted instantiation: json_encoder.c:smart_str_extract_ex json.c:smart_str_extract_ex Line | Count | Source | 105 | 613 | static zend_always_inline zend_string *smart_str_extract_ex(smart_str *str, bool persistent) { | 106 | 613 | if (str->s) { | 107 | 610 | zend_string *res; | 108 | 610 | smart_str_0(str); | 109 | 610 | smart_str_trim_to_size_ex(str, persistent); | 110 | 610 | res = str->s; | 111 | 610 | str->s = NULL; | 112 | 610 | return res; | 113 | 610 | } else { | 114 | 3 | return ZSTR_EMPTY_ALLOC(); | 115 | 3 | } | 116 | 613 | } |
Unexecuted instantiation: zend_jit.c:smart_str_extract_ex php_reflection.c:smart_str_extract_ex Line | Count | Source | 105 | 162 | static zend_always_inline zend_string *smart_str_extract_ex(smart_str *str, bool persistent) { | 106 | 162 | if (str->s) { | 107 | 162 | zend_string *res; | 108 | 162 | smart_str_0(str); | 109 | 162 | smart_str_trim_to_size_ex(str, persistent); | 110 | 162 | res = str->s; | 111 | 162 | str->s = NULL; | 112 | 162 | return res; | 113 | 162 | } else { | 114 | 0 | return ZSTR_EMPTY_ALLOC(); | 115 | 0 | } | 116 | 162 | } |
Unexecuted instantiation: spl_array.c:smart_str_extract_ex Unexecuted instantiation: spl_dllist.c:smart_str_extract_ex Unexecuted instantiation: spl_iterators.c:smart_str_extract_ex Unexecuted instantiation: spl_observer.c:smart_str_extract_ex Unexecuted instantiation: array.c:smart_str_extract_ex Unexecuted instantiation: basic_functions.c:smart_str_extract_ex Unexecuted instantiation: file.c:smart_str_extract_ex Unexecuted instantiation: filters.c:smart_str_extract_ex Unexecuted instantiation: head.c:smart_str_extract_ex Unexecuted instantiation: http_fopen_wrapper.c:smart_str_extract_ex Unexecuted instantiation: http.c:smart_str_extract_ex Unexecuted instantiation: mail.c:smart_str_extract_ex Unexecuted instantiation: proc_open.c:smart_str_extract_ex Unexecuted instantiation: string.c:smart_str_extract_ex Unexecuted instantiation: url_scanner_ex.c:smart_str_extract_ex Unexecuted instantiation: url.c:smart_str_extract_ex var.c:smart_str_extract_ex Line | Count | Source | 105 | 481 | static zend_always_inline zend_string *smart_str_extract_ex(smart_str *str, bool persistent) { | 106 | 481 | if (str->s) { | 107 | 481 | zend_string *res; | 108 | 481 | smart_str_0(str); | 109 | 481 | smart_str_trim_to_size_ex(str, persistent); | 110 | 481 | res = str->s; | 111 | 481 | str->s = NULL; | 112 | 481 | return res; | 113 | 481 | } else { | 114 | 0 | return ZSTR_EMPTY_ALLOC(); | 115 | 0 | } | 116 | 481 | } |
Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_extract_ex Unexecuted instantiation: uri_parser_whatwg.c:smart_str_extract_ex fopen_wrappers.c:smart_str_extract_ex Line | Count | Source | 105 | 15 | static zend_always_inline zend_string *smart_str_extract_ex(smart_str *str, bool persistent) { | 106 | 15 | if (str->s) { | 107 | 15 | zend_string *res; | 108 | 15 | smart_str_0(str); | 109 | 15 | smart_str_trim_to_size_ex(str, persistent); | 110 | 15 | res = str->s; | 111 | 15 | str->s = NULL; | 112 | 15 | return res; | 113 | 15 | } else { | 114 | 0 | return ZSTR_EMPTY_ALLOC(); | 115 | 0 | } | 116 | 15 | } |
Unexecuted instantiation: php_variables.c:smart_str_extract_ex Unexecuted instantiation: spprintf.c:smart_str_extract_ex Unexecuted instantiation: zend_dump.c:smart_str_extract_ex Unexecuted instantiation: zend_ast.c:smart_str_extract_ex zend_attributes.c:smart_str_extract_ex Line | Count | Source | 105 | 126 | static zend_always_inline zend_string *smart_str_extract_ex(smart_str *str, bool persistent) { | 106 | 126 | if (str->s) { | 107 | 126 | zend_string *res; | 108 | 126 | smart_str_0(str); | 109 | 126 | smart_str_trim_to_size_ex(str, persistent); | 110 | 126 | res = str->s; | 111 | 126 | str->s = NULL; | 112 | 126 | return res; | 113 | 126 | } else { | 114 | 0 | return ZSTR_EMPTY_ALLOC(); | 115 | 0 | } | 116 | 126 | } |
Unexecuted instantiation: zend_builtin_functions.c:smart_str_extract_ex Unexecuted instantiation: zend_exceptions.c:smart_str_extract_ex Unexecuted instantiation: zend_execute.c:smart_str_extract_ex Unexecuted instantiation: zend_inheritance.c:smart_str_extract_ex Unexecuted instantiation: zend_ini.c:smart_str_extract_ex Unexecuted instantiation: zend_smart_str.c:smart_str_extract_ex zend.c:smart_str_extract_ex Line | Count | Source | 105 | 994k | static zend_always_inline zend_string *smart_str_extract_ex(smart_str *str, bool persistent) { | 106 | 994k | if (str->s) { | 107 | 994k | zend_string *res; | 108 | 994k | smart_str_0(str); | 109 | 994k | smart_str_trim_to_size_ex(str, persistent); | 110 | 994k | res = str->s; | 111 | 994k | str->s = NULL; | 112 | 994k | return res; | 113 | 994k | } else { | 114 | 0 | return ZSTR_EMPTY_ALLOC(); | 115 | 0 | } | 116 | 994k | } |
|
117 | | |
118 | | static zend_always_inline zend_string *smart_str_extract(smart_str *dest) |
119 | 995k | { |
120 | 995k | return smart_str_extract_ex(dest, false); |
121 | 995k | } Unexecuted instantiation: php_date.c:smart_str_extract Unexecuted instantiation: php_pcre.c:smart_str_extract Unexecuted instantiation: hash.c:smart_str_extract Unexecuted instantiation: json_encoder.c:smart_str_extract Line | Count | Source | 119 | 613 | { | 120 | | return smart_str_extract_ex(dest, false); | 121 | 613 | } |
Unexecuted instantiation: zend_jit.c:smart_str_extract php_reflection.c:smart_str_extract Line | Count | Source | 119 | 162 | { | 120 | | return smart_str_extract_ex(dest, false); | 121 | 162 | } |
Unexecuted instantiation: spl_array.c:smart_str_extract Unexecuted instantiation: spl_dllist.c:smart_str_extract Unexecuted instantiation: spl_iterators.c:smart_str_extract Unexecuted instantiation: spl_observer.c:smart_str_extract Unexecuted instantiation: array.c:smart_str_extract Unexecuted instantiation: basic_functions.c:smart_str_extract Unexecuted instantiation: file.c:smart_str_extract Unexecuted instantiation: filters.c:smart_str_extract Unexecuted instantiation: head.c:smart_str_extract Unexecuted instantiation: http_fopen_wrapper.c:smart_str_extract Unexecuted instantiation: http.c:smart_str_extract Unexecuted instantiation: mail.c:smart_str_extract Unexecuted instantiation: proc_open.c:smart_str_extract Unexecuted instantiation: string.c:smart_str_extract Unexecuted instantiation: url_scanner_ex.c:smart_str_extract Unexecuted instantiation: url.c:smart_str_extract Line | Count | Source | 119 | 481 | { | 120 | | return smart_str_extract_ex(dest, false); | 121 | 481 | } |
Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_extract Unexecuted instantiation: uri_parser_whatwg.c:smart_str_extract fopen_wrappers.c:smart_str_extract Line | Count | Source | 119 | 15 | { | 120 | | return smart_str_extract_ex(dest, false); | 121 | 15 | } |
Unexecuted instantiation: php_variables.c:smart_str_extract Unexecuted instantiation: spprintf.c:smart_str_extract Unexecuted instantiation: zend_dump.c:smart_str_extract Unexecuted instantiation: zend_ast.c:smart_str_extract zend_attributes.c:smart_str_extract Line | Count | Source | 119 | 126 | { | 120 | | return smart_str_extract_ex(dest, false); | 121 | 126 | } |
Unexecuted instantiation: zend_builtin_functions.c:smart_str_extract Unexecuted instantiation: zend_exceptions.c:smart_str_extract Unexecuted instantiation: zend_execute.c:smart_str_extract Unexecuted instantiation: zend_inheritance.c:smart_str_extract Unexecuted instantiation: zend_ini.c:smart_str_extract Unexecuted instantiation: zend_smart_str.c:smart_str_extract Line | Count | Source | 119 | 994k | { | 120 | | return smart_str_extract_ex(dest, false); | 121 | 994k | } |
|
122 | | |
123 | 28.1M | static zend_always_inline void smart_str_appendc_ex(smart_str *dest, char ch, bool persistent) { |
124 | 28.1M | size_t new_len = smart_str_alloc(dest, 1, persistent); |
125 | 28.1M | ZSTR_VAL(dest->s)[new_len - 1] = ch; |
126 | 28.1M | ZSTR_LEN(dest->s) = new_len; |
127 | 28.1M | } Unexecuted instantiation: php_date.c:smart_str_appendc_ex Unexecuted instantiation: php_pcre.c:smart_str_appendc_ex Unexecuted instantiation: hash.c:smart_str_appendc_ex json_encoder.c:smart_str_appendc_ex Line | Count | Source | 123 | 1.99k | static zend_always_inline void smart_str_appendc_ex(smart_str *dest, char ch, bool persistent) { | 124 | 1.99k | size_t new_len = smart_str_alloc(dest, 1, persistent); | 125 | 1.99k | ZSTR_VAL(dest->s)[new_len - 1] = ch; | 126 | 1.99k | ZSTR_LEN(dest->s) = new_len; | 127 | 1.99k | } |
Unexecuted instantiation: json.c:smart_str_appendc_ex Unexecuted instantiation: zend_jit.c:smart_str_appendc_ex php_reflection.c:smart_str_appendc_ex Line | Count | Source | 123 | 885 | static zend_always_inline void smart_str_appendc_ex(smart_str *dest, char ch, bool persistent) { | 124 | 885 | size_t new_len = smart_str_alloc(dest, 1, persistent); | 125 | 885 | ZSTR_VAL(dest->s)[new_len - 1] = ch; | 126 | 885 | ZSTR_LEN(dest->s) = new_len; | 127 | 885 | } |
Unexecuted instantiation: spl_array.c:smart_str_appendc_ex Unexecuted instantiation: spl_dllist.c:smart_str_appendc_ex Unexecuted instantiation: spl_iterators.c:smart_str_appendc_ex Unexecuted instantiation: spl_observer.c:smart_str_appendc_ex Unexecuted instantiation: array.c:smart_str_appendc_ex Unexecuted instantiation: basic_functions.c:smart_str_appendc_ex Unexecuted instantiation: file.c:smart_str_appendc_ex Unexecuted instantiation: filters.c:smart_str_appendc_ex Unexecuted instantiation: head.c:smart_str_appendc_ex Unexecuted instantiation: http_fopen_wrapper.c:smart_str_appendc_ex Unexecuted instantiation: http.c:smart_str_appendc_ex Unexecuted instantiation: mail.c:smart_str_appendc_ex Unexecuted instantiation: proc_open.c:smart_str_appendc_ex Unexecuted instantiation: string.c:smart_str_appendc_ex Unexecuted instantiation: url_scanner_ex.c:smart_str_appendc_ex Unexecuted instantiation: url.c:smart_str_appendc_ex var.c:smart_str_appendc_ex Line | Count | Source | 123 | 6.87k | static zend_always_inline void smart_str_appendc_ex(smart_str *dest, char ch, bool persistent) { | 124 | 6.87k | size_t new_len = smart_str_alloc(dest, 1, persistent); | 125 | 6.87k | ZSTR_VAL(dest->s)[new_len - 1] = ch; | 126 | 6.87k | ZSTR_LEN(dest->s) = new_len; | 127 | 6.87k | } |
Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_appendc_ex Unexecuted instantiation: uri_parser_whatwg.c:smart_str_appendc_ex Unexecuted instantiation: fopen_wrappers.c:smart_str_appendc_ex Unexecuted instantiation: php_variables.c:smart_str_appendc_ex spprintf.c:smart_str_appendc_ex Line | Count | Source | 123 | 27.9M | static zend_always_inline void smart_str_appendc_ex(smart_str *dest, char ch, bool persistent) { | 124 | 27.9M | size_t new_len = smart_str_alloc(dest, 1, persistent); | 125 | 27.9M | ZSTR_VAL(dest->s)[new_len - 1] = ch; | 126 | 27.9M | ZSTR_LEN(dest->s) = new_len; | 127 | 27.9M | } |
Unexecuted instantiation: zend_dump.c:smart_str_appendc_ex zend_ast.c:smart_str_appendc_ex Line | Count | Source | 123 | 146k | static zend_always_inline void smart_str_appendc_ex(smart_str *dest, char ch, bool persistent) { | 124 | 146k | size_t new_len = smart_str_alloc(dest, 1, persistent); | 125 | 146k | ZSTR_VAL(dest->s)[new_len - 1] = ch; | 126 | 146k | ZSTR_LEN(dest->s) = new_len; | 127 | 146k | } |
Unexecuted instantiation: zend_attributes.c:smart_str_appendc_ex Unexecuted instantiation: zend_builtin_functions.c:smart_str_appendc_ex zend_exceptions.c:smart_str_appendc_ex Line | Count | Source | 123 | 63.8k | static zend_always_inline void smart_str_appendc_ex(smart_str *dest, char ch, bool persistent) { | 124 | 63.8k | size_t new_len = smart_str_alloc(dest, 1, persistent); | 125 | 63.8k | ZSTR_VAL(dest->s)[new_len - 1] = ch; | 126 | 63.8k | ZSTR_LEN(dest->s) = new_len; | 127 | 63.8k | } |
Unexecuted instantiation: zend_execute.c:smart_str_appendc_ex zend_inheritance.c:smart_str_appendc_ex Line | Count | Source | 123 | 3.22k | static zend_always_inline void smart_str_appendc_ex(smart_str *dest, char ch, bool persistent) { | 124 | 3.22k | size_t new_len = smart_str_alloc(dest, 1, persistent); | 125 | 3.22k | ZSTR_VAL(dest->s)[new_len - 1] = ch; | 126 | 3.22k | ZSTR_LEN(dest->s) = new_len; | 127 | 3.22k | } |
Unexecuted instantiation: zend_ini.c:smart_str_appendc_ex zend_smart_str.c:smart_str_appendc_ex Line | Count | Source | 123 | 28.2k | static zend_always_inline void smart_str_appendc_ex(smart_str *dest, char ch, bool persistent) { | 124 | 28.2k | size_t new_len = smart_str_alloc(dest, 1, persistent); | 125 | 28.2k | ZSTR_VAL(dest->s)[new_len - 1] = ch; | 126 | 28.2k | ZSTR_LEN(dest->s) = new_len; | 127 | 28.2k | } |
zend.c:smart_str_appendc_ex Line | Count | Source | 123 | 25.5k | static zend_always_inline void smart_str_appendc_ex(smart_str *dest, char ch, bool persistent) { | 124 | 25.5k | size_t new_len = smart_str_alloc(dest, 1, persistent); | 125 | 25.5k | ZSTR_VAL(dest->s)[new_len - 1] = ch; | 126 | 25.5k | ZSTR_LEN(dest->s) = new_len; | 127 | 25.5k | } |
|
128 | | |
129 | 2.02M | static zend_always_inline void smart_str_appendl_ex(smart_str *dest, const char *str, size_t len, bool persistent) { |
130 | 2.02M | size_t new_len = smart_str_alloc(dest, len, persistent); |
131 | 2.02M | memcpy(ZSTR_VAL(dest->s) + ZSTR_LEN(dest->s), str, len); |
132 | 2.02M | ZSTR_LEN(dest->s) = new_len; |
133 | 2.02M | } php_date.c:smart_str_appendl_ex Line | Count | Source | 129 | 272k | static zend_always_inline void smart_str_appendl_ex(smart_str *dest, const char *str, size_t len, bool persistent) { | 130 | 272k | size_t new_len = smart_str_alloc(dest, len, persistent); | 131 | 272k | memcpy(ZSTR_VAL(dest->s) + ZSTR_LEN(dest->s), str, len); | 132 | 272k | ZSTR_LEN(dest->s) = new_len; | 133 | 272k | } |
Unexecuted instantiation: php_pcre.c:smart_str_appendl_ex Unexecuted instantiation: hash.c:smart_str_appendl_ex json_encoder.c:smart_str_appendl_ex Line | Count | Source | 129 | 1.16k | static zend_always_inline void smart_str_appendl_ex(smart_str *dest, const char *str, size_t len, bool persistent) { | 130 | 1.16k | size_t new_len = smart_str_alloc(dest, len, persistent); | 131 | 1.16k | memcpy(ZSTR_VAL(dest->s) + ZSTR_LEN(dest->s), str, len); | 132 | 1.16k | ZSTR_LEN(dest->s) = new_len; | 133 | 1.16k | } |
Unexecuted instantiation: json.c:smart_str_appendl_ex Unexecuted instantiation: zend_jit.c:smart_str_appendl_ex php_reflection.c:smart_str_appendl_ex Line | Count | Source | 129 | 2.21k | static zend_always_inline void smart_str_appendl_ex(smart_str *dest, const char *str, size_t len, bool persistent) { | 130 | 2.21k | size_t new_len = smart_str_alloc(dest, len, persistent); | 131 | 2.21k | memcpy(ZSTR_VAL(dest->s) + ZSTR_LEN(dest->s), str, len); | 132 | 2.21k | ZSTR_LEN(dest->s) = new_len; | 133 | 2.21k | } |
Unexecuted instantiation: spl_array.c:smart_str_appendl_ex Unexecuted instantiation: spl_dllist.c:smart_str_appendl_ex Unexecuted instantiation: spl_iterators.c:smart_str_appendl_ex Unexecuted instantiation: spl_observer.c:smart_str_appendl_ex Unexecuted instantiation: array.c:smart_str_appendl_ex Unexecuted instantiation: basic_functions.c:smart_str_appendl_ex Unexecuted instantiation: file.c:smart_str_appendl_ex Unexecuted instantiation: filters.c:smart_str_appendl_ex Unexecuted instantiation: head.c:smart_str_appendl_ex Unexecuted instantiation: http_fopen_wrapper.c:smart_str_appendl_ex Unexecuted instantiation: http.c:smart_str_appendl_ex Unexecuted instantiation: mail.c:smart_str_appendl_ex Unexecuted instantiation: proc_open.c:smart_str_appendl_ex Unexecuted instantiation: string.c:smart_str_appendl_ex Unexecuted instantiation: url_scanner_ex.c:smart_str_appendl_ex Unexecuted instantiation: url.c:smart_str_appendl_ex var.c:smart_str_appendl_ex Line | Count | Source | 129 | 16.2k | static zend_always_inline void smart_str_appendl_ex(smart_str *dest, const char *str, size_t len, bool persistent) { | 130 | 16.2k | size_t new_len = smart_str_alloc(dest, len, persistent); | 131 | 16.2k | memcpy(ZSTR_VAL(dest->s) + ZSTR_LEN(dest->s), str, len); | 132 | 16.2k | ZSTR_LEN(dest->s) = new_len; | 133 | 16.2k | } |
Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_appendl_ex Unexecuted instantiation: uri_parser_whatwg.c:smart_str_appendl_ex fopen_wrappers.c:smart_str_appendl_ex Line | Count | Source | 129 | 15 | static zend_always_inline void smart_str_appendl_ex(smart_str *dest, const char *str, size_t len, bool persistent) { | 130 | 15 | size_t new_len = smart_str_alloc(dest, len, persistent); | 131 | 15 | memcpy(ZSTR_VAL(dest->s) + ZSTR_LEN(dest->s), str, len); | 132 | 15 | ZSTR_LEN(dest->s) = new_len; | 133 | 15 | } |
Unexecuted instantiation: php_variables.c:smart_str_appendl_ex spprintf.c:smart_str_appendl_ex Line | Count | Source | 129 | 1.52M | static zend_always_inline void smart_str_appendl_ex(smart_str *dest, const char *str, size_t len, bool persistent) { | 130 | 1.52M | size_t new_len = smart_str_alloc(dest, len, persistent); | 131 | 1.52M | memcpy(ZSTR_VAL(dest->s) + ZSTR_LEN(dest->s), str, len); | 132 | 1.52M | ZSTR_LEN(dest->s) = new_len; | 133 | 1.52M | } |
Unexecuted instantiation: zend_dump.c:smart_str_appendl_ex zend_ast.c:smart_str_appendl_ex Line | Count | Source | 129 | 65.1k | static zend_always_inline void smart_str_appendl_ex(smart_str *dest, const char *str, size_t len, bool persistent) { | 130 | 65.1k | size_t new_len = smart_str_alloc(dest, len, persistent); | 131 | 65.1k | memcpy(ZSTR_VAL(dest->s) + ZSTR_LEN(dest->s), str, len); | 132 | 65.1k | ZSTR_LEN(dest->s) = new_len; | 133 | 65.1k | } |
zend_attributes.c:smart_str_appendl_ex Line | Count | Source | 129 | 168 | static zend_always_inline void smart_str_appendl_ex(smart_str *dest, const char *str, size_t len, bool persistent) { | 130 | 168 | size_t new_len = smart_str_alloc(dest, len, persistent); | 131 | 168 | memcpy(ZSTR_VAL(dest->s) + ZSTR_LEN(dest->s), str, len); | 132 | 168 | ZSTR_LEN(dest->s) = new_len; | 133 | 168 | } |
Unexecuted instantiation: zend_builtin_functions.c:smart_str_appendl_ex zend_exceptions.c:smart_str_appendl_ex Line | Count | Source | 129 | 119k | static zend_always_inline void smart_str_appendl_ex(smart_str *dest, const char *str, size_t len, bool persistent) { | 130 | 119k | size_t new_len = smart_str_alloc(dest, len, persistent); | 131 | 119k | memcpy(ZSTR_VAL(dest->s) + ZSTR_LEN(dest->s), str, len); | 132 | 119k | ZSTR_LEN(dest->s) = new_len; | 133 | 119k | } |
zend_execute.c:smart_str_appendl_ex Line | Count | Source | 129 | 18 | static zend_always_inline void smart_str_appendl_ex(smart_str *dest, const char *str, size_t len, bool persistent) { | 130 | 18 | size_t new_len = smart_str_alloc(dest, len, persistent); | 131 | 18 | memcpy(ZSTR_VAL(dest->s) + ZSTR_LEN(dest->s), str, len); | 132 | 18 | ZSTR_LEN(dest->s) = new_len; | 133 | 18 | } |
zend_inheritance.c:smart_str_appendl_ex Line | Count | Source | 129 | 5.80k | static zend_always_inline void smart_str_appendl_ex(smart_str *dest, const char *str, size_t len, bool persistent) { | 130 | 5.80k | size_t new_len = smart_str_alloc(dest, len, persistent); | 131 | 5.80k | memcpy(ZSTR_VAL(dest->s) + ZSTR_LEN(dest->s), str, len); | 132 | 5.80k | ZSTR_LEN(dest->s) = new_len; | 133 | 5.80k | } |
Unexecuted instantiation: zend_ini.c:smart_str_appendl_ex zend_smart_str.c:smart_str_appendl_ex Line | Count | Source | 129 | 3.24k | static zend_always_inline void smart_str_appendl_ex(smart_str *dest, const char *str, size_t len, bool persistent) { | 130 | 3.24k | size_t new_len = smart_str_alloc(dest, len, persistent); | 131 | 3.24k | memcpy(ZSTR_VAL(dest->s) + ZSTR_LEN(dest->s), str, len); | 132 | 3.24k | ZSTR_LEN(dest->s) = new_len; | 133 | 3.24k | } |
zend.c:smart_str_appendl_ex Line | Count | Source | 129 | 12.3k | static zend_always_inline void smart_str_appendl_ex(smart_str *dest, const char *str, size_t len, bool persistent) { | 130 | 12.3k | size_t new_len = smart_str_alloc(dest, len, persistent); | 131 | 12.3k | memcpy(ZSTR_VAL(dest->s) + ZSTR_LEN(dest->s), str, len); | 132 | 12.3k | ZSTR_LEN(dest->s) = new_len; | 133 | 12.3k | } |
|
134 | | |
135 | 50.0k | static zend_always_inline void smart_str_append_ex(smart_str *dest, const zend_string *src, bool persistent) { |
136 | 50.0k | smart_str_appendl_ex(dest, ZSTR_VAL(src), ZSTR_LEN(src), persistent); |
137 | 50.0k | } Unexecuted instantiation: php_date.c:smart_str_append_ex Unexecuted instantiation: php_pcre.c:smart_str_append_ex Unexecuted instantiation: hash.c:smart_str_append_ex Unexecuted instantiation: json_encoder.c:smart_str_append_ex Unexecuted instantiation: json.c:smart_str_append_ex Unexecuted instantiation: zend_jit.c:smart_str_append_ex php_reflection.c:smart_str_append_ex Line | Count | Source | 135 | 435 | static zend_always_inline void smart_str_append_ex(smart_str *dest, const zend_string *src, bool persistent) { | 136 | 435 | smart_str_appendl_ex(dest, ZSTR_VAL(src), ZSTR_LEN(src), persistent); | 137 | 435 | } |
Unexecuted instantiation: spl_array.c:smart_str_append_ex Unexecuted instantiation: spl_dllist.c:smart_str_append_ex Unexecuted instantiation: spl_iterators.c:smart_str_append_ex Unexecuted instantiation: spl_observer.c:smart_str_append_ex Unexecuted instantiation: array.c:smart_str_append_ex Unexecuted instantiation: basic_functions.c:smart_str_append_ex Unexecuted instantiation: file.c:smart_str_append_ex Unexecuted instantiation: filters.c:smart_str_append_ex Unexecuted instantiation: head.c:smart_str_append_ex Unexecuted instantiation: http_fopen_wrapper.c:smart_str_append_ex Unexecuted instantiation: http.c:smart_str_append_ex Unexecuted instantiation: mail.c:smart_str_append_ex Unexecuted instantiation: proc_open.c:smart_str_append_ex Unexecuted instantiation: string.c:smart_str_append_ex Unexecuted instantiation: url_scanner_ex.c:smart_str_append_ex Unexecuted instantiation: url.c:smart_str_append_ex var.c:smart_str_append_ex Line | Count | Source | 135 | 660 | static zend_always_inline void smart_str_append_ex(smart_str *dest, const zend_string *src, bool persistent) { | 136 | 660 | smart_str_appendl_ex(dest, ZSTR_VAL(src), ZSTR_LEN(src), persistent); | 137 | 660 | } |
Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_append_ex Unexecuted instantiation: uri_parser_whatwg.c:smart_str_append_ex Unexecuted instantiation: fopen_wrappers.c:smart_str_append_ex Unexecuted instantiation: php_variables.c:smart_str_append_ex Unexecuted instantiation: spprintf.c:smart_str_append_ex Unexecuted instantiation: zend_dump.c:smart_str_append_ex zend_ast.c:smart_str_append_ex Line | Count | Source | 135 | 30.5k | static zend_always_inline void smart_str_append_ex(smart_str *dest, const zend_string *src, bool persistent) { | 136 | 30.5k | smart_str_appendl_ex(dest, ZSTR_VAL(src), ZSTR_LEN(src), persistent); | 137 | 30.5k | } |
Unexecuted instantiation: zend_attributes.c:smart_str_append_ex Unexecuted instantiation: zend_builtin_functions.c:smart_str_append_ex zend_exceptions.c:smart_str_append_ex Line | Count | Source | 135 | 14.3k | static zend_always_inline void smart_str_append_ex(smart_str *dest, const zend_string *src, bool persistent) { | 136 | 14.3k | smart_str_appendl_ex(dest, ZSTR_VAL(src), ZSTR_LEN(src), persistent); | 137 | 14.3k | } |
Unexecuted instantiation: zend_execute.c:smart_str_append_ex zend_inheritance.c:smart_str_append_ex Line | Count | Source | 135 | 2.09k | static zend_always_inline void smart_str_append_ex(smart_str *dest, const zend_string *src, bool persistent) { | 136 | 2.09k | smart_str_appendl_ex(dest, ZSTR_VAL(src), ZSTR_LEN(src), persistent); | 137 | 2.09k | } |
Unexecuted instantiation: zend_ini.c:smart_str_append_ex zend_smart_str.c:smart_str_append_ex Line | Count | Source | 135 | 6 | static zend_always_inline void smart_str_append_ex(smart_str *dest, const zend_string *src, bool persistent) { | 136 | 6 | smart_str_appendl_ex(dest, ZSTR_VAL(src), ZSTR_LEN(src), persistent); | 137 | 6 | } |
zend.c:smart_str_append_ex Line | Count | Source | 135 | 1.97k | static zend_always_inline void smart_str_append_ex(smart_str *dest, const zend_string *src, bool persistent) { | 136 | 1.97k | smart_str_appendl_ex(dest, ZSTR_VAL(src), ZSTR_LEN(src), persistent); | 137 | 1.97k | } |
|
138 | | |
139 | 90 | static zend_always_inline void smart_str_append_smart_str_ex(smart_str *dest, const smart_str *src, bool persistent) { |
140 | 90 | if (src->s && ZSTR_LEN(src->s)) { |
141 | 24 | smart_str_append_ex(dest, src->s, persistent); |
142 | 24 | } |
143 | 90 | } Unexecuted instantiation: php_date.c:smart_str_append_smart_str_ex Unexecuted instantiation: php_pcre.c:smart_str_append_smart_str_ex Unexecuted instantiation: hash.c:smart_str_append_smart_str_ex Unexecuted instantiation: json_encoder.c:smart_str_append_smart_str_ex Unexecuted instantiation: json.c:smart_str_append_smart_str_ex Unexecuted instantiation: zend_jit.c:smart_str_append_smart_str_ex php_reflection.c:smart_str_append_smart_str_ex Line | Count | Source | 139 | 90 | static zend_always_inline void smart_str_append_smart_str_ex(smart_str *dest, const smart_str *src, bool persistent) { | 140 | 90 | if (src->s && ZSTR_LEN(src->s)) { | 141 | 24 | smart_str_append_ex(dest, src->s, persistent); | 142 | 24 | } | 143 | 90 | } |
Unexecuted instantiation: spl_array.c:smart_str_append_smart_str_ex Unexecuted instantiation: spl_dllist.c:smart_str_append_smart_str_ex Unexecuted instantiation: spl_iterators.c:smart_str_append_smart_str_ex Unexecuted instantiation: spl_observer.c:smart_str_append_smart_str_ex Unexecuted instantiation: array.c:smart_str_append_smart_str_ex Unexecuted instantiation: basic_functions.c:smart_str_append_smart_str_ex Unexecuted instantiation: file.c:smart_str_append_smart_str_ex Unexecuted instantiation: filters.c:smart_str_append_smart_str_ex Unexecuted instantiation: head.c:smart_str_append_smart_str_ex Unexecuted instantiation: http_fopen_wrapper.c:smart_str_append_smart_str_ex Unexecuted instantiation: http.c:smart_str_append_smart_str_ex Unexecuted instantiation: mail.c:smart_str_append_smart_str_ex Unexecuted instantiation: proc_open.c:smart_str_append_smart_str_ex Unexecuted instantiation: string.c:smart_str_append_smart_str_ex Unexecuted instantiation: url_scanner_ex.c:smart_str_append_smart_str_ex Unexecuted instantiation: url.c:smart_str_append_smart_str_ex Unexecuted instantiation: var.c:smart_str_append_smart_str_ex Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_append_smart_str_ex Unexecuted instantiation: uri_parser_whatwg.c:smart_str_append_smart_str_ex Unexecuted instantiation: fopen_wrappers.c:smart_str_append_smart_str_ex Unexecuted instantiation: php_variables.c:smart_str_append_smart_str_ex Unexecuted instantiation: spprintf.c:smart_str_append_smart_str_ex Unexecuted instantiation: zend_dump.c:smart_str_append_smart_str_ex Unexecuted instantiation: zend_ast.c:smart_str_append_smart_str_ex Unexecuted instantiation: zend_attributes.c:smart_str_append_smart_str_ex Unexecuted instantiation: zend_builtin_functions.c:smart_str_append_smart_str_ex Unexecuted instantiation: zend_exceptions.c:smart_str_append_smart_str_ex Unexecuted instantiation: zend_execute.c:smart_str_append_smart_str_ex Unexecuted instantiation: zend_inheritance.c:smart_str_append_smart_str_ex Unexecuted instantiation: zend_ini.c:smart_str_append_smart_str_ex Unexecuted instantiation: zend_smart_str.c:smart_str_append_smart_str_ex Unexecuted instantiation: zend.c:smart_str_append_smart_str_ex |
144 | | |
145 | 39.0k | static zend_always_inline void smart_str_append_long_ex(smart_str *dest, zend_long num, bool persistent) { |
146 | 39.0k | char buf[32]; |
147 | 39.0k | char *result = zend_print_long_to_buf(buf + sizeof(buf) - 1, num); |
148 | 39.0k | smart_str_appendl_ex(dest, result, buf + sizeof(buf) - 1 - result, persistent); |
149 | 39.0k | } Unexecuted instantiation: php_date.c:smart_str_append_long_ex Unexecuted instantiation: php_pcre.c:smart_str_append_long_ex Unexecuted instantiation: hash.c:smart_str_append_long_ex json_encoder.c:smart_str_append_long_ex Line | Count | Source | 145 | 474 | static zend_always_inline void smart_str_append_long_ex(smart_str *dest, zend_long num, bool persistent) { | 146 | 474 | char buf[32]; | 147 | 474 | char *result = zend_print_long_to_buf(buf + sizeof(buf) - 1, num); | 148 | 474 | smart_str_appendl_ex(dest, result, buf + sizeof(buf) - 1 - result, persistent); | 149 | 474 | } |
Unexecuted instantiation: json.c:smart_str_append_long_ex Unexecuted instantiation: zend_jit.c:smart_str_append_long_ex Unexecuted instantiation: php_reflection.c:smart_str_append_long_ex Unexecuted instantiation: spl_array.c:smart_str_append_long_ex Unexecuted instantiation: spl_dllist.c:smart_str_append_long_ex Unexecuted instantiation: spl_iterators.c:smart_str_append_long_ex Unexecuted instantiation: spl_observer.c:smart_str_append_long_ex Unexecuted instantiation: array.c:smart_str_append_long_ex Unexecuted instantiation: basic_functions.c:smart_str_append_long_ex Unexecuted instantiation: file.c:smart_str_append_long_ex Unexecuted instantiation: filters.c:smart_str_append_long_ex Unexecuted instantiation: head.c:smart_str_append_long_ex Unexecuted instantiation: http_fopen_wrapper.c:smart_str_append_long_ex Unexecuted instantiation: http.c:smart_str_append_long_ex Unexecuted instantiation: mail.c:smart_str_append_long_ex Unexecuted instantiation: proc_open.c:smart_str_append_long_ex Unexecuted instantiation: string.c:smart_str_append_long_ex Unexecuted instantiation: url_scanner_ex.c:smart_str_append_long_ex Unexecuted instantiation: url.c:smart_str_append_long_ex var.c:smart_str_append_long_ex Line | Count | Source | 145 | 901 | static zend_always_inline void smart_str_append_long_ex(smart_str *dest, zend_long num, bool persistent) { | 146 | 901 | char buf[32]; | 147 | 901 | char *result = zend_print_long_to_buf(buf + sizeof(buf) - 1, num); | 148 | 901 | smart_str_appendl_ex(dest, result, buf + sizeof(buf) - 1 - result, persistent); | 149 | 901 | } |
Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_append_long_ex Unexecuted instantiation: uri_parser_whatwg.c:smart_str_append_long_ex Unexecuted instantiation: fopen_wrappers.c:smart_str_append_long_ex Unexecuted instantiation: php_variables.c:smart_str_append_long_ex Unexecuted instantiation: spprintf.c:smart_str_append_long_ex Unexecuted instantiation: zend_dump.c:smart_str_append_long_ex zend_ast.c:smart_str_append_long_ex Line | Count | Source | 145 | 641 | static zend_always_inline void smart_str_append_long_ex(smart_str *dest, zend_long num, bool persistent) { | 146 | 641 | char buf[32]; | 147 | 641 | char *result = zend_print_long_to_buf(buf + sizeof(buf) - 1, num); | 148 | 641 | smart_str_appendl_ex(dest, result, buf + sizeof(buf) - 1 - result, persistent); | 149 | 641 | } |
Unexecuted instantiation: zend_attributes.c:smart_str_append_long_ex Unexecuted instantiation: zend_builtin_functions.c:smart_str_append_long_ex zend_exceptions.c:smart_str_append_long_ex Line | Count | Source | 145 | 34.6k | static zend_always_inline void smart_str_append_long_ex(smart_str *dest, zend_long num, bool persistent) { | 146 | 34.6k | char buf[32]; | 147 | 34.6k | char *result = zend_print_long_to_buf(buf + sizeof(buf) - 1, num); | 148 | 34.6k | smart_str_appendl_ex(dest, result, buf + sizeof(buf) - 1 - result, persistent); | 149 | 34.6k | } |
Unexecuted instantiation: zend_execute.c:smart_str_append_long_ex Unexecuted instantiation: zend_inheritance.c:smart_str_append_long_ex Unexecuted instantiation: zend_ini.c:smart_str_append_long_ex zend_smart_str.c:smart_str_append_long_ex Line | Count | Source | 145 | 132 | static zend_always_inline void smart_str_append_long_ex(smart_str *dest, zend_long num, bool persistent) { | 146 | 132 | char buf[32]; | 147 | 132 | char *result = zend_print_long_to_buf(buf + sizeof(buf) - 1, num); | 148 | 132 | smart_str_appendl_ex(dest, result, buf + sizeof(buf) - 1 - result, persistent); | 149 | 132 | } |
zend.c:smart_str_append_long_ex Line | Count | Source | 145 | 2.15k | static zend_always_inline void smart_str_append_long_ex(smart_str *dest, zend_long num, bool persistent) { | 146 | 2.15k | char buf[32]; | 147 | 2.15k | char *result = zend_print_long_to_buf(buf + sizeof(buf) - 1, num); | 148 | 2.15k | smart_str_appendl_ex(dest, result, buf + sizeof(buf) - 1 - result, persistent); | 149 | 2.15k | } |
|
150 | | |
151 | | static zend_always_inline void smart_str_append_long(smart_str *dest, zend_long num) |
152 | 39.0k | { |
153 | 39.0k | smart_str_append_long_ex(dest, num, false); |
154 | 39.0k | } Unexecuted instantiation: php_date.c:smart_str_append_long Unexecuted instantiation: php_pcre.c:smart_str_append_long Unexecuted instantiation: hash.c:smart_str_append_long json_encoder.c:smart_str_append_long Line | Count | Source | 152 | 474 | { | 153 | | smart_str_append_long_ex(dest, num, false); | 154 | 474 | } |
Unexecuted instantiation: json.c:smart_str_append_long Unexecuted instantiation: zend_jit.c:smart_str_append_long Unexecuted instantiation: php_reflection.c:smart_str_append_long Unexecuted instantiation: spl_array.c:smart_str_append_long Unexecuted instantiation: spl_dllist.c:smart_str_append_long Unexecuted instantiation: spl_iterators.c:smart_str_append_long Unexecuted instantiation: spl_observer.c:smart_str_append_long Unexecuted instantiation: array.c:smart_str_append_long Unexecuted instantiation: basic_functions.c:smart_str_append_long Unexecuted instantiation: file.c:smart_str_append_long Unexecuted instantiation: filters.c:smart_str_append_long Unexecuted instantiation: head.c:smart_str_append_long Unexecuted instantiation: http_fopen_wrapper.c:smart_str_append_long Unexecuted instantiation: http.c:smart_str_append_long Unexecuted instantiation: mail.c:smart_str_append_long Unexecuted instantiation: proc_open.c:smart_str_append_long Unexecuted instantiation: string.c:smart_str_append_long Unexecuted instantiation: url_scanner_ex.c:smart_str_append_long Unexecuted instantiation: url.c:smart_str_append_long var.c:smart_str_append_long Line | Count | Source | 152 | 901 | { | 153 | | smart_str_append_long_ex(dest, num, false); | 154 | 901 | } |
Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_append_long Unexecuted instantiation: uri_parser_whatwg.c:smart_str_append_long Unexecuted instantiation: fopen_wrappers.c:smart_str_append_long Unexecuted instantiation: php_variables.c:smart_str_append_long Unexecuted instantiation: spprintf.c:smart_str_append_long Unexecuted instantiation: zend_dump.c:smart_str_append_long zend_ast.c:smart_str_append_long Line | Count | Source | 152 | 641 | { | 153 | | smart_str_append_long_ex(dest, num, false); | 154 | 641 | } |
Unexecuted instantiation: zend_attributes.c:smart_str_append_long Unexecuted instantiation: zend_builtin_functions.c:smart_str_append_long zend_exceptions.c:smart_str_append_long Line | Count | Source | 152 | 34.6k | { | 153 | | smart_str_append_long_ex(dest, num, false); | 154 | 34.6k | } |
Unexecuted instantiation: zend_execute.c:smart_str_append_long Unexecuted instantiation: zend_inheritance.c:smart_str_append_long Unexecuted instantiation: zend_ini.c:smart_str_append_long zend_smart_str.c:smart_str_append_long Line | Count | Source | 152 | 132 | { | 153 | | smart_str_append_long_ex(dest, num, false); | 154 | 132 | } |
zend.c:smart_str_append_long Line | Count | Source | 152 | 2.15k | { | 153 | | smart_str_append_long_ex(dest, num, false); | 154 | 2.15k | } |
|
155 | | |
156 | 4.30k | static zend_always_inline void smart_str_append_unsigned_ex(smart_str *dest, zend_ulong num, bool persistent) { |
157 | 4.30k | char buf[32]; |
158 | 4.30k | char *result = zend_print_ulong_to_buf(buf + sizeof(buf) - 1, num); |
159 | 4.30k | smart_str_appendl_ex(dest, result, buf + sizeof(buf) - 1 - result, persistent); |
160 | 4.30k | } Unexecuted instantiation: php_date.c:smart_str_append_unsigned_ex Unexecuted instantiation: php_pcre.c:smart_str_append_unsigned_ex Unexecuted instantiation: hash.c:smart_str_append_unsigned_ex Unexecuted instantiation: json_encoder.c:smart_str_append_unsigned_ex Unexecuted instantiation: json.c:smart_str_append_unsigned_ex Unexecuted instantiation: zend_jit.c:smart_str_append_unsigned_ex Unexecuted instantiation: php_reflection.c:smart_str_append_unsigned_ex Unexecuted instantiation: spl_array.c:smart_str_append_unsigned_ex Unexecuted instantiation: spl_dllist.c:smart_str_append_unsigned_ex Unexecuted instantiation: spl_iterators.c:smart_str_append_unsigned_ex Unexecuted instantiation: spl_observer.c:smart_str_append_unsigned_ex Unexecuted instantiation: array.c:smart_str_append_unsigned_ex Unexecuted instantiation: basic_functions.c:smart_str_append_unsigned_ex Unexecuted instantiation: file.c:smart_str_append_unsigned_ex Unexecuted instantiation: filters.c:smart_str_append_unsigned_ex Unexecuted instantiation: head.c:smart_str_append_unsigned_ex Unexecuted instantiation: http_fopen_wrapper.c:smart_str_append_unsigned_ex Unexecuted instantiation: http.c:smart_str_append_unsigned_ex Unexecuted instantiation: mail.c:smart_str_append_unsigned_ex Unexecuted instantiation: proc_open.c:smart_str_append_unsigned_ex Unexecuted instantiation: string.c:smart_str_append_unsigned_ex Unexecuted instantiation: url_scanner_ex.c:smart_str_append_unsigned_ex Unexecuted instantiation: url.c:smart_str_append_unsigned_ex var.c:smart_str_append_unsigned_ex Line | Count | Source | 156 | 4.30k | static zend_always_inline void smart_str_append_unsigned_ex(smart_str *dest, zend_ulong num, bool persistent) { | 157 | 4.30k | char buf[32]; | 158 | 4.30k | char *result = zend_print_ulong_to_buf(buf + sizeof(buf) - 1, num); | 159 | 4.30k | smart_str_appendl_ex(dest, result, buf + sizeof(buf) - 1 - result, persistent); | 160 | 4.30k | } |
Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_append_unsigned_ex Unexecuted instantiation: uri_parser_whatwg.c:smart_str_append_unsigned_ex Unexecuted instantiation: fopen_wrappers.c:smart_str_append_unsigned_ex Unexecuted instantiation: php_variables.c:smart_str_append_unsigned_ex Unexecuted instantiation: spprintf.c:smart_str_append_unsigned_ex Unexecuted instantiation: zend_dump.c:smart_str_append_unsigned_ex Unexecuted instantiation: zend_ast.c:smart_str_append_unsigned_ex Unexecuted instantiation: zend_attributes.c:smart_str_append_unsigned_ex Unexecuted instantiation: zend_builtin_functions.c:smart_str_append_unsigned_ex Unexecuted instantiation: zend_exceptions.c:smart_str_append_unsigned_ex Unexecuted instantiation: zend_execute.c:smart_str_append_unsigned_ex Unexecuted instantiation: zend_inheritance.c:smart_str_append_unsigned_ex Unexecuted instantiation: zend_ini.c:smart_str_append_unsigned_ex Unexecuted instantiation: zend_smart_str.c:smart_str_append_unsigned_ex Unexecuted instantiation: zend.c:smart_str_append_unsigned_ex |
161 | | |
162 | | static zend_always_inline void smart_str_append_unsigned(smart_str *dest, zend_ulong num) |
163 | 4.30k | { |
164 | 4.30k | smart_str_append_unsigned_ex(dest, num, false); |
165 | 4.30k | } Unexecuted instantiation: php_date.c:smart_str_append_unsigned Unexecuted instantiation: php_pcre.c:smart_str_append_unsigned Unexecuted instantiation: hash.c:smart_str_append_unsigned Unexecuted instantiation: json_encoder.c:smart_str_append_unsigned Unexecuted instantiation: json.c:smart_str_append_unsigned Unexecuted instantiation: zend_jit.c:smart_str_append_unsigned Unexecuted instantiation: php_reflection.c:smart_str_append_unsigned Unexecuted instantiation: spl_array.c:smart_str_append_unsigned Unexecuted instantiation: spl_dllist.c:smart_str_append_unsigned Unexecuted instantiation: spl_iterators.c:smart_str_append_unsigned Unexecuted instantiation: spl_observer.c:smart_str_append_unsigned Unexecuted instantiation: array.c:smart_str_append_unsigned Unexecuted instantiation: basic_functions.c:smart_str_append_unsigned Unexecuted instantiation: file.c:smart_str_append_unsigned Unexecuted instantiation: filters.c:smart_str_append_unsigned Unexecuted instantiation: head.c:smart_str_append_unsigned Unexecuted instantiation: http_fopen_wrapper.c:smart_str_append_unsigned Unexecuted instantiation: http.c:smart_str_append_unsigned Unexecuted instantiation: mail.c:smart_str_append_unsigned Unexecuted instantiation: proc_open.c:smart_str_append_unsigned Unexecuted instantiation: string.c:smart_str_append_unsigned Unexecuted instantiation: url_scanner_ex.c:smart_str_append_unsigned Unexecuted instantiation: url.c:smart_str_append_unsigned var.c:smart_str_append_unsigned Line | Count | Source | 163 | 4.30k | { | 164 | | smart_str_append_unsigned_ex(dest, num, false); | 165 | 4.30k | } |
Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_append_unsigned Unexecuted instantiation: uri_parser_whatwg.c:smart_str_append_unsigned Unexecuted instantiation: fopen_wrappers.c:smart_str_append_unsigned Unexecuted instantiation: php_variables.c:smart_str_append_unsigned Unexecuted instantiation: spprintf.c:smart_str_append_unsigned Unexecuted instantiation: zend_dump.c:smart_str_append_unsigned Unexecuted instantiation: zend_ast.c:smart_str_append_unsigned Unexecuted instantiation: zend_attributes.c:smart_str_append_unsigned Unexecuted instantiation: zend_builtin_functions.c:smart_str_append_unsigned Unexecuted instantiation: zend_exceptions.c:smart_str_append_unsigned Unexecuted instantiation: zend_execute.c:smart_str_append_unsigned Unexecuted instantiation: zend_inheritance.c:smart_str_append_unsigned Unexecuted instantiation: zend_ini.c:smart_str_append_unsigned Unexecuted instantiation: zend_smart_str.c:smart_str_append_unsigned Unexecuted instantiation: zend.c:smart_str_append_unsigned |
166 | | |
167 | | static zend_always_inline void smart_str_appendl(smart_str *dest, const char *src, size_t length) |
168 | 1.81M | { |
169 | 1.81M | smart_str_appendl_ex(dest, src, length, false); |
170 | 1.81M | } php_date.c:smart_str_appendl Line | Count | Source | 168 | 272k | { | 169 | | smart_str_appendl_ex(dest, src, length, false); | 170 | 272k | } |
Unexecuted instantiation: php_pcre.c:smart_str_appendl Unexecuted instantiation: hash.c:smart_str_appendl json_encoder.c:smart_str_appendl Line | Count | Source | 168 | 691 | { | 169 | | smart_str_appendl_ex(dest, src, length, false); | 170 | 691 | } |
Unexecuted instantiation: json.c:smart_str_appendl Unexecuted instantiation: zend_jit.c:smart_str_appendl php_reflection.c:smart_str_appendl Line | Count | Source | 168 | 114 | { | 169 | | smart_str_appendl_ex(dest, src, length, false); | 170 | 114 | } |
Unexecuted instantiation: spl_array.c:smart_str_appendl Unexecuted instantiation: spl_dllist.c:smart_str_appendl Unexecuted instantiation: spl_iterators.c:smart_str_appendl Unexecuted instantiation: spl_observer.c:smart_str_appendl Unexecuted instantiation: array.c:smart_str_appendl Unexecuted instantiation: basic_functions.c:smart_str_appendl Unexecuted instantiation: file.c:smart_str_appendl Unexecuted instantiation: filters.c:smart_str_appendl Unexecuted instantiation: head.c:smart_str_appendl Unexecuted instantiation: http_fopen_wrapper.c:smart_str_appendl Unexecuted instantiation: http.c:smart_str_appendl Unexecuted instantiation: mail.c:smart_str_appendl Unexecuted instantiation: proc_open.c:smart_str_appendl Unexecuted instantiation: string.c:smart_str_appendl Unexecuted instantiation: url_scanner_ex.c:smart_str_appendl Unexecuted instantiation: url.c:smart_str_appendl Line | Count | Source | 168 | 10.3k | { | 169 | | smart_str_appendl_ex(dest, src, length, false); | 170 | 10.3k | } |
Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_appendl Unexecuted instantiation: uri_parser_whatwg.c:smart_str_appendl Unexecuted instantiation: fopen_wrappers.c:smart_str_appendl Unexecuted instantiation: php_variables.c:smart_str_appendl spprintf.c:smart_str_appendl Line | Count | Source | 168 | 1.52M | { | 169 | | smart_str_appendl_ex(dest, src, length, false); | 170 | 1.52M | } |
Unexecuted instantiation: zend_dump.c:smart_str_appendl zend_ast.c:smart_str_appendl Line | Count | Source | 168 | 188 | { | 169 | | smart_str_appendl_ex(dest, src, length, false); | 170 | 188 | } |
Unexecuted instantiation: zend_attributes.c:smart_str_appendl Unexecuted instantiation: zend_builtin_functions.c:smart_str_appendl Unexecuted instantiation: zend_exceptions.c:smart_str_appendl zend_execute.c:smart_str_appendl Line | Count | Source | 168 | 9 | { | 169 | | smart_str_appendl_ex(dest, src, length, false); | 170 | 9 | } |
zend_inheritance.c:smart_str_appendl Line | Count | Source | 168 | 1.53k | { | 169 | | smart_str_appendl_ex(dest, src, length, false); | 170 | 1.53k | } |
Unexecuted instantiation: zend_ini.c:smart_str_appendl zend_smart_str.c:smart_str_appendl Line | Count | Source | 168 | 3.06k | { | 169 | | smart_str_appendl_ex(dest, src, length, false); | 170 | 3.06k | } |
Line | Count | Source | 168 | 135 | { | 169 | | smart_str_appendl_ex(dest, src, length, false); | 170 | 135 | } |
|
171 | | static zend_always_inline void smart_str_appends_ex(smart_str *dest, const char *src, bool persistent) |
172 | 0 | { |
173 | 0 | smart_str_appendl_ex(dest, src, strlen(src), persistent); |
174 | 0 | } Unexecuted instantiation: php_date.c:smart_str_appends_ex Unexecuted instantiation: php_pcre.c:smart_str_appends_ex Unexecuted instantiation: hash.c:smart_str_appends_ex Unexecuted instantiation: json_encoder.c:smart_str_appends_ex Unexecuted instantiation: json.c:smart_str_appends_ex Unexecuted instantiation: zend_jit.c:smart_str_appends_ex Unexecuted instantiation: php_reflection.c:smart_str_appends_ex Unexecuted instantiation: spl_array.c:smart_str_appends_ex Unexecuted instantiation: spl_dllist.c:smart_str_appends_ex Unexecuted instantiation: spl_iterators.c:smart_str_appends_ex Unexecuted instantiation: spl_observer.c:smart_str_appends_ex Unexecuted instantiation: array.c:smart_str_appends_ex Unexecuted instantiation: basic_functions.c:smart_str_appends_ex Unexecuted instantiation: file.c:smart_str_appends_ex Unexecuted instantiation: filters.c:smart_str_appends_ex Unexecuted instantiation: head.c:smart_str_appends_ex Unexecuted instantiation: http_fopen_wrapper.c:smart_str_appends_ex Unexecuted instantiation: http.c:smart_str_appends_ex Unexecuted instantiation: mail.c:smart_str_appends_ex Unexecuted instantiation: proc_open.c:smart_str_appends_ex Unexecuted instantiation: string.c:smart_str_appends_ex Unexecuted instantiation: url_scanner_ex.c:smart_str_appends_ex Unexecuted instantiation: url.c:smart_str_appends_ex Unexecuted instantiation: var.c:smart_str_appends_ex Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_appends_ex Unexecuted instantiation: uri_parser_whatwg.c:smart_str_appends_ex Unexecuted instantiation: fopen_wrappers.c:smart_str_appends_ex Unexecuted instantiation: php_variables.c:smart_str_appends_ex Unexecuted instantiation: spprintf.c:smart_str_appends_ex Unexecuted instantiation: zend_dump.c:smart_str_appends_ex Unexecuted instantiation: zend_ast.c:smart_str_appends_ex Unexecuted instantiation: zend_attributes.c:smart_str_appends_ex Unexecuted instantiation: zend_builtin_functions.c:smart_str_appends_ex Unexecuted instantiation: zend_exceptions.c:smart_str_appends_ex Unexecuted instantiation: zend_execute.c:smart_str_appends_ex Unexecuted instantiation: zend_inheritance.c:smart_str_appends_ex Unexecuted instantiation: zend_ini.c:smart_str_appends_ex Unexecuted instantiation: zend_smart_str.c:smart_str_appends_ex Unexecuted instantiation: zend.c:smart_str_appends_ex |
175 | | static zend_always_inline void smart_str_appends(smart_str *dest, const char *src) |
176 | 116k | { |
177 | 116k | smart_str_appendl_ex(dest, src, strlen(src), false); |
178 | 116k | } Unexecuted instantiation: php_date.c:smart_str_appends Unexecuted instantiation: php_pcre.c:smart_str_appends Unexecuted instantiation: hash.c:smart_str_appends Unexecuted instantiation: json_encoder.c:smart_str_appends Unexecuted instantiation: json.c:smart_str_appends Unexecuted instantiation: zend_jit.c:smart_str_appends php_reflection.c:smart_str_appends Line | Count | Source | 176 | 1.66k | { | 177 | | smart_str_appendl_ex(dest, src, strlen(src), false); | 178 | 1.66k | } |
Unexecuted instantiation: spl_array.c:smart_str_appends Unexecuted instantiation: spl_dllist.c:smart_str_appends Unexecuted instantiation: spl_iterators.c:smart_str_appends Unexecuted instantiation: spl_observer.c:smart_str_appends Unexecuted instantiation: array.c:smart_str_appends Unexecuted instantiation: basic_functions.c:smart_str_appends Unexecuted instantiation: file.c:smart_str_appends Unexecuted instantiation: filters.c:smart_str_appends Unexecuted instantiation: head.c:smart_str_appends Unexecuted instantiation: http_fopen_wrapper.c:smart_str_appends Unexecuted instantiation: http.c:smart_str_appends Unexecuted instantiation: mail.c:smart_str_appends Unexecuted instantiation: proc_open.c:smart_str_appends Unexecuted instantiation: string.c:smart_str_appends Unexecuted instantiation: url_scanner_ex.c:smart_str_appends Unexecuted instantiation: url.c:smart_str_appends Unexecuted instantiation: var.c:smart_str_appends Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_appends Unexecuted instantiation: uri_parser_whatwg.c:smart_str_appends fopen_wrappers.c:smart_str_appends Line | Count | Source | 176 | 15 | { | 177 | | smart_str_appendl_ex(dest, src, strlen(src), false); | 178 | 15 | } |
Unexecuted instantiation: php_variables.c:smart_str_appends Unexecuted instantiation: spprintf.c:smart_str_appends Unexecuted instantiation: zend_dump.c:smart_str_appends zend_ast.c:smart_str_appends Line | Count | Source | 176 | 33.8k | { | 177 | | smart_str_appendl_ex(dest, src, strlen(src), false); | 178 | 33.8k | } |
zend_attributes.c:smart_str_appends Line | Count | Source | 176 | 168 | { | 177 | | smart_str_appendl_ex(dest, src, strlen(src), false); | 178 | 168 | } |
Unexecuted instantiation: zend_builtin_functions.c:smart_str_appends zend_exceptions.c:smart_str_appends Line | Count | Source | 176 | 70.6k | { | 177 | | smart_str_appendl_ex(dest, src, strlen(src), false); | 178 | 70.6k | } |
zend_execute.c:smart_str_appends Line | Count | Source | 176 | 9 | { | 177 | | smart_str_appendl_ex(dest, src, strlen(src), false); | 178 | 9 | } |
zend_inheritance.c:smart_str_appends Line | Count | Source | 176 | 2.17k | { | 177 | | smart_str_appendl_ex(dest, src, strlen(src), false); | 178 | 2.17k | } |
Unexecuted instantiation: zend_ini.c:smart_str_appends zend_smart_str.c:smart_str_appends Line | Count | Source | 176 | 41 | { | 177 | | smart_str_appendl_ex(dest, src, strlen(src), false); | 178 | 41 | } |
Line | Count | Source | 176 | 8.13k | { | 177 | | smart_str_appendl_ex(dest, src, strlen(src), false); | 178 | 8.13k | } |
|
179 | | static zend_always_inline void smart_str_append(smart_str *dest, const zend_string *src) |
180 | 50.0k | { |
181 | 50.0k | smart_str_append_ex(dest, src, false); |
182 | 50.0k | } Unexecuted instantiation: php_date.c:smart_str_append Unexecuted instantiation: php_pcre.c:smart_str_append Unexecuted instantiation: hash.c:smart_str_append Unexecuted instantiation: json_encoder.c:smart_str_append Unexecuted instantiation: json.c:smart_str_append Unexecuted instantiation: zend_jit.c:smart_str_append php_reflection.c:smart_str_append Line | Count | Source | 180 | 411 | { | 181 | | smart_str_append_ex(dest, src, false); | 182 | 411 | } |
Unexecuted instantiation: spl_array.c:smart_str_append Unexecuted instantiation: spl_dllist.c:smart_str_append Unexecuted instantiation: spl_iterators.c:smart_str_append Unexecuted instantiation: spl_observer.c:smart_str_append Unexecuted instantiation: array.c:smart_str_append Unexecuted instantiation: basic_functions.c:smart_str_append Unexecuted instantiation: file.c:smart_str_append Unexecuted instantiation: filters.c:smart_str_append Unexecuted instantiation: head.c:smart_str_append Unexecuted instantiation: http_fopen_wrapper.c:smart_str_append Unexecuted instantiation: http.c:smart_str_append Unexecuted instantiation: mail.c:smart_str_append Unexecuted instantiation: proc_open.c:smart_str_append Unexecuted instantiation: string.c:smart_str_append Unexecuted instantiation: url_scanner_ex.c:smart_str_append Unexecuted instantiation: url.c:smart_str_append Line | Count | Source | 180 | 660 | { | 181 | | smart_str_append_ex(dest, src, false); | 182 | 660 | } |
Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_append Unexecuted instantiation: uri_parser_whatwg.c:smart_str_append Unexecuted instantiation: fopen_wrappers.c:smart_str_append Unexecuted instantiation: php_variables.c:smart_str_append Unexecuted instantiation: spprintf.c:smart_str_append Unexecuted instantiation: zend_dump.c:smart_str_append zend_ast.c:smart_str_append Line | Count | Source | 180 | 30.5k | { | 181 | | smart_str_append_ex(dest, src, false); | 182 | 30.5k | } |
Unexecuted instantiation: zend_attributes.c:smart_str_append Unexecuted instantiation: zend_builtin_functions.c:smart_str_append zend_exceptions.c:smart_str_append Line | Count | Source | 180 | 14.3k | { | 181 | | smart_str_append_ex(dest, src, false); | 182 | 14.3k | } |
Unexecuted instantiation: zend_execute.c:smart_str_append zend_inheritance.c:smart_str_append Line | Count | Source | 180 | 2.09k | { | 181 | | smart_str_append_ex(dest, src, false); | 182 | 2.09k | } |
Unexecuted instantiation: zend_ini.c:smart_str_append zend_smart_str.c:smart_str_append Line | Count | Source | 180 | 6 | { | 181 | | smart_str_append_ex(dest, src, false); | 182 | 6 | } |
Line | Count | Source | 180 | 1.97k | { | 181 | | smart_str_append_ex(dest, src, false); | 182 | 1.97k | } |
|
183 | | static zend_always_inline void smart_str_appendc(smart_str *dest, char ch) |
184 | 28.1M | { |
185 | 28.1M | smart_str_appendc_ex(dest, ch, false); |
186 | 28.1M | } Unexecuted instantiation: php_date.c:smart_str_appendc Unexecuted instantiation: php_pcre.c:smart_str_appendc Unexecuted instantiation: hash.c:smart_str_appendc json_encoder.c:smart_str_appendc Line | Count | Source | 184 | 1.99k | { | 185 | | smart_str_appendc_ex(dest, ch, false); | 186 | 1.99k | } |
Unexecuted instantiation: json.c:smart_str_appendc Unexecuted instantiation: zend_jit.c:smart_str_appendc php_reflection.c:smart_str_appendc Line | Count | Source | 184 | 885 | { | 185 | | smart_str_appendc_ex(dest, ch, false); | 186 | 885 | } |
Unexecuted instantiation: spl_array.c:smart_str_appendc Unexecuted instantiation: spl_dllist.c:smart_str_appendc Unexecuted instantiation: spl_iterators.c:smart_str_appendc Unexecuted instantiation: spl_observer.c:smart_str_appendc Unexecuted instantiation: array.c:smart_str_appendc Unexecuted instantiation: basic_functions.c:smart_str_appendc Unexecuted instantiation: file.c:smart_str_appendc Unexecuted instantiation: filters.c:smart_str_appendc Unexecuted instantiation: head.c:smart_str_appendc Unexecuted instantiation: http_fopen_wrapper.c:smart_str_appendc Unexecuted instantiation: http.c:smart_str_appendc Unexecuted instantiation: mail.c:smart_str_appendc Unexecuted instantiation: proc_open.c:smart_str_appendc Unexecuted instantiation: string.c:smart_str_appendc Unexecuted instantiation: url_scanner_ex.c:smart_str_appendc Unexecuted instantiation: url.c:smart_str_appendc Line | Count | Source | 184 | 6.87k | { | 185 | | smart_str_appendc_ex(dest, ch, false); | 186 | 6.87k | } |
Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_appendc Unexecuted instantiation: uri_parser_whatwg.c:smart_str_appendc Unexecuted instantiation: fopen_wrappers.c:smart_str_appendc Unexecuted instantiation: php_variables.c:smart_str_appendc spprintf.c:smart_str_appendc Line | Count | Source | 184 | 27.9M | { | 185 | | smart_str_appendc_ex(dest, ch, false); | 186 | 27.9M | } |
Unexecuted instantiation: zend_dump.c:smart_str_appendc zend_ast.c:smart_str_appendc Line | Count | Source | 184 | 146k | { | 185 | | smart_str_appendc_ex(dest, ch, false); | 186 | 146k | } |
Unexecuted instantiation: zend_attributes.c:smart_str_appendc Unexecuted instantiation: zend_builtin_functions.c:smart_str_appendc zend_exceptions.c:smart_str_appendc Line | Count | Source | 184 | 63.8k | { | 185 | | smart_str_appendc_ex(dest, ch, false); | 186 | 63.8k | } |
Unexecuted instantiation: zend_execute.c:smart_str_appendc zend_inheritance.c:smart_str_appendc Line | Count | Source | 184 | 3.22k | { | 185 | | smart_str_appendc_ex(dest, ch, false); | 186 | 3.22k | } |
Unexecuted instantiation: zend_ini.c:smart_str_appendc zend_smart_str.c:smart_str_appendc Line | Count | Source | 184 | 28.2k | { | 185 | | smart_str_appendc_ex(dest, ch, false); | 186 | 28.2k | } |
Line | Count | Source | 184 | 25.5k | { | 185 | | smart_str_appendc_ex(dest, ch, false); | 186 | 25.5k | } |
|
187 | | static zend_always_inline void smart_str_append_smart_str(smart_str *dest, const smart_str *src) |
188 | 90 | { |
189 | 90 | smart_str_append_smart_str_ex(dest, src, false); |
190 | 90 | } Unexecuted instantiation: php_date.c:smart_str_append_smart_str Unexecuted instantiation: php_pcre.c:smart_str_append_smart_str Unexecuted instantiation: hash.c:smart_str_append_smart_str Unexecuted instantiation: json_encoder.c:smart_str_append_smart_str Unexecuted instantiation: json.c:smart_str_append_smart_str Unexecuted instantiation: zend_jit.c:smart_str_append_smart_str php_reflection.c:smart_str_append_smart_str Line | Count | Source | 188 | 90 | { | 189 | | smart_str_append_smart_str_ex(dest, src, false); | 190 | 90 | } |
Unexecuted instantiation: spl_array.c:smart_str_append_smart_str Unexecuted instantiation: spl_dllist.c:smart_str_append_smart_str Unexecuted instantiation: spl_iterators.c:smart_str_append_smart_str Unexecuted instantiation: spl_observer.c:smart_str_append_smart_str Unexecuted instantiation: array.c:smart_str_append_smart_str Unexecuted instantiation: basic_functions.c:smart_str_append_smart_str Unexecuted instantiation: file.c:smart_str_append_smart_str Unexecuted instantiation: filters.c:smart_str_append_smart_str Unexecuted instantiation: head.c:smart_str_append_smart_str Unexecuted instantiation: http_fopen_wrapper.c:smart_str_append_smart_str Unexecuted instantiation: http.c:smart_str_append_smart_str Unexecuted instantiation: mail.c:smart_str_append_smart_str Unexecuted instantiation: proc_open.c:smart_str_append_smart_str Unexecuted instantiation: string.c:smart_str_append_smart_str Unexecuted instantiation: url_scanner_ex.c:smart_str_append_smart_str Unexecuted instantiation: url.c:smart_str_append_smart_str Unexecuted instantiation: var.c:smart_str_append_smart_str Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_append_smart_str Unexecuted instantiation: uri_parser_whatwg.c:smart_str_append_smart_str Unexecuted instantiation: fopen_wrappers.c:smart_str_append_smart_str Unexecuted instantiation: php_variables.c:smart_str_append_smart_str Unexecuted instantiation: spprintf.c:smart_str_append_smart_str Unexecuted instantiation: zend_dump.c:smart_str_append_smart_str Unexecuted instantiation: zend_ast.c:smart_str_append_smart_str Unexecuted instantiation: zend_attributes.c:smart_str_append_smart_str Unexecuted instantiation: zend_builtin_functions.c:smart_str_append_smart_str Unexecuted instantiation: zend_exceptions.c:smart_str_append_smart_str Unexecuted instantiation: zend_execute.c:smart_str_append_smart_str Unexecuted instantiation: zend_inheritance.c:smart_str_append_smart_str Unexecuted instantiation: zend_ini.c:smart_str_append_smart_str Unexecuted instantiation: zend_smart_str.c:smart_str_append_smart_str Unexecuted instantiation: zend.c:smart_str_append_smart_str |
191 | | |
192 | 0 | static zend_always_inline void smart_str_setl(smart_str *dest, const char *src, size_t len) { |
193 | 0 | smart_str_free(dest); |
194 | 0 | smart_str_appendl(dest, src, len); |
195 | 0 | } Unexecuted instantiation: php_date.c:smart_str_setl Unexecuted instantiation: php_pcre.c:smart_str_setl Unexecuted instantiation: hash.c:smart_str_setl Unexecuted instantiation: json_encoder.c:smart_str_setl Unexecuted instantiation: json.c:smart_str_setl Unexecuted instantiation: zend_jit.c:smart_str_setl Unexecuted instantiation: php_reflection.c:smart_str_setl Unexecuted instantiation: spl_array.c:smart_str_setl Unexecuted instantiation: spl_dllist.c:smart_str_setl Unexecuted instantiation: spl_iterators.c:smart_str_setl Unexecuted instantiation: spl_observer.c:smart_str_setl Unexecuted instantiation: array.c:smart_str_setl Unexecuted instantiation: basic_functions.c:smart_str_setl Unexecuted instantiation: file.c:smart_str_setl Unexecuted instantiation: filters.c:smart_str_setl Unexecuted instantiation: head.c:smart_str_setl Unexecuted instantiation: http_fopen_wrapper.c:smart_str_setl Unexecuted instantiation: http.c:smart_str_setl Unexecuted instantiation: mail.c:smart_str_setl Unexecuted instantiation: proc_open.c:smart_str_setl Unexecuted instantiation: string.c:smart_str_setl Unexecuted instantiation: url_scanner_ex.c:smart_str_setl Unexecuted instantiation: url.c:smart_str_setl Unexecuted instantiation: var.c:smart_str_setl Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_setl Unexecuted instantiation: uri_parser_whatwg.c:smart_str_setl Unexecuted instantiation: fopen_wrappers.c:smart_str_setl Unexecuted instantiation: php_variables.c:smart_str_setl Unexecuted instantiation: spprintf.c:smart_str_setl Unexecuted instantiation: zend_dump.c:smart_str_setl Unexecuted instantiation: zend_ast.c:smart_str_setl Unexecuted instantiation: zend_attributes.c:smart_str_setl Unexecuted instantiation: zend_builtin_functions.c:smart_str_setl Unexecuted instantiation: zend_exceptions.c:smart_str_setl Unexecuted instantiation: zend_execute.c:smart_str_setl Unexecuted instantiation: zend_inheritance.c:smart_str_setl Unexecuted instantiation: zend_ini.c:smart_str_setl Unexecuted instantiation: zend_smart_str.c:smart_str_setl Unexecuted instantiation: zend.c:smart_str_setl |
196 | | |
197 | | static zend_always_inline void smart_str_sets(smart_str *dest, const char *src) |
198 | 0 | { |
199 | 0 | smart_str_setl(dest, src, strlen(src)); |
200 | 0 | } Unexecuted instantiation: php_date.c:smart_str_sets Unexecuted instantiation: php_pcre.c:smart_str_sets Unexecuted instantiation: hash.c:smart_str_sets Unexecuted instantiation: json_encoder.c:smart_str_sets Unexecuted instantiation: json.c:smart_str_sets Unexecuted instantiation: zend_jit.c:smart_str_sets Unexecuted instantiation: php_reflection.c:smart_str_sets Unexecuted instantiation: spl_array.c:smart_str_sets Unexecuted instantiation: spl_dllist.c:smart_str_sets Unexecuted instantiation: spl_iterators.c:smart_str_sets Unexecuted instantiation: spl_observer.c:smart_str_sets Unexecuted instantiation: array.c:smart_str_sets Unexecuted instantiation: basic_functions.c:smart_str_sets Unexecuted instantiation: file.c:smart_str_sets Unexecuted instantiation: filters.c:smart_str_sets Unexecuted instantiation: head.c:smart_str_sets Unexecuted instantiation: http_fopen_wrapper.c:smart_str_sets Unexecuted instantiation: http.c:smart_str_sets Unexecuted instantiation: mail.c:smart_str_sets Unexecuted instantiation: proc_open.c:smart_str_sets Unexecuted instantiation: string.c:smart_str_sets Unexecuted instantiation: url_scanner_ex.c:smart_str_sets Unexecuted instantiation: url.c:smart_str_sets Unexecuted instantiation: var.c:smart_str_sets Unexecuted instantiation: uri_parser_rfc3986.c:smart_str_sets Unexecuted instantiation: uri_parser_whatwg.c:smart_str_sets Unexecuted instantiation: fopen_wrappers.c:smart_str_sets Unexecuted instantiation: php_variables.c:smart_str_sets Unexecuted instantiation: spprintf.c:smart_str_sets Unexecuted instantiation: zend_dump.c:smart_str_sets Unexecuted instantiation: zend_ast.c:smart_str_sets Unexecuted instantiation: zend_attributes.c:smart_str_sets Unexecuted instantiation: zend_builtin_functions.c:smart_str_sets Unexecuted instantiation: zend_exceptions.c:smart_str_sets Unexecuted instantiation: zend_execute.c:smart_str_sets Unexecuted instantiation: zend_inheritance.c:smart_str_sets Unexecuted instantiation: zend_ini.c:smart_str_sets Unexecuted instantiation: zend_smart_str.c:smart_str_sets Unexecuted instantiation: zend.c:smart_str_sets |
201 | | #endif |