OSDN Git Service

* i386.h (MIN_UNITS_PER_WORD): Define to 8 for x86-64 libgcc.
[pf3gnuchains/gcc-fork.git] / gcc / config / i386 / x86-64.h
1 /* OS independent definitions for AMD x86-64.
2    Copyright (C) 2001 Free Software Foundation, Inc.
3    Contributed by Bo Thorsen <bo@suse.de>.
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 #undef ASM_COMMENT_START
23 #define ASM_COMMENT_START "#"
24
25 #undef DBX_REGISTER_NUMBER
26 #define DBX_REGISTER_NUMBER(n) \
27   (TARGET_64BIT ? dbx64_register_map[n] : svr4_dbx_register_map[n])
28
29 /* Output assembler code to FILE to call the profiler.  */
30 #define NO_PROFILE_COUNTERS
31
32 #undef FUNCTION_PROFILER
33 #define FUNCTION_PROFILER(FILE, LABELNO)  \
34 {                                                                       \
35   if (TARGET_64BIT && flag_pic)                                         \
36     fprintf (FILE, "\tcall\t*mcount@PLT\n");                            \
37   else if (flag_pic)                                                    \
38     fprintf (FILE, "\tcall\t*mcount@GOT(%%ebx)\n");                     \
39   else                                                                  \
40     fprintf (FILE, "\tcall\tmcount\n");                                 \
41 }
42
43 #undef SIZE_TYPE
44 #define SIZE_TYPE (TARGET_64BIT ? "long unsigned int" : "unsigned int")
45
46 #undef PTRDIFF_TYPE
47 #define PTRDIFF_TYPE (TARGET_64BIT ? "long int" : "int")
48
49 #undef WCHAR_TYPE
50 #define WCHAR_TYPE "int"
51
52 #undef WCHAR_TYPE_SIZE
53 #define WCHAR_TYPE_SIZE 32
54
55 #undef CC1_SPEC
56 #define CC1_SPEC "%(cc1_cpu) %{profile:-p}"
57
58 #undef ASM_SPEC
59 #define ASM_SPEC "%{v:-V} %{Qy:} %{!Qn:-Qy} %{n} %{T} %{Ym,*} %{Yd,*} \
60  %{Wa,*:%*} %{m32:--32}"
61
62 /* A C statement (sans semicolon) to output to the stdio stream
63    FILE the assembler definition of uninitialized global DECL named
64    NAME whose size is SIZE bytes and alignment is ALIGN bytes.
65    Try to use asm_output_aligned_bss to implement this macro.  */
66
67 #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
68   asm_output_aligned_bss (FILE, DECL, NAME, SIZE, ALIGN)
69
70 /* A C statement to output to the stdio stream FILE an assembler
71    command to advance the location counter to a multiple of 1<<LOG
72    bytes if it is within MAX_SKIP bytes.
73
74    This is used to align code labels according to Intel recommendations.  */
75
76 #define ASM_OUTPUT_MAX_SKIP_ALIGN(FILE,LOG,MAX_SKIP)                    \
77   do {                                                                  \
78     if ((LOG) != 0) {                                                   \
79       if ((MAX_SKIP) == 0) fprintf ((FILE), "\t.p2align %d\n", (LOG));  \
80       else fprintf ((FILE), "\t.p2align %d,,%d\n", (LOG), (MAX_SKIP));  \
81     }                                                                   \
82   } while (0)
83
84
85 /* i386 System V Release 4 uses DWARF debugging info.
86    x86-64 ABI specifies DWARF2.  */
87
88 #undef DWARF_DEBUGGING_INFO
89 #define DWARF2_DEBUGGING_INFO 1
90 #define DWARF2_UNWIND_INFO 1
91 /* Incorrectly autodetected in cross compilation.  */
92 #undef HAVE_AS_DWARF2_DEBUG_LINE
93 #define HAVE_AS_DWARF2_DEBUG_LINE
94
95 #undef PREFERRED_DEBUGGING_TYPE
96 #define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG