1 /* Output variables, constants and external declarations, for GNU compiler.
2 Copyright (C) 1987-2013 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
21 /* This file handles generation of all the assembler code
22 *except* the instructions of a function.
23 This includes declarations of variables and their initial values.
25 We also output the assembler code for constants stored in memory
26 and are responsible for combining constants with the same value. */
30 #include "coretypes.h"
37 #include "hard-reg-set.h"
40 #include "diagnostic-core.h"
43 #include "langhooks.h"
47 #include "common/common-target.h"
48 #include "targhooks.h"
49 #include "tree-mudflap.h"
51 #include "pointer-set.h"
54 #ifdef XCOFF_DEBUGGING_INFO
55 #include "xcoffout.h" /* Needed for external data
56 declarations for e.g. AIX 4.x. */
59 /* The (assembler) name of the first globally-visible object output. */
60 extern GTY(()) const char *first_global_object_name
;
61 extern GTY(()) const char *weak_global_object_name
;
63 const char *first_global_object_name
;
64 const char *weak_global_object_name
;
67 struct constant_descriptor_rtx
;
68 struct rtx_constant_pool
;
70 #define n_deferred_constants (crtl->varasm.deferred_constants)
72 /* Number for making the label on the next
73 constant that is stored in memory. */
75 static GTY(()) int const_labelno
;
77 /* Carry information from ASM_DECLARE_OBJECT_NAME
78 to ASM_FINISH_DECLARE_OBJECT. */
80 int size_directive_output
;
82 /* The last decl for which assemble_variable was called,
83 if it did ASM_DECLARE_OBJECT_NAME.
84 If the last call to assemble_variable didn't do that,
87 tree last_assemble_variable_decl
;
89 /* The following global variable indicates if the first basic block
90 in a function belongs to the cold partition or not. */
92 bool first_function_block_is_cold
;
94 /* We give all constants their own alias set. Perhaps redundant with
95 MEM_READONLY_P, but pre-dates it. */
97 static alias_set_type const_alias_set
;
99 /* Whether we saw any functions with no_split_stack. */
101 static bool saw_no_split_stack
;
103 static const char *strip_reg_name (const char *);
104 static int contains_pointers_p (tree
);
105 #ifdef ASM_OUTPUT_EXTERNAL
106 static bool incorporeal_function_p (tree
);
108 static void decode_addr_const (tree
, struct addr_const
*);
109 static hashval_t
const_desc_hash (const void *);
110 static int const_desc_eq (const void *, const void *);
111 static hashval_t
const_hash_1 (const tree
);
112 static int compare_constant (const tree
, const tree
);
113 static tree
copy_constant (tree
);
114 static void output_constant_def_contents (rtx
);
115 static void output_addressed_constants (tree
);
116 static unsigned HOST_WIDE_INT
array_size_for_constructor (tree
);
117 static unsigned min_align (unsigned, unsigned);
118 static void globalize_decl (tree
);
119 static bool decl_readonly_section_1 (enum section_category
);
120 #ifdef BSS_SECTION_ASM_OP
121 #ifdef ASM_OUTPUT_ALIGNED_BSS
122 static void asm_output_aligned_bss (FILE *, tree
, const char *,
123 unsigned HOST_WIDE_INT
, int)
126 #endif /* BSS_SECTION_ASM_OP */
127 static void mark_weak (tree
);
128 static void output_constant_pool (const char *, tree
);
130 /* Well-known sections, each one associated with some sort of *_ASM_OP. */
131 section
*text_section
;
132 section
*data_section
;
133 section
*readonly_data_section
;
134 section
*sdata_section
;
135 section
*ctors_section
;
136 section
*dtors_section
;
137 section
*bss_section
;
138 section
*sbss_section
;
140 /* Various forms of common section. All are guaranteed to be nonnull. */
141 section
*tls_comm_section
;
142 section
*comm_section
;
143 section
*lcomm_section
;
145 /* A SECTION_NOSWITCH section used for declaring global BSS variables.
147 section
*bss_noswitch_section
;
149 /* The section that holds the main exception table, when known. The section
150 is set either by the target's init_sections hook or by the first call to
151 switch_to_exception_section. */
152 section
*exception_section
;
154 /* The section that holds the DWARF2 frame unwind information, when known.
155 The section is set either by the target's init_sections hook or by the
156 first call to switch_to_eh_frame_section. */
157 section
*eh_frame_section
;
159 /* asm_out_file's current section. This is NULL if no section has yet
160 been selected or if we lose track of what the current section is. */
163 /* True if code for the current function is currently being directed
164 at the cold section. */
165 bool in_cold_section_p
;
167 /* A linked list of all the unnamed sections. */
168 static GTY(()) section
*unnamed_sections
;
170 /* Return a nonzero value if DECL has a section attribute. */
171 #define IN_NAMED_SECTION(DECL) \
172 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
173 && DECL_SECTION_NAME (DECL) != NULL_TREE)
175 /* Hash table of named sections. */
176 static GTY((param_is (section
))) htab_t section_htab
;
178 /* A table of object_blocks, indexed by section. */
179 static GTY((param_is (struct object_block
))) htab_t object_block_htab
;
181 /* The next number to use for internal anchor labels. */
182 static GTY(()) int anchor_labelno
;
184 /* A pool of constants that can be shared between functions. */
185 static GTY(()) struct rtx_constant_pool
*shared_constant_pool
;
187 /* Helper routines for maintaining section_htab. */
190 section_entry_eq (const void *p1
, const void *p2
)
192 const section
*old
= (const section
*) p1
;
193 const char *new_name
= (const char *) p2
;
195 return strcmp (old
->named
.name
, new_name
) == 0;
199 section_entry_hash (const void *p
)
201 const section
*old
= (const section
*) p
;
202 return htab_hash_string (old
->named
.name
);
205 /* Return a hash value for section SECT. */
208 hash_section (section
*sect
)
210 if (sect
->common
.flags
& SECTION_NAMED
)
211 return htab_hash_string (sect
->named
.name
);
212 return sect
->common
.flags
;
215 /* Helper routines for maintaining object_block_htab. */
218 object_block_entry_eq (const void *p1
, const void *p2
)
220 const struct object_block
*old
= (const struct object_block
*) p1
;
221 const section
*new_section
= (const section
*) p2
;
223 return old
->sect
== new_section
;
227 object_block_entry_hash (const void *p
)
229 const struct object_block
*old
= (const struct object_block
*) p
;
230 return hash_section (old
->sect
);
233 /* Return a new unnamed section with the given fields. */
236 get_unnamed_section (unsigned int flags
, void (*callback
) (const void *),
241 sect
= ggc_alloc_section ();
242 sect
->unnamed
.common
.flags
= flags
| SECTION_UNNAMED
;
243 sect
->unnamed
.callback
= callback
;
244 sect
->unnamed
.data
= data
;
245 sect
->unnamed
.next
= unnamed_sections
;
247 unnamed_sections
= sect
;
251 /* Return a SECTION_NOSWITCH section with the given fields. */
254 get_noswitch_section (unsigned int flags
, noswitch_section_callback callback
)
258 sect
= ggc_alloc_section ();
259 sect
->noswitch
.common
.flags
= flags
| SECTION_NOSWITCH
;
260 sect
->noswitch
.callback
= callback
;
265 /* Return the named section structure associated with NAME. Create
266 a new section with the given fields if no such structure exists. */
269 get_section (const char *name
, unsigned int flags
, tree decl
)
271 section
*sect
, **slot
;
274 htab_find_slot_with_hash (section_htab
, name
,
275 htab_hash_string (name
), INSERT
);
276 flags
|= SECTION_NAMED
;
279 sect
= ggc_alloc_section ();
280 sect
->named
.common
.flags
= flags
;
281 sect
->named
.name
= ggc_strdup (name
);
282 sect
->named
.decl
= decl
;
288 if ((sect
->common
.flags
& ~SECTION_DECLARED
) != flags
289 && ((sect
->common
.flags
| flags
) & SECTION_OVERRIDE
) == 0)
291 /* It is fine if one of the section flags is
292 SECTION_WRITE | SECTION_RELRO and the other has none of these
293 flags (i.e. read-only) in named sections and either the
294 section hasn't been declared yet or has been declared as writable.
295 In that case just make sure the resulting flags are
296 SECTION_WRITE | SECTION_RELRO, ie. writable only because of
298 if (((sect
->common
.flags
^ flags
) & (SECTION_WRITE
| SECTION_RELRO
))
299 == (SECTION_WRITE
| SECTION_RELRO
)
300 && (sect
->common
.flags
301 & ~(SECTION_DECLARED
| SECTION_WRITE
| SECTION_RELRO
))
302 == (flags
& ~(SECTION_WRITE
| SECTION_RELRO
))
303 && ((sect
->common
.flags
& SECTION_DECLARED
) == 0
304 || (sect
->common
.flags
& SECTION_WRITE
)))
306 sect
->common
.flags
|= (SECTION_WRITE
| SECTION_RELRO
);
309 /* Sanity check user variables for flag changes. */
310 if (sect
->named
.decl
!= NULL
311 && DECL_P (sect
->named
.decl
)
312 && decl
!= sect
->named
.decl
)
314 if (decl
!= NULL
&& DECL_P (decl
))
315 error ("%+D causes a section type conflict with %D",
316 decl
, sect
->named
.decl
);
318 error ("section type conflict with %D", sect
->named
.decl
);
319 inform (DECL_SOURCE_LOCATION (sect
->named
.decl
),
320 "%qD was declared here", sect
->named
.decl
);
322 else if (decl
!= NULL
&& DECL_P (decl
))
323 error ("%+D causes a section type conflict", decl
);
325 error ("section type conflict");
326 /* Make sure we don't error about one section multiple times. */
327 sect
->common
.flags
|= SECTION_OVERRIDE
;
333 /* Return true if the current compilation mode benefits from having
334 objects grouped into blocks. */
337 use_object_blocks_p (void)
339 return flag_section_anchors
;
342 /* Return the object_block structure for section SECT. Create a new
343 structure if we haven't created one already. Return null if SECT
346 static struct object_block
*
347 get_block_for_section (section
*sect
)
349 struct object_block
*block
;
355 slot
= htab_find_slot_with_hash (object_block_htab
, sect
,
356 hash_section (sect
), INSERT
);
357 block
= (struct object_block
*) *slot
;
360 block
= ggc_alloc_cleared_object_block ();
367 /* Create a symbol with label LABEL and place it at byte offset
368 OFFSET in BLOCK. OFFSET can be negative if the symbol's offset
369 is not yet known. LABEL must be a garbage-collected string. */
372 create_block_symbol (const char *label
, struct object_block
*block
,
373 HOST_WIDE_INT offset
)
378 /* Create the extended SYMBOL_REF. */
379 size
= RTX_HDR_SIZE
+ sizeof (struct block_symbol
);
380 symbol
= ggc_alloc_rtx_def (size
);
382 /* Initialize the normal SYMBOL_REF fields. */
383 memset (symbol
, 0, size
);
384 PUT_CODE (symbol
, SYMBOL_REF
);
385 PUT_MODE (symbol
, Pmode
);
386 XSTR (symbol
, 0) = label
;
387 SYMBOL_REF_FLAGS (symbol
) = SYMBOL_FLAG_HAS_BLOCK_INFO
;
389 /* Initialize the block_symbol stuff. */
390 SYMBOL_REF_BLOCK (symbol
) = block
;
391 SYMBOL_REF_BLOCK_OFFSET (symbol
) = offset
;
396 /* Return a section with a particular name and with whatever SECTION_*
397 flags section_type_flags deems appropriate. The name of the section
398 is taken from NAME if nonnull, otherwise it is taken from DECL's
399 DECL_SECTION_NAME. DECL is the decl associated with the section
400 (see the section comment for details) and RELOC is as for
401 section_type_flags. */
404 get_named_section (tree decl
, const char *name
, int reloc
)
410 gcc_assert (decl
&& DECL_P (decl
) && DECL_SECTION_NAME (decl
));
411 name
= TREE_STRING_POINTER (DECL_SECTION_NAME (decl
));
414 flags
= targetm
.section_type_flags (decl
, name
, reloc
);
415 return get_section (name
, flags
, decl
);
418 /* If required, set DECL_SECTION_NAME to a unique name. */
421 resolve_unique_section (tree decl
, int reloc ATTRIBUTE_UNUSED
,
422 int flag_function_or_data_sections
)
424 if (DECL_SECTION_NAME (decl
) == NULL_TREE
425 && targetm_common
.have_named_sections
426 && (flag_function_or_data_sections
427 || DECL_ONE_ONLY (decl
)))
429 targetm
.asm_out
.unique_section (decl
, reloc
);
430 DECL_HAS_IMPLICIT_SECTION_NAME_P (decl
) = true;
434 #ifdef BSS_SECTION_ASM_OP
436 #ifdef ASM_OUTPUT_ALIGNED_BSS
438 /* Utility function for targets to use in implementing
439 ASM_OUTPUT_ALIGNED_BSS.
440 ??? It is believed that this function will work in most cases so such
441 support is localized here. */
444 asm_output_aligned_bss (FILE *file
, tree decl ATTRIBUTE_UNUSED
,
445 const char *name
, unsigned HOST_WIDE_INT size
,
448 switch_to_section (bss_section
);
449 ASM_OUTPUT_ALIGN (file
, floor_log2 (align
/ BITS_PER_UNIT
));
450 #ifdef ASM_DECLARE_OBJECT_NAME
451 last_assemble_variable_decl
= decl
;
452 ASM_DECLARE_OBJECT_NAME (file
, name
, decl
);
454 /* Standard thing is just output label for the object. */
455 ASM_OUTPUT_LABEL (file
, name
);
456 #endif /* ASM_DECLARE_OBJECT_NAME */
457 ASM_OUTPUT_SKIP (file
, size
? size
: 1);
462 #endif /* BSS_SECTION_ASM_OP */
464 #ifndef USE_SELECT_SECTION_FOR_FUNCTIONS
465 /* Return the hot section for function DECL. Return text_section for
469 hot_function_section (tree decl
)
471 if (decl
!= NULL_TREE
472 && DECL_SECTION_NAME (decl
) != NULL_TREE
473 && targetm_common
.have_named_sections
)
474 return get_named_section (decl
, NULL
, 0);
480 /* Return section for TEXT_SECTION_NAME if DECL or DECL_SECTION_NAME (DECL)
483 When DECL_SECTION_NAME is non-NULL and it is implicit section and
484 NAMED_SECTION_SUFFIX is non-NULL, then produce section called
485 concatenate the name with NAMED_SECTION_SUFFIX.
486 Otherwise produce "TEXT_SECTION_NAME.IMPLICIT_NAME". */
489 get_named_text_section (tree decl
,
490 const char *text_section_name
,
491 const char *named_section_suffix
)
493 if (decl
&& DECL_SECTION_NAME (decl
))
495 if (named_section_suffix
)
497 tree dsn
= DECL_SECTION_NAME (decl
);
498 const char *stripped_name
;
501 name
= (char *) alloca (TREE_STRING_LENGTH (dsn
) + 1);
502 memcpy (name
, TREE_STRING_POINTER (dsn
),
503 TREE_STRING_LENGTH (dsn
) + 1);
505 stripped_name
= targetm
.strip_name_encoding (name
);
507 buffer
= ACONCAT ((stripped_name
, named_section_suffix
, NULL
));
508 return get_named_section (decl
, buffer
, 0);
510 else if (DECL_HAS_IMPLICIT_SECTION_NAME_P (decl
))
514 /* Do not try to split gnu_linkonce functions. This gets somewhat
516 if (DECL_ONE_ONLY (decl
) && !HAVE_COMDAT_GROUP
)
518 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
519 name
= targetm
.strip_name_encoding (name
);
520 return get_named_section (decl
, ACONCAT ((text_section_name
, ".",
526 return get_named_section (decl
, text_section_name
, 0);
529 /* Choose named function section based on its frequency. */
532 default_function_section (tree decl
, enum node_frequency freq
,
533 bool startup
, bool exit
)
535 #if defined HAVE_LD_EH_GC_SECTIONS && defined HAVE_LD_EH_GC_SECTIONS_BUG
536 /* Old GNU linkers have buggy --gc-section support, which sometimes
537 results in .gcc_except_table* sections being garbage collected. */
539 && DECL_SECTION_NAME (decl
)
540 && DECL_HAS_IMPLICIT_SECTION_NAME_P (decl
))
544 if (!flag_reorder_functions
545 || !targetm_common
.have_named_sections
)
547 /* Startup code should go to startup subsection unless it is
548 unlikely executed (this happens especially with function splitting
549 where we can split away unnecessary parts of static constructors. */
550 if (startup
&& freq
!= NODE_FREQUENCY_UNLIKELY_EXECUTED
)
551 return get_named_text_section (decl
, ".text.startup", NULL
);
553 /* Similarly for exit. */
554 if (exit
&& freq
!= NODE_FREQUENCY_UNLIKELY_EXECUTED
)
555 return get_named_text_section (decl
, ".text.exit", NULL
);
557 /* Group cold functions together, similarly for hot code. */
560 case NODE_FREQUENCY_UNLIKELY_EXECUTED
:
561 return get_named_text_section (decl
, ".text.unlikely", NULL
);
562 case NODE_FREQUENCY_HOT
:
563 return get_named_text_section (decl
, ".text.hot", NULL
);
569 /* Return the section for function DECL.
571 If DECL is NULL_TREE, return the text section. We can be passed
572 NULL_TREE under some circumstances by dbxout.c at least.
574 If FORCE_COLD is true, return cold function section ignoring
575 the frequency info of cgraph_node. */
578 function_section_1 (tree decl
, bool force_cold
)
580 section
*section
= NULL
;
581 enum node_frequency freq
= NODE_FREQUENCY_NORMAL
;
582 bool startup
= false, exit
= false;
586 struct cgraph_node
*node
= cgraph_get_node (decl
);
590 freq
= node
->frequency
;
591 startup
= node
->only_called_at_startup
;
592 exit
= node
->only_called_at_exit
;
596 freq
= NODE_FREQUENCY_UNLIKELY_EXECUTED
;
598 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
599 if (decl
!= NULL_TREE
600 && DECL_SECTION_NAME (decl
) != NULL_TREE
)
602 if (targetm
.asm_out
.function_section
)
603 section
= targetm
.asm_out
.function_section (decl
, freq
,
607 return get_named_section (decl
, NULL
, 0);
610 return targetm
.asm_out
.select_section
611 (decl
, freq
== NODE_FREQUENCY_UNLIKELY_EXECUTED
,
614 if (targetm
.asm_out
.function_section
)
615 section
= targetm
.asm_out
.function_section (decl
, freq
, startup
, exit
);
618 return hot_function_section (decl
);
622 /* Return the section for function DECL.
624 If DECL is NULL_TREE, return the text section. We can be passed
625 NULL_TREE under some circumstances by dbxout.c at least. */
628 function_section (tree decl
)
630 /* Handle cases where function splitting code decides
631 to put function entry point into unlikely executed section
632 despite the fact that the function itself is not cold
633 (i.e. it is called rarely but contains a hot loop that is
634 better to live in hot subsection for the code locality). */
635 return function_section_1 (decl
,
636 first_function_block_is_cold
);
639 /* Return the section for the current function, take IN_COLD_SECTION_P
643 current_function_section (void)
645 return function_section_1 (current_function_decl
, in_cold_section_p
);
648 /* Tell assembler to switch to unlikely-to-be-executed text section. */
651 unlikely_text_section (void)
653 return function_section_1 (current_function_decl
, true);
656 /* When called within a function context, return true if the function
657 has been assigned a cold text section and if SECT is that section.
658 When called outside a function context, return true if SECT is the
659 default cold section. */
662 unlikely_text_section_p (section
*sect
)
664 return sect
== function_section_1 (current_function_decl
, true);
667 /* Return the read-only data section associated with function DECL. */
670 default_function_rodata_section (tree decl
)
672 if (decl
!= NULL_TREE
&& DECL_SECTION_NAME (decl
))
674 const char *name
= TREE_STRING_POINTER (DECL_SECTION_NAME (decl
));
676 if (DECL_ONE_ONLY (decl
) && HAVE_COMDAT_GROUP
)
682 dot
= strchr (name
+ 1, '.');
685 len
= strlen (dot
) + 8;
686 rname
= (char *) alloca (len
);
688 strcpy (rname
, ".rodata");
690 return get_section (rname
, SECTION_LINKONCE
, decl
);
692 /* For .gnu.linkonce.t.foo we want to use .gnu.linkonce.r.foo. */
693 else if (DECL_ONE_ONLY (decl
)
694 && strncmp (name
, ".gnu.linkonce.t.", 16) == 0)
696 size_t len
= strlen (name
) + 1;
697 char *rname
= (char *) alloca (len
);
699 memcpy (rname
, name
, len
);
701 return get_section (rname
, SECTION_LINKONCE
, decl
);
703 /* For .text.foo we want to use .rodata.foo. */
704 else if (flag_function_sections
&& flag_data_sections
705 && strncmp (name
, ".text.", 6) == 0)
707 size_t len
= strlen (name
) + 1;
708 char *rname
= (char *) alloca (len
+ 2);
710 memcpy (rname
, ".rodata", 7);
711 memcpy (rname
+ 7, name
+ 5, len
- 5);
712 return get_section (rname
, 0, decl
);
716 return readonly_data_section
;
719 /* Return the read-only data section associated with function DECL
720 for targets where that section should be always the single
721 readonly data section. */
724 default_no_function_rodata_section (tree decl ATTRIBUTE_UNUSED
)
726 return readonly_data_section
;
729 /* Return the section to use for string merging. */
732 mergeable_string_section (tree decl ATTRIBUTE_UNUSED
,
733 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
,
734 unsigned int flags ATTRIBUTE_UNUSED
)
738 if (HAVE_GAS_SHF_MERGE
&& flag_merge_constants
739 && TREE_CODE (decl
) == STRING_CST
740 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
742 && (len
= int_size_in_bytes (TREE_TYPE (decl
))) > 0
743 && TREE_STRING_LENGTH (decl
) >= len
)
745 enum machine_mode mode
;
746 unsigned int modesize
;
750 const char *prefix
= targetm
.asm_out
.mergeable_rodata_prefix
;
751 char *name
= (char *) alloca (strlen (prefix
) + 30);
753 mode
= TYPE_MODE (TREE_TYPE (TREE_TYPE (decl
)));
754 modesize
= GET_MODE_BITSIZE (mode
);
755 if (modesize
>= 8 && modesize
<= 256
756 && (modesize
& (modesize
- 1)) == 0)
758 if (align
< modesize
)
761 str
= TREE_STRING_POINTER (decl
);
762 unit
= GET_MODE_SIZE (mode
);
764 /* Check for embedded NUL characters. */
765 for (i
= 0; i
< len
; i
+= unit
)
767 for (j
= 0; j
< unit
; j
++)
768 if (str
[i
+ j
] != '\0')
775 sprintf (name
, "%s.str%d.%d", prefix
,
776 modesize
/ 8, (int) (align
/ 8));
777 flags
|= (modesize
/ 8) | SECTION_MERGE
| SECTION_STRINGS
;
778 return get_section (name
, flags
, NULL
);
783 return readonly_data_section
;
786 /* Return the section to use for constant merging. */
789 mergeable_constant_section (enum machine_mode mode ATTRIBUTE_UNUSED
,
790 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
,
791 unsigned int flags ATTRIBUTE_UNUSED
)
793 unsigned int modesize
= GET_MODE_BITSIZE (mode
);
795 if (HAVE_GAS_SHF_MERGE
&& flag_merge_constants
801 && (align
& (align
- 1)) == 0)
803 const char *prefix
= targetm
.asm_out
.mergeable_rodata_prefix
;
804 char *name
= (char *) alloca (strlen (prefix
) + 30);
806 sprintf (name
, "%s.cst%d", prefix
, (int) (align
/ 8));
807 flags
|= (align
/ 8) | SECTION_MERGE
;
808 return get_section (name
, flags
, NULL
);
810 return readonly_data_section
;
813 /* Given NAME, a putative register name, discard any customary prefixes. */
816 strip_reg_name (const char *name
)
818 #ifdef REGISTER_PREFIX
819 if (!strncmp (name
, REGISTER_PREFIX
, strlen (REGISTER_PREFIX
)))
820 name
+= strlen (REGISTER_PREFIX
);
822 if (name
[0] == '%' || name
[0] == '#')
827 /* The user has asked for a DECL to have a particular name. Set (or
828 change) it in such a way that we don't prefix an underscore to
831 set_user_assembler_name (tree decl
, const char *name
)
833 char *starred
= (char *) alloca (strlen (name
) + 2);
835 strcpy (starred
+ 1, name
);
836 change_decl_assembler_name (decl
, get_identifier (starred
));
837 SET_DECL_RTL (decl
, NULL_RTX
);
840 /* Decode an `asm' spec for a declaration as a register name.
841 Return the register number, or -1 if nothing specified,
842 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
843 or -3 if ASMSPEC is `cc' and is not recognized,
844 or -4 if ASMSPEC is `memory' and is not recognized.
845 Accept an exact spelling or a decimal number.
846 Prefixes such as % are optional. */
849 decode_reg_name_and_count (const char *asmspec
, int *pnregs
)
851 /* Presume just one register is clobbered. */
858 /* Get rid of confusing prefixes. */
859 asmspec
= strip_reg_name (asmspec
);
861 /* Allow a decimal number as a "register name". */
862 for (i
= strlen (asmspec
) - 1; i
>= 0; i
--)
863 if (! ISDIGIT (asmspec
[i
]))
865 if (asmspec
[0] != 0 && i
< 0)
868 if (i
< FIRST_PSEUDO_REGISTER
&& i
>= 0)
874 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
876 && ! strcmp (asmspec
, strip_reg_name (reg_names
[i
])))
879 #ifdef OVERLAPPING_REGISTER_NAMES
883 const char *const name
;
886 } table
[] = OVERLAPPING_REGISTER_NAMES
;
888 for (i
= 0; i
< (int) ARRAY_SIZE (table
); i
++)
890 && ! strcmp (asmspec
, table
[i
].name
))
892 *pnregs
= table
[i
].nregs
;
893 return table
[i
].number
;
896 #endif /* OVERLAPPING_REGISTER_NAMES */
898 #ifdef ADDITIONAL_REGISTER_NAMES
900 static const struct { const char *const name
; const int number
; } table
[]
901 = ADDITIONAL_REGISTER_NAMES
;
903 for (i
= 0; i
< (int) ARRAY_SIZE (table
); i
++)
905 && ! strcmp (asmspec
, table
[i
].name
))
906 return table
[i
].number
;
908 #endif /* ADDITIONAL_REGISTER_NAMES */
910 if (!strcmp (asmspec
, "memory"))
913 if (!strcmp (asmspec
, "cc"))
923 decode_reg_name (const char *name
)
926 return decode_reg_name_and_count (name
, &count
);
930 /* Return true if DECL's initializer is suitable for a BSS section. */
933 bss_initializer_p (const_tree decl
)
935 return (DECL_INITIAL (decl
) == NULL
936 || DECL_INITIAL (decl
) == error_mark_node
937 || (flag_zero_initialized_in_bss
938 /* Leave constant zeroes in .rodata so they
940 && !TREE_READONLY (decl
)
941 && initializer_zerop (DECL_INITIAL (decl
))));
944 /* Compute the alignment of variable specified by DECL.
945 DONT_OUTPUT_DATA is from assemble_variable. */
948 align_variable (tree decl
, bool dont_output_data
)
950 unsigned int align
= DECL_ALIGN (decl
);
952 /* In the case for initialing an array whose length isn't specified,
953 where we have not yet been able to do the layout,
954 figure out the proper alignment now. */
955 if (dont_output_data
&& DECL_SIZE (decl
) == 0
956 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
957 align
= MAX (align
, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl
))));
959 /* Some object file formats have a maximum alignment which they support.
960 In particular, a.out format supports a maximum alignment of 4. */
961 if (align
> MAX_OFILE_ALIGNMENT
)
963 warning (0, "alignment of %q+D is greater than maximum object "
964 "file alignment. Using %d", decl
,
965 MAX_OFILE_ALIGNMENT
/BITS_PER_UNIT
);
966 align
= MAX_OFILE_ALIGNMENT
;
969 if (! DECL_USER_ALIGN (decl
))
971 #ifdef DATA_ABI_ALIGNMENT
972 unsigned int data_abi_align
973 = DATA_ABI_ALIGNMENT (TREE_TYPE (decl
), align
);
974 /* For backwards compatibility, don't assume the ABI alignment for
976 if (! DECL_THREAD_LOCAL_P (decl
) || data_abi_align
<= BITS_PER_WORD
)
977 align
= data_abi_align
;
980 /* On some machines, it is good to increase alignment sometimes.
981 But as DECL_ALIGN is used both for actually emitting the variable
982 and for code accessing the variable as guaranteed alignment, we
983 can only increase the alignment if it is a performance optimization
984 if the references to it must bind to the current definition. */
985 if (decl_binds_to_current_def_p (decl
))
987 #ifdef DATA_ALIGNMENT
988 unsigned int data_align
= DATA_ALIGNMENT (TREE_TYPE (decl
), align
);
989 /* Don't increase alignment too much for TLS variables - TLS space
991 if (! DECL_THREAD_LOCAL_P (decl
) || data_align
<= BITS_PER_WORD
)
994 #ifdef CONSTANT_ALIGNMENT
995 if (DECL_INITIAL (decl
) != 0
996 && DECL_INITIAL (decl
) != error_mark_node
)
998 unsigned int const_align
999 = CONSTANT_ALIGNMENT (DECL_INITIAL (decl
), align
);
1000 /* Don't increase alignment too much for TLS variables - TLS
1001 space is too precious. */
1002 if (! DECL_THREAD_LOCAL_P (decl
) || const_align
<= BITS_PER_WORD
)
1003 align
= const_align
;
1009 /* Reset the alignment in case we have made it tighter, so we can benefit
1010 from it in get_pointer_alignment. */
1011 DECL_ALIGN (decl
) = align
;
1014 /* Return DECL_ALIGN (decl), possibly increased for optimization purposes
1015 beyond what align_variable returned. */
1018 get_variable_align (tree decl
)
1020 unsigned int align
= DECL_ALIGN (decl
);
1022 /* For user aligned vars or static vars align_variable already did
1024 if (DECL_USER_ALIGN (decl
) || !TREE_PUBLIC (decl
))
1027 #ifdef DATA_ABI_ALIGNMENT
1028 if (DECL_THREAD_LOCAL_P (decl
))
1029 align
= DATA_ABI_ALIGNMENT (TREE_TYPE (decl
), align
);
1032 /* For decls that bind to the current definition, align_variable
1033 did also everything, except for not assuming ABI required alignment
1034 of TLS variables. For other vars, increase the alignment here
1035 as an optimization. */
1036 if (!decl_binds_to_current_def_p (decl
))
1038 /* On some machines, it is good to increase alignment sometimes. */
1039 #ifdef DATA_ALIGNMENT
1040 unsigned int data_align
= DATA_ALIGNMENT (TREE_TYPE (decl
), align
);
1041 /* Don't increase alignment too much for TLS variables - TLS space
1043 if (! DECL_THREAD_LOCAL_P (decl
) || data_align
<= BITS_PER_WORD
)
1046 #ifdef CONSTANT_ALIGNMENT
1047 if (DECL_INITIAL (decl
) != 0 && DECL_INITIAL (decl
) != error_mark_node
)
1049 unsigned int const_align
= CONSTANT_ALIGNMENT (DECL_INITIAL (decl
),
1051 /* Don't increase alignment too much for TLS variables - TLS space
1053 if (! DECL_THREAD_LOCAL_P (decl
) || const_align
<= BITS_PER_WORD
)
1054 align
= const_align
;
1062 /* Return the section into which the given VAR_DECL or CONST_DECL
1063 should be placed. PREFER_NOSWITCH_P is true if a noswitch
1064 section should be used wherever possible. */
1067 get_variable_section (tree decl
, bool prefer_noswitch_p
)
1069 addr_space_t as
= ADDR_SPACE_GENERIC
;
1072 if (TREE_TYPE (decl
) != error_mark_node
)
1073 as
= TYPE_ADDR_SPACE (TREE_TYPE (decl
));
1075 if (DECL_COMMON (decl
))
1077 /* If the decl has been given an explicit section name, or it resides
1078 in a non-generic address space, then it isn't common, and shouldn't
1079 be handled as such. */
1080 gcc_assert (DECL_SECTION_NAME (decl
) == NULL
1081 && ADDR_SPACE_GENERIC_P (as
));
1082 if (DECL_THREAD_LOCAL_P (decl
))
1083 return tls_comm_section
;
1084 else if (TREE_PUBLIC (decl
) && bss_initializer_p (decl
))
1085 return comm_section
;
1088 if (DECL_INITIAL (decl
) == error_mark_node
)
1089 reloc
= contains_pointers_p (TREE_TYPE (decl
)) ? 3 : 0;
1090 else if (DECL_INITIAL (decl
))
1091 reloc
= compute_reloc_for_constant (DECL_INITIAL (decl
));
1095 resolve_unique_section (decl
, reloc
, flag_data_sections
);
1096 if (IN_NAMED_SECTION (decl
))
1097 return get_named_section (decl
, NULL
, reloc
);
1099 if (ADDR_SPACE_GENERIC_P (as
)
1100 && !DECL_THREAD_LOCAL_P (decl
)
1101 && !(prefer_noswitch_p
&& targetm
.have_switchable_bss_sections
)
1102 && bss_initializer_p (decl
))
1104 if (!TREE_PUBLIC (decl
)
1105 && !((flag_sanitize
& SANITIZE_ADDRESS
)
1106 && asan_protect_global (decl
)))
1107 return lcomm_section
;
1108 if (bss_noswitch_section
)
1109 return bss_noswitch_section
;
1112 return targetm
.asm_out
.select_section (decl
, reloc
,
1113 get_variable_align (decl
));
1116 /* Return the block into which object_block DECL should be placed. */
1118 static struct object_block
*
1119 get_block_for_decl (tree decl
)
1123 if (TREE_CODE (decl
) == VAR_DECL
)
1125 /* The object must be defined in this translation unit. */
1126 if (DECL_EXTERNAL (decl
))
1129 /* There's no point using object blocks for something that is
1130 isolated by definition. */
1131 if (DECL_ONE_ONLY (decl
))
1135 /* We can only calculate block offsets if the decl has a known
1137 if (DECL_SIZE_UNIT (decl
) == NULL
)
1139 if (!host_integerp (DECL_SIZE_UNIT (decl
), 1))
1142 /* Find out which section should contain DECL. We cannot put it into
1143 an object block if it requires a standalone definition. */
1144 if (TREE_CODE (decl
) == VAR_DECL
)
1145 align_variable (decl
, 0);
1146 sect
= get_variable_section (decl
, true);
1147 if (SECTION_STYLE (sect
) == SECTION_NOSWITCH
)
1150 return get_block_for_section (sect
);
1153 /* Make sure block symbol SYMBOL is in block BLOCK. */
1156 change_symbol_block (rtx symbol
, struct object_block
*block
)
1158 if (block
!= SYMBOL_REF_BLOCK (symbol
))
1160 gcc_assert (SYMBOL_REF_BLOCK_OFFSET (symbol
) < 0);
1161 SYMBOL_REF_BLOCK (symbol
) = block
;
1165 /* Return true if it is possible to put DECL in an object_block. */
1168 use_blocks_for_decl_p (tree decl
)
1170 /* Only data DECLs can be placed into object blocks. */
1171 if (TREE_CODE (decl
) != VAR_DECL
&& TREE_CODE (decl
) != CONST_DECL
)
1174 /* Detect decls created by dw2_force_const_mem. Such decls are
1175 special because DECL_INITIAL doesn't specify the decl's true value.
1176 dw2_output_indirect_constants will instead call assemble_variable
1177 with dont_output_data set to 1 and then print the contents itself. */
1178 if (DECL_INITIAL (decl
) == decl
)
1181 /* If this decl is an alias, then we don't want to emit a
1183 if (lookup_attribute ("alias", DECL_ATTRIBUTES (decl
)))
1186 return targetm
.use_blocks_for_decl_p (decl
);
1189 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
1190 have static storage duration. In other words, it should not be an
1191 automatic variable, including PARM_DECLs.
1193 There is, however, one exception: this function handles variables
1194 explicitly placed in a particular register by the user.
1196 This is never called for PARM_DECL nodes. */
1199 make_decl_rtl (tree decl
)
1201 const char *name
= 0;
1205 /* Check that we are not being given an automatic variable. */
1206 gcc_assert (TREE_CODE (decl
) != PARM_DECL
1207 && TREE_CODE (decl
) != RESULT_DECL
);
1209 /* A weak alias has TREE_PUBLIC set but not the other bits. */
1210 gcc_assert (TREE_CODE (decl
) != VAR_DECL
1211 || TREE_STATIC (decl
)
1212 || TREE_PUBLIC (decl
)
1213 || DECL_EXTERNAL (decl
)
1214 || DECL_REGISTER (decl
));
1216 /* And that we were not given a type or a label. */
1217 gcc_assert (TREE_CODE (decl
) != TYPE_DECL
1218 && TREE_CODE (decl
) != LABEL_DECL
);
1220 /* For a duplicate declaration, we can be called twice on the
1221 same DECL node. Don't discard the RTL already made. */
1222 if (DECL_RTL_SET_P (decl
))
1224 /* If the old RTL had the wrong mode, fix the mode. */
1225 x
= DECL_RTL (decl
);
1226 if (GET_MODE (x
) != DECL_MODE (decl
))
1227 SET_DECL_RTL (decl
, adjust_address_nv (x
, DECL_MODE (decl
), 0));
1229 if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
))
1232 /* ??? Another way to do this would be to maintain a hashed
1233 table of such critters. Instead of adding stuff to a DECL
1234 to give certain attributes to it, we could use an external
1235 hash map from DECL to set of attributes. */
1237 /* Let the target reassign the RTL if it wants.
1238 This is necessary, for example, when one machine specific
1239 decl attribute overrides another. */
1240 targetm
.encode_section_info (decl
, DECL_RTL (decl
), false);
1242 /* If the symbol has a SYMBOL_REF_BLOCK field, update it based
1243 on the new decl information. */
1245 && GET_CODE (XEXP (x
, 0)) == SYMBOL_REF
1246 && SYMBOL_REF_HAS_BLOCK_INFO_P (XEXP (x
, 0)))
1247 change_symbol_block (XEXP (x
, 0), get_block_for_decl (decl
));
1249 /* Make this function static known to the mudflap runtime. */
1250 if (flag_mudflap
&& TREE_CODE (decl
) == VAR_DECL
)
1251 mudflap_enqueue_decl (decl
);
1256 /* If this variable belongs to the global constant pool, retrieve the
1257 pre-computed RTL or recompute it in LTO mode. */
1258 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_IN_CONSTANT_POOL (decl
))
1260 SET_DECL_RTL (decl
, output_constant_def (DECL_INITIAL (decl
), 1));
1264 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
1266 if (name
[0] != '*' && TREE_CODE (decl
) != FUNCTION_DECL
1267 && DECL_REGISTER (decl
))
1269 error ("register name not specified for %q+D", decl
);
1271 else if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
))
1273 const char *asmspec
= name
+1;
1274 enum machine_mode mode
= DECL_MODE (decl
);
1275 reg_number
= decode_reg_name (asmspec
);
1276 /* First detect errors in declaring global registers. */
1277 if (reg_number
== -1)
1278 error ("register name not specified for %q+D", decl
);
1279 else if (reg_number
< 0)
1280 error ("invalid register name for %q+D", decl
);
1281 else if (mode
== BLKmode
)
1282 error ("data type of %q+D isn%'t suitable for a register",
1284 else if (!in_hard_reg_set_p (accessible_reg_set
, mode
, reg_number
))
1285 error ("the register specified for %q+D cannot be accessed"
1286 " by the current target", decl
);
1287 else if (!in_hard_reg_set_p (operand_reg_set
, mode
, reg_number
))
1288 error ("the register specified for %q+D is not general enough"
1289 " to be used as a register variable", decl
);
1290 else if (!HARD_REGNO_MODE_OK (reg_number
, mode
))
1291 error ("register specified for %q+D isn%'t suitable for data type",
1293 /* Now handle properly declared static register variables. */
1298 if (DECL_INITIAL (decl
) != 0 && TREE_STATIC (decl
))
1300 DECL_INITIAL (decl
) = 0;
1301 error ("global register variable has initial value");
1303 if (TREE_THIS_VOLATILE (decl
))
1304 warning (OPT_Wvolatile_register_var
,
1305 "optimization may eliminate reads and/or "
1306 "writes to register variables");
1308 /* If the user specified one of the eliminables registers here,
1309 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
1310 confused with that register and be eliminated. This usage is
1311 somewhat suspect... */
1313 SET_DECL_RTL (decl
, gen_rtx_raw_REG (mode
, reg_number
));
1314 ORIGINAL_REGNO (DECL_RTL (decl
)) = reg_number
;
1315 REG_USERVAR_P (DECL_RTL (decl
)) = 1;
1317 if (TREE_STATIC (decl
))
1319 /* Make this register global, so not usable for anything
1321 #ifdef ASM_DECLARE_REGISTER_GLOBAL
1322 name
= IDENTIFIER_POINTER (DECL_NAME (decl
));
1323 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file
, decl
, reg_number
, name
);
1325 nregs
= hard_regno_nregs
[reg_number
][mode
];
1327 globalize_reg (decl
, reg_number
+ --nregs
);
1330 /* As a register variable, it has no section. */
1334 /* Now handle ordinary static variables and functions (in memory).
1335 Also handle vars declared register invalidly. */
1336 else if (name
[0] == '*')
1338 #ifdef REGISTER_PREFIX
1339 if (strlen (REGISTER_PREFIX
) != 0)
1341 reg_number
= decode_reg_name (name
);
1342 if (reg_number
>= 0 || reg_number
== -3)
1343 error ("register name given for non-register variable %q+D", decl
);
1348 /* Specifying a section attribute on a variable forces it into a
1349 non-.bss section, and thus it cannot be common. */
1350 /* FIXME: In general this code should not be necessary because
1351 visibility pass is doing the same work. But notice_global_symbol
1352 is called early and it needs to make DECL_RTL to get the name.
1353 we take care of recomputing the DECL_RTL after visibility is changed. */
1354 if (TREE_CODE (decl
) == VAR_DECL
1355 && DECL_SECTION_NAME (decl
) != NULL_TREE
1356 && DECL_INITIAL (decl
) == NULL_TREE
1357 && DECL_COMMON (decl
))
1358 DECL_COMMON (decl
) = 0;
1360 /* Variables can't be both common and weak. */
1361 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_WEAK (decl
))
1362 DECL_COMMON (decl
) = 0;
1364 if (use_object_blocks_p () && use_blocks_for_decl_p (decl
))
1365 x
= create_block_symbol (name
, get_block_for_decl (decl
), -1);
1368 enum machine_mode address_mode
= Pmode
;
1369 if (TREE_TYPE (decl
) != error_mark_node
)
1371 addr_space_t as
= TYPE_ADDR_SPACE (TREE_TYPE (decl
));
1372 address_mode
= targetm
.addr_space
.address_mode (as
);
1374 x
= gen_rtx_SYMBOL_REF (address_mode
, name
);
1376 SYMBOL_REF_WEAK (x
) = DECL_WEAK (decl
);
1377 SET_SYMBOL_REF_DECL (x
, decl
);
1379 x
= gen_rtx_MEM (DECL_MODE (decl
), x
);
1380 if (TREE_CODE (decl
) != FUNCTION_DECL
)
1381 set_mem_attributes (x
, decl
, 1);
1382 SET_DECL_RTL (decl
, x
);
1384 /* Optionally set flags or add text to the name to record information
1385 such as that it is a function name.
1386 If the name is changed, the macro ASM_OUTPUT_LABELREF
1387 will have to know how to strip this information. */
1388 targetm
.encode_section_info (decl
, DECL_RTL (decl
), true);
1390 /* Make this function static known to the mudflap runtime. */
1391 if (flag_mudflap
&& TREE_CODE (decl
) == VAR_DECL
)
1392 mudflap_enqueue_decl (decl
);
1395 /* Like make_decl_rtl, but inhibit creation of new alias sets when
1396 calling make_decl_rtl. Also, reset DECL_RTL before returning the
1400 make_decl_rtl_for_debug (tree decl
)
1402 unsigned int save_aliasing_flag
, save_mudflap_flag
;
1405 if (DECL_RTL_SET_P (decl
))
1406 return DECL_RTL (decl
);
1408 /* Kludge alert! Somewhere down the call chain, make_decl_rtl will
1409 call new_alias_set. If running with -fcompare-debug, sometimes
1410 we do not want to create alias sets that will throw the alias
1411 numbers off in the comparison dumps. So... clearing
1412 flag_strict_aliasing will keep new_alias_set() from creating a
1413 new set. It is undesirable to register decl with mudflap
1414 in this case as well. */
1415 save_aliasing_flag
= flag_strict_aliasing
;
1416 flag_strict_aliasing
= 0;
1417 save_mudflap_flag
= flag_mudflap
;
1420 rtl
= DECL_RTL (decl
);
1421 /* Reset DECL_RTL back, as various parts of the compiler expects
1422 DECL_RTL set meaning it is actually going to be output. */
1423 SET_DECL_RTL (decl
, NULL
);
1425 flag_strict_aliasing
= save_aliasing_flag
;
1426 flag_mudflap
= save_mudflap_flag
;
1431 /* Output a string of literal assembler code
1432 for an `asm' keyword used between functions. */
1435 assemble_asm (tree string
)
1440 if (TREE_CODE (string
) == ADDR_EXPR
)
1441 string
= TREE_OPERAND (string
, 0);
1443 p
= TREE_STRING_POINTER (string
);
1444 fprintf (asm_out_file
, "%s%s\n", p
[0] == '\t' ? "" : "\t", p
);
1447 /* Write the address of the entity given by SYMBOL to SEC. */
1449 assemble_addr_to_section (rtx symbol
, section
*sec
)
1451 switch_to_section (sec
);
1452 assemble_align (POINTER_SIZE
);
1453 assemble_integer (symbol
, POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
1456 /* Return the numbered .ctors.N (if CONSTRUCTOR_P) or .dtors.N (if
1457 not) section for PRIORITY. */
1459 get_cdtor_priority_section (int priority
, bool constructor_p
)
1463 /* ??? This only works reliably with the GNU linker. */
1464 sprintf (buf
, "%s.%.5u",
1465 constructor_p
? ".ctors" : ".dtors",
1466 /* Invert the numbering so the linker puts us in the proper
1467 order; constructors are run from right to left, and the
1468 linker sorts in increasing order. */
1469 MAX_INIT_PRIORITY
- priority
);
1470 return get_section (buf
, SECTION_WRITE
, NULL
);
1474 default_named_section_asm_out_destructor (rtx symbol
, int priority
)
1478 if (priority
!= DEFAULT_INIT_PRIORITY
)
1479 sec
= get_cdtor_priority_section (priority
,
1480 /*constructor_p=*/false);
1482 sec
= get_section (".dtors", SECTION_WRITE
, NULL
);
1484 assemble_addr_to_section (symbol
, sec
);
1487 #ifdef DTORS_SECTION_ASM_OP
1489 default_dtor_section_asm_out_destructor (rtx symbol
,
1490 int priority ATTRIBUTE_UNUSED
)
1492 assemble_addr_to_section (symbol
, dtors_section
);
1497 default_named_section_asm_out_constructor (rtx symbol
, int priority
)
1501 if (priority
!= DEFAULT_INIT_PRIORITY
)
1502 sec
= get_cdtor_priority_section (priority
,
1503 /*constructor_p=*/true);
1505 sec
= get_section (".ctors", SECTION_WRITE
, NULL
);
1507 assemble_addr_to_section (symbol
, sec
);
1510 #ifdef CTORS_SECTION_ASM_OP
1512 default_ctor_section_asm_out_constructor (rtx symbol
,
1513 int priority ATTRIBUTE_UNUSED
)
1515 assemble_addr_to_section (symbol
, ctors_section
);
1519 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1520 a nonzero value if the constant pool should be output before the
1521 start of the function, or a zero value if the pool should output
1522 after the end of the function. The default is to put it before the
1525 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1526 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1529 /* DECL is an object (either VAR_DECL or FUNCTION_DECL) which is going
1530 to be output to assembler.
1531 Set first_global_object_name and weak_global_object_name as appropriate. */
1534 notice_global_symbol (tree decl
)
1536 const char **type
= &first_global_object_name
;
1538 if (first_global_object_name
1539 || !TREE_PUBLIC (decl
)
1540 || DECL_EXTERNAL (decl
)
1541 || !DECL_NAME (decl
)
1542 || (TREE_CODE (decl
) != FUNCTION_DECL
1543 && (TREE_CODE (decl
) != VAR_DECL
1544 || (DECL_COMMON (decl
)
1545 && (DECL_INITIAL (decl
) == 0
1546 || DECL_INITIAL (decl
) == error_mark_node
))))
1547 || !MEM_P (DECL_RTL (decl
)))
1550 /* We win when global object is found, but it is useful to know about weak
1551 symbol as well so we can produce nicer unique names. */
1552 if (DECL_WEAK (decl
) || DECL_ONE_ONLY (decl
) || flag_shlib
)
1553 type
= &weak_global_object_name
;
1559 rtx decl_rtl
= DECL_RTL (decl
);
1561 p
= targetm
.strip_name_encoding (XSTR (XEXP (decl_rtl
, 0), 0));
1562 name
= ggc_strdup (p
);
1568 /* If not using flag_reorder_blocks_and_partition, decide early whether the
1569 current function goes into the cold section, so that targets can use
1570 current_function_section during RTL expansion. DECL describes the
1574 decide_function_section (tree decl
)
1576 first_function_block_is_cold
= false;
1578 if (flag_reorder_blocks_and_partition
)
1579 /* We will decide in assemble_start_function. */
1582 if (DECL_SECTION_NAME (decl
))
1584 struct cgraph_node
*node
= cgraph_get_node (current_function_decl
);
1585 /* Calls to function_section rely on first_function_block_is_cold
1587 first_function_block_is_cold
= (node
1589 == NODE_FREQUENCY_UNLIKELY_EXECUTED
);
1592 in_cold_section_p
= first_function_block_is_cold
;
1595 /* Output assembler code for the constant pool of a function and associated
1596 with defining the name of the function. DECL describes the function.
1597 NAME is the function's name. For the constant pool, we use the current
1598 constant pool data. */
1601 assemble_start_function (tree decl
, const char *fnname
)
1604 char tmp_label
[100];
1605 bool hot_label_written
= false;
1607 if (flag_reorder_blocks_and_partition
)
1609 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LHOTB", const_labelno
);
1610 crtl
->subsections
.hot_section_label
= ggc_strdup (tmp_label
);
1611 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LCOLDB", const_labelno
);
1612 crtl
->subsections
.cold_section_label
= ggc_strdup (tmp_label
);
1613 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LHOTE", const_labelno
);
1614 crtl
->subsections
.hot_section_end_label
= ggc_strdup (tmp_label
);
1615 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LCOLDE", const_labelno
);
1616 crtl
->subsections
.cold_section_end_label
= ggc_strdup (tmp_label
);
1621 crtl
->subsections
.hot_section_label
= NULL
;
1622 crtl
->subsections
.cold_section_label
= NULL
;
1623 crtl
->subsections
.hot_section_end_label
= NULL
;
1624 crtl
->subsections
.cold_section_end_label
= NULL
;
1627 /* The following code does not need preprocessing in the assembler. */
1631 if (CONSTANT_POOL_BEFORE_FUNCTION
)
1632 output_constant_pool (fnname
, decl
);
1634 /* Make sure the not and cold text (code) sections are properly
1635 aligned. This is necessary here in the case where the function
1636 has both hot and cold sections, because we don't want to re-set
1637 the alignment when the section switch happens mid-function. */
1639 if (flag_reorder_blocks_and_partition
)
1641 first_function_block_is_cold
= false;
1643 switch_to_section (unlikely_text_section ());
1644 assemble_align (DECL_ALIGN (decl
));
1645 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.cold_section_label
);
1647 /* When the function starts with a cold section, we need to explicitly
1648 align the hot section and write out the hot section label.
1649 But if the current function is a thunk, we do not have a CFG. */
1651 && BB_PARTITION (ENTRY_BLOCK_PTR
->next_bb
) == BB_COLD_PARTITION
)
1653 switch_to_section (text_section
);
1654 assemble_align (DECL_ALIGN (decl
));
1655 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.hot_section_label
);
1656 hot_label_written
= true;
1657 first_function_block_is_cold
= true;
1659 in_cold_section_p
= first_function_block_is_cold
;
1663 /* Switch to the correct text section for the start of the function. */
1665 switch_to_section (function_section (decl
));
1666 if (flag_reorder_blocks_and_partition
1667 && !hot_label_written
)
1668 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.hot_section_label
);
1670 /* Tell assembler to move to target machine's alignment for functions. */
1671 align
= floor_log2 (DECL_ALIGN (decl
) / BITS_PER_UNIT
);
1674 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
1677 /* Handle a user-specified function alignment.
1678 Note that we still need to align to DECL_ALIGN, as above,
1679 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1680 if (! DECL_USER_ALIGN (decl
)
1681 && align_functions_log
> align
1682 && optimize_function_for_speed_p (cfun
))
1684 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1685 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file
,
1686 align_functions_log
, align_functions
- 1);
1688 ASM_OUTPUT_ALIGN (asm_out_file
, align_functions_log
);
1692 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1693 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file
, fnname
);
1696 if (!DECL_IGNORED_P (decl
))
1697 (*debug_hooks
->begin_function
) (decl
);
1699 /* Make function name accessible from other files, if appropriate. */
1701 if (TREE_PUBLIC (decl
))
1703 notice_global_symbol (decl
);
1705 globalize_decl (decl
);
1707 maybe_assemble_visibility (decl
);
1710 if (DECL_PRESERVE_P (decl
))
1711 targetm
.asm_out
.mark_decl_preserved (fnname
);
1713 /* Do any machine/system dependent processing of the function name. */
1714 #ifdef ASM_DECLARE_FUNCTION_NAME
1715 ASM_DECLARE_FUNCTION_NAME (asm_out_file
, fnname
, current_function_decl
);
1717 /* Standard thing is just output label for the function. */
1718 ASM_OUTPUT_FUNCTION_LABEL (asm_out_file
, fnname
, current_function_decl
);
1719 #endif /* ASM_DECLARE_FUNCTION_NAME */
1721 if (lookup_attribute ("no_split_stack", DECL_ATTRIBUTES (decl
)))
1722 saw_no_split_stack
= true;
1725 /* Output assembler code associated with defining the size of the
1726 function. DECL describes the function. NAME is the function's name. */
1729 assemble_end_function (tree decl
, const char *fnname ATTRIBUTE_UNUSED
)
1731 #ifdef ASM_DECLARE_FUNCTION_SIZE
1732 /* We could have switched section in the middle of the function. */
1733 if (flag_reorder_blocks_and_partition
)
1734 switch_to_section (function_section (decl
));
1735 ASM_DECLARE_FUNCTION_SIZE (asm_out_file
, fnname
, decl
);
1737 if (! CONSTANT_POOL_BEFORE_FUNCTION
)
1739 output_constant_pool (fnname
, decl
);
1740 switch_to_section (function_section (decl
)); /* need to switch back */
1742 /* Output labels for end of hot/cold text sections (to be used by
1744 if (flag_reorder_blocks_and_partition
)
1746 section
*save_text_section
;
1748 save_text_section
= in_section
;
1749 switch_to_section (unlikely_text_section ());
1750 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.cold_section_end_label
);
1751 if (first_function_block_is_cold
)
1752 switch_to_section (text_section
);
1754 switch_to_section (function_section (decl
));
1755 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.hot_section_end_label
);
1756 switch_to_section (save_text_section
);
1760 /* Assemble code to leave SIZE bytes of zeros. */
1763 assemble_zeros (unsigned HOST_WIDE_INT size
)
1765 /* Do no output if -fsyntax-only. */
1766 if (flag_syntax_only
)
1769 #ifdef ASM_NO_SKIP_IN_TEXT
1770 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1771 so we must output 0s explicitly in the text section. */
1772 if (ASM_NO_SKIP_IN_TEXT
&& (in_section
->common
.flags
& SECTION_CODE
) != 0)
1774 unsigned HOST_WIDE_INT i
;
1775 for (i
= 0; i
< size
; i
++)
1776 assemble_integer (const0_rtx
, 1, BITS_PER_UNIT
, 1);
1781 ASM_OUTPUT_SKIP (asm_out_file
, size
);
1784 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1787 assemble_align (int align
)
1789 if (align
> BITS_PER_UNIT
)
1791 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
1795 /* Assemble a string constant with the specified C string as contents. */
1798 assemble_string (const char *p
, int size
)
1803 /* If the string is very long, split it up. */
1807 int thissize
= size
- pos
;
1808 if (thissize
> maximum
)
1811 ASM_OUTPUT_ASCII (asm_out_file
, p
, thissize
);
1819 /* A noswitch_section_callback for lcomm_section. */
1822 emit_local (tree decl ATTRIBUTE_UNUSED
,
1823 const char *name ATTRIBUTE_UNUSED
,
1824 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
1825 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
1827 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1828 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file
, decl
, name
,
1829 size
, DECL_ALIGN (decl
));
1831 #elif defined ASM_OUTPUT_ALIGNED_LOCAL
1832 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file
, name
, size
, DECL_ALIGN (decl
));
1835 ASM_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
1840 /* A noswitch_section_callback for bss_noswitch_section. */
1842 #if defined ASM_OUTPUT_ALIGNED_BSS
1844 emit_bss (tree decl ATTRIBUTE_UNUSED
,
1845 const char *name ATTRIBUTE_UNUSED
,
1846 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
1847 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
1849 #if defined ASM_OUTPUT_ALIGNED_BSS
1850 ASM_OUTPUT_ALIGNED_BSS (asm_out_file
, decl
, name
, size
,
1851 get_variable_align (decl
));
1857 /* A noswitch_section_callback for comm_section. */
1860 emit_common (tree decl ATTRIBUTE_UNUSED
,
1861 const char *name ATTRIBUTE_UNUSED
,
1862 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
1863 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
1865 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1866 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file
, decl
, name
,
1867 size
, get_variable_align (decl
));
1869 #elif defined ASM_OUTPUT_ALIGNED_COMMON
1870 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file
, name
, size
,
1871 get_variable_align (decl
));
1874 ASM_OUTPUT_COMMON (asm_out_file
, name
, size
, rounded
);
1879 /* A noswitch_section_callback for tls_comm_section. */
1882 emit_tls_common (tree decl ATTRIBUTE_UNUSED
,
1883 const char *name ATTRIBUTE_UNUSED
,
1884 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
1885 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
1887 #ifdef ASM_OUTPUT_TLS_COMMON
1888 ASM_OUTPUT_TLS_COMMON (asm_out_file
, decl
, name
, size
);
1891 sorry ("thread-local COMMON data not implemented");
1896 /* Assemble DECL given that it belongs in SECTION_NOSWITCH section SECT.
1897 NAME is the name of DECL's SYMBOL_REF. */
1900 assemble_noswitch_variable (tree decl
, const char *name
, section
*sect
,
1903 unsigned HOST_WIDE_INT size
, rounded
;
1905 size
= tree_low_cst (DECL_SIZE_UNIT (decl
), 1);
1908 if ((flag_sanitize
& SANITIZE_ADDRESS
) && asan_protect_global (decl
))
1909 size
+= asan_red_zone_size (size
);
1911 /* Don't allocate zero bytes of common,
1912 since that means "undefined external" in the linker. */
1916 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1917 so that each uninitialized object starts on such a boundary. */
1918 rounded
+= (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1;
1919 rounded
= (rounded
/ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
1920 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
1922 if (!sect
->noswitch
.callback (decl
, name
, size
, rounded
)
1923 && (unsigned HOST_WIDE_INT
) (align
/ BITS_PER_UNIT
) > rounded
)
1924 warning (0, "requested alignment for %q+D is greater than "
1925 "implemented alignment of %wu", decl
, rounded
);
1928 /* A subroutine of assemble_variable. Output the label and contents of
1929 DECL, whose address is a SYMBOL_REF with name NAME. DONT_OUTPUT_DATA
1930 is as for assemble_variable. */
1933 assemble_variable_contents (tree decl
, const char *name
,
1934 bool dont_output_data
)
1936 /* Do any machine/system dependent processing of the object. */
1937 #ifdef ASM_DECLARE_OBJECT_NAME
1938 last_assemble_variable_decl
= decl
;
1939 ASM_DECLARE_OBJECT_NAME (asm_out_file
, name
, decl
);
1941 /* Standard thing is just output label for the object. */
1942 ASM_OUTPUT_LABEL (asm_out_file
, name
);
1943 #endif /* ASM_DECLARE_OBJECT_NAME */
1945 if (!dont_output_data
)
1947 if (DECL_INITIAL (decl
)
1948 && DECL_INITIAL (decl
) != error_mark_node
1949 && !initializer_zerop (DECL_INITIAL (decl
)))
1950 /* Output the actual data. */
1951 output_constant (DECL_INITIAL (decl
),
1952 tree_low_cst (DECL_SIZE_UNIT (decl
), 1),
1953 get_variable_align (decl
));
1955 /* Leave space for it. */
1956 assemble_zeros (tree_low_cst (DECL_SIZE_UNIT (decl
), 1));
1960 /* Assemble everything that is needed for a variable or function declaration.
1961 Not used for automatic variables, and not used for function definitions.
1962 Should not be called for variables of incomplete structure type.
1964 TOP_LEVEL is nonzero if this variable has file scope.
1965 AT_END is nonzero if this is the special handling, at end of compilation,
1966 to define things that have had only tentative definitions.
1967 DONT_OUTPUT_DATA if nonzero means don't actually output the
1968 initial value (that will be done by the caller). */
1971 assemble_variable (tree decl
, int top_level ATTRIBUTE_UNUSED
,
1972 int at_end ATTRIBUTE_UNUSED
, int dont_output_data
)
1975 rtx decl_rtl
, symbol
;
1978 bool asan_protected
= false;
1980 /* This function is supposed to handle VARIABLES. Ensure we have one. */
1981 gcc_assert (TREE_CODE (decl
) == VAR_DECL
);
1983 /* Emulated TLS had better not get this far. */
1984 gcc_checking_assert (targetm
.have_tls
|| !DECL_THREAD_LOCAL_P (decl
));
1986 last_assemble_variable_decl
= 0;
1988 /* Normally no need to say anything here for external references,
1989 since assemble_external is called by the language-specific code
1990 when a declaration is first seen. */
1992 if (DECL_EXTERNAL (decl
))
1995 /* Do nothing for global register variables. */
1996 if (DECL_RTL_SET_P (decl
) && REG_P (DECL_RTL (decl
)))
1998 TREE_ASM_WRITTEN (decl
) = 1;
2002 /* If type was incomplete when the variable was declared,
2003 see if it is complete now. */
2005 if (DECL_SIZE (decl
) == 0)
2006 layout_decl (decl
, 0);
2008 /* Still incomplete => don't allocate it; treat the tentative defn
2009 (which is what it must have been) as an `extern' reference. */
2011 if (!dont_output_data
&& DECL_SIZE (decl
) == 0)
2013 error ("storage size of %q+D isn%'t known", decl
);
2014 TREE_ASM_WRITTEN (decl
) = 1;
2018 /* The first declaration of a variable that comes through this function
2019 decides whether it is global (in C, has external linkage)
2020 or local (in C, has internal linkage). So do nothing more
2021 if this function has already run. */
2023 if (TREE_ASM_WRITTEN (decl
))
2026 /* Make sure targetm.encode_section_info is invoked before we set
2028 decl_rtl
= DECL_RTL (decl
);
2030 TREE_ASM_WRITTEN (decl
) = 1;
2032 /* Do no output if -fsyntax-only. */
2033 if (flag_syntax_only
)
2036 if (! dont_output_data
2037 && ! valid_constant_size_p (DECL_SIZE_UNIT (decl
)))
2039 error ("size of variable %q+D is too large", decl
);
2043 gcc_assert (MEM_P (decl_rtl
));
2044 gcc_assert (GET_CODE (XEXP (decl_rtl
, 0)) == SYMBOL_REF
);
2045 symbol
= XEXP (decl_rtl
, 0);
2047 /* If this symbol belongs to the tree constant pool, output the constant
2048 if it hasn't already been written. */
2049 if (TREE_CONSTANT_POOL_ADDRESS_P (symbol
))
2051 tree decl
= SYMBOL_REF_DECL (symbol
);
2052 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl
)))
2053 output_constant_def_contents (symbol
);
2059 name
= XSTR (symbol
, 0);
2060 if (TREE_PUBLIC (decl
) && DECL_NAME (decl
))
2061 notice_global_symbol (decl
);
2063 /* Compute the alignment of this data. */
2065 align_variable (decl
, dont_output_data
);
2067 if ((flag_sanitize
& SANITIZE_ADDRESS
)
2068 && asan_protect_global (decl
))
2070 asan_protected
= true;
2071 DECL_ALIGN (decl
) = MAX (DECL_ALIGN (decl
),
2072 ASAN_RED_ZONE_SIZE
* BITS_PER_UNIT
);
2075 set_mem_align (decl_rtl
, DECL_ALIGN (decl
));
2077 align
= get_variable_align (decl
);
2079 if (TREE_PUBLIC (decl
))
2080 maybe_assemble_visibility (decl
);
2082 if (DECL_PRESERVE_P (decl
))
2083 targetm
.asm_out
.mark_decl_preserved (name
);
2085 /* First make the assembler name(s) global if appropriate. */
2086 sect
= get_variable_section (decl
, false);
2087 if (TREE_PUBLIC (decl
)
2088 && (sect
->common
.flags
& SECTION_COMMON
) == 0)
2089 globalize_decl (decl
);
2091 /* Output any data that we will need to use the address of. */
2092 if (DECL_INITIAL (decl
) && DECL_INITIAL (decl
) != error_mark_node
)
2093 output_addressed_constants (DECL_INITIAL (decl
));
2095 /* dbxout.c needs to know this. */
2096 if (sect
&& (sect
->common
.flags
& SECTION_CODE
) != 0)
2097 DECL_IN_TEXT_SECTION (decl
) = 1;
2099 /* If the decl is part of an object_block, make sure that the decl
2100 has been positioned within its block, but do not write out its
2101 definition yet. output_object_blocks will do that later. */
2102 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol
) && SYMBOL_REF_BLOCK (symbol
))
2104 gcc_assert (!dont_output_data
);
2105 place_block_symbol (symbol
);
2107 else if (SECTION_STYLE (sect
) == SECTION_NOSWITCH
)
2108 assemble_noswitch_variable (decl
, name
, sect
, align
);
2111 /* The following bit of code ensures that vtable_map
2112 variables are not only in the comdat section, but that
2113 each variable has its own unique comdat name. If this
2114 code is removed, the variables end up in the same section
2115 with a single comdat name.
2117 FIXME: resolve_unique_section needs to deal better with
2118 decls with both DECL_SECTION_NAME and DECL_ONE_ONLY. Once
2119 that is fixed, this if-else statement can be replaced with
2120 a single call to "switch_to_section (sect)". */
2121 if (sect
->named
.name
2122 && (strcmp (sect
->named
.name
, ".vtable_map_vars") == 0))
2124 #if defined (OBJECT_FORMAT_ELF)
2125 targetm
.asm_out
.named_section (sect
->named
.name
,
2126 sect
->named
.common
.flags
2131 switch_to_section (sect
);
2135 switch_to_section (sect
);
2136 if (align
> BITS_PER_UNIT
)
2137 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
2138 assemble_variable_contents (decl
, name
, dont_output_data
);
2141 unsigned HOST_WIDE_INT
int size
2142 = tree_low_cst (DECL_SIZE_UNIT (decl
), 1);
2143 assemble_zeros (asan_red_zone_size (size
));
2149 /* Given a function declaration (FN_DECL), this function assembles the
2150 function into the .preinit_array section. */
2153 assemble_vtv_preinit_initializer (tree fn_decl
)
2156 unsigned flags
= SECTION_WRITE
;
2157 rtx symbol
= XEXP (DECL_RTL (fn_decl
), 0);
2159 flags
|= SECTION_NOTYPE
;
2160 sect
= get_section (".preinit_array", flags
, fn_decl
);
2161 switch_to_section (sect
);
2162 assemble_addr_to_section (symbol
, sect
);
2165 /* Return 1 if type TYPE contains any pointers. */
2168 contains_pointers_p (tree type
)
2170 switch (TREE_CODE (type
))
2173 case REFERENCE_TYPE
:
2174 /* I'm not sure whether OFFSET_TYPE needs this treatment,
2175 so I'll play safe and return 1. */
2181 case QUAL_UNION_TYPE
:
2184 /* For a type that has fields, see if the fields have pointers. */
2185 for (fields
= TYPE_FIELDS (type
); fields
; fields
= DECL_CHAIN (fields
))
2186 if (TREE_CODE (fields
) == FIELD_DECL
2187 && contains_pointers_p (TREE_TYPE (fields
)))
2193 /* An array type contains pointers if its element type does. */
2194 return contains_pointers_p (TREE_TYPE (type
));
2201 /* We delay assemble_external processing until
2202 the compilation unit is finalized. This is the best we can do for
2203 right now (i.e. stage 3 of GCC 4.0) - the right thing is to delay
2204 it all the way to final. See PR 17982 for further discussion. */
2205 static GTY(()) tree pending_assemble_externals
;
2207 #ifdef ASM_OUTPUT_EXTERNAL
2208 /* Some targets delay some output to final using TARGET_ASM_FILE_END.
2209 As a result, assemble_external can be called after the list of externals
2210 is processed and the pointer set destroyed. */
2211 static bool pending_assemble_externals_processed
;
2213 /* Avoid O(external_decls**2) lookups in the pending_assemble_externals
2214 TREE_LIST in assemble_external. */
2215 static struct pointer_set_t
*pending_assemble_externals_set
;
2217 /* True if DECL is a function decl for which no out-of-line copy exists.
2218 It is assumed that DECL's assembler name has been set. */
2221 incorporeal_function_p (tree decl
)
2223 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_BUILT_IN (decl
))
2227 if (DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
2228 && (DECL_FUNCTION_CODE (decl
) == BUILT_IN_ALLOCA
2229 || DECL_FUNCTION_CODE (decl
) == BUILT_IN_ALLOCA_WITH_ALIGN
))
2232 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
2233 /* Atomic or sync builtins which have survived this far will be
2234 resolved externally and therefore are not incorporeal. */
2235 if (strncmp (name
, "__builtin_", 10) == 0)
2241 /* Actually do the tests to determine if this is necessary, and invoke
2242 ASM_OUTPUT_EXTERNAL. */
2244 assemble_external_real (tree decl
)
2246 rtx rtl
= DECL_RTL (decl
);
2248 if (MEM_P (rtl
) && GET_CODE (XEXP (rtl
, 0)) == SYMBOL_REF
2249 && !SYMBOL_REF_USED (XEXP (rtl
, 0))
2250 && !incorporeal_function_p (decl
))
2252 /* Some systems do require some output. */
2253 SYMBOL_REF_USED (XEXP (rtl
, 0)) = 1;
2254 ASM_OUTPUT_EXTERNAL (asm_out_file
, decl
, XSTR (XEXP (rtl
, 0), 0));
2260 process_pending_assemble_externals (void)
2262 #ifdef ASM_OUTPUT_EXTERNAL
2264 for (list
= pending_assemble_externals
; list
; list
= TREE_CHAIN (list
))
2265 assemble_external_real (TREE_VALUE (list
));
2267 pending_assemble_externals
= 0;
2268 pending_assemble_externals_processed
= true;
2269 pointer_set_destroy (pending_assemble_externals_set
);
2273 /* This TREE_LIST contains any weak symbol declarations waiting
2275 static GTY(()) tree weak_decls
;
2277 /* Output something to declare an external symbol to the assembler,
2278 and qualifiers such as weakness. (Most assemblers don't need
2279 extern declaration, so we normally output nothing.) Do nothing if
2280 DECL is not external. */
2283 assemble_external (tree decl ATTRIBUTE_UNUSED
)
2285 /* Make sure that the ASM_OUT_FILE is open.
2286 If it's not, we should not be calling this function. */
2287 gcc_assert (asm_out_file
);
2289 /* In a perfect world, the following condition would be true.
2290 Sadly, the Java and Go front ends emit assembly *from the front end*,
2291 bypassing the call graph. See PR52739. Fix before GCC 4.8. */
2293 /* This function should only be called if we are expanding, or have
2295 Ideally, only final.c would be calling this function, but it is
2296 not clear whether that would break things somehow. See PR 17982
2297 for further discussion. */
2298 gcc_assert (cgraph_state
== CGRAPH_STATE_EXPANSION
2299 || cgraph_state
== CGRAPH_STATE_FINISHED
);
2302 if (!DECL_P (decl
) || !DECL_EXTERNAL (decl
) || !TREE_PUBLIC (decl
))
2305 /* We want to output annotation for weak and external symbols at
2306 very last to check if they are references or not. */
2308 if (TARGET_SUPPORTS_WEAK
2310 /* TREE_STATIC is a weird and abused creature which is not
2311 generally the right test for whether an entity has been
2312 locally emitted, inlined or otherwise not-really-extern, but
2313 for declarations that can be weak, it happens to be
2315 && !TREE_STATIC (decl
)
2316 && lookup_attribute ("weak", DECL_ATTRIBUTES (decl
))
2317 && value_member (decl
, weak_decls
) == NULL_TREE
)
2318 weak_decls
= tree_cons (NULL
, decl
, weak_decls
);
2320 #ifdef ASM_OUTPUT_EXTERNAL
2321 if (pending_assemble_externals_processed
)
2323 assemble_external_real (decl
);
2327 if (! pointer_set_insert (pending_assemble_externals_set
, decl
))
2328 pending_assemble_externals
= tree_cons (NULL
, decl
,
2329 pending_assemble_externals
);
2333 /* Similar, for calling a library function FUN. */
2336 assemble_external_libcall (rtx fun
)
2338 /* Declare library function name external when first used, if nec. */
2339 if (! SYMBOL_REF_USED (fun
))
2341 SYMBOL_REF_USED (fun
) = 1;
2342 targetm
.asm_out
.external_libcall (fun
);
2346 /* Assemble a label named NAME. */
2349 assemble_label (FILE *file
, const char *name
)
2351 ASM_OUTPUT_LABEL (file
, name
);
2354 /* Set the symbol_referenced flag for ID. */
2356 mark_referenced (tree id
)
2358 TREE_SYMBOL_REFERENCED (id
) = 1;
2361 /* Set the symbol_referenced flag for DECL and notify callgraph. */
2363 mark_decl_referenced (tree decl
)
2365 if (TREE_CODE (decl
) == FUNCTION_DECL
)
2367 /* Extern inline functions don't become needed when referenced.
2368 If we know a method will be emitted in other TU and no new
2369 functions can be marked reachable, just use the external
2371 struct cgraph_node
*node
= cgraph_get_create_node (decl
);
2372 if (!DECL_EXTERNAL (decl
)
2373 && !node
->symbol
.definition
)
2374 cgraph_mark_force_output_node (node
);
2376 else if (TREE_CODE (decl
) == VAR_DECL
)
2378 struct varpool_node
*node
= varpool_node_for_decl (decl
);
2379 /* C++ frontend use mark_decl_references to force COMDAT variables
2380 to be output that might appear dead otherwise. */
2381 node
->symbol
.force_output
= true;
2383 /* else do nothing - we can get various sorts of CST nodes here,
2384 which do not need to be marked. */
2388 /* Follow the IDENTIFIER_TRANSPARENT_ALIAS chain starting at *ALIAS
2389 until we find an identifier that is not itself a transparent alias.
2390 Modify the alias passed to it by reference (and all aliases on the
2391 way to the ultimate target), such that they do not have to be
2392 followed again, and return the ultimate target of the alias
2396 ultimate_transparent_alias_target (tree
*alias
)
2398 tree target
= *alias
;
2400 if (IDENTIFIER_TRANSPARENT_ALIAS (target
))
2402 gcc_assert (TREE_CHAIN (target
));
2403 target
= ultimate_transparent_alias_target (&TREE_CHAIN (target
));
2404 gcc_assert (! IDENTIFIER_TRANSPARENT_ALIAS (target
)
2405 && ! TREE_CHAIN (target
));
2412 /* Output to FILE (an assembly file) a reference to NAME. If NAME
2413 starts with a *, the rest of NAME is output verbatim. Otherwise
2414 NAME is transformed in a target-specific way (usually by the
2415 addition of an underscore). */
2418 assemble_name_raw (FILE *file
, const char *name
)
2421 fputs (&name
[1], file
);
2423 ASM_OUTPUT_LABELREF (file
, name
);
2426 /* Like assemble_name_raw, but should be used when NAME might refer to
2427 an entity that is also represented as a tree (like a function or
2428 variable). If NAME does refer to such an entity, that entity will
2429 be marked as referenced. */
2432 assemble_name (FILE *file
, const char *name
)
2434 const char *real_name
;
2437 real_name
= targetm
.strip_name_encoding (name
);
2439 id
= maybe_get_identifier (real_name
);
2444 mark_referenced (id
);
2445 ultimate_transparent_alias_target (&id
);
2447 name
= IDENTIFIER_POINTER (id
);
2448 gcc_assert (! TREE_CHAIN (id
));
2451 assemble_name_raw (file
, name
);
2454 /* Allocate SIZE bytes writable static space with a gensym name
2455 and return an RTX to refer to its address. */
2458 assemble_static_space (unsigned HOST_WIDE_INT size
)
2461 const char *namestring
;
2464 ASM_GENERATE_INTERNAL_LABEL (name
, "LF", const_labelno
);
2466 namestring
= ggc_strdup (name
);
2468 x
= gen_rtx_SYMBOL_REF (Pmode
, namestring
);
2469 SYMBOL_REF_FLAGS (x
) = SYMBOL_FLAG_LOCAL
;
2471 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
2472 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file
, NULL_TREE
, name
, size
,
2475 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
2476 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file
, name
, size
, BIGGEST_ALIGNMENT
);
2479 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2480 so that each uninitialized object starts on such a boundary. */
2481 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
2482 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
2483 = ((size
+ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1)
2484 / (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
2485 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
2486 ASM_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
2493 /* Assemble the static constant template for function entry trampolines.
2494 This is done at most once per compilation.
2495 Returns an RTX for the address of the template. */
2497 static GTY(()) rtx initial_trampoline
;
2500 assemble_trampoline_template (void)
2507 gcc_assert (targetm
.asm_out
.trampoline_template
!= NULL
);
2509 if (initial_trampoline
)
2510 return initial_trampoline
;
2512 /* By default, put trampoline templates in read-only data section. */
2514 #ifdef TRAMPOLINE_SECTION
2515 switch_to_section (TRAMPOLINE_SECTION
);
2517 switch_to_section (readonly_data_section
);
2520 /* Write the assembler code to define one. */
2521 align
= floor_log2 (TRAMPOLINE_ALIGNMENT
/ BITS_PER_UNIT
);
2523 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
2525 targetm
.asm_out
.internal_label (asm_out_file
, "LTRAMP", 0);
2526 targetm
.asm_out
.trampoline_template (asm_out_file
);
2528 /* Record the rtl to refer to it. */
2529 ASM_GENERATE_INTERNAL_LABEL (label
, "LTRAMP", 0);
2530 name
= ggc_strdup (label
);
2531 symbol
= gen_rtx_SYMBOL_REF (Pmode
, name
);
2532 SYMBOL_REF_FLAGS (symbol
) = SYMBOL_FLAG_LOCAL
;
2534 initial_trampoline
= gen_const_mem (BLKmode
, symbol
);
2535 set_mem_align (initial_trampoline
, TRAMPOLINE_ALIGNMENT
);
2536 set_mem_size (initial_trampoline
, TRAMPOLINE_SIZE
);
2538 return initial_trampoline
;
2541 /* A and B are either alignments or offsets. Return the minimum alignment
2542 that may be assumed after adding the two together. */
2544 static inline unsigned
2545 min_align (unsigned int a
, unsigned int b
)
2547 return (a
| b
) & -(a
| b
);
2550 /* Return the assembler directive for creating a given kind of integer
2551 object. SIZE is the number of bytes in the object and ALIGNED_P
2552 indicates whether it is known to be aligned. Return NULL if the
2553 assembly dialect has no such directive.
2555 The returned string should be printed at the start of a new line and
2556 be followed immediately by the object's initial value. */
2559 integer_asm_op (int size
, int aligned_p
)
2561 struct asm_int_op
*ops
;
2564 ops
= &targetm
.asm_out
.aligned_op
;
2566 ops
= &targetm
.asm_out
.unaligned_op
;
2571 return targetm
.asm_out
.byte_op
;
2585 /* Use directive OP to assemble an integer object X. Print OP at the
2586 start of the line, followed immediately by the value of X. */
2589 assemble_integer_with_op (const char *op
, rtx x
)
2591 fputs (op
, asm_out_file
);
2592 output_addr_const (asm_out_file
, x
);
2593 fputc ('\n', asm_out_file
);
2596 /* The default implementation of the asm_out.integer target hook. */
2599 default_assemble_integer (rtx x ATTRIBUTE_UNUSED
,
2600 unsigned int size ATTRIBUTE_UNUSED
,
2601 int aligned_p ATTRIBUTE_UNUSED
)
2603 const char *op
= integer_asm_op (size
, aligned_p
);
2604 /* Avoid GAS bugs for large values. Specifically negative values whose
2605 absolute value fits in a bfd_vma, but not in a bfd_signed_vma. */
2606 if (size
> UNITS_PER_WORD
&& size
> POINTER_SIZE
/ BITS_PER_UNIT
)
2608 return op
&& (assemble_integer_with_op (op
, x
), true);
2611 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
2612 the alignment of the integer in bits. Return 1 if we were able to output
2613 the constant, otherwise 0. We must be able to output the constant,
2614 if FORCE is nonzero. */
2617 assemble_integer (rtx x
, unsigned int size
, unsigned int align
, int force
)
2621 aligned_p
= (align
>= MIN (size
* BITS_PER_UNIT
, BIGGEST_ALIGNMENT
));
2623 /* See if the target hook can handle this kind of object. */
2624 if (targetm
.asm_out
.integer (x
, size
, aligned_p
))
2627 /* If the object is a multi-byte one, try splitting it up. Split
2628 it into words it if is multi-word, otherwise split it into bytes. */
2631 enum machine_mode omode
, imode
;
2632 unsigned int subalign
;
2633 unsigned int subsize
, i
;
2634 enum mode_class mclass
;
2636 subsize
= size
> UNITS_PER_WORD
? UNITS_PER_WORD
: 1;
2637 subalign
= MIN (align
, subsize
* BITS_PER_UNIT
);
2638 if (GET_CODE (x
) == CONST_FIXED
)
2639 mclass
= GET_MODE_CLASS (GET_MODE (x
));
2643 omode
= mode_for_size (subsize
* BITS_PER_UNIT
, mclass
, 0);
2644 imode
= mode_for_size (size
* BITS_PER_UNIT
, mclass
, 0);
2646 for (i
= 0; i
< size
; i
+= subsize
)
2648 rtx partial
= simplify_subreg (omode
, x
, imode
, i
);
2649 if (!partial
|| !assemble_integer (partial
, subsize
, subalign
, 0))
2655 /* If we've printed some of it, but not all of it, there's no going
2660 gcc_assert (!force
);
2666 assemble_real (REAL_VALUE_TYPE d
, enum machine_mode mode
, unsigned int align
)
2668 long data
[4] = {0, 0, 0, 0};
2670 int bitsize
, nelts
, nunits
, units_per
;
2672 /* This is hairy. We have a quantity of known size. real_to_target
2673 will put it into an array of *host* longs, 32 bits per element
2674 (even if long is more than 32 bits). We need to determine the
2675 number of array elements that are occupied (nelts) and the number
2676 of *target* min-addressable units that will be occupied in the
2677 object file (nunits). We cannot assume that 32 divides the
2678 mode's bitsize (size * BITS_PER_UNIT) evenly.
2680 size * BITS_PER_UNIT is used here to make sure that padding bits
2681 (which might appear at either end of the value; real_to_target
2682 will include the padding bits in its output array) are included. */
2684 nunits
= GET_MODE_SIZE (mode
);
2685 bitsize
= nunits
* BITS_PER_UNIT
;
2686 nelts
= CEIL (bitsize
, 32);
2687 units_per
= 32 / BITS_PER_UNIT
;
2689 real_to_target (data
, &d
, mode
);
2691 /* Put out the first word with the specified alignment. */
2692 assemble_integer (GEN_INT (data
[0]), MIN (nunits
, units_per
), align
, 1);
2693 nunits
-= units_per
;
2695 /* Subsequent words need only 32-bit alignment. */
2696 align
= min_align (align
, 32);
2698 for (i
= 1; i
< nelts
; i
++)
2700 assemble_integer (GEN_INT (data
[i
]), MIN (nunits
, units_per
), align
, 1);
2701 nunits
-= units_per
;
2705 /* Given an expression EXP with a constant value,
2706 reduce it to the sum of an assembler symbol and an integer.
2707 Store them both in the structure *VALUE.
2708 EXP must be reducible. */
2712 HOST_WIDE_INT offset
;
2716 decode_addr_const (tree exp
, struct addr_const
*value
)
2718 tree target
= TREE_OPERAND (exp
, 0);
2724 if (TREE_CODE (target
) == COMPONENT_REF
2725 && host_integerp (byte_position (TREE_OPERAND (target
, 1)), 0))
2727 offset
+= int_byte_position (TREE_OPERAND (target
, 1));
2728 target
= TREE_OPERAND (target
, 0);
2730 else if (TREE_CODE (target
) == ARRAY_REF
2731 || TREE_CODE (target
) == ARRAY_RANGE_REF
)
2733 offset
+= (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (target
)), 1)
2734 * tree_low_cst (TREE_OPERAND (target
, 1), 0));
2735 target
= TREE_OPERAND (target
, 0);
2737 else if (TREE_CODE (target
) == MEM_REF
2738 && TREE_CODE (TREE_OPERAND (target
, 0)) == ADDR_EXPR
)
2740 offset
+= mem_ref_offset (target
).low
;
2741 target
= TREE_OPERAND (TREE_OPERAND (target
, 0), 0);
2743 else if (TREE_CODE (target
) == INDIRECT_REF
2744 && TREE_CODE (TREE_OPERAND (target
, 0)) == NOP_EXPR
2745 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (target
, 0), 0))
2747 target
= TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (target
, 0), 0), 0);
2752 switch (TREE_CODE (target
))
2756 x
= DECL_RTL (target
);
2760 x
= gen_rtx_MEM (FUNCTION_MODE
,
2761 gen_rtx_LABEL_REF (Pmode
, force_label_rtx (target
)));
2770 x
= output_constant_def (target
, 1);
2777 gcc_assert (MEM_P (x
));
2781 value
->offset
= offset
;
2785 static GTY((param_is (struct constant_descriptor_tree
)))
2786 htab_t const_desc_htab
;
2788 static void maybe_output_constant_def_contents (struct constant_descriptor_tree
*, int);
2790 /* Constant pool accessor function. */
2793 constant_pool_htab (void)
2795 return const_desc_htab
;
2798 /* Compute a hash code for a constant expression. */
2801 const_desc_hash (const void *ptr
)
2803 return ((const struct constant_descriptor_tree
*)ptr
)->hash
;
2807 const_hash_1 (const tree exp
)
2812 enum tree_code code
= TREE_CODE (exp
);
2814 /* Either set P and LEN to the address and len of something to hash and
2815 exit the switch or return a value. */
2820 p
= (char *) &TREE_INT_CST (exp
);
2821 len
= sizeof TREE_INT_CST (exp
);
2825 return real_hash (TREE_REAL_CST_PTR (exp
));
2828 return fixed_hash (TREE_FIXED_CST_PTR (exp
));
2831 p
= TREE_STRING_POINTER (exp
);
2832 len
= TREE_STRING_LENGTH (exp
);
2836 return (const_hash_1 (TREE_REALPART (exp
)) * 5
2837 + const_hash_1 (TREE_IMAGPART (exp
)));
2843 hi
= 7 + VECTOR_CST_NELTS (exp
);
2845 for (i
= 0; i
< VECTOR_CST_NELTS (exp
); ++i
)
2846 hi
= hi
* 563 + const_hash_1 (VECTOR_CST_ELT (exp
, i
));
2853 unsigned HOST_WIDE_INT idx
;
2856 hi
= 5 + int_size_in_bytes (TREE_TYPE (exp
));
2858 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, value
)
2860 hi
= hi
* 603 + const_hash_1 (value
);
2868 struct addr_const value
;
2870 decode_addr_const (exp
, &value
);
2871 switch (GET_CODE (value
.base
))
2874 /* Don't hash the address of the SYMBOL_REF;
2875 only use the offset and the symbol name. */
2877 p
= XSTR (value
.base
, 0);
2878 for (i
= 0; p
[i
] != 0; i
++)
2879 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
2883 hi
= value
.offset
+ CODE_LABEL_NUMBER (XEXP (value
.base
, 0)) * 13;
2893 case POINTER_PLUS_EXPR
:
2895 return (const_hash_1 (TREE_OPERAND (exp
, 0)) * 9
2896 + const_hash_1 (TREE_OPERAND (exp
, 1)));
2899 return const_hash_1 (TREE_OPERAND (exp
, 0)) * 7 + 2;
2902 /* A language specific constant. Just hash the code. */
2906 /* Compute hashing function. */
2908 for (i
= 0; i
< len
; i
++)
2909 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
2914 /* Wrapper of compare_constant, for the htab interface. */
2916 const_desc_eq (const void *p1
, const void *p2
)
2918 const struct constant_descriptor_tree
*const c1
2919 = (const struct constant_descriptor_tree
*) p1
;
2920 const struct constant_descriptor_tree
*const c2
2921 = (const struct constant_descriptor_tree
*) p2
;
2922 if (c1
->hash
!= c2
->hash
)
2924 return compare_constant (c1
->value
, c2
->value
);
2927 /* Compare t1 and t2, and return 1 only if they are known to result in
2928 the same bit pattern on output. */
2931 compare_constant (const tree t1
, const tree t2
)
2933 enum tree_code typecode
;
2935 if (t1
== NULL_TREE
)
2936 return t2
== NULL_TREE
;
2937 if (t2
== NULL_TREE
)
2940 if (TREE_CODE (t1
) != TREE_CODE (t2
))
2943 switch (TREE_CODE (t1
))
2946 /* Integer constants are the same only if the same width of type. */
2947 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
2949 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
)))
2951 return tree_int_cst_equal (t1
, t2
);
2954 /* Real constants are the same only if the same width of type. */
2955 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
2958 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1
), TREE_REAL_CST (t2
));
2961 /* Fixed constants are the same only if the same width of type. */
2962 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
2965 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1
), TREE_FIXED_CST (t2
));
2968 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
)))
2971 return (TREE_STRING_LENGTH (t1
) == TREE_STRING_LENGTH (t2
)
2972 && ! memcmp (TREE_STRING_POINTER (t1
), TREE_STRING_POINTER (t2
),
2973 TREE_STRING_LENGTH (t1
)));
2976 return (compare_constant (TREE_REALPART (t1
), TREE_REALPART (t2
))
2977 && compare_constant (TREE_IMAGPART (t1
), TREE_IMAGPART (t2
)));
2983 if (VECTOR_CST_NELTS (t1
) != VECTOR_CST_NELTS (t2
))
2986 for (i
= 0; i
< VECTOR_CST_NELTS (t1
); ++i
)
2987 if (!compare_constant (VECTOR_CST_ELT (t1
, i
),
2988 VECTOR_CST_ELT (t2
, i
)))
2996 vec
<constructor_elt
, va_gc
> *v1
, *v2
;
2997 unsigned HOST_WIDE_INT idx
;
2999 typecode
= TREE_CODE (TREE_TYPE (t1
));
3000 if (typecode
!= TREE_CODE (TREE_TYPE (t2
)))
3003 if (typecode
== ARRAY_TYPE
)
3005 HOST_WIDE_INT size_1
= int_size_in_bytes (TREE_TYPE (t1
));
3006 /* For arrays, check that the sizes all match. */
3007 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
))
3009 || size_1
!= int_size_in_bytes (TREE_TYPE (t2
)))
3014 /* For record and union constructors, require exact type
3016 if (TREE_TYPE (t1
) != TREE_TYPE (t2
))
3020 v1
= CONSTRUCTOR_ELTS (t1
);
3021 v2
= CONSTRUCTOR_ELTS (t2
);
3022 if (vec_safe_length (v1
) != vec_safe_length (v2
))
3025 for (idx
= 0; idx
< vec_safe_length (v1
); ++idx
)
3027 constructor_elt
*c1
= &(*v1
)[idx
];
3028 constructor_elt
*c2
= &(*v2
)[idx
];
3030 /* Check that each value is the same... */
3031 if (!compare_constant (c1
->value
, c2
->value
))
3033 /* ... and that they apply to the same fields! */
3034 if (typecode
== ARRAY_TYPE
)
3036 if (!compare_constant (c1
->index
, c2
->index
))
3041 if (c1
->index
!= c2
->index
)
3052 struct addr_const value1
, value2
;
3056 decode_addr_const (t1
, &value1
);
3057 decode_addr_const (t2
, &value2
);
3059 if (value1
.offset
!= value2
.offset
)
3062 code
= GET_CODE (value1
.base
);
3063 if (code
!= GET_CODE (value2
.base
))
3069 ret
= (strcmp (XSTR (value1
.base
, 0), XSTR (value2
.base
, 0)) == 0);
3073 ret
= (CODE_LABEL_NUMBER (XEXP (value1
.base
, 0))
3074 == CODE_LABEL_NUMBER (XEXP (value2
.base
, 0)));
3084 case POINTER_PLUS_EXPR
:
3087 return (compare_constant (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0))
3088 && compare_constant(TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1)));
3091 case VIEW_CONVERT_EXPR
:
3092 return compare_constant (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
3101 /* Make a copy of the whole tree structure for a constant. This
3102 handles the same types of nodes that compare_constant handles. */
3105 copy_constant (tree exp
)
3107 switch (TREE_CODE (exp
))
3110 /* For ADDR_EXPR, we do not want to copy the decl whose address
3111 is requested. We do want to copy constants though. */
3112 if (CONSTANT_CLASS_P (TREE_OPERAND (exp
, 0)))
3113 return build1 (TREE_CODE (exp
), TREE_TYPE (exp
),
3114 copy_constant (TREE_OPERAND (exp
, 0)));
3116 return copy_node (exp
);
3122 return copy_node (exp
);
3125 return build_complex (TREE_TYPE (exp
),
3126 copy_constant (TREE_REALPART (exp
)),
3127 copy_constant (TREE_IMAGPART (exp
)));
3130 case POINTER_PLUS_EXPR
:
3132 return build2 (TREE_CODE (exp
), TREE_TYPE (exp
),
3133 copy_constant (TREE_OPERAND (exp
, 0)),
3134 copy_constant (TREE_OPERAND (exp
, 1)));
3137 case VIEW_CONVERT_EXPR
:
3138 return build1 (TREE_CODE (exp
), TREE_TYPE (exp
),
3139 copy_constant (TREE_OPERAND (exp
, 0)));
3142 return build_vector (TREE_TYPE (exp
), VECTOR_CST_ELTS (exp
));
3146 tree copy
= copy_node (exp
);
3147 vec
<constructor_elt
, va_gc
> *v
;
3148 unsigned HOST_WIDE_INT idx
;
3149 tree purpose
, value
;
3151 vec_alloc (v
, vec_safe_length (CONSTRUCTOR_ELTS (exp
)));
3152 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp
), idx
, purpose
, value
)
3154 constructor_elt ce
= {purpose
, copy_constant (value
)};
3157 CONSTRUCTOR_ELTS (copy
) = v
;
3166 /* Return the section into which constant EXP should be placed. */
3169 get_constant_section (tree exp
, unsigned int align
)
3171 return targetm
.asm_out
.select_section (exp
,
3172 compute_reloc_for_constant (exp
),
3176 /* Return the size of constant EXP in bytes. */
3178 static HOST_WIDE_INT
3179 get_constant_size (tree exp
)
3183 size
= int_size_in_bytes (TREE_TYPE (exp
));
3184 if (TREE_CODE (exp
) == STRING_CST
)
3185 size
= MAX (TREE_STRING_LENGTH (exp
), size
);
3189 /* Subroutine of output_constant_def:
3190 No constant equal to EXP is known to have been output.
3191 Make a constant descriptor to enter EXP in the hash table.
3192 Assign the label number and construct RTL to refer to the
3193 constant's location in memory.
3194 Caller is responsible for updating the hash table. */
3196 static struct constant_descriptor_tree
*
3197 build_constant_desc (tree exp
)
3199 struct constant_descriptor_tree
*desc
;
3205 desc
= ggc_alloc_constant_descriptor_tree ();
3206 desc
->value
= copy_constant (exp
);
3208 /* Propagate marked-ness to copied constant. */
3209 if (flag_mudflap
&& mf_marked_p (exp
))
3210 mf_mark (desc
->value
);
3212 /* Create a string containing the label name, in LABEL. */
3213 labelno
= const_labelno
++;
3214 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", labelno
);
3216 /* Construct the VAR_DECL associated with the constant. */
3217 decl
= build_decl (UNKNOWN_LOCATION
, VAR_DECL
, get_identifier (label
),
3219 DECL_ARTIFICIAL (decl
) = 1;
3220 DECL_IGNORED_P (decl
) = 1;
3221 TREE_READONLY (decl
) = 1;
3222 TREE_STATIC (decl
) = 1;
3223 TREE_ADDRESSABLE (decl
) = 1;
3224 /* We don't set the RTL yet as this would cause varpool to assume that the
3225 variable is referenced. Moreover, it would just be dropped in LTO mode.
3226 Instead we set the flag that will be recognized in make_decl_rtl. */
3227 DECL_IN_CONSTANT_POOL (decl
) = 1;
3228 DECL_INITIAL (decl
) = desc
->value
;
3229 /* ??? CONSTANT_ALIGNMENT hasn't been updated for vector types on most
3230 architectures so use DATA_ALIGNMENT as well, except for strings. */
3231 if (TREE_CODE (exp
) == STRING_CST
)
3233 #ifdef CONSTANT_ALIGNMENT
3234 DECL_ALIGN (decl
) = CONSTANT_ALIGNMENT (exp
, DECL_ALIGN (decl
));
3238 align_variable (decl
, 0);
3240 /* Now construct the SYMBOL_REF and the MEM. */
3241 if (use_object_blocks_p ())
3243 section
*sect
= get_constant_section (exp
, DECL_ALIGN (decl
));
3244 symbol
= create_block_symbol (ggc_strdup (label
),
3245 get_block_for_section (sect
), -1);
3248 symbol
= gen_rtx_SYMBOL_REF (Pmode
, ggc_strdup (label
));
3249 SYMBOL_REF_FLAGS (symbol
) |= SYMBOL_FLAG_LOCAL
;
3250 SET_SYMBOL_REF_DECL (symbol
, decl
);
3251 TREE_CONSTANT_POOL_ADDRESS_P (symbol
) = 1;
3253 rtl
= gen_const_mem (TYPE_MODE (TREE_TYPE (exp
)), symbol
);
3254 set_mem_attributes (rtl
, exp
, 1);
3255 set_mem_alias_set (rtl
, 0);
3256 set_mem_alias_set (rtl
, const_alias_set
);
3258 /* We cannot share RTX'es in pool entries.
3259 Mark this piece of RTL as required for unsharing. */
3260 RTX_FLAG (rtl
, used
) = 1;
3262 /* Set flags or add text to the name to record information, such as
3263 that it is a local symbol. If the name is changed, the macro
3264 ASM_OUTPUT_LABELREF will have to know how to strip this
3265 information. This call might invalidate our local variable
3266 SYMBOL; we can't use it afterward. */
3267 targetm
.encode_section_info (exp
, rtl
, true);
3274 /* Return an rtx representing a reference to constant data in memory
3275 for the constant expression EXP.
3277 If assembler code for such a constant has already been output,
3278 return an rtx to refer to it.
3279 Otherwise, output such a constant in memory
3280 and generate an rtx for it.
3282 If DEFER is nonzero, this constant can be deferred and output only
3283 if referenced in the function after all optimizations.
3285 `const_desc_table' records which constants already have label strings. */
3288 output_constant_def (tree exp
, int defer
)
3290 struct constant_descriptor_tree
*desc
;
3291 struct constant_descriptor_tree key
;
3294 /* Look up EXP in the table of constant descriptors. If we didn't find
3295 it, create a new one. */
3297 key
.hash
= const_hash_1 (exp
);
3298 loc
= htab_find_slot_with_hash (const_desc_htab
, &key
, key
.hash
, INSERT
);
3300 desc
= (struct constant_descriptor_tree
*) *loc
;
3303 desc
= build_constant_desc (exp
);
3304 desc
->hash
= key
.hash
;
3308 maybe_output_constant_def_contents (desc
, defer
);
3312 /* Subroutine of output_constant_def: Decide whether or not we need to
3313 output the constant DESC now, and if so, do it. */
3315 maybe_output_constant_def_contents (struct constant_descriptor_tree
*desc
,
3318 rtx symbol
= XEXP (desc
->rtl
, 0);
3319 tree exp
= desc
->value
;
3321 if (flag_syntax_only
)
3324 if (TREE_ASM_WRITTEN (exp
))
3325 /* Already output; don't do it again. */
3328 /* We can always defer constants as long as the context allows
3332 /* Increment n_deferred_constants if it exists. It needs to be at
3333 least as large as the number of constants actually referred to
3334 by the function. If it's too small we'll stop looking too early
3335 and fail to emit constants; if it's too large we'll only look
3336 through the entire function when we could have stopped earlier. */
3338 n_deferred_constants
++;
3342 output_constant_def_contents (symbol
);
3345 /* Subroutine of output_constant_def_contents. Output the definition
3346 of constant EXP, which is pointed to by label LABEL. ALIGN is the
3347 constant's alignment in bits. */
3350 assemble_constant_contents (tree exp
, const char *label
, unsigned int align
)
3354 size
= get_constant_size (exp
);
3356 /* Do any machine/system dependent processing of the constant. */
3357 targetm
.asm_out
.declare_constant_name (asm_out_file
, label
, exp
, size
);
3359 /* Output the value of EXP. */
3360 output_constant (exp
, size
, align
);
3363 /* We must output the constant data referred to by SYMBOL; do so. */
3366 output_constant_def_contents (rtx symbol
)
3368 tree decl
= SYMBOL_REF_DECL (symbol
);
3369 tree exp
= DECL_INITIAL (decl
);
3371 bool asan_protected
= false;
3373 /* Make sure any other constants whose addresses appear in EXP
3374 are assigned label numbers. */
3375 output_addressed_constants (exp
);
3377 /* We are no longer deferring this constant. */
3378 TREE_ASM_WRITTEN (decl
) = TREE_ASM_WRITTEN (exp
) = 1;
3380 if ((flag_sanitize
& SANITIZE_ADDRESS
)
3381 && TREE_CODE (exp
) == STRING_CST
3382 && asan_protect_global (exp
))
3384 asan_protected
= true;
3385 DECL_ALIGN (decl
) = MAX (DECL_ALIGN (decl
),
3386 ASAN_RED_ZONE_SIZE
* BITS_PER_UNIT
);
3389 /* If the constant is part of an object block, make sure that the
3390 decl has been positioned within its block, but do not write out
3391 its definition yet. output_object_blocks will do that later. */
3392 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol
) && SYMBOL_REF_BLOCK (symbol
))
3393 place_block_symbol (symbol
);
3396 align
= DECL_ALIGN (decl
);
3397 switch_to_section (get_constant_section (exp
, align
));
3398 if (align
> BITS_PER_UNIT
)
3399 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
3400 assemble_constant_contents (exp
, XSTR (symbol
, 0), align
);
3403 HOST_WIDE_INT size
= get_constant_size (exp
);
3404 assemble_zeros (asan_red_zone_size (size
));
3408 mudflap_enqueue_constant (exp
);
3411 /* Look up EXP in the table of constant descriptors. Return the rtl
3412 if it has been emitted, else null. */
3415 lookup_constant_def (tree exp
)
3417 struct constant_descriptor_tree
*desc
;
3418 struct constant_descriptor_tree key
;
3421 key
.hash
= const_hash_1 (exp
);
3422 desc
= (struct constant_descriptor_tree
*)
3423 htab_find_with_hash (const_desc_htab
, &key
, key
.hash
);
3425 return (desc
? desc
->rtl
: NULL_RTX
);
3428 /* Return a tree representing a reference to constant data in memory
3429 for the constant expression EXP.
3431 This is the counterpart of output_constant_def at the Tree level. */
3434 tree_output_constant_def (tree exp
)
3436 struct constant_descriptor_tree
*desc
, key
;
3440 /* Look up EXP in the table of constant descriptors. If we didn't find
3441 it, create a new one. */
3443 key
.hash
= const_hash_1 (exp
);
3444 loc
= htab_find_slot_with_hash (const_desc_htab
, &key
, key
.hash
, INSERT
);
3446 desc
= (struct constant_descriptor_tree
*) *loc
;
3449 desc
= build_constant_desc (exp
);
3450 desc
->hash
= key
.hash
;
3454 decl
= SYMBOL_REF_DECL (XEXP (desc
->rtl
, 0));
3455 varpool_finalize_decl (decl
);
3459 /* Used in the hash tables to avoid outputting the same constant
3460 twice. Unlike 'struct constant_descriptor_tree', RTX constants
3461 are output once per function, not once per file. */
3462 /* ??? Only a few targets need per-function constant pools. Most
3463 can use one per-file pool. Should add a targetm bit to tell the
3466 struct GTY(()) rtx_constant_pool
{
3467 /* Pointers to first and last constant in pool, as ordered by offset. */
3468 struct constant_descriptor_rtx
*first
;
3469 struct constant_descriptor_rtx
*last
;
3471 /* Hash facility for making memory-constants from constant rtl-expressions.
3472 It is used on RISC machines where immediate integer arguments and
3473 constant addresses are restricted so that such constants must be stored
3475 htab_t
GTY((param_is (struct constant_descriptor_rtx
))) const_rtx_htab
;
3477 /* Current offset in constant pool (does not include any
3478 machine-specific header). */
3479 HOST_WIDE_INT offset
;
3482 struct GTY((chain_next ("%h.next"))) constant_descriptor_rtx
{
3483 struct constant_descriptor_rtx
*next
;
3487 HOST_WIDE_INT offset
;
3489 enum machine_mode mode
;
3495 /* Hash and compare functions for const_rtx_htab. */
3498 const_desc_rtx_hash (const void *ptr
)
3500 const struct constant_descriptor_rtx
*const desc
3501 = (const struct constant_descriptor_rtx
*) ptr
;
3506 const_desc_rtx_eq (const void *a
, const void *b
)
3508 const struct constant_descriptor_rtx
*const x
3509 = (const struct constant_descriptor_rtx
*) a
;
3510 const struct constant_descriptor_rtx
*const y
3511 = (const struct constant_descriptor_rtx
*) b
;
3513 if (x
->mode
!= y
->mode
)
3515 return rtx_equal_p (x
->constant
, y
->constant
);
3518 /* This is the worker function for const_rtx_hash, called via for_each_rtx. */
3521 const_rtx_hash_1 (rtx
*xp
, void *data
)
3523 unsigned HOST_WIDE_INT hwi
;
3524 enum machine_mode mode
;
3530 code
= GET_CODE (x
);
3531 mode
= GET_MODE (x
);
3532 h
= (hashval_t
) code
* 1048573 + mode
;
3540 int shift
= sizeof (hashval_t
) * CHAR_BIT
;
3541 const int n
= sizeof (HOST_WIDE_INT
) / sizeof (hashval_t
);
3544 h
^= (hashval_t
) hwi
;
3545 for (i
= 1; i
< n
; ++i
)
3548 h
^= (hashval_t
) hwi
;
3554 if (mode
== VOIDmode
)
3556 hwi
= CONST_DOUBLE_LOW (x
) ^ CONST_DOUBLE_HIGH (x
);
3560 h
^= real_hash (CONST_DOUBLE_REAL_VALUE (x
));
3564 h
^= fixed_hash (CONST_FIXED_VALUE (x
));
3570 for (i
= XVECLEN (x
, 0); i
-- > 0; )
3571 h
= h
* 251 + const_rtx_hash_1 (&XVECEXP (x
, 0, i
), data
);
3576 h
^= htab_hash_string (XSTR (x
, 0));
3580 h
= h
* 251 + CODE_LABEL_NUMBER (XEXP (x
, 0));
3584 case UNSPEC_VOLATILE
:
3585 h
= h
* 251 + XINT (x
, 1);
3592 hp
= (hashval_t
*) data
;
3593 *hp
= *hp
* 509 + h
;
3597 /* Compute a hash value for X, which should be a constant. */
3600 const_rtx_hash (rtx x
)
3603 for_each_rtx (&x
, const_rtx_hash_1
, &h
);
3608 /* Create and return a new rtx constant pool. */
3610 static struct rtx_constant_pool
*
3611 create_constant_pool (void)
3613 struct rtx_constant_pool
*pool
;
3615 pool
= ggc_alloc_rtx_constant_pool ();
3616 pool
->const_rtx_htab
= htab_create_ggc (31, const_desc_rtx_hash
,
3617 const_desc_rtx_eq
, NULL
);
3624 /* Initialize constant pool hashing for a new function. */
3627 init_varasm_status (void)
3629 crtl
->varasm
.pool
= create_constant_pool ();
3630 crtl
->varasm
.deferred_constants
= 0;
3633 /* Given a MINUS expression, simplify it if both sides
3634 include the same symbol. */
3637 simplify_subtraction (rtx x
)
3639 rtx r
= simplify_rtx (x
);
3643 /* Given a constant rtx X, make (or find) a memory constant for its value
3644 and return a MEM rtx to refer to it in memory. */
3647 force_const_mem (enum machine_mode mode
, rtx x
)
3649 struct constant_descriptor_rtx
*desc
, tmp
;
3650 struct rtx_constant_pool
*pool
;
3657 /* If we're not allowed to drop X into the constant pool, don't. */
3658 if (targetm
.cannot_force_const_mem (mode
, x
))
3661 /* Record that this function has used a constant pool entry. */
3662 crtl
->uses_const_pool
= 1;
3664 /* Decide which pool to use. */
3665 pool
= (targetm
.use_blocks_for_constant_p (mode
, x
)
3666 ? shared_constant_pool
3667 : crtl
->varasm
.pool
);
3669 /* Lookup the value in the hashtable. */
3672 hash
= const_rtx_hash (x
);
3673 slot
= htab_find_slot_with_hash (pool
->const_rtx_htab
, &tmp
, hash
, INSERT
);
3674 desc
= (struct constant_descriptor_rtx
*) *slot
;
3676 /* If the constant was already present, return its memory. */
3678 return copy_rtx (desc
->mem
);
3680 /* Otherwise, create a new descriptor. */
3681 desc
= ggc_alloc_constant_descriptor_rtx ();
3684 /* Align the location counter as required by EXP's data type. */
3685 align
= GET_MODE_ALIGNMENT (mode
== VOIDmode
? word_mode
: mode
);
3686 #ifdef CONSTANT_ALIGNMENT
3688 tree type
= lang_hooks
.types
.type_for_mode (mode
, 0);
3689 if (type
!= NULL_TREE
)
3690 align
= CONSTANT_ALIGNMENT (make_tree (type
, x
), align
);
3694 pool
->offset
+= (align
/ BITS_PER_UNIT
) - 1;
3695 pool
->offset
&= ~ ((align
/ BITS_PER_UNIT
) - 1);
3698 desc
->constant
= copy_rtx (tmp
.constant
);
3699 desc
->offset
= pool
->offset
;
3702 desc
->align
= align
;
3703 desc
->labelno
= const_labelno
;
3706 pool
->offset
+= GET_MODE_SIZE (mode
);
3708 pool
->last
->next
= desc
;
3710 pool
->first
= pool
->last
= desc
;
3713 /* Create a string containing the label name, in LABEL. */
3714 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", const_labelno
);
3717 /* Construct the SYMBOL_REF. Make sure to mark it as belonging to
3718 the constants pool. */
3719 if (use_object_blocks_p () && targetm
.use_blocks_for_constant_p (mode
, x
))
3721 section
*sect
= targetm
.asm_out
.select_rtx_section (mode
, x
, align
);
3722 symbol
= create_block_symbol (ggc_strdup (label
),
3723 get_block_for_section (sect
), -1);
3726 symbol
= gen_rtx_SYMBOL_REF (Pmode
, ggc_strdup (label
));
3728 SYMBOL_REF_FLAGS (symbol
) |= SYMBOL_FLAG_LOCAL
;
3729 CONSTANT_POOL_ADDRESS_P (symbol
) = 1;
3730 SET_SYMBOL_REF_CONSTANT (symbol
, desc
);
3732 /* Construct the MEM. */
3733 desc
->mem
= def
= gen_const_mem (mode
, symbol
);
3734 set_mem_attributes (def
, lang_hooks
.types
.type_for_mode (mode
, 0), 1);
3735 set_mem_align (def
, align
);
3737 /* If we're dropping a label to the constant pool, make sure we
3739 if (GET_CODE (x
) == LABEL_REF
)
3740 LABEL_PRESERVE_P (XEXP (x
, 0)) = 1;
3742 return copy_rtx (def
);
3745 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3748 get_pool_constant (rtx addr
)
3750 return SYMBOL_REF_CONSTANT (addr
)->constant
;
3753 /* Given a constant pool SYMBOL_REF, return the corresponding constant
3754 and whether it has been output or not. */
3757 get_pool_constant_mark (rtx addr
, bool *pmarked
)
3759 struct constant_descriptor_rtx
*desc
;
3761 desc
= SYMBOL_REF_CONSTANT (addr
);
3762 *pmarked
= (desc
->mark
!= 0);
3763 return desc
->constant
;
3766 /* Similar, return the mode. */
3769 get_pool_mode (const_rtx addr
)
3771 return SYMBOL_REF_CONSTANT (addr
)->mode
;
3774 /* Return the size of the constant pool. */
3777 get_pool_size (void)
3779 return crtl
->varasm
.pool
->offset
;
3782 /* Worker function for output_constant_pool_1. Emit assembly for X
3783 in MODE with known alignment ALIGN. */
3786 output_constant_pool_2 (enum machine_mode mode
, rtx x
, unsigned int align
)
3788 switch (GET_MODE_CLASS (mode
))
3791 case MODE_DECIMAL_FLOAT
:
3795 gcc_assert (CONST_DOUBLE_AS_FLOAT_P (x
));
3796 REAL_VALUE_FROM_CONST_DOUBLE (r
, x
);
3797 assemble_real (r
, mode
, align
);
3802 case MODE_PARTIAL_INT
:
3807 assemble_integer (x
, GET_MODE_SIZE (mode
), align
, 1);
3810 case MODE_VECTOR_FLOAT
:
3811 case MODE_VECTOR_INT
:
3812 case MODE_VECTOR_FRACT
:
3813 case MODE_VECTOR_UFRACT
:
3814 case MODE_VECTOR_ACCUM
:
3815 case MODE_VECTOR_UACCUM
:
3818 enum machine_mode submode
= GET_MODE_INNER (mode
);
3819 unsigned int subalign
= MIN (align
, GET_MODE_BITSIZE (submode
));
3821 gcc_assert (GET_CODE (x
) == CONST_VECTOR
);
3822 units
= CONST_VECTOR_NUNITS (x
);
3824 for (i
= 0; i
< units
; i
++)
3826 rtx elt
= CONST_VECTOR_ELT (x
, i
);
3827 output_constant_pool_2 (submode
, elt
, i
? subalign
: align
);
3837 /* Worker function for output_constant_pool. Emit constant DESC,
3838 giving it ALIGN bits of alignment. */
3841 output_constant_pool_1 (struct constant_descriptor_rtx
*desc
,
3848 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3849 whose CODE_LABEL has been deleted. This can occur if a jump table
3850 is eliminated by optimization. If so, write a constant of zero
3851 instead. Note that this can also happen by turning the
3852 CODE_LABEL into a NOTE. */
3853 /* ??? This seems completely and utterly wrong. Certainly it's
3854 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3855 functioning even with INSN_DELETED_P and friends. */
3858 switch (GET_CODE (tmp
))
3861 if (GET_CODE (XEXP (tmp
, 0)) != PLUS
3862 || GET_CODE (XEXP (XEXP (tmp
, 0), 0)) != LABEL_REF
)
3864 tmp
= XEXP (XEXP (tmp
, 0), 0);
3868 tmp
= XEXP (tmp
, 0);
3869 gcc_assert (!INSN_DELETED_P (tmp
));
3870 gcc_assert (!NOTE_P (tmp
)
3871 || NOTE_KIND (tmp
) != NOTE_INSN_DELETED
);
3878 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3879 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file
, x
, desc
->mode
,
3880 align
, desc
->labelno
, done
);
3883 assemble_align (align
);
3885 /* Output the label. */
3886 targetm
.asm_out
.internal_label (asm_out_file
, "LC", desc
->labelno
);
3888 /* Output the data. */
3889 output_constant_pool_2 (desc
->mode
, x
, align
);
3891 /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
3892 sections have proper size. */
3893 if (align
> GET_MODE_BITSIZE (desc
->mode
)
3895 && (in_section
->common
.flags
& SECTION_MERGE
))
3896 assemble_align (align
);
3898 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3904 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3905 to as used. Emit referenced deferred strings. This function can
3906 be used with for_each_rtx to mark all SYMBOL_REFs in an rtx. */
3909 mark_constant (rtx
*current_rtx
, void *data ATTRIBUTE_UNUSED
)
3911 rtx x
= *current_rtx
;
3913 if (x
== NULL_RTX
|| GET_CODE (x
) != SYMBOL_REF
)
3916 if (CONSTANT_POOL_ADDRESS_P (x
))
3918 struct constant_descriptor_rtx
*desc
= SYMBOL_REF_CONSTANT (x
);
3919 if (desc
->mark
== 0)
3922 for_each_rtx (&desc
->constant
, mark_constant
, NULL
);
3925 else if (TREE_CONSTANT_POOL_ADDRESS_P (x
))
3927 tree decl
= SYMBOL_REF_DECL (x
);
3928 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl
)))
3930 n_deferred_constants
--;
3931 output_constant_def_contents (x
);
3938 /* Look through appropriate parts of INSN, marking all entries in the
3939 constant pool which are actually being used. Entries that are only
3940 referenced by other constants are also marked as used. Emit
3941 deferred strings that are used. */
3944 mark_constants (rtx insn
)
3949 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3950 insns, not any notes that may be attached. We don't want to mark
3951 a constant just because it happens to appear in a REG_EQUIV note. */
3952 if (GET_CODE (PATTERN (insn
)) == SEQUENCE
)
3954 rtx seq
= PATTERN (insn
);
3955 int i
, n
= XVECLEN (seq
, 0);
3956 for (i
= 0; i
< n
; ++i
)
3958 rtx subinsn
= XVECEXP (seq
, 0, i
);
3959 if (INSN_P (subinsn
))
3960 for_each_rtx (&PATTERN (subinsn
), mark_constant
, NULL
);
3964 for_each_rtx (&PATTERN (insn
), mark_constant
, NULL
);
3967 /* Look through the instructions for this function, and mark all the
3968 entries in POOL which are actually being used. Emit deferred constants
3969 which have indeed been used. */
3972 mark_constant_pool (void)
3976 if (!crtl
->uses_const_pool
&& n_deferred_constants
== 0)
3979 for (insn
= get_insns (); insn
; insn
= NEXT_INSN (insn
))
3980 mark_constants (insn
);
3983 /* Write all the constants in POOL. */
3986 output_constant_pool_contents (struct rtx_constant_pool
*pool
)
3988 struct constant_descriptor_rtx
*desc
;
3990 for (desc
= pool
->first
; desc
; desc
= desc
->next
)
3993 /* If the constant is part of an object_block, make sure that
3994 the constant has been positioned within its block, but do not
3995 write out its definition yet. output_object_blocks will do
3997 if (SYMBOL_REF_HAS_BLOCK_INFO_P (desc
->sym
)
3998 && SYMBOL_REF_BLOCK (desc
->sym
))
3999 place_block_symbol (desc
->sym
);
4002 switch_to_section (targetm
.asm_out
.select_rtx_section
4003 (desc
->mode
, desc
->constant
, desc
->align
));
4004 output_constant_pool_1 (desc
, desc
->align
);
4009 /* Mark all constants that are used in the current function, then write
4010 out the function's private constant pool. */
4013 output_constant_pool (const char *fnname ATTRIBUTE_UNUSED
,
4014 tree fndecl ATTRIBUTE_UNUSED
)
4016 struct rtx_constant_pool
*pool
= crtl
->varasm
.pool
;
4018 /* It is possible for gcc to call force_const_mem and then to later
4019 discard the instructions which refer to the constant. In such a
4020 case we do not need to output the constant. */
4021 mark_constant_pool ();
4023 #ifdef ASM_OUTPUT_POOL_PROLOGUE
4024 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file
, fnname
, fndecl
, pool
->offset
);
4027 output_constant_pool_contents (pool
);
4029 #ifdef ASM_OUTPUT_POOL_EPILOGUE
4030 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file
, fnname
, fndecl
, pool
->offset
);
4034 /* Write the contents of the shared constant pool. */
4037 output_shared_constant_pool (void)
4039 output_constant_pool_contents (shared_constant_pool
);
4042 /* Determine what kind of relocations EXP may need. */
4045 compute_reloc_for_constant (tree exp
)
4047 int reloc
= 0, reloc2
;
4050 switch (TREE_CODE (exp
))
4054 /* Go inside any operations that get_inner_reference can handle and see
4055 if what's inside is a constant: no need to do anything here for
4056 addresses of variables or functions. */
4057 for (tem
= TREE_OPERAND (exp
, 0); handled_component_p (tem
);
4058 tem
= TREE_OPERAND (tem
, 0))
4061 if (TREE_CODE (tem
) == MEM_REF
4062 && TREE_CODE (TREE_OPERAND (tem
, 0)) == ADDR_EXPR
)
4064 reloc
= compute_reloc_for_constant (TREE_OPERAND (tem
, 0));
4068 if (TREE_PUBLIC (tem
))
4075 case POINTER_PLUS_EXPR
:
4076 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
4077 reloc
|= compute_reloc_for_constant (TREE_OPERAND (exp
, 1));
4081 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
4082 reloc2
= compute_reloc_for_constant (TREE_OPERAND (exp
, 1));
4083 /* The difference of two local labels is computable at link time. */
4084 if (reloc
== 1 && reloc2
== 1)
4091 case VIEW_CONVERT_EXPR
:
4092 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
4097 unsigned HOST_WIDE_INT idx
;
4098 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, tem
)
4100 reloc
|= compute_reloc_for_constant (tem
);
4110 /* Find all the constants whose addresses are referenced inside of EXP,
4111 and make sure assembler code with a label has been output for each one.
4112 Indicate whether an ADDR_EXPR has been encountered. */
4115 output_addressed_constants (tree exp
)
4119 switch (TREE_CODE (exp
))
4123 /* Go inside any operations that get_inner_reference can handle and see
4124 if what's inside is a constant: no need to do anything here for
4125 addresses of variables or functions. */
4126 for (tem
= TREE_OPERAND (exp
, 0); handled_component_p (tem
);
4127 tem
= TREE_OPERAND (tem
, 0))
4130 /* If we have an initialized CONST_DECL, retrieve the initializer. */
4131 if (TREE_CODE (tem
) == CONST_DECL
&& DECL_INITIAL (tem
))
4132 tem
= DECL_INITIAL (tem
);
4134 if (CONSTANT_CLASS_P (tem
) || TREE_CODE (tem
) == CONSTRUCTOR
)
4135 output_constant_def (tem
, 0);
4137 if (TREE_CODE (tem
) == MEM_REF
)
4138 output_addressed_constants (TREE_OPERAND (tem
, 0));
4142 case POINTER_PLUS_EXPR
:
4144 output_addressed_constants (TREE_OPERAND (exp
, 1));
4148 case VIEW_CONVERT_EXPR
:
4149 output_addressed_constants (TREE_OPERAND (exp
, 0));
4154 unsigned HOST_WIDE_INT idx
;
4155 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, tem
)
4157 output_addressed_constants (tem
);
4166 /* Whether a constructor CTOR is a valid static constant initializer if all
4167 its elements are. This used to be internal to initializer_constant_valid_p
4168 and has been exposed to let other functions like categorize_ctor_elements
4169 evaluate the property while walking a constructor for other purposes. */
4172 constructor_static_from_elts_p (const_tree ctor
)
4174 return (TREE_CONSTANT (ctor
)
4175 && (TREE_CODE (TREE_TYPE (ctor
)) == UNION_TYPE
4176 || TREE_CODE (TREE_TYPE (ctor
)) == RECORD_TYPE
4177 || TREE_CODE (TREE_TYPE (ctor
)) == ARRAY_TYPE
));
4180 static tree
initializer_constant_valid_p_1 (tree value
, tree endtype
,
4183 /* A subroutine of initializer_constant_valid_p. VALUE is a MINUS_EXPR,
4184 PLUS_EXPR or POINTER_PLUS_EXPR. This looks for cases of VALUE
4185 which are valid when ENDTYPE is an integer of any size; in
4186 particular, this does not accept a pointer minus a constant. This
4187 returns null_pointer_node if the VALUE is an absolute constant
4188 which can be used to initialize a static variable. Otherwise it
4192 narrowing_initializer_constant_valid_p (tree value
, tree endtype
, tree
*cache
)
4196 if (!INTEGRAL_TYPE_P (endtype
))
4199 op0
= TREE_OPERAND (value
, 0);
4200 op1
= TREE_OPERAND (value
, 1);
4202 /* Like STRIP_NOPS except allow the operand mode to widen. This
4203 works around a feature of fold that simplifies (int)(p1 - p2) to
4204 ((int)p1 - (int)p2) under the theory that the narrower operation
4207 while (CONVERT_EXPR_P (op0
)
4208 || TREE_CODE (op0
) == NON_LVALUE_EXPR
)
4210 tree inner
= TREE_OPERAND (op0
, 0);
4211 if (inner
== error_mark_node
4212 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner
)))
4213 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0
)))
4214 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner
)))))
4219 while (CONVERT_EXPR_P (op1
)
4220 || TREE_CODE (op1
) == NON_LVALUE_EXPR
)
4222 tree inner
= TREE_OPERAND (op1
, 0);
4223 if (inner
== error_mark_node
4224 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner
)))
4225 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op1
)))
4226 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner
)))))
4231 op0
= initializer_constant_valid_p_1 (op0
, endtype
, cache
);
4235 op1
= initializer_constant_valid_p_1 (op1
, endtype
,
4236 cache
? cache
+ 2 : NULL
);
4237 /* Both initializers must be known. */
4241 && (op0
== null_pointer_node
4242 || TREE_CODE (value
) == MINUS_EXPR
))
4243 return null_pointer_node
;
4245 /* Support differences between labels. */
4246 if (TREE_CODE (op0
) == LABEL_DECL
4247 && TREE_CODE (op1
) == LABEL_DECL
)
4248 return null_pointer_node
;
4250 if (TREE_CODE (op0
) == STRING_CST
4251 && TREE_CODE (op1
) == STRING_CST
4252 && operand_equal_p (op0
, op1
, 1))
4253 return null_pointer_node
;
4259 /* Helper function of initializer_constant_valid_p.
4260 Return nonzero if VALUE is a valid constant-valued expression
4261 for use in initializing a static variable; one that can be an
4262 element of a "constant" initializer.
4264 Return null_pointer_node if the value is absolute;
4265 if it is relocatable, return the variable that determines the relocation.
4266 We assume that VALUE has been folded as much as possible;
4267 therefore, we do not need to check for such things as
4268 arithmetic-combinations of integers.
4270 Use CACHE (pointer to 2 tree values) for caching if non-NULL. */
4273 initializer_constant_valid_p_1 (tree value
, tree endtype
, tree
*cache
)
4277 switch (TREE_CODE (value
))
4280 if (constructor_static_from_elts_p (value
))
4282 unsigned HOST_WIDE_INT idx
;
4284 bool absolute
= true;
4286 if (cache
&& cache
[0] == value
)
4288 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value
), idx
, elt
)
4291 reloc
= initializer_constant_valid_p_1 (elt
, TREE_TYPE (elt
),
4298 cache
[1] = NULL_TREE
;
4302 if (reloc
!= null_pointer_node
)
4305 /* For a non-absolute relocation, there is no single
4306 variable that can be "the variable that determines the
4311 cache
[1] = absolute
? null_pointer_node
: error_mark_node
;
4313 return absolute
? null_pointer_node
: error_mark_node
;
4316 return TREE_STATIC (value
) ? null_pointer_node
: NULL_TREE
;
4324 return null_pointer_node
;
4329 tree op0
= staticp (TREE_OPERAND (value
, 0));
4332 /* "&(*a).f" is like unto pointer arithmetic. If "a" turns out
4333 to be a constant, this is old-skool offsetof-like nonsense. */
4334 if (TREE_CODE (op0
) == INDIRECT_REF
4335 && TREE_CONSTANT (TREE_OPERAND (op0
, 0)))
4336 return null_pointer_node
;
4337 /* Taking the address of a nested function involves a trampoline,
4338 unless we don't need or want one. */
4339 if (TREE_CODE (op0
) == FUNCTION_DECL
4340 && DECL_STATIC_CHAIN (op0
)
4341 && !TREE_NO_TRAMPOLINE (value
))
4343 /* "&{...}" requires a temporary to hold the constructed
4345 if (TREE_CODE (op0
) == CONSTRUCTOR
)
4351 case NON_LVALUE_EXPR
:
4352 return initializer_constant_valid_p_1 (TREE_OPERAND (value
, 0),
4355 case VIEW_CONVERT_EXPR
:
4357 tree src
= TREE_OPERAND (value
, 0);
4358 tree src_type
= TREE_TYPE (src
);
4359 tree dest_type
= TREE_TYPE (value
);
4361 /* Allow view-conversions from aggregate to non-aggregate type only
4362 if the bit pattern is fully preserved afterwards; otherwise, the
4363 RTL expander won't be able to apply a subsequent transformation
4364 to the underlying constructor. */
4365 if (AGGREGATE_TYPE_P (src_type
) && !AGGREGATE_TYPE_P (dest_type
))
4367 if (TYPE_MODE (endtype
) == TYPE_MODE (dest_type
))
4368 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4373 /* Allow all other kinds of view-conversion. */
4374 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4379 tree src
= TREE_OPERAND (value
, 0);
4380 tree src_type
= TREE_TYPE (src
);
4381 tree dest_type
= TREE_TYPE (value
);
4383 /* Allow conversions between pointer types, floating-point
4384 types, and offset types. */
4385 if ((POINTER_TYPE_P (dest_type
) && POINTER_TYPE_P (src_type
))
4386 || (FLOAT_TYPE_P (dest_type
) && FLOAT_TYPE_P (src_type
))
4387 || (TREE_CODE (dest_type
) == OFFSET_TYPE
4388 && TREE_CODE (src_type
) == OFFSET_TYPE
))
4389 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4391 /* Allow length-preserving conversions between integer types. */
4392 if (INTEGRAL_TYPE_P (dest_type
) && INTEGRAL_TYPE_P (src_type
)
4393 && (TYPE_PRECISION (dest_type
) == TYPE_PRECISION (src_type
)))
4394 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4396 /* Allow conversions between other integer types only if
4398 if (INTEGRAL_TYPE_P (dest_type
) && INTEGRAL_TYPE_P (src_type
))
4400 tree inner
= initializer_constant_valid_p_1 (src
, endtype
, cache
);
4401 if (inner
== null_pointer_node
)
4402 return null_pointer_node
;
4406 /* Allow (int) &foo provided int is as wide as a pointer. */
4407 if (INTEGRAL_TYPE_P (dest_type
) && POINTER_TYPE_P (src_type
)
4408 && (TYPE_PRECISION (dest_type
) >= TYPE_PRECISION (src_type
)))
4409 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4411 /* Likewise conversions from int to pointers, but also allow
4412 conversions from 0. */
4413 if ((POINTER_TYPE_P (dest_type
)
4414 || TREE_CODE (dest_type
) == OFFSET_TYPE
)
4415 && INTEGRAL_TYPE_P (src_type
))
4417 if (TREE_CODE (src
) == INTEGER_CST
4418 && TYPE_PRECISION (dest_type
) >= TYPE_PRECISION (src_type
))
4419 return null_pointer_node
;
4420 if (integer_zerop (src
))
4421 return null_pointer_node
;
4422 else if (TYPE_PRECISION (dest_type
) <= TYPE_PRECISION (src_type
))
4423 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4426 /* Allow conversions to struct or union types if the value
4428 if (TREE_CODE (dest_type
) == RECORD_TYPE
4429 || TREE_CODE (dest_type
) == UNION_TYPE
)
4430 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4434 case POINTER_PLUS_EXPR
:
4436 /* Any valid floating-point constants will have been folded by now;
4437 with -frounding-math we hit this with addition of two constants. */
4438 if (TREE_CODE (endtype
) == REAL_TYPE
)
4440 if (cache
&& cache
[0] == value
)
4442 if (! INTEGRAL_TYPE_P (endtype
)
4443 || TYPE_PRECISION (endtype
) >= TYPE_PRECISION (TREE_TYPE (value
)))
4445 tree ncache
[4] = { NULL_TREE
, NULL_TREE
, NULL_TREE
, NULL_TREE
};
4447 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 0),
4450 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 1),
4451 endtype
, ncache
+ 2);
4452 /* If either term is absolute, use the other term's relocation. */
4453 if (valid0
== null_pointer_node
)
4455 else if (valid1
== null_pointer_node
)
4457 /* Support narrowing pointer differences. */
4459 ret
= narrowing_initializer_constant_valid_p (value
, endtype
,
4463 /* Support narrowing pointer differences. */
4464 ret
= narrowing_initializer_constant_valid_p (value
, endtype
, NULL
);
4473 if (TREE_CODE (endtype
) == REAL_TYPE
)
4475 if (cache
&& cache
[0] == value
)
4477 if (! INTEGRAL_TYPE_P (endtype
)
4478 || TYPE_PRECISION (endtype
) >= TYPE_PRECISION (TREE_TYPE (value
)))
4480 tree ncache
[4] = { NULL_TREE
, NULL_TREE
, NULL_TREE
, NULL_TREE
};
4482 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 0),
4485 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 1),
4486 endtype
, ncache
+ 2);
4487 /* Win if second argument is absolute. */
4488 if (valid1
== null_pointer_node
)
4490 /* Win if both arguments have the same relocation.
4491 Then the value is absolute. */
4492 else if (valid0
== valid1
&& valid0
!= 0)
4493 ret
= null_pointer_node
;
4494 /* Since GCC guarantees that string constants are unique in the
4495 generated code, a subtraction between two copies of the same
4496 constant string is absolute. */
4497 else if (valid0
&& TREE_CODE (valid0
) == STRING_CST
4498 && valid1
&& TREE_CODE (valid1
) == STRING_CST
4499 && operand_equal_p (valid0
, valid1
, 1))
4500 ret
= null_pointer_node
;
4501 /* Support narrowing differences. */
4503 ret
= narrowing_initializer_constant_valid_p (value
, endtype
,
4507 /* Support narrowing differences. */
4508 ret
= narrowing_initializer_constant_valid_p (value
, endtype
, NULL
);
4523 /* Return nonzero if VALUE is a valid constant-valued expression
4524 for use in initializing a static variable; one that can be an
4525 element of a "constant" initializer.
4527 Return null_pointer_node if the value is absolute;
4528 if it is relocatable, return the variable that determines the relocation.
4529 We assume that VALUE has been folded as much as possible;
4530 therefore, we do not need to check for such things as
4531 arithmetic-combinations of integers. */
4533 initializer_constant_valid_p (tree value
, tree endtype
)
4535 return initializer_constant_valid_p_1 (value
, endtype
, NULL
);
4538 /* Return true if VALUE is a valid constant-valued expression
4539 for use in initializing a static bit-field; one that can be
4540 an element of a "constant" initializer. */
4543 initializer_constant_valid_for_bitfield_p (tree value
)
4545 /* For bitfields we support integer constants or possibly nested aggregates
4547 switch (TREE_CODE (value
))
4551 unsigned HOST_WIDE_INT idx
;
4554 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value
), idx
, elt
)
4555 if (!initializer_constant_valid_for_bitfield_p (elt
))
4564 case VIEW_CONVERT_EXPR
:
4565 case NON_LVALUE_EXPR
:
4567 initializer_constant_valid_for_bitfield_p (TREE_OPERAND (value
, 0));
4576 /* output_constructor outer state of relevance in recursive calls, typically
4577 for nested aggregate bitfields. */
4580 unsigned int bit_offset
; /* current position in ... */
4581 int byte
; /* ... the outer byte buffer. */
4584 static unsigned HOST_WIDE_INT
4585 output_constructor (tree
, unsigned HOST_WIDE_INT
, unsigned int,
4588 /* Output assembler code for constant EXP, with no label.
4589 This includes the pseudo-op such as ".int" or ".byte", and a newline.
4590 Assumes output_addressed_constants has been done on EXP already.
4592 Generate exactly SIZE bytes of assembler data, padding at the end
4593 with zeros if necessary. SIZE must always be specified.
4595 SIZE is important for structure constructors,
4596 since trailing members may have been omitted from the constructor.
4597 It is also important for initialization of arrays from string constants
4598 since the full length of the string constant might not be wanted.
4599 It is also needed for initialization of unions, where the initializer's
4600 type is just one member, and that may not be as long as the union.
4602 There a case in which we would fail to output exactly SIZE bytes:
4603 for a structure constructor that wants to produce more than SIZE bytes.
4604 But such constructors will never be generated for any possible input.
4606 ALIGN is the alignment of the data in bits. */
4609 output_constant (tree exp
, unsigned HOST_WIDE_INT size
, unsigned int align
)
4611 enum tree_code code
;
4612 unsigned HOST_WIDE_INT thissize
;
4614 if (size
== 0 || flag_syntax_only
)
4617 /* See if we're trying to initialize a pointer in a non-default mode
4618 to the address of some declaration somewhere. If the target says
4619 the mode is valid for pointers, assume the target has a way of
4621 if (TREE_CODE (exp
) == NOP_EXPR
4622 && POINTER_TYPE_P (TREE_TYPE (exp
))
4623 && targetm
.addr_space
.valid_pointer_mode
4624 (TYPE_MODE (TREE_TYPE (exp
)),
4625 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp
)))))
4627 tree saved_type
= TREE_TYPE (exp
);
4629 /* Peel off any intermediate conversions-to-pointer for valid
4631 while (TREE_CODE (exp
) == NOP_EXPR
4632 && POINTER_TYPE_P (TREE_TYPE (exp
))
4633 && targetm
.addr_space
.valid_pointer_mode
4634 (TYPE_MODE (TREE_TYPE (exp
)),
4635 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp
)))))
4636 exp
= TREE_OPERAND (exp
, 0);
4638 /* If what we're left with is the address of something, we can
4639 convert the address to the final type and output it that
4641 if (TREE_CODE (exp
) == ADDR_EXPR
)
4642 exp
= build1 (ADDR_EXPR
, saved_type
, TREE_OPERAND (exp
, 0));
4643 /* Likewise for constant ints. */
4644 else if (TREE_CODE (exp
) == INTEGER_CST
)
4645 exp
= build_int_cst_wide (saved_type
, TREE_INT_CST_LOW (exp
),
4646 TREE_INT_CST_HIGH (exp
));
4650 /* Eliminate any conversions since we'll be outputting the underlying
4652 while (CONVERT_EXPR_P (exp
)
4653 || TREE_CODE (exp
) == NON_LVALUE_EXPR
4654 || TREE_CODE (exp
) == VIEW_CONVERT_EXPR
)
4656 HOST_WIDE_INT type_size
= int_size_in_bytes (TREE_TYPE (exp
));
4657 HOST_WIDE_INT op_size
= int_size_in_bytes (TREE_TYPE (TREE_OPERAND (exp
, 0)));
4659 /* Make sure eliminating the conversion is really a no-op, except with
4660 VIEW_CONVERT_EXPRs to allow for wild Ada unchecked conversions and
4661 union types to allow for Ada unchecked unions. */
4662 if (type_size
> op_size
4663 && TREE_CODE (exp
) != VIEW_CONVERT_EXPR
4664 && TREE_CODE (TREE_TYPE (exp
)) != UNION_TYPE
)
4665 /* Keep the conversion. */
4668 exp
= TREE_OPERAND (exp
, 0);
4671 code
= TREE_CODE (TREE_TYPE (exp
));
4672 thissize
= int_size_in_bytes (TREE_TYPE (exp
));
4674 /* Allow a constructor with no elements for any data type.
4675 This means to fill the space with zeros. */
4676 if (TREE_CODE (exp
) == CONSTRUCTOR
4677 && vec_safe_is_empty (CONSTRUCTOR_ELTS (exp
)))
4679 assemble_zeros (size
);
4683 if (TREE_CODE (exp
) == FDESC_EXPR
)
4685 #ifdef ASM_OUTPUT_FDESC
4686 HOST_WIDE_INT part
= tree_low_cst (TREE_OPERAND (exp
, 1), 0);
4687 tree decl
= TREE_OPERAND (exp
, 0);
4688 ASM_OUTPUT_FDESC (asm_out_file
, decl
, part
);
4695 /* Now output the underlying data. If we've handling the padding, return.
4696 Otherwise, break and ensure SIZE is the size written. */
4703 case REFERENCE_TYPE
:
4705 case FIXED_POINT_TYPE
:
4706 if (! assemble_integer (expand_expr (exp
, NULL_RTX
, VOIDmode
,
4707 EXPAND_INITIALIZER
),
4708 MIN (size
, thissize
), align
, 0))
4709 error ("initializer for integer/fixed-point value is too complicated");
4713 if (TREE_CODE (exp
) != REAL_CST
)
4714 error ("initializer for floating value is not a floating constant");
4716 assemble_real (TREE_REAL_CST (exp
), TYPE_MODE (TREE_TYPE (exp
)), align
);
4720 output_constant (TREE_REALPART (exp
), thissize
/ 2, align
);
4721 output_constant (TREE_IMAGPART (exp
), thissize
/ 2,
4722 min_align (align
, BITS_PER_UNIT
* (thissize
/ 2)));
4727 switch (TREE_CODE (exp
))
4730 output_constructor (exp
, size
, align
, NULL
);
4734 = MIN ((unsigned HOST_WIDE_INT
)TREE_STRING_LENGTH (exp
), size
);
4735 assemble_string (TREE_STRING_POINTER (exp
), thissize
);
4739 enum machine_mode inner
= TYPE_MODE (TREE_TYPE (TREE_TYPE (exp
)));
4740 unsigned int nalign
= MIN (align
, GET_MODE_ALIGNMENT (inner
));
4741 int elt_size
= GET_MODE_SIZE (inner
);
4742 output_constant (VECTOR_CST_ELT (exp
, 0), elt_size
, align
);
4743 thissize
= elt_size
;
4744 for (unsigned int i
= 1; i
< VECTOR_CST_NELTS (exp
); i
++)
4746 output_constant (VECTOR_CST_ELT (exp
, i
), elt_size
, nalign
);
4747 thissize
+= elt_size
;
4758 gcc_assert (TREE_CODE (exp
) == CONSTRUCTOR
);
4759 output_constructor (exp
, size
, align
, NULL
);
4769 if (size
> thissize
)
4770 assemble_zeros (size
- thissize
);
4774 /* Subroutine of output_constructor, used for computing the size of
4775 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
4776 type with an unspecified upper bound. */
4778 static unsigned HOST_WIDE_INT
4779 array_size_for_constructor (tree val
)
4782 unsigned HOST_WIDE_INT cnt
;
4783 tree index
, value
, tmp
;
4786 /* This code used to attempt to handle string constants that are not
4787 arrays of single-bytes, but nothing else does, so there's no point in
4789 if (TREE_CODE (val
) == STRING_CST
)
4790 return TREE_STRING_LENGTH (val
);
4792 max_index
= NULL_TREE
;
4793 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (val
), cnt
, index
, value
)
4795 if (TREE_CODE (index
) == RANGE_EXPR
)
4796 index
= TREE_OPERAND (index
, 1);
4797 if (max_index
== NULL_TREE
|| tree_int_cst_lt (max_index
, index
))
4801 if (max_index
== NULL_TREE
)
4804 /* Compute the total number of array elements. */
4805 tmp
= TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val
)));
4806 i
= tree_to_double_int (max_index
) - tree_to_double_int (tmp
);
4807 i
+= double_int_one
;
4809 /* Multiply by the array element unit size to find number of bytes. */
4810 i
*= tree_to_double_int (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val
))));
4812 gcc_assert (i
.fits_uhwi ());
4816 /* Other datastructures + helpers for output_constructor. */
4818 /* output_constructor local state to support interaction with helpers. */
4822 /* Received arguments. */
4823 tree exp
; /* Constructor expression. */
4824 tree type
; /* Type of constructor expression. */
4825 unsigned HOST_WIDE_INT size
; /* # bytes to output - pad if necessary. */
4826 unsigned int align
; /* Known initial alignment. */
4827 tree min_index
; /* Lower bound if specified for an array. */
4829 /* Output processing state. */
4830 HOST_WIDE_INT total_bytes
; /* # bytes output so far / current position. */
4831 int byte
; /* Part of a bitfield byte yet to be output. */
4832 int last_relative_index
; /* Implicit or explicit index of the last
4833 array element output within a bitfield. */
4834 bool byte_buffer_in_use
; /* Whether BYTE is in use. */
4836 /* Current element. */
4837 tree field
; /* Current field decl in a record. */
4838 tree val
; /* Current element value. */
4839 tree index
; /* Current element index. */
4843 /* Helper for output_constructor. From the current LOCAL state, output a
4844 RANGE_EXPR element. */
4847 output_constructor_array_range (oc_local_state
*local
)
4849 unsigned HOST_WIDE_INT fieldsize
4850 = int_size_in_bytes (TREE_TYPE (local
->type
));
4852 HOST_WIDE_INT lo_index
4853 = tree_low_cst (TREE_OPERAND (local
->index
, 0), 0);
4854 HOST_WIDE_INT hi_index
4855 = tree_low_cst (TREE_OPERAND (local
->index
, 1), 0);
4856 HOST_WIDE_INT index
;
4859 = min_align (local
->align
, fieldsize
* BITS_PER_UNIT
);
4861 for (index
= lo_index
; index
<= hi_index
; index
++)
4863 /* Output the element's initial value. */
4864 if (local
->val
== NULL_TREE
)
4865 assemble_zeros (fieldsize
);
4867 output_constant (local
->val
, fieldsize
, align2
);
4869 /* Count its size. */
4870 local
->total_bytes
+= fieldsize
;
4874 /* Helper for output_constructor. From the current LOCAL state, output a
4875 field element that is not true bitfield or part of an outer one. */
4878 output_constructor_regular_field (oc_local_state
*local
)
4880 /* Field size and position. Since this structure is static, we know the
4881 positions are constant. */
4882 unsigned HOST_WIDE_INT fieldsize
;
4883 HOST_WIDE_INT fieldpos
;
4885 unsigned int align2
;
4887 if (local
->index
!= NULL_TREE
)
4889 /* Perform the index calculation in modulo arithmetic but
4890 sign-extend the result because Ada has negative DECL_FIELD_OFFSETs
4891 but we are using an unsigned sizetype. */
4892 unsigned prec
= TYPE_PRECISION (sizetype
);
4893 double_int idx
= tree_to_double_int (local
->index
)
4894 - tree_to_double_int (local
->min_index
);
4895 idx
= idx
.sext (prec
);
4896 fieldpos
= (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (local
->val
)), 1)
4899 else if (local
->field
!= NULL_TREE
)
4900 fieldpos
= int_byte_position (local
->field
);
4904 /* Output any buffered-up bit-fields preceding this element. */
4905 if (local
->byte_buffer_in_use
)
4907 assemble_integer (GEN_INT (local
->byte
), 1, BITS_PER_UNIT
, 1);
4908 local
->total_bytes
++;
4909 local
->byte_buffer_in_use
= false;
4912 /* Advance to offset of this element.
4913 Note no alignment needed in an array, since that is guaranteed
4914 if each element has the proper size. */
4915 if ((local
->field
!= NULL_TREE
|| local
->index
!= NULL_TREE
)
4916 && fieldpos
!= local
->total_bytes
)
4918 gcc_assert (fieldpos
>= local
->total_bytes
);
4919 assemble_zeros (fieldpos
- local
->total_bytes
);
4920 local
->total_bytes
= fieldpos
;
4923 /* Find the alignment of this element. */
4924 align2
= min_align (local
->align
, BITS_PER_UNIT
* fieldpos
);
4926 /* Determine size this element should occupy. */
4931 /* If this is an array with an unspecified upper bound,
4932 the initializer determines the size. */
4933 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4934 but we cannot do this until the deprecated support for
4935 initializing zero-length array members is removed. */
4936 if (TREE_CODE (TREE_TYPE (local
->field
)) == ARRAY_TYPE
4937 && TYPE_DOMAIN (TREE_TYPE (local
->field
))
4938 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (local
->field
))))
4940 fieldsize
= array_size_for_constructor (local
->val
);
4941 /* Given a non-empty initialization, this field had
4943 gcc_assert (!fieldsize
|| !DECL_CHAIN (local
->field
));
4946 fieldsize
= tree_low_cst (DECL_SIZE_UNIT (local
->field
), 1);
4949 fieldsize
= int_size_in_bytes (TREE_TYPE (local
->type
));
4951 /* Output the element's initial value. */
4952 if (local
->val
== NULL_TREE
)
4953 assemble_zeros (fieldsize
);
4955 output_constant (local
->val
, fieldsize
, align2
);
4957 /* Count its size. */
4958 local
->total_bytes
+= fieldsize
;
4961 /* Helper for output_constructor. From the LOCAL state, output an element
4962 that is a true bitfield or part of an outer one. BIT_OFFSET is the offset
4963 from the start of a possibly ongoing outer byte buffer. */
4966 output_constructor_bitfield (oc_local_state
*local
, unsigned int bit_offset
)
4968 /* Bit size of this element. */
4969 HOST_WIDE_INT ebitsize
4971 ? tree_low_cst (DECL_SIZE (local
->field
), 1)
4972 : tree_low_cst (TYPE_SIZE (TREE_TYPE (local
->type
)), 1));
4974 /* Relative index of this element if this is an array component. */
4975 HOST_WIDE_INT relative_index
4978 ? (tree_low_cst (local
->index
, 0)
4979 - tree_low_cst (local
->min_index
, 0))
4980 : local
->last_relative_index
+ 1)
4983 /* Bit position of this element from the start of the containing
4985 HOST_WIDE_INT constructor_relative_ebitpos
4987 ? int_bit_position (local
->field
)
4988 : ebitsize
* relative_index
);
4990 /* Bit position of this element from the start of a possibly ongoing
4991 outer byte buffer. */
4992 HOST_WIDE_INT byte_relative_ebitpos
4993 = bit_offset
+ constructor_relative_ebitpos
;
4995 /* From the start of a possibly ongoing outer byte buffer, offsets to
4996 the first bit of this element and to the first bit past the end of
4998 HOST_WIDE_INT next_offset
= byte_relative_ebitpos
;
4999 HOST_WIDE_INT end_offset
= byte_relative_ebitpos
+ ebitsize
;
5001 local
->last_relative_index
= relative_index
;
5003 if (local
->val
== NULL_TREE
)
5004 local
->val
= integer_zero_node
;
5006 while (TREE_CODE (local
->val
) == VIEW_CONVERT_EXPR
5007 || TREE_CODE (local
->val
) == NON_LVALUE_EXPR
)
5008 local
->val
= TREE_OPERAND (local
->val
, 0);
5010 if (TREE_CODE (local
->val
) != INTEGER_CST
5011 && TREE_CODE (local
->val
) != CONSTRUCTOR
)
5013 error ("invalid initial value for member %qE", DECL_NAME (local
->field
));
5017 /* If this field does not start in this (or next) byte, skip some bytes. */
5018 if (next_offset
/ BITS_PER_UNIT
!= local
->total_bytes
)
5020 /* Output remnant of any bit field in previous bytes. */
5021 if (local
->byte_buffer_in_use
)
5023 assemble_integer (GEN_INT (local
->byte
), 1, BITS_PER_UNIT
, 1);
5024 local
->total_bytes
++;
5025 local
->byte_buffer_in_use
= false;
5028 /* If still not at proper byte, advance to there. */
5029 if (next_offset
/ BITS_PER_UNIT
!= local
->total_bytes
)
5031 gcc_assert (next_offset
/ BITS_PER_UNIT
>= local
->total_bytes
);
5032 assemble_zeros (next_offset
/ BITS_PER_UNIT
- local
->total_bytes
);
5033 local
->total_bytes
= next_offset
/ BITS_PER_UNIT
;
5037 /* Set up the buffer if necessary. */
5038 if (!local
->byte_buffer_in_use
)
5042 local
->byte_buffer_in_use
= true;
5045 /* If this is nested constructor, recurse passing the bit offset and the
5046 pending data, then retrieve the new pending data afterwards. */
5047 if (TREE_CODE (local
->val
) == CONSTRUCTOR
)
5049 oc_outer_state temp_state
;
5050 temp_state
.bit_offset
= next_offset
% BITS_PER_UNIT
;
5051 temp_state
.byte
= local
->byte
;
5053 += output_constructor (local
->val
, 0, 0, &temp_state
);
5054 local
->byte
= temp_state
.byte
;
5058 /* Otherwise, we must split the element into pieces that fall within
5059 separate bytes, and combine each byte with previous or following
5061 while (next_offset
< end_offset
)
5065 HOST_WIDE_INT value
;
5066 HOST_WIDE_INT next_byte
= next_offset
/ BITS_PER_UNIT
;
5067 HOST_WIDE_INT next_bit
= next_offset
% BITS_PER_UNIT
;
5069 /* Advance from byte to byte within this element when necessary. */
5070 while (next_byte
!= local
->total_bytes
)
5072 assemble_integer (GEN_INT (local
->byte
), 1, BITS_PER_UNIT
, 1);
5073 local
->total_bytes
++;
5077 /* Number of bits we can process at once (all part of the same byte). */
5078 this_time
= MIN (end_offset
- next_offset
, BITS_PER_UNIT
- next_bit
);
5079 if (BYTES_BIG_ENDIAN
)
5081 /* On big-endian machine, take the most significant bits
5082 first (of the bits that are significant)
5083 and put them into bytes from the most significant end. */
5084 shift
= end_offset
- next_offset
- this_time
;
5086 /* Don't try to take a bunch of bits that cross
5087 the word boundary in the INTEGER_CST. We can
5088 only select bits from the LOW or HIGH part
5090 if (shift
< HOST_BITS_PER_WIDE_INT
5091 && shift
+ this_time
> HOST_BITS_PER_WIDE_INT
)
5093 this_time
= shift
+ this_time
- HOST_BITS_PER_WIDE_INT
;
5094 shift
= HOST_BITS_PER_WIDE_INT
;
5097 /* Now get the bits from the appropriate constant word. */
5098 if (shift
< HOST_BITS_PER_WIDE_INT
)
5099 value
= TREE_INT_CST_LOW (local
->val
);
5102 gcc_assert (shift
< HOST_BITS_PER_DOUBLE_INT
);
5103 value
= TREE_INT_CST_HIGH (local
->val
);
5104 shift
-= HOST_BITS_PER_WIDE_INT
;
5107 /* Get the result. This works only when:
5108 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
5109 local
->byte
|= (((value
>> shift
)
5110 & (((HOST_WIDE_INT
) 2 << (this_time
- 1)) - 1))
5111 << (BITS_PER_UNIT
- this_time
- next_bit
));
5115 /* On little-endian machines,
5116 take first the least significant bits of the value
5117 and pack them starting at the least significant
5118 bits of the bytes. */
5119 shift
= next_offset
- byte_relative_ebitpos
;
5121 /* Don't try to take a bunch of bits that cross
5122 the word boundary in the INTEGER_CST. We can
5123 only select bits from the LOW or HIGH part
5125 if (shift
< HOST_BITS_PER_WIDE_INT
5126 && shift
+ this_time
> HOST_BITS_PER_WIDE_INT
)
5127 this_time
= (HOST_BITS_PER_WIDE_INT
- shift
);
5129 /* Now get the bits from the appropriate constant word. */
5130 if (shift
< HOST_BITS_PER_WIDE_INT
)
5131 value
= TREE_INT_CST_LOW (local
->val
);
5134 gcc_assert (shift
< HOST_BITS_PER_DOUBLE_INT
);
5135 value
= TREE_INT_CST_HIGH (local
->val
);
5136 shift
-= HOST_BITS_PER_WIDE_INT
;
5139 /* Get the result. This works only when:
5140 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
5141 local
->byte
|= (((value
>> shift
)
5142 & (((HOST_WIDE_INT
) 2 << (this_time
- 1)) - 1))
5146 next_offset
+= this_time
;
5147 local
->byte_buffer_in_use
= true;
5151 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
5152 Generate at least SIZE bytes, padding if necessary. OUTER designates the
5153 caller output state of relevance in recursive invocations. */
5155 static unsigned HOST_WIDE_INT
5156 output_constructor (tree exp
, unsigned HOST_WIDE_INT size
,
5157 unsigned int align
, oc_outer_state
*outer
)
5159 unsigned HOST_WIDE_INT cnt
;
5160 constructor_elt
*ce
;
5162 oc_local_state local
;
5164 /* Setup our local state to communicate with helpers. */
5166 local
.type
= TREE_TYPE (exp
);
5168 local
.align
= align
;
5169 if (TREE_CODE (local
.type
) == ARRAY_TYPE
&& TYPE_DOMAIN (local
.type
))
5170 local
.min_index
= TYPE_MIN_VALUE (TYPE_DOMAIN (local
.type
));
5172 local
.min_index
= NULL_TREE
;
5174 local
.total_bytes
= 0;
5175 local
.byte_buffer_in_use
= outer
!= NULL
;
5176 local
.byte
= outer
? outer
->byte
: 0;
5177 local
.last_relative_index
= -1;
5179 gcc_assert (HOST_BITS_PER_WIDE_INT
>= BITS_PER_UNIT
);
5181 /* As CE goes through the elements of the constant, FIELD goes through the
5182 structure fields if the constant is a structure. If the constant is a
5183 union, we override this by getting the field from the TREE_LIST element.
5184 But the constant could also be an array. Then FIELD is zero.
5186 There is always a maximum of one element in the chain LINK for unions
5187 (even if the initializer in a source program incorrectly contains
5190 if (TREE_CODE (local
.type
) == RECORD_TYPE
)
5191 local
.field
= TYPE_FIELDS (local
.type
);
5193 local
.field
= NULL_TREE
;
5196 vec_safe_iterate (CONSTRUCTOR_ELTS (exp
), cnt
, &ce
);
5197 cnt
++, local
.field
= local
.field
? DECL_CHAIN (local
.field
) : 0)
5199 local
.val
= ce
->value
;
5200 local
.index
= NULL_TREE
;
5202 /* The element in a union constructor specifies the proper field
5204 if (RECORD_OR_UNION_TYPE_P (local
.type
) && ce
->index
!= NULL_TREE
)
5205 local
.field
= ce
->index
;
5207 else if (TREE_CODE (local
.type
) == ARRAY_TYPE
)
5208 local
.index
= ce
->index
;
5210 if (local
.field
&& flag_verbose_asm
)
5211 fprintf (asm_out_file
, "%s %s:\n",
5213 DECL_NAME (local
.field
)
5214 ? IDENTIFIER_POINTER (DECL_NAME (local
.field
))
5217 /* Eliminate the marker that makes a cast not be an lvalue. */
5218 if (local
.val
!= NULL_TREE
)
5219 STRIP_NOPS (local
.val
);
5221 /* Output the current element, using the appropriate helper ... */
5223 /* For an array slice not part of an outer bitfield. */
5225 && local
.index
!= NULL_TREE
5226 && TREE_CODE (local
.index
) == RANGE_EXPR
)
5227 output_constructor_array_range (&local
);
5229 /* For a field that is neither a true bitfield nor part of an outer one,
5230 known to be at least byte aligned and multiple-of-bytes long. */
5232 && (local
.field
== NULL_TREE
5233 || !CONSTRUCTOR_BITFIELD_P (local
.field
)))
5234 output_constructor_regular_field (&local
);
5236 /* For a true bitfield or part of an outer one. Only INTEGER_CSTs are
5237 supported for scalar fields, so we may need to convert first. */
5240 if (TREE_CODE (local
.val
) == REAL_CST
)
5242 = fold_unary (VIEW_CONVERT_EXPR
,
5243 build_nonstandard_integer_type
5244 (TYPE_PRECISION (TREE_TYPE (local
.val
)), 0),
5246 output_constructor_bitfield (&local
, outer
? outer
->bit_offset
: 0);
5250 /* If we are not at toplevel, save the pending data for our caller.
5251 Otherwise output the pending data and padding zeros as needed. */
5253 outer
->byte
= local
.byte
;
5256 if (local
.byte_buffer_in_use
)
5258 assemble_integer (GEN_INT (local
.byte
), 1, BITS_PER_UNIT
, 1);
5259 local
.total_bytes
++;
5262 if ((unsigned HOST_WIDE_INT
)local
.total_bytes
< local
.size
)
5264 assemble_zeros (local
.size
- local
.total_bytes
);
5265 local
.total_bytes
= local
.size
;
5269 return local
.total_bytes
;
5272 /* Mark DECL as weak. */
5275 mark_weak (tree decl
)
5277 DECL_WEAK (decl
) = 1;
5279 if (DECL_RTL_SET_P (decl
)
5280 && MEM_P (DECL_RTL (decl
))
5281 && XEXP (DECL_RTL (decl
), 0)
5282 && GET_CODE (XEXP (DECL_RTL (decl
), 0)) == SYMBOL_REF
)
5283 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl
), 0)) = 1;
5286 /* Merge weak status between NEWDECL and OLDDECL. */
5289 merge_weak (tree newdecl
, tree olddecl
)
5291 if (DECL_WEAK (newdecl
) == DECL_WEAK (olddecl
))
5293 if (DECL_WEAK (newdecl
) && TARGET_SUPPORTS_WEAK
)
5296 /* We put the NEWDECL on the weak_decls list at some point
5297 and OLDDECL as well. Keep just OLDDECL on the list. */
5298 for (pwd
= &weak_decls
; *pwd
; pwd
= &TREE_CHAIN (*pwd
))
5299 if (TREE_VALUE (*pwd
) == newdecl
)
5301 *pwd
= TREE_CHAIN (*pwd
);
5308 if (DECL_WEAK (newdecl
))
5312 /* NEWDECL is weak, but OLDDECL is not. */
5314 /* If we already output the OLDDECL, we're in trouble; we can't
5315 go back and make it weak. This should never happen in
5316 unit-at-a-time compilation. */
5317 gcc_assert (!TREE_ASM_WRITTEN (olddecl
));
5319 /* If we've already generated rtl referencing OLDDECL, we may
5320 have done so in a way that will not function properly with
5321 a weak symbol. Again in unit-at-a-time this should be
5323 gcc_assert (!TREE_USED (olddecl
)
5324 || !TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl
)));
5326 if (TARGET_SUPPORTS_WEAK
)
5328 /* We put the NEWDECL on the weak_decls list at some point.
5329 Replace it with the OLDDECL. */
5330 for (wd
= weak_decls
; wd
; wd
= TREE_CHAIN (wd
))
5331 if (TREE_VALUE (wd
) == newdecl
)
5333 TREE_VALUE (wd
) = olddecl
;
5336 /* We may not find the entry on the list. If NEWDECL is a
5337 weak alias, then we will have already called
5338 globalize_decl to remove the entry; in that case, we do
5339 not need to do anything. */
5342 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
5343 mark_weak (olddecl
);
5346 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
5347 weak. Just update NEWDECL to indicate that it's weak too. */
5348 mark_weak (newdecl
);
5351 /* Declare DECL to be a weak symbol. */
5354 declare_weak (tree decl
)
5356 gcc_assert (TREE_CODE (decl
) != FUNCTION_DECL
|| !TREE_ASM_WRITTEN (decl
));
5357 if (! TREE_PUBLIC (decl
))
5358 error ("weak declaration of %q+D must be public", decl
);
5359 else if (!TARGET_SUPPORTS_WEAK
)
5360 warning (0, "weak declaration of %q+D not supported", decl
);
5363 if (!lookup_attribute ("weak", DECL_ATTRIBUTES (decl
)))
5364 DECL_ATTRIBUTES (decl
)
5365 = tree_cons (get_identifier ("weak"), NULL
, DECL_ATTRIBUTES (decl
));
5369 weak_finish_1 (tree decl
)
5371 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
5372 const char *const name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
5375 if (! TREE_USED (decl
))
5378 #ifdef ASM_WEAKEN_DECL
5379 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, NULL
);
5381 #ifdef ASM_WEAKEN_LABEL
5382 ASM_WEAKEN_LABEL (asm_out_file
, name
);
5384 #ifdef ASM_OUTPUT_WEAK_ALIAS
5386 static bool warn_once
= 0;
5389 warning (0, "only weak aliases are supported in this configuration");
5399 /* Fiven an assembly name, find the decl it is associated with. */
5401 find_decl (tree target
)
5403 symtab_node node
= symtab_node_for_asm (target
);
5405 return node
->symbol
.decl
;
5409 /* This TREE_LIST contains weakref targets. */
5411 static GTY(()) tree weakref_targets
;
5413 /* Emit any pending weak declarations. */
5420 for (t
= weakref_targets
; t
; t
= TREE_CHAIN (t
))
5422 tree alias_decl
= TREE_PURPOSE (t
);
5423 tree target
= ultimate_transparent_alias_target (&TREE_VALUE (t
));
5425 if (! TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (alias_decl
)))
5426 /* Remove alias_decl from the weak list, but leave entries for
5427 the target alone. */
5429 #ifndef ASM_OUTPUT_WEAKREF
5430 else if (! TREE_SYMBOL_REFERENCED (target
))
5432 /* Use ASM_WEAKEN_LABEL only if ASM_WEAKEN_DECL is not
5433 defined, otherwise we and weak_finish_1 would use
5434 different macros. */
5435 # if defined ASM_WEAKEN_LABEL && ! defined ASM_WEAKEN_DECL
5436 ASM_WEAKEN_LABEL (asm_out_file
, IDENTIFIER_POINTER (target
));
5438 tree decl
= find_decl (target
);
5442 decl
= build_decl (DECL_SOURCE_LOCATION (alias_decl
),
5443 TREE_CODE (alias_decl
), target
,
5444 TREE_TYPE (alias_decl
));
5446 DECL_EXTERNAL (decl
) = 1;
5447 TREE_PUBLIC (decl
) = 1;
5448 DECL_ARTIFICIAL (decl
) = 1;
5449 TREE_NOTHROW (decl
) = TREE_NOTHROW (alias_decl
);
5450 TREE_USED (decl
) = 1;
5453 weak_finish_1 (decl
);
5462 /* Remove the alias and the target from the pending weak list
5463 so that we do not emit any .weak directives for the former,
5464 nor multiple .weak directives for the latter. */
5465 for (p
= &weak_decls
; (t2
= *p
) ; )
5467 if (TREE_VALUE (t2
) == alias_decl
5468 || target
== DECL_ASSEMBLER_NAME (TREE_VALUE (t2
)))
5469 *p
= TREE_CHAIN (t2
);
5471 p
= &TREE_CHAIN (t2
);
5474 /* Remove other weakrefs to the same target, to speed things up. */
5475 for (p
= &TREE_CHAIN (t
); (t2
= *p
) ; )
5477 if (target
== ultimate_transparent_alias_target (&TREE_VALUE (t2
)))
5478 *p
= TREE_CHAIN (t2
);
5480 p
= &TREE_CHAIN (t2
);
5485 for (t
= weak_decls
; t
; t
= TREE_CHAIN (t
))
5487 tree decl
= TREE_VALUE (t
);
5489 weak_finish_1 (decl
);
5493 /* Emit the assembly bits to indicate that DECL is globally visible. */
5496 globalize_decl (tree decl
)
5499 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
5500 if (DECL_WEAK (decl
))
5502 const char *name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
5505 #ifdef ASM_WEAKEN_DECL
5506 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, 0);
5508 ASM_WEAKEN_LABEL (asm_out_file
, name
);
5511 /* Remove this function from the pending weak list so that
5512 we do not emit multiple .weak directives for it. */
5513 for (p
= &weak_decls
; (t
= *p
) ; )
5515 if (DECL_ASSEMBLER_NAME (decl
) == DECL_ASSEMBLER_NAME (TREE_VALUE (t
)))
5516 *p
= TREE_CHAIN (t
);
5518 p
= &TREE_CHAIN (t
);
5521 /* Remove weakrefs to the same target from the pending weakref
5522 list, for the same reason. */
5523 for (p
= &weakref_targets
; (t
= *p
) ; )
5525 if (DECL_ASSEMBLER_NAME (decl
)
5526 == ultimate_transparent_alias_target (&TREE_VALUE (t
)))
5527 *p
= TREE_CHAIN (t
);
5529 p
= &TREE_CHAIN (t
);
5536 targetm
.asm_out
.globalize_decl_name (asm_out_file
, decl
);
5539 vec
<alias_pair
, va_gc
> *alias_pairs
;
5541 /* Output the assembler code for a define (equate) using ASM_OUTPUT_DEF
5542 or ASM_OUTPUT_DEF_FROM_DECLS. The function defines the symbol whose
5543 tree node is DECL to have the value of the tree node TARGET. */
5546 do_assemble_alias (tree decl
, tree target
)
5548 /* Emulated TLS had better not get this var. */
5549 gcc_assert(!(!targetm
.have_tls
5550 && TREE_CODE (decl
) == VAR_DECL
5551 && DECL_THREAD_LOCAL_P (decl
)));
5553 if (TREE_ASM_WRITTEN (decl
))
5556 /* We must force creation of DECL_RTL for debug info generation, even though
5557 we don't use it here. */
5558 make_decl_rtl (decl
);
5560 TREE_ASM_WRITTEN (decl
) = 1;
5561 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl
)) = 1;
5563 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl
)))
5565 ultimate_transparent_alias_target (&target
);
5567 if (!TREE_SYMBOL_REFERENCED (target
))
5568 weakref_targets
= tree_cons (decl
, target
, weakref_targets
);
5570 #ifdef ASM_OUTPUT_WEAKREF
5571 ASM_OUTPUT_WEAKREF (asm_out_file
, decl
,
5572 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)),
5573 IDENTIFIER_POINTER (target
));
5575 if (!TARGET_SUPPORTS_WEAK
)
5577 error_at (DECL_SOURCE_LOCATION (decl
),
5578 "weakref is not supported in this configuration");
5585 #ifdef ASM_OUTPUT_DEF
5586 /* Make name accessible from other files, if appropriate. */
5588 if (TREE_PUBLIC (decl
))
5590 globalize_decl (decl
);
5591 maybe_assemble_visibility (decl
);
5593 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl
)))
5595 #if defined (ASM_OUTPUT_TYPE_DIRECTIVE)
5596 if (targetm
.has_ifunc_p ())
5597 ASM_OUTPUT_TYPE_DIRECTIVE
5598 (asm_out_file
, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)),
5602 error_at (DECL_SOURCE_LOCATION (decl
),
5603 "ifunc is not supported on this target");
5606 # ifdef ASM_OUTPUT_DEF_FROM_DECLS
5607 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file
, decl
, target
);
5609 ASM_OUTPUT_DEF (asm_out_file
,
5610 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)),
5611 IDENTIFIER_POINTER (target
));
5613 #elif defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
5618 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
5619 # ifdef ASM_WEAKEN_DECL
5620 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, IDENTIFIER_POINTER (target
));
5622 ASM_OUTPUT_WEAK_ALIAS (asm_out_file
, name
, IDENTIFIER_POINTER (target
));
5624 /* Remove this function from the pending weak list so that
5625 we do not emit multiple .weak directives for it. */
5626 for (p
= &weak_decls
; (t
= *p
) ; )
5627 if (DECL_ASSEMBLER_NAME (decl
) == DECL_ASSEMBLER_NAME (TREE_VALUE (t
)))
5628 *p
= TREE_CHAIN (t
);
5630 p
= &TREE_CHAIN (t
);
5632 /* Remove weakrefs to the same target from the pending weakref
5633 list, for the same reason. */
5634 for (p
= &weakref_targets
; (t
= *p
) ; )
5636 if (DECL_ASSEMBLER_NAME (decl
)
5637 == ultimate_transparent_alias_target (&TREE_VALUE (t
)))
5638 *p
= TREE_CHAIN (t
);
5640 p
= &TREE_CHAIN (t
);
5646 /* Emit an assembler directive to make the symbol for DECL an alias to
5647 the symbol for TARGET. */
5650 assemble_alias (tree decl
, tree target
)
5654 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl
)))
5656 tree alias
= DECL_ASSEMBLER_NAME (decl
);
5658 ultimate_transparent_alias_target (&target
);
5660 if (alias
== target
)
5661 error ("weakref %q+D ultimately targets itself", decl
);
5662 if (TREE_PUBLIC (decl
))
5663 error ("weakref %q+D must have static linkage", decl
);
5667 #if !defined (ASM_OUTPUT_DEF)
5668 # if !defined(ASM_OUTPUT_WEAK_ALIAS) && !defined (ASM_WEAKEN_DECL)
5669 error_at (DECL_SOURCE_LOCATION (decl
),
5670 "alias definitions not supported in this configuration");
5673 if (!DECL_WEAK (decl
))
5675 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl
)))
5676 error_at (DECL_SOURCE_LOCATION (decl
),
5677 "ifunc is not supported in this configuration");
5679 error_at (DECL_SOURCE_LOCATION (decl
),
5680 "only weak aliases are supported in this configuration");
5686 TREE_USED (decl
) = 1;
5688 /* Allow aliases to aliases. */
5689 if (TREE_CODE (decl
) == FUNCTION_DECL
)
5690 cgraph_get_create_node (decl
)->symbol
.alias
= true;
5692 varpool_node_for_decl (decl
)->symbol
.alias
= true;
5694 /* If the target has already been emitted, we don't have to queue the
5695 alias. This saves a tad of memory. */
5696 if (cgraph_global_info_ready
)
5697 target_decl
= find_decl (target
);
5700 if ((target_decl
&& TREE_ASM_WRITTEN (target_decl
))
5701 || cgraph_state
>= CGRAPH_STATE_EXPANSION
)
5702 do_assemble_alias (decl
, target
);
5705 alias_pair p
= {decl
, target
};
5706 vec_safe_push (alias_pairs
, p
);
5710 /* Record and output a table of translations from original function
5711 to its transaction aware clone. Note that tm_pure functions are
5712 considered to be their own clone. */
5714 static GTY((if_marked ("tree_map_marked_p"), param_is (struct tree_map
)))
5715 htab_t tm_clone_hash
;
5718 record_tm_clone_pair (tree o
, tree n
)
5720 struct tree_map
**slot
, *h
;
5722 if (tm_clone_hash
== NULL
)
5723 tm_clone_hash
= htab_create_ggc (32, tree_map_hash
, tree_map_eq
, 0);
5725 h
= ggc_alloc_tree_map ();
5726 h
->hash
= htab_hash_pointer (o
);
5730 slot
= (struct tree_map
**)
5731 htab_find_slot_with_hash (tm_clone_hash
, h
, h
->hash
, INSERT
);
5736 get_tm_clone_pair (tree o
)
5740 struct tree_map
*h
, in
;
5743 in
.hash
= htab_hash_pointer (o
);
5744 h
= (struct tree_map
*) htab_find_with_hash (tm_clone_hash
,
5752 typedef struct tm_alias_pair
5760 /* Helper function for finish_tm_clone_pairs. Dump a hash table entry
5761 into a VEC in INFO. */
5764 dump_tm_clone_to_vec (void **slot
, void *info
)
5766 struct tree_map
*map
= (struct tree_map
*) *slot
;
5767 vec
<tm_alias_pair
> *tm_alias_pairs
= (vec
<tm_alias_pair
> *) info
;
5768 tm_alias_pair p
= {DECL_UID (map
->base
.from
), map
->base
.from
, map
->to
};
5769 tm_alias_pairs
->safe_push (p
);
5773 /* Dump the actual pairs to the .tm_clone_table section. */
5776 dump_tm_clone_pairs (vec
<tm_alias_pair
> tm_alias_pairs
)
5780 bool switched
= false;
5782 FOR_EACH_VEC_ELT (tm_alias_pairs
, i
, p
)
5786 struct cgraph_node
*src_n
= cgraph_get_node (src
);
5787 struct cgraph_node
*dst_n
= cgraph_get_node (dst
);
5789 /* The function ipa_tm_create_version() marks the clone as needed if
5790 the original function was needed. But we also mark the clone as
5791 needed if we ever called the clone indirectly through
5792 TM_GETTMCLONE. If neither of these are true, we didn't generate
5793 a clone, and we didn't call it indirectly... no sense keeping it
5794 in the clone table. */
5795 if (!dst_n
|| !dst_n
->symbol
.definition
)
5798 /* This covers the case where we have optimized the original
5799 function away, and only access the transactional clone. */
5800 if (!src_n
|| !src_n
->symbol
.definition
)
5805 switch_to_section (targetm
.asm_out
.tm_clone_table_section ());
5806 assemble_align (POINTER_SIZE
);
5810 assemble_integer (XEXP (DECL_RTL (src
), 0),
5811 POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
5812 assemble_integer (XEXP (DECL_RTL (dst
), 0),
5813 POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
5817 /* Provide a default for the tm_clone_table section. */
5820 default_clone_table_section (void)
5822 return get_named_section (NULL
, ".tm_clone_table", 3);
5825 /* Helper comparison function for qsorting by the DECL_UID stored in
5826 alias_pair->emitted_diags. */
5829 tm_alias_pair_cmp (const void *x
, const void *y
)
5831 const tm_alias_pair
*p1
= (const tm_alias_pair
*) x
;
5832 const tm_alias_pair
*p2
= (const tm_alias_pair
*) y
;
5833 if (p1
->uid
< p2
->uid
)
5835 if (p1
->uid
> p2
->uid
)
5841 finish_tm_clone_pairs (void)
5843 vec
<tm_alias_pair
> tm_alias_pairs
= vNULL
;
5845 if (tm_clone_hash
== NULL
)
5848 /* We need a determenistic order for the .tm_clone_table, otherwise
5849 we will get bootstrap comparison failures, so dump the hash table
5850 to a vector, sort it, and dump the vector. */
5852 /* Dump the hashtable to a vector. */
5853 htab_traverse_noresize (tm_clone_hash
, dump_tm_clone_to_vec
,
5854 (void *) &tm_alias_pairs
);
5856 tm_alias_pairs
.qsort (tm_alias_pair_cmp
);
5859 dump_tm_clone_pairs (tm_alias_pairs
);
5861 htab_delete (tm_clone_hash
);
5862 tm_clone_hash
= NULL
;
5863 tm_alias_pairs
.release ();
5867 /* Emit an assembler directive to set symbol for DECL visibility to
5868 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
5871 default_assemble_visibility (tree decl ATTRIBUTE_UNUSED
,
5872 int vis ATTRIBUTE_UNUSED
)
5874 #ifdef HAVE_GAS_HIDDEN
5875 static const char * const visibility_types
[] = {
5876 NULL
, "protected", "hidden", "internal"
5879 const char *name
, *type
;
5881 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
5882 type
= visibility_types
[vis
];
5884 fprintf (asm_out_file
, "\t.%s\t", type
);
5885 assemble_name (asm_out_file
, name
);
5886 fprintf (asm_out_file
, "\n");
5888 if (!DECL_ARTIFICIAL (decl
))
5889 warning (OPT_Wattributes
, "visibility attribute not supported "
5890 "in this configuration; ignored");
5894 /* A helper function to call assemble_visibility when needed for a decl. */
5897 maybe_assemble_visibility (tree decl
)
5899 enum symbol_visibility vis
= DECL_VISIBILITY (decl
);
5901 if (vis
!= VISIBILITY_DEFAULT
)
5903 targetm
.asm_out
.assemble_visibility (decl
, vis
);
5910 /* Returns 1 if the target configuration supports defining public symbols
5911 so that one of them will be chosen at link time instead of generating a
5912 multiply-defined symbol error, whether through the use of weak symbols or
5913 a target-specific mechanism for having duplicates discarded. */
5916 supports_one_only (void)
5918 if (SUPPORTS_ONE_ONLY
)
5920 return TARGET_SUPPORTS_WEAK
;
5923 /* Set up DECL as a public symbol that can be defined in multiple
5924 translation units without generating a linker error. */
5927 make_decl_one_only (tree decl
, tree comdat_group
)
5929 gcc_assert (TREE_CODE (decl
) == VAR_DECL
5930 || TREE_CODE (decl
) == FUNCTION_DECL
);
5932 TREE_PUBLIC (decl
) = 1;
5934 if (SUPPORTS_ONE_ONLY
)
5936 #ifdef MAKE_DECL_ONE_ONLY
5937 MAKE_DECL_ONE_ONLY (decl
);
5939 DECL_COMDAT_GROUP (decl
) = comdat_group
;
5941 else if (TREE_CODE (decl
) == VAR_DECL
5942 && (DECL_INITIAL (decl
) == 0 || DECL_INITIAL (decl
) == error_mark_node
))
5943 DECL_COMMON (decl
) = 1;
5946 gcc_assert (TARGET_SUPPORTS_WEAK
);
5947 DECL_WEAK (decl
) = 1;
5952 init_varasm_once (void)
5954 section_htab
= htab_create_ggc (31, section_entry_hash
,
5955 section_entry_eq
, NULL
);
5956 object_block_htab
= htab_create_ggc (31, object_block_entry_hash
,
5957 object_block_entry_eq
, NULL
);
5958 const_desc_htab
= htab_create_ggc (1009, const_desc_hash
,
5959 const_desc_eq
, NULL
);
5961 const_alias_set
= new_alias_set ();
5962 shared_constant_pool
= create_constant_pool ();
5964 #ifdef TEXT_SECTION_ASM_OP
5965 text_section
= get_unnamed_section (SECTION_CODE
, output_section_asm_op
,
5966 TEXT_SECTION_ASM_OP
);
5969 #ifdef DATA_SECTION_ASM_OP
5970 data_section
= get_unnamed_section (SECTION_WRITE
, output_section_asm_op
,
5971 DATA_SECTION_ASM_OP
);
5974 #ifdef SDATA_SECTION_ASM_OP
5975 sdata_section
= get_unnamed_section (SECTION_WRITE
, output_section_asm_op
,
5976 SDATA_SECTION_ASM_OP
);
5979 #ifdef READONLY_DATA_SECTION_ASM_OP
5980 readonly_data_section
= get_unnamed_section (0, output_section_asm_op
,
5981 READONLY_DATA_SECTION_ASM_OP
);
5984 #ifdef CTORS_SECTION_ASM_OP
5985 ctors_section
= get_unnamed_section (0, output_section_asm_op
,
5986 CTORS_SECTION_ASM_OP
);
5989 #ifdef DTORS_SECTION_ASM_OP
5990 dtors_section
= get_unnamed_section (0, output_section_asm_op
,
5991 DTORS_SECTION_ASM_OP
);
5994 #ifdef BSS_SECTION_ASM_OP
5995 bss_section
= get_unnamed_section (SECTION_WRITE
| SECTION_BSS
,
5996 output_section_asm_op
,
5997 BSS_SECTION_ASM_OP
);
6000 #ifdef SBSS_SECTION_ASM_OP
6001 sbss_section
= get_unnamed_section (SECTION_WRITE
| SECTION_BSS
,
6002 output_section_asm_op
,
6003 SBSS_SECTION_ASM_OP
);
6006 tls_comm_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
6007 | SECTION_COMMON
, emit_tls_common
);
6008 lcomm_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
6009 | SECTION_COMMON
, emit_local
);
6010 comm_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
6011 | SECTION_COMMON
, emit_common
);
6013 #if defined ASM_OUTPUT_ALIGNED_BSS
6014 bss_noswitch_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
,
6018 targetm
.asm_out
.init_sections ();
6020 if (readonly_data_section
== NULL
)
6021 readonly_data_section
= text_section
;
6023 #ifdef ASM_OUTPUT_EXTERNAL
6024 pending_assemble_externals_set
= pointer_set_create ();
6029 decl_default_tls_model (const_tree decl
)
6031 enum tls_model kind
;
6034 is_local
= targetm
.binds_local_p (decl
);
6038 kind
= TLS_MODEL_LOCAL_EXEC
;
6040 kind
= TLS_MODEL_INITIAL_EXEC
;
6043 /* Local dynamic is inefficient when we're not combining the
6044 parts of the address. */
6045 else if (optimize
&& is_local
)
6046 kind
= TLS_MODEL_LOCAL_DYNAMIC
;
6048 kind
= TLS_MODEL_GLOBAL_DYNAMIC
;
6049 if (kind
< flag_tls_default
)
6050 kind
= flag_tls_default
;
6055 /* Select a set of attributes for section NAME based on the properties
6056 of DECL and whether or not RELOC indicates that DECL's initializer
6057 might contain runtime relocations.
6059 We make the section read-only and executable for a function decl,
6060 read-only for a const data decl, and writable for a non-const data decl. */
6063 default_section_type_flags (tree decl
, const char *name
, int reloc
)
6067 if (decl
&& TREE_CODE (decl
) == FUNCTION_DECL
)
6068 flags
= SECTION_CODE
;
6071 enum section_category category
6072 = categorize_decl_for_section (decl
, reloc
);
6073 if (decl_readonly_section_1 (category
))
6075 else if (category
== SECCAT_DATA_REL_RO
6076 || category
== SECCAT_DATA_REL_RO_LOCAL
)
6077 flags
= SECTION_WRITE
| SECTION_RELRO
;
6079 flags
= SECTION_WRITE
;
6083 flags
= SECTION_WRITE
;
6084 if (strcmp (name
, ".data.rel.ro") == 0
6085 || strcmp (name
, ".data.rel.ro.local") == 0)
6086 flags
|= SECTION_RELRO
;
6089 if (decl
&& DECL_P (decl
) && DECL_ONE_ONLY (decl
))
6090 flags
|= SECTION_LINKONCE
;
6092 if (strcmp (name
, ".vtable_map_vars") == 0)
6093 flags
|= SECTION_LINKONCE
;
6095 if (decl
&& TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL_P (decl
))
6096 flags
|= SECTION_TLS
| SECTION_WRITE
;
6098 if (strcmp (name
, ".bss") == 0
6099 || strncmp (name
, ".bss.", 5) == 0
6100 || strncmp (name
, ".gnu.linkonce.b.", 16) == 0
6101 || strcmp (name
, ".sbss") == 0
6102 || strncmp (name
, ".sbss.", 6) == 0
6103 || strncmp (name
, ".gnu.linkonce.sb.", 17) == 0)
6104 flags
|= SECTION_BSS
;
6106 if (strcmp (name
, ".tdata") == 0
6107 || strncmp (name
, ".tdata.", 7) == 0
6108 || strncmp (name
, ".gnu.linkonce.td.", 17) == 0)
6109 flags
|= SECTION_TLS
;
6111 if (strcmp (name
, ".tbss") == 0
6112 || strncmp (name
, ".tbss.", 6) == 0
6113 || strncmp (name
, ".gnu.linkonce.tb.", 17) == 0)
6114 flags
|= SECTION_TLS
| SECTION_BSS
;
6116 /* These three sections have special ELF types. They are neither
6117 SHT_PROGBITS nor SHT_NOBITS, so when changing sections we don't
6118 want to print a section type (@progbits or @nobits). If someone
6119 is silly enough to emit code or TLS variables to one of these
6120 sections, then don't handle them specially. */
6121 if (!(flags
& (SECTION_CODE
| SECTION_BSS
| SECTION_TLS
))
6122 && (strcmp (name
, ".init_array") == 0
6123 || strcmp (name
, ".fini_array") == 0
6124 || strcmp (name
, ".preinit_array") == 0))
6125 flags
|= SECTION_NOTYPE
;
6130 /* Return true if the target supports some form of global BSS,
6131 either through bss_noswitch_section, or by selecting a BSS
6132 section in TARGET_ASM_SELECT_SECTION. */
6135 have_global_bss_p (void)
6137 return bss_noswitch_section
|| targetm
.have_switchable_bss_sections
;
6140 /* Output assembly to switch to section NAME with attribute FLAGS.
6141 Four variants for common object file formats. */
6144 default_no_named_section (const char *name ATTRIBUTE_UNUSED
,
6145 unsigned int flags ATTRIBUTE_UNUSED
,
6146 tree decl ATTRIBUTE_UNUSED
)
6148 /* Some object formats don't support named sections at all. The
6149 front-end should already have flagged this as an error. */
6153 #ifndef TLS_SECTION_ASM_FLAG
6154 #define TLS_SECTION_ASM_FLAG 'T'
6158 default_elf_asm_named_section (const char *name
, unsigned int flags
,
6159 tree decl ATTRIBUTE_UNUSED
)
6161 char flagchars
[10], *f
= flagchars
;
6163 /* If we have already declared this section, we can use an
6164 abbreviated form to switch back to it -- unless this section is
6165 part of a COMDAT groups, in which case GAS requires the full
6166 declaration every time. */
6167 if (!(HAVE_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
6168 && (flags
& SECTION_DECLARED
))
6170 fprintf (asm_out_file
, "\t.section\t%s\n", name
);
6174 if (!(flags
& SECTION_DEBUG
))
6176 if (flags
& SECTION_EXCLUDE
)
6178 if (flags
& SECTION_WRITE
)
6180 if (flags
& SECTION_CODE
)
6182 if (flags
& SECTION_SMALL
)
6184 if (flags
& SECTION_MERGE
)
6186 if (flags
& SECTION_STRINGS
)
6188 if (flags
& SECTION_TLS
)
6189 *f
++ = TLS_SECTION_ASM_FLAG
;
6190 if (HAVE_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
6194 fprintf (asm_out_file
, "\t.section\t%s,\"%s\"", name
, flagchars
);
6196 if (!(flags
& SECTION_NOTYPE
))
6201 if (flags
& SECTION_BSS
)
6207 /* On platforms that use "@" as the assembly comment character,
6209 if (strcmp (ASM_COMMENT_START
, "@") == 0)
6211 fprintf (asm_out_file
, format
, type
);
6213 if (flags
& SECTION_ENTSIZE
)
6214 fprintf (asm_out_file
, ",%d", flags
& SECTION_ENTSIZE
);
6215 if (HAVE_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
6217 if (TREE_CODE (decl
) == IDENTIFIER_NODE
)
6218 fprintf (asm_out_file
, ",%s,comdat", IDENTIFIER_POINTER (decl
));
6220 fprintf (asm_out_file
, ",%s,comdat",
6221 IDENTIFIER_POINTER (DECL_COMDAT_GROUP (decl
)));
6225 putc ('\n', asm_out_file
);
6229 default_coff_asm_named_section (const char *name
, unsigned int flags
,
6230 tree decl ATTRIBUTE_UNUSED
)
6232 char flagchars
[8], *f
= flagchars
;
6234 if (flags
& SECTION_WRITE
)
6236 if (flags
& SECTION_CODE
)
6240 fprintf (asm_out_file
, "\t.section\t%s,\"%s\"\n", name
, flagchars
);
6244 default_pe_asm_named_section (const char *name
, unsigned int flags
,
6247 default_coff_asm_named_section (name
, flags
, decl
);
6249 if (flags
& SECTION_LINKONCE
)
6251 /* Functions may have been compiled at various levels of
6252 optimization so we can't use `same_size' here.
6253 Instead, have the linker pick one. */
6254 fprintf (asm_out_file
, "\t.linkonce %s\n",
6255 (flags
& SECTION_CODE
? "discard" : "same_size"));
6259 /* The lame default section selector. */
6262 default_select_section (tree decl
, int reloc
,
6263 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
)
6267 if (decl_readonly_section (decl
, reloc
))
6268 return readonly_data_section
;
6270 else if (TREE_CODE (decl
) == CONSTRUCTOR
)
6272 if (! ((flag_pic
&& reloc
)
6273 || !TREE_READONLY (decl
)
6274 || TREE_SIDE_EFFECTS (decl
)
6275 || !TREE_CONSTANT (decl
)))
6276 return readonly_data_section
;
6278 else if (TREE_CODE (decl
) == STRING_CST
)
6279 return readonly_data_section
;
6280 else if (! (flag_pic
&& reloc
))
6281 return readonly_data_section
;
6283 return data_section
;
6286 enum section_category
6287 categorize_decl_for_section (const_tree decl
, int reloc
)
6289 enum section_category ret
;
6291 if (TREE_CODE (decl
) == FUNCTION_DECL
)
6293 else if (TREE_CODE (decl
) == STRING_CST
)
6296 || ((flag_sanitize
& SANITIZE_ADDRESS
)
6297 && asan_protect_global (CONST_CAST_TREE (decl
))))
6298 /* or !flag_merge_constants */
6299 return SECCAT_RODATA
;
6301 return SECCAT_RODATA_MERGE_STR
;
6303 else if (TREE_CODE (decl
) == VAR_DECL
)
6305 if (bss_initializer_p (decl
))
6307 else if (! TREE_READONLY (decl
)
6308 || TREE_SIDE_EFFECTS (decl
)
6309 || ! TREE_CONSTANT (DECL_INITIAL (decl
)))
6311 /* Here the reloc_rw_mask is not testing whether the section should
6312 be read-only or not, but whether the dynamic link will have to
6313 do something. If so, we wish to segregate the data in order to
6314 minimize cache misses inside the dynamic linker. */
6315 if (reloc
& targetm
.asm_out
.reloc_rw_mask ())
6316 ret
= reloc
== 1 ? SECCAT_DATA_REL_LOCAL
: SECCAT_DATA_REL
;
6320 else if (reloc
& targetm
.asm_out
.reloc_rw_mask ())
6321 ret
= reloc
== 1 ? SECCAT_DATA_REL_RO_LOCAL
: SECCAT_DATA_REL_RO
;
6322 else if (reloc
|| flag_merge_constants
< 2 || flag_mudflap
6323 || ((flag_sanitize
& SANITIZE_ADDRESS
)
6324 && asan_protect_global (CONST_CAST_TREE (decl
))))
6325 /* C and C++ don't allow different variables to share the same
6326 location. -fmerge-all-constants allows even that (at the
6327 expense of not conforming). */
6328 ret
= SECCAT_RODATA
;
6329 else if (TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
)
6330 ret
= SECCAT_RODATA_MERGE_STR_INIT
;
6332 ret
= SECCAT_RODATA_MERGE_CONST
;
6334 else if (TREE_CODE (decl
) == CONSTRUCTOR
)
6336 if ((reloc
& targetm
.asm_out
.reloc_rw_mask ())
6337 || TREE_SIDE_EFFECTS (decl
)
6338 || ! TREE_CONSTANT (decl
))
6341 ret
= SECCAT_RODATA
;
6344 ret
= SECCAT_RODATA
;
6346 /* There are no read-only thread-local sections. */
6347 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL_P (decl
))
6349 /* Note that this would be *just* SECCAT_BSS, except that there's
6350 no concept of a read-only thread-local-data section. */
6351 if (ret
== SECCAT_BSS
6352 || (flag_zero_initialized_in_bss
6353 && initializer_zerop (DECL_INITIAL (decl
))))
6359 /* If the target uses small data sections, select it. */
6360 else if (targetm
.in_small_data_p (decl
))
6362 if (ret
== SECCAT_BSS
)
6364 else if (targetm
.have_srodata_section
&& ret
== SECCAT_RODATA
)
6365 ret
= SECCAT_SRODATA
;
6374 decl_readonly_section_1 (enum section_category category
)
6379 case SECCAT_RODATA_MERGE_STR
:
6380 case SECCAT_RODATA_MERGE_STR_INIT
:
6381 case SECCAT_RODATA_MERGE_CONST
:
6382 case SECCAT_SRODATA
:
6390 decl_readonly_section (const_tree decl
, int reloc
)
6392 return decl_readonly_section_1 (categorize_decl_for_section (decl
, reloc
));
6395 /* Select a section based on the above categorization. */
6398 default_elf_select_section (tree decl
, int reloc
,
6399 unsigned HOST_WIDE_INT align
)
6402 switch (categorize_decl_for_section (decl
, reloc
))
6405 /* We're not supposed to be called on FUNCTION_DECLs. */
6408 return readonly_data_section
;
6409 case SECCAT_RODATA_MERGE_STR
:
6410 return mergeable_string_section (decl
, align
, 0);
6411 case SECCAT_RODATA_MERGE_STR_INIT
:
6412 return mergeable_string_section (DECL_INITIAL (decl
), align
, 0);
6413 case SECCAT_RODATA_MERGE_CONST
:
6414 return mergeable_constant_section (DECL_MODE (decl
), align
, 0);
6415 case SECCAT_SRODATA
:
6419 return data_section
;
6420 case SECCAT_DATA_REL
:
6421 sname
= ".data.rel";
6423 case SECCAT_DATA_REL_LOCAL
:
6424 sname
= ".data.rel.local";
6426 case SECCAT_DATA_REL_RO
:
6427 sname
= ".data.rel.ro";
6429 case SECCAT_DATA_REL_RO_LOCAL
:
6430 sname
= ".data.rel.ro.local";
6453 return get_named_section (decl
, sname
, reloc
);
6456 /* Construct a unique section name based on the decl name and the
6457 categorization performed above. */
6460 default_unique_section (tree decl
, int reloc
)
6462 /* We only need to use .gnu.linkonce if we don't have COMDAT groups. */
6463 bool one_only
= DECL_ONE_ONLY (decl
) && !HAVE_COMDAT_GROUP
;
6464 const char *prefix
, *name
, *linkonce
;
6467 switch (categorize_decl_for_section (decl
, reloc
))
6470 prefix
= one_only
? ".t" : ".text";
6473 case SECCAT_RODATA_MERGE_STR
:
6474 case SECCAT_RODATA_MERGE_STR_INIT
:
6475 case SECCAT_RODATA_MERGE_CONST
:
6476 prefix
= one_only
? ".r" : ".rodata";
6478 case SECCAT_SRODATA
:
6479 prefix
= one_only
? ".s2" : ".sdata2";
6482 prefix
= one_only
? ".d" : ".data";
6484 case SECCAT_DATA_REL
:
6485 prefix
= one_only
? ".d.rel" : ".data.rel";
6487 case SECCAT_DATA_REL_LOCAL
:
6488 prefix
= one_only
? ".d.rel.local" : ".data.rel.local";
6490 case SECCAT_DATA_REL_RO
:
6491 prefix
= one_only
? ".d.rel.ro" : ".data.rel.ro";
6493 case SECCAT_DATA_REL_RO_LOCAL
:
6494 prefix
= one_only
? ".d.rel.ro.local" : ".data.rel.ro.local";
6497 prefix
= one_only
? ".s" : ".sdata";
6500 prefix
= one_only
? ".b" : ".bss";
6503 prefix
= one_only
? ".sb" : ".sbss";
6506 prefix
= one_only
? ".td" : ".tdata";
6509 prefix
= one_only
? ".tb" : ".tbss";
6515 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
6516 name
= targetm
.strip_name_encoding (name
);
6518 /* If we're using one_only, then there needs to be a .gnu.linkonce
6519 prefix to the section name. */
6520 linkonce
= one_only
? ".gnu.linkonce" : "";
6522 string
= ACONCAT ((linkonce
, prefix
, ".", name
, NULL
));
6524 DECL_SECTION_NAME (decl
) = build_string (strlen (string
), string
);
6527 /* Like compute_reloc_for_constant, except for an RTX. The return value
6528 is a mask for which bit 1 indicates a global relocation, and bit 0
6529 indicates a local relocation. */
6532 compute_reloc_for_rtx_1 (rtx
*xp
, void *data
)
6534 int *preloc
= (int *) data
;
6537 switch (GET_CODE (x
))
6540 *preloc
|= SYMBOL_REF_LOCAL_P (x
) ? 1 : 2;
6553 compute_reloc_for_rtx (rtx x
)
6557 switch (GET_CODE (x
))
6563 for_each_rtx (&x
, compute_reloc_for_rtx_1
, &reloc
);
6572 default_select_rtx_section (enum machine_mode mode ATTRIBUTE_UNUSED
,
6574 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
)
6576 if (compute_reloc_for_rtx (x
) & targetm
.asm_out
.reloc_rw_mask ())
6577 return data_section
;
6579 return readonly_data_section
;
6583 default_elf_select_rtx_section (enum machine_mode mode
, rtx x
,
6584 unsigned HOST_WIDE_INT align
)
6586 int reloc
= compute_reloc_for_rtx (x
);
6588 /* ??? Handle small data here somehow. */
6590 if (reloc
& targetm
.asm_out
.reloc_rw_mask ())
6593 return get_named_section (NULL
, ".data.rel.ro.local", 1);
6595 return get_named_section (NULL
, ".data.rel.ro", 3);
6598 return mergeable_constant_section (mode
, align
, 0);
6601 /* Set the generally applicable flags on the SYMBOL_REF for EXP. */
6604 default_encode_section_info (tree decl
, rtx rtl
, int first ATTRIBUTE_UNUSED
)
6609 /* Careful not to prod global register variables. */
6612 symbol
= XEXP (rtl
, 0);
6613 if (GET_CODE (symbol
) != SYMBOL_REF
)
6616 flags
= SYMBOL_REF_FLAGS (symbol
) & SYMBOL_FLAG_HAS_BLOCK_INFO
;
6617 if (TREE_CODE (decl
) == FUNCTION_DECL
)
6618 flags
|= SYMBOL_FLAG_FUNCTION
;
6619 if (targetm
.binds_local_p (decl
))
6620 flags
|= SYMBOL_FLAG_LOCAL
;
6621 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL_P (decl
))
6622 flags
|= DECL_TLS_MODEL (decl
) << SYMBOL_FLAG_TLS_SHIFT
;
6623 else if (targetm
.in_small_data_p (decl
))
6624 flags
|= SYMBOL_FLAG_SMALL
;
6625 /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names? Without
6626 being PUBLIC, the thing *must* be defined in this translation unit.
6627 Prevent this buglet from being propagated into rtl code as well. */
6628 if (DECL_P (decl
) && DECL_EXTERNAL (decl
) && TREE_PUBLIC (decl
))
6629 flags
|= SYMBOL_FLAG_EXTERNAL
;
6631 SYMBOL_REF_FLAGS (symbol
) = flags
;
6634 /* By default, we do nothing for encode_section_info, so we need not
6635 do anything but discard the '*' marker. */
6638 default_strip_name_encoding (const char *str
)
6640 return str
+ (*str
== '*');
6643 #ifdef ASM_OUTPUT_DEF
6644 /* The default implementation of TARGET_ASM_OUTPUT_ANCHOR. Define the
6645 anchor relative to ".", the current section position. */
6648 default_asm_output_anchor (rtx symbol
)
6652 sprintf (buffer
, "*. + " HOST_WIDE_INT_PRINT_DEC
,
6653 SYMBOL_REF_BLOCK_OFFSET (symbol
));
6654 ASM_OUTPUT_DEF (asm_out_file
, XSTR (symbol
, 0), buffer
);
6658 /* The default implementation of TARGET_USE_ANCHORS_FOR_SYMBOL_P. */
6661 default_use_anchors_for_symbol_p (const_rtx symbol
)
6666 /* Don't use anchors for mergeable sections. The linker might move
6667 the objects around. */
6668 sect
= SYMBOL_REF_BLOCK (symbol
)->sect
;
6669 if (sect
->common
.flags
& SECTION_MERGE
)
6672 /* Don't use anchors for small data sections. The small data register
6673 acts as an anchor for such sections. */
6674 if (sect
->common
.flags
& SECTION_SMALL
)
6677 decl
= SYMBOL_REF_DECL (symbol
);
6678 if (decl
&& DECL_P (decl
))
6680 /* Don't use section anchors for decls that might be defined or
6681 usurped by other modules. */
6682 if (TREE_PUBLIC (decl
) && !decl_binds_to_current_def_p (decl
))
6685 /* Don't use section anchors for decls that will be placed in a
6686 small data section. */
6687 /* ??? Ideally, this check would be redundant with the SECTION_SMALL
6688 one above. The problem is that we only use SECTION_SMALL for
6689 sections that should be marked as small in the section directive. */
6690 if (targetm
.in_small_data_p (decl
))
6696 /* Return true when RESOLUTION indicate that symbol will be bound to the
6697 definition provided by current .o file. */
6700 resolution_to_local_definition_p (enum ld_plugin_symbol_resolution resolution
)
6702 return (resolution
== LDPR_PREVAILING_DEF
6703 || resolution
== LDPR_PREVAILING_DEF_IRONLY_EXP
6704 || resolution
== LDPR_PREVAILING_DEF_IRONLY
);
6707 /* Return true when RESOLUTION indicate that symbol will be bound locally
6708 within current executable or DSO. */
6711 resolution_local_p (enum ld_plugin_symbol_resolution resolution
)
6713 return (resolution
== LDPR_PREVAILING_DEF
6714 || resolution
== LDPR_PREVAILING_DEF_IRONLY
6715 || resolution
== LDPR_PREVAILING_DEF_IRONLY_EXP
6716 || resolution
== LDPR_PREEMPTED_REG
6717 || resolution
== LDPR_PREEMPTED_IR
6718 || resolution
== LDPR_RESOLVED_IR
6719 || resolution
== LDPR_RESOLVED_EXEC
);
6722 /* Assume ELF-ish defaults, since that's pretty much the most liberal
6723 wrt cross-module name binding. */
6726 default_binds_local_p (const_tree exp
)
6728 return default_binds_local_p_1 (exp
, flag_shlib
);
6732 default_binds_local_p_1 (const_tree exp
, int shlib
)
6735 bool resolved_locally
= false;
6736 bool resolved_to_local_def
= false;
6738 /* With resolution file in hands, take look into resolutions.
6739 We can't just return true for resolved_locally symbols,
6740 because dynamic linking might overwrite symbols
6741 in shared libraries. */
6742 if (TREE_CODE (exp
) == VAR_DECL
&& TREE_PUBLIC (exp
)
6743 && (TREE_STATIC (exp
) || DECL_EXTERNAL (exp
)))
6745 struct varpool_node
*vnode
= varpool_get_node (exp
);
6746 if (vnode
&& resolution_local_p (vnode
->symbol
.resolution
))
6747 resolved_locally
= true;
6749 && resolution_to_local_definition_p (vnode
->symbol
.resolution
))
6750 resolved_to_local_def
= true;
6752 else if (TREE_CODE (exp
) == FUNCTION_DECL
&& TREE_PUBLIC (exp
))
6754 struct cgraph_node
*node
= cgraph_get_node (exp
);
6756 && resolution_local_p (node
->symbol
.resolution
))
6757 resolved_locally
= true;
6759 && resolution_to_local_definition_p (node
->symbol
.resolution
))
6760 resolved_to_local_def
= true;
6763 /* A non-decl is an entry in the constant pool. */
6766 /* Weakrefs may not bind locally, even though the weakref itself is always
6767 static and therefore local. Similarly, the resolver for ifunc functions
6768 might resolve to a non-local function.
6769 FIXME: We can resolve the weakref case more curefuly by looking at the
6771 else if (lookup_attribute ("weakref", DECL_ATTRIBUTES (exp
))
6772 || (TREE_CODE (exp
) == FUNCTION_DECL
6773 && lookup_attribute ("ifunc", DECL_ATTRIBUTES (exp
))))
6775 /* Static variables are always local. */
6776 else if (! TREE_PUBLIC (exp
))
6778 /* A variable is local if the user has said explicitly that it will
6780 else if ((DECL_VISIBILITY_SPECIFIED (exp
)
6781 || resolved_to_local_def
)
6782 && DECL_VISIBILITY (exp
) != VISIBILITY_DEFAULT
)
6784 /* Variables defined outside this object might not be local. */
6785 else if (DECL_EXTERNAL (exp
) && !resolved_locally
)
6787 /* If defined in this object and visibility is not default, must be
6789 else if (DECL_VISIBILITY (exp
) != VISIBILITY_DEFAULT
)
6791 /* Default visibility weak data can be overridden by a strong symbol
6792 in another module and so are not local. */
6793 else if (DECL_WEAK (exp
)
6794 && !resolved_locally
)
6796 /* If PIC, then assume that any global name can be overridden by
6797 symbols resolved from other modules. */
6800 /* Uninitialized COMMON variable may be unified with symbols
6801 resolved from other modules. */
6802 else if (DECL_COMMON (exp
)
6803 && !resolved_locally
6804 && (DECL_INITIAL (exp
) == NULL
6805 || DECL_INITIAL (exp
) == error_mark_node
))
6807 /* Otherwise we're left with initialized (or non-common) global data
6808 which is of necessity defined locally. */
6815 /* Return true when references to DECL must bind to current definition in
6818 The condition is usually equivalent to whether the function binds to the
6819 current module (shared library or executable), that is to binds_local_p.
6820 We use this fact to avoid need for another target hook and implement
6821 the logic using binds_local_p and just special cases where
6822 decl_binds_to_current_def_p is stronger than binds_local_p. In particular
6823 the weak definitions (that can be overwritten at linktime by other
6824 definition from different object file) and when resolution info is available
6825 we simply use the knowledge passed to us by linker plugin. */
6827 decl_binds_to_current_def_p (tree decl
)
6829 gcc_assert (DECL_P (decl
));
6830 if (!targetm
.binds_local_p (decl
))
6832 if (!TREE_PUBLIC (decl
))
6834 /* When resolution is available, just use it. */
6835 if (TREE_CODE (decl
) == VAR_DECL
6836 && (TREE_STATIC (decl
) || DECL_EXTERNAL (decl
)))
6838 struct varpool_node
*vnode
= varpool_get_node (decl
);
6840 && vnode
->symbol
.resolution
!= LDPR_UNKNOWN
)
6841 return resolution_to_local_definition_p (vnode
->symbol
.resolution
);
6843 else if (TREE_CODE (decl
) == FUNCTION_DECL
)
6845 struct cgraph_node
*node
= cgraph_get_node (decl
);
6847 && node
->symbol
.resolution
!= LDPR_UNKNOWN
)
6848 return resolution_to_local_definition_p (node
->symbol
.resolution
);
6850 /* Otherwise we have to assume the worst for DECL_WEAK (hidden weaks
6851 binds locally but still can be overwritten), DECL_COMMON (can be merged
6852 with a non-common definition somewhere in the same module) or
6854 This rely on fact that binds_local_p behave as decl_replaceable_p
6855 for all other declaration types. */
6856 if (DECL_WEAK (decl
))
6858 if (DECL_COMMON (decl
)
6859 && (DECL_INITIAL (decl
) == NULL
6860 || DECL_INITIAL (decl
) == error_mark_node
))
6862 if (DECL_EXTERNAL (decl
))
6867 /* A replaceable function or variable is one which may be replaced
6868 at link-time with an entirely different definition, provided that the
6869 replacement has the same type. For example, functions declared
6870 with __attribute__((weak)) on most systems are replaceable.
6872 COMDAT functions are not replaceable, since all definitions of the
6873 function must be equivalent. It is important that COMDAT functions
6874 not be treated as replaceable so that use of C++ template
6875 instantiations is not penalized. */
6878 decl_replaceable_p (tree decl
)
6880 gcc_assert (DECL_P (decl
));
6881 if (!TREE_PUBLIC (decl
) || DECL_COMDAT (decl
))
6883 return !decl_binds_to_current_def_p (decl
);
6886 /* Default function to output code that will globalize a label. A
6887 target must define GLOBAL_ASM_OP or provide its own function to
6888 globalize a label. */
6889 #ifdef GLOBAL_ASM_OP
6891 default_globalize_label (FILE * stream
, const char *name
)
6893 fputs (GLOBAL_ASM_OP
, stream
);
6894 assemble_name (stream
, name
);
6895 putc ('\n', stream
);
6897 #endif /* GLOBAL_ASM_OP */
6899 /* Default function to output code that will globalize a declaration. */
6901 default_globalize_decl_name (FILE * stream
, tree decl
)
6903 const char *name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
6904 targetm
.asm_out
.globalize_label (stream
, name
);
6907 /* Default function to output a label for unwind information. The
6908 default is to do nothing. A target that needs nonlocal labels for
6909 unwind information must provide its own function to do this. */
6911 default_emit_unwind_label (FILE * stream ATTRIBUTE_UNUSED
,
6912 tree decl ATTRIBUTE_UNUSED
,
6913 int for_eh ATTRIBUTE_UNUSED
,
6914 int empty ATTRIBUTE_UNUSED
)
6918 /* Default function to output a label to divide up the exception table.
6919 The default is to do nothing. A target that needs/wants to divide
6920 up the table must provide it's own function to do this. */
6922 default_emit_except_table_label (FILE * stream ATTRIBUTE_UNUSED
)
6926 /* This is how to output an internal numbered label where PREFIX is
6927 the class of label and LABELNO is the number within the class. */
6930 default_generate_internal_label (char *buf
, const char *prefix
,
6931 unsigned long labelno
)
6933 ASM_GENERATE_INTERNAL_LABEL (buf
, prefix
, labelno
);
6936 /* This is how to output an internal numbered label where PREFIX is
6937 the class of label and LABELNO is the number within the class. */
6940 default_internal_label (FILE *stream
, const char *prefix
,
6941 unsigned long labelno
)
6943 char *const buf
= (char *) alloca (40 + strlen (prefix
));
6944 ASM_GENERATE_INTERNAL_LABEL (buf
, prefix
, labelno
);
6945 ASM_OUTPUT_INTERNAL_LABEL (stream
, buf
);
6949 /* The default implementation of ASM_DECLARE_CONSTANT_NAME. */
6952 default_asm_declare_constant_name (FILE *file
, const char *name
,
6953 const_tree exp ATTRIBUTE_UNUSED
,
6954 HOST_WIDE_INT size ATTRIBUTE_UNUSED
)
6956 assemble_label (file
, name
);
6959 /* This is the default behavior at the beginning of a file. It's
6960 controlled by two other target-hook toggles. */
6962 default_file_start (void)
6964 if (targetm
.asm_file_start_app_off
6965 && !(flag_verbose_asm
|| flag_debug_asm
|| flag_dump_rtl_in_asm
))
6966 fputs (ASM_APP_OFF
, asm_out_file
);
6968 if (targetm
.asm_file_start_file_directive
)
6969 output_file_directive (asm_out_file
, main_input_filename
);
6972 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
6973 which emits a special section directive used to indicate whether or
6974 not this object file needs an executable stack. This is primarily
6975 a GNU extension to ELF but could be used on other targets. */
6977 int trampolines_created
;
6980 file_end_indicate_exec_stack (void)
6982 unsigned int flags
= SECTION_DEBUG
;
6983 if (trampolines_created
)
6984 flags
|= SECTION_CODE
;
6986 switch_to_section (get_section (".note.GNU-stack", flags
, NULL
));
6989 /* Emit a special section directive to indicate that this object file
6990 was compiled with -fsplit-stack. This is used to let the linker
6991 detect calls between split-stack code and non-split-stack code, so
6992 that it can modify the split-stack code to allocate a sufficiently
6993 large stack. We emit another special section if there are any
6994 functions in this file which have the no_split_stack attribute, to
6995 prevent the linker from warning about being unable to convert the
6996 functions if they call non-split-stack code. */
6999 file_end_indicate_split_stack (void)
7001 if (flag_split_stack
)
7003 switch_to_section (get_section (".note.GNU-split-stack", SECTION_DEBUG
,
7005 if (saw_no_split_stack
)
7006 switch_to_section (get_section (".note.GNU-no-split-stack",
7007 SECTION_DEBUG
, NULL
));
7011 /* Output DIRECTIVE (a C string) followed by a newline. This is used as
7012 a get_unnamed_section callback. */
7015 output_section_asm_op (const void *directive
)
7017 fprintf (asm_out_file
, "%s\n", (const char *) directive
);
7020 /* Emit assembly code to switch to section NEW_SECTION. Do nothing if
7021 the current section is NEW_SECTION. */
7024 switch_to_section (section
*new_section
)
7026 if (in_section
== new_section
)
7029 if (new_section
->common
.flags
& SECTION_FORGET
)
7032 in_section
= new_section
;
7034 switch (SECTION_STYLE (new_section
))
7037 targetm
.asm_out
.named_section (new_section
->named
.name
,
7038 new_section
->named
.common
.flags
,
7039 new_section
->named
.decl
);
7042 case SECTION_UNNAMED
:
7043 new_section
->unnamed
.callback (new_section
->unnamed
.data
);
7046 case SECTION_NOSWITCH
:
7051 new_section
->common
.flags
|= SECTION_DECLARED
;
7054 /* If block symbol SYMBOL has not yet been assigned an offset, place
7055 it at the end of its block. */
7058 place_block_symbol (rtx symbol
)
7060 unsigned HOST_WIDE_INT size
, mask
, offset
;
7061 struct constant_descriptor_rtx
*desc
;
7062 unsigned int alignment
;
7063 struct object_block
*block
;
7066 gcc_assert (SYMBOL_REF_BLOCK (symbol
));
7067 if (SYMBOL_REF_BLOCK_OFFSET (symbol
) >= 0)
7070 /* Work out the symbol's size and alignment. */
7071 if (CONSTANT_POOL_ADDRESS_P (symbol
))
7073 desc
= SYMBOL_REF_CONSTANT (symbol
);
7074 alignment
= desc
->align
;
7075 size
= GET_MODE_SIZE (desc
->mode
);
7077 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol
))
7079 decl
= SYMBOL_REF_DECL (symbol
);
7080 alignment
= DECL_ALIGN (decl
);
7081 size
= get_constant_size (DECL_INITIAL (decl
));
7082 if ((flag_sanitize
& SANITIZE_ADDRESS
)
7083 && TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
7084 && asan_protect_global (DECL_INITIAL (decl
)))
7085 size
+= asan_red_zone_size (size
);
7089 decl
= SYMBOL_REF_DECL (symbol
);
7090 alignment
= get_variable_align (decl
);
7091 size
= tree_low_cst (DECL_SIZE_UNIT (decl
), 1);
7092 if ((flag_sanitize
& SANITIZE_ADDRESS
)
7093 && asan_protect_global (decl
))
7095 size
+= asan_red_zone_size (size
);
7096 alignment
= MAX (alignment
,
7097 ASAN_RED_ZONE_SIZE
* BITS_PER_UNIT
);
7101 /* Calculate the object's offset from the start of the block. */
7102 block
= SYMBOL_REF_BLOCK (symbol
);
7103 mask
= alignment
/ BITS_PER_UNIT
- 1;
7104 offset
= (block
->size
+ mask
) & ~mask
;
7105 SYMBOL_REF_BLOCK_OFFSET (symbol
) = offset
;
7107 /* Record the block's new alignment and size. */
7108 block
->alignment
= MAX (block
->alignment
, alignment
);
7109 block
->size
= offset
+ size
;
7111 vec_safe_push (block
->objects
, symbol
);
7114 /* Return the anchor that should be used to address byte offset OFFSET
7115 from the first object in BLOCK. MODEL is the TLS model used
7119 get_section_anchor (struct object_block
*block
, HOST_WIDE_INT offset
,
7120 enum tls_model model
)
7123 unsigned int begin
, middle
, end
;
7124 unsigned HOST_WIDE_INT min_offset
, max_offset
, range
, bias
, delta
;
7127 /* Work out the anchor's offset. Use an offset of 0 for the first
7128 anchor so that we don't pessimize the case where we take the address
7129 of a variable at the beginning of the block. This is particularly
7130 useful when a block has only one variable assigned to it.
7132 We try to place anchors RANGE bytes apart, so there can then be
7133 anchors at +/-RANGE, +/-2 * RANGE, and so on, up to the limits of
7134 a ptr_mode offset. With some target settings, the lowest such
7135 anchor might be out of range for the lowest ptr_mode offset;
7136 likewise the highest anchor for the highest offset. Use anchors
7137 at the extreme ends of the ptr_mode range in such cases.
7139 All arithmetic uses unsigned integers in order to avoid
7141 max_offset
= (unsigned HOST_WIDE_INT
) targetm
.max_anchor_offset
;
7142 min_offset
= (unsigned HOST_WIDE_INT
) targetm
.min_anchor_offset
;
7143 range
= max_offset
- min_offset
+ 1;
7148 bias
= 1 << (GET_MODE_BITSIZE (ptr_mode
) - 1);
7151 delta
= -(unsigned HOST_WIDE_INT
) offset
+ max_offset
;
7152 delta
-= delta
% range
;
7155 offset
= (HOST_WIDE_INT
) (-delta
);
7159 delta
= (unsigned HOST_WIDE_INT
) offset
- min_offset
;
7160 delta
-= delta
% range
;
7161 if (delta
> bias
- 1)
7163 offset
= (HOST_WIDE_INT
) delta
;
7167 /* Do a binary search to see if there's already an anchor we can use.
7168 Set BEGIN to the new anchor's index if not. */
7170 end
= vec_safe_length (block
->anchors
);
7171 while (begin
!= end
)
7173 middle
= (end
+ begin
) / 2;
7174 anchor
= (*block
->anchors
)[middle
];
7175 if (SYMBOL_REF_BLOCK_OFFSET (anchor
) > offset
)
7177 else if (SYMBOL_REF_BLOCK_OFFSET (anchor
) < offset
)
7179 else if (SYMBOL_REF_TLS_MODEL (anchor
) > model
)
7181 else if (SYMBOL_REF_TLS_MODEL (anchor
) < model
)
7187 /* Create a new anchor with a unique label. */
7188 ASM_GENERATE_INTERNAL_LABEL (label
, "LANCHOR", anchor_labelno
++);
7189 anchor
= create_block_symbol (ggc_strdup (label
), block
, offset
);
7190 SYMBOL_REF_FLAGS (anchor
) |= SYMBOL_FLAG_LOCAL
| SYMBOL_FLAG_ANCHOR
;
7191 SYMBOL_REF_FLAGS (anchor
) |= model
<< SYMBOL_FLAG_TLS_SHIFT
;
7193 /* Insert it at index BEGIN. */
7194 vec_safe_insert (block
->anchors
, begin
, anchor
);
7198 /* Output the objects in BLOCK. */
7201 output_object_block (struct object_block
*block
)
7203 struct constant_descriptor_rtx
*desc
;
7205 HOST_WIDE_INT offset
;
7209 if (!block
->objects
)
7212 /* Switch to the section and make sure that the first byte is
7213 suitably aligned. */
7214 switch_to_section (block
->sect
);
7215 assemble_align (block
->alignment
);
7217 /* Define the values of all anchors relative to the current section
7219 FOR_EACH_VEC_SAFE_ELT (block
->anchors
, i
, symbol
)
7220 targetm
.asm_out
.output_anchor (symbol
);
7222 /* Output the objects themselves. */
7224 FOR_EACH_VEC_ELT (*block
->objects
, i
, symbol
)
7226 /* Move to the object's offset, padding with zeros if necessary. */
7227 assemble_zeros (SYMBOL_REF_BLOCK_OFFSET (symbol
) - offset
);
7228 offset
= SYMBOL_REF_BLOCK_OFFSET (symbol
);
7229 if (CONSTANT_POOL_ADDRESS_P (symbol
))
7231 desc
= SYMBOL_REF_CONSTANT (symbol
);
7232 output_constant_pool_1 (desc
, 1);
7233 offset
+= GET_MODE_SIZE (desc
->mode
);
7235 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol
))
7238 decl
= SYMBOL_REF_DECL (symbol
);
7239 assemble_constant_contents (DECL_INITIAL (decl
), XSTR (symbol
, 0),
7241 size
= get_constant_size (DECL_INITIAL (decl
));
7243 if ((flag_sanitize
& SANITIZE_ADDRESS
)
7244 && TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
7245 && asan_protect_global (DECL_INITIAL (decl
)))
7247 size
= asan_red_zone_size (size
);
7248 assemble_zeros (size
);
7255 decl
= SYMBOL_REF_DECL (symbol
);
7256 assemble_variable_contents (decl
, XSTR (symbol
, 0), false);
7257 size
= tree_low_cst (DECL_SIZE_UNIT (decl
), 1);
7259 if ((flag_sanitize
& SANITIZE_ADDRESS
)
7260 && asan_protect_global (decl
))
7262 size
= asan_red_zone_size (size
);
7263 assemble_zeros (size
);
7270 /* A htab_traverse callback used to call output_object_block for
7271 each member of object_block_htab. */
7274 output_object_block_htab (void **slot
, void *data ATTRIBUTE_UNUSED
)
7276 output_object_block ((struct object_block
*) (*slot
));
7280 /* Output the definitions of all object_blocks. */
7283 output_object_blocks (void)
7285 htab_traverse (object_block_htab
, output_object_block_htab
, NULL
);
7288 /* This function provides a possible implementation of the
7289 TARGET_ASM_RECORD_GCC_SWITCHES target hook for ELF targets. When triggered
7290 by -frecord-gcc-switches it creates a new mergeable, string section in the
7291 assembler output file called TARGET_ASM_RECORD_GCC_SWITCHES_SECTION which
7292 contains the switches in ASCII format.
7294 FIXME: This code does not correctly handle double quote characters
7295 that appear inside strings, (it strips them rather than preserving them).
7296 FIXME: ASM_OUTPUT_ASCII, as defined in config/elfos.h will not emit NUL
7297 characters - instead it treats them as sub-string separators. Since
7298 we want to emit NUL strings terminators into the object file we have to use
7302 elf_record_gcc_switches (print_switch_type type
, const char * name
)
7306 case SWITCH_TYPE_PASSED
:
7307 ASM_OUTPUT_ASCII (asm_out_file
, name
, strlen (name
));
7308 ASM_OUTPUT_SKIP (asm_out_file
, (unsigned HOST_WIDE_INT
) 1);
7311 case SWITCH_TYPE_DESCRIPTIVE
:
7314 /* Distinguish between invocations where name is NULL. */
7315 static bool started
= false;
7321 sec
= get_section (targetm
.asm_out
.record_gcc_switches_section
,
7325 | (SECTION_ENTSIZE
& 1),
7327 switch_to_section (sec
);
7336 /* The return value is currently ignored by the caller, but must be 0.
7337 For -fverbose-asm the return value would be the number of characters
7338 emitted into the assembler file. */
7342 /* Emit text to declare externally defined symbols. It is needed to
7343 properly support non-default visibility. */
7345 default_elf_asm_output_external (FILE *file ATTRIBUTE_UNUSED
,
7347 const char *name ATTRIBUTE_UNUSED
)
7349 /* We output the name if and only if TREE_SYMBOL_REFERENCED is
7350 set in order to avoid putting out names that are never really
7352 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
))
7353 && targetm
.binds_local_p (decl
))
7354 maybe_assemble_visibility (decl
);
7357 /* The default hook for TARGET_ASM_OUTPUT_SOURCE_FILENAME. */
7360 default_asm_output_source_filename (FILE *file
, const char *name
)
7362 #ifdef ASM_OUTPUT_SOURCE_FILENAME
7363 ASM_OUTPUT_SOURCE_FILENAME (file
, name
);
7365 fprintf (file
, "\t.file\t");
7366 output_quoted_string (file
, name
);
7371 /* Output a file name in the form wanted by System V. */
7374 output_file_directive (FILE *asm_file
, const char *input_name
)
7379 if (input_name
== NULL
)
7380 input_name
= "<stdin>";
7382 input_name
= remap_debug_filename (input_name
);
7384 len
= strlen (input_name
);
7385 na
= input_name
+ len
;
7387 /* NA gets INPUT_NAME sans directory names. */
7388 while (na
> input_name
)
7390 if (IS_DIR_SEPARATOR (na
[-1]))
7395 targetm
.asm_out
.output_source_filename (asm_file
, na
);
7398 /* Create a DEBUG_EXPR_DECL / DEBUG_EXPR pair from RTL expression
7401 make_debug_expr_from_rtl (const_rtx exp
)
7403 tree ddecl
= make_node (DEBUG_EXPR_DECL
), type
;
7404 enum machine_mode mode
= GET_MODE (exp
);
7407 DECL_ARTIFICIAL (ddecl
) = 1;
7408 if (REG_P (exp
) && REG_EXPR (exp
))
7409 type
= TREE_TYPE (REG_EXPR (exp
));
7410 else if (MEM_P (exp
) && MEM_EXPR (exp
))
7411 type
= TREE_TYPE (MEM_EXPR (exp
));
7414 if (type
&& TYPE_MODE (type
) == mode
)
7415 TREE_TYPE (ddecl
) = type
;
7417 TREE_TYPE (ddecl
) = lang_hooks
.types
.type_for_mode (mode
, 1);
7418 DECL_MODE (ddecl
) = mode
;
7419 dval
= gen_rtx_DEBUG_EXPR (mode
);
7420 DEBUG_EXPR_TREE_DECL (dval
) = ddecl
;
7421 SET_DECL_RTL (ddecl
, dval
);
7425 #ifdef ELF_ASCII_ESCAPES
7426 /* Default ASM_OUTPUT_LIMITED_STRING for ELF targets. */
7429 default_elf_asm_output_limited_string (FILE *f
, const char *s
)
7434 fputs (STRING_ASM_OP
, f
);
7439 escape
= ELF_ASCII_ESCAPES
[c
];
7446 /* TODO: Print in hex with fast function, important for -flto. */
7447 fprintf (f
, "\\%03o", c
);
7460 /* Default ASM_OUTPUT_ASCII for ELF targets. */
7463 default_elf_asm_output_ascii (FILE *f
, const char *s
, unsigned int len
)
7465 const char *limit
= s
+ len
;
7466 const char *last_null
= NULL
;
7467 unsigned bytes_in_chunk
= 0;
7471 for (; s
< limit
; s
++)
7475 if (bytes_in_chunk
>= 60)
7484 for (p
= s
; p
< limit
&& *p
!= '\0'; p
++)
7491 if (p
< limit
&& (p
- s
) <= (long) ELF_STRING_LIMIT
)
7493 if (bytes_in_chunk
> 0)
7500 default_elf_asm_output_limited_string (f
, s
);
7505 if (bytes_in_chunk
== 0)
7506 fputs (ASCII_DATA_ASM_OP
"\"", f
);
7509 escape
= ELF_ASCII_ESCAPES
[c
];
7517 /* TODO: Print in hex with fast function, important for -flto. */
7518 fprintf (f
, "\\%03o", c
);
7519 bytes_in_chunk
+= 4;
7524 bytes_in_chunk
+= 2;
7531 if (bytes_in_chunk
> 0)
7539 static GTY(()) section
*elf_init_array_section
;
7540 static GTY(()) section
*elf_fini_array_section
;
7543 get_elf_initfini_array_priority_section (int priority
,
7547 if (priority
!= DEFAULT_INIT_PRIORITY
)
7550 sprintf (buf
, "%s.%.5u",
7551 constructor_p
? ".init_array" : ".fini_array",
7553 sec
= get_section (buf
, SECTION_WRITE
| SECTION_NOTYPE
, NULL_TREE
);
7559 if (elf_init_array_section
== NULL
)
7560 elf_init_array_section
7561 = get_section (".init_array",
7562 SECTION_WRITE
| SECTION_NOTYPE
, NULL_TREE
);
7563 sec
= elf_init_array_section
;
7567 if (elf_fini_array_section
== NULL
)
7568 elf_fini_array_section
7569 = get_section (".fini_array",
7570 SECTION_WRITE
| SECTION_NOTYPE
, NULL_TREE
);
7571 sec
= elf_fini_array_section
;
7577 /* Use .init_array section for constructors. */
7580 default_elf_init_array_asm_out_constructor (rtx symbol
, int priority
)
7582 section
*sec
= get_elf_initfini_array_priority_section (priority
,
7584 assemble_addr_to_section (symbol
, sec
);
7587 /* Use .fini_array section for destructors. */
7590 default_elf_fini_array_asm_out_destructor (rtx symbol
, int priority
)
7592 section
*sec
= get_elf_initfini_array_priority_section (priority
,
7594 assemble_addr_to_section (symbol
, sec
);
7597 /* Default TARGET_ASM_OUTPUT_IDENT hook.
7599 This is a bit of a cheat. The real default is a no-op, but this
7600 hook is the default for all targets with a .ident directive. */
7603 default_asm_output_ident_directive (const char *ident_str
)
7605 const char *ident_asm_op
= "\t.ident\t";
7607 /* If we are still in the front end, do not write out the string
7608 to asm_out_file. Instead, add a fake top-level asm statement.
7609 This allows the front ends to use this hook without actually
7610 writing to asm_out_file, to handle #ident or Pragma Ident. */
7611 if (cgraph_state
== CGRAPH_STATE_PARSING
)
7613 char *buf
= ACONCAT ((ident_asm_op
, "\"", ident_str
, "\"\n", NULL
));
7614 add_asm_node (build_string (strlen (buf
), buf
));
7617 fprintf (asm_out_file
, "%s\"%s\"\n", ident_asm_op
, ident_str
);
7620 #include "gt-varasm.h"