GLOBAL_AUTO_GLOBALS_TABLE  520 Zend/zend.c    	if (compiler_globals->auto_globals != GLOBAL_AUTO_GLOBALS_TABLE) {
GLOBAL_AUTO_GLOBALS_TABLE  703 Zend/zend.c    	GLOBAL_AUTO_GLOBALS_TABLE = (HashTable *) malloc(sizeof(HashTable));
GLOBAL_AUTO_GLOBALS_TABLE  708 Zend/zend.c    	zend_hash_init_ex(GLOBAL_AUTO_GLOBALS_TABLE, 8, NULL, auto_global_dtor, 1, 0);
GLOBAL_AUTO_GLOBALS_TABLE  729 Zend/zend.c    	compiler_globals->auto_globals = GLOBAL_AUTO_GLOBALS_TABLE;
GLOBAL_AUTO_GLOBALS_TABLE  848 Zend/zend.c    	zend_hash_destroy(GLOBAL_AUTO_GLOBALS_TABLE);
GLOBAL_AUTO_GLOBALS_TABLE  849 Zend/zend.c    	free(GLOBAL_AUTO_GLOBALS_TABLE);
GLOBAL_AUTO_GLOBALS_TABLE  864 Zend/zend.c    	GLOBAL_AUTO_GLOBALS_TABLE = NULL;