Lines Matching defs:TCCState

1976 typedef struct TCCState TCCState;  typedef
2407 struct TCCState { struct
2408 int output_type;
2410 BufferedFile **include_stack_ptr;
2411 int *ifdef_stack_ptr;
2414 char **include_paths;
2415 int nb_include_paths;
2416 char **sysinclude_paths;
2417 int nb_sysinclude_paths;
2418 CachedInclude **cached_includes;
2419 int nb_cached_includes;
2421 char **library_paths;
2422 int nb_library_paths;
2426 DLLReference **loaded_dlls;
2427 int nb_loaded_dlls;
2430 Section **sections;
2431 int nb_sections; /* number of sections, including first dummy section */
2434 Section *got;
2435 Section *plt;
2436 unsigned long *got_offsets;
2437 int nb_got_offsets;
2439 int *symtab_to_dynsym;
2442 Section *dynsymtab_section;
2444 Section *dynsym;
2446 int nostdinc; /* if true, no standard headers are added */
2447 int nostdlib; /* if true, no standard libraries are added */
2449 int nocommon; /* if true, do not use common symbols for .bss data */
2452 int static_link;
2455 int rdynamic;
2458 int alacarte_link;
2461 unsigned long text_addr;
2462 int has_text_addr;
2465 int output_format;
2468 int char_is_unsigned;
2469 int leading_underscore;
2472 int warn_write_strings;
2473 int warn_unsupported;
2474 int warn_error;
2475 int warn_none;
2476 int warn_implicit_function_declaration;
2479 void *error_opaque;
2480 void (*error_func)(void *opaque, const char *msg);
2481 int error_set_jmp_enabled;
2482 jmp_buf error_jmp_buf;
2483 int nb_errors;
2486 Sym *asm_labels;
2489 BufferedFile *include_stack[INCLUDE_STACK_SIZE];
2492 int ifdef_stack[IFDEF_STACK_SIZE];
2495 int cached_includes_hash[CACHED_INCLUDES_HASH_SIZE];
2498 int pack_stack[PACK_STACK_SIZE];
2499 int *pack_stack_ptr;