OSDN Git Service

* config/m68hc11/m68hc11.c (m68hc11_initial_elimination_offset):
[pf3gnuchains/gcc-fork.git] / gcc / config / arm / netbsd.h
1 /* NetBSD/arm (RiscBSD) version.
2    Copyright (C) 1993, 1994, 1997, 1998 Free Software Foundation, Inc.
3    Contributed by Mark Brinicombe (amb@physig.ph.kcl.ac.uk)
4
5 This file is part of GNU CC.
6
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING.  If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.  */
21
22 /* Run-time Target Specification.  */
23 #define TARGET_VERSION fputs (" (ARM/NetBSD)", stderr);
24
25 /* This is used in ASM_FILE_START.  */
26 #define ARM_OS_NAME "NetBSD"
27
28 /* Unsigned chars produces much better code than signed.  */
29 #define DEFAULT_SIGNED_CHAR  0
30
31 /* Since we always use GAS as our assembler we support stabs.  */
32 #define DBX_DEBUGGING_INFO 1
33
34 /*#undef ASM_DECLARE_FUNCTION_NAME*/
35
36 /* ARM6 family default cpu.  */
37 #define SUBTARGET_CPU_DEFAULT TARGET_CPU_arm6
38
39 /* Default is to use APCS-32 mode.  */
40 #define TARGET_DEFAULT (ARM_FLAG_APCS_32 | ARM_FLAG_SOFT_FLOAT | ARM_FLAG_APCS_FRAME)
41
42 #include "arm/aout.h"
43
44 /* This gets redefined in config/netbsd.h.  */
45 #undef TARGET_MEM_FUNCTIONS
46
47 #include <netbsd.h>
48
49 /* Some defines for CPP.
50    arm32 is the NetBSD port name, so we always define arm32 and __arm32__.  */
51 #undef CPP_PREDEFINES
52 #define CPP_PREDEFINES "\
53 -Dunix -Driscbsd -Darm32 -D__arm32__ -D__arm__ -D__NetBSD__ \
54 -Asystem=unix -Asystem=NetBSD -Acpu=arm -Amachine=arm"
55
56 /* Define _POSIX_SOURCE if necessary.  */
57 #undef CPP_SPEC
58 #define CPP_SPEC "\
59 %(cpp_cpu_arch) %(cpp_apcs_pc) %(cpp_float) %(cpp_endian) \
60 %{posix:-D_POSIX_SOURCE} \
61 "
62
63 /* Because TARGET_DEFAULT sets ARM_FLAG_APCS_32 */
64 #undef CPP_APCS_PC_DEFAULT_SPEC
65 #define CPP_APCS_PC_DEFAULT_SPEC "-D__APCS_32__"
66
67 /* Because TARGET_DEFAULT sets ARM_FLAG_SOFT_FLOAT */
68 #undef CPP_FLOAT_DEFAULT_SPEC
69 #define CPP_FLOAT_DEFAULT_SPEC "-D__SOFTFP__"
70
71 /* Pass -X to the linker so that it will strip symbols starting with 'L' */
72 #undef LINK_SPEC
73 #define LINK_SPEC "\
74 -X %{!nostdlib:%{!r*:%{!e*:-e start}}} -dc -dp %{R*} \
75 %{static:-Bstatic} %{assert*} \
76 "
77
78 #undef SIZE_TYPE
79 #define SIZE_TYPE "unsigned int"
80
81 #undef PTRDIFF_TYPE
82 #define PTRDIFF_TYPE "int"
83
84 #undef WCHAR_TYPE
85 #define WCHAR_TYPE "int"
86
87 #undef WCHAR_UNSIGNED
88 #define WCHAR_UNSIGNED 0
89
90 #undef WCHAR_TYPE_SIZE
91 #define WCHAR_TYPE_SIZE 32
92
93 #define HANDLE_SYSV_PRAGMA
94
95 /* We don't have any limit on the length as out debugger is GDB.  */
96 #undef DBX_CONTIN_LENGTH
97
98 /* NetBSD does its profiling differently to the Acorn compiler. We
99    don't need a word following the mcount call; and to skip it
100    requires either an assembly stub or use of fomit-frame-pointer when
101    compiling the profiling functions.  Since we break Acorn CC
102    compatibility below a little more won't hurt.  */
103
104 #undef  ARM_FUNCTION_PROFILER
105 #define ARM_FUNCTION_PROFILER(STREAM,LABELNO)                               \
106 {                                                                           \
107   fprintf(STREAM, "\tmov\t%sip, %slr\n", REGISTER_PREFIX, REGISTER_PREFIX); \
108   fprintf(STREAM, "\tbl\tmcount\n");                                        \
109 }
110
111 /* On the ARM `@' introduces a comment, so we must use something else
112    for .type directives.  */
113 #undef TYPE_OPERAND_FMT
114 #define TYPE_OPERAND_FMT "%%%s"
115
116 /* NetBSD uses the old PCC style aggregate returning conventions. */
117 #undef DEFAULT_PCC_STRUCT_RETURN
118 #define DEFAULT_PCC_STRUCT_RETURN 1
119
120 /* Although not normally relevant (since by default, all aggregates
121    are returned in memory) compiling some parts of libc requires
122    non-APCS style struct returns.  */
123 #undef RETURN_IN_MEMORY
124
125 /* VERY BIG NOTE : Change of structure alignment for RiscBSD.
126    There are consequences you should be aware of...
127
128    Normally GCC/arm uses a structure alignment of 32 for compatibility
129    with armcc.  This means that structures are padded to a word
130    boundary.  However this causes problems with bugged NetBSD kernel
131    code (possibly userland code as well - I have not checked every
132    binary).  The nature of this bugged code is to rely on sizeof()
133    returning the correct size of various structures rounded to the
134    nearest byte (SCSI and ether code are two examples, the vm system
135    is another).  This code breaks when the structure alignment is 32
136    as sizeof() will report a word=rounded size.  By changing the
137    structure alignment to 8. GCC will conform to what is expected by
138    NetBSD.
139
140    This has several side effects that should be considered.
141    1. Structures will only be aligned to the size of the largest member.
142       i.e. structures containing only bytes will be byte aligned.
143            structures containing shorts will be half word alinged.
144            structures containing ints will be word aligned.
145
146       This means structures should be padded to a word boundary if
147       alignment of 32 is required for byte structures etc.
148       
149    2. A potential performance penalty may exist if strings are no longer
150       word aligned.  GCC will not be able to use word load/stores to copy
151       short strings.
152       
153    This modification is not encouraged but with the present state of the
154    NetBSD source tree it is currently the only solution that meets the
155    requirements.  */
156 #undef  DEFAULT_STRUCTURE_SIZE_BOUNDARY
157 #define DEFAULT_STRUCTURE_SIZE_BOUNDARY 8