OSDN Git Service

* configure.in (arm*-*-eabi*): New target.
[pf3gnuchains/gcc-fork.git] / gcc / config / arm / bpabi.h
1 /* Configuration file for ARM BPABI targets.
2    Copyright (C) 2004
3    Free Software Foundation, Inc.
4    Contributed by CodeSourcery, LLC   
5
6    This file is part of GCC.
7
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.
12
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.
17
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, 59 Temple Place - Suite 330,
21    Boston, MA 02111-1307, USA.  */
22
23 /* Use the AAPCS ABI by default.  */
24 #define ARM_DEFAULT_ABI ARM_ABI_AAPCS
25
26 /* Assume that AAPCS ABIs should adhere to the full BPABI.  */ 
27 #define TARGET_BPABI (TARGET_AAPCS_BASED)
28
29 /* The ARM BPABI functions return a boolean; they use no special
30    calling convention.  */
31 #define FLOAT_LIB_COMPARE_RETURNS_BOOL(MODE, COMPARISON) TARGET_BPABI
32
33 /* Do not generate calls to any of the standard GCC functions in
34    libgcc when generating BPABI code.  */
35 #define TARGET_LIBGCC_LIBFUNCS !TARGET_BPABI
36
37 /* The BPABI integer comparision routines return { -1, 0, 1 }.  */
38 #define TARGET_LIB_INT_CMP_BIASED !TARGET_BPABI
39
40 /* The generic link spec in elf.h does not support shared libraries.  */
41 #undef LINK_SPEC
42 #define LINK_SPEC "%{mbig-endian:-EB} %{mlittle-endian:-EL} "           \
43   "%{static:-Bstatic} %{shared:-shared} %{symbolic:-Bsymbolic} "        \
44   "-X"
45
46 #if defined (__thumb__) && !defined (__THUMB_INTERWORD) 
47 #define RENAME_LIBRARY_SET ".thumb_set"
48 #else
49 #define RENAME_LIBRARY_SET ".set"
50 #endif
51
52 /* Make __aeabi_AEABI_NAME an alias for __GCC_NAME.  */
53 #define RENAME_LIBRARY(GCC_NAME, AEABI_NAME)            \
54   __asm__ (".globl\t__aeabi_" #AEABI_NAME "\n"          \
55            RENAME_LIBRARY_SET "\t__aeabi_" #AEABI_NAME  \
56              ", __" #GCC_NAME "\n");
57
58 /* Give some libgcc functions an additional __aeabi name.  */
59 #ifdef L_muldi3
60 #define DECLARE_LIBRARY_RENAMES RENAME_LIBRARY (muldi3, lmul)
61 #endif
62 #ifdef L_muldi3
63 #define DECLARE_LIBRARY_RENAMES RENAME_LIBRARY (muldi3, lmul)
64 #endif
65 #ifdef L_fixdfdi
66 #define DECLARE_LIBRARY_RENAMES RENAME_LIBRARY (fixdfdi, d2lz)
67 #endif
68 #ifdef L_fixunsdfdi
69 #define DECLARE_LIBRARY_RENAMES RENAME_LIBRARY (fixunsdfdi, d2ulz)
70 #endif
71 #ifdef L_fixsfdi
72 #define DECLARE_LIBRARY_RENAMES RENAME_LIBRARY (fixsfdi, f2lz)
73 #endif
74 #ifdef L_fixunssfdi
75 #define DECLARE_LIBRARY_RENAMES RENAME_LIBRARY (fixunssfdi, f2ulz)
76 #endif
77 #ifdef L_floatdidf
78 #define DECLARE_LIBRARY_RENAMES RENAME_LIBRARY (floatdidf, l2d)
79 #endif
80 #ifdef L_floatdisf
81 #define DECLARE_LIBRARY_RENAMES RENAME_LIBRARY (floatdisf, l2f)
82 #endif
83