Lines Matching refs:class_table
43 # define GLOBAL_CLASS_TABLE CG(class_table)
498 compiler_globals->class_table = (HashTable *) malloc(sizeof(HashTable)); in compiler_globals_ctor()
499 zend_hash_init_ex(compiler_globals->class_table, 64, NULL, ZEND_CLASS_DTOR, 1, 0); in compiler_globals_ctor()
500 zend_hash_copy(compiler_globals->class_table, global_class_table, zend_class_add_ref); in compiler_globals_ctor()
508 compiler_globals->last_static_member = zend_hash_num_elements(compiler_globals->class_table); in compiler_globals_ctor()
530 if (compiler_globals->class_table != GLOBAL_CLASS_TABLE) { in compiler_globals_dtor()
531 zend_hash_destroy(compiler_globals->class_table); in compiler_globals_dtor()
532 free(compiler_globals->class_table); in compiler_globals_dtor()
756 compiler_globals->class_table = (HashTable *) malloc(sizeof(HashTable)); in zend_startup()
759 *compiler_globals->class_table = *GLOBAL_CLASS_TABLE; in zend_startup()
820 *GLOBAL_CLASS_TABLE = *compiler_globals->class_table; in zend_post_startup()
828 free(compiler_globals->class_table); in zend_post_startup()