1 /* Output variables, constants and external declarations, for GNU compiler.
2 Copyright (C) 1987-2022 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"
38 #include "stringpool.h"
42 #include "diagnostic-core.h"
43 #include "fold-const.h"
44 #include "stor-layout.h"
53 #include "langhooks.h"
55 #include "common/common-target.h"
56 #include "stringpool.h"
60 #include "file-prefix-map.h" /* remap_debug_filename() */
61 #include "alloc-pool.h"
65 /* The (assembler) name of the first globally-visible object output. */
66 extern GTY(()) const char *first_global_object_name
;
67 extern GTY(()) const char *weak_global_object_name
;
69 const char *first_global_object_name
;
70 const char *weak_global_object_name
;
73 class constant_descriptor_rtx
;
74 struct rtx_constant_pool
;
76 #define n_deferred_constants (crtl->varasm.deferred_constants)
78 /* Number for making the label on the next
79 constant that is stored in memory. */
81 static GTY(()) int const_labelno
;
83 /* Carry information from ASM_DECLARE_OBJECT_NAME
84 to ASM_FINISH_DECLARE_OBJECT. */
86 int size_directive_output
;
88 /* The last decl for which assemble_variable was called,
89 if it did ASM_DECLARE_OBJECT_NAME.
90 If the last call to assemble_variable didn't do that,
93 tree last_assemble_variable_decl
;
95 /* The following global variable indicates if the first basic block
96 in a function belongs to the cold partition or not. */
98 bool first_function_block_is_cold
;
100 /* Whether we saw any functions with no_split_stack. */
102 static bool saw_no_split_stack
;
104 static const char *strip_reg_name (const char *);
105 static int contains_pointers_p (tree
);
106 #ifdef ASM_OUTPUT_EXTERNAL
107 static bool incorporeal_function_p (tree
);
109 static void decode_addr_const (tree
, class addr_const
*);
110 static hashval_t
const_hash_1 (const tree
);
111 static int compare_constant (const tree
, const tree
);
112 static void output_constant_def_contents (rtx
);
113 static void output_addressed_constants (tree
, int);
114 static unsigned HOST_WIDE_INT
output_constant (tree
, unsigned HOST_WIDE_INT
,
115 unsigned int, bool, bool);
116 static void globalize_decl (tree
);
117 static bool decl_readonly_section_1 (enum section_category
);
118 #ifdef BSS_SECTION_ASM_OP
119 #ifdef ASM_OUTPUT_ALIGNED_BSS
120 static void asm_output_aligned_bss (FILE *, tree
, const char *,
121 unsigned HOST_WIDE_INT
, int)
124 #endif /* BSS_SECTION_ASM_OP */
125 static void mark_weak (tree
);
126 static void output_constant_pool (const char *, tree
);
127 static void handle_vtv_comdat_section (section
*, const_tree
);
129 /* Well-known sections, each one associated with some sort of *_ASM_OP. */
130 section
*text_section
;
131 section
*data_section
;
132 section
*readonly_data_section
;
133 section
*sdata_section
;
134 section
*ctors_section
;
135 section
*dtors_section
;
136 section
*bss_section
;
137 section
*sbss_section
;
139 /* Various forms of common section. All are guaranteed to be nonnull. */
140 section
*tls_comm_section
;
141 section
*comm_section
;
142 section
*lcomm_section
;
144 /* A SECTION_NOSWITCH section used for declaring global BSS variables.
146 section
*bss_noswitch_section
;
148 /* The section that holds the main exception table, when known. The section
149 is set either by the target's init_sections hook or by the first call to
150 switch_to_exception_section. */
151 section
*exception_section
;
153 /* The section that holds the DWARF2 frame unwind information, when known.
154 The section is set either by the target's init_sections hook or by the
155 first call to switch_to_eh_frame_section. */
156 section
*eh_frame_section
;
158 /* asm_out_file's current section. This is NULL if no section has yet
159 been selected or if we lose track of what the current section is. */
162 /* True if code for the current function is currently being directed
163 at the cold section. */
164 bool in_cold_section_p
;
166 /* The following global holds the "function name" for the code in the
167 cold section of a function, if hot/cold function splitting is enabled
168 and there was actually code that went into the cold section. A
169 pseudo function name is needed for the cold section of code for some
170 debugging tools that perform symbolization. */
171 tree cold_function_name
= NULL_TREE
;
173 /* A linked list of all the unnamed sections. */
174 static GTY(()) section
*unnamed_sections
;
176 /* Return a nonzero value if DECL has a section attribute. */
177 #define IN_NAMED_SECTION(DECL) \
178 (VAR_OR_FUNCTION_DECL_P (DECL) && DECL_SECTION_NAME (DECL) != NULL)
180 struct section_hasher
: ggc_ptr_hash
<section
>
182 typedef const char *compare_type
;
184 static hashval_t
hash (section
*);
185 static bool equal (section
*, const char *);
188 /* Hash table of named sections. */
189 static GTY(()) hash_table
<section_hasher
> *section_htab
;
191 struct object_block_hasher
: ggc_ptr_hash
<object_block
>
193 typedef const section
*compare_type
;
195 static hashval_t
hash (object_block
*);
196 static bool equal (object_block
*, const section
*);
199 /* A table of object_blocks, indexed by section. */
200 static GTY(()) hash_table
<object_block_hasher
> *object_block_htab
;
202 /* The next number to use for internal anchor labels. */
203 static GTY(()) int anchor_labelno
;
205 /* A pool of constants that can be shared between functions. */
206 static GTY(()) struct rtx_constant_pool
*shared_constant_pool
;
208 /* Helper routines for maintaining section_htab. */
211 section_hasher::equal (section
*old
, const char *new_name
)
213 return strcmp (old
->named
.name
, new_name
) == 0;
217 section_hasher::hash (section
*old
)
219 return htab_hash_string (old
->named
.name
);
222 /* Return a hash value for section SECT. */
225 hash_section (section
*sect
)
227 if (sect
->common
.flags
& SECTION_NAMED
)
228 return htab_hash_string (sect
->named
.name
);
229 return sect
->common
.flags
& ~SECTION_DECLARED
;
232 /* Helper routines for maintaining object_block_htab. */
235 object_block_hasher::equal (object_block
*old
, const section
*new_section
)
237 return old
->sect
== new_section
;
241 object_block_hasher::hash (object_block
*old
)
243 return hash_section (old
->sect
);
246 /* Return a new unnamed section with the given fields. */
249 get_unnamed_section (unsigned int flags
, void (*callback
) (const char *),
254 sect
= ggc_alloc
<section
> ();
255 sect
->unnamed
.common
.flags
= flags
| SECTION_UNNAMED
;
256 sect
->unnamed
.callback
= callback
;
257 sect
->unnamed
.data
= data
;
258 sect
->unnamed
.next
= unnamed_sections
;
260 unnamed_sections
= sect
;
264 /* Return a SECTION_NOSWITCH section with the given fields. */
267 get_noswitch_section (unsigned int flags
, noswitch_section_callback callback
)
271 sect
= ggc_alloc
<section
> ();
272 sect
->noswitch
.common
.flags
= flags
| SECTION_NOSWITCH
;
273 sect
->noswitch
.callback
= callback
;
278 /* Return the named section structure associated with NAME. Create
279 a new section with the given fields if no such structure exists.
280 When NOT_EXISTING, then fail if the section already exists. Return
281 the existing section if the SECTION_RETAIN bit doesn't match. Set
282 the SECTION_WRITE | SECTION_RELRO bits on the existing section
283 if one of the section flags is SECTION_WRITE | SECTION_RELRO and the
284 other has none of these flags in named sections and either the section
285 hasn't been declared yet or has been declared as writable. */
288 get_section (const char *name
, unsigned int flags
, tree decl
,
291 section
*sect
, **slot
;
293 slot
= section_htab
->find_slot_with_hash (name
, htab_hash_string (name
),
295 flags
|= SECTION_NAMED
;
298 && lookup_attribute ("retain", DECL_ATTRIBUTES (decl
)))
299 flags
|= SECTION_RETAIN
;
302 sect
= ggc_alloc
<section
> ();
303 sect
->named
.common
.flags
= flags
;
304 sect
->named
.name
= ggc_strdup (name
);
305 sect
->named
.decl
= decl
;
311 internal_error ("section already exists: %qs", name
);
314 /* It is fine if one of the sections has SECTION_NOTYPE as long as
315 the other has none of the contrary flags (see the logic at the end
316 of default_section_type_flags, below). */
317 if (((sect
->common
.flags
^ flags
) & SECTION_NOTYPE
)
318 && !((sect
->common
.flags
| flags
)
319 & (SECTION_CODE
| SECTION_BSS
| SECTION_TLS
| SECTION_ENTSIZE
320 | (HAVE_COMDAT_GROUP
? SECTION_LINKONCE
: 0))))
322 sect
->common
.flags
|= SECTION_NOTYPE
;
323 flags
|= SECTION_NOTYPE
;
325 if ((sect
->common
.flags
& ~SECTION_DECLARED
) != flags
326 && ((sect
->common
.flags
| flags
) & SECTION_OVERRIDE
) == 0)
328 /* It is fine if one of the section flags is
329 SECTION_WRITE | SECTION_RELRO and the other has none of these
330 flags (i.e. read-only) in named sections and either the
331 section hasn't been declared yet or has been declared as writable.
332 In that case just make sure the resulting flags are
333 SECTION_WRITE | SECTION_RELRO, ie. writable only because of
335 if (((sect
->common
.flags
^ flags
) & (SECTION_WRITE
| SECTION_RELRO
))
336 == (SECTION_WRITE
| SECTION_RELRO
)
337 && (sect
->common
.flags
338 & ~(SECTION_DECLARED
| SECTION_WRITE
| SECTION_RELRO
))
339 == (flags
& ~(SECTION_WRITE
| SECTION_RELRO
))
340 && ((sect
->common
.flags
& SECTION_DECLARED
) == 0
341 || (sect
->common
.flags
& SECTION_WRITE
)))
343 sect
->common
.flags
|= (SECTION_WRITE
| SECTION_RELRO
);
346 /* If the SECTION_RETAIN bit doesn't match, return and switch
347 to a new section later. */
348 if ((sect
->common
.flags
& SECTION_RETAIN
)
349 != (flags
& SECTION_RETAIN
))
351 /* Sanity check user variables for flag changes. */
352 if (sect
->named
.decl
!= NULL
353 && DECL_P (sect
->named
.decl
)
354 && decl
!= sect
->named
.decl
)
356 if (decl
!= NULL
&& DECL_P (decl
))
357 error ("%+qD causes a section type conflict with %qD",
358 decl
, sect
->named
.decl
);
360 error ("section type conflict with %qD", sect
->named
.decl
);
361 inform (DECL_SOURCE_LOCATION (sect
->named
.decl
),
362 "%qD was declared here", sect
->named
.decl
);
364 else if (decl
!= NULL
&& DECL_P (decl
))
365 error ("%+qD causes a section type conflict", decl
);
367 error ("section type conflict");
368 /* Make sure we don't error about one section multiple times. */
369 sect
->common
.flags
|= SECTION_OVERRIDE
;
375 /* Return true if the current compilation mode benefits from having
376 objects grouped into blocks. */
379 use_object_blocks_p (void)
381 return flag_section_anchors
;
384 /* Return the object_block structure for section SECT. Create a new
385 structure if we haven't created one already. Return null if SECT
386 itself is null. Return also null for mergeable sections since
387 section anchors can't be used in mergeable sections anyway,
388 because the linker might move objects around, and using the
389 object blocks infrastructure in that case is both a waste and a
390 maintenance burden. */
392 static struct object_block
*
393 get_block_for_section (section
*sect
)
395 struct object_block
*block
;
400 if (sect
->common
.flags
& SECTION_MERGE
)
404 = object_block_htab
->find_slot_with_hash (sect
, hash_section (sect
),
409 block
= ggc_cleared_alloc
<object_block
> ();
416 /* Create a symbol with label LABEL and place it at byte offset
417 OFFSET in BLOCK. OFFSET can be negative if the symbol's offset
418 is not yet known. LABEL must be a garbage-collected string. */
421 create_block_symbol (const char *label
, struct object_block
*block
,
422 HOST_WIDE_INT offset
)
427 /* Create the extended SYMBOL_REF. */
428 size
= RTX_HDR_SIZE
+ sizeof (struct block_symbol
);
429 symbol
= (rtx
) ggc_internal_alloc (size
);
431 /* Initialize the normal SYMBOL_REF fields. */
432 memset (symbol
, 0, size
);
433 PUT_CODE (symbol
, SYMBOL_REF
);
434 PUT_MODE (symbol
, Pmode
);
435 XSTR (symbol
, 0) = label
;
436 SYMBOL_REF_FLAGS (symbol
) = SYMBOL_FLAG_HAS_BLOCK_INFO
;
438 /* Initialize the block_symbol stuff. */
439 SYMBOL_REF_BLOCK (symbol
) = block
;
440 SYMBOL_REF_BLOCK_OFFSET (symbol
) = offset
;
445 /* Return a section with a particular name and with whatever SECTION_*
446 flags section_type_flags deems appropriate. The name of the section
447 is taken from NAME if nonnull, otherwise it is taken from DECL's
448 DECL_SECTION_NAME. DECL is the decl associated with the section
449 (see the section comment for details) and RELOC is as for
450 section_type_flags. */
453 get_named_section (tree decl
, const char *name
, int reloc
)
459 gcc_assert (decl
&& DECL_P (decl
) && DECL_SECTION_NAME (decl
));
460 name
= DECL_SECTION_NAME (decl
);
463 flags
= targetm
.section_type_flags (decl
, name
, reloc
);
464 return get_section (name
, flags
, decl
);
467 /* Worker for resolve_unique_section. */
470 set_implicit_section (struct symtab_node
*n
, void *data ATTRIBUTE_UNUSED
)
472 n
->implicit_section
= true;
476 /* If required, set DECL_SECTION_NAME to a unique name. */
479 resolve_unique_section (tree decl
, int reloc ATTRIBUTE_UNUSED
,
480 int flag_function_or_data_sections
)
482 if (DECL_SECTION_NAME (decl
) == NULL
483 && targetm_common
.have_named_sections
484 && (flag_function_or_data_sections
485 || lookup_attribute ("retain", DECL_ATTRIBUTES (decl
))
486 || DECL_COMDAT_GROUP (decl
)))
488 targetm
.asm_out
.unique_section (decl
, reloc
);
489 if (DECL_SECTION_NAME (decl
))
490 symtab_node::get (decl
)->call_for_symbol_and_aliases
491 (set_implicit_section
, NULL
, true);
495 #ifdef BSS_SECTION_ASM_OP
497 #ifdef ASM_OUTPUT_ALIGNED_BSS
499 /* Utility function for targets to use in implementing
500 ASM_OUTPUT_ALIGNED_BSS.
501 ??? It is believed that this function will work in most cases so such
502 support is localized here. */
505 asm_output_aligned_bss (FILE *file
, tree decl ATTRIBUTE_UNUSED
,
506 const char *name
, unsigned HOST_WIDE_INT size
,
509 switch_to_section (bss_section
);
510 ASM_OUTPUT_ALIGN (file
, floor_log2 (align
/ BITS_PER_UNIT
));
511 #ifdef ASM_DECLARE_OBJECT_NAME
512 last_assemble_variable_decl
= decl
;
513 ASM_DECLARE_OBJECT_NAME (file
, name
, decl
);
515 /* Standard thing is just output label for the object. */
516 ASM_OUTPUT_LABEL (file
, name
);
517 #endif /* ASM_DECLARE_OBJECT_NAME */
518 ASM_OUTPUT_SKIP (file
, size
? size
: 1);
523 #endif /* BSS_SECTION_ASM_OP */
525 #ifndef USE_SELECT_SECTION_FOR_FUNCTIONS
526 /* Return the hot section for function DECL. Return text_section for
530 hot_function_section (tree decl
)
532 if (decl
!= NULL_TREE
533 && DECL_SECTION_NAME (decl
) != NULL
534 && targetm_common
.have_named_sections
)
535 return get_named_section (decl
, NULL
, 0);
541 /* Return section for TEXT_SECTION_NAME if DECL or DECL_SECTION_NAME (DECL)
544 When DECL_SECTION_NAME is non-NULL and it is implicit section and
545 NAMED_SECTION_SUFFIX is non-NULL, then produce section called
546 concatenate the name with NAMED_SECTION_SUFFIX.
547 Otherwise produce "TEXT_SECTION_NAME.IMPLICIT_NAME". */
550 get_named_text_section (tree decl
,
551 const char *text_section_name
,
552 const char *named_section_suffix
)
554 if (decl
&& DECL_SECTION_NAME (decl
))
556 if (named_section_suffix
)
558 const char *dsn
= DECL_SECTION_NAME (decl
);
559 const char *stripped_name
;
562 name
= (char *) alloca (strlen (dsn
) + 1);
566 stripped_name
= targetm
.strip_name_encoding (name
);
568 buffer
= ACONCAT ((stripped_name
, named_section_suffix
, NULL
));
569 return get_named_section (decl
, buffer
, 0);
571 else if (symtab_node::get (decl
)->implicit_section
)
575 /* Do not try to split gnu_linkonce functions. This gets somewhat
577 if (DECL_COMDAT_GROUP (decl
) && !HAVE_COMDAT_GROUP
)
579 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
580 name
= targetm
.strip_name_encoding (name
);
581 return get_named_section (decl
, ACONCAT ((text_section_name
, ".",
587 return get_named_section (decl
, text_section_name
, 0);
590 /* Choose named function section based on its frequency. */
593 default_function_section (tree decl
, enum node_frequency freq
,
594 bool startup
, bool exit
)
596 #if defined HAVE_LD_EH_GC_SECTIONS && defined HAVE_LD_EH_GC_SECTIONS_BUG
597 /* Old GNU linkers have buggy --gc-section support, which sometimes
598 results in .gcc_except_table* sections being garbage collected. */
600 && symtab_node::get (decl
)->implicit_section
)
604 if (!flag_reorder_functions
605 || !targetm_common
.have_named_sections
)
607 /* Startup code should go to startup subsection unless it is
608 unlikely executed (this happens especially with function splitting
609 where we can split away unnecessary parts of static constructors. */
610 if (startup
&& freq
!= NODE_FREQUENCY_UNLIKELY_EXECUTED
)
612 /* During LTO the tp_first_run profiling will naturally place all
613 initialization code first. Using separate section is counter-productive
614 because startup only code may call functions which are no longer
617 || !cgraph_node::get (decl
)->tp_first_run
618 || !opt_for_fn (decl
, flag_profile_reorder_functions
))
619 return get_named_text_section (decl
, ".text.startup", NULL
);
624 /* Similarly for exit. */
625 if (exit
&& freq
!= NODE_FREQUENCY_UNLIKELY_EXECUTED
)
626 return get_named_text_section (decl
, ".text.exit", NULL
);
628 /* Group cold functions together, similarly for hot code. */
631 case NODE_FREQUENCY_UNLIKELY_EXECUTED
:
632 return get_named_text_section (decl
, ".text.unlikely", NULL
);
633 case NODE_FREQUENCY_HOT
:
634 return get_named_text_section (decl
, ".text.hot", NULL
);
641 /* Return the section for function DECL.
643 If DECL is NULL_TREE, return the text section. We can be passed
644 NULL_TREE under some circumstances by dbxout.cc at least.
646 If FORCE_COLD is true, return cold function section ignoring
647 the frequency info of cgraph_node. */
650 function_section_1 (tree decl
, bool force_cold
)
652 section
*section
= NULL
;
653 enum node_frequency freq
= NODE_FREQUENCY_NORMAL
;
654 bool startup
= false, exit
= false;
658 struct cgraph_node
*node
= cgraph_node::get (decl
);
662 freq
= node
->frequency
;
663 startup
= node
->only_called_at_startup
;
664 exit
= node
->only_called_at_exit
;
668 freq
= NODE_FREQUENCY_UNLIKELY_EXECUTED
;
670 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
671 if (decl
!= NULL_TREE
672 && DECL_SECTION_NAME (decl
) != NULL
)
674 if (targetm
.asm_out
.function_section
)
675 section
= targetm
.asm_out
.function_section (decl
, freq
,
679 return get_named_section (decl
, NULL
, 0);
682 return targetm
.asm_out
.select_section
683 (decl
, freq
== NODE_FREQUENCY_UNLIKELY_EXECUTED
,
684 symtab_node::get (decl
)->definition_alignment ());
686 if (targetm
.asm_out
.function_section
)
687 section
= targetm
.asm_out
.function_section (decl
, freq
, startup
, exit
);
690 return hot_function_section (decl
);
694 /* Return the section for function DECL.
696 If DECL is NULL_TREE, return the text section. We can be passed
697 NULL_TREE under some circumstances by dbxout.cc at least. */
700 function_section (tree decl
)
702 /* Handle cases where function splitting code decides
703 to put function entry point into unlikely executed section
704 despite the fact that the function itself is not cold
705 (i.e. it is called rarely but contains a hot loop that is
706 better to live in hot subsection for the code locality). */
707 return function_section_1 (decl
,
708 first_function_block_is_cold
);
711 /* Return the section for the current function, take IN_COLD_SECTION_P
715 current_function_section (void)
717 return function_section_1 (current_function_decl
, in_cold_section_p
);
720 /* Tell assembler to switch to unlikely-to-be-executed text section. */
723 unlikely_text_section (void)
725 return function_section_1 (current_function_decl
, true);
728 /* When called within a function context, return true if the function
729 has been assigned a cold text section and if SECT is that section.
730 When called outside a function context, return true if SECT is the
731 default cold section. */
734 unlikely_text_section_p (section
*sect
)
736 return sect
== function_section_1 (current_function_decl
, true);
739 /* Switch to the other function partition (if inside of hot section
740 into cold section, otherwise into the hot section). */
743 switch_to_other_text_partition (void)
745 in_cold_section_p
= !in_cold_section_p
;
746 switch_to_section (current_function_section ());
749 /* Return the read-only or relocated read-only data section
750 associated with function DECL. */
753 default_function_rodata_section (tree decl
, bool relocatable
)
762 sname
= ".data.rel.ro.local";
763 flags
= (SECTION_WRITE
| SECTION_RELRO
);
768 if (decl
&& DECL_SECTION_NAME (decl
))
770 const char *name
= DECL_SECTION_NAME (decl
);
772 if (DECL_COMDAT_GROUP (decl
) && HAVE_COMDAT_GROUP
)
778 dot
= strchr (name
+ 1, '.');
781 len
= strlen (dot
) + strlen (sname
) + 1;
782 rname
= (char *) alloca (len
);
784 strcpy (rname
, sname
);
786 return get_section (rname
, (SECTION_LINKONCE
| flags
), decl
);
788 /* For .gnu.linkonce.t.foo we want to use .gnu.linkonce.r.foo or
789 .gnu.linkonce.d.rel.ro.local.foo if the jump table is relocatable. */
790 else if (DECL_COMDAT_GROUP (decl
)
791 && startswith (name
, ".gnu.linkonce.t."))
798 len
= strlen (name
) + strlen (".rel.ro.local") + 1;
799 rname
= (char *) alloca (len
);
801 strcpy (rname
, ".gnu.linkonce.d.rel.ro.local");
802 strcat (rname
, name
+ 15);
806 len
= strlen (name
) + 1;
807 rname
= (char *) alloca (len
);
809 memcpy (rname
, name
, len
);
812 return get_section (rname
, (SECTION_LINKONCE
| flags
), decl
);
814 /* For .text.foo we want to use .rodata.foo. */
815 else if (flag_function_sections
&& flag_data_sections
816 && startswith (name
, ".text."))
818 size_t len
= strlen (name
) + 1;
819 char *rname
= (char *) alloca (len
+ strlen (sname
) - 5);
821 memcpy (rname
, sname
, strlen (sname
));
822 memcpy (rname
+ strlen (sname
), name
+ 5, len
- 5);
823 return get_section (rname
, flags
, decl
);
828 return get_section (sname
, flags
, decl
);
830 return readonly_data_section
;
833 /* Return the read-only data section associated with function DECL
834 for targets where that section should be always the single
835 readonly data section. */
838 default_no_function_rodata_section (tree
, bool)
840 return readonly_data_section
;
843 /* A subroutine of mergeable_string_section and mergeable_constant_section. */
846 function_mergeable_rodata_prefix (void)
848 section
*s
= targetm
.asm_out
.function_rodata_section (current_function_decl
,
850 if (SECTION_STYLE (s
) == SECTION_NAMED
)
851 return s
->named
.name
;
853 return targetm
.asm_out
.mergeable_rodata_prefix
;
856 /* Return the section to use for string merging. */
859 mergeable_string_section (tree decl ATTRIBUTE_UNUSED
,
860 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
,
861 unsigned int flags ATTRIBUTE_UNUSED
)
865 if (HAVE_GAS_SHF_MERGE
&& flag_merge_constants
866 && TREE_CODE (decl
) == STRING_CST
867 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
869 && (len
= int_size_in_bytes (TREE_TYPE (decl
))) > 0
870 && TREE_STRING_LENGTH (decl
) == len
)
872 scalar_int_mode mode
;
873 unsigned int modesize
;
877 const char *prefix
= function_mergeable_rodata_prefix ();
878 char *name
= (char *) alloca (strlen (prefix
) + 30);
880 mode
= SCALAR_INT_TYPE_MODE (TREE_TYPE (TREE_TYPE (decl
)));
881 modesize
= GET_MODE_BITSIZE (mode
);
882 if (modesize
>= 8 && modesize
<= 256
883 && (modesize
& (modesize
- 1)) == 0)
885 if (align
< modesize
)
888 if (!HAVE_LD_ALIGNED_SHF_MERGE
&& align
> 8)
889 return readonly_data_section
;
891 str
= TREE_STRING_POINTER (decl
);
892 unit
= GET_MODE_SIZE (mode
);
894 /* Check for embedded NUL characters. */
895 for (i
= 0; i
< len
; i
+= unit
)
897 for (j
= 0; j
< unit
; j
++)
898 if (str
[i
+ j
] != '\0')
903 if (i
== len
- unit
|| (unit
== 1 && i
== len
))
905 sprintf (name
, "%s.str%d.%d", prefix
,
906 modesize
/ 8, (int) (align
/ 8));
907 flags
|= (modesize
/ 8) | SECTION_MERGE
| SECTION_STRINGS
;
908 return get_section (name
, flags
, NULL
);
913 return readonly_data_section
;
916 /* Return the section to use for constant merging. */
919 mergeable_constant_section (machine_mode mode ATTRIBUTE_UNUSED
,
920 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
,
921 unsigned int flags ATTRIBUTE_UNUSED
)
923 if (HAVE_GAS_SHF_MERGE
&& flag_merge_constants
926 && known_le (GET_MODE_BITSIZE (mode
), align
)
929 && (align
& (align
- 1)) == 0
930 && (HAVE_LD_ALIGNED_SHF_MERGE
? 1 : align
== 8))
932 const char *prefix
= function_mergeable_rodata_prefix ();
933 char *name
= (char *) alloca (strlen (prefix
) + 30);
935 sprintf (name
, "%s.cst%d", prefix
, (int) (align
/ 8));
936 flags
|= (align
/ 8) | SECTION_MERGE
;
937 return get_section (name
, flags
, NULL
);
939 return readonly_data_section
;
942 /* Given NAME, a putative register name, discard any customary prefixes. */
945 strip_reg_name (const char *name
)
947 #ifdef REGISTER_PREFIX
948 if (!strncmp (name
, REGISTER_PREFIX
, strlen (REGISTER_PREFIX
)))
949 name
+= strlen (REGISTER_PREFIX
);
951 if (name
[0] == '%' || name
[0] == '#')
956 /* The user has asked for a DECL to have a particular name. Set (or
957 change) it in such a way that we don't prefix an underscore to
960 set_user_assembler_name (tree decl
, const char *name
)
962 char *starred
= (char *) alloca (strlen (name
) + 2);
964 strcpy (starred
+ 1, name
);
965 symtab
->change_decl_assembler_name (decl
, get_identifier (starred
));
966 SET_DECL_RTL (decl
, NULL_RTX
);
969 /* Decode an `asm' spec for a declaration as a register name.
970 Return the register number, or -1 if nothing specified,
971 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
972 or -3 if ASMSPEC is `cc' and is not recognized,
973 or -4 if ASMSPEC is `memory' and is not recognized.
974 Accept an exact spelling or a decimal number.
975 Prefixes such as % are optional. */
978 decode_reg_name_and_count (const char *asmspec
, int *pnregs
)
980 /* Presume just one register is clobbered. */
987 /* Get rid of confusing prefixes. */
988 asmspec
= strip_reg_name (asmspec
);
990 /* Allow a decimal number as a "register name". */
991 for (i
= strlen (asmspec
) - 1; i
>= 0; i
--)
992 if (! ISDIGIT (asmspec
[i
]))
994 if (asmspec
[0] != 0 && i
< 0)
997 if (i
< FIRST_PSEUDO_REGISTER
&& i
>= 0 && reg_names
[i
][0])
1003 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
1005 && ! strcmp (asmspec
, strip_reg_name (reg_names
[i
])))
1008 #ifdef OVERLAPPING_REGISTER_NAMES
1012 const char *const name
;
1015 } table
[] = OVERLAPPING_REGISTER_NAMES
;
1017 for (i
= 0; i
< (int) ARRAY_SIZE (table
); i
++)
1018 if (table
[i
].name
[0]
1019 && ! strcmp (asmspec
, table
[i
].name
))
1021 *pnregs
= table
[i
].nregs
;
1022 return table
[i
].number
;
1025 #endif /* OVERLAPPING_REGISTER_NAMES */
1027 #ifdef ADDITIONAL_REGISTER_NAMES
1029 static const struct { const char *const name
; const int number
; } table
[]
1030 = ADDITIONAL_REGISTER_NAMES
;
1032 for (i
= 0; i
< (int) ARRAY_SIZE (table
); i
++)
1033 if (table
[i
].name
[0]
1034 && ! strcmp (asmspec
, table
[i
].name
)
1035 && reg_names
[table
[i
].number
][0])
1036 return table
[i
].number
;
1038 #endif /* ADDITIONAL_REGISTER_NAMES */
1040 if (!strcmp (asmspec
, "memory"))
1043 if (!strcmp (asmspec
, "cc"))
1053 decode_reg_name (const char *name
)
1056 return decode_reg_name_and_count (name
, &count
);
1060 /* Return true if DECL's initializer is suitable for a BSS section. */
1063 bss_initializer_p (const_tree decl
, bool named
)
1065 /* Do not put non-common constants into the .bss section, they belong in
1066 a readonly section, except when NAMED is true. */
1067 return ((!TREE_READONLY (decl
) || DECL_COMMON (decl
) || named
)
1068 && (DECL_INITIAL (decl
) == NULL
1069 /* In LTO we have no errors in program; error_mark_node is used
1070 to mark offlined constructors. */
1071 || (DECL_INITIAL (decl
) == error_mark_node
1073 || (flag_zero_initialized_in_bss
1074 && initializer_zerop (DECL_INITIAL (decl
))
1075 /* A decl with the "persistent" attribute applied and
1076 explicitly initialized to 0 should not be treated as a BSS
1078 && !DECL_PERSISTENT_P (decl
))));
1081 /* Compute the alignment of variable specified by DECL.
1082 DONT_OUTPUT_DATA is from assemble_variable. */
1085 align_variable (tree decl
, bool dont_output_data
)
1087 unsigned int align
= DECL_ALIGN (decl
);
1089 /* In the case for initialing an array whose length isn't specified,
1090 where we have not yet been able to do the layout,
1091 figure out the proper alignment now. */
1092 if (dont_output_data
&& DECL_SIZE (decl
) == 0
1093 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
1094 align
= MAX (align
, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl
))));
1096 /* Some object file formats have a maximum alignment which they support.
1097 In particular, a.out format supports a maximum alignment of 4. */
1098 if (align
> MAX_OFILE_ALIGNMENT
)
1100 error ("alignment of %q+D is greater than maximum object "
1101 "file alignment %d", decl
,
1102 MAX_OFILE_ALIGNMENT
/BITS_PER_UNIT
);
1103 align
= MAX_OFILE_ALIGNMENT
;
1106 if (! DECL_USER_ALIGN (decl
))
1108 #ifdef DATA_ABI_ALIGNMENT
1109 unsigned int data_abi_align
1110 = DATA_ABI_ALIGNMENT (TREE_TYPE (decl
), align
);
1111 /* For backwards compatibility, don't assume the ABI alignment for
1113 if (! DECL_THREAD_LOCAL_P (decl
) || data_abi_align
<= BITS_PER_WORD
)
1114 align
= data_abi_align
;
1117 /* On some machines, it is good to increase alignment sometimes.
1118 But as DECL_ALIGN is used both for actually emitting the variable
1119 and for code accessing the variable as guaranteed alignment, we
1120 can only increase the alignment if it is a performance optimization
1121 if the references to it must bind to the current definition. */
1122 if (decl_binds_to_current_def_p (decl
)
1123 && !DECL_VIRTUAL_P (decl
))
1125 #ifdef DATA_ALIGNMENT
1126 unsigned int data_align
= DATA_ALIGNMENT (TREE_TYPE (decl
), align
);
1127 /* Don't increase alignment too much for TLS variables - TLS space
1129 if (! DECL_THREAD_LOCAL_P (decl
) || data_align
<= BITS_PER_WORD
)
1132 if (DECL_INITIAL (decl
) != 0
1133 /* In LTO we have no errors in program; error_mark_node is used
1134 to mark offlined constructors. */
1135 && (in_lto_p
|| DECL_INITIAL (decl
) != error_mark_node
))
1137 unsigned int const_align
1138 = targetm
.constant_alignment (DECL_INITIAL (decl
), align
);
1139 /* Don't increase alignment too much for TLS variables - TLS
1140 space is too precious. */
1141 if (! DECL_THREAD_LOCAL_P (decl
) || const_align
<= BITS_PER_WORD
)
1142 align
= const_align
;
1147 /* Reset the alignment in case we have made it tighter, so we can benefit
1148 from it in get_pointer_alignment. */
1149 SET_DECL_ALIGN (decl
, align
);
1152 /* Return DECL_ALIGN (decl), possibly increased for optimization purposes
1153 beyond what align_variable returned. */
1156 get_variable_align (tree decl
)
1158 unsigned int align
= DECL_ALIGN (decl
);
1160 /* For user aligned vars or static vars align_variable already did
1162 if (DECL_USER_ALIGN (decl
) || !TREE_PUBLIC (decl
))
1165 #ifdef DATA_ABI_ALIGNMENT
1166 if (DECL_THREAD_LOCAL_P (decl
))
1167 align
= DATA_ABI_ALIGNMENT (TREE_TYPE (decl
), align
);
1170 /* For decls that bind to the current definition, align_variable
1171 did also everything, except for not assuming ABI required alignment
1172 of TLS variables. For other vars, increase the alignment here
1173 as an optimization. */
1174 if (!decl_binds_to_current_def_p (decl
))
1176 /* On some machines, it is good to increase alignment sometimes. */
1177 #ifdef DATA_ALIGNMENT
1178 unsigned int data_align
= DATA_ALIGNMENT (TREE_TYPE (decl
), align
);
1179 /* Don't increase alignment too much for TLS variables - TLS space
1181 if (! DECL_THREAD_LOCAL_P (decl
) || data_align
<= BITS_PER_WORD
)
1184 if (DECL_INITIAL (decl
) != 0
1185 /* In LTO we have no errors in program; error_mark_node is used
1186 to mark offlined constructors. */
1187 && (in_lto_p
|| DECL_INITIAL (decl
) != error_mark_node
))
1189 unsigned int const_align
1190 = targetm
.constant_alignment (DECL_INITIAL (decl
), align
);
1191 /* Don't increase alignment too much for TLS variables - TLS space
1193 if (! DECL_THREAD_LOCAL_P (decl
) || const_align
<= BITS_PER_WORD
)
1194 align
= const_align
;
1201 /* Compute reloc for get_variable_section. The return value
1202 is a mask for which bit 1 indicates a global relocation, and bit 0
1203 indicates a local relocation. */
1206 compute_reloc_for_var (tree decl
)
1210 if (DECL_INITIAL (decl
) == error_mark_node
)
1211 reloc
= contains_pointers_p (TREE_TYPE (decl
)) ? 3 : 0;
1212 else if (DECL_INITIAL (decl
))
1213 reloc
= compute_reloc_for_constant (DECL_INITIAL (decl
));
1220 /* Return the section into which the given VAR_DECL or CONST_DECL
1221 should be placed. PREFER_NOSWITCH_P is true if a noswitch
1222 section should be used wherever possible. */
1225 get_variable_section (tree decl
, bool prefer_noswitch_p
)
1227 addr_space_t as
= ADDR_SPACE_GENERIC
;
1229 varpool_node
*vnode
= varpool_node::get (decl
);
1232 vnode
= vnode
->ultimate_alias_target ();
1236 if (TREE_TYPE (decl
) != error_mark_node
)
1237 as
= TYPE_ADDR_SPACE (TREE_TYPE (decl
));
1239 /* We need the constructor to figure out reloc flag. */
1241 vnode
->get_constructor ();
1243 if (DECL_COMMON (decl
)
1244 && !lookup_attribute ("retain", DECL_ATTRIBUTES (decl
)))
1246 /* If the decl has been given an explicit section name, or it resides
1247 in a non-generic address space, then it isn't common, and shouldn't
1248 be handled as such. */
1249 gcc_assert (DECL_SECTION_NAME (decl
) == NULL
1250 && ADDR_SPACE_GENERIC_P (as
));
1251 if (DECL_THREAD_LOCAL_P (decl
))
1252 return tls_comm_section
;
1253 else if (TREE_PUBLIC (decl
) && bss_initializer_p (decl
))
1254 return comm_section
;
1257 reloc
= compute_reloc_for_var (decl
);
1259 resolve_unique_section (decl
, reloc
, flag_data_sections
);
1260 if (IN_NAMED_SECTION (decl
))
1262 section
*sect
= get_named_section (decl
, NULL
, reloc
);
1264 if ((sect
->common
.flags
& SECTION_BSS
)
1265 && !bss_initializer_p (decl
, true))
1267 error_at (DECL_SOURCE_LOCATION (decl
),
1268 "only zero initializers are allowed in section %qs",
1270 DECL_INITIAL (decl
) = error_mark_node
;
1275 if (ADDR_SPACE_GENERIC_P (as
)
1276 && !DECL_THREAD_LOCAL_P (decl
)
1277 && !DECL_NOINIT_P (decl
)
1278 && !(prefer_noswitch_p
&& targetm
.have_switchable_bss_sections
)
1279 && bss_initializer_p (decl
))
1281 if (!TREE_PUBLIC (decl
)
1282 && !((flag_sanitize
& SANITIZE_ADDRESS
)
1283 && asan_protect_global (decl
)))
1284 return lcomm_section
;
1285 if (bss_noswitch_section
)
1286 return bss_noswitch_section
;
1289 return targetm
.asm_out
.select_section (decl
, reloc
,
1290 get_variable_align (decl
));
1293 /* Return the block into which object_block DECL should be placed. */
1295 static struct object_block
*
1296 get_block_for_decl (tree decl
)
1302 /* The object must be defined in this translation unit. */
1303 if (DECL_EXTERNAL (decl
))
1306 /* There's no point using object blocks for something that is
1307 isolated by definition. */
1308 if (DECL_COMDAT_GROUP (decl
))
1312 /* We can only calculate block offsets if the decl has a known
1314 if (DECL_SIZE_UNIT (decl
) == NULL
)
1316 if (!tree_fits_uhwi_p (DECL_SIZE_UNIT (decl
)))
1319 /* Find out which section should contain DECL. We cannot put it into
1320 an object block if it requires a standalone definition. */
1322 align_variable (decl
, 0);
1323 sect
= get_variable_section (decl
, true);
1324 if (SECTION_STYLE (sect
) == SECTION_NOSWITCH
)
1327 if (bool (lookup_attribute ("retain", DECL_ATTRIBUTES (decl
)))
1328 != bool (sect
->common
.flags
& SECTION_RETAIN
))
1331 return get_block_for_section (sect
);
1334 /* Make sure block symbol SYMBOL is in block BLOCK. */
1337 change_symbol_block (rtx symbol
, struct object_block
*block
)
1339 if (block
!= SYMBOL_REF_BLOCK (symbol
))
1341 gcc_assert (SYMBOL_REF_BLOCK_OFFSET (symbol
) < 0);
1342 SYMBOL_REF_BLOCK (symbol
) = block
;
1346 /* Return true if it is possible to put DECL in an object_block. */
1349 use_blocks_for_decl_p (tree decl
)
1351 struct symtab_node
*snode
;
1353 /* Don't create object blocks if each DECL is placed into a separate
1354 section because that will uselessly create a section anchor for
1356 if (flag_data_sections
)
1359 /* Only data DECLs can be placed into object blocks. */
1360 if (!VAR_P (decl
) && TREE_CODE (decl
) != CONST_DECL
)
1363 /* DECL_INITIAL (decl) set to decl is a hack used for some decls that
1364 are never used from code directly and we never want object block handling
1366 if (DECL_INITIAL (decl
) == decl
)
1369 /* If this decl is an alias, then we don't want to emit a
1372 && (snode
= symtab_node::get (decl
)) != NULL
1376 return targetm
.use_blocks_for_decl_p (decl
);
1379 /* Follow the IDENTIFIER_TRANSPARENT_ALIAS chain starting at *ALIAS
1380 until we find an identifier that is not itself a transparent alias.
1381 Modify the alias passed to it by reference (and all aliases on the
1382 way to the ultimate target), such that they do not have to be
1383 followed again, and return the ultimate target of the alias
1387 ultimate_transparent_alias_target (tree
*alias
)
1389 tree target
= *alias
;
1391 if (IDENTIFIER_TRANSPARENT_ALIAS (target
))
1393 gcc_assert (TREE_CHAIN (target
));
1394 target
= ultimate_transparent_alias_target (&TREE_CHAIN (target
));
1395 gcc_assert (! IDENTIFIER_TRANSPARENT_ALIAS (target
)
1396 && ! TREE_CHAIN (target
));
1403 /* Return true if REGNUM is mentioned in ELIMINABLE_REGS as a from
1407 eliminable_regno_p (int regnum
)
1413 } eliminables
[] = ELIMINABLE_REGS
;
1414 for (size_t i
= 0; i
< ARRAY_SIZE (eliminables
); i
++)
1415 if (regnum
== eliminables
[i
].from
)
1420 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
1421 have static storage duration. In other words, it should not be an
1422 automatic variable, including PARM_DECLs.
1424 There is, however, one exception: this function handles variables
1425 explicitly placed in a particular register by the user.
1427 This is never called for PARM_DECL nodes. */
1430 make_decl_rtl (tree decl
)
1432 const char *name
= 0;
1437 /* Check that we are not being given an automatic variable. */
1438 gcc_assert (TREE_CODE (decl
) != PARM_DECL
1439 && TREE_CODE (decl
) != RESULT_DECL
);
1441 /* A weak alias has TREE_PUBLIC set but not the other bits. */
1442 gcc_assert (!VAR_P (decl
)
1443 || TREE_STATIC (decl
)
1444 || TREE_PUBLIC (decl
)
1445 || DECL_EXTERNAL (decl
)
1446 || DECL_REGISTER (decl
));
1448 /* And that we were not given a type or a label. */
1449 gcc_assert (TREE_CODE (decl
) != TYPE_DECL
1450 && TREE_CODE (decl
) != LABEL_DECL
);
1452 /* For a duplicate declaration, we can be called twice on the
1453 same DECL node. Don't discard the RTL already made. */
1454 if (DECL_RTL_SET_P (decl
))
1456 /* If the old RTL had the wrong mode, fix the mode. */
1457 x
= DECL_RTL (decl
);
1458 if (GET_MODE (x
) != DECL_MODE (decl
))
1459 SET_DECL_RTL (decl
, adjust_address_nv (x
, DECL_MODE (decl
), 0));
1461 if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
))
1464 /* ??? Another way to do this would be to maintain a hashed
1465 table of such critters. Instead of adding stuff to a DECL
1466 to give certain attributes to it, we could use an external
1467 hash map from DECL to set of attributes. */
1469 /* Let the target reassign the RTL if it wants.
1470 This is necessary, for example, when one machine specific
1471 decl attribute overrides another. */
1472 targetm
.encode_section_info (decl
, DECL_RTL (decl
), false);
1474 /* If the symbol has a SYMBOL_REF_BLOCK field, update it based
1475 on the new decl information. */
1477 && GET_CODE (XEXP (x
, 0)) == SYMBOL_REF
1478 && SYMBOL_REF_HAS_BLOCK_INFO_P (XEXP (x
, 0)))
1479 change_symbol_block (XEXP (x
, 0), get_block_for_decl (decl
));
1484 /* If this variable belongs to the global constant pool, retrieve the
1485 pre-computed RTL or recompute it in LTO mode. */
1486 if (VAR_P (decl
) && DECL_IN_CONSTANT_POOL (decl
))
1488 SET_DECL_RTL (decl
, output_constant_def (DECL_INITIAL (decl
), 1));
1492 id
= DECL_ASSEMBLER_NAME (decl
);
1493 name
= IDENTIFIER_POINTER (id
);
1495 if (name
[0] != '*' && TREE_CODE (decl
) != FUNCTION_DECL
1496 && DECL_REGISTER (decl
))
1498 error ("register name not specified for %q+D", decl
);
1500 else if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
))
1502 const char *asmspec
= name
+1;
1503 machine_mode mode
= DECL_MODE (decl
);
1504 reg_number
= decode_reg_name (asmspec
);
1505 /* First detect errors in declaring global registers. */
1506 if (reg_number
== -1)
1507 error ("register name not specified for %q+D", decl
);
1508 else if (reg_number
< 0)
1509 error ("invalid register name for %q+D", decl
);
1510 else if (mode
== BLKmode
)
1511 error ("data type of %q+D isn%'t suitable for a register",
1513 else if (!in_hard_reg_set_p (accessible_reg_set
, mode
, reg_number
))
1514 error ("the register specified for %q+D cannot be accessed"
1515 " by the current target", decl
);
1516 else if (!in_hard_reg_set_p (operand_reg_set
, mode
, reg_number
))
1517 error ("the register specified for %q+D is not general enough"
1518 " to be used as a register variable", decl
);
1519 else if (!targetm
.hard_regno_mode_ok (reg_number
, mode
))
1520 error ("register specified for %q+D isn%'t suitable for data type",
1522 else if (reg_number
!= HARD_FRAME_POINTER_REGNUM
1523 && (reg_number
== FRAME_POINTER_REGNUM
1524 #ifdef RETURN_ADDRESS_POINTER_REGNUM
1525 || reg_number
== RETURN_ADDRESS_POINTER_REGNUM
1527 || reg_number
== ARG_POINTER_REGNUM
)
1528 && eliminable_regno_p (reg_number
))
1529 error ("register specified for %q+D is an internal GCC "
1530 "implementation detail", decl
);
1531 /* Now handle properly declared static register variables. */
1536 if (DECL_INITIAL (decl
) != 0 && TREE_STATIC (decl
))
1538 DECL_INITIAL (decl
) = 0;
1539 error ("global register variable has initial value");
1541 if (TREE_THIS_VOLATILE (decl
))
1542 warning (OPT_Wvolatile_register_var
,
1543 "optimization may eliminate reads and/or "
1544 "writes to register variables");
1546 /* If the user specified one of the eliminables registers here,
1547 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
1548 confused with that register and be eliminated. This usage is
1549 somewhat suspect... */
1551 SET_DECL_RTL (decl
, gen_raw_REG (mode
, reg_number
));
1552 ORIGINAL_REGNO (DECL_RTL (decl
)) = reg_number
;
1553 REG_USERVAR_P (DECL_RTL (decl
)) = 1;
1555 if (TREE_STATIC (decl
))
1557 /* Make this register global, so not usable for anything
1559 #ifdef ASM_DECLARE_REGISTER_GLOBAL
1560 name
= IDENTIFIER_POINTER (DECL_NAME (decl
));
1561 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file
, decl
, reg_number
, name
);
1563 nregs
= hard_regno_nregs (reg_number
, mode
);
1565 globalize_reg (decl
, reg_number
+ --nregs
);
1568 /* As a register variable, it has no section. */
1571 /* Avoid internal errors from invalid register
1573 SET_DECL_ASSEMBLER_NAME (decl
, NULL_TREE
);
1574 DECL_HARD_REGISTER (decl
) = 0;
1575 /* Also avoid SSA inconsistencies by pretending this is an external
1577 DECL_EXTERNAL (decl
) = 1;
1580 /* Now handle ordinary static variables and functions (in memory).
1581 Also handle vars declared register invalidly. */
1582 else if (name
[0] == '*')
1584 #ifdef REGISTER_PREFIX
1585 if (strlen (REGISTER_PREFIX
) != 0)
1587 reg_number
= decode_reg_name (name
);
1588 if (reg_number
>= 0 || reg_number
== -3)
1589 error ("register name given for non-register variable %q+D", decl
);
1594 /* Specifying a section attribute on a variable forces it into a
1595 non-.bss section, and thus it cannot be common. */
1596 /* FIXME: In general this code should not be necessary because
1597 visibility pass is doing the same work. But notice_global_symbol
1598 is called early and it needs to make DECL_RTL to get the name.
1599 we take care of recomputing the DECL_RTL after visibility is changed. */
1601 && (TREE_STATIC (decl
) || DECL_EXTERNAL (decl
))
1602 && DECL_SECTION_NAME (decl
) != NULL
1603 && DECL_INITIAL (decl
) == NULL_TREE
1604 && DECL_COMMON (decl
))
1605 DECL_COMMON (decl
) = 0;
1607 /* Variables can't be both common and weak. */
1608 if (VAR_P (decl
) && DECL_WEAK (decl
))
1609 DECL_COMMON (decl
) = 0;
1611 if (use_object_blocks_p () && use_blocks_for_decl_p (decl
))
1612 x
= create_block_symbol (name
, get_block_for_decl (decl
), -1);
1615 machine_mode address_mode
= Pmode
;
1616 if (TREE_TYPE (decl
) != error_mark_node
)
1618 addr_space_t as
= TYPE_ADDR_SPACE (TREE_TYPE (decl
));
1619 address_mode
= targetm
.addr_space
.address_mode (as
);
1621 x
= gen_rtx_SYMBOL_REF (address_mode
, name
);
1623 SYMBOL_REF_WEAK (x
) = DECL_WEAK (decl
);
1624 SET_SYMBOL_REF_DECL (x
, decl
);
1626 x
= gen_rtx_MEM (DECL_MODE (decl
), x
);
1627 if (TREE_CODE (decl
) != FUNCTION_DECL
)
1628 set_mem_attributes (x
, decl
, 1);
1629 SET_DECL_RTL (decl
, x
);
1631 /* Optionally set flags or add text to the name to record information
1632 such as that it is a function name.
1633 If the name is changed, the macro ASM_OUTPUT_LABELREF
1634 will have to know how to strip this information. */
1635 targetm
.encode_section_info (decl
, DECL_RTL (decl
), true);
1638 /* Like make_decl_rtl, but inhibit creation of new alias sets when
1639 calling make_decl_rtl. Also, reset DECL_RTL before returning the
1643 make_decl_rtl_for_debug (tree decl
)
1645 unsigned int save_aliasing_flag
;
1648 if (DECL_RTL_SET_P (decl
))
1649 return DECL_RTL (decl
);
1651 /* Kludge alert! Somewhere down the call chain, make_decl_rtl will
1652 call new_alias_set. If running with -fcompare-debug, sometimes
1653 we do not want to create alias sets that will throw the alias
1654 numbers off in the comparison dumps. So... clearing
1655 flag_strict_aliasing will keep new_alias_set() from creating a
1657 save_aliasing_flag
= flag_strict_aliasing
;
1658 flag_strict_aliasing
= 0;
1660 rtl
= DECL_RTL (decl
);
1661 /* Reset DECL_RTL back, as various parts of the compiler expects
1662 DECL_RTL set meaning it is actually going to be output. */
1663 SET_DECL_RTL (decl
, NULL
);
1665 flag_strict_aliasing
= save_aliasing_flag
;
1669 /* Output a string of literal assembler code
1670 for an `asm' keyword used between functions. */
1673 assemble_asm (tree string
)
1678 if (TREE_CODE (string
) == ADDR_EXPR
)
1679 string
= TREE_OPERAND (string
, 0);
1681 p
= TREE_STRING_POINTER (string
);
1682 fprintf (asm_out_file
, "%s%s\n", p
[0] == '\t' ? "" : "\t", p
);
1685 /* Write the address of the entity given by SYMBOL to SEC. */
1687 assemble_addr_to_section (rtx symbol
, section
*sec
)
1689 switch_to_section (sec
);
1690 assemble_align (POINTER_SIZE
);
1691 assemble_integer (symbol
, POINTER_SIZE_UNITS
, POINTER_SIZE
, 1);
1694 /* Return the numbered .ctors.N (if CONSTRUCTOR_P) or .dtors.N (if
1695 not) section for PRIORITY. */
1697 get_cdtor_priority_section (int priority
, bool constructor_p
)
1699 /* Buffer conservatively large enough for the full range of a 32-bit
1700 int plus the text below. */
1703 /* ??? This only works reliably with the GNU linker. */
1704 sprintf (buf
, "%s.%.5u",
1705 constructor_p
? ".ctors" : ".dtors",
1706 /* Invert the numbering so the linker puts us in the proper
1707 order; constructors are run from right to left, and the
1708 linker sorts in increasing order. */
1709 MAX_INIT_PRIORITY
- priority
);
1710 return get_section (buf
, SECTION_WRITE
, NULL
);
1714 default_named_section_asm_out_destructor (rtx symbol
, int priority
)
1718 if (priority
!= DEFAULT_INIT_PRIORITY
)
1719 sec
= get_cdtor_priority_section (priority
,
1720 /*constructor_p=*/false);
1722 sec
= get_section (".dtors", SECTION_WRITE
, NULL
);
1724 assemble_addr_to_section (symbol
, sec
);
1727 #ifdef DTORS_SECTION_ASM_OP
1729 default_dtor_section_asm_out_destructor (rtx symbol
,
1730 int priority ATTRIBUTE_UNUSED
)
1732 assemble_addr_to_section (symbol
, dtors_section
);
1737 default_named_section_asm_out_constructor (rtx symbol
, int priority
)
1741 if (priority
!= DEFAULT_INIT_PRIORITY
)
1742 sec
= get_cdtor_priority_section (priority
,
1743 /*constructor_p=*/true);
1745 sec
= get_section (".ctors", SECTION_WRITE
, NULL
);
1747 assemble_addr_to_section (symbol
, sec
);
1750 #ifdef CTORS_SECTION_ASM_OP
1752 default_ctor_section_asm_out_constructor (rtx symbol
,
1753 int priority ATTRIBUTE_UNUSED
)
1755 assemble_addr_to_section (symbol
, ctors_section
);
1759 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1760 a nonzero value if the constant pool should be output before the
1761 start of the function, or a zero value if the pool should output
1762 after the end of the function. The default is to put it before the
1765 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1766 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1769 /* DECL is an object (either VAR_DECL or FUNCTION_DECL) which is going
1770 to be output to assembler.
1771 Set first_global_object_name and weak_global_object_name as appropriate. */
1774 notice_global_symbol (tree decl
)
1776 const char **t
= &first_global_object_name
;
1778 if (first_global_object_name
1779 || !TREE_PUBLIC (decl
)
1780 || DECL_EXTERNAL (decl
)
1781 || !DECL_NAME (decl
)
1782 || (VAR_P (decl
) && DECL_HARD_REGISTER (decl
))
1783 || (TREE_CODE (decl
) != FUNCTION_DECL
1785 || (DECL_COMMON (decl
)
1786 && (DECL_INITIAL (decl
) == 0
1787 || DECL_INITIAL (decl
) == error_mark_node
)))))
1790 /* We win when global object is found, but it is useful to know about weak
1791 symbol as well so we can produce nicer unique names. */
1792 if (DECL_WEAK (decl
) || DECL_ONE_ONLY (decl
) || flag_shlib
)
1793 t
= &weak_global_object_name
;
1797 tree id
= DECL_ASSEMBLER_NAME (decl
);
1798 ultimate_transparent_alias_target (&id
);
1799 *t
= ggc_strdup (targetm
.strip_name_encoding (IDENTIFIER_POINTER (id
)));
1803 /* If not using flag_reorder_blocks_and_partition, decide early whether the
1804 current function goes into the cold section, so that targets can use
1805 current_function_section during RTL expansion. DECL describes the
1809 decide_function_section (tree decl
)
1811 first_function_block_is_cold
= false;
1813 if (DECL_SECTION_NAME (decl
))
1815 struct cgraph_node
*node
= cgraph_node::get (current_function_decl
);
1816 /* Calls to function_section rely on first_function_block_is_cold
1818 first_function_block_is_cold
= (node
1820 == NODE_FREQUENCY_UNLIKELY_EXECUTED
);
1823 in_cold_section_p
= first_function_block_is_cold
;
1826 /* Get the function's name, as described by its RTL. This may be
1827 different from the DECL_NAME name used in the source file. */
1829 get_fnname_from_decl (tree decl
)
1831 rtx x
= DECL_RTL (decl
);
1832 gcc_assert (MEM_P (x
));
1834 gcc_assert (GET_CODE (x
) == SYMBOL_REF
);
1838 /* Output assembler code for the constant pool of a function and associated
1839 with defining the name of the function. DECL describes the function.
1840 NAME is the function's name. For the constant pool, we use the current
1841 constant pool data. */
1844 assemble_start_function (tree decl
, const char *fnname
)
1847 char tmp_label
[100];
1848 bool hot_label_written
= false;
1850 if (crtl
->has_bb_partition
)
1852 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LHOTB", const_labelno
);
1853 crtl
->subsections
.hot_section_label
= ggc_strdup (tmp_label
);
1854 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LCOLDB", const_labelno
);
1855 crtl
->subsections
.cold_section_label
= ggc_strdup (tmp_label
);
1856 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LHOTE", const_labelno
);
1857 crtl
->subsections
.hot_section_end_label
= ggc_strdup (tmp_label
);
1858 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LCOLDE", const_labelno
);
1859 crtl
->subsections
.cold_section_end_label
= ggc_strdup (tmp_label
);
1861 cold_function_name
= NULL_TREE
;
1865 crtl
->subsections
.hot_section_label
= NULL
;
1866 crtl
->subsections
.cold_section_label
= NULL
;
1867 crtl
->subsections
.hot_section_end_label
= NULL
;
1868 crtl
->subsections
.cold_section_end_label
= NULL
;
1871 /* The following code does not need preprocessing in the assembler. */
1875 if (CONSTANT_POOL_BEFORE_FUNCTION
)
1876 output_constant_pool (fnname
, decl
);
1878 align
= symtab_node::get (decl
)->definition_alignment ();
1880 /* Make sure the not and cold text (code) sections are properly
1881 aligned. This is necessary here in the case where the function
1882 has both hot and cold sections, because we don't want to re-set
1883 the alignment when the section switch happens mid-function. */
1885 if (crtl
->has_bb_partition
)
1887 first_function_block_is_cold
= false;
1889 switch_to_section (unlikely_text_section ());
1890 assemble_align (align
);
1891 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.cold_section_label
);
1893 /* When the function starts with a cold section, we need to explicitly
1894 align the hot section and write out the hot section label.
1895 But if the current function is a thunk, we do not have a CFG. */
1897 && BB_PARTITION (ENTRY_BLOCK_PTR_FOR_FN (cfun
)->next_bb
) == BB_COLD_PARTITION
)
1899 switch_to_section (text_section
);
1900 assemble_align (align
);
1901 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.hot_section_label
);
1902 hot_label_written
= true;
1903 first_function_block_is_cold
= true;
1905 in_cold_section_p
= first_function_block_is_cold
;
1909 /* Switch to the correct text section for the start of the function. */
1911 switch_to_section (function_section (decl
), decl
);
1912 if (crtl
->has_bb_partition
&& !hot_label_written
)
1913 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.hot_section_label
);
1915 /* Tell assembler to move to target machine's alignment for functions. */
1916 align
= floor_log2 (align
/ BITS_PER_UNIT
);
1919 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
1922 /* Handle a user-specified function alignment.
1923 Note that we still need to align to DECL_ALIGN, as above,
1924 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1925 if (! DECL_USER_ALIGN (decl
)
1926 && align_functions
.levels
[0].log
> align
1927 && optimize_function_for_speed_p (cfun
))
1929 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1930 int align_log
= align_functions
.levels
[0].log
;
1932 int max_skip
= align_functions
.levels
[0].maxskip
;
1933 if (flag_limit_function_alignment
&& crtl
->max_insn_address
> 0
1934 && max_skip
>= crtl
->max_insn_address
)
1935 max_skip
= crtl
->max_insn_address
- 1;
1937 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1938 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file
, align_log
, max_skip
);
1939 if (max_skip
== align_functions
.levels
[0].maxskip
)
1940 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file
,
1941 align_functions
.levels
[1].log
,
1942 align_functions
.levels
[1].maxskip
);
1944 ASM_OUTPUT_ALIGN (asm_out_file
, align_functions
.levels
[0].log
);
1948 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1949 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file
, fnname
);
1952 if (!DECL_IGNORED_P (decl
))
1953 (*debug_hooks
->begin_function
) (decl
);
1955 /* Make function name accessible from other files, if appropriate. */
1957 if (TREE_PUBLIC (decl
))
1959 notice_global_symbol (decl
);
1961 globalize_decl (decl
);
1963 maybe_assemble_visibility (decl
);
1966 if (DECL_PRESERVE_P (decl
))
1967 targetm
.asm_out
.mark_decl_preserved (fnname
);
1969 unsigned short patch_area_size
= crtl
->patch_area_size
;
1970 unsigned short patch_area_entry
= crtl
->patch_area_entry
;
1972 /* Emit the patching area before the entry label, if any. */
1973 if (patch_area_entry
> 0)
1974 targetm
.asm_out
.print_patchable_function_entry (asm_out_file
,
1975 patch_area_entry
, true);
1977 /* Do any machine/system dependent processing of the function name. */
1978 #ifdef ASM_DECLARE_FUNCTION_NAME
1979 ASM_DECLARE_FUNCTION_NAME (asm_out_file
, fnname
, current_function_decl
);
1981 /* Standard thing is just output label for the function. */
1982 ASM_OUTPUT_FUNCTION_LABEL (asm_out_file
, fnname
, current_function_decl
);
1983 #endif /* ASM_DECLARE_FUNCTION_NAME */
1985 /* And the area after the label. Record it if we haven't done so yet. */
1986 if (patch_area_size
> patch_area_entry
)
1987 targetm
.asm_out
.print_patchable_function_entry (asm_out_file
,
1990 patch_area_entry
== 0);
1992 if (lookup_attribute ("no_split_stack", DECL_ATTRIBUTES (decl
)))
1993 saw_no_split_stack
= true;
1996 /* Output assembler code associated with defining the size of the
1997 function. DECL describes the function. NAME is the function's name. */
2000 assemble_end_function (tree decl
, const char *fnname ATTRIBUTE_UNUSED
)
2002 #ifdef ASM_DECLARE_FUNCTION_SIZE
2003 /* We could have switched section in the middle of the function. */
2004 if (crtl
->has_bb_partition
)
2005 switch_to_section (function_section (decl
));
2006 ASM_DECLARE_FUNCTION_SIZE (asm_out_file
, fnname
, decl
);
2008 if (! CONSTANT_POOL_BEFORE_FUNCTION
)
2010 output_constant_pool (fnname
, decl
);
2011 switch_to_section (function_section (decl
)); /* need to switch back */
2013 /* Output labels for end of hot/cold text sections (to be used by
2015 if (crtl
->has_bb_partition
)
2017 section
*save_text_section
;
2019 save_text_section
= in_section
;
2020 switch_to_section (unlikely_text_section ());
2021 #ifdef ASM_DECLARE_COLD_FUNCTION_SIZE
2022 if (cold_function_name
!= NULL_TREE
)
2023 ASM_DECLARE_COLD_FUNCTION_SIZE (asm_out_file
,
2024 IDENTIFIER_POINTER (cold_function_name
),
2027 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.cold_section_end_label
);
2028 if (first_function_block_is_cold
)
2029 switch_to_section (text_section
);
2031 switch_to_section (function_section (decl
));
2032 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.hot_section_end_label
);
2033 switch_to_section (save_text_section
);
2037 /* Assemble code to leave SIZE bytes of zeros. */
2040 assemble_zeros (unsigned HOST_WIDE_INT size
)
2042 /* Do no output if -fsyntax-only. */
2043 if (flag_syntax_only
)
2046 #ifdef ASM_NO_SKIP_IN_TEXT
2047 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
2048 so we must output 0s explicitly in the text section. */
2049 if (ASM_NO_SKIP_IN_TEXT
&& (in_section
->common
.flags
& SECTION_CODE
) != 0)
2051 unsigned HOST_WIDE_INT i
;
2052 for (i
= 0; i
< size
; i
++)
2053 assemble_integer (const0_rtx
, 1, BITS_PER_UNIT
, 1);
2058 ASM_OUTPUT_SKIP (asm_out_file
, size
);
2061 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
2064 assemble_align (unsigned int align
)
2066 if (align
> BITS_PER_UNIT
)
2068 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
2072 /* Assemble a string constant with the specified C string as contents. */
2075 assemble_string (const char *p
, int size
)
2080 /* If the string is very long, split it up. */
2084 int thissize
= size
- pos
;
2085 if (thissize
> maximum
)
2088 ASM_OUTPUT_ASCII (asm_out_file
, p
, thissize
);
2096 /* A noswitch_section_callback for lcomm_section. */
2099 emit_local (tree decl ATTRIBUTE_UNUSED
,
2100 const char *name ATTRIBUTE_UNUSED
,
2101 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
2102 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
2104 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
2105 unsigned int align
= symtab_node::get (decl
)->definition_alignment ();
2106 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file
, decl
, name
,
2109 #elif defined ASM_OUTPUT_ALIGNED_LOCAL
2110 unsigned int align
= symtab_node::get (decl
)->definition_alignment ();
2111 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file
, name
, size
, align
);
2114 ASM_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
2119 /* A noswitch_section_callback for bss_noswitch_section. */
2121 #if defined ASM_OUTPUT_ALIGNED_BSS
2123 emit_bss (tree decl ATTRIBUTE_UNUSED
,
2124 const char *name ATTRIBUTE_UNUSED
,
2125 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
2126 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
2128 ASM_OUTPUT_ALIGNED_BSS (asm_out_file
, decl
, name
, size
,
2129 get_variable_align (decl
));
2134 /* A noswitch_section_callback for comm_section. */
2137 emit_common (tree decl ATTRIBUTE_UNUSED
,
2138 const char *name ATTRIBUTE_UNUSED
,
2139 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
2140 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
2142 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
2143 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file
, decl
, name
,
2144 size
, get_variable_align (decl
));
2146 #elif defined ASM_OUTPUT_ALIGNED_COMMON
2147 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file
, name
, size
,
2148 get_variable_align (decl
));
2151 ASM_OUTPUT_COMMON (asm_out_file
, name
, size
, rounded
);
2156 /* A noswitch_section_callback for tls_comm_section. */
2159 emit_tls_common (tree decl ATTRIBUTE_UNUSED
,
2160 const char *name ATTRIBUTE_UNUSED
,
2161 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
2162 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
2164 #ifdef ASM_OUTPUT_TLS_COMMON
2165 ASM_OUTPUT_TLS_COMMON (asm_out_file
, decl
, name
, size
);
2168 sorry ("thread-local COMMON data not implemented");
2173 /* Assemble DECL given that it belongs in SECTION_NOSWITCH section SECT.
2174 NAME is the name of DECL's SYMBOL_REF. */
2177 assemble_noswitch_variable (tree decl
, const char *name
, section
*sect
,
2180 unsigned HOST_WIDE_INT size
, rounded
;
2182 size
= tree_to_uhwi (DECL_SIZE_UNIT (decl
));
2185 if ((flag_sanitize
& SANITIZE_ADDRESS
) && asan_protect_global (decl
))
2186 size
+= asan_red_zone_size (size
);
2188 /* Don't allocate zero bytes of common,
2189 since that means "undefined external" in the linker. */
2193 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2194 so that each uninitialized object starts on such a boundary. */
2195 rounded
+= (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1;
2196 rounded
= (rounded
/ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
2197 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
2199 if (!sect
->noswitch
.callback (decl
, name
, size
, rounded
)
2200 && (unsigned HOST_WIDE_INT
) (align
/ BITS_PER_UNIT
) > rounded
)
2201 error ("requested alignment for %q+D is greater than "
2202 "implemented alignment of %wu", decl
, rounded
);
2205 /* A subroutine of assemble_variable. Output the label and contents of
2206 DECL, whose address is a SYMBOL_REF with name NAME. DONT_OUTPUT_DATA
2207 is as for assemble_variable. */
2210 assemble_variable_contents (tree decl
, const char *name
,
2211 bool dont_output_data
, bool merge_strings
)
2213 /* Do any machine/system dependent processing of the object. */
2214 #ifdef ASM_DECLARE_OBJECT_NAME
2215 last_assemble_variable_decl
= decl
;
2216 ASM_DECLARE_OBJECT_NAME (asm_out_file
, name
, decl
);
2218 /* Standard thing is just output label for the object. */
2219 ASM_OUTPUT_LABEL (asm_out_file
, name
);
2220 #endif /* ASM_DECLARE_OBJECT_NAME */
2222 if (!dont_output_data
)
2224 /* Caller is supposed to use varpool_get_constructor when it wants
2225 to output the body. */
2226 gcc_assert (!in_lto_p
|| DECL_INITIAL (decl
) != error_mark_node
);
2227 if (DECL_INITIAL (decl
)
2228 && DECL_INITIAL (decl
) != error_mark_node
2229 && !initializer_zerop (DECL_INITIAL (decl
)))
2230 /* Output the actual data. */
2231 output_constant (DECL_INITIAL (decl
),
2232 tree_to_uhwi (DECL_SIZE_UNIT (decl
)),
2233 get_variable_align (decl
),
2234 false, merge_strings
);
2236 /* Leave space for it. */
2237 assemble_zeros (tree_to_uhwi (DECL_SIZE_UNIT (decl
)));
2238 targetm
.asm_out
.decl_end ();
2242 /* Write out assembly for the variable DECL, which is not defined in
2243 the current translation unit. */
2245 assemble_undefined_decl (tree decl
)
2247 const char *name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
2248 targetm
.asm_out
.assemble_undefined_decl (asm_out_file
, name
, decl
);
2251 /* Assemble everything that is needed for a variable or function declaration.
2252 Not used for automatic variables, and not used for function definitions.
2253 Should not be called for variables of incomplete structure type.
2255 TOP_LEVEL is nonzero if this variable has file scope.
2256 AT_END is nonzero if this is the special handling, at end of compilation,
2257 to define things that have had only tentative definitions.
2258 DONT_OUTPUT_DATA if nonzero means don't actually output the
2259 initial value (that will be done by the caller). */
2262 assemble_variable (tree decl
, int top_level ATTRIBUTE_UNUSED
,
2263 int at_end ATTRIBUTE_UNUSED
, int dont_output_data
)
2266 rtx decl_rtl
, symbol
;
2269 bool asan_protected
= false;
2271 /* This function is supposed to handle VARIABLES. Ensure we have one. */
2272 gcc_assert (VAR_P (decl
));
2274 /* Emulated TLS had better not get this far. */
2275 gcc_checking_assert (targetm
.have_tls
|| !DECL_THREAD_LOCAL_P (decl
));
2277 last_assemble_variable_decl
= 0;
2279 /* Normally no need to say anything here for external references,
2280 since assemble_external is called by the language-specific code
2281 when a declaration is first seen. */
2283 if (DECL_EXTERNAL (decl
))
2286 /* Do nothing for global register variables. */
2287 if (DECL_RTL_SET_P (decl
) && REG_P (DECL_RTL (decl
)))
2289 TREE_ASM_WRITTEN (decl
) = 1;
2293 /* If type was incomplete when the variable was declared,
2294 see if it is complete now. */
2296 if (DECL_SIZE (decl
) == 0)
2297 layout_decl (decl
, 0);
2299 /* Still incomplete => don't allocate it; treat the tentative defn
2300 (which is what it must have been) as an `extern' reference. */
2302 if (!dont_output_data
&& DECL_SIZE (decl
) == 0)
2304 error ("storage size of %q+D isn%'t known", decl
);
2305 TREE_ASM_WRITTEN (decl
) = 1;
2309 /* The first declaration of a variable that comes through this function
2310 decides whether it is global (in C, has external linkage)
2311 or local (in C, has internal linkage). So do nothing more
2312 if this function has already run. */
2314 if (TREE_ASM_WRITTEN (decl
))
2317 /* Make sure targetm.encode_section_info is invoked before we set
2319 decl_rtl
= DECL_RTL (decl
);
2321 TREE_ASM_WRITTEN (decl
) = 1;
2323 /* Do no output if -fsyntax-only. */
2324 if (flag_syntax_only
)
2327 if (! dont_output_data
2328 && ! valid_constant_size_p (DECL_SIZE_UNIT (decl
)))
2330 error ("size of variable %q+D is too large", decl
);
2334 gcc_assert (MEM_P (decl_rtl
));
2335 gcc_assert (GET_CODE (XEXP (decl_rtl
, 0)) == SYMBOL_REF
);
2336 symbol
= XEXP (decl_rtl
, 0);
2338 /* If this symbol belongs to the tree constant pool, output the constant
2339 if it hasn't already been written. */
2340 if (TREE_CONSTANT_POOL_ADDRESS_P (symbol
))
2342 tree decl
= SYMBOL_REF_DECL (symbol
);
2343 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl
)))
2344 output_constant_def_contents (symbol
);
2350 name
= XSTR (symbol
, 0);
2351 if (TREE_PUBLIC (decl
) && DECL_NAME (decl
))
2352 notice_global_symbol (decl
);
2354 /* Compute the alignment of this data. */
2356 align_variable (decl
, dont_output_data
);
2358 if ((flag_sanitize
& SANITIZE_ADDRESS
)
2359 && asan_protect_global (decl
))
2361 asan_protected
= true;
2362 SET_DECL_ALIGN (decl
, MAX (DECL_ALIGN (decl
),
2363 ASAN_RED_ZONE_SIZE
* BITS_PER_UNIT
));
2366 set_mem_align (decl_rtl
, DECL_ALIGN (decl
));
2368 align
= get_variable_align (decl
);
2370 if (TREE_PUBLIC (decl
))
2371 maybe_assemble_visibility (decl
);
2373 if (DECL_PRESERVE_P (decl
))
2374 targetm
.asm_out
.mark_decl_preserved (name
);
2376 /* First make the assembler name(s) global if appropriate. */
2377 sect
= get_variable_section (decl
, false);
2378 if (TREE_PUBLIC (decl
)
2379 && (sect
->common
.flags
& SECTION_COMMON
) == 0)
2380 globalize_decl (decl
);
2382 /* Output any data that we will need to use the address of. */
2383 if (DECL_INITIAL (decl
) && DECL_INITIAL (decl
) != error_mark_node
)
2384 output_addressed_constants (DECL_INITIAL (decl
), 0);
2386 /* dbxout.cc needs to know this. */
2387 if (sect
&& (sect
->common
.flags
& SECTION_CODE
) != 0)
2388 DECL_IN_TEXT_SECTION (decl
) = 1;
2390 /* If the decl is part of an object_block, make sure that the decl
2391 has been positioned within its block, but do not write out its
2392 definition yet. output_object_blocks will do that later. */
2393 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol
) && SYMBOL_REF_BLOCK (symbol
))
2395 gcc_assert (!dont_output_data
);
2396 place_block_symbol (symbol
);
2398 else if (SECTION_STYLE (sect
) == SECTION_NOSWITCH
)
2399 assemble_noswitch_variable (decl
, name
, sect
, align
);
2402 /* Special-case handling of vtv comdat sections. */
2403 if (sect
->named
.name
2404 && (strcmp (sect
->named
.name
, ".vtable_map_vars") == 0))
2405 handle_vtv_comdat_section (sect
, decl
);
2407 switch_to_section (sect
, decl
);
2408 if (align
> BITS_PER_UNIT
)
2409 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
2410 assemble_variable_contents (decl
, name
, dont_output_data
,
2411 (sect
->common
.flags
& SECTION_MERGE
)
2412 && (sect
->common
.flags
& SECTION_STRINGS
));
2415 unsigned HOST_WIDE_INT
int size
2416 = tree_to_uhwi (DECL_SIZE_UNIT (decl
));
2417 assemble_zeros (asan_red_zone_size (size
));
2423 /* Given a function declaration (FN_DECL), this function assembles the
2424 function into the .preinit_array section. */
2427 assemble_vtv_preinit_initializer (tree fn_decl
)
2430 unsigned flags
= SECTION_WRITE
;
2431 rtx symbol
= XEXP (DECL_RTL (fn_decl
), 0);
2433 flags
|= SECTION_NOTYPE
;
2434 sect
= get_section (".preinit_array", flags
, fn_decl
);
2435 switch_to_section (sect
);
2436 assemble_addr_to_section (symbol
, sect
);
2439 /* Return 1 if type TYPE contains any pointers. */
2442 contains_pointers_p (tree type
)
2444 switch (TREE_CODE (type
))
2447 case REFERENCE_TYPE
:
2448 /* I'm not sure whether OFFSET_TYPE needs this treatment,
2449 so I'll play safe and return 1. */
2455 case QUAL_UNION_TYPE
:
2458 /* For a type that has fields, see if the fields have pointers. */
2459 for (fields
= TYPE_FIELDS (type
); fields
; fields
= DECL_CHAIN (fields
))
2460 if (TREE_CODE (fields
) == FIELD_DECL
2461 && contains_pointers_p (TREE_TYPE (fields
)))
2467 /* An array type contains pointers if its element type does. */
2468 return contains_pointers_p (TREE_TYPE (type
));
2475 /* We delay assemble_external processing until
2476 the compilation unit is finalized. This is the best we can do for
2477 right now (i.e. stage 3 of GCC 4.0) - the right thing is to delay
2478 it all the way to final. See PR 17982 for further discussion. */
2479 static GTY(()) tree pending_assemble_externals
;
2481 #ifdef ASM_OUTPUT_EXTERNAL
2482 /* Some targets delay some output to final using TARGET_ASM_FILE_END.
2483 As a result, assemble_external can be called after the list of externals
2484 is processed and the pointer set destroyed. */
2485 static bool pending_assemble_externals_processed
;
2487 /* Avoid O(external_decls**2) lookups in the pending_assemble_externals
2488 TREE_LIST in assemble_external. */
2489 static hash_set
<tree
> *pending_assemble_externals_set
;
2491 /* True if DECL is a function decl for which no out-of-line copy exists.
2492 It is assumed that DECL's assembler name has been set. */
2495 incorporeal_function_p (tree decl
)
2497 if (TREE_CODE (decl
) == FUNCTION_DECL
&& fndecl_built_in_p (decl
))
2501 if (DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
2502 && ALLOCA_FUNCTION_CODE_P (DECL_FUNCTION_CODE (decl
)))
2505 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
2506 /* Atomic or sync builtins which have survived this far will be
2507 resolved externally and therefore are not incorporeal. */
2508 if (startswith (name
, "__builtin_"))
2514 /* Actually do the tests to determine if this is necessary, and invoke
2515 ASM_OUTPUT_EXTERNAL. */
2517 assemble_external_real (tree decl
)
2519 rtx rtl
= DECL_RTL (decl
);
2521 if (MEM_P (rtl
) && GET_CODE (XEXP (rtl
, 0)) == SYMBOL_REF
2522 && !SYMBOL_REF_USED (XEXP (rtl
, 0))
2523 && !incorporeal_function_p (decl
))
2525 /* Some systems do require some output. */
2526 SYMBOL_REF_USED (XEXP (rtl
, 0)) = 1;
2527 ASM_OUTPUT_EXTERNAL (asm_out_file
, decl
, XSTR (XEXP (rtl
, 0), 0));
2533 process_pending_assemble_externals (void)
2535 #ifdef ASM_OUTPUT_EXTERNAL
2537 for (list
= pending_assemble_externals
; list
; list
= TREE_CHAIN (list
))
2538 assemble_external_real (TREE_VALUE (list
));
2540 pending_assemble_externals
= 0;
2541 pending_assemble_externals_processed
= true;
2542 delete pending_assemble_externals_set
;
2546 /* This TREE_LIST contains any weak symbol declarations waiting
2548 static GTY(()) tree weak_decls
;
2550 /* Output something to declare an external symbol to the assembler,
2551 and qualifiers such as weakness. (Most assemblers don't need
2552 extern declaration, so we normally output nothing.) Do nothing if
2553 DECL is not external. */
2556 assemble_external (tree decl ATTRIBUTE_UNUSED
)
2558 /* Make sure that the ASM_OUT_FILE is open.
2559 If it's not, we should not be calling this function. */
2560 gcc_assert (asm_out_file
);
2562 /* In a perfect world, the following condition would be true.
2563 Sadly, the Go front end emit assembly *from the front end*,
2564 bypassing the call graph. See PR52739. Fix before GCC 4.8. */
2566 /* This function should only be called if we are expanding, or have
2568 Ideally, only final.cc would be calling this function, but it is
2569 not clear whether that would break things somehow. See PR 17982
2570 for further discussion. */
2571 gcc_assert (state
== EXPANSION
2572 || state
== FINISHED
);
2575 if (!DECL_P (decl
) || !DECL_EXTERNAL (decl
) || !TREE_PUBLIC (decl
))
2578 /* We want to output annotation for weak and external symbols at
2579 very last to check if they are references or not. */
2581 if (TARGET_SUPPORTS_WEAK
2583 /* TREE_STATIC is a weird and abused creature which is not
2584 generally the right test for whether an entity has been
2585 locally emitted, inlined or otherwise not-really-extern, but
2586 for declarations that can be weak, it happens to be
2588 && !TREE_STATIC (decl
)
2589 && lookup_attribute ("weak", DECL_ATTRIBUTES (decl
))
2590 && value_member (decl
, weak_decls
) == NULL_TREE
)
2591 weak_decls
= tree_cons (NULL
, decl
, weak_decls
);
2593 #ifdef ASM_OUTPUT_EXTERNAL
2594 if (pending_assemble_externals_processed
)
2596 assemble_external_real (decl
);
2600 if (! pending_assemble_externals_set
->add (decl
))
2601 pending_assemble_externals
= tree_cons (NULL
, decl
,
2602 pending_assemble_externals
);
2606 /* Similar, for calling a library function FUN. */
2609 assemble_external_libcall (rtx fun
)
2611 /* Declare library function name external when first used, if nec. */
2612 if (! SYMBOL_REF_USED (fun
))
2614 SYMBOL_REF_USED (fun
) = 1;
2615 targetm
.asm_out
.external_libcall (fun
);
2619 /* Assemble a label named NAME. */
2622 assemble_label (FILE *file
, const char *name
)
2624 ASM_OUTPUT_LABEL (file
, name
);
2627 /* Set the symbol_referenced flag for ID. */
2629 mark_referenced (tree id
)
2631 TREE_SYMBOL_REFERENCED (id
) = 1;
2634 /* Set the symbol_referenced flag for DECL and notify callgraph. */
2636 mark_decl_referenced (tree decl
)
2638 if (TREE_CODE (decl
) == FUNCTION_DECL
)
2640 /* Extern inline functions don't become needed when referenced.
2641 If we know a method will be emitted in other TU and no new
2642 functions can be marked reachable, just use the external
2644 struct cgraph_node
*node
= cgraph_node::get_create (decl
);
2645 if (!DECL_EXTERNAL (decl
)
2646 && !node
->definition
)
2647 node
->mark_force_output ();
2649 else if (VAR_P (decl
))
2651 varpool_node
*node
= varpool_node::get_create (decl
);
2652 /* C++ frontend use mark_decl_references to force COMDAT variables
2653 to be output that might appear dead otherwise. */
2654 node
->force_output
= true;
2656 /* else do nothing - we can get various sorts of CST nodes here,
2657 which do not need to be marked. */
2661 /* Output to FILE (an assembly file) a reference to NAME. If NAME
2662 starts with a *, the rest of NAME is output verbatim. Otherwise
2663 NAME is transformed in a target-specific way (usually by the
2664 addition of an underscore). */
2667 assemble_name_raw (FILE *file
, const char *name
)
2670 fputs (&name
[1], file
);
2672 ASM_OUTPUT_LABELREF (file
, name
);
2675 /* Return NAME that should actually be emitted, looking through
2676 transparent aliases. If NAME refers to an entity that is also
2677 represented as a tree (like a function or variable), mark the entity
2680 assemble_name_resolve (const char *name
)
2682 const char *real_name
= targetm
.strip_name_encoding (name
);
2683 tree id
= maybe_get_identifier (real_name
);
2689 mark_referenced (id
);
2690 ultimate_transparent_alias_target (&id
);
2692 name
= IDENTIFIER_POINTER (id
);
2693 gcc_assert (! TREE_CHAIN (id
));
2699 /* Like assemble_name_raw, but should be used when NAME might refer to
2700 an entity that is also represented as a tree (like a function or
2701 variable). If NAME does refer to such an entity, that entity will
2702 be marked as referenced. */
2705 assemble_name (FILE *file
, const char *name
)
2707 assemble_name_raw (file
, assemble_name_resolve (name
));
2710 /* Allocate SIZE bytes writable static space with a gensym name
2711 and return an RTX to refer to its address. */
2714 assemble_static_space (unsigned HOST_WIDE_INT size
)
2717 const char *namestring
;
2720 ASM_GENERATE_INTERNAL_LABEL (name
, "LF", const_labelno
);
2722 namestring
= ggc_strdup (name
);
2724 x
= gen_rtx_SYMBOL_REF (Pmode
, namestring
);
2725 SYMBOL_REF_FLAGS (x
) = SYMBOL_FLAG_LOCAL
;
2727 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
2728 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file
, NULL_TREE
, name
, size
,
2731 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
2732 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file
, name
, size
, BIGGEST_ALIGNMENT
);
2735 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2736 so that each uninitialized object starts on such a boundary. */
2737 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
2738 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
2739 = ((size
+ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1)
2740 / (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
2741 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
2742 ASM_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
2749 /* Assemble the static constant template for function entry trampolines.
2750 This is done at most once per compilation.
2751 Returns an RTX for the address of the template. */
2753 static GTY(()) rtx initial_trampoline
;
2756 assemble_trampoline_template (void)
2763 gcc_assert (targetm
.asm_out
.trampoline_template
!= NULL
);
2765 if (initial_trampoline
)
2766 return initial_trampoline
;
2768 /* By default, put trampoline templates in read-only data section. */
2770 #ifdef TRAMPOLINE_SECTION
2771 switch_to_section (TRAMPOLINE_SECTION
);
2773 switch_to_section (readonly_data_section
);
2776 /* Write the assembler code to define one. */
2777 align
= floor_log2 (TRAMPOLINE_ALIGNMENT
/ BITS_PER_UNIT
);
2779 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
2781 targetm
.asm_out
.internal_label (asm_out_file
, "LTRAMP", 0);
2782 targetm
.asm_out
.trampoline_template (asm_out_file
);
2784 /* Record the rtl to refer to it. */
2785 ASM_GENERATE_INTERNAL_LABEL (label
, "LTRAMP", 0);
2786 name
= ggc_strdup (label
);
2787 symbol
= gen_rtx_SYMBOL_REF (Pmode
, name
);
2788 SYMBOL_REF_FLAGS (symbol
) = SYMBOL_FLAG_LOCAL
;
2790 initial_trampoline
= gen_const_mem (BLKmode
, symbol
);
2791 set_mem_align (initial_trampoline
, TRAMPOLINE_ALIGNMENT
);
2792 set_mem_size (initial_trampoline
, TRAMPOLINE_SIZE
);
2794 return initial_trampoline
;
2797 /* A and B are either alignments or offsets. Return the minimum alignment
2798 that may be assumed after adding the two together. */
2800 static inline unsigned
2801 min_align (unsigned int a
, unsigned int b
)
2803 return least_bit_hwi (a
| b
);
2806 /* Return the assembler directive for creating a given kind of integer
2807 object. SIZE is the number of bytes in the object and ALIGNED_P
2808 indicates whether it is known to be aligned. Return NULL if the
2809 assembly dialect has no such directive.
2811 The returned string should be printed at the start of a new line and
2812 be followed immediately by the object's initial value. */
2815 integer_asm_op (int size
, int aligned_p
)
2817 struct asm_int_op
*ops
;
2820 ops
= &targetm
.asm_out
.aligned_op
;
2822 ops
= &targetm
.asm_out
.unaligned_op
;
2827 return targetm
.asm_out
.byte_op
;
2855 /* Use directive OP to assemble an integer object X. Print OP at the
2856 start of the line, followed immediately by the value of X. */
2859 assemble_integer_with_op (const char *op
, rtx x
)
2861 fputs (op
, asm_out_file
);
2862 output_addr_const (asm_out_file
, x
);
2863 fputc ('\n', asm_out_file
);
2866 /* The default implementation of the asm_out.integer target hook. */
2869 default_assemble_integer (rtx x ATTRIBUTE_UNUSED
,
2870 unsigned int size ATTRIBUTE_UNUSED
,
2871 int aligned_p ATTRIBUTE_UNUSED
)
2873 const char *op
= integer_asm_op (size
, aligned_p
);
2874 /* Avoid GAS bugs for large values. Specifically negative values whose
2875 absolute value fits in a bfd_vma, but not in a bfd_signed_vma. */
2876 if (size
> UNITS_PER_WORD
&& size
> POINTER_SIZE_UNITS
)
2878 return op
&& (assemble_integer_with_op (op
, x
), true);
2881 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
2882 the alignment of the integer in bits. Return 1 if we were able to output
2883 the constant, otherwise 0. We must be able to output the constant,
2884 if FORCE is nonzero. */
2887 assemble_integer (rtx x
, unsigned int size
, unsigned int align
, int force
)
2891 aligned_p
= (align
>= MIN (size
* BITS_PER_UNIT
, BIGGEST_ALIGNMENT
));
2893 /* See if the target hook can handle this kind of object. */
2894 if (targetm
.asm_out
.integer (x
, size
, aligned_p
))
2897 /* If the object is a multi-byte one, try splitting it up. Split
2898 it into words it if is multi-word, otherwise split it into bytes. */
2901 machine_mode omode
, imode
;
2902 unsigned int subalign
;
2903 unsigned int subsize
, i
;
2904 enum mode_class mclass
;
2906 subsize
= size
> UNITS_PER_WORD
? UNITS_PER_WORD
: 1;
2907 subalign
= MIN (align
, subsize
* BITS_PER_UNIT
);
2908 if (GET_CODE (x
) == CONST_FIXED
)
2909 mclass
= GET_MODE_CLASS (GET_MODE (x
));
2913 omode
= mode_for_size (subsize
* BITS_PER_UNIT
, mclass
, 0).require ();
2914 imode
= mode_for_size (size
* BITS_PER_UNIT
, mclass
, 0).require ();
2916 for (i
= 0; i
< size
; i
+= subsize
)
2918 rtx partial
= simplify_subreg (omode
, x
, imode
, i
);
2919 if (!partial
|| !assemble_integer (partial
, subsize
, subalign
, 0))
2925 /* If we've printed some of it, but not all of it, there's no going
2930 gcc_assert (!force
);
2935 /* Assemble the floating-point constant D into an object of size MODE. ALIGN
2936 is the alignment of the constant in bits. If REVERSE is true, D is output
2937 in reverse storage order. */
2940 assemble_real (REAL_VALUE_TYPE d
, scalar_float_mode mode
, unsigned int align
,
2943 long data
[4] = {0, 0, 0, 0};
2944 int bitsize
, nelts
, nunits
, units_per
;
2947 /* This is hairy. We have a quantity of known size. real_to_target
2948 will put it into an array of *host* longs, 32 bits per element
2949 (even if long is more than 32 bits). We need to determine the
2950 number of array elements that are occupied (nelts) and the number
2951 of *target* min-addressable units that will be occupied in the
2952 object file (nunits). We cannot assume that 32 divides the
2953 mode's bitsize (size * BITS_PER_UNIT) evenly.
2955 size * BITS_PER_UNIT is used here to make sure that padding bits
2956 (which might appear at either end of the value; real_to_target
2957 will include the padding bits in its output array) are included. */
2959 nunits
= GET_MODE_SIZE (mode
);
2960 bitsize
= nunits
* BITS_PER_UNIT
;
2961 nelts
= CEIL (bitsize
, 32);
2962 units_per
= 32 / BITS_PER_UNIT
;
2964 real_to_target (data
, &d
, mode
);
2966 /* Put out the first word with the specified alignment. */
2967 unsigned int chunk_nunits
= MIN (nunits
, units_per
);
2969 elt
= flip_storage_order (SImode
, gen_int_mode (data
[nelts
- 1], SImode
));
2971 elt
= GEN_INT (sext_hwi (data
[0], chunk_nunits
* BITS_PER_UNIT
));
2972 assemble_integer (elt
, chunk_nunits
, align
, 1);
2973 nunits
-= chunk_nunits
;
2975 /* Subsequent words need only 32-bit alignment. */
2976 align
= min_align (align
, 32);
2978 for (int i
= 1; i
< nelts
; i
++)
2980 chunk_nunits
= MIN (nunits
, units_per
);
2982 elt
= flip_storage_order (SImode
,
2983 gen_int_mode (data
[nelts
- 1 - i
], SImode
));
2985 elt
= GEN_INT (sext_hwi (data
[i
], chunk_nunits
* BITS_PER_UNIT
));
2986 assemble_integer (elt
, chunk_nunits
, align
, 1);
2987 nunits
-= chunk_nunits
;
2991 /* Given an expression EXP with a constant value,
2992 reduce it to the sum of an assembler symbol and an integer.
2993 Store them both in the structure *VALUE.
2994 EXP must be reducible. */
3003 decode_addr_const (tree exp
, class addr_const
*value
)
3005 tree target
= TREE_OPERAND (exp
, 0);
3006 poly_int64 offset
= 0;
3012 if (TREE_CODE (target
) == COMPONENT_REF
3013 && poly_int_tree_p (byte_position (TREE_OPERAND (target
, 1)),
3017 target
= TREE_OPERAND (target
, 0);
3019 else if (TREE_CODE (target
) == ARRAY_REF
3020 || TREE_CODE (target
) == ARRAY_RANGE_REF
)
3022 /* Truncate big offset. */
3024 += (TREE_INT_CST_LOW (TYPE_SIZE_UNIT (TREE_TYPE (target
)))
3025 * wi::to_poly_widest (TREE_OPERAND (target
, 1)).force_shwi ());
3026 target
= TREE_OPERAND (target
, 0);
3028 else if (TREE_CODE (target
) == MEM_REF
3029 && TREE_CODE (TREE_OPERAND (target
, 0)) == ADDR_EXPR
)
3031 offset
+= mem_ref_offset (target
).force_shwi ();
3032 target
= TREE_OPERAND (TREE_OPERAND (target
, 0), 0);
3034 else if (TREE_CODE (target
) == INDIRECT_REF
3035 && TREE_CODE (TREE_OPERAND (target
, 0)) == NOP_EXPR
3036 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (target
, 0), 0))
3038 target
= TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (target
, 0), 0), 0);
3043 switch (TREE_CODE (target
))
3047 x
= DECL_RTL (target
);
3051 x
= gen_rtx_MEM (FUNCTION_MODE
,
3052 gen_rtx_LABEL_REF (Pmode
, force_label_rtx (target
)));
3061 x
= lookup_constant_def (target
);
3062 /* Should have been added by output_addressed_constants. */
3067 /* This deals with absolute addresses. */
3068 offset
+= tree_to_shwi (TREE_OPERAND (target
, 0));
3069 x
= gen_rtx_MEM (QImode
,
3070 gen_rtx_SYMBOL_REF (Pmode
, "origin of addresses"));
3073 case COMPOUND_LITERAL_EXPR
:
3074 gcc_assert (COMPOUND_LITERAL_EXPR_DECL (target
));
3075 x
= DECL_RTL (COMPOUND_LITERAL_EXPR_DECL (target
));
3082 gcc_assert (MEM_P (x
));
3086 value
->offset
= offset
;
3089 static GTY(()) hash_table
<tree_descriptor_hasher
> *const_desc_htab
;
3091 static void maybe_output_constant_def_contents (struct constant_descriptor_tree
*, int);
3093 /* Constant pool accessor function. */
3095 hash_table
<tree_descriptor_hasher
> *
3096 constant_pool_htab (void)
3098 return const_desc_htab
;
3101 /* Compute a hash code for a constant expression. */
3104 tree_descriptor_hasher::hash (constant_descriptor_tree
*ptr
)
3110 const_hash_1 (const tree exp
)
3115 enum tree_code code
= TREE_CODE (exp
);
3117 /* Either set P and LEN to the address and len of something to hash and
3118 exit the switch or return a value. */
3123 p
= (char *) &TREE_INT_CST_ELT (exp
, 0);
3124 len
= TREE_INT_CST_NUNITS (exp
) * sizeof (HOST_WIDE_INT
);
3128 return real_hash (TREE_REAL_CST_PTR (exp
));
3131 return fixed_hash (TREE_FIXED_CST_PTR (exp
));
3134 p
= TREE_STRING_POINTER (exp
);
3135 len
= TREE_STRING_LENGTH (exp
);
3139 return (const_hash_1 (TREE_REALPART (exp
)) * 5
3140 + const_hash_1 (TREE_IMAGPART (exp
)));
3144 hi
= 7 + VECTOR_CST_NPATTERNS (exp
);
3145 hi
= hi
* 563 + VECTOR_CST_NELTS_PER_PATTERN (exp
);
3146 unsigned int count
= vector_cst_encoded_nelts (exp
);
3147 for (unsigned int i
= 0; i
< count
; ++i
)
3148 hi
= hi
* 563 + const_hash_1 (VECTOR_CST_ENCODED_ELT (exp
, i
));
3154 unsigned HOST_WIDE_INT idx
;
3157 hi
= 5 + int_size_in_bytes (TREE_TYPE (exp
));
3159 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, value
)
3161 hi
= hi
* 603 + const_hash_1 (value
);
3167 if (CONSTANT_CLASS_P (TREE_OPERAND (exp
, 0)))
3168 return const_hash_1 (TREE_OPERAND (exp
, 0));
3173 class addr_const value
;
3175 decode_addr_const (exp
, &value
);
3176 switch (GET_CODE (value
.base
))
3179 /* Don't hash the address of the SYMBOL_REF;
3180 only use the offset and the symbol name. */
3181 hi
= value
.offset
.coeffs
[0];
3182 p
= XSTR (value
.base
, 0);
3183 for (i
= 0; p
[i
] != 0; i
++)
3184 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
3188 hi
= (value
.offset
.coeffs
[0]
3189 + CODE_LABEL_NUMBER (label_ref_label (value
.base
)) * 13);
3199 case POINTER_PLUS_EXPR
:
3201 return (const_hash_1 (TREE_OPERAND (exp
, 0)) * 9
3202 + const_hash_1 (TREE_OPERAND (exp
, 1)));
3205 return const_hash_1 (TREE_OPERAND (exp
, 0)) * 7 + 2;
3208 /* A language specific constant. Just hash the code. */
3212 /* Compute hashing function. */
3214 for (i
= 0; i
< len
; i
++)
3215 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
3220 /* Wrapper of compare_constant, for the htab interface. */
3222 tree_descriptor_hasher::equal (constant_descriptor_tree
*c1
,
3223 constant_descriptor_tree
*c2
)
3225 if (c1
->hash
!= c2
->hash
)
3227 return compare_constant (c1
->value
, c2
->value
);
3230 /* Compare t1 and t2, and return 1 only if they are known to result in
3231 the same bit pattern on output. */
3234 compare_constant (const tree t1
, const tree t2
)
3236 enum tree_code typecode
;
3238 if (t1
== NULL_TREE
)
3239 return t2
== NULL_TREE
;
3240 if (t2
== NULL_TREE
)
3243 if (TREE_CODE (t1
) != TREE_CODE (t2
))
3246 switch (TREE_CODE (t1
))
3249 /* Integer constants are the same only if the same width of type. */
3250 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
3252 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
)))
3254 return tree_int_cst_equal (t1
, t2
);
3257 /* Real constants are the same only if the same width of type. In
3258 addition to the same width, we need to check whether the modes are the
3259 same. There might be two floating point modes that are the same size
3260 but have different representations, such as the PowerPC that has 2
3261 different 128-bit floating point types (IBM extended double and IEEE
3262 128-bit floating point). */
3263 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
3265 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
)))
3267 return real_identical (&TREE_REAL_CST (t1
), &TREE_REAL_CST (t2
));
3270 /* Fixed constants are the same only if the same width of type. */
3271 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
3274 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1
), TREE_FIXED_CST (t2
));
3277 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
))
3278 || int_size_in_bytes (TREE_TYPE (t1
))
3279 != int_size_in_bytes (TREE_TYPE (t2
)))
3282 return (TREE_STRING_LENGTH (t1
) == TREE_STRING_LENGTH (t2
)
3283 && ! memcmp (TREE_STRING_POINTER (t1
), TREE_STRING_POINTER (t2
),
3284 TREE_STRING_LENGTH (t1
)));
3287 return (compare_constant (TREE_REALPART (t1
), TREE_REALPART (t2
))
3288 && compare_constant (TREE_IMAGPART (t1
), TREE_IMAGPART (t2
)));
3292 if (VECTOR_CST_NPATTERNS (t1
)
3293 != VECTOR_CST_NPATTERNS (t2
))
3296 if (VECTOR_CST_NELTS_PER_PATTERN (t1
)
3297 != VECTOR_CST_NELTS_PER_PATTERN (t2
))
3300 unsigned int count
= vector_cst_encoded_nelts (t1
);
3301 for (unsigned int i
= 0; i
< count
; ++i
)
3302 if (!compare_constant (VECTOR_CST_ENCODED_ELT (t1
, i
),
3303 VECTOR_CST_ENCODED_ELT (t2
, i
)))
3311 vec
<constructor_elt
, va_gc
> *v1
, *v2
;
3312 unsigned HOST_WIDE_INT idx
;
3314 typecode
= TREE_CODE (TREE_TYPE (t1
));
3315 if (typecode
!= TREE_CODE (TREE_TYPE (t2
)))
3318 if (typecode
== ARRAY_TYPE
)
3320 HOST_WIDE_INT size_1
= int_size_in_bytes (TREE_TYPE (t1
));
3321 /* For arrays, check that mode, size and storage order match. */
3322 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
))
3324 || size_1
!= int_size_in_bytes (TREE_TYPE (t2
))
3325 || TYPE_REVERSE_STORAGE_ORDER (TREE_TYPE (t1
))
3326 != TYPE_REVERSE_STORAGE_ORDER (TREE_TYPE (t2
)))
3331 /* For record and union constructors, require exact type
3333 if (TREE_TYPE (t1
) != TREE_TYPE (t2
))
3337 v1
= CONSTRUCTOR_ELTS (t1
);
3338 v2
= CONSTRUCTOR_ELTS (t2
);
3339 if (vec_safe_length (v1
) != vec_safe_length (v2
))
3342 for (idx
= 0; idx
< vec_safe_length (v1
); ++idx
)
3344 constructor_elt
*c1
= &(*v1
)[idx
];
3345 constructor_elt
*c2
= &(*v2
)[idx
];
3347 /* Check that each value is the same... */
3348 if (!compare_constant (c1
->value
, c2
->value
))
3350 /* ... and that they apply to the same fields! */
3351 if (typecode
== ARRAY_TYPE
)
3353 if (!compare_constant (c1
->index
, c2
->index
))
3358 if (c1
->index
!= c2
->index
)
3369 class addr_const value1
, value2
;
3373 decode_addr_const (t1
, &value1
);
3374 decode_addr_const (t2
, &value2
);
3376 if (maybe_ne (value1
.offset
, value2
.offset
))
3379 code
= GET_CODE (value1
.base
);
3380 if (code
!= GET_CODE (value2
.base
))
3386 ret
= (strcmp (XSTR (value1
.base
, 0), XSTR (value2
.base
, 0)) == 0);
3390 ret
= (CODE_LABEL_NUMBER (label_ref_label (value1
.base
))
3391 == CODE_LABEL_NUMBER (label_ref_label (value2
.base
)));
3401 case POINTER_PLUS_EXPR
:
3404 return (compare_constant (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0))
3405 && compare_constant (TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1)));
3408 case VIEW_CONVERT_EXPR
:
3409 return compare_constant (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
3416 /* Return the section into which constant EXP should be placed. */
3419 get_constant_section (tree exp
, unsigned int align
)
3421 return targetm
.asm_out
.select_section (exp
,
3422 compute_reloc_for_constant (exp
),
3426 /* Return the size of constant EXP in bytes. */
3428 static HOST_WIDE_INT
3429 get_constant_size (tree exp
)
3433 size
= int_size_in_bytes (TREE_TYPE (exp
));
3434 gcc_checking_assert (size
>= 0);
3435 gcc_checking_assert (TREE_CODE (exp
) != STRING_CST
3436 || size
>= TREE_STRING_LENGTH (exp
));
3440 /* Subroutine of output_constant_def:
3441 No constant equal to EXP is known to have been output.
3442 Make a constant descriptor to enter EXP in the hash table.
3443 Assign the label number and construct RTL to refer to the
3444 constant's location in memory.
3445 Caller is responsible for updating the hash table. */
3447 static struct constant_descriptor_tree
*
3448 build_constant_desc (tree exp
)
3450 struct constant_descriptor_tree
*desc
;
3456 desc
= ggc_alloc
<constant_descriptor_tree
> ();
3459 /* Create a string containing the label name, in LABEL. */
3460 labelno
= const_labelno
++;
3461 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", labelno
);
3463 /* Construct the VAR_DECL associated with the constant. */
3464 decl
= build_decl (UNKNOWN_LOCATION
, VAR_DECL
, get_identifier (label
),
3466 DECL_ARTIFICIAL (decl
) = 1;
3467 DECL_IGNORED_P (decl
) = 1;
3468 TREE_READONLY (decl
) = 1;
3469 TREE_STATIC (decl
) = 1;
3470 TREE_ADDRESSABLE (decl
) = 1;
3471 /* We don't set the RTL yet as this would cause varpool to assume that the
3472 variable is referenced. Moreover, it would just be dropped in LTO mode.
3473 Instead we set the flag that will be recognized in make_decl_rtl. */
3474 DECL_IN_CONSTANT_POOL (decl
) = 1;
3475 DECL_INITIAL (decl
) = desc
->value
;
3476 /* ??? targetm.constant_alignment hasn't been updated for vector types on
3477 most architectures so use DATA_ALIGNMENT as well, except for strings. */
3478 if (TREE_CODE (exp
) == STRING_CST
)
3479 SET_DECL_ALIGN (decl
, targetm
.constant_alignment (exp
, DECL_ALIGN (decl
)));
3482 align_variable (decl
, 0);
3483 if (DECL_ALIGN (decl
) < GET_MODE_ALIGNMENT (DECL_MODE (decl
))
3484 && ((optab_handler (movmisalign_optab
, DECL_MODE (decl
))
3485 != CODE_FOR_nothing
)
3486 || targetm
.slow_unaligned_access (DECL_MODE (decl
),
3487 DECL_ALIGN (decl
))))
3488 SET_DECL_ALIGN (decl
, GET_MODE_ALIGNMENT (DECL_MODE (decl
)));
3491 /* Now construct the SYMBOL_REF and the MEM. */
3492 if (use_object_blocks_p ())
3494 int align
= (TREE_CODE (decl
) == CONST_DECL
3495 || (VAR_P (decl
) && DECL_IN_CONSTANT_POOL (decl
))
3497 : symtab_node::get (decl
)->definition_alignment ());
3498 section
*sect
= get_constant_section (exp
, align
);
3499 symbol
= create_block_symbol (ggc_strdup (label
),
3500 get_block_for_section (sect
), -1);
3503 symbol
= gen_rtx_SYMBOL_REF (Pmode
, ggc_strdup (label
));
3504 SYMBOL_REF_FLAGS (symbol
) |= SYMBOL_FLAG_LOCAL
;
3505 SET_SYMBOL_REF_DECL (symbol
, decl
);
3506 TREE_CONSTANT_POOL_ADDRESS_P (symbol
) = 1;
3508 rtl
= gen_const_mem (TYPE_MODE (TREE_TYPE (exp
)), symbol
);
3509 set_mem_alias_set (rtl
, 0);
3511 /* Putting EXP into the literal pool might have imposed a different
3512 alignment which should be visible in the RTX as well. */
3513 set_mem_align (rtl
, DECL_ALIGN (decl
));
3515 /* We cannot share RTX'es in pool entries.
3516 Mark this piece of RTL as required for unsharing. */
3517 RTX_FLAG (rtl
, used
) = 1;
3519 /* Set flags or add text to the name to record information, such as
3520 that it is a local symbol. If the name is changed, the macro
3521 ASM_OUTPUT_LABELREF will have to know how to strip this
3522 information. This call might invalidate our local variable
3523 SYMBOL; we can't use it afterward. */
3524 targetm
.encode_section_info (exp
, rtl
, true);
3531 /* Subroutine of output_constant_def and tree_output_constant_def:
3532 Add a constant to the hash table that tracks which constants
3533 already have labels. */
3535 static constant_descriptor_tree
*
3536 add_constant_to_table (tree exp
, int defer
)
3538 /* The hash table methods may call output_constant_def for addressed
3539 constants, so handle them first. */
3540 output_addressed_constants (exp
, defer
);
3542 /* Sanity check to catch recursive insertion. */
3543 static bool inserting
;
3544 gcc_assert (!inserting
);
3547 /* Look up EXP in the table of constant descriptors. If we didn't
3548 find it, create a new one. */
3549 struct constant_descriptor_tree key
;
3551 key
.hash
= const_hash_1 (exp
);
3552 constant_descriptor_tree
**loc
3553 = const_desc_htab
->find_slot_with_hash (&key
, key
.hash
, INSERT
);
3557 struct constant_descriptor_tree
*desc
= *loc
;
3560 desc
= build_constant_desc (exp
);
3561 desc
->hash
= key
.hash
;
3568 /* Return an rtx representing a reference to constant data in memory
3569 for the constant expression EXP.
3571 If assembler code for such a constant has already been output,
3572 return an rtx to refer to it.
3573 Otherwise, output such a constant in memory
3574 and generate an rtx for it.
3576 If DEFER is nonzero, this constant can be deferred and output only
3577 if referenced in the function after all optimizations.
3579 `const_desc_table' records which constants already have label strings. */
3582 output_constant_def (tree exp
, int defer
)
3584 struct constant_descriptor_tree
*desc
= add_constant_to_table (exp
, defer
);
3585 maybe_output_constant_def_contents (desc
, defer
);
3589 /* Subroutine of output_constant_def: Decide whether or not we need to
3590 output the constant DESC now, and if so, do it. */
3592 maybe_output_constant_def_contents (struct constant_descriptor_tree
*desc
,
3595 rtx symbol
= XEXP (desc
->rtl
, 0);
3596 tree exp
= desc
->value
;
3598 if (flag_syntax_only
)
3601 if (TREE_ASM_WRITTEN (exp
))
3602 /* Already output; don't do it again. */
3605 /* We can always defer constants as long as the context allows
3609 /* Increment n_deferred_constants if it exists. It needs to be at
3610 least as large as the number of constants actually referred to
3611 by the function. If it's too small we'll stop looking too early
3612 and fail to emit constants; if it's too large we'll only look
3613 through the entire function when we could have stopped earlier. */
3615 n_deferred_constants
++;
3619 output_constant_def_contents (symbol
);
3622 /* Subroutine of output_constant_def_contents. Output the definition
3623 of constant EXP, which is pointed to by label LABEL. ALIGN is the
3624 constant's alignment in bits. */
3627 assemble_constant_contents (tree exp
, const char *label
, unsigned int align
,
3632 size
= get_constant_size (exp
);
3634 /* Do any machine/system dependent processing of the constant. */
3635 targetm
.asm_out
.declare_constant_name (asm_out_file
, label
, exp
, size
);
3637 /* Output the value of EXP. */
3638 output_constant (exp
, size
, align
, false, merge_strings
);
3640 targetm
.asm_out
.decl_end ();
3643 /* We must output the constant data referred to by SYMBOL; do so. */
3646 output_constant_def_contents (rtx symbol
)
3648 tree decl
= SYMBOL_REF_DECL (symbol
);
3649 tree exp
= DECL_INITIAL (decl
);
3650 bool asan_protected
= false;
3652 /* Make sure any other constants whose addresses appear in EXP
3653 are assigned label numbers. */
3654 output_addressed_constants (exp
, 0);
3656 /* We are no longer deferring this constant. */
3657 TREE_ASM_WRITTEN (decl
) = TREE_ASM_WRITTEN (exp
) = 1;
3659 if ((flag_sanitize
& SANITIZE_ADDRESS
)
3660 && TREE_CODE (exp
) == STRING_CST
3661 && asan_protect_global (exp
))
3663 asan_protected
= true;
3664 SET_DECL_ALIGN (decl
, MAX (DECL_ALIGN (decl
),
3665 ASAN_RED_ZONE_SIZE
* BITS_PER_UNIT
));
3668 /* If the constant is part of an object block, make sure that the
3669 decl has been positioned within its block, but do not write out
3670 its definition yet. output_object_blocks will do that later. */
3671 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol
) && SYMBOL_REF_BLOCK (symbol
))
3672 place_block_symbol (symbol
);
3675 int align
= (TREE_CODE (decl
) == CONST_DECL
3676 || (VAR_P (decl
) && DECL_IN_CONSTANT_POOL (decl
))
3678 : symtab_node::get (decl
)->definition_alignment ());
3679 section
*sect
= get_constant_section (exp
, align
);
3680 switch_to_section (sect
);
3681 if (align
> BITS_PER_UNIT
)
3682 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
3683 assemble_constant_contents (exp
, XSTR (symbol
, 0), align
,
3684 (sect
->common
.flags
& SECTION_MERGE
)
3685 && (sect
->common
.flags
& SECTION_STRINGS
));
3688 HOST_WIDE_INT size
= get_constant_size (exp
);
3689 assemble_zeros (asan_red_zone_size (size
));
3694 /* Look up EXP in the table of constant descriptors. Return the rtl
3695 if it has been emitted, else null. */
3698 lookup_constant_def (tree exp
)
3700 struct constant_descriptor_tree key
;
3703 key
.hash
= const_hash_1 (exp
);
3704 constant_descriptor_tree
*desc
3705 = const_desc_htab
->find_with_hash (&key
, key
.hash
);
3707 return (desc
? desc
->rtl
: NULL_RTX
);
3710 /* Return a tree representing a reference to constant data in memory
3711 for the constant expression EXP.
3713 This is the counterpart of output_constant_def at the Tree level. */
3716 tree_output_constant_def (tree exp
)
3718 struct constant_descriptor_tree
*desc
= add_constant_to_table (exp
, 1);
3719 tree decl
= SYMBOL_REF_DECL (XEXP (desc
->rtl
, 0));
3720 varpool_node::finalize_decl (decl
);
3724 class GTY((chain_next ("%h.next"), for_user
)) constant_descriptor_rtx
{
3726 class constant_descriptor_rtx
*next
;
3730 HOST_WIDE_INT offset
;
3732 fixed_size_mode mode
;
3738 struct const_rtx_desc_hasher
: ggc_ptr_hash
<constant_descriptor_rtx
>
3740 static hashval_t
hash (constant_descriptor_rtx
*);
3741 static bool equal (constant_descriptor_rtx
*, constant_descriptor_rtx
*);
3744 /* Used in the hash tables to avoid outputting the same constant
3745 twice. Unlike 'struct constant_descriptor_tree', RTX constants
3746 are output once per function, not once per file. */
3747 /* ??? Only a few targets need per-function constant pools. Most
3748 can use one per-file pool. Should add a targetm bit to tell the
3751 struct GTY(()) rtx_constant_pool
{
3752 /* Pointers to first and last constant in pool, as ordered by offset. */
3753 class constant_descriptor_rtx
*first
;
3754 class constant_descriptor_rtx
*last
;
3756 /* Hash facility for making memory-constants from constant rtl-expressions.
3757 It is used on RISC machines where immediate integer arguments and
3758 constant addresses are restricted so that such constants must be stored
3760 hash_table
<const_rtx_desc_hasher
> *const_rtx_htab
;
3762 /* Current offset in constant pool (does not include any
3763 machine-specific header). */
3764 HOST_WIDE_INT offset
;
3767 /* Hash and compare functions for const_rtx_htab. */
3770 const_rtx_desc_hasher::hash (constant_descriptor_rtx
*desc
)
3776 const_rtx_desc_hasher::equal (constant_descriptor_rtx
*x
,
3777 constant_descriptor_rtx
*y
)
3779 if (x
->mode
!= y
->mode
)
3781 return rtx_equal_p (x
->constant
, y
->constant
);
3784 /* Hash one component of a constant. */
3787 const_rtx_hash_1 (const_rtx x
)
3789 unsigned HOST_WIDE_INT hwi
;
3795 code
= GET_CODE (x
);
3796 mode
= GET_MODE (x
);
3797 h
= (hashval_t
) code
* 1048573 + mode
;
3806 int shift
= sizeof (hashval_t
) * CHAR_BIT
;
3807 const int n
= sizeof (HOST_WIDE_INT
) / sizeof (hashval_t
);
3809 h
^= (hashval_t
) hwi
;
3810 for (i
= 1; i
< n
; ++i
)
3813 h
^= (hashval_t
) hwi
;
3818 case CONST_WIDE_INT
:
3821 for (i
= 0; i
< CONST_WIDE_INT_NUNITS (x
); i
++)
3822 hwi
^= CONST_WIDE_INT_ELT (x
, i
);
3827 if (TARGET_SUPPORTS_WIDE_INT
== 0 && mode
== VOIDmode
)
3829 hwi
= CONST_DOUBLE_LOW (x
) ^ CONST_DOUBLE_HIGH (x
);
3833 h
^= real_hash (CONST_DOUBLE_REAL_VALUE (x
));
3837 h
^= fixed_hash (CONST_FIXED_VALUE (x
));
3841 h
^= htab_hash_string (XSTR (x
, 0));
3845 h
= h
* 251 + CODE_LABEL_NUMBER (label_ref_label (x
));
3849 case UNSPEC_VOLATILE
:
3850 h
= h
* 251 + XINT (x
, 1);
3860 /* Compute a hash value for X, which should be a constant. */
3863 const_rtx_hash (rtx x
)
3866 subrtx_iterator::array_type array
;
3867 FOR_EACH_SUBRTX (iter
, array
, x
, ALL
)
3868 h
= h
* 509 + const_rtx_hash_1 (*iter
);
3873 /* Create and return a new rtx constant pool. */
3875 static struct rtx_constant_pool
*
3876 create_constant_pool (void)
3878 struct rtx_constant_pool
*pool
;
3880 pool
= ggc_alloc
<rtx_constant_pool
> ();
3881 pool
->const_rtx_htab
= hash_table
<const_rtx_desc_hasher
>::create_ggc (31);
3888 /* Initialize constant pool hashing for a new function. */
3891 init_varasm_status (void)
3893 crtl
->varasm
.pool
= create_constant_pool ();
3894 crtl
->varasm
.deferred_constants
= 0;
3897 /* Given a MINUS expression, simplify it if both sides
3898 include the same symbol. */
3901 simplify_subtraction (rtx x
)
3903 rtx r
= simplify_rtx (x
);
3907 /* Given a constant rtx X, make (or find) a memory constant for its value
3908 and return a MEM rtx to refer to it in memory. IN_MODE is the mode
3912 force_const_mem (machine_mode in_mode
, rtx x
)
3914 class constant_descriptor_rtx
*desc
, tmp
;
3915 struct rtx_constant_pool
*pool
;
3920 constant_descriptor_rtx
**slot
;
3921 fixed_size_mode mode
;
3923 /* We can't force variable-sized objects to memory. */
3924 if (!is_a
<fixed_size_mode
> (in_mode
, &mode
))
3927 /* If we're not allowed to drop X into the constant pool, don't. */
3928 if (targetm
.cannot_force_const_mem (mode
, x
))
3931 /* Record that this function has used a constant pool entry. */
3932 crtl
->uses_const_pool
= 1;
3934 /* Decide which pool to use. */
3935 pool
= (targetm
.use_blocks_for_constant_p (mode
, x
)
3936 ? shared_constant_pool
3937 : crtl
->varasm
.pool
);
3939 /* Lookup the value in the hashtable. */
3942 hash
= const_rtx_hash (x
);
3943 slot
= pool
->const_rtx_htab
->find_slot_with_hash (&tmp
, hash
, INSERT
);
3946 /* If the constant was already present, return its memory. */
3948 return copy_rtx (desc
->mem
);
3950 /* Otherwise, create a new descriptor. */
3951 desc
= ggc_alloc
<constant_descriptor_rtx
> ();
3954 /* Align the location counter as required by EXP's data type. */
3955 machine_mode align_mode
= (mode
== VOIDmode
? word_mode
: mode
);
3956 align
= targetm
.static_rtx_alignment (align_mode
);
3958 pool
->offset
+= (align
/ BITS_PER_UNIT
) - 1;
3959 pool
->offset
&= ~ ((align
/ BITS_PER_UNIT
) - 1);
3962 desc
->constant
= copy_rtx (tmp
.constant
);
3963 desc
->offset
= pool
->offset
;
3966 desc
->align
= align
;
3967 desc
->labelno
= const_labelno
;
3970 pool
->offset
+= GET_MODE_SIZE (mode
);
3972 pool
->last
->next
= desc
;
3974 pool
->first
= pool
->last
= desc
;
3977 /* Create a string containing the label name, in LABEL. */
3978 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", const_labelno
);
3981 /* Construct the SYMBOL_REF. Make sure to mark it as belonging to
3982 the constants pool. */
3983 if (use_object_blocks_p () && targetm
.use_blocks_for_constant_p (mode
, x
))
3985 section
*sect
= targetm
.asm_out
.select_rtx_section (mode
, x
, align
);
3986 symbol
= create_block_symbol (ggc_strdup (label
),
3987 get_block_for_section (sect
), -1);
3990 symbol
= gen_rtx_SYMBOL_REF (Pmode
, ggc_strdup (label
));
3992 SYMBOL_REF_FLAGS (symbol
) |= SYMBOL_FLAG_LOCAL
;
3993 CONSTANT_POOL_ADDRESS_P (symbol
) = 1;
3994 SET_SYMBOL_REF_CONSTANT (symbol
, desc
);
3996 /* Construct the MEM. */
3997 desc
->mem
= def
= gen_const_mem (mode
, symbol
);
3998 set_mem_align (def
, align
);
4000 /* If we're dropping a label to the constant pool, make sure we
4002 if (GET_CODE (x
) == LABEL_REF
)
4003 LABEL_PRESERVE_P (XEXP (x
, 0)) = 1;
4005 return copy_rtx (def
);
4008 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
4011 get_pool_constant (const_rtx addr
)
4013 return SYMBOL_REF_CONSTANT (addr
)->constant
;
4016 /* Given a constant pool SYMBOL_REF, return the corresponding constant
4017 and whether it has been output or not. */
4020 get_pool_constant_mark (rtx addr
, bool *pmarked
)
4022 class constant_descriptor_rtx
*desc
;
4024 desc
= SYMBOL_REF_CONSTANT (addr
);
4025 *pmarked
= (desc
->mark
!= 0);
4026 return desc
->constant
;
4029 /* Similar, return the mode. */
4032 get_pool_mode (const_rtx addr
)
4034 return SYMBOL_REF_CONSTANT (addr
)->mode
;
4037 /* Return TRUE if and only if the constant pool has no entries. Note
4038 that even entries we might end up choosing not to emit are counted
4039 here, so there is the potential for missed optimizations. */
4042 constant_pool_empty_p (void)
4044 return crtl
->varasm
.pool
->first
== NULL
;
4047 /* Worker function for output_constant_pool_1. Emit assembly for X
4048 in MODE with known alignment ALIGN. */
4051 output_constant_pool_2 (fixed_size_mode mode
, rtx x
, unsigned int align
)
4053 switch (GET_MODE_CLASS (mode
))
4056 case MODE_DECIMAL_FLOAT
:
4058 gcc_assert (CONST_DOUBLE_AS_FLOAT_P (x
));
4059 assemble_real (*CONST_DOUBLE_REAL_VALUE (x
),
4060 as_a
<scalar_float_mode
> (mode
), align
, false);
4065 case MODE_PARTIAL_INT
:
4070 assemble_integer (x
, GET_MODE_SIZE (mode
), align
, 1);
4073 case MODE_VECTOR_BOOL
:
4075 gcc_assert (GET_CODE (x
) == CONST_VECTOR
);
4077 /* Pick the smallest integer mode that contains at least one
4078 whole element. Often this is byte_mode and contains more
4079 than one element. */
4080 unsigned int nelts
= GET_MODE_NUNITS (mode
);
4081 unsigned int elt_bits
= GET_MODE_BITSIZE (mode
) / nelts
;
4082 unsigned int int_bits
= MAX (elt_bits
, BITS_PER_UNIT
);
4083 scalar_int_mode int_mode
= int_mode_for_size (int_bits
, 0).require ();
4084 unsigned int mask
= GET_MODE_MASK (GET_MODE_INNER (mode
));
4086 /* Build the constant up one integer at a time. */
4087 unsigned int elts_per_int
= int_bits
/ elt_bits
;
4088 for (unsigned int i
= 0; i
< nelts
; i
+= elts_per_int
)
4090 unsigned HOST_WIDE_INT value
= 0;
4091 unsigned int limit
= MIN (nelts
- i
, elts_per_int
);
4092 for (unsigned int j
= 0; j
< limit
; ++j
)
4094 auto elt
= INTVAL (CONST_VECTOR_ELT (x
, i
+ j
));
4095 value
|= (elt
& mask
) << (j
* elt_bits
);
4097 output_constant_pool_2 (int_mode
, gen_int_mode (value
, int_mode
),
4098 i
!= 0 ? MIN (align
, int_bits
) : align
);
4102 case MODE_VECTOR_FLOAT
:
4103 case MODE_VECTOR_INT
:
4104 case MODE_VECTOR_FRACT
:
4105 case MODE_VECTOR_UFRACT
:
4106 case MODE_VECTOR_ACCUM
:
4107 case MODE_VECTOR_UACCUM
:
4110 scalar_mode submode
= GET_MODE_INNER (mode
);
4111 unsigned int subalign
= MIN (align
, GET_MODE_BITSIZE (submode
));
4113 gcc_assert (GET_CODE (x
) == CONST_VECTOR
);
4114 units
= GET_MODE_NUNITS (mode
);
4116 for (i
= 0; i
< units
; i
++)
4118 rtx elt
= CONST_VECTOR_ELT (x
, i
);
4119 output_constant_pool_2 (submode
, elt
, i
? subalign
: align
);
4129 /* Worker function for output_constant_pool. Emit constant DESC,
4130 giving it ALIGN bits of alignment. */
4133 output_constant_pool_1 (class constant_descriptor_rtx
*desc
,
4140 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
4141 whose CODE_LABEL has been deleted. This can occur if a jump table
4142 is eliminated by optimization. If so, write a constant of zero
4143 instead. Note that this can also happen by turning the
4144 CODE_LABEL into a NOTE. */
4145 /* ??? This seems completely and utterly wrong. Certainly it's
4146 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
4147 functioning even with rtx_insn::deleted and friends. */
4150 switch (GET_CODE (tmp
))
4153 if (GET_CODE (XEXP (tmp
, 0)) != PLUS
4154 || GET_CODE (XEXP (XEXP (tmp
, 0), 0)) != LABEL_REF
)
4156 tmp
= XEXP (XEXP (tmp
, 0), 0);
4161 rtx_insn
*insn
= label_ref_label (tmp
);
4162 gcc_assert (!insn
->deleted ());
4163 gcc_assert (!NOTE_P (insn
)
4164 || NOTE_KIND (insn
) != NOTE_INSN_DELETED
);
4172 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
4173 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file
, x
, desc
->mode
,
4174 align
, desc
->labelno
, done
);
4177 assemble_align (align
);
4179 /* Output the label. */
4180 targetm
.asm_out
.internal_label (asm_out_file
, "LC", desc
->labelno
);
4183 Pass actual alignment value while emitting string constant to asm code
4184 as function 'output_constant_pool_1' explicitly passes the alignment as 1
4185 assuming that the data is already aligned which prevents the generation
4186 of fix-up table entries. */
4187 output_constant_pool_2 (desc
->mode
, x
, desc
->align
);
4189 /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
4190 sections have proper size. */
4191 if (align
> GET_MODE_BITSIZE (desc
->mode
)
4193 && (in_section
->common
.flags
& SECTION_MERGE
))
4194 assemble_align (align
);
4196 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
4202 /* Recompute the offsets of entries in POOL, and the overall size of
4203 POOL. Do this after calling mark_constant_pool to ensure that we
4204 are computing the offset values for the pool which we will actually
4208 recompute_pool_offsets (struct rtx_constant_pool
*pool
)
4210 class constant_descriptor_rtx
*desc
;
4213 for (desc
= pool
->first
; desc
; desc
= desc
->next
)
4216 /* Recalculate offset. */
4217 unsigned int align
= desc
->align
;
4218 pool
->offset
+= (align
/ BITS_PER_UNIT
) - 1;
4219 pool
->offset
&= ~ ((align
/ BITS_PER_UNIT
) - 1);
4220 desc
->offset
= pool
->offset
;
4221 pool
->offset
+= GET_MODE_SIZE (desc
->mode
);
4225 /* Mark all constants that are referenced by SYMBOL_REFs in X.
4226 Emit referenced deferred strings. */
4229 mark_constants_in_pattern (rtx insn
)
4231 subrtx_iterator::array_type array
;
4232 FOR_EACH_SUBRTX (iter
, array
, PATTERN (insn
), ALL
)
4234 const_rtx x
= *iter
;
4235 if (GET_CODE (x
) == SYMBOL_REF
)
4237 if (CONSTANT_POOL_ADDRESS_P (x
))
4239 class constant_descriptor_rtx
*desc
= SYMBOL_REF_CONSTANT (x
);
4240 if (desc
->mark
== 0)
4243 iter
.substitute (desc
->constant
);
4246 else if (TREE_CONSTANT_POOL_ADDRESS_P (x
))
4248 tree decl
= SYMBOL_REF_DECL (x
);
4249 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl
)))
4251 n_deferred_constants
--;
4252 output_constant_def_contents (CONST_CAST_RTX (x
));
4259 /* Look through appropriate parts of INSN, marking all entries in the
4260 constant pool which are actually being used. Entries that are only
4261 referenced by other constants are also marked as used. Emit
4262 deferred strings that are used. */
4265 mark_constants (rtx_insn
*insn
)
4270 /* Insns may appear inside a SEQUENCE. Only check the patterns of
4271 insns, not any notes that may be attached. We don't want to mark
4272 a constant just because it happens to appear in a REG_EQUIV note. */
4273 if (rtx_sequence
*seq
= dyn_cast
<rtx_sequence
*> (PATTERN (insn
)))
4275 int i
, n
= seq
->len ();
4276 for (i
= 0; i
< n
; ++i
)
4278 rtx subinsn
= seq
->element (i
);
4279 if (INSN_P (subinsn
))
4280 mark_constants_in_pattern (subinsn
);
4284 mark_constants_in_pattern (insn
);
4287 /* Look through the instructions for this function, and mark all the
4288 entries in POOL which are actually being used. Emit deferred constants
4289 which have indeed been used. */
4292 mark_constant_pool (void)
4296 if (!crtl
->uses_const_pool
&& n_deferred_constants
== 0)
4299 for (insn
= get_insns (); insn
; insn
= NEXT_INSN (insn
))
4300 mark_constants (insn
);
4303 /* Write all the constants in POOL. */
4306 output_constant_pool_contents (struct rtx_constant_pool
*pool
)
4308 class constant_descriptor_rtx
*desc
;
4310 for (desc
= pool
->first
; desc
; desc
= desc
->next
)
4313 #ifdef ASM_OUTPUT_DEF
4314 const char *name
= XSTR (desc
->sym
, 0);
4316 char buffer
[256 + 32];
4319 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", ~desc
->mark
);
4323 sprintf (buffer
, "%s+%ld", p
, (long) (desc
->offset
));
4326 ASM_OUTPUT_DEF (asm_out_file
, name
, p
);
4331 else if (desc
->mark
)
4333 /* If the constant is part of an object_block, make sure that
4334 the constant has been positioned within its block, but do not
4335 write out its definition yet. output_object_blocks will do
4337 if (SYMBOL_REF_HAS_BLOCK_INFO_P (desc
->sym
)
4338 && SYMBOL_REF_BLOCK (desc
->sym
))
4339 place_block_symbol (desc
->sym
);
4342 switch_to_section (targetm
.asm_out
.select_rtx_section
4343 (desc
->mode
, desc
->constant
, desc
->align
));
4344 output_constant_pool_1 (desc
, desc
->align
);
4349 struct constant_descriptor_rtx_data
{
4350 constant_descriptor_rtx
*desc
;
4352 unsigned short size
;
4353 unsigned short offset
;
4357 /* qsort callback to sort constant_descriptor_rtx_data * vector by
4361 constant_descriptor_rtx_data_cmp (const void *p1
, const void *p2
)
4363 constant_descriptor_rtx_data
*const data1
4364 = *(constant_descriptor_rtx_data
* const *) p1
;
4365 constant_descriptor_rtx_data
*const data2
4366 = *(constant_descriptor_rtx_data
* const *) p2
;
4367 if (data1
->size
> data2
->size
)
4369 if (data1
->size
< data2
->size
)
4371 if (data1
->hash
< data2
->hash
)
4373 gcc_assert (data1
->hash
> data2
->hash
);
4377 struct const_rtx_data_hasher
: nofree_ptr_hash
<constant_descriptor_rtx_data
>
4379 static hashval_t
hash (constant_descriptor_rtx_data
*);
4380 static bool equal (constant_descriptor_rtx_data
*,
4381 constant_descriptor_rtx_data
*);
4384 /* Hash and compare functions for const_rtx_data_htab. */
4387 const_rtx_data_hasher::hash (constant_descriptor_rtx_data
*data
)
4393 const_rtx_data_hasher::equal (constant_descriptor_rtx_data
*x
,
4394 constant_descriptor_rtx_data
*y
)
4396 if (x
->hash
!= y
->hash
|| x
->size
!= y
->size
)
4398 unsigned int align1
= x
->desc
->align
;
4399 unsigned int align2
= y
->desc
->align
;
4400 unsigned int offset1
= (x
->offset
* BITS_PER_UNIT
) & (align1
- 1);
4401 unsigned int offset2
= (y
->offset
* BITS_PER_UNIT
) & (align2
- 1);
4403 align1
= least_bit_hwi (offset1
);
4405 align2
= least_bit_hwi (offset2
);
4406 if (align2
> align1
)
4408 if (memcmp (x
->bytes
, y
->bytes
, x
->size
* sizeof (target_unit
)) != 0)
4413 /* Attempt to optimize constant pool POOL. If it contains both CONST_VECTOR
4414 constants and scalar constants with the values of CONST_VECTOR elements,
4415 try to alias the scalar constants with the CONST_VECTOR elements. */
4418 optimize_constant_pool (struct rtx_constant_pool
*pool
)
4420 auto_vec
<target_unit
, 128> buffer
;
4421 auto_vec
<constant_descriptor_rtx_data
*, 128> vec
;
4422 object_allocator
<constant_descriptor_rtx_data
>
4423 data_pool ("constant_descriptor_rtx_data_pool");
4426 for (constant_descriptor_rtx
*desc
= pool
->first
; desc
; desc
= desc
->next
)
4428 && ! (SYMBOL_REF_HAS_BLOCK_INFO_P (desc
->sym
)
4429 && SYMBOL_REF_BLOCK (desc
->sym
)))
4431 buffer
.truncate (0);
4432 buffer
.reserve (GET_MODE_SIZE (desc
->mode
));
4433 if (native_encode_rtx (desc
->mode
, desc
->constant
, buffer
, 0,
4434 GET_MODE_SIZE (desc
->mode
)))
4436 constant_descriptor_rtx_data
*data
= data_pool
.allocate ();
4439 data
->size
= GET_MODE_SIZE (desc
->mode
);
4443 vec
.safe_push (data
);
4448 vec
.qsort (constant_descriptor_rtx_data_cmp
);
4449 unsigned min_size
= vec
.last ()->size
;
4450 target_unit
*bytes
= XNEWVEC (target_unit
, size
);
4452 constant_descriptor_rtx_data
*data
;
4453 hash_table
<const_rtx_data_hasher
> * htab
4454 = new hash_table
<const_rtx_data_hasher
> (31);
4456 FOR_EACH_VEC_ELT (vec
, i
, data
)
4458 buffer
.truncate (0);
4459 native_encode_rtx (data
->desc
->mode
, data
->desc
->constant
,
4460 buffer
, 0, data
->size
);
4461 memcpy (bytes
+ size
, buffer
.address (), data
->size
);
4462 data
->bytes
= bytes
+ size
;
4463 data
->hash
= iterative_hash (data
->bytes
,
4464 data
->size
* sizeof (target_unit
), 0);
4466 constant_descriptor_rtx_data
**slot
4467 = htab
->find_slot_with_hash (data
, data
->hash
, INSERT
);
4470 data
->desc
->mark
= ~(*slot
)->desc
->labelno
;
4471 data
->desc
->offset
= (*slot
)->offset
;
4475 unsigned int sz
= 1 << floor_log2 (data
->size
);
4478 for (sz
>>= 1; sz
>= min_size
; sz
>>= 1)
4479 for (unsigned off
= 0; off
+ sz
<= data
->size
; off
+= sz
)
4481 constant_descriptor_rtx_data tmp
;
4482 tmp
.desc
= data
->desc
;
4483 tmp
.bytes
= data
->bytes
+ off
;
4486 tmp
.hash
= iterative_hash (tmp
.bytes
,
4487 sz
* sizeof (target_unit
), 0);
4488 slot
= htab
->find_slot_with_hash (&tmp
, tmp
.hash
, INSERT
);
4491 *slot
= data_pool
.allocate ();
4500 data_pool
.release ();
4503 /* Mark all constants that are used in the current function, then write
4504 out the function's private constant pool. */
4507 output_constant_pool (const char *fnname ATTRIBUTE_UNUSED
,
4508 tree fndecl ATTRIBUTE_UNUSED
)
4510 struct rtx_constant_pool
*pool
= crtl
->varasm
.pool
;
4512 /* It is possible for gcc to call force_const_mem and then to later
4513 discard the instructions which refer to the constant. In such a
4514 case we do not need to output the constant. */
4515 mark_constant_pool ();
4517 /* Having marked the constant pool entries we'll actually emit, we
4518 now need to rebuild the offset information, which may have become
4520 recompute_pool_offsets (pool
);
4522 #ifdef ASM_OUTPUT_POOL_PROLOGUE
4523 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file
, fnname
, fndecl
, pool
->offset
);
4526 output_constant_pool_contents (pool
);
4528 #ifdef ASM_OUTPUT_POOL_EPILOGUE
4529 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file
, fnname
, fndecl
, pool
->offset
);
4533 /* Write the contents of the shared constant pool. */
4536 output_shared_constant_pool (void)
4539 && TARGET_SUPPORTS_ALIASES
)
4540 optimize_constant_pool (shared_constant_pool
);
4542 output_constant_pool_contents (shared_constant_pool
);
4545 /* Determine what kind of relocations EXP may need. */
4548 compute_reloc_for_constant (tree exp
)
4550 int reloc
= 0, reloc2
;
4553 switch (TREE_CODE (exp
))
4557 /* Go inside any operations that get_inner_reference can handle and see
4558 if what's inside is a constant: no need to do anything here for
4559 addresses of variables or functions. */
4560 for (tem
= TREE_OPERAND (exp
, 0); handled_component_p (tem
);
4561 tem
= TREE_OPERAND (tem
, 0))
4564 if (TREE_CODE (tem
) == MEM_REF
4565 && TREE_CODE (TREE_OPERAND (tem
, 0)) == ADDR_EXPR
)
4567 reloc
= compute_reloc_for_constant (TREE_OPERAND (tem
, 0));
4571 if (!targetm
.binds_local_p (tem
))
4578 case POINTER_PLUS_EXPR
:
4579 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
4580 reloc
|= compute_reloc_for_constant (TREE_OPERAND (exp
, 1));
4584 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
4585 reloc2
= compute_reloc_for_constant (TREE_OPERAND (exp
, 1));
4586 /* The difference of two local labels is computable at link time. */
4587 if (reloc
== 1 && reloc2
== 1)
4594 case VIEW_CONVERT_EXPR
:
4595 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
4600 unsigned HOST_WIDE_INT idx
;
4601 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, tem
)
4603 reloc
|= compute_reloc_for_constant (tem
);
4613 /* Find all the constants whose addresses are referenced inside of EXP,
4614 and make sure assembler code with a label has been output for each one.
4615 Indicate whether an ADDR_EXPR has been encountered. */
4618 output_addressed_constants (tree exp
, int defer
)
4622 switch (TREE_CODE (exp
))
4626 /* Go inside any operations that get_inner_reference can handle and see
4627 if what's inside is a constant: no need to do anything here for
4628 addresses of variables or functions. */
4629 for (tem
= TREE_OPERAND (exp
, 0); handled_component_p (tem
);
4630 tem
= TREE_OPERAND (tem
, 0))
4633 /* If we have an initialized CONST_DECL, retrieve the initializer. */
4634 if (TREE_CODE (tem
) == CONST_DECL
&& DECL_INITIAL (tem
))
4635 tem
= DECL_INITIAL (tem
);
4637 if (CONSTANT_CLASS_P (tem
) || TREE_CODE (tem
) == CONSTRUCTOR
)
4638 output_constant_def (tem
, defer
);
4640 if (TREE_CODE (tem
) == MEM_REF
)
4641 output_addressed_constants (TREE_OPERAND (tem
, 0), defer
);
4645 case POINTER_PLUS_EXPR
:
4647 output_addressed_constants (TREE_OPERAND (exp
, 1), defer
);
4651 case VIEW_CONVERT_EXPR
:
4652 output_addressed_constants (TREE_OPERAND (exp
, 0), defer
);
4657 unsigned HOST_WIDE_INT idx
;
4658 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, tem
)
4660 output_addressed_constants (tem
, defer
);
4669 /* Whether a constructor CTOR is a valid static constant initializer if all
4670 its elements are. This used to be internal to initializer_constant_valid_p
4671 and has been exposed to let other functions like categorize_ctor_elements
4672 evaluate the property while walking a constructor for other purposes. */
4675 constructor_static_from_elts_p (const_tree ctor
)
4677 return (TREE_CONSTANT (ctor
)
4678 && (TREE_CODE (TREE_TYPE (ctor
)) == UNION_TYPE
4679 || TREE_CODE (TREE_TYPE (ctor
)) == RECORD_TYPE
4680 || TREE_CODE (TREE_TYPE (ctor
)) == ARRAY_TYPE
));
4683 static tree
initializer_constant_valid_p_1 (tree value
, tree endtype
,
4686 /* A subroutine of initializer_constant_valid_p. VALUE is a MINUS_EXPR,
4687 PLUS_EXPR or POINTER_PLUS_EXPR. This looks for cases of VALUE
4688 which are valid when ENDTYPE is an integer of any size; in
4689 particular, this does not accept a pointer minus a constant. This
4690 returns null_pointer_node if the VALUE is an absolute constant
4691 which can be used to initialize a static variable. Otherwise it
4695 narrowing_initializer_constant_valid_p (tree value
, tree endtype
, tree
*cache
)
4699 if (!INTEGRAL_TYPE_P (endtype
))
4702 op0
= TREE_OPERAND (value
, 0);
4703 op1
= TREE_OPERAND (value
, 1);
4705 /* Like STRIP_NOPS except allow the operand mode to widen. This
4706 works around a feature of fold that simplifies (int)(p1 - p2) to
4707 ((int)p1 - (int)p2) under the theory that the narrower operation
4710 while (CONVERT_EXPR_P (op0
)
4711 || TREE_CODE (op0
) == NON_LVALUE_EXPR
)
4713 tree inner
= TREE_OPERAND (op0
, 0);
4714 if (inner
== error_mark_node
4715 || ! INTEGRAL_TYPE_P (TREE_TYPE (op0
))
4716 || ! SCALAR_INT_MODE_P (TYPE_MODE (TREE_TYPE (op0
)))
4717 || ! INTEGRAL_TYPE_P (TREE_TYPE (inner
))
4718 || ! SCALAR_INT_MODE_P (TYPE_MODE (TREE_TYPE (inner
)))
4719 || (GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (op0
)))
4720 > GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (inner
)))))
4725 while (CONVERT_EXPR_P (op1
)
4726 || TREE_CODE (op1
) == NON_LVALUE_EXPR
)
4728 tree inner
= TREE_OPERAND (op1
, 0);
4729 if (inner
== error_mark_node
4730 || ! INTEGRAL_TYPE_P (TREE_TYPE (op1
))
4731 || ! SCALAR_INT_MODE_P (TYPE_MODE (TREE_TYPE (op1
)))
4732 || ! INTEGRAL_TYPE_P (TREE_TYPE (inner
))
4733 || ! SCALAR_INT_MODE_P (TYPE_MODE (TREE_TYPE (inner
)))
4734 || (GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (op1
)))
4735 > GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (inner
)))))
4740 op0
= initializer_constant_valid_p_1 (op0
, endtype
, cache
);
4744 op1
= initializer_constant_valid_p_1 (op1
, endtype
,
4745 cache
? cache
+ 2 : NULL
);
4746 /* Both initializers must be known. */
4750 && (op0
== null_pointer_node
4751 || TREE_CODE (value
) == MINUS_EXPR
))
4752 return null_pointer_node
;
4754 /* Support differences between labels. */
4755 if (TREE_CODE (op0
) == LABEL_DECL
4756 && TREE_CODE (op1
) == LABEL_DECL
)
4757 return null_pointer_node
;
4759 if (TREE_CODE (op0
) == STRING_CST
4760 && TREE_CODE (op1
) == STRING_CST
4761 && operand_equal_p (op0
, op1
, 1))
4762 return null_pointer_node
;
4768 /* Helper function of initializer_constant_valid_p.
4769 Return nonzero if VALUE is a valid constant-valued expression
4770 for use in initializing a static variable; one that can be an
4771 element of a "constant" initializer.
4773 Return null_pointer_node if the value is absolute;
4774 if it is relocatable, return the variable that determines the relocation.
4775 We assume that VALUE has been folded as much as possible;
4776 therefore, we do not need to check for such things as
4777 arithmetic-combinations of integers.
4779 Use CACHE (pointer to 2 tree values) for caching if non-NULL. */
4782 initializer_constant_valid_p_1 (tree value
, tree endtype
, tree
*cache
)
4786 switch (TREE_CODE (value
))
4789 if (constructor_static_from_elts_p (value
))
4791 unsigned HOST_WIDE_INT idx
;
4793 bool absolute
= true;
4795 if (cache
&& cache
[0] == value
)
4797 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value
), idx
, elt
)
4800 reloc
= initializer_constant_valid_p_1 (elt
, TREE_TYPE (elt
),
4803 /* An absolute value is required with reverse SSO. */
4804 || (reloc
!= null_pointer_node
4805 && TYPE_REVERSE_STORAGE_ORDER (TREE_TYPE (value
))
4806 && !AGGREGATE_TYPE_P (TREE_TYPE (elt
))))
4811 cache
[1] = NULL_TREE
;
4815 if (reloc
!= null_pointer_node
)
4818 /* For a non-absolute relocation, there is no single
4819 variable that can be "the variable that determines the
4824 cache
[1] = absolute
? null_pointer_node
: error_mark_node
;
4826 return absolute
? null_pointer_node
: error_mark_node
;
4829 return TREE_STATIC (value
) ? null_pointer_node
: NULL_TREE
;
4837 return null_pointer_node
;
4842 tree op0
= staticp (TREE_OPERAND (value
, 0));
4845 /* "&(*a).f" is like unto pointer arithmetic. If "a" turns out
4846 to be a constant, this is old-skool offsetof-like nonsense. */
4847 if (TREE_CODE (op0
) == INDIRECT_REF
4848 && TREE_CONSTANT (TREE_OPERAND (op0
, 0)))
4849 return null_pointer_node
;
4850 /* Taking the address of a nested function involves a trampoline,
4851 unless we don't need or want one. */
4852 if (TREE_CODE (op0
) == FUNCTION_DECL
4853 && DECL_STATIC_CHAIN (op0
)
4854 && !TREE_NO_TRAMPOLINE (value
))
4856 /* "&{...}" requires a temporary to hold the constructed
4858 if (TREE_CODE (op0
) == CONSTRUCTOR
)
4864 case NON_LVALUE_EXPR
:
4865 return initializer_constant_valid_p_1 (TREE_OPERAND (value
, 0),
4868 case VIEW_CONVERT_EXPR
:
4870 tree src
= TREE_OPERAND (value
, 0);
4871 tree src_type
= TREE_TYPE (src
);
4872 tree dest_type
= TREE_TYPE (value
);
4874 /* Allow view-conversions from aggregate to non-aggregate type only
4875 if the bit pattern is fully preserved afterwards; otherwise, the
4876 RTL expander won't be able to apply a subsequent transformation
4877 to the underlying constructor. */
4878 if (AGGREGATE_TYPE_P (src_type
) && !AGGREGATE_TYPE_P (dest_type
))
4880 if (TYPE_MODE (endtype
) == TYPE_MODE (dest_type
))
4881 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4886 /* Allow all other kinds of view-conversion. */
4887 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4892 tree src
= TREE_OPERAND (value
, 0);
4893 tree src_type
= TREE_TYPE (src
);
4894 tree dest_type
= TREE_TYPE (value
);
4896 /* Allow conversions between pointer types, floating-point
4897 types, and offset types. */
4898 if ((POINTER_TYPE_P (dest_type
) && POINTER_TYPE_P (src_type
))
4899 || (FLOAT_TYPE_P (dest_type
) && FLOAT_TYPE_P (src_type
))
4900 || (TREE_CODE (dest_type
) == OFFSET_TYPE
4901 && TREE_CODE (src_type
) == OFFSET_TYPE
))
4902 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4904 /* Allow length-preserving conversions between integer types. */
4905 if (INTEGRAL_TYPE_P (dest_type
) && INTEGRAL_TYPE_P (src_type
)
4906 && (TYPE_PRECISION (dest_type
) == TYPE_PRECISION (src_type
)))
4907 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4909 /* Allow conversions between other integer types only if
4910 explicit value. Don't allow sign-extension to a type larger
4911 than word and pointer, there aren't relocations that would
4912 allow to sign extend it to a wider type. */
4913 if (INTEGRAL_TYPE_P (dest_type
)
4914 && INTEGRAL_TYPE_P (src_type
)
4915 && (TYPE_UNSIGNED (src_type
)
4916 || TYPE_PRECISION (dest_type
) <= TYPE_PRECISION (src_type
)
4917 || TYPE_PRECISION (dest_type
) <= BITS_PER_WORD
4918 || TYPE_PRECISION (dest_type
) <= POINTER_SIZE
))
4920 tree inner
= initializer_constant_valid_p_1 (src
, endtype
, cache
);
4921 if (inner
== null_pointer_node
)
4922 return null_pointer_node
;
4926 /* Allow (int) &foo provided int is as wide as a pointer. */
4927 if (INTEGRAL_TYPE_P (dest_type
) && POINTER_TYPE_P (src_type
)
4928 && (TYPE_PRECISION (dest_type
) >= TYPE_PRECISION (src_type
)))
4929 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4931 /* Likewise conversions from int to pointers, but also allow
4932 conversions from 0. */
4933 if ((POINTER_TYPE_P (dest_type
)
4934 || TREE_CODE (dest_type
) == OFFSET_TYPE
)
4935 && INTEGRAL_TYPE_P (src_type
))
4937 if (TREE_CODE (src
) == INTEGER_CST
4938 && TYPE_PRECISION (dest_type
) >= TYPE_PRECISION (src_type
))
4939 return null_pointer_node
;
4940 if (integer_zerop (src
))
4941 return null_pointer_node
;
4942 else if (TYPE_PRECISION (dest_type
) <= TYPE_PRECISION (src_type
))
4943 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4946 /* Allow conversions to struct or union types if the value
4948 if (TREE_CODE (dest_type
) == RECORD_TYPE
4949 || TREE_CODE (dest_type
) == UNION_TYPE
)
4950 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4954 case POINTER_PLUS_EXPR
:
4956 /* Any valid floating-point constants will have been folded by now;
4957 with -frounding-math we hit this with addition of two constants. */
4958 if (TREE_CODE (endtype
) == REAL_TYPE
)
4960 if (cache
&& cache
[0] == value
)
4962 if (! INTEGRAL_TYPE_P (endtype
)
4963 || TYPE_PRECISION (endtype
) >= TYPE_PRECISION (TREE_TYPE (value
)))
4965 tree ncache
[4] = { NULL_TREE
, NULL_TREE
, NULL_TREE
, NULL_TREE
};
4967 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 0),
4970 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 1),
4971 endtype
, ncache
+ 2);
4972 /* If either term is absolute, use the other term's relocation. */
4973 if (valid0
== null_pointer_node
)
4975 else if (valid1
== null_pointer_node
)
4977 /* Support narrowing pointer differences. */
4979 ret
= narrowing_initializer_constant_valid_p (value
, endtype
,
4983 /* Support narrowing pointer differences. */
4984 ret
= narrowing_initializer_constant_valid_p (value
, endtype
, NULL
);
4992 case POINTER_DIFF_EXPR
:
4994 if (TREE_CODE (endtype
) == REAL_TYPE
)
4996 if (cache
&& cache
[0] == value
)
4998 if (! INTEGRAL_TYPE_P (endtype
)
4999 || TYPE_PRECISION (endtype
) >= TYPE_PRECISION (TREE_TYPE (value
)))
5001 tree ncache
[4] = { NULL_TREE
, NULL_TREE
, NULL_TREE
, NULL_TREE
};
5003 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 0),
5006 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 1),
5007 endtype
, ncache
+ 2);
5008 /* Win if second argument is absolute. */
5009 if (valid1
== null_pointer_node
)
5011 /* Win if both arguments have the same relocation.
5012 Then the value is absolute. */
5013 else if (valid0
== valid1
&& valid0
!= 0)
5014 ret
= null_pointer_node
;
5015 /* Since GCC guarantees that string constants are unique in the
5016 generated code, a subtraction between two copies of the same
5017 constant string is absolute. */
5018 else if (valid0
&& TREE_CODE (valid0
) == STRING_CST
5019 && valid1
&& TREE_CODE (valid1
) == STRING_CST
5020 && operand_equal_p (valid0
, valid1
, 1))
5021 ret
= null_pointer_node
;
5022 /* Support narrowing differences. */
5024 ret
= narrowing_initializer_constant_valid_p (value
, endtype
,
5028 /* Support narrowing differences. */
5029 ret
= narrowing_initializer_constant_valid_p (value
, endtype
, NULL
);
5044 /* Return nonzero if VALUE is a valid constant-valued expression
5045 for use in initializing a static variable; one that can be an
5046 element of a "constant" initializer.
5048 Return null_pointer_node if the value is absolute;
5049 if it is relocatable, return the variable that determines the relocation.
5050 We assume that VALUE has been folded as much as possible;
5051 therefore, we do not need to check for such things as
5052 arithmetic-combinations of integers. */
5054 initializer_constant_valid_p (tree value
, tree endtype
, bool reverse
)
5056 tree reloc
= initializer_constant_valid_p_1 (value
, endtype
, NULL
);
5058 /* An absolute value is required with reverse storage order. */
5060 && reloc
!= null_pointer_node
5062 && !AGGREGATE_TYPE_P (endtype
)
5063 && !VECTOR_TYPE_P (endtype
))
5069 /* Return true if VALUE is a valid constant-valued expression
5070 for use in initializing a static bit-field; one that can be
5071 an element of a "constant" initializer. */
5074 initializer_constant_valid_for_bitfield_p (const_tree value
)
5076 /* For bitfields we support integer constants or possibly nested aggregates
5078 switch (TREE_CODE (value
))
5082 unsigned HOST_WIDE_INT idx
;
5085 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value
), idx
, elt
)
5086 if (!initializer_constant_valid_for_bitfield_p (elt
))
5095 case VIEW_CONVERT_EXPR
:
5096 case NON_LVALUE_EXPR
:
5098 initializer_constant_valid_for_bitfield_p (TREE_OPERAND (value
, 0));
5107 /* Check if a STRING_CST fits into the field.
5108 Tolerate only the case when the NUL termination
5109 does not fit into the field. */
5112 check_string_literal (tree string
, unsigned HOST_WIDE_INT size
)
5114 tree type
= TREE_TYPE (string
);
5115 tree eltype
= TREE_TYPE (type
);
5116 unsigned HOST_WIDE_INT elts
= tree_to_uhwi (TYPE_SIZE_UNIT (eltype
));
5117 unsigned HOST_WIDE_INT mem_size
= tree_to_uhwi (TYPE_SIZE_UNIT (type
));
5118 int len
= TREE_STRING_LENGTH (string
);
5120 if (elts
!= 1 && elts
!= 2 && elts
!= 4)
5122 if (len
< 0 || len
% elts
!= 0)
5124 if (size
< (unsigned)len
)
5126 if (mem_size
!= size
)
5131 /* output_constructor outer state of relevance in recursive calls, typically
5132 for nested aggregate bitfields. */
5134 struct oc_outer_state
{
5135 unsigned int bit_offset
; /* current position in ... */
5136 int byte
; /* ... the outer byte buffer. */
5139 static unsigned HOST_WIDE_INT
5140 output_constructor (tree
, unsigned HOST_WIDE_INT
, unsigned int, bool,
5143 /* Output assembler code for constant EXP, with no label.
5144 This includes the pseudo-op such as ".int" or ".byte", and a newline.
5145 Assumes output_addressed_constants has been done on EXP already.
5147 Generate at least SIZE bytes of assembler data, padding at the end
5148 with zeros if necessary. SIZE must always be specified. The returned
5149 value is the actual number of bytes of assembler data generated, which
5150 may be bigger than SIZE if the object contains a variable length field.
5152 SIZE is important for structure constructors,
5153 since trailing members may have been omitted from the constructor.
5154 It is also important for initialization of arrays from string constants
5155 since the full length of the string constant might not be wanted.
5156 It is also needed for initialization of unions, where the initializer's
5157 type is just one member, and that may not be as long as the union.
5159 There a case in which we would fail to output exactly SIZE bytes:
5160 for a structure constructor that wants to produce more than SIZE bytes.
5161 But such constructors will never be generated for any possible input.
5163 ALIGN is the alignment of the data in bits.
5165 If REVERSE is true, EXP is output in reverse storage order. */
5167 static unsigned HOST_WIDE_INT
5168 output_constant (tree exp
, unsigned HOST_WIDE_INT size
, unsigned int align
,
5169 bool reverse
, bool merge_strings
)
5171 enum tree_code code
;
5172 unsigned HOST_WIDE_INT thissize
;
5175 if (size
== 0 || flag_syntax_only
)
5178 /* See if we're trying to initialize a pointer in a non-default mode
5179 to the address of some declaration somewhere. If the target says
5180 the mode is valid for pointers, assume the target has a way of
5182 if (TREE_CODE (exp
) == NOP_EXPR
5183 && POINTER_TYPE_P (TREE_TYPE (exp
))
5184 && targetm
.addr_space
.valid_pointer_mode
5185 (SCALAR_INT_TYPE_MODE (TREE_TYPE (exp
)),
5186 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp
)))))
5188 tree saved_type
= TREE_TYPE (exp
);
5190 /* Peel off any intermediate conversions-to-pointer for valid
5192 while (TREE_CODE (exp
) == NOP_EXPR
5193 && POINTER_TYPE_P (TREE_TYPE (exp
))
5194 && targetm
.addr_space
.valid_pointer_mode
5195 (SCALAR_INT_TYPE_MODE (TREE_TYPE (exp
)),
5196 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp
)))))
5197 exp
= TREE_OPERAND (exp
, 0);
5199 /* If what we're left with is the address of something, we can
5200 convert the address to the final type and output it that
5202 if (TREE_CODE (exp
) == ADDR_EXPR
)
5203 exp
= build1 (ADDR_EXPR
, saved_type
, TREE_OPERAND (exp
, 0));
5204 /* Likewise for constant ints. */
5205 else if (TREE_CODE (exp
) == INTEGER_CST
)
5206 exp
= fold_convert (saved_type
, exp
);
5210 /* Eliminate any conversions since we'll be outputting the underlying
5212 while (CONVERT_EXPR_P (exp
)
5213 || TREE_CODE (exp
) == NON_LVALUE_EXPR
5214 || TREE_CODE (exp
) == VIEW_CONVERT_EXPR
)
5216 HOST_WIDE_INT type_size
= int_size_in_bytes (TREE_TYPE (exp
));
5217 HOST_WIDE_INT op_size
= int_size_in_bytes (TREE_TYPE (TREE_OPERAND (exp
, 0)));
5219 /* Make sure eliminating the conversion is really a no-op, except with
5220 VIEW_CONVERT_EXPRs to allow for wild Ada unchecked conversions and
5221 union types to allow for Ada unchecked unions. */
5222 if (type_size
> op_size
5223 && TREE_CODE (exp
) != VIEW_CONVERT_EXPR
5224 && TREE_CODE (TREE_TYPE (exp
)) != UNION_TYPE
)
5225 /* Keep the conversion. */
5228 exp
= TREE_OPERAND (exp
, 0);
5231 code
= TREE_CODE (TREE_TYPE (exp
));
5232 thissize
= int_size_in_bytes (TREE_TYPE (exp
));
5234 /* Allow a constructor with no elements for any data type.
5235 This means to fill the space with zeros. */
5236 if (TREE_CODE (exp
) == CONSTRUCTOR
5237 && vec_safe_is_empty (CONSTRUCTOR_ELTS (exp
)))
5239 assemble_zeros (size
);
5243 if (TREE_CODE (exp
) == FDESC_EXPR
)
5245 #ifdef ASM_OUTPUT_FDESC
5246 HOST_WIDE_INT part
= tree_to_shwi (TREE_OPERAND (exp
, 1));
5247 tree decl
= TREE_OPERAND (exp
, 0);
5248 ASM_OUTPUT_FDESC (asm_out_file
, decl
, part
);
5255 /* Now output the underlying data. If we've handling the padding, return.
5256 Otherwise, break and ensure SIZE is the size written. */
5263 case REFERENCE_TYPE
:
5265 case FIXED_POINT_TYPE
:
5267 cst
= expand_expr (exp
, NULL_RTX
, VOIDmode
, EXPAND_INITIALIZER
);
5269 cst
= flip_storage_order (TYPE_MODE (TREE_TYPE (exp
)), cst
);
5270 if (!assemble_integer (cst
, MIN (size
, thissize
), align
, 0))
5271 error ("initializer for integer/fixed-point value is too complicated");
5275 if (TREE_CODE (exp
) != REAL_CST
)
5276 error ("initializer for floating value is not a floating constant");
5278 assemble_real (TREE_REAL_CST (exp
),
5279 SCALAR_FLOAT_TYPE_MODE (TREE_TYPE (exp
)),
5284 output_constant (TREE_REALPART (exp
), thissize
/ 2, align
,
5286 output_constant (TREE_IMAGPART (exp
), thissize
/ 2,
5287 min_align (align
, BITS_PER_UNIT
* (thissize
/ 2)),
5293 switch (TREE_CODE (exp
))
5296 return output_constructor (exp
, size
, align
, reverse
, NULL
);
5298 thissize
= (unsigned HOST_WIDE_INT
)TREE_STRING_LENGTH (exp
);
5301 || TREE_STRING_POINTER (exp
) [thissize
- 1] != '\0'))
5303 gcc_checking_assert (check_string_literal (exp
, size
));
5304 assemble_string (TREE_STRING_POINTER (exp
), thissize
);
5308 scalar_mode inner
= SCALAR_TYPE_MODE (TREE_TYPE (TREE_TYPE (exp
)));
5309 unsigned int nalign
= MIN (align
, GET_MODE_ALIGNMENT (inner
));
5310 int elt_size
= GET_MODE_SIZE (inner
);
5311 output_constant (VECTOR_CST_ELT (exp
, 0), elt_size
, align
,
5313 thissize
= elt_size
;
5314 /* Static constants must have a fixed size. */
5315 unsigned int nunits
= VECTOR_CST_NELTS (exp
).to_constant ();
5316 for (unsigned int i
= 1; i
< nunits
; i
++)
5318 output_constant (VECTOR_CST_ELT (exp
, i
), elt_size
, nalign
,
5320 thissize
+= elt_size
;
5331 gcc_assert (TREE_CODE (exp
) == CONSTRUCTOR
);
5332 return output_constructor (exp
, size
, align
, reverse
, NULL
);
5341 if (size
> thissize
)
5342 assemble_zeros (size
- thissize
);
5347 /* Subroutine of output_constructor, used for computing the size of
5348 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
5349 type with an unspecified upper bound. */
5351 static unsigned HOST_WIDE_INT
5352 array_size_for_constructor (tree val
)
5355 unsigned HOST_WIDE_INT cnt
;
5356 tree index
, value
, tmp
;
5359 /* This code used to attempt to handle string constants that are not
5360 arrays of single-bytes, but nothing else does, so there's no point in
5362 if (TREE_CODE (val
) == STRING_CST
)
5363 return TREE_STRING_LENGTH (val
);
5365 max_index
= NULL_TREE
;
5366 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (val
), cnt
, index
, value
)
5368 if (TREE_CODE (index
) == RANGE_EXPR
)
5369 index
= TREE_OPERAND (index
, 1);
5370 if (max_index
== NULL_TREE
|| tree_int_cst_lt (max_index
, index
))
5374 if (max_index
== NULL_TREE
)
5377 /* Compute the total number of array elements. */
5378 tmp
= TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val
)));
5379 i
= wi::to_offset (max_index
) - wi::to_offset (tmp
) + 1;
5381 /* Multiply by the array element unit size to find number of bytes. */
5382 i
*= wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val
))));
5384 gcc_assert (wi::fits_uhwi_p (i
));
5385 return i
.to_uhwi ();
5388 /* Other datastructures + helpers for output_constructor. */
5390 /* output_constructor local state to support interaction with helpers. */
5392 struct oc_local_state
{
5394 /* Received arguments. */
5395 tree exp
; /* Constructor expression. */
5396 tree type
; /* Type of constructor expression. */
5397 unsigned HOST_WIDE_INT size
; /* # bytes to output - pad if necessary. */
5398 unsigned int align
; /* Known initial alignment. */
5399 tree min_index
; /* Lower bound if specified for an array. */
5401 /* Output processing state. */
5402 HOST_WIDE_INT total_bytes
; /* # bytes output so far / current position. */
5403 int byte
; /* Part of a bitfield byte yet to be output. */
5404 int last_relative_index
; /* Implicit or explicit index of the last
5405 array element output within a bitfield. */
5406 bool byte_buffer_in_use
; /* Whether BYTE is in use. */
5407 bool reverse
; /* Whether reverse storage order is in use. */
5409 /* Current element. */
5410 tree field
; /* Current field decl in a record. */
5411 tree val
; /* Current element value. */
5412 tree index
; /* Current element index. */
5416 /* Helper for output_constructor. From the current LOCAL state, output a
5417 RANGE_EXPR element. */
5420 output_constructor_array_range (oc_local_state
*local
)
5422 /* Perform the index calculation in modulo arithmetic but
5423 sign-extend the result because Ada has negative DECL_FIELD_OFFSETs
5424 but we are using an unsigned sizetype. */
5425 unsigned prec
= TYPE_PRECISION (sizetype
);
5426 offset_int idx
= wi::sext (wi::to_offset (TREE_OPERAND (local
->index
, 0))
5427 - wi::to_offset (local
->min_index
), prec
);
5428 tree valtype
= TREE_TYPE (local
->val
);
5429 HOST_WIDE_INT fieldpos
5430 = (idx
* wi::to_offset (TYPE_SIZE_UNIT (valtype
))).to_short_addr ();
5432 /* Advance to offset of this element. */
5433 if (fieldpos
> local
->total_bytes
)
5435 assemble_zeros (fieldpos
- local
->total_bytes
);
5436 local
->total_bytes
= fieldpos
;
5439 /* Must not go backwards. */
5440 gcc_assert (fieldpos
== local
->total_bytes
);
5442 unsigned HOST_WIDE_INT fieldsize
5443 = int_size_in_bytes (TREE_TYPE (local
->type
));
5445 HOST_WIDE_INT lo_index
5446 = tree_to_shwi (TREE_OPERAND (local
->index
, 0));
5447 HOST_WIDE_INT hi_index
5448 = tree_to_shwi (TREE_OPERAND (local
->index
, 1));
5449 HOST_WIDE_INT index
;
5452 = min_align (local
->align
, fieldsize
* BITS_PER_UNIT
);
5454 for (index
= lo_index
; index
<= hi_index
; index
++)
5456 /* Output the element's initial value. */
5457 if (local
->val
== NULL_TREE
)
5458 assemble_zeros (fieldsize
);
5460 fieldsize
= output_constant (local
->val
, fieldsize
, align2
,
5461 local
->reverse
, false);
5463 /* Count its size. */
5464 local
->total_bytes
+= fieldsize
;
5468 /* Helper for output_constructor. From the current LOCAL state, output a
5469 field element that is not true bitfield or part of an outer one. */
5472 output_constructor_regular_field (oc_local_state
*local
)
5474 /* Field size and position. Since this structure is static, we know the
5475 positions are constant. */
5476 unsigned HOST_WIDE_INT fieldsize
;
5477 HOST_WIDE_INT fieldpos
;
5479 unsigned int align2
;
5481 /* Output any buffered-up bit-fields preceding this element. */
5482 if (local
->byte_buffer_in_use
)
5484 assemble_integer (GEN_INT (local
->byte
), 1, BITS_PER_UNIT
, 1);
5485 local
->total_bytes
++;
5486 local
->byte_buffer_in_use
= false;
5489 if (local
->index
!= NULL_TREE
)
5491 /* Perform the index calculation in modulo arithmetic but
5492 sign-extend the result because Ada has negative DECL_FIELD_OFFSETs
5493 but we are using an unsigned sizetype. */
5494 unsigned prec
= TYPE_PRECISION (sizetype
);
5495 offset_int idx
= wi::sext (wi::to_offset (local
->index
)
5496 - wi::to_offset (local
->min_index
), prec
);
5497 fieldpos
= (idx
* wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (local
->val
))))
5500 else if (local
->field
!= NULL_TREE
)
5501 fieldpos
= int_byte_position (local
->field
);
5505 /* Advance to offset of this element.
5506 Note no alignment needed in an array, since that is guaranteed
5507 if each element has the proper size. */
5508 if (local
->field
!= NULL_TREE
|| local
->index
!= NULL_TREE
)
5510 if (fieldpos
> local
->total_bytes
)
5512 assemble_zeros (fieldpos
- local
->total_bytes
);
5513 local
->total_bytes
= fieldpos
;
5516 /* Must not go backwards. */
5517 gcc_assert (fieldpos
== local
->total_bytes
);
5520 /* Find the alignment of this element. */
5521 align2
= min_align (local
->align
, BITS_PER_UNIT
* fieldpos
);
5523 /* Determine size this element should occupy. */
5528 /* If this is an array with an unspecified upper bound,
5529 the initializer determines the size. */
5530 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
5531 but we cannot do this until the deprecated support for
5532 initializing zero-length array members is removed. */
5533 if (TREE_CODE (TREE_TYPE (local
->field
)) == ARRAY_TYPE
5534 && (!TYPE_DOMAIN (TREE_TYPE (local
->field
))
5535 || !TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (local
->field
)))))
5537 unsigned HOST_WIDE_INT fldsize
5538 = array_size_for_constructor (local
->val
);
5539 fieldsize
= int_size_in_bytes (TREE_TYPE (local
->val
));
5540 /* In most cases fieldsize == fldsize as the size of the initializer
5541 determines how many elements the flexible array member has. For
5542 C++ fldsize can be smaller though, if the last or several last or
5543 all initializers of the flexible array member have side-effects
5544 and the FE splits them into dynamic initialization. */
5545 gcc_checking_assert (fieldsize
>= fldsize
);
5546 /* Given a non-empty initialization, this field had better
5547 be last. Given a flexible array member, the next field
5548 on the chain is a TYPE_DECL of the enclosing struct. */
5549 const_tree next
= DECL_CHAIN (local
->field
);
5550 gcc_assert (!fieldsize
|| !next
|| TREE_CODE (next
) != FIELD_DECL
);
5553 fieldsize
= tree_to_uhwi (DECL_SIZE_UNIT (local
->field
));
5556 fieldsize
= int_size_in_bytes (TREE_TYPE (local
->type
));
5558 /* Output the element's initial value. */
5559 if (local
->val
== NULL_TREE
)
5560 assemble_zeros (fieldsize
);
5562 fieldsize
= output_constant (local
->val
, fieldsize
, align2
,
5563 local
->reverse
, false);
5565 /* Count its size. */
5566 local
->total_bytes
+= fieldsize
;
5569 /* Helper for output_constructor. From the LOCAL state, output an element
5570 that is a true bitfield or part of an outer one. BIT_OFFSET is the offset
5571 from the start of a possibly ongoing outer byte buffer. */
5574 output_constructor_bitfield (oc_local_state
*local
, unsigned int bit_offset
)
5576 /* Bit size of this element. */
5577 HOST_WIDE_INT ebitsize
5579 ? tree_to_uhwi (DECL_SIZE (local
->field
))
5580 : tree_to_uhwi (TYPE_SIZE (TREE_TYPE (local
->type
))));
5582 /* Relative index of this element if this is an array component. */
5583 HOST_WIDE_INT relative_index
5586 ? (tree_to_shwi (local
->index
)
5587 - tree_to_shwi (local
->min_index
))
5588 : local
->last_relative_index
+ 1)
5591 /* Bit position of this element from the start of the containing
5593 HOST_WIDE_INT constructor_relative_ebitpos
5595 ? int_bit_position (local
->field
)
5596 : ebitsize
* relative_index
);
5598 /* Bit position of this element from the start of a possibly ongoing
5599 outer byte buffer. */
5600 HOST_WIDE_INT byte_relative_ebitpos
5601 = bit_offset
+ constructor_relative_ebitpos
;
5603 /* From the start of a possibly ongoing outer byte buffer, offsets to
5604 the first bit of this element and to the first bit past the end of
5606 HOST_WIDE_INT next_offset
= byte_relative_ebitpos
;
5607 HOST_WIDE_INT end_offset
= byte_relative_ebitpos
+ ebitsize
;
5609 local
->last_relative_index
= relative_index
;
5611 if (local
->val
== NULL_TREE
)
5612 local
->val
= integer_zero_node
;
5614 while (TREE_CODE (local
->val
) == VIEW_CONVERT_EXPR
5615 || TREE_CODE (local
->val
) == NON_LVALUE_EXPR
)
5616 local
->val
= TREE_OPERAND (local
->val
, 0);
5618 if (TREE_CODE (local
->val
) != INTEGER_CST
5619 && TREE_CODE (local
->val
) != CONSTRUCTOR
)
5621 error ("invalid initial value for member %qE", DECL_NAME (local
->field
));
5625 /* If this field does not start in this (or next) byte, skip some bytes. */
5626 if (next_offset
/ BITS_PER_UNIT
!= local
->total_bytes
)
5628 /* Output remnant of any bit field in previous bytes. */
5629 if (local
->byte_buffer_in_use
)
5631 assemble_integer (GEN_INT (local
->byte
), 1, BITS_PER_UNIT
, 1);
5632 local
->total_bytes
++;
5633 local
->byte_buffer_in_use
= false;
5636 /* If still not at proper byte, advance to there. */
5637 if (next_offset
/ BITS_PER_UNIT
!= local
->total_bytes
)
5639 gcc_assert (next_offset
/ BITS_PER_UNIT
>= local
->total_bytes
);
5640 assemble_zeros (next_offset
/ BITS_PER_UNIT
- local
->total_bytes
);
5641 local
->total_bytes
= next_offset
/ BITS_PER_UNIT
;
5645 /* Set up the buffer if necessary. */
5646 if (!local
->byte_buffer_in_use
)
5650 local
->byte_buffer_in_use
= true;
5653 /* If this is nested constructor, recurse passing the bit offset and the
5654 pending data, then retrieve the new pending data afterwards. */
5655 if (TREE_CODE (local
->val
) == CONSTRUCTOR
)
5657 oc_outer_state temp_state
;
5658 temp_state
.bit_offset
= next_offset
% BITS_PER_UNIT
;
5659 temp_state
.byte
= local
->byte
;
5661 += output_constructor (local
->val
, 0, 0, local
->reverse
, &temp_state
);
5662 local
->byte
= temp_state
.byte
;
5666 /* Otherwise, we must split the element into pieces that fall within
5667 separate bytes, and combine each byte with previous or following
5669 while (next_offset
< end_offset
)
5673 unsigned HOST_WIDE_INT value
;
5674 HOST_WIDE_INT next_byte
= next_offset
/ BITS_PER_UNIT
;
5675 HOST_WIDE_INT next_bit
= next_offset
% BITS_PER_UNIT
;
5677 /* Advance from byte to byte within this element when necessary. */
5678 while (next_byte
!= local
->total_bytes
)
5680 assemble_integer (GEN_INT (local
->byte
), 1, BITS_PER_UNIT
, 1);
5681 local
->total_bytes
++;
5685 /* Number of bits we can process at once (all part of the same byte). */
5686 this_time
= MIN (end_offset
- next_offset
, BITS_PER_UNIT
- next_bit
);
5687 if (local
->reverse
? !BYTES_BIG_ENDIAN
: BYTES_BIG_ENDIAN
)
5689 /* For big-endian data, take the most significant bits (of the
5690 bits that are significant) first and put them into bytes from
5691 the most significant end. */
5692 shift
= end_offset
- next_offset
- this_time
;
5694 /* Don't try to take a bunch of bits that cross
5695 the word boundary in the INTEGER_CST. We can
5696 only select bits from one element. */
5697 if ((shift
/ HOST_BITS_PER_WIDE_INT
)
5698 != ((shift
+ this_time
- 1) / HOST_BITS_PER_WIDE_INT
))
5700 const int end
= shift
+ this_time
- 1;
5701 shift
= end
& -HOST_BITS_PER_WIDE_INT
;
5702 this_time
= end
- shift
+ 1;
5705 /* Now get the bits we want to insert. */
5706 value
= wi::extract_uhwi (wi::to_widest (local
->val
),
5709 /* Get the result. This works only when:
5710 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
5711 local
->byte
|= value
<< (BITS_PER_UNIT
- this_time
- next_bit
);
5715 /* On little-endian machines, take the least significant bits of
5716 the value first and pack them starting at the least significant
5717 bits of the bytes. */
5718 shift
= next_offset
- byte_relative_ebitpos
;
5720 /* Don't try to take a bunch of bits that cross
5721 the word boundary in the INTEGER_CST. We can
5722 only select bits from one element. */
5723 if ((shift
/ HOST_BITS_PER_WIDE_INT
)
5724 != ((shift
+ this_time
- 1) / HOST_BITS_PER_WIDE_INT
))
5726 = HOST_BITS_PER_WIDE_INT
- (shift
& (HOST_BITS_PER_WIDE_INT
- 1));
5728 /* Now get the bits we want to insert. */
5729 value
= wi::extract_uhwi (wi::to_widest (local
->val
),
5732 /* Get the result. This works only when:
5733 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
5734 local
->byte
|= value
<< next_bit
;
5737 next_offset
+= this_time
;
5738 local
->byte_buffer_in_use
= true;
5742 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
5743 Generate at least SIZE bytes, padding if necessary. OUTER designates the
5744 caller output state of relevance in recursive invocations. */
5746 static unsigned HOST_WIDE_INT
5747 output_constructor (tree exp
, unsigned HOST_WIDE_INT size
, unsigned int align
,
5748 bool reverse
, oc_outer_state
*outer
)
5750 unsigned HOST_WIDE_INT cnt
;
5751 constructor_elt
*ce
;
5752 oc_local_state local
;
5754 /* Setup our local state to communicate with helpers. */
5756 local
.type
= TREE_TYPE (exp
);
5758 local
.align
= align
;
5759 if (TREE_CODE (local
.type
) == ARRAY_TYPE
&& TYPE_DOMAIN (local
.type
))
5760 local
.min_index
= TYPE_MIN_VALUE (TYPE_DOMAIN (local
.type
));
5762 local
.min_index
= integer_zero_node
;
5764 local
.total_bytes
= 0;
5765 local
.byte_buffer_in_use
= outer
!= NULL
;
5766 local
.byte
= outer
? outer
->byte
: 0;
5767 local
.last_relative_index
= -1;
5768 /* The storage order is specified for every aggregate type. */
5769 if (AGGREGATE_TYPE_P (local
.type
))
5770 local
.reverse
= TYPE_REVERSE_STORAGE_ORDER (local
.type
);
5772 local
.reverse
= reverse
;
5774 gcc_assert (HOST_BITS_PER_WIDE_INT
>= BITS_PER_UNIT
);
5776 /* As CE goes through the elements of the constant, FIELD goes through the
5777 structure fields if the constant is a structure. If the constant is a
5778 union, we override this by getting the field from the TREE_LIST element.
5779 But the constant could also be an array. Then FIELD is zero.
5781 There is always a maximum of one element in the chain LINK for unions
5782 (even if the initializer in a source program incorrectly contains
5785 if (TREE_CODE (local
.type
) == RECORD_TYPE
)
5786 local
.field
= TYPE_FIELDS (local
.type
);
5788 local
.field
= NULL_TREE
;
5791 vec_safe_iterate (CONSTRUCTOR_ELTS (exp
), cnt
, &ce
);
5792 cnt
++, local
.field
= local
.field
? DECL_CHAIN (local
.field
) : 0)
5794 local
.val
= ce
->value
;
5795 local
.index
= NULL_TREE
;
5797 /* The element in a union constructor specifies the proper field
5799 if (RECORD_OR_UNION_TYPE_P (local
.type
) && ce
->index
!= NULL_TREE
)
5800 local
.field
= ce
->index
;
5802 else if (TREE_CODE (local
.type
) == ARRAY_TYPE
)
5803 local
.index
= ce
->index
;
5805 if (local
.field
&& flag_verbose_asm
)
5806 fprintf (asm_out_file
, "%s %s:\n",
5808 DECL_NAME (local
.field
)
5809 ? IDENTIFIER_POINTER (DECL_NAME (local
.field
))
5812 /* Eliminate the marker that makes a cast not be an lvalue. */
5813 if (local
.val
!= NULL_TREE
)
5814 STRIP_NOPS (local
.val
);
5816 /* Output the current element, using the appropriate helper ... */
5818 /* For an array slice not part of an outer bitfield. */
5820 && local
.index
!= NULL_TREE
5821 && TREE_CODE (local
.index
) == RANGE_EXPR
)
5822 output_constructor_array_range (&local
);
5824 /* For a field that is neither a true bitfield nor part of an outer one,
5825 known to be at least byte aligned and multiple-of-bytes long. */
5827 && (local
.field
== NULL_TREE
5828 || !CONSTRUCTOR_BITFIELD_P (local
.field
)))
5829 output_constructor_regular_field (&local
);
5831 /* For a true bitfield or part of an outer one. Only INTEGER_CSTs are
5832 supported for scalar fields, so we may need to convert first. */
5835 if (TREE_CODE (local
.val
) == REAL_CST
)
5837 = fold_unary (VIEW_CONVERT_EXPR
,
5838 build_nonstandard_integer_type
5839 (TYPE_PRECISION (TREE_TYPE (local
.val
)), 0),
5841 output_constructor_bitfield (&local
, outer
? outer
->bit_offset
: 0);
5845 /* If we are not at toplevel, save the pending data for our caller.
5846 Otherwise output the pending data and padding zeros as needed. */
5848 outer
->byte
= local
.byte
;
5851 if (local
.byte_buffer_in_use
)
5853 assemble_integer (GEN_INT (local
.byte
), 1, BITS_PER_UNIT
, 1);
5854 local
.total_bytes
++;
5857 if ((unsigned HOST_WIDE_INT
)local
.total_bytes
< local
.size
)
5859 assemble_zeros (local
.size
- local
.total_bytes
);
5860 local
.total_bytes
= local
.size
;
5864 return local
.total_bytes
;
5867 /* Mark DECL as weak. */
5870 mark_weak (tree decl
)
5872 if (DECL_WEAK (decl
))
5875 struct symtab_node
*n
= symtab_node::get (decl
);
5876 if (n
&& n
->refuse_visibility_changes
)
5877 error ("%qD declared weak after being used", decl
);
5878 DECL_WEAK (decl
) = 1;
5880 if (DECL_RTL_SET_P (decl
)
5881 && MEM_P (DECL_RTL (decl
))
5882 && XEXP (DECL_RTL (decl
), 0)
5883 && GET_CODE (XEXP (DECL_RTL (decl
), 0)) == SYMBOL_REF
)
5884 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl
), 0)) = 1;
5887 /* Merge weak status between NEWDECL and OLDDECL. */
5890 merge_weak (tree newdecl
, tree olddecl
)
5892 if (DECL_WEAK (newdecl
) == DECL_WEAK (olddecl
))
5894 if (DECL_WEAK (newdecl
) && TARGET_SUPPORTS_WEAK
)
5897 /* We put the NEWDECL on the weak_decls list at some point
5898 and OLDDECL as well. Keep just OLDDECL on the list. */
5899 for (pwd
= &weak_decls
; *pwd
; pwd
= &TREE_CHAIN (*pwd
))
5900 if (TREE_VALUE (*pwd
) == newdecl
)
5902 *pwd
= TREE_CHAIN (*pwd
);
5909 if (DECL_WEAK (newdecl
))
5913 /* NEWDECL is weak, but OLDDECL is not. */
5915 /* If we already output the OLDDECL, we're in trouble; we can't
5916 go back and make it weak. This should never happen in
5917 unit-at-a-time compilation. */
5918 gcc_assert (!TREE_ASM_WRITTEN (olddecl
));
5920 /* If we've already generated rtl referencing OLDDECL, we may
5921 have done so in a way that will not function properly with
5922 a weak symbol. Again in unit-at-a-time this should be
5924 gcc_assert (!TREE_USED (olddecl
)
5925 || !TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl
)));
5927 /* PR 49899: You cannot convert a static function into a weak, public function. */
5928 if (! TREE_PUBLIC (olddecl
) && TREE_PUBLIC (newdecl
))
5929 error ("weak declaration of %q+D being applied to a already "
5930 "existing, static definition", newdecl
);
5932 if (TARGET_SUPPORTS_WEAK
)
5934 /* We put the NEWDECL on the weak_decls list at some point.
5935 Replace it with the OLDDECL. */
5936 for (wd
= weak_decls
; wd
; wd
= TREE_CHAIN (wd
))
5937 if (TREE_VALUE (wd
) == newdecl
)
5939 TREE_VALUE (wd
) = olddecl
;
5942 /* We may not find the entry on the list. If NEWDECL is a
5943 weak alias, then we will have already called
5944 globalize_decl to remove the entry; in that case, we do
5945 not need to do anything. */
5948 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
5949 mark_weak (olddecl
);
5952 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
5953 weak. Just update NEWDECL to indicate that it's weak too. */
5954 mark_weak (newdecl
);
5957 /* Declare DECL to be a weak symbol. */
5960 declare_weak (tree decl
)
5962 /* With -fsyntax-only, TREE_ASM_WRITTEN might be set on certain function
5963 decls earlier than normally, but as with -fsyntax-only nothing is really
5964 emitted, there is no harm in marking it weak later. */
5965 gcc_assert (TREE_CODE (decl
) != FUNCTION_DECL
5966 || !TREE_ASM_WRITTEN (decl
)
5967 || flag_syntax_only
);
5968 if (! TREE_PUBLIC (decl
))
5970 error ("weak declaration of %q+D must be public", decl
);
5973 else if (!TARGET_SUPPORTS_WEAK
)
5974 warning (0, "weak declaration of %q+D not supported", decl
);
5977 if (!lookup_attribute ("weak", DECL_ATTRIBUTES (decl
)))
5978 DECL_ATTRIBUTES (decl
)
5979 = tree_cons (get_identifier ("weak"), NULL
, DECL_ATTRIBUTES (decl
));
5983 weak_finish_1 (tree decl
)
5985 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
5986 const char *const name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
5989 if (! TREE_USED (decl
))
5992 #ifdef ASM_WEAKEN_DECL
5993 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, NULL
);
5995 #ifdef ASM_WEAKEN_LABEL
5996 ASM_WEAKEN_LABEL (asm_out_file
, name
);
5998 #ifdef ASM_OUTPUT_WEAK_ALIAS
6000 static bool warn_once
= 0;
6003 warning (0, "only weak aliases are supported in this configuration");
6013 /* Fiven an assembly name, find the decl it is associated with. */
6015 find_decl (tree target
)
6017 symtab_node
*node
= symtab_node::get_for_asmname (target
);
6023 /* This TREE_LIST contains weakref targets. */
6025 static GTY(()) tree weakref_targets
;
6027 /* Emit any pending weak declarations. */
6034 for (t
= weakref_targets
; t
; t
= TREE_CHAIN (t
))
6036 tree alias_decl
= TREE_PURPOSE (t
);
6037 tree target
= ultimate_transparent_alias_target (&TREE_VALUE (t
));
6039 if (! TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (alias_decl
))
6040 || TREE_SYMBOL_REFERENCED (target
))
6041 /* Remove alias_decl from the weak list, but leave entries for
6042 the target alone. */
6044 #ifndef ASM_OUTPUT_WEAKREF
6045 else if (! TREE_SYMBOL_REFERENCED (target
))
6047 /* Use ASM_WEAKEN_LABEL only if ASM_WEAKEN_DECL is not
6048 defined, otherwise we and weak_finish_1 would use
6049 different macros. */
6050 # if defined ASM_WEAKEN_LABEL && ! defined ASM_WEAKEN_DECL
6051 ASM_WEAKEN_LABEL (asm_out_file
, IDENTIFIER_POINTER (target
));
6053 tree decl
= find_decl (target
);
6057 decl
= build_decl (DECL_SOURCE_LOCATION (alias_decl
),
6058 TREE_CODE (alias_decl
), target
,
6059 TREE_TYPE (alias_decl
));
6061 DECL_EXTERNAL (decl
) = 1;
6062 TREE_PUBLIC (decl
) = 1;
6063 DECL_ARTIFICIAL (decl
) = 1;
6064 TREE_NOTHROW (decl
) = TREE_NOTHROW (alias_decl
);
6065 TREE_USED (decl
) = 1;
6068 weak_finish_1 (decl
);
6077 /* Remove the alias and the target from the pending weak list
6078 so that we do not emit any .weak directives for the former,
6079 nor multiple .weak directives for the latter. */
6080 for (p
= &weak_decls
; (t2
= *p
) ; )
6082 if (TREE_VALUE (t2
) == alias_decl
6083 || target
== DECL_ASSEMBLER_NAME (TREE_VALUE (t2
)))
6084 *p
= TREE_CHAIN (t2
);
6086 p
= &TREE_CHAIN (t2
);
6089 /* Remove other weakrefs to the same target, to speed things up. */
6090 for (p
= &TREE_CHAIN (t
); (t2
= *p
) ; )
6092 if (target
== ultimate_transparent_alias_target (&TREE_VALUE (t2
)))
6093 *p
= TREE_CHAIN (t2
);
6095 p
= &TREE_CHAIN (t2
);
6100 for (t
= weak_decls
; t
; t
= TREE_CHAIN (t
))
6102 tree decl
= TREE_VALUE (t
);
6104 weak_finish_1 (decl
);
6108 /* Emit the assembly bits to indicate that DECL is globally visible. */
6111 globalize_decl (tree decl
)
6114 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
6115 if (DECL_WEAK (decl
))
6117 const char *name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
6120 #ifdef ASM_WEAKEN_DECL
6121 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, 0);
6123 ASM_WEAKEN_LABEL (asm_out_file
, name
);
6126 /* Remove this function from the pending weak list so that
6127 we do not emit multiple .weak directives for it. */
6128 for (p
= &weak_decls
; (t
= *p
) ; )
6130 if (DECL_ASSEMBLER_NAME (decl
) == DECL_ASSEMBLER_NAME (TREE_VALUE (t
)))
6131 *p
= TREE_CHAIN (t
);
6133 p
= &TREE_CHAIN (t
);
6136 /* Remove weakrefs to the same target from the pending weakref
6137 list, for the same reason. */
6138 for (p
= &weakref_targets
; (t
= *p
) ; )
6140 if (DECL_ASSEMBLER_NAME (decl
)
6141 == ultimate_transparent_alias_target (&TREE_VALUE (t
)))
6142 *p
= TREE_CHAIN (t
);
6144 p
= &TREE_CHAIN (t
);
6151 targetm
.asm_out
.globalize_decl_name (asm_out_file
, decl
);
6154 vec
<alias_pair
, va_gc
> *alias_pairs
;
6156 /* Output the assembler code for a define (equate) using ASM_OUTPUT_DEF
6157 or ASM_OUTPUT_DEF_FROM_DECLS. The function defines the symbol whose
6158 tree node is DECL to have the value of the tree node TARGET. */
6161 do_assemble_alias (tree decl
, tree target
)
6165 /* Emulated TLS had better not get this var. */
6166 gcc_assert (!(!targetm
.have_tls
6168 && DECL_THREAD_LOCAL_P (decl
)));
6170 if (TREE_ASM_WRITTEN (decl
))
6173 id
= DECL_ASSEMBLER_NAME (decl
);
6174 ultimate_transparent_alias_target (&id
);
6175 ultimate_transparent_alias_target (&target
);
6177 /* We must force creation of DECL_RTL for debug info generation, even though
6178 we don't use it here. */
6179 make_decl_rtl (decl
);
6181 TREE_ASM_WRITTEN (decl
) = 1;
6182 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl
)) = 1;
6183 TREE_ASM_WRITTEN (id
) = 1;
6185 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl
)))
6187 if (!TREE_SYMBOL_REFERENCED (target
))
6188 weakref_targets
= tree_cons (decl
, target
, weakref_targets
);
6190 #ifdef ASM_OUTPUT_WEAKREF
6191 ASM_OUTPUT_WEAKREF (asm_out_file
, decl
,
6192 IDENTIFIER_POINTER (id
),
6193 IDENTIFIER_POINTER (target
));
6195 if (!TARGET_SUPPORTS_WEAK
)
6197 error_at (DECL_SOURCE_LOCATION (decl
),
6198 "%qs is not supported in this configuration", "weakref ");
6205 #ifdef ASM_OUTPUT_DEF
6206 tree orig_decl
= decl
;
6208 /* Make name accessible from other files, if appropriate. */
6210 if (TREE_PUBLIC (decl
) || TREE_PUBLIC (orig_decl
))
6212 globalize_decl (decl
);
6213 maybe_assemble_visibility (decl
);
6215 if (TREE_CODE (decl
) == FUNCTION_DECL
6216 && cgraph_node::get (decl
)->ifunc_resolver
)
6218 #if defined (ASM_OUTPUT_TYPE_DIRECTIVE)
6219 if (targetm
.has_ifunc_p ())
6220 ASM_OUTPUT_TYPE_DIRECTIVE
6221 (asm_out_file
, IDENTIFIER_POINTER (id
),
6225 error_at (DECL_SOURCE_LOCATION (decl
),
6226 "%qs is not supported on this target", "ifunc");
6229 # ifdef ASM_OUTPUT_DEF_FROM_DECLS
6230 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file
, decl
, target
);
6232 ASM_OUTPUT_DEF (asm_out_file
,
6233 IDENTIFIER_POINTER (id
),
6234 IDENTIFIER_POINTER (target
));
6236 #elif defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
6241 name
= IDENTIFIER_POINTER (id
);
6242 # ifdef ASM_WEAKEN_DECL
6243 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, IDENTIFIER_POINTER (target
));
6245 ASM_OUTPUT_WEAK_ALIAS (asm_out_file
, name
, IDENTIFIER_POINTER (target
));
6247 /* Remove this function from the pending weak list so that
6248 we do not emit multiple .weak directives for it. */
6249 for (p
= &weak_decls
; (t
= *p
) ; )
6250 if (DECL_ASSEMBLER_NAME (decl
) == DECL_ASSEMBLER_NAME (TREE_VALUE (t
))
6251 || id
== DECL_ASSEMBLER_NAME (TREE_VALUE (t
)))
6252 *p
= TREE_CHAIN (t
);
6254 p
= &TREE_CHAIN (t
);
6256 /* Remove weakrefs to the same target from the pending weakref
6257 list, for the same reason. */
6258 for (p
= &weakref_targets
; (t
= *p
) ; )
6260 if (id
== ultimate_transparent_alias_target (&TREE_VALUE (t
)))
6261 *p
= TREE_CHAIN (t
);
6263 p
= &TREE_CHAIN (t
);
6269 /* Output .symver directive. */
6272 do_assemble_symver (tree decl
, tree target
)
6274 tree id
= DECL_ASSEMBLER_NAME (decl
);
6275 ultimate_transparent_alias_target (&id
);
6276 ultimate_transparent_alias_target (&target
);
6277 #ifdef ASM_OUTPUT_SYMVER_DIRECTIVE
6278 ASM_OUTPUT_SYMVER_DIRECTIVE (asm_out_file
,
6279 IDENTIFIER_POINTER (target
),
6280 IDENTIFIER_POINTER (id
));
6282 error ("symver is only supported on ELF platforms");
6286 /* Emit an assembler directive to make the symbol for DECL an alias to
6287 the symbol for TARGET. */
6290 assemble_alias (tree decl
, tree target
)
6294 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl
)))
6296 tree alias
= DECL_ASSEMBLER_NAME (decl
);
6298 ultimate_transparent_alias_target (&target
);
6300 if (alias
== target
)
6301 error ("%qs symbol %q+D ultimately targets itself", "weakref", decl
);
6302 if (TREE_PUBLIC (decl
))
6303 error ("%qs symbol %q+D must have static linkage", "weakref", decl
);
6307 #if !defined (ASM_OUTPUT_DEF)
6308 # if !defined(ASM_OUTPUT_WEAK_ALIAS) && !defined (ASM_WEAKEN_DECL)
6309 error_at (DECL_SOURCE_LOCATION (decl
),
6310 "alias definitions not supported in this configuration");
6311 TREE_ASM_WRITTEN (decl
) = 1;
6314 if (!DECL_WEAK (decl
))
6316 /* NB: ifunc_resolver isn't set when an error is detected. */
6317 if (TREE_CODE (decl
) == FUNCTION_DECL
6318 && lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl
)))
6319 error_at (DECL_SOURCE_LOCATION (decl
),
6320 "%qs is not supported in this configuration", "ifunc");
6322 error_at (DECL_SOURCE_LOCATION (decl
),
6323 "only weak aliases are supported in this configuration");
6324 TREE_ASM_WRITTEN (decl
) = 1;
6330 TREE_USED (decl
) = 1;
6332 /* Allow aliases to aliases. */
6333 if (TREE_CODE (decl
) == FUNCTION_DECL
)
6334 cgraph_node::get_create (decl
)->alias
= true;
6336 varpool_node::get_create (decl
)->alias
= true;
6338 /* If the target has already been emitted, we don't have to queue the
6339 alias. This saves a tad of memory. */
6340 if (symtab
->global_info_ready
)
6341 target_decl
= find_decl (target
);
6344 if ((target_decl
&& TREE_ASM_WRITTEN (target_decl
))
6345 || symtab
->state
>= EXPANSION
)
6346 do_assemble_alias (decl
, target
);
6349 alias_pair p
= {decl
, target
};
6350 vec_safe_push (alias_pairs
, p
);
6354 /* Record and output a table of translations from original function
6355 to its transaction aware clone. Note that tm_pure functions are
6356 considered to be their own clone. */
6358 struct tm_clone_hasher
: ggc_cache_ptr_hash
<tree_map
>
6360 static hashval_t
hash (tree_map
*m
) { return tree_map_hash (m
); }
6361 static bool equal (tree_map
*a
, tree_map
*b
) { return tree_map_eq (a
, b
); }
6364 keep_cache_entry (tree_map
*&e
)
6366 return ggc_marked_p (e
->base
.from
);
6370 static GTY((cache
)) hash_table
<tm_clone_hasher
> *tm_clone_hash
;
6373 record_tm_clone_pair (tree o
, tree n
)
6375 struct tree_map
**slot
, *h
;
6377 if (tm_clone_hash
== NULL
)
6378 tm_clone_hash
= hash_table
<tm_clone_hasher
>::create_ggc (32);
6380 h
= ggc_alloc
<tree_map
> ();
6381 h
->hash
= htab_hash_pointer (o
);
6385 slot
= tm_clone_hash
->find_slot_with_hash (h
, h
->hash
, INSERT
);
6390 get_tm_clone_pair (tree o
)
6394 struct tree_map
*h
, in
;
6397 in
.hash
= htab_hash_pointer (o
);
6398 h
= tm_clone_hash
->find_with_hash (&in
, in
.hash
);
6405 struct tm_alias_pair
6413 /* Dump the actual pairs to the .tm_clone_table section. */
6416 dump_tm_clone_pairs (vec
<tm_alias_pair
> tm_alias_pairs
)
6420 bool switched
= false;
6422 FOR_EACH_VEC_ELT (tm_alias_pairs
, i
, p
)
6426 struct cgraph_node
*src_n
= cgraph_node::get (src
);
6427 struct cgraph_node
*dst_n
= cgraph_node::get (dst
);
6429 /* The function ipa_tm_create_version() marks the clone as needed if
6430 the original function was needed. But we also mark the clone as
6431 needed if we ever called the clone indirectly through
6432 TM_GETTMCLONE. If neither of these are true, we didn't generate
6433 a clone, and we didn't call it indirectly... no sense keeping it
6434 in the clone table. */
6435 if (!dst_n
|| !dst_n
->definition
)
6438 /* This covers the case where we have optimized the original
6439 function away, and only access the transactional clone. */
6440 if (!src_n
|| !src_n
->definition
)
6445 switch_to_section (targetm
.asm_out
.tm_clone_table_section ());
6446 assemble_align (POINTER_SIZE
);
6450 assemble_integer (XEXP (DECL_RTL (src
), 0),
6451 POINTER_SIZE_UNITS
, POINTER_SIZE
, 1);
6452 assemble_integer (XEXP (DECL_RTL (dst
), 0),
6453 POINTER_SIZE_UNITS
, POINTER_SIZE
, 1);
6457 /* Provide a default for the tm_clone_table section. */
6460 default_clone_table_section (void)
6462 return get_named_section (NULL
, ".tm_clone_table", 3);
6465 /* Helper comparison function for qsorting by the DECL_UID stored in
6466 alias_pair->emitted_diags. */
6469 tm_alias_pair_cmp (const void *x
, const void *y
)
6471 const tm_alias_pair
*p1
= (const tm_alias_pair
*) x
;
6472 const tm_alias_pair
*p2
= (const tm_alias_pair
*) y
;
6473 if (p1
->uid
< p2
->uid
)
6475 if (p1
->uid
> p2
->uid
)
6481 finish_tm_clone_pairs (void)
6483 vec
<tm_alias_pair
> tm_alias_pairs
= vNULL
;
6485 if (tm_clone_hash
== NULL
)
6488 /* We need a determenistic order for the .tm_clone_table, otherwise
6489 we will get bootstrap comparison failures, so dump the hash table
6490 to a vector, sort it, and dump the vector. */
6492 /* Dump the hashtable to a vector. */
6494 hash_table
<tm_clone_hasher
>::iterator iter
;
6495 FOR_EACH_HASH_TABLE_ELEMENT (*tm_clone_hash
, map
, tree_map
*, iter
)
6497 tm_alias_pair p
= {DECL_UID (map
->base
.from
), map
->base
.from
, map
->to
};
6498 tm_alias_pairs
.safe_push (p
);
6501 tm_alias_pairs
.qsort (tm_alias_pair_cmp
);
6504 dump_tm_clone_pairs (tm_alias_pairs
);
6506 tm_clone_hash
->empty ();
6507 tm_clone_hash
= NULL
;
6508 tm_alias_pairs
.release ();
6512 /* Emit an assembler directive to set symbol for DECL visibility to
6513 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
6516 default_assemble_visibility (tree decl ATTRIBUTE_UNUSED
,
6517 int vis ATTRIBUTE_UNUSED
)
6519 #ifdef HAVE_GAS_HIDDEN
6520 static const char * const visibility_types
[] = {
6521 NULL
, "protected", "hidden", "internal"
6524 const char *name
, *type
;
6527 id
= DECL_ASSEMBLER_NAME (decl
);
6528 ultimate_transparent_alias_target (&id
);
6529 name
= IDENTIFIER_POINTER (id
);
6531 type
= visibility_types
[vis
];
6533 fprintf (asm_out_file
, "\t.%s\t", type
);
6534 assemble_name (asm_out_file
, name
);
6535 fprintf (asm_out_file
, "\n");
6537 if (!DECL_ARTIFICIAL (decl
))
6538 warning (OPT_Wattributes
, "visibility attribute not supported "
6539 "in this configuration; ignored");
6543 /* A helper function to call assemble_visibility when needed for a decl. */
6546 maybe_assemble_visibility (tree decl
)
6548 enum symbol_visibility vis
= DECL_VISIBILITY (decl
);
6549 if (vis
!= VISIBILITY_DEFAULT
)
6551 targetm
.asm_out
.assemble_visibility (decl
, vis
);
6558 /* Returns 1 if the target configuration supports defining public symbols
6559 so that one of them will be chosen at link time instead of generating a
6560 multiply-defined symbol error, whether through the use of weak symbols or
6561 a target-specific mechanism for having duplicates discarded. */
6564 supports_one_only (void)
6566 if (SUPPORTS_ONE_ONLY
)
6568 return TARGET_SUPPORTS_WEAK
;
6571 /* Set up DECL as a public symbol that can be defined in multiple
6572 translation units without generating a linker error. */
6575 make_decl_one_only (tree decl
, tree comdat_group
)
6577 struct symtab_node
*symbol
;
6578 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl
));
6580 TREE_PUBLIC (decl
) = 1;
6583 symbol
= varpool_node::get_create (decl
);
6585 symbol
= cgraph_node::get_create (decl
);
6587 if (SUPPORTS_ONE_ONLY
)
6589 #ifdef MAKE_DECL_ONE_ONLY
6590 MAKE_DECL_ONE_ONLY (decl
);
6592 symbol
->set_comdat_group (comdat_group
);
6594 else if (VAR_P (decl
)
6595 && (DECL_INITIAL (decl
) == 0
6596 || (!in_lto_p
&& DECL_INITIAL (decl
) == error_mark_node
)))
6597 DECL_COMMON (decl
) = 1;
6600 gcc_assert (TARGET_SUPPORTS_WEAK
);
6601 DECL_WEAK (decl
) = 1;
6606 init_varasm_once (void)
6608 section_htab
= hash_table
<section_hasher
>::create_ggc (31);
6609 object_block_htab
= hash_table
<object_block_hasher
>::create_ggc (31);
6610 const_desc_htab
= hash_table
<tree_descriptor_hasher
>::create_ggc (1009);
6612 shared_constant_pool
= create_constant_pool ();
6614 #ifdef TEXT_SECTION_ASM_OP
6615 text_section
= get_unnamed_section (SECTION_CODE
, output_section_asm_op
,
6616 TEXT_SECTION_ASM_OP
);
6619 #ifdef DATA_SECTION_ASM_OP
6620 data_section
= get_unnamed_section (SECTION_WRITE
, output_section_asm_op
,
6621 DATA_SECTION_ASM_OP
);
6624 #ifdef SDATA_SECTION_ASM_OP
6625 sdata_section
= get_unnamed_section (SECTION_WRITE
, output_section_asm_op
,
6626 SDATA_SECTION_ASM_OP
);
6629 #ifdef READONLY_DATA_SECTION_ASM_OP
6630 readonly_data_section
= get_unnamed_section (0, output_section_asm_op
,
6631 READONLY_DATA_SECTION_ASM_OP
);
6634 #ifdef CTORS_SECTION_ASM_OP
6635 ctors_section
= get_unnamed_section (0, output_section_asm_op
,
6636 CTORS_SECTION_ASM_OP
);
6639 #ifdef DTORS_SECTION_ASM_OP
6640 dtors_section
= get_unnamed_section (0, output_section_asm_op
,
6641 DTORS_SECTION_ASM_OP
);
6644 #ifdef BSS_SECTION_ASM_OP
6645 bss_section
= get_unnamed_section (SECTION_WRITE
| SECTION_BSS
,
6646 output_section_asm_op
,
6647 BSS_SECTION_ASM_OP
);
6650 #ifdef SBSS_SECTION_ASM_OP
6651 sbss_section
= get_unnamed_section (SECTION_WRITE
| SECTION_BSS
,
6652 output_section_asm_op
,
6653 SBSS_SECTION_ASM_OP
);
6656 tls_comm_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
6657 | SECTION_COMMON
, emit_tls_common
);
6658 lcomm_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
6659 | SECTION_COMMON
, emit_local
);
6660 comm_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
6661 | SECTION_COMMON
, emit_common
);
6663 #if defined ASM_OUTPUT_ALIGNED_BSS
6664 bss_noswitch_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
,
6668 targetm
.asm_out
.init_sections ();
6670 if (readonly_data_section
== NULL
)
6671 readonly_data_section
= text_section
;
6673 #ifdef ASM_OUTPUT_EXTERNAL
6674 pending_assemble_externals_set
= new hash_set
<tree
>;
6679 decl_default_tls_model (const_tree decl
)
6681 enum tls_model kind
;
6684 is_local
= targetm
.binds_local_p (decl
);
6688 kind
= TLS_MODEL_LOCAL_EXEC
;
6690 kind
= TLS_MODEL_INITIAL_EXEC
;
6693 /* Local dynamic is inefficient when we're not combining the
6694 parts of the address. */
6695 else if (optimize
&& is_local
)
6696 kind
= TLS_MODEL_LOCAL_DYNAMIC
;
6698 kind
= TLS_MODEL_GLOBAL_DYNAMIC
;
6699 if (kind
< flag_tls_default
)
6700 kind
= flag_tls_default
;
6705 /* Select a set of attributes for section NAME based on the properties
6706 of DECL and whether or not RELOC indicates that DECL's initializer
6707 might contain runtime relocations.
6709 We make the section read-only and executable for a function decl,
6710 read-only for a const data decl, and writable for a non-const data decl. */
6713 default_section_type_flags (tree decl
, const char *name
, int reloc
)
6717 if (decl
&& TREE_CODE (decl
) == FUNCTION_DECL
)
6718 flags
= SECTION_CODE
;
6721 enum section_category category
6722 = categorize_decl_for_section (decl
, reloc
);
6723 if (decl_readonly_section_1 (category
))
6725 else if (category
== SECCAT_DATA_REL_RO
6726 || category
== SECCAT_DATA_REL_RO_LOCAL
)
6727 flags
= SECTION_WRITE
| SECTION_RELRO
;
6729 flags
= SECTION_WRITE
;
6733 flags
= SECTION_WRITE
;
6734 if (strcmp (name
, ".data.rel.ro") == 0
6735 || strcmp (name
, ".data.rel.ro.local") == 0)
6736 flags
|= SECTION_RELRO
;
6739 if (decl
&& DECL_P (decl
) && DECL_COMDAT_GROUP (decl
))
6740 flags
|= SECTION_LINKONCE
;
6742 if (strcmp (name
, ".vtable_map_vars") == 0)
6743 flags
|= SECTION_LINKONCE
;
6745 if (decl
&& VAR_P (decl
) && DECL_THREAD_LOCAL_P (decl
))
6746 flags
|= SECTION_TLS
| SECTION_WRITE
;
6748 if (strcmp (name
, ".bss") == 0
6749 || startswith (name
, ".bss.")
6750 || startswith (name
, ".gnu.linkonce.b.")
6751 || strcmp (name
, ".persistent.bss") == 0
6752 || strcmp (name
, ".sbss") == 0
6753 || startswith (name
, ".sbss.")
6754 || startswith (name
, ".gnu.linkonce.sb."))
6755 flags
|= SECTION_BSS
;
6757 if (strcmp (name
, ".tdata") == 0
6758 || startswith (name
, ".tdata.")
6759 || startswith (name
, ".gnu.linkonce.td."))
6760 flags
|= SECTION_TLS
;
6762 if (strcmp (name
, ".tbss") == 0
6763 || startswith (name
, ".tbss.")
6764 || startswith (name
, ".gnu.linkonce.tb."))
6765 flags
|= SECTION_TLS
| SECTION_BSS
;
6767 if (strcmp (name
, ".noinit") == 0)
6768 flags
|= SECTION_WRITE
| SECTION_BSS
| SECTION_NOTYPE
;
6770 if (strcmp (name
, ".persistent") == 0)
6771 flags
|= SECTION_WRITE
| SECTION_NOTYPE
;
6773 /* Various sections have special ELF types that the assembler will
6774 assign by default based on the name. They are neither SHT_PROGBITS
6775 nor SHT_NOBITS, so when changing sections we don't want to print a
6776 section type (@progbits or @nobits). Rather than duplicating the
6777 assembler's knowledge of what those special name patterns are, just
6778 let the assembler choose the type if we don't know a specific
6779 reason to set it to something other than the default. SHT_PROGBITS
6780 is the default for sections whose name is not specially known to
6781 the assembler, so it does no harm to leave the choice to the
6782 assembler when @progbits is the best thing we know to use. If
6783 someone is silly enough to emit code or TLS variables to one of
6784 these sections, then don't handle them specially.
6786 default_elf_asm_named_section (below) handles the BSS, TLS, ENTSIZE, and
6787 LINKONCE cases when NOTYPE is not set, so leave those to its logic. */
6788 if (!(flags
& (SECTION_CODE
| SECTION_BSS
| SECTION_TLS
| SECTION_ENTSIZE
))
6789 && !(HAVE_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
)))
6790 flags
|= SECTION_NOTYPE
;
6795 /* Return true if the target supports some form of global BSS,
6796 either through bss_noswitch_section, or by selecting a BSS
6797 section in TARGET_ASM_SELECT_SECTION. */
6800 have_global_bss_p (void)
6802 return bss_noswitch_section
|| targetm
.have_switchable_bss_sections
;
6805 /* Output assembly to switch to section NAME with attribute FLAGS.
6806 Four variants for common object file formats. */
6809 default_no_named_section (const char *name ATTRIBUTE_UNUSED
,
6810 unsigned int flags ATTRIBUTE_UNUSED
,
6811 tree decl ATTRIBUTE_UNUSED
)
6813 /* Some object formats don't support named sections at all. The
6814 front-end should already have flagged this as an error. */
6818 #ifndef TLS_SECTION_ASM_FLAG
6819 #define TLS_SECTION_ASM_FLAG 'T'
6823 default_elf_asm_named_section (const char *name
, unsigned int flags
,
6826 char flagchars
[11], *f
= flagchars
;
6827 unsigned int numeric_value
= 0;
6829 /* If we have already declared this section, we can use an
6830 abbreviated form to switch back to it -- unless this section is
6831 part of a COMDAT groups or with SHF_GNU_RETAIN or with SHF_LINK_ORDER,
6832 in which case GAS requires the full declaration every time. */
6833 if (!(HAVE_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
6834 && !(flags
& (SECTION_RETAIN
| SECTION_LINK_ORDER
))
6835 && (flags
& SECTION_DECLARED
))
6837 fprintf (asm_out_file
, "\t.section\t%s\n", name
);
6841 /* If we have a machine specific flag, then use the numeric value to pass
6843 if (targetm
.asm_out
.elf_flags_numeric (flags
, &numeric_value
))
6844 snprintf (f
, sizeof (flagchars
), "0x%08x", numeric_value
);
6847 if (!(flags
& SECTION_DEBUG
))
6849 #if HAVE_GAS_SECTION_EXCLUDE
6850 if (flags
& SECTION_EXCLUDE
)
6853 if (flags
& SECTION_WRITE
)
6855 if (flags
& SECTION_CODE
)
6857 if (flags
& SECTION_SMALL
)
6859 if (flags
& SECTION_MERGE
)
6861 if (flags
& SECTION_STRINGS
)
6863 if (flags
& SECTION_TLS
)
6864 *f
++ = TLS_SECTION_ASM_FLAG
;
6865 if (HAVE_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
6867 if (flags
& SECTION_RETAIN
)
6869 if (flags
& SECTION_LINK_ORDER
)
6871 #ifdef MACH_DEP_SECTION_ASM_FLAG
6872 if (flags
& SECTION_MACH_DEP
)
6873 *f
++ = MACH_DEP_SECTION_ASM_FLAG
;
6878 fprintf (asm_out_file
, "\t.section\t%s,\"%s\"", name
, flagchars
);
6880 /* default_section_type_flags (above) knows which flags need special
6881 handling here, and sets NOTYPE when none of these apply so that the
6882 assembler's logic for default types can apply to user-chosen
6884 if (!(flags
& SECTION_NOTYPE
))
6889 if (flags
& SECTION_BSS
)
6895 /* On platforms that use "@" as the assembly comment character,
6897 if (strcmp (ASM_COMMENT_START
, "@") == 0)
6899 fprintf (asm_out_file
, format
, type
);
6901 if (flags
& SECTION_ENTSIZE
)
6902 fprintf (asm_out_file
, ",%d", flags
& SECTION_ENTSIZE
);
6903 if (flags
& SECTION_LINK_ORDER
)
6905 tree id
= DECL_ASSEMBLER_NAME (decl
);
6906 ultimate_transparent_alias_target (&id
);
6907 const char *name
= IDENTIFIER_POINTER (id
);
6908 name
= targetm
.strip_name_encoding (name
);
6909 fprintf (asm_out_file
, ",%s", name
);
6911 if (HAVE_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
6913 if (TREE_CODE (decl
) == IDENTIFIER_NODE
)
6914 fprintf (asm_out_file
, ",%s,comdat", IDENTIFIER_POINTER (decl
));
6916 fprintf (asm_out_file
, ",%s,comdat",
6917 IDENTIFIER_POINTER (DECL_COMDAT_GROUP (decl
)));
6921 putc ('\n', asm_out_file
);
6925 default_coff_asm_named_section (const char *name
, unsigned int flags
,
6926 tree decl ATTRIBUTE_UNUSED
)
6928 char flagchars
[8], *f
= flagchars
;
6930 if (flags
& SECTION_WRITE
)
6932 if (flags
& SECTION_CODE
)
6936 fprintf (asm_out_file
, "\t.section\t%s,\"%s\"\n", name
, flagchars
);
6940 default_pe_asm_named_section (const char *name
, unsigned int flags
,
6943 default_coff_asm_named_section (name
, flags
, decl
);
6945 if (flags
& SECTION_LINKONCE
)
6947 /* Functions may have been compiled at various levels of
6948 optimization so we can't use `same_size' here.
6949 Instead, have the linker pick one. */
6950 fprintf (asm_out_file
, "\t.linkonce %s\n",
6951 (flags
& SECTION_CODE
? "discard" : "same_size"));
6955 /* The lame default section selector. */
6958 default_select_section (tree decl
, int reloc
,
6959 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
)
6963 if (decl_readonly_section (decl
, reloc
))
6964 return readonly_data_section
;
6966 else if (TREE_CODE (decl
) == CONSTRUCTOR
)
6968 if (! ((flag_pic
&& reloc
)
6969 || !TREE_READONLY (decl
)
6970 || TREE_SIDE_EFFECTS (decl
)
6971 || !TREE_CONSTANT (decl
)))
6972 return readonly_data_section
;
6974 else if (TREE_CODE (decl
) == STRING_CST
)
6975 return readonly_data_section
;
6976 else if (! (flag_pic
&& reloc
))
6977 return readonly_data_section
;
6979 return data_section
;
6982 enum section_category
6983 categorize_decl_for_section (const_tree decl
, int reloc
)
6985 enum section_category ret
;
6987 if (TREE_CODE (decl
) == FUNCTION_DECL
)
6989 else if (TREE_CODE (decl
) == STRING_CST
)
6991 if ((flag_sanitize
& SANITIZE_ADDRESS
)
6992 && asan_protect_global (CONST_CAST_TREE (decl
)))
6993 /* or !flag_merge_constants */
6994 return SECCAT_RODATA
;
6996 return SECCAT_RODATA_MERGE_STR
;
6998 else if (VAR_P (decl
))
7000 tree d
= CONST_CAST_TREE (decl
);
7001 if (bss_initializer_p (decl
))
7003 else if (! TREE_READONLY (decl
)
7004 || TREE_SIDE_EFFECTS (decl
)
7005 || (DECL_INITIAL (decl
)
7006 && ! TREE_CONSTANT (DECL_INITIAL (decl
))))
7008 /* Here the reloc_rw_mask is not testing whether the section should
7009 be read-only or not, but whether the dynamic link will have to
7010 do something. If so, we wish to segregate the data in order to
7011 minimize cache misses inside the dynamic linker. */
7012 if (reloc
& targetm
.asm_out
.reloc_rw_mask ())
7013 ret
= reloc
== 1 ? SECCAT_DATA_REL_LOCAL
: SECCAT_DATA_REL
;
7017 else if (reloc
& targetm
.asm_out
.reloc_rw_mask ())
7018 ret
= reloc
== 1 ? SECCAT_DATA_REL_RO_LOCAL
: SECCAT_DATA_REL_RO
;
7019 else if (reloc
|| flag_merge_constants
< 2
7020 || ((flag_sanitize
& SANITIZE_ADDRESS
)
7021 /* PR 81697: for architectures that use section anchors we
7022 need to ignore DECL_RTL_SET_P (decl) for string constants
7023 inside this asan_protect_global call because otherwise
7024 we'll wrongly put them into SECCAT_RODATA_MERGE_CONST
7025 section, set DECL_RTL (decl) later on and add DECL to
7026 protected globals via successive asan_protect_global
7027 calls. In this scenario we'll end up with wrong
7028 alignment of these strings at runtime and possible ASan
7030 && asan_protect_global (d
, use_object_blocks_p ()
7031 && use_blocks_for_decl_p (d
))))
7032 /* C and C++ don't allow different variables to share the same
7033 location. -fmerge-all-constants allows even that (at the
7034 expense of not conforming). */
7035 ret
= SECCAT_RODATA
;
7036 else if (DECL_INITIAL (decl
)
7037 && TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
)
7038 ret
= SECCAT_RODATA_MERGE_STR_INIT
;
7040 ret
= SECCAT_RODATA_MERGE_CONST
;
7042 else if (TREE_CODE (decl
) == CONSTRUCTOR
)
7044 if ((reloc
& targetm
.asm_out
.reloc_rw_mask ())
7045 || TREE_SIDE_EFFECTS (decl
)
7046 || ! TREE_CONSTANT (decl
))
7049 ret
= SECCAT_RODATA
;
7052 ret
= SECCAT_RODATA
;
7054 /* There are no read-only thread-local sections. */
7055 if (VAR_P (decl
) && DECL_THREAD_LOCAL_P (decl
))
7057 /* Note that this would be *just* SECCAT_BSS, except that there's
7058 no concept of a read-only thread-local-data section. */
7059 if (ret
== SECCAT_BSS
7060 || DECL_INITIAL (decl
) == NULL
7061 || (flag_zero_initialized_in_bss
7062 && initializer_zerop (DECL_INITIAL (decl
))))
7068 /* If the target uses small data sections, select it. */
7069 else if (targetm
.in_small_data_p (decl
))
7071 if (ret
== SECCAT_BSS
)
7073 else if (targetm
.have_srodata_section
&& ret
== SECCAT_RODATA
)
7074 ret
= SECCAT_SRODATA
;
7083 decl_readonly_section_1 (enum section_category category
)
7088 case SECCAT_RODATA_MERGE_STR
:
7089 case SECCAT_RODATA_MERGE_STR_INIT
:
7090 case SECCAT_RODATA_MERGE_CONST
:
7091 case SECCAT_SRODATA
:
7099 decl_readonly_section (const_tree decl
, int reloc
)
7101 return decl_readonly_section_1 (categorize_decl_for_section (decl
, reloc
));
7104 /* Select a section based on the above categorization. */
7107 default_elf_select_section (tree decl
, int reloc
,
7108 unsigned HOST_WIDE_INT align
)
7112 switch (categorize_decl_for_section (decl
, reloc
))
7115 /* We're not supposed to be called on FUNCTION_DECLs. */
7118 return readonly_data_section
;
7119 case SECCAT_RODATA_MERGE_STR
:
7120 return mergeable_string_section (decl
, align
, 0);
7121 case SECCAT_RODATA_MERGE_STR_INIT
:
7122 return mergeable_string_section (DECL_INITIAL (decl
), align
, 0);
7123 case SECCAT_RODATA_MERGE_CONST
:
7124 return mergeable_constant_section (DECL_MODE (decl
), align
, 0);
7125 case SECCAT_SRODATA
:
7129 if (DECL_P (decl
) && DECL_PERSISTENT_P (decl
))
7131 sname
= ".persistent";
7134 return data_section
;
7135 case SECCAT_DATA_REL
:
7136 sname
= ".data.rel";
7138 case SECCAT_DATA_REL_LOCAL
:
7139 sname
= ".data.rel.local";
7141 case SECCAT_DATA_REL_RO
:
7142 sname
= ".data.rel.ro";
7144 case SECCAT_DATA_REL_RO_LOCAL
:
7145 sname
= ".data.rel.ro.local";
7154 if (DECL_P (decl
) && DECL_NOINIT_P (decl
))
7173 return get_named_section (decl
, sname
, reloc
);
7176 /* Construct a unique section name based on the decl name and the
7177 categorization performed above. */
7180 default_unique_section (tree decl
, int reloc
)
7182 /* We only need to use .gnu.linkonce if we don't have COMDAT groups. */
7183 bool one_only
= DECL_ONE_ONLY (decl
) && !HAVE_COMDAT_GROUP
;
7184 const char *prefix
, *name
, *linkonce
;
7188 switch (categorize_decl_for_section (decl
, reloc
))
7191 prefix
= one_only
? ".t" : ".text";
7194 case SECCAT_RODATA_MERGE_STR
:
7195 case SECCAT_RODATA_MERGE_STR_INIT
:
7196 case SECCAT_RODATA_MERGE_CONST
:
7197 prefix
= one_only
? ".r" : ".rodata";
7199 case SECCAT_SRODATA
:
7200 prefix
= one_only
? ".s2" : ".sdata2";
7203 prefix
= one_only
? ".d" : ".data";
7204 if (DECL_P (decl
) && DECL_PERSISTENT_P (decl
))
7206 prefix
= one_only
? ".p" : ".persistent";
7210 case SECCAT_DATA_REL
:
7211 prefix
= one_only
? ".d.rel" : ".data.rel";
7213 case SECCAT_DATA_REL_LOCAL
:
7214 prefix
= one_only
? ".d.rel.local" : ".data.rel.local";
7216 case SECCAT_DATA_REL_RO
:
7217 prefix
= one_only
? ".d.rel.ro" : ".data.rel.ro";
7219 case SECCAT_DATA_REL_RO_LOCAL
:
7220 prefix
= one_only
? ".d.rel.ro.local" : ".data.rel.ro.local";
7223 prefix
= one_only
? ".s" : ".sdata";
7226 if (DECL_P (decl
) && DECL_NOINIT_P (decl
))
7228 prefix
= one_only
? ".n" : ".noinit";
7231 prefix
= one_only
? ".b" : ".bss";
7234 prefix
= one_only
? ".sb" : ".sbss";
7237 prefix
= one_only
? ".td" : ".tdata";
7240 prefix
= one_only
? ".tb" : ".tbss";
7246 id
= DECL_ASSEMBLER_NAME (decl
);
7247 ultimate_transparent_alias_target (&id
);
7248 name
= IDENTIFIER_POINTER (id
);
7249 name
= targetm
.strip_name_encoding (name
);
7251 /* If we're using one_only, then there needs to be a .gnu.linkonce
7252 prefix to the section name. */
7253 linkonce
= one_only
? ".gnu.linkonce" : "";
7255 string
= ACONCAT ((linkonce
, prefix
, ".", name
, NULL
));
7257 set_decl_section_name (decl
, string
);
7260 /* Subroutine of compute_reloc_for_rtx for leaf rtxes. */
7263 compute_reloc_for_rtx_1 (const_rtx x
)
7265 switch (GET_CODE (x
))
7268 return SYMBOL_REF_LOCAL_P (x
) ? 1 : 2;
7276 /* Like compute_reloc_for_constant, except for an RTX. The return value
7277 is a mask for which bit 1 indicates a global relocation, and bit 0
7278 indicates a local relocation. Used by default_select_rtx_section
7279 and default_elf_select_rtx_section. */
7282 compute_reloc_for_rtx (const_rtx x
)
7284 switch (GET_CODE (x
))
7288 return compute_reloc_for_rtx_1 (x
);
7293 subrtx_iterator::array_type array
;
7294 FOR_EACH_SUBRTX (iter
, array
, x
, ALL
)
7295 reloc
|= compute_reloc_for_rtx_1 (*iter
);
7305 default_select_rtx_section (machine_mode mode ATTRIBUTE_UNUSED
,
7307 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
)
7309 if (compute_reloc_for_rtx (x
) & targetm
.asm_out
.reloc_rw_mask ())
7310 return data_section
;
7312 return readonly_data_section
;
7316 default_elf_select_rtx_section (machine_mode mode
, rtx x
,
7317 unsigned HOST_WIDE_INT align
)
7319 int reloc
= compute_reloc_for_rtx (x
);
7321 /* ??? Handle small data here somehow. */
7323 if (reloc
& targetm
.asm_out
.reloc_rw_mask ())
7326 return get_named_section (NULL
, ".data.rel.ro.local", 1);
7328 return get_named_section (NULL
, ".data.rel.ro", 3);
7331 return mergeable_constant_section (mode
, align
, 0);
7334 /* Set the generally applicable flags on the SYMBOL_REF for EXP. */
7337 default_encode_section_info (tree decl
, rtx rtl
, int first ATTRIBUTE_UNUSED
)
7342 /* Careful not to prod global register variables. */
7345 symbol
= XEXP (rtl
, 0);
7346 if (GET_CODE (symbol
) != SYMBOL_REF
)
7349 flags
= SYMBOL_REF_FLAGS (symbol
) & SYMBOL_FLAG_HAS_BLOCK_INFO
;
7350 if (TREE_CODE (decl
) == FUNCTION_DECL
)
7351 flags
|= SYMBOL_FLAG_FUNCTION
;
7352 if (targetm
.binds_local_p (decl
))
7353 flags
|= SYMBOL_FLAG_LOCAL
;
7354 if (VAR_P (decl
) && DECL_THREAD_LOCAL_P (decl
))
7355 flags
|= DECL_TLS_MODEL (decl
) << SYMBOL_FLAG_TLS_SHIFT
;
7356 else if (targetm
.in_small_data_p (decl
))
7357 flags
|= SYMBOL_FLAG_SMALL
;
7358 /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names? Without
7359 being PUBLIC, the thing *must* be defined in this translation unit.
7360 Prevent this buglet from being propagated into rtl code as well. */
7361 if (DECL_P (decl
) && DECL_EXTERNAL (decl
) && TREE_PUBLIC (decl
))
7362 flags
|= SYMBOL_FLAG_EXTERNAL
;
7364 SYMBOL_REF_FLAGS (symbol
) = flags
;
7367 /* By default, we do nothing for encode_section_info, so we need not
7368 do anything but discard the '*' marker. */
7371 default_strip_name_encoding (const char *str
)
7373 return str
+ (*str
== '*');
7376 #ifdef ASM_OUTPUT_DEF
7377 /* The default implementation of TARGET_ASM_OUTPUT_ANCHOR. Define the
7378 anchor relative to ".", the current section position. */
7381 default_asm_output_anchor (rtx symbol
)
7385 sprintf (buffer
, "*. + " HOST_WIDE_INT_PRINT_DEC
,
7386 SYMBOL_REF_BLOCK_OFFSET (symbol
));
7387 ASM_OUTPUT_DEF (asm_out_file
, XSTR (symbol
, 0), buffer
);
7391 /* The default implementation of TARGET_USE_ANCHORS_FOR_SYMBOL_P. */
7394 default_use_anchors_for_symbol_p (const_rtx symbol
)
7397 section
*sect
= SYMBOL_REF_BLOCK (symbol
)->sect
;
7399 /* This function should only be called with non-zero SYMBOL_REF_BLOCK,
7400 furthermore get_block_for_section should not create object blocks
7401 for mergeable sections. */
7402 gcc_checking_assert (sect
&& !(sect
->common
.flags
& SECTION_MERGE
));
7404 /* Don't use anchors for small data sections. The small data register
7405 acts as an anchor for such sections. */
7406 if (sect
->common
.flags
& SECTION_SMALL
)
7409 decl
= SYMBOL_REF_DECL (symbol
);
7410 if (decl
&& DECL_P (decl
))
7412 /* Don't use section anchors for decls that might be defined or
7413 usurped by other modules. */
7414 if (TREE_PUBLIC (decl
) && !decl_binds_to_current_def_p (decl
))
7417 /* Don't use section anchors for decls that will be placed in a
7418 small data section. */
7419 /* ??? Ideally, this check would be redundant with the SECTION_SMALL
7420 one above. The problem is that we only use SECTION_SMALL for
7421 sections that should be marked as small in the section directive. */
7422 if (targetm
.in_small_data_p (decl
))
7425 /* Don't use section anchors for decls that won't fit inside a single
7426 anchor range to reduce the amount of instructions required to refer
7427 to the entire declaration. */
7428 if (DECL_SIZE_UNIT (decl
) == NULL_TREE
7429 || !tree_fits_uhwi_p (DECL_SIZE_UNIT (decl
))
7430 || (tree_to_uhwi (DECL_SIZE_UNIT (decl
))
7431 >= (unsigned HOST_WIDE_INT
) targetm
.max_anchor_offset
))
7438 /* Return true when RESOLUTION indicate that symbol will be bound to the
7439 definition provided by current .o file. */
7442 resolution_to_local_definition_p (enum ld_plugin_symbol_resolution resolution
)
7444 return (resolution
== LDPR_PREVAILING_DEF
7445 || resolution
== LDPR_PREVAILING_DEF_IRONLY_EXP
7446 || resolution
== LDPR_PREVAILING_DEF_IRONLY
);
7449 /* Return true when RESOLUTION indicate that symbol will be bound locally
7450 within current executable or DSO. */
7453 resolution_local_p (enum ld_plugin_symbol_resolution resolution
)
7455 return (resolution
== LDPR_PREVAILING_DEF
7456 || resolution
== LDPR_PREVAILING_DEF_IRONLY
7457 || resolution
== LDPR_PREVAILING_DEF_IRONLY_EXP
7458 || resolution
== LDPR_PREEMPTED_REG
7459 || resolution
== LDPR_PREEMPTED_IR
7460 || resolution
== LDPR_RESOLVED_IR
7461 || resolution
== LDPR_RESOLVED_EXEC
);
7464 /* COMMON_LOCAL_P is true means that the linker can guarantee that an
7465 uninitialized common symbol in the executable will still be defined
7466 (through COPY relocation) in the executable. */
7469 default_binds_local_p_3 (const_tree exp
, bool shlib
, bool weak_dominate
,
7470 bool extern_protected_data
, bool common_local_p
)
7472 /* A non-decl is an entry in the constant pool. */
7476 /* Weakrefs may not bind locally, even though the weakref itself is always
7477 static and therefore local. Similarly, the resolver for ifunc functions
7478 might resolve to a non-local function.
7479 FIXME: We can resolve the weakref case more curefuly by looking at the
7481 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (exp
))
7482 || (!targetm
.ifunc_ref_local_ok ()
7483 && TREE_CODE (exp
) == FUNCTION_DECL
7484 && cgraph_node::get (exp
)
7485 && cgraph_node::get (exp
)->ifunc_resolver
))
7488 /* Static variables are always local. */
7489 if (! TREE_PUBLIC (exp
))
7492 /* With resolution file in hand, take look into resolutions.
7493 We can't just return true for resolved_locally symbols,
7494 because dynamic linking might overwrite symbols
7495 in shared libraries. */
7496 bool resolved_locally
= false;
7498 bool uninited_common
= (DECL_COMMON (exp
)
7499 && (DECL_INITIAL (exp
) == NULL
7501 && DECL_INITIAL (exp
) == error_mark_node
)));
7503 /* A non-external variable is defined locally only if it isn't
7504 uninitialized COMMON variable or common_local_p is true. */
7505 bool defined_locally
= (!DECL_EXTERNAL (exp
)
7506 && (!uninited_common
|| common_local_p
));
7507 if (symtab_node
*node
= symtab_node::get (exp
))
7509 if (node
->in_other_partition
)
7510 defined_locally
= true;
7511 if (node
->can_be_discarded_p ())
7513 else if (resolution_to_local_definition_p (node
->resolution
))
7514 defined_locally
= resolved_locally
= true;
7515 else if (resolution_local_p (node
->resolution
))
7516 resolved_locally
= true;
7518 if (defined_locally
&& weak_dominate
&& !shlib
)
7519 resolved_locally
= true;
7521 /* Undefined weak symbols are never defined locally. */
7522 if (DECL_WEAK (exp
) && !defined_locally
)
7525 /* A symbol is local if the user has said explicitly that it will be,
7526 or if we have a definition for the symbol. We cannot infer visibility
7527 for undefined symbols. */
7528 if (DECL_VISIBILITY (exp
) != VISIBILITY_DEFAULT
7529 && (TREE_CODE (exp
) == FUNCTION_DECL
7530 || !extern_protected_data
7531 || DECL_VISIBILITY (exp
) != VISIBILITY_PROTECTED
)
7532 && (DECL_VISIBILITY_SPECIFIED (exp
) || defined_locally
))
7535 /* If PIC, then assume that any global name can be overridden by
7536 symbols resolved from other modules. */
7540 /* Variables defined outside this object might not be local. */
7541 if (DECL_EXTERNAL (exp
) && !resolved_locally
)
7544 /* Non-dominant weak symbols are not defined locally. */
7545 if (DECL_WEAK (exp
) && !resolved_locally
)
7548 /* Uninitialized COMMON variable may be unified with symbols
7549 resolved from other modules. */
7550 if (uninited_common
&& !resolved_locally
)
7553 /* Otherwise we're left with initialized (or non-common) global data
7554 which is of necessity defined locally. */
7558 /* Assume ELF-ish defaults, since that's pretty much the most liberal
7559 wrt cross-module name binding. */
7562 default_binds_local_p (const_tree exp
)
7564 return default_binds_local_p_3 (exp
, flag_shlib
!= 0, true, false, false);
7567 /* Similar to default_binds_local_p, but common symbol may be local and
7568 extern protected data is non-local. */
7571 default_binds_local_p_2 (const_tree exp
)
7573 return default_binds_local_p_3 (exp
, flag_shlib
!= 0, true, true,
7578 default_binds_local_p_1 (const_tree exp
, int shlib
)
7580 return default_binds_local_p_3 (exp
, shlib
!= 0, false, false, false);
7583 /* Return true when references to DECL must bind to current definition in
7586 The condition is usually equivalent to whether the function binds to the
7587 current module (shared library or executable), that is to binds_local_p.
7588 We use this fact to avoid need for another target hook and implement
7589 the logic using binds_local_p and just special cases where
7590 decl_binds_to_current_def_p is stronger than binds_local_p. In particular
7591 the weak definitions (that can be overwritten at linktime by other
7592 definition from different object file) and when resolution info is available
7593 we simply use the knowledge passed to us by linker plugin. */
7595 decl_binds_to_current_def_p (const_tree decl
)
7597 gcc_assert (DECL_P (decl
));
7598 if (!targetm
.binds_local_p (decl
))
7600 if (!TREE_PUBLIC (decl
))
7603 /* When resolution is available, just use it. */
7604 if (symtab_node
*node
= symtab_node::get (decl
))
7606 if (node
->resolution
!= LDPR_UNKNOWN
7607 && !node
->can_be_discarded_p ())
7608 return resolution_to_local_definition_p (node
->resolution
);
7611 /* Otherwise we have to assume the worst for DECL_WEAK (hidden weaks
7612 binds locally but still can be overwritten), DECL_COMMON (can be merged
7613 with a non-common definition somewhere in the same module) or
7615 This rely on fact that binds_local_p behave as decl_replaceable_p
7616 for all other declaration types. */
7617 if (DECL_WEAK (decl
))
7619 if (DECL_COMMON (decl
)
7620 && (DECL_INITIAL (decl
) == NULL
7621 || (!in_lto_p
&& DECL_INITIAL (decl
) == error_mark_node
)))
7623 if (DECL_EXTERNAL (decl
))
7628 /* A replaceable function or variable is one which may be replaced
7629 at link-time with an entirely different definition, provided that the
7630 replacement has the same type. For example, functions declared
7631 with __attribute__((weak)) on most systems are replaceable.
7632 If SEMANTIC_INTERPOSITION_P is false allow interposition only on
7633 symbols explicitly declared weak.
7635 COMDAT functions are not replaceable, since all definitions of the
7636 function must be equivalent. It is important that COMDAT functions
7637 not be treated as replaceable so that use of C++ template
7638 instantiations is not penalized. */
7641 decl_replaceable_p (tree decl
, bool semantic_interposition_p
)
7643 gcc_assert (DECL_P (decl
));
7644 if (!TREE_PUBLIC (decl
) || DECL_COMDAT (decl
))
7646 if (!semantic_interposition_p
7647 && !DECL_WEAK (decl
))
7649 return !decl_binds_to_current_def_p (decl
);
7652 /* Default function to output code that will globalize a label. A
7653 target must define GLOBAL_ASM_OP or provide its own function to
7654 globalize a label. */
7655 #ifdef GLOBAL_ASM_OP
7657 default_globalize_label (FILE * stream
, const char *name
)
7659 fputs (GLOBAL_ASM_OP
, stream
);
7660 assemble_name (stream
, name
);
7661 putc ('\n', stream
);
7663 #endif /* GLOBAL_ASM_OP */
7665 /* Default function to output code that will globalize a declaration. */
7667 default_globalize_decl_name (FILE * stream
, tree decl
)
7669 const char *name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
7670 targetm
.asm_out
.globalize_label (stream
, name
);
7673 /* Default function to output a label for unwind information. The
7674 default is to do nothing. A target that needs nonlocal labels for
7675 unwind information must provide its own function to do this. */
7677 default_emit_unwind_label (FILE * stream ATTRIBUTE_UNUSED
,
7678 tree decl ATTRIBUTE_UNUSED
,
7679 int for_eh ATTRIBUTE_UNUSED
,
7680 int empty ATTRIBUTE_UNUSED
)
7684 /* Default function to output a label to divide up the exception table.
7685 The default is to do nothing. A target that needs/wants to divide
7686 up the table must provide it's own function to do this. */
7688 default_emit_except_table_label (FILE * stream ATTRIBUTE_UNUSED
)
7692 /* This is how to output an internal numbered label where PREFIX is
7693 the class of label and LABELNO is the number within the class. */
7696 default_generate_internal_label (char *buf
, const char *prefix
,
7697 unsigned long labelno
)
7699 ASM_GENERATE_INTERNAL_LABEL (buf
, prefix
, labelno
);
7702 /* This is how to output an internal numbered label where PREFIX is
7703 the class of label and LABELNO is the number within the class. */
7706 default_internal_label (FILE *stream
, const char *prefix
,
7707 unsigned long labelno
)
7709 char *const buf
= (char *) alloca (40 + strlen (prefix
));
7710 ASM_GENERATE_INTERNAL_LABEL (buf
, prefix
, labelno
);
7711 ASM_OUTPUT_INTERNAL_LABEL (stream
, buf
);
7715 /* The default implementation of ASM_DECLARE_CONSTANT_NAME. */
7718 default_asm_declare_constant_name (FILE *file
, const char *name
,
7719 const_tree exp ATTRIBUTE_UNUSED
,
7720 HOST_WIDE_INT size ATTRIBUTE_UNUSED
)
7722 assemble_label (file
, name
);
7725 /* This is the default behavior at the beginning of a file. It's
7726 controlled by two other target-hook toggles. */
7728 default_file_start (void)
7730 if (targetm
.asm_file_start_app_off
7731 && !(flag_verbose_asm
|| flag_debug_asm
|| flag_dump_rtl_in_asm
))
7732 fputs (ASM_APP_OFF
, asm_out_file
);
7734 if (targetm
.asm_file_start_file_directive
)
7736 /* LTO produced units have no meaningful main_input_filename. */
7738 output_file_directive (asm_out_file
, "<artificial>");
7740 output_file_directive (asm_out_file
, main_input_filename
);
7744 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
7745 which emits a special section directive used to indicate whether or
7746 not this object file needs an executable stack. This is primarily
7747 a GNU extension to ELF but could be used on other targets. */
7749 int trampolines_created
;
7752 file_end_indicate_exec_stack (void)
7754 unsigned int flags
= SECTION_DEBUG
;
7755 if (trampolines_created
)
7756 flags
|= SECTION_CODE
;
7758 switch_to_section (get_section (".note.GNU-stack", flags
, NULL
));
7761 /* Emit a special section directive to indicate that this object file
7762 was compiled with -fsplit-stack. This is used to let the linker
7763 detect calls between split-stack code and non-split-stack code, so
7764 that it can modify the split-stack code to allocate a sufficiently
7765 large stack. We emit another special section if there are any
7766 functions in this file which have the no_split_stack attribute, to
7767 prevent the linker from warning about being unable to convert the
7768 functions if they call non-split-stack code. */
7771 file_end_indicate_split_stack (void)
7773 if (flag_split_stack
)
7775 switch_to_section (get_section (".note.GNU-split-stack", SECTION_DEBUG
,
7777 if (saw_no_split_stack
)
7778 switch_to_section (get_section (".note.GNU-no-split-stack",
7779 SECTION_DEBUG
, NULL
));
7783 /* Output DIRECTIVE (a C string) followed by a newline. This is used as
7784 a get_unnamed_section callback. */
7787 output_section_asm_op (const char *directive
)
7789 fprintf (asm_out_file
, "%s\n", directive
);
7792 /* Emit assembly code to switch to section NEW_SECTION. Do nothing if
7793 the current section is NEW_SECTION. */
7796 switch_to_section (section
*new_section
, tree decl
)
7799 if ((new_section
->common
.flags
& SECTION_NAMED
)
7802 && ((retain_p
= !!lookup_attribute ("retain",
7803 DECL_ATTRIBUTES (decl
)))
7804 != !!(new_section
->common
.flags
& SECTION_RETAIN
)))
7806 /* If the SECTION_RETAIN bit doesn't match, switch to a new
7808 tree used_decl
, no_used_decl
;
7812 new_section
->common
.flags
|= SECTION_RETAIN
;
7814 no_used_decl
= new_section
->named
.decl
;
7818 new_section
->common
.flags
&= ~(SECTION_RETAIN
7819 | SECTION_DECLARED
);
7820 used_decl
= new_section
->named
.decl
;
7821 no_used_decl
= decl
;
7823 if (no_used_decl
!= used_decl
)
7825 warning (OPT_Wattributes
,
7826 "%+qD without %<retain%> attribute and %qD with "
7827 "%<retain%> attribute are placed in a section with "
7828 "the same name", no_used_decl
, used_decl
);
7829 inform (DECL_SOURCE_LOCATION (used_decl
),
7830 "%qD was declared here", used_decl
);
7833 else if (in_section
== new_section
)
7836 in_section
= new_section
;
7838 switch (SECTION_STYLE (new_section
))
7841 targetm
.asm_out
.named_section (new_section
->named
.name
,
7842 new_section
->named
.common
.flags
,
7843 new_section
->named
.decl
);
7846 case SECTION_UNNAMED
:
7847 new_section
->unnamed
.callback (new_section
->unnamed
.data
);
7850 case SECTION_NOSWITCH
:
7855 new_section
->common
.flags
|= SECTION_DECLARED
;
7858 /* If block symbol SYMBOL has not yet been assigned an offset, place
7859 it at the end of its block. */
7862 place_block_symbol (rtx symbol
)
7864 unsigned HOST_WIDE_INT size
, mask
, offset
;
7865 class constant_descriptor_rtx
*desc
;
7866 unsigned int alignment
;
7867 struct object_block
*block
;
7870 gcc_assert (SYMBOL_REF_BLOCK (symbol
));
7871 if (SYMBOL_REF_BLOCK_OFFSET (symbol
) >= 0)
7874 /* Work out the symbol's size and alignment. */
7875 if (CONSTANT_POOL_ADDRESS_P (symbol
))
7877 desc
= SYMBOL_REF_CONSTANT (symbol
);
7878 alignment
= desc
->align
;
7879 size
= GET_MODE_SIZE (desc
->mode
);
7881 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol
))
7883 decl
= SYMBOL_REF_DECL (symbol
);
7884 gcc_checking_assert (DECL_IN_CONSTANT_POOL (decl
));
7885 alignment
= DECL_ALIGN (decl
);
7886 size
= get_constant_size (DECL_INITIAL (decl
));
7887 if ((flag_sanitize
& SANITIZE_ADDRESS
)
7888 && TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
7889 && asan_protect_global (DECL_INITIAL (decl
)))
7891 size
+= asan_red_zone_size (size
);
7892 alignment
= MAX (alignment
,
7893 ASAN_RED_ZONE_SIZE
* BITS_PER_UNIT
);
7898 struct symtab_node
*snode
;
7899 decl
= SYMBOL_REF_DECL (symbol
);
7901 snode
= symtab_node::get (decl
);
7904 rtx target
= DECL_RTL (snode
->ultimate_alias_target ()->decl
);
7906 gcc_assert (MEM_P (target
)
7907 && GET_CODE (XEXP (target
, 0)) == SYMBOL_REF
7908 && SYMBOL_REF_HAS_BLOCK_INFO_P (XEXP (target
, 0)));
7909 target
= XEXP (target
, 0);
7910 place_block_symbol (target
);
7911 SYMBOL_REF_BLOCK_OFFSET (symbol
) = SYMBOL_REF_BLOCK_OFFSET (target
);
7914 alignment
= get_variable_align (decl
);
7915 size
= tree_to_uhwi (DECL_SIZE_UNIT (decl
));
7916 if ((flag_sanitize
& SANITIZE_ADDRESS
)
7917 && asan_protect_global (decl
))
7919 size
+= asan_red_zone_size (size
);
7920 alignment
= MAX (alignment
,
7921 ASAN_RED_ZONE_SIZE
* BITS_PER_UNIT
);
7925 /* Calculate the object's offset from the start of the block. */
7926 block
= SYMBOL_REF_BLOCK (symbol
);
7927 mask
= alignment
/ BITS_PER_UNIT
- 1;
7928 offset
= (block
->size
+ mask
) & ~mask
;
7929 SYMBOL_REF_BLOCK_OFFSET (symbol
) = offset
;
7931 /* Record the block's new alignment and size. */
7932 block
->alignment
= MAX (block
->alignment
, alignment
);
7933 block
->size
= offset
+ size
;
7935 vec_safe_push (block
->objects
, symbol
);
7938 /* Return the anchor that should be used to address byte offset OFFSET
7939 from the first object in BLOCK. MODEL is the TLS model used
7943 get_section_anchor (struct object_block
*block
, HOST_WIDE_INT offset
,
7944 enum tls_model model
)
7947 unsigned int begin
, middle
, end
;
7948 unsigned HOST_WIDE_INT min_offset
, max_offset
, range
, bias
, delta
;
7951 /* Work out the anchor's offset. Use an offset of 0 for the first
7952 anchor so that we don't pessimize the case where we take the address
7953 of a variable at the beginning of the block. This is particularly
7954 useful when a block has only one variable assigned to it.
7956 We try to place anchors RANGE bytes apart, so there can then be
7957 anchors at +/-RANGE, +/-2 * RANGE, and so on, up to the limits of
7958 a ptr_mode offset. With some target settings, the lowest such
7959 anchor might be out of range for the lowest ptr_mode offset;
7960 likewise the highest anchor for the highest offset. Use anchors
7961 at the extreme ends of the ptr_mode range in such cases.
7963 All arithmetic uses unsigned integers in order to avoid
7965 max_offset
= (unsigned HOST_WIDE_INT
) targetm
.max_anchor_offset
;
7966 min_offset
= (unsigned HOST_WIDE_INT
) targetm
.min_anchor_offset
;
7967 range
= max_offset
- min_offset
+ 1;
7972 bias
= HOST_WIDE_INT_1U
<< (GET_MODE_BITSIZE (ptr_mode
) - 1);
7975 delta
= -(unsigned HOST_WIDE_INT
) offset
+ max_offset
;
7976 delta
-= delta
% range
;
7979 offset
= (HOST_WIDE_INT
) (-delta
);
7983 delta
= (unsigned HOST_WIDE_INT
) offset
- min_offset
;
7984 delta
-= delta
% range
;
7985 if (delta
> bias
- 1)
7987 offset
= (HOST_WIDE_INT
) delta
;
7991 /* Do a binary search to see if there's already an anchor we can use.
7992 Set BEGIN to the new anchor's index if not. */
7994 end
= vec_safe_length (block
->anchors
);
7995 while (begin
!= end
)
7997 middle
= (end
+ begin
) / 2;
7998 anchor
= (*block
->anchors
)[middle
];
7999 if (SYMBOL_REF_BLOCK_OFFSET (anchor
) > offset
)
8001 else if (SYMBOL_REF_BLOCK_OFFSET (anchor
) < offset
)
8003 else if (SYMBOL_REF_TLS_MODEL (anchor
) > model
)
8005 else if (SYMBOL_REF_TLS_MODEL (anchor
) < model
)
8011 /* Create a new anchor with a unique label. */
8012 ASM_GENERATE_INTERNAL_LABEL (label
, "LANCHOR", anchor_labelno
++);
8013 anchor
= create_block_symbol (ggc_strdup (label
), block
, offset
);
8014 SYMBOL_REF_FLAGS (anchor
) |= SYMBOL_FLAG_LOCAL
| SYMBOL_FLAG_ANCHOR
;
8015 SYMBOL_REF_FLAGS (anchor
) |= model
<< SYMBOL_FLAG_TLS_SHIFT
;
8017 /* Insert it at index BEGIN. */
8018 vec_safe_insert (block
->anchors
, begin
, anchor
);
8022 /* Output the objects in BLOCK. */
8025 output_object_block (struct object_block
*block
)
8027 class constant_descriptor_rtx
*desc
;
8029 HOST_WIDE_INT offset
;
8033 if (!block
->objects
)
8036 /* Switch to the section and make sure that the first byte is
8037 suitably aligned. */
8038 /* Special case VTV comdat sections similar to assemble_variable. */
8039 if (SECTION_STYLE (block
->sect
) == SECTION_NAMED
8040 && block
->sect
->named
.name
8041 && (strcmp (block
->sect
->named
.name
, ".vtable_map_vars") == 0))
8042 handle_vtv_comdat_section (block
->sect
, block
->sect
->named
.decl
);
8044 switch_to_section (block
->sect
, SYMBOL_REF_DECL ((*block
->objects
)[0]));
8046 gcc_checking_assert (!(block
->sect
->common
.flags
& SECTION_MERGE
));
8047 assemble_align (block
->alignment
);
8049 /* Define the values of all anchors relative to the current section
8051 FOR_EACH_VEC_SAFE_ELT (block
->anchors
, i
, symbol
)
8052 targetm
.asm_out
.output_anchor (symbol
);
8054 /* Output the objects themselves. */
8056 FOR_EACH_VEC_ELT (*block
->objects
, i
, symbol
)
8058 /* Move to the object's offset, padding with zeros if necessary. */
8059 assemble_zeros (SYMBOL_REF_BLOCK_OFFSET (symbol
) - offset
);
8060 offset
= SYMBOL_REF_BLOCK_OFFSET (symbol
);
8061 if (CONSTANT_POOL_ADDRESS_P (symbol
))
8063 desc
= SYMBOL_REF_CONSTANT (symbol
);
8064 /* Pass 1 for align as we have already laid out everything in the block.
8065 So aligning shouldn't be necessary. */
8066 output_constant_pool_1 (desc
, 1);
8067 offset
+= GET_MODE_SIZE (desc
->mode
);
8069 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol
))
8072 decl
= SYMBOL_REF_DECL (symbol
);
8073 assemble_constant_contents (DECL_INITIAL (decl
), XSTR (symbol
, 0),
8074 DECL_ALIGN (decl
), false);
8076 size
= get_constant_size (DECL_INITIAL (decl
));
8078 if ((flag_sanitize
& SANITIZE_ADDRESS
)
8079 && TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
8080 && asan_protect_global (DECL_INITIAL (decl
)))
8082 size
= asan_red_zone_size (size
);
8083 assemble_zeros (size
);
8090 decl
= SYMBOL_REF_DECL (symbol
);
8091 assemble_variable_contents (decl
, XSTR (symbol
, 0), false, false);
8092 size
= tree_to_uhwi (DECL_SIZE_UNIT (decl
));
8094 if ((flag_sanitize
& SANITIZE_ADDRESS
)
8095 && asan_protect_global (decl
))
8097 size
= asan_red_zone_size (size
);
8098 assemble_zeros (size
);
8105 /* A callback for qsort to compare object_blocks. */
8108 output_object_block_compare (const void *x
, const void *y
)
8110 object_block
*p1
= *(object_block
* const*)x
;
8111 object_block
*p2
= *(object_block
* const*)y
;
8113 if (p1
->sect
->common
.flags
& SECTION_NAMED
8114 && !(p2
->sect
->common
.flags
& SECTION_NAMED
))
8117 if (!(p1
->sect
->common
.flags
& SECTION_NAMED
)
8118 && p2
->sect
->common
.flags
& SECTION_NAMED
)
8121 if (p1
->sect
->common
.flags
& SECTION_NAMED
8122 && p2
->sect
->common
.flags
& SECTION_NAMED
)
8123 return strcmp (p1
->sect
->named
.name
, p2
->sect
->named
.name
);
8125 unsigned f1
= p1
->sect
->common
.flags
;
8126 unsigned f2
= p2
->sect
->common
.flags
;
8129 return f1
< f2
? -1 : 1;
8132 /* Output the definitions of all object_blocks. */
8135 output_object_blocks (void)
8137 vec
<object_block
*, va_heap
> v
;
8138 v
.create (object_block_htab
->elements ());
8140 hash_table
<object_block_hasher
>::iterator hi
;
8142 FOR_EACH_HASH_TABLE_ELEMENT (*object_block_htab
, obj
, object_block
*, hi
)
8145 /* Sort them in order to output them in a deterministic manner,
8146 otherwise we may get .rodata sections in different orders with
8148 v
.qsort (output_object_block_compare
);
8150 FOR_EACH_VEC_ELT (v
, i
, obj
)
8151 output_object_block (obj
);
8156 /* This function provides a possible implementation of the
8157 TARGET_ASM_RECORD_GCC_SWITCHES target hook for ELF targets. When triggered
8158 by -frecord-gcc-switches it creates a new mergeable, string section in the
8159 assembler output file called TARGET_ASM_RECORD_GCC_SWITCHES_SECTION which
8160 contains the switches in ASCII format.
8162 FIXME: This code does not correctly handle double quote characters
8163 that appear inside strings, (it strips them rather than preserving them).
8164 FIXME: ASM_OUTPUT_ASCII, as defined in config/elfos.h will not emit NUL
8165 characters - instead it treats them as sub-string separators. Since
8166 we want to emit NUL strings terminators into the object file we have to use
8170 elf_record_gcc_switches (const char *options
)
8172 section
*sec
= get_section (targetm
.asm_out
.record_gcc_switches_section
,
8173 SECTION_DEBUG
| SECTION_MERGE
8174 | SECTION_STRINGS
| (SECTION_ENTSIZE
& 1), NULL
);
8175 switch_to_section (sec
);
8176 ASM_OUTPUT_ASCII (asm_out_file
, options
, strlen (options
) + 1);
8179 /* Emit text to declare externally defined symbols. It is needed to
8180 properly support non-default visibility. */
8182 default_elf_asm_output_external (FILE *file ATTRIBUTE_UNUSED
,
8184 const char *name ATTRIBUTE_UNUSED
)
8186 /* We output the name if and only if TREE_SYMBOL_REFERENCED is
8187 set in order to avoid putting out names that are never really
8188 used. Always output visibility specified in the source. */
8189 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
))
8190 && (DECL_VISIBILITY_SPECIFIED (decl
)
8191 || targetm
.binds_local_p (decl
)))
8192 maybe_assemble_visibility (decl
);
8195 /* The default hook for TARGET_ASM_OUTPUT_SOURCE_FILENAME. */
8198 default_asm_output_source_filename (FILE *file
, const char *name
)
8200 #ifdef ASM_OUTPUT_SOURCE_FILENAME
8201 ASM_OUTPUT_SOURCE_FILENAME (file
, name
);
8203 fprintf (file
, "\t.file\t");
8204 output_quoted_string (file
, name
);
8209 /* Output a file name in the form wanted by System V. */
8212 output_file_directive (FILE *asm_file
, const char *input_name
)
8217 if (input_name
== NULL
)
8218 input_name
= "<stdin>";
8220 input_name
= remap_debug_filename (input_name
);
8222 len
= strlen (input_name
);
8223 na
= input_name
+ len
;
8225 /* NA gets INPUT_NAME sans directory names. */
8226 while (na
> input_name
)
8228 if (IS_DIR_SEPARATOR (na
[-1]))
8233 targetm
.asm_out
.output_source_filename (asm_file
, na
);
8236 /* Create a DEBUG_EXPR_DECL / DEBUG_EXPR pair from RTL expression
8239 make_debug_expr_from_rtl (const_rtx exp
)
8241 tree ddecl
= make_node (DEBUG_EXPR_DECL
), type
;
8242 machine_mode mode
= GET_MODE (exp
);
8245 DECL_ARTIFICIAL (ddecl
) = 1;
8246 if (REG_P (exp
) && REG_EXPR (exp
))
8247 type
= TREE_TYPE (REG_EXPR (exp
));
8248 else if (MEM_P (exp
) && MEM_EXPR (exp
))
8249 type
= TREE_TYPE (MEM_EXPR (exp
));
8252 if (type
&& TYPE_MODE (type
) == mode
)
8253 TREE_TYPE (ddecl
) = type
;
8255 TREE_TYPE (ddecl
) = lang_hooks
.types
.type_for_mode (mode
, 1);
8256 SET_DECL_MODE (ddecl
, mode
);
8257 dval
= gen_rtx_DEBUG_EXPR (mode
);
8258 DEBUG_EXPR_TREE_DECL (dval
) = ddecl
;
8259 SET_DECL_RTL (ddecl
, dval
);
8263 #ifdef ELF_ASCII_ESCAPES
8264 /* Default ASM_OUTPUT_LIMITED_STRING for ELF targets. */
8267 default_elf_asm_output_limited_string (FILE *f
, const char *s
)
8272 fputs (STRING_ASM_OP
, f
);
8277 escape
= ELF_ASCII_ESCAPES
[c
];
8285 putc ('0'+((c
>>6)&7), f
);
8286 putc ('0'+((c
>>3)&7), f
);
8287 putc ('0'+(c
&7), f
);
8300 /* Default ASM_OUTPUT_ASCII for ELF targets. */
8303 default_elf_asm_output_ascii (FILE *f
, const char *s
, unsigned int len
)
8305 const char *limit
= s
+ len
;
8306 const char *last_null
= NULL
;
8307 unsigned bytes_in_chunk
= 0;
8311 for (; s
< limit
; s
++)
8315 if (bytes_in_chunk
>= 60)
8324 for (p
= s
; p
< limit
&& *p
!= '\0'; p
++)
8331 if (p
< limit
&& (p
- s
) <= (long) ELF_STRING_LIMIT
)
8333 if (bytes_in_chunk
> 0)
8340 default_elf_asm_output_limited_string (f
, s
);
8345 if (bytes_in_chunk
== 0)
8346 fputs (ASCII_DATA_ASM_OP
"\"", f
);
8349 escape
= ELF_ASCII_ESCAPES
[c
];
8358 putc ('0'+((c
>>6)&7), f
);
8359 putc ('0'+((c
>>3)&7), f
);
8360 putc ('0'+(c
&7), f
);
8361 bytes_in_chunk
+= 4;
8366 bytes_in_chunk
+= 2;
8373 if (bytes_in_chunk
> 0)
8381 static GTY(()) section
*elf_init_array_section
;
8382 static GTY(()) section
*elf_fini_array_section
;
8385 get_elf_initfini_array_priority_section (int priority
,
8389 if (priority
!= DEFAULT_INIT_PRIORITY
)
8392 sprintf (buf
, "%s.%.5u",
8393 constructor_p
? ".init_array" : ".fini_array",
8395 sec
= get_section (buf
, SECTION_WRITE
| SECTION_NOTYPE
, NULL_TREE
);
8401 if (elf_init_array_section
== NULL
)
8402 elf_init_array_section
8403 = get_section (".init_array",
8404 SECTION_WRITE
| SECTION_NOTYPE
, NULL_TREE
);
8405 sec
= elf_init_array_section
;
8409 if (elf_fini_array_section
== NULL
)
8410 elf_fini_array_section
8411 = get_section (".fini_array",
8412 SECTION_WRITE
| SECTION_NOTYPE
, NULL_TREE
);
8413 sec
= elf_fini_array_section
;
8419 /* Use .init_array section for constructors. */
8422 default_elf_init_array_asm_out_constructor (rtx symbol
, int priority
)
8424 section
*sec
= get_elf_initfini_array_priority_section (priority
,
8426 assemble_addr_to_section (symbol
, sec
);
8429 /* Use .fini_array section for destructors. */
8432 default_elf_fini_array_asm_out_destructor (rtx symbol
, int priority
)
8434 section
*sec
= get_elf_initfini_array_priority_section (priority
,
8436 assemble_addr_to_section (symbol
, sec
);
8439 /* Default TARGET_ASM_OUTPUT_IDENT hook.
8441 This is a bit of a cheat. The real default is a no-op, but this
8442 hook is the default for all targets with a .ident directive. */
8445 default_asm_output_ident_directive (const char *ident_str
)
8447 const char *ident_asm_op
= "\t.ident\t";
8449 /* If we are still in the front end, do not write out the string
8450 to asm_out_file. Instead, add a fake top-level asm statement.
8451 This allows the front ends to use this hook without actually
8452 writing to asm_out_file, to handle #ident or Pragma Ident. */
8453 if (symtab
->state
== PARSING
)
8455 char *buf
= ACONCAT ((ident_asm_op
, "\"", ident_str
, "\"\n", NULL
));
8456 symtab
->finalize_toplevel_asm (build_string (strlen (buf
), buf
));
8459 fprintf (asm_out_file
, "%s\"%s\"\n", ident_asm_op
, ident_str
);
8462 /* Switch to a COMDAT section with COMDAT name of decl.
8464 FIXME: resolve_unique_section needs to deal better with
8465 decls with both DECL_SECTION_NAME and DECL_ONE_ONLY. Once
8466 that is fixed, this if-else statement can be replaced with
8467 a single call to "switch_to_section (sect)". */
8470 switch_to_comdat_section (section
*sect
, tree decl
)
8472 #if defined (OBJECT_FORMAT_ELF)
8473 targetm
.asm_out
.named_section (sect
->named
.name
,
8474 sect
->named
.common
.flags
8479 /* Neither OBJECT_FORMAT_PE, nor OBJECT_FORMAT_COFF is set here.
8480 Therefore the following check is used.
8481 In case a the target is PE or COFF a comdat group section
8482 is created, e.g. .vtable_map_vars$foo. The linker places
8483 everything in .vtable_map_vars at the end.
8485 A fix could be made in
8486 gcc/config/i386/winnt.cc: i386_pe_unique_section. */
8491 if (TREE_CODE (decl
) == IDENTIFIER_NODE
)
8492 name
= ACONCAT ((sect
->named
.name
, "$",
8493 IDENTIFIER_POINTER (decl
), NULL
));
8495 name
= ACONCAT ((sect
->named
.name
, "$",
8496 IDENTIFIER_POINTER (DECL_COMDAT_GROUP (decl
)),
8499 targetm
.asm_out
.named_section (name
,
8500 sect
->named
.common
.flags
8506 switch_to_section (sect
);
8510 /* This function ensures that vtable_map variables are not only
8511 in the comdat section, but that each variable has its own unique
8512 comdat name. Without this the variables end up in the same section
8513 with a single comdat name. */
8516 handle_vtv_comdat_section (section
*sect
, const_tree decl ATTRIBUTE_UNUSED
)
8518 switch_to_comdat_section(sect
, DECL_NAME (decl
));
8521 #include "gt-varasm.h"