compiler_globals 105 Zend/zend.c STD_ZEND_INI_BOOLEAN("zend.multibyte", "0", ZEND_INI_PERDIR, OnUpdateBool, multibyte, zend_compiler_globals, compiler_globals) compiler_globals 107 Zend/zend.c STD_ZEND_INI_BOOLEAN("zend.detect_unicode", "1", ZEND_INI_ALL, OnUpdateBool, detect_unicode, zend_compiler_globals, compiler_globals) compiler_globals 504 Zend/zend.c static void compiler_globals_ctor(zend_compiler_globals *compiler_globals TSRMLS_DC) /* {{{ */ compiler_globals 509 Zend/zend.c compiler_globals->compiled_filename = NULL; compiler_globals 511 Zend/zend.c compiler_globals->function_table = (HashTable *) malloc(sizeof(HashTable)); compiler_globals 512 Zend/zend.c zend_hash_init_ex(compiler_globals->function_table, 100, NULL, ZEND_FUNCTION_DTOR, 1, 0); compiler_globals 513 Zend/zend.c zend_hash_copy(compiler_globals->function_table, global_function_table, NULL, &tmp_func, sizeof(zend_function)); compiler_globals 515 Zend/zend.c compiler_globals->class_table = (HashTable *) malloc(sizeof(HashTable)); compiler_globals 516 Zend/zend.c zend_hash_init_ex(compiler_globals->class_table, 10, NULL, ZEND_CLASS_DTOR, 1, 0); compiler_globals 517 Zend/zend.c zend_hash_copy(compiler_globals->class_table, global_class_table, (copy_ctor_func_t) zend_class_add_ref, &tmp_class, sizeof(zend_class_entry *)); compiler_globals 523 Zend/zend.c compiler_globals->auto_globals = (HashTable *) malloc(sizeof(HashTable)); compiler_globals 524 Zend/zend.c zend_hash_init_ex(compiler_globals->auto_globals, 8, NULL, NULL, 1, 0); compiler_globals 525 Zend/zend.c zend_hash_copy(compiler_globals->auto_globals, global_auto_globals_table, NULL, NULL, sizeof(zend_auto_global) /* empty element */); compiler_globals 527 Zend/zend.c compiler_globals->last_static_member = zend_hash_num_elements(compiler_globals->class_table); compiler_globals 528 Zend/zend.c if (compiler_globals->last_static_member) { compiler_globals 529 Zend/zend.c compiler_globals->static_members_table = calloc(compiler_globals->last_static_member, sizeof(zval**)); compiler_globals 531 Zend/zend.c compiler_globals->static_members_table = NULL; compiler_globals 533 Zend/zend.c compiler_globals->script_encoding_list = NULL; compiler_globals 537 Zend/zend.c static void compiler_globals_dtor(zend_compiler_globals *compiler_globals TSRMLS_DC) /* {{{ */ compiler_globals 539 Zend/zend.c if (compiler_globals->function_table != GLOBAL_FUNCTION_TABLE) { compiler_globals 540 Zend/zend.c zend_hash_destroy(compiler_globals->function_table); compiler_globals 541 Zend/zend.c free(compiler_globals->function_table); compiler_globals 543 Zend/zend.c if (compiler_globals->class_table != GLOBAL_CLASS_TABLE) { compiler_globals 544 Zend/zend.c zend_hash_destroy(compiler_globals->class_table); compiler_globals 545 Zend/zend.c free(compiler_globals->class_table); compiler_globals 547 Zend/zend.c if (compiler_globals->auto_globals != GLOBAL_AUTO_GLOBALS_TABLE) { compiler_globals 548 Zend/zend.c zend_hash_destroy(compiler_globals->auto_globals); compiler_globals 549 Zend/zend.c free(compiler_globals->auto_globals); compiler_globals 551 Zend/zend.c if (compiler_globals->static_members_table) { compiler_globals 552 Zend/zend.c free(compiler_globals->static_members_table); compiler_globals 554 Zend/zend.c if (compiler_globals->script_encoding_list) { compiler_globals 555 Zend/zend.c pefree(compiler_globals->script_encoding_list, 1); compiler_globals 557 Zend/zend.c compiler_globals->last_static_member = 0; compiler_globals 641 Zend/zend.c zend_compiler_globals *compiler_globals; compiler_globals 725 Zend/zend.c compiler_globals = ts_resource(compiler_globals_id); compiler_globals 728 Zend/zend.c compiler_globals_dtor(compiler_globals TSRMLS_CC); compiler_globals 729 Zend/zend.c compiler_globals->in_compilation = 0; compiler_globals 730 Zend/zend.c compiler_globals->function_table = (HashTable *) malloc(sizeof(HashTable)); compiler_globals 731 Zend/zend.c compiler_globals->class_table = (HashTable *) malloc(sizeof(HashTable)); compiler_globals 733 Zend/zend.c *compiler_globals->function_table = *GLOBAL_FUNCTION_TABLE; compiler_globals 734 Zend/zend.c *compiler_globals->class_table = *GLOBAL_CLASS_TABLE; compiler_globals 735 Zend/zend.c compiler_globals->auto_globals = GLOBAL_AUTO_GLOBALS_TABLE; compiler_globals 783 Zend/zend.c zend_compiler_globals *compiler_globals = ts_resource(compiler_globals_id); compiler_globals 786 Zend/zend.c *GLOBAL_FUNCTION_TABLE = *compiler_globals->function_table; compiler_globals 787 Zend/zend.c *GLOBAL_CLASS_TABLE = *compiler_globals->class_table; compiler_globals 795 Zend/zend.c free(compiler_globals->function_table); compiler_globals 796 Zend/zend.c free(compiler_globals->class_table); compiler_globals 797 Zend/zend.c if ((script_encoding_list = (zend_encoding **)compiler_globals->script_encoding_list)) { compiler_globals 798 Zend/zend.c compiler_globals_ctor(compiler_globals, tsrm_ls); compiler_globals 799 Zend/zend.c compiler_globals->script_encoding_list = (const zend_encoding **)script_encoding_list; compiler_globals 801 Zend/zend.c compiler_globals_ctor(compiler_globals, tsrm_ls); compiler_globals 101 Zend/zend_compile.c ZEND_API zend_compiler_globals compiler_globals; compiler_globals 35 Zend/zend_globals_macros.h int zendparse(void *compiler_globals); compiler_globals 37 Zend/zend_globals_macros.h # define CG(v) (compiler_globals.v) compiler_globals 38 Zend/zend_globals_macros.h extern ZEND_API struct _zend_compiler_globals compiler_globals; compiler_globals 557 main/main.c STD_PHP_INI_BOOLEAN("asp_tags", "0", PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateBool, asp_tags, zend_compiler_globals, compiler_globals) compiler_globals 580 main/main.c STD_PHP_INI_BOOLEAN("short_open_tag", DEFAULT_SHORT_OPEN_TAG, PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateBool, short_tags, zend_compiler_globals, compiler_globals) compiler_globals 80 sapi/litespeed/lsapi_main.c zend_compiler_globals *compiler_globals; compiler_globals 1058 sapi/litespeed/lsapi_main.c compiler_globals = ts_resource(compiler_globals_id);