* doc/tm.texi (INIT_CUMULATIVE_ARGS): Update doco.
[official-gcc.git] / gcc / config / alpha / unicosmk.h
blobd1dfe91262275e0a77568800f63b3f9288b608f3
1 /* Definitions of target machine for GNU compiler, for DEC Alpha on Cray
2 T3E running Unicos/Mk.
3 Copyright (C) 2001, 2002, 2004
4 Free Software Foundation, Inc.
5 Contributed by Roman Lechtchinsky (rl@cs.tu-berlin.de)
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
12 any later version.
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING. If not, write to
21 the Free Software Foundation, 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
24 #undef TARGET_ABI_UNICOSMK
25 #define TARGET_ABI_UNICOSMK 1
27 /* CAM requires a slash before floating-pointing instruction suffixes. */
29 #undef TARGET_AS_SLASH_BEFORE_SUFFIX
30 #define TARGET_AS_SLASH_BEFORE_SUFFIX 1
32 /* The following defines are necessary for the standard headers to work
33 correctly. */
35 #define TARGET_OS_CPP_BUILTINS() \
36 do { \
37 builtin_define ("__unix"); \
38 builtin_define ("_UNICOS=205"); \
39 builtin_define ("_CRAY"); \
40 builtin_define ("_CRAYT3E"); \
41 builtin_define ("_CRAYMPP"); \
42 builtin_define ("_CRAYIEEE"); \
43 builtin_define ("_ADDR64"); \
44 builtin_define ("_LD64"); \
45 builtin_define ("__UNICOSMK__"); \
46 } while (0)
48 #define SHORT_TYPE_SIZE 32
50 #undef INT_TYPE_SIZE
51 #define INT_TYPE_SIZE 64
53 /* This is consistent with the definition Cray CC uses. */
54 #undef WCHAR_TYPE
55 #define WCHAR_TYPE "int"
56 #undef WCHAR_TYPE_SIZE
57 #define WCHAR_TYPE_SIZE 64
60 #define SIZE_TYPE "unsigned int"
61 #define PTRDIFF_TYPE "int"
64 /* Alphas are operated in big endian mode on the Cray T3E. */
66 #undef BITS_BIG_ENDIAN
67 #undef BYTES_BIG_ENDIAN
68 #undef WORDS_BIG_ENDIAN
69 #define BITS_BIG_ENDIAN 0
70 #define BYTES_BIG_ENDIAN 1
71 #define WORDS_BIG_ENDIAN 1
74 /* Every structure's size must be a multiple of this. */
76 #undef STRUCTURE_SIZE_BOUNDARY
77 #define STRUCTURE_SIZE_BOUNDARY 64
79 /* No data type wants to be aligned rounder than this. */
81 #undef BIGGEST_ALIGNMENT
82 #define BIGGEST_ALIGNMENT 256
84 /* Include the frame pointer in fixed_regs and call_used_regs as it can't be
85 used as a general-purpose register even in frameless functions.
86 ??? The global_regs hack is needed for now because -O2 sometimes tries to
87 eliminate $15 increments/decrements in frameless functions. */
89 #undef CONDITIONAL_REGISTER_USAGE
90 #define CONDITIONAL_REGISTER_USAGE \
91 do { \
92 fixed_regs[15] = 1; \
93 call_used_regs[15] = 1; \
94 global_regs[15] = 1; \
95 } while(0)
97 /* The stack frame grows downward. */
99 #define FRAME_GROWS_DOWNWARD
101 /* Define the offset between two registers, one to be eliminated, and the
102 other its replacement, at the start of a routine. This is somewhat
103 complicated on the T3E which is why we use a function. */
105 #undef INITIAL_ELIMINATION_OFFSET
106 #define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) \
107 do { \
108 (OFFSET) = unicosmk_initial_elimination_offset ((FROM), (TO)); \
109 } while (0)
112 /* Define this if stack space is still allocated for a parameter passed
113 in a register. On the T3E, stack space is preallocated for all outgoing
114 arguments, including those passed in registers. To avoid problems, we
115 assume that at least 48 bytes (i.e. enough space for all arguments passed
116 in registers) are allocated. */
118 #define REG_PARM_STACK_SPACE(DECL) 48
119 #define OUTGOING_REG_PARM_STACK_SPACE
121 /* If an argument can't be passed in registers even though not all argument
122 registers have been used yet, it is passed on the stack in the space
123 preallocated for these registers. */
125 #define STACK_PARMS_IN_REG_PARM_AREA
127 /* This evaluates to nonzero if we do not know how to pass TYPE solely in
128 registers. This is the case for all arguments that do not fit in two
129 registers. */
131 #define MUST_PASS_IN_STACK(MODE,TYPE) \
132 ((TYPE) != 0 \
133 && (TREE_CODE (TYPE_SIZE (TYPE)) != INTEGER_CST \
134 || (TREE_ADDRESSABLE (TYPE) || ALPHA_ARG_SIZE (MODE, TYPE, 0) > 2)))
136 /* Define a data type for recording info about an argument list
137 during the scan of that argument list. This data type should
138 hold all necessary information about the function itself
139 and about the args processed so far, enough to enable macros
140 such as FUNCTION_ARG to determine where the next arg should go.
142 On Unicos/Mk, this is a structure that contains various information for
143 the static subroutine information block (SSIB) and the call information
144 word (CIW). */
146 typedef struct {
148 /* The overall number of arguments. */
149 int num_args;
151 /* The overall size of the arguments in words. */
152 int num_arg_words;
154 /* The number of words passed in registers. */
155 int num_reg_words;
157 /* If an argument must be passed in the stack, all subsequent arguments
158 must be passed there, too. This flag indicates whether this is the
159 case. */
160 int force_stack;
162 /* This array indicates whether a word is passed in an integer register or
163 a floating point one. */
165 /* For each of the 6 register arguments, the corresponding flag in this
166 array indicates whether the argument is passed in an integer or a
167 floating point register. */
168 int reg_args_type[6];
170 } unicosmk_arg_info;
172 #undef CUMULATIVE_ARGS
173 #define CUMULATIVE_ARGS unicosmk_arg_info
175 /* Initialize a variable CUM of type CUMULATIVE_ARGS for a call to a
176 function whose data type is FNTYPE. For a library call, FNTYPE is 0. */
178 #undef INIT_CUMULATIVE_ARGS
179 #define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, INDIRECT, N_NAMED_ARGS) \
180 do { (CUM).num_args = 0; \
181 (CUM).num_arg_words = 0; \
182 (CUM).num_reg_words = 0; \
183 (CUM).force_stack = 0; \
184 } while(0)
186 /* Update the data in CUM to advance over an argument of mode MODE and data
187 type TYPE. (TYPE is null for libcalls where that information may not be
188 available.)
190 On Unicos/Mk, at most 6 words can be passed in registers. Structures
191 which fit in two words are passed in registers, larger structures are
192 passed on stack. */
194 #undef FUNCTION_ARG_ADVANCE
195 #define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED) \
196 do { \
197 int size; \
199 size = ALPHA_ARG_SIZE (MODE, TYPE, NAMED); \
201 if (size > 2 || MUST_PASS_IN_STACK (MODE, TYPE) \
202 || (CUM).num_reg_words + size > 6) \
203 (CUM).force_stack = 1; \
205 if (! (CUM).force_stack) \
207 int i; \
208 int isfloat; \
209 isfloat = (GET_MODE_CLASS (MODE) == MODE_COMPLEX_FLOAT \
210 || GET_MODE_CLASS (MODE) == MODE_FLOAT); \
211 for (i = 0; i < size; i++) \
213 (CUM).reg_args_type[(CUM).num_reg_words] = isfloat; \
214 ++(CUM).num_reg_words; \
217 (CUM).num_arg_words += size; \
218 ++(CUM).num_args; \
219 } while(0)
221 /* An argument is passed either entirely in registers or entirely on stack. */
223 #undef FUNCTION_ARG_PARTIAL_NREGS
224 /* #define FUNCTION_ARG_PARTIAL_NREGS(CUM,MODE,TYPE,NAMED) 0 */
226 /* This ensures that $15 increments/decrements in leaf functions won't get
227 eliminated. */
229 #undef EPILOGUE_USES
230 #define EPILOGUE_USES(REGNO) ((REGNO) == 26 || (REGNO) == 15)
232 /* Would have worked, only the stack doesn't seem to be executable
233 #undef TRAMPOLINE_TEMPLATE
234 #define TRAMPOLINE_TEMPLATE(FILE) \
235 do { fprintf (FILE, "\tbr $1,0\n"); \
236 fprintf (FILE, "\tldq $0,12($1)\n"); \
237 fprintf (FILE, "\tldq $1,20($1)\n"); \
238 fprintf (FILE, "\tjmp $31,(r0)\n"); \
239 fprintf (FILE, "\tbis $31,$31,$31\n"); \
240 fprintf (FILE, "\tbis $31,$31,$31\n"); \
241 } while (0) */
243 /* We don't support nested functions (yet). */
245 #undef TRAMPOLINE_TEMPLATE
246 #define TRAMPOLINE_TEMPLATE(FILE) abort ()
248 /* Specify the machine mode that this machine uses for the index in the
249 tablejump instruction. On Unicos/Mk, we don't support relative case
250 vectors yet, thus the entries should be absolute addresses. */
252 #undef CASE_VECTOR_MODE
253 #define CASE_VECTOR_MODE DImode
255 #undef CASE_VECTOR_PC_RELATIVE
257 /* Define this as 1 if `char' should by default be signed; else as 0. */
258 /* #define DEFAULT_SIGNED_CHAR 1 */
260 /* The Cray assembler is really weird with respect to sections. It has only
261 named sections and you can't reopen a section once it has been closed.
262 This means that we have to generate unique names whenever we want to
263 reenter the text or the data section. The following is a rather bad hack
264 as TEXT_SECTION_ASM_OP and DATA_SECTION_ASM_OP are supposed to be
265 constants. */
267 #undef TEXT_SECTION_ASM_OP
268 #define TEXT_SECTION_ASM_OP unicosmk_text_section ()
270 #undef DATA_SECTION_ASM_OP
271 #define DATA_SECTION_ASM_OP unicosmk_data_section ()
273 /* There are no read-only sections on Unicos/Mk. */
275 #undef READONLY_DATA_SECTION_ASM_OP
276 #define READONLY_DATA_SECTION data_section
278 /* Define extra sections for common data and SSIBs (static subroutine
279 information blocks). The actual section header is output by the callers
280 of these functions. */
282 #undef EXTRA_SECTIONS
283 #undef EXTRA_SECTION_FUNCTIONS
285 #define EXTRA_SECTIONS in_common, in_ssib
286 #define EXTRA_SECTION_FUNCTIONS \
287 COMMON_SECTION \
288 SSIB_SECTION
290 extern void common_section (void);
291 #define COMMON_SECTION \
292 void \
293 common_section (void) \
295 in_section = in_common; \
298 extern void ssib_section (void);
299 #define SSIB_SECTION \
300 void \
301 ssib_section (void) \
303 in_section = in_ssib; \
306 /* We take care of this in unicosmk_file_start. */
308 #undef ASM_OUTPUT_SOURCE_FILENAME
310 /* This is how to output a label for a jump table. Arguments are the same as
311 for (*targetm.asm_out.internal_label), except the insn for the jump table is
312 passed. */
314 #undef ASM_OUTPUT_CASE_LABEL
315 #define ASM_OUTPUT_CASE_LABEL(FILE,PREFIX,NUM,TABLEINSN) \
316 (*targetm.asm_out.internal_label) (FILE, PREFIX, NUM)
318 /* CAM has some restrictions with respect to string literals. It won't
319 accept lines with more that 256 characters which means that we have
320 to split long strings. Moreover, it only accepts escape sequences of
321 the form \nnn in the range 0 to 127. We generate .byte directives for
322 escapes characters greater than 127. And finally, ` must be escaped. */
324 #undef ASM_OUTPUT_ASCII
325 #define ASM_OUTPUT_ASCII(MYFILE, MYSTRING, MYLENGTH) \
326 do { \
327 FILE *_hide_asm_out_file = (MYFILE); \
328 const unsigned char *_hide_p = (const unsigned char *) (MYSTRING); \
329 int _hide_thissize = (MYLENGTH); \
330 int _size_so_far = 0; \
332 FILE *asm_out_file = _hide_asm_out_file; \
333 const unsigned char *p = _hide_p; \
334 int thissize = _hide_thissize; \
335 int in_ascii = 0; \
336 int i; \
338 for (i = 0; i < thissize; i++) \
340 register int c = p[i]; \
342 if (c > 127) \
344 if (in_ascii) \
346 fprintf (asm_out_file, "\"\n"); \
347 in_ascii = 0; \
350 fprintf (asm_out_file, "\t.byte\t%d\n", c); \
352 else \
354 if (! in_ascii) \
356 fprintf (asm_out_file, "\t.ascii\t\""); \
357 in_ascii = 1; \
358 _size_so_far = 0; \
360 else if (_size_so_far >= 64) \
362 fprintf (asm_out_file, "\"\n\t.ascii\t\""); \
363 _size_so_far = 0; \
366 if (c == '\"' || c == '\\' || c == '`') \
367 putc ('\\', asm_out_file); \
368 if (c >= ' ') \
369 putc (c, asm_out_file); \
370 else \
371 fprintf (asm_out_file, "\\%.3o", c); \
372 ++ _size_so_far; \
375 if (in_ascii) \
376 fprintf (asm_out_file, "\"\n"); \
378 } while(0)
380 /* This is how to output an element of a case-vector that is absolute. */
382 #undef ASM_OUTPUT_ADDR_VEC_ELT
383 #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE) \
384 fprintf (FILE, "\t.quad $L%d\n", (VALUE))
386 /* This is how to output an element of a case-vector that is relative.
387 (Unicos/Mk does not use such vectors yet). */
389 #undef ASM_OUTPUT_ADDR_DIFF_ELT
390 #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, BODY, VALUE, REL) abort ()
392 /* We can't output case vectors in the same section as the function code
393 because CAM doesn't allow data definitions in code sections. Thus, we
394 simply record the case vectors and put them in a separate section after
395 the function. */
397 #define ASM_OUTPUT_ADDR_VEC(LAB,VEC) \
398 unicosmk_defer_case_vector ((LAB),(VEC))
400 #define ASM_OUTPUT_ADDR_DIFF_VEC(LAB,VEC) abort ()
402 /* This is how to output an assembler line that says to advance the location
403 counter to a multiple of 2**LOG bytes. Annoyingly, CAM always uses zeroes
404 to fill the unused space which does not work in code sections. We have to
405 be careful not to use the .align directive in code sections. */
407 #undef ASM_OUTPUT_ALIGN
408 #define ASM_OUTPUT_ALIGN(STREAM,LOG) unicosmk_output_align (STREAM, LOG)
410 /* This is how to advance the location counter by SIZE bytes. */
412 #undef ASM_OUTPUT_SKIP
413 #define ASM_OUTPUT_SKIP(STREAM,SIZE) \
414 fprintf ((STREAM), "\t.byte\t0:"HOST_WIDE_INT_PRINT_UNSIGNED"\n",\
415 (SIZE));
417 /* This says how to output an assembler line to define a global common
418 symbol. We need the alignment information because it has to be supplied
419 in the section header. */
421 #undef ASM_OUTPUT_COMMON
422 #define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN) \
423 unicosmk_output_common ((FILE), (NAME), (SIZE), (ALIGN))
425 /* This says how to output an assembler line to define a local symbol. */
427 #undef ASM_OUTPUT_LOCAL
428 #define ASM_OUTPUT_ALIGNED_LOCAL(FILE, NAME, SIZE, ALIGN) \
429 do { data_section (); \
430 fprintf (FILE, "\t.align\t%d\n", floor_log2 ((ALIGN) / BITS_PER_UNIT));\
431 ASM_OUTPUT_LABEL ((FILE), (NAME)); \
432 fprintf (FILE, "\t.byte 0:"HOST_WIDE_INT_PRINT_UNSIGNED"\n",(SIZE));\
433 } while (0)
435 /* CAM does not allow us to declare a symbol as external first and then
436 define it in the same file later. Thus, we keep a list of all external
437 references, remove all symbols defined locally from it and output it at
438 the end of the asm file. */
440 #define ASM_OUTPUT_EXTERNAL(FILE,DECL,NAME) \
441 unicosmk_add_extern ((NAME))
443 #define ASM_OUTPUT_EXTERNAL_LIBCALL(STREAM,SYMREF) \
444 unicosmk_add_extern (XSTR ((SYMREF), 0))
446 /* This is how to declare an object. We don't have to output anything if
447 it is a global variable because those go into unique `common' sections
448 and the section name is globally visible. For local variables, we simply
449 output the label. In any case, we have to record that no extern
450 declaration should be generated for the symbol. */
452 #define ASM_DECLARE_OBJECT_NAME(STREAM,NAME,DECL) \
453 do { tree name_tree; \
454 name_tree = get_identifier ((NAME)); \
455 TREE_ASM_WRITTEN (name_tree) = 1; \
456 if (!TREE_PUBLIC (DECL)) \
458 assemble_name (STREAM, NAME); \
459 fputs (":\n", STREAM); \
461 } while(0)
463 /* Switch into a generic section. */
464 #define TARGET_ASM_NAMED_SECTION unicosmk_asm_named_section
466 #undef ASM_OUTPUT_MAX_SKIP_ALIGN
467 #define ASM_OUTPUT_MAX_SKIP_ALIGN(STREAM,POWER,MAXSKIP)
469 #undef NM_FLAGS
471 #undef OBJECT_FORMAT_COFF
473 /* We cannot generate debugging information on Unicos/Mk. */
475 #undef SDB_DEBUGGING_INFO
476 #undef MIPS_DEBUGGING_INFO
477 #undef DBX_DEBUGGING_INFO
478 #undef DWARF2_DEBUGGING_INFO
479 #undef DWARF2_UNWIND_INFO
480 #undef INCOMING_RETURN_ADDR_RTX
481 #undef ASM_OUTPUT_SOURCE_LINE
483 /* We don't need a start file. */
485 #undef STARTFILE_SPEC
486 #define STARTFILE_SPEC ""
488 /* These are the libraries we have to link with.
489 ??? The Craylibs directory should be autoconfed. */
490 #undef LIB_SPEC
491 #define LIB_SPEC "-L/opt/ctl/craylibs/craylibs -lu -lm -lc -lsma"
493 #undef EXPAND_BUILTIN_VA_START
494 #undef EXPAND_BUILTIN_VA_ARG
496 #define EH_FRAME_IN_DATA_SECTION 1