[ARM 3/5 big.LITTLE] Add support for -mcpu=cortex-a15.cortex-a7
[official-gcc.git] / gcc / config / arm / bpabi.h
blob669884d870df8263b5ecb930656c76224cae87b1
1 /* Configuration file for ARM BPABI targets.
2 Copyright (C) 2004-2013 Free Software Foundation, Inc.
3 Contributed by CodeSourcery, LLC
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published
9 by the Free Software Foundation; either version 3, or (at your
10 option) any later version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* Use the AAPCS ABI by default. */
22 #define ARM_DEFAULT_ABI ARM_ABI_AAPCS
24 /* Assume that AAPCS ABIs should adhere to the full BPABI. */
25 #define TARGET_BPABI (TARGET_AAPCS_BASED)
27 /* BPABI targets use EABI frame unwinding tables. */
28 #undef ARM_UNWIND_INFO
29 #define ARM_UNWIND_INFO 1
31 /* Section 4.1 of the AAPCS requires the use of VFP format. */
32 #undef FPUTYPE_DEFAULT
33 #define FPUTYPE_DEFAULT "vfp"
35 /* TARGET_BIG_ENDIAN_DEFAULT is set in
36 config.gcc for big endian configurations. */
37 #if TARGET_BIG_ENDIAN_DEFAULT
38 #define TARGET_ENDIAN_DEFAULT MASK_BIG_END
39 #else
40 #define TARGET_ENDIAN_DEFAULT 0
41 #endif
43 /* EABI targets should enable interworking by default. */
44 #undef TARGET_DEFAULT
45 #define TARGET_DEFAULT (MASK_INTERWORK | TARGET_ENDIAN_DEFAULT)
47 /* The ARM BPABI functions return a boolean; they use no special
48 calling convention. */
49 #define FLOAT_LIB_COMPARE_RETURNS_BOOL(MODE, COMPARISON) TARGET_BPABI
51 /* The BPABI integer comparison routines return { -1, 0, 1 }. */
52 #define TARGET_LIB_INT_CMP_BIASED !TARGET_BPABI
54 #define TARGET_FIX_V4BX_SPEC " %{mcpu=arm8|mcpu=arm810|mcpu=strongarm*"\
55 "|march=armv4|mcpu=fa526|mcpu=fa626:--fix-v4bx}"
57 #if TARGET_BIG_ENDIAN_DEFAULT
58 #define BE8_LINK_SPEC \
59 " %{!mlittle-endian:%{march=armv7-a|mcpu=cortex-a5 \
60 |mcpu=cortex-a7 \
61 |mcpu=cortex-a8|mcpu=cortex-a9|mcpu=cortex-a15 \
62 |mcpu=cortex-a12 \
63 |mcpu=cortex-a15.cortex-a7 \
64 |mcpu=marvell-pj4 \
65 |mcpu=cortex-a53 \
66 |mcpu=generic-armv7-a \
67 |march=armv7-m|mcpu=cortex-m3 \
68 |march=armv7e-m|mcpu=cortex-m4 \
69 |march=armv6-m|mcpu=cortex-m0 \
70 |march=armv8-a \
71 :%{!r:--be8}}}"
72 #else
73 #define BE8_LINK_SPEC \
74 " %{mbig-endian:%{march=armv7-a|mcpu=cortex-a5 \
75 |mcpu=cortex-a7 \
76 |mcpu=cortex-a8|mcpu=cortex-a9|mcpu=cortex-a15 \
77 |mcpu=cortex-a12 \
78 |mcpu=cortex-a15.cortex-a7 \
79 |mcpu=cortex-a53 \
80 |mcpu=marvell-pj4 \
81 |mcpu=generic-armv7-a \
82 |march=armv7-m|mcpu=cortex-m3 \
83 |march=armv7e-m|mcpu=cortex-m4 \
84 |march=armv6-m|mcpu=cortex-m0 \
85 |march=armv8-a \
86 :%{!r:--be8}}}"
87 #endif
89 /* Tell the assembler to build BPABI binaries. */
90 #undef SUBTARGET_EXTRA_ASM_SPEC
91 #define SUBTARGET_EXTRA_ASM_SPEC \
92 "%{mabi=apcs-gnu|mabi=atpcs:-meabi=gnu;:-meabi=5}" TARGET_FIX_V4BX_SPEC
94 #ifndef SUBTARGET_EXTRA_LINK_SPEC
95 #define SUBTARGET_EXTRA_LINK_SPEC ""
96 #endif
98 /* Split out the EABI common values so other targets can use it. */
99 #define EABI_LINK_SPEC \
100 TARGET_FIX_V4BX_SPEC BE8_LINK_SPEC
102 /* The generic link spec in elf.h does not support shared libraries. */
103 #define BPABI_LINK_SPEC \
104 "%{mbig-endian:-EB} %{mlittle-endian:-EL} " \
105 "%{static:-Bstatic} %{shared:-shared} %{symbolic:-Bsymbolic} " \
106 "-X" SUBTARGET_EXTRA_LINK_SPEC EABI_LINK_SPEC
108 #undef LINK_SPEC
109 #define LINK_SPEC BPABI_LINK_SPEC
111 /* The BPABI requires that we always use an out-of-line implementation
112 of RTTI comparison, even if the target supports weak symbols,
113 because the same object file might be used on a target that does
114 not support merging symbols across DLL boundaries. This macro is
115 broken out separately so that it can be used within
116 TARGET_OS_CPP_BUILTINS in configuration files for systems based on
117 the BPABI. */
118 #define TARGET_BPABI_CPP_BUILTINS() \
119 do \
121 builtin_define ("__GXX_TYPEINFO_EQUALITY_INLINE=0"); \
123 while (false)
125 #undef TARGET_OS_CPP_BUILTINS
126 #define TARGET_OS_CPP_BUILTINS() \
127 TARGET_BPABI_CPP_BUILTINS()
129 /* The BPABI specifies the use of .{init,fini}_array. Therefore, we
130 do not want GCC to put anything into the .{init,fini} sections. */
131 #undef INIT_SECTION_ASM_OP
132 #undef FINI_SECTION_ASM_OP
133 #define INIT_ARRAY_SECTION_ASM_OP ARM_EABI_CTORS_SECTION_OP
134 #define FINI_ARRAY_SECTION_ASM_OP ARM_EABI_DTORS_SECTION_OP
136 /* The legacy _mcount implementation assumes r11 points to a
137 4-word APCS frame. This is generally not true for EABI targets,
138 particularly not in Thumb mode. We assume the mcount
139 implementation does not require a counter variable (No Counter).
140 Note that __gnu_mcount_nc will be entered with a misaligned stack.
141 This is OK because it uses a special calling convention anyway. */
143 #undef NO_PROFILE_COUNTERS
144 #define NO_PROFILE_COUNTERS 1
145 #undef ARM_FUNCTION_PROFILER
146 #define ARM_FUNCTION_PROFILER(STREAM, LABELNO) \
148 fprintf (STREAM, "\tpush\t{lr}\n"); \
149 fprintf (STREAM, "\tbl\t__gnu_mcount_nc\n"); \
152 #undef SUBTARGET_FRAME_POINTER_REQUIRED
153 #define SUBTARGET_FRAME_POINTER_REQUIRED 0
155 /* __gnu_mcount_nc restores the original LR value before returning. Ensure
156 that there is no unnecessary hook set up. */
157 #undef PROFILE_HOOK