* arm.c (emit_set_insn): New function.
[official-gcc.git] / gcc / config / arm / pe.h
blob2b806d3bcaeedb1513046d8bd296d94fb8e3b11a
1 /* Definitions of target machine for GNU compiler, for ARM with PE obj format.
2 Copyright (C) 1995, 1996, 1999, 2000, 2002, 2003, 2004, 2005
3 Free Software Foundation, Inc.
4 Contributed by Doug Evans (dje@cygnus.com).
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published
10 by the Free Software Foundation; either version 2, or (at your
11 option) any later version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
16 License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to
20 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
23 /* Enable PE specific code. */
24 #define ARM_PE 1
26 #define ARM_PE_FLAG_CHAR '@'
28 /* Ensure that @x. will be stripped from the function name. */
29 #undef SUBTARGET_NAME_ENCODING_LENGTHS
30 #define SUBTARGET_NAME_ENCODING_LENGTHS \
31 case ARM_PE_FLAG_CHAR: return 3;
33 #undef USER_LABEL_PREFIX
34 #define USER_LABEL_PREFIX "_"
37 /* Run-time Target Specification. */
38 #undef TARGET_VERSION
39 #define TARGET_VERSION fputs (" (ARM/pe)", stderr)
41 /* Get tree.c to declare a target-specific specialization of
42 merge_decl_attributes. */
43 #define TARGET_DLLIMPORT_DECL_ATTRIBUTES 1
45 #undef SUBTARGET_CPP_SPEC
46 #define SUBTARGET_CPP_SPEC "-D__pe__"
48 #undef TARGET_DEFAULT
49 #define TARGET_DEFAULT (MASK_NOP_FUN_DLLIMPORT)
51 #undef MULTILIB_DEFAULTS
52 #define MULTILIB_DEFAULTS \
53 { "marm", "mlittle-endian", "msoft-float", "mno-thumb-interwork" }
55 #undef WCHAR_TYPE
56 #define WCHAR_TYPE "short unsigned int"
57 #undef WCHAR_TYPE_SIZE
58 #define WCHAR_TYPE_SIZE 16
60 /* r11 is fixed. */
61 #undef SUBTARGET_CONDITIONAL_REGISTER_USAGE
62 #define SUBTARGET_CONDITIONAL_REGISTER_USAGE \
63 fixed_regs [11] = 1; \
64 call_used_regs [11] = 1;
67 /* PE/COFF uses explicit import from shared libraries. */
68 #define MULTIPLE_SYMBOL_SPACES 1
70 #define TARGET_ASM_UNIQUE_SECTION arm_pe_unique_section
71 #define TARGET_ASM_FUNCTION_RODATA_SECTION default_no_function_rodata_section
73 #define SUPPORTS_ONE_ONLY 1
75 /* Switch into a generic section. */
76 #undef TARGET_ASM_NAMED_SECTION
77 #define TARGET_ASM_NAMED_SECTION default_pe_asm_named_section
79 #define TARGET_ASM_FILE_START_FILE_DIRECTIVE true
81 /* Output a reference to a label. */
82 #undef ASM_OUTPUT_LABELREF
83 #define ASM_OUTPUT_LABELREF(STREAM, NAME) \
84 asm_fprintf (STREAM, "%U%s", arm_strip_name_encoding (NAME))
86 /* Output a function definition label. */
87 #undef ASM_DECLARE_FUNCTION_NAME
88 #define ASM_DECLARE_FUNCTION_NAME(STREAM, NAME, DECL) \
89 do \
90 { \
91 if (arm_dllexport_name_p (NAME)) \
92 { \
93 drectve_section (); \
94 fprintf (STREAM, "\t.ascii \" -export:%s\"\n", \
95 arm_strip_name_encoding (NAME)); \
96 function_section (DECL); \
97 } \
98 ARM_DECLARE_FUNCTION_NAME (STREAM, NAME, DECL); \
99 if (TARGET_THUMB) \
100 fprintf (STREAM, "\t.code 16\n"); \
101 ASM_OUTPUT_LABEL (STREAM, NAME); \
103 while (0)
105 /* Output a common block. */
106 #undef ASM_OUTPUT_COMMON
107 #define ASM_OUTPUT_COMMON(STREAM, NAME, SIZE, ROUNDED) \
108 do \
110 if (arm_dllexport_name_p (NAME)) \
112 drectve_section (); \
113 fprintf ((STREAM), "\t.ascii \" -export:%s\"\n",\
114 arm_strip_name_encoding (NAME)); \
116 if (! arm_dllimport_name_p (NAME)) \
118 fprintf ((STREAM), "\t.comm\t"); \
119 assemble_name ((STREAM), (NAME)); \
120 asm_fprintf ((STREAM), ", %d\t%@ %d\n", \
121 (int)(ROUNDED), (int)(SIZE)); \
124 while (0)
126 /* Output the label for an initialized variable. */
127 #undef ASM_DECLARE_OBJECT_NAME
128 #define ASM_DECLARE_OBJECT_NAME(STREAM, NAME, DECL) \
129 do \
131 if (arm_dllexport_name_p (NAME)) \
133 enum in_section save_section = in_section; \
134 drectve_section (); \
135 fprintf (STREAM, "\t.ascii \" -export:%s\"\n",\
136 arm_strip_name_encoding (NAME)); \
137 switch_to_section (save_section, (DECL)); \
139 ASM_OUTPUT_LABEL ((STREAM), (NAME)); \
141 while (0)
143 /* Support the ctors/dtors and other sections. */
145 #define DRECTVE_SECTION_ASM_OP "\t.section .drectve"
147 /* A list of other sections which the compiler might be "in" at any
148 given time. */
150 #undef EXTRA_SECTIONS
151 #define EXTRA_SECTIONS in_drectve
153 /* A list of extra section function definitions. */
155 #undef EXTRA_SECTION_FUNCTIONS
156 #define EXTRA_SECTION_FUNCTIONS \
157 DRECTVE_SECTION_FUNCTION \
158 SWITCH_TO_SECTION_FUNCTION
160 #define DRECTVE_SECTION_FUNCTION \
161 void \
162 drectve_section (void) \
164 if (in_section != in_drectve) \
166 fprintf (asm_out_file, "%s\n", DRECTVE_SECTION_ASM_OP); \
167 in_section = in_drectve; \
171 /* Switch to SECTION (an `enum in_section').
173 ??? This facility should be provided by GCC proper.
174 The problem is that we want to temporarily switch sections in
175 ASM_DECLARE_OBJECT_NAME and then switch back to the original section
176 afterwards. */
177 #define SWITCH_TO_SECTION_FUNCTION \
178 static void \
179 switch_to_section (enum in_section section, tree decl) \
181 switch (section) \
183 case in_text: text_section (); break; \
184 case in_unlikely_executed_text: unlikely_text_section (); break; \
185 case in_data: data_section (); break; \
186 case in_named: named_section (decl, NULL, 0); break; \
187 case in_readonly_data: readonly_data_section (); break; \
188 case in_ctors: ctors_section (); break; \
189 case in_dtors: dtors_section (); break; \
190 case in_drectve: drectve_section (); break; \
191 default: abort (); break; \