1 /* OS independent definitions for AMD x86-64.
2 Copyright (C) 2001-2015 Free Software Foundation, Inc.
3 Contributed by Bo Thorsen <bo@suse.de>.
5 This file is part of GCC.
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)
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.
17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 <http://www.gnu.org/licenses/>. */
26 #undef ASM_COMMENT_START
27 #define ASM_COMMENT_START "#"
29 #undef DBX_REGISTER_NUMBER
30 #define DBX_REGISTER_NUMBER(n) \
31 (TARGET_64BIT ? dbx64_register_map[n] : svr4_dbx_register_map[n])
33 /* Output assembler code to FILE to call the profiler. */
34 #define NO_PROFILE_COUNTERS 1
37 #define MCOUNT_NAME "mcount"
40 #define SIZE_TYPE (TARGET_LP64 ? "long unsigned int" : "unsigned int")
43 #define PTRDIFF_TYPE (TARGET_LP64 ? "long int" : "int")
46 #define WCHAR_TYPE "int"
48 #undef WCHAR_TYPE_SIZE
49 #define WCHAR_TYPE_SIZE 32
52 #define ASM_SPEC "%{m32:--32} %{m64:--64} %{mx32:--x32}"
54 #undef ASM_OUTPUT_ALIGNED_BSS
55 #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
56 x86_output_aligned_bss (FILE, DECL, NAME, SIZE, ALIGN)
58 #undef ASM_OUTPUT_ALIGNED_COMMON
59 #define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN) \
60 x86_elf_aligned_common (FILE, NAME, SIZE, ALIGN);
62 /* This is used to align code labels according to Intel recommendations. */
64 #ifdef HAVE_GAS_MAX_SKIP_P2ALIGN
65 #define ASM_OUTPUT_MAX_SKIP_ALIGN(FILE,LOG,MAX_SKIP) \
68 if ((MAX_SKIP) == 0) fprintf ((FILE), "\t.p2align %d\n", (LOG)); \
70 fprintf ((FILE), "\t.p2align %d,,%d\n", (LOG), (MAX_SKIP)); \
71 /* Make sure that we have at least 8 byte alignment if > 8 byte \
72 alignment is preferred. */ \
74 && (1 << (LOG)) > ((MAX_SKIP) + 1) \
76 fputs ("\t.p2align 3\n", (FILE)); \
80 #undef ASM_OUTPUT_MAX_SKIP_PAD
81 #define ASM_OUTPUT_MAX_SKIP_PAD(FILE, LOG, MAX_SKIP) \
84 if ((MAX_SKIP) == 0) \
85 fprintf ((FILE), "\t.p2align %d\n", (LOG)); \
87 fprintf ((FILE), "\t.p2align %d,,%d\n", (LOG), (MAX_SKIP)); \
92 /* i386 System V Release 4 uses DWARF debugging info.
93 x86-64 ABI specifies DWARF2. */
95 #define DWARF2_DEBUGGING_INFO 1
96 #define DWARF2_UNWIND_INFO 1
98 #undef PREFERRED_DEBUGGING_TYPE
99 #define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG
101 #undef TARGET_ASM_SELECT_SECTION
102 #define TARGET_ASM_SELECT_SECTION x86_64_elf_select_section
104 #undef TARGET_ASM_UNIQUE_SECTION
105 #define TARGET_ASM_UNIQUE_SECTION x86_64_elf_unique_section
107 #undef TARGET_SECTION_TYPE_FLAGS
108 #define TARGET_SECTION_TYPE_FLAGS x86_64_elf_section_type_flags