Coverage Report

Created: 2022-07-02 04:24

/src/php-src/Zend/zend_gc.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
   +----------------------------------------------------------------------+
3
   | Zend Engine                                                          |
4
   +----------------------------------------------------------------------+
5
   | Copyright (c) Zend Technologies Ltd. (http://www.zend.com)           |
6
   +----------------------------------------------------------------------+
7
   | This source file is subject to version 2.00 of the Zend license,     |
8
   | that is bundled with this package in the file LICENSE, and is        |
9
   | available through the world-wide-web at the following url:           |
10
   | http://www.zend.com/license/2_00.txt.                                |
11
   | If you did not receive a copy of the Zend license and are unable to  |
12
   | obtain it through the world-wide-web, please send a note to          |
13
   | license@zend.com so we can mail you a copy immediately.              |
14
   +----------------------------------------------------------------------+
15
   | Authors: David Wang <planetbeing@gmail.com>                          |
16
   |          Dmitry Stogov <dmitry@php.net>                              |
17
   +----------------------------------------------------------------------+
18
*/
19
20
#ifndef ZEND_GC_H
21
#define ZEND_GC_H
22
23
BEGIN_EXTERN_C()
24
25
typedef struct _zend_gc_status {
26
  uint32_t runs;
27
  uint32_t collected;
28
  uint32_t threshold;
29
  uint32_t num_roots;
30
} zend_gc_status;
31
32
ZEND_API extern int (*gc_collect_cycles)(void);
33
34
ZEND_API void ZEND_FASTCALL gc_possible_root(zend_refcounted *ref);
35
ZEND_API void ZEND_FASTCALL gc_remove_from_buffer(zend_refcounted *ref);
36
37
/* enable/disable automatic start of GC collection */
38
ZEND_API zend_bool gc_enable(zend_bool enable);
39
ZEND_API zend_bool gc_enabled(void);
40
41
/* enable/disable possible root additions */
42
ZEND_API zend_bool gc_protect(zend_bool protect);
43
ZEND_API zend_bool gc_protected(void);
44
45
/* The default implementation of the gc_collect_cycles callback. */
46
ZEND_API int  zend_gc_collect_cycles(void);
47
48
ZEND_API void zend_gc_get_status(zend_gc_status *status);
49
50
void gc_globals_ctor(void);
51
void gc_globals_dtor(void);
52
void gc_reset(void);
53
54
#ifdef ZTS
55
size_t zend_gc_globals_size(void);
56
#endif
57
58
END_EXTERN_C()
59
60
4.71M
#define GC_REMOVE_FROM_BUFFER(p) do { \
61
4.71M
    zend_refcounted *_p = (zend_refcounted*)(p); \
62
4.71M
    if (GC_TYPE_INFO(_p) & GC_INFO_MASK) { \
63
1.13M
      gc_remove_from_buffer(_p); \
64
1.13M
    } \
65
4.71M
  } while (0)
66
67
#define GC_MAY_LEAK(ref) \
68
0
  ((GC_TYPE_INFO(ref) & \
69
0
    (GC_INFO_MASK | (GC_NOT_COLLECTABLE << GC_FLAGS_SHIFT))) == 0)
70
71
static zend_always_inline void gc_check_possible_root(zend_refcounted *ref)
72
1.67M
{
73
1.67M
  if (EXPECTED(GC_TYPE_INFO(ref) == GC_REFERENCE)) {
74
0
    zval *zv = &((zend_reference*)ref)->val;
75
76
0
    if (!Z_COLLECTABLE_P(zv)) {
77
0
      return;
78
0
    }
79
0
    ref = Z_COUNTED_P(zv);
80
0
  }
81
1.67M
  if (UNEXPECTED(GC_MAY_LEAK(ref))) {
82
1.19M
    gc_possible_root(ref);
83
1.19M
  }
84
1.67M
}
Unexecuted instantiation: php_date.c:gc_check_possible_root
Unexecuted instantiation: astro.c:gc_check_possible_root
Unexecuted instantiation: dow.c:gc_check_possible_root
Unexecuted instantiation: parse_date.c:gc_check_possible_root
Unexecuted instantiation: parse_tz.c:gc_check_possible_root
Unexecuted instantiation: timelib.c:gc_check_possible_root
Unexecuted instantiation: tm2unixtime.c:gc_check_possible_root
Unexecuted instantiation: unixtime2tm.c:gc_check_possible_root
Unexecuted instantiation: parse_iso_intervals.c:gc_check_possible_root
Unexecuted instantiation: interval.c:gc_check_possible_root
Unexecuted instantiation: php_pcre.c:gc_check_possible_root
Unexecuted instantiation: exif.c:gc_check_possible_root
Unexecuted instantiation: hash.c:gc_check_possible_root
Unexecuted instantiation: hash_md.c:gc_check_possible_root
Unexecuted instantiation: hash_sha.c:gc_check_possible_root
Unexecuted instantiation: hash_ripemd.c:gc_check_possible_root
Unexecuted instantiation: hash_haval.c:gc_check_possible_root
Unexecuted instantiation: hash_tiger.c:gc_check_possible_root
Unexecuted instantiation: hash_gost.c:gc_check_possible_root
Unexecuted instantiation: hash_snefru.c:gc_check_possible_root
Unexecuted instantiation: hash_whirlpool.c:gc_check_possible_root
Unexecuted instantiation: hash_adler32.c:gc_check_possible_root
Unexecuted instantiation: hash_crc32.c:gc_check_possible_root
Unexecuted instantiation: hash_fnv.c:gc_check_possible_root
Unexecuted instantiation: hash_joaat.c:gc_check_possible_root
Unexecuted instantiation: hash_sha3.c:gc_check_possible_root
Unexecuted instantiation: json.c:gc_check_possible_root
Unexecuted instantiation: json_encoder.c:gc_check_possible_root
Unexecuted instantiation: json_parser.tab.c:gc_check_possible_root
Unexecuted instantiation: json_scanner.c:gc_check_possible_root
Unexecuted instantiation: mbstring.c:gc_check_possible_root
Unexecuted instantiation: php_unicode.c:gc_check_possible_root
Unexecuted instantiation: mb_gpc.c:gc_check_possible_root
Unexecuted instantiation: php_mbregex.c:gc_check_possible_root
Unexecuted instantiation: mbfilter.c:gc_check_possible_root
Unexecuted instantiation: php_reflection.c:gc_check_possible_root
Unexecuted instantiation: php_spl.c:gc_check_possible_root
Unexecuted instantiation: spl_functions.c:gc_check_possible_root
Unexecuted instantiation: spl_engine.c:gc_check_possible_root
Unexecuted instantiation: spl_iterators.c:gc_check_possible_root
Unexecuted instantiation: spl_array.c:gc_check_possible_root
Unexecuted instantiation: spl_directory.c:gc_check_possible_root
Unexecuted instantiation: spl_exceptions.c:gc_check_possible_root
Unexecuted instantiation: spl_observer.c:gc_check_possible_root
Unexecuted instantiation: spl_dllist.c:gc_check_possible_root
Unexecuted instantiation: spl_heap.c:gc_check_possible_root
Unexecuted instantiation: spl_fixedarray.c:gc_check_possible_root
Unexecuted instantiation: crypt_sha512.c:gc_check_possible_root
Unexecuted instantiation: crypt_sha256.c:gc_check_possible_root
Unexecuted instantiation: php_crypt_r.c:gc_check_possible_root
Unexecuted instantiation: array.c:gc_check_possible_root
Unexecuted instantiation: base64.c:gc_check_possible_root
Unexecuted instantiation: basic_functions.c:gc_check_possible_root
Unexecuted instantiation: browscap.c:gc_check_possible_root
Unexecuted instantiation: crc32.c:gc_check_possible_root
Unexecuted instantiation: crypt.c:gc_check_possible_root
Unexecuted instantiation: datetime.c:gc_check_possible_root
Unexecuted instantiation: dir.c:gc_check_possible_root
Unexecuted instantiation: dl.c:gc_check_possible_root
Unexecuted instantiation: dns.c:gc_check_possible_root
Unexecuted instantiation: exec.c:gc_check_possible_root
Unexecuted instantiation: file.c:gc_check_possible_root
Unexecuted instantiation: filestat.c:gc_check_possible_root
Unexecuted instantiation: flock_compat.c:gc_check_possible_root
Unexecuted instantiation: formatted_print.c:gc_check_possible_root
Unexecuted instantiation: fsock.c:gc_check_possible_root
Unexecuted instantiation: head.c:gc_check_possible_root
Unexecuted instantiation: html.c:gc_check_possible_root
Unexecuted instantiation: image.c:gc_check_possible_root
Unexecuted instantiation: info.c:gc_check_possible_root
Unexecuted instantiation: iptc.c:gc_check_possible_root
Unexecuted instantiation: lcg.c:gc_check_possible_root
Unexecuted instantiation: link.c:gc_check_possible_root
Unexecuted instantiation: mail.c:gc_check_possible_root
Unexecuted instantiation: math.c:gc_check_possible_root
Unexecuted instantiation: md5.c:gc_check_possible_root
Unexecuted instantiation: metaphone.c:gc_check_possible_root
Unexecuted instantiation: microtime.c:gc_check_possible_root
Unexecuted instantiation: pack.c:gc_check_possible_root
Unexecuted instantiation: pageinfo.c:gc_check_possible_root
Unexecuted instantiation: quot_print.c:gc_check_possible_root
Unexecuted instantiation: rand.c:gc_check_possible_root
Unexecuted instantiation: mt_rand.c:gc_check_possible_root
Unexecuted instantiation: soundex.c:gc_check_possible_root
Unexecuted instantiation: string.c:gc_check_possible_root
Unexecuted instantiation: scanf.c:gc_check_possible_root
Unexecuted instantiation: syslog.c:gc_check_possible_root
Unexecuted instantiation: type.c:gc_check_possible_root
Unexecuted instantiation: uniqid.c:gc_check_possible_root
Unexecuted instantiation: url.c:gc_check_possible_root
Unexecuted instantiation: var.c:gc_check_possible_root
Unexecuted instantiation: versioning.c:gc_check_possible_root
Unexecuted instantiation: assert.c:gc_check_possible_root
Unexecuted instantiation: strnatcmp.c:gc_check_possible_root
Unexecuted instantiation: levenshtein.c:gc_check_possible_root
Unexecuted instantiation: incomplete_class.c:gc_check_possible_root
Unexecuted instantiation: url_scanner_ex.c:gc_check_possible_root
Unexecuted instantiation: ftp_fopen_wrapper.c:gc_check_possible_root
Unexecuted instantiation: http_fopen_wrapper.c:gc_check_possible_root
Unexecuted instantiation: php_fopen_wrapper.c:gc_check_possible_root
Unexecuted instantiation: credits.c:gc_check_possible_root
Unexecuted instantiation: css.c:gc_check_possible_root
Unexecuted instantiation: var_unserializer.c:gc_check_possible_root
Unexecuted instantiation: ftok.c:gc_check_possible_root
Unexecuted instantiation: sha1.c:gc_check_possible_root
Unexecuted instantiation: user_filters.c:gc_check_possible_root
Unexecuted instantiation: uuencode.c:gc_check_possible_root
Unexecuted instantiation: filters.c:gc_check_possible_root
Unexecuted instantiation: proc_open.c:gc_check_possible_root
Unexecuted instantiation: streamsfuncs.c:gc_check_possible_root
Unexecuted instantiation: http.c:gc_check_possible_root
Unexecuted instantiation: password.c:gc_check_possible_root
Unexecuted instantiation: random.c:gc_check_possible_root
Unexecuted instantiation: net.c:gc_check_possible_root
Unexecuted instantiation: hrtime.c:gc_check_possible_root
Unexecuted instantiation: main.c:gc_check_possible_root
Unexecuted instantiation: snprintf.c:gc_check_possible_root
Unexecuted instantiation: spprintf.c:gc_check_possible_root
Unexecuted instantiation: fopen_wrappers.c:gc_check_possible_root
Unexecuted instantiation: php_scandir.c:gc_check_possible_root
Unexecuted instantiation: php_ini.c:gc_check_possible_root
Unexecuted instantiation: SAPI.c:gc_check_possible_root
Unexecuted instantiation: rfc1867.c:gc_check_possible_root
Unexecuted instantiation: php_content_types.c:gc_check_possible_root
Unexecuted instantiation: strlcpy.c:gc_check_possible_root
Unexecuted instantiation: strlcat.c:gc_check_possible_root
Unexecuted instantiation: explicit_bzero.c:gc_check_possible_root
Unexecuted instantiation: reentrancy.c:gc_check_possible_root
Unexecuted instantiation: php_variables.c:gc_check_possible_root
Unexecuted instantiation: php_ticks.c:gc_check_possible_root
Unexecuted instantiation: network.c:gc_check_possible_root
Unexecuted instantiation: php_open_temporary_file.c:gc_check_possible_root
Unexecuted instantiation: output.c:gc_check_possible_root
Unexecuted instantiation: getopt.c:gc_check_possible_root
Unexecuted instantiation: php_syslog.c:gc_check_possible_root
Unexecuted instantiation: streams.c:gc_check_possible_root
Unexecuted instantiation: cast.c:gc_check_possible_root
Unexecuted instantiation: memory.c:gc_check_possible_root
Unexecuted instantiation: filter.c:gc_check_possible_root
Unexecuted instantiation: plain_wrapper.c:gc_check_possible_root
Unexecuted instantiation: userspace.c:gc_check_possible_root
Unexecuted instantiation: transports.c:gc_check_possible_root
Unexecuted instantiation: xp_socket.c:gc_check_possible_root
Unexecuted instantiation: mmap.c:gc_check_possible_root
Unexecuted instantiation: glob_wrapper.c:gc_check_possible_root
Unexecuted instantiation: zend_language_parser.c:gc_check_possible_root
Unexecuted instantiation: zend_language_scanner.c:gc_check_possible_root
Unexecuted instantiation: zend_ini_parser.c:gc_check_possible_root
Unexecuted instantiation: zend_ini_scanner.c:gc_check_possible_root
Unexecuted instantiation: zend_alloc.c:gc_check_possible_root
Unexecuted instantiation: zend_compile.c:gc_check_possible_root
Unexecuted instantiation: zend_constants.c:gc_check_possible_root
Unexecuted instantiation: zend_dtrace.c:gc_check_possible_root
Unexecuted instantiation: zend_execute_API.c:gc_check_possible_root
Unexecuted instantiation: zend_highlight.c:gc_check_possible_root
Unexecuted instantiation: zend_llist.c:gc_check_possible_root
Unexecuted instantiation: zend_vm_opcodes.c:gc_check_possible_root
zend_opcode.c:gc_check_possible_root
Line
Count
Source
72
130
{
73
130
  if (EXPECTED(GC_TYPE_INFO(ref) == GC_REFERENCE)) {
74
0
    zval *zv = &((zend_reference*)ref)->val;
75
76
0
    if (!Z_COLLECTABLE_P(zv)) {
77
0
      return;
78
0
    }
79
0
    ref = Z_COUNTED_P(zv);
80
0
  }
81
130
  if (UNEXPECTED(GC_MAY_LEAK(ref))) {
82
0
    gc_possible_root(ref);
83
0
  }
84
130
}
Unexecuted instantiation: zend_operators.c:gc_check_possible_root
Unexecuted instantiation: zend_ptr_stack.c:gc_check_possible_root
Unexecuted instantiation: zend_stack.c:gc_check_possible_root
zend_variables.c:gc_check_possible_root
Line
Count
Source
72
1.60M
{
73
1.60M
  if (EXPECTED(GC_TYPE_INFO(ref) == GC_REFERENCE)) {
74
0
    zval *zv = &((zend_reference*)ref)->val;
75
76
0
    if (!Z_COLLECTABLE_P(zv)) {
77
0
      return;
78
0
    }
79
0
    ref = Z_COUNTED_P(zv);
80
0
  }
81
1.60M
  if (UNEXPECTED(GC_MAY_LEAK(ref))) {
82
1.19M
    gc_possible_root(ref);
83
1.19M
  }
84
1.60M
}
Unexecuted instantiation: zend.c:gc_check_possible_root
Unexecuted instantiation: zend_API.c:gc_check_possible_root
Unexecuted instantiation: zend_extensions.c:gc_check_possible_root
zend_hash.c:gc_check_possible_root
Line
Count
Source
72
69.5k
{
73
69.5k
  if (EXPECTED(GC_TYPE_INFO(ref) == GC_REFERENCE)) {
74
0
    zval *zv = &((zend_reference*)ref)->val;
75
76
0
    if (!Z_COLLECTABLE_P(zv)) {
77
0
      return;
78
0
    }
79
0
    ref = Z_COUNTED_P(zv);
80
0
  }
81
69.5k
  if (UNEXPECTED(GC_MAY_LEAK(ref))) {
82
874
    gc_possible_root(ref);
83
874
  }
84
69.5k
}
Unexecuted instantiation: zend_list.c:gc_check_possible_root
Unexecuted instantiation: zend_builtin_functions.c:gc_check_possible_root
Unexecuted instantiation: zend_attributes.c:gc_check_possible_root
Unexecuted instantiation: zend_execute.c:gc_check_possible_root
Unexecuted instantiation: zend_ini.c:gc_check_possible_root
Unexecuted instantiation: zend_sort.c:gc_check_possible_root
Unexecuted instantiation: zend_multibyte.c:gc_check_possible_root
Unexecuted instantiation: zend_ts_hash.c:gc_check_possible_root
Unexecuted instantiation: zend_stream.c:gc_check_possible_root
Unexecuted instantiation: zend_iterators.c:gc_check_possible_root
Unexecuted instantiation: zend_interfaces.c:gc_check_possible_root
Unexecuted instantiation: zend_exceptions.c:gc_check_possible_root
Unexecuted instantiation: zend_strtod.c:gc_check_possible_root
Unexecuted instantiation: zend_gc.c:gc_check_possible_root
Unexecuted instantiation: zend_closures.c:gc_check_possible_root
Unexecuted instantiation: zend_weakrefs.c:gc_check_possible_root
Unexecuted instantiation: zend_float.c:gc_check_possible_root
Unexecuted instantiation: zend_string.c:gc_check_possible_root
Unexecuted instantiation: zend_signal.c:gc_check_possible_root
Unexecuted instantiation: zend_generators.c:gc_check_possible_root
Unexecuted instantiation: zend_virtual_cwd.c:gc_check_possible_root
Unexecuted instantiation: zend_ast.c:gc_check_possible_root
zend_objects.c:gc_check_possible_root
Line
Count
Source
72
128
{
73
128
  if (EXPECTED(GC_TYPE_INFO(ref) == GC_REFERENCE)) {
74
0
    zval *zv = &((zend_reference*)ref)->val;
75
76
0
    if (!Z_COLLECTABLE_P(zv)) {
77
0
      return;
78
0
    }
79
0
    ref = Z_COUNTED_P(zv);
80
0
  }
81
128
  if (UNEXPECTED(GC_MAY_LEAK(ref))) {
82
0
    gc_possible_root(ref);
83
0
  }
84
128
}
Unexecuted instantiation: zend_object_handlers.c:gc_check_possible_root
Unexecuted instantiation: zend_objects_API.c:gc_check_possible_root
Unexecuted instantiation: zend_default_classes.c:gc_check_possible_root
Unexecuted instantiation: zend_inheritance.c:gc_check_possible_root
Unexecuted instantiation: zend_smart_str.c:gc_check_possible_root
Unexecuted instantiation: zend_cpuinfo.c:gc_check_possible_root
Unexecuted instantiation: zend_gdb.c:gc_check_possible_root
Unexecuted instantiation: internal_functions_cli.c:gc_check_possible_root
Unexecuted instantiation: fuzzer-parser.c:gc_check_possible_root
Unexecuted instantiation: fuzzer-sapi.c:gc_check_possible_root
85
86
/* These APIs can be used to simplify object get_gc implementations
87
 * over heterogeneous structures. See zend_generator_get_gc() for
88
 * a usage example. */
89
90
typedef struct {
91
  zval *cur;
92
  zval *end;
93
  zval *start;
94
} zend_get_gc_buffer;
95
96
ZEND_API zend_get_gc_buffer *zend_get_gc_buffer_create(void);
97
ZEND_API void zend_get_gc_buffer_grow(zend_get_gc_buffer *gc_buffer);
98
99
static zend_always_inline void zend_get_gc_buffer_add_zval(
100
0
    zend_get_gc_buffer *gc_buffer, zval *zv) {
101
0
  if (Z_REFCOUNTED_P(zv)) {
102
0
    if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) {
103
0
      zend_get_gc_buffer_grow(gc_buffer);
104
0
    }
105
0
    ZVAL_COPY_VALUE(gc_buffer->cur, zv);
106
0
    gc_buffer->cur++;
107
0
  }
108
0
}
Unexecuted instantiation: php_date.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: astro.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: dow.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: parse_date.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: parse_tz.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: timelib.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: tm2unixtime.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: unixtime2tm.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: parse_iso_intervals.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: interval.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: php_pcre.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: exif.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: hash.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: hash_md.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: hash_sha.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: hash_ripemd.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: hash_haval.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: hash_tiger.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: hash_gost.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: hash_snefru.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: hash_whirlpool.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: hash_adler32.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: hash_crc32.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: hash_fnv.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: hash_joaat.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: hash_sha3.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: json.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: json_encoder.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: json_parser.tab.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: json_scanner.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: mbstring.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: php_unicode.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: mb_gpc.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: php_mbregex.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: mbfilter.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: php_reflection.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: php_spl.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: spl_functions.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: spl_engine.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: spl_iterators.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: spl_array.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: spl_directory.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: spl_exceptions.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: spl_observer.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: spl_dllist.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: spl_heap.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: spl_fixedarray.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: crypt_sha512.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: crypt_sha256.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: php_crypt_r.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: array.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: base64.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: basic_functions.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: browscap.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: crc32.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: crypt.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: datetime.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: dir.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: dl.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: dns.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: exec.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: file.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: filestat.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: flock_compat.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: formatted_print.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: fsock.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: head.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: html.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: image.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: info.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: iptc.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: lcg.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: link.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: mail.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: math.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: md5.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: metaphone.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: microtime.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: pack.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: pageinfo.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: quot_print.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: rand.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: mt_rand.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: soundex.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: string.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: scanf.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: syslog.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: type.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: uniqid.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: url.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: var.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: versioning.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: assert.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: strnatcmp.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: levenshtein.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: incomplete_class.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: url_scanner_ex.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: ftp_fopen_wrapper.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: http_fopen_wrapper.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: php_fopen_wrapper.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: credits.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: css.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: var_unserializer.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: ftok.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: sha1.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: user_filters.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: uuencode.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: filters.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: proc_open.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: streamsfuncs.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: http.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: password.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: random.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: net.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: hrtime.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: main.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: snprintf.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: spprintf.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: fopen_wrappers.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: php_scandir.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: php_ini.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: SAPI.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: rfc1867.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: php_content_types.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: strlcpy.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: strlcat.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: explicit_bzero.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: reentrancy.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: php_variables.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: php_ticks.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: network.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: php_open_temporary_file.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: output.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: getopt.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: php_syslog.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: streams.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: cast.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: memory.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: filter.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: plain_wrapper.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: userspace.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: transports.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: xp_socket.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: mmap.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: glob_wrapper.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_language_parser.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_language_scanner.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_ini_parser.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_ini_scanner.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_alloc.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_compile.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_constants.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_dtrace.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_execute_API.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_highlight.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_llist.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_vm_opcodes.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_opcode.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_operators.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_ptr_stack.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_stack.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_variables.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_API.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_extensions.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_hash.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_list.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_builtin_functions.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_attributes.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_execute.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_ini.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_sort.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_multibyte.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_ts_hash.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_stream.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_iterators.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_interfaces.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_exceptions.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_strtod.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_gc.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_closures.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_weakrefs.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_float.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_string.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_signal.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_generators.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_virtual_cwd.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_ast.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_objects.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_object_handlers.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_objects_API.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_default_classes.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_inheritance.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_smart_str.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_cpuinfo.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: zend_gdb.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: internal_functions_cli.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: fuzzer-parser.c:zend_get_gc_buffer_add_zval
Unexecuted instantiation: fuzzer-sapi.c:zend_get_gc_buffer_add_zval
109
110
static zend_always_inline void zend_get_gc_buffer_add_obj(
111
0
    zend_get_gc_buffer *gc_buffer, zend_object *obj) {
112
0
  if (UNEXPECTED(gc_buffer->cur == gc_buffer->end)) {
113
0
    zend_get_gc_buffer_grow(gc_buffer);
114
0
  }
115
0
  ZVAL_OBJ(gc_buffer->cur, obj);
116
0
  gc_buffer->cur++;
117
0
}
Unexecuted instantiation: php_date.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: astro.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: dow.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: parse_date.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: parse_tz.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: timelib.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: tm2unixtime.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: unixtime2tm.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: parse_iso_intervals.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: interval.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: php_pcre.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: exif.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: hash.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: hash_md.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: hash_sha.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: hash_ripemd.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: hash_haval.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: hash_tiger.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: hash_gost.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: hash_snefru.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: hash_whirlpool.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: hash_adler32.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: hash_crc32.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: hash_fnv.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: hash_joaat.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: hash_sha3.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: json.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: json_encoder.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: json_parser.tab.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: json_scanner.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: mbstring.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: php_unicode.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: mb_gpc.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: php_mbregex.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: mbfilter.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: php_reflection.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: php_spl.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: spl_functions.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: spl_engine.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: spl_iterators.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: spl_array.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: spl_directory.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: spl_exceptions.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: spl_observer.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: spl_dllist.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: spl_heap.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: spl_fixedarray.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: crypt_sha512.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: crypt_sha256.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: php_crypt_r.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: array.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: base64.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: basic_functions.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: browscap.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: crc32.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: crypt.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: datetime.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: dir.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: dl.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: dns.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: exec.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: file.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: filestat.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: flock_compat.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: formatted_print.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: fsock.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: head.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: html.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: image.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: info.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: iptc.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: lcg.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: link.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: mail.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: math.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: md5.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: metaphone.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: microtime.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: pack.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: pageinfo.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: quot_print.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: rand.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: mt_rand.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: soundex.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: string.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: scanf.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: syslog.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: type.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: uniqid.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: url.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: var.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: versioning.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: assert.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: strnatcmp.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: levenshtein.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: incomplete_class.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: url_scanner_ex.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: ftp_fopen_wrapper.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: http_fopen_wrapper.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: php_fopen_wrapper.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: credits.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: css.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: var_unserializer.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: ftok.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: sha1.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: user_filters.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: uuencode.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: filters.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: proc_open.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: streamsfuncs.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: http.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: password.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: random.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: net.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: hrtime.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: main.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: snprintf.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: spprintf.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: fopen_wrappers.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: php_scandir.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: php_ini.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: SAPI.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: rfc1867.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: php_content_types.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: strlcpy.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: strlcat.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: explicit_bzero.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: reentrancy.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: php_variables.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: php_ticks.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: network.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: php_open_temporary_file.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: output.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: getopt.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: php_syslog.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: streams.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: cast.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: memory.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: filter.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: plain_wrapper.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: userspace.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: transports.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: xp_socket.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: mmap.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: glob_wrapper.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_language_parser.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_language_scanner.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_ini_parser.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_ini_scanner.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_alloc.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_compile.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_constants.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_dtrace.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_execute_API.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_highlight.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_llist.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_vm_opcodes.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_opcode.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_operators.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_ptr_stack.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_stack.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_variables.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_API.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_extensions.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_hash.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_list.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_builtin_functions.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_attributes.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_execute.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_ini.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_sort.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_multibyte.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_ts_hash.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_stream.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_iterators.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_interfaces.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_exceptions.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_strtod.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_gc.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_closures.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_weakrefs.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_float.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_string.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_signal.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_generators.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_virtual_cwd.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_ast.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_objects.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_object_handlers.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_objects_API.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_default_classes.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_inheritance.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_smart_str.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_cpuinfo.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: zend_gdb.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: internal_functions_cli.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: fuzzer-parser.c:zend_get_gc_buffer_add_obj
Unexecuted instantiation: fuzzer-sapi.c:zend_get_gc_buffer_add_obj
118
119
static zend_always_inline void zend_get_gc_buffer_use(
120
0
    zend_get_gc_buffer *gc_buffer, zval **table, int *n) {
121
0
  *table = gc_buffer->start;
122
0
  *n = gc_buffer->cur - gc_buffer->start;
123
0
}
Unexecuted instantiation: php_date.c:zend_get_gc_buffer_use
Unexecuted instantiation: astro.c:zend_get_gc_buffer_use
Unexecuted instantiation: dow.c:zend_get_gc_buffer_use
Unexecuted instantiation: parse_date.c:zend_get_gc_buffer_use
Unexecuted instantiation: parse_tz.c:zend_get_gc_buffer_use
Unexecuted instantiation: timelib.c:zend_get_gc_buffer_use
Unexecuted instantiation: tm2unixtime.c:zend_get_gc_buffer_use
Unexecuted instantiation: unixtime2tm.c:zend_get_gc_buffer_use
Unexecuted instantiation: parse_iso_intervals.c:zend_get_gc_buffer_use
Unexecuted instantiation: interval.c:zend_get_gc_buffer_use
Unexecuted instantiation: php_pcre.c:zend_get_gc_buffer_use
Unexecuted instantiation: exif.c:zend_get_gc_buffer_use
Unexecuted instantiation: hash.c:zend_get_gc_buffer_use
Unexecuted instantiation: hash_md.c:zend_get_gc_buffer_use
Unexecuted instantiation: hash_sha.c:zend_get_gc_buffer_use
Unexecuted instantiation: hash_ripemd.c:zend_get_gc_buffer_use
Unexecuted instantiation: hash_haval.c:zend_get_gc_buffer_use
Unexecuted instantiation: hash_tiger.c:zend_get_gc_buffer_use
Unexecuted instantiation: hash_gost.c:zend_get_gc_buffer_use
Unexecuted instantiation: hash_snefru.c:zend_get_gc_buffer_use
Unexecuted instantiation: hash_whirlpool.c:zend_get_gc_buffer_use
Unexecuted instantiation: hash_adler32.c:zend_get_gc_buffer_use
Unexecuted instantiation: hash_crc32.c:zend_get_gc_buffer_use
Unexecuted instantiation: hash_fnv.c:zend_get_gc_buffer_use
Unexecuted instantiation: hash_joaat.c:zend_get_gc_buffer_use
Unexecuted instantiation: hash_sha3.c:zend_get_gc_buffer_use
Unexecuted instantiation: json.c:zend_get_gc_buffer_use
Unexecuted instantiation: json_encoder.c:zend_get_gc_buffer_use
Unexecuted instantiation: json_parser.tab.c:zend_get_gc_buffer_use
Unexecuted instantiation: json_scanner.c:zend_get_gc_buffer_use
Unexecuted instantiation: mbstring.c:zend_get_gc_buffer_use
Unexecuted instantiation: php_unicode.c:zend_get_gc_buffer_use
Unexecuted instantiation: mb_gpc.c:zend_get_gc_buffer_use
Unexecuted instantiation: php_mbregex.c:zend_get_gc_buffer_use
Unexecuted instantiation: mbfilter.c:zend_get_gc_buffer_use
Unexecuted instantiation: php_reflection.c:zend_get_gc_buffer_use
Unexecuted instantiation: php_spl.c:zend_get_gc_buffer_use
Unexecuted instantiation: spl_functions.c:zend_get_gc_buffer_use
Unexecuted instantiation: spl_engine.c:zend_get_gc_buffer_use
Unexecuted instantiation: spl_iterators.c:zend_get_gc_buffer_use
Unexecuted instantiation: spl_array.c:zend_get_gc_buffer_use
Unexecuted instantiation: spl_directory.c:zend_get_gc_buffer_use
Unexecuted instantiation: spl_exceptions.c:zend_get_gc_buffer_use
Unexecuted instantiation: spl_observer.c:zend_get_gc_buffer_use
Unexecuted instantiation: spl_dllist.c:zend_get_gc_buffer_use
Unexecuted instantiation: spl_heap.c:zend_get_gc_buffer_use
Unexecuted instantiation: spl_fixedarray.c:zend_get_gc_buffer_use
Unexecuted instantiation: crypt_sha512.c:zend_get_gc_buffer_use
Unexecuted instantiation: crypt_sha256.c:zend_get_gc_buffer_use
Unexecuted instantiation: php_crypt_r.c:zend_get_gc_buffer_use
Unexecuted instantiation: array.c:zend_get_gc_buffer_use
Unexecuted instantiation: base64.c:zend_get_gc_buffer_use
Unexecuted instantiation: basic_functions.c:zend_get_gc_buffer_use
Unexecuted instantiation: browscap.c:zend_get_gc_buffer_use
Unexecuted instantiation: crc32.c:zend_get_gc_buffer_use
Unexecuted instantiation: crypt.c:zend_get_gc_buffer_use
Unexecuted instantiation: datetime.c:zend_get_gc_buffer_use
Unexecuted instantiation: dir.c:zend_get_gc_buffer_use
Unexecuted instantiation: dl.c:zend_get_gc_buffer_use
Unexecuted instantiation: dns.c:zend_get_gc_buffer_use
Unexecuted instantiation: exec.c:zend_get_gc_buffer_use
Unexecuted instantiation: file.c:zend_get_gc_buffer_use
Unexecuted instantiation: filestat.c:zend_get_gc_buffer_use
Unexecuted instantiation: flock_compat.c:zend_get_gc_buffer_use
Unexecuted instantiation: formatted_print.c:zend_get_gc_buffer_use
Unexecuted instantiation: fsock.c:zend_get_gc_buffer_use
Unexecuted instantiation: head.c:zend_get_gc_buffer_use
Unexecuted instantiation: html.c:zend_get_gc_buffer_use
Unexecuted instantiation: image.c:zend_get_gc_buffer_use
Unexecuted instantiation: info.c:zend_get_gc_buffer_use
Unexecuted instantiation: iptc.c:zend_get_gc_buffer_use
Unexecuted instantiation: lcg.c:zend_get_gc_buffer_use
Unexecuted instantiation: link.c:zend_get_gc_buffer_use
Unexecuted instantiation: mail.c:zend_get_gc_buffer_use
Unexecuted instantiation: math.c:zend_get_gc_buffer_use
Unexecuted instantiation: md5.c:zend_get_gc_buffer_use
Unexecuted instantiation: metaphone.c:zend_get_gc_buffer_use
Unexecuted instantiation: microtime.c:zend_get_gc_buffer_use
Unexecuted instantiation: pack.c:zend_get_gc_buffer_use
Unexecuted instantiation: pageinfo.c:zend_get_gc_buffer_use
Unexecuted instantiation: quot_print.c:zend_get_gc_buffer_use
Unexecuted instantiation: rand.c:zend_get_gc_buffer_use
Unexecuted instantiation: mt_rand.c:zend_get_gc_buffer_use
Unexecuted instantiation: soundex.c:zend_get_gc_buffer_use
Unexecuted instantiation: string.c:zend_get_gc_buffer_use
Unexecuted instantiation: scanf.c:zend_get_gc_buffer_use
Unexecuted instantiation: syslog.c:zend_get_gc_buffer_use
Unexecuted instantiation: type.c:zend_get_gc_buffer_use
Unexecuted instantiation: uniqid.c:zend_get_gc_buffer_use
Unexecuted instantiation: url.c:zend_get_gc_buffer_use
Unexecuted instantiation: var.c:zend_get_gc_buffer_use
Unexecuted instantiation: versioning.c:zend_get_gc_buffer_use
Unexecuted instantiation: assert.c:zend_get_gc_buffer_use
Unexecuted instantiation: strnatcmp.c:zend_get_gc_buffer_use
Unexecuted instantiation: levenshtein.c:zend_get_gc_buffer_use
Unexecuted instantiation: incomplete_class.c:zend_get_gc_buffer_use
Unexecuted instantiation: url_scanner_ex.c:zend_get_gc_buffer_use
Unexecuted instantiation: ftp_fopen_wrapper.c:zend_get_gc_buffer_use
Unexecuted instantiation: http_fopen_wrapper.c:zend_get_gc_buffer_use
Unexecuted instantiation: php_fopen_wrapper.c:zend_get_gc_buffer_use
Unexecuted instantiation: credits.c:zend_get_gc_buffer_use
Unexecuted instantiation: css.c:zend_get_gc_buffer_use
Unexecuted instantiation: var_unserializer.c:zend_get_gc_buffer_use
Unexecuted instantiation: ftok.c:zend_get_gc_buffer_use
Unexecuted instantiation: sha1.c:zend_get_gc_buffer_use
Unexecuted instantiation: user_filters.c:zend_get_gc_buffer_use
Unexecuted instantiation: uuencode.c:zend_get_gc_buffer_use
Unexecuted instantiation: filters.c:zend_get_gc_buffer_use
Unexecuted instantiation: proc_open.c:zend_get_gc_buffer_use
Unexecuted instantiation: streamsfuncs.c:zend_get_gc_buffer_use
Unexecuted instantiation: http.c:zend_get_gc_buffer_use
Unexecuted instantiation: password.c:zend_get_gc_buffer_use
Unexecuted instantiation: random.c:zend_get_gc_buffer_use
Unexecuted instantiation: net.c:zend_get_gc_buffer_use
Unexecuted instantiation: hrtime.c:zend_get_gc_buffer_use
Unexecuted instantiation: main.c:zend_get_gc_buffer_use
Unexecuted instantiation: snprintf.c:zend_get_gc_buffer_use
Unexecuted instantiation: spprintf.c:zend_get_gc_buffer_use
Unexecuted instantiation: fopen_wrappers.c:zend_get_gc_buffer_use
Unexecuted instantiation: php_scandir.c:zend_get_gc_buffer_use
Unexecuted instantiation: php_ini.c:zend_get_gc_buffer_use
Unexecuted instantiation: SAPI.c:zend_get_gc_buffer_use
Unexecuted instantiation: rfc1867.c:zend_get_gc_buffer_use
Unexecuted instantiation: php_content_types.c:zend_get_gc_buffer_use
Unexecuted instantiation: strlcpy.c:zend_get_gc_buffer_use
Unexecuted instantiation: strlcat.c:zend_get_gc_buffer_use
Unexecuted instantiation: explicit_bzero.c:zend_get_gc_buffer_use
Unexecuted instantiation: reentrancy.c:zend_get_gc_buffer_use
Unexecuted instantiation: php_variables.c:zend_get_gc_buffer_use
Unexecuted instantiation: php_ticks.c:zend_get_gc_buffer_use
Unexecuted instantiation: network.c:zend_get_gc_buffer_use
Unexecuted instantiation: php_open_temporary_file.c:zend_get_gc_buffer_use
Unexecuted instantiation: output.c:zend_get_gc_buffer_use
Unexecuted instantiation: getopt.c:zend_get_gc_buffer_use
Unexecuted instantiation: php_syslog.c:zend_get_gc_buffer_use
Unexecuted instantiation: streams.c:zend_get_gc_buffer_use
Unexecuted instantiation: cast.c:zend_get_gc_buffer_use
Unexecuted instantiation: memory.c:zend_get_gc_buffer_use
Unexecuted instantiation: filter.c:zend_get_gc_buffer_use
Unexecuted instantiation: plain_wrapper.c:zend_get_gc_buffer_use
Unexecuted instantiation: userspace.c:zend_get_gc_buffer_use
Unexecuted instantiation: transports.c:zend_get_gc_buffer_use
Unexecuted instantiation: xp_socket.c:zend_get_gc_buffer_use
Unexecuted instantiation: mmap.c:zend_get_gc_buffer_use
Unexecuted instantiation: glob_wrapper.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_language_parser.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_language_scanner.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_ini_parser.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_ini_scanner.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_alloc.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_compile.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_constants.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_dtrace.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_execute_API.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_highlight.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_llist.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_vm_opcodes.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_opcode.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_operators.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_ptr_stack.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_stack.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_variables.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_API.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_extensions.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_hash.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_list.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_builtin_functions.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_attributes.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_execute.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_ini.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_sort.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_multibyte.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_ts_hash.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_stream.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_iterators.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_interfaces.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_exceptions.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_strtod.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_gc.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_closures.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_weakrefs.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_float.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_string.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_signal.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_generators.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_virtual_cwd.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_ast.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_objects.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_object_handlers.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_objects_API.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_default_classes.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_inheritance.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_smart_str.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_cpuinfo.c:zend_get_gc_buffer_use
Unexecuted instantiation: zend_gdb.c:zend_get_gc_buffer_use
Unexecuted instantiation: internal_functions_cli.c:zend_get_gc_buffer_use
Unexecuted instantiation: fuzzer-parser.c:zend_get_gc_buffer_use
Unexecuted instantiation: fuzzer-sapi.c:zend_get_gc_buffer_use
124
125
#endif /* ZEND_GC_H */