X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=gcc%2Foutput.h;h=bd83199b6a97ccf78a6039006e8e99383cd387d7;hb=13a61b19edc44dd9bcfc8860972622816d7eefe8;hp=8371aa05f835ef0e1a349b009164edae47df4c2d;hpb=990495a75cd770ac6234fdd765cda3a70221644d;p=pf3gnuchains%2Fgcc-fork.git diff --git a/gcc/output.h b/gcc/output.h index 8371aa05f83..bd83199b6a9 100644 --- a/gcc/output.h +++ b/gcc/output.h @@ -1,7 +1,7 @@ /* Declarations for insn-output.c. These functions are defined in recog.c, final.c, and varasm.c. Copyright (C) 1987, 1991, 1994, 1997, 1998, 1999, 2000, 2001, 2002, - 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 + 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. This file is part of GCC. @@ -129,6 +129,10 @@ typedef HOST_WIDE_INT __gcc_host_wide_int__; #define ATTRIBUTE_ASM_FPRINTF(m, n) ATTRIBUTE_NONNULL(m) #endif +extern void fprint_whex (FILE *, unsigned HOST_WIDE_INT); +extern void fprint_ul (FILE *, unsigned long); +extern int sprint_ul (char *, unsigned long); + extern void asm_fprintf (FILE *file, const char *p, ...) ATTRIBUTE_ASM_FPRINTF(2, 3); @@ -177,6 +181,11 @@ extern enum tls_model decl_default_tls_model (const_tree); Prefixes such as % are optional. */ extern int decode_reg_name (const char *); +/* Similar to decode_reg_name, but takes an extra parameter that is a + pointer to the number of (internal) registers described by the + external name. */ +extern int decode_reg_name_and_count (const char *, int *); + extern void assemble_alias (tree, tree); extern void default_assemble_visibility (tree, int); @@ -264,6 +273,10 @@ extern bool default_assemble_integer (rtx, unsigned int, int); be outputable. */ extern bool assemble_integer (rtx, unsigned, unsigned, int); +/* Return section for TEXT_SECITON_NAME if DECL or DECL_SECTION_NAME (DECL) + is NULL. */ +extern section *get_named_text_section (tree, const char *, const char *); + /* An interface to assemble_integer for the common case in which a value is fully aligned and must be printed. VALUE is the value of the integer object and SIZE is the number of bytes it contains. */ @@ -289,6 +302,8 @@ extern void output_shared_constant_pool (void); extern void output_object_blocks (void); +extern void output_quoted_string (FILE *, const char *); + /* Whether a constructor CTOR is a valid static constant initializer if all its elements are. This used to be internal to initializer_constant_valid_p and has been exposed to let other functions like categorize_ctor_elements @@ -406,6 +421,9 @@ extern const char *user_label_prefix; /* Default target function prologue and epilogue assembler output. */ extern void default_function_pro_epilogue (FILE *, HOST_WIDE_INT); +/* Default target function switched text sections. */ +extern void default_function_switched_text_sections (FILE *, tree, bool); + /* Default target hook that outputs nothing to a stream. */ extern void no_asm_to_stream (FILE *); @@ -427,7 +445,9 @@ extern void no_asm_to_stream (FILE *); #define SECTION_DECLARED 0x100000 /* section has been used */ #define SECTION_STYLE_MASK 0x600000 /* bits used for SECTION_STYLE */ #define SECTION_COMMON 0x800000 /* contains common data */ -#define SECTION_MACH_DEP 0x1000000 /* subsequent bits reserved for target */ +#define SECTION_RELRO 0x1000000 /* data is readonly after relocation processing */ +#define SECTION_EXCLUDE 0x2000000 /* discarded by the linker */ +#define SECTION_MACH_DEP 0x4000000 /* subsequent bits reserved for target */ /* This SECTION_STYLE is used for unnamed sections that we can switch to using a special assembler directive. */ @@ -571,6 +591,7 @@ extern section *get_unnamed_section (unsigned int, void (*) (const void *), const void *); extern section *get_section (const char *, unsigned int, tree); extern section *get_named_section (tree, const char *, int); +extern section *get_variable_section (tree, bool); extern void place_block_symbol (rtx); extern rtx get_section_anchor (struct object_block *, HOST_WIDE_INT, enum tls_model); @@ -589,6 +610,10 @@ extern bool unlikely_text_section_p (section *); extern void switch_to_section (section *); extern void output_section_asm_op (const void *); +extern void record_tm_clone_pair (tree, tree); +extern void finish_tm_clone_pairs (void); +extern tree get_tm_clone_pair (tree); + extern void default_asm_output_source_filename (FILE *, const char *); extern void output_file_directive (FILE *, const char *); @@ -613,6 +638,7 @@ extern section *default_elf_select_section (tree, int, unsigned HOST_WIDE_INT); extern void default_unique_section (tree, int); extern section *default_function_rodata_section (tree); extern section *default_no_function_rodata_section (tree); +extern section *default_clone_table_section (void); extern section *default_select_rtx_section (enum machine_mode, rtx, unsigned HOST_WIDE_INT); extern section *default_elf_select_rtx_section (enum machine_mode, rtx, @@ -627,14 +653,23 @@ extern void default_globalize_label (FILE *, const char *); extern void default_globalize_decl_name (FILE *, tree); extern void default_emit_unwind_label (FILE *, tree, int, int); extern void default_emit_except_table_label (FILE *); +extern void default_generate_internal_label (char *, const char *, + unsigned long); extern void default_internal_label (FILE *, const char *, unsigned long); extern void default_asm_declare_constant_name (FILE *, const char *, const_tree, HOST_WIDE_INT); extern void default_file_start (void); extern void file_end_indicate_exec_stack (void); +extern void file_end_indicate_split_stack (void); extern void default_elf_asm_output_external (FILE *file, tree, const char *); +extern void default_elf_asm_output_limited_string (FILE *, const char *); +extern void default_elf_asm_output_ascii (FILE *, const char *, unsigned int); +extern void default_elf_internal_label (FILE *, const char *, unsigned long); + +extern void default_elf_init_array_asm_out_constructor (rtx, int); +extern void default_elf_fini_array_asm_out_destructor (rtx, int); extern int maybe_assemble_visibility (tree); extern int default_address_cost (rtx, bool);