1 /* Subroutines for insn-output.c for Windows NT.
2 Contributed by Douglas Rupp (drupp@cs.washington.edu)
3 Copyright (C) 1995-2017 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
26 #include "basic-block.h"
32 #include "stringpool.h"
36 #include "lto-streamer.h"
39 #include "lto-section-names.h"
41 /* i386/PE specific attribute support.
43 i386/PE has two new attributes:
44 dllexport - for exporting a function/variable that will live in a dll
45 dllimport - for importing a function/variable from a dll
47 Microsoft allows multiple declspecs in one __declspec, separating
48 them with spaces. We do NOT support this. Instead, use __declspec
52 /* Handle a "shared" attribute;
53 arguments as in struct attribute_spec.handler. */
55 ix86_handle_shared_attribute (tree
*node
, tree name
, tree
, int,
58 if (TREE_CODE (*node
) != VAR_DECL
)
60 warning (OPT_Wattributes
, "%qE attribute only applies to variables",
68 /* Handle a "selectany" attribute;
69 arguments as in struct attribute_spec.handler. */
71 ix86_handle_selectany_attribute (tree
*node
, tree name
, tree
, int,
75 /* The attribute applies only to objects that are initialized and have
76 external linkage. However, we may not know about initialization
77 until the language frontend has processed the decl. Therefore
78 we make sure that variable isn't initialized as common. */
79 if (TREE_CODE (decl
) != VAR_DECL
|| !TREE_PUBLIC (decl
))
80 error ("%qE attribute applies only to initialized variables"
81 " with external linkage", name
);
84 make_decl_one_only (decl
, DECL_ASSEMBLER_NAME (decl
));
85 /* A variable with attribute selectany never can be common. */
86 DECL_COMMON (decl
) = 0;
89 /* We don't need to keep attribute itself. */
95 /* Return the type that we should use to determine if DECL is
96 imported or exported. */
99 associated_type (tree decl
)
101 return (DECL_CONTEXT (decl
) && TYPE_P (DECL_CONTEXT (decl
))
102 ? DECL_CONTEXT (decl
) : NULL_TREE
);
105 /* Return true if DECL should be a dllexport'd object. */
108 i386_pe_determine_dllexport_p (tree decl
)
110 if (TREE_CODE (decl
) != VAR_DECL
&& TREE_CODE (decl
) != FUNCTION_DECL
)
113 /* Don't export local clones of dllexports. */
114 if (!TREE_PUBLIC (decl
))
117 if (TREE_CODE (decl
) == FUNCTION_DECL
118 && DECL_DECLARED_INLINE_P (decl
)
119 && !flag_keep_inline_dllexport
)
122 if (lookup_attribute ("dllexport", DECL_ATTRIBUTES (decl
)))
128 /* Return true if DECL should be a dllimport'd object. */
131 i386_pe_determine_dllimport_p (tree decl
)
135 if (TREE_CODE (decl
) != VAR_DECL
&& TREE_CODE (decl
) != FUNCTION_DECL
)
138 if (DECL_DLLIMPORT_P (decl
))
141 /* The DECL_DLLIMPORT_P flag was set for decls in the class definition
142 by targetm.cxx.adjust_class_at_definition. Check again to emit
143 error message if the class attribute has been overridden by an
144 out-of-class definition of static data. */
145 assoc
= associated_type (decl
);
146 if (assoc
&& lookup_attribute ("dllimport", TYPE_ATTRIBUTES (assoc
))
147 && TREE_CODE (decl
) == VAR_DECL
148 && TREE_STATIC (decl
) && TREE_PUBLIC (decl
)
149 && !DECL_EXTERNAL (decl
)
150 /* vtable's are linkonce constants, so defining a vtable is not
151 an error as long as we don't try to import it too. */
152 && !DECL_VIRTUAL_P (decl
))
153 error ("definition of static data member %q+D of "
154 "dllimport%'d class", decl
);
159 /* Handle the -mno-fun-dllimport target switch. */
162 i386_pe_valid_dllimport_attribute_p (const_tree decl
)
164 if (TARGET_NOP_FUN_DLLIMPORT
&& TREE_CODE (decl
) == FUNCTION_DECL
)
169 /* Return string which is the function name, identified by ID, modified
170 with a suffix consisting of an atsign (@) followed by the number of
171 bytes of arguments. If ID is NULL use the DECL_NAME as base. If
172 FASTCALL is true, also add the FASTCALL_PREFIX.
173 Return NULL if no change required. */
176 gen_stdcall_or_fastcall_suffix (tree decl
, tree id
, bool fastcall
)
178 HOST_WIDE_INT total
= 0;
179 const char *old_str
= IDENTIFIER_POINTER (id
!= NULL_TREE
? id
: DECL_NAME (decl
));
181 tree type
= TREE_TYPE (DECL_ORIGIN (decl
));
183 function_args_iterator args_iter
;
185 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
187 if (prototype_p (type
))
189 /* This attribute is ignored for variadic functions. */
193 /* Quit if we hit an incomplete type. Error is reported
194 by convert_arguments in c-typeck.c or cp/typeck.c. */
195 FOREACH_FUNCTION_ARGS(type
, arg
, args_iter
)
197 HOST_WIDE_INT parm_size
;
198 HOST_WIDE_INT parm_boundary_bytes
= PARM_BOUNDARY
/ BITS_PER_UNIT
;
200 if (! COMPLETE_TYPE_P (arg
))
203 parm_size
= int_size_in_bytes (arg
);
207 /* Must round up to include padding. This is done the same
208 way as in store_one_arg. */
209 parm_size
= ((parm_size
+ parm_boundary_bytes
- 1)
210 / parm_boundary_bytes
* parm_boundary_bytes
);
215 /* Assume max of 8 base 10 digits in the suffix. */
216 p
= new_str
= XALLOCAVEC (char, 1 + strlen (old_str
) + 1 + 8 + 1);
218 *p
++ = FASTCALL_PREFIX
;
219 sprintf (p
, "%s@" HOST_WIDE_INT_PRINT_DEC
, old_str
, total
);
221 return get_identifier (new_str
);
224 /* Maybe decorate and get a new identifier for the DECL of a stdcall or
225 fastcall function. The original identifier is supplied in ID. */
228 i386_pe_maybe_mangle_decl_assembler_name (tree decl
, tree id
)
230 tree new_id
= NULL_TREE
;
232 if (TREE_CODE (decl
) == FUNCTION_DECL
)
234 unsigned int ccvt
= ix86_get_callcvt (TREE_TYPE (decl
));
235 if ((ccvt
& IX86_CALLCVT_STDCALL
) != 0)
238 /* If we are using -mrtd emit undecorated symbol and let linker
239 do the proper resolving. */
241 new_id
= gen_stdcall_or_fastcall_suffix (decl
, id
, false);
243 else if ((ccvt
& IX86_CALLCVT_FASTCALL
) != 0)
244 new_id
= gen_stdcall_or_fastcall_suffix (decl
, id
, true);
250 /* Emit an assembler directive to set symbol for DECL visibility to
251 the visibility type VIS, which must not be VISIBILITY_DEFAULT.
252 As for PE there is no hidden support in gas, we just warn for
253 user-specified visibility attributes. */
256 i386_pe_assemble_visibility (tree decl
, int)
259 || !lookup_attribute ("visibility", DECL_ATTRIBUTES (decl
)))
261 if (!DECL_ARTIFICIAL (decl
))
262 warning (OPT_Wattributes
, "visibility attribute not supported "
263 "in this configuration; ignored");
266 /* This is used as a target hook to modify the DECL_ASSEMBLER_NAME
267 in the language-independent default hook
268 langhooks,c:lhd_set_decl_assembler_name ()
269 and in cp/mangle,c:mangle_decl (). */
271 i386_pe_mangle_decl_assembler_name (tree decl
, tree id
)
273 tree new_id
= i386_pe_maybe_mangle_decl_assembler_name (decl
, id
);
275 return (new_id
? new_id
: id
);
278 /* This hook behaves the same as varasm.c/assemble_name(), but
279 generates the name into memory rather than outputting it to
283 i386_pe_mangle_assembler_name (const char *name
)
285 const char *skipped
= name
+ (*name
== '*' ? 1 : 0);
286 const char *stripped
= targetm
.strip_name_encoding (skipped
);
287 if (*name
!= '*' && *user_label_prefix
&& *stripped
!= FASTCALL_PREFIX
)
288 stripped
= ACONCAT ((user_label_prefix
, stripped
, NULL
));
289 return get_identifier (stripped
);
293 i386_pe_encode_section_info (tree decl
, rtx rtl
, int first
)
298 /* Do this last, due to our frobbing of DECL_DLLIMPORT_P above. */
299 default_encode_section_info (decl
, rtl
, first
);
301 /* Careful not to prod global register variables. */
305 symbol
= XEXP (rtl
, 0);
306 gcc_assert (GET_CODE (symbol
) == SYMBOL_REF
);
308 switch (TREE_CODE (decl
))
318 /* Mark the decl so we can tell from the rtl whether the object is
319 dllexport'd or dllimport'd. tree.c: merge_dllimport_decl_attributes
320 handles dllexport/dllimport override semantics. */
321 flags
= (SYMBOL_REF_FLAGS (symbol
) &
322 ~(SYMBOL_FLAG_DLLIMPORT
| SYMBOL_FLAG_DLLEXPORT
));
323 if (i386_pe_determine_dllexport_p (decl
))
324 flags
|= SYMBOL_FLAG_DLLEXPORT
;
325 else if (i386_pe_determine_dllimport_p (decl
))
326 flags
|= SYMBOL_FLAG_DLLIMPORT
;
328 SYMBOL_REF_FLAGS (symbol
) = flags
;
333 i386_pe_binds_local_p (const_tree exp
)
335 if ((TREE_CODE (exp
) == VAR_DECL
|| TREE_CODE (exp
) == FUNCTION_DECL
)
336 && DECL_DLLIMPORT_P (exp
))
339 /* External public symbols, which aren't weakref-s,
340 have local-binding for PE targets. */
342 && !lookup_attribute ("weakref", DECL_ATTRIBUTES (exp
))
344 && DECL_EXTERNAL (exp
))
347 #ifndef MAKE_DECL_ONE_ONLY
348 /* PR target/66655: If a function has been marked as DECL_ONE_ONLY
349 but we do not the means to make it so, then do not allow it to
352 && TREE_CODE (exp
) == FUNCTION_DECL
354 && DECL_ONE_ONLY (exp
)
355 && ! DECL_EXTERNAL (exp
)
356 && DECL_DECLARED_INLINE_P (exp
))
360 return default_binds_local_p_1 (exp
, 0);
363 /* Also strip the fastcall prefix and stdcall suffix. */
366 i386_pe_strip_name_encoding_full (const char *str
)
369 const char *name
= default_strip_name_encoding (str
);
371 /* Strip leading '@' on fastcall symbols. */
375 /* Strip trailing "@n". */
376 p
= strchr (name
, '@');
378 return ggc_alloc_string (name
, p
- name
);
384 i386_pe_unique_section (tree decl
, int reloc
)
387 const char *name
, *prefix
;
390 /* Ignore RELOC, if we are allowed to put relocated
391 const data into read-only section. */
392 if (!flag_writable_rel_rdata
)
394 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
395 name
= i386_pe_strip_name_encoding_full (name
);
397 /* The object is put in, for example, section .text$foo.
398 The linker will then ultimately place them in .text
399 (everything from the $ on is stripped). Don't put
400 read-only data in .rdata section to avoid a PE linker
401 bug when .rdata$* grouped sections are used in code
402 without a .rdata section. */
403 if (TREE_CODE (decl
) == FUNCTION_DECL
)
405 else if (decl_readonly_section (decl
, reloc
))
409 len
= strlen (name
) + strlen (prefix
);
410 string
= XALLOCAVEC (char, len
+ 1);
411 sprintf (string
, "%s%s", prefix
, name
);
413 set_decl_section_name (decl
, string
);
416 /* Local and global relocs can be placed always into readonly memory for
417 memory for PE-COFF targets. */
419 i386_pe_reloc_rw_mask (void)
424 /* Select a set of attributes for section NAME based on the properties
425 of DECL and whether or not RELOC indicates that DECL's initializer
426 might contain runtime relocations.
428 We make the section read-only and executable for a function decl,
429 read-only for a const data decl, and writable for a non-const data decl.
431 If the section has already been defined, to not allow it to have
432 different attributes, as (1) this is ambiguous since we're not seeing
433 all the declarations up front and (2) some assemblers (e.g. SVR4)
434 do not recognize section redefinitions. */
435 /* ??? This differs from the "standard" PE implementation in that we
436 handle the SHARED variable attribute. Should this be done for all
439 #define SECTION_PE_SHARED SECTION_MACH_DEP
442 i386_pe_section_type_flags (tree decl
, const char *, int reloc
)
446 /* Ignore RELOC, if we are allowed to put relocated
447 const data into read-only section. */
448 if (!flag_writable_rel_rdata
)
451 if (decl
&& TREE_CODE (decl
) == FUNCTION_DECL
)
452 flags
= SECTION_CODE
;
453 else if (decl
&& decl_readonly_section (decl
, reloc
))
457 flags
= SECTION_WRITE
;
459 if (decl
&& TREE_CODE (decl
) == VAR_DECL
460 && lookup_attribute ("shared", DECL_ATTRIBUTES (decl
)))
461 flags
|= SECTION_PE_SHARED
;
464 if (decl
&& DECL_P (decl
) && DECL_ONE_ONLY (decl
))
465 flags
|= SECTION_LINKONCE
;
471 i386_pe_asm_named_section (const char *name
, unsigned int flags
,
474 char flagchars
[8], *f
= flagchars
;
476 #if defined (HAVE_GAS_SECTION_EXCLUDE) && HAVE_GAS_SECTION_EXCLUDE == 1
477 if ((flags
& SECTION_EXCLUDE
) != 0)
481 if ((flags
& (SECTION_CODE
| SECTION_WRITE
)) == 0)
484 *f
++ ='d'; /* This is necessary for older versions of gas. */
489 if (flags
& SECTION_CODE
)
491 if (flags
& SECTION_WRITE
)
493 if (flags
& SECTION_PE_SHARED
)
495 #if !defined (HAVE_GAS_SECTION_EXCLUDE) || HAVE_GAS_SECTION_EXCLUDE == 0
496 /* If attribute "e" isn't supported we mark this section as
498 if ((flags
& SECTION_EXCLUDE
) != 0)
503 /* LTO sections need 1-byte alignment to avoid confusing the
504 zlib decompression algorithm with trailing zero pad bytes. */
505 if (strncmp (name
, LTO_SECTION_NAME_PREFIX
,
506 strlen (LTO_SECTION_NAME_PREFIX
)) == 0)
511 fprintf (asm_out_file
, "\t.section\t%s,\"%s\"\n", name
, flagchars
);
513 if (flags
& SECTION_LINKONCE
)
515 /* Functions may have been compiled at various levels of
516 optimization so we can't use `same_size' here.
517 Instead, have the linker pick one, without warning.
518 If 'selectany' attribute has been specified, MS compiler
519 sets 'discard' characteristic, rather than telling linker
520 to warn of size or content mismatch, so do the same. */
521 bool discard
= (flags
& SECTION_CODE
)
522 || (TREE_CODE (decl
) != IDENTIFIER_NODE
523 && lookup_attribute ("selectany",
524 DECL_ATTRIBUTES (decl
)));
525 fprintf (asm_out_file
, "\t.linkonce %s\n",
526 (discard
? "discard" : "same_size"));
530 /* Beware, DECL may be NULL if compile_file() is emitting the LTO marker. */
533 i386_pe_asm_output_aligned_decl_common (FILE *stream
, tree decl
,
534 const char *name
, HOST_WIDE_INT size
,
537 HOST_WIDE_INT rounded
;
539 /* Compute as in assemble_noswitch_variable, since we don't have
540 support for aligned common on older binutils. We must also
541 avoid emitting a common symbol of size zero, as this is the
542 overloaded representation that indicates an undefined external
543 symbol in the PE object file format. */
544 rounded
= size
? size
: 1;
545 rounded
+= (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1;
546 rounded
= (rounded
/ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
547 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
549 i386_pe_maybe_record_exported_symbol (decl
, name
, 1);
551 fprintf (stream
, "\t.comm\t");
552 assemble_name (stream
, name
);
553 if (use_pe_aligned_common
)
554 fprintf (stream
, ", " HOST_WIDE_INT_PRINT_DEC
", %d\n",
555 size
? size
: HOST_WIDE_INT_1
,
556 exact_log2 (align
) - exact_log2 (CHAR_BIT
));
558 fprintf (stream
, ", " HOST_WIDE_INT_PRINT_DEC
"\t" ASM_COMMENT_START
559 " " HOST_WIDE_INT_PRINT_DEC
"\n", rounded
, size
);
562 /* The Microsoft linker requires that every function be marked as
563 DT_FCN. When using gas on cygwin, we must emit appropriate .type
568 /* Mark a function appropriately. This should only be called for
569 functions for which we are not emitting COFF debugging information.
570 FILE is the assembler output file, NAME is the name of the
571 function, and PUB is nonzero if the function is globally
575 i386_pe_declare_function_type (FILE *file
, const char *name
, int pub
)
577 fprintf (file
, "\t.def\t");
578 assemble_name (file
, name
);
579 fprintf (file
, ";\t.scl\t%d;\t.type\t%d;\t.endef\n",
580 pub
? (int) C_EXT
: (int) C_STAT
,
581 (int) DT_FCN
<< N_BTSHFT
);
584 /* Keep a list of external functions. */
586 struct GTY(()) extern_list
588 struct extern_list
*next
;
593 static GTY(()) struct extern_list
*extern_head
;
595 /* Assemble an external function reference. We need to keep a list of
596 these, so that we can output the function types at the end of the
597 assembly. We can't output the types now, because we might see a
598 definition of the function later on and emit debugging information
602 i386_pe_record_external_function (tree decl
, const char *name
)
604 struct extern_list
*p
;
606 p
= ggc_alloc
<extern_list
> ();
607 p
->next
= extern_head
;
613 /* Keep a list of exported symbols. */
615 struct GTY(()) export_list
617 struct export_list
*next
;
619 int is_data
; /* used to type tag exported symbols. */
622 /* Keep a list of stub symbols. */
624 struct GTY(()) stub_list
626 struct stub_list
*next
;
630 static GTY(()) struct export_list
*export_head
;
632 static GTY(()) struct stub_list
*stub_head
;
634 /* Assemble an export symbol entry. We need to keep a list of
635 these, so that we can output the export list at the end of the
636 assembly. We used to output these export symbols in each function,
637 but that causes problems with GNU ld when the sections are
638 linkonce. Beware, DECL may be NULL if compile_file() is emitting
642 i386_pe_maybe_record_exported_symbol (tree decl
, const char *name
, int is_data
)
645 struct export_list
*p
;
650 symbol
= XEXP (DECL_RTL (decl
), 0);
651 gcc_assert (GET_CODE (symbol
) == SYMBOL_REF
);
652 if (!SYMBOL_REF_DLLEXPORT_P (symbol
))
655 gcc_assert (TREE_PUBLIC (decl
));
657 p
= ggc_alloc
<export_list
> ();
658 p
->next
= export_head
;
660 p
->is_data
= is_data
;
665 i386_pe_record_stub (const char *name
)
669 if (!name
|| *name
== 0)
675 if (p
->name
[0] == *name
676 && !strcmp (p
->name
, name
))
681 p
= ggc_alloc
<stub_list
> ();
688 #ifdef CXX_WRAP_SPEC_LIST
690 /* Search for a function named TARGET in the list of library wrappers
691 we are using, returning a pointer to it if found or NULL if not.
692 This function might be called on quite a few symbols, and we only
693 have the list of names of wrapped functions available to us as a
694 spec string, so first time round we lazily initialise a hash table
695 to make things quicker. */
698 i386_find_on_wrapper_list (const char *target
)
700 static char first_time
= 1;
701 static hash_table
<nofree_string_hash
> *wrappers
;
705 /* Beware that this is not a complicated parser, it assumes
706 that any sequence of non-whitespace beginning with an
707 underscore is one of the wrapped symbols. For now that's
708 adequate to distinguish symbols from spec substitutions
709 and command-line options. */
710 static char wrapper_list_buffer
[] = CXX_WRAP_SPEC_LIST
;
712 /* Breaks up the char array into separated strings
713 strings and enter them into the hash table. */
714 wrappers
= new hash_table
<nofree_string_hash
> (8);
715 for (bufptr
= wrapper_list_buffer
; *bufptr
; ++bufptr
)
718 if (ISSPACE (*bufptr
))
722 while (*bufptr
&& !ISSPACE (*bufptr
))
727 *wrappers
->find_slot (found
, INSERT
) = found
;
732 return wrappers
->find (target
);
735 #endif /* CXX_WRAP_SPEC_LIST */
737 /* This is called at the end of assembly. For each external function
738 which has not been defined, we output a declaration now. We also
739 output the .drectve section. */
742 i386_pe_file_end (void)
744 struct extern_list
*p
;
746 for (p
= extern_head
; p
!= NULL
; p
= p
->next
)
752 /* Positively ensure only one declaration for any given symbol. */
753 if (! TREE_ASM_WRITTEN (decl
)
754 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
)))
756 #ifdef CXX_WRAP_SPEC_LIST
757 /* To ensure the DLL that provides the corresponding real
758 functions is still loaded at runtime, we must reference
759 the real function so that an (unused) import is created. */
760 const char *realsym
= i386_find_on_wrapper_list (p
->name
);
762 i386_pe_declare_function_type (asm_out_file
,
763 concat ("__real_", realsym
, NULL
), TREE_PUBLIC (decl
));
764 #endif /* CXX_WRAP_SPEC_LIST */
765 TREE_ASM_WRITTEN (decl
) = 1;
766 i386_pe_declare_function_type (asm_out_file
, p
->name
,
773 struct export_list
*q
;
775 for (q
= export_head
; q
!= NULL
; q
= q
->next
)
777 fprintf (asm_out_file
, "\t.ascii \" -export:\\\"%s\\\"%s\"\n",
778 default_strip_name_encoding (q
->name
),
779 (q
->is_data
? ",data" : ""));
787 for (q
= stub_head
; q
!= NULL
; q
= q
->next
)
789 const char *name
= q
->name
;
797 if (strncmp (name
, "refptr.", 7) != 0)
800 fprintf (asm_out_file
, "\t.section\t.rdata$%s, \"dr\"\n"
802 "\t.linkonce\tdiscard\n", oname
, oname
);
803 fprintf (asm_out_file
, "%s:\n\t.quad\t%s\n", oname
, name
);
809 /* x64 Structured Exception Handling unwind info. */
811 struct seh_frame_state
813 /* SEH records saves relative to the "current" stack pointer, whether
814 or not there's a frame pointer in place. This tracks the current
815 stack pointer offset from the CFA. */
816 HOST_WIDE_INT sp_offset
;
818 /* The CFA is located at CFA_REG + CFA_OFFSET. */
819 HOST_WIDE_INT cfa_offset
;
823 /* Set up data structures beginning output for SEH. */
826 i386_pe_seh_init (FILE *f
)
828 struct seh_frame_state
*seh
;
835 /* We cannot support DRAP with SEH. We turned off support for it by
836 re-defining MAX_STACK_ALIGNMENT when SEH is enabled. */
837 gcc_assert (!stack_realign_drap
);
839 seh
= XCNEW (struct seh_frame_state
);
840 cfun
->machine
->seh
= seh
;
842 seh
->sp_offset
= INCOMING_FRAME_SP_OFFSET
;
843 seh
->cfa_offset
= INCOMING_FRAME_SP_OFFSET
;
844 seh
->cfa_reg
= stack_pointer_rtx
;
846 fputs ("\t.seh_proc\t", f
);
847 assemble_name (f
, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (cfun
->decl
)));
852 i386_pe_seh_end_prologue (FILE *f
)
854 struct seh_frame_state
*seh
;
860 seh
= cfun
->machine
->seh
;
863 cfun
->machine
->seh
= NULL
;
865 fputs ("\t.seh_endprologue\n", f
);
869 i386_pe_seh_fini (FILE *f
)
875 fputs ("\t.seh_endproc\n", f
);
878 /* Emit an assembler directive to save REG via a PUSH. */
881 seh_emit_push (FILE *f
, struct seh_frame_state
*seh
, rtx reg
)
883 unsigned int regno
= REGNO (reg
);
885 gcc_checking_assert (GENERAL_REGNO_P (regno
));
887 seh
->sp_offset
+= UNITS_PER_WORD
;
888 if (seh
->cfa_reg
== stack_pointer_rtx
)
889 seh
->cfa_offset
+= UNITS_PER_WORD
;
891 fputs ("\t.seh_pushreg\t", f
);
892 print_reg (reg
, 0, f
);
896 /* Emit an assembler directive to save REG at CFA - CFA_OFFSET. */
899 seh_emit_save (FILE *f
, struct seh_frame_state
*seh
,
900 rtx reg
, HOST_WIDE_INT cfa_offset
)
902 unsigned int regno
= REGNO (reg
);
903 HOST_WIDE_INT offset
;
905 /* Negative save offsets are of course not supported, since that
906 would be a store below the stack pointer and thus clobberable. */
907 gcc_assert (seh
->sp_offset
>= cfa_offset
);
908 offset
= seh
->sp_offset
- cfa_offset
;
910 fputs ((SSE_REGNO_P (regno
) ? "\t.seh_savexmm\t"
911 : GENERAL_REGNO_P (regno
) ? "\t.seh_savereg\t"
912 : (gcc_unreachable (), "")), f
);
913 print_reg (reg
, 0, f
);
914 fprintf (f
, ", " HOST_WIDE_INT_PRINT_DEC
"\n", offset
);
917 /* Emit an assembler directive to adjust RSP by OFFSET. */
920 seh_emit_stackalloc (FILE *f
, struct seh_frame_state
*seh
,
921 HOST_WIDE_INT offset
)
923 /* We're only concerned with prologue stack allocations, which all
924 are subtractions from the stack pointer. */
925 gcc_assert (offset
< 0);
928 if (seh
->cfa_reg
== stack_pointer_rtx
)
929 seh
->cfa_offset
+= offset
;
930 seh
->sp_offset
+= offset
;
932 /* Do not output the stackalloc in that case (it won't work as there is no
933 encoding for very large frame size). */
934 if (offset
< SEH_MAX_FRAME_SIZE
)
935 fprintf (f
, "\t.seh_stackalloc\t" HOST_WIDE_INT_PRINT_DEC
"\n", offset
);
938 /* Process REG_CFA_ADJUST_CFA for SEH. */
941 seh_cfa_adjust_cfa (FILE *f
, struct seh_frame_state
*seh
, rtx pat
)
944 HOST_WIDE_INT reg_offset
= 0;
945 unsigned int dest_regno
;
947 dest
= SET_DEST (pat
);
950 if (GET_CODE (src
) == PLUS
)
952 reg_offset
= INTVAL (XEXP (src
, 1));
955 else if (GET_CODE (src
) == MINUS
)
957 reg_offset
= -INTVAL (XEXP (src
, 1));
960 gcc_assert (src
== stack_pointer_rtx
);
961 gcc_assert (seh
->cfa_reg
== stack_pointer_rtx
);
962 dest_regno
= REGNO (dest
);
964 if (dest_regno
== STACK_POINTER_REGNUM
)
965 seh_emit_stackalloc (f
, seh
, reg_offset
);
966 else if (dest_regno
== HARD_FRAME_POINTER_REGNUM
)
968 HOST_WIDE_INT offset
;
971 seh
->cfa_offset
-= reg_offset
;
973 offset
= seh
->sp_offset
- seh
->cfa_offset
;
975 gcc_assert ((offset
& 15) == 0);
976 gcc_assert (IN_RANGE (offset
, 0, 240));
978 fputs ("\t.seh_setframe\t", f
);
979 print_reg (seh
->cfa_reg
, 0, f
);
980 fprintf (f
, ", " HOST_WIDE_INT_PRINT_DEC
"\n", offset
);
986 /* Process REG_CFA_OFFSET for SEH. */
989 seh_cfa_offset (FILE *f
, struct seh_frame_state
*seh
, rtx pat
)
992 HOST_WIDE_INT reg_offset
;
994 dest
= SET_DEST (pat
);
997 gcc_assert (MEM_P (dest
));
998 dest
= XEXP (dest
, 0);
1003 gcc_assert (GET_CODE (dest
) == PLUS
);
1004 reg_offset
= INTVAL (XEXP (dest
, 1));
1005 dest
= XEXP (dest
, 0);
1007 gcc_assert (dest
== seh
->cfa_reg
);
1009 seh_emit_save (f
, seh
, src
, seh
->cfa_offset
- reg_offset
);
1012 /* Process a FRAME_RELATED_EXPR for SEH. */
1015 seh_frame_related_expr (FILE *f
, struct seh_frame_state
*seh
, rtx pat
)
1018 HOST_WIDE_INT addend
;
1020 /* See the full loop in dwarf2out_frame_debug_expr. */
1021 if (GET_CODE (pat
) == PARALLEL
|| GET_CODE (pat
) == SEQUENCE
)
1023 int i
, n
= XVECLEN (pat
, 0), pass
, npass
;
1025 npass
= (GET_CODE (pat
) == PARALLEL
? 2 : 1);
1026 for (pass
= 0; pass
< npass
; ++pass
)
1027 for (i
= 0; i
< n
; ++i
)
1029 rtx ele
= XVECEXP (pat
, 0, i
);
1031 if (GET_CODE (ele
) != SET
)
1033 dest
= SET_DEST (ele
);
1035 /* Process each member of the PARALLEL independently. The first
1036 member is always processed; others only if they are marked. */
1037 if (i
== 0 || RTX_FRAME_RELATED_P (ele
))
1039 /* Evaluate all register saves in the first pass and all
1040 register updates in the second pass. */
1041 if ((MEM_P (dest
) ^ pass
) || npass
== 1)
1042 seh_frame_related_expr (f
, seh
, ele
);
1048 dest
= SET_DEST (pat
);
1049 src
= SET_SRC (pat
);
1051 switch (GET_CODE (dest
))
1054 switch (GET_CODE (src
))
1057 /* REG = REG: This should be establishing a frame pointer. */
1058 gcc_assert (src
== stack_pointer_rtx
);
1059 gcc_assert (dest
== hard_frame_pointer_rtx
);
1060 seh_cfa_adjust_cfa (f
, seh
, pat
);
1064 addend
= INTVAL (XEXP (src
, 1));
1065 src
= XEXP (src
, 0);
1066 if (dest
== hard_frame_pointer_rtx
)
1067 seh_cfa_adjust_cfa (f
, seh
, pat
);
1068 else if (dest
== stack_pointer_rtx
)
1070 gcc_assert (src
== stack_pointer_rtx
);
1071 seh_emit_stackalloc (f
, seh
, addend
);
1083 /* A save of some kind. */
1084 dest
= XEXP (dest
, 0);
1085 if (GET_CODE (dest
) == PRE_DEC
)
1087 gcc_checking_assert (GET_MODE (src
) == Pmode
);
1088 gcc_checking_assert (REG_P (src
));
1089 seh_emit_push (f
, seh
, src
);
1092 seh_cfa_offset (f
, seh
, pat
);
1100 /* This function looks at a single insn and emits any SEH directives
1101 required for unwind of this insn. */
1104 i386_pe_seh_unwind_emit (FILE *asm_out_file
, rtx_insn
*insn
)
1107 bool handled_one
= false;
1108 struct seh_frame_state
*seh
;
1113 /* We free the SEH data once done with the prologue. Ignore those
1114 RTX_FRAME_RELATED_P insns that are associated with the epilogue. */
1115 seh
= cfun
->machine
->seh
;
1119 if (NOTE_P (insn
) || !RTX_FRAME_RELATED_P (insn
))
1122 for (note
= REG_NOTES (insn
); note
; note
= XEXP (note
, 1))
1124 switch (REG_NOTE_KIND (note
))
1126 case REG_FRAME_RELATED_EXPR
:
1127 pat
= XEXP (note
, 0);
1130 case REG_CFA_DEF_CFA
:
1131 case REG_CFA_EXPRESSION
:
1132 /* Only emitted with DRAP and aligned memory access using a
1133 realigned SP, both of which we disable. */
1137 case REG_CFA_REGISTER
:
1138 /* Only emitted in epilogues, which we skip. */
1141 case REG_CFA_ADJUST_CFA
:
1142 pat
= XEXP (note
, 0);
1145 pat
= PATTERN (insn
);
1146 if (GET_CODE (pat
) == PARALLEL
)
1147 pat
= XVECEXP (pat
, 0, 0);
1149 seh_cfa_adjust_cfa (asm_out_file
, seh
, pat
);
1153 case REG_CFA_OFFSET
:
1154 pat
= XEXP (note
, 0);
1156 pat
= single_set (insn
);
1157 seh_cfa_offset (asm_out_file
, seh
, pat
);
1167 pat
= PATTERN (insn
);
1169 seh_frame_related_expr (asm_out_file
, seh
, pat
);
1173 i386_pe_seh_emit_except_personality (rtx personality
)
1180 fputs ("\t.seh_handler\t", asm_out_file
);
1181 output_addr_const (asm_out_file
, personality
);
1184 /* ??? The current implementation of _GCC_specific_handler requires
1185 both except and unwind handling, regardless of which sorts the
1186 user-level function requires. */
1188 FOR_ALL_EH_REGION(r
)
1190 if (r
->type
== ERT_CLEANUP
)
1200 fputs (", @unwind", asm_out_file
);
1202 fputs (", @except", asm_out_file
);
1203 fputc ('\n', asm_out_file
);
1207 i386_pe_seh_init_sections (void)
1210 exception_section
= get_unnamed_section (0, output_section_asm_op
,
1211 "\t.seh_handlerdata");
1215 i386_pe_start_function (FILE *f
, const char *name
, tree decl
)
1217 i386_pe_maybe_record_exported_symbol (decl
, name
, 0);
1218 if (write_symbols
!= SDB_DEBUG
)
1219 i386_pe_declare_function_type (f
, name
, TREE_PUBLIC (decl
));
1220 /* In case section was altered by debugging output. */
1221 if (decl
!= NULL_TREE
)
1222 switch_to_section (function_section (decl
));
1223 ASM_OUTPUT_FUNCTION_LABEL (f
, name
, decl
);
1227 i386_pe_end_function (FILE *f
, const char *, tree
)
1229 i386_pe_seh_fini (f
);
1233 #include "gt-winnt.h"