| /* Operating system specific defines to be used when targeting GCC for |
| hosting on Windows32, using a Unix style C library and tools. |
| Copyright (C) 1995-2021 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 3, 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 COPYING3. If not see |
| <http://www.gnu.org/licenses/>. */ |
| |
| #define DWARF2_DEBUGGING_INFO 1 |
| |
| #undef PREFERRED_DEBUGGING_TYPE |
| #define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG |
| |
| #undef TARGET_SEH |
| #define TARGET_SEH (TARGET_64BIT_MS_ABI && flag_unwind_tables) |
| |
| /* Win64 with SEH cannot represent DRAP stack frames. Disable its use. |
| Force the use of different mechanisms to allocate aligned local data. */ |
| #undef MAX_STACK_ALIGNMENT |
| #define MAX_STACK_ALIGNMENT (TARGET_SEH ? 128 : MAX_OFILE_ALIGNMENT) |
| |
| /* 32-bit Windows aligns the stack on a 4-byte boundary but SSE instructions |
| may require 16-byte alignment. */ |
| #undef STACK_REALIGN_DEFAULT |
| #define STACK_REALIGN_DEFAULT TARGET_SSE |
| |
| /* Support hooks for SEH. */ |
| #undef TARGET_ASM_UNWIND_EMIT |
| #define TARGET_ASM_UNWIND_EMIT i386_pe_seh_unwind_emit |
| #undef TARGET_ASM_UNWIND_EMIT_BEFORE_INSN |
| #define TARGET_ASM_UNWIND_EMIT_BEFORE_INSN false |
| #undef TARGET_ASM_FUNCTION_END_PROLOGUE |
| #define TARGET_ASM_FUNCTION_END_PROLOGUE i386_pe_seh_end_prologue |
| #undef TARGET_ASM_EMIT_EXCEPT_PERSONALITY |
| #define TARGET_ASM_EMIT_EXCEPT_PERSONALITY i386_pe_seh_emit_except_personality |
| #undef TARGET_ASM_INIT_SECTIONS |
| #define TARGET_ASM_INIT_SECTIONS i386_pe_seh_init_sections |
| #define SUBTARGET_ASM_UNWIND_INIT i386_pe_seh_init |
| |
| #undef DEFAULT_ABI |
| #define DEFAULT_ABI (TARGET_64BIT ? MS_ABI : SYSV_ABI) |
| |
| #undef TARGET_PECOFF |
| #define TARGET_PECOFF 1 |
| |
| #if ! defined (USE_MINGW64_LEADING_UNDERSCORES) |
| #undef USER_LABEL_PREFIX |
| #define USER_LABEL_PREFIX (TARGET_64BIT ? "" : "_") |
| |
| #undef LOCAL_LABEL_PREFIX |
| #define LOCAL_LABEL_PREFIX (TARGET_64BIT ? "." : "") |
| |
| #undef ASM_GENERATE_INTERNAL_LABEL |
| #define ASM_GENERATE_INTERNAL_LABEL(BUF,PREFIX,NUMBER) \ |
| sprintf ((BUF), "*%s%s%ld", LOCAL_LABEL_PREFIX, \ |
| (PREFIX), (long)(NUMBER)) |
| |
| #undef LPREFIX |
| #define LPREFIX (TARGET_64BIT ? ".L" : "L") |
| |
| #endif |
| |
| #undef DBX_REGISTER_NUMBER |
| #define DBX_REGISTER_NUMBER(n) \ |
| (TARGET_64BIT ? dbx64_register_map[n] \ |
| : (dwarf_debuginfo_p () \ |
| ? svr4_dbx_register_map[n] : dbx_register_map[n])) |
| |
| /* Map gcc register number to DWARF 2 CFA column number. For 32 bit |
| target, always use the svr4_dbx_register_map for DWARF .eh_frame |
| even if we don't use DWARF .debug_frame. */ |
| #undef DWARF_FRAME_REGNUM |
| #define DWARF_FRAME_REGNUM(n) \ |
| (TARGET_64BIT ? dbx64_register_map[(n)] \ |
| : svr4_dbx_register_map[(n)]) |
| |
| /* The 64-bit MS_ABI changes the set of call-used registers. */ |
| #undef DWARF_FRAME_REGISTERS |
| #define DWARF_FRAME_REGISTERS (TARGET_64BIT ? 33 : 17) |
| |
| /* Use section relative relocations for debugging offsets. Unlike |
| other targets that fake this by putting the section VMA at 0, PE |
| won't allow it. */ |
| #define ASM_OUTPUT_DWARF_OFFSET(FILE, SIZE, LABEL, OFFSET, SECTION) \ |
| do { \ |
| switch (SIZE) \ |
| { \ |
| case 4: \ |
| fputs ("\t.secrel32\t", FILE); \ |
| assemble_name (FILE, LABEL); \ |
| if ((OFFSET) != 0) \ |
| fprintf (FILE, "+" HOST_WIDE_INT_PRINT_DEC, \ |
| (HOST_WIDE_INT) (OFFSET)); \ |
| break; \ |
| case 8: \ |
| /* This is a hack. There is no 64-bit section relative \ |
| relocation. However, the COFF format also does not \ |
| support 64-bit file offsets; 64-bit applications are \ |
| limited to 32-bits of code+data in any one module. \ |
| Fake the 64-bit offset by zero-extending it. */ \ |
| fputs ("\t.secrel32\t", FILE); \ |
| assemble_name (FILE, LABEL); \ |
| if ((OFFSET) != 0) \ |
| fprintf (FILE, "+" HOST_WIDE_INT_PRINT_DEC, \ |
| (HOST_WIDE_INT) (OFFSET)); \ |
| fputs ("\n\t.long\t0", FILE); \ |
| break; \ |
| default: \ |
| gcc_unreachable (); \ |
| } \ |
| } while (0) |
| |
| #define TARGET_EXECUTABLE_SUFFIX ".exe" |
| |
| #define TARGET_OS_CPP_BUILTINS() \ |
| do \ |
| { \ |
| if (!TARGET_64BIT) \ |
| builtin_define ("_X86_=1"); \ |
| if (TARGET_SEH) \ |
| builtin_define ("__SEH__"); \ |
| builtin_assert ("system=winnt"); \ |
| builtin_define ("__stdcall=__attribute__((__stdcall__))"); \ |
| builtin_define ("__fastcall=__attribute__((__fastcall__))"); \ |
| builtin_define ("__thiscall=__attribute__((__thiscall__))"); \ |
| builtin_define ("__cdecl=__attribute__((__cdecl__))"); \ |
| if (!flag_iso) \ |
| { \ |
| builtin_define ("_stdcall=__attribute__((__stdcall__))"); \ |
| builtin_define ("_fastcall=__attribute__((__fastcall__))"); \ |
| builtin_define ("_thiscall=__attribute__((__thiscall__))"); \ |
| builtin_define ("_cdecl=__attribute__((__cdecl__))"); \ |
| } \ |
| /* Even though linkonce works with static libs, this is needed \ |
| to compare typeinfo symbols across dll boundaries. */ \ |
| builtin_define ("__GXX_MERGED_TYPEINFO_NAMES=0"); \ |
| builtin_define ("__GXX_TYPEINFO_EQUALITY_INLINE=0"); \ |
| EXTRA_OS_CPP_BUILTINS (); \ |
| } \ |
| while (0) |
| |
| /* Get tree.c to declare a target-specific specialization of |
| merge_decl_attributes. */ |
| #define TARGET_DLLIMPORT_DECL_ATTRIBUTES 1 |
| |
| /* This macro defines names of additional specifications to put in the specs |
| that can be used in various specifications like CC1_SPEC. Its definition |
| is an initializer with a subgrouping for each command option. |
| |
| Each subgrouping contains a string constant, that defines the |
| specification name, and a string constant that used by the GCC driver |
| program. |
| |
| Do not define this macro if it does not need to do anything. */ |
| |
| #undef SUBTARGET_EXTRA_SPECS |
| #define SUBTARGET_EXTRA_SPECS \ |
| { "mingw_include_path", DEFAULT_TARGET_MACHINE } |
| |
| #undef MATH_LIBRARY |
| #define MATH_LIBRARY "" |
| |
| #undef TARGET_LIBC_HAS_FUNCTION |
| #define TARGET_LIBC_HAS_FUNCTION no_c99_libc_has_function |
| |
| #define SIZE_TYPE (TARGET_64BIT ? "long long unsigned int" : "unsigned int") |
| #define PTRDIFF_TYPE (TARGET_64BIT ? "long long int" : "int") |
| |
| #define WCHAR_TYPE_SIZE 16 |
| #define WCHAR_TYPE "short unsigned int" |
| |
| /* Windows64 continues to use a 32-bit long type. */ |
| #undef LONG_TYPE_SIZE |
| #define LONG_TYPE_SIZE 32 |
| |
| #define drectve_section() \ |
| (fprintf (asm_out_file, "\t.section .drectve\n"), \ |
| in_section = NULL) |
| |
| /* Older versions of gas don't handle 'r' as data. |
| Explicitly set data flag with 'd'. */ |
| #define READONLY_DATA_SECTION_ASM_OP "\t.section .rdata,\"dr\"" |
| |
| /* Don't allow flag_pic to propagate since gas may produce invalid code |
| otherwise. */ |
| |
| #undef SUBTARGET_OVERRIDE_OPTIONS |
| #define SUBTARGET_OVERRIDE_OPTIONS \ |
| do { \ |
| flag_pic = TARGET_64BIT ? 1 : 0; \ |
| } while (0) |
| |
| /* Define this macro if references to a symbol must be treated |
| differently depending on something about the variable or |
| function named by the symbol (such as what section it is in). |
| |
| On i386 running Windows NT, modify the assembler name with a suffix |
| consisting of an atsign (@) followed by string of digits that represents |
| the number of bytes of arguments passed to the function, if it has the |
| attribute STDCALL. |
| |
| In addition, we must mark dll symbols specially. Definitions of |
| dllexport'd objects install some info in the .drectve section. |
| References to dllimport'd objects are fetched indirectly via |
| _imp__. If both are declared, dllexport overrides. This is also |
| needed to implement one-only vtables: they go into their own |
| section and we need to set DECL_SECTION_NAME so we do that here. |
| Note that we can be called twice on the same decl. */ |
| |
| #define SUBTARGET_ENCODE_SECTION_INFO i386_pe_encode_section_info |
| |
| /* Local and global relocs can be placed always into readonly memory |
| for PE-COFF targets. */ |
| #undef TARGET_ASM_RELOC_RW_MASK |
| #define TARGET_ASM_RELOC_RW_MASK i386_pe_reloc_rw_mask |
| |
| /* Output a common block. */ |
| #undef ASM_OUTPUT_ALIGNED_DECL_COMMON |
| #define ASM_OUTPUT_ALIGNED_DECL_COMMON \ |
| i386_pe_asm_output_aligned_decl_common |
| |
| /* Output the label for an initialized variable. */ |
| #undef ASM_DECLARE_OBJECT_NAME |
| #define ASM_DECLARE_OBJECT_NAME(STREAM, NAME, DECL) \ |
| do { \ |
| i386_pe_maybe_record_exported_symbol (DECL, NAME, 1); \ |
| ASM_OUTPUT_LABEL ((STREAM), (NAME)); \ |
| } while (0) |
| |
| /* Output a reference to a label. Fastcall function symbols |
| keep their '@' prefix, while other symbols are prefixed |
| with user_label_prefix. */ |
| #undef ASM_OUTPUT_LABELREF |
| #define ASM_OUTPUT_LABELREF(STREAM, NAME) \ |
| do { \ |
| if ((NAME)[0] != FASTCALL_PREFIX) \ |
| fputs (user_label_prefix, (STREAM)); \ |
| fputs ((NAME), (STREAM)); \ |
| } while (0) |
| |
| /* This does much the same in memory rather than to a stream. */ |
| #undef TARGET_MANGLE_ASSEMBLER_NAME |
| #define TARGET_MANGLE_ASSEMBLER_NAME i386_pe_mangle_assembler_name |
| |
| |
| /* Emit code to check the stack when allocating more than 4000 |
| bytes in one go. */ |
| #define CHECK_STACK_LIMIT 4000 |
| |
| /* By default, target has a 80387, uses IEEE compatible arithmetic, |
| returns float values in the 387 and needs stack probes. |
| We also align doubles to 64-bits for MSVC default compatibility. */ |
| |
| #undef TARGET_SUBTARGET_DEFAULT |
| #define TARGET_SUBTARGET_DEFAULT \ |
| (MASK_80387 | MASK_IEEE_FP | MASK_FLOAT_RETURNS \ |
| | MASK_STACK_PROBE | MASK_ALIGN_DOUBLE) |
| |
| #undef TARGET_SUBTARGET64_DEFAULT |
| #define TARGET_SUBTARGET64_DEFAULT \ |
| MASK_128BIT_LONG_DOUBLE |
| |
| /* This is how to output an assembler line |
| that says to advance the location counter |
| to a multiple of 2**LOG bytes. */ |
| |
| #undef ASM_OUTPUT_ALIGN |
| #define ASM_OUTPUT_ALIGN(FILE,LOG) \ |
| if ((LOG) != 0) fprintf ((FILE), "\t.align %d\n", 1 << (LOG)) |
| |
| /* Windows uses explicit import from shared libraries. */ |
| #define MULTIPLE_SYMBOL_SPACES 1 |
| |
| #define TARGET_ASM_UNIQUE_SECTION i386_pe_unique_section |
| #define TARGET_ASM_FUNCTION_RODATA_SECTION default_no_function_rodata_section |
| |
| #define SUPPORTS_ONE_ONLY 1 |
| |
| /* Switch into a generic section. */ |
| #define TARGET_ASM_NAMED_SECTION i386_pe_asm_named_section |
| |
| /* Select attributes for named sections. */ |
| #define TARGET_SECTION_TYPE_FLAGS i386_pe_section_type_flags |
| |
| /* Write the extra assembler code needed to declare a function |
| properly. */ |
| #undef ASM_DECLARE_FUNCTION_NAME |
| #define ASM_DECLARE_FUNCTION_NAME(FILE, NAME, DECL) \ |
| i386_pe_start_function (FILE, NAME, DECL) |
| |
| /* Write the extra assembler code needed to declare the name of a |
| cold function partition properly. */ |
| |
| #undef ASM_DECLARE_COLD_FUNCTION_NAME |
| #define ASM_DECLARE_COLD_FUNCTION_NAME(FILE, NAME, DECL) \ |
| do \ |
| { \ |
| i386_pe_declare_function_type (FILE, NAME, 0); \ |
| i386_pe_seh_cold_init (FILE, NAME); \ |
| ASM_OUTPUT_LABEL (FILE, NAME); \ |
| } \ |
| while (0) |
| |
| #undef ASM_DECLARE_FUNCTION_SIZE |
| #define ASM_DECLARE_FUNCTION_SIZE(FILE,NAME,DECL) \ |
| i386_pe_end_function (FILE, NAME, DECL) |
| |
| #undef ASM_DECLARE_COLD_FUNCTION_SIZE |
| #define ASM_DECLARE_COLD_FUNCTION_SIZE(FILE,NAME,DECL) \ |
| i386_pe_end_cold_function (FILE, NAME, DECL) |
| |
| /* Add an external function to the list of functions to be declared at |
| the end of the file. */ |
| #define ASM_OUTPUT_EXTERNAL(FILE, DECL, NAME) \ |
| do \ |
| { \ |
| if (TREE_CODE (DECL) == FUNCTION_DECL) \ |
| i386_pe_record_external_function ((DECL), (NAME)); \ |
| } \ |
| while (0) |
| |
| /* Declare the type properly for any external libcall. */ |
| #define ASM_OUTPUT_EXTERNAL_LIBCALL(FILE, FUN) \ |
| i386_pe_declare_function_type (FILE, XSTR (FUN, 0), 1) |
| |
| /* This says out to put a global symbol in the BSS section. */ |
| #undef ASM_OUTPUT_ALIGNED_BSS |
| #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \ |
| asm_output_aligned_bss ((FILE), (DECL), (NAME), (SIZE), (ALIGN)) |
| |
| /* Output function declarations at the end of the file. */ |
| #undef TARGET_ASM_FILE_END |
| #define TARGET_ASM_FILE_END i386_pe_file_end |
| |
| /* Kludge because of missing PE-COFF support for early LTO debug. */ |
| #undef TARGET_ASM_LTO_START |
| #define TARGET_ASM_LTO_START i386_pe_asm_lto_start |
| #undef TARGET_ASM_LTO_END |
| #define TARGET_ASM_LTO_END i386_pe_asm_lto_end |
| |
| #undef ASM_COMMENT_START |
| #define ASM_COMMENT_START " #" |
| |
| #ifndef DWARF2_UNWIND_INFO |
| /* If configured with --disable-sjlj-exceptions, use DWARF2 for 32-bit |
| mode else default to SJLJ. 64-bit code uses SEH unless you request |
| SJLJ. */ |
| #if (defined (CONFIG_SJLJ_EXCEPTIONS) && !CONFIG_SJLJ_EXCEPTIONS) |
| /* The logic of this #if must be kept synchronised with the logic |
| for selecting the tmake_eh_file fragment in libgcc/config.host. */ |
| #define DWARF2_UNWIND_INFO 1 |
| #else |
| #define DWARF2_UNWIND_INFO 0 |
| #endif |
| #endif |
| |
| #undef PROFILE_HOOK |
| #define PROFILE_HOOK(LABEL) \ |
| if (MAIN_NAME_P (DECL_NAME (current_function_decl))) \ |
| { \ |
| emit_call_insn (gen_rtx_CALL (VOIDmode, \ |
| gen_rtx_MEM (FUNCTION_MODE, \ |
| gen_rtx_SYMBOL_REF (Pmode, "_monstartup")), \ |
| const0_rtx)); \ |
| } |
| |
| /* For Win32 ABI compatibility */ |
| #undef DEFAULT_PCC_STRUCT_RETURN |
| #define DEFAULT_PCC_STRUCT_RETURN 0 |
| |
| /* MSVC returns aggregate types of up to 8 bytes via registers. |
| See i386.c:ix86_return_in_memory. */ |
| #undef MS_AGGREGATE_RETURN |
| #define MS_AGGREGATE_RETURN 1 |
| |
| /* Biggest alignment supported by the object file format of this |
| machine. Use this macro to limit the alignment which can be |
| specified using the `__attribute__ ((aligned (N)))' construct. If |
| not defined, the default value is `BIGGEST_ALIGNMENT'. */ |
| /* IMAGE_SCN_ALIGN_8192BYTES is the largest section alignment flag |
| specified in the PECOFF60 spec. Native MS compiler also limits |
| user-specified alignment to 8192 bytes. */ |
| #undef MAX_OFILE_ALIGNMENT |
| #define MAX_OFILE_ALIGNMENT (8192 * 8) |
| |
| /* BIGGEST_FIELD_ALIGNMENT macro is used directly by libobjc, There, we |
| align internal doubles in structures on dword boundaries. Otherwise, |
| support vector modes using ADJUST_FIELD_ALIGN, defined in i386.h. */ |
| #ifdef IN_TARGET_LIBS |
| #undef BIGGEST_FIELD_ALIGNMENT |
| #define BIGGEST_FIELD_ALIGNMENT 64 |
| #endif |
| |
| /* Enable alias attribute support. */ |
| #ifndef SET_ASM_OP |
| #define SET_ASM_OP "\t.set\t" |
| #endif |
| |
| /* This implements the `alias' attribute, keeping any stdcall or |
| fastcall decoration. */ |
| #undef ASM_OUTPUT_DEF_FROM_DECLS |
| #define ASM_OUTPUT_DEF_FROM_DECLS(STREAM, DECL, TARGET) \ |
| do \ |
| { \ |
| const char *alias \ |
| = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (DECL)); \ |
| i386_pe_maybe_record_exported_symbol (DECL, alias, 0); \ |
| if (TREE_CODE (DECL) == FUNCTION_DECL) \ |
| i386_pe_declare_function_type (STREAM, alias, \ |
| TREE_PUBLIC (DECL)); \ |
| ASM_OUTPUT_DEF (STREAM, alias, IDENTIFIER_POINTER (TARGET)); \ |
| } while (0) |
| |
| /* GNU as supports weak symbols on PECOFF. */ |
| #ifdef HAVE_GAS_WEAK |
| #define ASM_WEAKEN_LABEL(FILE, NAME) \ |
| do \ |
| { \ |
| fputs ("\t.weak\t", (FILE)); \ |
| assemble_name ((FILE), (NAME)); \ |
| fputc ('\n', (FILE)); \ |
| } \ |
| while (0) |
| |
| #endif /* HAVE_GAS_WEAK */ |
| |
| /* Decide whether it is safe to use a local alias for a virtual function |
| when constructing thunks. */ |
| #undef TARGET_USE_LOCAL_THUNK_ALIAS_P |
| #define TARGET_USE_LOCAL_THUNK_ALIAS_P(DECL) (!DECL_ONE_ONLY (DECL)) |
| |
| #define SUBTARGET_ATTRIBUTE_TABLE \ |
| { "selectany", 0, 0, true, false, false, false, \ |
| ix86_handle_selectany_attribute, NULL } |
| /* { name, min_len, max_len, decl_req, type_req, fn_type_req, |
| affects_type_identity, handler, exclude } */ |
| |
| /* mcount() does not need a counter variable. */ |
| #undef NO_PROFILE_COUNTERS |
| #define NO_PROFILE_COUNTERS 1 |
| |
| #define TARGET_VALID_DLLIMPORT_ATTRIBUTE_P i386_pe_valid_dllimport_attribute_p |
| #define TARGET_CXX_ADJUST_CLASS_AT_DEFINITION i386_pe_adjust_class_at_definition |
| #define SUBTARGET_MANGLE_DECL_ASSEMBLER_NAME i386_pe_mangle_decl_assembler_name |
| |
| #undef TARGET_ASM_ASSEMBLE_VISIBILITY |
| #define TARGET_ASM_ASSEMBLE_VISIBILITY i386_pe_assemble_visibility |
| |
| #undef SUB_TARGET_RECORD_STUB |
| #define SUB_TARGET_RECORD_STUB i386_pe_record_stub |
| |
| /* Static stack checking is supported by means of probes. */ |
| #define STACK_CHECK_STATIC_BUILTIN 1 |
| |
| #ifndef HAVE_GAS_ALIGNED_COMM |
| # define HAVE_GAS_ALIGNED_COMM 0 |
| #endif |