📄 pa64-hpux.h
字号:
/* Definitions of target machine for GNU compiler, for HPs running HPUX using the 64bit runtime model. Copyright (C) 1999, 2000, 2001, 2002, 2004, 2005 Free Software Foundation, Inc.This file is part of GCC.GCC is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe 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 ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with GCC; see the file COPYING. If not, write tothe Free Software Foundation, 59 Temple Place - Suite 330,Boston, MA 02111-1307, USA. */#undef SUBTARGET_SWITCHES#define SUBTARGET_SWITCHES \ { "sio", MASK_SIO, \ N_("Generate cpp defines for server IO") }, \ { "wsio", -MASK_SIO, \ N_("Generate cpp defines for workstation IO") }, \ {"gnu-ld", MASK_GNU_LD, \ N_("Assume code will be linked by GNU ld") }, \ {"hp-ld", -MASK_GNU_LD, \ N_("Assume code will be linked by HP ld") },/* We can debug dynamically linked executables on hpux11; we also want dereferencing of a NULL pointer to cause a SEGV. Do not move the "+Accept TypeMismatch" switch. We check for it in collect2 to determine which init/fini is needed. */#undef LINK_SPEC#if ((TARGET_DEFAULT | TARGET_CPU_DEFAULT) & MASK_GNU_LD)#define LINK_SPEC \ "%{!shared:%{p:-L/lib/pa20_64/libp -L/usr/lib/pa20_64/libp %{!static:\ %nWarning: consider linking with `-static' as system libraries with\n\ %n profiling support are only provided in archive format}}}\ %{!shared:%{pg:-L/lib/pa20_64/libp -L/usr/lib/pa20_64/libp %{!static:\ %nWarning: consider linking with `-static' as system libraries with\n\ %n profiling support are only provided in archive format}}}\ %{mhp-ld:+Accept TypeMismatch -z} -E %{mlinker-opt:-O} %{!shared:-u main}\ %{static:-a archive} %{shared:%{mhp-ld:-b}%{!mhp-ld:-shared}}"#else#define LINK_SPEC \ "%{!shared:%{p:-L/lib/pa20_64/libp -L/usr/lib/pa20_64/libp %{!static:\ %nWarning: consider linking with `-static' as system libraries with\n\ %n profiling support are only provided in archive format}}}\ %{!shared:%{pg:-L/lib/pa20_64/libp -L/usr/lib/pa20_64/libp %{!static:\ %nWarning: consider linking with `-static' as system libraries with\n\ %n profiling support are only provided in archive format}}}\ %{!mgnu-ld:+Accept TypeMismatch -z} -E %{mlinker-opt:-O} %{!shared:-u main}\ %{static:-a archive} %{shared:%{mgnu-ld:-shared}%{!mgnu-ld:-b}}"#endif/* Profiling support is only provided in libc.a. However, libprof and libgprof are only available in shared form on HP-UX 11.00. We use the shared form if we are using the GNU linker or an archive form isn't available. We also usually need to link with libdld and it's only available in shared form. */#undef LIB_SPEC#if ((TARGET_DEFAULT | TARGET_CPU_DEFAULT) & MASK_GNU_LD)#define LIB_SPEC \ "%{!shared:\ %{!p:%{!pg: -lc %{static:%{!nolibdld:-a shared -ldld -a archive -lc}}}}\ %{p:%{!pg:%{static:%{!mhp-ld:-a shared}%{mhp-ld:-a archive_shared}}\ -lprof %{static:-a archive} -lc\ %{static:%{!nolibdld:-a shared -ldld -a archive -lc}}}}\ %{pg:%{static:%{!mhp-ld:-a shared}%{mhp-ld:-a archive_shared}}\ -lgprof %{static:-a archive} -lc\ %{static:%{!nolibdld:-a shared -ldld -a archive -lc}}}}\ /usr/lib/pa20_64/milli.a"#else#define LIB_SPEC \ "%{!shared:\ %{!p:%{!pg: -lc %{static:%{!nolibdld:-a shared -ldld -a archive -lc}}}}\ %{p:%{!pg:%{static:%{mgnu-ld:-a shared}%{!mgnu-ld:-a archive_shared}}\ -lprof %{static:-a archive} -lc\ %{static:%{!nolibdld:-a shared -ldld -a archive -lc}}}}\ %{pg:%{static:%{mgnu-ld:-a shared}%{!mgnu-ld:-a archive_shared}}\ -lgprof %{static:-a archive} -lc\ %{static:%{!nolibdld:-a shared -ldld -a archive -lc}}}}\ /usr/lib/pa20_64/milli.a"#endif/* Under hpux11, the normal location of the `ld' and `as' programs is the /usr/ccs/bin directory. */#ifndef CROSS_COMPILE#undef MD_EXEC_PREFIX#define MD_EXEC_PREFIX "/usr/ccs/bin"#endif/* Default prefixes. */#undef STANDARD_STARTFILE_PREFIX_1#define STANDARD_STARTFILE_PREFIX_1 "/lib/pa20_64/"#undef STANDARD_STARTFILE_PREFIX_2#define STANDARD_STARTFILE_PREFIX_2 "/usr/lib/pa20_64/"/* Under hpux11 the normal location of the various pa20_64 *crt*.o files is the /usr/ccs/lib/pa20_64 directory. Some files may also be in the /opt/langtools/lib/pa20_64 directory. */#ifndef CROSS_COMPILE#undef MD_STARTFILE_PREFIX#define MD_STARTFILE_PREFIX "/usr/ccs/lib/pa20_64/"#endif#ifndef CROSS_COMPILE#undef MD_STARTFILE_PREFIX_1#define MD_STARTFILE_PREFIX_1 "/opt/langtools/lib/pa20_64/"#endif/* This macro specifies the biggest alignment supported by the object file format of this machine. The .align directive in the HP assembler allows alignments up to 4096 bytes. However, the maximum alignment of a global common symbol is 16 bytes using HP ld. Unfortunately, this macro doesn't provide a method to check for common symbols. */#undef MAX_OFILE_ALIGNMENT#define MAX_OFILE_ALIGNMENT 32768/* Due to limitations in the target structure, it isn't currently possible to dynamically switch between the GNU and HP assemblers. */#undef TARGET_GAS/* Configure selects the standard ELFOS defines for use with GAS. */#ifdef USING_ELFOS_H/* We are using GAS. */#define TARGET_GAS 1#undef TARGET_ASM_FILE_START#define TARGET_ASM_FILE_START pa_hpux64_gas_file_start/* This is how we output a null terminated string. */#undef STRING_ASM_OP#define STRING_ASM_OP "\t.stringz\t"#define TEXT_SECTION_ASM_OP "\t.text"#define DATA_SECTION_ASM_OP "\t.data"#define BSS_SECTION_ASM_OP "\t.section\t.bss"#define JCR_SECTION_NAME ".jcr"#define HP_INIT_ARRAY_SECTION_ASM_OP "\t.section\t.init"#define GNU_INIT_ARRAY_SECTION_ASM_OP "\t.section\t.init_array"#define HP_FINI_ARRAY_SECTION_ASM_OP "\t.section\t.fini"#define GNU_FINI_ARRAY_SECTION_ASM_OP "\t.section\t.fini_array"/* We need to override the following two macros defined in elfos.h since the .comm directive has a different syntax and it can't be used for local common symbols. */#undef ASM_OUTPUT_ALIGNED_COMMON#define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN) \ pa_asm_output_aligned_common (FILE, NAME, SIZE, ALIGN)#undef ASM_OUTPUT_ALIGNED_LOCAL#define ASM_OUTPUT_ALIGNED_LOCAL(FILE, NAME, SIZE, ALIGN) \ pa_asm_output_aligned_local (FILE, NAME, SIZE, ALIGN)/* The define in pa.h doesn't work with the alias attribute. The default is ok with the following define for GLOBAL_ASM_OP. */#undef TARGET_ASM_GLOBALIZE_LABEL/* This is how we globalize a label. */#define GLOBAL_ASM_OP "\t.globl\t"/* Hacked version from defaults.h that uses assemble_name_raw instead of assemble_name. A symbol in a type directive that isn't otherwise referenced doesn't cause the symbol to be placed in the symbol table of the assembled object. */#undef ASM_OUTPUT_TYPE_DIRECTIVE#define ASM_OUTPUT_TYPE_DIRECTIVE(STREAM, NAME, TYPE) \do { \ fputs (TYPE_ASM_OP, STREAM); \ assemble_name_raw (STREAM, NAME); \ fputs (", ", STREAM); \ fprintf (STREAM, TYPE_OPERAND_FMT, TYPE); \ putc ('\n', STREAM); \} while (0)/* Hacked version from elfos.h that doesn't output a label. */#undef ASM_DECLARE_FUNCTION_NAME#define ASM_DECLARE_FUNCTION_NAME(FILE, NAME, DECL) \do { \ ASM_OUTPUT_TYPE_DIRECTIVE (FILE, NAME, "function"); \ ASM_DECLARE_RESULT (FILE, DECL_RESULT (DECL)); \} while (0)/* The type of external references must be set correctly for the dynamic loader to work correctly. This is equivalent to the HP assembler's .IMPORT directive but relates more directly to ELF object file types. */#define ASM_OUTPUT_EXTERNAL(FILE, DECL, NAME) \ pa_hpux_asm_output_external ((FILE), (DECL), (NAME))#define ASM_OUTPUT_EXTERNAL_REAL(FILE, DECL, NAME) \do { \ if (FUNCTION_NAME_P (NAME)) \ ASM_OUTPUT_TYPE_DIRECTIVE (FILE, NAME, "function"); \ else \ ASM_OUTPUT_TYPE_DIRECTIVE (FILE, NAME, "object"); \} while (0)/* We need set the type for external libcalls. Also note that not all libcall names are passed to targetm.encode_section_info (e.g., __main). Thus, we also have to do the section encoding if it hasn't been done already. */#undef ASM_OUTPUT_EXTERNAL_LIBCALL#define ASM_OUTPUT_EXTERNAL_LIBCALL(FILE, FUN) \do { \ if (!FUNCTION_NAME_P (XSTR (FUN, 0))) \
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -