OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [config/] [mips/] [gnu-user.h] - Blame information for rev 749

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 709 jeremybenn
/* Definitions for MIPS systems using GNU userspace.
2
   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
3
   2007, 2008, 2010, 2011 Free Software Foundation, Inc.
4
 
5
This file is part of GCC.
6
 
7
GCC 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 3, or (at your option)
10
any later version.
11
 
12
GCC 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 GCC; see the file COPYING3.  If not see
19
<http://www.gnu.org/licenses/>.  */
20
 
21
#undef WCHAR_TYPE
22
#define WCHAR_TYPE "int"
23
 
24
#undef WCHAR_TYPE_SIZE
25
#define WCHAR_TYPE_SIZE 32
26
 
27
#undef ASM_DECLARE_OBJECT_NAME
28
#define ASM_DECLARE_OBJECT_NAME mips_declare_object_name
29
 
30
/* If we don't set MASK_ABICALLS, we can't default to PIC.  */
31
#undef TARGET_DEFAULT
32
#define TARGET_DEFAULT MASK_ABICALLS
33
 
34
#define TARGET_OS_CPP_BUILTINS()                                \
35
  do {                                                          \
36
    GNU_USER_TARGET_OS_CPP_BUILTINS();                          \
37
    /* The GNU C++ standard library requires this.  */          \
38
    if (c_dialect_cxx ())                                       \
39
      builtin_define ("_GNU_SOURCE");                           \
40
  } while (0)
41
 
42
#undef SUBTARGET_CPP_SPEC
43
#define SUBTARGET_CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{pthread:-D_REENTRANT}"
44
 
45
/* A standard GNU/Linux mapping.  On most targets, it is included in
46
   CC1_SPEC itself by config/linux.h, but mips.h overrides CC1_SPEC
47
   and provides this hook instead.  */
48
#undef SUBTARGET_CC1_SPEC
49
#define SUBTARGET_CC1_SPEC "%{profile:-p}"
50
 
51
/* From iris5.h */
52
/* -G is incompatible with -KPIC which is the default, so only allow objects
53
   in the small data section if the user explicitly asks for it.  */
54
#undef MIPS_DEFAULT_GVALUE
55
#define MIPS_DEFAULT_GVALUE 0
56
 
57
/* Borrowed from sparc/linux.h */
58
#undef LINK_SPEC
59
#define LINK_SPEC \
60
 "%(endian_spec) \
61
  %{shared:-shared} \
62
  %{!shared: \
63
    %{!static: \
64
      %{rdynamic:-export-dynamic} \
65
      -dynamic-linker " GNU_USER_DYNAMIC_LINKER "} \
66
      %{static:-static}}"
67
 
68
#undef SUBTARGET_ASM_SPEC
69
#define SUBTARGET_ASM_SPEC \
70
  "%{!mno-abicalls:%{mplt:-call_nonpic;:-KPIC}}"
71
 
72
/* The MIPS assembler has different syntax for .set. We set it to
73
   .dummy to trap any errors.  */
74
#undef SET_ASM_OP
75
#define SET_ASM_OP "\t.dummy\t"
76
 
77
#undef ASM_OUTPUT_DEF
78
#define ASM_OUTPUT_DEF(FILE,LABEL1,LABEL2)                              \
79
 do {                                                                   \
80
        fputc ( '\t', FILE);                                            \
81
        assemble_name (FILE, LABEL1);                                   \
82
        fputs ( " = ", FILE);                                           \
83
        assemble_name (FILE, LABEL2);                                   \
84
        fputc ( '\n', FILE);                                            \
85
 } while (0)
86
 
87
/* The glibc _mcount stub will save $v0 for us.  Don't mess with saving
88
   it, since ASM_OUTPUT_REG_PUSH/ASM_OUTPUT_REG_POP do not work in the
89
   presence of $gp-relative calls.  */
90
#undef ASM_OUTPUT_REG_PUSH
91
#undef ASM_OUTPUT_REG_POP
92
 
93
#undef LIB_SPEC
94
#define LIB_SPEC "\
95
%{pthread:-lpthread} \
96
%{shared:-lc} \
97
%{!shared: \
98
  %{profile:-lc_p} %{!profile:-lc}}"
99
 
100
#ifdef HAVE_AS_NO_SHARED
101
/* Default to -mno-shared for non-PIC.  */
102
# define NO_SHARED_SPECS \
103
  "%{mshared|mno-shared|fpic|fPIC|fpie|fPIE:;:-mno-shared}"
104
#else
105
# define NO_SHARED_SPECS ""
106
#endif
107
 
108
/* -march=native handling only makes sense with compiler running on
109
   a MIPS chip.  */
110
#if defined(__mips__)
111
extern const char *host_detect_local_cpu (int argc, const char **argv);
112
# define EXTRA_SPEC_FUNCTIONS \
113
  { "local_cpu_detect", host_detect_local_cpu },
114
 
115
# define MARCH_MTUNE_NATIVE_SPECS                               \
116
  " %{march=native:%<march=native %:local_cpu_detect(arch)}"    \
117
  " %{mtune=native:%<mtune=native %:local_cpu_detect(tune)}"
118
#else
119
# define MARCH_MTUNE_NATIVE_SPECS ""
120
#endif
121
 
122
#define LINUX_DRIVER_SELF_SPECS \
123
  NO_SHARED_SPECS                                                       \
124
  MARCH_MTUNE_NATIVE_SPECS,                                             \
125
  /* -mplt has no effect without -mno-shared.  Simplify later           \
126
     specs handling by removing a redundant option.  */                 \
127
  "%{!mno-shared:%<mplt}",                                              \
128
  /* -mplt likewise has no effect for -mabi=64 without -msym32.  */     \
129
  "%{mabi=64:%{!msym32:%<mplt}}"
130
 
131
#undef DRIVER_SELF_SPECS
132
#define DRIVER_SELF_SPECS \
133
  BASE_DRIVER_SELF_SPECS, \
134
  LINUX_DRIVER_SELF_SPECS
135
 
136
/* Similar to standard Linux, but adding -ffast-math support.  */
137
#undef  ENDFILE_SPEC
138
#define ENDFILE_SPEC \
139
  "%{Ofast|ffast-math|funsafe-math-optimizations:crtfastmath.o%s} \
140
   %{shared|pie:crtendS.o%s;:crtend.o%s} crtn.o%s"

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.