vect: Ensure both NITERSM1 and NITERS are INTEGER_CSTs or neither of them [PR113210]
[official-gcc.git] / gcc / varasm.cc
blob1a869ae458a65bb28b067d871325cc5c705efee3
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
9 version.
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
14 for more details.
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. */
28 #include "config.h"
29 #include "system.h"
30 #include "coretypes.h"
31 #include "backend.h"
32 #include "target.h"
33 #include "rtl.h"
34 #include "tree.h"
35 #include "predict.h"
36 #include "memmodel.h"
37 #include "tm_p.h"
38 #include "stringpool.h"
39 #include "regs.h"
40 #include "emit-rtl.h"
41 #include "cgraph.h"
42 #include "diagnostic-core.h"
43 #include "fold-const.h"
44 #include "stor-layout.h"
45 #include "varasm.h"
46 #include "version.h"
47 #include "flags.h"
48 #include "stmt.h"
49 #include "expr.h"
50 #include "expmed.h"
51 #include "optabs.h"
52 #include "output.h"
53 #include "langhooks.h"
54 #include "debug.h"
55 #include "common/common-target.h"
56 #include "stringpool.h"
57 #include "attribs.h"
58 #include "asan.h"
59 #include "rtl-iter.h"
60 #include "file-prefix-map.h" /* remap_debug_filename() */
61 #include "alloc-pool.h"
62 #include "toplev.h"
63 #include "opts.h"
64 #include "asan.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;
73 class addr_const;
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,
92 this holds 0. */
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);
109 #endif
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)
123 ATTRIBUTE_UNUSED;
124 #endif
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.
146 May be null. */
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. */
161 section *in_section;
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. */
211 bool
212 section_hasher::equal (section *old, const char *new_name)
214 return strcmp (old->named.name, new_name) == 0;
217 hashval_t
218 section_hasher::hash (section *old)
220 return htab_hash_string (old->named.name);
223 /* Return a hash value for section SECT. */
225 static hashval_t
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. */
235 inline bool
236 object_block_hasher::equal (object_block *old, const section *new_section)
238 return old->sect == new_section;
241 hashval_t
242 object_block_hasher::hash (object_block *old)
244 return hash_section (old->sect);
247 /* Return a new unnamed section with the given fields. */
249 section *
250 get_unnamed_section (unsigned int flags, void (*callback) (const char *),
251 const char *data)
253 section *sect;
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;
262 return sect;
265 /* Return a SECTION_NOSWITCH section with the given fields. */
267 static section *
268 get_noswitch_section (unsigned int flags, noswitch_section_callback callback)
270 section *sect;
272 sect = ggc_alloc<section> ();
273 sect->noswitch.common.flags = flags | SECTION_NOSWITCH;
274 sect->noswitch.callback = callback;
276 return sect;
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. */
288 section *
289 get_section (const char *name, unsigned int flags, tree decl,
290 bool not_existing)
292 section *sect, **slot;
294 slot = section_htab->find_slot_with_hash (name, htab_hash_string (name),
295 INSERT);
296 flags |= SECTION_NAMED;
297 if (decl != nullptr
298 && DECL_P (decl)
299 && lookup_attribute ("retain", DECL_ATTRIBUTES (decl)))
300 flags |= SECTION_RETAIN;
301 if (*slot == NULL)
303 sect = ggc_alloc<section> ();
304 sect->named.common.flags = flags;
305 sect->named.name = ggc_strdup (name);
306 sect->named.decl = decl;
307 *slot = sect;
309 else
311 if (not_existing)
312 internal_error ("section already exists: %qs", name);
314 sect = *slot;
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
335 relocations. */
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);
345 return sect;
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))
351 return sect;
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);
360 else
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);
367 else
368 error ("section type conflict");
369 /* Make sure we don't error about one section multiple times. */
370 sect->common.flags |= SECTION_OVERRIDE;
373 return sect;
376 /* Return true if the current compilation mode benefits from having
377 objects grouped into blocks. */
379 static bool
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;
398 if (sect == NULL)
399 return NULL;
401 if (sect->common.flags & SECTION_MERGE)
402 return NULL;
404 object_block **slot
405 = object_block_htab->find_slot_with_hash (sect, hash_section (sect),
406 INSERT);
407 block = *slot;
408 if (block == NULL)
410 block = ggc_cleared_alloc<object_block> ();
411 block->sect = sect;
412 *slot = block;
414 return 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. */
421 static rtx
422 create_block_symbol (const char *label, struct object_block *block,
423 HOST_WIDE_INT offset)
425 rtx symbol;
426 unsigned int size;
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;
443 return symbol;
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. */
453 section *
454 get_named_section (tree decl, const char *name, int reloc)
456 unsigned int flags;
458 if (name == NULL)
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. */
470 static bool
471 set_implicit_section (struct symtab_node *n, void *data ATTRIBUTE_UNUSED)
473 n->implicit_section = true;
474 return false;
477 /* If required, set DECL_SECTION_NAME to a unique name. */
479 void
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. */
505 static void
506 asm_output_aligned_bss (FILE *file, tree decl ATTRIBUTE_UNUSED,
507 const char *name, unsigned HOST_WIDE_INT size,
508 int align)
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);
515 #else
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);
522 #endif
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
528 null DECLs. */
530 static section *
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);
537 else
538 return text_section;
540 #endif
542 /* Return section for TEXT_SECTION_NAME if DECL or DECL_SECTION_NAME (DECL)
543 is NULL.
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". */
550 section *
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;
561 char *name, *buffer;
563 name = (char *) alloca (strlen (dsn) + 1);
564 memcpy (name, dsn,
565 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)
574 const char *name;
576 /* Do not try to split gnu_linkonce functions. This gets somewhat
577 slipperly. */
578 if (DECL_COMDAT_GROUP (decl) && !HAVE_COMDAT_GROUP)
579 return NULL;
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, ".",
583 name, NULL)), 0);
585 else
586 return NULL;
588 return get_named_section (decl, text_section_name, 0);
591 /* Choose named function section based on its frequency. */
593 section *
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. */
600 if (decl
601 && symtab_node::get (decl)->implicit_section)
602 return NULL;
603 #endif
605 if (!flag_reorder_functions
606 || !targetm_common.have_named_sections)
607 return NULL;
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
616 startup only. */
617 if (!in_lto_p
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);
621 else
622 return 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. */
630 switch (freq)
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);
636 /* FALLTHRU */
637 default:
638 return 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. */
650 static section *
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;
657 if (decl)
659 struct cgraph_node *node = cgraph_node::get (decl);
661 if (node)
663 freq = node->frequency;
664 startup = node->only_called_at_startup;
665 exit = node->only_called_at_exit;
668 if (force_cold)
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,
677 startup, exit);
678 if (section)
679 return section;
680 return get_named_section (decl, NULL, 0);
682 else
683 return targetm.asm_out.select_section
684 (decl, freq == NODE_FREQUENCY_UNLIKELY_EXECUTED,
685 symtab_node::get (decl)->definition_alignment ());
686 #else
687 if (targetm.asm_out.function_section)
688 section = targetm.asm_out.function_section (decl, freq, startup, exit);
689 if (section)
690 return section;
691 return hot_function_section (decl);
692 #endif
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. */
700 section *
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
713 into account. */
715 section *
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. */
723 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. */
734 bool
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). */
743 void
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. */
753 section *
754 default_function_rodata_section (tree decl, bool relocatable)
756 const char* sname;
757 unsigned int flags;
759 flags = 0;
761 if (relocatable)
763 sname = ".data.rel.ro.local";
764 flags = (SECTION_WRITE | SECTION_RELRO);
766 else
767 sname = ".rodata";
769 if (decl && DECL_SECTION_NAME (decl))
771 const char *name = DECL_SECTION_NAME (decl);
773 if (DECL_COMDAT_GROUP (decl) && HAVE_COMDAT_GROUP)
775 const char *dot;
776 size_t len;
777 char* rname;
779 dot = strchr (name + 1, '.');
780 if (!dot)
781 dot = name;
782 len = strlen (dot) + strlen (sname) + 1;
783 rname = (char *) alloca (len);
785 strcpy (rname, sname);
786 strcat (rname, dot);
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."))
794 size_t len;
795 char *rname;
797 if (relocatable)
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);
805 else
807 len = strlen (name) + 1;
808 rname = (char *) alloca (len);
810 memcpy (rname, name, len);
811 rname[14] = 'r';
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);
828 if (relocatable)
829 return get_section (sname, flags, decl);
830 else
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. */
838 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. */
846 static const char *
847 function_mergeable_rodata_prefix (void)
849 section *s = targetm.asm_out.function_rodata_section (current_function_decl,
850 false);
851 if (SECTION_STYLE (s) == SECTION_NAMED)
852 return s->named.name;
853 else
854 return targetm.asm_out.mergeable_rodata_prefix;
857 /* Return the section to use for string merging. */
859 static section *
860 mergeable_string_section (tree decl ATTRIBUTE_UNUSED,
861 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
862 unsigned int flags ATTRIBUTE_UNUSED)
864 HOST_WIDE_INT len;
866 if (HAVE_GAS_SHF_MERGE && flag_merge_constants
867 && TREE_CODE (decl) == STRING_CST
868 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
869 && align <= 256
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;
875 const char *str;
876 HOST_WIDE_INT i;
877 int j, unit;
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)
887 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')
900 break;
901 if (j == unit)
902 break;
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. */
919 section *
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
925 && mode != VOIDmode
926 && mode != BLKmode
927 && known_le (GET_MODE_BITSIZE (mode), align)
928 && align >= 8
929 && align <= 256
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. */
945 static const char *
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);
951 #endif
952 if (name[0] == '%' || name[0] == '#')
953 name++;
954 return name;
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
959 it. */
960 void
961 set_user_assembler_name (tree decl, const char *name)
963 char *starred = (char *) alloca (strlen (name) + 2);
964 starred[0] = '*';
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. */
982 *pnregs = 1;
984 if (asmspec != 0)
986 int i;
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]))
994 break;
995 if (asmspec[0] != 0 && i < 0)
997 i = atoi (asmspec);
998 if (i < FIRST_PSEUDO_REGISTER && i >= 0 && reg_names[i][0])
999 return i;
1000 else
1001 return -2;
1004 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1005 if (reg_names[i][0]
1006 && ! strcmp (asmspec, strip_reg_name (reg_names[i])))
1007 return i;
1009 #ifdef OVERLAPPING_REGISTER_NAMES
1011 static const struct
1013 const char *const name;
1014 const int number;
1015 const int nregs;
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"))
1042 return -4;
1044 if (!strcmp (asmspec, "cc"))
1045 return -3;
1047 return -2;
1050 return -1;
1054 decode_reg_name (const char *name)
1056 int count;
1057 return decode_reg_name_and_count (name, &count);
1061 /* Return true if DECL's initializer is suitable for a BSS section. */
1063 bool
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
1073 && !in_lto_p)
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
1078 variable. */
1079 && !DECL_PERSISTENT_P (decl))));
1082 /* Compute the alignment of variable specified by DECL.
1083 DONT_OUTPUT_DATA is from assemble_variable. */
1085 void
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
1113 TLS variables. */
1114 if (! DECL_THREAD_LOCAL_P (decl) || data_abi_align <= BITS_PER_WORD)
1115 align = data_abi_align;
1116 #endif
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
1129 is too precious. */
1130 if (! DECL_THREAD_LOCAL_P (decl) || data_align <= BITS_PER_WORD)
1131 align = data_align;
1132 #endif
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. */
1156 static unsigned int
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
1162 everything. */
1163 if (DECL_USER_ALIGN (decl) || !TREE_PUBLIC (decl))
1164 return align;
1166 #ifdef DATA_ABI_ALIGNMENT
1167 if (DECL_THREAD_LOCAL_P (decl))
1168 align = DATA_ABI_ALIGNMENT (TREE_TYPE (decl), align);
1169 #endif
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
1181 is too precious. */
1182 if (! DECL_THREAD_LOCAL_P (decl) || data_align <= BITS_PER_WORD)
1183 align = data_align;
1184 #endif
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
1193 is too precious. */
1194 if (! DECL_THREAD_LOCAL_P (decl) || const_align <= BITS_PER_WORD)
1195 align = const_align;
1199 return 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)
1209 int reloc;
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));
1215 else
1216 reloc = 0;
1218 return reloc;
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. */
1225 section *
1226 get_variable_section (tree decl, bool prefer_noswitch_p)
1228 addr_space_t as = ADDR_SPACE_GENERIC;
1229 int reloc;
1230 varpool_node *vnode = varpool_node::get (decl);
1231 if (vnode)
1233 vnode = vnode->ultimate_alias_target ();
1234 decl = vnode->decl;
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. */
1241 if (vnode)
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",
1270 sect->named.name);
1271 DECL_INITIAL (decl) = error_mark_node;
1273 return sect;
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)
1299 section *sect;
1301 if (VAR_P (decl))
1303 /* The object must be defined in this translation unit. */
1304 if (DECL_EXTERNAL (decl))
1305 return NULL;
1307 /* There's no point using object blocks for something that is
1308 isolated by definition. */
1309 if (DECL_COMDAT_GROUP (decl))
1310 return NULL;
1313 /* We can only calculate block offsets if the decl has a known
1314 constant size. */
1315 if (DECL_SIZE_UNIT (decl) == NULL)
1316 return NULL;
1317 if (!tree_fits_uhwi_p (DECL_SIZE_UNIT (decl)))
1318 return NULL;
1320 /* Find out which section should contain DECL. We cannot put it into
1321 an object block if it requires a standalone definition. */
1322 if (VAR_P (decl))
1323 align_variable (decl, 0);
1324 sect = get_variable_section (decl, true);
1325 if (SECTION_STYLE (sect) == SECTION_NOSWITCH)
1326 return NULL;
1328 if (bool (lookup_attribute ("retain", DECL_ATTRIBUTES (decl)))
1329 != bool (sect->common.flags & SECTION_RETAIN))
1330 return NULL;
1332 return get_block_for_section (sect);
1335 /* Make sure block symbol SYMBOL is in block BLOCK. */
1337 static void
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. */
1349 static bool
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
1356 each DECL. */
1357 if (flag_data_sections)
1358 return false;
1360 /* Only data DECLs can be placed into object blocks. */
1361 if (!VAR_P (decl) && TREE_CODE (decl) != CONST_DECL)
1362 return false;
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
1366 for those. */
1367 if (DECL_INITIAL (decl) == decl)
1368 return false;
1370 /* If this decl is an alias, then we don't want to emit a
1371 definition. */
1372 if (VAR_P (decl)
1373 && (snode = symtab_node::get (decl)) != NULL
1374 && snode->alias)
1375 return false;
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
1385 chain. */
1387 static inline tree
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));
1398 *alias = target;
1401 return target;
1404 /* Return true if REGNUM is mentioned in ELIMINABLE_REGS as a from
1405 register number. */
1407 static bool
1408 eliminable_regno_p (int regnum)
1410 static const struct
1412 const int from;
1413 const int to;
1414 } eliminables[] = ELIMINABLE_REGS;
1415 for (size_t i = 0; i < ARRAY_SIZE (eliminables); i++)
1416 if (regnum == eliminables[i].from)
1417 return true;
1418 return false;
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. */
1430 void
1431 make_decl_rtl (tree decl)
1433 const char *name = 0;
1434 int reg_number;
1435 tree id;
1436 rtx x;
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))
1463 return;
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. */
1477 if (MEM_P (x)
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));
1482 return;
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));
1490 return;
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",
1513 decl);
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",
1522 decl);
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
1527 #endif
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. */
1533 else
1535 int nregs;
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
1559 else. */
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);
1563 #endif
1564 nregs = hard_regno_nregs (reg_number, mode);
1565 while (nregs > 0)
1566 globalize_reg (decl, reg_number + --nregs);
1569 /* As a register variable, it has no section. */
1570 return;
1572 /* Avoid internal errors from invalid register
1573 specifications. */
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
1577 decl now. */
1578 DECL_EXTERNAL (decl) = 1;
1579 return;
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);
1592 #endif
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. */
1601 if (VAR_P (decl)
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);
1614 else
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
1641 rtl. */
1644 make_decl_rtl_for_debug (tree decl)
1646 unsigned int save_aliasing_flag;
1647 rtx rtl;
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
1657 new set. */
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;
1667 return rtl;
1670 /* Output a string of literal assembler code
1671 for an `asm' keyword used between functions. */
1673 void
1674 assemble_asm (tree string)
1676 const char *p;
1677 app_enable ();
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. */
1687 void
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. */
1697 section *
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. */
1702 char buf[18];
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);
1714 void
1715 default_named_section_asm_out_destructor (rtx symbol, int priority)
1717 section *sec;
1719 if (priority != DEFAULT_INIT_PRIORITY)
1720 sec = get_cdtor_priority_section (priority,
1721 /*constructor_p=*/false);
1722 else
1723 sec = get_section (".dtors", SECTION_WRITE, NULL);
1725 assemble_addr_to_section (symbol, sec);
1728 #ifdef DTORS_SECTION_ASM_OP
1729 void
1730 default_dtor_section_asm_out_destructor (rtx symbol,
1731 int priority ATTRIBUTE_UNUSED)
1733 assemble_addr_to_section (symbol, dtors_section);
1735 #endif
1737 void
1738 default_named_section_asm_out_constructor (rtx symbol, int priority)
1740 section *sec;
1742 if (priority != DEFAULT_INIT_PRIORITY)
1743 sec = get_cdtor_priority_section (priority,
1744 /*constructor_p=*/true);
1745 else
1746 sec = get_section (".ctors", SECTION_WRITE, NULL);
1748 assemble_addr_to_section (symbol, sec);
1751 #ifdef CTORS_SECTION_ASM_OP
1752 void
1753 default_ctor_section_asm_out_constructor (rtx symbol,
1754 int priority ATTRIBUTE_UNUSED)
1756 assemble_addr_to_section (symbol, ctors_section);
1758 #endif
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
1764 start. */
1766 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1767 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1768 #endif
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. */
1774 void
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
1785 && (!VAR_P (decl)
1786 || (DECL_COMMON (decl)
1787 && (DECL_INITIAL (decl) == 0
1788 || DECL_INITIAL (decl) == error_mark_node)))))
1789 return;
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;
1796 if (!*t)
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
1807 function. */
1809 void
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
1818 being accurate. */
1819 first_function_block_is_cold = (node
1820 && node->frequency
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. */
1829 const char *
1830 get_fnname_from_decl (tree decl)
1832 rtx x = DECL_RTL (decl);
1833 gcc_assert (MEM_P (x));
1834 x = XEXP (x, 0);
1835 gcc_assert (GET_CODE (x) == SYMBOL_REF);
1836 return XSTR (x, 0);
1839 /* Output function label, possibly with accompanying metadata. No additional
1840 code or data is output after the label. */
1842 void
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 /* Do not notify ASAN when called from, e.g., code_end (). */
1850 && cfun)
1851 asan_function_start ();
1854 /* Output assembler code for the constant pool of a function and associated
1855 with defining the name of the function. DECL describes the function.
1856 NAME is the function's name. For the constant pool, we use the current
1857 constant pool data. */
1859 void
1860 assemble_start_function (tree decl, const char *fnname)
1862 int align;
1863 char tmp_label[100];
1864 bool hot_label_written = false;
1866 if (crtl->has_bb_partition)
1868 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LHOTB", const_labelno);
1869 crtl->subsections.hot_section_label = ggc_strdup (tmp_label);
1870 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LCOLDB", const_labelno);
1871 crtl->subsections.cold_section_label = ggc_strdup (tmp_label);
1872 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LHOTE", const_labelno);
1873 crtl->subsections.hot_section_end_label = ggc_strdup (tmp_label);
1874 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LCOLDE", const_labelno);
1875 crtl->subsections.cold_section_end_label = ggc_strdup (tmp_label);
1876 const_labelno++;
1877 cold_function_name = NULL_TREE;
1879 else
1881 crtl->subsections.hot_section_label = NULL;
1882 crtl->subsections.cold_section_label = NULL;
1883 crtl->subsections.hot_section_end_label = NULL;
1884 crtl->subsections.cold_section_end_label = NULL;
1887 /* The following code does not need preprocessing in the assembler. */
1889 app_disable ();
1891 if (CONSTANT_POOL_BEFORE_FUNCTION)
1892 output_constant_pool (fnname, decl);
1894 align = symtab_node::get (decl)->definition_alignment ();
1896 /* Make sure the not and cold text (code) sections are properly
1897 aligned. This is necessary here in the case where the function
1898 has both hot and cold sections, because we don't want to re-set
1899 the alignment when the section switch happens mid-function. */
1901 if (crtl->has_bb_partition)
1903 first_function_block_is_cold = false;
1905 switch_to_section (unlikely_text_section ());
1906 assemble_align (align);
1907 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.cold_section_label);
1909 /* When the function starts with a cold section, we need to explicitly
1910 align the hot section and write out the hot section label.
1911 But if the current function is a thunk, we do not have a CFG. */
1912 if (!cfun->is_thunk
1913 && BB_PARTITION (ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb) == BB_COLD_PARTITION)
1915 switch_to_section (text_section);
1916 assemble_align (align);
1917 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.hot_section_label);
1918 hot_label_written = true;
1919 first_function_block_is_cold = true;
1921 in_cold_section_p = first_function_block_is_cold;
1925 /* Switch to the correct text section for the start of the function. */
1927 switch_to_section (function_section (decl), decl);
1928 if (crtl->has_bb_partition && !hot_label_written)
1929 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.hot_section_label);
1931 /* Tell assembler to move to target machine's alignment for functions. */
1932 align = floor_log2 (align / BITS_PER_UNIT);
1933 if (align > 0)
1935 ASM_OUTPUT_ALIGN (asm_out_file, align);
1938 /* Handle a user-specified function alignment.
1939 Note that we still need to align to DECL_ALIGN, as above,
1940 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1941 if (! DECL_USER_ALIGN (decl)
1942 && align_functions.levels[0].log > align
1943 && optimize_function_for_speed_p (cfun))
1945 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1946 int align_log = align_functions.levels[0].log;
1947 #endif
1948 int max_skip = align_functions.levels[0].maxskip;
1949 if (flag_limit_function_alignment && crtl->max_insn_address > 0
1950 && max_skip >= crtl->max_insn_address)
1951 max_skip = crtl->max_insn_address - 1;
1953 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1954 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file, align_log, max_skip);
1955 if (max_skip == align_functions.levels[0].maxskip)
1956 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file,
1957 align_functions.levels[1].log,
1958 align_functions.levels[1].maxskip);
1959 #else
1960 ASM_OUTPUT_ALIGN (asm_out_file, align_functions.levels[0].log);
1961 #endif
1964 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1965 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file, fnname);
1966 #endif
1968 if (!DECL_IGNORED_P (decl))
1969 (*debug_hooks->begin_function) (decl);
1971 /* Make function name accessible from other files, if appropriate. */
1973 if (TREE_PUBLIC (decl))
1975 notice_global_symbol (decl);
1977 globalize_decl (decl);
1979 maybe_assemble_visibility (decl);
1982 if (DECL_PRESERVE_P (decl))
1983 targetm.asm_out.mark_decl_preserved (fnname);
1985 unsigned short patch_area_size = crtl->patch_area_size;
1986 unsigned short patch_area_entry = crtl->patch_area_entry;
1988 /* Emit the patching area before the entry label, if any. */
1989 if (patch_area_entry > 0)
1990 targetm.asm_out.print_patchable_function_entry (asm_out_file,
1991 patch_area_entry, true);
1993 /* Do any machine/system dependent processing of the function name. */
1994 #ifdef ASM_DECLARE_FUNCTION_NAME
1995 ASM_DECLARE_FUNCTION_NAME (asm_out_file, fnname, current_function_decl);
1996 #else
1997 /* Standard thing is just output label for the function. */
1998 ASM_OUTPUT_FUNCTION_LABEL (asm_out_file, fnname, current_function_decl);
1999 #endif /* ASM_DECLARE_FUNCTION_NAME */
2001 /* And the area after the label. Record it if we haven't done so yet. */
2002 if (patch_area_size > patch_area_entry)
2003 targetm.asm_out.print_patchable_function_entry (asm_out_file,
2004 patch_area_size
2005 - patch_area_entry,
2006 patch_area_entry == 0);
2008 if (lookup_attribute ("no_split_stack", DECL_ATTRIBUTES (decl)))
2009 saw_no_split_stack = true;
2012 /* Output assembler code associated with defining the size of the
2013 function. DECL describes the function. NAME is the function's name. */
2015 void
2016 assemble_end_function (tree decl, const char *fnname ATTRIBUTE_UNUSED)
2018 #ifdef ASM_DECLARE_FUNCTION_SIZE
2019 /* We could have switched section in the middle of the function. */
2020 if (crtl->has_bb_partition)
2021 switch_to_section (function_section (decl));
2022 ASM_DECLARE_FUNCTION_SIZE (asm_out_file, fnname, decl);
2023 #endif
2024 if (! CONSTANT_POOL_BEFORE_FUNCTION)
2026 output_constant_pool (fnname, decl);
2027 switch_to_section (function_section (decl)); /* need to switch back */
2029 /* Output labels for end of hot/cold text sections (to be used by
2030 debug info.) */
2031 if (crtl->has_bb_partition)
2033 section *save_text_section;
2035 save_text_section = in_section;
2036 switch_to_section (unlikely_text_section ());
2037 #ifdef ASM_DECLARE_COLD_FUNCTION_SIZE
2038 if (cold_function_name != NULL_TREE)
2039 ASM_DECLARE_COLD_FUNCTION_SIZE (asm_out_file,
2040 IDENTIFIER_POINTER (cold_function_name),
2041 decl);
2042 #endif
2043 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.cold_section_end_label);
2044 if (first_function_block_is_cold)
2045 switch_to_section (text_section);
2046 else
2047 switch_to_section (function_section (decl));
2048 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.hot_section_end_label);
2049 switch_to_section (save_text_section);
2053 /* Assemble code to leave SIZE bytes of zeros. */
2055 void
2056 assemble_zeros (unsigned HOST_WIDE_INT size)
2058 /* Do no output if -fsyntax-only. */
2059 if (flag_syntax_only)
2060 return;
2062 #ifdef ASM_NO_SKIP_IN_TEXT
2063 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
2064 so we must output 0s explicitly in the text section. */
2065 if (ASM_NO_SKIP_IN_TEXT && (in_section->common.flags & SECTION_CODE) != 0)
2067 unsigned HOST_WIDE_INT i;
2068 for (i = 0; i < size; i++)
2069 assemble_integer (const0_rtx, 1, BITS_PER_UNIT, 1);
2071 else
2072 #endif
2073 if (size > 0)
2074 ASM_OUTPUT_SKIP (asm_out_file, size);
2077 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
2079 void
2080 assemble_align (unsigned int align)
2082 if (align > BITS_PER_UNIT)
2084 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
2088 /* Assemble a string constant with the specified C string as contents. */
2090 void
2091 assemble_string (const char *p, int size)
2093 int pos = 0;
2094 int maximum = 2000;
2096 /* If the string is very long, split it up. */
2098 while (pos < size)
2100 int thissize = size - pos;
2101 if (thissize > maximum)
2102 thissize = maximum;
2104 ASM_OUTPUT_ASCII (asm_out_file, p, thissize);
2106 pos += thissize;
2107 p += thissize;
2112 /* A noswitch_section_callback for lcomm_section. */
2114 static bool
2115 emit_local (tree decl ATTRIBUTE_UNUSED,
2116 const char *name ATTRIBUTE_UNUSED,
2117 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
2118 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
2120 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
2121 unsigned int align = symtab_node::get (decl)->definition_alignment ();
2122 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name,
2123 size, align);
2124 return true;
2125 #elif defined ASM_OUTPUT_ALIGNED_LOCAL
2126 unsigned int align = symtab_node::get (decl)->definition_alignment ();
2127 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, align);
2128 return true;
2129 #else
2130 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
2131 return false;
2132 #endif
2135 /* A noswitch_section_callback for bss_noswitch_section. */
2137 #if defined ASM_OUTPUT_ALIGNED_BSS
2138 static bool
2139 emit_bss (tree decl ATTRIBUTE_UNUSED,
2140 const char *name ATTRIBUTE_UNUSED,
2141 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
2142 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
2144 ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size,
2145 get_variable_align (decl));
2146 return true;
2148 #endif
2150 /* A noswitch_section_callback for comm_section. */
2152 static bool
2153 emit_common (tree decl ATTRIBUTE_UNUSED,
2154 const char *name ATTRIBUTE_UNUSED,
2155 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
2156 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
2158 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
2159 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name,
2160 size, get_variable_align (decl));
2161 return true;
2162 #elif defined ASM_OUTPUT_ALIGNED_COMMON
2163 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size,
2164 get_variable_align (decl));
2165 return true;
2166 #else
2167 ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded);
2168 return false;
2169 #endif
2172 /* A noswitch_section_callback for tls_comm_section. */
2174 static bool
2175 emit_tls_common (tree decl ATTRIBUTE_UNUSED,
2176 const char *name ATTRIBUTE_UNUSED,
2177 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
2178 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
2180 #ifdef ASM_OUTPUT_TLS_COMMON
2181 ASM_OUTPUT_TLS_COMMON (asm_out_file, decl, name, size);
2182 return true;
2183 #else
2184 sorry ("thread-local COMMON data not implemented");
2185 return true;
2186 #endif
2189 /* Assemble DECL given that it belongs in SECTION_NOSWITCH section SECT.
2190 NAME is the name of DECL's SYMBOL_REF. */
2192 static void
2193 assemble_noswitch_variable (tree decl, const char *name, section *sect,
2194 unsigned int align)
2196 unsigned HOST_WIDE_INT size, rounded;
2198 size = tree_to_uhwi (DECL_SIZE_UNIT (decl));
2199 rounded = size;
2201 if ((flag_sanitize & SANITIZE_ADDRESS) && asan_protect_global (decl))
2202 size += asan_red_zone_size (size);
2204 /* Don't allocate zero bytes of common,
2205 since that means "undefined external" in the linker. */
2206 if (size == 0)
2207 rounded = 1;
2209 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2210 so that each uninitialized object starts on such a boundary. */
2211 rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
2212 rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
2213 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
2215 if (!sect->noswitch.callback (decl, name, size, rounded)
2216 && (unsigned HOST_WIDE_INT) (align / BITS_PER_UNIT) > rounded)
2217 error ("requested alignment for %q+D is greater than "
2218 "implemented alignment of %wu", decl, rounded);
2221 /* A subroutine of assemble_variable. Output the label and contents of
2222 DECL, whose address is a SYMBOL_REF with name NAME. DONT_OUTPUT_DATA
2223 is as for assemble_variable. */
2225 static void
2226 assemble_variable_contents (tree decl, const char *name,
2227 bool dont_output_data, bool merge_strings)
2229 /* Do any machine/system dependent processing of the object. */
2230 #ifdef ASM_DECLARE_OBJECT_NAME
2231 last_assemble_variable_decl = decl;
2232 ASM_DECLARE_OBJECT_NAME (asm_out_file, name, decl);
2233 #else
2234 /* Standard thing is just output label for the object. */
2235 ASM_OUTPUT_LABEL (asm_out_file, name);
2236 #endif /* ASM_DECLARE_OBJECT_NAME */
2238 if (!dont_output_data)
2240 /* Caller is supposed to use varpool_get_constructor when it wants
2241 to output the body. */
2242 gcc_assert (!in_lto_p || DECL_INITIAL (decl) != error_mark_node);
2243 if (DECL_INITIAL (decl)
2244 && DECL_INITIAL (decl) != error_mark_node
2245 && !initializer_zerop (DECL_INITIAL (decl)))
2246 /* Output the actual data. */
2247 output_constant (DECL_INITIAL (decl),
2248 tree_to_uhwi (DECL_SIZE_UNIT (decl)),
2249 get_variable_align (decl),
2250 false, merge_strings);
2251 else
2252 /* Leave space for it. */
2253 assemble_zeros (tree_to_uhwi (DECL_SIZE_UNIT (decl)));
2254 targetm.asm_out.decl_end ();
2258 /* Write out assembly for the variable DECL, which is not defined in
2259 the current translation unit. */
2260 void
2261 assemble_undefined_decl (tree decl)
2263 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
2264 targetm.asm_out.assemble_undefined_decl (asm_out_file, name, decl);
2267 /* Assemble everything that is needed for a variable or function declaration.
2268 Not used for automatic variables, and not used for function definitions.
2269 Should not be called for variables of incomplete structure type.
2271 TOP_LEVEL is nonzero if this variable has file scope.
2272 AT_END is nonzero if this is the special handling, at end of compilation,
2273 to define things that have had only tentative definitions.
2274 DONT_OUTPUT_DATA if nonzero means don't actually output the
2275 initial value (that will be done by the caller). */
2277 void
2278 assemble_variable (tree decl, int top_level ATTRIBUTE_UNUSED,
2279 int at_end ATTRIBUTE_UNUSED, int dont_output_data)
2281 const char *name;
2282 rtx decl_rtl, symbol;
2283 section *sect;
2284 unsigned int align;
2285 bool asan_protected = false;
2287 /* This function is supposed to handle VARIABLES. Ensure we have one. */
2288 gcc_assert (VAR_P (decl));
2290 /* Emulated TLS had better not get this far. */
2291 gcc_checking_assert (targetm.have_tls || !DECL_THREAD_LOCAL_P (decl));
2293 last_assemble_variable_decl = 0;
2295 /* Normally no need to say anything here for external references,
2296 since assemble_external is called by the language-specific code
2297 when a declaration is first seen. */
2299 if (DECL_EXTERNAL (decl))
2300 return;
2302 /* Do nothing for global register variables. */
2303 if (DECL_RTL_SET_P (decl) && REG_P (DECL_RTL (decl)))
2305 TREE_ASM_WRITTEN (decl) = 1;
2306 return;
2309 /* If type was incomplete when the variable was declared,
2310 see if it is complete now. */
2312 if (DECL_SIZE (decl) == 0)
2313 layout_decl (decl, 0);
2315 /* Still incomplete => don't allocate it; treat the tentative defn
2316 (which is what it must have been) as an `extern' reference. */
2318 if (!dont_output_data && DECL_SIZE (decl) == 0)
2320 error ("storage size of %q+D isn%'t known", decl);
2321 TREE_ASM_WRITTEN (decl) = 1;
2322 return;
2325 /* The first declaration of a variable that comes through this function
2326 decides whether it is global (in C, has external linkage)
2327 or local (in C, has internal linkage). So do nothing more
2328 if this function has already run. */
2330 if (TREE_ASM_WRITTEN (decl))
2331 return;
2333 /* Make sure targetm.encode_section_info is invoked before we set
2334 ASM_WRITTEN. */
2335 decl_rtl = DECL_RTL (decl);
2337 TREE_ASM_WRITTEN (decl) = 1;
2339 /* Do no output if -fsyntax-only. */
2340 if (flag_syntax_only)
2341 return;
2343 if (! dont_output_data
2344 && ! valid_constant_size_p (DECL_SIZE_UNIT (decl)))
2346 error ("size of variable %q+D is too large", decl);
2347 return;
2350 gcc_assert (MEM_P (decl_rtl));
2351 gcc_assert (GET_CODE (XEXP (decl_rtl, 0)) == SYMBOL_REF);
2352 symbol = XEXP (decl_rtl, 0);
2354 /* If this symbol belongs to the tree constant pool, output the constant
2355 if it hasn't already been written. */
2356 if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
2358 tree decl = SYMBOL_REF_DECL (symbol);
2359 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl)))
2360 output_constant_def_contents (symbol);
2361 return;
2364 app_disable ();
2366 name = XSTR (symbol, 0);
2367 if (TREE_PUBLIC (decl) && DECL_NAME (decl))
2368 notice_global_symbol (decl);
2370 /* Compute the alignment of this data. */
2372 align_variable (decl, dont_output_data);
2374 if ((flag_sanitize & SANITIZE_ADDRESS)
2375 && asan_protect_global (decl))
2377 asan_protected = true;
2378 SET_DECL_ALIGN (decl, MAX (DECL_ALIGN (decl),
2379 ASAN_RED_ZONE_SIZE * BITS_PER_UNIT));
2382 set_mem_align (decl_rtl, DECL_ALIGN (decl));
2384 align = get_variable_align (decl);
2386 if (TREE_PUBLIC (decl))
2387 maybe_assemble_visibility (decl);
2389 if (DECL_PRESERVE_P (decl))
2390 targetm.asm_out.mark_decl_preserved (name);
2392 /* First make the assembler name(s) global if appropriate. */
2393 sect = get_variable_section (decl, false);
2394 if (TREE_PUBLIC (decl)
2395 && (sect->common.flags & SECTION_COMMON) == 0)
2396 globalize_decl (decl);
2398 /* Output any data that we will need to use the address of. */
2399 if (DECL_INITIAL (decl) && DECL_INITIAL (decl) != error_mark_node)
2400 output_addressed_constants (DECL_INITIAL (decl), 0);
2402 /* dbxout.cc needs to know this. */
2403 if (sect && (sect->common.flags & SECTION_CODE) != 0)
2404 DECL_IN_TEXT_SECTION (decl) = 1;
2406 /* If the decl is part of an object_block, make sure that the decl
2407 has been positioned within its block, but do not write out its
2408 definition yet. output_object_blocks will do that later. */
2409 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol) && SYMBOL_REF_BLOCK (symbol))
2411 gcc_assert (!dont_output_data);
2412 place_block_symbol (symbol);
2414 else if (SECTION_STYLE (sect) == SECTION_NOSWITCH)
2415 assemble_noswitch_variable (decl, name, sect, align);
2416 else
2418 /* Special-case handling of vtv comdat sections. */
2419 if (SECTION_STYLE (sect) == SECTION_NAMED
2420 && (strcmp (sect->named.name, ".vtable_map_vars") == 0))
2421 handle_vtv_comdat_section (sect, decl);
2422 else
2423 switch_to_section (sect, decl);
2424 if (align > BITS_PER_UNIT)
2425 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
2426 assemble_variable_contents (decl, name, dont_output_data,
2427 (sect->common.flags & SECTION_MERGE)
2428 && (sect->common.flags & SECTION_STRINGS));
2429 if (asan_protected)
2431 unsigned HOST_WIDE_INT int size
2432 = tree_to_uhwi (DECL_SIZE_UNIT (decl));
2433 assemble_zeros (asan_red_zone_size (size));
2438 /* Return true if type TYPE contains any pointers. */
2440 static bool
2441 contains_pointers_p (tree type)
2443 switch (TREE_CODE (type))
2445 case POINTER_TYPE:
2446 case REFERENCE_TYPE:
2447 /* I'm not sure whether OFFSET_TYPE needs this treatment,
2448 so I'll play safe and return 1. */
2449 case OFFSET_TYPE:
2450 return true;
2452 case RECORD_TYPE:
2453 case UNION_TYPE:
2454 case QUAL_UNION_TYPE:
2456 tree fields;
2457 /* For a type that has fields, see if the fields have pointers. */
2458 for (fields = TYPE_FIELDS (type); fields; fields = DECL_CHAIN (fields))
2459 if (TREE_CODE (fields) == FIELD_DECL
2460 && contains_pointers_p (TREE_TYPE (fields)))
2461 return true;
2462 return false;
2465 case ARRAY_TYPE:
2466 /* An array type contains pointers if its element type does. */
2467 return contains_pointers_p (TREE_TYPE (type));
2469 default:
2470 return false;
2474 /* We delay assemble_external processing until
2475 the compilation unit is finalized. This is the best we can do for
2476 right now (i.e. stage 3 of GCC 4.0) - the right thing is to delay
2477 it all the way to final. See PR 17982 for further discussion. */
2478 static GTY(()) tree pending_assemble_externals;
2480 /* A similar list of pending libcall symbols. We only want to declare
2481 symbols that are actually used in the final assembly. */
2482 static GTY(()) rtx pending_libcall_symbols;
2484 #ifdef ASM_OUTPUT_EXTERNAL
2485 /* Some targets delay some output to final using TARGET_ASM_FILE_END.
2486 As a result, assemble_external can be called after the list of externals
2487 is processed and the pointer set destroyed. */
2488 static bool pending_assemble_externals_processed;
2490 /* Avoid O(external_decls**2) lookups in the pending_assemble_externals
2491 TREE_LIST in assemble_external. */
2492 static hash_set<tree> *pending_assemble_externals_set;
2494 /* True if DECL is a function decl for which no out-of-line copy exists.
2495 It is assumed that DECL's assembler name has been set. */
2497 static bool
2498 incorporeal_function_p (tree decl)
2500 if (TREE_CODE (decl) == FUNCTION_DECL && fndecl_built_in_p (decl))
2502 const char *name;
2504 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
2505 && ALLOCA_FUNCTION_CODE_P (DECL_FUNCTION_CODE (decl)))
2506 return true;
2508 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2509 /* Atomic or sync builtins which have survived this far will be
2510 resolved externally and therefore are not incorporeal. */
2511 if (startswith (name, "__builtin_"))
2512 return true;
2514 return false;
2517 /* Actually do the tests to determine if this is necessary, and invoke
2518 ASM_OUTPUT_EXTERNAL. */
2519 static void
2520 assemble_external_real (tree decl)
2522 rtx rtl = DECL_RTL (decl);
2524 if (MEM_P (rtl) && GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF
2525 && !SYMBOL_REF_USED (XEXP (rtl, 0))
2526 && !incorporeal_function_p (decl))
2528 /* Some systems do require some output. */
2529 SYMBOL_REF_USED (XEXP (rtl, 0)) = 1;
2530 ASM_OUTPUT_EXTERNAL (asm_out_file, decl, XSTR (XEXP (rtl, 0), 0));
2533 #endif
2535 void
2536 process_pending_assemble_externals (void)
2538 #ifdef ASM_OUTPUT_EXTERNAL
2539 tree list;
2540 for (list = pending_assemble_externals; list; list = TREE_CHAIN (list))
2541 assemble_external_real (TREE_VALUE (list));
2543 for (rtx list = pending_libcall_symbols; list; list = XEXP (list, 1))
2545 rtx symbol = XEXP (list, 0);
2546 tree id = get_identifier (XSTR (symbol, 0));
2547 if (TREE_SYMBOL_REFERENCED (id))
2548 targetm.asm_out.external_libcall (symbol);
2551 pending_assemble_externals = 0;
2552 pending_assemble_externals_processed = true;
2553 pending_libcall_symbols = NULL_RTX;
2554 delete pending_assemble_externals_set;
2555 #endif
2558 /* This TREE_LIST contains any weak symbol declarations waiting
2559 to be emitted. */
2560 static GTY(()) tree weak_decls;
2562 /* Output something to declare an external symbol to the assembler,
2563 and qualifiers such as weakness. (Most assemblers don't need
2564 extern declaration, so we normally output nothing.) Do nothing if
2565 DECL is not external. */
2567 void
2568 assemble_external (tree decl ATTRIBUTE_UNUSED)
2570 /* Make sure that the ASM_OUT_FILE is open.
2571 If it's not, we should not be calling this function. */
2572 gcc_assert (asm_out_file);
2574 /* In a perfect world, the following condition would be true.
2575 Sadly, the Go front end emit assembly *from the front end*,
2576 bypassing the call graph. See PR52739. Fix before GCC 4.8. */
2577 #if 0
2578 /* This function should only be called if we are expanding, or have
2579 expanded, to RTL.
2580 Ideally, only final.cc would be calling this function, but it is
2581 not clear whether that would break things somehow. See PR 17982
2582 for further discussion. */
2583 gcc_assert (state == EXPANSION
2584 || state == FINISHED);
2585 #endif
2587 if (!DECL_P (decl) || !DECL_EXTERNAL (decl) || !TREE_PUBLIC (decl))
2588 return;
2590 /* We want to output annotation for weak and external symbols at
2591 very last to check if they are references or not. */
2593 if (TARGET_SUPPORTS_WEAK
2594 && DECL_WEAK (decl)
2595 /* TREE_STATIC is a weird and abused creature which is not
2596 generally the right test for whether an entity has been
2597 locally emitted, inlined or otherwise not-really-extern, but
2598 for declarations that can be weak, it happens to be
2599 match. */
2600 && !TREE_STATIC (decl)
2601 && lookup_attribute ("weak", DECL_ATTRIBUTES (decl))
2602 && value_member (decl, weak_decls) == NULL_TREE)
2603 weak_decls = tree_cons (NULL, decl, weak_decls);
2605 #ifdef ASM_OUTPUT_EXTERNAL
2606 if (pending_assemble_externals_processed)
2608 assemble_external_real (decl);
2609 return;
2612 if (! pending_assemble_externals_set->add (decl))
2613 pending_assemble_externals = tree_cons (NULL, decl,
2614 pending_assemble_externals);
2615 #endif
2618 /* Similar, for calling a library function FUN. */
2620 void
2621 assemble_external_libcall (rtx fun)
2623 /* Declare library function name external when first used, if nec. */
2624 if (! SYMBOL_REF_USED (fun))
2626 #ifdef ASM_OUTPUT_EXTERNAL
2627 gcc_assert (!pending_assemble_externals_processed);
2628 #endif
2629 SYMBOL_REF_USED (fun) = 1;
2630 /* Make sure the libcall symbol is in the symtab so any
2631 reference to it will mark its tree node as referenced, via
2632 assemble_name_resolve. These are eventually emitted, if
2633 used, in process_pending_assemble_externals. */
2634 get_identifier (XSTR (fun, 0));
2635 pending_libcall_symbols = gen_rtx_EXPR_LIST (VOIDmode, fun,
2636 pending_libcall_symbols);
2640 /* Assemble a label named NAME. */
2642 void
2643 assemble_label (FILE *file, const char *name)
2645 ASM_OUTPUT_LABEL (file, name);
2648 /* Set the symbol_referenced flag for ID. */
2649 void
2650 mark_referenced (tree id)
2652 TREE_SYMBOL_REFERENCED (id) = 1;
2655 /* Set the symbol_referenced flag for DECL and notify callgraph. */
2656 void
2657 mark_decl_referenced (tree decl)
2659 if (TREE_CODE (decl) == FUNCTION_DECL)
2661 /* Extern inline functions don't become needed when referenced.
2662 If we know a method will be emitted in other TU and no new
2663 functions can be marked reachable, just use the external
2664 definition. */
2665 struct cgraph_node *node = cgraph_node::get_create (decl);
2666 if (!DECL_EXTERNAL (decl)
2667 && !node->definition)
2668 node->mark_force_output ();
2670 else if (VAR_P (decl))
2672 varpool_node *node = varpool_node::get_create (decl);
2673 /* C++ frontend use mark_decl_references to force COMDAT variables
2674 to be output that might appear dead otherwise. */
2675 node->force_output = true;
2677 /* else do nothing - we can get various sorts of CST nodes here,
2678 which do not need to be marked. */
2682 /* Output to FILE (an assembly file) a reference to NAME. If NAME
2683 starts with a *, the rest of NAME is output verbatim. Otherwise
2684 NAME is transformed in a target-specific way (usually by the
2685 addition of an underscore). */
2687 void
2688 assemble_name_raw (FILE *file, const char *name)
2690 if (name[0] == '*')
2691 fputs (&name[1], file);
2692 else
2693 ASM_OUTPUT_LABELREF (file, name);
2696 /* Return NAME that should actually be emitted, looking through
2697 transparent aliases. If NAME refers to an entity that is also
2698 represented as a tree (like a function or variable), mark the entity
2699 as referenced. */
2700 const char *
2701 assemble_name_resolve (const char *name)
2703 const char *real_name = targetm.strip_name_encoding (name);
2704 tree id = maybe_get_identifier (real_name);
2706 if (id)
2708 tree id_orig = id;
2710 mark_referenced (id);
2711 ultimate_transparent_alias_target (&id);
2712 if (id != id_orig)
2713 name = IDENTIFIER_POINTER (id);
2714 gcc_assert (! TREE_CHAIN (id));
2717 return name;
2720 /* Like assemble_name_raw, but should be used when NAME might refer to
2721 an entity that is also represented as a tree (like a function or
2722 variable). If NAME does refer to such an entity, that entity will
2723 be marked as referenced. */
2725 void
2726 assemble_name (FILE *file, const char *name)
2728 assemble_name_raw (file, assemble_name_resolve (name));
2731 /* Allocate SIZE bytes writable static space with a gensym name
2732 and return an RTX to refer to its address. */
2735 assemble_static_space (unsigned HOST_WIDE_INT size)
2737 char name[17];
2738 const char *namestring;
2739 rtx x;
2741 ASM_GENERATE_INTERNAL_LABEL (name, "LF", const_labelno);
2742 ++const_labelno;
2743 namestring = ggc_strdup (name);
2745 x = gen_rtx_SYMBOL_REF (Pmode, namestring);
2746 SYMBOL_REF_FLAGS (x) = SYMBOL_FLAG_LOCAL;
2748 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
2749 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name, size,
2750 BIGGEST_ALIGNMENT);
2751 #else
2752 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
2753 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, BIGGEST_ALIGNMENT);
2754 #else
2756 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2757 so that each uninitialized object starts on such a boundary. */
2758 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
2759 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
2760 = ((size + (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1)
2761 / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
2762 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
2763 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
2765 #endif
2766 #endif
2767 return x;
2770 /* Assemble the static constant template for function entry trampolines.
2771 This is done at most once per compilation.
2772 Returns an RTX for the address of the template. */
2774 static GTY(()) rtx initial_trampoline;
2777 assemble_trampoline_template (void)
2779 char label[256];
2780 const char *name;
2781 int align;
2782 rtx symbol;
2784 gcc_assert (targetm.asm_out.trampoline_template != NULL);
2786 if (initial_trampoline)
2787 return initial_trampoline;
2789 /* By default, put trampoline templates in read-only data section. */
2791 #ifdef TRAMPOLINE_SECTION
2792 switch_to_section (TRAMPOLINE_SECTION);
2793 #else
2794 switch_to_section (readonly_data_section);
2795 #endif
2797 /* Write the assembler code to define one. */
2798 align = floor_log2 (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT);
2799 if (align > 0)
2800 ASM_OUTPUT_ALIGN (asm_out_file, align);
2802 targetm.asm_out.internal_label (asm_out_file, "LTRAMP", 0);
2803 targetm.asm_out.trampoline_template (asm_out_file);
2805 /* Record the rtl to refer to it. */
2806 ASM_GENERATE_INTERNAL_LABEL (label, "LTRAMP", 0);
2807 name = ggc_strdup (label);
2808 symbol = gen_rtx_SYMBOL_REF (Pmode, name);
2809 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
2811 initial_trampoline = gen_const_mem (BLKmode, symbol);
2812 set_mem_align (initial_trampoline, TRAMPOLINE_ALIGNMENT);
2813 set_mem_size (initial_trampoline, TRAMPOLINE_SIZE);
2815 return initial_trampoline;
2818 /* A and B are either alignments or offsets. Return the minimum alignment
2819 that may be assumed after adding the two together. */
2821 static inline unsigned
2822 min_align (unsigned int a, unsigned int b)
2824 return least_bit_hwi (a | b);
2827 /* Return the assembler directive for creating a given kind of integer
2828 object. SIZE is the number of bytes in the object and ALIGNED_P
2829 indicates whether it is known to be aligned. Return NULL if the
2830 assembly dialect has no such directive.
2832 The returned string should be printed at the start of a new line and
2833 be followed immediately by the object's initial value. */
2835 const char *
2836 integer_asm_op (int size, int aligned_p)
2838 struct asm_int_op *ops;
2840 if (aligned_p)
2841 ops = &targetm.asm_out.aligned_op;
2842 else
2843 ops = &targetm.asm_out.unaligned_op;
2845 switch (size)
2847 case 1:
2848 return targetm.asm_out.byte_op;
2849 case 2:
2850 return ops->hi;
2851 case 3:
2852 return ops->psi;
2853 case 4:
2854 return ops->si;
2855 case 5:
2856 case 6:
2857 case 7:
2858 return ops->pdi;
2859 case 8:
2860 return ops->di;
2861 case 9:
2862 case 10:
2863 case 11:
2864 case 12:
2865 case 13:
2866 case 14:
2867 case 15:
2868 return ops->pti;
2869 case 16:
2870 return ops->ti;
2871 default:
2872 return NULL;
2876 /* Use directive OP to assemble an integer object X. Print OP at the
2877 start of the line, followed immediately by the value of X. */
2879 void
2880 assemble_integer_with_op (const char *op, rtx x)
2882 fputs (op, asm_out_file);
2883 output_addr_const (asm_out_file, x);
2884 fputc ('\n', asm_out_file);
2887 /* The default implementation of the asm_out.integer target hook. */
2889 bool
2890 default_assemble_integer (rtx x ATTRIBUTE_UNUSED,
2891 unsigned int size ATTRIBUTE_UNUSED,
2892 int aligned_p ATTRIBUTE_UNUSED)
2894 const char *op = integer_asm_op (size, aligned_p);
2895 /* Avoid GAS bugs for large values. Specifically negative values whose
2896 absolute value fits in a bfd_vma, but not in a bfd_signed_vma. */
2897 if (size > UNITS_PER_WORD && size > POINTER_SIZE_UNITS)
2898 return false;
2899 return op && (assemble_integer_with_op (op, x), true);
2902 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
2903 the alignment of the integer in bits. Return 1 if we were able to output
2904 the constant, otherwise 0. We must be able to output the constant,
2905 if FORCE is nonzero. */
2907 bool
2908 assemble_integer (rtx x, unsigned int size, unsigned int align, int force)
2910 int aligned_p;
2912 aligned_p = (align >= MIN (size * BITS_PER_UNIT, BIGGEST_ALIGNMENT));
2914 /* See if the target hook can handle this kind of object. */
2915 if (targetm.asm_out.integer (x, size, aligned_p))
2916 return true;
2918 /* If the object is a multi-byte one, try splitting it up. Split
2919 it into words it if is multi-word, otherwise split it into bytes. */
2920 if (size > 1)
2922 machine_mode omode, imode;
2923 unsigned int subalign;
2924 unsigned int subsize, i;
2925 enum mode_class mclass;
2927 subsize = size > UNITS_PER_WORD? UNITS_PER_WORD : 1;
2928 subalign = MIN (align, subsize * BITS_PER_UNIT);
2929 if (GET_CODE (x) == CONST_FIXED)
2930 mclass = GET_MODE_CLASS (GET_MODE (x));
2931 else
2932 mclass = MODE_INT;
2934 omode = mode_for_size (subsize * BITS_PER_UNIT, mclass, 0).require ();
2935 imode = mode_for_size (size * BITS_PER_UNIT, mclass, 0).require ();
2937 for (i = 0; i < size; i += subsize)
2939 rtx partial = simplify_subreg (omode, x, imode, i);
2940 if (!partial || !assemble_integer (partial, subsize, subalign, 0))
2941 break;
2943 if (i == size)
2944 return true;
2946 /* If we've printed some of it, but not all of it, there's no going
2947 back now. */
2948 gcc_assert (!i);
2951 gcc_assert (!force);
2953 return false;
2956 /* Assemble the floating-point constant D into an object of size MODE. ALIGN
2957 is the alignment of the constant in bits. If REVERSE is true, D is output
2958 in reverse storage order. */
2960 void
2961 assemble_real (REAL_VALUE_TYPE d, scalar_float_mode mode, unsigned int align,
2962 bool reverse)
2964 long data[4] = {0, 0, 0, 0};
2965 int bitsize, nelts, nunits, units_per;
2966 rtx elt;
2968 /* This is hairy. We have a quantity of known size. real_to_target
2969 will put it into an array of *host* longs, 32 bits per element
2970 (even if long is more than 32 bits). We need to determine the
2971 number of array elements that are occupied (nelts) and the number
2972 of *target* min-addressable units that will be occupied in the
2973 object file (nunits). We cannot assume that 32 divides the
2974 mode's bitsize (size * BITS_PER_UNIT) evenly.
2976 size * BITS_PER_UNIT is used here to make sure that padding bits
2977 (which might appear at either end of the value; real_to_target
2978 will include the padding bits in its output array) are included. */
2980 nunits = GET_MODE_SIZE (mode);
2981 bitsize = nunits * BITS_PER_UNIT;
2982 nelts = CEIL (bitsize, 32);
2983 units_per = 32 / BITS_PER_UNIT;
2985 real_to_target (data, &d, mode);
2987 /* Put out the first word with the specified alignment. */
2988 unsigned int chunk_nunits = MIN (nunits, units_per);
2989 if (reverse)
2990 elt = flip_storage_order (SImode, gen_int_mode (data[nelts - 1], SImode));
2991 else
2992 elt = GEN_INT (sext_hwi (data[0], chunk_nunits * BITS_PER_UNIT));
2993 assemble_integer (elt, chunk_nunits, align, 1);
2994 nunits -= chunk_nunits;
2996 /* Subsequent words need only 32-bit alignment. */
2997 align = min_align (align, 32);
2999 for (int i = 1; i < nelts; i++)
3001 chunk_nunits = MIN (nunits, units_per);
3002 if (reverse)
3003 elt = flip_storage_order (SImode,
3004 gen_int_mode (data[nelts - 1 - i], SImode));
3005 else
3006 elt = GEN_INT (sext_hwi (data[i], chunk_nunits * BITS_PER_UNIT));
3007 assemble_integer (elt, chunk_nunits, align, 1);
3008 nunits -= chunk_nunits;
3012 /* Given an expression EXP with a constant value,
3013 reduce it to the sum of an assembler symbol and an integer.
3014 Store them both in the structure *VALUE.
3015 EXP must be reducible. */
3017 class addr_const {
3018 public:
3019 rtx base;
3020 poly_int64 offset;
3023 static void
3024 decode_addr_const (tree exp, class addr_const *value)
3026 tree target = TREE_OPERAND (exp, 0);
3027 poly_int64 offset = 0;
3028 rtx x;
3030 while (1)
3032 poly_int64 bytepos;
3033 if (TREE_CODE (target) == COMPONENT_REF
3034 && poly_int_tree_p (byte_position (TREE_OPERAND (target, 1)),
3035 &bytepos))
3037 offset += bytepos;
3038 target = TREE_OPERAND (target, 0);
3040 else if (TREE_CODE (target) == ARRAY_REF
3041 || TREE_CODE (target) == ARRAY_RANGE_REF)
3043 /* Truncate big offset. */
3044 offset
3045 += (TREE_INT_CST_LOW (TYPE_SIZE_UNIT (TREE_TYPE (target)))
3046 * wi::to_poly_widest (TREE_OPERAND (target, 1)).force_shwi ());
3047 target = TREE_OPERAND (target, 0);
3049 else if (TREE_CODE (target) == MEM_REF
3050 && TREE_CODE (TREE_OPERAND (target, 0)) == ADDR_EXPR)
3052 offset += mem_ref_offset (target).force_shwi ();
3053 target = TREE_OPERAND (TREE_OPERAND (target, 0), 0);
3055 else if (INDIRECT_REF_P (target)
3056 && TREE_CODE (TREE_OPERAND (target, 0)) == NOP_EXPR
3057 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (target, 0), 0))
3058 == ADDR_EXPR)
3059 target = TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (target, 0), 0), 0);
3060 else
3061 break;
3064 switch (TREE_CODE (target))
3066 case VAR_DECL:
3067 case FUNCTION_DECL:
3068 x = DECL_RTL (target);
3069 break;
3071 case LABEL_DECL:
3072 x = gen_rtx_MEM (FUNCTION_MODE,
3073 gen_rtx_LABEL_REF (Pmode, force_label_rtx (target)));
3074 break;
3076 case REAL_CST:
3077 case FIXED_CST:
3078 case STRING_CST:
3079 case COMPLEX_CST:
3080 case CONSTRUCTOR:
3081 case INTEGER_CST:
3082 x = lookup_constant_def (target);
3083 /* Should have been added by output_addressed_constants. */
3084 gcc_assert (x);
3085 break;
3087 case INDIRECT_REF:
3088 /* This deals with absolute addresses. */
3089 offset += tree_to_shwi (TREE_OPERAND (target, 0));
3090 x = gen_rtx_MEM (QImode,
3091 gen_rtx_SYMBOL_REF (Pmode, "origin of addresses"));
3092 break;
3094 case COMPOUND_LITERAL_EXPR:
3095 gcc_assert (COMPOUND_LITERAL_EXPR_DECL (target));
3096 x = DECL_RTL (COMPOUND_LITERAL_EXPR_DECL (target));
3097 break;
3099 default:
3100 gcc_unreachable ();
3103 gcc_assert (MEM_P (x));
3104 x = XEXP (x, 0);
3106 value->base = x;
3107 value->offset = offset;
3110 static GTY(()) hash_table<tree_descriptor_hasher> *const_desc_htab;
3112 static void maybe_output_constant_def_contents (struct constant_descriptor_tree *, int);
3114 /* Constant pool accessor function. */
3116 hash_table<tree_descriptor_hasher> *
3117 constant_pool_htab (void)
3119 return const_desc_htab;
3122 /* Compute a hash code for a constant expression. */
3124 hashval_t
3125 tree_descriptor_hasher::hash (constant_descriptor_tree *ptr)
3127 return ptr->hash;
3130 static hashval_t
3131 const_hash_1 (const tree exp)
3133 const char *p;
3134 hashval_t hi;
3135 int len, i;
3136 enum tree_code code = TREE_CODE (exp);
3138 /* Either set P and LEN to the address and len of something to hash and
3139 exit the switch or return a value. */
3141 switch (code)
3143 case INTEGER_CST:
3144 p = (char *) &TREE_INT_CST_ELT (exp, 0);
3145 len = TREE_INT_CST_NUNITS (exp) * sizeof (HOST_WIDE_INT);
3146 break;
3148 case REAL_CST:
3149 return real_hash (TREE_REAL_CST_PTR (exp));
3151 case FIXED_CST:
3152 return fixed_hash (TREE_FIXED_CST_PTR (exp));
3154 case STRING_CST:
3155 p = TREE_STRING_POINTER (exp);
3156 len = TREE_STRING_LENGTH (exp);
3157 break;
3159 case COMPLEX_CST:
3160 return (const_hash_1 (TREE_REALPART (exp)) * 5
3161 + const_hash_1 (TREE_IMAGPART (exp)));
3163 case VECTOR_CST:
3165 hi = 7 + VECTOR_CST_NPATTERNS (exp);
3166 hi = hi * 563 + VECTOR_CST_NELTS_PER_PATTERN (exp);
3167 unsigned int count = vector_cst_encoded_nelts (exp);
3168 for (unsigned int i = 0; i < count; ++i)
3169 hi = hi * 563 + const_hash_1 (VECTOR_CST_ENCODED_ELT (exp, i));
3170 return hi;
3173 case CONSTRUCTOR:
3175 unsigned HOST_WIDE_INT idx;
3176 tree value;
3178 hi = 5 + int_size_in_bytes (TREE_TYPE (exp));
3180 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, value)
3181 if (value)
3182 hi = hi * 603 + const_hash_1 (value);
3184 return hi;
3187 case ADDR_EXPR:
3188 if (CONSTANT_CLASS_P (TREE_OPERAND (exp, 0)))
3189 return const_hash_1 (TREE_OPERAND (exp, 0));
3191 /* Fallthru. */
3192 case FDESC_EXPR:
3194 class addr_const value;
3196 decode_addr_const (exp, &value);
3197 switch (GET_CODE (value.base))
3199 case SYMBOL_REF:
3200 /* Don't hash the address of the SYMBOL_REF;
3201 only use the offset and the symbol name. */
3202 hi = value.offset.coeffs[0];
3203 p = XSTR (value.base, 0);
3204 for (i = 0; p[i] != 0; i++)
3205 hi = ((hi * 613) + (unsigned) (p[i]));
3206 break;
3208 case LABEL_REF:
3209 hi = (value.offset.coeffs[0]
3210 + CODE_LABEL_NUMBER (label_ref_label (value.base)) * 13);
3211 break;
3213 default:
3214 gcc_unreachable ();
3217 return hi;
3219 case PLUS_EXPR:
3220 case POINTER_PLUS_EXPR:
3221 case MINUS_EXPR:
3222 return (const_hash_1 (TREE_OPERAND (exp, 0)) * 9
3223 + const_hash_1 (TREE_OPERAND (exp, 1)));
3225 CASE_CONVERT:
3226 return const_hash_1 (TREE_OPERAND (exp, 0)) * 7 + 2;
3228 default:
3229 /* A language specific constant. Just hash the code. */
3230 return code;
3233 /* Compute hashing function. */
3234 hi = len;
3235 for (i = 0; i < len; i++)
3236 hi = ((hi * 613) + (unsigned) (p[i]));
3238 return hi;
3241 /* Wrapper of compare_constant, for the htab interface. */
3242 bool
3243 tree_descriptor_hasher::equal (constant_descriptor_tree *c1,
3244 constant_descriptor_tree *c2)
3246 if (c1->hash != c2->hash)
3247 return false;
3248 return compare_constant (c1->value, c2->value);
3251 /* Compare t1 and t2, and return true only if they are known to result in
3252 the same bit pattern on output. */
3254 static bool
3255 compare_constant (const tree t1, const tree t2)
3257 enum tree_code typecode;
3259 if (t1 == NULL_TREE)
3260 return t2 == NULL_TREE;
3261 if (t2 == NULL_TREE)
3262 return false;
3264 if (TREE_CODE (t1) != TREE_CODE (t2))
3265 return false;
3267 switch (TREE_CODE (t1))
3269 case INTEGER_CST:
3270 /* Integer constants are the same only if the same width of type. */
3271 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
3272 return false;
3273 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
3274 return false;
3275 return tree_int_cst_equal (t1, t2);
3277 case REAL_CST:
3278 /* Real constants are the same only if the same width of type. In
3279 addition to the same width, we need to check whether the modes are the
3280 same. There might be two floating point modes that are the same size
3281 but have different representations, such as the PowerPC that has 2
3282 different 128-bit floating point types (IBM extended double and IEEE
3283 128-bit floating point). */
3284 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
3285 return false;
3286 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
3287 return false;
3288 return real_identical (&TREE_REAL_CST (t1), &TREE_REAL_CST (t2));
3290 case FIXED_CST:
3291 /* Fixed constants are the same only if the same width of type. */
3292 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
3293 return false;
3295 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
3297 case STRING_CST:
3298 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2))
3299 || int_size_in_bytes (TREE_TYPE (t1))
3300 != int_size_in_bytes (TREE_TYPE (t2)))
3301 return false;
3303 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
3304 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
3305 TREE_STRING_LENGTH (t1)));
3307 case COMPLEX_CST:
3308 return (compare_constant (TREE_REALPART (t1), TREE_REALPART (t2))
3309 && compare_constant (TREE_IMAGPART (t1), TREE_IMAGPART (t2)));
3311 case VECTOR_CST:
3313 if (VECTOR_CST_NPATTERNS (t1)
3314 != VECTOR_CST_NPATTERNS (t2))
3315 return false;
3317 if (VECTOR_CST_NELTS_PER_PATTERN (t1)
3318 != VECTOR_CST_NELTS_PER_PATTERN (t2))
3319 return false;
3321 unsigned int count = vector_cst_encoded_nelts (t1);
3322 for (unsigned int i = 0; i < count; ++i)
3323 if (!compare_constant (VECTOR_CST_ENCODED_ELT (t1, i),
3324 VECTOR_CST_ENCODED_ELT (t2, i)))
3325 return false;
3327 return true;
3330 case CONSTRUCTOR:
3332 vec<constructor_elt, va_gc> *v1, *v2;
3333 unsigned HOST_WIDE_INT idx;
3335 typecode = TREE_CODE (TREE_TYPE (t1));
3336 if (typecode != TREE_CODE (TREE_TYPE (t2)))
3337 return false;
3339 if (typecode == ARRAY_TYPE)
3341 HOST_WIDE_INT size_1 = int_size_in_bytes (TREE_TYPE (t1));
3342 /* For arrays, check that mode, size and storage order match. */
3343 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2))
3344 || size_1 == -1
3345 || size_1 != int_size_in_bytes (TREE_TYPE (t2))
3346 || TYPE_REVERSE_STORAGE_ORDER (TREE_TYPE (t1))
3347 != TYPE_REVERSE_STORAGE_ORDER (TREE_TYPE (t2)))
3348 return false;
3350 else
3352 /* For record and union constructors, require exact type
3353 equality. */
3354 if (TREE_TYPE (t1) != TREE_TYPE (t2))
3355 return false;
3358 v1 = CONSTRUCTOR_ELTS (t1);
3359 v2 = CONSTRUCTOR_ELTS (t2);
3360 if (vec_safe_length (v1) != vec_safe_length (v2))
3361 return false;
3363 for (idx = 0; idx < vec_safe_length (v1); ++idx)
3365 constructor_elt *c1 = &(*v1)[idx];
3366 constructor_elt *c2 = &(*v2)[idx];
3368 /* Check that each value is the same... */
3369 if (!compare_constant (c1->value, c2->value))
3370 return false;
3371 /* ... and that they apply to the same fields! */
3372 if (typecode == ARRAY_TYPE)
3374 if (!compare_constant (c1->index, c2->index))
3375 return false;
3377 else
3379 if (c1->index != c2->index)
3380 return false;
3384 return true;
3387 case ADDR_EXPR:
3388 case FDESC_EXPR:
3390 class addr_const value1, value2;
3391 enum rtx_code code;
3392 bool ret;
3394 decode_addr_const (t1, &value1);
3395 decode_addr_const (t2, &value2);
3397 if (maybe_ne (value1.offset, value2.offset))
3398 return false;
3400 code = GET_CODE (value1.base);
3401 if (code != GET_CODE (value2.base))
3402 return false;
3404 switch (code)
3406 case SYMBOL_REF:
3407 ret = (strcmp (XSTR (value1.base, 0), XSTR (value2.base, 0)) == 0);
3408 break;
3410 case LABEL_REF:
3411 ret = (CODE_LABEL_NUMBER (label_ref_label (value1.base))
3412 == CODE_LABEL_NUMBER (label_ref_label (value2.base)));
3413 break;
3415 default:
3416 gcc_unreachable ();
3418 return ret;
3421 case PLUS_EXPR:
3422 case POINTER_PLUS_EXPR:
3423 case MINUS_EXPR:
3424 case RANGE_EXPR:
3425 return (compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0))
3426 && compare_constant (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)));
3428 CASE_CONVERT:
3429 case VIEW_CONVERT_EXPR:
3430 return compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3432 default:
3433 return false;
3437 /* Return the section into which constant EXP should be placed. */
3439 static section *
3440 get_constant_section (tree exp, unsigned int align)
3442 return targetm.asm_out.select_section (exp,
3443 compute_reloc_for_constant (exp),
3444 align);
3447 /* Return the size of constant EXP in bytes. */
3449 static HOST_WIDE_INT
3450 get_constant_size (tree exp)
3452 HOST_WIDE_INT size;
3454 size = int_size_in_bytes (TREE_TYPE (exp));
3455 gcc_checking_assert (size >= 0);
3456 gcc_checking_assert (TREE_CODE (exp) != STRING_CST
3457 || size >= TREE_STRING_LENGTH (exp));
3458 return size;
3461 /* Subroutine of output_constant_def:
3462 No constant equal to EXP is known to have been output.
3463 Make a constant descriptor to enter EXP in the hash table.
3464 Assign the label number and construct RTL to refer to the
3465 constant's location in memory.
3466 Caller is responsible for updating the hash table. */
3468 static struct constant_descriptor_tree *
3469 build_constant_desc (tree exp)
3471 struct constant_descriptor_tree *desc;
3472 rtx symbol, rtl;
3473 char label[256];
3474 int labelno;
3475 tree decl;
3477 desc = ggc_alloc<constant_descriptor_tree> ();
3478 desc->value = exp;
3480 /* Create a string containing the label name, in LABEL. */
3481 labelno = const_labelno++;
3482 ASM_GENERATE_INTERNAL_LABEL (label, "LC", labelno);
3484 /* Construct the VAR_DECL associated with the constant. */
3485 decl = build_decl (UNKNOWN_LOCATION, VAR_DECL, get_identifier (label),
3486 TREE_TYPE (exp));
3487 DECL_ARTIFICIAL (decl) = 1;
3488 DECL_IGNORED_P (decl) = 1;
3489 TREE_READONLY (decl) = 1;
3490 TREE_STATIC (decl) = 1;
3491 TREE_ADDRESSABLE (decl) = 1;
3492 /* We don't set the RTL yet as this would cause varpool to assume that the
3493 variable is referenced. Moreover, it would just be dropped in LTO mode.
3494 Instead we set the flag that will be recognized in make_decl_rtl. */
3495 DECL_IN_CONSTANT_POOL (decl) = 1;
3496 DECL_INITIAL (decl) = desc->value;
3497 /* ??? targetm.constant_alignment hasn't been updated for vector types on
3498 most architectures so use DATA_ALIGNMENT as well, except for strings. */
3499 if (TREE_CODE (exp) == STRING_CST)
3500 SET_DECL_ALIGN (decl, targetm.constant_alignment (exp, DECL_ALIGN (decl)));
3501 else
3503 align_variable (decl, 0);
3504 if (DECL_ALIGN (decl) < GET_MODE_ALIGNMENT (DECL_MODE (decl))
3505 && ((optab_handler (movmisalign_optab, DECL_MODE (decl))
3506 != CODE_FOR_nothing)
3507 || targetm.slow_unaligned_access (DECL_MODE (decl),
3508 DECL_ALIGN (decl))))
3509 SET_DECL_ALIGN (decl, GET_MODE_ALIGNMENT (DECL_MODE (decl)));
3512 /* Now construct the SYMBOL_REF and the MEM. */
3513 if (use_object_blocks_p ())
3515 int align = (TREE_CODE (decl) == CONST_DECL
3516 || (VAR_P (decl) && DECL_IN_CONSTANT_POOL (decl))
3517 ? DECL_ALIGN (decl)
3518 : symtab_node::get (decl)->definition_alignment ());
3519 section *sect = get_constant_section (exp, align);
3520 symbol = create_block_symbol (ggc_strdup (label),
3521 get_block_for_section (sect), -1);
3523 else
3524 symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
3525 SYMBOL_REF_FLAGS (symbol) |= SYMBOL_FLAG_LOCAL;
3526 SET_SYMBOL_REF_DECL (symbol, decl);
3527 TREE_CONSTANT_POOL_ADDRESS_P (symbol) = 1;
3529 rtl = gen_const_mem (TYPE_MODE (TREE_TYPE (exp)), symbol);
3530 set_mem_alias_set (rtl, 0);
3532 /* Putting EXP into the literal pool might have imposed a different
3533 alignment which should be visible in the RTX as well. */
3534 set_mem_align (rtl, DECL_ALIGN (decl));
3536 /* We cannot share RTX'es in pool entries.
3537 Mark this piece of RTL as required for unsharing. */
3538 RTX_FLAG (rtl, used) = 1;
3540 /* Set flags or add text to the name to record information, such as
3541 that it is a local symbol. If the name is changed, the macro
3542 ASM_OUTPUT_LABELREF will have to know how to strip this
3543 information. This call might invalidate our local variable
3544 SYMBOL; we can't use it afterward. */
3545 targetm.encode_section_info (exp, rtl, true);
3547 desc->rtl = rtl;
3549 return desc;
3552 /* Subroutine of output_constant_def and tree_output_constant_def:
3553 Add a constant to the hash table that tracks which constants
3554 already have labels. */
3556 static constant_descriptor_tree *
3557 add_constant_to_table (tree exp, int defer)
3559 /* The hash table methods may call output_constant_def for addressed
3560 constants, so handle them first. */
3561 output_addressed_constants (exp, defer);
3563 /* Sanity check to catch recursive insertion. */
3564 static bool inserting;
3565 gcc_assert (!inserting);
3566 inserting = true;
3568 /* Look up EXP in the table of constant descriptors. If we didn't
3569 find it, create a new one. */
3570 struct constant_descriptor_tree key;
3571 key.value = exp;
3572 key.hash = const_hash_1 (exp);
3573 constant_descriptor_tree **loc
3574 = const_desc_htab->find_slot_with_hash (&key, key.hash, INSERT);
3576 inserting = false;
3578 struct constant_descriptor_tree *desc = *loc;
3579 if (!desc)
3581 desc = build_constant_desc (exp);
3582 desc->hash = key.hash;
3583 *loc = desc;
3586 return desc;
3589 /* Return an rtx representing a reference to constant data in memory
3590 for the constant expression EXP.
3592 If assembler code for such a constant has already been output,
3593 return an rtx to refer to it.
3594 Otherwise, output such a constant in memory
3595 and generate an rtx for it.
3597 If DEFER is nonzero, this constant can be deferred and output only
3598 if referenced in the function after all optimizations.
3600 `const_desc_table' records which constants already have label strings. */
3603 output_constant_def (tree exp, int defer)
3605 struct constant_descriptor_tree *desc = add_constant_to_table (exp, defer);
3606 maybe_output_constant_def_contents (desc, defer);
3607 return desc->rtl;
3610 /* Subroutine of output_constant_def: Decide whether or not we need to
3611 output the constant DESC now, and if so, do it. */
3612 static void
3613 maybe_output_constant_def_contents (struct constant_descriptor_tree *desc,
3614 int defer)
3616 rtx symbol = XEXP (desc->rtl, 0);
3617 tree exp = desc->value;
3619 if (flag_syntax_only)
3620 return;
3622 if (TREE_ASM_WRITTEN (exp))
3623 /* Already output; don't do it again. */
3624 return;
3626 /* We can always defer constants as long as the context allows
3627 doing so. */
3628 if (defer)
3630 /* Increment n_deferred_constants if it exists. It needs to be at
3631 least as large as the number of constants actually referred to
3632 by the function. If it's too small we'll stop looking too early
3633 and fail to emit constants; if it's too large we'll only look
3634 through the entire function when we could have stopped earlier. */
3635 if (cfun)
3636 n_deferred_constants++;
3637 return;
3640 output_constant_def_contents (symbol);
3643 /* Subroutine of output_constant_def_contents. Output the definition
3644 of constant EXP, which is pointed to by label LABEL. ALIGN is the
3645 constant's alignment in bits. */
3647 static void
3648 assemble_constant_contents (tree exp, const char *label, unsigned int align,
3649 bool merge_strings)
3651 HOST_WIDE_INT size;
3653 size = get_constant_size (exp);
3655 /* Do any machine/system dependent processing of the constant. */
3656 targetm.asm_out.declare_constant_name (asm_out_file, label, exp, size);
3658 /* Output the value of EXP. */
3659 output_constant (exp, size, align, false, merge_strings);
3661 targetm.asm_out.decl_end ();
3664 /* We must output the constant data referred to by SYMBOL; do so. */
3666 static void
3667 output_constant_def_contents (rtx symbol)
3669 tree decl = SYMBOL_REF_DECL (symbol);
3670 tree exp = DECL_INITIAL (decl);
3671 bool asan_protected = false;
3673 /* Make sure any other constants whose addresses appear in EXP
3674 are assigned label numbers. */
3675 output_addressed_constants (exp, 0);
3677 /* We are no longer deferring this constant. */
3678 TREE_ASM_WRITTEN (decl) = TREE_ASM_WRITTEN (exp) = 1;
3680 if ((flag_sanitize & SANITIZE_ADDRESS)
3681 && TREE_CODE (exp) == STRING_CST
3682 && asan_protect_global (exp))
3684 asan_protected = true;
3685 SET_DECL_ALIGN (decl, MAX (DECL_ALIGN (decl),
3686 ASAN_RED_ZONE_SIZE * BITS_PER_UNIT));
3689 /* If the constant is part of an object block, make sure that the
3690 decl has been positioned within its block, but do not write out
3691 its definition yet. output_object_blocks will do that later. */
3692 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol) && SYMBOL_REF_BLOCK (symbol))
3693 place_block_symbol (symbol);
3694 else
3696 int align = (TREE_CODE (decl) == CONST_DECL
3697 || (VAR_P (decl) && DECL_IN_CONSTANT_POOL (decl))
3698 ? DECL_ALIGN (decl)
3699 : symtab_node::get (decl)->definition_alignment ());
3700 section *sect = get_constant_section (exp, align);
3701 switch_to_section (sect);
3702 if (align > BITS_PER_UNIT)
3703 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
3704 assemble_constant_contents (exp, XSTR (symbol, 0), align,
3705 (sect->common.flags & SECTION_MERGE)
3706 && (sect->common.flags & SECTION_STRINGS));
3707 if (asan_protected)
3709 HOST_WIDE_INT size = get_constant_size (exp);
3710 assemble_zeros (asan_red_zone_size (size));
3715 /* Look up EXP in the table of constant descriptors. Return the rtl
3716 if it has been emitted, else null. */
3719 lookup_constant_def (tree exp)
3721 struct constant_descriptor_tree key;
3723 key.value = exp;
3724 key.hash = const_hash_1 (exp);
3725 constant_descriptor_tree *desc
3726 = const_desc_htab->find_with_hash (&key, key.hash);
3728 return (desc ? desc->rtl : NULL_RTX);
3731 /* Return a tree representing a reference to constant data in memory
3732 for the constant expression EXP.
3734 This is the counterpart of output_constant_def at the Tree level. */
3736 tree
3737 tree_output_constant_def (tree exp)
3739 struct constant_descriptor_tree *desc = add_constant_to_table (exp, 1);
3740 tree decl = SYMBOL_REF_DECL (XEXP (desc->rtl, 0));
3741 varpool_node::finalize_decl (decl);
3742 return decl;
3745 class GTY((chain_next ("%h.next"), for_user)) constant_descriptor_rtx {
3746 public:
3747 class constant_descriptor_rtx *next;
3748 rtx mem;
3749 rtx sym;
3750 rtx constant;
3751 HOST_WIDE_INT offset;
3752 hashval_t hash;
3753 fixed_size_mode mode;
3754 unsigned int align;
3755 int labelno;
3756 int mark;
3759 struct const_rtx_desc_hasher : ggc_ptr_hash<constant_descriptor_rtx>
3761 static hashval_t hash (constant_descriptor_rtx *);
3762 static bool equal (constant_descriptor_rtx *, constant_descriptor_rtx *);
3765 /* Used in the hash tables to avoid outputting the same constant
3766 twice. Unlike 'struct constant_descriptor_tree', RTX constants
3767 are output once per function, not once per file. */
3768 /* ??? Only a few targets need per-function constant pools. Most
3769 can use one per-file pool. Should add a targetm bit to tell the
3770 difference. */
3772 struct GTY(()) rtx_constant_pool {
3773 /* Pointers to first and last constant in pool, as ordered by offset. */
3774 class constant_descriptor_rtx *first;
3775 class constant_descriptor_rtx *last;
3777 /* Hash facility for making memory-constants from constant rtl-expressions.
3778 It is used on RISC machines where immediate integer arguments and
3779 constant addresses are restricted so that such constants must be stored
3780 in memory. */
3781 hash_table<const_rtx_desc_hasher> *const_rtx_htab;
3783 /* Current offset in constant pool (does not include any
3784 machine-specific header). */
3785 HOST_WIDE_INT offset;
3788 /* Hash and compare functions for const_rtx_htab. */
3790 hashval_t
3791 const_rtx_desc_hasher::hash (constant_descriptor_rtx *desc)
3793 return desc->hash;
3796 bool
3797 const_rtx_desc_hasher::equal (constant_descriptor_rtx *x,
3798 constant_descriptor_rtx *y)
3800 if (x->mode != y->mode)
3801 return false;
3802 return rtx_equal_p (x->constant, y->constant);
3805 /* Hash one component of a constant. */
3807 static hashval_t
3808 const_rtx_hash_1 (const_rtx x)
3810 unsigned HOST_WIDE_INT hwi;
3811 machine_mode mode;
3812 enum rtx_code code;
3813 hashval_t h;
3814 int i;
3816 code = GET_CODE (x);
3817 mode = GET_MODE (x);
3818 h = (hashval_t) code * 1048573 + mode;
3820 switch (code)
3822 case CONST_INT:
3823 hwi = INTVAL (x);
3825 fold_hwi:
3827 int shift = sizeof (hashval_t) * CHAR_BIT;
3828 const int n = sizeof (HOST_WIDE_INT) / sizeof (hashval_t);
3830 h ^= (hashval_t) hwi;
3831 for (i = 1; i < n; ++i)
3833 hwi >>= shift;
3834 h ^= (hashval_t) hwi;
3837 break;
3839 case CONST_WIDE_INT:
3840 hwi = 0;
3842 for (i = 0; i < CONST_WIDE_INT_NUNITS (x); i++)
3843 hwi ^= CONST_WIDE_INT_ELT (x, i);
3844 goto fold_hwi;
3847 case CONST_DOUBLE:
3848 if (TARGET_SUPPORTS_WIDE_INT == 0 && mode == VOIDmode)
3850 hwi = CONST_DOUBLE_LOW (x) ^ CONST_DOUBLE_HIGH (x);
3851 goto fold_hwi;
3853 else
3854 h ^= real_hash (CONST_DOUBLE_REAL_VALUE (x));
3855 break;
3857 case CONST_FIXED:
3858 h ^= fixed_hash (CONST_FIXED_VALUE (x));
3859 break;
3861 case SYMBOL_REF:
3862 h ^= htab_hash_string (XSTR (x, 0));
3863 break;
3865 case LABEL_REF:
3866 h = h * 251 + CODE_LABEL_NUMBER (label_ref_label (x));
3867 break;
3869 case UNSPEC:
3870 case UNSPEC_VOLATILE:
3871 h = h * 251 + XINT (x, 1);
3872 break;
3874 default:
3875 break;
3878 return h;
3881 /* Compute a hash value for X, which should be a constant. */
3883 static hashval_t
3884 const_rtx_hash (rtx x)
3886 hashval_t h = 0;
3887 subrtx_iterator::array_type array;
3888 FOR_EACH_SUBRTX (iter, array, x, ALL)
3889 h = h * 509 + const_rtx_hash_1 (*iter);
3890 return h;
3894 /* Create and return a new rtx constant pool. */
3896 static struct rtx_constant_pool *
3897 create_constant_pool (void)
3899 struct rtx_constant_pool *pool;
3901 pool = ggc_alloc<rtx_constant_pool> ();
3902 pool->const_rtx_htab = hash_table<const_rtx_desc_hasher>::create_ggc (31);
3903 pool->first = NULL;
3904 pool->last = NULL;
3905 pool->offset = 0;
3906 return pool;
3909 /* Initialize constant pool hashing for a new function. */
3911 void
3912 init_varasm_status (void)
3914 crtl->varasm.pool = create_constant_pool ();
3915 crtl->varasm.deferred_constants = 0;
3918 /* Given a MINUS expression, simplify it if both sides
3919 include the same symbol. */
3922 simplify_subtraction (rtx x)
3924 rtx r = simplify_rtx (x);
3925 return r ? r : x;
3928 /* Given a constant rtx X, make (or find) a memory constant for its value
3929 and return a MEM rtx to refer to it in memory. IN_MODE is the mode
3930 of X. */
3933 force_const_mem (machine_mode in_mode, rtx x)
3935 class constant_descriptor_rtx *desc, tmp;
3936 struct rtx_constant_pool *pool;
3937 char label[256];
3938 rtx def, symbol;
3939 hashval_t hash;
3940 unsigned int align;
3941 constant_descriptor_rtx **slot;
3942 fixed_size_mode mode;
3944 /* We can't force variable-sized objects to memory. */
3945 if (!is_a <fixed_size_mode> (in_mode, &mode))
3946 return NULL_RTX;
3948 /* If we're not allowed to drop X into the constant pool, don't. */
3949 if (targetm.cannot_force_const_mem (mode, x))
3950 return NULL_RTX;
3952 /* Record that this function has used a constant pool entry. */
3953 crtl->uses_const_pool = 1;
3955 /* Decide which pool to use. */
3956 pool = (targetm.use_blocks_for_constant_p (mode, x)
3957 ? shared_constant_pool
3958 : crtl->varasm.pool);
3960 /* Lookup the value in the hashtable. */
3961 tmp.constant = x;
3962 tmp.mode = mode;
3963 hash = const_rtx_hash (x);
3964 slot = pool->const_rtx_htab->find_slot_with_hash (&tmp, hash, INSERT);
3965 desc = *slot;
3967 /* If the constant was already present, return its memory. */
3968 if (desc)
3969 return copy_rtx (desc->mem);
3971 /* Otherwise, create a new descriptor. */
3972 desc = ggc_alloc<constant_descriptor_rtx> ();
3973 *slot = desc;
3975 /* Align the location counter as required by EXP's data type. */
3976 machine_mode align_mode = (mode == VOIDmode ? word_mode : mode);
3977 align = targetm.static_rtx_alignment (align_mode);
3979 pool->offset += (align / BITS_PER_UNIT) - 1;
3980 pool->offset &= ~ ((align / BITS_PER_UNIT) - 1);
3982 desc->next = NULL;
3983 desc->constant = copy_rtx (tmp.constant);
3984 desc->offset = pool->offset;
3985 desc->hash = hash;
3986 desc->mode = mode;
3987 desc->align = align;
3988 desc->labelno = const_labelno;
3989 desc->mark = 0;
3991 pool->offset += GET_MODE_SIZE (mode);
3992 if (pool->last)
3993 pool->last->next = desc;
3994 else
3995 pool->first = pool->last = desc;
3996 pool->last = desc;
3998 /* Create a string containing the label name, in LABEL. */
3999 ASM_GENERATE_INTERNAL_LABEL (label, "LC", const_labelno);
4000 ++const_labelno;
4002 /* Construct the SYMBOL_REF. Make sure to mark it as belonging to
4003 the constants pool. */
4004 if (use_object_blocks_p () && targetm.use_blocks_for_constant_p (mode, x))
4006 section *sect = targetm.asm_out.select_rtx_section (mode, x, align);
4007 symbol = create_block_symbol (ggc_strdup (label),
4008 get_block_for_section (sect), -1);
4010 else
4011 symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
4012 desc->sym = symbol;
4013 SYMBOL_REF_FLAGS (symbol) |= SYMBOL_FLAG_LOCAL;
4014 CONSTANT_POOL_ADDRESS_P (symbol) = 1;
4015 SET_SYMBOL_REF_CONSTANT (symbol, desc);
4017 /* Construct the MEM. */
4018 desc->mem = def = gen_const_mem (mode, symbol);
4019 set_mem_align (def, align);
4021 /* If we're dropping a label to the constant pool, make sure we
4022 don't delete it. */
4023 if (GET_CODE (x) == LABEL_REF)
4024 LABEL_PRESERVE_P (XEXP (x, 0)) = 1;
4026 return copy_rtx (def);
4029 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
4032 get_pool_constant (const_rtx addr)
4034 return SYMBOL_REF_CONSTANT (addr)->constant;
4037 /* Given a constant pool SYMBOL_REF, return the corresponding constant
4038 and whether it has been output or not. */
4041 get_pool_constant_mark (rtx addr, bool *pmarked)
4043 class constant_descriptor_rtx *desc;
4045 desc = SYMBOL_REF_CONSTANT (addr);
4046 *pmarked = (desc->mark != 0);
4047 return desc->constant;
4050 /* Similar, return the mode. */
4052 fixed_size_mode
4053 get_pool_mode (const_rtx addr)
4055 return SYMBOL_REF_CONSTANT (addr)->mode;
4058 /* Return TRUE if and only if the constant pool has no entries. Note
4059 that even entries we might end up choosing not to emit are counted
4060 here, so there is the potential for missed optimizations. */
4062 bool
4063 constant_pool_empty_p (void)
4065 return crtl->varasm.pool->first == NULL;
4068 /* Worker function for output_constant_pool_1. Emit assembly for X
4069 in MODE with known alignment ALIGN. */
4071 static void
4072 output_constant_pool_2 (fixed_size_mode mode, rtx x, unsigned int align)
4074 switch (GET_MODE_CLASS (mode))
4076 case MODE_FLOAT:
4077 case MODE_DECIMAL_FLOAT:
4079 gcc_assert (CONST_DOUBLE_AS_FLOAT_P (x));
4080 assemble_real (*CONST_DOUBLE_REAL_VALUE (x),
4081 as_a <scalar_float_mode> (mode), align, false);
4082 break;
4085 case MODE_INT:
4086 case MODE_PARTIAL_INT:
4087 case MODE_FRACT:
4088 case MODE_UFRACT:
4089 case MODE_ACCUM:
4090 case MODE_UACCUM:
4091 assemble_integer (x, GET_MODE_SIZE (mode), align, 1);
4092 break;
4094 case MODE_VECTOR_BOOL:
4096 gcc_assert (GET_CODE (x) == CONST_VECTOR);
4098 /* Pick the smallest integer mode that contains at least one
4099 whole element. Often this is byte_mode and contains more
4100 than one element. */
4101 unsigned int nelts = GET_MODE_NUNITS (mode);
4102 unsigned int elt_bits = GET_MODE_PRECISION (mode) / nelts;
4103 unsigned int int_bits = MAX (elt_bits, BITS_PER_UNIT);
4104 scalar_int_mode int_mode = int_mode_for_size (int_bits, 0).require ();
4105 unsigned int mask = GET_MODE_MASK (GET_MODE_INNER (mode));
4107 /* We allow GET_MODE_PRECISION (mode) <= GET_MODE_BITSIZE (mode) but
4108 only properly handle cases where the difference is less than a
4109 byte. */
4110 gcc_assert (GET_MODE_BITSIZE (mode) - GET_MODE_PRECISION (mode) <
4111 BITS_PER_UNIT);
4113 /* Build the constant up one integer at a time. */
4114 unsigned int elts_per_int = int_bits / elt_bits;
4115 for (unsigned int i = 0; i < nelts; i += elts_per_int)
4117 unsigned HOST_WIDE_INT value = 0;
4118 unsigned int limit = MIN (nelts - i, elts_per_int);
4119 for (unsigned int j = 0; j < limit; ++j)
4121 auto elt = INTVAL (CONST_VECTOR_ELT (x, i + j));
4122 value |= (elt & mask) << (j * elt_bits);
4124 output_constant_pool_2 (int_mode, gen_int_mode (value, int_mode),
4125 i != 0 ? MIN (align, int_bits) : align);
4127 break;
4129 case MODE_VECTOR_FLOAT:
4130 case MODE_VECTOR_INT:
4131 case MODE_VECTOR_FRACT:
4132 case MODE_VECTOR_UFRACT:
4133 case MODE_VECTOR_ACCUM:
4134 case MODE_VECTOR_UACCUM:
4136 int i, units;
4137 scalar_mode submode = GET_MODE_INNER (mode);
4138 unsigned int subalign = MIN (align, GET_MODE_BITSIZE (submode));
4140 gcc_assert (GET_CODE (x) == CONST_VECTOR);
4141 units = GET_MODE_NUNITS (mode);
4143 for (i = 0; i < units; i++)
4145 rtx elt = CONST_VECTOR_ELT (x, i);
4146 output_constant_pool_2 (submode, elt, i ? subalign : align);
4149 break;
4151 default:
4152 gcc_unreachable ();
4156 /* Worker function for output_constant_pool. Emit constant DESC,
4157 giving it ALIGN bits of alignment. */
4159 static void
4160 output_constant_pool_1 (class constant_descriptor_rtx *desc,
4161 unsigned int align)
4163 rtx x, tmp;
4165 x = desc->constant;
4167 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
4168 whose CODE_LABEL has been deleted. This can occur if a jump table
4169 is eliminated by optimization. If so, write a constant of zero
4170 instead. Note that this can also happen by turning the
4171 CODE_LABEL into a NOTE. */
4172 /* ??? This seems completely and utterly wrong. Certainly it's
4173 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
4174 functioning even with rtx_insn::deleted and friends. */
4176 tmp = x;
4177 switch (GET_CODE (tmp))
4179 case CONST:
4180 if (GET_CODE (XEXP (tmp, 0)) != PLUS
4181 || GET_CODE (XEXP (XEXP (tmp, 0), 0)) != LABEL_REF)
4182 break;
4183 tmp = XEXP (XEXP (tmp, 0), 0);
4184 /* FALLTHRU */
4186 case LABEL_REF:
4188 rtx_insn *insn = label_ref_label (tmp);
4189 gcc_assert (!insn->deleted ());
4190 gcc_assert (!NOTE_P (insn)
4191 || NOTE_KIND (insn) != NOTE_INSN_DELETED);
4192 break;
4195 default:
4196 break;
4199 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
4200 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file, x, desc->mode,
4201 align, desc->labelno, done);
4202 #endif
4204 assemble_align (align);
4206 /* Output the label. */
4207 targetm.asm_out.internal_label (asm_out_file, "LC", desc->labelno);
4209 /* Output the data.
4210 Pass actual alignment value while emitting string constant to asm code
4211 as function 'output_constant_pool_1' explicitly passes the alignment as 1
4212 assuming that the data is already aligned which prevents the generation
4213 of fix-up table entries. */
4214 output_constant_pool_2 (desc->mode, x, desc->align);
4216 /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
4217 sections have proper size. */
4218 if (align > GET_MODE_BITSIZE (desc->mode)
4219 && in_section
4220 && (in_section->common.flags & SECTION_MERGE))
4221 assemble_align (align);
4223 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
4224 done:
4225 #endif
4226 return;
4229 /* Recompute the offsets of entries in POOL, and the overall size of
4230 POOL. Do this after calling mark_constant_pool to ensure that we
4231 are computing the offset values for the pool which we will actually
4232 emit. */
4234 static void
4235 recompute_pool_offsets (struct rtx_constant_pool *pool)
4237 class constant_descriptor_rtx *desc;
4238 pool->offset = 0;
4240 for (desc = pool->first; desc ; desc = desc->next)
4241 if (desc->mark)
4243 /* Recalculate offset. */
4244 unsigned int align = desc->align;
4245 pool->offset += (align / BITS_PER_UNIT) - 1;
4246 pool->offset &= ~ ((align / BITS_PER_UNIT) - 1);
4247 desc->offset = pool->offset;
4248 pool->offset += GET_MODE_SIZE (desc->mode);
4252 /* Mark all constants that are referenced by SYMBOL_REFs in X.
4253 Emit referenced deferred strings. */
4255 static void
4256 mark_constants_in_pattern (rtx insn)
4258 subrtx_iterator::array_type array;
4259 FOR_EACH_SUBRTX (iter, array, PATTERN (insn), ALL)
4261 const_rtx x = *iter;
4262 if (GET_CODE (x) == SYMBOL_REF)
4264 if (CONSTANT_POOL_ADDRESS_P (x))
4266 class constant_descriptor_rtx *desc = SYMBOL_REF_CONSTANT (x);
4267 if (desc->mark == 0)
4269 desc->mark = 1;
4270 iter.substitute (desc->constant);
4273 else if (TREE_CONSTANT_POOL_ADDRESS_P (x))
4275 tree decl = SYMBOL_REF_DECL (x);
4276 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl)))
4278 n_deferred_constants--;
4279 output_constant_def_contents (CONST_CAST_RTX (x));
4286 /* Look through appropriate parts of INSN, marking all entries in the
4287 constant pool which are actually being used. Entries that are only
4288 referenced by other constants are also marked as used. Emit
4289 deferred strings that are used. */
4291 static void
4292 mark_constants (rtx_insn *insn)
4294 if (!INSN_P (insn))
4295 return;
4297 /* Insns may appear inside a SEQUENCE. Only check the patterns of
4298 insns, not any notes that may be attached. We don't want to mark
4299 a constant just because it happens to appear in a REG_EQUIV note. */
4300 if (rtx_sequence *seq = dyn_cast <rtx_sequence *> (PATTERN (insn)))
4302 int i, n = seq->len ();
4303 for (i = 0; i < n; ++i)
4305 rtx subinsn = seq->element (i);
4306 if (INSN_P (subinsn))
4307 mark_constants_in_pattern (subinsn);
4310 else
4311 mark_constants_in_pattern (insn);
4314 /* Look through the instructions for this function, and mark all the
4315 entries in POOL which are actually being used. Emit deferred constants
4316 which have indeed been used. */
4318 static void
4319 mark_constant_pool (void)
4321 rtx_insn *insn;
4323 if (!crtl->uses_const_pool && n_deferred_constants == 0)
4324 return;
4326 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
4327 mark_constants (insn);
4330 /* Write all the constants in POOL. */
4332 static void
4333 output_constant_pool_contents (struct rtx_constant_pool *pool)
4335 class constant_descriptor_rtx *desc;
4337 for (desc = pool->first; desc ; desc = desc->next)
4338 if (desc->mark < 0)
4340 #ifdef ASM_OUTPUT_DEF
4341 gcc_checking_assert (TARGET_SUPPORTS_ALIASES);
4343 const char *name = XSTR (desc->sym, 0);
4344 char label[256];
4345 char buffer[256 + 32];
4346 const char *p;
4348 ASM_GENERATE_INTERNAL_LABEL (label, "LC", ~desc->mark);
4349 p = label;
4350 if (desc->offset)
4352 sprintf (buffer, "%s+%ld", p, (long) (desc->offset));
4353 p = buffer;
4355 ASM_OUTPUT_DEF (asm_out_file, name, p);
4356 #else
4357 gcc_unreachable ();
4358 #endif
4360 else if (desc->mark)
4362 /* If the constant is part of an object_block, make sure that
4363 the constant has been positioned within its block, but do not
4364 write out its definition yet. output_object_blocks will do
4365 that later. */
4366 if (SYMBOL_REF_HAS_BLOCK_INFO_P (desc->sym)
4367 && SYMBOL_REF_BLOCK (desc->sym))
4368 place_block_symbol (desc->sym);
4369 else
4371 switch_to_section (targetm.asm_out.select_rtx_section
4372 (desc->mode, desc->constant, desc->align));
4373 output_constant_pool_1 (desc, desc->align);
4378 struct constant_descriptor_rtx_data {
4379 constant_descriptor_rtx *desc;
4380 target_unit *bytes;
4381 unsigned short size;
4382 unsigned short offset;
4383 unsigned int hash;
4386 /* qsort callback to sort constant_descriptor_rtx_data * vector by
4387 decreasing size. */
4389 static int
4390 constant_descriptor_rtx_data_cmp (const void *p1, const void *p2)
4392 constant_descriptor_rtx_data *const data1
4393 = *(constant_descriptor_rtx_data * const *) p1;
4394 constant_descriptor_rtx_data *const data2
4395 = *(constant_descriptor_rtx_data * const *) p2;
4396 if (data1->size > data2->size)
4397 return -1;
4398 if (data1->size < data2->size)
4399 return 1;
4400 if (data1->hash < data2->hash)
4401 return -1;
4402 gcc_assert (data1->hash > data2->hash);
4403 return 1;
4406 struct const_rtx_data_hasher : nofree_ptr_hash<constant_descriptor_rtx_data>
4408 static hashval_t hash (constant_descriptor_rtx_data *);
4409 static bool equal (constant_descriptor_rtx_data *,
4410 constant_descriptor_rtx_data *);
4413 /* Hash and compare functions for const_rtx_data_htab. */
4415 hashval_t
4416 const_rtx_data_hasher::hash (constant_descriptor_rtx_data *data)
4418 return data->hash;
4421 bool
4422 const_rtx_data_hasher::equal (constant_descriptor_rtx_data *x,
4423 constant_descriptor_rtx_data *y)
4425 if (x->hash != y->hash || x->size != y->size)
4426 return false;
4427 unsigned int align1 = x->desc->align;
4428 unsigned int align2 = y->desc->align;
4429 unsigned int offset1 = (x->offset * BITS_PER_UNIT) & (align1 - 1);
4430 unsigned int offset2 = (y->offset * BITS_PER_UNIT) & (align2 - 1);
4431 if (offset1)
4432 align1 = least_bit_hwi (offset1);
4433 if (offset2)
4434 align2 = least_bit_hwi (offset2);
4435 if (align2 > align1)
4436 return false;
4437 if (memcmp (x->bytes, y->bytes, x->size * sizeof (target_unit)) != 0)
4438 return false;
4439 return true;
4442 /* Attempt to optimize constant pool POOL. If it contains both CONST_VECTOR
4443 constants and scalar constants with the values of CONST_VECTOR elements,
4444 try to alias the scalar constants with the CONST_VECTOR elements. */
4446 static void
4447 optimize_constant_pool (struct rtx_constant_pool *pool)
4449 auto_vec<target_unit, 128> buffer;
4450 auto_vec<constant_descriptor_rtx_data *, 128> vec;
4451 object_allocator<constant_descriptor_rtx_data>
4452 data_pool ("constant_descriptor_rtx_data_pool");
4453 int idx = 0;
4454 size_t size = 0;
4455 for (constant_descriptor_rtx *desc = pool->first; desc; desc = desc->next)
4456 if (desc->mark > 0
4457 && ! (SYMBOL_REF_HAS_BLOCK_INFO_P (desc->sym)
4458 && SYMBOL_REF_BLOCK (desc->sym)))
4460 buffer.truncate (0);
4461 buffer.reserve (GET_MODE_SIZE (desc->mode));
4462 if (native_encode_rtx (desc->mode, desc->constant, buffer, 0,
4463 GET_MODE_SIZE (desc->mode)))
4465 constant_descriptor_rtx_data *data = data_pool.allocate ();
4466 data->desc = desc;
4467 data->bytes = NULL;
4468 data->size = GET_MODE_SIZE (desc->mode);
4469 data->offset = 0;
4470 data->hash = idx++;
4471 size += data->size;
4472 vec.safe_push (data);
4475 if (idx)
4477 vec.qsort (constant_descriptor_rtx_data_cmp);
4478 unsigned min_size = vec.last ()->size;
4479 target_unit *bytes = XNEWVEC (target_unit, size);
4480 unsigned int i;
4481 constant_descriptor_rtx_data *data;
4482 hash_table<const_rtx_data_hasher> * htab
4483 = new hash_table<const_rtx_data_hasher> (31);
4484 size = 0;
4485 FOR_EACH_VEC_ELT (vec, i, data)
4487 buffer.truncate (0);
4488 native_encode_rtx (data->desc->mode, data->desc->constant,
4489 buffer, 0, data->size);
4490 memcpy (bytes + size, buffer.address (), data->size);
4491 data->bytes = bytes + size;
4492 data->hash = iterative_hash (data->bytes,
4493 data->size * sizeof (target_unit), 0);
4494 size += data->size;
4495 constant_descriptor_rtx_data **slot
4496 = htab->find_slot_with_hash (data, data->hash, INSERT);
4497 if (*slot)
4499 data->desc->mark = ~(*slot)->desc->labelno;
4500 data->desc->offset = (*slot)->offset;
4502 else
4504 unsigned int sz = 1 << floor_log2 (data->size);
4506 *slot = data;
4507 for (sz >>= 1; sz >= min_size; sz >>= 1)
4508 for (unsigned off = 0; off + sz <= data->size; off += sz)
4510 constant_descriptor_rtx_data tmp;
4511 tmp.desc = data->desc;
4512 tmp.bytes = data->bytes + off;
4513 tmp.size = sz;
4514 tmp.offset = off;
4515 tmp.hash = iterative_hash (tmp.bytes,
4516 sz * sizeof (target_unit), 0);
4517 slot = htab->find_slot_with_hash (&tmp, tmp.hash, INSERT);
4518 if (*slot == NULL)
4520 *slot = data_pool.allocate ();
4521 **slot = tmp;
4526 delete htab;
4527 XDELETE (bytes);
4529 data_pool.release ();
4532 /* Mark all constants that are used in the current function, then write
4533 out the function's private constant pool. */
4535 static void
4536 output_constant_pool (const char *fnname ATTRIBUTE_UNUSED,
4537 tree fndecl ATTRIBUTE_UNUSED)
4539 struct rtx_constant_pool *pool = crtl->varasm.pool;
4541 /* It is possible for gcc to call force_const_mem and then to later
4542 discard the instructions which refer to the constant. In such a
4543 case we do not need to output the constant. */
4544 mark_constant_pool ();
4546 /* Having marked the constant pool entries we'll actually emit, we
4547 now need to rebuild the offset information, which may have become
4548 stale. */
4549 recompute_pool_offsets (pool);
4551 #ifdef ASM_OUTPUT_POOL_PROLOGUE
4552 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file, fnname, fndecl, pool->offset);
4553 #endif
4555 output_constant_pool_contents (pool);
4557 #ifdef ASM_OUTPUT_POOL_EPILOGUE
4558 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file, fnname, fndecl, pool->offset);
4559 #endif
4562 /* Write the contents of the shared constant pool. */
4564 void
4565 output_shared_constant_pool (void)
4567 if (optimize
4568 && TARGET_SUPPORTS_ALIASES)
4569 optimize_constant_pool (shared_constant_pool);
4571 output_constant_pool_contents (shared_constant_pool);
4574 /* Determine what kind of relocations EXP may need. */
4577 compute_reloc_for_constant (tree exp)
4579 int reloc = 0, reloc2;
4580 tree tem;
4582 switch (TREE_CODE (exp))
4584 case ADDR_EXPR:
4585 case FDESC_EXPR:
4586 /* Go inside any operations that get_inner_reference can handle and see
4587 if what's inside is a constant: no need to do anything here for
4588 addresses of variables or functions. */
4589 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
4590 tem = TREE_OPERAND (tem, 0))
4593 if (TREE_CODE (tem) == MEM_REF
4594 && TREE_CODE (TREE_OPERAND (tem, 0)) == ADDR_EXPR)
4596 reloc = compute_reloc_for_constant (TREE_OPERAND (tem, 0));
4597 break;
4600 if (!targetm.binds_local_p (tem))
4601 reloc |= 2;
4602 else
4603 reloc |= 1;
4604 break;
4606 case PLUS_EXPR:
4607 case POINTER_PLUS_EXPR:
4608 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
4609 reloc |= compute_reloc_for_constant (TREE_OPERAND (exp, 1));
4610 break;
4612 case MINUS_EXPR:
4613 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
4614 reloc2 = compute_reloc_for_constant (TREE_OPERAND (exp, 1));
4615 /* The difference of two local labels is computable at link time. */
4616 if (reloc == 1 && reloc2 == 1)
4617 reloc = 0;
4618 else
4619 reloc |= reloc2;
4620 break;
4622 CASE_CONVERT:
4623 case VIEW_CONVERT_EXPR:
4624 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
4625 break;
4627 case CONSTRUCTOR:
4629 unsigned HOST_WIDE_INT idx;
4630 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, tem)
4631 if (tem != 0)
4632 reloc |= compute_reloc_for_constant (tem);
4634 break;
4636 default:
4637 break;
4639 return reloc;
4642 /* Find all the constants whose addresses are referenced inside of EXP,
4643 and make sure assembler code with a label has been output for each one.
4644 Indicate whether an ADDR_EXPR has been encountered. */
4646 static void
4647 output_addressed_constants (tree exp, int defer)
4649 tree tem;
4651 switch (TREE_CODE (exp))
4653 case ADDR_EXPR:
4654 case FDESC_EXPR:
4655 /* Go inside any operations that get_inner_reference can handle and see
4656 if what's inside is a constant: no need to do anything here for
4657 addresses of variables or functions. */
4658 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
4659 tem = TREE_OPERAND (tem, 0))
4662 /* If we have an initialized CONST_DECL, retrieve the initializer. */
4663 if (TREE_CODE (tem) == CONST_DECL && DECL_INITIAL (tem))
4664 tem = DECL_INITIAL (tem);
4666 if (CONSTANT_CLASS_P (tem) || TREE_CODE (tem) == CONSTRUCTOR)
4667 output_constant_def (tem, defer);
4669 if (TREE_CODE (tem) == MEM_REF)
4670 output_addressed_constants (TREE_OPERAND (tem, 0), defer);
4671 break;
4673 case PLUS_EXPR:
4674 case POINTER_PLUS_EXPR:
4675 case MINUS_EXPR:
4676 output_addressed_constants (TREE_OPERAND (exp, 1), defer);
4677 gcc_fallthrough ();
4679 CASE_CONVERT:
4680 case VIEW_CONVERT_EXPR:
4681 output_addressed_constants (TREE_OPERAND (exp, 0), defer);
4682 break;
4684 case CONSTRUCTOR:
4686 unsigned HOST_WIDE_INT idx;
4687 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, tem)
4688 if (tem != 0)
4689 output_addressed_constants (tem, defer);
4691 break;
4693 default:
4694 break;
4698 /* Whether a constructor CTOR is a valid static constant initializer if all
4699 its elements are. This used to be internal to initializer_constant_valid_p
4700 and has been exposed to let other functions like categorize_ctor_elements
4701 evaluate the property while walking a constructor for other purposes. */
4703 bool
4704 constructor_static_from_elts_p (const_tree ctor)
4706 return (TREE_CONSTANT (ctor)
4707 && (TREE_CODE (TREE_TYPE (ctor)) == UNION_TYPE
4708 || TREE_CODE (TREE_TYPE (ctor)) == RECORD_TYPE
4709 || TREE_CODE (TREE_TYPE (ctor)) == ARRAY_TYPE));
4712 static tree initializer_constant_valid_p_1 (tree value, tree endtype,
4713 tree *cache);
4715 /* A subroutine of initializer_constant_valid_p. VALUE is a MINUS_EXPR,
4716 PLUS_EXPR or POINTER_PLUS_EXPR. This looks for cases of VALUE
4717 which are valid when ENDTYPE is an integer of any size; in
4718 particular, this does not accept a pointer minus a constant. This
4719 returns null_pointer_node if the VALUE is an absolute constant
4720 which can be used to initialize a static variable. Otherwise it
4721 returns NULL. */
4723 static tree
4724 narrowing_initializer_constant_valid_p (tree value, tree endtype, tree *cache)
4726 tree op0, op1;
4728 if (!INTEGRAL_TYPE_P (endtype))
4729 return NULL_TREE;
4731 op0 = TREE_OPERAND (value, 0);
4732 op1 = TREE_OPERAND (value, 1);
4734 /* Like STRIP_NOPS except allow the operand mode to widen. This
4735 works around a feature of fold that simplifies (int)(p1 - p2) to
4736 ((int)p1 - (int)p2) under the theory that the narrower operation
4737 is cheaper. */
4739 while (CONVERT_EXPR_P (op0)
4740 || TREE_CODE (op0) == NON_LVALUE_EXPR)
4742 tree inner = TREE_OPERAND (op0, 0);
4743 if (inner == error_mark_node
4744 || ! INTEGRAL_TYPE_P (TREE_TYPE (op0))
4745 || ! SCALAR_INT_MODE_P (TYPE_MODE (TREE_TYPE (op0)))
4746 || ! INTEGRAL_TYPE_P (TREE_TYPE (inner))
4747 || ! SCALAR_INT_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
4748 || (GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (op0)))
4749 > GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (inner)))))
4750 break;
4751 op0 = inner;
4754 while (CONVERT_EXPR_P (op1)
4755 || TREE_CODE (op1) == NON_LVALUE_EXPR)
4757 tree inner = TREE_OPERAND (op1, 0);
4758 if (inner == error_mark_node
4759 || ! INTEGRAL_TYPE_P (TREE_TYPE (op1))
4760 || ! SCALAR_INT_MODE_P (TYPE_MODE (TREE_TYPE (op1)))
4761 || ! INTEGRAL_TYPE_P (TREE_TYPE (inner))
4762 || ! SCALAR_INT_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
4763 || (GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (op1)))
4764 > GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (inner)))))
4765 break;
4766 op1 = inner;
4769 op0 = initializer_constant_valid_p_1 (op0, endtype, cache);
4770 if (!op0)
4771 return NULL_TREE;
4773 op1 = initializer_constant_valid_p_1 (op1, endtype,
4774 cache ? cache + 2 : NULL);
4775 /* Both initializers must be known. */
4776 if (op1)
4778 if (op0 == op1
4779 && (op0 == null_pointer_node
4780 || TREE_CODE (value) == MINUS_EXPR))
4781 return null_pointer_node;
4783 /* Support differences between labels. */
4784 if (TREE_CODE (op0) == LABEL_DECL
4785 && TREE_CODE (op1) == LABEL_DECL)
4786 return null_pointer_node;
4788 if (TREE_CODE (op0) == STRING_CST
4789 && TREE_CODE (op1) == STRING_CST
4790 && operand_equal_p (op0, op1, 1))
4791 return null_pointer_node;
4794 return NULL_TREE;
4797 /* Helper function of initializer_constant_valid_p.
4798 Return nonzero if VALUE is a valid constant-valued expression
4799 for use in initializing a static variable; one that can be an
4800 element of a "constant" initializer.
4802 Return null_pointer_node if the value is absolute;
4803 if it is relocatable, return the variable that determines the relocation.
4804 We assume that VALUE has been folded as much as possible;
4805 therefore, we do not need to check for such things as
4806 arithmetic-combinations of integers.
4808 Use CACHE (pointer to 2 tree values) for caching if non-NULL. */
4810 static tree
4811 initializer_constant_valid_p_1 (tree value, tree endtype, tree *cache)
4813 tree ret;
4815 switch (TREE_CODE (value))
4817 case CONSTRUCTOR:
4818 if (constructor_static_from_elts_p (value))
4820 unsigned HOST_WIDE_INT idx;
4821 tree elt;
4822 bool absolute = true;
4824 if (cache && cache[0] == value)
4825 return cache[1];
4826 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value), idx, elt)
4828 tree reloc;
4829 reloc = initializer_constant_valid_p_1 (elt, TREE_TYPE (elt),
4830 NULL);
4831 if (!reloc
4832 /* An absolute value is required with reverse SSO. */
4833 || (reloc != null_pointer_node
4834 && TYPE_REVERSE_STORAGE_ORDER (TREE_TYPE (value))
4835 && !AGGREGATE_TYPE_P (TREE_TYPE (elt))))
4837 if (cache)
4839 cache[0] = value;
4840 cache[1] = NULL_TREE;
4842 return NULL_TREE;
4844 if (reloc != null_pointer_node)
4845 absolute = false;
4847 /* For a non-absolute relocation, there is no single
4848 variable that can be "the variable that determines the
4849 relocation." */
4850 if (cache)
4852 cache[0] = value;
4853 cache[1] = absolute ? null_pointer_node : error_mark_node;
4855 return absolute ? null_pointer_node : error_mark_node;
4858 return TREE_STATIC (value) ? null_pointer_node : NULL_TREE;
4860 case INTEGER_CST:
4861 case VECTOR_CST:
4862 case REAL_CST:
4863 case FIXED_CST:
4864 case STRING_CST:
4865 case COMPLEX_CST:
4866 return null_pointer_node;
4868 case ADDR_EXPR:
4869 case FDESC_EXPR:
4871 tree op0 = staticp (TREE_OPERAND (value, 0));
4872 if (op0)
4874 /* "&(*a).f" is like unto pointer arithmetic. If "a" turns out
4875 to be a constant, this is old-skool offsetof-like nonsense. */
4876 if (TREE_CODE (op0) == INDIRECT_REF
4877 && TREE_CONSTANT (TREE_OPERAND (op0, 0)))
4878 return null_pointer_node;
4879 /* Taking the address of a nested function involves a trampoline,
4880 unless we don't need or want one. */
4881 if (TREE_CODE (op0) == FUNCTION_DECL
4882 && DECL_STATIC_CHAIN (op0)
4883 && !TREE_NO_TRAMPOLINE (value))
4884 return NULL_TREE;
4885 /* "&{...}" requires a temporary to hold the constructed
4886 object. */
4887 if (TREE_CODE (op0) == CONSTRUCTOR)
4888 return NULL_TREE;
4890 return op0;
4893 case NON_LVALUE_EXPR:
4894 return initializer_constant_valid_p_1 (TREE_OPERAND (value, 0),
4895 endtype, cache);
4897 case VIEW_CONVERT_EXPR:
4899 tree src = TREE_OPERAND (value, 0);
4900 tree src_type = TREE_TYPE (src);
4901 tree dest_type = TREE_TYPE (value);
4903 /* Allow view-conversions from aggregate to non-aggregate type only
4904 if the bit pattern is fully preserved afterwards; otherwise, the
4905 RTL expander won't be able to apply a subsequent transformation
4906 to the underlying constructor. */
4907 if (AGGREGATE_TYPE_P (src_type) && !AGGREGATE_TYPE_P (dest_type))
4909 if (TYPE_MODE (endtype) == TYPE_MODE (dest_type))
4910 return initializer_constant_valid_p_1 (src, endtype, cache);
4911 else
4912 return NULL_TREE;
4915 /* Allow all other kinds of view-conversion. */
4916 return initializer_constant_valid_p_1 (src, endtype, cache);
4919 CASE_CONVERT:
4921 tree src = TREE_OPERAND (value, 0);
4922 tree src_type = TREE_TYPE (src);
4923 tree dest_type = TREE_TYPE (value);
4925 /* Allow conversions between pointer types and offset types. */
4926 if ((POINTER_TYPE_P (dest_type) && POINTER_TYPE_P (src_type))
4927 || (TREE_CODE (dest_type) == OFFSET_TYPE
4928 && TREE_CODE (src_type) == OFFSET_TYPE))
4929 return initializer_constant_valid_p_1 (src, endtype, cache);
4931 /* Allow length-preserving conversions between integer types and
4932 floating-point types. */
4933 if (((INTEGRAL_TYPE_P (dest_type) && INTEGRAL_TYPE_P (src_type))
4934 || (SCALAR_FLOAT_TYPE_P (dest_type)
4935 && SCALAR_FLOAT_TYPE_P (src_type)))
4936 && (TYPE_PRECISION (dest_type) == TYPE_PRECISION (src_type)))
4937 return initializer_constant_valid_p_1 (src, endtype, cache);
4939 /* Allow conversions between other integer types only if
4940 explicit value. Don't allow sign-extension to a type larger
4941 than word and pointer, there aren't relocations that would
4942 allow to sign extend it to a wider type. */
4943 if (INTEGRAL_TYPE_P (dest_type)
4944 && INTEGRAL_TYPE_P (src_type)
4945 && (TYPE_UNSIGNED (src_type)
4946 || TYPE_PRECISION (dest_type) <= TYPE_PRECISION (src_type)
4947 || TYPE_PRECISION (dest_type) <= BITS_PER_WORD
4948 || TYPE_PRECISION (dest_type) <= POINTER_SIZE))
4950 tree inner = initializer_constant_valid_p_1 (src, endtype, cache);
4951 if (inner == null_pointer_node)
4952 return null_pointer_node;
4953 break;
4956 /* Allow (int) &foo provided int is as wide as a pointer. */
4957 if (INTEGRAL_TYPE_P (dest_type) && POINTER_TYPE_P (src_type)
4958 && (TYPE_PRECISION (dest_type) >= TYPE_PRECISION (src_type)))
4959 return initializer_constant_valid_p_1 (src, endtype, cache);
4961 /* Likewise conversions from int to pointers, but also allow
4962 conversions from 0. */
4963 if ((POINTER_TYPE_P (dest_type)
4964 || TREE_CODE (dest_type) == OFFSET_TYPE)
4965 && INTEGRAL_TYPE_P (src_type))
4967 if (TREE_CODE (src) == INTEGER_CST
4968 && TYPE_PRECISION (dest_type) >= TYPE_PRECISION (src_type))
4969 return null_pointer_node;
4970 if (integer_zerop (src))
4971 return null_pointer_node;
4972 else if (TYPE_PRECISION (dest_type) <= TYPE_PRECISION (src_type))
4973 return initializer_constant_valid_p_1 (src, endtype, cache);
4976 /* Allow conversions to struct or union types if the value
4977 inside is okay. */
4978 if (TREE_CODE (dest_type) == RECORD_TYPE
4979 || TREE_CODE (dest_type) == UNION_TYPE)
4980 return initializer_constant_valid_p_1 (src, endtype, cache);
4982 break;
4984 case POINTER_PLUS_EXPR:
4985 case PLUS_EXPR:
4986 /* Any valid floating-point constants will have been folded by now;
4987 with -frounding-math we hit this with addition of two constants. */
4988 if (TREE_CODE (endtype) == REAL_TYPE)
4989 return NULL_TREE;
4990 if (cache && cache[0] == value)
4991 return cache[1];
4992 if (! INTEGRAL_TYPE_P (endtype)
4993 || ! INTEGRAL_TYPE_P (TREE_TYPE (value))
4994 || TYPE_PRECISION (endtype) >= TYPE_PRECISION (TREE_TYPE (value)))
4996 tree ncache[4] = { NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE };
4997 tree valid0
4998 = initializer_constant_valid_p_1 (TREE_OPERAND (value, 0),
4999 endtype, ncache);
5000 tree valid1
5001 = initializer_constant_valid_p_1 (TREE_OPERAND (value, 1),
5002 endtype, ncache + 2);
5003 /* If either term is absolute, use the other term's relocation. */
5004 if (valid0 == null_pointer_node)
5005 ret = valid1;
5006 else if (valid1 == null_pointer_node)
5007 ret = valid0;
5008 /* Support narrowing pointer differences. */
5009 else
5010 ret = narrowing_initializer_constant_valid_p (value, endtype,
5011 ncache);
5013 else
5014 /* Support narrowing pointer differences. */
5015 ret = narrowing_initializer_constant_valid_p (value, endtype, NULL);
5016 if (cache)
5018 cache[0] = value;
5019 cache[1] = ret;
5021 return ret;
5023 case POINTER_DIFF_EXPR:
5024 case MINUS_EXPR:
5025 if (TREE_CODE (endtype) == REAL_TYPE)
5026 return NULL_TREE;
5027 if (cache && cache[0] == value)
5028 return cache[1];
5029 if (! INTEGRAL_TYPE_P (endtype)
5030 || ! INTEGRAL_TYPE_P (TREE_TYPE (value))
5031 || TYPE_PRECISION (endtype) >= TYPE_PRECISION (TREE_TYPE (value)))
5033 tree ncache[4] = { NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE };
5034 tree valid0
5035 = initializer_constant_valid_p_1 (TREE_OPERAND (value, 0),
5036 endtype, ncache);
5037 tree valid1
5038 = initializer_constant_valid_p_1 (TREE_OPERAND (value, 1),
5039 endtype, ncache + 2);
5040 /* Win if second argument is absolute. */
5041 if (valid1 == null_pointer_node)
5042 ret = valid0;
5043 /* Win if both arguments have the same relocation.
5044 Then the value is absolute. */
5045 else if (valid0 == valid1 && valid0 != 0)
5046 ret = null_pointer_node;
5047 /* Since GCC guarantees that string constants are unique in the
5048 generated code, a subtraction between two copies of the same
5049 constant string is absolute. */
5050 else if (valid0 && TREE_CODE (valid0) == STRING_CST
5051 && valid1 && TREE_CODE (valid1) == STRING_CST
5052 && operand_equal_p (valid0, valid1, 1))
5053 ret = null_pointer_node;
5054 /* Support narrowing differences. */
5055 else
5056 ret = narrowing_initializer_constant_valid_p (value, endtype,
5057 ncache);
5059 else
5060 /* Support narrowing differences. */
5061 ret = narrowing_initializer_constant_valid_p (value, endtype, NULL);
5062 if (cache)
5064 cache[0] = value;
5065 cache[1] = ret;
5067 return ret;
5069 default:
5070 break;
5073 return NULL_TREE;
5076 /* Return nonzero if VALUE is a valid constant-valued expression
5077 for use in initializing a static variable; one that can be an
5078 element of a "constant" initializer.
5080 Return null_pointer_node if the value is absolute;
5081 if it is relocatable, return the variable that determines the relocation.
5082 We assume that VALUE has been folded as much as possible;
5083 therefore, we do not need to check for such things as
5084 arithmetic-combinations of integers. */
5085 tree
5086 initializer_constant_valid_p (tree value, tree endtype, bool reverse)
5088 tree reloc = initializer_constant_valid_p_1 (value, endtype, NULL);
5090 /* An absolute value is required with reverse storage order. */
5091 if (reloc
5092 && reloc != null_pointer_node
5093 && reverse
5094 && !AGGREGATE_TYPE_P (endtype)
5095 && !VECTOR_TYPE_P (endtype))
5096 reloc = NULL_TREE;
5098 return reloc;
5101 /* Return true if VALUE is a valid constant-valued expression
5102 for use in initializing a static bit-field; one that can be
5103 an element of a "constant" initializer. */
5105 bool
5106 initializer_constant_valid_for_bitfield_p (const_tree value)
5108 /* For bitfields we support integer constants or possibly nested aggregates
5109 of such. */
5110 switch (TREE_CODE (value))
5112 case CONSTRUCTOR:
5114 unsigned HOST_WIDE_INT idx;
5115 const_tree elt;
5117 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value), idx, elt)
5118 if (!initializer_constant_valid_for_bitfield_p (elt))
5119 return false;
5120 return true;
5123 case INTEGER_CST:
5124 case REAL_CST:
5125 return true;
5127 case VIEW_CONVERT_EXPR:
5128 case NON_LVALUE_EXPR:
5129 return
5130 initializer_constant_valid_for_bitfield_p (TREE_OPERAND (value, 0));
5132 default:
5133 break;
5136 return false;
5139 /* Check if a STRING_CST fits into the field.
5140 Tolerate only the case when the NUL termination
5141 does not fit into the field. */
5143 static bool
5144 check_string_literal (tree string, unsigned HOST_WIDE_INT size)
5146 tree type = TREE_TYPE (string);
5147 tree eltype = TREE_TYPE (type);
5148 unsigned HOST_WIDE_INT elts = tree_to_uhwi (TYPE_SIZE_UNIT (eltype));
5149 unsigned HOST_WIDE_INT mem_size = tree_to_uhwi (TYPE_SIZE_UNIT (type));
5150 int len = TREE_STRING_LENGTH (string);
5152 if (elts != 1 && elts != 2 && elts != 4)
5153 return false;
5154 if (len < 0 || len % elts != 0)
5155 return false;
5156 if (size < (unsigned)len)
5157 return false;
5158 if (mem_size != size)
5159 return false;
5160 return true;
5163 /* output_constructor outer state of relevance in recursive calls, typically
5164 for nested aggregate bitfields. */
5166 struct oc_outer_state {
5167 unsigned int bit_offset; /* current position in ... */
5168 int byte; /* ... the outer byte buffer. */
5171 static unsigned HOST_WIDE_INT
5172 output_constructor (tree, unsigned HOST_WIDE_INT, unsigned int, bool,
5173 oc_outer_state *);
5175 /* Output assembler code for constant EXP, with no label.
5176 This includes the pseudo-op such as ".int" or ".byte", and a newline.
5177 Assumes output_addressed_constants has been done on EXP already.
5179 Generate at least SIZE bytes of assembler data, padding at the end
5180 with zeros if necessary. SIZE must always be specified. The returned
5181 value is the actual number of bytes of assembler data generated, which
5182 may be bigger than SIZE if the object contains a variable length field.
5184 SIZE is important for structure constructors,
5185 since trailing members may have been omitted from the constructor.
5186 It is also important for initialization of arrays from string constants
5187 since the full length of the string constant might not be wanted.
5188 It is also needed for initialization of unions, where the initializer's
5189 type is just one member, and that may not be as long as the union.
5191 There a case in which we would fail to output exactly SIZE bytes:
5192 for a structure constructor that wants to produce more than SIZE bytes.
5193 But such constructors will never be generated for any possible input.
5195 ALIGN is the alignment of the data in bits.
5197 If REVERSE is true, EXP is output in reverse storage order. */
5199 static unsigned HOST_WIDE_INT
5200 output_constant (tree exp, unsigned HOST_WIDE_INT size, unsigned int align,
5201 bool reverse, bool merge_strings)
5203 enum tree_code code;
5204 unsigned HOST_WIDE_INT thissize;
5205 rtx cst;
5207 if (size == 0 || flag_syntax_only)
5208 return size;
5210 /* See if we're trying to initialize a pointer in a non-default mode
5211 to the address of some declaration somewhere. If the target says
5212 the mode is valid for pointers, assume the target has a way of
5213 resolving it. */
5214 if (TREE_CODE (exp) == NOP_EXPR
5215 && POINTER_TYPE_P (TREE_TYPE (exp))
5216 && targetm.addr_space.valid_pointer_mode
5217 (SCALAR_INT_TYPE_MODE (TREE_TYPE (exp)),
5218 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp)))))
5220 tree saved_type = TREE_TYPE (exp);
5222 /* Peel off any intermediate conversions-to-pointer for valid
5223 pointer modes. */
5224 while (TREE_CODE (exp) == NOP_EXPR
5225 && POINTER_TYPE_P (TREE_TYPE (exp))
5226 && targetm.addr_space.valid_pointer_mode
5227 (SCALAR_INT_TYPE_MODE (TREE_TYPE (exp)),
5228 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp)))))
5229 exp = TREE_OPERAND (exp, 0);
5231 /* If what we're left with is the address of something, we can
5232 convert the address to the final type and output it that
5233 way. */
5234 if (TREE_CODE (exp) == ADDR_EXPR)
5235 exp = build1 (ADDR_EXPR, saved_type, TREE_OPERAND (exp, 0));
5236 /* Likewise for constant ints. */
5237 else if (TREE_CODE (exp) == INTEGER_CST)
5238 exp = fold_convert (saved_type, exp);
5242 /* Eliminate any conversions since we'll be outputting the underlying
5243 constant. */
5244 while (CONVERT_EXPR_P (exp)
5245 || TREE_CODE (exp) == NON_LVALUE_EXPR
5246 || TREE_CODE (exp) == VIEW_CONVERT_EXPR)
5248 HOST_WIDE_INT type_size = int_size_in_bytes (TREE_TYPE (exp));
5249 HOST_WIDE_INT op_size = int_size_in_bytes (TREE_TYPE (TREE_OPERAND (exp, 0)));
5251 /* Make sure eliminating the conversion is really a no-op, except with
5252 VIEW_CONVERT_EXPRs to allow for wild Ada unchecked conversions and
5253 union types to allow for Ada unchecked unions. */
5254 if (type_size > op_size
5255 && TREE_CODE (exp) != VIEW_CONVERT_EXPR
5256 && TREE_CODE (TREE_TYPE (exp)) != UNION_TYPE)
5257 /* Keep the conversion. */
5258 break;
5259 else
5260 exp = TREE_OPERAND (exp, 0);
5263 code = TREE_CODE (TREE_TYPE (exp));
5264 thissize = int_size_in_bytes (TREE_TYPE (exp));
5266 /* Allow a constructor with no elements for any data type.
5267 This means to fill the space with zeros. */
5268 if (TREE_CODE (exp) == CONSTRUCTOR
5269 && vec_safe_is_empty (CONSTRUCTOR_ELTS (exp)))
5271 assemble_zeros (size);
5272 return size;
5275 if (TREE_CODE (exp) == FDESC_EXPR)
5277 #ifdef ASM_OUTPUT_FDESC
5278 HOST_WIDE_INT part = tree_to_shwi (TREE_OPERAND (exp, 1));
5279 tree decl = TREE_OPERAND (exp, 0);
5280 ASM_OUTPUT_FDESC (asm_out_file, decl, part);
5281 #else
5282 gcc_unreachable ();
5283 #endif
5284 return size;
5287 /* Now output the underlying data. If we've handling the padding, return.
5288 Otherwise, break and ensure SIZE is the size written. */
5289 switch (code)
5291 case BOOLEAN_TYPE:
5292 case INTEGER_TYPE:
5293 case ENUMERAL_TYPE:
5294 case POINTER_TYPE:
5295 case REFERENCE_TYPE:
5296 case OFFSET_TYPE:
5297 case FIXED_POINT_TYPE:
5298 case NULLPTR_TYPE:
5299 cst = expand_expr (exp, NULL_RTX, VOIDmode, EXPAND_INITIALIZER);
5300 if (reverse)
5301 cst = flip_storage_order (TYPE_MODE (TREE_TYPE (exp)), cst);
5302 if (!assemble_integer (cst, MIN (size, thissize), align, 0))
5303 error ("initializer for integer/fixed-point value is too complicated");
5304 break;
5306 case REAL_TYPE:
5307 gcc_assert (size == thissize);
5308 if (TREE_CODE (exp) != REAL_CST)
5309 error ("initializer for floating value is not a floating constant");
5310 else
5311 assemble_real (TREE_REAL_CST (exp),
5312 SCALAR_FLOAT_TYPE_MODE (TREE_TYPE (exp)),
5313 align, reverse);
5314 break;
5316 case COMPLEX_TYPE:
5317 output_constant (TREE_REALPART (exp), thissize / 2, align,
5318 reverse, false);
5319 output_constant (TREE_IMAGPART (exp), thissize / 2,
5320 min_align (align, BITS_PER_UNIT * (thissize / 2)),
5321 reverse, false);
5322 break;
5324 case BITINT_TYPE:
5325 if (TREE_CODE (exp) != INTEGER_CST)
5326 error ("initializer for %<_BitInt(%d)%> value is not an integer "
5327 "constant", TYPE_PRECISION (TREE_TYPE (exp)));
5328 else
5330 struct bitint_info info;
5331 tree type = TREE_TYPE (exp);
5332 bool ok = targetm.c.bitint_type_info (TYPE_PRECISION (type), &info);
5333 gcc_assert (ok);
5334 scalar_int_mode limb_mode
5335 = as_a <scalar_int_mode> (info.abi_limb_mode);
5336 if (TYPE_PRECISION (type) <= GET_MODE_PRECISION (limb_mode))
5338 cst = expand_expr (exp, NULL_RTX, VOIDmode, EXPAND_INITIALIZER);
5339 if (reverse)
5340 cst = flip_storage_order (TYPE_MODE (TREE_TYPE (exp)), cst);
5341 if (!assemble_integer (cst, MIN (size, thissize), align, 0))
5342 error ("initializer for integer/fixed-point value is too "
5343 "complicated");
5344 break;
5346 int prec = GET_MODE_PRECISION (limb_mode);
5347 int cnt = CEIL (TYPE_PRECISION (type), prec);
5348 tree limb_type = build_nonstandard_integer_type (prec, 1);
5349 int elt_size = GET_MODE_SIZE (limb_mode);
5350 unsigned int nalign = MIN (align, GET_MODE_ALIGNMENT (limb_mode));
5351 thissize = 0;
5352 if (prec == HOST_BITS_PER_WIDE_INT)
5353 for (int i = 0; i < cnt; i++)
5355 int idx = (info.big_endian ^ reverse) ? cnt - 1 - i : i;
5356 tree c;
5357 if (idx >= TREE_INT_CST_EXT_NUNITS (exp))
5358 c = build_int_cst (limb_type,
5359 tree_int_cst_sgn (exp) < 0 ? -1 : 0);
5360 else
5361 c = build_int_cst (limb_type,
5362 TREE_INT_CST_ELT (exp, idx));
5363 output_constant (c, elt_size, nalign, reverse, false);
5364 thissize += elt_size;
5366 else
5367 for (int i = 0; i < cnt; i++)
5369 int idx = (info.big_endian ^ reverse) ? cnt - 1 - i : i;
5370 wide_int w = wi::rshift (wi::to_wide (exp), idx * prec,
5371 TYPE_SIGN (TREE_TYPE (exp)));
5372 tree c = wide_int_to_tree (limb_type,
5373 wide_int::from (w, prec, UNSIGNED));
5374 output_constant (c, elt_size, nalign, reverse, false);
5375 thissize += elt_size;
5378 break;
5380 case ARRAY_TYPE:
5381 case VECTOR_TYPE:
5382 switch (TREE_CODE (exp))
5384 case CONSTRUCTOR:
5385 return output_constructor (exp, size, align, reverse, NULL);
5386 case STRING_CST:
5387 thissize = (unsigned HOST_WIDE_INT)TREE_STRING_LENGTH (exp);
5388 if (merge_strings
5389 && (thissize == 0
5390 || TREE_STRING_POINTER (exp) [thissize - 1] != '\0'))
5391 thissize++;
5392 gcc_checking_assert (check_string_literal (exp, size));
5393 assemble_string (TREE_STRING_POINTER (exp), thissize);
5394 break;
5395 case VECTOR_CST:
5397 scalar_mode inner = SCALAR_TYPE_MODE (TREE_TYPE (TREE_TYPE (exp)));
5398 unsigned int nalign = MIN (align, GET_MODE_ALIGNMENT (inner));
5399 int elt_size = GET_MODE_SIZE (inner);
5400 output_constant (VECTOR_CST_ELT (exp, 0), elt_size, align,
5401 reverse, false);
5402 thissize = elt_size;
5403 /* Static constants must have a fixed size. */
5404 unsigned int nunits = VECTOR_CST_NELTS (exp).to_constant ();
5405 for (unsigned int i = 1; i < nunits; i++)
5407 output_constant (VECTOR_CST_ELT (exp, i), elt_size, nalign,
5408 reverse, false);
5409 thissize += elt_size;
5411 break;
5413 default:
5414 gcc_unreachable ();
5416 break;
5418 case RECORD_TYPE:
5419 case UNION_TYPE:
5420 gcc_assert (TREE_CODE (exp) == CONSTRUCTOR);
5421 return output_constructor (exp, size, align, reverse, NULL);
5423 case ERROR_MARK:
5424 return 0;
5426 default:
5427 gcc_unreachable ();
5430 if (size > thissize)
5431 assemble_zeros (size - thissize);
5433 return size;
5436 /* Subroutine of output_constructor, used for computing the size of
5437 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
5438 type with an unspecified upper bound. */
5440 static unsigned HOST_WIDE_INT
5441 array_size_for_constructor (tree val)
5443 tree max_index;
5444 unsigned HOST_WIDE_INT cnt;
5445 tree index, value, tmp;
5446 offset_int i;
5448 /* This code used to attempt to handle string constants that are not
5449 arrays of single-bytes, but nothing else does, so there's no point in
5450 doing it here. */
5451 if (TREE_CODE (val) == STRING_CST)
5452 return TREE_STRING_LENGTH (val);
5454 max_index = NULL_TREE;
5455 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (val), cnt, index, value)
5457 if (TREE_CODE (index) == RANGE_EXPR)
5458 index = TREE_OPERAND (index, 1);
5459 if (max_index == NULL_TREE || tree_int_cst_lt (max_index, index))
5460 max_index = index;
5463 if (max_index == NULL_TREE)
5464 return 0;
5466 /* Compute the total number of array elements. */
5467 tmp = TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val)));
5468 i = wi::to_offset (max_index) - wi::to_offset (tmp) + 1;
5470 /* Multiply by the array element unit size to find number of bytes. */
5471 i *= wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val))));
5473 gcc_assert (wi::fits_uhwi_p (i));
5474 return i.to_uhwi ();
5477 /* Other datastructures + helpers for output_constructor. */
5479 /* output_constructor local state to support interaction with helpers. */
5481 struct oc_local_state {
5483 /* Received arguments. */
5484 tree exp; /* Constructor expression. */
5485 tree type; /* Type of constructor expression. */
5486 unsigned HOST_WIDE_INT size; /* # bytes to output - pad if necessary. */
5487 unsigned int align; /* Known initial alignment. */
5488 tree min_index; /* Lower bound if specified for an array. */
5490 /* Output processing state. */
5491 HOST_WIDE_INT total_bytes; /* # bytes output so far / current position. */
5492 int byte; /* Part of a bitfield byte yet to be output. */
5493 int last_relative_index; /* Implicit or explicit index of the last
5494 array element output within a bitfield. */
5495 bool byte_buffer_in_use; /* Whether BYTE is in use. */
5496 bool reverse; /* Whether reverse storage order is in use. */
5498 /* Current element. */
5499 tree field; /* Current field decl in a record. */
5500 tree val; /* Current element value. */
5501 tree index; /* Current element index. */
5505 /* Helper for output_constructor. From the current LOCAL state, output a
5506 RANGE_EXPR element. */
5508 static void
5509 output_constructor_array_range (oc_local_state *local)
5511 /* Perform the index calculation in modulo arithmetic but
5512 sign-extend the result because Ada has negative DECL_FIELD_OFFSETs
5513 but we are using an unsigned sizetype. */
5514 unsigned prec = TYPE_PRECISION (sizetype);
5515 offset_int idx = wi::sext (wi::to_offset (TREE_OPERAND (local->index, 0))
5516 - wi::to_offset (local->min_index), prec);
5517 tree valtype = TREE_TYPE (local->val);
5518 HOST_WIDE_INT fieldpos
5519 = (idx * wi::to_offset (TYPE_SIZE_UNIT (valtype))).to_short_addr ();
5521 /* Advance to offset of this element. */
5522 if (fieldpos > local->total_bytes)
5524 assemble_zeros (fieldpos - local->total_bytes);
5525 local->total_bytes = fieldpos;
5527 else
5528 /* Must not go backwards. */
5529 gcc_assert (fieldpos == local->total_bytes);
5531 unsigned HOST_WIDE_INT fieldsize
5532 = int_size_in_bytes (TREE_TYPE (local->type));
5534 HOST_WIDE_INT lo_index
5535 = tree_to_shwi (TREE_OPERAND (local->index, 0));
5536 HOST_WIDE_INT hi_index
5537 = tree_to_shwi (TREE_OPERAND (local->index, 1));
5538 HOST_WIDE_INT index;
5540 unsigned int align2
5541 = min_align (local->align, fieldsize * BITS_PER_UNIT);
5543 for (index = lo_index; index <= hi_index; index++)
5545 /* Output the element's initial value. */
5546 if (local->val == NULL_TREE)
5547 assemble_zeros (fieldsize);
5548 else
5549 fieldsize = output_constant (local->val, fieldsize, align2,
5550 local->reverse, false);
5552 /* Count its size. */
5553 local->total_bytes += fieldsize;
5557 /* Helper for output_constructor. From the current LOCAL state, output a
5558 field element that is not true bitfield or part of an outer one. */
5560 static void
5561 output_constructor_regular_field (oc_local_state *local)
5563 /* Field size and position. Since this structure is static, we know the
5564 positions are constant. */
5565 unsigned HOST_WIDE_INT fieldsize;
5566 HOST_WIDE_INT fieldpos;
5568 unsigned int align2;
5570 /* Output any buffered-up bit-fields preceding this element. */
5571 if (local->byte_buffer_in_use)
5573 assemble_integer (GEN_INT (local->byte), 1, BITS_PER_UNIT, 1);
5574 local->total_bytes++;
5575 local->byte_buffer_in_use = false;
5578 if (local->index != NULL_TREE)
5580 /* Perform the index calculation in modulo arithmetic but
5581 sign-extend the result because Ada has negative DECL_FIELD_OFFSETs
5582 but we are using an unsigned sizetype. */
5583 unsigned prec = TYPE_PRECISION (sizetype);
5584 offset_int idx = wi::sext (wi::to_offset (local->index)
5585 - wi::to_offset (local->min_index), prec);
5586 fieldpos = (idx * wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (local->val))))
5587 .to_short_addr ();
5589 else if (local->field != NULL_TREE)
5590 fieldpos = int_byte_position (local->field);
5591 else
5592 fieldpos = 0;
5594 /* Advance to offset of this element.
5595 Note no alignment needed in an array, since that is guaranteed
5596 if each element has the proper size. */
5597 if (local->field != NULL_TREE || local->index != NULL_TREE)
5599 if (fieldpos > local->total_bytes)
5601 assemble_zeros (fieldpos - local->total_bytes);
5602 local->total_bytes = fieldpos;
5604 else
5605 /* Must not go backwards. */
5606 gcc_assert (fieldpos == local->total_bytes);
5609 /* Find the alignment of this element. */
5610 align2 = min_align (local->align, BITS_PER_UNIT * fieldpos);
5612 /* Determine size this element should occupy. */
5613 if (local->field)
5615 fieldsize = 0;
5617 /* If this is an array with an unspecified upper bound,
5618 the initializer determines the size. */
5619 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
5620 but we cannot do this until the deprecated support for
5621 initializing zero-length array members is removed. */
5622 if (TREE_CODE (TREE_TYPE (local->field)) == ARRAY_TYPE
5623 && (!TYPE_DOMAIN (TREE_TYPE (local->field))
5624 || !TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (local->field)))))
5626 unsigned HOST_WIDE_INT fldsize
5627 = array_size_for_constructor (local->val);
5628 fieldsize = int_size_in_bytes (TREE_TYPE (local->val));
5629 /* In most cases fieldsize == fldsize as the size of the initializer
5630 determines how many elements the flexible array member has. For
5631 C++ fldsize can be smaller though, if the last or several last or
5632 all initializers of the flexible array member have side-effects
5633 and the FE splits them into dynamic initialization. */
5634 gcc_checking_assert (fieldsize >= fldsize);
5635 /* Given a non-empty initialization, this field had better
5636 be last. Given a flexible array member, the next field
5637 on the chain is a TYPE_DECL of the enclosing struct. */
5638 const_tree next = DECL_CHAIN (local->field);
5639 gcc_assert (!fieldsize || !next || TREE_CODE (next) != FIELD_DECL);
5641 else
5642 fieldsize = tree_to_uhwi (DECL_SIZE_UNIT (local->field));
5644 else
5645 fieldsize = int_size_in_bytes (TREE_TYPE (local->type));
5647 /* Output the element's initial value. */
5648 if (local->val == NULL_TREE)
5649 assemble_zeros (fieldsize);
5650 else
5651 fieldsize = output_constant (local->val, fieldsize, align2,
5652 local->reverse, false);
5654 /* Count its size. */
5655 local->total_bytes += fieldsize;
5658 /* Helper for output_constructor. From the LOCAL state, output an element
5659 that is a true bitfield or part of an outer one. BIT_OFFSET is the offset
5660 from the start of a possibly ongoing outer byte buffer. */
5662 static void
5663 output_constructor_bitfield (oc_local_state *local, unsigned int bit_offset)
5665 /* Bit size of this element. */
5666 HOST_WIDE_INT ebitsize
5667 = (local->field
5668 ? tree_to_uhwi (DECL_SIZE (local->field))
5669 : tree_to_uhwi (TYPE_SIZE (TREE_TYPE (local->type))));
5671 /* Relative index of this element if this is an array component. */
5672 HOST_WIDE_INT relative_index
5673 = (local->field
5675 : (local->index
5676 ? tree_to_uhwi (local->index) - tree_to_uhwi (local->min_index)
5677 : local->last_relative_index + 1));
5679 /* Bit position of this element from the start of the containing
5680 constructor. */
5681 HOST_WIDE_INT constructor_relative_ebitpos
5682 = (local->field
5683 ? int_bit_position (local->field)
5684 : ebitsize * relative_index);
5686 /* Bit position of this element from the start of a possibly ongoing
5687 outer byte buffer. */
5688 HOST_WIDE_INT byte_relative_ebitpos
5689 = bit_offset + constructor_relative_ebitpos;
5691 /* From the start of a possibly ongoing outer byte buffer, offsets to
5692 the first bit of this element and to the first bit past the end of
5693 this element. */
5694 HOST_WIDE_INT next_offset = byte_relative_ebitpos;
5695 HOST_WIDE_INT end_offset = byte_relative_ebitpos + ebitsize;
5697 local->last_relative_index = relative_index;
5699 if (local->val == NULL_TREE)
5700 local->val = integer_zero_node;
5702 while (TREE_CODE (local->val) == VIEW_CONVERT_EXPR
5703 || TREE_CODE (local->val) == NON_LVALUE_EXPR)
5704 local->val = TREE_OPERAND (local->val, 0);
5706 if (TREE_CODE (local->val) != INTEGER_CST
5707 && TREE_CODE (local->val) != CONSTRUCTOR)
5709 error ("invalid initial value for member %qE", DECL_NAME (local->field));
5710 return;
5713 /* If this field does not start in this (or next) byte, skip some bytes. */
5714 if (next_offset / BITS_PER_UNIT != local->total_bytes)
5716 /* Output remnant of any bit field in previous bytes. */
5717 if (local->byte_buffer_in_use)
5719 assemble_integer (GEN_INT (local->byte), 1, BITS_PER_UNIT, 1);
5720 local->total_bytes++;
5721 local->byte_buffer_in_use = false;
5724 /* If still not at proper byte, advance to there. */
5725 if (next_offset / BITS_PER_UNIT != local->total_bytes)
5727 gcc_assert (next_offset / BITS_PER_UNIT >= local->total_bytes);
5728 assemble_zeros (next_offset / BITS_PER_UNIT - local->total_bytes);
5729 local->total_bytes = next_offset / BITS_PER_UNIT;
5733 /* Set up the buffer if necessary. */
5734 if (!local->byte_buffer_in_use)
5736 local->byte = 0;
5737 if (ebitsize > 0)
5738 local->byte_buffer_in_use = true;
5741 /* If this is nested constructor, recurse passing the bit offset and the
5742 pending data, then retrieve the new pending data afterwards. */
5743 if (TREE_CODE (local->val) == CONSTRUCTOR)
5745 oc_outer_state temp_state;
5746 temp_state.bit_offset = next_offset % BITS_PER_UNIT;
5747 temp_state.byte = local->byte;
5748 local->total_bytes
5749 += output_constructor (local->val, 0, 0, local->reverse, &temp_state);
5750 local->byte = temp_state.byte;
5751 return;
5754 /* Otherwise, we must split the element into pieces that fall within
5755 separate bytes, and combine each byte with previous or following
5756 bit-fields. */
5757 while (next_offset < end_offset)
5759 int this_time;
5760 int shift;
5761 unsigned HOST_WIDE_INT value;
5762 HOST_WIDE_INT next_byte = next_offset / BITS_PER_UNIT;
5763 HOST_WIDE_INT next_bit = next_offset % BITS_PER_UNIT;
5765 /* Advance from byte to byte within this element when necessary. */
5766 while (next_byte != local->total_bytes)
5768 assemble_integer (GEN_INT (local->byte), 1, BITS_PER_UNIT, 1);
5769 local->total_bytes++;
5770 local->byte = 0;
5773 /* Number of bits we can process at once (all part of the same byte). */
5774 this_time = MIN (end_offset - next_offset, BITS_PER_UNIT - next_bit);
5775 if (local->reverse ? !BYTES_BIG_ENDIAN : BYTES_BIG_ENDIAN)
5777 /* For big-endian data, take the most significant bits (of the
5778 bits that are significant) first and put them into bytes from
5779 the most significant end. */
5780 shift = end_offset - next_offset - this_time;
5782 /* Don't try to take a bunch of bits that cross
5783 the word boundary in the INTEGER_CST. We can
5784 only select bits from one element. */
5785 if ((shift / HOST_BITS_PER_WIDE_INT)
5786 != ((shift + this_time - 1) / HOST_BITS_PER_WIDE_INT))
5788 const int end = shift + this_time - 1;
5789 shift = end & -HOST_BITS_PER_WIDE_INT;
5790 this_time = end - shift + 1;
5793 /* Now get the bits we want to insert. */
5794 value = wi::extract_uhwi (wi::to_widest (local->val),
5795 shift, this_time);
5797 /* Get the result. This works only when:
5798 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
5799 local->byte |= value << (BITS_PER_UNIT - this_time - next_bit);
5801 else
5803 /* On little-endian machines, take the least significant bits of
5804 the value first and pack them starting at the least significant
5805 bits of the bytes. */
5806 shift = next_offset - byte_relative_ebitpos;
5808 /* Don't try to take a bunch of bits that cross
5809 the word boundary in the INTEGER_CST. We can
5810 only select bits from one element. */
5811 if ((shift / HOST_BITS_PER_WIDE_INT)
5812 != ((shift + this_time - 1) / HOST_BITS_PER_WIDE_INT))
5813 this_time
5814 = HOST_BITS_PER_WIDE_INT - (shift & (HOST_BITS_PER_WIDE_INT - 1));
5816 /* Now get the bits we want to insert. */
5817 value = wi::extract_uhwi (wi::to_widest (local->val),
5818 shift, this_time);
5820 /* Get the result. This works only when:
5821 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
5822 local->byte |= value << next_bit;
5825 next_offset += this_time;
5826 local->byte_buffer_in_use = true;
5830 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
5831 Generate at least SIZE bytes, padding if necessary. OUTER designates the
5832 caller output state of relevance in recursive invocations. */
5834 static unsigned HOST_WIDE_INT
5835 output_constructor (tree exp, unsigned HOST_WIDE_INT size, unsigned int align,
5836 bool reverse, oc_outer_state *outer)
5838 unsigned HOST_WIDE_INT cnt;
5839 constructor_elt *ce;
5840 oc_local_state local;
5842 /* Setup our local state to communicate with helpers. */
5843 local.exp = exp;
5844 local.type = TREE_TYPE (exp);
5845 local.size = size;
5846 local.align = align;
5847 if (TREE_CODE (local.type) == ARRAY_TYPE && TYPE_DOMAIN (local.type))
5848 local.min_index = TYPE_MIN_VALUE (TYPE_DOMAIN (local.type));
5849 else
5850 local.min_index = integer_zero_node;
5852 local.total_bytes = 0;
5853 local.byte_buffer_in_use = outer != NULL;
5854 local.byte = outer ? outer->byte : 0;
5855 local.last_relative_index = -1;
5856 /* The storage order is specified for every aggregate type. */
5857 if (AGGREGATE_TYPE_P (local.type))
5858 local.reverse = TYPE_REVERSE_STORAGE_ORDER (local.type);
5859 else
5860 local.reverse = reverse;
5862 gcc_assert (HOST_BITS_PER_WIDE_INT >= BITS_PER_UNIT);
5864 /* As CE goes through the elements of the constant, FIELD goes through the
5865 structure fields if the constant is a structure. If the constant is a
5866 union, we override this by getting the field from the TREE_LIST element.
5867 But the constant could also be an array. Then FIELD is zero.
5869 There is always a maximum of one element in the chain LINK for unions
5870 (even if the initializer in a source program incorrectly contains
5871 more one). */
5873 if (TREE_CODE (local.type) == RECORD_TYPE)
5874 local.field = TYPE_FIELDS (local.type);
5875 else
5876 local.field = NULL_TREE;
5878 for (cnt = 0;
5879 vec_safe_iterate (CONSTRUCTOR_ELTS (exp), cnt, &ce);
5880 cnt++, local.field = local.field ? DECL_CHAIN (local.field) : 0)
5882 local.val = ce->value;
5883 local.index = NULL_TREE;
5885 /* The element in a union constructor specifies the proper field
5886 or index. */
5887 if (RECORD_OR_UNION_TYPE_P (local.type) && ce->index != NULL_TREE)
5888 local.field = ce->index;
5890 else if (TREE_CODE (local.type) == ARRAY_TYPE)
5891 local.index = ce->index;
5893 if (local.field && flag_verbose_asm)
5894 fprintf (asm_out_file, "%s %s:\n",
5895 ASM_COMMENT_START,
5896 DECL_NAME (local.field)
5897 ? IDENTIFIER_POINTER (DECL_NAME (local.field))
5898 : "<anonymous>");
5900 /* Eliminate the marker that makes a cast not be an lvalue. */
5901 if (local.val != NULL_TREE)
5902 STRIP_NOPS (local.val);
5904 /* Output the current element, using the appropriate helper ... */
5906 /* For an array slice not part of an outer bitfield. */
5907 if (!outer
5908 && local.index != NULL_TREE
5909 && TREE_CODE (local.index) == RANGE_EXPR)
5910 output_constructor_array_range (&local);
5912 /* For a field that is neither a true bitfield nor part of an outer one,
5913 known to be at least byte aligned and multiple-of-bytes long. */
5914 else if (!outer
5915 && (local.field == NULL_TREE
5916 || !CONSTRUCTOR_BITFIELD_P (local.field)))
5917 output_constructor_regular_field (&local);
5919 /* For a true bitfield or part of an outer one. Only INTEGER_CSTs are
5920 supported for scalar fields, so we may need to convert first. */
5921 else
5923 if (TREE_CODE (local.val) == REAL_CST)
5924 local.val
5925 = fold_unary (VIEW_CONVERT_EXPR,
5926 build_nonstandard_integer_type
5927 (TYPE_PRECISION (TREE_TYPE (local.val)), 0),
5928 local.val);
5929 output_constructor_bitfield (&local, outer ? outer->bit_offset : 0);
5933 /* If we are not at toplevel, save the pending data for our caller.
5934 Otherwise output the pending data and padding zeros as needed. */
5935 if (outer)
5936 outer->byte = local.byte;
5937 else
5939 if (local.byte_buffer_in_use)
5941 assemble_integer (GEN_INT (local.byte), 1, BITS_PER_UNIT, 1);
5942 local.total_bytes++;
5945 if ((unsigned HOST_WIDE_INT)local.total_bytes < local.size)
5947 assemble_zeros (local.size - local.total_bytes);
5948 local.total_bytes = local.size;
5952 return local.total_bytes;
5955 /* Mark DECL as weak. */
5957 static void
5958 mark_weak (tree decl)
5960 if (DECL_WEAK (decl))
5961 return;
5963 struct symtab_node *n = symtab_node::get (decl);
5964 if (n && n->refuse_visibility_changes)
5965 error ("%qD declared weak after being used", decl);
5966 DECL_WEAK (decl) = 1;
5968 if (DECL_RTL_SET_P (decl)
5969 && MEM_P (DECL_RTL (decl))
5970 && XEXP (DECL_RTL (decl), 0)
5971 && GET_CODE (XEXP (DECL_RTL (decl), 0)) == SYMBOL_REF)
5972 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl), 0)) = 1;
5975 /* Merge weak status between NEWDECL and OLDDECL. */
5977 void
5978 merge_weak (tree newdecl, tree olddecl)
5980 if (DECL_WEAK (newdecl) == DECL_WEAK (olddecl))
5982 if (DECL_WEAK (newdecl) && TARGET_SUPPORTS_WEAK)
5984 tree *pwd;
5985 /* We put the NEWDECL on the weak_decls list at some point
5986 and OLDDECL as well. Keep just OLDDECL on the list. */
5987 for (pwd = &weak_decls; *pwd; pwd = &TREE_CHAIN (*pwd))
5988 if (TREE_VALUE (*pwd) == newdecl)
5990 *pwd = TREE_CHAIN (*pwd);
5991 break;
5994 return;
5997 if (DECL_WEAK (newdecl))
5999 tree wd;
6001 /* NEWDECL is weak, but OLDDECL is not. */
6003 /* If we already output the OLDDECL, we're in trouble; we can't
6004 go back and make it weak. This should never happen in
6005 unit-at-a-time compilation. */
6006 gcc_assert (!TREE_ASM_WRITTEN (olddecl));
6008 /* If we've already generated rtl referencing OLDDECL, we may
6009 have done so in a way that will not function properly with
6010 a weak symbol. Again in unit-at-a-time this should be
6011 impossible. */
6012 gcc_assert (!TREE_USED (olddecl)
6013 || !TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl)));
6015 /* PR 49899: You cannot convert a static function into a weak, public function. */
6016 if (! TREE_PUBLIC (olddecl) && TREE_PUBLIC (newdecl))
6017 error ("weak declaration of %q+D being applied to a already "
6018 "existing, static definition", newdecl);
6020 if (TARGET_SUPPORTS_WEAK)
6022 /* We put the NEWDECL on the weak_decls list at some point.
6023 Replace it with the OLDDECL. */
6024 for (wd = weak_decls; wd; wd = TREE_CHAIN (wd))
6025 if (TREE_VALUE (wd) == newdecl)
6027 TREE_VALUE (wd) = olddecl;
6028 break;
6030 /* We may not find the entry on the list. If NEWDECL is a
6031 weak alias, then we will have already called
6032 globalize_decl to remove the entry; in that case, we do
6033 not need to do anything. */
6036 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
6037 mark_weak (olddecl);
6039 else
6040 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
6041 weak. Just update NEWDECL to indicate that it's weak too. */
6042 mark_weak (newdecl);
6045 /* Declare DECL to be a weak symbol. */
6047 void
6048 declare_weak (tree decl)
6050 /* With -fsyntax-only, TREE_ASM_WRITTEN might be set on certain function
6051 decls earlier than normally, but as with -fsyntax-only nothing is really
6052 emitted, there is no harm in marking it weak later. */
6053 gcc_assert (TREE_CODE (decl) != FUNCTION_DECL
6054 || !TREE_ASM_WRITTEN (decl)
6055 || flag_syntax_only);
6056 if (! TREE_PUBLIC (decl))
6058 error ("weak declaration of %q+D must be public", decl);
6059 return;
6061 else if (!TARGET_SUPPORTS_WEAK)
6062 warning (0, "weak declaration of %q+D not supported", decl);
6064 mark_weak (decl);
6065 if (!lookup_attribute ("weak", DECL_ATTRIBUTES (decl)))
6066 DECL_ATTRIBUTES (decl)
6067 = tree_cons (get_identifier ("weak"), NULL, DECL_ATTRIBUTES (decl));
6070 static void
6071 weak_finish_1 (tree decl)
6073 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
6074 const char *const name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
6075 #endif
6077 if (! TREE_USED (decl))
6078 return;
6080 #ifdef ASM_WEAKEN_DECL
6081 ASM_WEAKEN_DECL (asm_out_file, decl, name, NULL);
6082 #else
6083 #ifdef ASM_WEAKEN_LABEL
6084 ASM_WEAKEN_LABEL (asm_out_file, name);
6085 #else
6086 #ifdef ASM_OUTPUT_WEAK_ALIAS
6088 static bool warn_once = 0;
6089 if (! warn_once)
6091 warning (0, "only weak aliases are supported in this configuration");
6092 warn_once = 1;
6094 return;
6096 #endif
6097 #endif
6098 #endif
6101 /* Fiven an assembly name, find the decl it is associated with. */
6102 static tree
6103 find_decl (tree target)
6105 symtab_node *node = symtab_node::get_for_asmname (target);
6106 if (node)
6107 return node->decl;
6108 return NULL_TREE;
6111 /* This TREE_LIST contains weakref targets. */
6113 static GTY(()) tree weakref_targets;
6115 /* Emit any pending weak declarations. */
6117 void
6118 weak_finish (void)
6120 tree t;
6122 for (t = weakref_targets; t; t = TREE_CHAIN (t))
6124 tree alias_decl = TREE_PURPOSE (t);
6125 tree target = ultimate_transparent_alias_target (&TREE_VALUE (t));
6127 if (! TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (alias_decl))
6128 || TREE_SYMBOL_REFERENCED (target))
6129 /* Remove alias_decl from the weak list, but leave entries for
6130 the target alone. */
6131 target = NULL_TREE;
6132 #ifndef ASM_OUTPUT_WEAKREF
6133 else if (! TREE_SYMBOL_REFERENCED (target))
6135 /* Use ASM_WEAKEN_LABEL only if ASM_WEAKEN_DECL is not
6136 defined, otherwise we and weak_finish_1 would use
6137 different macros. */
6138 # if defined ASM_WEAKEN_LABEL && ! defined ASM_WEAKEN_DECL
6139 ASM_WEAKEN_LABEL (asm_out_file, IDENTIFIER_POINTER (target));
6140 # else
6141 tree decl = find_decl (target);
6143 if (! decl)
6145 decl = build_decl (DECL_SOURCE_LOCATION (alias_decl),
6146 TREE_CODE (alias_decl), target,
6147 TREE_TYPE (alias_decl));
6149 DECL_EXTERNAL (decl) = 1;
6150 TREE_PUBLIC (decl) = 1;
6151 DECL_ARTIFICIAL (decl) = 1;
6152 TREE_NOTHROW (decl) = TREE_NOTHROW (alias_decl);
6153 TREE_USED (decl) = 1;
6156 weak_finish_1 (decl);
6157 # endif
6159 #endif
6162 tree *p;
6163 tree t2;
6165 /* Remove the alias and the target from the pending weak list
6166 so that we do not emit any .weak directives for the former,
6167 nor multiple .weak directives for the latter. */
6168 for (p = &weak_decls; (t2 = *p) ; )
6170 if (TREE_VALUE (t2) == alias_decl
6171 || target == DECL_ASSEMBLER_NAME (TREE_VALUE (t2)))
6172 *p = TREE_CHAIN (t2);
6173 else
6174 p = &TREE_CHAIN (t2);
6177 /* Remove other weakrefs to the same target, to speed things up. */
6178 for (p = &TREE_CHAIN (t); (t2 = *p) ; )
6180 if (target == ultimate_transparent_alias_target (&TREE_VALUE (t2)))
6181 *p = TREE_CHAIN (t2);
6182 else
6183 p = &TREE_CHAIN (t2);
6188 for (t = weak_decls; t; t = TREE_CHAIN (t))
6190 tree decl = TREE_VALUE (t);
6192 weak_finish_1 (decl);
6196 /* Emit the assembly bits to indicate that DECL is globally visible. */
6198 static void
6199 globalize_decl (tree decl)
6202 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
6203 if (DECL_WEAK (decl))
6205 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
6206 tree *p, t;
6208 #ifdef ASM_WEAKEN_DECL
6209 ASM_WEAKEN_DECL (asm_out_file, decl, name, 0);
6210 #else
6211 ASM_WEAKEN_LABEL (asm_out_file, name);
6212 #endif
6214 /* Remove this function from the pending weak list so that
6215 we do not emit multiple .weak directives for it. */
6216 for (p = &weak_decls; (t = *p) ; )
6218 if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
6219 *p = TREE_CHAIN (t);
6220 else
6221 p = &TREE_CHAIN (t);
6224 /* Remove weakrefs to the same target from the pending weakref
6225 list, for the same reason. */
6226 for (p = &weakref_targets; (t = *p) ; )
6228 if (DECL_ASSEMBLER_NAME (decl)
6229 == ultimate_transparent_alias_target (&TREE_VALUE (t)))
6230 *p = TREE_CHAIN (t);
6231 else
6232 p = &TREE_CHAIN (t);
6235 return;
6237 #endif
6239 targetm.asm_out.globalize_decl_name (asm_out_file, decl);
6242 vec<alias_pair, va_gc> *alias_pairs;
6244 /* Output the assembler code for a define (equate) using ASM_OUTPUT_DEF
6245 or ASM_OUTPUT_DEF_FROM_DECLS. The function defines the symbol whose
6246 tree node is DECL to have the value of the tree node TARGET. */
6248 void
6249 do_assemble_alias (tree decl, tree target)
6251 tree id;
6253 /* Emulated TLS had better not get this var. */
6254 gcc_assert (!(!targetm.have_tls
6255 && VAR_P (decl)
6256 && DECL_THREAD_LOCAL_P (decl)));
6258 if (TREE_ASM_WRITTEN (decl))
6259 return;
6261 id = DECL_ASSEMBLER_NAME (decl);
6262 ultimate_transparent_alias_target (&id);
6263 ultimate_transparent_alias_target (&target);
6265 /* We must force creation of DECL_RTL for debug info generation, even though
6266 we don't use it here. */
6267 make_decl_rtl (decl);
6269 TREE_ASM_WRITTEN (decl) = 1;
6270 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl)) = 1;
6271 TREE_ASM_WRITTEN (id) = 1;
6273 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl)))
6275 if (!TREE_SYMBOL_REFERENCED (target))
6276 weakref_targets = tree_cons (decl, target, weakref_targets);
6278 #ifdef ASM_OUTPUT_WEAKREF
6279 ASM_OUTPUT_WEAKREF (asm_out_file, decl,
6280 IDENTIFIER_POINTER (id),
6281 IDENTIFIER_POINTER (target));
6282 #else
6283 if (!TARGET_SUPPORTS_WEAK)
6285 error_at (DECL_SOURCE_LOCATION (decl),
6286 "%qs is not supported in this configuration", "weakref ");
6287 return;
6289 #endif
6290 return;
6293 #ifdef ASM_OUTPUT_DEF
6294 tree orig_decl = decl;
6296 /* Make name accessible from other files, if appropriate. */
6298 if (TREE_PUBLIC (decl) || TREE_PUBLIC (orig_decl))
6300 globalize_decl (decl);
6301 maybe_assemble_visibility (decl);
6303 if (TREE_CODE (decl) == FUNCTION_DECL
6304 && cgraph_node::get (decl)->ifunc_resolver)
6306 #if defined (ASM_OUTPUT_TYPE_DIRECTIVE)
6307 if (targetm.has_ifunc_p ())
6308 ASM_OUTPUT_TYPE_DIRECTIVE
6309 (asm_out_file, IDENTIFIER_POINTER (id),
6310 IFUNC_ASM_TYPE);
6311 else
6312 #endif
6313 error_at (DECL_SOURCE_LOCATION (decl),
6314 "%qs is not supported on this target", "ifunc");
6317 # ifdef ASM_OUTPUT_DEF_FROM_DECLS
6318 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file, decl, target);
6319 # else
6320 ASM_OUTPUT_DEF (asm_out_file,
6321 IDENTIFIER_POINTER (id),
6322 IDENTIFIER_POINTER (target));
6323 # endif
6324 /* If symbol aliases aren't actually supported... */
6325 if (!TARGET_SUPPORTS_ALIASES)
6326 /* ..., 'ASM_OUTPUT_DEF{,_FROM_DECLS}' better have raised an error. */
6327 gcc_checking_assert (seen_error ());
6328 #elif defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
6330 const char *name;
6331 tree *p, t;
6333 name = IDENTIFIER_POINTER (id);
6334 # ifdef ASM_WEAKEN_DECL
6335 ASM_WEAKEN_DECL (asm_out_file, decl, name, IDENTIFIER_POINTER (target));
6336 # else
6337 ASM_OUTPUT_WEAK_ALIAS (asm_out_file, name, IDENTIFIER_POINTER (target));
6338 # endif
6339 /* Remove this function from the pending weak list so that
6340 we do not emit multiple .weak directives for it. */
6341 for (p = &weak_decls; (t = *p) ; )
6342 if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t))
6343 || id == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
6344 *p = TREE_CHAIN (t);
6345 else
6346 p = &TREE_CHAIN (t);
6348 /* Remove weakrefs to the same target from the pending weakref
6349 list, for the same reason. */
6350 for (p = &weakref_targets; (t = *p) ; )
6352 if (id == ultimate_transparent_alias_target (&TREE_VALUE (t)))
6353 *p = TREE_CHAIN (t);
6354 else
6355 p = &TREE_CHAIN (t);
6358 #endif
6361 /* Output .symver directive. */
6363 void
6364 do_assemble_symver (tree decl, tree target)
6366 tree id = DECL_ASSEMBLER_NAME (decl);
6367 ultimate_transparent_alias_target (&id);
6368 ultimate_transparent_alias_target (&target);
6369 #ifdef ASM_OUTPUT_SYMVER_DIRECTIVE
6370 ASM_OUTPUT_SYMVER_DIRECTIVE (asm_out_file,
6371 IDENTIFIER_POINTER (target),
6372 IDENTIFIER_POINTER (id));
6373 #else
6374 error ("symver is only supported on ELF platforms");
6375 #endif
6378 /* Emit an assembler directive to make the symbol for DECL an alias to
6379 the symbol for TARGET. */
6381 void
6382 assemble_alias (tree decl, tree target)
6384 tree target_decl;
6386 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl)))
6388 tree alias = DECL_ASSEMBLER_NAME (decl);
6390 ultimate_transparent_alias_target (&target);
6392 if (alias == target)
6393 error ("%qs symbol %q+D ultimately targets itself", "weakref", decl);
6394 if (TREE_PUBLIC (decl))
6395 error ("%qs symbol %q+D must have static linkage", "weakref", decl);
6397 else if (!TARGET_SUPPORTS_ALIASES)
6399 # if !defined(ASM_OUTPUT_WEAK_ALIAS) && !defined (ASM_WEAKEN_DECL)
6400 error_at (DECL_SOURCE_LOCATION (decl),
6401 "alias definitions not supported in this configuration");
6402 TREE_ASM_WRITTEN (decl) = 1;
6403 return;
6404 # else
6405 if (!DECL_WEAK (decl))
6407 /* NB: ifunc_resolver isn't set when an error is detected. */
6408 if (TREE_CODE (decl) == FUNCTION_DECL
6409 && lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl)))
6410 error_at (DECL_SOURCE_LOCATION (decl),
6411 "%qs is not supported in this configuration", "ifunc");
6412 else
6413 error_at (DECL_SOURCE_LOCATION (decl),
6414 "only weak aliases are supported in this configuration");
6415 TREE_ASM_WRITTEN (decl) = 1;
6416 return;
6418 # endif
6419 gcc_unreachable ();
6421 TREE_USED (decl) = 1;
6423 /* Allow aliases to aliases. */
6424 if (TREE_CODE (decl) == FUNCTION_DECL)
6425 cgraph_node::get_create (decl)->alias = true;
6426 else
6427 varpool_node::get_create (decl)->alias = true;
6429 /* If the target has already been emitted, we don't have to queue the
6430 alias. This saves a tad of memory. */
6431 if (symtab->global_info_ready)
6432 target_decl = find_decl (target);
6433 else
6434 target_decl= NULL;
6435 if ((target_decl && TREE_ASM_WRITTEN (target_decl))
6436 || symtab->state >= EXPANSION)
6437 do_assemble_alias (decl, target);
6438 else
6440 alias_pair p = {decl, target};
6441 vec_safe_push (alias_pairs, p);
6445 /* Record and output a table of translations from original function
6446 to its transaction aware clone. Note that tm_pure functions are
6447 considered to be their own clone. */
6449 struct tm_clone_hasher : ggc_cache_ptr_hash<tree_map>
6451 static hashval_t hash (tree_map *m) { return tree_map_hash (m); }
6452 static bool equal (tree_map *a, tree_map *b) { return tree_map_eq (a, b); }
6454 static int
6455 keep_cache_entry (tree_map *&e)
6457 return ggc_marked_p (e->base.from);
6461 static GTY((cache)) hash_table<tm_clone_hasher> *tm_clone_hash;
6463 void
6464 record_tm_clone_pair (tree o, tree n)
6466 struct tree_map **slot, *h;
6468 if (tm_clone_hash == NULL)
6469 tm_clone_hash = hash_table<tm_clone_hasher>::create_ggc (32);
6471 h = ggc_alloc<tree_map> ();
6472 h->hash = htab_hash_pointer (o);
6473 h->base.from = o;
6474 h->to = n;
6476 slot = tm_clone_hash->find_slot_with_hash (h, h->hash, INSERT);
6477 *slot = h;
6480 tree
6481 get_tm_clone_pair (tree o)
6483 if (tm_clone_hash)
6485 struct tree_map *h, in;
6487 in.base.from = o;
6488 in.hash = htab_hash_pointer (o);
6489 h = tm_clone_hash->find_with_hash (&in, in.hash);
6490 if (h)
6491 return h->to;
6493 return NULL_TREE;
6496 struct tm_alias_pair
6498 unsigned int uid;
6499 tree from;
6500 tree to;
6504 /* Dump the actual pairs to the .tm_clone_table section. */
6506 static void
6507 dump_tm_clone_pairs (vec<tm_alias_pair> tm_alias_pairs)
6509 unsigned i;
6510 tm_alias_pair *p;
6511 bool switched = false;
6513 FOR_EACH_VEC_ELT (tm_alias_pairs, i, p)
6515 tree src = p->from;
6516 tree dst = p->to;
6517 struct cgraph_node *src_n = cgraph_node::get (src);
6518 struct cgraph_node *dst_n = cgraph_node::get (dst);
6520 /* The function ipa_tm_create_version() marks the clone as needed if
6521 the original function was needed. But we also mark the clone as
6522 needed if we ever called the clone indirectly through
6523 TM_GETTMCLONE. If neither of these are true, we didn't generate
6524 a clone, and we didn't call it indirectly... no sense keeping it
6525 in the clone table. */
6526 if (!dst_n || !dst_n->definition)
6527 continue;
6529 /* This covers the case where we have optimized the original
6530 function away, and only access the transactional clone. */
6531 if (!src_n || !src_n->definition)
6532 continue;
6534 if (!switched)
6536 switch_to_section (targetm.asm_out.tm_clone_table_section ());
6537 assemble_align (POINTER_SIZE);
6538 switched = true;
6541 assemble_integer (XEXP (DECL_RTL (src), 0),
6542 POINTER_SIZE_UNITS, POINTER_SIZE, 1);
6543 assemble_integer (XEXP (DECL_RTL (dst), 0),
6544 POINTER_SIZE_UNITS, POINTER_SIZE, 1);
6548 /* Provide a default for the tm_clone_table section. */
6550 section *
6551 default_clone_table_section (void)
6553 return get_named_section (NULL, ".tm_clone_table", 3);
6556 /* Helper comparison function for qsorting by the DECL_UID stored in
6557 alias_pair->emitted_diags. */
6559 static int
6560 tm_alias_pair_cmp (const void *x, const void *y)
6562 const tm_alias_pair *p1 = (const tm_alias_pair *) x;
6563 const tm_alias_pair *p2 = (const tm_alias_pair *) y;
6564 if (p1->uid < p2->uid)
6565 return -1;
6566 if (p1->uid > p2->uid)
6567 return 1;
6568 return 0;
6571 void
6572 finish_tm_clone_pairs (void)
6574 vec<tm_alias_pair> tm_alias_pairs = vNULL;
6576 if (tm_clone_hash == NULL)
6577 return;
6579 /* We need a determenistic order for the .tm_clone_table, otherwise
6580 we will get bootstrap comparison failures, so dump the hash table
6581 to a vector, sort it, and dump the vector. */
6583 /* Dump the hashtable to a vector. */
6584 tree_map *map;
6585 hash_table<tm_clone_hasher>::iterator iter;
6586 FOR_EACH_HASH_TABLE_ELEMENT (*tm_clone_hash, map, tree_map *, iter)
6588 tm_alias_pair p = {DECL_UID (map->base.from), map->base.from, map->to};
6589 tm_alias_pairs.safe_push (p);
6591 /* Sort it. */
6592 tm_alias_pairs.qsort (tm_alias_pair_cmp);
6594 /* Dump it. */
6595 dump_tm_clone_pairs (tm_alias_pairs);
6597 tm_clone_hash->empty ();
6598 tm_clone_hash = NULL;
6599 tm_alias_pairs.release ();
6603 /* Emit an assembler directive to set symbol for DECL visibility to
6604 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
6606 void
6607 default_assemble_visibility (tree decl ATTRIBUTE_UNUSED,
6608 int vis ATTRIBUTE_UNUSED)
6610 #ifdef HAVE_GAS_HIDDEN
6611 static const char * const visibility_types[] = {
6612 NULL, "protected", "hidden", "internal"
6615 const char *name, *type;
6616 tree id;
6618 id = DECL_ASSEMBLER_NAME (decl);
6619 ultimate_transparent_alias_target (&id);
6620 name = IDENTIFIER_POINTER (id);
6622 type = visibility_types[vis];
6624 fprintf (asm_out_file, "\t.%s\t", type);
6625 assemble_name (asm_out_file, name);
6626 fprintf (asm_out_file, "\n");
6627 #else
6628 if (!DECL_ARTIFICIAL (decl))
6629 warning (OPT_Wattributes, "visibility attribute not supported "
6630 "in this configuration; ignored");
6631 #endif
6634 /* A helper function to call assemble_visibility when needed for a decl. */
6636 bool
6637 maybe_assemble_visibility (tree decl)
6639 enum symbol_visibility vis = DECL_VISIBILITY (decl);
6640 if (vis != VISIBILITY_DEFAULT)
6642 targetm.asm_out.assemble_visibility (decl, vis);
6643 return true;
6645 else
6646 return false;
6649 /* Returns true if the target configuration supports defining public symbols
6650 so that one of them will be chosen at link time instead of generating a
6651 multiply-defined symbol error, whether through the use of weak symbols or
6652 a target-specific mechanism for having duplicates discarded. */
6654 bool
6655 supports_one_only (void)
6657 if (SUPPORTS_ONE_ONLY)
6658 return true;
6659 if (TARGET_SUPPORTS_WEAK)
6660 return true;
6661 return false;
6664 /* Set up DECL as a public symbol that can be defined in multiple
6665 translation units without generating a linker error. */
6667 void
6668 make_decl_one_only (tree decl, tree comdat_group)
6670 struct symtab_node *symbol;
6671 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
6673 TREE_PUBLIC (decl) = 1;
6675 if (VAR_P (decl))
6676 symbol = varpool_node::get_create (decl);
6677 else
6678 symbol = cgraph_node::get_create (decl);
6680 if (SUPPORTS_ONE_ONLY)
6682 #ifdef MAKE_DECL_ONE_ONLY
6683 MAKE_DECL_ONE_ONLY (decl);
6684 #endif
6685 symbol->set_comdat_group (comdat_group);
6687 else if (VAR_P (decl)
6688 && (DECL_INITIAL (decl) == 0
6689 || (!in_lto_p && DECL_INITIAL (decl) == error_mark_node)))
6690 DECL_COMMON (decl) = 1;
6691 else
6693 gcc_assert (TARGET_SUPPORTS_WEAK);
6694 DECL_WEAK (decl) = 1;
6698 void
6699 init_varasm_once (void)
6701 section_htab = hash_table<section_hasher>::create_ggc (31);
6702 object_block_htab = hash_table<object_block_hasher>::create_ggc (31);
6703 const_desc_htab = hash_table<tree_descriptor_hasher>::create_ggc (1009);
6705 shared_constant_pool = create_constant_pool ();
6707 #ifdef TEXT_SECTION_ASM_OP
6708 text_section = get_unnamed_section (SECTION_CODE, output_section_asm_op,
6709 TEXT_SECTION_ASM_OP);
6710 #endif
6712 #ifdef DATA_SECTION_ASM_OP
6713 data_section = get_unnamed_section (SECTION_WRITE, output_section_asm_op,
6714 DATA_SECTION_ASM_OP);
6715 #endif
6717 #ifdef SDATA_SECTION_ASM_OP
6718 sdata_section = get_unnamed_section (SECTION_WRITE, output_section_asm_op,
6719 SDATA_SECTION_ASM_OP);
6720 #endif
6722 #ifdef READONLY_DATA_SECTION_ASM_OP
6723 readonly_data_section = get_unnamed_section (0, output_section_asm_op,
6724 READONLY_DATA_SECTION_ASM_OP);
6725 #endif
6727 #ifdef CTORS_SECTION_ASM_OP
6728 ctors_section = get_unnamed_section (0, output_section_asm_op,
6729 CTORS_SECTION_ASM_OP);
6730 #endif
6732 #ifdef DTORS_SECTION_ASM_OP
6733 dtors_section = get_unnamed_section (0, output_section_asm_op,
6734 DTORS_SECTION_ASM_OP);
6735 #endif
6737 #ifdef BSS_SECTION_ASM_OP
6738 bss_section = get_unnamed_section (SECTION_WRITE | SECTION_BSS,
6739 output_section_asm_op,
6740 BSS_SECTION_ASM_OP);
6741 #endif
6743 #ifdef SBSS_SECTION_ASM_OP
6744 sbss_section = get_unnamed_section (SECTION_WRITE | SECTION_BSS,
6745 output_section_asm_op,
6746 SBSS_SECTION_ASM_OP);
6747 #endif
6749 tls_comm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
6750 | SECTION_COMMON, emit_tls_common);
6751 lcomm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
6752 | SECTION_COMMON, emit_local);
6753 comm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
6754 | SECTION_COMMON, emit_common);
6756 #if defined ASM_OUTPUT_ALIGNED_BSS
6757 bss_noswitch_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS,
6758 emit_bss);
6759 #endif
6761 targetm.asm_out.init_sections ();
6763 if (readonly_data_section == NULL)
6764 readonly_data_section = text_section;
6766 #ifdef ASM_OUTPUT_EXTERNAL
6767 pending_assemble_externals_set = new hash_set<tree>;
6768 #endif
6771 /* Determine whether SYMBOL is used in any optimized function. */
6773 static bool
6774 have_optimized_refs (struct symtab_node *symbol)
6776 struct ipa_ref *ref;
6778 for (int i = 0; symbol->iterate_referring (i, ref); i++)
6780 cgraph_node *cnode = dyn_cast <cgraph_node *> (ref->referring);
6782 if (cnode && opt_for_fn (cnode->decl, optimize))
6783 return true;
6786 return false;
6789 /* Check if promoting general-dynamic TLS access model to local-dynamic is
6790 desirable for DECL. */
6792 static bool
6793 optimize_dyn_tls_for_decl_p (const_tree decl)
6795 if (cfun)
6796 return optimize;
6797 return symtab->state >= IPA && have_optimized_refs (symtab_node::get (decl));
6801 enum tls_model
6802 decl_default_tls_model (const_tree decl)
6804 enum tls_model kind;
6805 bool is_local;
6807 is_local = targetm.binds_local_p (decl);
6808 if (!flag_shlib)
6810 if (is_local)
6811 kind = TLS_MODEL_LOCAL_EXEC;
6812 else
6813 kind = TLS_MODEL_INITIAL_EXEC;
6816 /* Local dynamic is inefficient when we're not combining the
6817 parts of the address. */
6818 else if (is_local && optimize_dyn_tls_for_decl_p (decl))
6819 kind = TLS_MODEL_LOCAL_DYNAMIC;
6820 else
6821 kind = TLS_MODEL_GLOBAL_DYNAMIC;
6822 if (kind < flag_tls_default)
6823 kind = flag_tls_default;
6825 return kind;
6828 /* Select a set of attributes for section NAME based on the properties
6829 of DECL and whether or not RELOC indicates that DECL's initializer
6830 might contain runtime relocations.
6832 We make the section read-only and executable for a function decl,
6833 read-only for a const data decl, and writable for a non-const data decl. */
6835 unsigned int
6836 default_section_type_flags (tree decl, const char *name, int reloc)
6838 unsigned int flags;
6840 if (decl && TREE_CODE (decl) == FUNCTION_DECL)
6841 flags = SECTION_CODE;
6842 else if (decl)
6844 enum section_category category
6845 = categorize_decl_for_section (decl, reloc);
6846 if (decl_readonly_section_1 (category))
6847 flags = 0;
6848 else if (category == SECCAT_DATA_REL_RO
6849 || category == SECCAT_DATA_REL_RO_LOCAL)
6850 flags = SECTION_WRITE | SECTION_RELRO;
6851 else
6852 flags = SECTION_WRITE;
6854 else
6856 flags = SECTION_WRITE;
6857 if (strcmp (name, ".data.rel.ro") == 0
6858 || strcmp (name, ".data.rel.ro.local") == 0)
6859 flags |= SECTION_RELRO;
6862 if (decl && DECL_P (decl) && DECL_COMDAT_GROUP (decl))
6863 flags |= SECTION_LINKONCE;
6865 if (strcmp (name, ".vtable_map_vars") == 0)
6866 flags |= SECTION_LINKONCE;
6868 if (decl && VAR_P (decl) && DECL_THREAD_LOCAL_P (decl))
6869 flags |= SECTION_TLS | SECTION_WRITE;
6871 if (strcmp (name, ".bss") == 0
6872 || startswith (name, ".bss.")
6873 || startswith (name, ".gnu.linkonce.b.")
6874 || strcmp (name, ".persistent.bss") == 0
6875 || strcmp (name, ".sbss") == 0
6876 || startswith (name, ".sbss.")
6877 || startswith (name, ".gnu.linkonce.sb."))
6878 flags |= SECTION_BSS;
6880 if (strcmp (name, ".tdata") == 0
6881 || startswith (name, ".tdata.")
6882 || startswith (name, ".gnu.linkonce.td."))
6883 flags |= SECTION_TLS;
6885 if (strcmp (name, ".tbss") == 0
6886 || startswith (name, ".tbss.")
6887 || startswith (name, ".gnu.linkonce.tb."))
6888 flags |= SECTION_TLS | SECTION_BSS;
6890 if (strcmp (name, ".noinit") == 0)
6891 flags |= SECTION_WRITE | SECTION_BSS | SECTION_NOTYPE;
6893 if (strcmp (name, ".persistent") == 0)
6894 flags |= SECTION_WRITE | SECTION_NOTYPE;
6896 /* Various sections have special ELF types that the assembler will
6897 assign by default based on the name. They are neither SHT_PROGBITS
6898 nor SHT_NOBITS, so when changing sections we don't want to print a
6899 section type (@progbits or @nobits). Rather than duplicating the
6900 assembler's knowledge of what those special name patterns are, just
6901 let the assembler choose the type if we don't know a specific
6902 reason to set it to something other than the default. SHT_PROGBITS
6903 is the default for sections whose name is not specially known to
6904 the assembler, so it does no harm to leave the choice to the
6905 assembler when @progbits is the best thing we know to use. If
6906 someone is silly enough to emit code or TLS variables to one of
6907 these sections, then don't handle them specially.
6909 default_elf_asm_named_section (below) handles the BSS, TLS, ENTSIZE, and
6910 LINKONCE cases when NOTYPE is not set, so leave those to its logic. */
6911 if (!(flags & (SECTION_CODE | SECTION_BSS | SECTION_TLS | SECTION_ENTSIZE))
6912 && !(HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE)))
6913 flags |= SECTION_NOTYPE;
6915 return flags;
6918 /* Return true if the target supports some form of global BSS,
6919 either through bss_noswitch_section, or by selecting a BSS
6920 section in TARGET_ASM_SELECT_SECTION. */
6922 bool
6923 have_global_bss_p (void)
6925 return bss_noswitch_section || targetm.have_switchable_bss_sections;
6928 /* Output assembly to switch to section NAME with attribute FLAGS.
6929 Four variants for common object file formats. */
6931 void
6932 default_no_named_section (const char *name ATTRIBUTE_UNUSED,
6933 unsigned int flags ATTRIBUTE_UNUSED,
6934 tree decl ATTRIBUTE_UNUSED)
6936 /* Some object formats don't support named sections at all. The
6937 front-end should already have flagged this as an error. */
6938 gcc_unreachable ();
6941 #ifndef TLS_SECTION_ASM_FLAG
6942 #define TLS_SECTION_ASM_FLAG 'T'
6943 #endif
6945 void
6946 default_elf_asm_named_section (const char *name, unsigned int flags,
6947 tree decl)
6949 char flagchars[11], *f = flagchars;
6950 unsigned int numeric_value = 0;
6952 /* If we have already declared this section, we can use an
6953 abbreviated form to switch back to it -- unless this section is
6954 part of a COMDAT groups or with SHF_GNU_RETAIN or with SHF_LINK_ORDER,
6955 in which case GAS requires the full declaration every time. */
6956 if (!(HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
6957 && !(flags & (SECTION_RETAIN | SECTION_LINK_ORDER))
6958 && (flags & SECTION_DECLARED))
6960 fprintf (asm_out_file, "\t.section\t%s\n", name);
6961 return;
6964 /* If we have a machine specific flag, then use the numeric value to pass
6965 this on to GAS. */
6966 if (targetm.asm_out.elf_flags_numeric (flags, &numeric_value))
6967 snprintf (f, sizeof (flagchars), "0x%08x", numeric_value);
6968 else
6970 if (!(flags & SECTION_DEBUG))
6971 *f++ = 'a';
6972 #if HAVE_GAS_SECTION_EXCLUDE
6973 if (flags & SECTION_EXCLUDE)
6974 *f++ = 'e';
6975 #endif
6976 if (flags & SECTION_WRITE)
6977 *f++ = 'w';
6978 if (flags & SECTION_CODE)
6979 *f++ = 'x';
6980 if (flags & SECTION_SMALL)
6981 *f++ = 's';
6982 if (flags & SECTION_MERGE)
6983 *f++ = 'M';
6984 if (flags & SECTION_STRINGS)
6985 *f++ = 'S';
6986 if (flags & SECTION_TLS)
6987 *f++ = TLS_SECTION_ASM_FLAG;
6988 if (HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
6989 *f++ = 'G';
6990 if (flags & SECTION_RETAIN)
6991 *f++ = 'R';
6992 if (flags & SECTION_LINK_ORDER)
6993 *f++ = 'o';
6994 #ifdef MACH_DEP_SECTION_ASM_FLAG
6995 if (flags & SECTION_MACH_DEP)
6996 *f++ = MACH_DEP_SECTION_ASM_FLAG;
6997 #endif
6998 *f = '\0';
7001 fprintf (asm_out_file, "\t.section\t%s,\"%s\"", name, flagchars);
7003 /* default_section_type_flags (above) knows which flags need special
7004 handling here, and sets NOTYPE when none of these apply so that the
7005 assembler's logic for default types can apply to user-chosen
7006 section names. */
7007 if (!(flags & SECTION_NOTYPE))
7009 const char *type;
7010 const char *format;
7012 if (flags & SECTION_BSS)
7013 type = "nobits";
7014 else
7015 type = "progbits";
7017 format = ",@%s";
7018 /* On platforms that use "@" as the assembly comment character,
7019 use "%" instead. */
7020 if (strcmp (ASM_COMMENT_START, "@") == 0)
7021 format = ",%%%s";
7022 fprintf (asm_out_file, format, type);
7024 if (flags & SECTION_ENTSIZE)
7025 fprintf (asm_out_file, ",%d", flags & SECTION_ENTSIZE);
7026 if (flags & SECTION_LINK_ORDER)
7028 /* For now, only section "__patchable_function_entries"
7029 adopts flag SECTION_LINK_ORDER, internal label LPFE*
7030 was emitted in default_print_patchable_function_entry,
7031 just place it here for linked_to section. */
7032 gcc_assert (!strcmp (name, "__patchable_function_entries"));
7033 fprintf (asm_out_file, ",");
7034 char buf[256];
7035 ASM_GENERATE_INTERNAL_LABEL (buf, "LPFE",
7036 current_function_funcdef_no);
7037 assemble_name_raw (asm_out_file, buf);
7039 if (HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
7041 if (TREE_CODE (decl) == IDENTIFIER_NODE)
7042 fprintf (asm_out_file, ",%s,comdat", IDENTIFIER_POINTER (decl));
7043 else
7044 fprintf (asm_out_file, ",%s,comdat",
7045 IDENTIFIER_POINTER (DECL_COMDAT_GROUP (decl)));
7049 putc ('\n', asm_out_file);
7052 void
7053 default_coff_asm_named_section (const char *name, unsigned int flags,
7054 tree decl ATTRIBUTE_UNUSED)
7056 char flagchars[8], *f = flagchars;
7058 if (flags & SECTION_WRITE)
7059 *f++ = 'w';
7060 if (flags & SECTION_CODE)
7061 *f++ = 'x';
7062 *f = '\0';
7064 fprintf (asm_out_file, "\t.section\t%s,\"%s\"\n", name, flagchars);
7067 void
7068 default_pe_asm_named_section (const char *name, unsigned int flags,
7069 tree decl)
7071 default_coff_asm_named_section (name, flags, decl);
7073 if (flags & SECTION_LINKONCE)
7075 /* Functions may have been compiled at various levels of
7076 optimization so we can't use `same_size' here.
7077 Instead, have the linker pick one. */
7078 fprintf (asm_out_file, "\t.linkonce %s\n",
7079 (flags & SECTION_CODE ? "discard" : "same_size"));
7083 /* The lame default section selector. */
7085 section *
7086 default_select_section (tree decl, int reloc,
7087 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
7089 if (DECL_P (decl))
7091 if (decl_readonly_section (decl, reloc))
7092 return readonly_data_section;
7094 else if (TREE_CODE (decl) == CONSTRUCTOR)
7096 if (! ((flag_pic && reloc)
7097 || !TREE_READONLY (decl)
7098 || !TREE_CONSTANT (decl)))
7099 return readonly_data_section;
7101 else if (TREE_CODE (decl) == STRING_CST)
7102 return readonly_data_section;
7103 else if (! (flag_pic && reloc))
7104 return readonly_data_section;
7106 return data_section;
7109 enum section_category
7110 categorize_decl_for_section (const_tree decl, int reloc)
7112 enum section_category ret;
7114 if (TREE_CODE (decl) == FUNCTION_DECL)
7115 return SECCAT_TEXT;
7116 else if (TREE_CODE (decl) == STRING_CST)
7118 if ((flag_sanitize & SANITIZE_ADDRESS)
7119 && asan_protect_global (CONST_CAST_TREE (decl)))
7120 /* or !flag_merge_constants */
7121 return SECCAT_RODATA;
7122 else
7123 return SECCAT_RODATA_MERGE_STR;
7125 else if (VAR_P (decl))
7127 tree d = CONST_CAST_TREE (decl);
7128 if (bss_initializer_p (decl))
7129 ret = SECCAT_BSS;
7130 else if (! TREE_READONLY (decl)
7131 || (DECL_INITIAL (decl)
7132 && ! TREE_CONSTANT (DECL_INITIAL (decl))))
7134 /* Here the reloc_rw_mask is not testing whether the section should
7135 be read-only or not, but whether the dynamic link will have to
7136 do something. If so, we wish to segregate the data in order to
7137 minimize cache misses inside the dynamic linker. */
7138 if (reloc & targetm.asm_out.reloc_rw_mask ())
7139 ret = reloc == 1 ? SECCAT_DATA_REL_LOCAL : SECCAT_DATA_REL;
7140 else
7141 ret = SECCAT_DATA;
7143 else if (reloc & targetm.asm_out.reloc_rw_mask ())
7144 ret = reloc == 1 ? SECCAT_DATA_REL_RO_LOCAL : SECCAT_DATA_REL_RO;
7145 else if (reloc || (flag_merge_constants < 2 && !DECL_MERGEABLE (decl))
7146 || ((flag_sanitize & SANITIZE_ADDRESS)
7147 /* PR 81697: for architectures that use section anchors we
7148 need to ignore DECL_RTL_SET_P (decl) for string constants
7149 inside this asan_protect_global call because otherwise
7150 we'll wrongly put them into SECCAT_RODATA_MERGE_CONST
7151 section, set DECL_RTL (decl) later on and add DECL to
7152 protected globals via successive asan_protect_global
7153 calls. In this scenario we'll end up with wrong
7154 alignment of these strings at runtime and possible ASan
7155 false positives. */
7156 && asan_protect_global (d, use_object_blocks_p ()
7157 && use_blocks_for_decl_p (d))))
7158 /* C and C++ don't allow different variables to share the same
7159 location. -fmerge-all-constants allows even that (at the
7160 expense of not conforming). */
7161 ret = SECCAT_RODATA;
7162 else if (DECL_INITIAL (decl)
7163 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST)
7164 ret = SECCAT_RODATA_MERGE_STR_INIT;
7165 else
7166 ret = SECCAT_RODATA_MERGE_CONST;
7168 else if (TREE_CODE (decl) == CONSTRUCTOR)
7170 if ((reloc & targetm.asm_out.reloc_rw_mask ())
7171 || ! TREE_CONSTANT (decl))
7172 ret = SECCAT_DATA;
7173 else
7174 ret = SECCAT_RODATA;
7176 else
7177 ret = SECCAT_RODATA;
7179 /* There are no read-only thread-local sections. */
7180 if (VAR_P (decl) && DECL_THREAD_LOCAL_P (decl))
7182 /* Note that this would be *just* SECCAT_BSS, except that there's
7183 no concept of a read-only thread-local-data section. */
7184 if (ret == SECCAT_BSS
7185 || DECL_INITIAL (decl) == NULL
7186 || (flag_zero_initialized_in_bss
7187 && initializer_zerop (DECL_INITIAL (decl))))
7188 ret = SECCAT_TBSS;
7189 else
7190 ret = SECCAT_TDATA;
7193 /* If the target uses small data sections, select it. */
7194 else if (targetm.in_small_data_p (decl))
7196 if (ret == SECCAT_BSS)
7197 ret = SECCAT_SBSS;
7198 else if (targetm.have_srodata_section && ret == SECCAT_RODATA)
7199 ret = SECCAT_SRODATA;
7200 else
7201 ret = SECCAT_SDATA;
7204 return ret;
7207 static bool
7208 decl_readonly_section_1 (enum section_category category)
7210 switch (category)
7212 case SECCAT_RODATA:
7213 case SECCAT_RODATA_MERGE_STR:
7214 case SECCAT_RODATA_MERGE_STR_INIT:
7215 case SECCAT_RODATA_MERGE_CONST:
7216 case SECCAT_SRODATA:
7217 return true;
7218 default:
7219 return false;
7223 bool
7224 decl_readonly_section (const_tree decl, int reloc)
7226 return decl_readonly_section_1 (categorize_decl_for_section (decl, reloc));
7229 /* Select a section based on the above categorization. */
7231 section *
7232 default_elf_select_section (tree decl, int reloc,
7233 unsigned HOST_WIDE_INT align)
7235 const char *sname;
7237 switch (categorize_decl_for_section (decl, reloc))
7239 case SECCAT_TEXT:
7240 /* We're not supposed to be called on FUNCTION_DECLs. */
7241 gcc_unreachable ();
7242 case SECCAT_RODATA:
7243 return readonly_data_section;
7244 case SECCAT_RODATA_MERGE_STR:
7245 return mergeable_string_section (decl, align, 0);
7246 case SECCAT_RODATA_MERGE_STR_INIT:
7247 return mergeable_string_section (DECL_INITIAL (decl), align, 0);
7248 case SECCAT_RODATA_MERGE_CONST:
7249 return mergeable_constant_section (DECL_MODE (decl), align, 0);
7250 case SECCAT_SRODATA:
7251 sname = ".sdata2";
7252 break;
7253 case SECCAT_DATA:
7254 if (DECL_P (decl) && DECL_PERSISTENT_P (decl))
7256 sname = ".persistent";
7257 break;
7259 return data_section;
7260 case SECCAT_DATA_REL:
7261 sname = ".data.rel";
7262 break;
7263 case SECCAT_DATA_REL_LOCAL:
7264 sname = ".data.rel.local";
7265 break;
7266 case SECCAT_DATA_REL_RO:
7267 sname = ".data.rel.ro";
7268 break;
7269 case SECCAT_DATA_REL_RO_LOCAL:
7270 sname = ".data.rel.ro.local";
7271 break;
7272 case SECCAT_SDATA:
7273 sname = ".sdata";
7274 break;
7275 case SECCAT_TDATA:
7276 sname = ".tdata";
7277 break;
7278 case SECCAT_BSS:
7279 if (DECL_P (decl) && DECL_NOINIT_P (decl))
7281 sname = ".noinit";
7282 break;
7284 if (bss_section)
7285 return bss_section;
7286 sname = ".bss";
7287 break;
7288 case SECCAT_SBSS:
7289 sname = ".sbss";
7290 break;
7291 case SECCAT_TBSS:
7292 sname = ".tbss";
7293 break;
7294 default:
7295 gcc_unreachable ();
7298 return get_named_section (decl, sname, reloc);
7301 /* Construct a unique section name based on the decl name and the
7302 categorization performed above. */
7304 void
7305 default_unique_section (tree decl, int reloc)
7307 /* We only need to use .gnu.linkonce if we don't have COMDAT groups. */
7308 bool one_only = DECL_ONE_ONLY (decl) && !HAVE_COMDAT_GROUP;
7309 const char *prefix, *name, *linkonce;
7310 char *string;
7311 tree id;
7313 switch (categorize_decl_for_section (decl, reloc))
7315 case SECCAT_TEXT:
7316 prefix = one_only ? ".t" : ".text";
7317 break;
7318 case SECCAT_RODATA:
7319 case SECCAT_RODATA_MERGE_STR:
7320 case SECCAT_RODATA_MERGE_STR_INIT:
7321 case SECCAT_RODATA_MERGE_CONST:
7322 prefix = one_only ? ".r" : ".rodata";
7323 break;
7324 case SECCAT_SRODATA:
7325 prefix = one_only ? ".s2" : ".sdata2";
7326 break;
7327 case SECCAT_DATA:
7328 prefix = one_only ? ".d" : ".data";
7329 if (DECL_P (decl) && DECL_PERSISTENT_P (decl))
7331 prefix = one_only ? ".p" : ".persistent";
7332 break;
7334 break;
7335 case SECCAT_DATA_REL:
7336 prefix = one_only ? ".d.rel" : ".data.rel";
7337 break;
7338 case SECCAT_DATA_REL_LOCAL:
7339 prefix = one_only ? ".d.rel.local" : ".data.rel.local";
7340 break;
7341 case SECCAT_DATA_REL_RO:
7342 prefix = one_only ? ".d.rel.ro" : ".data.rel.ro";
7343 break;
7344 case SECCAT_DATA_REL_RO_LOCAL:
7345 prefix = one_only ? ".d.rel.ro.local" : ".data.rel.ro.local";
7346 break;
7347 case SECCAT_SDATA:
7348 prefix = one_only ? ".s" : ".sdata";
7349 break;
7350 case SECCAT_BSS:
7351 if (DECL_P (decl) && DECL_NOINIT_P (decl))
7353 prefix = one_only ? ".n" : ".noinit";
7354 break;
7356 prefix = one_only ? ".b" : ".bss";
7357 break;
7358 case SECCAT_SBSS:
7359 prefix = one_only ? ".sb" : ".sbss";
7360 break;
7361 case SECCAT_TDATA:
7362 prefix = one_only ? ".td" : ".tdata";
7363 break;
7364 case SECCAT_TBSS:
7365 prefix = one_only ? ".tb" : ".tbss";
7366 break;
7367 default:
7368 gcc_unreachable ();
7371 id = DECL_ASSEMBLER_NAME (decl);
7372 ultimate_transparent_alias_target (&id);
7373 name = IDENTIFIER_POINTER (id);
7374 name = targetm.strip_name_encoding (name);
7376 /* If we're using one_only, then there needs to be a .gnu.linkonce
7377 prefix to the section name. */
7378 linkonce = one_only ? ".gnu.linkonce" : "";
7380 string = ACONCAT ((linkonce, prefix, ".", name, NULL));
7382 set_decl_section_name (decl, string);
7385 /* Subroutine of compute_reloc_for_rtx for leaf rtxes. */
7387 static int
7388 compute_reloc_for_rtx_1 (const_rtx x)
7390 switch (GET_CODE (x))
7392 case SYMBOL_REF:
7393 return SYMBOL_REF_LOCAL_P (x) ? 1 : 2;
7394 case LABEL_REF:
7395 return 1;
7396 default:
7397 return 0;
7401 /* Like compute_reloc_for_constant, except for an RTX. The return value
7402 is a mask for which bit 1 indicates a global relocation, and bit 0
7403 indicates a local relocation. Used by default_select_rtx_section
7404 and default_elf_select_rtx_section. */
7406 static int
7407 compute_reloc_for_rtx (const_rtx x)
7409 switch (GET_CODE (x))
7411 case SYMBOL_REF:
7412 case LABEL_REF:
7413 return compute_reloc_for_rtx_1 (x);
7415 case CONST:
7417 int reloc = 0;
7418 subrtx_iterator::array_type array;
7419 FOR_EACH_SUBRTX (iter, array, x, ALL)
7420 reloc |= compute_reloc_for_rtx_1 (*iter);
7421 return reloc;
7424 default:
7425 return 0;
7429 section *
7430 default_select_rtx_section (machine_mode mode ATTRIBUTE_UNUSED,
7431 rtx x,
7432 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
7434 if (compute_reloc_for_rtx (x) & targetm.asm_out.reloc_rw_mask ())
7435 return data_section;
7436 else
7437 return readonly_data_section;
7440 section *
7441 default_elf_select_rtx_section (machine_mode mode, rtx x,
7442 unsigned HOST_WIDE_INT align)
7444 int reloc = compute_reloc_for_rtx (x);
7446 /* ??? Handle small data here somehow. */
7448 if (reloc & targetm.asm_out.reloc_rw_mask ())
7450 if (reloc == 1)
7451 return get_named_section (NULL, ".data.rel.ro.local", 1);
7452 else
7453 return get_named_section (NULL, ".data.rel.ro", 3);
7456 return mergeable_constant_section (mode, align, 0);
7459 /* Set the generally applicable flags on the SYMBOL_REF for EXP. */
7461 void
7462 default_encode_section_info (tree decl, rtx rtl, int first ATTRIBUTE_UNUSED)
7464 rtx symbol;
7465 int flags;
7467 /* Careful not to prod global register variables. */
7468 if (!MEM_P (rtl))
7469 return;
7470 symbol = XEXP (rtl, 0);
7471 if (GET_CODE (symbol) != SYMBOL_REF)
7472 return;
7474 flags = SYMBOL_REF_FLAGS (symbol) & SYMBOL_FLAG_HAS_BLOCK_INFO;
7475 if (TREE_CODE (decl) == FUNCTION_DECL)
7476 flags |= SYMBOL_FLAG_FUNCTION;
7477 if (targetm.binds_local_p (decl))
7478 flags |= SYMBOL_FLAG_LOCAL;
7479 if (VAR_P (decl) && DECL_THREAD_LOCAL_P (decl))
7480 flags |= DECL_TLS_MODEL (decl) << SYMBOL_FLAG_TLS_SHIFT;
7481 else if (targetm.in_small_data_p (decl))
7482 flags |= SYMBOL_FLAG_SMALL;
7483 /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names? Without
7484 being PUBLIC, the thing *must* be defined in this translation unit.
7485 Prevent this buglet from being propagated into rtl code as well. */
7486 if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
7487 flags |= SYMBOL_FLAG_EXTERNAL;
7489 SYMBOL_REF_FLAGS (symbol) = flags;
7492 /* By default, we do nothing for encode_section_info, so we need not
7493 do anything but discard the '*' marker. */
7495 const char *
7496 default_strip_name_encoding (const char *str)
7498 return str + (*str == '*');
7501 #ifdef ASM_OUTPUT_DEF
7502 /* The default implementation of TARGET_ASM_OUTPUT_ANCHOR. Define the
7503 anchor relative to ".", the current section position. */
7505 void
7506 default_asm_output_anchor (rtx symbol)
7508 gcc_checking_assert (TARGET_SUPPORTS_ALIASES);
7510 char buffer[100];
7512 sprintf (buffer, "*. + " HOST_WIDE_INT_PRINT_DEC,
7513 SYMBOL_REF_BLOCK_OFFSET (symbol));
7514 ASM_OUTPUT_DEF (asm_out_file, XSTR (symbol, 0), buffer);
7516 #endif
7518 /* The default implementation of TARGET_USE_ANCHORS_FOR_SYMBOL_P. */
7520 bool
7521 default_use_anchors_for_symbol_p (const_rtx symbol)
7523 tree decl;
7524 section *sect = SYMBOL_REF_BLOCK (symbol)->sect;
7526 /* This function should only be called with non-zero SYMBOL_REF_BLOCK,
7527 furthermore get_block_for_section should not create object blocks
7528 for mergeable sections. */
7529 gcc_checking_assert (sect && !(sect->common.flags & SECTION_MERGE));
7531 /* Don't use anchors for small data sections. The small data register
7532 acts as an anchor for such sections. */
7533 if (sect->common.flags & SECTION_SMALL)
7534 return false;
7536 decl = SYMBOL_REF_DECL (symbol);
7537 if (decl && DECL_P (decl))
7539 /* Don't use section anchors for decls that might be defined or
7540 usurped by other modules. */
7541 if (TREE_PUBLIC (decl) && !decl_binds_to_current_def_p (decl))
7542 return false;
7544 /* Don't use section anchors for decls that will be placed in a
7545 small data section. */
7546 /* ??? Ideally, this check would be redundant with the SECTION_SMALL
7547 one above. The problem is that we only use SECTION_SMALL for
7548 sections that should be marked as small in the section directive. */
7549 if (targetm.in_small_data_p (decl))
7550 return false;
7552 /* Don't use section anchors for decls that won't fit inside a single
7553 anchor range to reduce the amount of instructions required to refer
7554 to the entire declaration. */
7555 if (DECL_SIZE_UNIT (decl) == NULL_TREE
7556 || !tree_fits_uhwi_p (DECL_SIZE_UNIT (decl))
7557 || (tree_to_uhwi (DECL_SIZE_UNIT (decl))
7558 >= (unsigned HOST_WIDE_INT) targetm.max_anchor_offset))
7559 return false;
7562 return true;
7565 /* Return true when RESOLUTION indicate that symbol will be bound to the
7566 definition provided by current .o file. */
7568 static bool
7569 resolution_to_local_definition_p (enum ld_plugin_symbol_resolution resolution)
7571 return (resolution == LDPR_PREVAILING_DEF
7572 || resolution == LDPR_PREVAILING_DEF_IRONLY_EXP
7573 || resolution == LDPR_PREVAILING_DEF_IRONLY);
7576 /* Return true when RESOLUTION indicate that symbol will be bound locally
7577 within current executable or DSO. */
7579 static bool
7580 resolution_local_p (enum ld_plugin_symbol_resolution resolution)
7582 return (resolution == LDPR_PREVAILING_DEF
7583 || resolution == LDPR_PREVAILING_DEF_IRONLY
7584 || resolution == LDPR_PREVAILING_DEF_IRONLY_EXP
7585 || resolution == LDPR_PREEMPTED_REG
7586 || resolution == LDPR_PREEMPTED_IR
7587 || resolution == LDPR_RESOLVED_IR
7588 || resolution == LDPR_RESOLVED_EXEC);
7591 /* COMMON_LOCAL_P is true means that the linker can guarantee that an
7592 uninitialized common symbol in the executable will still be defined
7593 (through COPY relocation) in the executable. */
7595 bool
7596 default_binds_local_p_3 (const_tree exp, bool shlib, bool weak_dominate,
7597 bool extern_protected_data, bool common_local_p)
7599 /* A non-decl is an entry in the constant pool. */
7600 if (!DECL_P (exp))
7601 return true;
7603 /* Weakrefs may not bind locally, even though the weakref itself is always
7604 static and therefore local. Similarly, the resolver for ifunc functions
7605 might resolve to a non-local function.
7606 FIXME: We can resolve the weakref case more curefuly by looking at the
7607 weakref alias. */
7608 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (exp))
7609 || (!targetm.ifunc_ref_local_ok ()
7610 && TREE_CODE (exp) == FUNCTION_DECL
7611 && cgraph_node::get (exp)
7612 && cgraph_node::get (exp)->ifunc_resolver))
7613 return false;
7615 /* Static variables are always local. */
7616 if (! TREE_PUBLIC (exp))
7617 return true;
7619 /* With resolution file in hand, take look into resolutions.
7620 We can't just return true for resolved_locally symbols,
7621 because dynamic linking might overwrite symbols
7622 in shared libraries. */
7623 bool resolved_locally = false;
7625 bool uninited_common = (DECL_COMMON (exp)
7626 && (DECL_INITIAL (exp) == NULL
7627 || (!in_lto_p
7628 && DECL_INITIAL (exp) == error_mark_node)));
7630 /* A non-external variable is defined locally only if it isn't
7631 uninitialized COMMON variable or common_local_p is true. */
7632 bool defined_locally = (!DECL_EXTERNAL (exp)
7633 && (!uninited_common || common_local_p));
7634 if (symtab_node *node = symtab_node::get (exp))
7636 if (node->in_other_partition)
7637 defined_locally = true;
7638 if (node->can_be_discarded_p ())
7640 else if (resolution_to_local_definition_p (node->resolution))
7641 defined_locally = resolved_locally = true;
7642 else if (resolution_local_p (node->resolution))
7643 resolved_locally = true;
7645 if (defined_locally && weak_dominate && !shlib)
7646 resolved_locally = true;
7648 /* Undefined weak symbols are never defined locally. */
7649 if (DECL_WEAK (exp) && !defined_locally)
7650 return false;
7652 /* A symbol is local if the user has said explicitly that it will be,
7653 or if we have a definition for the symbol. We cannot infer visibility
7654 for undefined symbols. */
7655 if (DECL_VISIBILITY (exp) != VISIBILITY_DEFAULT
7656 && (TREE_CODE (exp) == FUNCTION_DECL
7657 || !extern_protected_data
7658 || DECL_VISIBILITY (exp) != VISIBILITY_PROTECTED)
7659 && (DECL_VISIBILITY_SPECIFIED (exp) || defined_locally))
7660 return true;
7662 /* If PIC, then assume that any global name can be overridden by
7663 symbols resolved from other modules. */
7664 if (shlib)
7665 return false;
7667 /* Variables defined outside this object might not be local. */
7668 if (DECL_EXTERNAL (exp) && !resolved_locally)
7669 return false;
7671 /* Non-dominant weak symbols are not defined locally. */
7672 if (DECL_WEAK (exp) && !resolved_locally)
7673 return false;
7675 /* Uninitialized COMMON variable may be unified with symbols
7676 resolved from other modules. */
7677 if (uninited_common && !resolved_locally)
7678 return false;
7680 /* Otherwise we're left with initialized (or non-common) global data
7681 which is of necessity defined locally. */
7682 return true;
7685 /* Assume ELF-ish defaults, since that's pretty much the most liberal
7686 wrt cross-module name binding. */
7688 bool
7689 default_binds_local_p (const_tree exp)
7691 return default_binds_local_p_3 (exp, flag_shlib != 0, true, false, false);
7694 /* Similar to default_binds_local_p, but common symbol may be local and
7695 extern protected data is non-local. */
7697 bool
7698 default_binds_local_p_2 (const_tree exp)
7700 return default_binds_local_p_3 (exp, flag_shlib != 0, true, true,
7701 !flag_pic);
7704 bool
7705 default_binds_local_p_1 (const_tree exp, int shlib)
7707 return default_binds_local_p_3 (exp, shlib != 0, false, false, false);
7710 /* Return true when references to DECL must bind to current definition in
7711 final executable.
7713 The condition is usually equivalent to whether the function binds to the
7714 current module (shared library or executable), that is to binds_local_p.
7715 We use this fact to avoid need for another target hook and implement
7716 the logic using binds_local_p and just special cases where
7717 decl_binds_to_current_def_p is stronger than binds_local_p. In particular
7718 the weak definitions (that can be overwritten at linktime by other
7719 definition from different object file) and when resolution info is available
7720 we simply use the knowledge passed to us by linker plugin. */
7721 bool
7722 decl_binds_to_current_def_p (const_tree decl)
7724 gcc_assert (DECL_P (decl));
7725 if (!targetm.binds_local_p (decl))
7726 return false;
7727 if (!TREE_PUBLIC (decl))
7728 return true;
7730 /* When resolution is available, just use it. */
7731 if (symtab_node *node = symtab_node::get (decl))
7733 if (node->resolution != LDPR_UNKNOWN
7734 && !node->can_be_discarded_p ())
7735 return resolution_to_local_definition_p (node->resolution);
7738 /* Otherwise we have to assume the worst for DECL_WEAK (hidden weaks
7739 binds locally but still can be overwritten), DECL_COMMON (can be merged
7740 with a non-common definition somewhere in the same module) or
7741 DECL_EXTERNAL.
7742 This rely on fact that binds_local_p behave as decl_replaceable_p
7743 for all other declaration types. */
7744 if (DECL_WEAK (decl))
7745 return false;
7746 if (DECL_COMMON (decl)
7747 && (DECL_INITIAL (decl) == NULL
7748 || (!in_lto_p && DECL_INITIAL (decl) == error_mark_node)))
7749 return false;
7750 if (DECL_EXTERNAL (decl))
7751 return false;
7752 return true;
7755 /* A replaceable function or variable is one which may be replaced
7756 at link-time with an entirely different definition, provided that the
7757 replacement has the same type. For example, functions declared
7758 with __attribute__((weak)) on most systems are replaceable.
7759 If SEMANTIC_INTERPOSITION_P is false allow interposition only on
7760 symbols explicitly declared weak.
7762 COMDAT functions are not replaceable, since all definitions of the
7763 function must be equivalent. It is important that COMDAT functions
7764 not be treated as replaceable so that use of C++ template
7765 instantiations is not penalized. */
7767 bool
7768 decl_replaceable_p (tree decl, bool semantic_interposition_p)
7770 gcc_assert (DECL_P (decl));
7771 if (!TREE_PUBLIC (decl) || DECL_COMDAT (decl))
7772 return false;
7773 if (!semantic_interposition_p
7774 && !DECL_WEAK (decl))
7775 return false;
7776 return !decl_binds_to_current_def_p (decl);
7779 /* Default function to output code that will globalize a label. A
7780 target must define GLOBAL_ASM_OP or provide its own function to
7781 globalize a label. */
7782 #ifdef GLOBAL_ASM_OP
7783 void
7784 default_globalize_label (FILE * stream, const char *name)
7786 fputs (GLOBAL_ASM_OP, stream);
7787 assemble_name (stream, name);
7788 putc ('\n', stream);
7790 #endif /* GLOBAL_ASM_OP */
7792 /* Default function to output code that will globalize a declaration. */
7793 void
7794 default_globalize_decl_name (FILE * stream, tree decl)
7796 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
7797 targetm.asm_out.globalize_label (stream, name);
7800 /* Default function to output a label for unwind information. The
7801 default is to do nothing. A target that needs nonlocal labels for
7802 unwind information must provide its own function to do this. */
7803 void
7804 default_emit_unwind_label (FILE * stream ATTRIBUTE_UNUSED,
7805 tree decl ATTRIBUTE_UNUSED,
7806 int for_eh ATTRIBUTE_UNUSED,
7807 int empty ATTRIBUTE_UNUSED)
7811 /* Default function to output a label to divide up the exception table.
7812 The default is to do nothing. A target that needs/wants to divide
7813 up the table must provide it's own function to do this. */
7814 void
7815 default_emit_except_table_label (FILE * stream ATTRIBUTE_UNUSED)
7819 /* This is how to output an internal numbered label where PREFIX is
7820 the class of label and LABELNO is the number within the class. */
7822 void
7823 default_generate_internal_label (char *buf, const char *prefix,
7824 unsigned long labelno)
7826 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, labelno);
7829 /* This is how to output an internal numbered label where PREFIX is
7830 the class of label and LABELNO is the number within the class. */
7832 void
7833 default_internal_label (FILE *stream, const char *prefix,
7834 unsigned long labelno)
7836 char *const buf = (char *) alloca (40 + strlen (prefix));
7837 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, labelno);
7838 ASM_OUTPUT_INTERNAL_LABEL (stream, buf);
7842 /* The default implementation of ASM_DECLARE_CONSTANT_NAME. */
7844 void
7845 default_asm_declare_constant_name (FILE *file, const char *name,
7846 const_tree exp ATTRIBUTE_UNUSED,
7847 HOST_WIDE_INT size ATTRIBUTE_UNUSED)
7849 assemble_label (file, name);
7852 /* This is the default behavior at the beginning of a file. It's
7853 controlled by two other target-hook toggles. */
7854 void
7855 default_file_start (void)
7857 if (targetm.asm_file_start_app_off
7858 && !(flag_verbose_asm || flag_debug_asm || flag_dump_rtl_in_asm))
7859 fputs (ASM_APP_OFF, asm_out_file);
7861 if (targetm.asm_file_start_file_directive)
7863 /* LTO produced units have no meaningful main_input_filename. */
7864 if (in_lto_p)
7865 output_file_directive (asm_out_file, "<artificial>");
7866 else
7867 output_file_directive (asm_out_file, main_input_filename);
7871 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
7872 which emits a special section directive used to indicate whether or
7873 not this object file needs an executable stack. This is primarily
7874 a GNU extension to ELF but could be used on other targets. */
7876 int trampolines_created;
7878 void
7879 file_end_indicate_exec_stack (void)
7881 unsigned int flags = SECTION_DEBUG;
7882 if (trampolines_created)
7883 flags |= SECTION_CODE;
7885 switch_to_section (get_section (".note.GNU-stack", flags, NULL));
7888 /* Emit a special section directive to indicate that this object file
7889 was compiled with -fsplit-stack. This is used to let the linker
7890 detect calls between split-stack code and non-split-stack code, so
7891 that it can modify the split-stack code to allocate a sufficiently
7892 large stack. We emit another special section if there are any
7893 functions in this file which have the no_split_stack attribute, to
7894 prevent the linker from warning about being unable to convert the
7895 functions if they call non-split-stack code. */
7897 void
7898 file_end_indicate_split_stack (void)
7900 if (flag_split_stack)
7902 switch_to_section (get_section (".note.GNU-split-stack", SECTION_DEBUG,
7903 NULL));
7904 if (saw_no_split_stack)
7905 switch_to_section (get_section (".note.GNU-no-split-stack",
7906 SECTION_DEBUG, NULL));
7910 /* Output DIRECTIVE (a C string) followed by a newline. This is used as
7911 a get_unnamed_section callback. */
7913 void
7914 output_section_asm_op (const char *directive)
7916 fprintf (asm_out_file, "%s\n", directive);
7919 /* Emit assembly code to switch to section NEW_SECTION. Do nothing if
7920 the current section is NEW_SECTION. */
7922 void
7923 switch_to_section (section *new_section, tree decl)
7925 bool retain_p;
7926 if ((new_section->common.flags & SECTION_NAMED)
7927 && decl != nullptr
7928 && DECL_P (decl)
7929 && ((retain_p = !!lookup_attribute ("retain",
7930 DECL_ATTRIBUTES (decl)))
7931 != !!(new_section->common.flags & SECTION_RETAIN)))
7933 /* If the SECTION_RETAIN bit doesn't match, switch to a new
7934 section. */
7935 tree used_decl, no_used_decl;
7937 if (retain_p)
7939 new_section->common.flags |= SECTION_RETAIN;
7940 used_decl = decl;
7941 no_used_decl = new_section->named.decl;
7943 else
7945 new_section->common.flags &= ~(SECTION_RETAIN
7946 | SECTION_DECLARED);
7947 used_decl = new_section->named.decl;
7948 no_used_decl = decl;
7950 if (no_used_decl != used_decl)
7952 warning (OPT_Wattributes,
7953 "%+qD without %<retain%> attribute and %qD with "
7954 "%<retain%> attribute are placed in a section with "
7955 "the same name", no_used_decl, used_decl);
7956 inform (DECL_SOURCE_LOCATION (used_decl),
7957 "%qD was declared here", used_decl);
7960 else if (in_section == new_section)
7961 return;
7963 in_section = new_section;
7965 switch (SECTION_STYLE (new_section))
7967 case SECTION_NAMED:
7968 targetm.asm_out.named_section (new_section->named.name,
7969 new_section->named.common.flags,
7970 new_section->named.decl);
7971 break;
7973 case SECTION_UNNAMED:
7974 new_section->unnamed.callback (new_section->unnamed.data);
7975 break;
7977 case SECTION_NOSWITCH:
7978 gcc_unreachable ();
7979 break;
7982 new_section->common.flags |= SECTION_DECLARED;
7985 /* If block symbol SYMBOL has not yet been assigned an offset, place
7986 it at the end of its block. */
7988 void
7989 place_block_symbol (rtx symbol)
7991 unsigned HOST_WIDE_INT size, mask, offset;
7992 class constant_descriptor_rtx *desc;
7993 unsigned int alignment;
7994 struct object_block *block;
7995 tree decl;
7997 gcc_assert (SYMBOL_REF_BLOCK (symbol));
7998 if (SYMBOL_REF_BLOCK_OFFSET (symbol) >= 0)
7999 return;
8001 /* Work out the symbol's size and alignment. */
8002 if (CONSTANT_POOL_ADDRESS_P (symbol))
8004 desc = SYMBOL_REF_CONSTANT (symbol);
8005 alignment = desc->align;
8006 size = GET_MODE_SIZE (desc->mode);
8008 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
8010 decl = SYMBOL_REF_DECL (symbol);
8011 gcc_checking_assert (DECL_IN_CONSTANT_POOL (decl));
8012 alignment = DECL_ALIGN (decl);
8013 size = get_constant_size (DECL_INITIAL (decl));
8014 if ((flag_sanitize & SANITIZE_ADDRESS)
8015 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
8016 && asan_protect_global (DECL_INITIAL (decl)))
8018 size += asan_red_zone_size (size);
8019 alignment = MAX (alignment,
8020 ASAN_RED_ZONE_SIZE * BITS_PER_UNIT);
8023 else
8025 struct symtab_node *snode;
8026 decl = SYMBOL_REF_DECL (symbol);
8028 snode = symtab_node::get (decl);
8029 if (snode->alias)
8031 rtx target = DECL_RTL (snode->ultimate_alias_target ()->decl);
8033 gcc_assert (MEM_P (target)
8034 && GET_CODE (XEXP (target, 0)) == SYMBOL_REF
8035 && SYMBOL_REF_HAS_BLOCK_INFO_P (XEXP (target, 0)));
8036 target = XEXP (target, 0);
8037 place_block_symbol (target);
8038 SYMBOL_REF_BLOCK_OFFSET (symbol) = SYMBOL_REF_BLOCK_OFFSET (target);
8039 return;
8041 alignment = get_variable_align (decl);
8042 size = tree_to_uhwi (DECL_SIZE_UNIT (decl));
8043 if ((flag_sanitize & SANITIZE_ADDRESS)
8044 && asan_protect_global (decl))
8046 size += asan_red_zone_size (size);
8047 alignment = MAX (alignment,
8048 ASAN_RED_ZONE_SIZE * BITS_PER_UNIT);
8052 /* Calculate the object's offset from the start of the block. */
8053 block = SYMBOL_REF_BLOCK (symbol);
8054 mask = alignment / BITS_PER_UNIT - 1;
8055 offset = (block->size + mask) & ~mask;
8056 SYMBOL_REF_BLOCK_OFFSET (symbol) = offset;
8058 /* Record the block's new alignment and size. */
8059 block->alignment = MAX (block->alignment, alignment);
8060 block->size = offset + size;
8062 vec_safe_push (block->objects, symbol);
8065 /* Return the anchor that should be used to address byte offset OFFSET
8066 from the first object in BLOCK. MODEL is the TLS model used
8067 to access it. */
8070 get_section_anchor (struct object_block *block, HOST_WIDE_INT offset,
8071 enum tls_model model)
8073 char label[100];
8074 unsigned int begin, middle, end;
8075 unsigned HOST_WIDE_INT min_offset, max_offset, range, bias, delta;
8076 rtx anchor;
8078 /* Work out the anchor's offset. Use an offset of 0 for the first
8079 anchor so that we don't pessimize the case where we take the address
8080 of a variable at the beginning of the block. This is particularly
8081 useful when a block has only one variable assigned to it.
8083 We try to place anchors RANGE bytes apart, so there can then be
8084 anchors at +/-RANGE, +/-2 * RANGE, and so on, up to the limits of
8085 a ptr_mode offset. With some target settings, the lowest such
8086 anchor might be out of range for the lowest ptr_mode offset;
8087 likewise the highest anchor for the highest offset. Use anchors
8088 at the extreme ends of the ptr_mode range in such cases.
8090 All arithmetic uses unsigned integers in order to avoid
8091 signed overflow. */
8092 max_offset = (unsigned HOST_WIDE_INT) targetm.max_anchor_offset;
8093 min_offset = (unsigned HOST_WIDE_INT) targetm.min_anchor_offset;
8094 range = max_offset - min_offset + 1;
8095 if (range == 0)
8096 offset = 0;
8097 else
8099 bias = HOST_WIDE_INT_1U << (GET_MODE_BITSIZE (ptr_mode) - 1);
8100 if (offset < 0)
8102 delta = -(unsigned HOST_WIDE_INT) offset + max_offset;
8103 delta -= delta % range;
8104 if (delta > bias)
8105 delta = bias;
8106 offset = (HOST_WIDE_INT) (-delta);
8108 else
8110 delta = (unsigned HOST_WIDE_INT) offset - min_offset;
8111 delta -= delta % range;
8112 if (delta > bias - 1)
8113 delta = bias - 1;
8114 offset = (HOST_WIDE_INT) delta;
8118 /* Do a binary search to see if there's already an anchor we can use.
8119 Set BEGIN to the new anchor's index if not. */
8120 begin = 0;
8121 end = vec_safe_length (block->anchors);
8122 while (begin != end)
8124 middle = (end + begin) / 2;
8125 anchor = (*block->anchors)[middle];
8126 if (SYMBOL_REF_BLOCK_OFFSET (anchor) > offset)
8127 end = middle;
8128 else if (SYMBOL_REF_BLOCK_OFFSET (anchor) < offset)
8129 begin = middle + 1;
8130 else if (SYMBOL_REF_TLS_MODEL (anchor) > model)
8131 end = middle;
8132 else if (SYMBOL_REF_TLS_MODEL (anchor) < model)
8133 begin = middle + 1;
8134 else
8135 return anchor;
8138 /* Create a new anchor with a unique label. */
8139 ASM_GENERATE_INTERNAL_LABEL (label, "LANCHOR", anchor_labelno++);
8140 anchor = create_block_symbol (ggc_strdup (label), block, offset);
8141 SYMBOL_REF_FLAGS (anchor) |= SYMBOL_FLAG_LOCAL | SYMBOL_FLAG_ANCHOR;
8142 SYMBOL_REF_FLAGS (anchor) |= model << SYMBOL_FLAG_TLS_SHIFT;
8144 /* Insert it at index BEGIN. */
8145 vec_safe_insert (block->anchors, begin, anchor);
8146 return anchor;
8149 /* Output the objects in BLOCK. */
8151 static void
8152 output_object_block (struct object_block *block)
8154 class constant_descriptor_rtx *desc;
8155 unsigned int i;
8156 HOST_WIDE_INT offset;
8157 tree decl;
8158 rtx symbol;
8160 if (!block->objects)
8161 return;
8163 /* Switch to the section and make sure that the first byte is
8164 suitably aligned. */
8165 /* Special case VTV comdat sections similar to assemble_variable. */
8166 if (SECTION_STYLE (block->sect) == SECTION_NAMED
8167 && block->sect->named.name
8168 && (strcmp (block->sect->named.name, ".vtable_map_vars") == 0))
8169 handle_vtv_comdat_section (block->sect, block->sect->named.decl);
8170 else
8171 switch_to_section (block->sect, SYMBOL_REF_DECL ((*block->objects)[0]));
8173 gcc_checking_assert (!(block->sect->common.flags & SECTION_MERGE));
8174 assemble_align (block->alignment);
8176 /* Define the values of all anchors relative to the current section
8177 position. */
8178 FOR_EACH_VEC_SAFE_ELT (block->anchors, i, symbol)
8179 targetm.asm_out.output_anchor (symbol);
8181 /* Output the objects themselves. */
8182 offset = 0;
8183 FOR_EACH_VEC_ELT (*block->objects, i, symbol)
8185 /* Move to the object's offset, padding with zeros if necessary. */
8186 assemble_zeros (SYMBOL_REF_BLOCK_OFFSET (symbol) - offset);
8187 offset = SYMBOL_REF_BLOCK_OFFSET (symbol);
8188 if (CONSTANT_POOL_ADDRESS_P (symbol))
8190 desc = SYMBOL_REF_CONSTANT (symbol);
8191 /* Pass 1 for align as we have already laid out everything in the block.
8192 So aligning shouldn't be necessary. */
8193 output_constant_pool_1 (desc, 1);
8194 offset += GET_MODE_SIZE (desc->mode);
8196 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
8198 HOST_WIDE_INT size;
8199 decl = SYMBOL_REF_DECL (symbol);
8200 assemble_constant_contents (DECL_INITIAL (decl), XSTR (symbol, 0),
8201 DECL_ALIGN (decl), false);
8203 size = get_constant_size (DECL_INITIAL (decl));
8204 offset += size;
8205 if ((flag_sanitize & SANITIZE_ADDRESS)
8206 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
8207 && asan_protect_global (DECL_INITIAL (decl)))
8209 size = asan_red_zone_size (size);
8210 assemble_zeros (size);
8211 offset += size;
8214 else
8216 HOST_WIDE_INT size;
8217 decl = SYMBOL_REF_DECL (symbol);
8218 assemble_variable_contents (decl, XSTR (symbol, 0), false, false);
8219 size = tree_to_uhwi (DECL_SIZE_UNIT (decl));
8220 offset += size;
8221 if ((flag_sanitize & SANITIZE_ADDRESS)
8222 && asan_protect_global (decl))
8224 size = asan_red_zone_size (size);
8225 assemble_zeros (size);
8226 offset += size;
8232 /* A callback for qsort to compare object_blocks. */
8234 static int
8235 output_object_block_compare (const void *x, const void *y)
8237 object_block *p1 = *(object_block * const*)x;
8238 object_block *p2 = *(object_block * const*)y;
8240 if (p1->sect->common.flags & SECTION_NAMED
8241 && !(p2->sect->common.flags & SECTION_NAMED))
8242 return 1;
8244 if (!(p1->sect->common.flags & SECTION_NAMED)
8245 && p2->sect->common.flags & SECTION_NAMED)
8246 return -1;
8248 if (p1->sect->common.flags & SECTION_NAMED
8249 && p2->sect->common.flags & SECTION_NAMED)
8250 return strcmp (p1->sect->named.name, p2->sect->named.name);
8252 unsigned f1 = p1->sect->common.flags;
8253 unsigned f2 = p2->sect->common.flags;
8254 if (f1 == f2)
8255 return 0;
8256 return f1 < f2 ? -1 : 1;
8259 /* Output the definitions of all object_blocks. */
8261 void
8262 output_object_blocks (void)
8264 vec<object_block *, va_heap> v;
8265 v.create (object_block_htab->elements ());
8266 object_block *obj;
8267 hash_table<object_block_hasher>::iterator hi;
8269 FOR_EACH_HASH_TABLE_ELEMENT (*object_block_htab, obj, object_block *, hi)
8270 v.quick_push (obj);
8272 /* Sort them in order to output them in a deterministic manner,
8273 otherwise we may get .rodata sections in different orders with
8274 and without -g. */
8275 v.qsort (output_object_block_compare);
8276 unsigned i;
8277 FOR_EACH_VEC_ELT (v, i, obj)
8278 output_object_block (obj);
8280 v.release ();
8283 /* This function provides a possible implementation of the
8284 TARGET_ASM_RECORD_GCC_SWITCHES target hook for ELF targets. When triggered
8285 by -frecord-gcc-switches it creates a new mergeable, string section in the
8286 assembler output file called TARGET_ASM_RECORD_GCC_SWITCHES_SECTION which
8287 contains the switches in ASCII format.
8289 FIXME: This code does not correctly handle double quote characters
8290 that appear inside strings, (it strips them rather than preserving them).
8291 FIXME: ASM_OUTPUT_ASCII, as defined in config/elfos.h will not emit NUL
8292 characters - instead it treats them as sub-string separators. Since
8293 we want to emit NUL strings terminators into the object file we have to use
8294 ASM_OUTPUT_SKIP. */
8296 void
8297 elf_record_gcc_switches (const char *options)
8299 section *sec = get_section (targetm.asm_out.record_gcc_switches_section,
8300 SECTION_DEBUG | SECTION_MERGE
8301 | SECTION_STRINGS | (SECTION_ENTSIZE & 1), NULL);
8302 switch_to_section (sec);
8303 ASM_OUTPUT_ASCII (asm_out_file, options, strlen (options) + 1);
8306 /* Emit text to declare externally defined symbols. It is needed to
8307 properly support non-default visibility. */
8308 void
8309 default_elf_asm_output_external (FILE *file ATTRIBUTE_UNUSED,
8310 tree decl,
8311 const char *name ATTRIBUTE_UNUSED)
8313 /* We output the name if and only if TREE_SYMBOL_REFERENCED is
8314 set in order to avoid putting out names that are never really
8315 used. Always output visibility specified in the source. */
8316 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))
8317 && (DECL_VISIBILITY_SPECIFIED (decl)
8318 || targetm.binds_local_p (decl)))
8319 maybe_assemble_visibility (decl);
8322 /* The default hook for TARGET_ASM_OUTPUT_SOURCE_FILENAME. */
8324 void
8325 default_asm_output_source_filename (FILE *file, const char *name)
8327 #ifdef ASM_OUTPUT_SOURCE_FILENAME
8328 ASM_OUTPUT_SOURCE_FILENAME (file, name);
8329 #else
8330 fprintf (file, "\t.file\t");
8331 output_quoted_string (file, name);
8332 putc ('\n', file);
8333 #endif
8336 /* Output a file name in the form wanted by System V. */
8338 void
8339 output_file_directive (FILE *asm_file, const char *input_name)
8341 int len;
8342 const char *na;
8344 if (input_name == NULL)
8345 input_name = "<stdin>";
8346 else
8347 input_name = remap_debug_filename (input_name);
8349 len = strlen (input_name);
8350 na = input_name + len;
8352 /* NA gets INPUT_NAME sans directory names. */
8353 while (na > input_name)
8355 if (IS_DIR_SEPARATOR (na[-1]))
8356 break;
8357 na--;
8360 targetm.asm_out.output_source_filename (asm_file, na);
8363 /* Create a DEBUG_EXPR_DECL / DEBUG_EXPR pair from RTL expression
8364 EXP. */
8366 make_debug_expr_from_rtl (const_rtx exp)
8368 tree ddecl = make_node (DEBUG_EXPR_DECL), type;
8369 machine_mode mode = GET_MODE (exp);
8370 rtx dval;
8372 DECL_ARTIFICIAL (ddecl) = 1;
8373 if (REG_P (exp) && REG_EXPR (exp))
8374 type = TREE_TYPE (REG_EXPR (exp));
8375 else if (MEM_P (exp) && MEM_EXPR (exp))
8376 type = TREE_TYPE (MEM_EXPR (exp));
8377 else
8378 type = NULL_TREE;
8379 if (type && TYPE_MODE (type) == mode)
8380 TREE_TYPE (ddecl) = type;
8381 else
8382 TREE_TYPE (ddecl) = lang_hooks.types.type_for_mode (mode, 1);
8383 SET_DECL_MODE (ddecl, mode);
8384 dval = gen_rtx_DEBUG_EXPR (mode);
8385 DEBUG_EXPR_TREE_DECL (dval) = ddecl;
8386 SET_DECL_RTL (ddecl, dval);
8387 return dval;
8390 #ifdef ELF_ASCII_ESCAPES
8391 /* Default ASM_OUTPUT_LIMITED_STRING for ELF targets. */
8393 void
8394 default_elf_asm_output_limited_string (FILE *f, const char *s)
8396 int escape;
8397 unsigned char c;
8399 fputs (STRING_ASM_OP, f);
8400 putc ('"', f);
8401 while (*s != '\0')
8403 c = *s;
8404 escape = ELF_ASCII_ESCAPES[c];
8405 switch (escape)
8407 case 0:
8408 putc (c, f);
8409 break;
8410 case 1:
8411 putc ('\\', f);
8412 putc ('0'+((c>>6)&7), f);
8413 putc ('0'+((c>>3)&7), f);
8414 putc ('0'+(c&7), f);
8415 break;
8416 default:
8417 putc ('\\', f);
8418 putc (escape, f);
8419 break;
8421 s++;
8423 putc ('\"', f);
8424 putc ('\n', f);
8427 /* Default ASM_OUTPUT_ASCII for ELF targets. */
8429 void
8430 default_elf_asm_output_ascii (FILE *f, const char *s, unsigned int len)
8432 const char *limit = s + len;
8433 const char *last_null = NULL;
8434 unsigned bytes_in_chunk = 0;
8435 unsigned char c;
8436 int escape;
8438 for (; s < limit; s++)
8440 const char *p;
8442 if (bytes_in_chunk >= 60)
8444 putc ('\"', f);
8445 putc ('\n', f);
8446 bytes_in_chunk = 0;
8449 if (s > last_null)
8451 for (p = s; p < limit && *p != '\0'; p++)
8452 continue;
8453 last_null = p;
8455 else
8456 p = last_null;
8458 if (p < limit && (p - s) <= (long) ELF_STRING_LIMIT)
8460 if (bytes_in_chunk > 0)
8462 putc ('\"', f);
8463 putc ('\n', f);
8464 bytes_in_chunk = 0;
8467 default_elf_asm_output_limited_string (f, s);
8468 s = p;
8470 else
8472 if (bytes_in_chunk == 0)
8473 fputs (ASCII_DATA_ASM_OP "\"", f);
8475 c = *s;
8476 escape = ELF_ASCII_ESCAPES[c];
8477 switch (escape)
8479 case 0:
8480 putc (c, f);
8481 bytes_in_chunk++;
8482 break;
8483 case 1:
8484 putc ('\\', f);
8485 putc ('0'+((c>>6)&7), f);
8486 putc ('0'+((c>>3)&7), f);
8487 putc ('0'+(c&7), f);
8488 bytes_in_chunk += 4;
8489 break;
8490 default:
8491 putc ('\\', f);
8492 putc (escape, f);
8493 bytes_in_chunk += 2;
8494 break;
8500 if (bytes_in_chunk > 0)
8502 putc ('\"', f);
8503 putc ('\n', f);
8506 #endif
8508 static GTY(()) section *elf_init_array_section;
8509 static GTY(()) section *elf_fini_array_section;
8511 static section *
8512 get_elf_initfini_array_priority_section (int priority,
8513 bool constructor_p)
8515 section *sec;
8516 if (priority != DEFAULT_INIT_PRIORITY)
8518 char buf[18];
8519 sprintf (buf, "%s.%.5u",
8520 constructor_p ? ".init_array" : ".fini_array",
8521 priority);
8522 sec = get_section (buf, SECTION_WRITE | SECTION_NOTYPE, NULL_TREE);
8524 else
8526 if (constructor_p)
8528 if (elf_init_array_section == NULL)
8529 elf_init_array_section
8530 = get_section (".init_array",
8531 SECTION_WRITE | SECTION_NOTYPE, NULL_TREE);
8532 sec = elf_init_array_section;
8534 else
8536 if (elf_fini_array_section == NULL)
8537 elf_fini_array_section
8538 = get_section (".fini_array",
8539 SECTION_WRITE | SECTION_NOTYPE, NULL_TREE);
8540 sec = elf_fini_array_section;
8543 return sec;
8546 /* Use .init_array section for constructors. */
8548 void
8549 default_elf_init_array_asm_out_constructor (rtx symbol, int priority)
8551 section *sec = get_elf_initfini_array_priority_section (priority,
8552 true);
8553 assemble_addr_to_section (symbol, sec);
8556 /* Use .fini_array section for destructors. */
8558 void
8559 default_elf_fini_array_asm_out_destructor (rtx symbol, int priority)
8561 section *sec = get_elf_initfini_array_priority_section (priority,
8562 false);
8563 assemble_addr_to_section (symbol, sec);
8566 /* Default TARGET_ASM_OUTPUT_IDENT hook.
8568 This is a bit of a cheat. The real default is a no-op, but this
8569 hook is the default for all targets with a .ident directive. */
8571 void
8572 default_asm_output_ident_directive (const char *ident_str)
8574 const char *ident_asm_op = "\t.ident\t";
8576 /* If we are still in the front end, do not write out the string
8577 to asm_out_file. Instead, add a fake top-level asm statement.
8578 This allows the front ends to use this hook without actually
8579 writing to asm_out_file, to handle #ident or Pragma Ident. */
8580 if (symtab->state == PARSING)
8582 char *buf = ACONCAT ((ident_asm_op, "\"", ident_str, "\"\n", NULL));
8583 symtab->finalize_toplevel_asm (build_string (strlen (buf), buf));
8585 else
8586 fprintf (asm_out_file, "%s\"%s\"\n", ident_asm_op, ident_str);
8589 /* Switch to a COMDAT section with COMDAT name of decl.
8591 FIXME: resolve_unique_section needs to deal better with
8592 decls with both DECL_SECTION_NAME and DECL_ONE_ONLY. Once
8593 that is fixed, this if-else statement can be replaced with
8594 a single call to "switch_to_section (sect)". */
8596 void
8597 switch_to_comdat_section (section *sect, tree decl)
8599 #if defined (OBJECT_FORMAT_ELF)
8600 targetm.asm_out.named_section (sect->named.name,
8601 sect->named.common.flags
8602 | SECTION_LINKONCE,
8603 decl);
8604 in_section = sect;
8605 #else
8606 /* Neither OBJECT_FORMAT_PE, nor OBJECT_FORMAT_COFF is set here.
8607 Therefore the following check is used.
8608 In case a the target is PE or COFF a comdat group section
8609 is created, e.g. .vtable_map_vars$foo. The linker places
8610 everything in .vtable_map_vars at the end.
8612 A fix could be made in
8613 gcc/config/i386/winnt.cc: i386_pe_unique_section. */
8614 if (TARGET_PECOFF)
8616 char *name;
8618 if (TREE_CODE (decl) == IDENTIFIER_NODE)
8619 name = ACONCAT ((sect->named.name, "$",
8620 IDENTIFIER_POINTER (decl), NULL));
8621 else
8622 name = ACONCAT ((sect->named.name, "$",
8623 IDENTIFIER_POINTER (DECL_COMDAT_GROUP (decl)),
8624 NULL));
8626 targetm.asm_out.named_section (name,
8627 sect->named.common.flags
8628 | SECTION_LINKONCE,
8629 decl);
8630 in_section = sect;
8632 else
8633 switch_to_section (sect);
8634 #endif
8637 /* This function ensures that vtable_map variables are not only
8638 in the comdat section, but that each variable has its own unique
8639 comdat name. Without this the variables end up in the same section
8640 with a single comdat name. */
8642 static void
8643 handle_vtv_comdat_section (section *sect, const_tree decl ATTRIBUTE_UNUSED)
8645 switch_to_comdat_section(sect, DECL_NAME (decl));
8648 #include "gt-varasm.h"