📄 linux64.h
字号:
/* Definitions of target machine for GNU compiler, for 64 bit PowerPC linux. Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GCC. GCC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. GCC is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GCC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */#ifndef RS6000_BI_ARCH#undef DEFAULT_ABI#define DEFAULT_ABI ABI_AIX#undef TARGET_64BIT#define TARGET_64BIT 1#define DEFAULT_ARCH64_P 1#define RS6000_BI_ARCH_P 0#else#define DEFAULT_ARCH64_P (TARGET_DEFAULT & MASK_64BIT)#define RS6000_BI_ARCH_P 1#endif#ifdef IN_LIBGCC2#undef TARGET_64BIT#ifdef __powerpc64__#define TARGET_64BIT 1#else#define TARGET_64BIT 0#endif#endif#undef TARGET_AIX#define TARGET_AIX TARGET_64BIT#ifdef HAVE_LD_NO_DOT_SYMS/* New ABI uses a local sym for the function entry point. */extern int dot_symbols;#undef DOT_SYMBOLS#define DOT_SYMBOLS dot_symbols#endif#undef PROCESSOR_DEFAULT#define PROCESSOR_DEFAULT PROCESSOR_POWER4#undef PROCESSOR_DEFAULT64#define PROCESSOR_DEFAULT64 PROCESSOR_POWER4/* We don't need to generate entries in .fixup, except when -mrelocatable or -mrelocatable-lib is given. */#undef RELOCATABLE_NEEDS_FIXUP#define RELOCATABLE_NEEDS_FIXUP \ (target_flags & target_flags_explicit & MASK_RELOCATABLE)#undef RS6000_ABI_NAME#define RS6000_ABI_NAME "linux"#define INVALID_64BIT "-m%s not supported in this configuration"#define INVALID_32BIT INVALID_64BIT#undef SUBSUBTARGET_OVERRIDE_OPTIONS#define SUBSUBTARGET_OVERRIDE_OPTIONS \ do \ { \ if (rs6000_alignment_string == 0) \ rs6000_alignment_flags = MASK_ALIGN_NATURAL; \ if (TARGET_64BIT) \ { \ if (DEFAULT_ABI != ABI_AIX) \ { \ rs6000_current_abi = ABI_AIX; \ error (INVALID_64BIT, "call"); \ } \ dot_symbols = !strcmp (rs6000_abi_name, "aixdesc"); \ if (target_flags & MASK_RELOCATABLE) \ { \ target_flags &= ~MASK_RELOCATABLE; \ error (INVALID_64BIT, "relocatable"); \ } \ if (target_flags & MASK_EABI) \ { \ target_flags &= ~MASK_EABI; \ error (INVALID_64BIT, "eabi"); \ } \ if (target_flags & MASK_PROTOTYPE) \ { \ target_flags &= ~MASK_PROTOTYPE; \ error (INVALID_64BIT, "prototype"); \ } \ if ((target_flags & MASK_POWERPC64) == 0) \ { \ target_flags |= MASK_POWERPC64; \ error ("-m64 requires a PowerPC64 cpu"); \ } \ } \ else \ { \ if (!RS6000_BI_ARCH_P) \ error (INVALID_32BIT, "32"); \ if (TARGET_PROFILE_KERNEL) \ { \ target_flags &= ~MASK_PROFILE_KERNEL; \ error (INVALID_32BIT, "profile-kernel"); \ } \ } \ } \ while (0)#ifdef RS6000_BI_ARCH#undef OVERRIDE_OPTIONS#define OVERRIDE_OPTIONS \ rs6000_override_options (((TARGET_DEFAULT ^ target_flags) & MASK_64BIT) \ ? (char *) 0 : TARGET_CPU_DEFAULT)#endif#undef ASM_DEFAULT_SPEC#undef ASM_SPEC#undef LINK_OS_LINUX_SPEC#ifndef RS6000_BI_ARCH#define ASM_DEFAULT_SPEC "-mppc64"#define ASM_SPEC "%(asm_spec64) %(asm_spec_common)"#define LINK_OS_LINUX_SPEC "%(link_os_linux_spec64)"#else#if DEFAULT_ARCH64_P#define ASM_DEFAULT_SPEC "-mppc%{!m32:64}"#define ASM_SPEC "%{m32:%(asm_spec32)}%{!m32:%(asm_spec64)} %(asm_spec_common)"#define LINK_OS_LINUX_SPEC "%{m32:%(link_os_linux_spec32)}%{!m32:%(link_os_linux_spec64)}"#else#define ASM_DEFAULT_SPEC "-mppc%{m64:64}"#define ASM_SPEC "%{!m64:%(asm_spec32)}%{m64:%(asm_spec64)} %(asm_spec_common)"#define LINK_OS_LINUX_SPEC "%{!m64:%(link_os_linux_spec32)}%{m64:%(link_os_linux_spec64)}"#endif#endif#define ASM_SPEC32 "-a32 %{n} %{T} %{Ym,*} %{Yd,*} \%{mrelocatable} %{mrelocatable-lib} %{fpic:-K PIC} %{fPIC:-K PIC} \%{memb} %{!memb: %{msdata: -memb} %{msdata=eabi: -memb}} \%{!mlittle: %{!mlittle-endian: %{!mbig: %{!mbig-endian: \ %{mcall-freebsd: -mbig} \ %{mcall-i960-old: -mlittle} \ %{mcall-linux: -mbig} \ %{mcall-gnu: -mbig} \ %{mcall-netbsd: -mbig} \}}}}"#define ASM_SPEC64 "-a64"#define ASM_SPEC_COMMON "%(asm_cpu) \%{.s: %{mregnames} %{mno-regnames}} %{.S: %{mregnames} %{mno-regnames}} \%{v:-V} %{Qy:} %{!Qn:-Qy} %{Wa,*:%*} \%{mlittle} %{mlittle-endian} %{mbig} %{mbig-endian}"#undef SUBSUBTARGET_EXTRA_SPECS#define SUBSUBTARGET_EXTRA_SPECS \ { "asm_spec_common", ASM_SPEC_COMMON }, \ { "asm_spec32", ASM_SPEC32 }, \ { "asm_spec64", ASM_SPEC64 }, \ { "link_os_linux_spec32", LINK_OS_LINUX_SPEC32 }, \ { "link_os_linux_spec64", LINK_OS_LINUX_SPEC64 },#undef MULTILIB_DEFAULTS#if DEFAULT_ARCH64_P#define MULTILIB_DEFAULTS { "m64" }#else#define MULTILIB_DEFAULTS { "m32" }#endif#ifndef RS6000_BI_ARCH/* 64-bit PowerPC Linux is always big-endian. */#undef TARGET_LITTLE_ENDIAN#define TARGET_LITTLE_ENDIAN 0/* 64-bit PowerPC Linux always has a TOC. */#undef TARGET_TOC#define TARGET_TOC 1/* Some things from sysv4.h we don't do when 64 bit. */#undef TARGET_RELOCATABLE#define TARGET_RELOCATABLE 0#undef TARGET_EABI#define TARGET_EABI 0#undef TARGET_PROTOTYPE#define TARGET_PROTOTYPE 0#undef RELOCATABLE_NEEDS_FIXUP#define RELOCATABLE_NEEDS_FIXUP 0#endif#define MASK_PROFILE_KERNEL 0x00100000/* Non-standard profiling for kernels, which just saves LR then calls _mcount without worrying about arg saves. The idea is to change the function prologue as little as possible as it isn't easy to account for arg save/restore code added just for _mcount. */#define TARGET_PROFILE_KERNEL (target_flags & MASK_PROFILE_KERNEL)/* Override sysv4.h. */#undef EXTRA_SUBTARGET_SWITCHES#define EXTRA_SUBTARGET_SWITCHES \ {"profile-kernel", MASK_PROFILE_KERNEL, \ N_("Call mcount for profiling before a function prologue") }, \ {"no-profile-kernel", -MASK_PROFILE_KERNEL, \ N_("Call mcount for profiling after a function prologue") },/* We use glibc _mcount for profiling. */#define NO_PROFILE_COUNTERS TARGET_64BIT#define PROFILE_HOOK(LABEL) \ do { if (TARGET_64BIT) output_profile_hook (LABEL); } while (0)/* PowerPC64 Linux word-aligns FP doubles when -malign-power is given. */#undef ADJUST_FIELD_ALIGN#define ADJUST_FIELD_ALIGN(FIELD, COMPUTED) \ ((TARGET_ALTIVEC && TREE_CODE (TREE_TYPE (FIELD)) == VECTOR_TYPE) \ ? 128 \ : (TARGET_64BIT \ && TARGET_ALIGN_NATURAL == 0 \ && TYPE_MODE (TREE_CODE (TREE_TYPE (FIELD)) == ARRAY_TYPE \ ? get_inner_array_type (FIELD) \ : TREE_TYPE (FIELD)) == DFmode) \ ? MIN ((COMPUTED), 32) \ : (COMPUTED))/* PowerPC64 Linux increases natural record alignment to doubleword if the first field is an FP double, only if in power alignment mode. */#undef ROUND_TYPE_ALIGN#define ROUND_TYPE_ALIGN(STRUCT, COMPUTED, SPECIFIED) \ ((TARGET_ALTIVEC && TREE_CODE (STRUCT) == VECTOR_TYPE) \ ? MAX (MAX ((COMPUTED), (SPECIFIED)), 128) \ : (TARGET_64BIT \ && (TREE_CODE (STRUCT) == RECORD_TYPE \ || TREE_CODE (STRUCT) == UNION_TYPE \ || TREE_CODE (STRUCT) == QUAL_UNION_TYPE) \ && TARGET_ALIGN_NATURAL == 0) \ ? rs6000_special_round_type_align (STRUCT, COMPUTED, SPECIFIED) \ : MAX ((COMPUTED), (SPECIFIED)))/* Indicate that jump tables go in the text section. */#undef JUMP_TABLES_IN_TEXT_SECTION#define JUMP_TABLES_IN_TEXT_SECTION TARGET_64BIT/* The linux ppc64 ABI isn't explicit on whether aggregates smaller than a doubleword should be padded upward or downward. You could reasonably assume that they follow the normal rules for structure layout treating the parameter area as any other block of memory, then map the reg param area to registers. i.e. pad upward. Setting both of the following defines results in this behavior. Setting just the first one will result in aggregates that fit in a doubleword being padded downward, and others being padded upward. Not a bad idea as this results in struct { int x; } being passed the same way as an int. */#define AGGREGATE_PADDING_FIXED TARGET_64BIT#define AGGREGATES_PAD_UPWARD_ALWAYS 0/* Specify padding for the last element of a block move between registers and memory. FIRST is nonzero if this is the only element. */#define BLOCK_REG_PADDING(MODE, TYPE, FIRST) \ (!(FIRST) ? upward : FUNCTION_ARG_PADDING (MODE, TYPE))/* __throw will restore its own return address to be the same as the return address of the function that the throw is being made to. This is unfortunate, because we want to check the original return address to see if we need to restore the TOC. So we have to squirrel it away with this. */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -