Coverage Report

Created: 2025-12-14 06:09

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/php-src/Zend/zend_objects_API.h
Line
Count
Source
1
/*
2
   +----------------------------------------------------------------------+
3
   | Zend Engine                                                          |
4
   +----------------------------------------------------------------------+
5
   | Copyright (c) Zend Technologies Ltd. (http://www.zend.com)           |
6
   +----------------------------------------------------------------------+
7
   | This source file is subject to version 2.00 of the Zend license,     |
8
   | that is bundled with this package in the file LICENSE, and is        |
9
   | available through the world-wide-web at the following url:           |
10
   | http://www.zend.com/license/2_00.txt.                                |
11
   | If you did not receive a copy of the Zend license and are unable to  |
12
   | obtain it through the world-wide-web, please send a note to          |
13
   | license@zend.com so we can mail you a copy immediately.              |
14
   +----------------------------------------------------------------------+
15
   | Authors: Andi Gutmans <andi@php.net>                                 |
16
   |          Zeev Suraski <zeev@php.net>                                 |
17
   +----------------------------------------------------------------------+
18
*/
19
20
#ifndef ZEND_OBJECTS_API_H
21
#define ZEND_OBJECTS_API_H
22
23
#include "zend_types.h"
24
#include "zend_gc.h"
25
#include "zend_alloc.h"
26
#include "zend_compile.h" /* For zend_property_info */
27
28
1.26M
#define OBJ_BUCKET_INVALID      (1<<0)
29
30
270k
#define IS_OBJ_VALID(o)       (!(((uintptr_t)(o)) & OBJ_BUCKET_INVALID))
31
32
498k
#define SET_OBJ_INVALID(o)      ((zend_object*)((((uintptr_t)(o)) | OBJ_BUCKET_INVALID)))
33
34
424k
#define GET_OBJ_BUCKET_NUMBER(o)  (((intptr_t)(o)) >> 1)
35
36
498k
#define SET_OBJ_BUCKET_NUMBER(o, n) do { \
37
498k
    (o) = (zend_object*)((((uintptr_t)(n)) << 1) | OBJ_BUCKET_INVALID); \
38
498k
  } while (0)
39
40
498k
#define ZEND_OBJECTS_STORE_ADD_TO_FREE_LIST(h) do { \
41
498k
    SET_OBJ_BUCKET_NUMBER(EG(objects_store).object_buckets[(h)], EG(objects_store).free_list_head); \
42
498k
    EG(objects_store).free_list_head = (h); \
43
498k
  } while (0)
44
45
511k
#define OBJ_RELEASE(obj) zend_object_release(obj)
46
47
typedef struct _zend_objects_store {
48
  zend_object **object_buckets;
49
  uint32_t top;
50
  uint32_t size;
51
  int free_list_head;
52
} zend_objects_store;
53
54
/* Global store handling functions */
55
BEGIN_EXTERN_C()
56
ZEND_API void ZEND_FASTCALL zend_objects_store_init(zend_objects_store *objects, uint32_t init_size);
57
ZEND_API void ZEND_FASTCALL zend_objects_store_call_destructors(zend_objects_store *objects);
58
ZEND_API void ZEND_FASTCALL zend_objects_store_mark_destructed(zend_objects_store *objects);
59
ZEND_API void ZEND_FASTCALL zend_objects_store_free_object_storage(zend_objects_store *objects, bool fast_shutdown);
60
ZEND_API void ZEND_FASTCALL zend_objects_store_destroy(zend_objects_store *objects);
61
62
/* Store API functions */
63
ZEND_API void ZEND_FASTCALL zend_objects_store_put(zend_object *object);
64
ZEND_API void ZEND_FASTCALL zend_objects_store_del(zend_object *object);
65
66
/* Called when the ctor was terminated by an exception */
67
static zend_always_inline void zend_object_store_ctor_failed(zend_object *obj)
68
171k
{
69
171k
  GC_ADD_FLAGS(obj, IS_OBJ_DESTRUCTOR_CALLED);
70
171k
}
Unexecuted instantiation: php_date.c:zend_object_store_ctor_failed
Unexecuted instantiation: php_pcre.c:zend_object_store_ctor_failed
Unexecuted instantiation: exif.c:zend_object_store_ctor_failed
Unexecuted instantiation: hash_adler32.c:zend_object_store_ctor_failed
Unexecuted instantiation: hash_crc32.c:zend_object_store_ctor_failed
Unexecuted instantiation: hash_fnv.c:zend_object_store_ctor_failed
Unexecuted instantiation: hash_gost.c:zend_object_store_ctor_failed
Unexecuted instantiation: hash_haval.c:zend_object_store_ctor_failed
Unexecuted instantiation: hash_joaat.c:zend_object_store_ctor_failed
Unexecuted instantiation: hash_md.c:zend_object_store_ctor_failed
Unexecuted instantiation: hash_murmur.c:zend_object_store_ctor_failed
Unexecuted instantiation: hash_ripemd.c:zend_object_store_ctor_failed
Unexecuted instantiation: hash_sha_ni.c:zend_object_store_ctor_failed
Unexecuted instantiation: hash_sha_sse2.c:zend_object_store_ctor_failed
Unexecuted instantiation: hash_sha.c:zend_object_store_ctor_failed
Unexecuted instantiation: hash_sha3.c:zend_object_store_ctor_failed
Unexecuted instantiation: hash_snefru.c:zend_object_store_ctor_failed
Unexecuted instantiation: hash_tiger.c:zend_object_store_ctor_failed
Unexecuted instantiation: hash_whirlpool.c:zend_object_store_ctor_failed
Unexecuted instantiation: hash_xxhash.c:zend_object_store_ctor_failed
Unexecuted instantiation: hash.c:zend_object_store_ctor_failed
Unexecuted instantiation: json_encoder.c:zend_object_store_ctor_failed
Unexecuted instantiation: json_parser.tab.c:zend_object_store_ctor_failed
Unexecuted instantiation: json_scanner.c:zend_object_store_ctor_failed
Unexecuted instantiation: json.c:zend_object_store_ctor_failed
Unexecuted instantiation: php_lexbor.c:zend_object_store_ctor_failed
Unexecuted instantiation: shared_alloc_mmap.c:zend_object_store_ctor_failed
Unexecuted instantiation: shared_alloc_posix.c:zend_object_store_ctor_failed
Unexecuted instantiation: shared_alloc_shm.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_accelerator_api.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_accelerator_blacklist.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_accelerator_debug.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_accelerator_hash.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_accelerator_module.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_file_cache.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_persist_calc.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_persist.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_shared_alloc.c:zend_object_store_ctor_failed
Unexecuted instantiation: ZendAccelerator.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_jit_vm_helpers.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_jit.c:zend_object_store_ctor_failed
Unexecuted instantiation: csprng.c:zend_object_store_ctor_failed
Unexecuted instantiation: engine_mt19937.c:zend_object_store_ctor_failed
Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_object_store_ctor_failed
Unexecuted instantiation: engine_secure.c:zend_object_store_ctor_failed
Unexecuted instantiation: engine_user.c:zend_object_store_ctor_failed
Unexecuted instantiation: engine_xoshiro256starstar.c:zend_object_store_ctor_failed
Unexecuted instantiation: gammasection.c:zend_object_store_ctor_failed
Unexecuted instantiation: random.c:zend_object_store_ctor_failed
Unexecuted instantiation: randomizer.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_utils.c:zend_object_store_ctor_failed
php_reflection.c:zend_object_store_ctor_failed
Line
Count
Source
68
4
{
69
4
  GC_ADD_FLAGS(obj, IS_OBJ_DESTRUCTOR_CALLED);
70
4
}
Unexecuted instantiation: php_spl.c:zend_object_store_ctor_failed
Unexecuted instantiation: spl_array.c:zend_object_store_ctor_failed
Unexecuted instantiation: spl_directory.c:zend_object_store_ctor_failed
Unexecuted instantiation: spl_dllist.c:zend_object_store_ctor_failed
Unexecuted instantiation: spl_exceptions.c:zend_object_store_ctor_failed
Unexecuted instantiation: spl_fixedarray.c:zend_object_store_ctor_failed
Unexecuted instantiation: spl_functions.c:zend_object_store_ctor_failed
Unexecuted instantiation: spl_heap.c:zend_object_store_ctor_failed
Unexecuted instantiation: spl_iterators.c:zend_object_store_ctor_failed
Unexecuted instantiation: spl_observer.c:zend_object_store_ctor_failed
Unexecuted instantiation: array.c:zend_object_store_ctor_failed
Unexecuted instantiation: assert.c:zend_object_store_ctor_failed
Unexecuted instantiation: base64.c:zend_object_store_ctor_failed
Unexecuted instantiation: basic_functions.c:zend_object_store_ctor_failed
Unexecuted instantiation: browscap.c:zend_object_store_ctor_failed
Unexecuted instantiation: crc32_x86.c:zend_object_store_ctor_failed
Unexecuted instantiation: crc32.c:zend_object_store_ctor_failed
Unexecuted instantiation: credits.c:zend_object_store_ctor_failed
Unexecuted instantiation: crypt.c:zend_object_store_ctor_failed
Unexecuted instantiation: css.c:zend_object_store_ctor_failed
Unexecuted instantiation: datetime.c:zend_object_store_ctor_failed
Unexecuted instantiation: dir.c:zend_object_store_ctor_failed
Unexecuted instantiation: dl.c:zend_object_store_ctor_failed
Unexecuted instantiation: dns.c:zend_object_store_ctor_failed
Unexecuted instantiation: exec.c:zend_object_store_ctor_failed
Unexecuted instantiation: file.c:zend_object_store_ctor_failed
Unexecuted instantiation: filestat.c:zend_object_store_ctor_failed
Unexecuted instantiation: filters.c:zend_object_store_ctor_failed
Unexecuted instantiation: flock_compat.c:zend_object_store_ctor_failed
Unexecuted instantiation: formatted_print.c:zend_object_store_ctor_failed
Unexecuted instantiation: fsock.c:zend_object_store_ctor_failed
Unexecuted instantiation: ftok.c:zend_object_store_ctor_failed
Unexecuted instantiation: ftp_fopen_wrapper.c:zend_object_store_ctor_failed
Unexecuted instantiation: head.c:zend_object_store_ctor_failed
Unexecuted instantiation: hrtime.c:zend_object_store_ctor_failed
Unexecuted instantiation: html.c:zend_object_store_ctor_failed
Unexecuted instantiation: http_fopen_wrapper.c:zend_object_store_ctor_failed
Unexecuted instantiation: http.c:zend_object_store_ctor_failed
Unexecuted instantiation: image.c:zend_object_store_ctor_failed
Unexecuted instantiation: incomplete_class.c:zend_object_store_ctor_failed
Unexecuted instantiation: info.c:zend_object_store_ctor_failed
Unexecuted instantiation: iptc.c:zend_object_store_ctor_failed
Unexecuted instantiation: levenshtein.c:zend_object_store_ctor_failed
Unexecuted instantiation: link.c:zend_object_store_ctor_failed
Unexecuted instantiation: mail.c:zend_object_store_ctor_failed
Unexecuted instantiation: math.c:zend_object_store_ctor_failed
Unexecuted instantiation: md5.c:zend_object_store_ctor_failed
Unexecuted instantiation: metaphone.c:zend_object_store_ctor_failed
Unexecuted instantiation: microtime.c:zend_object_store_ctor_failed
Unexecuted instantiation: net.c:zend_object_store_ctor_failed
Unexecuted instantiation: pack.c:zend_object_store_ctor_failed
Unexecuted instantiation: pageinfo.c:zend_object_store_ctor_failed
Unexecuted instantiation: password.c:zend_object_store_ctor_failed
Unexecuted instantiation: php_fopen_wrapper.c:zend_object_store_ctor_failed
Unexecuted instantiation: proc_open.c:zend_object_store_ctor_failed
Unexecuted instantiation: quot_print.c:zend_object_store_ctor_failed
Unexecuted instantiation: scanf.c:zend_object_store_ctor_failed
Unexecuted instantiation: sha1.c:zend_object_store_ctor_failed
Unexecuted instantiation: soundex.c:zend_object_store_ctor_failed
Unexecuted instantiation: streamsfuncs.c:zend_object_store_ctor_failed
Unexecuted instantiation: string.c:zend_object_store_ctor_failed
Unexecuted instantiation: strnatcmp.c:zend_object_store_ctor_failed
Unexecuted instantiation: syslog.c:zend_object_store_ctor_failed
Unexecuted instantiation: type.c:zend_object_store_ctor_failed
Unexecuted instantiation: uniqid.c:zend_object_store_ctor_failed
Unexecuted instantiation: url_scanner_ex.c:zend_object_store_ctor_failed
Unexecuted instantiation: url.c:zend_object_store_ctor_failed
Unexecuted instantiation: user_filters.c:zend_object_store_ctor_failed
Unexecuted instantiation: uuencode.c:zend_object_store_ctor_failed
Unexecuted instantiation: var_unserializer.c:zend_object_store_ctor_failed
Unexecuted instantiation: var.c:zend_object_store_ctor_failed
Unexecuted instantiation: versioning.c:zend_object_store_ctor_failed
Unexecuted instantiation: crypt_sha256.c:zend_object_store_ctor_failed
Unexecuted instantiation: crypt_sha512.c:zend_object_store_ctor_failed
Unexecuted instantiation: php_crypt_r.c:zend_object_store_ctor_failed
Unexecuted instantiation: php_uri.c:zend_object_store_ctor_failed
Unexecuted instantiation: php_uri_common.c:zend_object_store_ctor_failed
Unexecuted instantiation: uri_parser_rfc3986.c:zend_object_store_ctor_failed
Unexecuted instantiation: uri_parser_whatwg.c:zend_object_store_ctor_failed
Unexecuted instantiation: uri_parser_php_parse_url.c:zend_object_store_ctor_failed
Unexecuted instantiation: explicit_bzero.c:zend_object_store_ctor_failed
Unexecuted instantiation: fopen_wrappers.c:zend_object_store_ctor_failed
Unexecuted instantiation: getopt.c:zend_object_store_ctor_failed
Unexecuted instantiation: main.c:zend_object_store_ctor_failed
Unexecuted instantiation: network.c:zend_object_store_ctor_failed
Unexecuted instantiation: output.c:zend_object_store_ctor_failed
Unexecuted instantiation: php_content_types.c:zend_object_store_ctor_failed
Unexecuted instantiation: php_ini_builder.c:zend_object_store_ctor_failed
Unexecuted instantiation: php_ini.c:zend_object_store_ctor_failed
Unexecuted instantiation: php_glob.c:zend_object_store_ctor_failed
Unexecuted instantiation: php_odbc_utils.c:zend_object_store_ctor_failed
Unexecuted instantiation: php_open_temporary_file.c:zend_object_store_ctor_failed
Unexecuted instantiation: php_scandir.c:zend_object_store_ctor_failed
Unexecuted instantiation: php_syslog.c:zend_object_store_ctor_failed
Unexecuted instantiation: php_ticks.c:zend_object_store_ctor_failed
Unexecuted instantiation: php_variables.c:zend_object_store_ctor_failed
Unexecuted instantiation: reentrancy.c:zend_object_store_ctor_failed
Unexecuted instantiation: rfc1867.c:zend_object_store_ctor_failed
Unexecuted instantiation: safe_bcmp.c:zend_object_store_ctor_failed
Unexecuted instantiation: SAPI.c:zend_object_store_ctor_failed
Unexecuted instantiation: snprintf.c:zend_object_store_ctor_failed
Unexecuted instantiation: spprintf.c:zend_object_store_ctor_failed
Unexecuted instantiation: strlcat.c:zend_object_store_ctor_failed
Unexecuted instantiation: strlcpy.c:zend_object_store_ctor_failed
Unexecuted instantiation: cast.c:zend_object_store_ctor_failed
Unexecuted instantiation: filter.c:zend_object_store_ctor_failed
Unexecuted instantiation: glob_wrapper.c:zend_object_store_ctor_failed
Unexecuted instantiation: memory.c:zend_object_store_ctor_failed
Unexecuted instantiation: mmap.c:zend_object_store_ctor_failed
Unexecuted instantiation: plain_wrapper.c:zend_object_store_ctor_failed
Unexecuted instantiation: streams.c:zend_object_store_ctor_failed
Unexecuted instantiation: transports.c:zend_object_store_ctor_failed
Unexecuted instantiation: userspace.c:zend_object_store_ctor_failed
Unexecuted instantiation: xp_socket.c:zend_object_store_ctor_failed
Unexecuted instantiation: block_pass.c:zend_object_store_ctor_failed
Unexecuted instantiation: compact_literals.c:zend_object_store_ctor_failed
Unexecuted instantiation: compact_vars.c:zend_object_store_ctor_failed
Unexecuted instantiation: dce.c:zend_object_store_ctor_failed
Unexecuted instantiation: dfa_pass.c:zend_object_store_ctor_failed
Unexecuted instantiation: escape_analysis.c:zend_object_store_ctor_failed
Unexecuted instantiation: nop_removal.c:zend_object_store_ctor_failed
Unexecuted instantiation: optimize_func_calls.c:zend_object_store_ctor_failed
Unexecuted instantiation: optimize_temp_vars_5.c:zend_object_store_ctor_failed
Unexecuted instantiation: pass1.c:zend_object_store_ctor_failed
Unexecuted instantiation: pass3.c:zend_object_store_ctor_failed
Unexecuted instantiation: sccp.c:zend_object_store_ctor_failed
Unexecuted instantiation: scdf.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_call_graph.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_cfg.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_dfg.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_dump.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_func_info.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_inference.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_optimizer.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_ssa.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_alloc.c:zend_object_store_ctor_failed
zend_API.c:zend_object_store_ctor_failed
Line
Count
Source
68
24
{
69
24
  GC_ADD_FLAGS(obj, IS_OBJ_DESTRUCTOR_CALLED);
70
24
}
Unexecuted instantiation: zend_ast.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_attributes.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_builtin_functions.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_call_stack.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_closures.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_compile.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_constants.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_default_classes.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_dtrace.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_enum.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_exceptions.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_execute_API.c:zend_object_store_ctor_failed
zend_execute.c:zend_object_store_ctor_failed
Line
Count
Source
68
171k
{
69
171k
  GC_ADD_FLAGS(obj, IS_OBJ_DESTRUCTOR_CALLED);
70
171k
}
Unexecuted instantiation: zend_extensions.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_fibers.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_float.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_gc.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_generators.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_hash.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_highlight.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_inheritance.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_ini_parser.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_ini_scanner.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_ini.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_interfaces.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_iterators.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_language_parser.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_language_scanner.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_lazy_objects.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_list.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_multibyte.c:zend_object_store_ctor_failed
zend_object_handlers.c:zend_object_store_ctor_failed
Line
Count
Source
68
12
{
69
12
  GC_ADD_FLAGS(obj, IS_OBJ_DESTRUCTOR_CALLED);
70
12
}
Unexecuted instantiation: zend_objects_API.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_objects.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_observer.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_opcode.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_operators.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_property_hooks.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_signal.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_smart_str.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_stream.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_string.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_strtod.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_system_id.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_variables.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend_weakrefs.c:zend_object_store_ctor_failed
Unexecuted instantiation: zend.c:zend_object_store_ctor_failed
Unexecuted instantiation: internal_functions_cli.c:zend_object_store_ctor_failed
Unexecuted instantiation: fuzzer-function-jit.c:zend_object_store_ctor_failed
Unexecuted instantiation: fuzzer-sapi.c:zend_object_store_ctor_failed
71
72
END_EXTERN_C()
73
74
static zend_always_inline void zend_object_release(zend_object *obj)
75
501k
{
76
501k
  if (GC_DELREF(obj) == 0) {
77
215k
    zend_objects_store_del(obj);
78
286k
  } else if (UNEXPECTED(GC_MAY_LEAK((zend_refcounted*)obj))) {
79
268k
    gc_possible_root((zend_refcounted*)obj);
80
268k
  }
81
501k
}
Unexecuted instantiation: php_date.c:zend_object_release
Unexecuted instantiation: php_pcre.c:zend_object_release
Unexecuted instantiation: exif.c:zend_object_release
Unexecuted instantiation: hash_adler32.c:zend_object_release
Unexecuted instantiation: hash_crc32.c:zend_object_release
Unexecuted instantiation: hash_fnv.c:zend_object_release
Unexecuted instantiation: hash_gost.c:zend_object_release
Unexecuted instantiation: hash_haval.c:zend_object_release
Unexecuted instantiation: hash_joaat.c:zend_object_release
Unexecuted instantiation: hash_md.c:zend_object_release
Unexecuted instantiation: hash_murmur.c:zend_object_release
Unexecuted instantiation: hash_ripemd.c:zend_object_release
Unexecuted instantiation: hash_sha_ni.c:zend_object_release
Unexecuted instantiation: hash_sha_sse2.c:zend_object_release
Unexecuted instantiation: hash_sha.c:zend_object_release
Unexecuted instantiation: hash_sha3.c:zend_object_release
Unexecuted instantiation: hash_snefru.c:zend_object_release
Unexecuted instantiation: hash_tiger.c:zend_object_release
Unexecuted instantiation: hash_whirlpool.c:zend_object_release
Unexecuted instantiation: hash_xxhash.c:zend_object_release
Unexecuted instantiation: hash.c:zend_object_release
Unexecuted instantiation: json_encoder.c:zend_object_release
Unexecuted instantiation: json_parser.tab.c:zend_object_release
Unexecuted instantiation: json_scanner.c:zend_object_release
Unexecuted instantiation: json.c:zend_object_release
Unexecuted instantiation: php_lexbor.c:zend_object_release
Unexecuted instantiation: shared_alloc_mmap.c:zend_object_release
Unexecuted instantiation: shared_alloc_posix.c:zend_object_release
Unexecuted instantiation: shared_alloc_shm.c:zend_object_release
Unexecuted instantiation: zend_accelerator_api.c:zend_object_release
Unexecuted instantiation: zend_accelerator_blacklist.c:zend_object_release
Unexecuted instantiation: zend_accelerator_debug.c:zend_object_release
Unexecuted instantiation: zend_accelerator_hash.c:zend_object_release
Unexecuted instantiation: zend_accelerator_module.c:zend_object_release
Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_object_release
Unexecuted instantiation: zend_file_cache.c:zend_object_release
Unexecuted instantiation: zend_persist_calc.c:zend_object_release
Unexecuted instantiation: zend_persist.c:zend_object_release
Unexecuted instantiation: zend_shared_alloc.c:zend_object_release
Unexecuted instantiation: ZendAccelerator.c:zend_object_release
Unexecuted instantiation: zend_jit_vm_helpers.c:zend_object_release
Unexecuted instantiation: zend_jit.c:zend_object_release
Unexecuted instantiation: csprng.c:zend_object_release
Unexecuted instantiation: engine_mt19937.c:zend_object_release
Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_object_release
Unexecuted instantiation: engine_secure.c:zend_object_release
Unexecuted instantiation: engine_user.c:zend_object_release
Unexecuted instantiation: engine_xoshiro256starstar.c:zend_object_release
Unexecuted instantiation: gammasection.c:zend_object_release
Unexecuted instantiation: random.c:zend_object_release
randomizer.c:zend_object_release
Line
Count
Source
75
1
{
76
1
  if (GC_DELREF(obj) == 0) {
77
0
    zend_objects_store_del(obj);
78
1
  } else if (UNEXPECTED(GC_MAY_LEAK((zend_refcounted*)obj))) {
79
1
    gc_possible_root((zend_refcounted*)obj);
80
1
  }
81
1
}
Unexecuted instantiation: zend_utils.c:zend_object_release
Unexecuted instantiation: php_reflection.c:zend_object_release
php_spl.c:zend_object_release
Line
Count
Source
75
170
{
76
170
  if (GC_DELREF(obj) == 0) {
77
146
    zend_objects_store_del(obj);
78
146
  } else if (UNEXPECTED(GC_MAY_LEAK((zend_refcounted*)obj))) {
79
24
    gc_possible_root((zend_refcounted*)obj);
80
24
  }
81
170
}
Unexecuted instantiation: spl_array.c:zend_object_release
Unexecuted instantiation: spl_directory.c:zend_object_release
Unexecuted instantiation: spl_dllist.c:zend_object_release
Unexecuted instantiation: spl_exceptions.c:zend_object_release
Unexecuted instantiation: spl_fixedarray.c:zend_object_release
Unexecuted instantiation: spl_functions.c:zend_object_release
Unexecuted instantiation: spl_heap.c:zend_object_release
spl_iterators.c:zend_object_release
Line
Count
Source
75
30
{
76
30
  if (GC_DELREF(obj) == 0) {
77
16
    zend_objects_store_del(obj);
78
16
  } else if (UNEXPECTED(GC_MAY_LEAK((zend_refcounted*)obj))) {
79
0
    gc_possible_root((zend_refcounted*)obj);
80
0
  }
81
30
}
spl_observer.c:zend_object_release
Line
Count
Source
75
42
{
76
42
  if (GC_DELREF(obj) == 0) {
77
4
    zend_objects_store_del(obj);
78
38
  } else if (UNEXPECTED(GC_MAY_LEAK((zend_refcounted*)obj))) {
79
12
    gc_possible_root((zend_refcounted*)obj);
80
12
  }
81
42
}
Unexecuted instantiation: array.c:zend_object_release
Unexecuted instantiation: assert.c:zend_object_release
Unexecuted instantiation: base64.c:zend_object_release
basic_functions.c:zend_object_release
Line
Count
Source
75
518
{
76
518
  if (GC_DELREF(obj) == 0) {
77
112
    zend_objects_store_del(obj);
78
406
  } else if (UNEXPECTED(GC_MAY_LEAK((zend_refcounted*)obj))) {
79
402
    gc_possible_root((zend_refcounted*)obj);
80
402
  }
81
518
}
Unexecuted instantiation: browscap.c:zend_object_release
Unexecuted instantiation: crc32_x86.c:zend_object_release
Unexecuted instantiation: crc32.c:zend_object_release
Unexecuted instantiation: credits.c:zend_object_release
Unexecuted instantiation: crypt.c:zend_object_release
Unexecuted instantiation: css.c:zend_object_release
Unexecuted instantiation: datetime.c:zend_object_release
Unexecuted instantiation: dir.c:zend_object_release
Unexecuted instantiation: dl.c:zend_object_release
Unexecuted instantiation: dns.c:zend_object_release
Unexecuted instantiation: exec.c:zend_object_release
Unexecuted instantiation: file.c:zend_object_release
Unexecuted instantiation: filestat.c:zend_object_release
Unexecuted instantiation: filters.c:zend_object_release
Unexecuted instantiation: flock_compat.c:zend_object_release
Unexecuted instantiation: formatted_print.c:zend_object_release
Unexecuted instantiation: fsock.c:zend_object_release
Unexecuted instantiation: ftok.c:zend_object_release
Unexecuted instantiation: ftp_fopen_wrapper.c:zend_object_release
Unexecuted instantiation: head.c:zend_object_release
Unexecuted instantiation: hrtime.c:zend_object_release
Unexecuted instantiation: html.c:zend_object_release
Unexecuted instantiation: http_fopen_wrapper.c:zend_object_release
Unexecuted instantiation: http.c:zend_object_release
Unexecuted instantiation: image.c:zend_object_release
Unexecuted instantiation: incomplete_class.c:zend_object_release
Unexecuted instantiation: info.c:zend_object_release
Unexecuted instantiation: iptc.c:zend_object_release
Unexecuted instantiation: levenshtein.c:zend_object_release
Unexecuted instantiation: link.c:zend_object_release
Unexecuted instantiation: mail.c:zend_object_release
Unexecuted instantiation: math.c:zend_object_release
Unexecuted instantiation: md5.c:zend_object_release
Unexecuted instantiation: metaphone.c:zend_object_release
Unexecuted instantiation: microtime.c:zend_object_release
Unexecuted instantiation: net.c:zend_object_release
Unexecuted instantiation: pack.c:zend_object_release
Unexecuted instantiation: pageinfo.c:zend_object_release
Unexecuted instantiation: password.c:zend_object_release
Unexecuted instantiation: php_fopen_wrapper.c:zend_object_release
Unexecuted instantiation: proc_open.c:zend_object_release
Unexecuted instantiation: quot_print.c:zend_object_release
Unexecuted instantiation: scanf.c:zend_object_release
Unexecuted instantiation: sha1.c:zend_object_release
Unexecuted instantiation: soundex.c:zend_object_release
Unexecuted instantiation: streamsfuncs.c:zend_object_release
Unexecuted instantiation: string.c:zend_object_release
Unexecuted instantiation: strnatcmp.c:zend_object_release
Unexecuted instantiation: syslog.c:zend_object_release
Unexecuted instantiation: type.c:zend_object_release
Unexecuted instantiation: uniqid.c:zend_object_release
Unexecuted instantiation: url_scanner_ex.c:zend_object_release
Unexecuted instantiation: url.c:zend_object_release
Unexecuted instantiation: user_filters.c:zend_object_release
Unexecuted instantiation: uuencode.c:zend_object_release
Unexecuted instantiation: var_unserializer.c:zend_object_release
var.c:zend_object_release
Line
Count
Source
75
18
{
76
18
  if (GC_DELREF(obj) == 0) {
77
0
    zend_objects_store_del(obj);
78
18
  } else if (UNEXPECTED(GC_MAY_LEAK((zend_refcounted*)obj))) {
79
6
    gc_possible_root((zend_refcounted*)obj);
80
6
  }
81
18
}
Unexecuted instantiation: versioning.c:zend_object_release
Unexecuted instantiation: crypt_sha256.c:zend_object_release
Unexecuted instantiation: crypt_sha512.c:zend_object_release
Unexecuted instantiation: php_crypt_r.c:zend_object_release
Unexecuted instantiation: php_uri.c:zend_object_release
Unexecuted instantiation: php_uri_common.c:zend_object_release
Unexecuted instantiation: uri_parser_rfc3986.c:zend_object_release
Unexecuted instantiation: uri_parser_whatwg.c:zend_object_release
Unexecuted instantiation: uri_parser_php_parse_url.c:zend_object_release
Unexecuted instantiation: explicit_bzero.c:zend_object_release
Unexecuted instantiation: fopen_wrappers.c:zend_object_release
Unexecuted instantiation: getopt.c:zend_object_release
Unexecuted instantiation: main.c:zend_object_release
Unexecuted instantiation: network.c:zend_object_release
Unexecuted instantiation: output.c:zend_object_release
Unexecuted instantiation: php_content_types.c:zend_object_release
Unexecuted instantiation: php_ini_builder.c:zend_object_release
Unexecuted instantiation: php_ini.c:zend_object_release
Unexecuted instantiation: php_glob.c:zend_object_release
Unexecuted instantiation: php_odbc_utils.c:zend_object_release
Unexecuted instantiation: php_open_temporary_file.c:zend_object_release
Unexecuted instantiation: php_scandir.c:zend_object_release
Unexecuted instantiation: php_syslog.c:zend_object_release
Unexecuted instantiation: php_ticks.c:zend_object_release
Unexecuted instantiation: php_variables.c:zend_object_release
Unexecuted instantiation: reentrancy.c:zend_object_release
Unexecuted instantiation: rfc1867.c:zend_object_release
Unexecuted instantiation: safe_bcmp.c:zend_object_release
Unexecuted instantiation: SAPI.c:zend_object_release
Unexecuted instantiation: snprintf.c:zend_object_release
Unexecuted instantiation: spprintf.c:zend_object_release
Unexecuted instantiation: strlcat.c:zend_object_release
Unexecuted instantiation: strlcpy.c:zend_object_release
Unexecuted instantiation: cast.c:zend_object_release
Unexecuted instantiation: filter.c:zend_object_release
Unexecuted instantiation: glob_wrapper.c:zend_object_release
Unexecuted instantiation: memory.c:zend_object_release
Unexecuted instantiation: mmap.c:zend_object_release
Unexecuted instantiation: plain_wrapper.c:zend_object_release
Unexecuted instantiation: streams.c:zend_object_release
Unexecuted instantiation: transports.c:zend_object_release
Unexecuted instantiation: userspace.c:zend_object_release
Unexecuted instantiation: xp_socket.c:zend_object_release
Unexecuted instantiation: block_pass.c:zend_object_release
Unexecuted instantiation: compact_literals.c:zend_object_release
Unexecuted instantiation: compact_vars.c:zend_object_release
Unexecuted instantiation: dce.c:zend_object_release
Unexecuted instantiation: dfa_pass.c:zend_object_release
Unexecuted instantiation: escape_analysis.c:zend_object_release
Unexecuted instantiation: nop_removal.c:zend_object_release
Unexecuted instantiation: optimize_func_calls.c:zend_object_release
Unexecuted instantiation: optimize_temp_vars_5.c:zend_object_release
Unexecuted instantiation: pass1.c:zend_object_release
Unexecuted instantiation: pass3.c:zend_object_release
Unexecuted instantiation: sccp.c:zend_object_release
Unexecuted instantiation: scdf.c:zend_object_release
Unexecuted instantiation: zend_call_graph.c:zend_object_release
Unexecuted instantiation: zend_cfg.c:zend_object_release
Unexecuted instantiation: zend_dfg.c:zend_object_release
Unexecuted instantiation: zend_dump.c:zend_object_release
Unexecuted instantiation: zend_func_info.c:zend_object_release
Unexecuted instantiation: zend_inference.c:zend_object_release
Unexecuted instantiation: zend_optimizer.c:zend_object_release
Unexecuted instantiation: zend_ssa.c:zend_object_release
Unexecuted instantiation: zend_alloc.c:zend_object_release
zend_API.c:zend_object_release
Line
Count
Source
75
318
{
76
318
  if (GC_DELREF(obj) == 0) {
77
12
    zend_objects_store_del(obj);
78
306
  } else if (UNEXPECTED(GC_MAY_LEAK((zend_refcounted*)obj))) {
79
0
    gc_possible_root((zend_refcounted*)obj);
80
0
  }
81
318
}
Unexecuted instantiation: zend_ast.c:zend_object_release
Unexecuted instantiation: zend_attributes.c:zend_object_release
Unexecuted instantiation: zend_builtin_functions.c:zend_object_release
Unexecuted instantiation: zend_call_stack.c:zend_object_release
Unexecuted instantiation: zend_closures.c:zend_object_release
Unexecuted instantiation: zend_compile.c:zend_object_release
Unexecuted instantiation: zend_constants.c:zend_object_release
Unexecuted instantiation: zend_default_classes.c:zend_object_release
Unexecuted instantiation: zend_dtrace.c:zend_object_release
Unexecuted instantiation: zend_enum.c:zend_object_release
zend_exceptions.c:zend_object_release
Line
Count
Source
75
24.1k
{
76
24.1k
  if (GC_DELREF(obj) == 0) {
77
23.9k
    zend_objects_store_del(obj);
78
23.9k
  } else if (UNEXPECTED(GC_MAY_LEAK((zend_refcounted*)obj))) {
79
196
    gc_possible_root((zend_refcounted*)obj);
80
196
  }
81
24.1k
}
zend_execute_API.c:zend_object_release
Line
Count
Source
75
12
{
76
12
  if (GC_DELREF(obj) == 0) {
77
0
    zend_objects_store_del(obj);
78
12
  } else if (UNEXPECTED(GC_MAY_LEAK((zend_refcounted*)obj))) {
79
2
    gc_possible_root((zend_refcounted*)obj);
80
2
  }
81
12
}
zend_execute.c:zend_object_release
Line
Count
Source
75
450k
{
76
450k
  if (GC_DELREF(obj) == 0) {
77
174k
    zend_objects_store_del(obj);
78
276k
  } else if (UNEXPECTED(GC_MAY_LEAK((zend_refcounted*)obj))) {
79
265k
    gc_possible_root((zend_refcounted*)obj);
80
265k
  }
81
450k
}
Unexecuted instantiation: zend_extensions.c:zend_object_release
Unexecuted instantiation: zend_fibers.c:zend_object_release
Unexecuted instantiation: zend_float.c:zend_object_release
zend_gc.c:zend_object_release
Line
Count
Source
75
26
{
76
26
  if (GC_DELREF(obj) == 0) {
77
4
    zend_objects_store_del(obj);
78
22
  } else if (UNEXPECTED(GC_MAY_LEAK((zend_refcounted*)obj))) {
79
22
    gc_possible_root((zend_refcounted*)obj);
80
22
  }
81
26
}
zend_generators.c:zend_object_release
Line
Count
Source
75
863
{
76
863
  if (GC_DELREF(obj) == 0) {
77
604
    zend_objects_store_del(obj);
78
604
  } else if (UNEXPECTED(GC_MAY_LEAK((zend_refcounted*)obj))) {
79
138
    gc_possible_root((zend_refcounted*)obj);
80
138
  }
81
863
}
Unexecuted instantiation: zend_hash.c:zend_object_release
Unexecuted instantiation: zend_highlight.c:zend_object_release
Unexecuted instantiation: zend_inheritance.c:zend_object_release
Unexecuted instantiation: zend_ini_parser.c:zend_object_release
Unexecuted instantiation: zend_ini_scanner.c:zend_object_release
Unexecuted instantiation: zend_ini.c:zend_object_release
Unexecuted instantiation: zend_interfaces.c:zend_object_release
Unexecuted instantiation: zend_iterators.c:zend_object_release
Unexecuted instantiation: zend_language_parser.c:zend_object_release
Unexecuted instantiation: zend_language_scanner.c:zend_object_release
zend_lazy_objects.c:zend_object_release
Line
Count
Source
75
1.24k
{
76
1.24k
  if (GC_DELREF(obj) == 0) {
77
874
    zend_objects_store_del(obj);
78
874
  } else if (UNEXPECTED(GC_MAY_LEAK((zend_refcounted*)obj))) {
79
16
    gc_possible_root((zend_refcounted*)obj);
80
16
  }
81
1.24k
}
Unexecuted instantiation: zend_list.c:zend_object_release
Unexecuted instantiation: zend_multibyte.c:zend_object_release
zend_object_handlers.c:zend_object_release
Line
Count
Source
75
5.40k
{
76
5.40k
  if (GC_DELREF(obj) == 0) {
77
18
    zend_objects_store_del(obj);
78
5.38k
  } else if (UNEXPECTED(GC_MAY_LEAK((zend_refcounted*)obj))) {
79
1.31k
    gc_possible_root((zend_refcounted*)obj);
80
1.31k
  }
81
5.40k
}
Unexecuted instantiation: zend_objects_API.c:zend_object_release
zend_objects.c:zend_object_release
Line
Count
Source
75
2.46k
{
76
2.46k
  if (GC_DELREF(obj) == 0) {
77
0
    zend_objects_store_del(obj);
78
2.46k
  } else if (UNEXPECTED(GC_MAY_LEAK((zend_refcounted*)obj))) {
79
979
    gc_possible_root((zend_refcounted*)obj);
80
979
  }
81
2.46k
}
Unexecuted instantiation: zend_observer.c:zend_object_release
Unexecuted instantiation: zend_opcode.c:zend_object_release
zend_operators.c:zend_object_release
Line
Count
Source
75
10
{
76
10
  if (GC_DELREF(obj) == 0) {
77
0
    zend_objects_store_del(obj);
78
10
  } else if (UNEXPECTED(GC_MAY_LEAK((zend_refcounted*)obj))) {
79
8
    gc_possible_root((zend_refcounted*)obj);
80
8
  }
81
10
}
Unexecuted instantiation: zend_property_hooks.c:zend_object_release
Unexecuted instantiation: zend_signal.c:zend_object_release
Unexecuted instantiation: zend_smart_str.c:zend_object_release
Unexecuted instantiation: zend_stream.c:zend_object_release
Unexecuted instantiation: zend_string.c:zend_object_release
Unexecuted instantiation: zend_strtod.c:zend_object_release
Unexecuted instantiation: zend_system_id.c:zend_object_release
Unexecuted instantiation: zend_variables.c:zend_object_release
Unexecuted instantiation: zend_weakrefs.c:zend_object_release
zend.c:zend_object_release
Line
Count
Source
75
2
{
76
2
  if (GC_DELREF(obj) == 0) {
77
2
    zend_objects_store_del(obj);
78
2
  } else if (UNEXPECTED(GC_MAY_LEAK((zend_refcounted*)obj))) {
79
0
    gc_possible_root((zend_refcounted*)obj);
80
0
  }
81
2
}
Unexecuted instantiation: internal_functions_cli.c:zend_object_release
Unexecuted instantiation: fuzzer-function-jit.c:zend_object_release
fuzzer-sapi.c:zend_object_release
Line
Count
Source
75
15.7k
{
76
15.7k
  if (GC_DELREF(obj) == 0) {
77
15.7k
    zend_objects_store_del(obj);
78
15.7k
  } else if (UNEXPECTED(GC_MAY_LEAK((zend_refcounted*)obj))) {
79
0
    gc_possible_root((zend_refcounted*)obj);
80
0
  }
81
15.7k
}
82
83
static zend_always_inline size_t zend_object_properties_size(zend_class_entry *ce)
84
550k
{
85
550k
  return sizeof(zval) *
86
550k
    (ce->default_properties_count -
87
550k
      ((ce->ce_flags & ZEND_ACC_USE_GUARDS) ? 0 : 1));
88
550k
}
php_date.c:zend_object_properties_size
Line
Count
Source
84
214k
{
85
214k
  return sizeof(zval) *
86
214k
    (ce->default_properties_count -
87
214k
      ((ce->ce_flags & ZEND_ACC_USE_GUARDS) ? 0 : 1));
88
214k
}
Unexecuted instantiation: php_pcre.c:zend_object_properties_size
Unexecuted instantiation: exif.c:zend_object_properties_size
Unexecuted instantiation: hash_adler32.c:zend_object_properties_size
Unexecuted instantiation: hash_crc32.c:zend_object_properties_size
Unexecuted instantiation: hash_fnv.c:zend_object_properties_size
Unexecuted instantiation: hash_gost.c:zend_object_properties_size
Unexecuted instantiation: hash_haval.c:zend_object_properties_size
Unexecuted instantiation: hash_joaat.c:zend_object_properties_size
Unexecuted instantiation: hash_md.c:zend_object_properties_size
Unexecuted instantiation: hash_murmur.c:zend_object_properties_size
Unexecuted instantiation: hash_ripemd.c:zend_object_properties_size
Unexecuted instantiation: hash_sha_ni.c:zend_object_properties_size
Unexecuted instantiation: hash_sha_sse2.c:zend_object_properties_size
Unexecuted instantiation: hash_sha.c:zend_object_properties_size
Unexecuted instantiation: hash_sha3.c:zend_object_properties_size
Unexecuted instantiation: hash_snefru.c:zend_object_properties_size
Unexecuted instantiation: hash_tiger.c:zend_object_properties_size
Unexecuted instantiation: hash_whirlpool.c:zend_object_properties_size
Unexecuted instantiation: hash_xxhash.c:zend_object_properties_size
hash.c:zend_object_properties_size
Line
Count
Source
84
1
{
85
1
  return sizeof(zval) *
86
1
    (ce->default_properties_count -
87
1
      ((ce->ce_flags & ZEND_ACC_USE_GUARDS) ? 0 : 1));
88
1
}
Unexecuted instantiation: json_encoder.c:zend_object_properties_size
Unexecuted instantiation: json_parser.tab.c:zend_object_properties_size
Unexecuted instantiation: json_scanner.c:zend_object_properties_size
Unexecuted instantiation: json.c:zend_object_properties_size
Unexecuted instantiation: php_lexbor.c:zend_object_properties_size
Unexecuted instantiation: shared_alloc_mmap.c:zend_object_properties_size
Unexecuted instantiation: shared_alloc_posix.c:zend_object_properties_size
Unexecuted instantiation: shared_alloc_shm.c:zend_object_properties_size
Unexecuted instantiation: zend_accelerator_api.c:zend_object_properties_size
Unexecuted instantiation: zend_accelerator_blacklist.c:zend_object_properties_size
Unexecuted instantiation: zend_accelerator_debug.c:zend_object_properties_size
Unexecuted instantiation: zend_accelerator_hash.c:zend_object_properties_size
Unexecuted instantiation: zend_accelerator_module.c:zend_object_properties_size
Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_object_properties_size
Unexecuted instantiation: zend_file_cache.c:zend_object_properties_size
Unexecuted instantiation: zend_persist_calc.c:zend_object_properties_size
Unexecuted instantiation: zend_persist.c:zend_object_properties_size
Unexecuted instantiation: zend_shared_alloc.c:zend_object_properties_size
Unexecuted instantiation: ZendAccelerator.c:zend_object_properties_size
Unexecuted instantiation: zend_jit_vm_helpers.c:zend_object_properties_size
Unexecuted instantiation: zend_jit.c:zend_object_properties_size
Unexecuted instantiation: csprng.c:zend_object_properties_size
Unexecuted instantiation: engine_mt19937.c:zend_object_properties_size
Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_object_properties_size
Unexecuted instantiation: engine_secure.c:zend_object_properties_size
Unexecuted instantiation: engine_user.c:zend_object_properties_size
Unexecuted instantiation: engine_xoshiro256starstar.c:zend_object_properties_size
Unexecuted instantiation: gammasection.c:zend_object_properties_size
random.c:zend_object_properties_size
Line
Count
Source
84
12
{
85
12
  return sizeof(zval) *
86
12
    (ce->default_properties_count -
87
12
      ((ce->ce_flags & ZEND_ACC_USE_GUARDS) ? 0 : 1));
88
12
}
Unexecuted instantiation: randomizer.c:zend_object_properties_size
Unexecuted instantiation: zend_utils.c:zend_object_properties_size
php_reflection.c:zend_object_properties_size
Line
Count
Source
84
3.33k
{
85
3.33k
  return sizeof(zval) *
86
3.33k
    (ce->default_properties_count -
87
3.33k
      ((ce->ce_flags & ZEND_ACC_USE_GUARDS) ? 0 : 1));
88
3.33k
}
Unexecuted instantiation: php_spl.c:zend_object_properties_size
spl_array.c:zend_object_properties_size
Line
Count
Source
84
244
{
85
244
  return sizeof(zval) *
86
244
    (ce->default_properties_count -
87
244
      ((ce->ce_flags & ZEND_ACC_USE_GUARDS) ? 0 : 1));
88
244
}
spl_directory.c:zend_object_properties_size
Line
Count
Source
84
7
{
85
7
  return sizeof(zval) *
86
7
    (ce->default_properties_count -
87
7
      ((ce->ce_flags & ZEND_ACC_USE_GUARDS) ? 0 : 1));
88
7
}
spl_dllist.c:zend_object_properties_size
Line
Count
Source
84
53
{
85
53
  return sizeof(zval) *
86
53
    (ce->default_properties_count -
87
53
      ((ce->ce_flags & ZEND_ACC_USE_GUARDS) ? 0 : 1));
88
53
}
Unexecuted instantiation: spl_exceptions.c:zend_object_properties_size
spl_fixedarray.c:zend_object_properties_size
Line
Count
Source
84
240
{
85
240
  return sizeof(zval) *
86
240
    (ce->default_properties_count -
87
240
      ((ce->ce_flags & ZEND_ACC_USE_GUARDS) ? 0 : 1));
88
240
}
Unexecuted instantiation: spl_functions.c:zend_object_properties_size
spl_heap.c:zend_object_properties_size
Line
Count
Source
84
3
{
85
3
  return sizeof(zval) *
86
3
    (ce->default_properties_count -
87
3
      ((ce->ce_flags & ZEND_ACC_USE_GUARDS) ? 0 : 1));
88
3
}
spl_iterators.c:zend_object_properties_size
Line
Count
Source
84
59
{
85
59
  return sizeof(zval) *
86
59
    (ce->default_properties_count -
87
59
      ((ce->ce_flags & ZEND_ACC_USE_GUARDS) ? 0 : 1));
88
59
}
spl_observer.c:zend_object_properties_size
Line
Count
Source
84
37
{
85
37
  return sizeof(zval) *
86
37
    (ce->default_properties_count -
87
37
      ((ce->ce_flags & ZEND_ACC_USE_GUARDS) ? 0 : 1));
88
37
}
Unexecuted instantiation: array.c:zend_object_properties_size
Unexecuted instantiation: assert.c:zend_object_properties_size
Unexecuted instantiation: base64.c:zend_object_properties_size
Unexecuted instantiation: basic_functions.c:zend_object_properties_size
Unexecuted instantiation: browscap.c:zend_object_properties_size
Unexecuted instantiation: crc32_x86.c:zend_object_properties_size
Unexecuted instantiation: crc32.c:zend_object_properties_size
Unexecuted instantiation: credits.c:zend_object_properties_size
Unexecuted instantiation: crypt.c:zend_object_properties_size
Unexecuted instantiation: css.c:zend_object_properties_size
Unexecuted instantiation: datetime.c:zend_object_properties_size
Unexecuted instantiation: dir.c:zend_object_properties_size
Unexecuted instantiation: dl.c:zend_object_properties_size
Unexecuted instantiation: dns.c:zend_object_properties_size
Unexecuted instantiation: exec.c:zend_object_properties_size
Unexecuted instantiation: file.c:zend_object_properties_size
Unexecuted instantiation: filestat.c:zend_object_properties_size
Unexecuted instantiation: filters.c:zend_object_properties_size
Unexecuted instantiation: flock_compat.c:zend_object_properties_size
Unexecuted instantiation: formatted_print.c:zend_object_properties_size
Unexecuted instantiation: fsock.c:zend_object_properties_size
Unexecuted instantiation: ftok.c:zend_object_properties_size
Unexecuted instantiation: ftp_fopen_wrapper.c:zend_object_properties_size
Unexecuted instantiation: head.c:zend_object_properties_size
Unexecuted instantiation: hrtime.c:zend_object_properties_size
Unexecuted instantiation: html.c:zend_object_properties_size
Unexecuted instantiation: http_fopen_wrapper.c:zend_object_properties_size
Unexecuted instantiation: http.c:zend_object_properties_size
Unexecuted instantiation: image.c:zend_object_properties_size
Unexecuted instantiation: incomplete_class.c:zend_object_properties_size
Unexecuted instantiation: info.c:zend_object_properties_size
Unexecuted instantiation: iptc.c:zend_object_properties_size
Unexecuted instantiation: levenshtein.c:zend_object_properties_size
Unexecuted instantiation: link.c:zend_object_properties_size
Unexecuted instantiation: mail.c:zend_object_properties_size
Unexecuted instantiation: math.c:zend_object_properties_size
Unexecuted instantiation: md5.c:zend_object_properties_size
Unexecuted instantiation: metaphone.c:zend_object_properties_size
Unexecuted instantiation: microtime.c:zend_object_properties_size
Unexecuted instantiation: net.c:zend_object_properties_size
Unexecuted instantiation: pack.c:zend_object_properties_size
Unexecuted instantiation: pageinfo.c:zend_object_properties_size
Unexecuted instantiation: password.c:zend_object_properties_size
Unexecuted instantiation: php_fopen_wrapper.c:zend_object_properties_size
Unexecuted instantiation: proc_open.c:zend_object_properties_size
Unexecuted instantiation: quot_print.c:zend_object_properties_size
Unexecuted instantiation: scanf.c:zend_object_properties_size
Unexecuted instantiation: sha1.c:zend_object_properties_size
Unexecuted instantiation: soundex.c:zend_object_properties_size
Unexecuted instantiation: streamsfuncs.c:zend_object_properties_size
Unexecuted instantiation: string.c:zend_object_properties_size
Unexecuted instantiation: strnatcmp.c:zend_object_properties_size
Unexecuted instantiation: syslog.c:zend_object_properties_size
Unexecuted instantiation: type.c:zend_object_properties_size
Unexecuted instantiation: uniqid.c:zend_object_properties_size
Unexecuted instantiation: url_scanner_ex.c:zend_object_properties_size
Unexecuted instantiation: url.c:zend_object_properties_size
Unexecuted instantiation: user_filters.c:zend_object_properties_size
Unexecuted instantiation: uuencode.c:zend_object_properties_size
Unexecuted instantiation: var_unserializer.c:zend_object_properties_size
Unexecuted instantiation: var.c:zend_object_properties_size
Unexecuted instantiation: versioning.c:zend_object_properties_size
Unexecuted instantiation: crypt_sha256.c:zend_object_properties_size
Unexecuted instantiation: crypt_sha512.c:zend_object_properties_size
Unexecuted instantiation: php_crypt_r.c:zend_object_properties_size
php_uri.c:zend_object_properties_size
Line
Count
Source
84
2
{
85
2
  return sizeof(zval) *
86
2
    (ce->default_properties_count -
87
2
      ((ce->ce_flags & ZEND_ACC_USE_GUARDS) ? 0 : 1));
88
2
}
Unexecuted instantiation: php_uri_common.c:zend_object_properties_size
Unexecuted instantiation: uri_parser_rfc3986.c:zend_object_properties_size
Unexecuted instantiation: uri_parser_whatwg.c:zend_object_properties_size
Unexecuted instantiation: uri_parser_php_parse_url.c:zend_object_properties_size
Unexecuted instantiation: explicit_bzero.c:zend_object_properties_size
Unexecuted instantiation: fopen_wrappers.c:zend_object_properties_size
Unexecuted instantiation: getopt.c:zend_object_properties_size
Unexecuted instantiation: main.c:zend_object_properties_size
Unexecuted instantiation: network.c:zend_object_properties_size
Unexecuted instantiation: output.c:zend_object_properties_size
Unexecuted instantiation: php_content_types.c:zend_object_properties_size
Unexecuted instantiation: php_ini_builder.c:zend_object_properties_size
Unexecuted instantiation: php_ini.c:zend_object_properties_size
Unexecuted instantiation: php_glob.c:zend_object_properties_size
Unexecuted instantiation: php_odbc_utils.c:zend_object_properties_size
Unexecuted instantiation: php_open_temporary_file.c:zend_object_properties_size
Unexecuted instantiation: php_scandir.c:zend_object_properties_size
Unexecuted instantiation: php_syslog.c:zend_object_properties_size
Unexecuted instantiation: php_ticks.c:zend_object_properties_size
Unexecuted instantiation: php_variables.c:zend_object_properties_size
Unexecuted instantiation: reentrancy.c:zend_object_properties_size
Unexecuted instantiation: rfc1867.c:zend_object_properties_size
Unexecuted instantiation: safe_bcmp.c:zend_object_properties_size
Unexecuted instantiation: SAPI.c:zend_object_properties_size
Unexecuted instantiation: snprintf.c:zend_object_properties_size
Unexecuted instantiation: spprintf.c:zend_object_properties_size
Unexecuted instantiation: strlcat.c:zend_object_properties_size
Unexecuted instantiation: strlcpy.c:zend_object_properties_size
Unexecuted instantiation: cast.c:zend_object_properties_size
Unexecuted instantiation: filter.c:zend_object_properties_size
Unexecuted instantiation: glob_wrapper.c:zend_object_properties_size
Unexecuted instantiation: memory.c:zend_object_properties_size
Unexecuted instantiation: mmap.c:zend_object_properties_size
Unexecuted instantiation: plain_wrapper.c:zend_object_properties_size
Unexecuted instantiation: streams.c:zend_object_properties_size
Unexecuted instantiation: transports.c:zend_object_properties_size
Unexecuted instantiation: userspace.c:zend_object_properties_size
Unexecuted instantiation: xp_socket.c:zend_object_properties_size
Unexecuted instantiation: block_pass.c:zend_object_properties_size
Unexecuted instantiation: compact_literals.c:zend_object_properties_size
Unexecuted instantiation: compact_vars.c:zend_object_properties_size
Unexecuted instantiation: dce.c:zend_object_properties_size
Unexecuted instantiation: dfa_pass.c:zend_object_properties_size
Unexecuted instantiation: escape_analysis.c:zend_object_properties_size
Unexecuted instantiation: nop_removal.c:zend_object_properties_size
Unexecuted instantiation: optimize_func_calls.c:zend_object_properties_size
Unexecuted instantiation: optimize_temp_vars_5.c:zend_object_properties_size
Unexecuted instantiation: pass1.c:zend_object_properties_size
Unexecuted instantiation: pass3.c:zend_object_properties_size
Unexecuted instantiation: sccp.c:zend_object_properties_size
Unexecuted instantiation: scdf.c:zend_object_properties_size
Unexecuted instantiation: zend_call_graph.c:zend_object_properties_size
Unexecuted instantiation: zend_cfg.c:zend_object_properties_size
Unexecuted instantiation: zend_dfg.c:zend_object_properties_size
Unexecuted instantiation: zend_dump.c:zend_object_properties_size
Unexecuted instantiation: zend_func_info.c:zend_object_properties_size
Unexecuted instantiation: zend_inference.c:zend_object_properties_size
Unexecuted instantiation: zend_optimizer.c:zend_object_properties_size
Unexecuted instantiation: zend_ssa.c:zend_object_properties_size
Unexecuted instantiation: zend_alloc.c:zend_object_properties_size
Unexecuted instantiation: zend_API.c:zend_object_properties_size
Unexecuted instantiation: zend_ast.c:zend_object_properties_size
Unexecuted instantiation: zend_attributes.c:zend_object_properties_size
Unexecuted instantiation: zend_builtin_functions.c:zend_object_properties_size
Unexecuted instantiation: zend_call_stack.c:zend_object_properties_size
Unexecuted instantiation: zend_closures.c:zend_object_properties_size
Unexecuted instantiation: zend_compile.c:zend_object_properties_size
Unexecuted instantiation: zend_constants.c:zend_object_properties_size
Unexecuted instantiation: zend_default_classes.c:zend_object_properties_size
Unexecuted instantiation: zend_dtrace.c:zend_object_properties_size
Unexecuted instantiation: zend_enum.c:zend_object_properties_size
Unexecuted instantiation: zend_exceptions.c:zend_object_properties_size
Unexecuted instantiation: zend_execute_API.c:zend_object_properties_size
Unexecuted instantiation: zend_execute.c:zend_object_properties_size
Unexecuted instantiation: zend_extensions.c:zend_object_properties_size
Unexecuted instantiation: zend_fibers.c:zend_object_properties_size
Unexecuted instantiation: zend_float.c:zend_object_properties_size
Unexecuted instantiation: zend_gc.c:zend_object_properties_size
Unexecuted instantiation: zend_generators.c:zend_object_properties_size
Unexecuted instantiation: zend_hash.c:zend_object_properties_size
Unexecuted instantiation: zend_highlight.c:zend_object_properties_size
Unexecuted instantiation: zend_inheritance.c:zend_object_properties_size
Unexecuted instantiation: zend_ini_parser.c:zend_object_properties_size
Unexecuted instantiation: zend_ini_scanner.c:zend_object_properties_size
Unexecuted instantiation: zend_ini.c:zend_object_properties_size
Unexecuted instantiation: zend_interfaces.c:zend_object_properties_size
Unexecuted instantiation: zend_iterators.c:zend_object_properties_size
Unexecuted instantiation: zend_language_parser.c:zend_object_properties_size
Unexecuted instantiation: zend_language_scanner.c:zend_object_properties_size
Unexecuted instantiation: zend_lazy_objects.c:zend_object_properties_size
Unexecuted instantiation: zend_list.c:zend_object_properties_size
Unexecuted instantiation: zend_multibyte.c:zend_object_properties_size
Unexecuted instantiation: zend_object_handlers.c:zend_object_properties_size
Unexecuted instantiation: zend_objects_API.c:zend_object_properties_size
zend_objects.c:zend_object_properties_size
Line
Count
Source
84
331k
{
85
331k
  return sizeof(zval) *
86
331k
    (ce->default_properties_count -
87
331k
      ((ce->ce_flags & ZEND_ACC_USE_GUARDS) ? 0 : 1));
88
331k
}
Unexecuted instantiation: zend_observer.c:zend_object_properties_size
Unexecuted instantiation: zend_opcode.c:zend_object_properties_size
Unexecuted instantiation: zend_operators.c:zend_object_properties_size
Unexecuted instantiation: zend_property_hooks.c:zend_object_properties_size
Unexecuted instantiation: zend_signal.c:zend_object_properties_size
Unexecuted instantiation: zend_smart_str.c:zend_object_properties_size
Unexecuted instantiation: zend_stream.c:zend_object_properties_size
Unexecuted instantiation: zend_string.c:zend_object_properties_size
Unexecuted instantiation: zend_strtod.c:zend_object_properties_size
Unexecuted instantiation: zend_system_id.c:zend_object_properties_size
Unexecuted instantiation: zend_variables.c:zend_object_properties_size
zend_weakrefs.c:zend_object_properties_size
Line
Count
Source
84
335
{
85
335
  return sizeof(zval) *
86
335
    (ce->default_properties_count -
87
335
      ((ce->ce_flags & ZEND_ACC_USE_GUARDS) ? 0 : 1));
88
335
}
Unexecuted instantiation: zend.c:zend_object_properties_size
Unexecuted instantiation: internal_functions_cli.c:zend_object_properties_size
Unexecuted instantiation: fuzzer-function-jit.c:zend_object_properties_size
Unexecuted instantiation: fuzzer-sapi.c:zend_object_properties_size
89
90
/* Allocates object type and zeros it, but not the standard zend_object and properties.
91
 * Standard object MUST be initialized using zend_object_std_init().
92
 * Properties MUST be initialized using object_properties_init(). */
93
218k
static zend_always_inline void *zend_object_alloc(size_t obj_size, zend_class_entry *ce) {
94
218k
  void *obj = emalloc(obj_size + zend_object_properties_size(ce));
95
218k
  memset(obj, 0, obj_size - sizeof(zend_object));
96
218k
  return obj;
97
218k
}
php_date.c:zend_object_alloc
Line
Count
Source
93
214k
static zend_always_inline void *zend_object_alloc(size_t obj_size, zend_class_entry *ce) {
94
  void *obj = emalloc(obj_size + zend_object_properties_size(ce));
95
214k
  memset(obj, 0, obj_size - sizeof(zend_object));
96
214k
  return obj;
97
214k
}
Unexecuted instantiation: php_pcre.c:zend_object_alloc
Unexecuted instantiation: exif.c:zend_object_alloc
Unexecuted instantiation: hash_adler32.c:zend_object_alloc
Unexecuted instantiation: hash_crc32.c:zend_object_alloc
Unexecuted instantiation: hash_fnv.c:zend_object_alloc
Unexecuted instantiation: hash_gost.c:zend_object_alloc
Unexecuted instantiation: hash_haval.c:zend_object_alloc
Unexecuted instantiation: hash_joaat.c:zend_object_alloc
Unexecuted instantiation: hash_md.c:zend_object_alloc
Unexecuted instantiation: hash_murmur.c:zend_object_alloc
Unexecuted instantiation: hash_ripemd.c:zend_object_alloc
Unexecuted instantiation: hash_sha_ni.c:zend_object_alloc
Unexecuted instantiation: hash_sha_sse2.c:zend_object_alloc
Unexecuted instantiation: hash_sha.c:zend_object_alloc
Unexecuted instantiation: hash_sha3.c:zend_object_alloc
Unexecuted instantiation: hash_snefru.c:zend_object_alloc
Unexecuted instantiation: hash_tiger.c:zend_object_alloc
Unexecuted instantiation: hash_whirlpool.c:zend_object_alloc
Unexecuted instantiation: hash_xxhash.c:zend_object_alloc
hash.c:zend_object_alloc
Line
Count
Source
93
1
static zend_always_inline void *zend_object_alloc(size_t obj_size, zend_class_entry *ce) {
94
  void *obj = emalloc(obj_size + zend_object_properties_size(ce));
95
1
  memset(obj, 0, obj_size - sizeof(zend_object));
96
1
  return obj;
97
1
}
Unexecuted instantiation: json_encoder.c:zend_object_alloc
Unexecuted instantiation: json_parser.tab.c:zend_object_alloc
Unexecuted instantiation: json_scanner.c:zend_object_alloc
Unexecuted instantiation: json.c:zend_object_alloc
Unexecuted instantiation: php_lexbor.c:zend_object_alloc
Unexecuted instantiation: shared_alloc_mmap.c:zend_object_alloc
Unexecuted instantiation: shared_alloc_posix.c:zend_object_alloc
Unexecuted instantiation: shared_alloc_shm.c:zend_object_alloc
Unexecuted instantiation: zend_accelerator_api.c:zend_object_alloc
Unexecuted instantiation: zend_accelerator_blacklist.c:zend_object_alloc
Unexecuted instantiation: zend_accelerator_debug.c:zend_object_alloc
Unexecuted instantiation: zend_accelerator_hash.c:zend_object_alloc
Unexecuted instantiation: zend_accelerator_module.c:zend_object_alloc
Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_object_alloc
Unexecuted instantiation: zend_file_cache.c:zend_object_alloc
Unexecuted instantiation: zend_persist_calc.c:zend_object_alloc
Unexecuted instantiation: zend_persist.c:zend_object_alloc
Unexecuted instantiation: zend_shared_alloc.c:zend_object_alloc
Unexecuted instantiation: ZendAccelerator.c:zend_object_alloc
Unexecuted instantiation: zend_jit_vm_helpers.c:zend_object_alloc
Unexecuted instantiation: zend_jit.c:zend_object_alloc
Unexecuted instantiation: csprng.c:zend_object_alloc
Unexecuted instantiation: engine_mt19937.c:zend_object_alloc
Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_object_alloc
Unexecuted instantiation: engine_secure.c:zend_object_alloc
Unexecuted instantiation: engine_user.c:zend_object_alloc
Unexecuted instantiation: engine_xoshiro256starstar.c:zend_object_alloc
Unexecuted instantiation: gammasection.c:zend_object_alloc
random.c:zend_object_alloc
Line
Count
Source
93
12
static zend_always_inline void *zend_object_alloc(size_t obj_size, zend_class_entry *ce) {
94
  void *obj = emalloc(obj_size + zend_object_properties_size(ce));
95
12
  memset(obj, 0, obj_size - sizeof(zend_object));
96
12
  return obj;
97
12
}
Unexecuted instantiation: randomizer.c:zend_object_alloc
Unexecuted instantiation: zend_utils.c:zend_object_alloc
php_reflection.c:zend_object_alloc
Line
Count
Source
93
3.33k
static zend_always_inline void *zend_object_alloc(size_t obj_size, zend_class_entry *ce) {
94
  void *obj = emalloc(obj_size + zend_object_properties_size(ce));
95
3.33k
  memset(obj, 0, obj_size - sizeof(zend_object));
96
3.33k
  return obj;
97
3.33k
}
Unexecuted instantiation: php_spl.c:zend_object_alloc
spl_array.c:zend_object_alloc
Line
Count
Source
93
244
static zend_always_inline void *zend_object_alloc(size_t obj_size, zend_class_entry *ce) {
94
  void *obj = emalloc(obj_size + zend_object_properties_size(ce));
95
244
  memset(obj, 0, obj_size - sizeof(zend_object));
96
244
  return obj;
97
244
}
Unexecuted instantiation: spl_directory.c:zend_object_alloc
spl_dllist.c:zend_object_alloc
Line
Count
Source
93
53
static zend_always_inline void *zend_object_alloc(size_t obj_size, zend_class_entry *ce) {
94
  void *obj = emalloc(obj_size + zend_object_properties_size(ce));
95
53
  memset(obj, 0, obj_size - sizeof(zend_object));
96
53
  return obj;
97
53
}
Unexecuted instantiation: spl_exceptions.c:zend_object_alloc
spl_fixedarray.c:zend_object_alloc
Line
Count
Source
93
240
static zend_always_inline void *zend_object_alloc(size_t obj_size, zend_class_entry *ce) {
94
  void *obj = emalloc(obj_size + zend_object_properties_size(ce));
95
240
  memset(obj, 0, obj_size - sizeof(zend_object));
96
240
  return obj;
97
240
}
Unexecuted instantiation: spl_functions.c:zend_object_alloc
spl_heap.c:zend_object_alloc
Line
Count
Source
93
3
static zend_always_inline void *zend_object_alloc(size_t obj_size, zend_class_entry *ce) {
94
  void *obj = emalloc(obj_size + zend_object_properties_size(ce));
95
3
  memset(obj, 0, obj_size - sizeof(zend_object));
96
3
  return obj;
97
3
}
spl_iterators.c:zend_object_alloc
Line
Count
Source
93
59
static zend_always_inline void *zend_object_alloc(size_t obj_size, zend_class_entry *ce) {
94
  void *obj = emalloc(obj_size + zend_object_properties_size(ce));
95
59
  memset(obj, 0, obj_size - sizeof(zend_object));
96
59
  return obj;
97
59
}
spl_observer.c:zend_object_alloc
Line
Count
Source
93
37
static zend_always_inline void *zend_object_alloc(size_t obj_size, zend_class_entry *ce) {
94
  void *obj = emalloc(obj_size + zend_object_properties_size(ce));
95
37
  memset(obj, 0, obj_size - sizeof(zend_object));
96
37
  return obj;
97
37
}
Unexecuted instantiation: array.c:zend_object_alloc
Unexecuted instantiation: assert.c:zend_object_alloc
Unexecuted instantiation: base64.c:zend_object_alloc
Unexecuted instantiation: basic_functions.c:zend_object_alloc
Unexecuted instantiation: browscap.c:zend_object_alloc
Unexecuted instantiation: crc32_x86.c:zend_object_alloc
Unexecuted instantiation: crc32.c:zend_object_alloc
Unexecuted instantiation: credits.c:zend_object_alloc
Unexecuted instantiation: crypt.c:zend_object_alloc
Unexecuted instantiation: css.c:zend_object_alloc
Unexecuted instantiation: datetime.c:zend_object_alloc
Unexecuted instantiation: dir.c:zend_object_alloc
Unexecuted instantiation: dl.c:zend_object_alloc
Unexecuted instantiation: dns.c:zend_object_alloc
Unexecuted instantiation: exec.c:zend_object_alloc
Unexecuted instantiation: file.c:zend_object_alloc
Unexecuted instantiation: filestat.c:zend_object_alloc
Unexecuted instantiation: filters.c:zend_object_alloc
Unexecuted instantiation: flock_compat.c:zend_object_alloc
Unexecuted instantiation: formatted_print.c:zend_object_alloc
Unexecuted instantiation: fsock.c:zend_object_alloc
Unexecuted instantiation: ftok.c:zend_object_alloc
Unexecuted instantiation: ftp_fopen_wrapper.c:zend_object_alloc
Unexecuted instantiation: head.c:zend_object_alloc
Unexecuted instantiation: hrtime.c:zend_object_alloc
Unexecuted instantiation: html.c:zend_object_alloc
Unexecuted instantiation: http_fopen_wrapper.c:zend_object_alloc
Unexecuted instantiation: http.c:zend_object_alloc
Unexecuted instantiation: image.c:zend_object_alloc
Unexecuted instantiation: incomplete_class.c:zend_object_alloc
Unexecuted instantiation: info.c:zend_object_alloc
Unexecuted instantiation: iptc.c:zend_object_alloc
Unexecuted instantiation: levenshtein.c:zend_object_alloc
Unexecuted instantiation: link.c:zend_object_alloc
Unexecuted instantiation: mail.c:zend_object_alloc
Unexecuted instantiation: math.c:zend_object_alloc
Unexecuted instantiation: md5.c:zend_object_alloc
Unexecuted instantiation: metaphone.c:zend_object_alloc
Unexecuted instantiation: microtime.c:zend_object_alloc
Unexecuted instantiation: net.c:zend_object_alloc
Unexecuted instantiation: pack.c:zend_object_alloc
Unexecuted instantiation: pageinfo.c:zend_object_alloc
Unexecuted instantiation: password.c:zend_object_alloc
Unexecuted instantiation: php_fopen_wrapper.c:zend_object_alloc
Unexecuted instantiation: proc_open.c:zend_object_alloc
Unexecuted instantiation: quot_print.c:zend_object_alloc
Unexecuted instantiation: scanf.c:zend_object_alloc
Unexecuted instantiation: sha1.c:zend_object_alloc
Unexecuted instantiation: soundex.c:zend_object_alloc
Unexecuted instantiation: streamsfuncs.c:zend_object_alloc
Unexecuted instantiation: string.c:zend_object_alloc
Unexecuted instantiation: strnatcmp.c:zend_object_alloc
Unexecuted instantiation: syslog.c:zend_object_alloc
Unexecuted instantiation: type.c:zend_object_alloc
Unexecuted instantiation: uniqid.c:zend_object_alloc
Unexecuted instantiation: url_scanner_ex.c:zend_object_alloc
Unexecuted instantiation: url.c:zend_object_alloc
Unexecuted instantiation: user_filters.c:zend_object_alloc
Unexecuted instantiation: uuencode.c:zend_object_alloc
Unexecuted instantiation: var_unserializer.c:zend_object_alloc
Unexecuted instantiation: var.c:zend_object_alloc
Unexecuted instantiation: versioning.c:zend_object_alloc
Unexecuted instantiation: crypt_sha256.c:zend_object_alloc
Unexecuted instantiation: crypt_sha512.c:zend_object_alloc
Unexecuted instantiation: php_crypt_r.c:zend_object_alloc
php_uri.c:zend_object_alloc
Line
Count
Source
93
2
static zend_always_inline void *zend_object_alloc(size_t obj_size, zend_class_entry *ce) {
94
  void *obj = emalloc(obj_size + zend_object_properties_size(ce));
95
2
  memset(obj, 0, obj_size - sizeof(zend_object));
96
2
  return obj;
97
2
}
Unexecuted instantiation: php_uri_common.c:zend_object_alloc
Unexecuted instantiation: uri_parser_rfc3986.c:zend_object_alloc
Unexecuted instantiation: uri_parser_whatwg.c:zend_object_alloc
Unexecuted instantiation: uri_parser_php_parse_url.c:zend_object_alloc
Unexecuted instantiation: explicit_bzero.c:zend_object_alloc
Unexecuted instantiation: fopen_wrappers.c:zend_object_alloc
Unexecuted instantiation: getopt.c:zend_object_alloc
Unexecuted instantiation: main.c:zend_object_alloc
Unexecuted instantiation: network.c:zend_object_alloc
Unexecuted instantiation: output.c:zend_object_alloc
Unexecuted instantiation: php_content_types.c:zend_object_alloc
Unexecuted instantiation: php_ini_builder.c:zend_object_alloc
Unexecuted instantiation: php_ini.c:zend_object_alloc
Unexecuted instantiation: php_glob.c:zend_object_alloc
Unexecuted instantiation: php_odbc_utils.c:zend_object_alloc
Unexecuted instantiation: php_open_temporary_file.c:zend_object_alloc
Unexecuted instantiation: php_scandir.c:zend_object_alloc
Unexecuted instantiation: php_syslog.c:zend_object_alloc
Unexecuted instantiation: php_ticks.c:zend_object_alloc
Unexecuted instantiation: php_variables.c:zend_object_alloc
Unexecuted instantiation: reentrancy.c:zend_object_alloc
Unexecuted instantiation: rfc1867.c:zend_object_alloc
Unexecuted instantiation: safe_bcmp.c:zend_object_alloc
Unexecuted instantiation: SAPI.c:zend_object_alloc
Unexecuted instantiation: snprintf.c:zend_object_alloc
Unexecuted instantiation: spprintf.c:zend_object_alloc
Unexecuted instantiation: strlcat.c:zend_object_alloc
Unexecuted instantiation: strlcpy.c:zend_object_alloc
Unexecuted instantiation: cast.c:zend_object_alloc
Unexecuted instantiation: filter.c:zend_object_alloc
Unexecuted instantiation: glob_wrapper.c:zend_object_alloc
Unexecuted instantiation: memory.c:zend_object_alloc
Unexecuted instantiation: mmap.c:zend_object_alloc
Unexecuted instantiation: plain_wrapper.c:zend_object_alloc
Unexecuted instantiation: streams.c:zend_object_alloc
Unexecuted instantiation: transports.c:zend_object_alloc
Unexecuted instantiation: userspace.c:zend_object_alloc
Unexecuted instantiation: xp_socket.c:zend_object_alloc
Unexecuted instantiation: block_pass.c:zend_object_alloc
Unexecuted instantiation: compact_literals.c:zend_object_alloc
Unexecuted instantiation: compact_vars.c:zend_object_alloc
Unexecuted instantiation: dce.c:zend_object_alloc
Unexecuted instantiation: dfa_pass.c:zend_object_alloc
Unexecuted instantiation: escape_analysis.c:zend_object_alloc
Unexecuted instantiation: nop_removal.c:zend_object_alloc
Unexecuted instantiation: optimize_func_calls.c:zend_object_alloc
Unexecuted instantiation: optimize_temp_vars_5.c:zend_object_alloc
Unexecuted instantiation: pass1.c:zend_object_alloc
Unexecuted instantiation: pass3.c:zend_object_alloc
Unexecuted instantiation: sccp.c:zend_object_alloc
Unexecuted instantiation: scdf.c:zend_object_alloc
Unexecuted instantiation: zend_call_graph.c:zend_object_alloc
Unexecuted instantiation: zend_cfg.c:zend_object_alloc
Unexecuted instantiation: zend_dfg.c:zend_object_alloc
Unexecuted instantiation: zend_dump.c:zend_object_alloc
Unexecuted instantiation: zend_func_info.c:zend_object_alloc
Unexecuted instantiation: zend_inference.c:zend_object_alloc
Unexecuted instantiation: zend_optimizer.c:zend_object_alloc
Unexecuted instantiation: zend_ssa.c:zend_object_alloc
Unexecuted instantiation: zend_alloc.c:zend_object_alloc
Unexecuted instantiation: zend_API.c:zend_object_alloc
Unexecuted instantiation: zend_ast.c:zend_object_alloc
Unexecuted instantiation: zend_attributes.c:zend_object_alloc
Unexecuted instantiation: zend_builtin_functions.c:zend_object_alloc
Unexecuted instantiation: zend_call_stack.c:zend_object_alloc
Unexecuted instantiation: zend_closures.c:zend_object_alloc
Unexecuted instantiation: zend_compile.c:zend_object_alloc
Unexecuted instantiation: zend_constants.c:zend_object_alloc
Unexecuted instantiation: zend_default_classes.c:zend_object_alloc
Unexecuted instantiation: zend_dtrace.c:zend_object_alloc
Unexecuted instantiation: zend_enum.c:zend_object_alloc
Unexecuted instantiation: zend_exceptions.c:zend_object_alloc
Unexecuted instantiation: zend_execute_API.c:zend_object_alloc
Unexecuted instantiation: zend_execute.c:zend_object_alloc
Unexecuted instantiation: zend_extensions.c:zend_object_alloc
Unexecuted instantiation: zend_fibers.c:zend_object_alloc
Unexecuted instantiation: zend_float.c:zend_object_alloc
Unexecuted instantiation: zend_gc.c:zend_object_alloc
Unexecuted instantiation: zend_generators.c:zend_object_alloc
Unexecuted instantiation: zend_hash.c:zend_object_alloc
Unexecuted instantiation: zend_highlight.c:zend_object_alloc
Unexecuted instantiation: zend_inheritance.c:zend_object_alloc
Unexecuted instantiation: zend_ini_parser.c:zend_object_alloc
Unexecuted instantiation: zend_ini_scanner.c:zend_object_alloc
Unexecuted instantiation: zend_ini.c:zend_object_alloc
Unexecuted instantiation: zend_interfaces.c:zend_object_alloc
Unexecuted instantiation: zend_iterators.c:zend_object_alloc
Unexecuted instantiation: zend_language_parser.c:zend_object_alloc
Unexecuted instantiation: zend_language_scanner.c:zend_object_alloc
Unexecuted instantiation: zend_lazy_objects.c:zend_object_alloc
Unexecuted instantiation: zend_list.c:zend_object_alloc
Unexecuted instantiation: zend_multibyte.c:zend_object_alloc
Unexecuted instantiation: zend_object_handlers.c:zend_object_alloc
Unexecuted instantiation: zend_objects_API.c:zend_object_alloc
Unexecuted instantiation: zend_objects.c:zend_object_alloc
Unexecuted instantiation: zend_observer.c:zend_object_alloc
Unexecuted instantiation: zend_opcode.c:zend_object_alloc
Unexecuted instantiation: zend_operators.c:zend_object_alloc
Unexecuted instantiation: zend_property_hooks.c:zend_object_alloc
Unexecuted instantiation: zend_signal.c:zend_object_alloc
Unexecuted instantiation: zend_smart_str.c:zend_object_alloc
Unexecuted instantiation: zend_stream.c:zend_object_alloc
Unexecuted instantiation: zend_string.c:zend_object_alloc
Unexecuted instantiation: zend_strtod.c:zend_object_alloc
Unexecuted instantiation: zend_system_id.c:zend_object_alloc
Unexecuted instantiation: zend_variables.c:zend_object_alloc
zend_weakrefs.c:zend_object_alloc
Line
Count
Source
93
335
static zend_always_inline void *zend_object_alloc(size_t obj_size, zend_class_entry *ce) {
94
  void *obj = emalloc(obj_size + zend_object_properties_size(ce));
95
335
  memset(obj, 0, obj_size - sizeof(zend_object));
96
335
  return obj;
97
335
}
Unexecuted instantiation: zend.c:zend_object_alloc
Unexecuted instantiation: internal_functions_cli.c:zend_object_alloc
Unexecuted instantiation: fuzzer-function-jit.c:zend_object_alloc
Unexecuted instantiation: fuzzer-sapi.c:zend_object_alloc
98
99
ZEND_API ZEND_COLD zend_property_info *zend_get_property_info_for_slot_slow(zend_object *obj, zval *slot);
100
101
/* Use when 'slot' was obtained directly from obj->properties_table, or when
102
 * 'obj' can not be lazy. Otherwise, use zend_get_property_info_for_slot(). */
103
static inline zend_property_info *zend_get_property_info_for_slot_self(zend_object *obj, zval *slot)
104
720
{
105
720
  zend_property_info **table = obj->ce->properties_info_table;
106
720
  intptr_t prop_num = slot - obj->properties_table;
107
720
  ZEND_ASSERT(prop_num >= 0 && prop_num < obj->ce->default_properties_count);
108
720
  if (table[prop_num]) {
109
716
    return table[prop_num];
110
716
  } else {
111
4
    return zend_get_property_info_for_slot_slow(obj, slot);
112
4
  }
113
720
}
Unexecuted instantiation: php_date.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: php_pcre.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: exif.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: hash_adler32.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: hash_crc32.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: hash_fnv.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: hash_gost.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: hash_haval.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: hash_joaat.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: hash_md.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: hash_murmur.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: hash_ripemd.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: hash_sha_ni.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: hash_sha_sse2.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: hash_sha.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: hash_sha3.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: hash_snefru.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: hash_tiger.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: hash_whirlpool.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: hash_xxhash.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: hash.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: json_encoder.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: json_parser.tab.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: json_scanner.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: json.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: php_lexbor.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: shared_alloc_mmap.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: shared_alloc_posix.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: shared_alloc_shm.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_accelerator_api.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_accelerator_blacklist.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_accelerator_debug.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_accelerator_hash.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_accelerator_module.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_file_cache.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_persist_calc.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_persist.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_shared_alloc.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: ZendAccelerator.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_jit_vm_helpers.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_jit.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: csprng.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: engine_mt19937.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: engine_secure.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: engine_user.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: engine_xoshiro256starstar.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: gammasection.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: random.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: randomizer.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_utils.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: php_reflection.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: php_spl.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: spl_array.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: spl_directory.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: spl_dllist.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: spl_exceptions.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: spl_fixedarray.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: spl_functions.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: spl_heap.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: spl_iterators.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: spl_observer.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: array.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: assert.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: base64.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: basic_functions.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: browscap.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: crc32_x86.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: crc32.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: credits.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: crypt.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: css.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: datetime.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: dir.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: dl.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: dns.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: exec.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: file.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: filestat.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: filters.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: flock_compat.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: formatted_print.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: fsock.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: ftok.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: ftp_fopen_wrapper.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: head.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: hrtime.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: html.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: http_fopen_wrapper.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: http.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: image.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: incomplete_class.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: info.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: iptc.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: levenshtein.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: link.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: mail.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: math.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: md5.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: metaphone.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: microtime.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: net.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: pack.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: pageinfo.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: password.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: php_fopen_wrapper.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: proc_open.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: quot_print.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: scanf.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: sha1.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: soundex.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: streamsfuncs.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: string.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: strnatcmp.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: syslog.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: type.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: uniqid.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: url_scanner_ex.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: url.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: user_filters.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: uuencode.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: var_unserializer.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: var.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: versioning.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: crypt_sha256.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: crypt_sha512.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: php_crypt_r.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: php_uri.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: php_uri_common.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: uri_parser_rfc3986.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: uri_parser_whatwg.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: uri_parser_php_parse_url.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: explicit_bzero.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: fopen_wrappers.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: getopt.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: main.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: network.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: output.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: php_content_types.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: php_ini_builder.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: php_ini.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: php_glob.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: php_odbc_utils.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: php_open_temporary_file.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: php_scandir.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: php_syslog.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: php_ticks.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: php_variables.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: reentrancy.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: rfc1867.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: safe_bcmp.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: SAPI.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: snprintf.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: spprintf.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: strlcat.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: strlcpy.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: cast.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: filter.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: glob_wrapper.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: memory.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: mmap.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: plain_wrapper.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: streams.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: transports.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: userspace.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: xp_socket.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: block_pass.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: compact_literals.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: compact_vars.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: dce.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: dfa_pass.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: escape_analysis.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: nop_removal.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: optimize_func_calls.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: optimize_temp_vars_5.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: pass1.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: pass3.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: sccp.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: scdf.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_call_graph.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_cfg.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_dfg.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_dump.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_func_info.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_inference.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_optimizer.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_ssa.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_alloc.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_API.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_ast.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_attributes.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_builtin_functions.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_call_stack.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_closures.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_compile.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_constants.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_default_classes.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_dtrace.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_enum.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_exceptions.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_execute_API.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_execute.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_extensions.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_fibers.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_float.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_gc.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_generators.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_hash.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_highlight.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_inheritance.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_ini_parser.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_ini_scanner.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_ini.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_interfaces.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_iterators.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_language_parser.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_language_scanner.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_lazy_objects.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_list.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_multibyte.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_object_handlers.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_objects_API.c:zend_get_property_info_for_slot_self
zend_objects.c:zend_get_property_info_for_slot_self
Line
Count
Source
104
720
{
105
720
  zend_property_info **table = obj->ce->properties_info_table;
106
720
  intptr_t prop_num = slot - obj->properties_table;
107
720
  ZEND_ASSERT(prop_num >= 0 && prop_num < obj->ce->default_properties_count);
108
720
  if (table[prop_num]) {
109
716
    return table[prop_num];
110
716
  } else {
111
4
    return zend_get_property_info_for_slot_slow(obj, slot);
112
4
  }
113
720
}
Unexecuted instantiation: zend_observer.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_opcode.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_operators.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_property_hooks.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_signal.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_smart_str.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_stream.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_string.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_strtod.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_system_id.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_variables.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend_weakrefs.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: zend.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: internal_functions_cli.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: fuzzer-function-jit.c:zend_get_property_info_for_slot_self
Unexecuted instantiation: fuzzer-sapi.c:zend_get_property_info_for_slot_self
114
115
static inline zend_property_info *zend_get_property_info_for_slot(zend_object *obj, zval *slot)
116
2.61k
{
117
2.61k
  if (UNEXPECTED(zend_object_is_lazy_proxy(obj))) {
118
188
    return zend_lazy_object_get_property_info_for_slot(obj, slot);
119
188
  }
120
2.42k
  zend_property_info **table = obj->ce->properties_info_table;
121
2.42k
  intptr_t prop_num = slot - obj->properties_table;
122
2.42k
  ZEND_ASSERT(prop_num >= 0 && prop_num < obj->ce->default_properties_count);
123
2.42k
  if (table[prop_num]) {
124
2.36k
    return table[prop_num];
125
2.36k
  } else {
126
60
    return zend_get_property_info_for_slot_slow(obj, slot);
127
60
  }
128
2.42k
}
Unexecuted instantiation: php_date.c:zend_get_property_info_for_slot
Unexecuted instantiation: php_pcre.c:zend_get_property_info_for_slot
Unexecuted instantiation: exif.c:zend_get_property_info_for_slot
Unexecuted instantiation: hash_adler32.c:zend_get_property_info_for_slot
Unexecuted instantiation: hash_crc32.c:zend_get_property_info_for_slot
Unexecuted instantiation: hash_fnv.c:zend_get_property_info_for_slot
Unexecuted instantiation: hash_gost.c:zend_get_property_info_for_slot
Unexecuted instantiation: hash_haval.c:zend_get_property_info_for_slot
Unexecuted instantiation: hash_joaat.c:zend_get_property_info_for_slot
Unexecuted instantiation: hash_md.c:zend_get_property_info_for_slot
Unexecuted instantiation: hash_murmur.c:zend_get_property_info_for_slot
Unexecuted instantiation: hash_ripemd.c:zend_get_property_info_for_slot
Unexecuted instantiation: hash_sha_ni.c:zend_get_property_info_for_slot
Unexecuted instantiation: hash_sha_sse2.c:zend_get_property_info_for_slot
Unexecuted instantiation: hash_sha.c:zend_get_property_info_for_slot
Unexecuted instantiation: hash_sha3.c:zend_get_property_info_for_slot
Unexecuted instantiation: hash_snefru.c:zend_get_property_info_for_slot
Unexecuted instantiation: hash_tiger.c:zend_get_property_info_for_slot
Unexecuted instantiation: hash_whirlpool.c:zend_get_property_info_for_slot
Unexecuted instantiation: hash_xxhash.c:zend_get_property_info_for_slot
Unexecuted instantiation: hash.c:zend_get_property_info_for_slot
Unexecuted instantiation: json_encoder.c:zend_get_property_info_for_slot
Unexecuted instantiation: json_parser.tab.c:zend_get_property_info_for_slot
Unexecuted instantiation: json_scanner.c:zend_get_property_info_for_slot
Unexecuted instantiation: json.c:zend_get_property_info_for_slot
Unexecuted instantiation: php_lexbor.c:zend_get_property_info_for_slot
Unexecuted instantiation: shared_alloc_mmap.c:zend_get_property_info_for_slot
Unexecuted instantiation: shared_alloc_posix.c:zend_get_property_info_for_slot
Unexecuted instantiation: shared_alloc_shm.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_accelerator_api.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_accelerator_blacklist.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_accelerator_debug.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_accelerator_hash.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_accelerator_module.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_file_cache.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_persist_calc.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_persist.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_shared_alloc.c:zend_get_property_info_for_slot
Unexecuted instantiation: ZendAccelerator.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_jit_vm_helpers.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_jit.c:zend_get_property_info_for_slot
Unexecuted instantiation: csprng.c:zend_get_property_info_for_slot
Unexecuted instantiation: engine_mt19937.c:zend_get_property_info_for_slot
Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_get_property_info_for_slot
Unexecuted instantiation: engine_secure.c:zend_get_property_info_for_slot
Unexecuted instantiation: engine_user.c:zend_get_property_info_for_slot
Unexecuted instantiation: engine_xoshiro256starstar.c:zend_get_property_info_for_slot
Unexecuted instantiation: gammasection.c:zend_get_property_info_for_slot
Unexecuted instantiation: random.c:zend_get_property_info_for_slot
Unexecuted instantiation: randomizer.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_utils.c:zend_get_property_info_for_slot
Unexecuted instantiation: php_reflection.c:zend_get_property_info_for_slot
Unexecuted instantiation: php_spl.c:zend_get_property_info_for_slot
Unexecuted instantiation: spl_array.c:zend_get_property_info_for_slot
Unexecuted instantiation: spl_directory.c:zend_get_property_info_for_slot
Unexecuted instantiation: spl_dllist.c:zend_get_property_info_for_slot
Unexecuted instantiation: spl_exceptions.c:zend_get_property_info_for_slot
Unexecuted instantiation: spl_fixedarray.c:zend_get_property_info_for_slot
Unexecuted instantiation: spl_functions.c:zend_get_property_info_for_slot
Unexecuted instantiation: spl_heap.c:zend_get_property_info_for_slot
Unexecuted instantiation: spl_iterators.c:zend_get_property_info_for_slot
Unexecuted instantiation: spl_observer.c:zend_get_property_info_for_slot
array.c:zend_get_property_info_for_slot
Line
Count
Source
116
34
{
117
34
  if (UNEXPECTED(zend_object_is_lazy_proxy(obj))) {
118
2
    return zend_lazy_object_get_property_info_for_slot(obj, slot);
119
2
  }
120
32
  zend_property_info **table = obj->ce->properties_info_table;
121
32
  intptr_t prop_num = slot - obj->properties_table;
122
32
  ZEND_ASSERT(prop_num >= 0 && prop_num < obj->ce->default_properties_count);
123
32
  if (table[prop_num]) {
124
28
    return table[prop_num];
125
28
  } else {
126
4
    return zend_get_property_info_for_slot_slow(obj, slot);
127
4
  }
128
32
}
Unexecuted instantiation: assert.c:zend_get_property_info_for_slot
Unexecuted instantiation: base64.c:zend_get_property_info_for_slot
Unexecuted instantiation: basic_functions.c:zend_get_property_info_for_slot
Unexecuted instantiation: browscap.c:zend_get_property_info_for_slot
Unexecuted instantiation: crc32_x86.c:zend_get_property_info_for_slot
Unexecuted instantiation: crc32.c:zend_get_property_info_for_slot
Unexecuted instantiation: credits.c:zend_get_property_info_for_slot
Unexecuted instantiation: crypt.c:zend_get_property_info_for_slot
Unexecuted instantiation: css.c:zend_get_property_info_for_slot
Unexecuted instantiation: datetime.c:zend_get_property_info_for_slot
Unexecuted instantiation: dir.c:zend_get_property_info_for_slot
Unexecuted instantiation: dl.c:zend_get_property_info_for_slot
Unexecuted instantiation: dns.c:zend_get_property_info_for_slot
Unexecuted instantiation: exec.c:zend_get_property_info_for_slot
Unexecuted instantiation: file.c:zend_get_property_info_for_slot
Unexecuted instantiation: filestat.c:zend_get_property_info_for_slot
Unexecuted instantiation: filters.c:zend_get_property_info_for_slot
Unexecuted instantiation: flock_compat.c:zend_get_property_info_for_slot
Unexecuted instantiation: formatted_print.c:zend_get_property_info_for_slot
Unexecuted instantiation: fsock.c:zend_get_property_info_for_slot
Unexecuted instantiation: ftok.c:zend_get_property_info_for_slot
Unexecuted instantiation: ftp_fopen_wrapper.c:zend_get_property_info_for_slot
Unexecuted instantiation: head.c:zend_get_property_info_for_slot
Unexecuted instantiation: hrtime.c:zend_get_property_info_for_slot
Unexecuted instantiation: html.c:zend_get_property_info_for_slot
Unexecuted instantiation: http_fopen_wrapper.c:zend_get_property_info_for_slot
Unexecuted instantiation: http.c:zend_get_property_info_for_slot
Unexecuted instantiation: image.c:zend_get_property_info_for_slot
Unexecuted instantiation: incomplete_class.c:zend_get_property_info_for_slot
Unexecuted instantiation: info.c:zend_get_property_info_for_slot
Unexecuted instantiation: iptc.c:zend_get_property_info_for_slot
Unexecuted instantiation: levenshtein.c:zend_get_property_info_for_slot
Unexecuted instantiation: link.c:zend_get_property_info_for_slot
Unexecuted instantiation: mail.c:zend_get_property_info_for_slot
Unexecuted instantiation: math.c:zend_get_property_info_for_slot
Unexecuted instantiation: md5.c:zend_get_property_info_for_slot
Unexecuted instantiation: metaphone.c:zend_get_property_info_for_slot
Unexecuted instantiation: microtime.c:zend_get_property_info_for_slot
Unexecuted instantiation: net.c:zend_get_property_info_for_slot
Unexecuted instantiation: pack.c:zend_get_property_info_for_slot
Unexecuted instantiation: pageinfo.c:zend_get_property_info_for_slot
Unexecuted instantiation: password.c:zend_get_property_info_for_slot
Unexecuted instantiation: php_fopen_wrapper.c:zend_get_property_info_for_slot
Unexecuted instantiation: proc_open.c:zend_get_property_info_for_slot
Unexecuted instantiation: quot_print.c:zend_get_property_info_for_slot
Unexecuted instantiation: scanf.c:zend_get_property_info_for_slot
Unexecuted instantiation: sha1.c:zend_get_property_info_for_slot
Unexecuted instantiation: soundex.c:zend_get_property_info_for_slot
Unexecuted instantiation: streamsfuncs.c:zend_get_property_info_for_slot
Unexecuted instantiation: string.c:zend_get_property_info_for_slot
Unexecuted instantiation: strnatcmp.c:zend_get_property_info_for_slot
Unexecuted instantiation: syslog.c:zend_get_property_info_for_slot
Unexecuted instantiation: type.c:zend_get_property_info_for_slot
Unexecuted instantiation: uniqid.c:zend_get_property_info_for_slot
Unexecuted instantiation: url_scanner_ex.c:zend_get_property_info_for_slot
Unexecuted instantiation: url.c:zend_get_property_info_for_slot
Unexecuted instantiation: user_filters.c:zend_get_property_info_for_slot
Unexecuted instantiation: uuencode.c:zend_get_property_info_for_slot
var_unserializer.c:zend_get_property_info_for_slot
Line
Count
Source
116
304
{
117
304
  if (UNEXPECTED(zend_object_is_lazy_proxy(obj))) {
118
0
    return zend_lazy_object_get_property_info_for_slot(obj, slot);
119
0
  }
120
304
  zend_property_info **table = obj->ce->properties_info_table;
121
304
  intptr_t prop_num = slot - obj->properties_table;
122
304
  ZEND_ASSERT(prop_num >= 0 && prop_num < obj->ce->default_properties_count);
123
304
  if (table[prop_num]) {
124
294
    return table[prop_num];
125
294
  } else {
126
10
    return zend_get_property_info_for_slot_slow(obj, slot);
127
10
  }
128
304
}
var.c:zend_get_property_info_for_slot
Line
Count
Source
116
2.23k
{
117
2.23k
  if (UNEXPECTED(zend_object_is_lazy_proxy(obj))) {
118
182
    return zend_lazy_object_get_property_info_for_slot(obj, slot);
119
182
  }
120
2.05k
  zend_property_info **table = obj->ce->properties_info_table;
121
2.05k
  intptr_t prop_num = slot - obj->properties_table;
122
2.05k
  ZEND_ASSERT(prop_num >= 0 && prop_num < obj->ce->default_properties_count);
123
2.05k
  if (table[prop_num]) {
124
2.01k
    return table[prop_num];
125
2.01k
  } else {
126
46
    return zend_get_property_info_for_slot_slow(obj, slot);
127
46
  }
128
2.05k
}
Unexecuted instantiation: versioning.c:zend_get_property_info_for_slot
Unexecuted instantiation: crypt_sha256.c:zend_get_property_info_for_slot
Unexecuted instantiation: crypt_sha512.c:zend_get_property_info_for_slot
Unexecuted instantiation: php_crypt_r.c:zend_get_property_info_for_slot
Unexecuted instantiation: php_uri.c:zend_get_property_info_for_slot
Unexecuted instantiation: php_uri_common.c:zend_get_property_info_for_slot
Unexecuted instantiation: uri_parser_rfc3986.c:zend_get_property_info_for_slot
Unexecuted instantiation: uri_parser_whatwg.c:zend_get_property_info_for_slot
Unexecuted instantiation: uri_parser_php_parse_url.c:zend_get_property_info_for_slot
Unexecuted instantiation: explicit_bzero.c:zend_get_property_info_for_slot
Unexecuted instantiation: fopen_wrappers.c:zend_get_property_info_for_slot
Unexecuted instantiation: getopt.c:zend_get_property_info_for_slot
Unexecuted instantiation: main.c:zend_get_property_info_for_slot
Unexecuted instantiation: network.c:zend_get_property_info_for_slot
Unexecuted instantiation: output.c:zend_get_property_info_for_slot
Unexecuted instantiation: php_content_types.c:zend_get_property_info_for_slot
Unexecuted instantiation: php_ini_builder.c:zend_get_property_info_for_slot
Unexecuted instantiation: php_ini.c:zend_get_property_info_for_slot
Unexecuted instantiation: php_glob.c:zend_get_property_info_for_slot
Unexecuted instantiation: php_odbc_utils.c:zend_get_property_info_for_slot
Unexecuted instantiation: php_open_temporary_file.c:zend_get_property_info_for_slot
Unexecuted instantiation: php_scandir.c:zend_get_property_info_for_slot
Unexecuted instantiation: php_syslog.c:zend_get_property_info_for_slot
Unexecuted instantiation: php_ticks.c:zend_get_property_info_for_slot
Unexecuted instantiation: php_variables.c:zend_get_property_info_for_slot
Unexecuted instantiation: reentrancy.c:zend_get_property_info_for_slot
Unexecuted instantiation: rfc1867.c:zend_get_property_info_for_slot
Unexecuted instantiation: safe_bcmp.c:zend_get_property_info_for_slot
Unexecuted instantiation: SAPI.c:zend_get_property_info_for_slot
Unexecuted instantiation: snprintf.c:zend_get_property_info_for_slot
Unexecuted instantiation: spprintf.c:zend_get_property_info_for_slot
Unexecuted instantiation: strlcat.c:zend_get_property_info_for_slot
Unexecuted instantiation: strlcpy.c:zend_get_property_info_for_slot
Unexecuted instantiation: cast.c:zend_get_property_info_for_slot
Unexecuted instantiation: filter.c:zend_get_property_info_for_slot
Unexecuted instantiation: glob_wrapper.c:zend_get_property_info_for_slot
Unexecuted instantiation: memory.c:zend_get_property_info_for_slot
Unexecuted instantiation: mmap.c:zend_get_property_info_for_slot
Unexecuted instantiation: plain_wrapper.c:zend_get_property_info_for_slot
Unexecuted instantiation: streams.c:zend_get_property_info_for_slot
Unexecuted instantiation: transports.c:zend_get_property_info_for_slot
Unexecuted instantiation: userspace.c:zend_get_property_info_for_slot
Unexecuted instantiation: xp_socket.c:zend_get_property_info_for_slot
Unexecuted instantiation: block_pass.c:zend_get_property_info_for_slot
Unexecuted instantiation: compact_literals.c:zend_get_property_info_for_slot
Unexecuted instantiation: compact_vars.c:zend_get_property_info_for_slot
Unexecuted instantiation: dce.c:zend_get_property_info_for_slot
Unexecuted instantiation: dfa_pass.c:zend_get_property_info_for_slot
Unexecuted instantiation: escape_analysis.c:zend_get_property_info_for_slot
Unexecuted instantiation: nop_removal.c:zend_get_property_info_for_slot
Unexecuted instantiation: optimize_func_calls.c:zend_get_property_info_for_slot
Unexecuted instantiation: optimize_temp_vars_5.c:zend_get_property_info_for_slot
Unexecuted instantiation: pass1.c:zend_get_property_info_for_slot
Unexecuted instantiation: pass3.c:zend_get_property_info_for_slot
Unexecuted instantiation: sccp.c:zend_get_property_info_for_slot
Unexecuted instantiation: scdf.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_call_graph.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_cfg.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_dfg.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_dump.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_func_info.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_inference.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_optimizer.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_ssa.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_alloc.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_API.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_ast.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_attributes.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_builtin_functions.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_call_stack.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_closures.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_compile.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_constants.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_default_classes.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_dtrace.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_enum.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_exceptions.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_execute_API.c:zend_get_property_info_for_slot
zend_execute.c:zend_get_property_info_for_slot
Line
Count
Source
116
28
{
117
28
  if (UNEXPECTED(zend_object_is_lazy_proxy(obj))) {
118
4
    return zend_lazy_object_get_property_info_for_slot(obj, slot);
119
4
  }
120
24
  zend_property_info **table = obj->ce->properties_info_table;
121
24
  intptr_t prop_num = slot - obj->properties_table;
122
24
  ZEND_ASSERT(prop_num >= 0 && prop_num < obj->ce->default_properties_count);
123
24
  if (table[prop_num]) {
124
24
    return table[prop_num];
125
24
  } else {
126
0
    return zend_get_property_info_for_slot_slow(obj, slot);
127
0
  }
128
24
}
Unexecuted instantiation: zend_extensions.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_fibers.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_float.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_gc.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_generators.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_hash.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_highlight.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_inheritance.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_ini_parser.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_ini_scanner.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_ini.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_interfaces.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_iterators.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_language_parser.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_language_scanner.c:zend_get_property_info_for_slot
zend_lazy_objects.c:zend_get_property_info_for_slot
Line
Count
Source
116
10
{
117
10
  if (UNEXPECTED(zend_object_is_lazy_proxy(obj))) {
118
0
    return zend_lazy_object_get_property_info_for_slot(obj, slot);
119
0
  }
120
10
  zend_property_info **table = obj->ce->properties_info_table;
121
10
  intptr_t prop_num = slot - obj->properties_table;
122
10
  ZEND_ASSERT(prop_num >= 0 && prop_num < obj->ce->default_properties_count);
123
10
  if (table[prop_num]) {
124
10
    return table[prop_num];
125
10
  } else {
126
0
    return zend_get_property_info_for_slot_slow(obj, slot);
127
0
  }
128
10
}
Unexecuted instantiation: zend_list.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_multibyte.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_object_handlers.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_objects_API.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_objects.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_observer.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_opcode.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_operators.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_property_hooks.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_signal.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_smart_str.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_stream.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_string.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_strtod.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_system_id.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_variables.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend_weakrefs.c:zend_get_property_info_for_slot
Unexecuted instantiation: zend.c:zend_get_property_info_for_slot
Unexecuted instantiation: internal_functions_cli.c:zend_get_property_info_for_slot
Unexecuted instantiation: fuzzer-function-jit.c:zend_get_property_info_for_slot
Unexecuted instantiation: fuzzer-sapi.c:zend_get_property_info_for_slot
129
130
/* Helper for cases where we're only interested in property info of typed properties. */
131
static inline zend_property_info *zend_get_typed_property_info_for_slot(zend_object *obj, zval *slot)
132
2.57k
{
133
2.57k
  zend_property_info *prop_info = zend_get_property_info_for_slot(obj, slot);
134
2.57k
  if (prop_info && ZEND_TYPE_IS_SET(prop_info->type)) {
135
1.45k
    return prop_info;
136
1.45k
  }
137
1.11k
  return NULL;
138
2.57k
}
Unexecuted instantiation: php_date.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: php_pcre.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: exif.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: hash_adler32.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: hash_crc32.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: hash_fnv.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: hash_gost.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: hash_haval.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: hash_joaat.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: hash_md.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: hash_murmur.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: hash_ripemd.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: hash_sha_ni.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: hash_sha_sse2.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: hash_sha.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: hash_sha3.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: hash_snefru.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: hash_tiger.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: hash_whirlpool.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: hash_xxhash.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: hash.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: json_encoder.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: json_parser.tab.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: json_scanner.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: json.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: php_lexbor.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: shared_alloc_mmap.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: shared_alloc_posix.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: shared_alloc_shm.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_accelerator_api.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_accelerator_blacklist.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_accelerator_debug.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_accelerator_hash.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_accelerator_module.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_file_cache.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_persist_calc.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_persist.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_shared_alloc.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: ZendAccelerator.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_jit_vm_helpers.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_jit.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: csprng.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: engine_mt19937.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: engine_secure.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: engine_user.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: engine_xoshiro256starstar.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: gammasection.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: random.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: randomizer.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_utils.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: php_reflection.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: php_spl.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: spl_array.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: spl_directory.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: spl_dllist.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: spl_exceptions.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: spl_fixedarray.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: spl_functions.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: spl_heap.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: spl_iterators.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: spl_observer.c:zend_get_typed_property_info_for_slot
array.c:zend_get_typed_property_info_for_slot
Line
Count
Source
132
34
{
133
34
  zend_property_info *prop_info = zend_get_property_info_for_slot(obj, slot);
134
34
  if (prop_info && ZEND_TYPE_IS_SET(prop_info->type)) {
135
22
    return prop_info;
136
22
  }
137
12
  return NULL;
138
34
}
Unexecuted instantiation: assert.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: base64.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: basic_functions.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: browscap.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: crc32_x86.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: crc32.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: credits.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: crypt.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: css.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: datetime.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: dir.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: dl.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: dns.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: exec.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: file.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: filestat.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: filters.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: flock_compat.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: formatted_print.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: fsock.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: ftok.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: ftp_fopen_wrapper.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: head.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: hrtime.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: html.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: http_fopen_wrapper.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: http.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: image.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: incomplete_class.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: info.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: iptc.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: levenshtein.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: link.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: mail.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: math.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: md5.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: metaphone.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: microtime.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: net.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: pack.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: pageinfo.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: password.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: php_fopen_wrapper.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: proc_open.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: quot_print.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: scanf.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: sha1.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: soundex.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: streamsfuncs.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: string.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: strnatcmp.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: syslog.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: type.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: uniqid.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: url_scanner_ex.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: url.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: user_filters.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: uuencode.c:zend_get_typed_property_info_for_slot
var_unserializer.c:zend_get_typed_property_info_for_slot
Line
Count
Source
132
304
{
133
304
  zend_property_info *prop_info = zend_get_property_info_for_slot(obj, slot);
134
304
  if (prop_info && ZEND_TYPE_IS_SET(prop_info->type)) {
135
208
    return prop_info;
136
208
  }
137
96
  return NULL;
138
304
}
var.c:zend_get_typed_property_info_for_slot
Line
Count
Source
132
2.23k
{
133
2.23k
  zend_property_info *prop_info = zend_get_property_info_for_slot(obj, slot);
134
2.23k
  if (prop_info && ZEND_TYPE_IS_SET(prop_info->type)) {
135
1.22k
    return prop_info;
136
1.22k
  }
137
1.01k
  return NULL;
138
2.23k
}
Unexecuted instantiation: versioning.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: crypt_sha256.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: crypt_sha512.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: php_crypt_r.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: php_uri.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: php_uri_common.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: uri_parser_rfc3986.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: uri_parser_whatwg.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: uri_parser_php_parse_url.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: explicit_bzero.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: fopen_wrappers.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: getopt.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: main.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: network.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: output.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: php_content_types.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: php_ini_builder.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: php_ini.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: php_glob.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: php_odbc_utils.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: php_open_temporary_file.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: php_scandir.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: php_syslog.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: php_ticks.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: php_variables.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: reentrancy.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: rfc1867.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: safe_bcmp.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: SAPI.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: snprintf.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: spprintf.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: strlcat.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: strlcpy.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: cast.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: filter.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: glob_wrapper.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: memory.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: mmap.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: plain_wrapper.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: streams.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: transports.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: userspace.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: xp_socket.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: block_pass.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: compact_literals.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: compact_vars.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: dce.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: dfa_pass.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: escape_analysis.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: nop_removal.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: optimize_func_calls.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: optimize_temp_vars_5.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: pass1.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: pass3.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: sccp.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: scdf.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_call_graph.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_cfg.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_dfg.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_dump.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_func_info.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_inference.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_optimizer.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_ssa.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_alloc.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_API.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_ast.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_attributes.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_builtin_functions.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_call_stack.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_closures.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_compile.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_constants.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_default_classes.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_dtrace.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_enum.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_exceptions.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_execute_API.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_execute.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_extensions.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_fibers.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_float.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_gc.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_generators.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_hash.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_highlight.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_inheritance.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_ini_parser.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_ini_scanner.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_ini.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_interfaces.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_iterators.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_language_parser.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_language_scanner.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_lazy_objects.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_list.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_multibyte.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_object_handlers.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_objects_API.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_objects.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_observer.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_opcode.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_operators.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_property_hooks.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_signal.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_smart_str.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_stream.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_string.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_strtod.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_system_id.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_variables.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend_weakrefs.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: zend.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: internal_functions_cli.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: fuzzer-function-jit.c:zend_get_typed_property_info_for_slot
Unexecuted instantiation: fuzzer-sapi.c:zend_get_typed_property_info_for_slot
139
140
static zend_always_inline bool zend_check_method_accessible(const zend_function *fn, const zend_class_entry *scope)
141
440
{
142
440
  if (!(fn->common.fn_flags & ZEND_ACC_PUBLIC)
143
326
    && fn->common.scope != scope
144
200
    && (UNEXPECTED(fn->common.fn_flags & ZEND_ACC_PRIVATE)
145
134
      || UNEXPECTED(!zend_check_protected(zend_get_function_root_class(fn), scope)))) {
146
134
    return false;
147
134
  }
148
149
306
  return true;
150
440
}
Unexecuted instantiation: php_date.c:zend_check_method_accessible
Unexecuted instantiation: php_pcre.c:zend_check_method_accessible
Unexecuted instantiation: exif.c:zend_check_method_accessible
Unexecuted instantiation: hash_adler32.c:zend_check_method_accessible
Unexecuted instantiation: hash_crc32.c:zend_check_method_accessible
Unexecuted instantiation: hash_fnv.c:zend_check_method_accessible
Unexecuted instantiation: hash_gost.c:zend_check_method_accessible
Unexecuted instantiation: hash_haval.c:zend_check_method_accessible
Unexecuted instantiation: hash_joaat.c:zend_check_method_accessible
Unexecuted instantiation: hash_md.c:zend_check_method_accessible
Unexecuted instantiation: hash_murmur.c:zend_check_method_accessible
Unexecuted instantiation: hash_ripemd.c:zend_check_method_accessible
Unexecuted instantiation: hash_sha_ni.c:zend_check_method_accessible
Unexecuted instantiation: hash_sha_sse2.c:zend_check_method_accessible
Unexecuted instantiation: hash_sha.c:zend_check_method_accessible
Unexecuted instantiation: hash_sha3.c:zend_check_method_accessible
Unexecuted instantiation: hash_snefru.c:zend_check_method_accessible
Unexecuted instantiation: hash_tiger.c:zend_check_method_accessible
Unexecuted instantiation: hash_whirlpool.c:zend_check_method_accessible
Unexecuted instantiation: hash_xxhash.c:zend_check_method_accessible
Unexecuted instantiation: hash.c:zend_check_method_accessible
Unexecuted instantiation: json_encoder.c:zend_check_method_accessible
Unexecuted instantiation: json_parser.tab.c:zend_check_method_accessible
Unexecuted instantiation: json_scanner.c:zend_check_method_accessible
Unexecuted instantiation: json.c:zend_check_method_accessible
Unexecuted instantiation: php_lexbor.c:zend_check_method_accessible
Unexecuted instantiation: shared_alloc_mmap.c:zend_check_method_accessible
Unexecuted instantiation: shared_alloc_posix.c:zend_check_method_accessible
Unexecuted instantiation: shared_alloc_shm.c:zend_check_method_accessible
Unexecuted instantiation: zend_accelerator_api.c:zend_check_method_accessible
Unexecuted instantiation: zend_accelerator_blacklist.c:zend_check_method_accessible
Unexecuted instantiation: zend_accelerator_debug.c:zend_check_method_accessible
Unexecuted instantiation: zend_accelerator_hash.c:zend_check_method_accessible
Unexecuted instantiation: zend_accelerator_module.c:zend_check_method_accessible
Unexecuted instantiation: zend_accelerator_util_funcs.c:zend_check_method_accessible
Unexecuted instantiation: zend_file_cache.c:zend_check_method_accessible
Unexecuted instantiation: zend_persist_calc.c:zend_check_method_accessible
Unexecuted instantiation: zend_persist.c:zend_check_method_accessible
Unexecuted instantiation: zend_shared_alloc.c:zend_check_method_accessible
Unexecuted instantiation: ZendAccelerator.c:zend_check_method_accessible
Unexecuted instantiation: zend_jit_vm_helpers.c:zend_check_method_accessible
Unexecuted instantiation: zend_jit.c:zend_check_method_accessible
Unexecuted instantiation: csprng.c:zend_check_method_accessible
Unexecuted instantiation: engine_mt19937.c:zend_check_method_accessible
Unexecuted instantiation: engine_pcgoneseq128xslrr64.c:zend_check_method_accessible
Unexecuted instantiation: engine_secure.c:zend_check_method_accessible
Unexecuted instantiation: engine_user.c:zend_check_method_accessible
Unexecuted instantiation: engine_xoshiro256starstar.c:zend_check_method_accessible
Unexecuted instantiation: gammasection.c:zend_check_method_accessible
Unexecuted instantiation: random.c:zend_check_method_accessible
Unexecuted instantiation: randomizer.c:zend_check_method_accessible
Unexecuted instantiation: zend_utils.c:zend_check_method_accessible
Unexecuted instantiation: php_reflection.c:zend_check_method_accessible
Unexecuted instantiation: php_spl.c:zend_check_method_accessible
Unexecuted instantiation: spl_array.c:zend_check_method_accessible
Unexecuted instantiation: spl_directory.c:zend_check_method_accessible
Unexecuted instantiation: spl_dllist.c:zend_check_method_accessible
Unexecuted instantiation: spl_exceptions.c:zend_check_method_accessible
Unexecuted instantiation: spl_fixedarray.c:zend_check_method_accessible
Unexecuted instantiation: spl_functions.c:zend_check_method_accessible
Unexecuted instantiation: spl_heap.c:zend_check_method_accessible
Unexecuted instantiation: spl_iterators.c:zend_check_method_accessible
Unexecuted instantiation: spl_observer.c:zend_check_method_accessible
Unexecuted instantiation: array.c:zend_check_method_accessible
Unexecuted instantiation: assert.c:zend_check_method_accessible
Unexecuted instantiation: base64.c:zend_check_method_accessible
Unexecuted instantiation: basic_functions.c:zend_check_method_accessible
Unexecuted instantiation: browscap.c:zend_check_method_accessible
Unexecuted instantiation: crc32_x86.c:zend_check_method_accessible
Unexecuted instantiation: crc32.c:zend_check_method_accessible
Unexecuted instantiation: credits.c:zend_check_method_accessible
Unexecuted instantiation: crypt.c:zend_check_method_accessible
Unexecuted instantiation: css.c:zend_check_method_accessible
Unexecuted instantiation: datetime.c:zend_check_method_accessible
Unexecuted instantiation: dir.c:zend_check_method_accessible
Unexecuted instantiation: dl.c:zend_check_method_accessible
Unexecuted instantiation: dns.c:zend_check_method_accessible
Unexecuted instantiation: exec.c:zend_check_method_accessible
Unexecuted instantiation: file.c:zend_check_method_accessible
Unexecuted instantiation: filestat.c:zend_check_method_accessible
Unexecuted instantiation: filters.c:zend_check_method_accessible
Unexecuted instantiation: flock_compat.c:zend_check_method_accessible
Unexecuted instantiation: formatted_print.c:zend_check_method_accessible
Unexecuted instantiation: fsock.c:zend_check_method_accessible
Unexecuted instantiation: ftok.c:zend_check_method_accessible
Unexecuted instantiation: ftp_fopen_wrapper.c:zend_check_method_accessible
Unexecuted instantiation: head.c:zend_check_method_accessible
Unexecuted instantiation: hrtime.c:zend_check_method_accessible
Unexecuted instantiation: html.c:zend_check_method_accessible
Unexecuted instantiation: http_fopen_wrapper.c:zend_check_method_accessible
Unexecuted instantiation: http.c:zend_check_method_accessible
Unexecuted instantiation: image.c:zend_check_method_accessible
Unexecuted instantiation: incomplete_class.c:zend_check_method_accessible
Unexecuted instantiation: info.c:zend_check_method_accessible
Unexecuted instantiation: iptc.c:zend_check_method_accessible
Unexecuted instantiation: levenshtein.c:zend_check_method_accessible
Unexecuted instantiation: link.c:zend_check_method_accessible
Unexecuted instantiation: mail.c:zend_check_method_accessible
Unexecuted instantiation: math.c:zend_check_method_accessible
Unexecuted instantiation: md5.c:zend_check_method_accessible
Unexecuted instantiation: metaphone.c:zend_check_method_accessible
Unexecuted instantiation: microtime.c:zend_check_method_accessible
Unexecuted instantiation: net.c:zend_check_method_accessible
Unexecuted instantiation: pack.c:zend_check_method_accessible
Unexecuted instantiation: pageinfo.c:zend_check_method_accessible
Unexecuted instantiation: password.c:zend_check_method_accessible
Unexecuted instantiation: php_fopen_wrapper.c:zend_check_method_accessible
Unexecuted instantiation: proc_open.c:zend_check_method_accessible
Unexecuted instantiation: quot_print.c:zend_check_method_accessible
Unexecuted instantiation: scanf.c:zend_check_method_accessible
Unexecuted instantiation: sha1.c:zend_check_method_accessible
Unexecuted instantiation: soundex.c:zend_check_method_accessible
Unexecuted instantiation: streamsfuncs.c:zend_check_method_accessible
Unexecuted instantiation: string.c:zend_check_method_accessible
Unexecuted instantiation: strnatcmp.c:zend_check_method_accessible
Unexecuted instantiation: syslog.c:zend_check_method_accessible
Unexecuted instantiation: type.c:zend_check_method_accessible
Unexecuted instantiation: uniqid.c:zend_check_method_accessible
Unexecuted instantiation: url_scanner_ex.c:zend_check_method_accessible
Unexecuted instantiation: url.c:zend_check_method_accessible
Unexecuted instantiation: user_filters.c:zend_check_method_accessible
Unexecuted instantiation: uuencode.c:zend_check_method_accessible
Unexecuted instantiation: var_unserializer.c:zend_check_method_accessible
Unexecuted instantiation: var.c:zend_check_method_accessible
Unexecuted instantiation: versioning.c:zend_check_method_accessible
Unexecuted instantiation: crypt_sha256.c:zend_check_method_accessible
Unexecuted instantiation: crypt_sha512.c:zend_check_method_accessible
Unexecuted instantiation: php_crypt_r.c:zend_check_method_accessible
Unexecuted instantiation: php_uri.c:zend_check_method_accessible
Unexecuted instantiation: php_uri_common.c:zend_check_method_accessible
Unexecuted instantiation: uri_parser_rfc3986.c:zend_check_method_accessible
Unexecuted instantiation: uri_parser_whatwg.c:zend_check_method_accessible
Unexecuted instantiation: uri_parser_php_parse_url.c:zend_check_method_accessible
Unexecuted instantiation: explicit_bzero.c:zend_check_method_accessible
Unexecuted instantiation: fopen_wrappers.c:zend_check_method_accessible
Unexecuted instantiation: getopt.c:zend_check_method_accessible
Unexecuted instantiation: main.c:zend_check_method_accessible
Unexecuted instantiation: network.c:zend_check_method_accessible
Unexecuted instantiation: output.c:zend_check_method_accessible
Unexecuted instantiation: php_content_types.c:zend_check_method_accessible
Unexecuted instantiation: php_ini_builder.c:zend_check_method_accessible
Unexecuted instantiation: php_ini.c:zend_check_method_accessible
Unexecuted instantiation: php_glob.c:zend_check_method_accessible
Unexecuted instantiation: php_odbc_utils.c:zend_check_method_accessible
Unexecuted instantiation: php_open_temporary_file.c:zend_check_method_accessible
Unexecuted instantiation: php_scandir.c:zend_check_method_accessible
Unexecuted instantiation: php_syslog.c:zend_check_method_accessible
Unexecuted instantiation: php_ticks.c:zend_check_method_accessible
Unexecuted instantiation: php_variables.c:zend_check_method_accessible
Unexecuted instantiation: reentrancy.c:zend_check_method_accessible
Unexecuted instantiation: rfc1867.c:zend_check_method_accessible
Unexecuted instantiation: safe_bcmp.c:zend_check_method_accessible
Unexecuted instantiation: SAPI.c:zend_check_method_accessible
Unexecuted instantiation: snprintf.c:zend_check_method_accessible
Unexecuted instantiation: spprintf.c:zend_check_method_accessible
Unexecuted instantiation: strlcat.c:zend_check_method_accessible
Unexecuted instantiation: strlcpy.c:zend_check_method_accessible
Unexecuted instantiation: cast.c:zend_check_method_accessible
Unexecuted instantiation: filter.c:zend_check_method_accessible
Unexecuted instantiation: glob_wrapper.c:zend_check_method_accessible
Unexecuted instantiation: memory.c:zend_check_method_accessible
Unexecuted instantiation: mmap.c:zend_check_method_accessible
Unexecuted instantiation: plain_wrapper.c:zend_check_method_accessible
Unexecuted instantiation: streams.c:zend_check_method_accessible
Unexecuted instantiation: transports.c:zend_check_method_accessible
Unexecuted instantiation: userspace.c:zend_check_method_accessible
Unexecuted instantiation: xp_socket.c:zend_check_method_accessible
Unexecuted instantiation: block_pass.c:zend_check_method_accessible
Unexecuted instantiation: compact_literals.c:zend_check_method_accessible
Unexecuted instantiation: compact_vars.c:zend_check_method_accessible
Unexecuted instantiation: dce.c:zend_check_method_accessible
Unexecuted instantiation: dfa_pass.c:zend_check_method_accessible
Unexecuted instantiation: escape_analysis.c:zend_check_method_accessible
Unexecuted instantiation: nop_removal.c:zend_check_method_accessible
Unexecuted instantiation: optimize_func_calls.c:zend_check_method_accessible
Unexecuted instantiation: optimize_temp_vars_5.c:zend_check_method_accessible
Unexecuted instantiation: pass1.c:zend_check_method_accessible
Unexecuted instantiation: pass3.c:zend_check_method_accessible
Unexecuted instantiation: sccp.c:zend_check_method_accessible
Unexecuted instantiation: scdf.c:zend_check_method_accessible
Unexecuted instantiation: zend_call_graph.c:zend_check_method_accessible
Unexecuted instantiation: zend_cfg.c:zend_check_method_accessible
Unexecuted instantiation: zend_dfg.c:zend_check_method_accessible
Unexecuted instantiation: zend_dump.c:zend_check_method_accessible
Unexecuted instantiation: zend_func_info.c:zend_check_method_accessible
Unexecuted instantiation: zend_inference.c:zend_check_method_accessible
Unexecuted instantiation: zend_optimizer.c:zend_check_method_accessible
Unexecuted instantiation: zend_ssa.c:zend_check_method_accessible
Unexecuted instantiation: zend_alloc.c:zend_check_method_accessible
zend_API.c:zend_check_method_accessible
Line
Count
Source
141
120
{
142
120
  if (!(fn->common.fn_flags & ZEND_ACC_PUBLIC)
143
120
    && fn->common.scope != scope
144
68
    && (UNEXPECTED(fn->common.fn_flags & ZEND_ACC_PRIVATE)
145
50
      || UNEXPECTED(!zend_check_protected(zend_get_function_root_class(fn), scope)))) {
146
50
    return false;
147
50
  }
148
149
70
  return true;
150
120
}
zend_ast.c:zend_check_method_accessible
Line
Count
Source
141
32
{
142
32
  if (!(fn->common.fn_flags & ZEND_ACC_PUBLIC)
143
12
    && fn->common.scope != scope
144
6
    && (UNEXPECTED(fn->common.fn_flags & ZEND_ACC_PRIVATE)
145
4
      || UNEXPECTED(!zend_check_protected(zend_get_function_root_class(fn), scope)))) {
146
4
    return false;
147
4
  }
148
149
28
  return true;
150
32
}
Unexecuted instantiation: zend_attributes.c:zend_check_method_accessible
zend_builtin_functions.c:zend_check_method_accessible
Line
Count
Source
141
172
{
142
172
  if (!(fn->common.fn_flags & ZEND_ACC_PUBLIC)
143
78
    && fn->common.scope != scope
144
70
    && (UNEXPECTED(fn->common.fn_flags & ZEND_ACC_PRIVATE)
145
50
      || UNEXPECTED(!zend_check_protected(zend_get_function_root_class(fn), scope)))) {
146
50
    return false;
147
50
  }
148
149
122
  return true;
150
172
}
Unexecuted instantiation: zend_call_stack.c:zend_check_method_accessible
Unexecuted instantiation: zend_closures.c:zend_check_method_accessible
Unexecuted instantiation: zend_compile.c:zend_check_method_accessible
Unexecuted instantiation: zend_constants.c:zend_check_method_accessible
Unexecuted instantiation: zend_default_classes.c:zend_check_method_accessible
Unexecuted instantiation: zend_dtrace.c:zend_check_method_accessible
Unexecuted instantiation: zend_enum.c:zend_check_method_accessible
Unexecuted instantiation: zend_exceptions.c:zend_check_method_accessible
Unexecuted instantiation: zend_execute_API.c:zend_check_method_accessible
zend_execute.c:zend_check_method_accessible
Line
Count
Source
141
6
{
142
6
  if (!(fn->common.fn_flags & ZEND_ACC_PUBLIC)
143
6
    && fn->common.scope != scope
144
2
    && (UNEXPECTED(fn->common.fn_flags & ZEND_ACC_PRIVATE)
145
2
      || UNEXPECTED(!zend_check_protected(zend_get_function_root_class(fn), scope)))) {
146
0
    return false;
147
0
  }
148
149
6
  return true;
150
6
}
Unexecuted instantiation: zend_extensions.c:zend_check_method_accessible
Unexecuted instantiation: zend_fibers.c:zend_check_method_accessible
Unexecuted instantiation: zend_float.c:zend_check_method_accessible
Unexecuted instantiation: zend_gc.c:zend_check_method_accessible
Unexecuted instantiation: zend_generators.c:zend_check_method_accessible
Unexecuted instantiation: zend_hash.c:zend_check_method_accessible
Unexecuted instantiation: zend_highlight.c:zend_check_method_accessible
Unexecuted instantiation: zend_inheritance.c:zend_check_method_accessible
Unexecuted instantiation: zend_ini_parser.c:zend_check_method_accessible
Unexecuted instantiation: zend_ini_scanner.c:zend_check_method_accessible
Unexecuted instantiation: zend_ini.c:zend_check_method_accessible
Unexecuted instantiation: zend_interfaces.c:zend_check_method_accessible
Unexecuted instantiation: zend_iterators.c:zend_check_method_accessible
Unexecuted instantiation: zend_language_parser.c:zend_check_method_accessible
Unexecuted instantiation: zend_language_scanner.c:zend_check_method_accessible
Unexecuted instantiation: zend_lazy_objects.c:zend_check_method_accessible
Unexecuted instantiation: zend_list.c:zend_check_method_accessible
Unexecuted instantiation: zend_multibyte.c:zend_check_method_accessible
zend_object_handlers.c:zend_check_method_accessible
Line
Count
Source
141
110
{
142
110
  if (!(fn->common.fn_flags & ZEND_ACC_PUBLIC)
143
110
    && fn->common.scope != scope
144
54
    && (UNEXPECTED(fn->common.fn_flags & ZEND_ACC_PRIVATE)
145
34
      || UNEXPECTED(!zend_check_protected(zend_get_function_root_class(fn), scope)))) {
146
30
    return false;
147
30
  }
148
149
80
  return true;
150
110
}
Unexecuted instantiation: zend_objects_API.c:zend_check_method_accessible
Unexecuted instantiation: zend_objects.c:zend_check_method_accessible
Unexecuted instantiation: zend_observer.c:zend_check_method_accessible
Unexecuted instantiation: zend_opcode.c:zend_check_method_accessible
Unexecuted instantiation: zend_operators.c:zend_check_method_accessible
Unexecuted instantiation: zend_property_hooks.c:zend_check_method_accessible
Unexecuted instantiation: zend_signal.c:zend_check_method_accessible
Unexecuted instantiation: zend_smart_str.c:zend_check_method_accessible
Unexecuted instantiation: zend_stream.c:zend_check_method_accessible
Unexecuted instantiation: zend_string.c:zend_check_method_accessible
Unexecuted instantiation: zend_strtod.c:zend_check_method_accessible
Unexecuted instantiation: zend_system_id.c:zend_check_method_accessible
Unexecuted instantiation: zend_variables.c:zend_check_method_accessible
Unexecuted instantiation: zend_weakrefs.c:zend_check_method_accessible
Unexecuted instantiation: zend.c:zend_check_method_accessible
Unexecuted instantiation: internal_functions_cli.c:zend_check_method_accessible
Unexecuted instantiation: fuzzer-function-jit.c:zend_check_method_accessible
Unexecuted instantiation: fuzzer-sapi.c:zend_check_method_accessible
151
152
#endif /* ZEND_OBJECTS_H */