Lines Matching refs:GLOBAL_CLASS_TABLE
38 # define GLOBAL_CLASS_TABLE global_class_table macro
43 # define GLOBAL_CLASS_TABLE CG(class_table) macro
530 if (compiler_globals->class_table != GLOBAL_CLASS_TABLE) { in compiler_globals_dtor()
733 GLOBAL_CLASS_TABLE = (HashTable *) malloc(sizeof(HashTable)); in zend_startup()
738 zend_hash_init_ex(GLOBAL_CLASS_TABLE, 64, NULL, ZEND_CLASS_DTOR, 1, 0); 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()
865 ZEND_HASH_REVERSE_FOREACH_PTR(GLOBAL_CLASS_TABLE, ce) { in zend_shutdown()
874 zend_hash_reverse_apply(GLOBAL_CLASS_TABLE, (apply_func_t) clean_non_persistent_class_full); in zend_shutdown()
882 zend_hash_destroy(GLOBAL_CLASS_TABLE); in zend_shutdown()
891 free(GLOBAL_CLASS_TABLE); in zend_shutdown()
899 GLOBAL_CLASS_TABLE = NULL; in zend_shutdown()