1 /* Output variables, constants and external declarations, for GNU compiler.
2 Copyright (C) 1987-2024 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"
66 /* The (assembler) name of the first globally-visible object output. */
67 extern GTY(()) const char *first_global_object_name
;
68 extern GTY(()) const char *weak_global_object_name
;
70 const char *first_global_object_name
;
71 const char *weak_global_object_name
;
74 class constant_descriptor_rtx
;
75 struct rtx_constant_pool
;
77 #define n_deferred_constants (crtl->varasm.deferred_constants)
79 /* Number for making the label on the next
80 constant that is stored in memory. */
82 static GTY(()) int const_labelno
;
84 /* Carry information from ASM_DECLARE_OBJECT_NAME
85 to ASM_FINISH_DECLARE_OBJECT. */
87 int size_directive_output
;
89 /* The last decl for which assemble_variable was called,
90 if it did ASM_DECLARE_OBJECT_NAME.
91 If the last call to assemble_variable didn't do that,
94 tree last_assemble_variable_decl
;
96 /* The following global variable indicates if the first basic block
97 in a function belongs to the cold partition or not. */
99 bool first_function_block_is_cold
;
101 /* Whether we saw any functions with no_split_stack. */
103 static bool saw_no_split_stack
;
105 static const char *strip_reg_name (const char *);
106 static bool contains_pointers_p (tree
);
107 #ifdef ASM_OUTPUT_EXTERNAL
108 static bool incorporeal_function_p (tree
);
110 static void decode_addr_const (tree
, class addr_const
*);
111 static hashval_t
const_hash_1 (const tree
);
112 static bool compare_constant (const tree
, const tree
);
113 static void output_constant_def_contents (rtx
);
114 static void output_addressed_constants (tree
, int);
115 static unsigned HOST_WIDE_INT
output_constant (tree
, unsigned HOST_WIDE_INT
,
116 unsigned int, bool, bool);
117 static void globalize_decl (tree
);
118 static bool decl_readonly_section_1 (enum section_category
);
119 #ifdef BSS_SECTION_ASM_OP
120 #ifdef ASM_OUTPUT_ALIGNED_BSS
121 static void asm_output_aligned_bss (FILE *, tree
, const char *,
122 unsigned HOST_WIDE_INT
, int)
125 #endif /* BSS_SECTION_ASM_OP */
126 static void mark_weak (tree
);
127 static void output_constant_pool (const char *, tree
);
128 static void handle_vtv_comdat_section (section
*, const_tree
);
130 /* Well-known sections, each one associated with some sort of *_ASM_OP. */
131 section
*text_section
;
132 section
*data_section
;
133 section
*readonly_data_section
;
134 section
*sdata_section
;
135 section
*ctors_section
;
136 section
*dtors_section
;
137 section
*bss_section
;
138 section
*sbss_section
;
140 /* Various forms of common section. All are guaranteed to be nonnull. */
141 section
*tls_comm_section
;
142 section
*comm_section
;
143 section
*lcomm_section
;
145 /* A SECTION_NOSWITCH section used for declaring global BSS variables.
147 section
*bss_noswitch_section
;
149 /* The section that holds the main exception table, when known. The section
150 is set either by the target's init_sections hook or by the first call to
151 switch_to_exception_section. */
152 section
*exception_section
;
154 /* The section that holds the DWARF2 frame unwind information, when known.
155 The section is set either by the target's init_sections hook or by the
156 first call to switch_to_eh_frame_section. */
157 section
*eh_frame_section
;
159 /* asm_out_file's current section. This is NULL if no section has yet
160 been selected or if we lose track of what the current section is. */
163 /* True if code for the current function is currently being directed
164 at the cold section. */
165 bool in_cold_section_p
;
167 /* The following global holds the "function name" for the code in the
168 cold section of a function, if hot/cold function splitting is enabled
169 and there was actually code that went into the cold section. A
170 pseudo function name is needed for the cold section of code for some
171 debugging tools that perform symbolization. */
172 tree cold_function_name
= NULL_TREE
;
174 /* A linked list of all the unnamed sections. */
175 static GTY(()) section
*unnamed_sections
;
177 /* Return a nonzero value if DECL has a section attribute. */
178 #define IN_NAMED_SECTION(DECL) \
179 (VAR_OR_FUNCTION_DECL_P (DECL) && DECL_SECTION_NAME (DECL) != NULL)
181 struct section_hasher
: ggc_ptr_hash
<section
>
183 typedef const char *compare_type
;
185 static hashval_t
hash (section
*);
186 static bool equal (section
*, const char *);
189 /* Hash table of named sections. */
190 static GTY(()) hash_table
<section_hasher
> *section_htab
;
192 struct object_block_hasher
: ggc_ptr_hash
<object_block
>
194 typedef const section
*compare_type
;
196 static hashval_t
hash (object_block
*);
197 static bool equal (object_block
*, const section
*);
200 /* A table of object_blocks, indexed by section. */
201 static GTY(()) hash_table
<object_block_hasher
> *object_block_htab
;
203 /* The next number to use for internal anchor labels. */
204 static GTY(()) int anchor_labelno
;
206 /* A pool of constants that can be shared between functions. */
207 static GTY(()) struct rtx_constant_pool
*shared_constant_pool
;
209 /* Helper routines for maintaining section_htab. */
212 section_hasher::equal (section
*old
, const char *new_name
)
214 return strcmp (old
->named
.name
, new_name
) == 0;
218 section_hasher::hash (section
*old
)
220 return htab_hash_string (old
->named
.name
);
223 /* Return a hash value for section SECT. */
226 hash_section (section
*sect
)
228 if (sect
->common
.flags
& SECTION_NAMED
)
229 return htab_hash_string (sect
->named
.name
);
230 return sect
->common
.flags
& ~SECTION_DECLARED
;
233 /* Helper routines for maintaining object_block_htab. */
236 object_block_hasher::equal (object_block
*old
, const section
*new_section
)
238 return old
->sect
== new_section
;
242 object_block_hasher::hash (object_block
*old
)
244 return hash_section (old
->sect
);
247 /* Return a new unnamed section with the given fields. */
250 get_unnamed_section (unsigned int flags
, void (*callback
) (const char *),
255 sect
= ggc_alloc
<section
> ();
256 sect
->unnamed
.common
.flags
= flags
| SECTION_UNNAMED
;
257 sect
->unnamed
.callback
= callback
;
258 sect
->unnamed
.data
= data
;
259 sect
->unnamed
.next
= unnamed_sections
;
261 unnamed_sections
= sect
;
265 /* Return a SECTION_NOSWITCH section with the given fields. */
268 get_noswitch_section (unsigned int flags
, noswitch_section_callback callback
)
272 sect
= ggc_alloc
<section
> ();
273 sect
->noswitch
.common
.flags
= flags
| SECTION_NOSWITCH
;
274 sect
->noswitch
.callback
= callback
;
279 /* Return the named section structure associated with NAME. Create
280 a new section with the given fields if no such structure exists.
281 When NOT_EXISTING, then fail if the section already exists. Return
282 the existing section if the SECTION_RETAIN bit doesn't match. Set
283 the SECTION_WRITE | SECTION_RELRO bits on the existing section
284 if one of the section flags is SECTION_WRITE | SECTION_RELRO and the
285 other has none of these flags in named sections and either the section
286 hasn't been declared yet or has been declared as writable. */
289 get_section (const char *name
, unsigned int flags
, tree decl
,
292 section
*sect
, **slot
;
294 slot
= section_htab
->find_slot_with_hash (name
, htab_hash_string (name
),
296 flags
|= SECTION_NAMED
;
299 && lookup_attribute ("retain", DECL_ATTRIBUTES (decl
)))
300 flags
|= SECTION_RETAIN
;
303 sect
= ggc_alloc
<section
> ();
304 sect
->named
.common
.flags
= flags
;
305 sect
->named
.name
= ggc_strdup (name
);
306 sect
->named
.decl
= decl
;
312 internal_error ("section already exists: %qs", name
);
315 /* It is fine if one of the sections has SECTION_NOTYPE as long as
316 the other has none of the contrary flags (see the logic at the end
317 of default_section_type_flags, below). */
318 if (((sect
->common
.flags
^ flags
) & SECTION_NOTYPE
)
319 && !((sect
->common
.flags
| flags
)
320 & (SECTION_CODE
| SECTION_BSS
| SECTION_TLS
| SECTION_ENTSIZE
321 | (HAVE_COMDAT_GROUP
? SECTION_LINKONCE
: 0))))
323 sect
->common
.flags
|= SECTION_NOTYPE
;
324 flags
|= SECTION_NOTYPE
;
326 if ((sect
->common
.flags
& ~SECTION_DECLARED
) != flags
327 && ((sect
->common
.flags
| flags
) & SECTION_OVERRIDE
) == 0)
329 /* It is fine if one of the section flags is
330 SECTION_WRITE | SECTION_RELRO and the other has none of these
331 flags (i.e. read-only) in named sections and either the
332 section hasn't been declared yet or has been declared as writable.
333 In that case just make sure the resulting flags are
334 SECTION_WRITE | SECTION_RELRO, ie. writable only because of
336 if (((sect
->common
.flags
^ flags
) & (SECTION_WRITE
| SECTION_RELRO
))
337 == (SECTION_WRITE
| SECTION_RELRO
)
338 && (sect
->common
.flags
339 & ~(SECTION_DECLARED
| SECTION_WRITE
| SECTION_RELRO
))
340 == (flags
& ~(SECTION_WRITE
| SECTION_RELRO
))
341 && ((sect
->common
.flags
& SECTION_DECLARED
) == 0
342 || (sect
->common
.flags
& SECTION_WRITE
)))
344 sect
->common
.flags
|= (SECTION_WRITE
| SECTION_RELRO
);
347 /* If the SECTION_RETAIN bit doesn't match, return and switch
348 to a new section later. */
349 if ((sect
->common
.flags
& SECTION_RETAIN
)
350 != (flags
& SECTION_RETAIN
))
352 /* Sanity check user variables for flag changes. */
353 if (sect
->named
.decl
!= NULL
354 && DECL_P (sect
->named
.decl
)
355 && decl
!= sect
->named
.decl
)
357 if (decl
!= NULL
&& DECL_P (decl
))
358 error ("%+qD causes a section type conflict with %qD",
359 decl
, sect
->named
.decl
);
361 error ("section type conflict with %qD", sect
->named
.decl
);
362 inform (DECL_SOURCE_LOCATION (sect
->named
.decl
),
363 "%qD was declared here", sect
->named
.decl
);
365 else if (decl
!= NULL
&& DECL_P (decl
))
366 error ("%+qD causes a section type conflict", decl
);
368 error ("section type conflict");
369 /* Make sure we don't error about one section multiple times. */
370 sect
->common
.flags
|= SECTION_OVERRIDE
;
376 /* Return true if the current compilation mode benefits from having
377 objects grouped into blocks. */
380 use_object_blocks_p (void)
382 return flag_section_anchors
;
385 /* Return the object_block structure for section SECT. Create a new
386 structure if we haven't created one already. Return null if SECT
387 itself is null. Return also null for mergeable sections since
388 section anchors can't be used in mergeable sections anyway,
389 because the linker might move objects around, and using the
390 object blocks infrastructure in that case is both a waste and a
391 maintenance burden. */
393 static struct object_block
*
394 get_block_for_section (section
*sect
)
396 struct object_block
*block
;
401 if (sect
->common
.flags
& SECTION_MERGE
)
405 = object_block_htab
->find_slot_with_hash (sect
, hash_section (sect
),
410 block
= ggc_cleared_alloc
<object_block
> ();
417 /* Create a symbol with label LABEL and place it at byte offset
418 OFFSET in BLOCK. OFFSET can be negative if the symbol's offset
419 is not yet known. LABEL must be a garbage-collected string. */
422 create_block_symbol (const char *label
, struct object_block
*block
,
423 HOST_WIDE_INT offset
)
428 /* Create the extended SYMBOL_REF. */
429 size
= RTX_HDR_SIZE
+ sizeof (struct block_symbol
);
430 symbol
= (rtx
) ggc_internal_alloc (size
);
432 /* Initialize the normal SYMBOL_REF fields. */
433 memset (symbol
, 0, size
);
434 PUT_CODE (symbol
, SYMBOL_REF
);
435 PUT_MODE (symbol
, Pmode
);
436 XSTR (symbol
, 0) = label
;
437 SYMBOL_REF_FLAGS (symbol
) = SYMBOL_FLAG_HAS_BLOCK_INFO
;
439 /* Initialize the block_symbol stuff. */
440 SYMBOL_REF_BLOCK (symbol
) = block
;
441 SYMBOL_REF_BLOCK_OFFSET (symbol
) = offset
;
446 /* Return a section with a particular name and with whatever SECTION_*
447 flags section_type_flags deems appropriate. The name of the section
448 is taken from NAME if nonnull, otherwise it is taken from DECL's
449 DECL_SECTION_NAME. DECL is the decl associated with the section
450 (see the section comment for details) and RELOC is as for
451 section_type_flags. */
454 get_named_section (tree decl
, const char *name
, int reloc
)
460 gcc_assert (decl
&& DECL_P (decl
) && DECL_SECTION_NAME (decl
));
461 name
= DECL_SECTION_NAME (decl
);
464 flags
= targetm
.section_type_flags (decl
, name
, reloc
);
465 return get_section (name
, flags
, decl
);
468 /* Worker for resolve_unique_section. */
471 set_implicit_section (struct symtab_node
*n
, void *data ATTRIBUTE_UNUSED
)
473 n
->implicit_section
= true;
477 /* If required, set DECL_SECTION_NAME to a unique name. */
480 resolve_unique_section (tree decl
, int reloc ATTRIBUTE_UNUSED
,
481 int flag_function_or_data_sections
)
483 if (DECL_SECTION_NAME (decl
) == NULL
484 && targetm_common
.have_named_sections
485 && (flag_function_or_data_sections
486 || lookup_attribute ("retain", DECL_ATTRIBUTES (decl
))
487 || DECL_COMDAT_GROUP (decl
)))
489 targetm
.asm_out
.unique_section (decl
, reloc
);
490 if (DECL_SECTION_NAME (decl
))
491 symtab_node::get (decl
)->call_for_symbol_and_aliases
492 (set_implicit_section
, NULL
, true);
496 #ifdef BSS_SECTION_ASM_OP
498 #ifdef ASM_OUTPUT_ALIGNED_BSS
500 /* Utility function for targets to use in implementing
501 ASM_OUTPUT_ALIGNED_BSS.
502 ??? It is believed that this function will work in most cases so such
503 support is localized here. */
506 asm_output_aligned_bss (FILE *file
, tree decl ATTRIBUTE_UNUSED
,
507 const char *name
, unsigned HOST_WIDE_INT size
,
510 switch_to_section (bss_section
);
511 ASM_OUTPUT_ALIGN (file
, floor_log2 (align
/ BITS_PER_UNIT
));
512 #ifdef ASM_DECLARE_OBJECT_NAME
513 last_assemble_variable_decl
= decl
;
514 ASM_DECLARE_OBJECT_NAME (file
, name
, decl
);
516 /* Standard thing is just output label for the object. */
517 ASM_OUTPUT_LABEL (file
, name
);
518 #endif /* ASM_DECLARE_OBJECT_NAME */
519 ASM_OUTPUT_SKIP (file
, size
? size
: 1);
524 #endif /* BSS_SECTION_ASM_OP */
526 #ifndef USE_SELECT_SECTION_FOR_FUNCTIONS
527 /* Return the hot section for function DECL. Return text_section for
531 hot_function_section (tree decl
)
533 if (decl
!= NULL_TREE
534 && DECL_SECTION_NAME (decl
) != NULL
535 && targetm_common
.have_named_sections
)
536 return get_named_section (decl
, NULL
, 0);
542 /* Return section for TEXT_SECTION_NAME if DECL or DECL_SECTION_NAME (DECL)
545 When DECL_SECTION_NAME is non-NULL and it is implicit section and
546 NAMED_SECTION_SUFFIX is non-NULL, then produce section called
547 concatenate the name with NAMED_SECTION_SUFFIX.
548 Otherwise produce "TEXT_SECTION_NAME.IMPLICIT_NAME". */
551 get_named_text_section (tree decl
,
552 const char *text_section_name
,
553 const char *named_section_suffix
)
555 if (decl
&& DECL_SECTION_NAME (decl
))
557 if (named_section_suffix
)
559 const char *dsn
= DECL_SECTION_NAME (decl
);
560 const char *stripped_name
;
563 name
= (char *) alloca (strlen (dsn
) + 1);
567 stripped_name
= targetm
.strip_name_encoding (name
);
569 buffer
= ACONCAT ((stripped_name
, named_section_suffix
, NULL
));
570 return get_named_section (decl
, buffer
, 0);
572 else if (symtab_node::get (decl
)->implicit_section
)
576 /* Do not try to split gnu_linkonce functions. This gets somewhat
578 if (DECL_COMDAT_GROUP (decl
) && !HAVE_COMDAT_GROUP
)
580 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
581 name
= targetm
.strip_name_encoding (name
);
582 return get_named_section (decl
, ACONCAT ((text_section_name
, ".",
588 return get_named_section (decl
, text_section_name
, 0);
591 /* Choose named function section based on its frequency. */
594 default_function_section (tree decl
, enum node_frequency freq
,
595 bool startup
, bool exit
)
597 #if defined HAVE_LD_EH_GC_SECTIONS && defined HAVE_LD_EH_GC_SECTIONS_BUG
598 /* Old GNU linkers have buggy --gc-section support, which sometimes
599 results in .gcc_except_table* sections being garbage collected. */
601 && symtab_node::get (decl
)->implicit_section
)
605 if (!flag_reorder_functions
606 || !targetm_common
.have_named_sections
)
608 /* Startup code should go to startup subsection unless it is
609 unlikely executed (this happens especially with function splitting
610 where we can split away unnecessary parts of static constructors. */
611 if (startup
&& freq
!= NODE_FREQUENCY_UNLIKELY_EXECUTED
)
613 /* During LTO the tp_first_run profiling will naturally place all
614 initialization code first. Using separate section is counter-productive
615 because startup only code may call functions which are no longer
618 || !cgraph_node::get (decl
)->tp_first_run
619 || !opt_for_fn (decl
, flag_profile_reorder_functions
))
620 return get_named_text_section (decl
, ".text.startup", NULL
);
625 /* Similarly for exit. */
626 if (exit
&& freq
!= NODE_FREQUENCY_UNLIKELY_EXECUTED
)
627 return get_named_text_section (decl
, ".text.exit", NULL
);
629 /* Group cold functions together, similarly for hot code. */
632 case NODE_FREQUENCY_UNLIKELY_EXECUTED
:
633 return get_named_text_section (decl
, ".text.unlikely", NULL
);
634 case NODE_FREQUENCY_HOT
:
635 return get_named_text_section (decl
, ".text.hot", NULL
);
642 /* Return the section for function DECL.
644 If DECL is NULL_TREE, return the text section. We can be passed
645 NULL_TREE under some circumstances by dbxout.cc at least.
647 If FORCE_COLD is true, return cold function section ignoring
648 the frequency info of cgraph_node. */
651 function_section_1 (tree decl
, bool force_cold
)
653 section
*section
= NULL
;
654 enum node_frequency freq
= NODE_FREQUENCY_NORMAL
;
655 bool startup
= false, exit
= false;
659 struct cgraph_node
*node
= cgraph_node::get (decl
);
663 freq
= node
->frequency
;
664 startup
= node
->only_called_at_startup
;
665 exit
= node
->only_called_at_exit
;
669 freq
= NODE_FREQUENCY_UNLIKELY_EXECUTED
;
671 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
672 if (decl
!= NULL_TREE
673 && DECL_SECTION_NAME (decl
) != NULL
)
675 if (targetm
.asm_out
.function_section
)
676 section
= targetm
.asm_out
.function_section (decl
, freq
,
680 return get_named_section (decl
, NULL
, 0);
683 return targetm
.asm_out
.select_section
684 (decl
, freq
== NODE_FREQUENCY_UNLIKELY_EXECUTED
,
685 symtab_node::get (decl
)->definition_alignment ());
687 if (targetm
.asm_out
.function_section
)
688 section
= targetm
.asm_out
.function_section (decl
, freq
, startup
, exit
);
691 return hot_function_section (decl
);
695 /* Return the section for function DECL.
697 If DECL is NULL_TREE, return the text section. We can be passed
698 NULL_TREE under some circumstances by dbxout.cc at least. */
701 function_section (tree decl
)
703 /* Handle cases where function splitting code decides
704 to put function entry point into unlikely executed section
705 despite the fact that the function itself is not cold
706 (i.e. it is called rarely but contains a hot loop that is
707 better to live in hot subsection for the code locality). */
708 return function_section_1 (decl
,
709 first_function_block_is_cold
);
712 /* Return the section for the current function, take IN_COLD_SECTION_P
716 current_function_section (void)
718 return function_section_1 (current_function_decl
, in_cold_section_p
);
721 /* Tell assembler to switch to unlikely-to-be-executed text section. */
724 unlikely_text_section (void)
726 return function_section_1 (current_function_decl
, true);
729 /* When called within a function context, return true if the function
730 has been assigned a cold text section and if SECT is that section.
731 When called outside a function context, return true if SECT is the
732 default cold section. */
735 unlikely_text_section_p (section
*sect
)
737 return sect
== function_section_1 (current_function_decl
, true);
740 /* Switch to the other function partition (if inside of hot section
741 into cold section, otherwise into the hot section). */
744 switch_to_other_text_partition (void)
746 in_cold_section_p
= !in_cold_section_p
;
747 switch_to_section (current_function_section ());
750 /* Return the read-only or relocated read-only data section
751 associated with function DECL. */
754 default_function_rodata_section (tree decl
, bool relocatable
)
763 sname
= ".data.rel.ro.local";
764 flags
= (SECTION_WRITE
| SECTION_RELRO
);
769 if (decl
&& DECL_SECTION_NAME (decl
))
771 const char *name
= DECL_SECTION_NAME (decl
);
773 if (DECL_COMDAT_GROUP (decl
) && HAVE_COMDAT_GROUP
)
779 dot
= strchr (name
+ 1, '.');
782 len
= strlen (dot
) + strlen (sname
) + 1;
783 rname
= (char *) alloca (len
);
785 strcpy (rname
, sname
);
787 return get_section (rname
, (SECTION_LINKONCE
| flags
), decl
);
789 /* For .gnu.linkonce.t.foo we want to use .gnu.linkonce.r.foo or
790 .gnu.linkonce.d.rel.ro.local.foo if the jump table is relocatable. */
791 else if (DECL_COMDAT_GROUP (decl
)
792 && startswith (name
, ".gnu.linkonce.t."))
799 len
= strlen (name
) + strlen (".rel.ro.local") + 1;
800 rname
= (char *) alloca (len
);
802 strcpy (rname
, ".gnu.linkonce.d.rel.ro.local");
803 strcat (rname
, name
+ 15);
807 len
= strlen (name
) + 1;
808 rname
= (char *) alloca (len
);
810 memcpy (rname
, name
, len
);
813 return get_section (rname
, (SECTION_LINKONCE
| flags
), decl
);
815 /* For .text.foo we want to use .rodata.foo. */
816 else if (flag_function_sections
&& flag_data_sections
817 && startswith (name
, ".text."))
819 size_t len
= strlen (name
) + 1;
820 char *rname
= (char *) alloca (len
+ strlen (sname
) - 5);
822 memcpy (rname
, sname
, strlen (sname
));
823 memcpy (rname
+ strlen (sname
), name
+ 5, len
- 5);
824 return get_section (rname
, flags
, decl
);
829 return get_section (sname
, flags
, decl
);
831 return readonly_data_section
;
834 /* Return the read-only data section associated with function DECL
835 for targets where that section should be always the single
836 readonly data section. */
839 default_no_function_rodata_section (tree
, bool)
841 return readonly_data_section
;
844 /* A subroutine of mergeable_string_section and mergeable_constant_section. */
847 function_mergeable_rodata_prefix (void)
849 section
*s
= targetm
.asm_out
.function_rodata_section (current_function_decl
,
851 if (SECTION_STYLE (s
) == SECTION_NAMED
)
852 return s
->named
.name
;
854 return targetm
.asm_out
.mergeable_rodata_prefix
;
857 /* Return the section to use for string merging. */
860 mergeable_string_section (tree decl ATTRIBUTE_UNUSED
,
861 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
,
862 unsigned int flags ATTRIBUTE_UNUSED
)
866 if (HAVE_GAS_SHF_MERGE
&& flag_merge_constants
867 && TREE_CODE (decl
) == STRING_CST
868 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
870 && (len
= int_size_in_bytes (TREE_TYPE (decl
))) > 0
871 && TREE_STRING_LENGTH (decl
) == len
)
873 scalar_int_mode mode
;
874 unsigned int modesize
;
878 const char *prefix
= function_mergeable_rodata_prefix ();
879 char *name
= (char *) alloca (strlen (prefix
) + 30);
881 mode
= SCALAR_INT_TYPE_MODE (TREE_TYPE (TREE_TYPE (decl
)));
882 modesize
= GET_MODE_BITSIZE (mode
);
883 if (modesize
>= 8 && modesize
<= 256
884 && (modesize
& (modesize
- 1)) == 0)
886 if (align
< modesize
)
889 if (!HAVE_LD_ALIGNED_SHF_MERGE
&& align
> 8)
890 return readonly_data_section
;
892 str
= TREE_STRING_POINTER (decl
);
893 unit
= GET_MODE_SIZE (mode
);
895 /* Check for embedded NUL characters. */
896 for (i
= 0; i
< len
; i
+= unit
)
898 for (j
= 0; j
< unit
; j
++)
899 if (str
[i
+ j
] != '\0')
904 if (i
== len
- unit
|| (unit
== 1 && i
== len
))
906 sprintf (name
, "%s.str%d.%d", prefix
,
907 modesize
/ 8, (int) (align
/ 8));
908 flags
|= (modesize
/ 8) | SECTION_MERGE
| SECTION_STRINGS
;
909 return get_section (name
, flags
, NULL
);
914 return readonly_data_section
;
917 /* Return the section to use for constant merging. */
920 mergeable_constant_section (machine_mode mode ATTRIBUTE_UNUSED
,
921 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
,
922 unsigned int flags ATTRIBUTE_UNUSED
)
924 if (HAVE_GAS_SHF_MERGE
&& flag_merge_constants
927 && known_le (GET_MODE_BITSIZE (mode
), align
)
930 && (align
& (align
- 1)) == 0
931 && (HAVE_LD_ALIGNED_SHF_MERGE
? 1 : align
== 8))
933 const char *prefix
= function_mergeable_rodata_prefix ();
934 char *name
= (char *) alloca (strlen (prefix
) + 30);
936 sprintf (name
, "%s.cst%d", prefix
, (int) (align
/ 8));
937 flags
|= (align
/ 8) | SECTION_MERGE
;
938 return get_section (name
, flags
, NULL
);
940 return readonly_data_section
;
943 /* Given NAME, a putative register name, discard any customary prefixes. */
946 strip_reg_name (const char *name
)
948 #ifdef REGISTER_PREFIX
949 if (!strncmp (name
, REGISTER_PREFIX
, strlen (REGISTER_PREFIX
)))
950 name
+= strlen (REGISTER_PREFIX
);
952 if (name
[0] == '%' || name
[0] == '#')
957 /* The user has asked for a DECL to have a particular name. Set (or
958 change) it in such a way that we don't prefix an underscore to
961 set_user_assembler_name (tree decl
, const char *name
)
963 char *starred
= (char *) alloca (strlen (name
) + 2);
965 strcpy (starred
+ 1, name
);
966 symtab
->change_decl_assembler_name (decl
, get_identifier (starred
));
967 SET_DECL_RTL (decl
, NULL_RTX
);
970 /* Decode an `asm' spec for a declaration as a register name.
971 Return the register number, or -1 if nothing specified,
972 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
973 or -3 if ASMSPEC is `cc' and is not recognized,
974 or -4 if ASMSPEC is `memory' and is not recognized.
975 Accept an exact spelling or a decimal number.
976 Prefixes such as % are optional. */
979 decode_reg_name_and_count (const char *asmspec
, int *pnregs
)
981 /* Presume just one register is clobbered. */
988 /* Get rid of confusing prefixes. */
989 asmspec
= strip_reg_name (asmspec
);
991 /* Allow a decimal number as a "register name". */
992 for (i
= strlen (asmspec
) - 1; i
>= 0; i
--)
993 if (! ISDIGIT (asmspec
[i
]))
995 if (asmspec
[0] != 0 && i
< 0)
998 if (i
< FIRST_PSEUDO_REGISTER
&& i
>= 0 && reg_names
[i
][0])
1004 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
1006 && ! strcmp (asmspec
, strip_reg_name (reg_names
[i
])))
1009 #ifdef OVERLAPPING_REGISTER_NAMES
1013 const char *const name
;
1016 } table
[] = OVERLAPPING_REGISTER_NAMES
;
1018 for (i
= 0; i
< (int) ARRAY_SIZE (table
); i
++)
1019 if (table
[i
].name
[0]
1020 && ! strcmp (asmspec
, table
[i
].name
))
1022 *pnregs
= table
[i
].nregs
;
1023 return table
[i
].number
;
1026 #endif /* OVERLAPPING_REGISTER_NAMES */
1028 #ifdef ADDITIONAL_REGISTER_NAMES
1030 static const struct { const char *const name
; const int number
; } table
[]
1031 = ADDITIONAL_REGISTER_NAMES
;
1033 for (i
= 0; i
< (int) ARRAY_SIZE (table
); i
++)
1034 if (table
[i
].name
[0]
1035 && ! strcmp (asmspec
, table
[i
].name
)
1036 && reg_names
[table
[i
].number
][0])
1037 return table
[i
].number
;
1039 #endif /* ADDITIONAL_REGISTER_NAMES */
1041 if (!strcmp (asmspec
, "memory"))
1044 if (!strcmp (asmspec
, "cc"))
1054 decode_reg_name (const char *name
)
1057 return decode_reg_name_and_count (name
, &count
);
1061 /* Return true if DECL's initializer is suitable for a BSS section. */
1064 bss_initializer_p (const_tree decl
, bool named
)
1066 /* Do not put non-common constants into the .bss section, they belong in
1067 a readonly section, except when NAMED is true. */
1068 return ((!TREE_READONLY (decl
) || DECL_COMMON (decl
) || named
)
1069 && (DECL_INITIAL (decl
) == NULL
1070 /* In LTO we have no errors in program; error_mark_node is used
1071 to mark offlined constructors. */
1072 || (DECL_INITIAL (decl
) == error_mark_node
1074 || (flag_zero_initialized_in_bss
1075 && initializer_zerop (DECL_INITIAL (decl
))
1076 /* A decl with the "persistent" attribute applied and
1077 explicitly initialized to 0 should not be treated as a BSS
1079 && !DECL_PERSISTENT_P (decl
))));
1082 /* Compute the alignment of variable specified by DECL.
1083 DONT_OUTPUT_DATA is from assemble_variable. */
1086 align_variable (tree decl
, bool dont_output_data
)
1088 unsigned int align
= DECL_ALIGN (decl
);
1090 /* In the case for initialing an array whose length isn't specified,
1091 where we have not yet been able to do the layout,
1092 figure out the proper alignment now. */
1093 if (dont_output_data
&& DECL_SIZE (decl
) == 0
1094 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
1095 align
= MAX (align
, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl
))));
1097 /* Some object file formats have a maximum alignment which they support.
1098 In particular, a.out format supports a maximum alignment of 4. */
1099 if (align
> MAX_OFILE_ALIGNMENT
)
1101 error ("alignment of %q+D is greater than maximum object "
1102 "file alignment %d", decl
,
1103 MAX_OFILE_ALIGNMENT
/BITS_PER_UNIT
);
1104 align
= MAX_OFILE_ALIGNMENT
;
1107 if (! DECL_USER_ALIGN (decl
))
1109 #ifdef DATA_ABI_ALIGNMENT
1110 unsigned int data_abi_align
1111 = DATA_ABI_ALIGNMENT (TREE_TYPE (decl
), align
);
1112 /* For backwards compatibility, don't assume the ABI alignment for
1114 if (! DECL_THREAD_LOCAL_P (decl
) || data_abi_align
<= BITS_PER_WORD
)
1115 align
= data_abi_align
;
1118 /* On some machines, it is good to increase alignment sometimes.
1119 But as DECL_ALIGN is used both for actually emitting the variable
1120 and for code accessing the variable as guaranteed alignment, we
1121 can only increase the alignment if it is a performance optimization
1122 if the references to it must bind to the current definition. */
1123 if (decl_binds_to_current_def_p (decl
)
1124 && !DECL_VIRTUAL_P (decl
))
1126 #ifdef DATA_ALIGNMENT
1127 unsigned int data_align
= DATA_ALIGNMENT (TREE_TYPE (decl
), align
);
1128 /* Don't increase alignment too much for TLS variables - TLS space
1130 if (! DECL_THREAD_LOCAL_P (decl
) || data_align
<= BITS_PER_WORD
)
1133 if (DECL_INITIAL (decl
) != 0
1134 /* In LTO we have no errors in program; error_mark_node is used
1135 to mark offlined constructors. */
1136 && (in_lto_p
|| DECL_INITIAL (decl
) != error_mark_node
))
1138 unsigned int const_align
1139 = targetm
.constant_alignment (DECL_INITIAL (decl
), align
);
1140 /* Don't increase alignment too much for TLS variables - TLS
1141 space is too precious. */
1142 if (! DECL_THREAD_LOCAL_P (decl
) || const_align
<= BITS_PER_WORD
)
1143 align
= const_align
;
1148 /* Reset the alignment in case we have made it tighter, so we can benefit
1149 from it in get_pointer_alignment. */
1150 SET_DECL_ALIGN (decl
, align
);
1153 /* Return DECL_ALIGN (decl), possibly increased for optimization purposes
1154 beyond what align_variable returned. */
1157 get_variable_align (tree decl
)
1159 unsigned int align
= DECL_ALIGN (decl
);
1161 /* For user aligned vars or static vars align_variable already did
1163 if (DECL_USER_ALIGN (decl
) || !TREE_PUBLIC (decl
))
1166 #ifdef DATA_ABI_ALIGNMENT
1167 if (DECL_THREAD_LOCAL_P (decl
))
1168 align
= DATA_ABI_ALIGNMENT (TREE_TYPE (decl
), align
);
1171 /* For decls that bind to the current definition, align_variable
1172 did also everything, except for not assuming ABI required alignment
1173 of TLS variables. For other vars, increase the alignment here
1174 as an optimization. */
1175 if (!decl_binds_to_current_def_p (decl
))
1177 /* On some machines, it is good to increase alignment sometimes. */
1178 #ifdef DATA_ALIGNMENT
1179 unsigned int data_align
= DATA_ALIGNMENT (TREE_TYPE (decl
), align
);
1180 /* Don't increase alignment too much for TLS variables - TLS space
1182 if (! DECL_THREAD_LOCAL_P (decl
) || data_align
<= BITS_PER_WORD
)
1185 if (DECL_INITIAL (decl
) != 0
1186 /* In LTO we have no errors in program; error_mark_node is used
1187 to mark offlined constructors. */
1188 && (in_lto_p
|| DECL_INITIAL (decl
) != error_mark_node
))
1190 unsigned int const_align
1191 = targetm
.constant_alignment (DECL_INITIAL (decl
), align
);
1192 /* Don't increase alignment too much for TLS variables - TLS space
1194 if (! DECL_THREAD_LOCAL_P (decl
) || const_align
<= BITS_PER_WORD
)
1195 align
= const_align
;
1202 /* Compute reloc for get_variable_section. The return value
1203 is a mask for which bit 1 indicates a global relocation, and bit 0
1204 indicates a local relocation. */
1207 compute_reloc_for_var (tree decl
)
1211 if (DECL_INITIAL (decl
) == error_mark_node
)
1212 reloc
= contains_pointers_p (TREE_TYPE (decl
)) ? 3 : 0;
1213 else if (DECL_INITIAL (decl
))
1214 reloc
= compute_reloc_for_constant (DECL_INITIAL (decl
));
1221 /* Return the section into which the given VAR_DECL or CONST_DECL
1222 should be placed. PREFER_NOSWITCH_P is true if a noswitch
1223 section should be used wherever possible. */
1226 get_variable_section (tree decl
, bool prefer_noswitch_p
)
1228 addr_space_t as
= ADDR_SPACE_GENERIC
;
1230 varpool_node
*vnode
= varpool_node::get (decl
);
1233 vnode
= vnode
->ultimate_alias_target ();
1237 if (TREE_TYPE (decl
) != error_mark_node
)
1238 as
= TYPE_ADDR_SPACE (TREE_TYPE (decl
));
1240 /* We need the constructor to figure out reloc flag. */
1242 vnode
->get_constructor ();
1244 if (DECL_COMMON (decl
)
1245 && !lookup_attribute ("retain", DECL_ATTRIBUTES (decl
)))
1247 /* If the decl has been given an explicit section name, or it resides
1248 in a non-generic address space, then it isn't common, and shouldn't
1249 be handled as such. */
1250 gcc_assert (DECL_SECTION_NAME (decl
) == NULL
1251 && ADDR_SPACE_GENERIC_P (as
));
1252 if (DECL_THREAD_LOCAL_P (decl
))
1253 return tls_comm_section
;
1254 else if (TREE_PUBLIC (decl
) && bss_initializer_p (decl
))
1255 return comm_section
;
1258 reloc
= compute_reloc_for_var (decl
);
1260 resolve_unique_section (decl
, reloc
, flag_data_sections
);
1261 if (IN_NAMED_SECTION (decl
))
1263 section
*sect
= get_named_section (decl
, NULL
, reloc
);
1265 if ((sect
->common
.flags
& SECTION_BSS
)
1266 && !bss_initializer_p (decl
, true))
1268 error_at (DECL_SOURCE_LOCATION (decl
),
1269 "only zero initializers are allowed in section %qs",
1271 DECL_INITIAL (decl
) = error_mark_node
;
1276 if (ADDR_SPACE_GENERIC_P (as
)
1277 && !DECL_THREAD_LOCAL_P (decl
)
1278 && !DECL_NOINIT_P (decl
)
1279 && !(prefer_noswitch_p
&& targetm
.have_switchable_bss_sections
)
1280 && bss_initializer_p (decl
))
1282 if (!TREE_PUBLIC (decl
)
1283 && !((flag_sanitize
& SANITIZE_ADDRESS
)
1284 && asan_protect_global (decl
)))
1285 return lcomm_section
;
1286 if (bss_noswitch_section
)
1287 return bss_noswitch_section
;
1290 return targetm
.asm_out
.select_section (decl
, reloc
,
1291 get_variable_align (decl
));
1294 /* Return the block into which object_block DECL should be placed. */
1296 static struct object_block
*
1297 get_block_for_decl (tree decl
)
1303 /* The object must be defined in this translation unit. */
1304 if (DECL_EXTERNAL (decl
))
1307 /* There's no point using object blocks for something that is
1308 isolated by definition. */
1309 if (DECL_COMDAT_GROUP (decl
))
1313 /* We can only calculate block offsets if the decl has a known
1315 if (DECL_SIZE_UNIT (decl
) == NULL
)
1317 if (!tree_fits_uhwi_p (DECL_SIZE_UNIT (decl
)))
1320 /* Find out which section should contain DECL. We cannot put it into
1321 an object block if it requires a standalone definition. */
1323 align_variable (decl
, 0);
1324 sect
= get_variable_section (decl
, true);
1325 if (SECTION_STYLE (sect
) == SECTION_NOSWITCH
)
1328 if (bool (lookup_attribute ("retain", DECL_ATTRIBUTES (decl
)))
1329 != bool (sect
->common
.flags
& SECTION_RETAIN
))
1332 return get_block_for_section (sect
);
1335 /* Make sure block symbol SYMBOL is in block BLOCK. */
1338 change_symbol_block (rtx symbol
, struct object_block
*block
)
1340 if (block
!= SYMBOL_REF_BLOCK (symbol
))
1342 gcc_assert (SYMBOL_REF_BLOCK_OFFSET (symbol
) < 0);
1343 SYMBOL_REF_BLOCK (symbol
) = block
;
1347 /* Return true if it is possible to put DECL in an object_block. */
1350 use_blocks_for_decl_p (tree decl
)
1352 struct symtab_node
*snode
;
1354 /* Don't create object blocks if each DECL is placed into a separate
1355 section because that will uselessly create a section anchor for
1357 if (flag_data_sections
)
1360 /* Only data DECLs can be placed into object blocks. */
1361 if (!VAR_P (decl
) && TREE_CODE (decl
) != CONST_DECL
)
1364 /* DECL_INITIAL (decl) set to decl is a hack used for some decls that
1365 are never used from code directly and we never want object block handling
1367 if (DECL_INITIAL (decl
) == decl
)
1370 /* If this decl is an alias, then we don't want to emit a
1373 && (snode
= symtab_node::get (decl
)) != NULL
1377 return targetm
.use_blocks_for_decl_p (decl
);
1380 /* Follow the IDENTIFIER_TRANSPARENT_ALIAS chain starting at *ALIAS
1381 until we find an identifier that is not itself a transparent alias.
1382 Modify the alias passed to it by reference (and all aliases on the
1383 way to the ultimate target), such that they do not have to be
1384 followed again, and return the ultimate target of the alias
1388 ultimate_transparent_alias_target (tree
*alias
)
1390 tree target
= *alias
;
1392 if (IDENTIFIER_TRANSPARENT_ALIAS (target
))
1394 gcc_assert (TREE_CHAIN (target
));
1395 target
= ultimate_transparent_alias_target (&TREE_CHAIN (target
));
1396 gcc_assert (! IDENTIFIER_TRANSPARENT_ALIAS (target
)
1397 && ! TREE_CHAIN (target
));
1404 /* Return true if REGNUM is mentioned in ELIMINABLE_REGS as a from
1408 eliminable_regno_p (int regnum
)
1414 } eliminables
[] = ELIMINABLE_REGS
;
1415 for (size_t i
= 0; i
< ARRAY_SIZE (eliminables
); i
++)
1416 if (regnum
== eliminables
[i
].from
)
1421 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
1422 have static storage duration. In other words, it should not be an
1423 automatic variable, including PARM_DECLs.
1425 There is, however, one exception: this function handles variables
1426 explicitly placed in a particular register by the user.
1428 This is never called for PARM_DECL nodes. */
1431 make_decl_rtl (tree decl
)
1433 const char *name
= 0;
1438 /* Check that we are not being given an automatic variable. */
1439 gcc_assert (TREE_CODE (decl
) != PARM_DECL
1440 && TREE_CODE (decl
) != RESULT_DECL
);
1442 /* A weak alias has TREE_PUBLIC set but not the other bits. */
1443 gcc_assert (!VAR_P (decl
)
1444 || TREE_STATIC (decl
)
1445 || TREE_PUBLIC (decl
)
1446 || DECL_EXTERNAL (decl
)
1447 || DECL_REGISTER (decl
));
1449 /* And that we were not given a type or a label. */
1450 gcc_assert (TREE_CODE (decl
) != TYPE_DECL
1451 && TREE_CODE (decl
) != LABEL_DECL
);
1453 /* For a duplicate declaration, we can be called twice on the
1454 same DECL node. Don't discard the RTL already made. */
1455 if (DECL_RTL_SET_P (decl
))
1457 /* If the old RTL had the wrong mode, fix the mode. */
1458 x
= DECL_RTL (decl
);
1459 if (GET_MODE (x
) != DECL_MODE (decl
))
1460 SET_DECL_RTL (decl
, adjust_address_nv (x
, DECL_MODE (decl
), 0));
1462 if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
))
1465 /* ??? Another way to do this would be to maintain a hashed
1466 table of such critters. Instead of adding stuff to a DECL
1467 to give certain attributes to it, we could use an external
1468 hash map from DECL to set of attributes. */
1470 /* Let the target reassign the RTL if it wants.
1471 This is necessary, for example, when one machine specific
1472 decl attribute overrides another. */
1473 targetm
.encode_section_info (decl
, DECL_RTL (decl
), false);
1475 /* If the symbol has a SYMBOL_REF_BLOCK field, update it based
1476 on the new decl information. */
1478 && GET_CODE (XEXP (x
, 0)) == SYMBOL_REF
1479 && SYMBOL_REF_HAS_BLOCK_INFO_P (XEXP (x
, 0)))
1480 change_symbol_block (XEXP (x
, 0), get_block_for_decl (decl
));
1485 /* If this variable belongs to the global constant pool, retrieve the
1486 pre-computed RTL or recompute it in LTO mode. */
1487 if (VAR_P (decl
) && DECL_IN_CONSTANT_POOL (decl
))
1489 SET_DECL_RTL (decl
, output_constant_def (DECL_INITIAL (decl
), 1));
1493 id
= DECL_ASSEMBLER_NAME (decl
);
1494 name
= IDENTIFIER_POINTER (id
);
1496 if (name
[0] != '*' && TREE_CODE (decl
) != FUNCTION_DECL
1497 && DECL_REGISTER (decl
))
1499 error ("register name not specified for %q+D", decl
);
1501 else if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
))
1503 const char *asmspec
= name
+1;
1504 machine_mode mode
= DECL_MODE (decl
);
1505 reg_number
= decode_reg_name (asmspec
);
1506 /* First detect errors in declaring global registers. */
1507 if (reg_number
== -1)
1508 error ("register name not specified for %q+D", decl
);
1509 else if (reg_number
< 0)
1510 error ("invalid register name for %q+D", decl
);
1511 else if (mode
== BLKmode
)
1512 error ("data type of %q+D isn%'t suitable for a register",
1514 else if (!in_hard_reg_set_p (accessible_reg_set
, mode
, reg_number
))
1515 error ("the register specified for %q+D cannot be accessed"
1516 " by the current target", decl
);
1517 else if (!in_hard_reg_set_p (operand_reg_set
, mode
, reg_number
))
1518 error ("the register specified for %q+D is not general enough"
1519 " to be used as a register variable", decl
);
1520 else if (!targetm
.hard_regno_mode_ok (reg_number
, mode
))
1521 error ("register specified for %q+D isn%'t suitable for data type",
1523 else if (reg_number
!= HARD_FRAME_POINTER_REGNUM
1524 && (reg_number
== FRAME_POINTER_REGNUM
1525 #ifdef RETURN_ADDRESS_POINTER_REGNUM
1526 || reg_number
== RETURN_ADDRESS_POINTER_REGNUM
1528 || reg_number
== ARG_POINTER_REGNUM
)
1529 && eliminable_regno_p (reg_number
))
1530 error ("register specified for %q+D is an internal GCC "
1531 "implementation detail", decl
);
1532 /* Now handle properly declared static register variables. */
1537 if (DECL_INITIAL (decl
) != 0 && TREE_STATIC (decl
))
1539 DECL_INITIAL (decl
) = 0;
1540 error ("global register variable has initial value");
1542 if (TREE_THIS_VOLATILE (decl
))
1543 warning (OPT_Wvolatile_register_var
,
1544 "optimization may eliminate reads and/or "
1545 "writes to register variables");
1547 /* If the user specified one of the eliminables registers here,
1548 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
1549 confused with that register and be eliminated. This usage is
1550 somewhat suspect... */
1552 SET_DECL_RTL (decl
, gen_raw_REG (mode
, reg_number
));
1553 ORIGINAL_REGNO (DECL_RTL (decl
)) = reg_number
;
1554 REG_USERVAR_P (DECL_RTL (decl
)) = 1;
1556 if (TREE_STATIC (decl
))
1558 /* Make this register global, so not usable for anything
1560 #ifdef ASM_DECLARE_REGISTER_GLOBAL
1561 name
= IDENTIFIER_POINTER (DECL_NAME (decl
));
1562 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file
, decl
, reg_number
, name
);
1564 nregs
= hard_regno_nregs (reg_number
, mode
);
1566 globalize_reg (decl
, reg_number
+ --nregs
);
1569 /* As a register variable, it has no section. */
1572 /* Avoid internal errors from invalid register
1574 SET_DECL_ASSEMBLER_NAME (decl
, NULL_TREE
);
1575 DECL_HARD_REGISTER (decl
) = 0;
1576 /* Also avoid SSA inconsistencies by pretending this is an external
1578 DECL_EXTERNAL (decl
) = 1;
1581 /* Now handle ordinary static variables and functions (in memory).
1582 Also handle vars declared register invalidly. */
1583 else if (name
[0] == '*')
1585 #ifdef REGISTER_PREFIX
1586 if (strlen (REGISTER_PREFIX
) != 0)
1588 reg_number
= decode_reg_name (name
);
1589 if (reg_number
>= 0 || reg_number
== -3)
1590 error ("register name given for non-register variable %q+D", decl
);
1595 /* Specifying a section attribute on a variable forces it into a
1596 non-.bss section, and thus it cannot be common. */
1597 /* FIXME: In general this code should not be necessary because
1598 visibility pass is doing the same work. But notice_global_symbol
1599 is called early and it needs to make DECL_RTL to get the name.
1600 we take care of recomputing the DECL_RTL after visibility is changed. */
1602 && (TREE_STATIC (decl
) || DECL_EXTERNAL (decl
))
1603 && DECL_SECTION_NAME (decl
) != NULL
1604 && DECL_INITIAL (decl
) == NULL_TREE
1605 && DECL_COMMON (decl
))
1606 DECL_COMMON (decl
) = 0;
1608 /* Variables can't be both common and weak. */
1609 if (VAR_P (decl
) && DECL_WEAK (decl
))
1610 DECL_COMMON (decl
) = 0;
1612 if (use_object_blocks_p () && use_blocks_for_decl_p (decl
))
1613 x
= create_block_symbol (name
, get_block_for_decl (decl
), -1);
1616 machine_mode address_mode
= Pmode
;
1617 if (TREE_TYPE (decl
) != error_mark_node
)
1619 addr_space_t as
= TYPE_ADDR_SPACE (TREE_TYPE (decl
));
1620 address_mode
= targetm
.addr_space
.address_mode (as
);
1622 x
= gen_rtx_SYMBOL_REF (address_mode
, name
);
1624 SYMBOL_REF_WEAK (x
) = DECL_WEAK (decl
);
1625 SET_SYMBOL_REF_DECL (x
, decl
);
1627 x
= gen_rtx_MEM (DECL_MODE (decl
), x
);
1628 if (TREE_CODE (decl
) != FUNCTION_DECL
)
1629 set_mem_attributes (x
, decl
, 1);
1630 SET_DECL_RTL (decl
, x
);
1632 /* Optionally set flags or add text to the name to record information
1633 such as that it is a function name.
1634 If the name is changed, the macro ASM_OUTPUT_LABELREF
1635 will have to know how to strip this information. */
1636 targetm
.encode_section_info (decl
, DECL_RTL (decl
), true);
1639 /* Like make_decl_rtl, but inhibit creation of new alias sets when
1640 calling make_decl_rtl. Also, reset DECL_RTL before returning the
1644 make_decl_rtl_for_debug (tree decl
)
1646 unsigned int save_aliasing_flag
;
1649 if (DECL_RTL_SET_P (decl
))
1650 return DECL_RTL (decl
);
1652 /* Kludge alert! Somewhere down the call chain, make_decl_rtl will
1653 call new_alias_set. If running with -fcompare-debug, sometimes
1654 we do not want to create alias sets that will throw the alias
1655 numbers off in the comparison dumps. So... clearing
1656 flag_strict_aliasing will keep new_alias_set() from creating a
1658 save_aliasing_flag
= flag_strict_aliasing
;
1659 flag_strict_aliasing
= 0;
1661 rtl
= DECL_RTL (decl
);
1662 /* Reset DECL_RTL back, as various parts of the compiler expects
1663 DECL_RTL set meaning it is actually going to be output. */
1664 SET_DECL_RTL (decl
, NULL
);
1666 flag_strict_aliasing
= save_aliasing_flag
;
1670 /* Output a string of literal assembler code
1671 for an `asm' keyword used between functions. */
1674 assemble_asm (tree string
)
1679 if (TREE_CODE (string
) == ADDR_EXPR
)
1680 string
= TREE_OPERAND (string
, 0);
1682 p
= TREE_STRING_POINTER (string
);
1683 fprintf (asm_out_file
, "%s%s\n", p
[0] == '\t' ? "" : "\t", p
);
1686 /* Write the address of the entity given by SYMBOL to SEC. */
1688 assemble_addr_to_section (rtx symbol
, section
*sec
)
1690 switch_to_section (sec
);
1691 assemble_align (POINTER_SIZE
);
1692 assemble_integer (symbol
, POINTER_SIZE_UNITS
, POINTER_SIZE
, 1);
1695 /* Return the numbered .ctors.N (if CONSTRUCTOR_P) or .dtors.N (if
1696 not) section for PRIORITY. */
1698 get_cdtor_priority_section (int priority
, bool constructor_p
)
1700 /* Buffer conservatively large enough for the full range of a 32-bit
1701 int plus the text below. */
1704 /* ??? This only works reliably with the GNU linker. */
1705 sprintf (buf
, "%s.%.5u",
1706 constructor_p
? ".ctors" : ".dtors",
1707 /* Invert the numbering so the linker puts us in the proper
1708 order; constructors are run from right to left, and the
1709 linker sorts in increasing order. */
1710 MAX_INIT_PRIORITY
- priority
);
1711 return get_section (buf
, SECTION_WRITE
, NULL
);
1715 default_named_section_asm_out_destructor (rtx symbol
, int priority
)
1719 if (priority
!= DEFAULT_INIT_PRIORITY
)
1720 sec
= get_cdtor_priority_section (priority
,
1721 /*constructor_p=*/false);
1723 sec
= get_section (".dtors", SECTION_WRITE
, NULL
);
1725 assemble_addr_to_section (symbol
, sec
);
1728 #ifdef DTORS_SECTION_ASM_OP
1730 default_dtor_section_asm_out_destructor (rtx symbol
,
1731 int priority ATTRIBUTE_UNUSED
)
1733 assemble_addr_to_section (symbol
, dtors_section
);
1738 default_named_section_asm_out_constructor (rtx symbol
, int priority
)
1742 if (priority
!= DEFAULT_INIT_PRIORITY
)
1743 sec
= get_cdtor_priority_section (priority
,
1744 /*constructor_p=*/true);
1746 sec
= get_section (".ctors", SECTION_WRITE
, NULL
);
1748 assemble_addr_to_section (symbol
, sec
);
1751 #ifdef CTORS_SECTION_ASM_OP
1753 default_ctor_section_asm_out_constructor (rtx symbol
,
1754 int priority ATTRIBUTE_UNUSED
)
1756 assemble_addr_to_section (symbol
, ctors_section
);
1760 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1761 a nonzero value if the constant pool should be output before the
1762 start of the function, or a zero value if the pool should output
1763 after the end of the function. The default is to put it before the
1766 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1767 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1770 /* DECL is an object (either VAR_DECL or FUNCTION_DECL) which is going
1771 to be output to assembler.
1772 Set first_global_object_name and weak_global_object_name as appropriate. */
1775 notice_global_symbol (tree decl
)
1777 const char **t
= &first_global_object_name
;
1779 if (first_global_object_name
1780 || !TREE_PUBLIC (decl
)
1781 || DECL_EXTERNAL (decl
)
1782 || !DECL_NAME (decl
)
1783 || (VAR_P (decl
) && DECL_HARD_REGISTER (decl
))
1784 || (TREE_CODE (decl
) != FUNCTION_DECL
1786 || (DECL_COMMON (decl
)
1787 && (DECL_INITIAL (decl
) == 0
1788 || DECL_INITIAL (decl
) == error_mark_node
)))))
1791 /* We win when global object is found, but it is useful to know about weak
1792 symbol as well so we can produce nicer unique names. */
1793 if (DECL_WEAK (decl
) || DECL_ONE_ONLY (decl
) || flag_shlib
)
1794 t
= &weak_global_object_name
;
1798 tree id
= DECL_ASSEMBLER_NAME (decl
);
1799 ultimate_transparent_alias_target (&id
);
1800 *t
= ggc_strdup (targetm
.strip_name_encoding (IDENTIFIER_POINTER (id
)));
1804 /* If not using flag_reorder_blocks_and_partition, decide early whether the
1805 current function goes into the cold section, so that targets can use
1806 current_function_section during RTL expansion. DECL describes the
1810 decide_function_section (tree decl
)
1812 first_function_block_is_cold
= false;
1814 if (DECL_SECTION_NAME (decl
))
1816 struct cgraph_node
*node
= cgraph_node::get (current_function_decl
);
1817 /* Calls to function_section rely on first_function_block_is_cold
1819 first_function_block_is_cold
= (node
1821 == NODE_FREQUENCY_UNLIKELY_EXECUTED
);
1824 in_cold_section_p
= first_function_block_is_cold
;
1827 /* Get the function's name, as described by its RTL. This may be
1828 different from the DECL_NAME name used in the source file. */
1830 get_fnname_from_decl (tree decl
)
1832 rtx x
= DECL_RTL (decl
);
1833 gcc_assert (MEM_P (x
));
1835 gcc_assert (GET_CODE (x
) == SYMBOL_REF
);
1839 /* Output function label, possibly with accompanying metadata. No additional
1840 code or data is output after the label. */
1843 assemble_function_label_raw (FILE *file
, const char *name
)
1845 ASM_OUTPUT_LABEL (file
, name
);
1846 if ((flag_sanitize
& SANITIZE_ADDRESS
)
1847 /* Notify ASAN only about the first function label. */
1848 && (in_cold_section_p
== first_function_block_is_cold
))
1849 asan_function_start ();
1852 /* Output assembler code for the constant pool of a function and associated
1853 with defining the name of the function. DECL describes the function.
1854 NAME is the function's name. For the constant pool, we use the current
1855 constant pool data. */
1858 assemble_start_function (tree decl
, const char *fnname
)
1861 char tmp_label
[100];
1862 bool hot_label_written
= false;
1864 if (crtl
->has_bb_partition
)
1866 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LHOTB", const_labelno
);
1867 crtl
->subsections
.hot_section_label
= ggc_strdup (tmp_label
);
1868 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LCOLDB", const_labelno
);
1869 crtl
->subsections
.cold_section_label
= ggc_strdup (tmp_label
);
1870 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LHOTE", const_labelno
);
1871 crtl
->subsections
.hot_section_end_label
= ggc_strdup (tmp_label
);
1872 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LCOLDE", const_labelno
);
1873 crtl
->subsections
.cold_section_end_label
= ggc_strdup (tmp_label
);
1875 cold_function_name
= NULL_TREE
;
1879 crtl
->subsections
.hot_section_label
= NULL
;
1880 crtl
->subsections
.cold_section_label
= NULL
;
1881 crtl
->subsections
.hot_section_end_label
= NULL
;
1882 crtl
->subsections
.cold_section_end_label
= NULL
;
1885 /* The following code does not need preprocessing in the assembler. */
1889 if (CONSTANT_POOL_BEFORE_FUNCTION
)
1890 output_constant_pool (fnname
, decl
);
1892 align
= symtab_node::get (decl
)->definition_alignment ();
1894 /* Make sure the not and cold text (code) sections are properly
1895 aligned. This is necessary here in the case where the function
1896 has both hot and cold sections, because we don't want to re-set
1897 the alignment when the section switch happens mid-function. */
1899 if (crtl
->has_bb_partition
)
1901 first_function_block_is_cold
= false;
1903 switch_to_section (unlikely_text_section ());
1904 assemble_align (align
);
1905 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.cold_section_label
);
1907 /* When the function starts with a cold section, we need to explicitly
1908 align the hot section and write out the hot section label.
1909 But if the current function is a thunk, we do not have a CFG. */
1911 && BB_PARTITION (ENTRY_BLOCK_PTR_FOR_FN (cfun
)->next_bb
) == BB_COLD_PARTITION
)
1913 switch_to_section (text_section
);
1914 assemble_align (align
);
1915 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.hot_section_label
);
1916 hot_label_written
= true;
1917 first_function_block_is_cold
= true;
1919 in_cold_section_p
= first_function_block_is_cold
;
1923 /* Switch to the correct text section for the start of the function. */
1925 switch_to_section (function_section (decl
), decl
);
1926 if (crtl
->has_bb_partition
&& !hot_label_written
)
1927 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.hot_section_label
);
1929 /* Tell assembler to move to target machine's alignment for functions. */
1930 align
= floor_log2 (align
/ BITS_PER_UNIT
);
1933 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
1936 /* Handle a user-specified function alignment.
1937 Note that we still need to align to DECL_ALIGN, as above,
1938 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1939 if (! DECL_USER_ALIGN (decl
)
1940 && align_functions
.levels
[0].log
> align
1941 && optimize_function_for_speed_p (cfun
))
1943 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1944 int align_log
= align_functions
.levels
[0].log
;
1946 int max_skip
= align_functions
.levels
[0].maxskip
;
1947 if (flag_limit_function_alignment
&& crtl
->max_insn_address
> 0
1948 && max_skip
>= crtl
->max_insn_address
)
1949 max_skip
= crtl
->max_insn_address
- 1;
1951 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1952 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file
, align_log
, max_skip
);
1953 if (max_skip
== align_functions
.levels
[0].maxskip
)
1954 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file
,
1955 align_functions
.levels
[1].log
,
1956 align_functions
.levels
[1].maxskip
);
1958 ASM_OUTPUT_ALIGN (asm_out_file
, align_functions
.levels
[0].log
);
1962 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1963 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file
, fnname
);
1966 if (!DECL_IGNORED_P (decl
))
1967 (*debug_hooks
->begin_function
) (decl
);
1969 /* Make function name accessible from other files, if appropriate. */
1971 if (TREE_PUBLIC (decl
))
1973 notice_global_symbol (decl
);
1975 globalize_decl (decl
);
1977 maybe_assemble_visibility (decl
);
1980 if (DECL_PRESERVE_P (decl
))
1981 targetm
.asm_out
.mark_decl_preserved (fnname
);
1983 unsigned short patch_area_size
= crtl
->patch_area_size
;
1984 unsigned short patch_area_entry
= crtl
->patch_area_entry
;
1986 /* Emit the patching area before the entry label, if any. */
1987 if (patch_area_entry
> 0)
1988 targetm
.asm_out
.print_patchable_function_entry (asm_out_file
,
1989 patch_area_entry
, true);
1991 /* Do any machine/system dependent processing of the function name. */
1992 #ifdef ASM_DECLARE_FUNCTION_NAME
1993 ASM_DECLARE_FUNCTION_NAME (asm_out_file
, fnname
, current_function_decl
);
1995 /* Standard thing is just output label for the function. */
1996 ASM_OUTPUT_FUNCTION_LABEL (asm_out_file
, fnname
, current_function_decl
);
1997 #endif /* ASM_DECLARE_FUNCTION_NAME */
1999 /* And the area after the label. Record it if we haven't done so yet. */
2000 if (patch_area_size
> patch_area_entry
)
2001 targetm
.asm_out
.print_patchable_function_entry (asm_out_file
,
2004 patch_area_entry
== 0);
2006 if (lookup_attribute ("no_split_stack", DECL_ATTRIBUTES (decl
)))
2007 saw_no_split_stack
= true;
2010 /* Output assembler code associated with defining the size of the
2011 function. DECL describes the function. NAME is the function's name. */
2014 assemble_end_function (tree decl
, const char *fnname ATTRIBUTE_UNUSED
)
2016 #ifdef ASM_DECLARE_FUNCTION_SIZE
2017 /* We could have switched section in the middle of the function. */
2018 if (crtl
->has_bb_partition
)
2019 switch_to_section (function_section (decl
));
2020 ASM_DECLARE_FUNCTION_SIZE (asm_out_file
, fnname
, decl
);
2022 if (! CONSTANT_POOL_BEFORE_FUNCTION
)
2024 output_constant_pool (fnname
, decl
);
2025 switch_to_section (function_section (decl
)); /* need to switch back */
2027 /* Output labels for end of hot/cold text sections (to be used by
2029 if (crtl
->has_bb_partition
)
2031 section
*save_text_section
;
2033 save_text_section
= in_section
;
2034 switch_to_section (unlikely_text_section ());
2035 #ifdef ASM_DECLARE_COLD_FUNCTION_SIZE
2036 if (cold_function_name
!= NULL_TREE
)
2037 ASM_DECLARE_COLD_FUNCTION_SIZE (asm_out_file
,
2038 IDENTIFIER_POINTER (cold_function_name
),
2041 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.cold_section_end_label
);
2042 if (first_function_block_is_cold
)
2043 switch_to_section (text_section
);
2045 switch_to_section (function_section (decl
));
2046 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.hot_section_end_label
);
2047 switch_to_section (save_text_section
);
2051 /* Assemble code to leave SIZE bytes of zeros. */
2054 assemble_zeros (unsigned HOST_WIDE_INT size
)
2056 /* Do no output if -fsyntax-only. */
2057 if (flag_syntax_only
)
2060 #ifdef ASM_NO_SKIP_IN_TEXT
2061 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
2062 so we must output 0s explicitly in the text section. */
2063 if (ASM_NO_SKIP_IN_TEXT
&& (in_section
->common
.flags
& SECTION_CODE
) != 0)
2065 unsigned HOST_WIDE_INT i
;
2066 for (i
= 0; i
< size
; i
++)
2067 assemble_integer (const0_rtx
, 1, BITS_PER_UNIT
, 1);
2072 ASM_OUTPUT_SKIP (asm_out_file
, size
);
2075 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
2078 assemble_align (unsigned int align
)
2080 if (align
> BITS_PER_UNIT
)
2082 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
2086 /* Assemble a string constant with the specified C string as contents. */
2089 assemble_string (const char *p
, int size
)
2094 /* If the string is very long, split it up. */
2098 int thissize
= size
- pos
;
2099 if (thissize
> maximum
)
2102 ASM_OUTPUT_ASCII (asm_out_file
, p
, thissize
);
2110 /* A noswitch_section_callback for lcomm_section. */
2113 emit_local (tree decl ATTRIBUTE_UNUSED
,
2114 const char *name ATTRIBUTE_UNUSED
,
2115 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
2116 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
2118 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
2119 unsigned int align
= symtab_node::get (decl
)->definition_alignment ();
2120 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file
, decl
, name
,
2123 #elif defined ASM_OUTPUT_ALIGNED_LOCAL
2124 unsigned int align
= symtab_node::get (decl
)->definition_alignment ();
2125 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file
, name
, size
, align
);
2128 ASM_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
2133 /* A noswitch_section_callback for bss_noswitch_section. */
2135 #if defined ASM_OUTPUT_ALIGNED_BSS
2137 emit_bss (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 ASM_OUTPUT_ALIGNED_BSS (asm_out_file
, decl
, name
, size
,
2143 get_variable_align (decl
));
2148 /* A noswitch_section_callback for comm_section. */
2151 emit_common (tree decl ATTRIBUTE_UNUSED
,
2152 const char *name ATTRIBUTE_UNUSED
,
2153 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
2154 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
2156 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
2157 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file
, decl
, name
,
2158 size
, get_variable_align (decl
));
2160 #elif defined ASM_OUTPUT_ALIGNED_COMMON
2161 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file
, name
, size
,
2162 get_variable_align (decl
));
2165 ASM_OUTPUT_COMMON (asm_out_file
, name
, size
, rounded
);
2170 /* A noswitch_section_callback for tls_comm_section. */
2173 emit_tls_common (tree decl ATTRIBUTE_UNUSED
,
2174 const char *name ATTRIBUTE_UNUSED
,
2175 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
2176 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
2178 #ifdef ASM_OUTPUT_TLS_COMMON
2179 ASM_OUTPUT_TLS_COMMON (asm_out_file
, decl
, name
, size
);
2182 sorry ("thread-local COMMON data not implemented");
2187 /* Assemble DECL given that it belongs in SECTION_NOSWITCH section SECT.
2188 NAME is the name of DECL's SYMBOL_REF. */
2191 assemble_noswitch_variable (tree decl
, const char *name
, section
*sect
,
2194 unsigned HOST_WIDE_INT size
, rounded
;
2196 size
= tree_to_uhwi (DECL_SIZE_UNIT (decl
));
2199 if ((flag_sanitize
& SANITIZE_ADDRESS
) && asan_protect_global (decl
))
2200 size
+= asan_red_zone_size (size
);
2202 /* Don't allocate zero bytes of common,
2203 since that means "undefined external" in the linker. */
2207 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2208 so that each uninitialized object starts on such a boundary. */
2209 rounded
+= (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1;
2210 rounded
= (rounded
/ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
2211 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
2213 if (!sect
->noswitch
.callback (decl
, name
, size
, rounded
)
2214 && (unsigned HOST_WIDE_INT
) (align
/ BITS_PER_UNIT
) > rounded
)
2215 error ("requested alignment for %q+D is greater than "
2216 "implemented alignment of %wu", decl
, rounded
);
2219 /* A subroutine of assemble_variable. Output the label and contents of
2220 DECL, whose address is a SYMBOL_REF with name NAME. DONT_OUTPUT_DATA
2221 is as for assemble_variable. */
2224 assemble_variable_contents (tree decl
, const char *name
,
2225 bool dont_output_data
, bool merge_strings
)
2227 /* Do any machine/system dependent processing of the object. */
2228 #ifdef ASM_DECLARE_OBJECT_NAME
2229 last_assemble_variable_decl
= decl
;
2230 ASM_DECLARE_OBJECT_NAME (asm_out_file
, name
, decl
);
2232 /* Standard thing is just output label for the object. */
2233 ASM_OUTPUT_LABEL (asm_out_file
, name
);
2234 #endif /* ASM_DECLARE_OBJECT_NAME */
2236 if (!dont_output_data
)
2238 /* Caller is supposed to use varpool_get_constructor when it wants
2239 to output the body. */
2240 gcc_assert (!in_lto_p
|| DECL_INITIAL (decl
) != error_mark_node
);
2241 if (DECL_INITIAL (decl
)
2242 && DECL_INITIAL (decl
) != error_mark_node
2243 && !initializer_zerop (DECL_INITIAL (decl
)))
2244 /* Output the actual data. */
2245 output_constant (DECL_INITIAL (decl
),
2246 tree_to_uhwi (DECL_SIZE_UNIT (decl
)),
2247 get_variable_align (decl
),
2248 false, merge_strings
);
2250 /* Leave space for it. */
2251 assemble_zeros (tree_to_uhwi (DECL_SIZE_UNIT (decl
)));
2252 targetm
.asm_out
.decl_end ();
2256 /* Write out assembly for the variable DECL, which is not defined in
2257 the current translation unit. */
2259 assemble_undefined_decl (tree decl
)
2261 const char *name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
2262 targetm
.asm_out
.assemble_undefined_decl (asm_out_file
, name
, decl
);
2265 /* Assemble everything that is needed for a variable or function declaration.
2266 Not used for automatic variables, and not used for function definitions.
2267 Should not be called for variables of incomplete structure type.
2269 TOP_LEVEL is nonzero if this variable has file scope.
2270 AT_END is nonzero if this is the special handling, at end of compilation,
2271 to define things that have had only tentative definitions.
2272 DONT_OUTPUT_DATA if nonzero means don't actually output the
2273 initial value (that will be done by the caller). */
2276 assemble_variable (tree decl
, int top_level ATTRIBUTE_UNUSED
,
2277 int at_end ATTRIBUTE_UNUSED
, int dont_output_data
)
2280 rtx decl_rtl
, symbol
;
2283 bool asan_protected
= false;
2285 /* This function is supposed to handle VARIABLES. Ensure we have one. */
2286 gcc_assert (VAR_P (decl
));
2288 /* Emulated TLS had better not get this far. */
2289 gcc_checking_assert (targetm
.have_tls
|| !DECL_THREAD_LOCAL_P (decl
));
2291 last_assemble_variable_decl
= 0;
2293 /* Normally no need to say anything here for external references,
2294 since assemble_external is called by the language-specific code
2295 when a declaration is first seen. */
2297 if (DECL_EXTERNAL (decl
))
2300 /* Do nothing for global register variables. */
2301 if (DECL_RTL_SET_P (decl
) && REG_P (DECL_RTL (decl
)))
2303 TREE_ASM_WRITTEN (decl
) = 1;
2307 /* If type was incomplete when the variable was declared,
2308 see if it is complete now. */
2310 if (DECL_SIZE (decl
) == 0)
2311 layout_decl (decl
, 0);
2313 /* Still incomplete => don't allocate it; treat the tentative defn
2314 (which is what it must have been) as an `extern' reference. */
2316 if (!dont_output_data
&& DECL_SIZE (decl
) == 0)
2318 error ("storage size of %q+D isn%'t known", decl
);
2319 TREE_ASM_WRITTEN (decl
) = 1;
2323 /* The first declaration of a variable that comes through this function
2324 decides whether it is global (in C, has external linkage)
2325 or local (in C, has internal linkage). So do nothing more
2326 if this function has already run. */
2328 if (TREE_ASM_WRITTEN (decl
))
2331 /* Make sure targetm.encode_section_info is invoked before we set
2333 decl_rtl
= DECL_RTL (decl
);
2335 TREE_ASM_WRITTEN (decl
) = 1;
2337 /* Do no output if -fsyntax-only. */
2338 if (flag_syntax_only
)
2341 if (! dont_output_data
2342 && ! valid_constant_size_p (DECL_SIZE_UNIT (decl
)))
2344 error ("size of variable %q+D is too large", decl
);
2348 gcc_assert (MEM_P (decl_rtl
));
2349 gcc_assert (GET_CODE (XEXP (decl_rtl
, 0)) == SYMBOL_REF
);
2350 symbol
= XEXP (decl_rtl
, 0);
2352 /* If this symbol belongs to the tree constant pool, output the constant
2353 if it hasn't already been written. */
2354 if (TREE_CONSTANT_POOL_ADDRESS_P (symbol
))
2356 tree decl
= SYMBOL_REF_DECL (symbol
);
2357 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl
)))
2358 output_constant_def_contents (symbol
);
2364 name
= XSTR (symbol
, 0);
2365 if (TREE_PUBLIC (decl
) && DECL_NAME (decl
))
2366 notice_global_symbol (decl
);
2368 /* Compute the alignment of this data. */
2370 align_variable (decl
, dont_output_data
);
2372 if ((flag_sanitize
& SANITIZE_ADDRESS
)
2373 && asan_protect_global (decl
))
2375 asan_protected
= true;
2376 SET_DECL_ALIGN (decl
, MAX (DECL_ALIGN (decl
),
2377 ASAN_RED_ZONE_SIZE
* BITS_PER_UNIT
));
2380 set_mem_align (decl_rtl
, DECL_ALIGN (decl
));
2382 align
= get_variable_align (decl
);
2384 if (TREE_PUBLIC (decl
))
2385 maybe_assemble_visibility (decl
);
2387 if (DECL_PRESERVE_P (decl
))
2388 targetm
.asm_out
.mark_decl_preserved (name
);
2390 /* First make the assembler name(s) global if appropriate. */
2391 sect
= get_variable_section (decl
, false);
2392 if (TREE_PUBLIC (decl
)
2393 && (sect
->common
.flags
& SECTION_COMMON
) == 0)
2394 globalize_decl (decl
);
2396 /* Output any data that we will need to use the address of. */
2397 if (DECL_INITIAL (decl
) && DECL_INITIAL (decl
) != error_mark_node
)
2398 output_addressed_constants (DECL_INITIAL (decl
), 0);
2400 /* dbxout.cc needs to know this. */
2401 if (sect
&& (sect
->common
.flags
& SECTION_CODE
) != 0)
2402 DECL_IN_TEXT_SECTION (decl
) = 1;
2404 /* If the decl is part of an object_block, make sure that the decl
2405 has been positioned within its block, but do not write out its
2406 definition yet. output_object_blocks will do that later. */
2407 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol
) && SYMBOL_REF_BLOCK (symbol
))
2409 gcc_assert (!dont_output_data
);
2410 place_block_symbol (symbol
);
2412 else if (SECTION_STYLE (sect
) == SECTION_NOSWITCH
)
2413 assemble_noswitch_variable (decl
, name
, sect
, align
);
2416 /* Special-case handling of vtv comdat sections. */
2417 if (SECTION_STYLE (sect
) == SECTION_NAMED
2418 && (strcmp (sect
->named
.name
, ".vtable_map_vars") == 0))
2419 handle_vtv_comdat_section (sect
, decl
);
2421 switch_to_section (sect
, decl
);
2422 if (align
> BITS_PER_UNIT
)
2423 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
2424 assemble_variable_contents (decl
, name
, dont_output_data
,
2425 (sect
->common
.flags
& SECTION_MERGE
)
2426 && (sect
->common
.flags
& SECTION_STRINGS
));
2429 unsigned HOST_WIDE_INT
int size
2430 = tree_to_uhwi (DECL_SIZE_UNIT (decl
));
2431 assemble_zeros (asan_red_zone_size (size
));
2436 /* Return true if type TYPE contains any pointers. */
2439 contains_pointers_p (tree type
)
2441 switch (TREE_CODE (type
))
2444 case REFERENCE_TYPE
:
2445 /* I'm not sure whether OFFSET_TYPE needs this treatment,
2446 so I'll play safe and return 1. */
2452 case QUAL_UNION_TYPE
:
2455 /* For a type that has fields, see if the fields have pointers. */
2456 for (fields
= TYPE_FIELDS (type
); fields
; fields
= DECL_CHAIN (fields
))
2457 if (TREE_CODE (fields
) == FIELD_DECL
2458 && contains_pointers_p (TREE_TYPE (fields
)))
2464 /* An array type contains pointers if its element type does. */
2465 return contains_pointers_p (TREE_TYPE (type
));
2472 /* We delay assemble_external processing until
2473 the compilation unit is finalized. This is the best we can do for
2474 right now (i.e. stage 3 of GCC 4.0) - the right thing is to delay
2475 it all the way to final. See PR 17982 for further discussion. */
2476 static GTY(()) tree pending_assemble_externals
;
2478 /* A similar list of pending libcall symbols. We only want to declare
2479 symbols that are actually used in the final assembly. */
2480 static GTY(()) rtx pending_libcall_symbols
;
2482 #ifdef ASM_OUTPUT_EXTERNAL
2483 /* Some targets delay some output to final using TARGET_ASM_FILE_END.
2484 As a result, assemble_external can be called after the list of externals
2485 is processed and the pointer set destroyed. */
2486 static bool pending_assemble_externals_processed
;
2488 /* Avoid O(external_decls**2) lookups in the pending_assemble_externals
2489 TREE_LIST in assemble_external. */
2490 static hash_set
<tree
> *pending_assemble_externals_set
;
2492 /* True if DECL is a function decl for which no out-of-line copy exists.
2493 It is assumed that DECL's assembler name has been set. */
2496 incorporeal_function_p (tree decl
)
2498 if (TREE_CODE (decl
) == FUNCTION_DECL
&& fndecl_built_in_p (decl
))
2502 if (DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
2503 && ALLOCA_FUNCTION_CODE_P (DECL_FUNCTION_CODE (decl
)))
2506 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
2507 /* Atomic or sync builtins which have survived this far will be
2508 resolved externally and therefore are not incorporeal. */
2509 if (startswith (name
, "__builtin_"))
2515 /* Actually do the tests to determine if this is necessary, and invoke
2516 ASM_OUTPUT_EXTERNAL. */
2518 assemble_external_real (tree decl
)
2520 rtx rtl
= DECL_RTL (decl
);
2522 if (MEM_P (rtl
) && GET_CODE (XEXP (rtl
, 0)) == SYMBOL_REF
2523 && !SYMBOL_REF_USED (XEXP (rtl
, 0))
2524 && !incorporeal_function_p (decl
))
2526 /* Some systems do require some output. */
2527 SYMBOL_REF_USED (XEXP (rtl
, 0)) = 1;
2528 ASM_OUTPUT_EXTERNAL (asm_out_file
, decl
, XSTR (XEXP (rtl
, 0), 0));
2534 process_pending_assemble_externals (void)
2536 #ifdef ASM_OUTPUT_EXTERNAL
2538 for (list
= pending_assemble_externals
; list
; list
= TREE_CHAIN (list
))
2539 assemble_external_real (TREE_VALUE (list
));
2541 for (rtx list
= pending_libcall_symbols
; list
; list
= XEXP (list
, 1))
2543 rtx symbol
= XEXP (list
, 0);
2544 tree id
= get_identifier (XSTR (symbol
, 0));
2545 if (TREE_SYMBOL_REFERENCED (id
))
2546 targetm
.asm_out
.external_libcall (symbol
);
2549 pending_assemble_externals
= 0;
2550 pending_assemble_externals_processed
= true;
2551 pending_libcall_symbols
= NULL_RTX
;
2552 delete pending_assemble_externals_set
;
2556 /* This TREE_LIST contains any weak symbol declarations waiting
2558 static GTY(()) tree weak_decls
;
2560 /* Output something to declare an external symbol to the assembler,
2561 and qualifiers such as weakness. (Most assemblers don't need
2562 extern declaration, so we normally output nothing.) Do nothing if
2563 DECL is not external. */
2566 assemble_external (tree decl ATTRIBUTE_UNUSED
)
2568 /* Make sure that the ASM_OUT_FILE is open.
2569 If it's not, we should not be calling this function. */
2570 gcc_assert (asm_out_file
);
2572 /* In a perfect world, the following condition would be true.
2573 Sadly, the Go front end emit assembly *from the front end*,
2574 bypassing the call graph. See PR52739. Fix before GCC 4.8. */
2576 /* This function should only be called if we are expanding, or have
2578 Ideally, only final.cc would be calling this function, but it is
2579 not clear whether that would break things somehow. See PR 17982
2580 for further discussion. */
2581 gcc_assert (state
== EXPANSION
2582 || state
== FINISHED
);
2585 if (!DECL_P (decl
) || !DECL_EXTERNAL (decl
) || !TREE_PUBLIC (decl
))
2588 /* We want to output annotation for weak and external symbols at
2589 very last to check if they are references or not. */
2591 if (TARGET_SUPPORTS_WEAK
2593 /* TREE_STATIC is a weird and abused creature which is not
2594 generally the right test for whether an entity has been
2595 locally emitted, inlined or otherwise not-really-extern, but
2596 for declarations that can be weak, it happens to be
2598 && !TREE_STATIC (decl
)
2599 && lookup_attribute ("weak", DECL_ATTRIBUTES (decl
))
2600 && value_member (decl
, weak_decls
) == NULL_TREE
)
2601 weak_decls
= tree_cons (NULL
, decl
, weak_decls
);
2603 #ifdef ASM_OUTPUT_EXTERNAL
2604 if (pending_assemble_externals_processed
)
2606 assemble_external_real (decl
);
2610 if (! pending_assemble_externals_set
->add (decl
))
2611 pending_assemble_externals
= tree_cons (NULL
, decl
,
2612 pending_assemble_externals
);
2616 /* Similar, for calling a library function FUN. */
2619 assemble_external_libcall (rtx fun
)
2621 /* Declare library function name external when first used, if nec. */
2622 if (! SYMBOL_REF_USED (fun
))
2624 #ifdef ASM_OUTPUT_EXTERNAL
2625 gcc_assert (!pending_assemble_externals_processed
);
2627 SYMBOL_REF_USED (fun
) = 1;
2628 /* Make sure the libcall symbol is in the symtab so any
2629 reference to it will mark its tree node as referenced, via
2630 assemble_name_resolve. These are eventually emitted, if
2631 used, in process_pending_assemble_externals. */
2632 get_identifier (XSTR (fun
, 0));
2633 pending_libcall_symbols
= gen_rtx_EXPR_LIST (VOIDmode
, fun
,
2634 pending_libcall_symbols
);
2638 /* Assemble a label named NAME. */
2641 assemble_label (FILE *file
, const char *name
)
2643 ASM_OUTPUT_LABEL (file
, name
);
2646 /* Set the symbol_referenced flag for ID. */
2648 mark_referenced (tree id
)
2650 TREE_SYMBOL_REFERENCED (id
) = 1;
2653 /* Set the symbol_referenced flag for DECL and notify callgraph. */
2655 mark_decl_referenced (tree decl
)
2657 if (TREE_CODE (decl
) == FUNCTION_DECL
)
2659 /* Extern inline functions don't become needed when referenced.
2660 If we know a method will be emitted in other TU and no new
2661 functions can be marked reachable, just use the external
2663 struct cgraph_node
*node
= cgraph_node::get_create (decl
);
2664 if (!DECL_EXTERNAL (decl
)
2665 && !node
->definition
)
2666 node
->mark_force_output ();
2668 else if (VAR_P (decl
))
2670 varpool_node
*node
= varpool_node::get_create (decl
);
2671 /* C++ frontend use mark_decl_references to force COMDAT variables
2672 to be output that might appear dead otherwise. */
2673 node
->force_output
= true;
2675 /* else do nothing - we can get various sorts of CST nodes here,
2676 which do not need to be marked. */
2680 /* Output to FILE (an assembly file) a reference to NAME. If NAME
2681 starts with a *, the rest of NAME is output verbatim. Otherwise
2682 NAME is transformed in a target-specific way (usually by the
2683 addition of an underscore). */
2686 assemble_name_raw (FILE *file
, const char *name
)
2689 fputs (&name
[1], file
);
2691 ASM_OUTPUT_LABELREF (file
, name
);
2694 /* Return NAME that should actually be emitted, looking through
2695 transparent aliases. If NAME refers to an entity that is also
2696 represented as a tree (like a function or variable), mark the entity
2699 assemble_name_resolve (const char *name
)
2701 const char *real_name
= targetm
.strip_name_encoding (name
);
2702 tree id
= maybe_get_identifier (real_name
);
2708 mark_referenced (id
);
2709 ultimate_transparent_alias_target (&id
);
2711 name
= IDENTIFIER_POINTER (id
);
2712 gcc_assert (! TREE_CHAIN (id
));
2718 /* Like assemble_name_raw, but should be used when NAME might refer to
2719 an entity that is also represented as a tree (like a function or
2720 variable). If NAME does refer to such an entity, that entity will
2721 be marked as referenced. */
2724 assemble_name (FILE *file
, const char *name
)
2726 assemble_name_raw (file
, assemble_name_resolve (name
));
2729 /* Allocate SIZE bytes writable static space with a gensym name
2730 and return an RTX to refer to its address. */
2733 assemble_static_space (unsigned HOST_WIDE_INT size
)
2736 const char *namestring
;
2739 ASM_GENERATE_INTERNAL_LABEL (name
, "LF", const_labelno
);
2741 namestring
= ggc_strdup (name
);
2743 x
= gen_rtx_SYMBOL_REF (Pmode
, namestring
);
2744 SYMBOL_REF_FLAGS (x
) = SYMBOL_FLAG_LOCAL
;
2746 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
2747 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file
, NULL_TREE
, name
, size
,
2750 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
2751 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file
, name
, size
, BIGGEST_ALIGNMENT
);
2754 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2755 so that each uninitialized object starts on such a boundary. */
2756 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
2757 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
2758 = ((size
+ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1)
2759 / (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
2760 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
2761 ASM_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
2768 /* Assemble the static constant template for function entry trampolines.
2769 This is done at most once per compilation.
2770 Returns an RTX for the address of the template. */
2772 static GTY(()) rtx initial_trampoline
;
2775 assemble_trampoline_template (void)
2782 gcc_assert (targetm
.asm_out
.trampoline_template
!= NULL
);
2784 if (initial_trampoline
)
2785 return initial_trampoline
;
2787 /* By default, put trampoline templates in read-only data section. */
2789 #ifdef TRAMPOLINE_SECTION
2790 switch_to_section (TRAMPOLINE_SECTION
);
2792 switch_to_section (readonly_data_section
);
2795 /* Write the assembler code to define one. */
2796 align
= floor_log2 (TRAMPOLINE_ALIGNMENT
/ BITS_PER_UNIT
);
2798 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
2800 targetm
.asm_out
.internal_label (asm_out_file
, "LTRAMP", 0);
2801 targetm
.asm_out
.trampoline_template (asm_out_file
);
2803 /* Record the rtl to refer to it. */
2804 ASM_GENERATE_INTERNAL_LABEL (label
, "LTRAMP", 0);
2805 name
= ggc_strdup (label
);
2806 symbol
= gen_rtx_SYMBOL_REF (Pmode
, name
);
2807 SYMBOL_REF_FLAGS (symbol
) = SYMBOL_FLAG_LOCAL
;
2809 initial_trampoline
= gen_const_mem (BLKmode
, symbol
);
2810 set_mem_align (initial_trampoline
, TRAMPOLINE_ALIGNMENT
);
2811 set_mem_size (initial_trampoline
, TRAMPOLINE_SIZE
);
2813 return initial_trampoline
;
2816 /* A and B are either alignments or offsets. Return the minimum alignment
2817 that may be assumed after adding the two together. */
2819 static inline unsigned
2820 min_align (unsigned int a
, unsigned int b
)
2822 return least_bit_hwi (a
| b
);
2825 /* Return the assembler directive for creating a given kind of integer
2826 object. SIZE is the number of bytes in the object and ALIGNED_P
2827 indicates whether it is known to be aligned. Return NULL if the
2828 assembly dialect has no such directive.
2830 The returned string should be printed at the start of a new line and
2831 be followed immediately by the object's initial value. */
2834 integer_asm_op (int size
, int aligned_p
)
2836 struct asm_int_op
*ops
;
2839 ops
= &targetm
.asm_out
.aligned_op
;
2841 ops
= &targetm
.asm_out
.unaligned_op
;
2846 return targetm
.asm_out
.byte_op
;
2874 /* Use directive OP to assemble an integer object X. Print OP at the
2875 start of the line, followed immediately by the value of X. */
2878 assemble_integer_with_op (const char *op
, rtx x
)
2880 fputs (op
, asm_out_file
);
2881 output_addr_const (asm_out_file
, x
);
2882 fputc ('\n', asm_out_file
);
2885 /* The default implementation of the asm_out.integer target hook. */
2888 default_assemble_integer (rtx x ATTRIBUTE_UNUSED
,
2889 unsigned int size ATTRIBUTE_UNUSED
,
2890 int aligned_p ATTRIBUTE_UNUSED
)
2892 const char *op
= integer_asm_op (size
, aligned_p
);
2893 /* Avoid GAS bugs for large values. Specifically negative values whose
2894 absolute value fits in a bfd_vma, but not in a bfd_signed_vma. */
2895 if (size
> UNITS_PER_WORD
&& size
> POINTER_SIZE_UNITS
)
2897 return op
&& (assemble_integer_with_op (op
, x
), true);
2900 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
2901 the alignment of the integer in bits. Return 1 if we were able to output
2902 the constant, otherwise 0. We must be able to output the constant,
2903 if FORCE is nonzero. */
2906 assemble_integer (rtx x
, unsigned int size
, unsigned int align
, int force
)
2910 aligned_p
= (align
>= MIN (size
* BITS_PER_UNIT
, BIGGEST_ALIGNMENT
));
2912 /* See if the target hook can handle this kind of object. */
2913 if (targetm
.asm_out
.integer (x
, size
, aligned_p
))
2916 /* If the object is a multi-byte one, try splitting it up. Split
2917 it into words it if is multi-word, otherwise split it into bytes. */
2920 machine_mode omode
, imode
;
2921 unsigned int subalign
;
2922 unsigned int subsize
, i
;
2923 enum mode_class mclass
;
2925 subsize
= size
> UNITS_PER_WORD
? UNITS_PER_WORD
: 1;
2926 subalign
= MIN (align
, subsize
* BITS_PER_UNIT
);
2927 if (GET_CODE (x
) == CONST_FIXED
)
2928 mclass
= GET_MODE_CLASS (GET_MODE (x
));
2932 omode
= mode_for_size (subsize
* BITS_PER_UNIT
, mclass
, 0).require ();
2933 imode
= mode_for_size (size
* BITS_PER_UNIT
, mclass
, 0).require ();
2935 for (i
= 0; i
< size
; i
+= subsize
)
2937 rtx partial
= simplify_subreg (omode
, x
, imode
, i
);
2938 if (!partial
|| !assemble_integer (partial
, subsize
, subalign
, 0))
2944 /* If we've printed some of it, but not all of it, there's no going
2949 gcc_assert (!force
);
2954 /* Assemble the floating-point constant D into an object of size MODE. ALIGN
2955 is the alignment of the constant in bits. If REVERSE is true, D is output
2956 in reverse storage order. */
2959 assemble_real (REAL_VALUE_TYPE d
, scalar_float_mode mode
, unsigned int align
,
2962 long data
[4] = {0, 0, 0, 0};
2963 int bitsize
, nelts
, nunits
, units_per
;
2966 /* This is hairy. We have a quantity of known size. real_to_target
2967 will put it into an array of *host* longs, 32 bits per element
2968 (even if long is more than 32 bits). We need to determine the
2969 number of array elements that are occupied (nelts) and the number
2970 of *target* min-addressable units that will be occupied in the
2971 object file (nunits). We cannot assume that 32 divides the
2972 mode's bitsize (size * BITS_PER_UNIT) evenly.
2974 size * BITS_PER_UNIT is used here to make sure that padding bits
2975 (which might appear at either end of the value; real_to_target
2976 will include the padding bits in its output array) are included. */
2978 nunits
= GET_MODE_SIZE (mode
);
2979 bitsize
= nunits
* BITS_PER_UNIT
;
2980 nelts
= CEIL (bitsize
, 32);
2981 units_per
= 32 / BITS_PER_UNIT
;
2983 real_to_target (data
, &d
, mode
);
2985 /* Put out the first word with the specified alignment. */
2986 unsigned int chunk_nunits
= MIN (nunits
, units_per
);
2988 elt
= flip_storage_order (SImode
, gen_int_mode (data
[nelts
- 1], SImode
));
2990 elt
= GEN_INT (sext_hwi (data
[0], chunk_nunits
* BITS_PER_UNIT
));
2991 assemble_integer (elt
, chunk_nunits
, align
, 1);
2992 nunits
-= chunk_nunits
;
2994 /* Subsequent words need only 32-bit alignment. */
2995 align
= min_align (align
, 32);
2997 for (int i
= 1; i
< nelts
; i
++)
2999 chunk_nunits
= MIN (nunits
, units_per
);
3001 elt
= flip_storage_order (SImode
,
3002 gen_int_mode (data
[nelts
- 1 - i
], SImode
));
3004 elt
= GEN_INT (sext_hwi (data
[i
], chunk_nunits
* BITS_PER_UNIT
));
3005 assemble_integer (elt
, chunk_nunits
, align
, 1);
3006 nunits
-= chunk_nunits
;
3010 /* Given an expression EXP with a constant value,
3011 reduce it to the sum of an assembler symbol and an integer.
3012 Store them both in the structure *VALUE.
3013 EXP must be reducible. */
3022 decode_addr_const (tree exp
, class addr_const
*value
)
3024 tree target
= TREE_OPERAND (exp
, 0);
3025 poly_int64 offset
= 0;
3031 if (TREE_CODE (target
) == COMPONENT_REF
3032 && poly_int_tree_p (byte_position (TREE_OPERAND (target
, 1)),
3036 target
= TREE_OPERAND (target
, 0);
3038 else if (TREE_CODE (target
) == ARRAY_REF
3039 || TREE_CODE (target
) == ARRAY_RANGE_REF
)
3041 /* Truncate big offset. */
3043 += (TREE_INT_CST_LOW (TYPE_SIZE_UNIT (TREE_TYPE (target
)))
3044 * wi::to_poly_widest (TREE_OPERAND (target
, 1)).force_shwi ());
3045 target
= TREE_OPERAND (target
, 0);
3047 else if (TREE_CODE (target
) == MEM_REF
3048 && TREE_CODE (TREE_OPERAND (target
, 0)) == ADDR_EXPR
)
3050 offset
+= mem_ref_offset (target
).force_shwi ();
3051 target
= TREE_OPERAND (TREE_OPERAND (target
, 0), 0);
3053 else if (INDIRECT_REF_P (target
)
3054 && TREE_CODE (TREE_OPERAND (target
, 0)) == NOP_EXPR
3055 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (target
, 0), 0))
3057 target
= TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (target
, 0), 0), 0);
3062 switch (TREE_CODE (target
))
3066 x
= DECL_RTL (target
);
3070 x
= gen_rtx_MEM (FUNCTION_MODE
,
3071 gen_rtx_LABEL_REF (Pmode
, force_label_rtx (target
)));
3080 x
= lookup_constant_def (target
);
3081 /* Should have been added by output_addressed_constants. */
3086 /* This deals with absolute addresses. */
3087 offset
+= tree_to_shwi (TREE_OPERAND (target
, 0));
3088 x
= gen_rtx_MEM (QImode
,
3089 gen_rtx_SYMBOL_REF (Pmode
, "origin of addresses"));
3092 case COMPOUND_LITERAL_EXPR
:
3093 gcc_assert (COMPOUND_LITERAL_EXPR_DECL (target
));
3094 x
= DECL_RTL (COMPOUND_LITERAL_EXPR_DECL (target
));
3101 gcc_assert (MEM_P (x
));
3105 value
->offset
= offset
;
3108 static GTY(()) hash_table
<tree_descriptor_hasher
> *const_desc_htab
;
3110 static void maybe_output_constant_def_contents (struct constant_descriptor_tree
*, int);
3112 /* Constant pool accessor function. */
3114 hash_table
<tree_descriptor_hasher
> *
3115 constant_pool_htab (void)
3117 return const_desc_htab
;
3120 /* Compute a hash code for a constant expression. */
3123 tree_descriptor_hasher::hash (constant_descriptor_tree
*ptr
)
3129 const_hash_1 (const tree exp
)
3134 enum tree_code code
= TREE_CODE (exp
);
3136 /* Either set P and LEN to the address and len of something to hash and
3137 exit the switch or return a value. */
3142 p
= (char *) &TREE_INT_CST_ELT (exp
, 0);
3143 len
= TREE_INT_CST_NUNITS (exp
) * sizeof (HOST_WIDE_INT
);
3147 return real_hash (TREE_REAL_CST_PTR (exp
));
3150 return fixed_hash (TREE_FIXED_CST_PTR (exp
));
3153 p
= TREE_STRING_POINTER (exp
);
3154 len
= TREE_STRING_LENGTH (exp
);
3158 return (const_hash_1 (TREE_REALPART (exp
)) * 5
3159 + const_hash_1 (TREE_IMAGPART (exp
)));
3163 hi
= 7 + VECTOR_CST_NPATTERNS (exp
);
3164 hi
= hi
* 563 + VECTOR_CST_NELTS_PER_PATTERN (exp
);
3165 unsigned int count
= vector_cst_encoded_nelts (exp
);
3166 for (unsigned int i
= 0; i
< count
; ++i
)
3167 hi
= hi
* 563 + const_hash_1 (VECTOR_CST_ENCODED_ELT (exp
, i
));
3173 unsigned HOST_WIDE_INT idx
;
3176 hi
= 5 + int_size_in_bytes (TREE_TYPE (exp
));
3178 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, value
)
3180 hi
= hi
* 603 + const_hash_1 (value
);
3186 if (CONSTANT_CLASS_P (TREE_OPERAND (exp
, 0)))
3187 return const_hash_1 (TREE_OPERAND (exp
, 0));
3192 class addr_const value
;
3194 decode_addr_const (exp
, &value
);
3195 switch (GET_CODE (value
.base
))
3198 /* Don't hash the address of the SYMBOL_REF;
3199 only use the offset and the symbol name. */
3200 hi
= value
.offset
.coeffs
[0];
3201 p
= XSTR (value
.base
, 0);
3202 for (i
= 0; p
[i
] != 0; i
++)
3203 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
3207 hi
= (value
.offset
.coeffs
[0]
3208 + CODE_LABEL_NUMBER (label_ref_label (value
.base
)) * 13);
3218 case POINTER_PLUS_EXPR
:
3220 return (const_hash_1 (TREE_OPERAND (exp
, 0)) * 9
3221 + const_hash_1 (TREE_OPERAND (exp
, 1)));
3224 return const_hash_1 (TREE_OPERAND (exp
, 0)) * 7 + 2;
3227 /* A language specific constant. Just hash the code. */
3231 /* Compute hashing function. */
3233 for (i
= 0; i
< len
; i
++)
3234 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
3239 /* Wrapper of compare_constant, for the htab interface. */
3241 tree_descriptor_hasher::equal (constant_descriptor_tree
*c1
,
3242 constant_descriptor_tree
*c2
)
3244 if (c1
->hash
!= c2
->hash
)
3246 return compare_constant (c1
->value
, c2
->value
);
3249 /* Compare t1 and t2, and return true only if they are known to result in
3250 the same bit pattern on output. */
3253 compare_constant (const tree t1
, const tree t2
)
3255 enum tree_code typecode
;
3257 if (t1
== NULL_TREE
)
3258 return t2
== NULL_TREE
;
3259 if (t2
== NULL_TREE
)
3262 if (TREE_CODE (t1
) != TREE_CODE (t2
))
3265 switch (TREE_CODE (t1
))
3268 /* Integer constants are the same only if the same width of type. */
3269 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
3271 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
)))
3273 return tree_int_cst_equal (t1
, t2
);
3276 /* Real constants are the same only if the same width of type. In
3277 addition to the same width, we need to check whether the modes are the
3278 same. There might be two floating point modes that are the same size
3279 but have different representations, such as the PowerPC that has 2
3280 different 128-bit floating point types (IBM extended double and IEEE
3281 128-bit floating point). */
3282 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
3284 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
)))
3286 return real_identical (&TREE_REAL_CST (t1
), &TREE_REAL_CST (t2
));
3289 /* Fixed constants are the same only if the same width of type. */
3290 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
3293 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1
), TREE_FIXED_CST (t2
));
3296 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
))
3297 || int_size_in_bytes (TREE_TYPE (t1
))
3298 != int_size_in_bytes (TREE_TYPE (t2
)))
3301 return (TREE_STRING_LENGTH (t1
) == TREE_STRING_LENGTH (t2
)
3302 && ! memcmp (TREE_STRING_POINTER (t1
), TREE_STRING_POINTER (t2
),
3303 TREE_STRING_LENGTH (t1
)));
3306 return (compare_constant (TREE_REALPART (t1
), TREE_REALPART (t2
))
3307 && compare_constant (TREE_IMAGPART (t1
), TREE_IMAGPART (t2
)));
3311 if (VECTOR_CST_NPATTERNS (t1
)
3312 != VECTOR_CST_NPATTERNS (t2
))
3315 if (VECTOR_CST_NELTS_PER_PATTERN (t1
)
3316 != VECTOR_CST_NELTS_PER_PATTERN (t2
))
3319 unsigned int count
= vector_cst_encoded_nelts (t1
);
3320 for (unsigned int i
= 0; i
< count
; ++i
)
3321 if (!compare_constant (VECTOR_CST_ENCODED_ELT (t1
, i
),
3322 VECTOR_CST_ENCODED_ELT (t2
, i
)))
3330 vec
<constructor_elt
, va_gc
> *v1
, *v2
;
3331 unsigned HOST_WIDE_INT idx
;
3333 typecode
= TREE_CODE (TREE_TYPE (t1
));
3334 if (typecode
!= TREE_CODE (TREE_TYPE (t2
)))
3337 if (typecode
== ARRAY_TYPE
)
3339 HOST_WIDE_INT size_1
= int_size_in_bytes (TREE_TYPE (t1
));
3340 /* For arrays, check that mode, size and storage order match. */
3341 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
))
3343 || size_1
!= int_size_in_bytes (TREE_TYPE (t2
))
3344 || TYPE_REVERSE_STORAGE_ORDER (TREE_TYPE (t1
))
3345 != TYPE_REVERSE_STORAGE_ORDER (TREE_TYPE (t2
)))
3350 /* For record and union constructors, require exact type
3352 if (TREE_TYPE (t1
) != TREE_TYPE (t2
))
3356 v1
= CONSTRUCTOR_ELTS (t1
);
3357 v2
= CONSTRUCTOR_ELTS (t2
);
3358 if (vec_safe_length (v1
) != vec_safe_length (v2
))
3361 for (idx
= 0; idx
< vec_safe_length (v1
); ++idx
)
3363 constructor_elt
*c1
= &(*v1
)[idx
];
3364 constructor_elt
*c2
= &(*v2
)[idx
];
3366 /* Check that each value is the same... */
3367 if (!compare_constant (c1
->value
, c2
->value
))
3369 /* ... and that they apply to the same fields! */
3370 if (typecode
== ARRAY_TYPE
)
3372 if (!compare_constant (c1
->index
, c2
->index
))
3377 if (c1
->index
!= c2
->index
)
3388 class addr_const value1
, value2
;
3392 decode_addr_const (t1
, &value1
);
3393 decode_addr_const (t2
, &value2
);
3395 if (maybe_ne (value1
.offset
, value2
.offset
))
3398 code
= GET_CODE (value1
.base
);
3399 if (code
!= GET_CODE (value2
.base
))
3405 ret
= (strcmp (XSTR (value1
.base
, 0), XSTR (value2
.base
, 0)) == 0);
3409 ret
= (CODE_LABEL_NUMBER (label_ref_label (value1
.base
))
3410 == CODE_LABEL_NUMBER (label_ref_label (value2
.base
)));
3420 case POINTER_PLUS_EXPR
:
3423 return (compare_constant (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0))
3424 && compare_constant (TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1)));
3427 case VIEW_CONVERT_EXPR
:
3428 return compare_constant (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
3435 /* Return the section into which constant EXP should be placed. */
3438 get_constant_section (tree exp
, unsigned int align
)
3440 return targetm
.asm_out
.select_section (exp
,
3441 compute_reloc_for_constant (exp
),
3445 /* Return the size of constant EXP in bytes. */
3447 static HOST_WIDE_INT
3448 get_constant_size (tree exp
)
3452 size
= int_size_in_bytes (TREE_TYPE (exp
));
3453 gcc_checking_assert (size
>= 0);
3454 gcc_checking_assert (TREE_CODE (exp
) != STRING_CST
3455 || size
>= TREE_STRING_LENGTH (exp
));
3459 /* Subroutine of output_constant_def:
3460 No constant equal to EXP is known to have been output.
3461 Make a constant descriptor to enter EXP in the hash table.
3462 Assign the label number and construct RTL to refer to the
3463 constant's location in memory.
3464 Caller is responsible for updating the hash table. */
3466 static struct constant_descriptor_tree
*
3467 build_constant_desc (tree exp
)
3469 struct constant_descriptor_tree
*desc
;
3475 desc
= ggc_alloc
<constant_descriptor_tree
> ();
3478 /* Create a string containing the label name, in LABEL. */
3479 labelno
= const_labelno
++;
3480 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", labelno
);
3482 /* Construct the VAR_DECL associated with the constant. */
3483 decl
= build_decl (UNKNOWN_LOCATION
, VAR_DECL
, get_identifier (label
),
3485 DECL_ARTIFICIAL (decl
) = 1;
3486 DECL_IGNORED_P (decl
) = 1;
3487 TREE_READONLY (decl
) = 1;
3488 TREE_STATIC (decl
) = 1;
3489 TREE_ADDRESSABLE (decl
) = 1;
3490 /* We don't set the RTL yet as this would cause varpool to assume that the
3491 variable is referenced. Moreover, it would just be dropped in LTO mode.
3492 Instead we set the flag that will be recognized in make_decl_rtl. */
3493 DECL_IN_CONSTANT_POOL (decl
) = 1;
3494 DECL_INITIAL (decl
) = desc
->value
;
3495 /* ??? targetm.constant_alignment hasn't been updated for vector types on
3496 most architectures so use DATA_ALIGNMENT as well, except for strings. */
3497 if (TREE_CODE (exp
) == STRING_CST
)
3498 SET_DECL_ALIGN (decl
, targetm
.constant_alignment (exp
, DECL_ALIGN (decl
)));
3501 align_variable (decl
, 0);
3502 if (DECL_ALIGN (decl
) < GET_MODE_ALIGNMENT (DECL_MODE (decl
))
3503 && ((optab_handler (movmisalign_optab
, DECL_MODE (decl
))
3504 != CODE_FOR_nothing
)
3505 || targetm
.slow_unaligned_access (DECL_MODE (decl
),
3506 DECL_ALIGN (decl
))))
3507 SET_DECL_ALIGN (decl
, GET_MODE_ALIGNMENT (DECL_MODE (decl
)));
3510 /* Now construct the SYMBOL_REF and the MEM. */
3511 if (use_object_blocks_p ())
3513 int align
= (TREE_CODE (decl
) == CONST_DECL
3514 || (VAR_P (decl
) && DECL_IN_CONSTANT_POOL (decl
))
3516 : symtab_node::get (decl
)->definition_alignment ());
3517 section
*sect
= get_constant_section (exp
, align
);
3518 symbol
= create_block_symbol (ggc_strdup (label
),
3519 get_block_for_section (sect
), -1);
3522 symbol
= gen_rtx_SYMBOL_REF (Pmode
, ggc_strdup (label
));
3523 SYMBOL_REF_FLAGS (symbol
) |= SYMBOL_FLAG_LOCAL
;
3524 SET_SYMBOL_REF_DECL (symbol
, decl
);
3525 TREE_CONSTANT_POOL_ADDRESS_P (symbol
) = 1;
3527 rtl
= gen_const_mem (TYPE_MODE (TREE_TYPE (exp
)), symbol
);
3528 set_mem_alias_set (rtl
, 0);
3530 /* Putting EXP into the literal pool might have imposed a different
3531 alignment which should be visible in the RTX as well. */
3532 set_mem_align (rtl
, DECL_ALIGN (decl
));
3534 /* We cannot share RTX'es in pool entries.
3535 Mark this piece of RTL as required for unsharing. */
3536 RTX_FLAG (rtl
, used
) = 1;
3538 /* Set flags or add text to the name to record information, such as
3539 that it is a local symbol. If the name is changed, the macro
3540 ASM_OUTPUT_LABELREF will have to know how to strip this
3541 information. This call might invalidate our local variable
3542 SYMBOL; we can't use it afterward. */
3543 targetm
.encode_section_info (exp
, rtl
, true);
3550 /* Subroutine of output_constant_def and tree_output_constant_def:
3551 Add a constant to the hash table that tracks which constants
3552 already have labels. */
3554 static constant_descriptor_tree
*
3555 add_constant_to_table (tree exp
, int defer
)
3557 /* The hash table methods may call output_constant_def for addressed
3558 constants, so handle them first. */
3559 output_addressed_constants (exp
, defer
);
3561 /* Sanity check to catch recursive insertion. */
3562 static bool inserting
;
3563 gcc_assert (!inserting
);
3566 /* Look up EXP in the table of constant descriptors. If we didn't
3567 find it, create a new one. */
3568 struct constant_descriptor_tree key
;
3570 key
.hash
= const_hash_1 (exp
);
3571 constant_descriptor_tree
**loc
3572 = const_desc_htab
->find_slot_with_hash (&key
, key
.hash
, INSERT
);
3576 struct constant_descriptor_tree
*desc
= *loc
;
3579 desc
= build_constant_desc (exp
);
3580 desc
->hash
= key
.hash
;
3587 /* Return an rtx representing a reference to constant data in memory
3588 for the constant expression EXP.
3590 If assembler code for such a constant has already been output,
3591 return an rtx to refer to it.
3592 Otherwise, output such a constant in memory
3593 and generate an rtx for it.
3595 If DEFER is nonzero, this constant can be deferred and output only
3596 if referenced in the function after all optimizations.
3598 `const_desc_table' records which constants already have label strings. */
3601 output_constant_def (tree exp
, int defer
)
3603 struct constant_descriptor_tree
*desc
= add_constant_to_table (exp
, defer
);
3604 maybe_output_constant_def_contents (desc
, defer
);
3608 /* Subroutine of output_constant_def: Decide whether or not we need to
3609 output the constant DESC now, and if so, do it. */
3611 maybe_output_constant_def_contents (struct constant_descriptor_tree
*desc
,
3614 rtx symbol
= XEXP (desc
->rtl
, 0);
3615 tree exp
= desc
->value
;
3617 if (flag_syntax_only
)
3620 if (TREE_ASM_WRITTEN (exp
))
3621 /* Already output; don't do it again. */
3624 /* We can always defer constants as long as the context allows
3628 /* Increment n_deferred_constants if it exists. It needs to be at
3629 least as large as the number of constants actually referred to
3630 by the function. If it's too small we'll stop looking too early
3631 and fail to emit constants; if it's too large we'll only look
3632 through the entire function when we could have stopped earlier. */
3634 n_deferred_constants
++;
3638 output_constant_def_contents (symbol
);
3641 /* Subroutine of output_constant_def_contents. Output the definition
3642 of constant EXP, which is pointed to by label LABEL. ALIGN is the
3643 constant's alignment in bits. */
3646 assemble_constant_contents (tree exp
, const char *label
, unsigned int align
,
3651 size
= get_constant_size (exp
);
3653 /* Do any machine/system dependent processing of the constant. */
3654 targetm
.asm_out
.declare_constant_name (asm_out_file
, label
, exp
, size
);
3656 /* Output the value of EXP. */
3657 output_constant (exp
, size
, align
, false, merge_strings
);
3659 targetm
.asm_out
.decl_end ();
3662 /* We must output the constant data referred to by SYMBOL; do so. */
3665 output_constant_def_contents (rtx symbol
)
3667 tree decl
= SYMBOL_REF_DECL (symbol
);
3668 tree exp
= DECL_INITIAL (decl
);
3669 bool asan_protected
= false;
3671 /* Make sure any other constants whose addresses appear in EXP
3672 are assigned label numbers. */
3673 output_addressed_constants (exp
, 0);
3675 /* We are no longer deferring this constant. */
3676 TREE_ASM_WRITTEN (decl
) = TREE_ASM_WRITTEN (exp
) = 1;
3678 if ((flag_sanitize
& SANITIZE_ADDRESS
)
3679 && TREE_CODE (exp
) == STRING_CST
3680 && asan_protect_global (exp
))
3682 asan_protected
= true;
3683 SET_DECL_ALIGN (decl
, MAX (DECL_ALIGN (decl
),
3684 ASAN_RED_ZONE_SIZE
* BITS_PER_UNIT
));
3687 /* If the constant is part of an object block, make sure that the
3688 decl has been positioned within its block, but do not write out
3689 its definition yet. output_object_blocks will do that later. */
3690 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol
) && SYMBOL_REF_BLOCK (symbol
))
3691 place_block_symbol (symbol
);
3694 int align
= (TREE_CODE (decl
) == CONST_DECL
3695 || (VAR_P (decl
) && DECL_IN_CONSTANT_POOL (decl
))
3697 : symtab_node::get (decl
)->definition_alignment ());
3698 section
*sect
= get_constant_section (exp
, align
);
3699 switch_to_section (sect
);
3700 if (align
> BITS_PER_UNIT
)
3701 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
3702 assemble_constant_contents (exp
, XSTR (symbol
, 0), align
,
3703 (sect
->common
.flags
& SECTION_MERGE
)
3704 && (sect
->common
.flags
& SECTION_STRINGS
));
3707 HOST_WIDE_INT size
= get_constant_size (exp
);
3708 assemble_zeros (asan_red_zone_size (size
));
3713 /* Look up EXP in the table of constant descriptors. Return the rtl
3714 if it has been emitted, else null. */
3717 lookup_constant_def (tree exp
)
3719 struct constant_descriptor_tree key
;
3722 key
.hash
= const_hash_1 (exp
);
3723 constant_descriptor_tree
*desc
3724 = const_desc_htab
->find_with_hash (&key
, key
.hash
);
3726 return (desc
? desc
->rtl
: NULL_RTX
);
3729 /* Return a tree representing a reference to constant data in memory
3730 for the constant expression EXP.
3732 This is the counterpart of output_constant_def at the Tree level. */
3735 tree_output_constant_def (tree exp
)
3737 struct constant_descriptor_tree
*desc
= add_constant_to_table (exp
, 1);
3738 tree decl
= SYMBOL_REF_DECL (XEXP (desc
->rtl
, 0));
3739 varpool_node::finalize_decl (decl
);
3743 class GTY((chain_next ("%h.next"), for_user
)) constant_descriptor_rtx
{
3745 class constant_descriptor_rtx
*next
;
3749 HOST_WIDE_INT offset
;
3751 fixed_size_mode mode
;
3757 struct const_rtx_desc_hasher
: ggc_ptr_hash
<constant_descriptor_rtx
>
3759 static hashval_t
hash (constant_descriptor_rtx
*);
3760 static bool equal (constant_descriptor_rtx
*, constant_descriptor_rtx
*);
3763 /* Used in the hash tables to avoid outputting the same constant
3764 twice. Unlike 'struct constant_descriptor_tree', RTX constants
3765 are output once per function, not once per file. */
3766 /* ??? Only a few targets need per-function constant pools. Most
3767 can use one per-file pool. Should add a targetm bit to tell the
3770 struct GTY(()) rtx_constant_pool
{
3771 /* Pointers to first and last constant in pool, as ordered by offset. */
3772 class constant_descriptor_rtx
*first
;
3773 class constant_descriptor_rtx
*last
;
3775 /* Hash facility for making memory-constants from constant rtl-expressions.
3776 It is used on RISC machines where immediate integer arguments and
3777 constant addresses are restricted so that such constants must be stored
3779 hash_table
<const_rtx_desc_hasher
> *const_rtx_htab
;
3781 /* Current offset in constant pool (does not include any
3782 machine-specific header). */
3783 HOST_WIDE_INT offset
;
3786 /* Hash and compare functions for const_rtx_htab. */
3789 const_rtx_desc_hasher::hash (constant_descriptor_rtx
*desc
)
3795 const_rtx_desc_hasher::equal (constant_descriptor_rtx
*x
,
3796 constant_descriptor_rtx
*y
)
3798 if (x
->mode
!= y
->mode
)
3800 return rtx_equal_p (x
->constant
, y
->constant
);
3803 /* Hash one component of a constant. */
3806 const_rtx_hash_1 (const_rtx x
)
3808 unsigned HOST_WIDE_INT hwi
;
3814 code
= GET_CODE (x
);
3815 mode
= GET_MODE (x
);
3816 h
= (hashval_t
) code
* 1048573 + mode
;
3825 int shift
= sizeof (hashval_t
) * CHAR_BIT
;
3826 const int n
= sizeof (HOST_WIDE_INT
) / sizeof (hashval_t
);
3828 h
^= (hashval_t
) hwi
;
3829 for (i
= 1; i
< n
; ++i
)
3832 h
^= (hashval_t
) hwi
;
3837 case CONST_WIDE_INT
:
3840 for (i
= 0; i
< CONST_WIDE_INT_NUNITS (x
); i
++)
3841 hwi
^= CONST_WIDE_INT_ELT (x
, i
);
3846 if (TARGET_SUPPORTS_WIDE_INT
== 0 && mode
== VOIDmode
)
3848 hwi
= CONST_DOUBLE_LOW (x
) ^ CONST_DOUBLE_HIGH (x
);
3852 h
^= real_hash (CONST_DOUBLE_REAL_VALUE (x
));
3856 h
^= fixed_hash (CONST_FIXED_VALUE (x
));
3860 h
^= htab_hash_string (XSTR (x
, 0));
3864 h
= h
* 251 + CODE_LABEL_NUMBER (label_ref_label (x
));
3868 case UNSPEC_VOLATILE
:
3869 h
= h
* 251 + XINT (x
, 1);
3879 /* Compute a hash value for X, which should be a constant. */
3882 const_rtx_hash (rtx x
)
3885 subrtx_iterator::array_type array
;
3886 FOR_EACH_SUBRTX (iter
, array
, x
, ALL
)
3887 h
= h
* 509 + const_rtx_hash_1 (*iter
);
3892 /* Create and return a new rtx constant pool. */
3894 static struct rtx_constant_pool
*
3895 create_constant_pool (void)
3897 struct rtx_constant_pool
*pool
;
3899 pool
= ggc_alloc
<rtx_constant_pool
> ();
3900 pool
->const_rtx_htab
= hash_table
<const_rtx_desc_hasher
>::create_ggc (31);
3907 /* Initialize constant pool hashing for a new function. */
3910 init_varasm_status (void)
3912 crtl
->varasm
.pool
= create_constant_pool ();
3913 crtl
->varasm
.deferred_constants
= 0;
3916 /* Given a MINUS expression, simplify it if both sides
3917 include the same symbol. */
3920 simplify_subtraction (rtx x
)
3922 rtx r
= simplify_rtx (x
);
3926 /* Given a constant rtx X, make (or find) a memory constant for its value
3927 and return a MEM rtx to refer to it in memory. IN_MODE is the mode
3931 force_const_mem (machine_mode in_mode
, rtx x
)
3933 class constant_descriptor_rtx
*desc
, tmp
;
3934 struct rtx_constant_pool
*pool
;
3939 constant_descriptor_rtx
**slot
;
3940 fixed_size_mode mode
;
3942 /* We can't force variable-sized objects to memory. */
3943 if (!is_a
<fixed_size_mode
> (in_mode
, &mode
))
3946 /* If we're not allowed to drop X into the constant pool, don't. */
3947 if (targetm
.cannot_force_const_mem (mode
, x
))
3950 /* Record that this function has used a constant pool entry. */
3951 crtl
->uses_const_pool
= 1;
3953 /* Decide which pool to use. */
3954 pool
= (targetm
.use_blocks_for_constant_p (mode
, x
)
3955 ? shared_constant_pool
3956 : crtl
->varasm
.pool
);
3958 /* Lookup the value in the hashtable. */
3961 hash
= const_rtx_hash (x
);
3962 slot
= pool
->const_rtx_htab
->find_slot_with_hash (&tmp
, hash
, INSERT
);
3965 /* If the constant was already present, return its memory. */
3967 return copy_rtx (desc
->mem
);
3969 /* Otherwise, create a new descriptor. */
3970 desc
= ggc_alloc
<constant_descriptor_rtx
> ();
3973 /* Align the location counter as required by EXP's data type. */
3974 machine_mode align_mode
= (mode
== VOIDmode
? word_mode
: mode
);
3975 align
= targetm
.static_rtx_alignment (align_mode
);
3977 pool
->offset
+= (align
/ BITS_PER_UNIT
) - 1;
3978 pool
->offset
&= ~ ((align
/ BITS_PER_UNIT
) - 1);
3981 desc
->constant
= copy_rtx (tmp
.constant
);
3982 desc
->offset
= pool
->offset
;
3985 desc
->align
= align
;
3986 desc
->labelno
= const_labelno
;
3989 pool
->offset
+= GET_MODE_SIZE (mode
);
3991 pool
->last
->next
= desc
;
3993 pool
->first
= pool
->last
= desc
;
3996 /* Create a string containing the label name, in LABEL. */
3997 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", const_labelno
);
4000 /* Construct the SYMBOL_REF. Make sure to mark it as belonging to
4001 the constants pool. */
4002 if (use_object_blocks_p () && targetm
.use_blocks_for_constant_p (mode
, x
))
4004 section
*sect
= targetm
.asm_out
.select_rtx_section (mode
, x
, align
);
4005 symbol
= create_block_symbol (ggc_strdup (label
),
4006 get_block_for_section (sect
), -1);
4009 symbol
= gen_rtx_SYMBOL_REF (Pmode
, ggc_strdup (label
));
4011 SYMBOL_REF_FLAGS (symbol
) |= SYMBOL_FLAG_LOCAL
;
4012 CONSTANT_POOL_ADDRESS_P (symbol
) = 1;
4013 SET_SYMBOL_REF_CONSTANT (symbol
, desc
);
4015 /* Construct the MEM. */
4016 desc
->mem
= def
= gen_const_mem (mode
, symbol
);
4017 set_mem_align (def
, align
);
4019 /* If we're dropping a label to the constant pool, make sure we
4021 if (GET_CODE (x
) == LABEL_REF
)
4022 LABEL_PRESERVE_P (XEXP (x
, 0)) = 1;
4024 return copy_rtx (def
);
4027 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
4030 get_pool_constant (const_rtx addr
)
4032 return SYMBOL_REF_CONSTANT (addr
)->constant
;
4035 /* Given a constant pool SYMBOL_REF, return the corresponding constant
4036 and whether it has been output or not. */
4039 get_pool_constant_mark (rtx addr
, bool *pmarked
)
4041 class constant_descriptor_rtx
*desc
;
4043 desc
= SYMBOL_REF_CONSTANT (addr
);
4044 *pmarked
= (desc
->mark
!= 0);
4045 return desc
->constant
;
4048 /* Similar, return the mode. */
4051 get_pool_mode (const_rtx addr
)
4053 return SYMBOL_REF_CONSTANT (addr
)->mode
;
4056 /* Return TRUE if and only if the constant pool has no entries. Note
4057 that even entries we might end up choosing not to emit are counted
4058 here, so there is the potential for missed optimizations. */
4061 constant_pool_empty_p (void)
4063 return crtl
->varasm
.pool
->first
== NULL
;
4066 /* Worker function for output_constant_pool_1. Emit assembly for X
4067 in MODE with known alignment ALIGN. */
4070 output_constant_pool_2 (fixed_size_mode mode
, rtx x
, unsigned int align
)
4072 switch (GET_MODE_CLASS (mode
))
4075 case MODE_DECIMAL_FLOAT
:
4077 gcc_assert (CONST_DOUBLE_AS_FLOAT_P (x
));
4078 assemble_real (*CONST_DOUBLE_REAL_VALUE (x
),
4079 as_a
<scalar_float_mode
> (mode
), align
, false);
4084 case MODE_PARTIAL_INT
:
4089 assemble_integer (x
, GET_MODE_SIZE (mode
), align
, 1);
4092 case MODE_VECTOR_BOOL
:
4094 gcc_assert (GET_CODE (x
) == CONST_VECTOR
);
4096 /* Pick the smallest integer mode that contains at least one
4097 whole element. Often this is byte_mode and contains more
4098 than one element. */
4099 unsigned int nelts
= GET_MODE_NUNITS (mode
);
4100 unsigned int elt_bits
= GET_MODE_PRECISION (mode
) / nelts
;
4101 unsigned int int_bits
= MAX (elt_bits
, BITS_PER_UNIT
);
4102 scalar_int_mode int_mode
= int_mode_for_size (int_bits
, 0).require ();
4103 unsigned int mask
= GET_MODE_MASK (GET_MODE_INNER (mode
));
4105 /* We allow GET_MODE_PRECISION (mode) <= GET_MODE_BITSIZE (mode) but
4106 only properly handle cases where the difference is less than a
4108 gcc_assert (GET_MODE_BITSIZE (mode
) - GET_MODE_PRECISION (mode
) <
4111 /* Build the constant up one integer at a time. */
4112 unsigned int elts_per_int
= int_bits
/ elt_bits
;
4113 for (unsigned int i
= 0; i
< nelts
; i
+= elts_per_int
)
4115 unsigned HOST_WIDE_INT value
= 0;
4116 unsigned int limit
= MIN (nelts
- i
, elts_per_int
);
4117 for (unsigned int j
= 0; j
< limit
; ++j
)
4119 auto elt
= INTVAL (CONST_VECTOR_ELT (x
, i
+ j
));
4120 value
|= (elt
& mask
) << (j
* elt_bits
);
4122 output_constant_pool_2 (int_mode
, gen_int_mode (value
, int_mode
),
4123 i
!= 0 ? MIN (align
, int_bits
) : align
);
4127 case MODE_VECTOR_FLOAT
:
4128 case MODE_VECTOR_INT
:
4129 case MODE_VECTOR_FRACT
:
4130 case MODE_VECTOR_UFRACT
:
4131 case MODE_VECTOR_ACCUM
:
4132 case MODE_VECTOR_UACCUM
:
4135 scalar_mode submode
= GET_MODE_INNER (mode
);
4136 unsigned int subalign
= MIN (align
, GET_MODE_BITSIZE (submode
));
4138 gcc_assert (GET_CODE (x
) == CONST_VECTOR
);
4139 units
= GET_MODE_NUNITS (mode
);
4141 for (i
= 0; i
< units
; i
++)
4143 rtx elt
= CONST_VECTOR_ELT (x
, i
);
4144 output_constant_pool_2 (submode
, elt
, i
? subalign
: align
);
4154 /* Worker function for output_constant_pool. Emit constant DESC,
4155 giving it ALIGN bits of alignment. */
4158 output_constant_pool_1 (class constant_descriptor_rtx
*desc
,
4165 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
4166 whose CODE_LABEL has been deleted. This can occur if a jump table
4167 is eliminated by optimization. If so, write a constant of zero
4168 instead. Note that this can also happen by turning the
4169 CODE_LABEL into a NOTE. */
4170 /* ??? This seems completely and utterly wrong. Certainly it's
4171 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
4172 functioning even with rtx_insn::deleted and friends. */
4175 switch (GET_CODE (tmp
))
4178 if (GET_CODE (XEXP (tmp
, 0)) != PLUS
4179 || GET_CODE (XEXP (XEXP (tmp
, 0), 0)) != LABEL_REF
)
4181 tmp
= XEXP (XEXP (tmp
, 0), 0);
4186 rtx_insn
*insn
= label_ref_label (tmp
);
4187 gcc_assert (!insn
->deleted ());
4188 gcc_assert (!NOTE_P (insn
)
4189 || NOTE_KIND (insn
) != NOTE_INSN_DELETED
);
4197 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
4198 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file
, x
, desc
->mode
,
4199 align
, desc
->labelno
, done
);
4202 assemble_align (align
);
4204 /* Output the label. */
4205 targetm
.asm_out
.internal_label (asm_out_file
, "LC", desc
->labelno
);
4208 Pass actual alignment value while emitting string constant to asm code
4209 as function 'output_constant_pool_1' explicitly passes the alignment as 1
4210 assuming that the data is already aligned which prevents the generation
4211 of fix-up table entries. */
4212 output_constant_pool_2 (desc
->mode
, x
, desc
->align
);
4214 /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
4215 sections have proper size. */
4216 if (align
> GET_MODE_BITSIZE (desc
->mode
)
4218 && (in_section
->common
.flags
& SECTION_MERGE
))
4219 assemble_align (align
);
4221 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
4227 /* Recompute the offsets of entries in POOL, and the overall size of
4228 POOL. Do this after calling mark_constant_pool to ensure that we
4229 are computing the offset values for the pool which we will actually
4233 recompute_pool_offsets (struct rtx_constant_pool
*pool
)
4235 class constant_descriptor_rtx
*desc
;
4238 for (desc
= pool
->first
; desc
; desc
= desc
->next
)
4241 /* Recalculate offset. */
4242 unsigned int align
= desc
->align
;
4243 pool
->offset
+= (align
/ BITS_PER_UNIT
) - 1;
4244 pool
->offset
&= ~ ((align
/ BITS_PER_UNIT
) - 1);
4245 desc
->offset
= pool
->offset
;
4246 pool
->offset
+= GET_MODE_SIZE (desc
->mode
);
4250 /* Mark all constants that are referenced by SYMBOL_REFs in X.
4251 Emit referenced deferred strings. */
4254 mark_constants_in_pattern (rtx insn
)
4256 subrtx_iterator::array_type array
;
4257 FOR_EACH_SUBRTX (iter
, array
, PATTERN (insn
), ALL
)
4259 const_rtx x
= *iter
;
4260 if (GET_CODE (x
) == SYMBOL_REF
)
4262 if (CONSTANT_POOL_ADDRESS_P (x
))
4264 class constant_descriptor_rtx
*desc
= SYMBOL_REF_CONSTANT (x
);
4265 if (desc
->mark
== 0)
4268 iter
.substitute (desc
->constant
);
4271 else if (TREE_CONSTANT_POOL_ADDRESS_P (x
))
4273 tree decl
= SYMBOL_REF_DECL (x
);
4274 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl
)))
4276 n_deferred_constants
--;
4277 output_constant_def_contents (CONST_CAST_RTX (x
));
4284 /* Look through appropriate parts of INSN, marking all entries in the
4285 constant pool which are actually being used. Entries that are only
4286 referenced by other constants are also marked as used. Emit
4287 deferred strings that are used. */
4290 mark_constants (rtx_insn
*insn
)
4295 /* Insns may appear inside a SEQUENCE. Only check the patterns of
4296 insns, not any notes that may be attached. We don't want to mark
4297 a constant just because it happens to appear in a REG_EQUIV note. */
4298 if (rtx_sequence
*seq
= dyn_cast
<rtx_sequence
*> (PATTERN (insn
)))
4300 int i
, n
= seq
->len ();
4301 for (i
= 0; i
< n
; ++i
)
4303 rtx subinsn
= seq
->element (i
);
4304 if (INSN_P (subinsn
))
4305 mark_constants_in_pattern (subinsn
);
4309 mark_constants_in_pattern (insn
);
4312 /* Look through the instructions for this function, and mark all the
4313 entries in POOL which are actually being used. Emit deferred constants
4314 which have indeed been used. */
4317 mark_constant_pool (void)
4321 if (!crtl
->uses_const_pool
&& n_deferred_constants
== 0)
4324 for (insn
= get_insns (); insn
; insn
= NEXT_INSN (insn
))
4325 mark_constants (insn
);
4328 /* Write all the constants in POOL. */
4331 output_constant_pool_contents (struct rtx_constant_pool
*pool
)
4333 class constant_descriptor_rtx
*desc
;
4335 for (desc
= pool
->first
; desc
; desc
= desc
->next
)
4338 #ifdef ASM_OUTPUT_DEF
4339 gcc_checking_assert (TARGET_SUPPORTS_ALIASES
);
4341 const char *name
= XSTR (desc
->sym
, 0);
4343 char buffer
[256 + 32];
4346 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", ~desc
->mark
);
4350 sprintf (buffer
, "%s+%ld", p
, (long) (desc
->offset
));
4353 ASM_OUTPUT_DEF (asm_out_file
, name
, p
);
4358 else if (desc
->mark
)
4360 /* If the constant is part of an object_block, make sure that
4361 the constant has been positioned within its block, but do not
4362 write out its definition yet. output_object_blocks will do
4364 if (SYMBOL_REF_HAS_BLOCK_INFO_P (desc
->sym
)
4365 && SYMBOL_REF_BLOCK (desc
->sym
))
4366 place_block_symbol (desc
->sym
);
4369 switch_to_section (targetm
.asm_out
.select_rtx_section
4370 (desc
->mode
, desc
->constant
, desc
->align
));
4371 output_constant_pool_1 (desc
, desc
->align
);
4376 struct constant_descriptor_rtx_data
{
4377 constant_descriptor_rtx
*desc
;
4379 unsigned short size
;
4380 unsigned short offset
;
4384 /* qsort callback to sort constant_descriptor_rtx_data * vector by
4388 constant_descriptor_rtx_data_cmp (const void *p1
, const void *p2
)
4390 constant_descriptor_rtx_data
*const data1
4391 = *(constant_descriptor_rtx_data
* const *) p1
;
4392 constant_descriptor_rtx_data
*const data2
4393 = *(constant_descriptor_rtx_data
* const *) p2
;
4394 if (data1
->size
> data2
->size
)
4396 if (data1
->size
< data2
->size
)
4398 if (data1
->hash
< data2
->hash
)
4400 gcc_assert (data1
->hash
> data2
->hash
);
4404 struct const_rtx_data_hasher
: nofree_ptr_hash
<constant_descriptor_rtx_data
>
4406 static hashval_t
hash (constant_descriptor_rtx_data
*);
4407 static bool equal (constant_descriptor_rtx_data
*,
4408 constant_descriptor_rtx_data
*);
4411 /* Hash and compare functions for const_rtx_data_htab. */
4414 const_rtx_data_hasher::hash (constant_descriptor_rtx_data
*data
)
4420 const_rtx_data_hasher::equal (constant_descriptor_rtx_data
*x
,
4421 constant_descriptor_rtx_data
*y
)
4423 if (x
->hash
!= y
->hash
|| x
->size
!= y
->size
)
4425 unsigned int align1
= x
->desc
->align
;
4426 unsigned int align2
= y
->desc
->align
;
4427 unsigned int offset1
= (x
->offset
* BITS_PER_UNIT
) & (align1
- 1);
4428 unsigned int offset2
= (y
->offset
* BITS_PER_UNIT
) & (align2
- 1);
4430 align1
= least_bit_hwi (offset1
);
4432 align2
= least_bit_hwi (offset2
);
4433 if (align2
> align1
)
4435 if (memcmp (x
->bytes
, y
->bytes
, x
->size
* sizeof (target_unit
)) != 0)
4440 /* Attempt to optimize constant pool POOL. If it contains both CONST_VECTOR
4441 constants and scalar constants with the values of CONST_VECTOR elements,
4442 try to alias the scalar constants with the CONST_VECTOR elements. */
4445 optimize_constant_pool (struct rtx_constant_pool
*pool
)
4447 auto_vec
<target_unit
, 128> buffer
;
4448 auto_vec
<constant_descriptor_rtx_data
*, 128> vec
;
4449 object_allocator
<constant_descriptor_rtx_data
>
4450 data_pool ("constant_descriptor_rtx_data_pool");
4453 for (constant_descriptor_rtx
*desc
= pool
->first
; desc
; desc
= desc
->next
)
4455 && ! (SYMBOL_REF_HAS_BLOCK_INFO_P (desc
->sym
)
4456 && SYMBOL_REF_BLOCK (desc
->sym
)))
4458 buffer
.truncate (0);
4459 buffer
.reserve (GET_MODE_SIZE (desc
->mode
));
4460 if (native_encode_rtx (desc
->mode
, desc
->constant
, buffer
, 0,
4461 GET_MODE_SIZE (desc
->mode
)))
4463 constant_descriptor_rtx_data
*data
= data_pool
.allocate ();
4466 data
->size
= GET_MODE_SIZE (desc
->mode
);
4470 vec
.safe_push (data
);
4475 vec
.qsort (constant_descriptor_rtx_data_cmp
);
4476 unsigned min_size
= vec
.last ()->size
;
4477 target_unit
*bytes
= XNEWVEC (target_unit
, size
);
4479 constant_descriptor_rtx_data
*data
;
4480 hash_table
<const_rtx_data_hasher
> * htab
4481 = new hash_table
<const_rtx_data_hasher
> (31);
4483 FOR_EACH_VEC_ELT (vec
, i
, data
)
4485 buffer
.truncate (0);
4486 native_encode_rtx (data
->desc
->mode
, data
->desc
->constant
,
4487 buffer
, 0, data
->size
);
4488 memcpy (bytes
+ size
, buffer
.address (), data
->size
);
4489 data
->bytes
= bytes
+ size
;
4490 data
->hash
= iterative_hash (data
->bytes
,
4491 data
->size
* sizeof (target_unit
), 0);
4493 constant_descriptor_rtx_data
**slot
4494 = htab
->find_slot_with_hash (data
, data
->hash
, INSERT
);
4497 data
->desc
->mark
= ~(*slot
)->desc
->labelno
;
4498 data
->desc
->offset
= (*slot
)->offset
;
4502 unsigned int sz
= 1 << floor_log2 (data
->size
);
4505 for (sz
>>= 1; sz
>= min_size
; sz
>>= 1)
4506 for (unsigned off
= 0; off
+ sz
<= data
->size
; off
+= sz
)
4508 constant_descriptor_rtx_data tmp
;
4509 tmp
.desc
= data
->desc
;
4510 tmp
.bytes
= data
->bytes
+ off
;
4513 tmp
.hash
= iterative_hash (tmp
.bytes
,
4514 sz
* sizeof (target_unit
), 0);
4515 slot
= htab
->find_slot_with_hash (&tmp
, tmp
.hash
, INSERT
);
4518 *slot
= data_pool
.allocate ();
4527 data_pool
.release ();
4530 /* Mark all constants that are used in the current function, then write
4531 out the function's private constant pool. */
4534 output_constant_pool (const char *fnname ATTRIBUTE_UNUSED
,
4535 tree fndecl ATTRIBUTE_UNUSED
)
4537 struct rtx_constant_pool
*pool
= crtl
->varasm
.pool
;
4539 /* It is possible for gcc to call force_const_mem and then to later
4540 discard the instructions which refer to the constant. In such a
4541 case we do not need to output the constant. */
4542 mark_constant_pool ();
4544 /* Having marked the constant pool entries we'll actually emit, we
4545 now need to rebuild the offset information, which may have become
4547 recompute_pool_offsets (pool
);
4549 #ifdef ASM_OUTPUT_POOL_PROLOGUE
4550 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file
, fnname
, fndecl
, pool
->offset
);
4553 output_constant_pool_contents (pool
);
4555 #ifdef ASM_OUTPUT_POOL_EPILOGUE
4556 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file
, fnname
, fndecl
, pool
->offset
);
4560 /* Write the contents of the shared constant pool. */
4563 output_shared_constant_pool (void)
4566 && TARGET_SUPPORTS_ALIASES
)
4567 optimize_constant_pool (shared_constant_pool
);
4569 output_constant_pool_contents (shared_constant_pool
);
4572 /* Determine what kind of relocations EXP may need. */
4575 compute_reloc_for_constant (tree exp
)
4577 int reloc
= 0, reloc2
;
4580 switch (TREE_CODE (exp
))
4584 /* Go inside any operations that get_inner_reference can handle and see
4585 if what's inside is a constant: no need to do anything here for
4586 addresses of variables or functions. */
4587 for (tem
= TREE_OPERAND (exp
, 0); handled_component_p (tem
);
4588 tem
= TREE_OPERAND (tem
, 0))
4591 if (TREE_CODE (tem
) == MEM_REF
4592 && TREE_CODE (TREE_OPERAND (tem
, 0)) == ADDR_EXPR
)
4594 reloc
= compute_reloc_for_constant (TREE_OPERAND (tem
, 0));
4598 if (!targetm
.binds_local_p (tem
))
4605 case POINTER_PLUS_EXPR
:
4606 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
4607 reloc
|= compute_reloc_for_constant (TREE_OPERAND (exp
, 1));
4611 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
4612 reloc2
= compute_reloc_for_constant (TREE_OPERAND (exp
, 1));
4613 /* The difference of two local labels is computable at link time. */
4614 if (reloc
== 1 && reloc2
== 1)
4621 case VIEW_CONVERT_EXPR
:
4622 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
4627 unsigned HOST_WIDE_INT idx
;
4628 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, tem
)
4630 reloc
|= compute_reloc_for_constant (tem
);
4640 /* Find all the constants whose addresses are referenced inside of EXP,
4641 and make sure assembler code with a label has been output for each one.
4642 Indicate whether an ADDR_EXPR has been encountered. */
4645 output_addressed_constants (tree exp
, int defer
)
4649 switch (TREE_CODE (exp
))
4653 /* Go inside any operations that get_inner_reference can handle and see
4654 if what's inside is a constant: no need to do anything here for
4655 addresses of variables or functions. */
4656 for (tem
= TREE_OPERAND (exp
, 0); handled_component_p (tem
);
4657 tem
= TREE_OPERAND (tem
, 0))
4660 /* If we have an initialized CONST_DECL, retrieve the initializer. */
4661 if (TREE_CODE (tem
) == CONST_DECL
&& DECL_INITIAL (tem
))
4662 tem
= DECL_INITIAL (tem
);
4664 if (CONSTANT_CLASS_P (tem
) || TREE_CODE (tem
) == CONSTRUCTOR
)
4665 output_constant_def (tem
, defer
);
4667 if (TREE_CODE (tem
) == MEM_REF
)
4668 output_addressed_constants (TREE_OPERAND (tem
, 0), defer
);
4672 case POINTER_PLUS_EXPR
:
4674 output_addressed_constants (TREE_OPERAND (exp
, 1), defer
);
4678 case VIEW_CONVERT_EXPR
:
4679 output_addressed_constants (TREE_OPERAND (exp
, 0), defer
);
4684 unsigned HOST_WIDE_INT idx
;
4685 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, tem
)
4687 output_addressed_constants (tem
, defer
);
4696 /* Whether a constructor CTOR is a valid static constant initializer if all
4697 its elements are. This used to be internal to initializer_constant_valid_p
4698 and has been exposed to let other functions like categorize_ctor_elements
4699 evaluate the property while walking a constructor for other purposes. */
4702 constructor_static_from_elts_p (const_tree ctor
)
4704 return (TREE_CONSTANT (ctor
)
4705 && (TREE_CODE (TREE_TYPE (ctor
)) == UNION_TYPE
4706 || TREE_CODE (TREE_TYPE (ctor
)) == RECORD_TYPE
4707 || TREE_CODE (TREE_TYPE (ctor
)) == ARRAY_TYPE
));
4710 static tree
initializer_constant_valid_p_1 (tree value
, tree endtype
,
4713 /* A subroutine of initializer_constant_valid_p. VALUE is a MINUS_EXPR,
4714 PLUS_EXPR or POINTER_PLUS_EXPR. This looks for cases of VALUE
4715 which are valid when ENDTYPE is an integer of any size; in
4716 particular, this does not accept a pointer minus a constant. This
4717 returns null_pointer_node if the VALUE is an absolute constant
4718 which can be used to initialize a static variable. Otherwise it
4722 narrowing_initializer_constant_valid_p (tree value
, tree endtype
, tree
*cache
)
4726 if (!INTEGRAL_TYPE_P (endtype
))
4729 op0
= TREE_OPERAND (value
, 0);
4730 op1
= TREE_OPERAND (value
, 1);
4732 /* Like STRIP_NOPS except allow the operand mode to widen. This
4733 works around a feature of fold that simplifies (int)(p1 - p2) to
4734 ((int)p1 - (int)p2) under the theory that the narrower operation
4737 while (CONVERT_EXPR_P (op0
)
4738 || TREE_CODE (op0
) == NON_LVALUE_EXPR
)
4740 tree inner
= TREE_OPERAND (op0
, 0);
4741 if (inner
== error_mark_node
4742 || ! INTEGRAL_TYPE_P (TREE_TYPE (op0
))
4743 || ! SCALAR_INT_MODE_P (TYPE_MODE (TREE_TYPE (op0
)))
4744 || ! INTEGRAL_TYPE_P (TREE_TYPE (inner
))
4745 || ! SCALAR_INT_MODE_P (TYPE_MODE (TREE_TYPE (inner
)))
4746 || (GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (op0
)))
4747 > GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (inner
)))))
4752 while (CONVERT_EXPR_P (op1
)
4753 || TREE_CODE (op1
) == NON_LVALUE_EXPR
)
4755 tree inner
= TREE_OPERAND (op1
, 0);
4756 if (inner
== error_mark_node
4757 || ! INTEGRAL_TYPE_P (TREE_TYPE (op1
))
4758 || ! SCALAR_INT_MODE_P (TYPE_MODE (TREE_TYPE (op1
)))
4759 || ! INTEGRAL_TYPE_P (TREE_TYPE (inner
))
4760 || ! SCALAR_INT_MODE_P (TYPE_MODE (TREE_TYPE (inner
)))
4761 || (GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (op1
)))
4762 > GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (inner
)))))
4767 op0
= initializer_constant_valid_p_1 (op0
, endtype
, cache
);
4771 op1
= initializer_constant_valid_p_1 (op1
, endtype
,
4772 cache
? cache
+ 2 : NULL
);
4773 /* Both initializers must be known. */
4777 && (op0
== null_pointer_node
4778 || TREE_CODE (value
) == MINUS_EXPR
))
4779 return null_pointer_node
;
4781 /* Support differences between labels. */
4782 if (TREE_CODE (op0
) == LABEL_DECL
4783 && TREE_CODE (op1
) == LABEL_DECL
)
4784 return null_pointer_node
;
4786 if (TREE_CODE (op0
) == STRING_CST
4787 && TREE_CODE (op1
) == STRING_CST
4788 && operand_equal_p (op0
, op1
, 1))
4789 return null_pointer_node
;
4795 /* Helper function of initializer_constant_valid_p.
4796 Return nonzero if VALUE is a valid constant-valued expression
4797 for use in initializing a static variable; one that can be an
4798 element of a "constant" initializer.
4800 Return null_pointer_node if the value is absolute;
4801 if it is relocatable, return the variable that determines the relocation.
4802 We assume that VALUE has been folded as much as possible;
4803 therefore, we do not need to check for such things as
4804 arithmetic-combinations of integers.
4806 Use CACHE (pointer to 2 tree values) for caching if non-NULL. */
4809 initializer_constant_valid_p_1 (tree value
, tree endtype
, tree
*cache
)
4813 switch (TREE_CODE (value
))
4816 if (constructor_static_from_elts_p (value
))
4818 unsigned HOST_WIDE_INT idx
;
4820 bool absolute
= true;
4822 if (cache
&& cache
[0] == value
)
4824 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value
), idx
, elt
)
4827 reloc
= initializer_constant_valid_p_1 (elt
, TREE_TYPE (elt
),
4830 /* An absolute value is required with reverse SSO. */
4831 || (reloc
!= null_pointer_node
4832 && TYPE_REVERSE_STORAGE_ORDER (TREE_TYPE (value
))
4833 && !AGGREGATE_TYPE_P (TREE_TYPE (elt
))))
4838 cache
[1] = NULL_TREE
;
4842 if (reloc
!= null_pointer_node
)
4845 /* For a non-absolute relocation, there is no single
4846 variable that can be "the variable that determines the
4851 cache
[1] = absolute
? null_pointer_node
: error_mark_node
;
4853 return absolute
? null_pointer_node
: error_mark_node
;
4856 return TREE_STATIC (value
) ? null_pointer_node
: NULL_TREE
;
4864 return null_pointer_node
;
4869 tree op0
= staticp (TREE_OPERAND (value
, 0));
4872 /* "&(*a).f" is like unto pointer arithmetic. If "a" turns out
4873 to be a constant, this is old-skool offsetof-like nonsense. */
4874 if (TREE_CODE (op0
) == INDIRECT_REF
4875 && TREE_CONSTANT (TREE_OPERAND (op0
, 0)))
4876 return null_pointer_node
;
4877 /* Taking the address of a nested function involves a trampoline,
4878 unless we don't need or want one. */
4879 if (TREE_CODE (op0
) == FUNCTION_DECL
4880 && DECL_STATIC_CHAIN (op0
)
4881 && !TREE_NO_TRAMPOLINE (value
))
4883 /* "&{...}" requires a temporary to hold the constructed
4885 if (TREE_CODE (op0
) == CONSTRUCTOR
)
4891 case NON_LVALUE_EXPR
:
4892 return initializer_constant_valid_p_1 (TREE_OPERAND (value
, 0),
4895 case VIEW_CONVERT_EXPR
:
4897 tree src
= TREE_OPERAND (value
, 0);
4898 tree src_type
= TREE_TYPE (src
);
4899 tree dest_type
= TREE_TYPE (value
);
4901 /* Allow view-conversions from aggregate to non-aggregate type only
4902 if the bit pattern is fully preserved afterwards; otherwise, the
4903 RTL expander won't be able to apply a subsequent transformation
4904 to the underlying constructor. */
4905 if (AGGREGATE_TYPE_P (src_type
) && !AGGREGATE_TYPE_P (dest_type
))
4907 if (TYPE_MODE (endtype
) == TYPE_MODE (dest_type
))
4908 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4913 /* Allow all other kinds of view-conversion. */
4914 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4919 tree src
= TREE_OPERAND (value
, 0);
4920 tree src_type
= TREE_TYPE (src
);
4921 tree dest_type
= TREE_TYPE (value
);
4923 /* Allow conversions between pointer types and offset types. */
4924 if ((POINTER_TYPE_P (dest_type
) && POINTER_TYPE_P (src_type
))
4925 || (TREE_CODE (dest_type
) == OFFSET_TYPE
4926 && TREE_CODE (src_type
) == OFFSET_TYPE
))
4927 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4929 /* Allow length-preserving conversions between integer types and
4930 floating-point types. */
4931 if (((INTEGRAL_TYPE_P (dest_type
) && INTEGRAL_TYPE_P (src_type
))
4932 || (SCALAR_FLOAT_TYPE_P (dest_type
)
4933 && SCALAR_FLOAT_TYPE_P (src_type
)))
4934 && (TYPE_PRECISION (dest_type
) == TYPE_PRECISION (src_type
)))
4935 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4937 /* Allow conversions between other integer types only if
4938 explicit value. Don't allow sign-extension to a type larger
4939 than word and pointer, there aren't relocations that would
4940 allow to sign extend it to a wider type. */
4941 if (INTEGRAL_TYPE_P (dest_type
)
4942 && INTEGRAL_TYPE_P (src_type
)
4943 && (TYPE_UNSIGNED (src_type
)
4944 || TYPE_PRECISION (dest_type
) <= TYPE_PRECISION (src_type
)
4945 || TYPE_PRECISION (dest_type
) <= BITS_PER_WORD
4946 || TYPE_PRECISION (dest_type
) <= POINTER_SIZE
))
4948 tree inner
= initializer_constant_valid_p_1 (src
, endtype
, cache
);
4949 if (inner
== null_pointer_node
)
4950 return null_pointer_node
;
4954 /* Allow (int) &foo provided int is as wide as a pointer. */
4955 if (INTEGRAL_TYPE_P (dest_type
) && POINTER_TYPE_P (src_type
)
4956 && (TYPE_PRECISION (dest_type
) >= TYPE_PRECISION (src_type
)))
4957 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4959 /* Likewise conversions from int to pointers, but also allow
4960 conversions from 0. */
4961 if ((POINTER_TYPE_P (dest_type
)
4962 || TREE_CODE (dest_type
) == OFFSET_TYPE
)
4963 && INTEGRAL_TYPE_P (src_type
))
4965 if (TREE_CODE (src
) == INTEGER_CST
4966 && TYPE_PRECISION (dest_type
) >= TYPE_PRECISION (src_type
))
4967 return null_pointer_node
;
4968 if (integer_zerop (src
))
4969 return null_pointer_node
;
4970 else if (TYPE_PRECISION (dest_type
) <= TYPE_PRECISION (src_type
))
4971 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4974 /* Allow conversions to struct or union types if the value
4976 if (TREE_CODE (dest_type
) == RECORD_TYPE
4977 || TREE_CODE (dest_type
) == UNION_TYPE
)
4978 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4982 case POINTER_PLUS_EXPR
:
4984 /* Any valid floating-point constants will have been folded by now;
4985 with -frounding-math we hit this with addition of two constants. */
4986 if (TREE_CODE (endtype
) == REAL_TYPE
)
4988 if (cache
&& cache
[0] == value
)
4990 if (! INTEGRAL_TYPE_P (endtype
)
4991 || ! INTEGRAL_TYPE_P (TREE_TYPE (value
))
4992 || TYPE_PRECISION (endtype
) >= TYPE_PRECISION (TREE_TYPE (value
)))
4994 tree ncache
[4] = { NULL_TREE
, NULL_TREE
, NULL_TREE
, NULL_TREE
};
4996 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 0),
4999 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 1),
5000 endtype
, ncache
+ 2);
5001 /* If either term is absolute, use the other term's relocation. */
5002 if (valid0
== null_pointer_node
)
5004 else if (valid1
== null_pointer_node
)
5006 /* Support narrowing pointer differences. */
5008 ret
= narrowing_initializer_constant_valid_p (value
, endtype
,
5012 /* Support narrowing pointer differences. */
5013 ret
= narrowing_initializer_constant_valid_p (value
, endtype
, NULL
);
5021 case POINTER_DIFF_EXPR
:
5023 if (TREE_CODE (endtype
) == REAL_TYPE
)
5025 if (cache
&& cache
[0] == value
)
5027 if (! INTEGRAL_TYPE_P (endtype
)
5028 || ! INTEGRAL_TYPE_P (TREE_TYPE (value
))
5029 || TYPE_PRECISION (endtype
) >= TYPE_PRECISION (TREE_TYPE (value
)))
5031 tree ncache
[4] = { NULL_TREE
, NULL_TREE
, NULL_TREE
, NULL_TREE
};
5033 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 0),
5036 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 1),
5037 endtype
, ncache
+ 2);
5038 /* Win if second argument is absolute. */
5039 if (valid1
== null_pointer_node
)
5041 /* Win if both arguments have the same relocation.
5042 Then the value is absolute. */
5043 else if (valid0
== valid1
&& valid0
!= 0)
5044 ret
= null_pointer_node
;
5045 /* Since GCC guarantees that string constants are unique in the
5046 generated code, a subtraction between two copies of the same
5047 constant string is absolute. */
5048 else if (valid0
&& TREE_CODE (valid0
) == STRING_CST
5049 && valid1
&& TREE_CODE (valid1
) == STRING_CST
5050 && operand_equal_p (valid0
, valid1
, 1))
5051 ret
= null_pointer_node
;
5052 /* Support narrowing differences. */
5054 ret
= narrowing_initializer_constant_valid_p (value
, endtype
,
5058 /* Support narrowing differences. */
5059 ret
= narrowing_initializer_constant_valid_p (value
, endtype
, NULL
);
5074 /* Return nonzero if VALUE is a valid constant-valued expression
5075 for use in initializing a static variable; one that can be an
5076 element of a "constant" initializer.
5078 Return null_pointer_node if the value is absolute;
5079 if it is relocatable, return the variable that determines the relocation.
5080 We assume that VALUE has been folded as much as possible;
5081 therefore, we do not need to check for such things as
5082 arithmetic-combinations of integers. */
5084 initializer_constant_valid_p (tree value
, tree endtype
, bool reverse
)
5086 tree reloc
= initializer_constant_valid_p_1 (value
, endtype
, NULL
);
5088 /* An absolute value is required with reverse storage order. */
5090 && reloc
!= null_pointer_node
5092 && !AGGREGATE_TYPE_P (endtype
)
5093 && !VECTOR_TYPE_P (endtype
))
5099 /* Return true if VALUE is a valid constant-valued expression
5100 for use in initializing a static bit-field; one that can be
5101 an element of a "constant" initializer. */
5104 initializer_constant_valid_for_bitfield_p (const_tree value
)
5106 /* For bitfields we support integer constants or possibly nested aggregates
5108 switch (TREE_CODE (value
))
5112 unsigned HOST_WIDE_INT idx
;
5115 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value
), idx
, elt
)
5116 if (!initializer_constant_valid_for_bitfield_p (elt
))
5125 case VIEW_CONVERT_EXPR
:
5126 case NON_LVALUE_EXPR
:
5128 initializer_constant_valid_for_bitfield_p (TREE_OPERAND (value
, 0));
5137 /* Check if a STRING_CST fits into the field.
5138 Tolerate only the case when the NUL termination
5139 does not fit into the field. */
5142 check_string_literal (tree string
, unsigned HOST_WIDE_INT size
)
5144 tree type
= TREE_TYPE (string
);
5145 tree eltype
= TREE_TYPE (type
);
5146 unsigned HOST_WIDE_INT elts
= tree_to_uhwi (TYPE_SIZE_UNIT (eltype
));
5147 unsigned HOST_WIDE_INT mem_size
= tree_to_uhwi (TYPE_SIZE_UNIT (type
));
5148 int len
= TREE_STRING_LENGTH (string
);
5150 if (elts
!= 1 && elts
!= 2 && elts
!= 4)
5152 if (len
< 0 || len
% elts
!= 0)
5154 if (size
< (unsigned)len
)
5156 if (mem_size
!= size
)
5161 /* output_constructor outer state of relevance in recursive calls, typically
5162 for nested aggregate bitfields. */
5164 struct oc_outer_state
{
5165 unsigned int bit_offset
; /* current position in ... */
5166 int byte
; /* ... the outer byte buffer. */
5169 static unsigned HOST_WIDE_INT
5170 output_constructor (tree
, unsigned HOST_WIDE_INT
, unsigned int, bool,
5173 /* Output assembler code for constant EXP, with no label.
5174 This includes the pseudo-op such as ".int" or ".byte", and a newline.
5175 Assumes output_addressed_constants has been done on EXP already.
5177 Generate at least SIZE bytes of assembler data, padding at the end
5178 with zeros if necessary. SIZE must always be specified. The returned
5179 value is the actual number of bytes of assembler data generated, which
5180 may be bigger than SIZE if the object contains a variable length field.
5182 SIZE is important for structure constructors,
5183 since trailing members may have been omitted from the constructor.
5184 It is also important for initialization of arrays from string constants
5185 since the full length of the string constant might not be wanted.
5186 It is also needed for initialization of unions, where the initializer's
5187 type is just one member, and that may not be as long as the union.
5189 There a case in which we would fail to output exactly SIZE bytes:
5190 for a structure constructor that wants to produce more than SIZE bytes.
5191 But such constructors will never be generated for any possible input.
5193 ALIGN is the alignment of the data in bits.
5195 If REVERSE is true, EXP is output in reverse storage order. */
5197 static unsigned HOST_WIDE_INT
5198 output_constant (tree exp
, unsigned HOST_WIDE_INT size
, unsigned int align
,
5199 bool reverse
, bool merge_strings
)
5201 enum tree_code code
;
5202 unsigned HOST_WIDE_INT thissize
;
5205 if (size
== 0 || flag_syntax_only
)
5208 /* See if we're trying to initialize a pointer in a non-default mode
5209 to the address of some declaration somewhere. If the target says
5210 the mode is valid for pointers, assume the target has a way of
5212 if (TREE_CODE (exp
) == NOP_EXPR
5213 && POINTER_TYPE_P (TREE_TYPE (exp
))
5214 && targetm
.addr_space
.valid_pointer_mode
5215 (SCALAR_INT_TYPE_MODE (TREE_TYPE (exp
)),
5216 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp
)))))
5218 tree saved_type
= TREE_TYPE (exp
);
5220 /* Peel off any intermediate conversions-to-pointer for valid
5222 while (TREE_CODE (exp
) == NOP_EXPR
5223 && POINTER_TYPE_P (TREE_TYPE (exp
))
5224 && targetm
.addr_space
.valid_pointer_mode
5225 (SCALAR_INT_TYPE_MODE (TREE_TYPE (exp
)),
5226 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp
)))))
5227 exp
= TREE_OPERAND (exp
, 0);
5229 /* If what we're left with is the address of something, we can
5230 convert the address to the final type and output it that
5232 if (TREE_CODE (exp
) == ADDR_EXPR
)
5233 exp
= build1 (ADDR_EXPR
, saved_type
, TREE_OPERAND (exp
, 0));
5234 /* Likewise for constant ints. */
5235 else if (TREE_CODE (exp
) == INTEGER_CST
)
5236 exp
= fold_convert (saved_type
, exp
);
5240 /* Eliminate any conversions since we'll be outputting the underlying
5242 while (CONVERT_EXPR_P (exp
)
5243 || TREE_CODE (exp
) == NON_LVALUE_EXPR
5244 || TREE_CODE (exp
) == VIEW_CONVERT_EXPR
)
5246 HOST_WIDE_INT type_size
= int_size_in_bytes (TREE_TYPE (exp
));
5247 HOST_WIDE_INT op_size
= int_size_in_bytes (TREE_TYPE (TREE_OPERAND (exp
, 0)));
5249 /* Make sure eliminating the conversion is really a no-op, except with
5250 VIEW_CONVERT_EXPRs to allow for wild Ada unchecked conversions and
5251 union types to allow for Ada unchecked unions. */
5252 if (type_size
> op_size
5253 && TREE_CODE (exp
) != VIEW_CONVERT_EXPR
5254 && TREE_CODE (TREE_TYPE (exp
)) != UNION_TYPE
)
5255 /* Keep the conversion. */
5258 exp
= TREE_OPERAND (exp
, 0);
5261 code
= TREE_CODE (TREE_TYPE (exp
));
5262 thissize
= int_size_in_bytes (TREE_TYPE (exp
));
5264 /* Allow a constructor with no elements for any data type.
5265 This means to fill the space with zeros. */
5266 if (TREE_CODE (exp
) == CONSTRUCTOR
5267 && vec_safe_is_empty (CONSTRUCTOR_ELTS (exp
)))
5269 assemble_zeros (size
);
5273 if (TREE_CODE (exp
) == FDESC_EXPR
)
5275 #ifdef ASM_OUTPUT_FDESC
5276 HOST_WIDE_INT part
= tree_to_shwi (TREE_OPERAND (exp
, 1));
5277 tree decl
= TREE_OPERAND (exp
, 0);
5278 ASM_OUTPUT_FDESC (asm_out_file
, decl
, part
);
5285 /* Now output the underlying data. If we've handling the padding, return.
5286 Otherwise, break and ensure SIZE is the size written. */
5293 case REFERENCE_TYPE
:
5295 case FIXED_POINT_TYPE
:
5297 cst
= expand_expr (exp
, NULL_RTX
, VOIDmode
, EXPAND_INITIALIZER
);
5299 cst
= flip_storage_order (TYPE_MODE (TREE_TYPE (exp
)), cst
);
5300 if (!assemble_integer (cst
, MIN (size
, thissize
), align
, 0))
5301 error ("initializer for integer/fixed-point value is too complicated");
5305 gcc_assert (size
== thissize
);
5306 if (TREE_CODE (exp
) != REAL_CST
)
5307 error ("initializer for floating value is not a floating constant");
5309 assemble_real (TREE_REAL_CST (exp
),
5310 SCALAR_FLOAT_TYPE_MODE (TREE_TYPE (exp
)),
5315 output_constant (TREE_REALPART (exp
), thissize
/ 2, align
,
5317 output_constant (TREE_IMAGPART (exp
), thissize
/ 2,
5318 min_align (align
, BITS_PER_UNIT
* (thissize
/ 2)),
5323 if (TREE_CODE (exp
) != INTEGER_CST
)
5324 error ("initializer for %<_BitInt(%d)%> value is not an integer "
5325 "constant", TYPE_PRECISION (TREE_TYPE (exp
)));
5328 struct bitint_info info
;
5329 tree type
= TREE_TYPE (exp
);
5330 bool ok
= targetm
.c
.bitint_type_info (TYPE_PRECISION (type
), &info
);
5332 scalar_int_mode limb_mode
5333 = as_a
<scalar_int_mode
> (info
.abi_limb_mode
);
5334 if (TYPE_PRECISION (type
) <= GET_MODE_PRECISION (limb_mode
))
5336 cst
= expand_expr (exp
, NULL_RTX
, VOIDmode
, EXPAND_INITIALIZER
);
5338 cst
= flip_storage_order (TYPE_MODE (TREE_TYPE (exp
)), cst
);
5339 if (!assemble_integer (cst
, MIN (size
, thissize
), align
, 0))
5340 error ("initializer for integer/fixed-point value is too "
5344 int prec
= GET_MODE_PRECISION (limb_mode
);
5345 int cnt
= CEIL (TYPE_PRECISION (type
), prec
);
5346 tree limb_type
= build_nonstandard_integer_type (prec
, 1);
5347 int elt_size
= GET_MODE_SIZE (limb_mode
);
5348 unsigned int nalign
= MIN (align
, GET_MODE_ALIGNMENT (limb_mode
));
5350 if (prec
== HOST_BITS_PER_WIDE_INT
)
5351 for (int i
= 0; i
< cnt
; i
++)
5353 int idx
= (info
.big_endian
^ reverse
) ? cnt
- 1 - i
: i
;
5355 if (idx
>= TREE_INT_CST_EXT_NUNITS (exp
))
5356 c
= build_int_cst (limb_type
,
5357 tree_int_cst_sgn (exp
) < 0 ? -1 : 0);
5359 c
= build_int_cst (limb_type
,
5360 TREE_INT_CST_ELT (exp
, idx
));
5361 output_constant (c
, elt_size
, nalign
, reverse
, false);
5362 thissize
+= elt_size
;
5365 for (int i
= 0; i
< cnt
; i
++)
5367 int idx
= (info
.big_endian
^ reverse
) ? cnt
- 1 - i
: i
;
5368 wide_int w
= wi::rshift (wi::to_wide (exp
), idx
* prec
,
5369 TYPE_SIGN (TREE_TYPE (exp
)));
5370 tree c
= wide_int_to_tree (limb_type
,
5371 wide_int::from (w
, prec
, UNSIGNED
));
5372 output_constant (c
, elt_size
, nalign
, reverse
, false);
5373 thissize
+= elt_size
;
5380 switch (TREE_CODE (exp
))
5383 return output_constructor (exp
, size
, align
, reverse
, NULL
);
5385 thissize
= (unsigned HOST_WIDE_INT
)TREE_STRING_LENGTH (exp
);
5388 || TREE_STRING_POINTER (exp
) [thissize
- 1] != '\0'))
5390 gcc_checking_assert (check_string_literal (exp
, size
));
5391 assemble_string (TREE_STRING_POINTER (exp
), thissize
);
5395 scalar_mode inner
= SCALAR_TYPE_MODE (TREE_TYPE (TREE_TYPE (exp
)));
5396 unsigned int nalign
= MIN (align
, GET_MODE_ALIGNMENT (inner
));
5397 int elt_size
= GET_MODE_SIZE (inner
);
5398 output_constant (VECTOR_CST_ELT (exp
, 0), elt_size
, align
,
5400 thissize
= elt_size
;
5401 /* Static constants must have a fixed size. */
5402 unsigned int nunits
= VECTOR_CST_NELTS (exp
).to_constant ();
5403 for (unsigned int i
= 1; i
< nunits
; i
++)
5405 output_constant (VECTOR_CST_ELT (exp
, i
), elt_size
, nalign
,
5407 thissize
+= elt_size
;
5418 gcc_assert (TREE_CODE (exp
) == CONSTRUCTOR
);
5419 return output_constructor (exp
, size
, align
, reverse
, NULL
);
5428 if (size
> thissize
)
5429 assemble_zeros (size
- thissize
);
5434 /* Subroutine of output_constructor, used for computing the size of
5435 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
5436 type with an unspecified upper bound. */
5438 static unsigned HOST_WIDE_INT
5439 array_size_for_constructor (tree val
)
5442 unsigned HOST_WIDE_INT cnt
;
5443 tree index
, value
, tmp
;
5446 /* This code used to attempt to handle string constants that are not
5447 arrays of single-bytes, but nothing else does, so there's no point in
5449 if (TREE_CODE (val
) == STRING_CST
)
5450 return TREE_STRING_LENGTH (val
);
5452 max_index
= NULL_TREE
;
5453 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (val
), cnt
, index
, value
)
5455 if (TREE_CODE (index
) == RANGE_EXPR
)
5456 index
= TREE_OPERAND (index
, 1);
5457 if (max_index
== NULL_TREE
|| tree_int_cst_lt (max_index
, index
))
5461 if (max_index
== NULL_TREE
)
5464 /* Compute the total number of array elements. */
5465 tmp
= TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val
)));
5466 i
= wi::to_offset (max_index
) - wi::to_offset (tmp
) + 1;
5468 /* Multiply by the array element unit size to find number of bytes. */
5469 i
*= wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val
))));
5471 gcc_assert (wi::fits_uhwi_p (i
));
5472 return i
.to_uhwi ();
5475 /* Other datastructures + helpers for output_constructor. */
5477 /* output_constructor local state to support interaction with helpers. */
5479 struct oc_local_state
{
5481 /* Received arguments. */
5482 tree exp
; /* Constructor expression. */
5483 tree type
; /* Type of constructor expression. */
5484 unsigned HOST_WIDE_INT size
; /* # bytes to output - pad if necessary. */
5485 unsigned int align
; /* Known initial alignment. */
5486 tree min_index
; /* Lower bound if specified for an array. */
5488 /* Output processing state. */
5489 HOST_WIDE_INT total_bytes
; /* # bytes output so far / current position. */
5490 int byte
; /* Part of a bitfield byte yet to be output. */
5491 int last_relative_index
; /* Implicit or explicit index of the last
5492 array element output within a bitfield. */
5493 bool byte_buffer_in_use
; /* Whether BYTE is in use. */
5494 bool reverse
; /* Whether reverse storage order is in use. */
5496 /* Current element. */
5497 tree field
; /* Current field decl in a record. */
5498 tree val
; /* Current element value. */
5499 tree index
; /* Current element index. */
5503 /* Helper for output_constructor. From the current LOCAL state, output a
5504 RANGE_EXPR element. */
5507 output_constructor_array_range (oc_local_state
*local
)
5509 /* Perform the index calculation in modulo arithmetic but
5510 sign-extend the result because Ada has negative DECL_FIELD_OFFSETs
5511 but we are using an unsigned sizetype. */
5512 unsigned prec
= TYPE_PRECISION (sizetype
);
5513 offset_int idx
= wi::sext (wi::to_offset (TREE_OPERAND (local
->index
, 0))
5514 - wi::to_offset (local
->min_index
), prec
);
5515 tree valtype
= TREE_TYPE (local
->val
);
5516 HOST_WIDE_INT fieldpos
5517 = (idx
* wi::to_offset (TYPE_SIZE_UNIT (valtype
))).to_short_addr ();
5519 /* Advance to offset of this element. */
5520 if (fieldpos
> local
->total_bytes
)
5522 assemble_zeros (fieldpos
- local
->total_bytes
);
5523 local
->total_bytes
= fieldpos
;
5526 /* Must not go backwards. */
5527 gcc_assert (fieldpos
== local
->total_bytes
);
5529 unsigned HOST_WIDE_INT fieldsize
5530 = int_size_in_bytes (TREE_TYPE (local
->type
));
5532 HOST_WIDE_INT lo_index
5533 = tree_to_shwi (TREE_OPERAND (local
->index
, 0));
5534 HOST_WIDE_INT hi_index
5535 = tree_to_shwi (TREE_OPERAND (local
->index
, 1));
5536 HOST_WIDE_INT index
;
5539 = min_align (local
->align
, fieldsize
* BITS_PER_UNIT
);
5541 for (index
= lo_index
; index
<= hi_index
; index
++)
5543 /* Output the element's initial value. */
5544 if (local
->val
== NULL_TREE
)
5545 assemble_zeros (fieldsize
);
5547 fieldsize
= output_constant (local
->val
, fieldsize
, align2
,
5548 local
->reverse
, false);
5550 /* Count its size. */
5551 local
->total_bytes
+= fieldsize
;
5555 /* Helper for output_constructor. From the current LOCAL state, output a
5556 field element that is not true bitfield or part of an outer one. */
5559 output_constructor_regular_field (oc_local_state
*local
)
5561 /* Field size and position. Since this structure is static, we know the
5562 positions are constant. */
5563 unsigned HOST_WIDE_INT fieldsize
;
5564 HOST_WIDE_INT fieldpos
;
5566 unsigned int align2
;
5568 /* Output any buffered-up bit-fields preceding this element. */
5569 if (local
->byte_buffer_in_use
)
5571 assemble_integer (GEN_INT (local
->byte
), 1, BITS_PER_UNIT
, 1);
5572 local
->total_bytes
++;
5573 local
->byte_buffer_in_use
= false;
5576 if (local
->index
!= NULL_TREE
)
5578 /* Perform the index calculation in modulo arithmetic but
5579 sign-extend the result because Ada has negative DECL_FIELD_OFFSETs
5580 but we are using an unsigned sizetype. */
5581 unsigned prec
= TYPE_PRECISION (sizetype
);
5582 offset_int idx
= wi::sext (wi::to_offset (local
->index
)
5583 - wi::to_offset (local
->min_index
), prec
);
5584 fieldpos
= (idx
* wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (local
->val
))))
5587 else if (local
->field
!= NULL_TREE
)
5588 fieldpos
= int_byte_position (local
->field
);
5592 /* Advance to offset of this element.
5593 Note no alignment needed in an array, since that is guaranteed
5594 if each element has the proper size. */
5595 if (local
->field
!= NULL_TREE
|| local
->index
!= NULL_TREE
)
5597 if (fieldpos
> local
->total_bytes
)
5599 assemble_zeros (fieldpos
- local
->total_bytes
);
5600 local
->total_bytes
= fieldpos
;
5603 /* Must not go backwards. */
5604 gcc_assert (fieldpos
== local
->total_bytes
);
5607 /* Find the alignment of this element. */
5608 align2
= min_align (local
->align
, BITS_PER_UNIT
* fieldpos
);
5610 /* Determine size this element should occupy. */
5615 /* If this is an array with an unspecified upper bound,
5616 the initializer determines the size. */
5617 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
5618 but we cannot do this until the deprecated support for
5619 initializing zero-length array members is removed. */
5620 if (TREE_CODE (TREE_TYPE (local
->field
)) == ARRAY_TYPE
5621 && (!TYPE_DOMAIN (TREE_TYPE (local
->field
))
5622 || !TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (local
->field
)))))
5624 unsigned HOST_WIDE_INT fldsize
5625 = array_size_for_constructor (local
->val
);
5626 fieldsize
= int_size_in_bytes (TREE_TYPE (local
->val
));
5627 /* In most cases fieldsize == fldsize as the size of the initializer
5628 determines how many elements the flexible array member has. For
5629 C++ fldsize can be smaller though, if the last or several last or
5630 all initializers of the flexible array member have side-effects
5631 and the FE splits them into dynamic initialization. */
5632 gcc_checking_assert (fieldsize
>= fldsize
);
5633 /* Given a non-empty initialization, this field had better
5634 be last. Given a flexible array member, the next field
5635 on the chain is a TYPE_DECL of the enclosing struct. */
5636 const_tree next
= DECL_CHAIN (local
->field
);
5637 gcc_assert (!fieldsize
|| !next
|| TREE_CODE (next
) != FIELD_DECL
);
5640 fieldsize
= tree_to_uhwi (DECL_SIZE_UNIT (local
->field
));
5643 fieldsize
= int_size_in_bytes (TREE_TYPE (local
->type
));
5645 /* Output the element's initial value. */
5646 if (local
->val
== NULL_TREE
)
5647 assemble_zeros (fieldsize
);
5649 fieldsize
= output_constant (local
->val
, fieldsize
, align2
,
5650 local
->reverse
, false);
5652 /* Count its size. */
5653 local
->total_bytes
+= fieldsize
;
5656 /* Helper for output_constructor. From the LOCAL state, output an element
5657 that is a true bitfield or part of an outer one. BIT_OFFSET is the offset
5658 from the start of a possibly ongoing outer byte buffer. */
5661 output_constructor_bitfield (oc_local_state
*local
, unsigned int bit_offset
)
5663 /* Bit size of this element. */
5664 HOST_WIDE_INT ebitsize
5666 ? tree_to_uhwi (DECL_SIZE (local
->field
))
5667 : tree_to_uhwi (TYPE_SIZE (TREE_TYPE (local
->type
))));
5669 /* Relative index of this element if this is an array component. */
5670 HOST_WIDE_INT relative_index
5674 ? tree_to_uhwi (local
->index
) - tree_to_uhwi (local
->min_index
)
5675 : local
->last_relative_index
+ 1));
5677 /* Bit position of this element from the start of the containing
5679 HOST_WIDE_INT constructor_relative_ebitpos
5681 ? int_bit_position (local
->field
)
5682 : ebitsize
* relative_index
);
5684 /* Bit position of this element from the start of a possibly ongoing
5685 outer byte buffer. */
5686 HOST_WIDE_INT byte_relative_ebitpos
5687 = bit_offset
+ constructor_relative_ebitpos
;
5689 /* From the start of a possibly ongoing outer byte buffer, offsets to
5690 the first bit of this element and to the first bit past the end of
5692 HOST_WIDE_INT next_offset
= byte_relative_ebitpos
;
5693 HOST_WIDE_INT end_offset
= byte_relative_ebitpos
+ ebitsize
;
5695 local
->last_relative_index
= relative_index
;
5697 if (local
->val
== NULL_TREE
)
5698 local
->val
= integer_zero_node
;
5700 while (TREE_CODE (local
->val
) == VIEW_CONVERT_EXPR
5701 || TREE_CODE (local
->val
) == NON_LVALUE_EXPR
)
5702 local
->val
= TREE_OPERAND (local
->val
, 0);
5704 if (TREE_CODE (local
->val
) != INTEGER_CST
5705 && TREE_CODE (local
->val
) != CONSTRUCTOR
)
5707 error ("invalid initial value for member %qE", DECL_NAME (local
->field
));
5711 /* If this field does not start in this (or next) byte, skip some bytes. */
5712 if (next_offset
/ BITS_PER_UNIT
!= local
->total_bytes
)
5714 /* Output remnant of any bit field in previous bytes. */
5715 if (local
->byte_buffer_in_use
)
5717 assemble_integer (GEN_INT (local
->byte
), 1, BITS_PER_UNIT
, 1);
5718 local
->total_bytes
++;
5719 local
->byte_buffer_in_use
= false;
5722 /* If still not at proper byte, advance to there. */
5723 if (next_offset
/ BITS_PER_UNIT
!= local
->total_bytes
)
5725 gcc_assert (next_offset
/ BITS_PER_UNIT
>= local
->total_bytes
);
5726 assemble_zeros (next_offset
/ BITS_PER_UNIT
- local
->total_bytes
);
5727 local
->total_bytes
= next_offset
/ BITS_PER_UNIT
;
5731 /* Set up the buffer if necessary. */
5732 if (!local
->byte_buffer_in_use
)
5736 local
->byte_buffer_in_use
= true;
5739 /* If this is nested constructor, recurse passing the bit offset and the
5740 pending data, then retrieve the new pending data afterwards. */
5741 if (TREE_CODE (local
->val
) == CONSTRUCTOR
)
5743 oc_outer_state temp_state
;
5744 temp_state
.bit_offset
= next_offset
% BITS_PER_UNIT
;
5745 temp_state
.byte
= local
->byte
;
5747 += output_constructor (local
->val
, 0, 0, local
->reverse
, &temp_state
);
5748 local
->byte
= temp_state
.byte
;
5752 /* Otherwise, we must split the element into pieces that fall within
5753 separate bytes, and combine each byte with previous or following
5755 while (next_offset
< end_offset
)
5759 unsigned HOST_WIDE_INT value
;
5760 HOST_WIDE_INT next_byte
= next_offset
/ BITS_PER_UNIT
;
5761 HOST_WIDE_INT next_bit
= next_offset
% BITS_PER_UNIT
;
5763 /* Advance from byte to byte within this element when necessary. */
5764 while (next_byte
!= local
->total_bytes
)
5766 assemble_integer (GEN_INT (local
->byte
), 1, BITS_PER_UNIT
, 1);
5767 local
->total_bytes
++;
5771 /* Number of bits we can process at once (all part of the same byte). */
5772 this_time
= MIN (end_offset
- next_offset
, BITS_PER_UNIT
- next_bit
);
5773 if (local
->reverse
? !BYTES_BIG_ENDIAN
: BYTES_BIG_ENDIAN
)
5775 /* For big-endian data, take the most significant bits (of the
5776 bits that are significant) first and put them into bytes from
5777 the most significant end. */
5778 shift
= end_offset
- next_offset
- this_time
;
5780 /* Don't try to take a bunch of bits that cross
5781 the word boundary in the INTEGER_CST. We can
5782 only select bits from one element. */
5783 if ((shift
/ HOST_BITS_PER_WIDE_INT
)
5784 != ((shift
+ this_time
- 1) / HOST_BITS_PER_WIDE_INT
))
5786 const int end
= shift
+ this_time
- 1;
5787 shift
= end
& -HOST_BITS_PER_WIDE_INT
;
5788 this_time
= end
- shift
+ 1;
5791 /* Now get the bits we want to insert. */
5792 value
= wi::extract_uhwi (wi::to_widest (local
->val
),
5795 /* Get the result. This works only when:
5796 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
5797 local
->byte
|= value
<< (BITS_PER_UNIT
- this_time
- next_bit
);
5801 /* On little-endian machines, take the least significant bits of
5802 the value first and pack them starting at the least significant
5803 bits of the bytes. */
5804 shift
= next_offset
- byte_relative_ebitpos
;
5806 /* Don't try to take a bunch of bits that cross
5807 the word boundary in the INTEGER_CST. We can
5808 only select bits from one element. */
5809 if ((shift
/ HOST_BITS_PER_WIDE_INT
)
5810 != ((shift
+ this_time
- 1) / HOST_BITS_PER_WIDE_INT
))
5812 = HOST_BITS_PER_WIDE_INT
- (shift
& (HOST_BITS_PER_WIDE_INT
- 1));
5814 /* Now get the bits we want to insert. */
5815 value
= wi::extract_uhwi (wi::to_widest (local
->val
),
5818 /* Get the result. This works only when:
5819 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
5820 local
->byte
|= value
<< next_bit
;
5823 next_offset
+= this_time
;
5824 local
->byte_buffer_in_use
= true;
5828 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
5829 Generate at least SIZE bytes, padding if necessary. OUTER designates the
5830 caller output state of relevance in recursive invocations. */
5832 static unsigned HOST_WIDE_INT
5833 output_constructor (tree exp
, unsigned HOST_WIDE_INT size
, unsigned int align
,
5834 bool reverse
, oc_outer_state
*outer
)
5836 unsigned HOST_WIDE_INT cnt
;
5837 constructor_elt
*ce
;
5838 oc_local_state local
;
5840 /* Setup our local state to communicate with helpers. */
5842 local
.type
= TREE_TYPE (exp
);
5844 local
.align
= align
;
5845 if (TREE_CODE (local
.type
) == ARRAY_TYPE
&& TYPE_DOMAIN (local
.type
))
5846 local
.min_index
= TYPE_MIN_VALUE (TYPE_DOMAIN (local
.type
));
5848 local
.min_index
= integer_zero_node
;
5850 local
.total_bytes
= 0;
5851 local
.byte_buffer_in_use
= outer
!= NULL
;
5852 local
.byte
= outer
? outer
->byte
: 0;
5853 local
.last_relative_index
= -1;
5854 /* The storage order is specified for every aggregate type. */
5855 if (AGGREGATE_TYPE_P (local
.type
))
5856 local
.reverse
= TYPE_REVERSE_STORAGE_ORDER (local
.type
);
5858 local
.reverse
= reverse
;
5860 gcc_assert (HOST_BITS_PER_WIDE_INT
>= BITS_PER_UNIT
);
5862 /* As CE goes through the elements of the constant, FIELD goes through the
5863 structure fields if the constant is a structure. If the constant is a
5864 union, we override this by getting the field from the TREE_LIST element.
5865 But the constant could also be an array. Then FIELD is zero.
5867 There is always a maximum of one element in the chain LINK for unions
5868 (even if the initializer in a source program incorrectly contains
5871 if (TREE_CODE (local
.type
) == RECORD_TYPE
)
5872 local
.field
= TYPE_FIELDS (local
.type
);
5874 local
.field
= NULL_TREE
;
5877 vec_safe_iterate (CONSTRUCTOR_ELTS (exp
), cnt
, &ce
);
5878 cnt
++, local
.field
= local
.field
? DECL_CHAIN (local
.field
) : 0)
5880 local
.val
= ce
->value
;
5881 local
.index
= NULL_TREE
;
5883 /* The element in a union constructor specifies the proper field
5885 if (RECORD_OR_UNION_TYPE_P (local
.type
) && ce
->index
!= NULL_TREE
)
5886 local
.field
= ce
->index
;
5888 else if (TREE_CODE (local
.type
) == ARRAY_TYPE
)
5889 local
.index
= ce
->index
;
5891 if (local
.field
&& flag_verbose_asm
)
5892 fprintf (asm_out_file
, "%s %s:\n",
5894 DECL_NAME (local
.field
)
5895 ? IDENTIFIER_POINTER (DECL_NAME (local
.field
))
5898 /* Eliminate the marker that makes a cast not be an lvalue. */
5899 if (local
.val
!= NULL_TREE
)
5900 STRIP_NOPS (local
.val
);
5902 /* Output the current element, using the appropriate helper ... */
5904 /* For an array slice not part of an outer bitfield. */
5906 && local
.index
!= NULL_TREE
5907 && TREE_CODE (local
.index
) == RANGE_EXPR
)
5908 output_constructor_array_range (&local
);
5910 /* For a field that is neither a true bitfield nor part of an outer one,
5911 known to be at least byte aligned and multiple-of-bytes long. */
5913 && (local
.field
== NULL_TREE
5914 || !CONSTRUCTOR_BITFIELD_P (local
.field
)))
5915 output_constructor_regular_field (&local
);
5917 /* For a true bitfield or part of an outer one. Only INTEGER_CSTs are
5918 supported for scalar fields, so we may need to convert first. */
5921 if (TREE_CODE (local
.val
) == REAL_CST
)
5923 = fold_unary (VIEW_CONVERT_EXPR
,
5924 build_nonstandard_integer_type
5925 (TYPE_PRECISION (TREE_TYPE (local
.val
)), 0),
5927 output_constructor_bitfield (&local
, outer
? outer
->bit_offset
: 0);
5931 /* If we are not at toplevel, save the pending data for our caller.
5932 Otherwise output the pending data and padding zeros as needed. */
5934 outer
->byte
= local
.byte
;
5937 if (local
.byte_buffer_in_use
)
5939 assemble_integer (GEN_INT (local
.byte
), 1, BITS_PER_UNIT
, 1);
5940 local
.total_bytes
++;
5943 if ((unsigned HOST_WIDE_INT
)local
.total_bytes
< local
.size
)
5945 assemble_zeros (local
.size
- local
.total_bytes
);
5946 local
.total_bytes
= local
.size
;
5950 return local
.total_bytes
;
5953 /* Mark DECL as weak. */
5956 mark_weak (tree decl
)
5958 if (DECL_WEAK (decl
))
5961 struct symtab_node
*n
= symtab_node::get (decl
);
5962 if (n
&& n
->refuse_visibility_changes
)
5963 error ("%qD declared weak after being used", decl
);
5964 DECL_WEAK (decl
) = 1;
5966 if (DECL_RTL_SET_P (decl
)
5967 && MEM_P (DECL_RTL (decl
))
5968 && XEXP (DECL_RTL (decl
), 0)
5969 && GET_CODE (XEXP (DECL_RTL (decl
), 0)) == SYMBOL_REF
)
5970 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl
), 0)) = 1;
5973 /* Merge weak status between NEWDECL and OLDDECL. */
5976 merge_weak (tree newdecl
, tree olddecl
)
5978 if (DECL_WEAK (newdecl
) == DECL_WEAK (olddecl
))
5980 if (DECL_WEAK (newdecl
) && TARGET_SUPPORTS_WEAK
)
5983 /* We put the NEWDECL on the weak_decls list at some point
5984 and OLDDECL as well. Keep just OLDDECL on the list. */
5985 for (pwd
= &weak_decls
; *pwd
; pwd
= &TREE_CHAIN (*pwd
))
5986 if (TREE_VALUE (*pwd
) == newdecl
)
5988 *pwd
= TREE_CHAIN (*pwd
);
5995 if (DECL_WEAK (newdecl
))
5999 /* NEWDECL is weak, but OLDDECL is not. */
6001 /* If we already output the OLDDECL, we're in trouble; we can't
6002 go back and make it weak. This should never happen in
6003 unit-at-a-time compilation. */
6004 gcc_assert (!TREE_ASM_WRITTEN (olddecl
));
6006 /* If we've already generated rtl referencing OLDDECL, we may
6007 have done so in a way that will not function properly with
6008 a weak symbol. Again in unit-at-a-time this should be
6010 gcc_assert (!TREE_USED (olddecl
)
6011 || !TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl
)));
6013 /* PR 49899: You cannot convert a static function into a weak, public function. */
6014 if (! TREE_PUBLIC (olddecl
) && TREE_PUBLIC (newdecl
))
6015 error ("weak declaration of %q+D being applied to a already "
6016 "existing, static definition", newdecl
);
6018 if (TARGET_SUPPORTS_WEAK
)
6020 /* We put the NEWDECL on the weak_decls list at some point.
6021 Replace it with the OLDDECL. */
6022 for (wd
= weak_decls
; wd
; wd
= TREE_CHAIN (wd
))
6023 if (TREE_VALUE (wd
) == newdecl
)
6025 TREE_VALUE (wd
) = olddecl
;
6028 /* We may not find the entry on the list. If NEWDECL is a
6029 weak alias, then we will have already called
6030 globalize_decl to remove the entry; in that case, we do
6031 not need to do anything. */
6034 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
6035 mark_weak (olddecl
);
6038 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
6039 weak. Just update NEWDECL to indicate that it's weak too. */
6040 mark_weak (newdecl
);
6043 /* Declare DECL to be a weak symbol. */
6046 declare_weak (tree decl
)
6048 /* With -fsyntax-only, TREE_ASM_WRITTEN might be set on certain function
6049 decls earlier than normally, but as with -fsyntax-only nothing is really
6050 emitted, there is no harm in marking it weak later. */
6051 gcc_assert (TREE_CODE (decl
) != FUNCTION_DECL
6052 || !TREE_ASM_WRITTEN (decl
)
6053 || flag_syntax_only
);
6054 if (! TREE_PUBLIC (decl
))
6056 error ("weak declaration of %q+D must be public", decl
);
6059 else if (!TARGET_SUPPORTS_WEAK
)
6060 warning (0, "weak declaration of %q+D not supported", decl
);
6063 if (!lookup_attribute ("weak", DECL_ATTRIBUTES (decl
)))
6064 DECL_ATTRIBUTES (decl
)
6065 = tree_cons (get_identifier ("weak"), NULL
, DECL_ATTRIBUTES (decl
));
6069 weak_finish_1 (tree decl
)
6071 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
6072 const char *const name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
6075 if (! TREE_USED (decl
))
6078 #ifdef ASM_WEAKEN_DECL
6079 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, NULL
);
6081 #ifdef ASM_WEAKEN_LABEL
6082 ASM_WEAKEN_LABEL (asm_out_file
, name
);
6084 #ifdef ASM_OUTPUT_WEAK_ALIAS
6086 static bool warn_once
= 0;
6089 warning (0, "only weak aliases are supported in this configuration");
6099 /* Fiven an assembly name, find the decl it is associated with. */
6101 find_decl (tree target
)
6103 symtab_node
*node
= symtab_node::get_for_asmname (target
);
6109 /* This TREE_LIST contains weakref targets. */
6111 static GTY(()) tree weakref_targets
;
6113 /* Emit any pending weak declarations. */
6120 for (t
= weakref_targets
; t
; t
= TREE_CHAIN (t
))
6122 tree alias_decl
= TREE_PURPOSE (t
);
6123 tree target
= ultimate_transparent_alias_target (&TREE_VALUE (t
));
6125 if (! TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (alias_decl
))
6126 || TREE_SYMBOL_REFERENCED (target
))
6127 /* Remove alias_decl from the weak list, but leave entries for
6128 the target alone. */
6130 #ifndef ASM_OUTPUT_WEAKREF
6131 else if (! TREE_SYMBOL_REFERENCED (target
))
6133 /* Use ASM_WEAKEN_LABEL only if ASM_WEAKEN_DECL is not
6134 defined, otherwise we and weak_finish_1 would use
6135 different macros. */
6136 # if defined ASM_WEAKEN_LABEL && ! defined ASM_WEAKEN_DECL
6137 ASM_WEAKEN_LABEL (asm_out_file
, IDENTIFIER_POINTER (target
));
6139 tree decl
= find_decl (target
);
6143 decl
= build_decl (DECL_SOURCE_LOCATION (alias_decl
),
6144 TREE_CODE (alias_decl
), target
,
6145 TREE_TYPE (alias_decl
));
6147 DECL_EXTERNAL (decl
) = 1;
6148 TREE_PUBLIC (decl
) = 1;
6149 DECL_ARTIFICIAL (decl
) = 1;
6150 TREE_NOTHROW (decl
) = TREE_NOTHROW (alias_decl
);
6151 TREE_USED (decl
) = 1;
6154 weak_finish_1 (decl
);
6163 /* Remove the alias and the target from the pending weak list
6164 so that we do not emit any .weak directives for the former,
6165 nor multiple .weak directives for the latter. */
6166 for (p
= &weak_decls
; (t2
= *p
) ; )
6168 if (TREE_VALUE (t2
) == alias_decl
6169 || target
== DECL_ASSEMBLER_NAME (TREE_VALUE (t2
)))
6170 *p
= TREE_CHAIN (t2
);
6172 p
= &TREE_CHAIN (t2
);
6175 /* Remove other weakrefs to the same target, to speed things up. */
6176 for (p
= &TREE_CHAIN (t
); (t2
= *p
) ; )
6178 if (target
== ultimate_transparent_alias_target (&TREE_VALUE (t2
)))
6179 *p
= TREE_CHAIN (t2
);
6181 p
= &TREE_CHAIN (t2
);
6186 for (t
= weak_decls
; t
; t
= TREE_CHAIN (t
))
6188 tree decl
= TREE_VALUE (t
);
6190 weak_finish_1 (decl
);
6194 /* Emit the assembly bits to indicate that DECL is globally visible. */
6197 globalize_decl (tree decl
)
6200 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
6201 if (DECL_WEAK (decl
))
6203 const char *name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
6206 #ifdef ASM_WEAKEN_DECL
6207 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, 0);
6209 ASM_WEAKEN_LABEL (asm_out_file
, name
);
6212 /* Remove this function from the pending weak list so that
6213 we do not emit multiple .weak directives for it. */
6214 for (p
= &weak_decls
; (t
= *p
) ; )
6216 if (DECL_ASSEMBLER_NAME (decl
) == DECL_ASSEMBLER_NAME (TREE_VALUE (t
)))
6217 *p
= TREE_CHAIN (t
);
6219 p
= &TREE_CHAIN (t
);
6222 /* Remove weakrefs to the same target from the pending weakref
6223 list, for the same reason. */
6224 for (p
= &weakref_targets
; (t
= *p
) ; )
6226 if (DECL_ASSEMBLER_NAME (decl
)
6227 == ultimate_transparent_alias_target (&TREE_VALUE (t
)))
6228 *p
= TREE_CHAIN (t
);
6230 p
= &TREE_CHAIN (t
);
6237 targetm
.asm_out
.globalize_decl_name (asm_out_file
, decl
);
6240 vec
<alias_pair
, va_gc
> *alias_pairs
;
6242 /* Output the assembler code for a define (equate) using ASM_OUTPUT_DEF
6243 or ASM_OUTPUT_DEF_FROM_DECLS. The function defines the symbol whose
6244 tree node is DECL to have the value of the tree node TARGET. */
6247 do_assemble_alias (tree decl
, tree target
)
6251 /* Emulated TLS had better not get this var. */
6252 gcc_assert (!(!targetm
.have_tls
6254 && DECL_THREAD_LOCAL_P (decl
)));
6256 if (TREE_ASM_WRITTEN (decl
))
6259 id
= DECL_ASSEMBLER_NAME (decl
);
6260 ultimate_transparent_alias_target (&id
);
6261 ultimate_transparent_alias_target (&target
);
6263 /* We must force creation of DECL_RTL for debug info generation, even though
6264 we don't use it here. */
6265 make_decl_rtl (decl
);
6267 TREE_ASM_WRITTEN (decl
) = 1;
6268 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl
)) = 1;
6269 TREE_ASM_WRITTEN (id
) = 1;
6271 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl
)))
6273 if (!TREE_SYMBOL_REFERENCED (target
))
6274 weakref_targets
= tree_cons (decl
, target
, weakref_targets
);
6276 #ifdef ASM_OUTPUT_WEAKREF
6277 ASM_OUTPUT_WEAKREF (asm_out_file
, decl
,
6278 IDENTIFIER_POINTER (id
),
6279 IDENTIFIER_POINTER (target
));
6281 if (!TARGET_SUPPORTS_WEAK
)
6283 error_at (DECL_SOURCE_LOCATION (decl
),
6284 "%qs is not supported in this configuration", "weakref ");
6291 #ifdef ASM_OUTPUT_DEF
6292 tree orig_decl
= decl
;
6294 /* Make name accessible from other files, if appropriate. */
6296 if (TREE_PUBLIC (decl
) || TREE_PUBLIC (orig_decl
))
6298 globalize_decl (decl
);
6299 maybe_assemble_visibility (decl
);
6301 if (TREE_CODE (decl
) == FUNCTION_DECL
6302 && cgraph_node::get (decl
)->ifunc_resolver
)
6304 #if defined (ASM_OUTPUT_TYPE_DIRECTIVE)
6305 if (targetm
.has_ifunc_p ())
6306 ASM_OUTPUT_TYPE_DIRECTIVE
6307 (asm_out_file
, IDENTIFIER_POINTER (id
),
6311 error_at (DECL_SOURCE_LOCATION (decl
),
6312 "%qs is not supported on this target", "ifunc");
6315 # ifdef ASM_OUTPUT_DEF_FROM_DECLS
6316 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file
, decl
, target
);
6318 ASM_OUTPUT_DEF (asm_out_file
,
6319 IDENTIFIER_POINTER (id
),
6320 IDENTIFIER_POINTER (target
));
6322 /* If symbol aliases aren't actually supported... */
6323 if (!TARGET_SUPPORTS_ALIASES
)
6324 /* ..., 'ASM_OUTPUT_DEF{,_FROM_DECLS}' better have raised an error. */
6325 gcc_checking_assert (seen_error ());
6326 #elif defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
6331 name
= IDENTIFIER_POINTER (id
);
6332 # ifdef ASM_WEAKEN_DECL
6333 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, IDENTIFIER_POINTER (target
));
6335 ASM_OUTPUT_WEAK_ALIAS (asm_out_file
, name
, IDENTIFIER_POINTER (target
));
6337 /* Remove this function from the pending weak list so that
6338 we do not emit multiple .weak directives for it. */
6339 for (p
= &weak_decls
; (t
= *p
) ; )
6340 if (DECL_ASSEMBLER_NAME (decl
) == DECL_ASSEMBLER_NAME (TREE_VALUE (t
))
6341 || id
== DECL_ASSEMBLER_NAME (TREE_VALUE (t
)))
6342 *p
= TREE_CHAIN (t
);
6344 p
= &TREE_CHAIN (t
);
6346 /* Remove weakrefs to the same target from the pending weakref
6347 list, for the same reason. */
6348 for (p
= &weakref_targets
; (t
= *p
) ; )
6350 if (id
== ultimate_transparent_alias_target (&TREE_VALUE (t
)))
6351 *p
= TREE_CHAIN (t
);
6353 p
= &TREE_CHAIN (t
);
6359 /* Output .symver directive. */
6362 do_assemble_symver (tree decl
, tree target
)
6364 tree id
= DECL_ASSEMBLER_NAME (decl
);
6365 ultimate_transparent_alias_target (&id
);
6366 ultimate_transparent_alias_target (&target
);
6367 #ifdef ASM_OUTPUT_SYMVER_DIRECTIVE
6368 ASM_OUTPUT_SYMVER_DIRECTIVE (asm_out_file
,
6369 IDENTIFIER_POINTER (target
),
6370 IDENTIFIER_POINTER (id
));
6372 error ("symver is only supported on ELF platforms");
6376 /* Emit an assembler directive to make the symbol for DECL an alias to
6377 the symbol for TARGET. */
6380 assemble_alias (tree decl
, tree target
)
6384 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl
)))
6386 tree alias
= DECL_ASSEMBLER_NAME (decl
);
6388 ultimate_transparent_alias_target (&target
);
6390 if (alias
== target
)
6391 error ("%qs symbol %q+D ultimately targets itself", "weakref", decl
);
6392 if (TREE_PUBLIC (decl
))
6393 error ("%qs symbol %q+D must have static linkage", "weakref", decl
);
6395 else if (!TARGET_SUPPORTS_ALIASES
)
6397 # if !defined(ASM_OUTPUT_WEAK_ALIAS) && !defined (ASM_WEAKEN_DECL)
6398 error_at (DECL_SOURCE_LOCATION (decl
),
6399 "alias definitions not supported in this configuration");
6400 TREE_ASM_WRITTEN (decl
) = 1;
6403 if (!DECL_WEAK (decl
))
6405 /* NB: ifunc_resolver isn't set when an error is detected. */
6406 if (TREE_CODE (decl
) == FUNCTION_DECL
6407 && lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl
)))
6408 error_at (DECL_SOURCE_LOCATION (decl
),
6409 "%qs is not supported in this configuration", "ifunc");
6411 error_at (DECL_SOURCE_LOCATION (decl
),
6412 "only weak aliases are supported in this configuration");
6413 TREE_ASM_WRITTEN (decl
) = 1;
6419 TREE_USED (decl
) = 1;
6421 /* Allow aliases to aliases. */
6422 if (TREE_CODE (decl
) == FUNCTION_DECL
)
6423 cgraph_node::get_create (decl
)->alias
= true;
6425 varpool_node::get_create (decl
)->alias
= true;
6427 /* If the target has already been emitted, we don't have to queue the
6428 alias. This saves a tad of memory. */
6429 if (symtab
->global_info_ready
)
6430 target_decl
= find_decl (target
);
6433 if ((target_decl
&& TREE_ASM_WRITTEN (target_decl
))
6434 || symtab
->state
>= EXPANSION
)
6435 do_assemble_alias (decl
, target
);
6438 alias_pair p
= {decl
, target
};
6439 vec_safe_push (alias_pairs
, p
);
6443 /* Record and output a table of translations from original function
6444 to its transaction aware clone. Note that tm_pure functions are
6445 considered to be their own clone. */
6447 struct tm_clone_hasher
: ggc_cache_ptr_hash
<tree_map
>
6449 static hashval_t
hash (tree_map
*m
) { return tree_map_hash (m
); }
6450 static bool equal (tree_map
*a
, tree_map
*b
) { return tree_map_eq (a
, b
); }
6453 keep_cache_entry (tree_map
*&e
)
6455 return ggc_marked_p (e
->base
.from
);
6459 static GTY((cache
)) hash_table
<tm_clone_hasher
> *tm_clone_hash
;
6462 record_tm_clone_pair (tree o
, tree n
)
6464 struct tree_map
**slot
, *h
;
6466 if (tm_clone_hash
== NULL
)
6467 tm_clone_hash
= hash_table
<tm_clone_hasher
>::create_ggc (32);
6469 h
= ggc_alloc
<tree_map
> ();
6470 h
->hash
= htab_hash_pointer (o
);
6474 slot
= tm_clone_hash
->find_slot_with_hash (h
, h
->hash
, INSERT
);
6479 get_tm_clone_pair (tree o
)
6483 struct tree_map
*h
, in
;
6486 in
.hash
= htab_hash_pointer (o
);
6487 h
= tm_clone_hash
->find_with_hash (&in
, in
.hash
);
6494 struct tm_alias_pair
6502 /* Dump the actual pairs to the .tm_clone_table section. */
6505 dump_tm_clone_pairs (vec
<tm_alias_pair
> tm_alias_pairs
)
6509 bool switched
= false;
6511 FOR_EACH_VEC_ELT (tm_alias_pairs
, i
, p
)
6515 struct cgraph_node
*src_n
= cgraph_node::get (src
);
6516 struct cgraph_node
*dst_n
= cgraph_node::get (dst
);
6518 /* The function ipa_tm_create_version() marks the clone as needed if
6519 the original function was needed. But we also mark the clone as
6520 needed if we ever called the clone indirectly through
6521 TM_GETTMCLONE. If neither of these are true, we didn't generate
6522 a clone, and we didn't call it indirectly... no sense keeping it
6523 in the clone table. */
6524 if (!dst_n
|| !dst_n
->definition
)
6527 /* This covers the case where we have optimized the original
6528 function away, and only access the transactional clone. */
6529 if (!src_n
|| !src_n
->definition
)
6534 switch_to_section (targetm
.asm_out
.tm_clone_table_section ());
6535 assemble_align (POINTER_SIZE
);
6539 assemble_integer (XEXP (DECL_RTL (src
), 0),
6540 POINTER_SIZE_UNITS
, POINTER_SIZE
, 1);
6541 assemble_integer (XEXP (DECL_RTL (dst
), 0),
6542 POINTER_SIZE_UNITS
, POINTER_SIZE
, 1);
6546 /* Provide a default for the tm_clone_table section. */
6549 default_clone_table_section (void)
6551 return get_named_section (NULL
, ".tm_clone_table", 3);
6554 /* Helper comparison function for qsorting by the DECL_UID stored in
6555 alias_pair->emitted_diags. */
6558 tm_alias_pair_cmp (const void *x
, const void *y
)
6560 const tm_alias_pair
*p1
= (const tm_alias_pair
*) x
;
6561 const tm_alias_pair
*p2
= (const tm_alias_pair
*) y
;
6562 if (p1
->uid
< p2
->uid
)
6564 if (p1
->uid
> p2
->uid
)
6570 finish_tm_clone_pairs (void)
6572 vec
<tm_alias_pair
> tm_alias_pairs
= vNULL
;
6574 if (tm_clone_hash
== NULL
)
6577 /* We need a determenistic order for the .tm_clone_table, otherwise
6578 we will get bootstrap comparison failures, so dump the hash table
6579 to a vector, sort it, and dump the vector. */
6581 /* Dump the hashtable to a vector. */
6583 hash_table
<tm_clone_hasher
>::iterator iter
;
6584 FOR_EACH_HASH_TABLE_ELEMENT (*tm_clone_hash
, map
, tree_map
*, iter
)
6586 tm_alias_pair p
= {DECL_UID (map
->base
.from
), map
->base
.from
, map
->to
};
6587 tm_alias_pairs
.safe_push (p
);
6590 tm_alias_pairs
.qsort (tm_alias_pair_cmp
);
6593 dump_tm_clone_pairs (tm_alias_pairs
);
6595 tm_clone_hash
->empty ();
6596 tm_clone_hash
= NULL
;
6597 tm_alias_pairs
.release ();
6601 /* Emit an assembler directive to set symbol for DECL visibility to
6602 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
6605 default_assemble_visibility (tree decl ATTRIBUTE_UNUSED
,
6606 int vis ATTRIBUTE_UNUSED
)
6608 #ifdef HAVE_GAS_HIDDEN
6609 static const char * const visibility_types
[] = {
6610 NULL
, "protected", "hidden", "internal"
6613 const char *name
, *type
;
6616 id
= DECL_ASSEMBLER_NAME (decl
);
6617 ultimate_transparent_alias_target (&id
);
6618 name
= IDENTIFIER_POINTER (id
);
6620 type
= visibility_types
[vis
];
6622 fprintf (asm_out_file
, "\t.%s\t", type
);
6623 assemble_name (asm_out_file
, name
);
6624 fprintf (asm_out_file
, "\n");
6626 if (!DECL_ARTIFICIAL (decl
))
6627 warning (OPT_Wattributes
, "visibility attribute not supported "
6628 "in this configuration; ignored");
6632 /* A helper function to call assemble_visibility when needed for a decl. */
6635 maybe_assemble_visibility (tree decl
)
6637 enum symbol_visibility vis
= DECL_VISIBILITY (decl
);
6638 if (vis
!= VISIBILITY_DEFAULT
)
6640 targetm
.asm_out
.assemble_visibility (decl
, vis
);
6647 /* Returns true if the target configuration supports defining public symbols
6648 so that one of them will be chosen at link time instead of generating a
6649 multiply-defined symbol error, whether through the use of weak symbols or
6650 a target-specific mechanism for having duplicates discarded. */
6653 supports_one_only (void)
6655 if (SUPPORTS_ONE_ONLY
)
6657 if (TARGET_SUPPORTS_WEAK
)
6662 /* Set up DECL as a public symbol that can be defined in multiple
6663 translation units without generating a linker error. */
6666 make_decl_one_only (tree decl
, tree comdat_group
)
6668 struct symtab_node
*symbol
;
6669 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl
));
6671 TREE_PUBLIC (decl
) = 1;
6674 symbol
= varpool_node::get_create (decl
);
6676 symbol
= cgraph_node::get_create (decl
);
6678 if (SUPPORTS_ONE_ONLY
)
6680 #ifdef MAKE_DECL_ONE_ONLY
6681 MAKE_DECL_ONE_ONLY (decl
);
6683 symbol
->set_comdat_group (comdat_group
);
6685 else if (VAR_P (decl
)
6686 && (DECL_INITIAL (decl
) == 0
6687 || (!in_lto_p
&& DECL_INITIAL (decl
) == error_mark_node
)))
6688 DECL_COMMON (decl
) = 1;
6691 gcc_assert (TARGET_SUPPORTS_WEAK
);
6692 DECL_WEAK (decl
) = 1;
6697 init_varasm_once (void)
6699 section_htab
= hash_table
<section_hasher
>::create_ggc (31);
6700 object_block_htab
= hash_table
<object_block_hasher
>::create_ggc (31);
6701 const_desc_htab
= hash_table
<tree_descriptor_hasher
>::create_ggc (1009);
6703 shared_constant_pool
= create_constant_pool ();
6705 #ifdef TEXT_SECTION_ASM_OP
6706 text_section
= get_unnamed_section (SECTION_CODE
, output_section_asm_op
,
6707 TEXT_SECTION_ASM_OP
);
6710 #ifdef DATA_SECTION_ASM_OP
6711 data_section
= get_unnamed_section (SECTION_WRITE
, output_section_asm_op
,
6712 DATA_SECTION_ASM_OP
);
6715 #ifdef SDATA_SECTION_ASM_OP
6716 sdata_section
= get_unnamed_section (SECTION_WRITE
, output_section_asm_op
,
6717 SDATA_SECTION_ASM_OP
);
6720 #ifdef READONLY_DATA_SECTION_ASM_OP
6721 readonly_data_section
= get_unnamed_section (0, output_section_asm_op
,
6722 READONLY_DATA_SECTION_ASM_OP
);
6725 #ifdef CTORS_SECTION_ASM_OP
6726 ctors_section
= get_unnamed_section (0, output_section_asm_op
,
6727 CTORS_SECTION_ASM_OP
);
6730 #ifdef DTORS_SECTION_ASM_OP
6731 dtors_section
= get_unnamed_section (0, output_section_asm_op
,
6732 DTORS_SECTION_ASM_OP
);
6735 #ifdef BSS_SECTION_ASM_OP
6736 bss_section
= get_unnamed_section (SECTION_WRITE
| SECTION_BSS
,
6737 output_section_asm_op
,
6738 BSS_SECTION_ASM_OP
);
6741 #ifdef SBSS_SECTION_ASM_OP
6742 sbss_section
= get_unnamed_section (SECTION_WRITE
| SECTION_BSS
,
6743 output_section_asm_op
,
6744 SBSS_SECTION_ASM_OP
);
6747 tls_comm_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
6748 | SECTION_COMMON
, emit_tls_common
);
6749 lcomm_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
6750 | SECTION_COMMON
, emit_local
);
6751 comm_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
6752 | SECTION_COMMON
, emit_common
);
6754 #if defined ASM_OUTPUT_ALIGNED_BSS
6755 bss_noswitch_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
,
6759 targetm
.asm_out
.init_sections ();
6761 if (readonly_data_section
== NULL
)
6762 readonly_data_section
= text_section
;
6764 #ifdef ASM_OUTPUT_EXTERNAL
6765 pending_assemble_externals_set
= new hash_set
<tree
>;
6769 /* Determine whether SYMBOL is used in any optimized function. */
6772 have_optimized_refs (struct symtab_node
*symbol
)
6774 struct ipa_ref
*ref
;
6776 for (int i
= 0; symbol
->iterate_referring (i
, ref
); i
++)
6778 cgraph_node
*cnode
= dyn_cast
<cgraph_node
*> (ref
->referring
);
6780 if (cnode
&& opt_for_fn (cnode
->decl
, optimize
))
6787 /* Check if promoting general-dynamic TLS access model to local-dynamic is
6788 desirable for DECL. */
6791 optimize_dyn_tls_for_decl_p (const_tree decl
)
6795 return symtab
->state
>= IPA
&& have_optimized_refs (symtab_node::get (decl
));
6800 decl_default_tls_model (const_tree decl
)
6802 enum tls_model kind
;
6805 is_local
= targetm
.binds_local_p (decl
);
6809 kind
= TLS_MODEL_LOCAL_EXEC
;
6811 kind
= TLS_MODEL_INITIAL_EXEC
;
6814 /* Local dynamic is inefficient when we're not combining the
6815 parts of the address. */
6816 else if (is_local
&& optimize_dyn_tls_for_decl_p (decl
))
6817 kind
= TLS_MODEL_LOCAL_DYNAMIC
;
6819 kind
= TLS_MODEL_GLOBAL_DYNAMIC
;
6820 if (kind
< flag_tls_default
)
6821 kind
= flag_tls_default
;
6826 /* Select a set of attributes for section NAME based on the properties
6827 of DECL and whether or not RELOC indicates that DECL's initializer
6828 might contain runtime relocations.
6830 We make the section read-only and executable for a function decl,
6831 read-only for a const data decl, and writable for a non-const data decl. */
6834 default_section_type_flags (tree decl
, const char *name
, int reloc
)
6838 if (decl
&& TREE_CODE (decl
) == FUNCTION_DECL
)
6839 flags
= SECTION_CODE
;
6842 enum section_category category
6843 = categorize_decl_for_section (decl
, reloc
);
6844 if (decl_readonly_section_1 (category
))
6846 else if (category
== SECCAT_DATA_REL_RO
6847 || category
== SECCAT_DATA_REL_RO_LOCAL
)
6848 flags
= SECTION_WRITE
| SECTION_RELRO
;
6850 flags
= SECTION_WRITE
;
6854 flags
= SECTION_WRITE
;
6855 if (strcmp (name
, ".data.rel.ro") == 0
6856 || strcmp (name
, ".data.rel.ro.local") == 0)
6857 flags
|= SECTION_RELRO
;
6860 if (decl
&& DECL_P (decl
) && DECL_COMDAT_GROUP (decl
))
6861 flags
|= SECTION_LINKONCE
;
6863 if (strcmp (name
, ".vtable_map_vars") == 0)
6864 flags
|= SECTION_LINKONCE
;
6866 if (decl
&& VAR_P (decl
) && DECL_THREAD_LOCAL_P (decl
))
6867 flags
|= SECTION_TLS
| SECTION_WRITE
;
6869 if (strcmp (name
, ".bss") == 0
6870 || startswith (name
, ".bss.")
6871 || startswith (name
, ".gnu.linkonce.b.")
6872 || strcmp (name
, ".persistent.bss") == 0
6873 || strcmp (name
, ".sbss") == 0
6874 || startswith (name
, ".sbss.")
6875 || startswith (name
, ".gnu.linkonce.sb."))
6876 flags
|= SECTION_BSS
;
6878 if (strcmp (name
, ".tdata") == 0
6879 || startswith (name
, ".tdata.")
6880 || startswith (name
, ".gnu.linkonce.td."))
6881 flags
|= SECTION_TLS
;
6883 if (strcmp (name
, ".tbss") == 0
6884 || startswith (name
, ".tbss.")
6885 || startswith (name
, ".gnu.linkonce.tb."))
6886 flags
|= SECTION_TLS
| SECTION_BSS
;
6888 if (strcmp (name
, ".noinit") == 0)
6889 flags
|= SECTION_WRITE
| SECTION_BSS
| SECTION_NOTYPE
;
6891 if (strcmp (name
, ".persistent") == 0)
6892 flags
|= SECTION_WRITE
| SECTION_NOTYPE
;
6894 /* Various sections have special ELF types that the assembler will
6895 assign by default based on the name. They are neither SHT_PROGBITS
6896 nor SHT_NOBITS, so when changing sections we don't want to print a
6897 section type (@progbits or @nobits). Rather than duplicating the
6898 assembler's knowledge of what those special name patterns are, just
6899 let the assembler choose the type if we don't know a specific
6900 reason to set it to something other than the default. SHT_PROGBITS
6901 is the default for sections whose name is not specially known to
6902 the assembler, so it does no harm to leave the choice to the
6903 assembler when @progbits is the best thing we know to use. If
6904 someone is silly enough to emit code or TLS variables to one of
6905 these sections, then don't handle them specially.
6907 default_elf_asm_named_section (below) handles the BSS, TLS, ENTSIZE, and
6908 LINKONCE cases when NOTYPE is not set, so leave those to its logic. */
6909 if (!(flags
& (SECTION_CODE
| SECTION_BSS
| SECTION_TLS
| SECTION_ENTSIZE
))
6910 && !(HAVE_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
)))
6911 flags
|= SECTION_NOTYPE
;
6916 /* Return true if the target supports some form of global BSS,
6917 either through bss_noswitch_section, or by selecting a BSS
6918 section in TARGET_ASM_SELECT_SECTION. */
6921 have_global_bss_p (void)
6923 return bss_noswitch_section
|| targetm
.have_switchable_bss_sections
;
6926 /* Output assembly to switch to section NAME with attribute FLAGS.
6927 Four variants for common object file formats. */
6930 default_no_named_section (const char *name ATTRIBUTE_UNUSED
,
6931 unsigned int flags ATTRIBUTE_UNUSED
,
6932 tree decl ATTRIBUTE_UNUSED
)
6934 /* Some object formats don't support named sections at all. The
6935 front-end should already have flagged this as an error. */
6939 #ifndef TLS_SECTION_ASM_FLAG
6940 #define TLS_SECTION_ASM_FLAG 'T'
6944 default_elf_asm_named_section (const char *name
, unsigned int flags
,
6947 char flagchars
[11], *f
= flagchars
;
6948 unsigned int numeric_value
= 0;
6950 /* If we have already declared this section, we can use an
6951 abbreviated form to switch back to it -- unless this section is
6952 part of a COMDAT groups or with SHF_GNU_RETAIN or with SHF_LINK_ORDER,
6953 in which case GAS requires the full declaration every time. */
6954 if (!(HAVE_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
6955 && !(flags
& (SECTION_RETAIN
| SECTION_LINK_ORDER
))
6956 && (flags
& SECTION_DECLARED
))
6958 fprintf (asm_out_file
, "\t.section\t%s\n", name
);
6962 /* If we have a machine specific flag, then use the numeric value to pass
6964 if (targetm
.asm_out
.elf_flags_numeric (flags
, &numeric_value
))
6965 snprintf (f
, sizeof (flagchars
), "0x%08x", numeric_value
);
6968 if (!(flags
& SECTION_DEBUG
))
6970 #if HAVE_GAS_SECTION_EXCLUDE
6971 if (flags
& SECTION_EXCLUDE
)
6974 if (flags
& SECTION_WRITE
)
6976 if (flags
& SECTION_CODE
)
6978 if (flags
& SECTION_SMALL
)
6980 if (flags
& SECTION_MERGE
)
6982 if (flags
& SECTION_STRINGS
)
6984 if (flags
& SECTION_TLS
)
6985 *f
++ = TLS_SECTION_ASM_FLAG
;
6986 if (HAVE_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
6988 if (flags
& SECTION_RETAIN
)
6990 if (flags
& SECTION_LINK_ORDER
)
6992 #ifdef MACH_DEP_SECTION_ASM_FLAG
6993 if (flags
& SECTION_MACH_DEP
)
6994 *f
++ = MACH_DEP_SECTION_ASM_FLAG
;
6999 fprintf (asm_out_file
, "\t.section\t%s,\"%s\"", name
, flagchars
);
7001 /* default_section_type_flags (above) knows which flags need special
7002 handling here, and sets NOTYPE when none of these apply so that the
7003 assembler's logic for default types can apply to user-chosen
7005 if (!(flags
& SECTION_NOTYPE
))
7010 if (flags
& SECTION_BSS
)
7016 /* On platforms that use "@" as the assembly comment character,
7018 if (strcmp (ASM_COMMENT_START
, "@") == 0)
7020 fprintf (asm_out_file
, format
, type
);
7022 if (flags
& SECTION_ENTSIZE
)
7023 fprintf (asm_out_file
, ",%d", flags
& SECTION_ENTSIZE
);
7024 if (flags
& SECTION_LINK_ORDER
)
7026 /* For now, only section "__patchable_function_entries"
7027 adopts flag SECTION_LINK_ORDER, internal label LPFE*
7028 was emitted in default_print_patchable_function_entry,
7029 just place it here for linked_to section. */
7030 gcc_assert (!strcmp (name
, "__patchable_function_entries"));
7031 fprintf (asm_out_file
, ",");
7033 ASM_GENERATE_INTERNAL_LABEL (buf
, "LPFE",
7034 current_function_funcdef_no
);
7035 assemble_name_raw (asm_out_file
, buf
);
7037 if (HAVE_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
7039 if (TREE_CODE (decl
) == IDENTIFIER_NODE
)
7040 fprintf (asm_out_file
, ",%s,comdat", IDENTIFIER_POINTER (decl
));
7042 fprintf (asm_out_file
, ",%s,comdat",
7043 IDENTIFIER_POINTER (DECL_COMDAT_GROUP (decl
)));
7047 putc ('\n', asm_out_file
);
7051 default_coff_asm_named_section (const char *name
, unsigned int flags
,
7052 tree decl ATTRIBUTE_UNUSED
)
7054 char flagchars
[8], *f
= flagchars
;
7056 if (flags
& SECTION_WRITE
)
7058 if (flags
& SECTION_CODE
)
7062 fprintf (asm_out_file
, "\t.section\t%s,\"%s\"\n", name
, flagchars
);
7066 default_pe_asm_named_section (const char *name
, unsigned int flags
,
7069 default_coff_asm_named_section (name
, flags
, decl
);
7071 if (flags
& SECTION_LINKONCE
)
7073 /* Functions may have been compiled at various levels of
7074 optimization so we can't use `same_size' here.
7075 Instead, have the linker pick one. */
7076 fprintf (asm_out_file
, "\t.linkonce %s\n",
7077 (flags
& SECTION_CODE
? "discard" : "same_size"));
7081 /* The lame default section selector. */
7084 default_select_section (tree decl
, int reloc
,
7085 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
)
7089 if (decl_readonly_section (decl
, reloc
))
7090 return readonly_data_section
;
7092 else if (TREE_CODE (decl
) == CONSTRUCTOR
)
7094 if (! ((flag_pic
&& reloc
)
7095 || !TREE_READONLY (decl
)
7096 || !TREE_CONSTANT (decl
)))
7097 return readonly_data_section
;
7099 else if (TREE_CODE (decl
) == STRING_CST
)
7100 return readonly_data_section
;
7101 else if (! (flag_pic
&& reloc
))
7102 return readonly_data_section
;
7104 return data_section
;
7107 enum section_category
7108 categorize_decl_for_section (const_tree decl
, int reloc
)
7110 enum section_category ret
;
7112 if (TREE_CODE (decl
) == FUNCTION_DECL
)
7114 else if (TREE_CODE (decl
) == STRING_CST
)
7116 if ((flag_sanitize
& SANITIZE_ADDRESS
)
7117 && asan_protect_global (CONST_CAST_TREE (decl
)))
7118 /* or !flag_merge_constants */
7119 return SECCAT_RODATA
;
7121 return SECCAT_RODATA_MERGE_STR
;
7123 else if (VAR_P (decl
))
7125 tree d
= CONST_CAST_TREE (decl
);
7126 if (bss_initializer_p (decl
))
7128 else if (! TREE_READONLY (decl
)
7129 || (DECL_INITIAL (decl
)
7130 && ! TREE_CONSTANT (DECL_INITIAL (decl
))))
7132 /* Here the reloc_rw_mask is not testing whether the section should
7133 be read-only or not, but whether the dynamic link will have to
7134 do something. If so, we wish to segregate the data in order to
7135 minimize cache misses inside the dynamic linker. */
7136 if (reloc
& targetm
.asm_out
.reloc_rw_mask ())
7137 ret
= reloc
== 1 ? SECCAT_DATA_REL_LOCAL
: SECCAT_DATA_REL
;
7141 else if (reloc
& targetm
.asm_out
.reloc_rw_mask ())
7142 ret
= reloc
== 1 ? SECCAT_DATA_REL_RO_LOCAL
: SECCAT_DATA_REL_RO
;
7143 else if (reloc
|| (flag_merge_constants
< 2 && !DECL_MERGEABLE (decl
))
7144 || ((flag_sanitize
& SANITIZE_ADDRESS
)
7145 /* PR 81697: for architectures that use section anchors we
7146 need to ignore DECL_RTL_SET_P (decl) for string constants
7147 inside this asan_protect_global call because otherwise
7148 we'll wrongly put them into SECCAT_RODATA_MERGE_CONST
7149 section, set DECL_RTL (decl) later on and add DECL to
7150 protected globals via successive asan_protect_global
7151 calls. In this scenario we'll end up with wrong
7152 alignment of these strings at runtime and possible ASan
7154 && asan_protect_global (d
, use_object_blocks_p ()
7155 && use_blocks_for_decl_p (d
))))
7156 /* C and C++ don't allow different variables to share the same
7157 location. -fmerge-all-constants allows even that (at the
7158 expense of not conforming). */
7159 ret
= SECCAT_RODATA
;
7160 else if (DECL_INITIAL (decl
)
7161 && TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
)
7162 ret
= SECCAT_RODATA_MERGE_STR_INIT
;
7164 ret
= SECCAT_RODATA_MERGE_CONST
;
7166 else if (TREE_CODE (decl
) == CONSTRUCTOR
)
7168 if ((reloc
& targetm
.asm_out
.reloc_rw_mask ())
7169 || ! TREE_CONSTANT (decl
))
7172 ret
= SECCAT_RODATA
;
7175 ret
= SECCAT_RODATA
;
7177 /* There are no read-only thread-local sections. */
7178 if (VAR_P (decl
) && DECL_THREAD_LOCAL_P (decl
))
7180 /* Note that this would be *just* SECCAT_BSS, except that there's
7181 no concept of a read-only thread-local-data section. */
7182 if (ret
== SECCAT_BSS
7183 || DECL_INITIAL (decl
) == NULL
7184 || (flag_zero_initialized_in_bss
7185 && initializer_zerop (DECL_INITIAL (decl
))))
7191 /* If the target uses small data sections, select it. */
7192 else if (targetm
.in_small_data_p (decl
))
7194 if (ret
== SECCAT_BSS
)
7196 else if (targetm
.have_srodata_section
&& ret
== SECCAT_RODATA
)
7197 ret
= SECCAT_SRODATA
;
7206 decl_readonly_section_1 (enum section_category category
)
7211 case SECCAT_RODATA_MERGE_STR
:
7212 case SECCAT_RODATA_MERGE_STR_INIT
:
7213 case SECCAT_RODATA_MERGE_CONST
:
7214 case SECCAT_SRODATA
:
7222 decl_readonly_section (const_tree decl
, int reloc
)
7224 return decl_readonly_section_1 (categorize_decl_for_section (decl
, reloc
));
7227 /* Select a section based on the above categorization. */
7230 default_elf_select_section (tree decl
, int reloc
,
7231 unsigned HOST_WIDE_INT align
)
7235 switch (categorize_decl_for_section (decl
, reloc
))
7238 /* We're not supposed to be called on FUNCTION_DECLs. */
7241 return readonly_data_section
;
7242 case SECCAT_RODATA_MERGE_STR
:
7243 return mergeable_string_section (decl
, align
, 0);
7244 case SECCAT_RODATA_MERGE_STR_INIT
:
7245 return mergeable_string_section (DECL_INITIAL (decl
), align
, 0);
7246 case SECCAT_RODATA_MERGE_CONST
:
7247 return mergeable_constant_section (DECL_MODE (decl
), align
, 0);
7248 case SECCAT_SRODATA
:
7252 if (DECL_P (decl
) && DECL_PERSISTENT_P (decl
))
7254 sname
= ".persistent";
7257 return data_section
;
7258 case SECCAT_DATA_REL
:
7259 sname
= ".data.rel";
7261 case SECCAT_DATA_REL_LOCAL
:
7262 sname
= ".data.rel.local";
7264 case SECCAT_DATA_REL_RO
:
7265 sname
= ".data.rel.ro";
7267 case SECCAT_DATA_REL_RO_LOCAL
:
7268 sname
= ".data.rel.ro.local";
7277 if (DECL_P (decl
) && DECL_NOINIT_P (decl
))
7296 return get_named_section (decl
, sname
, reloc
);
7299 /* Construct a unique section name based on the decl name and the
7300 categorization performed above. */
7303 default_unique_section (tree decl
, int reloc
)
7305 /* We only need to use .gnu.linkonce if we don't have COMDAT groups. */
7306 bool one_only
= DECL_ONE_ONLY (decl
) && !HAVE_COMDAT_GROUP
;
7307 const char *prefix
, *name
, *linkonce
;
7311 switch (categorize_decl_for_section (decl
, reloc
))
7314 prefix
= one_only
? ".t" : ".text";
7317 case SECCAT_RODATA_MERGE_STR
:
7318 case SECCAT_RODATA_MERGE_STR_INIT
:
7319 case SECCAT_RODATA_MERGE_CONST
:
7320 prefix
= one_only
? ".r" : ".rodata";
7322 case SECCAT_SRODATA
:
7323 prefix
= one_only
? ".s2" : ".sdata2";
7326 prefix
= one_only
? ".d" : ".data";
7327 if (DECL_P (decl
) && DECL_PERSISTENT_P (decl
))
7329 prefix
= one_only
? ".p" : ".persistent";
7333 case SECCAT_DATA_REL
:
7334 prefix
= one_only
? ".d.rel" : ".data.rel";
7336 case SECCAT_DATA_REL_LOCAL
:
7337 prefix
= one_only
? ".d.rel.local" : ".data.rel.local";
7339 case SECCAT_DATA_REL_RO
:
7340 prefix
= one_only
? ".d.rel.ro" : ".data.rel.ro";
7342 case SECCAT_DATA_REL_RO_LOCAL
:
7343 prefix
= one_only
? ".d.rel.ro.local" : ".data.rel.ro.local";
7346 prefix
= one_only
? ".s" : ".sdata";
7349 if (DECL_P (decl
) && DECL_NOINIT_P (decl
))
7351 prefix
= one_only
? ".n" : ".noinit";
7354 prefix
= one_only
? ".b" : ".bss";
7357 prefix
= one_only
? ".sb" : ".sbss";
7360 prefix
= one_only
? ".td" : ".tdata";
7363 prefix
= one_only
? ".tb" : ".tbss";
7369 id
= DECL_ASSEMBLER_NAME (decl
);
7370 ultimate_transparent_alias_target (&id
);
7371 name
= IDENTIFIER_POINTER (id
);
7372 name
= targetm
.strip_name_encoding (name
);
7374 /* If we're using one_only, then there needs to be a .gnu.linkonce
7375 prefix to the section name. */
7376 linkonce
= one_only
? ".gnu.linkonce" : "";
7378 string
= ACONCAT ((linkonce
, prefix
, ".", name
, NULL
));
7380 set_decl_section_name (decl
, string
);
7383 /* Subroutine of compute_reloc_for_rtx for leaf rtxes. */
7386 compute_reloc_for_rtx_1 (const_rtx x
)
7388 switch (GET_CODE (x
))
7391 return SYMBOL_REF_LOCAL_P (x
) ? 1 : 2;
7399 /* Like compute_reloc_for_constant, except for an RTX. The return value
7400 is a mask for which bit 1 indicates a global relocation, and bit 0
7401 indicates a local relocation. Used by default_select_rtx_section
7402 and default_elf_select_rtx_section. */
7405 compute_reloc_for_rtx (const_rtx x
)
7407 switch (GET_CODE (x
))
7411 return compute_reloc_for_rtx_1 (x
);
7416 subrtx_iterator::array_type array
;
7417 FOR_EACH_SUBRTX (iter
, array
, x
, ALL
)
7418 reloc
|= compute_reloc_for_rtx_1 (*iter
);
7428 default_select_rtx_section (machine_mode mode ATTRIBUTE_UNUSED
,
7430 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
)
7432 if (compute_reloc_for_rtx (x
) & targetm
.asm_out
.reloc_rw_mask ())
7433 return data_section
;
7435 return readonly_data_section
;
7439 default_elf_select_rtx_section (machine_mode mode
, rtx x
,
7440 unsigned HOST_WIDE_INT align
)
7442 int reloc
= compute_reloc_for_rtx (x
);
7444 /* ??? Handle small data here somehow. */
7446 if (reloc
& targetm
.asm_out
.reloc_rw_mask ())
7449 return get_named_section (NULL
, ".data.rel.ro.local", 1);
7451 return get_named_section (NULL
, ".data.rel.ro", 3);
7454 return mergeable_constant_section (mode
, align
, 0);
7457 /* Set the generally applicable flags on the SYMBOL_REF for EXP. */
7460 default_encode_section_info (tree decl
, rtx rtl
, int first ATTRIBUTE_UNUSED
)
7465 /* Careful not to prod global register variables. */
7468 symbol
= XEXP (rtl
, 0);
7469 if (GET_CODE (symbol
) != SYMBOL_REF
)
7472 flags
= SYMBOL_REF_FLAGS (symbol
) & SYMBOL_FLAG_HAS_BLOCK_INFO
;
7473 if (TREE_CODE (decl
) == FUNCTION_DECL
)
7474 flags
|= SYMBOL_FLAG_FUNCTION
;
7475 if (targetm
.binds_local_p (decl
))
7476 flags
|= SYMBOL_FLAG_LOCAL
;
7477 if (VAR_P (decl
) && DECL_THREAD_LOCAL_P (decl
))
7478 flags
|= DECL_TLS_MODEL (decl
) << SYMBOL_FLAG_TLS_SHIFT
;
7479 else if (targetm
.in_small_data_p (decl
))
7480 flags
|= SYMBOL_FLAG_SMALL
;
7481 /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names? Without
7482 being PUBLIC, the thing *must* be defined in this translation unit.
7483 Prevent this buglet from being propagated into rtl code as well. */
7484 if (DECL_P (decl
) && DECL_EXTERNAL (decl
) && TREE_PUBLIC (decl
))
7485 flags
|= SYMBOL_FLAG_EXTERNAL
;
7487 SYMBOL_REF_FLAGS (symbol
) = flags
;
7490 /* By default, we do nothing for encode_section_info, so we need not
7491 do anything but discard the '*' marker. */
7494 default_strip_name_encoding (const char *str
)
7496 return str
+ (*str
== '*');
7499 #ifdef ASM_OUTPUT_DEF
7500 /* The default implementation of TARGET_ASM_OUTPUT_ANCHOR. Define the
7501 anchor relative to ".", the current section position. */
7504 default_asm_output_anchor (rtx symbol
)
7506 gcc_checking_assert (TARGET_SUPPORTS_ALIASES
);
7510 sprintf (buffer
, "*. + " HOST_WIDE_INT_PRINT_DEC
,
7511 SYMBOL_REF_BLOCK_OFFSET (symbol
));
7512 ASM_OUTPUT_DEF (asm_out_file
, XSTR (symbol
, 0), buffer
);
7516 /* The default implementation of TARGET_USE_ANCHORS_FOR_SYMBOL_P. */
7519 default_use_anchors_for_symbol_p (const_rtx symbol
)
7522 section
*sect
= SYMBOL_REF_BLOCK (symbol
)->sect
;
7524 /* This function should only be called with non-zero SYMBOL_REF_BLOCK,
7525 furthermore get_block_for_section should not create object blocks
7526 for mergeable sections. */
7527 gcc_checking_assert (sect
&& !(sect
->common
.flags
& SECTION_MERGE
));
7529 /* Don't use anchors for small data sections. The small data register
7530 acts as an anchor for such sections. */
7531 if (sect
->common
.flags
& SECTION_SMALL
)
7534 decl
= SYMBOL_REF_DECL (symbol
);
7535 if (decl
&& DECL_P (decl
))
7537 /* Don't use section anchors for decls that might be defined or
7538 usurped by other modules. */
7539 if (TREE_PUBLIC (decl
) && !decl_binds_to_current_def_p (decl
))
7542 /* Don't use section anchors for decls that will be placed in a
7543 small data section. */
7544 /* ??? Ideally, this check would be redundant with the SECTION_SMALL
7545 one above. The problem is that we only use SECTION_SMALL for
7546 sections that should be marked as small in the section directive. */
7547 if (targetm
.in_small_data_p (decl
))
7550 /* Don't use section anchors for decls that won't fit inside a single
7551 anchor range to reduce the amount of instructions required to refer
7552 to the entire declaration. */
7553 if (DECL_SIZE_UNIT (decl
) == NULL_TREE
7554 || !tree_fits_uhwi_p (DECL_SIZE_UNIT (decl
))
7555 || (tree_to_uhwi (DECL_SIZE_UNIT (decl
))
7556 >= (unsigned HOST_WIDE_INT
) targetm
.max_anchor_offset
))
7563 /* Return true when RESOLUTION indicate that symbol will be bound to the
7564 definition provided by current .o file. */
7567 resolution_to_local_definition_p (enum ld_plugin_symbol_resolution resolution
)
7569 return (resolution
== LDPR_PREVAILING_DEF
7570 || resolution
== LDPR_PREVAILING_DEF_IRONLY_EXP
7571 || resolution
== LDPR_PREVAILING_DEF_IRONLY
);
7574 /* Return true when RESOLUTION indicate that symbol will be bound locally
7575 within current executable or DSO. */
7578 resolution_local_p (enum ld_plugin_symbol_resolution resolution
)
7580 return (resolution
== LDPR_PREVAILING_DEF
7581 || resolution
== LDPR_PREVAILING_DEF_IRONLY
7582 || resolution
== LDPR_PREVAILING_DEF_IRONLY_EXP
7583 || resolution
== LDPR_PREEMPTED_REG
7584 || resolution
== LDPR_PREEMPTED_IR
7585 || resolution
== LDPR_RESOLVED_IR
7586 || resolution
== LDPR_RESOLVED_EXEC
);
7589 /* COMMON_LOCAL_P is true means that the linker can guarantee that an
7590 uninitialized common symbol in the executable will still be defined
7591 (through COPY relocation) in the executable. */
7594 default_binds_local_p_3 (const_tree exp
, bool shlib
, bool weak_dominate
,
7595 bool extern_protected_data
, bool common_local_p
)
7597 /* A non-decl is an entry in the constant pool. */
7601 /* Weakrefs may not bind locally, even though the weakref itself is always
7602 static and therefore local. Similarly, the resolver for ifunc functions
7603 might resolve to a non-local function.
7604 FIXME: We can resolve the weakref case more curefuly by looking at the
7606 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (exp
))
7607 || (!targetm
.ifunc_ref_local_ok ()
7608 && TREE_CODE (exp
) == FUNCTION_DECL
7609 && cgraph_node::get (exp
)
7610 && cgraph_node::get (exp
)->ifunc_resolver
))
7613 /* Static variables are always local. */
7614 if (! TREE_PUBLIC (exp
))
7617 /* With resolution file in hand, take look into resolutions.
7618 We can't just return true for resolved_locally symbols,
7619 because dynamic linking might overwrite symbols
7620 in shared libraries. */
7621 bool resolved_locally
= false;
7623 bool uninited_common
= (DECL_COMMON (exp
)
7624 && (DECL_INITIAL (exp
) == NULL
7626 && DECL_INITIAL (exp
) == error_mark_node
)));
7628 /* A non-external variable is defined locally only if it isn't
7629 uninitialized COMMON variable or common_local_p is true. */
7630 bool defined_locally
= (!DECL_EXTERNAL (exp
)
7631 && (!uninited_common
|| common_local_p
));
7632 if (symtab_node
*node
= symtab_node::get (exp
))
7634 if (node
->in_other_partition
)
7635 defined_locally
= true;
7636 if (node
->can_be_discarded_p ())
7638 else if (resolution_to_local_definition_p (node
->resolution
))
7639 defined_locally
= resolved_locally
= true;
7640 else if (resolution_local_p (node
->resolution
))
7641 resolved_locally
= true;
7643 if (defined_locally
&& weak_dominate
&& !shlib
)
7644 resolved_locally
= true;
7646 /* Undefined weak symbols are never defined locally. */
7647 if (DECL_WEAK (exp
) && !defined_locally
)
7650 /* A symbol is local if the user has said explicitly that it will be,
7651 or if we have a definition for the symbol. We cannot infer visibility
7652 for undefined symbols. */
7653 if (DECL_VISIBILITY (exp
) != VISIBILITY_DEFAULT
7654 && (TREE_CODE (exp
) == FUNCTION_DECL
7655 || !extern_protected_data
7656 || DECL_VISIBILITY (exp
) != VISIBILITY_PROTECTED
)
7657 && (DECL_VISIBILITY_SPECIFIED (exp
) || defined_locally
))
7660 /* If PIC, then assume that any global name can be overridden by
7661 symbols resolved from other modules. */
7665 /* Variables defined outside this object might not be local. */
7666 if (DECL_EXTERNAL (exp
) && !resolved_locally
)
7669 /* Non-dominant weak symbols are not defined locally. */
7670 if (DECL_WEAK (exp
) && !resolved_locally
)
7673 /* Uninitialized COMMON variable may be unified with symbols
7674 resolved from other modules. */
7675 if (uninited_common
&& !resolved_locally
)
7678 /* Otherwise we're left with initialized (or non-common) global data
7679 which is of necessity defined locally. */
7683 /* Assume ELF-ish defaults, since that's pretty much the most liberal
7684 wrt cross-module name binding. */
7687 default_binds_local_p (const_tree exp
)
7689 return default_binds_local_p_3 (exp
, flag_shlib
!= 0, true, false, false);
7692 /* Similar to default_binds_local_p, but common symbol may be local and
7693 extern protected data is non-local. */
7696 default_binds_local_p_2 (const_tree exp
)
7698 return default_binds_local_p_3 (exp
, flag_shlib
!= 0, true, true,
7703 default_binds_local_p_1 (const_tree exp
, int shlib
)
7705 return default_binds_local_p_3 (exp
, shlib
!= 0, false, false, false);
7708 /* Return true when references to DECL must bind to current definition in
7711 The condition is usually equivalent to whether the function binds to the
7712 current module (shared library or executable), that is to binds_local_p.
7713 We use this fact to avoid need for another target hook and implement
7714 the logic using binds_local_p and just special cases where
7715 decl_binds_to_current_def_p is stronger than binds_local_p. In particular
7716 the weak definitions (that can be overwritten at linktime by other
7717 definition from different object file) and when resolution info is available
7718 we simply use the knowledge passed to us by linker plugin. */
7720 decl_binds_to_current_def_p (const_tree decl
)
7722 gcc_assert (DECL_P (decl
));
7723 if (!targetm
.binds_local_p (decl
))
7725 if (!TREE_PUBLIC (decl
))
7728 /* When resolution is available, just use it. */
7729 if (symtab_node
*node
= symtab_node::get (decl
))
7731 if (node
->resolution
!= LDPR_UNKNOWN
7732 && !node
->can_be_discarded_p ())
7733 return resolution_to_local_definition_p (node
->resolution
);
7736 /* Otherwise we have to assume the worst for DECL_WEAK (hidden weaks
7737 binds locally but still can be overwritten), DECL_COMMON (can be merged
7738 with a non-common definition somewhere in the same module) or
7740 This rely on fact that binds_local_p behave as decl_replaceable_p
7741 for all other declaration types. */
7742 if (DECL_WEAK (decl
))
7744 if (DECL_COMMON (decl
)
7745 && (DECL_INITIAL (decl
) == NULL
7746 || (!in_lto_p
&& DECL_INITIAL (decl
) == error_mark_node
)))
7748 if (DECL_EXTERNAL (decl
))
7753 /* A replaceable function or variable is one which may be replaced
7754 at link-time with an entirely different definition, provided that the
7755 replacement has the same type. For example, functions declared
7756 with __attribute__((weak)) on most systems are replaceable.
7757 If SEMANTIC_INTERPOSITION_P is false allow interposition only on
7758 symbols explicitly declared weak.
7760 COMDAT functions are not replaceable, since all definitions of the
7761 function must be equivalent. It is important that COMDAT functions
7762 not be treated as replaceable so that use of C++ template
7763 instantiations is not penalized. */
7766 decl_replaceable_p (tree decl
, bool semantic_interposition_p
)
7768 gcc_assert (DECL_P (decl
));
7769 if (!TREE_PUBLIC (decl
) || DECL_COMDAT (decl
))
7771 if (!semantic_interposition_p
7772 && !DECL_WEAK (decl
))
7774 return !decl_binds_to_current_def_p (decl
);
7777 /* Default function to output code that will globalize a label. A
7778 target must define GLOBAL_ASM_OP or provide its own function to
7779 globalize a label. */
7780 #ifdef GLOBAL_ASM_OP
7782 default_globalize_label (FILE * stream
, const char *name
)
7784 fputs (GLOBAL_ASM_OP
, stream
);
7785 assemble_name (stream
, name
);
7786 putc ('\n', stream
);
7788 #endif /* GLOBAL_ASM_OP */
7790 /* Default function to output code that will globalize a declaration. */
7792 default_globalize_decl_name (FILE * stream
, tree decl
)
7794 const char *name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
7795 targetm
.asm_out
.globalize_label (stream
, name
);
7798 /* Default function to output a label for unwind information. The
7799 default is to do nothing. A target that needs nonlocal labels for
7800 unwind information must provide its own function to do this. */
7802 default_emit_unwind_label (FILE * stream ATTRIBUTE_UNUSED
,
7803 tree decl ATTRIBUTE_UNUSED
,
7804 int for_eh ATTRIBUTE_UNUSED
,
7805 int empty ATTRIBUTE_UNUSED
)
7809 /* Default function to output a label to divide up the exception table.
7810 The default is to do nothing. A target that needs/wants to divide
7811 up the table must provide it's own function to do this. */
7813 default_emit_except_table_label (FILE * stream ATTRIBUTE_UNUSED
)
7817 /* This is how to output an internal numbered label where PREFIX is
7818 the class of label and LABELNO is the number within the class. */
7821 default_generate_internal_label (char *buf
, const char *prefix
,
7822 unsigned long labelno
)
7824 ASM_GENERATE_INTERNAL_LABEL (buf
, prefix
, labelno
);
7827 /* This is how to output an internal numbered label where PREFIX is
7828 the class of label and LABELNO is the number within the class. */
7831 default_internal_label (FILE *stream
, const char *prefix
,
7832 unsigned long labelno
)
7834 char *const buf
= (char *) alloca (40 + strlen (prefix
));
7835 ASM_GENERATE_INTERNAL_LABEL (buf
, prefix
, labelno
);
7836 ASM_OUTPUT_INTERNAL_LABEL (stream
, buf
);
7840 /* The default implementation of ASM_DECLARE_CONSTANT_NAME. */
7843 default_asm_declare_constant_name (FILE *file
, const char *name
,
7844 const_tree exp ATTRIBUTE_UNUSED
,
7845 HOST_WIDE_INT size ATTRIBUTE_UNUSED
)
7847 assemble_label (file
, name
);
7850 /* This is the default behavior at the beginning of a file. It's
7851 controlled by two other target-hook toggles. */
7853 default_file_start (void)
7855 if (targetm
.asm_file_start_app_off
7856 && !(flag_verbose_asm
|| flag_debug_asm
|| flag_dump_rtl_in_asm
))
7857 fputs (ASM_APP_OFF
, asm_out_file
);
7859 if (targetm
.asm_file_start_file_directive
)
7861 /* LTO produced units have no meaningful main_input_filename. */
7863 output_file_directive (asm_out_file
, "<artificial>");
7865 output_file_directive (asm_out_file
, main_input_filename
);
7869 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
7870 which emits a special section directive used to indicate whether or
7871 not this object file needs an executable stack. This is primarily
7872 a GNU extension to ELF but could be used on other targets. */
7874 int trampolines_created
;
7877 file_end_indicate_exec_stack (void)
7879 unsigned int flags
= SECTION_DEBUG
;
7880 if (trampolines_created
)
7881 flags
|= SECTION_CODE
;
7883 switch_to_section (get_section (".note.GNU-stack", flags
, NULL
));
7886 /* Emit a special section directive to indicate that this object file
7887 was compiled with -fsplit-stack. This is used to let the linker
7888 detect calls between split-stack code and non-split-stack code, so
7889 that it can modify the split-stack code to allocate a sufficiently
7890 large stack. We emit another special section if there are any
7891 functions in this file which have the no_split_stack attribute, to
7892 prevent the linker from warning about being unable to convert the
7893 functions if they call non-split-stack code. */
7896 file_end_indicate_split_stack (void)
7898 if (flag_split_stack
)
7900 switch_to_section (get_section (".note.GNU-split-stack", SECTION_DEBUG
,
7902 if (saw_no_split_stack
)
7903 switch_to_section (get_section (".note.GNU-no-split-stack",
7904 SECTION_DEBUG
, NULL
));
7908 /* Output DIRECTIVE (a C string) followed by a newline. This is used as
7909 a get_unnamed_section callback. */
7912 output_section_asm_op (const char *directive
)
7914 fprintf (asm_out_file
, "%s\n", directive
);
7917 /* Emit assembly code to switch to section NEW_SECTION. Do nothing if
7918 the current section is NEW_SECTION. */
7921 switch_to_section (section
*new_section
, tree decl
)
7924 if ((new_section
->common
.flags
& SECTION_NAMED
)
7927 && ((retain_p
= !!lookup_attribute ("retain",
7928 DECL_ATTRIBUTES (decl
)))
7929 != !!(new_section
->common
.flags
& SECTION_RETAIN
)))
7931 /* If the SECTION_RETAIN bit doesn't match, switch to a new
7933 tree used_decl
, no_used_decl
;
7937 new_section
->common
.flags
|= SECTION_RETAIN
;
7939 no_used_decl
= new_section
->named
.decl
;
7943 new_section
->common
.flags
&= ~(SECTION_RETAIN
7944 | SECTION_DECLARED
);
7945 used_decl
= new_section
->named
.decl
;
7946 no_used_decl
= decl
;
7948 if (no_used_decl
!= used_decl
)
7950 warning (OPT_Wattributes
,
7951 "%+qD without %<retain%> attribute and %qD with "
7952 "%<retain%> attribute are placed in a section with "
7953 "the same name", no_used_decl
, used_decl
);
7954 inform (DECL_SOURCE_LOCATION (used_decl
),
7955 "%qD was declared here", used_decl
);
7958 else if (in_section
== new_section
)
7961 in_section
= new_section
;
7963 switch (SECTION_STYLE (new_section
))
7966 targetm
.asm_out
.named_section (new_section
->named
.name
,
7967 new_section
->named
.common
.flags
,
7968 new_section
->named
.decl
);
7971 case SECTION_UNNAMED
:
7972 new_section
->unnamed
.callback (new_section
->unnamed
.data
);
7975 case SECTION_NOSWITCH
:
7980 new_section
->common
.flags
|= SECTION_DECLARED
;
7983 /* If block symbol SYMBOL has not yet been assigned an offset, place
7984 it at the end of its block. */
7987 place_block_symbol (rtx symbol
)
7989 unsigned HOST_WIDE_INT size
, mask
, offset
;
7990 class constant_descriptor_rtx
*desc
;
7991 unsigned int alignment
;
7992 struct object_block
*block
;
7995 gcc_assert (SYMBOL_REF_BLOCK (symbol
));
7996 if (SYMBOL_REF_BLOCK_OFFSET (symbol
) >= 0)
7999 /* Work out the symbol's size and alignment. */
8000 if (CONSTANT_POOL_ADDRESS_P (symbol
))
8002 desc
= SYMBOL_REF_CONSTANT (symbol
);
8003 alignment
= desc
->align
;
8004 size
= GET_MODE_SIZE (desc
->mode
);
8006 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol
))
8008 decl
= SYMBOL_REF_DECL (symbol
);
8009 gcc_checking_assert (DECL_IN_CONSTANT_POOL (decl
));
8010 alignment
= DECL_ALIGN (decl
);
8011 size
= get_constant_size (DECL_INITIAL (decl
));
8012 if ((flag_sanitize
& SANITIZE_ADDRESS
)
8013 && TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
8014 && asan_protect_global (DECL_INITIAL (decl
)))
8016 size
+= asan_red_zone_size (size
);
8017 alignment
= MAX (alignment
,
8018 ASAN_RED_ZONE_SIZE
* BITS_PER_UNIT
);
8023 struct symtab_node
*snode
;
8024 decl
= SYMBOL_REF_DECL (symbol
);
8026 snode
= symtab_node::get (decl
);
8029 rtx target
= DECL_RTL (snode
->ultimate_alias_target ()->decl
);
8031 gcc_assert (MEM_P (target
)
8032 && GET_CODE (XEXP (target
, 0)) == SYMBOL_REF
8033 && SYMBOL_REF_HAS_BLOCK_INFO_P (XEXP (target
, 0)));
8034 target
= XEXP (target
, 0);
8035 place_block_symbol (target
);
8036 SYMBOL_REF_BLOCK_OFFSET (symbol
) = SYMBOL_REF_BLOCK_OFFSET (target
);
8039 alignment
= get_variable_align (decl
);
8040 size
= tree_to_uhwi (DECL_SIZE_UNIT (decl
));
8041 if ((flag_sanitize
& SANITIZE_ADDRESS
)
8042 && asan_protect_global (decl
))
8044 size
+= asan_red_zone_size (size
);
8045 alignment
= MAX (alignment
,
8046 ASAN_RED_ZONE_SIZE
* BITS_PER_UNIT
);
8050 /* Calculate the object's offset from the start of the block. */
8051 block
= SYMBOL_REF_BLOCK (symbol
);
8052 mask
= alignment
/ BITS_PER_UNIT
- 1;
8053 offset
= (block
->size
+ mask
) & ~mask
;
8054 SYMBOL_REF_BLOCK_OFFSET (symbol
) = offset
;
8056 /* Record the block's new alignment and size. */
8057 block
->alignment
= MAX (block
->alignment
, alignment
);
8058 block
->size
= offset
+ size
;
8060 vec_safe_push (block
->objects
, symbol
);
8063 /* Return the anchor that should be used to address byte offset OFFSET
8064 from the first object in BLOCK. MODEL is the TLS model used
8068 get_section_anchor (struct object_block
*block
, HOST_WIDE_INT offset
,
8069 enum tls_model model
)
8072 unsigned int begin
, middle
, end
;
8073 unsigned HOST_WIDE_INT min_offset
, max_offset
, range
, bias
, delta
;
8076 /* Work out the anchor's offset. Use an offset of 0 for the first
8077 anchor so that we don't pessimize the case where we take the address
8078 of a variable at the beginning of the block. This is particularly
8079 useful when a block has only one variable assigned to it.
8081 We try to place anchors RANGE bytes apart, so there can then be
8082 anchors at +/-RANGE, +/-2 * RANGE, and so on, up to the limits of
8083 a ptr_mode offset. With some target settings, the lowest such
8084 anchor might be out of range for the lowest ptr_mode offset;
8085 likewise the highest anchor for the highest offset. Use anchors
8086 at the extreme ends of the ptr_mode range in such cases.
8088 All arithmetic uses unsigned integers in order to avoid
8090 max_offset
= (unsigned HOST_WIDE_INT
) targetm
.max_anchor_offset
;
8091 min_offset
= (unsigned HOST_WIDE_INT
) targetm
.min_anchor_offset
;
8092 range
= max_offset
- min_offset
+ 1;
8097 bias
= HOST_WIDE_INT_1U
<< (GET_MODE_BITSIZE (ptr_mode
) - 1);
8100 delta
= -(unsigned HOST_WIDE_INT
) offset
+ max_offset
;
8101 delta
-= delta
% range
;
8104 offset
= (HOST_WIDE_INT
) (-delta
);
8108 delta
= (unsigned HOST_WIDE_INT
) offset
- min_offset
;
8109 delta
-= delta
% range
;
8110 if (delta
> bias
- 1)
8112 offset
= (HOST_WIDE_INT
) delta
;
8116 /* Do a binary search to see if there's already an anchor we can use.
8117 Set BEGIN to the new anchor's index if not. */
8119 end
= vec_safe_length (block
->anchors
);
8120 while (begin
!= end
)
8122 middle
= (end
+ begin
) / 2;
8123 anchor
= (*block
->anchors
)[middle
];
8124 if (SYMBOL_REF_BLOCK_OFFSET (anchor
) > offset
)
8126 else if (SYMBOL_REF_BLOCK_OFFSET (anchor
) < offset
)
8128 else if (SYMBOL_REF_TLS_MODEL (anchor
) > model
)
8130 else if (SYMBOL_REF_TLS_MODEL (anchor
) < model
)
8136 /* Create a new anchor with a unique label. */
8137 ASM_GENERATE_INTERNAL_LABEL (label
, "LANCHOR", anchor_labelno
++);
8138 anchor
= create_block_symbol (ggc_strdup (label
), block
, offset
);
8139 SYMBOL_REF_FLAGS (anchor
) |= SYMBOL_FLAG_LOCAL
| SYMBOL_FLAG_ANCHOR
;
8140 SYMBOL_REF_FLAGS (anchor
) |= model
<< SYMBOL_FLAG_TLS_SHIFT
;
8142 /* Insert it at index BEGIN. */
8143 vec_safe_insert (block
->anchors
, begin
, anchor
);
8147 /* Output the objects in BLOCK. */
8150 output_object_block (struct object_block
*block
)
8152 class constant_descriptor_rtx
*desc
;
8154 HOST_WIDE_INT offset
;
8158 if (!block
->objects
)
8161 /* Switch to the section and make sure that the first byte is
8162 suitably aligned. */
8163 /* Special case VTV comdat sections similar to assemble_variable. */
8164 if (SECTION_STYLE (block
->sect
) == SECTION_NAMED
8165 && block
->sect
->named
.name
8166 && (strcmp (block
->sect
->named
.name
, ".vtable_map_vars") == 0))
8167 handle_vtv_comdat_section (block
->sect
, block
->sect
->named
.decl
);
8169 switch_to_section (block
->sect
, SYMBOL_REF_DECL ((*block
->objects
)[0]));
8171 gcc_checking_assert (!(block
->sect
->common
.flags
& SECTION_MERGE
));
8172 assemble_align (block
->alignment
);
8174 /* Define the values of all anchors relative to the current section
8176 FOR_EACH_VEC_SAFE_ELT (block
->anchors
, i
, symbol
)
8177 targetm
.asm_out
.output_anchor (symbol
);
8179 /* Output the objects themselves. */
8181 FOR_EACH_VEC_ELT (*block
->objects
, i
, symbol
)
8183 /* Move to the object's offset, padding with zeros if necessary. */
8184 assemble_zeros (SYMBOL_REF_BLOCK_OFFSET (symbol
) - offset
);
8185 offset
= SYMBOL_REF_BLOCK_OFFSET (symbol
);
8186 if (CONSTANT_POOL_ADDRESS_P (symbol
))
8188 desc
= SYMBOL_REF_CONSTANT (symbol
);
8189 /* Pass 1 for align as we have already laid out everything in the block.
8190 So aligning shouldn't be necessary. */
8191 output_constant_pool_1 (desc
, 1);
8192 offset
+= GET_MODE_SIZE (desc
->mode
);
8194 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol
))
8197 decl
= SYMBOL_REF_DECL (symbol
);
8198 assemble_constant_contents (DECL_INITIAL (decl
), XSTR (symbol
, 0),
8199 DECL_ALIGN (decl
), false);
8201 size
= get_constant_size (DECL_INITIAL (decl
));
8203 if ((flag_sanitize
& SANITIZE_ADDRESS
)
8204 && TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
8205 && asan_protect_global (DECL_INITIAL (decl
)))
8207 size
= asan_red_zone_size (size
);
8208 assemble_zeros (size
);
8215 decl
= SYMBOL_REF_DECL (symbol
);
8216 assemble_variable_contents (decl
, XSTR (symbol
, 0), false, false);
8217 size
= tree_to_uhwi (DECL_SIZE_UNIT (decl
));
8219 if ((flag_sanitize
& SANITIZE_ADDRESS
)
8220 && asan_protect_global (decl
))
8222 size
= asan_red_zone_size (size
);
8223 assemble_zeros (size
);
8230 /* A callback for qsort to compare object_blocks. */
8233 output_object_block_compare (const void *x
, const void *y
)
8235 object_block
*p1
= *(object_block
* const*)x
;
8236 object_block
*p2
= *(object_block
* const*)y
;
8238 if (p1
->sect
->common
.flags
& SECTION_NAMED
8239 && !(p2
->sect
->common
.flags
& SECTION_NAMED
))
8242 if (!(p1
->sect
->common
.flags
& SECTION_NAMED
)
8243 && p2
->sect
->common
.flags
& SECTION_NAMED
)
8246 if (p1
->sect
->common
.flags
& SECTION_NAMED
8247 && p2
->sect
->common
.flags
& SECTION_NAMED
)
8248 return strcmp (p1
->sect
->named
.name
, p2
->sect
->named
.name
);
8250 unsigned f1
= p1
->sect
->common
.flags
;
8251 unsigned f2
= p2
->sect
->common
.flags
;
8254 return f1
< f2
? -1 : 1;
8257 /* Output the definitions of all object_blocks. */
8260 output_object_blocks (void)
8262 vec
<object_block
*, va_heap
> v
;
8263 v
.create (object_block_htab
->elements ());
8265 hash_table
<object_block_hasher
>::iterator hi
;
8267 FOR_EACH_HASH_TABLE_ELEMENT (*object_block_htab
, obj
, object_block
*, hi
)
8270 /* Sort them in order to output them in a deterministic manner,
8271 otherwise we may get .rodata sections in different orders with
8273 v
.qsort (output_object_block_compare
);
8275 FOR_EACH_VEC_ELT (v
, i
, obj
)
8276 output_object_block (obj
);
8281 /* This function provides a possible implementation of the
8282 TARGET_ASM_RECORD_GCC_SWITCHES target hook for ELF targets. When triggered
8283 by -frecord-gcc-switches it creates a new mergeable, string section in the
8284 assembler output file called TARGET_ASM_RECORD_GCC_SWITCHES_SECTION which
8285 contains the switches in ASCII format.
8287 FIXME: This code does not correctly handle double quote characters
8288 that appear inside strings, (it strips them rather than preserving them).
8289 FIXME: ASM_OUTPUT_ASCII, as defined in config/elfos.h will not emit NUL
8290 characters - instead it treats them as sub-string separators. Since
8291 we want to emit NUL strings terminators into the object file we have to use
8295 elf_record_gcc_switches (const char *options
)
8297 section
*sec
= get_section (targetm
.asm_out
.record_gcc_switches_section
,
8298 SECTION_DEBUG
| SECTION_MERGE
8299 | SECTION_STRINGS
| (SECTION_ENTSIZE
& 1), NULL
);
8300 switch_to_section (sec
);
8301 ASM_OUTPUT_ASCII (asm_out_file
, options
, strlen (options
) + 1);
8304 /* Emit text to declare externally defined symbols. It is needed to
8305 properly support non-default visibility. */
8307 default_elf_asm_output_external (FILE *file ATTRIBUTE_UNUSED
,
8309 const char *name ATTRIBUTE_UNUSED
)
8311 /* We output the name if and only if TREE_SYMBOL_REFERENCED is
8312 set in order to avoid putting out names that are never really
8313 used. Always output visibility specified in the source. */
8314 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
))
8315 && (DECL_VISIBILITY_SPECIFIED (decl
)
8316 || targetm
.binds_local_p (decl
)))
8317 maybe_assemble_visibility (decl
);
8320 /* The default hook for TARGET_ASM_OUTPUT_SOURCE_FILENAME. */
8323 default_asm_output_source_filename (FILE *file
, const char *name
)
8325 #ifdef ASM_OUTPUT_SOURCE_FILENAME
8326 ASM_OUTPUT_SOURCE_FILENAME (file
, name
);
8328 fprintf (file
, "\t.file\t");
8329 output_quoted_string (file
, name
);
8334 /* Output a file name in the form wanted by System V. */
8337 output_file_directive (FILE *asm_file
, const char *input_name
)
8342 if (input_name
== NULL
)
8343 input_name
= "<stdin>";
8345 input_name
= remap_debug_filename (input_name
);
8347 len
= strlen (input_name
);
8348 na
= input_name
+ len
;
8350 /* NA gets INPUT_NAME sans directory names. */
8351 while (na
> input_name
)
8353 if (IS_DIR_SEPARATOR (na
[-1]))
8358 targetm
.asm_out
.output_source_filename (asm_file
, na
);
8361 /* Create a DEBUG_EXPR_DECL / DEBUG_EXPR pair from RTL expression
8364 make_debug_expr_from_rtl (const_rtx exp
)
8366 tree ddecl
= make_node (DEBUG_EXPR_DECL
), type
;
8367 machine_mode mode
= GET_MODE (exp
);
8370 DECL_ARTIFICIAL (ddecl
) = 1;
8371 if (REG_P (exp
) && REG_EXPR (exp
))
8372 type
= TREE_TYPE (REG_EXPR (exp
));
8373 else if (MEM_P (exp
) && MEM_EXPR (exp
))
8374 type
= TREE_TYPE (MEM_EXPR (exp
));
8377 if (type
&& TYPE_MODE (type
) == mode
)
8378 TREE_TYPE (ddecl
) = type
;
8380 TREE_TYPE (ddecl
) = lang_hooks
.types
.type_for_mode (mode
, 1);
8381 SET_DECL_MODE (ddecl
, mode
);
8382 dval
= gen_rtx_DEBUG_EXPR (mode
);
8383 DEBUG_EXPR_TREE_DECL (dval
) = ddecl
;
8384 SET_DECL_RTL (ddecl
, dval
);
8388 #ifdef ELF_ASCII_ESCAPES
8389 /* Default ASM_OUTPUT_LIMITED_STRING for ELF targets. */
8392 default_elf_asm_output_limited_string (FILE *f
, const char *s
)
8397 fputs (STRING_ASM_OP
, f
);
8402 escape
= ELF_ASCII_ESCAPES
[c
];
8410 putc ('0'+((c
>>6)&7), f
);
8411 putc ('0'+((c
>>3)&7), f
);
8412 putc ('0'+(c
&7), f
);
8425 /* Default ASM_OUTPUT_ASCII for ELF targets. */
8428 default_elf_asm_output_ascii (FILE *f
, const char *s
, unsigned int len
)
8430 const char *limit
= s
+ len
;
8431 const char *last_null
= NULL
;
8432 unsigned bytes_in_chunk
= 0;
8436 for (; s
< limit
; s
++)
8440 if (bytes_in_chunk
>= 60)
8449 for (p
= s
; p
< limit
&& *p
!= '\0'; p
++)
8456 if (p
< limit
&& (p
- s
) <= (long) ELF_STRING_LIMIT
)
8458 if (bytes_in_chunk
> 0)
8465 default_elf_asm_output_limited_string (f
, s
);
8470 if (bytes_in_chunk
== 0)
8471 fputs (ASCII_DATA_ASM_OP
"\"", f
);
8474 escape
= ELF_ASCII_ESCAPES
[c
];
8483 putc ('0'+((c
>>6)&7), f
);
8484 putc ('0'+((c
>>3)&7), f
);
8485 putc ('0'+(c
&7), f
);
8486 bytes_in_chunk
+= 4;
8491 bytes_in_chunk
+= 2;
8498 if (bytes_in_chunk
> 0)
8506 static GTY(()) section
*elf_init_array_section
;
8507 static GTY(()) section
*elf_fini_array_section
;
8510 get_elf_initfini_array_priority_section (int priority
,
8514 if (priority
!= DEFAULT_INIT_PRIORITY
)
8517 sprintf (buf
, "%s.%.5u",
8518 constructor_p
? ".init_array" : ".fini_array",
8520 sec
= get_section (buf
, SECTION_WRITE
| SECTION_NOTYPE
, NULL_TREE
);
8526 if (elf_init_array_section
== NULL
)
8527 elf_init_array_section
8528 = get_section (".init_array",
8529 SECTION_WRITE
| SECTION_NOTYPE
, NULL_TREE
);
8530 sec
= elf_init_array_section
;
8534 if (elf_fini_array_section
== NULL
)
8535 elf_fini_array_section
8536 = get_section (".fini_array",
8537 SECTION_WRITE
| SECTION_NOTYPE
, NULL_TREE
);
8538 sec
= elf_fini_array_section
;
8544 /* Use .init_array section for constructors. */
8547 default_elf_init_array_asm_out_constructor (rtx symbol
, int priority
)
8549 section
*sec
= get_elf_initfini_array_priority_section (priority
,
8551 assemble_addr_to_section (symbol
, sec
);
8554 /* Use .fini_array section for destructors. */
8557 default_elf_fini_array_asm_out_destructor (rtx symbol
, int priority
)
8559 section
*sec
= get_elf_initfini_array_priority_section (priority
,
8561 assemble_addr_to_section (symbol
, sec
);
8564 /* Default TARGET_ASM_OUTPUT_IDENT hook.
8566 This is a bit of a cheat. The real default is a no-op, but this
8567 hook is the default for all targets with a .ident directive. */
8570 default_asm_output_ident_directive (const char *ident_str
)
8572 const char *ident_asm_op
= "\t.ident\t";
8574 /* If we are still in the front end, do not write out the string
8575 to asm_out_file. Instead, add a fake top-level asm statement.
8576 This allows the front ends to use this hook without actually
8577 writing to asm_out_file, to handle #ident or Pragma Ident. */
8578 if (symtab
->state
== PARSING
)
8580 char *buf
= ACONCAT ((ident_asm_op
, "\"", ident_str
, "\"\n", NULL
));
8581 symtab
->finalize_toplevel_asm (build_string (strlen (buf
), buf
));
8584 fprintf (asm_out_file
, "%s\"%s\"\n", ident_asm_op
, ident_str
);
8587 /* Switch to a COMDAT section with COMDAT name of decl.
8589 FIXME: resolve_unique_section needs to deal better with
8590 decls with both DECL_SECTION_NAME and DECL_ONE_ONLY. Once
8591 that is fixed, this if-else statement can be replaced with
8592 a single call to "switch_to_section (sect)". */
8595 switch_to_comdat_section (section
*sect
, tree decl
)
8597 #if defined (OBJECT_FORMAT_ELF)
8598 targetm
.asm_out
.named_section (sect
->named
.name
,
8599 sect
->named
.common
.flags
8604 /* Neither OBJECT_FORMAT_PE, nor OBJECT_FORMAT_COFF is set here.
8605 Therefore the following check is used.
8606 In case a the target is PE or COFF a comdat group section
8607 is created, e.g. .vtable_map_vars$foo. The linker places
8608 everything in .vtable_map_vars at the end.
8610 A fix could be made in
8611 gcc/config/i386/winnt.cc: i386_pe_unique_section. */
8616 if (TREE_CODE (decl
) == IDENTIFIER_NODE
)
8617 name
= ACONCAT ((sect
->named
.name
, "$",
8618 IDENTIFIER_POINTER (decl
), NULL
));
8620 name
= ACONCAT ((sect
->named
.name
, "$",
8621 IDENTIFIER_POINTER (DECL_COMDAT_GROUP (decl
)),
8624 targetm
.asm_out
.named_section (name
,
8625 sect
->named
.common
.flags
8631 switch_to_section (sect
);
8635 /* This function ensures that vtable_map variables are not only
8636 in the comdat section, but that each variable has its own unique
8637 comdat name. Without this the variables end up in the same section
8638 with a single comdat name. */
8641 handle_vtv_comdat_section (section
*sect
, const_tree decl ATTRIBUTE_UNUSED
)
8643 switch_to_comdat_section(sect
, DECL_NAME (decl
));
8646 #include "gt-varasm.h"