Searched refs:properties_info_table (Results 1 – 12 of 12) sorted by relevance
/PHP-8.0/Zend/ |
H A D | zend_objects_API.h | 100 zend_property_info **table = obj->ce->properties_info_table; in zend_get_property_info_for_slot()
|
H A D | zend.h | 130 struct _zend_property_info **properties_info_table; member
|
H A D | zend_opcode.c | 440 if (ce->properties_info_table) { in destroy_zend_class() 441 free(ce->properties_info_table); in destroy_zend_class()
|
H A D | zend_inheritance.c | 1168 ZEND_ASSERT(ce->properties_info_table == NULL); in zend_build_properties_info_table() 1171 ce->properties_info_table = table = zend_arena_alloc(&CG(arena), size); in zend_build_properties_info_table() 1173 ce->properties_info_table = table = pemalloc(size, 1); in zend_build_properties_info_table() 1180 zend_property_info **parent_table = ce->parent->properties_info_table; in zend_build_properties_info_table()
|
H A D | zend_API.c | 1269 prop_info = class_type->properties_info_table[i]; in zend_update_class_constants() 3791 ZEND_ASSERT(ce->properties_info_table != NULL); in zend_declare_typed_property() 3792 ce->properties_info_table[OBJ_PROP_TO_NUM(property_info->offset)] = property_info; in zend_declare_typed_property() 3800 …ce->properties_info_table = perealloc(ce->properties_info_table, sizeof(zend_property_info *) * ce… in zend_declare_typed_property() 3801 ce->properties_info_table[ce->default_properties_count - 1] = property_info; in zend_declare_typed_property()
|
H A D | zend_compile.c | 1838 ce->properties_info_table = NULL; in zend_initialize_class_data()
|
/PHP-8.0/ext/opcache/ |
H A D | zend_accelerator_util_funcs.c | 336 if (ce->properties_info_table) { in zend_class_copy_ctor() 338 ce->properties_info_table = ARENA_REALLOC(ce->properties_info_table); in zend_class_copy_ctor() 340 if (IN_ARENA(ce->properties_info_table[i])) { in zend_class_copy_ctor() 341 ce->properties_info_table[i] = ARENA_REALLOC(ce->properties_info_table[i]); in zend_class_copy_ctor()
|
H A D | zend_persist.c | 892 if (ce->properties_info_table) { in zend_persist_class_entry() 898 ce->properties_info_table = zend_shared_memdup( in zend_persist_class_entry() 899 ce->properties_info_table, size); in zend_persist_class_entry() 901 ce->properties_info_table = zend_shared_memdup_arena( in zend_persist_class_entry() 902 ce->properties_info_table, size); in zend_persist_class_entry() 906 if (ce->properties_info_table[i]) { in zend_persist_class_entry() 908 ce->properties_info_table[i]); in zend_persist_class_entry() 910 ce->properties_info_table[i] = prop_info; in zend_persist_class_entry()
|
H A D | zend_file_cache.c | 738 if (ce->properties_info_table) { 742 SERIALIZE_PTR(ce->properties_info_table); 743 table = ce->properties_info_table; 1500 if (ce->properties_info_table) { 1502 UNSERIALIZE_PTR(ce->properties_info_table); 1505 UNSERIALIZE_PTR(ce->properties_info_table[i]);
|
H A D | zend_persist_calc.c | 463 if (ce->properties_info_table) { in zend_persist_class_entry_calc()
|
H A D | ZendAccelerator.c | 3597 zend_property_info *prop = ce->properties_info_table[i];
|
/PHP-8.0/ext/opcache/jit/ |
H A D | zend_jit_x86.dasc | 13270 | mov r0, aword [r0 + offsetof(zend_class_entry, properties_info_table)] 13625 | mov r0, aword [r0 + offsetof(zend_class_entry, properties_info_table)] 14049 | mov r0, aword [r0 + offsetof(zend_class_entry, properties_info_table)] 14410 | mov r0, aword [r0 + offsetof(zend_class_entry, properties_info_table)]
|
Completed in 302 milliseconds