* tree-ssa.c (target_for_debug_bind, verify_phi_args,
[official-gcc.git] / gcc / varasm.c
bloba03687210c0b3b7d62a8704ccfcf4f93acc2ed1f
1 /* Output variables, constants and external declarations, for GNU compiler.
2 Copyright (C) 1987-2016 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 "tm_p.h"
37 #include "stringpool.h"
38 #include "regs.h"
39 #include "emit-rtl.h"
40 #include "cgraph.h"
41 #include "diagnostic-core.h"
42 #include "fold-const.h"
43 #include "stor-layout.h"
44 #include "varasm.h"
45 #include "flags.h"
46 #include "stmt.h"
47 #include "expr.h"
48 #include "expmed.h"
49 #include "output.h"
50 #include "langhooks.h"
51 #include "debug.h"
52 #include "common/common-target.h"
53 #include "asan.h"
54 #include "rtl-iter.h"
56 #ifdef XCOFF_DEBUGGING_INFO
57 #include "xcoffout.h" /* Needed for external data declarations. */
58 #endif
60 /* The (assembler) name of the first globally-visible object output. */
61 extern GTY(()) const char *first_global_object_name;
62 extern GTY(()) const char *weak_global_object_name;
64 const char *first_global_object_name;
65 const char *weak_global_object_name;
67 struct addr_const;
68 struct constant_descriptor_rtx;
69 struct rtx_constant_pool;
71 #define n_deferred_constants (crtl->varasm.deferred_constants)
73 /* Number for making the label on the next
74 constant that is stored in memory. */
76 static GTY(()) int const_labelno;
78 /* Carry information from ASM_DECLARE_OBJECT_NAME
79 to ASM_FINISH_DECLARE_OBJECT. */
81 int size_directive_output;
83 /* The last decl for which assemble_variable was called,
84 if it did ASM_DECLARE_OBJECT_NAME.
85 If the last call to assemble_variable didn't do that,
86 this holds 0. */
88 tree last_assemble_variable_decl;
90 /* The following global variable indicates if the first basic block
91 in a function belongs to the cold partition or not. */
93 bool first_function_block_is_cold;
95 /* Whether we saw any functions with no_split_stack. */
97 static bool saw_no_split_stack;
99 static const char *strip_reg_name (const char *);
100 static int contains_pointers_p (tree);
101 #ifdef ASM_OUTPUT_EXTERNAL
102 static bool incorporeal_function_p (tree);
103 #endif
104 static void decode_addr_const (tree, struct addr_const *);
105 static hashval_t const_hash_1 (const tree);
106 static int compare_constant (const tree, const tree);
107 static void output_constant_def_contents (rtx);
108 static void output_addressed_constants (tree);
109 static unsigned HOST_WIDE_INT output_constant (tree, unsigned HOST_WIDE_INT,
110 unsigned int, bool);
111 static void globalize_decl (tree);
112 static bool decl_readonly_section_1 (enum section_category);
113 #ifdef BSS_SECTION_ASM_OP
114 #ifdef ASM_OUTPUT_ALIGNED_BSS
115 static void asm_output_aligned_bss (FILE *, tree, const char *,
116 unsigned HOST_WIDE_INT, int)
117 ATTRIBUTE_UNUSED;
118 #endif
119 #endif /* BSS_SECTION_ASM_OP */
120 static void mark_weak (tree);
121 static void output_constant_pool (const char *, tree);
122 static void handle_vtv_comdat_section (section *, const_tree);
124 /* Well-known sections, each one associated with some sort of *_ASM_OP. */
125 section *text_section;
126 section *data_section;
127 section *readonly_data_section;
128 section *sdata_section;
129 section *ctors_section;
130 section *dtors_section;
131 section *bss_section;
132 section *sbss_section;
134 /* Various forms of common section. All are guaranteed to be nonnull. */
135 section *tls_comm_section;
136 section *comm_section;
137 section *lcomm_section;
139 /* A SECTION_NOSWITCH section used for declaring global BSS variables.
140 May be null. */
141 section *bss_noswitch_section;
143 /* The section that holds the main exception table, when known. The section
144 is set either by the target's init_sections hook or by the first call to
145 switch_to_exception_section. */
146 section *exception_section;
148 /* The section that holds the DWARF2 frame unwind information, when known.
149 The section is set either by the target's init_sections hook or by the
150 first call to switch_to_eh_frame_section. */
151 section *eh_frame_section;
153 /* asm_out_file's current section. This is NULL if no section has yet
154 been selected or if we lose track of what the current section is. */
155 section *in_section;
157 /* True if code for the current function is currently being directed
158 at the cold section. */
159 bool in_cold_section_p;
161 /* The following global holds the "function name" for the code in the
162 cold section of a function, if hot/cold function splitting is enabled
163 and there was actually code that went into the cold section. A
164 pseudo function name is needed for the cold section of code for some
165 debugging tools that perform symbolization. */
166 tree cold_function_name = NULL_TREE;
168 /* A linked list of all the unnamed sections. */
169 static GTY(()) section *unnamed_sections;
171 /* Return a nonzero value if DECL has a section attribute. */
172 #define IN_NAMED_SECTION(DECL) \
173 (VAR_OR_FUNCTION_DECL_P (DECL) && DECL_SECTION_NAME (DECL) != NULL)
175 struct section_hasher : ggc_ptr_hash<section>
177 typedef const char *compare_type;
179 static hashval_t hash (section *);
180 static bool equal (section *, const char *);
183 /* Hash table of named sections. */
184 static GTY(()) hash_table<section_hasher> *section_htab;
186 struct object_block_hasher : ggc_ptr_hash<object_block>
188 typedef const section *compare_type;
190 static hashval_t hash (object_block *);
191 static bool equal (object_block *, const section *);
194 /* A table of object_blocks, indexed by section. */
195 static GTY(()) hash_table<object_block_hasher> *object_block_htab;
197 /* The next number to use for internal anchor labels. */
198 static GTY(()) int anchor_labelno;
200 /* A pool of constants that can be shared between functions. */
201 static GTY(()) struct rtx_constant_pool *shared_constant_pool;
203 /* Helper routines for maintaining section_htab. */
205 bool
206 section_hasher::equal (section *old, const char *new_name)
208 return strcmp (old->named.name, new_name) == 0;
211 hashval_t
212 section_hasher::hash (section *old)
214 return htab_hash_string (old->named.name);
217 /* Return a hash value for section SECT. */
219 static hashval_t
220 hash_section (section *sect)
222 if (sect->common.flags & SECTION_NAMED)
223 return htab_hash_string (sect->named.name);
224 return sect->common.flags;
227 /* Helper routines for maintaining object_block_htab. */
229 inline bool
230 object_block_hasher::equal (object_block *old, const section *new_section)
232 return old->sect == new_section;
235 hashval_t
236 object_block_hasher::hash (object_block *old)
238 return hash_section (old->sect);
241 /* Return a new unnamed section with the given fields. */
243 section *
244 get_unnamed_section (unsigned int flags, void (*callback) (const void *),
245 const void *data)
247 section *sect;
249 sect = ggc_alloc<section> ();
250 sect->unnamed.common.flags = flags | SECTION_UNNAMED;
251 sect->unnamed.callback = callback;
252 sect->unnamed.data = data;
253 sect->unnamed.next = unnamed_sections;
255 unnamed_sections = sect;
256 return sect;
259 /* Return a SECTION_NOSWITCH section with the given fields. */
261 static section *
262 get_noswitch_section (unsigned int flags, noswitch_section_callback callback)
264 section *sect;
266 sect = ggc_alloc<section> ();
267 sect->noswitch.common.flags = flags | SECTION_NOSWITCH;
268 sect->noswitch.callback = callback;
270 return sect;
273 /* Return the named section structure associated with NAME. Create
274 a new section with the given fields if no such structure exists. */
276 section *
277 get_section (const char *name, unsigned int flags, tree decl)
279 section *sect, **slot;
281 slot = section_htab->find_slot_with_hash (name, htab_hash_string (name),
282 INSERT);
283 flags |= SECTION_NAMED;
284 if (*slot == NULL)
286 sect = ggc_alloc<section> ();
287 sect->named.common.flags = flags;
288 sect->named.name = ggc_strdup (name);
289 sect->named.decl = decl;
290 *slot = sect;
292 else
294 sect = *slot;
295 if ((sect->common.flags & ~SECTION_DECLARED) != flags
296 && ((sect->common.flags | flags) & SECTION_OVERRIDE) == 0)
298 /* It is fine if one of the section flags is
299 SECTION_WRITE | SECTION_RELRO and the other has none of these
300 flags (i.e. read-only) in named sections and either the
301 section hasn't been declared yet or has been declared as writable.
302 In that case just make sure the resulting flags are
303 SECTION_WRITE | SECTION_RELRO, ie. writable only because of
304 relocations. */
305 if (((sect->common.flags ^ flags) & (SECTION_WRITE | SECTION_RELRO))
306 == (SECTION_WRITE | SECTION_RELRO)
307 && (sect->common.flags
308 & ~(SECTION_DECLARED | SECTION_WRITE | SECTION_RELRO))
309 == (flags & ~(SECTION_WRITE | SECTION_RELRO))
310 && ((sect->common.flags & SECTION_DECLARED) == 0
311 || (sect->common.flags & SECTION_WRITE)))
313 sect->common.flags |= (SECTION_WRITE | SECTION_RELRO);
314 return sect;
316 /* Sanity check user variables for flag changes. */
317 if (sect->named.decl != NULL
318 && DECL_P (sect->named.decl)
319 && decl != sect->named.decl)
321 if (decl != NULL && DECL_P (decl))
322 error ("%+D causes a section type conflict with %D",
323 decl, sect->named.decl);
324 else
325 error ("section type conflict with %D", sect->named.decl);
326 inform (DECL_SOURCE_LOCATION (sect->named.decl),
327 "%qD was declared here", sect->named.decl);
329 else if (decl != NULL && DECL_P (decl))
330 error ("%+D causes a section type conflict", decl);
331 else
332 error ("section type conflict");
333 /* Make sure we don't error about one section multiple times. */
334 sect->common.flags |= SECTION_OVERRIDE;
337 return sect;
340 /* Return true if the current compilation mode benefits from having
341 objects grouped into blocks. */
343 static bool
344 use_object_blocks_p (void)
346 return flag_section_anchors;
349 /* Return the object_block structure for section SECT. Create a new
350 structure if we haven't created one already. Return null if SECT
351 itself is null. */
353 static struct object_block *
354 get_block_for_section (section *sect)
356 struct object_block *block;
358 if (sect == NULL)
359 return NULL;
361 object_block **slot
362 = object_block_htab->find_slot_with_hash (sect, hash_section (sect),
363 INSERT);
364 block = *slot;
365 if (block == NULL)
367 block = ggc_cleared_alloc<object_block> ();
368 block->sect = sect;
369 *slot = block;
371 return block;
374 /* Create a symbol with label LABEL and place it at byte offset
375 OFFSET in BLOCK. OFFSET can be negative if the symbol's offset
376 is not yet known. LABEL must be a garbage-collected string. */
378 static rtx
379 create_block_symbol (const char *label, struct object_block *block,
380 HOST_WIDE_INT offset)
382 rtx symbol;
383 unsigned int size;
385 /* Create the extended SYMBOL_REF. */
386 size = RTX_HDR_SIZE + sizeof (struct block_symbol);
387 symbol = (rtx) ggc_internal_alloc (size);
389 /* Initialize the normal SYMBOL_REF fields. */
390 memset (symbol, 0, size);
391 PUT_CODE (symbol, SYMBOL_REF);
392 PUT_MODE (symbol, Pmode);
393 XSTR (symbol, 0) = label;
394 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_HAS_BLOCK_INFO;
396 /* Initialize the block_symbol stuff. */
397 SYMBOL_REF_BLOCK (symbol) = block;
398 SYMBOL_REF_BLOCK_OFFSET (symbol) = offset;
400 return symbol;
403 /* Return a section with a particular name and with whatever SECTION_*
404 flags section_type_flags deems appropriate. The name of the section
405 is taken from NAME if nonnull, otherwise it is taken from DECL's
406 DECL_SECTION_NAME. DECL is the decl associated with the section
407 (see the section comment for details) and RELOC is as for
408 section_type_flags. */
410 section *
411 get_named_section (tree decl, const char *name, int reloc)
413 unsigned int flags;
415 if (name == NULL)
417 gcc_assert (decl && DECL_P (decl) && DECL_SECTION_NAME (decl));
418 name = DECL_SECTION_NAME (decl);
421 flags = targetm.section_type_flags (decl, name, reloc);
422 return get_section (name, flags, decl);
425 /* Worker for resolve_unique_section. */
427 static bool
428 set_implicit_section (struct symtab_node *n, void *data ATTRIBUTE_UNUSED)
430 n->implicit_section = true;
431 return false;
434 /* If required, set DECL_SECTION_NAME to a unique name. */
436 void
437 resolve_unique_section (tree decl, int reloc ATTRIBUTE_UNUSED,
438 int flag_function_or_data_sections)
440 if (DECL_SECTION_NAME (decl) == NULL
441 && targetm_common.have_named_sections
442 && (flag_function_or_data_sections
443 || DECL_COMDAT_GROUP (decl)))
445 targetm.asm_out.unique_section (decl, reloc);
446 if (DECL_SECTION_NAME (decl))
447 symtab_node::get (decl)->call_for_symbol_and_aliases
448 (set_implicit_section, NULL, true);
452 #ifdef BSS_SECTION_ASM_OP
454 #ifdef ASM_OUTPUT_ALIGNED_BSS
456 /* Utility function for targets to use in implementing
457 ASM_OUTPUT_ALIGNED_BSS.
458 ??? It is believed that this function will work in most cases so such
459 support is localized here. */
461 static void
462 asm_output_aligned_bss (FILE *file, tree decl ATTRIBUTE_UNUSED,
463 const char *name, unsigned HOST_WIDE_INT size,
464 int align)
466 switch_to_section (bss_section);
467 ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
468 #ifdef ASM_DECLARE_OBJECT_NAME
469 last_assemble_variable_decl = decl;
470 ASM_DECLARE_OBJECT_NAME (file, name, decl);
471 #else
472 /* Standard thing is just output label for the object. */
473 ASM_OUTPUT_LABEL (file, name);
474 #endif /* ASM_DECLARE_OBJECT_NAME */
475 ASM_OUTPUT_SKIP (file, size ? size : 1);
478 #endif
480 #endif /* BSS_SECTION_ASM_OP */
482 #ifndef USE_SELECT_SECTION_FOR_FUNCTIONS
483 /* Return the hot section for function DECL. Return text_section for
484 null DECLs. */
486 static section *
487 hot_function_section (tree decl)
489 if (decl != NULL_TREE
490 && DECL_SECTION_NAME (decl) != NULL
491 && targetm_common.have_named_sections)
492 return get_named_section (decl, NULL, 0);
493 else
494 return text_section;
496 #endif
498 /* Return section for TEXT_SECTION_NAME if DECL or DECL_SECTION_NAME (DECL)
499 is NULL.
501 When DECL_SECTION_NAME is non-NULL and it is implicit section and
502 NAMED_SECTION_SUFFIX is non-NULL, then produce section called
503 concatenate the name with NAMED_SECTION_SUFFIX.
504 Otherwise produce "TEXT_SECTION_NAME.IMPLICIT_NAME". */
506 section *
507 get_named_text_section (tree decl,
508 const char *text_section_name,
509 const char *named_section_suffix)
511 if (decl && DECL_SECTION_NAME (decl))
513 if (named_section_suffix)
515 const char *dsn = DECL_SECTION_NAME (decl);
516 const char *stripped_name;
517 char *name, *buffer;
519 name = (char *) alloca (strlen (dsn) + 1);
520 memcpy (name, dsn,
521 strlen (dsn) + 1);
523 stripped_name = targetm.strip_name_encoding (name);
525 buffer = ACONCAT ((stripped_name, named_section_suffix, NULL));
526 return get_named_section (decl, buffer, 0);
528 else if (symtab_node::get (decl)->implicit_section)
530 const char *name;
532 /* Do not try to split gnu_linkonce functions. This gets somewhat
533 slipperly. */
534 if (DECL_COMDAT_GROUP (decl) && !HAVE_COMDAT_GROUP)
535 return NULL;
536 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
537 name = targetm.strip_name_encoding (name);
538 return get_named_section (decl, ACONCAT ((text_section_name, ".",
539 name, NULL)), 0);
541 else
542 return NULL;
544 return get_named_section (decl, text_section_name, 0);
547 /* Choose named function section based on its frequency. */
549 section *
550 default_function_section (tree decl, enum node_frequency freq,
551 bool startup, bool exit)
553 #if defined HAVE_LD_EH_GC_SECTIONS && defined HAVE_LD_EH_GC_SECTIONS_BUG
554 /* Old GNU linkers have buggy --gc-section support, which sometimes
555 results in .gcc_except_table* sections being garbage collected. */
556 if (decl
557 && symtab_node::get (decl)->implicit_section)
558 return NULL;
559 #endif
561 if (!flag_reorder_functions
562 || !targetm_common.have_named_sections)
563 return NULL;
564 /* Startup code should go to startup subsection unless it is
565 unlikely executed (this happens especially with function splitting
566 where we can split away unnecessary parts of static constructors. */
567 if (startup && freq != NODE_FREQUENCY_UNLIKELY_EXECUTED)
569 /* If we do have a profile or(and) LTO phase is executed, we do not need
570 these ELF section. */
571 if (!in_lto_p || !flag_profile_values)
572 return get_named_text_section (decl, ".text.startup", NULL);
573 else
574 return NULL;
577 /* Similarly for exit. */
578 if (exit && freq != NODE_FREQUENCY_UNLIKELY_EXECUTED)
579 return get_named_text_section (decl, ".text.exit", NULL);
581 /* Group cold functions together, similarly for hot code. */
582 switch (freq)
584 case NODE_FREQUENCY_UNLIKELY_EXECUTED:
585 return get_named_text_section (decl, ".text.unlikely", NULL);
586 case NODE_FREQUENCY_HOT:
587 /* If we do have a profile or(and) LTO phase is executed, we do not need
588 these ELF section. */
589 if (!in_lto_p || !flag_profile_values)
590 return get_named_text_section (decl, ".text.hot", NULL);
591 /* FALLTHRU */
592 default:
593 return NULL;
597 /* Return the section for function DECL.
599 If DECL is NULL_TREE, return the text section. We can be passed
600 NULL_TREE under some circumstances by dbxout.c at least.
602 If FORCE_COLD is true, return cold function section ignoring
603 the frequency info of cgraph_node. */
605 static section *
606 function_section_1 (tree decl, bool force_cold)
608 section *section = NULL;
609 enum node_frequency freq = NODE_FREQUENCY_NORMAL;
610 bool startup = false, exit = false;
612 if (decl)
614 struct cgraph_node *node = cgraph_node::get (decl);
616 if (node)
618 freq = node->frequency;
619 startup = node->only_called_at_startup;
620 exit = node->only_called_at_exit;
623 if (force_cold)
624 freq = NODE_FREQUENCY_UNLIKELY_EXECUTED;
626 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
627 if (decl != NULL_TREE
628 && DECL_SECTION_NAME (decl) != NULL)
630 if (targetm.asm_out.function_section)
631 section = targetm.asm_out.function_section (decl, freq,
632 startup, exit);
633 if (section)
634 return section;
635 return get_named_section (decl, NULL, 0);
637 else
638 return targetm.asm_out.select_section
639 (decl, freq == NODE_FREQUENCY_UNLIKELY_EXECUTED,
640 symtab_node::get (decl)->definition_alignment ());
641 #else
642 if (targetm.asm_out.function_section)
643 section = targetm.asm_out.function_section (decl, freq, startup, exit);
644 if (section)
645 return section;
646 return hot_function_section (decl);
647 #endif
650 /* Return the section for function DECL.
652 If DECL is NULL_TREE, return the text section. We can be passed
653 NULL_TREE under some circumstances by dbxout.c at least. */
655 section *
656 function_section (tree decl)
658 /* Handle cases where function splitting code decides
659 to put function entry point into unlikely executed section
660 despite the fact that the function itself is not cold
661 (i.e. it is called rarely but contains a hot loop that is
662 better to live in hot subsection for the code locality). */
663 return function_section_1 (decl,
664 first_function_block_is_cold);
667 /* Return the section for the current function, take IN_COLD_SECTION_P
668 into account. */
670 section *
671 current_function_section (void)
673 return function_section_1 (current_function_decl, in_cold_section_p);
676 /* Tell assembler to switch to unlikely-to-be-executed text section. */
678 section *
679 unlikely_text_section (void)
681 return function_section_1 (current_function_decl, true);
684 /* When called within a function context, return true if the function
685 has been assigned a cold text section and if SECT is that section.
686 When called outside a function context, return true if SECT is the
687 default cold section. */
689 bool
690 unlikely_text_section_p (section *sect)
692 return sect == function_section_1 (current_function_decl, true);
695 /* Return the read-only data section associated with function DECL. */
697 section *
698 default_function_rodata_section (tree decl)
700 if (decl != NULL_TREE && DECL_SECTION_NAME (decl))
702 const char *name = DECL_SECTION_NAME (decl);
704 if (DECL_COMDAT_GROUP (decl) && HAVE_COMDAT_GROUP)
706 const char *dot;
707 size_t len;
708 char* rname;
710 dot = strchr (name + 1, '.');
711 if (!dot)
712 dot = name;
713 len = strlen (dot) + 8;
714 rname = (char *) alloca (len);
716 strcpy (rname, ".rodata");
717 strcat (rname, dot);
718 return get_section (rname, SECTION_LINKONCE, decl);
720 /* For .gnu.linkonce.t.foo we want to use .gnu.linkonce.r.foo. */
721 else if (DECL_COMDAT_GROUP (decl)
722 && strncmp (name, ".gnu.linkonce.t.", 16) == 0)
724 size_t len = strlen (name) + 1;
725 char *rname = (char *) alloca (len);
727 memcpy (rname, name, len);
728 rname[14] = 'r';
729 return get_section (rname, SECTION_LINKONCE, decl);
731 /* For .text.foo we want to use .rodata.foo. */
732 else if (flag_function_sections && flag_data_sections
733 && strncmp (name, ".text.", 6) == 0)
735 size_t len = strlen (name) + 1;
736 char *rname = (char *) alloca (len + 2);
738 memcpy (rname, ".rodata", 7);
739 memcpy (rname + 7, name + 5, len - 5);
740 return get_section (rname, 0, decl);
744 return readonly_data_section;
747 /* Return the read-only data section associated with function DECL
748 for targets where that section should be always the single
749 readonly data section. */
751 section *
752 default_no_function_rodata_section (tree decl ATTRIBUTE_UNUSED)
754 return readonly_data_section;
757 /* A subroutine of mergeable_string_section and mergeable_constant_section. */
759 static const char *
760 function_mergeable_rodata_prefix (void)
762 section *s = targetm.asm_out.function_rodata_section (current_function_decl);
763 if (SECTION_STYLE (s) == SECTION_NAMED)
764 return s->named.name;
765 else
766 return targetm.asm_out.mergeable_rodata_prefix;
769 /* Return the section to use for string merging. */
771 static section *
772 mergeable_string_section (tree decl ATTRIBUTE_UNUSED,
773 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
774 unsigned int flags ATTRIBUTE_UNUSED)
776 HOST_WIDE_INT len;
778 if (HAVE_GAS_SHF_MERGE && flag_merge_constants
779 && TREE_CODE (decl) == STRING_CST
780 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
781 && align <= 256
782 && (len = int_size_in_bytes (TREE_TYPE (decl))) > 0
783 && TREE_STRING_LENGTH (decl) >= len)
785 machine_mode mode;
786 unsigned int modesize;
787 const char *str;
788 HOST_WIDE_INT i;
789 int j, unit;
790 const char *prefix = function_mergeable_rodata_prefix ();
791 char *name = (char *) alloca (strlen (prefix) + 30);
793 mode = TYPE_MODE (TREE_TYPE (TREE_TYPE (decl)));
794 modesize = GET_MODE_BITSIZE (mode);
795 if (modesize >= 8 && modesize <= 256
796 && (modesize & (modesize - 1)) == 0)
798 if (align < modesize)
799 align = modesize;
801 str = TREE_STRING_POINTER (decl);
802 unit = GET_MODE_SIZE (mode);
804 /* Check for embedded NUL characters. */
805 for (i = 0; i < len; i += unit)
807 for (j = 0; j < unit; j++)
808 if (str[i + j] != '\0')
809 break;
810 if (j == unit)
811 break;
813 if (i == len - unit)
815 sprintf (name, "%s.str%d.%d", prefix,
816 modesize / 8, (int) (align / 8));
817 flags |= (modesize / 8) | SECTION_MERGE | SECTION_STRINGS;
818 return get_section (name, flags, NULL);
823 return readonly_data_section;
826 /* Return the section to use for constant merging. */
828 section *
829 mergeable_constant_section (machine_mode mode ATTRIBUTE_UNUSED,
830 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
831 unsigned int flags ATTRIBUTE_UNUSED)
833 unsigned int modesize = GET_MODE_BITSIZE (mode);
835 if (HAVE_GAS_SHF_MERGE && flag_merge_constants
836 && mode != VOIDmode
837 && mode != BLKmode
838 && modesize <= align
839 && align >= 8
840 && align <= 256
841 && (align & (align - 1)) == 0)
843 const char *prefix = function_mergeable_rodata_prefix ();
844 char *name = (char *) alloca (strlen (prefix) + 30);
846 sprintf (name, "%s.cst%d", prefix, (int) (align / 8));
847 flags |= (align / 8) | SECTION_MERGE;
848 return get_section (name, flags, NULL);
850 return readonly_data_section;
853 /* Given NAME, a putative register name, discard any customary prefixes. */
855 static const char *
856 strip_reg_name (const char *name)
858 #ifdef REGISTER_PREFIX
859 if (!strncmp (name, REGISTER_PREFIX, strlen (REGISTER_PREFIX)))
860 name += strlen (REGISTER_PREFIX);
861 #endif
862 if (name[0] == '%' || name[0] == '#')
863 name++;
864 return name;
867 /* The user has asked for a DECL to have a particular name. Set (or
868 change) it in such a way that we don't prefix an underscore to
869 it. */
870 void
871 set_user_assembler_name (tree decl, const char *name)
873 char *starred = (char *) alloca (strlen (name) + 2);
874 starred[0] = '*';
875 strcpy (starred + 1, name);
876 symtab->change_decl_assembler_name (decl, get_identifier (starred));
877 SET_DECL_RTL (decl, NULL_RTX);
880 /* Decode an `asm' spec for a declaration as a register name.
881 Return the register number, or -1 if nothing specified,
882 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
883 or -3 if ASMSPEC is `cc' and is not recognized,
884 or -4 if ASMSPEC is `memory' and is not recognized.
885 Accept an exact spelling or a decimal number.
886 Prefixes such as % are optional. */
889 decode_reg_name_and_count (const char *asmspec, int *pnregs)
891 /* Presume just one register is clobbered. */
892 *pnregs = 1;
894 if (asmspec != 0)
896 int i;
898 /* Get rid of confusing prefixes. */
899 asmspec = strip_reg_name (asmspec);
901 /* Allow a decimal number as a "register name". */
902 for (i = strlen (asmspec) - 1; i >= 0; i--)
903 if (! ISDIGIT (asmspec[i]))
904 break;
905 if (asmspec[0] != 0 && i < 0)
907 i = atoi (asmspec);
908 if (i < FIRST_PSEUDO_REGISTER && i >= 0 && reg_names[i][0])
909 return i;
910 else
911 return -2;
914 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
915 if (reg_names[i][0]
916 && ! strcmp (asmspec, strip_reg_name (reg_names[i])))
917 return i;
919 #ifdef OVERLAPPING_REGISTER_NAMES
921 static const struct
923 const char *const name;
924 const int number;
925 const int nregs;
926 } table[] = OVERLAPPING_REGISTER_NAMES;
928 for (i = 0; i < (int) ARRAY_SIZE (table); i++)
929 if (table[i].name[0]
930 && ! strcmp (asmspec, table[i].name))
932 *pnregs = table[i].nregs;
933 return table[i].number;
936 #endif /* OVERLAPPING_REGISTER_NAMES */
938 #ifdef ADDITIONAL_REGISTER_NAMES
940 static const struct { const char *const name; const int number; } table[]
941 = ADDITIONAL_REGISTER_NAMES;
943 for (i = 0; i < (int) ARRAY_SIZE (table); i++)
944 if (table[i].name[0]
945 && ! strcmp (asmspec, table[i].name)
946 && reg_names[table[i].number][0])
947 return table[i].number;
949 #endif /* ADDITIONAL_REGISTER_NAMES */
951 if (!strcmp (asmspec, "memory"))
952 return -4;
954 if (!strcmp (asmspec, "cc"))
955 return -3;
957 return -2;
960 return -1;
964 decode_reg_name (const char *name)
966 int count;
967 return decode_reg_name_and_count (name, &count);
971 /* Return true if DECL's initializer is suitable for a BSS section. */
973 bool
974 bss_initializer_p (const_tree decl)
976 return (DECL_INITIAL (decl) == NULL
977 /* In LTO we have no errors in program; error_mark_node is used
978 to mark offlined constructors. */
979 || (DECL_INITIAL (decl) == error_mark_node
980 && !in_lto_p)
981 || (flag_zero_initialized_in_bss
982 /* Leave constant zeroes in .rodata so they
983 can be shared. */
984 && !TREE_READONLY (decl)
985 && initializer_zerop (DECL_INITIAL (decl))));
988 /* Compute the alignment of variable specified by DECL.
989 DONT_OUTPUT_DATA is from assemble_variable. */
991 void
992 align_variable (tree decl, bool dont_output_data)
994 unsigned int align = DECL_ALIGN (decl);
996 /* In the case for initialing an array whose length isn't specified,
997 where we have not yet been able to do the layout,
998 figure out the proper alignment now. */
999 if (dont_output_data && DECL_SIZE (decl) == 0
1000 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
1001 align = MAX (align, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
1003 /* Some object file formats have a maximum alignment which they support.
1004 In particular, a.out format supports a maximum alignment of 4. */
1005 if (align > MAX_OFILE_ALIGNMENT)
1007 error ("alignment of %q+D is greater than maximum object "
1008 "file alignment %d", decl,
1009 MAX_OFILE_ALIGNMENT/BITS_PER_UNIT);
1010 align = MAX_OFILE_ALIGNMENT;
1013 if (! DECL_USER_ALIGN (decl))
1015 #ifdef DATA_ABI_ALIGNMENT
1016 unsigned int data_abi_align
1017 = DATA_ABI_ALIGNMENT (TREE_TYPE (decl), align);
1018 /* For backwards compatibility, don't assume the ABI alignment for
1019 TLS variables. */
1020 if (! DECL_THREAD_LOCAL_P (decl) || data_abi_align <= BITS_PER_WORD)
1021 align = data_abi_align;
1022 #endif
1024 /* On some machines, it is good to increase alignment sometimes.
1025 But as DECL_ALIGN is used both for actually emitting the variable
1026 and for code accessing the variable as guaranteed alignment, we
1027 can only increase the alignment if it is a performance optimization
1028 if the references to it must bind to the current definition. */
1029 if (decl_binds_to_current_def_p (decl)
1030 && !DECL_VIRTUAL_P (decl))
1032 #ifdef DATA_ALIGNMENT
1033 unsigned int data_align = DATA_ALIGNMENT (TREE_TYPE (decl), align);
1034 /* Don't increase alignment too much for TLS variables - TLS space
1035 is too precious. */
1036 if (! DECL_THREAD_LOCAL_P (decl) || data_align <= BITS_PER_WORD)
1037 align = data_align;
1038 #endif
1039 if (DECL_INITIAL (decl) != 0
1040 /* In LTO we have no errors in program; error_mark_node is used
1041 to mark offlined constructors. */
1042 && (in_lto_p || DECL_INITIAL (decl) != error_mark_node))
1044 unsigned int const_align
1045 = CONSTANT_ALIGNMENT (DECL_INITIAL (decl), align);
1046 /* Don't increase alignment too much for TLS variables - TLS
1047 space is too precious. */
1048 if (! DECL_THREAD_LOCAL_P (decl) || const_align <= BITS_PER_WORD)
1049 align = const_align;
1054 /* Reset the alignment in case we have made it tighter, so we can benefit
1055 from it in get_pointer_alignment. */
1056 SET_DECL_ALIGN (decl, align);
1059 /* Return DECL_ALIGN (decl), possibly increased for optimization purposes
1060 beyond what align_variable returned. */
1062 static unsigned int
1063 get_variable_align (tree decl)
1065 unsigned int align = DECL_ALIGN (decl);
1067 /* For user aligned vars or static vars align_variable already did
1068 everything. */
1069 if (DECL_USER_ALIGN (decl) || !TREE_PUBLIC (decl))
1070 return align;
1072 #ifdef DATA_ABI_ALIGNMENT
1073 if (DECL_THREAD_LOCAL_P (decl))
1074 align = DATA_ABI_ALIGNMENT (TREE_TYPE (decl), align);
1075 #endif
1077 /* For decls that bind to the current definition, align_variable
1078 did also everything, except for not assuming ABI required alignment
1079 of TLS variables. For other vars, increase the alignment here
1080 as an optimization. */
1081 if (!decl_binds_to_current_def_p (decl))
1083 /* On some machines, it is good to increase alignment sometimes. */
1084 #ifdef DATA_ALIGNMENT
1085 unsigned int data_align = DATA_ALIGNMENT (TREE_TYPE (decl), align);
1086 /* Don't increase alignment too much for TLS variables - TLS space
1087 is too precious. */
1088 if (! DECL_THREAD_LOCAL_P (decl) || data_align <= BITS_PER_WORD)
1089 align = data_align;
1090 #endif
1091 if (DECL_INITIAL (decl) != 0
1092 /* In LTO we have no errors in program; error_mark_node is used
1093 to mark offlined constructors. */
1094 && (in_lto_p || DECL_INITIAL (decl) != error_mark_node))
1096 unsigned int const_align = CONSTANT_ALIGNMENT (DECL_INITIAL (decl),
1097 align);
1098 /* Don't increase alignment too much for TLS variables - TLS space
1099 is too precious. */
1100 if (! DECL_THREAD_LOCAL_P (decl) || const_align <= BITS_PER_WORD)
1101 align = const_align;
1105 return align;
1108 /* Return the section into which the given VAR_DECL or CONST_DECL
1109 should be placed. PREFER_NOSWITCH_P is true if a noswitch
1110 section should be used wherever possible. */
1112 section *
1113 get_variable_section (tree decl, bool prefer_noswitch_p)
1115 addr_space_t as = ADDR_SPACE_GENERIC;
1116 int reloc;
1117 varpool_node *vnode = varpool_node::get (decl);
1118 if (vnode)
1120 vnode = vnode->ultimate_alias_target ();
1121 decl = vnode->decl;
1124 if (TREE_TYPE (decl) != error_mark_node)
1125 as = TYPE_ADDR_SPACE (TREE_TYPE (decl));
1127 /* We need the constructor to figure out reloc flag. */
1128 if (vnode)
1129 vnode->get_constructor ();
1131 if (DECL_COMMON (decl))
1133 /* If the decl has been given an explicit section name, or it resides
1134 in a non-generic address space, then it isn't common, and shouldn't
1135 be handled as such. */
1136 gcc_assert (DECL_SECTION_NAME (decl) == NULL
1137 && ADDR_SPACE_GENERIC_P (as));
1138 if (DECL_THREAD_LOCAL_P (decl))
1139 return tls_comm_section;
1140 else if (TREE_PUBLIC (decl) && bss_initializer_p (decl))
1141 return comm_section;
1144 if (DECL_INITIAL (decl) == error_mark_node)
1145 reloc = contains_pointers_p (TREE_TYPE (decl)) ? 3 : 0;
1146 else if (DECL_INITIAL (decl))
1147 reloc = compute_reloc_for_constant (DECL_INITIAL (decl));
1148 else
1149 reloc = 0;
1151 resolve_unique_section (decl, reloc, flag_data_sections);
1152 if (IN_NAMED_SECTION (decl))
1154 section *sect = get_named_section (decl, NULL, reloc);
1156 if ((sect->common.flags & SECTION_BSS) && !bss_initializer_p (decl))
1158 error_at (DECL_SOURCE_LOCATION (decl),
1159 "only zero initializers are allowed in section %qs",
1160 sect->named.name);
1161 DECL_INITIAL (decl) = error_mark_node;
1163 return sect;
1166 if (ADDR_SPACE_GENERIC_P (as)
1167 && !DECL_THREAD_LOCAL_P (decl)
1168 && !(prefer_noswitch_p && targetm.have_switchable_bss_sections)
1169 && bss_initializer_p (decl))
1171 if (!TREE_PUBLIC (decl)
1172 && !((flag_sanitize & SANITIZE_ADDRESS)
1173 && asan_protect_global (decl)))
1174 return lcomm_section;
1175 if (bss_noswitch_section)
1176 return bss_noswitch_section;
1179 return targetm.asm_out.select_section (decl, reloc,
1180 get_variable_align (decl));
1183 /* Return the block into which object_block DECL should be placed. */
1185 static struct object_block *
1186 get_block_for_decl (tree decl)
1188 section *sect;
1190 if (VAR_P (decl))
1192 /* The object must be defined in this translation unit. */
1193 if (DECL_EXTERNAL (decl))
1194 return NULL;
1196 /* There's no point using object blocks for something that is
1197 isolated by definition. */
1198 if (DECL_COMDAT_GROUP (decl))
1199 return NULL;
1202 /* We can only calculate block offsets if the decl has a known
1203 constant size. */
1204 if (DECL_SIZE_UNIT (decl) == NULL)
1205 return NULL;
1206 if (!tree_fits_uhwi_p (DECL_SIZE_UNIT (decl)))
1207 return NULL;
1209 /* Find out which section should contain DECL. We cannot put it into
1210 an object block if it requires a standalone definition. */
1211 if (VAR_P (decl))
1212 align_variable (decl, 0);
1213 sect = get_variable_section (decl, true);
1214 if (SECTION_STYLE (sect) == SECTION_NOSWITCH)
1215 return NULL;
1217 return get_block_for_section (sect);
1220 /* Make sure block symbol SYMBOL is in block BLOCK. */
1222 static void
1223 change_symbol_block (rtx symbol, struct object_block *block)
1225 if (block != SYMBOL_REF_BLOCK (symbol))
1227 gcc_assert (SYMBOL_REF_BLOCK_OFFSET (symbol) < 0);
1228 SYMBOL_REF_BLOCK (symbol) = block;
1232 /* Return true if it is possible to put DECL in an object_block. */
1234 static bool
1235 use_blocks_for_decl_p (tree decl)
1237 struct symtab_node *snode;
1239 /* Only data DECLs can be placed into object blocks. */
1240 if (!VAR_P (decl) && TREE_CODE (decl) != CONST_DECL)
1241 return false;
1243 /* Detect decls created by dw2_force_const_mem. Such decls are
1244 special because DECL_INITIAL doesn't specify the decl's true value.
1245 dw2_output_indirect_constants will instead call assemble_variable
1246 with dont_output_data set to 1 and then print the contents itself. */
1247 if (DECL_INITIAL (decl) == decl)
1248 return false;
1250 /* If this decl is an alias, then we don't want to emit a
1251 definition. */
1252 if (VAR_P (decl)
1253 && (snode = symtab_node::get (decl)) != NULL
1254 && snode->alias)
1255 return false;
1257 return targetm.use_blocks_for_decl_p (decl);
1260 /* Follow the IDENTIFIER_TRANSPARENT_ALIAS chain starting at *ALIAS
1261 until we find an identifier that is not itself a transparent alias.
1262 Modify the alias passed to it by reference (and all aliases on the
1263 way to the ultimate target), such that they do not have to be
1264 followed again, and return the ultimate target of the alias
1265 chain. */
1267 static inline tree
1268 ultimate_transparent_alias_target (tree *alias)
1270 tree target = *alias;
1272 if (IDENTIFIER_TRANSPARENT_ALIAS (target))
1274 gcc_assert (TREE_CHAIN (target));
1275 target = ultimate_transparent_alias_target (&TREE_CHAIN (target));
1276 gcc_assert (! IDENTIFIER_TRANSPARENT_ALIAS (target)
1277 && ! TREE_CHAIN (target));
1278 *alias = target;
1281 return target;
1284 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
1285 have static storage duration. In other words, it should not be an
1286 automatic variable, including PARM_DECLs.
1288 There is, however, one exception: this function handles variables
1289 explicitly placed in a particular register by the user.
1291 This is never called for PARM_DECL nodes. */
1293 void
1294 make_decl_rtl (tree decl)
1296 const char *name = 0;
1297 int reg_number;
1298 tree id;
1299 rtx x;
1301 /* Check that we are not being given an automatic variable. */
1302 gcc_assert (TREE_CODE (decl) != PARM_DECL
1303 && TREE_CODE (decl) != RESULT_DECL);
1305 /* A weak alias has TREE_PUBLIC set but not the other bits. */
1306 gcc_assert (!VAR_P (decl)
1307 || TREE_STATIC (decl)
1308 || TREE_PUBLIC (decl)
1309 || DECL_EXTERNAL (decl)
1310 || DECL_REGISTER (decl));
1312 /* And that we were not given a type or a label. */
1313 gcc_assert (TREE_CODE (decl) != TYPE_DECL
1314 && TREE_CODE (decl) != LABEL_DECL);
1316 /* For a duplicate declaration, we can be called twice on the
1317 same DECL node. Don't discard the RTL already made. */
1318 if (DECL_RTL_SET_P (decl))
1320 /* If the old RTL had the wrong mode, fix the mode. */
1321 x = DECL_RTL (decl);
1322 if (GET_MODE (x) != DECL_MODE (decl))
1323 SET_DECL_RTL (decl, adjust_address_nv (x, DECL_MODE (decl), 0));
1325 if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
1326 return;
1328 /* ??? Another way to do this would be to maintain a hashed
1329 table of such critters. Instead of adding stuff to a DECL
1330 to give certain attributes to it, we could use an external
1331 hash map from DECL to set of attributes. */
1333 /* Let the target reassign the RTL if it wants.
1334 This is necessary, for example, when one machine specific
1335 decl attribute overrides another. */
1336 targetm.encode_section_info (decl, DECL_RTL (decl), false);
1338 /* If the symbol has a SYMBOL_REF_BLOCK field, update it based
1339 on the new decl information. */
1340 if (MEM_P (x)
1341 && GET_CODE (XEXP (x, 0)) == SYMBOL_REF
1342 && SYMBOL_REF_HAS_BLOCK_INFO_P (XEXP (x, 0)))
1343 change_symbol_block (XEXP (x, 0), get_block_for_decl (decl));
1345 return;
1348 /* If this variable belongs to the global constant pool, retrieve the
1349 pre-computed RTL or recompute it in LTO mode. */
1350 if (VAR_P (decl) && DECL_IN_CONSTANT_POOL (decl))
1352 SET_DECL_RTL (decl, output_constant_def (DECL_INITIAL (decl), 1));
1353 return;
1356 id = DECL_ASSEMBLER_NAME (decl);
1357 if (TREE_CODE (decl) == FUNCTION_DECL
1358 && cgraph_node::get (decl)
1359 && cgraph_node::get (decl)->instrumentation_clone)
1360 ultimate_transparent_alias_target (&id);
1361 name = IDENTIFIER_POINTER (id);
1363 if (name[0] != '*' && TREE_CODE (decl) != FUNCTION_DECL
1364 && DECL_REGISTER (decl))
1366 error ("register name not specified for %q+D", decl);
1368 else if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
1370 const char *asmspec = name+1;
1371 machine_mode mode = DECL_MODE (decl);
1372 reg_number = decode_reg_name (asmspec);
1373 /* First detect errors in declaring global registers. */
1374 if (reg_number == -1)
1375 error ("register name not specified for %q+D", decl);
1376 else if (reg_number < 0)
1377 error ("invalid register name for %q+D", decl);
1378 else if (mode == BLKmode)
1379 error ("data type of %q+D isn%'t suitable for a register",
1380 decl);
1381 else if (!in_hard_reg_set_p (accessible_reg_set, mode, reg_number))
1382 error ("the register specified for %q+D cannot be accessed"
1383 " by the current target", decl);
1384 else if (!in_hard_reg_set_p (operand_reg_set, mode, reg_number))
1385 error ("the register specified for %q+D is not general enough"
1386 " to be used as a register variable", decl);
1387 else if (!HARD_REGNO_MODE_OK (reg_number, mode))
1388 error ("register specified for %q+D isn%'t suitable for data type",
1389 decl);
1390 /* Now handle properly declared static register variables. */
1391 else
1393 int nregs;
1395 if (DECL_INITIAL (decl) != 0 && TREE_STATIC (decl))
1397 DECL_INITIAL (decl) = 0;
1398 error ("global register variable has initial value");
1400 if (TREE_THIS_VOLATILE (decl))
1401 warning (OPT_Wvolatile_register_var,
1402 "optimization may eliminate reads and/or "
1403 "writes to register variables");
1405 /* If the user specified one of the eliminables registers here,
1406 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
1407 confused with that register and be eliminated. This usage is
1408 somewhat suspect... */
1410 SET_DECL_RTL (decl, gen_raw_REG (mode, reg_number));
1411 ORIGINAL_REGNO (DECL_RTL (decl)) = reg_number;
1412 REG_USERVAR_P (DECL_RTL (decl)) = 1;
1414 if (TREE_STATIC (decl))
1416 /* Make this register global, so not usable for anything
1417 else. */
1418 #ifdef ASM_DECLARE_REGISTER_GLOBAL
1419 name = IDENTIFIER_POINTER (DECL_NAME (decl));
1420 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file, decl, reg_number, name);
1421 #endif
1422 nregs = hard_regno_nregs[reg_number][mode];
1423 while (nregs > 0)
1424 globalize_reg (decl, reg_number + --nregs);
1427 /* As a register variable, it has no section. */
1428 return;
1430 /* Avoid internal errors from invalid register
1431 specifications. */
1432 SET_DECL_ASSEMBLER_NAME (decl, NULL_TREE);
1433 DECL_HARD_REGISTER (decl) = 0;
1434 /* Also avoid SSA inconsistencies by pretending this is an external
1435 decl now. */
1436 DECL_EXTERNAL (decl) = 1;
1437 return;
1439 /* Now handle ordinary static variables and functions (in memory).
1440 Also handle vars declared register invalidly. */
1441 else if (name[0] == '*')
1443 #ifdef REGISTER_PREFIX
1444 if (strlen (REGISTER_PREFIX) != 0)
1446 reg_number = decode_reg_name (name);
1447 if (reg_number >= 0 || reg_number == -3)
1448 error ("register name given for non-register variable %q+D", decl);
1450 #endif
1453 /* Specifying a section attribute on a variable forces it into a
1454 non-.bss section, and thus it cannot be common. */
1455 /* FIXME: In general this code should not be necessary because
1456 visibility pass is doing the same work. But notice_global_symbol
1457 is called early and it needs to make DECL_RTL to get the name.
1458 we take care of recomputing the DECL_RTL after visibility is changed. */
1459 if (VAR_P (decl)
1460 && (TREE_STATIC (decl) || DECL_EXTERNAL (decl))
1461 && DECL_SECTION_NAME (decl) != NULL
1462 && DECL_INITIAL (decl) == NULL_TREE
1463 && DECL_COMMON (decl))
1464 DECL_COMMON (decl) = 0;
1466 /* Variables can't be both common and weak. */
1467 if (VAR_P (decl) && DECL_WEAK (decl))
1468 DECL_COMMON (decl) = 0;
1470 if (use_object_blocks_p () && use_blocks_for_decl_p (decl))
1471 x = create_block_symbol (name, get_block_for_decl (decl), -1);
1472 else
1474 machine_mode address_mode = Pmode;
1475 if (TREE_TYPE (decl) != error_mark_node)
1477 addr_space_t as = TYPE_ADDR_SPACE (TREE_TYPE (decl));
1478 address_mode = targetm.addr_space.address_mode (as);
1480 x = gen_rtx_SYMBOL_REF (address_mode, name);
1482 SYMBOL_REF_WEAK (x) = DECL_WEAK (decl);
1483 SET_SYMBOL_REF_DECL (x, decl);
1485 x = gen_rtx_MEM (DECL_MODE (decl), x);
1486 if (TREE_CODE (decl) != FUNCTION_DECL)
1487 set_mem_attributes (x, decl, 1);
1488 SET_DECL_RTL (decl, x);
1490 /* Optionally set flags or add text to the name to record information
1491 such as that it is a function name.
1492 If the name is changed, the macro ASM_OUTPUT_LABELREF
1493 will have to know how to strip this information. */
1494 targetm.encode_section_info (decl, DECL_RTL (decl), true);
1497 /* Like make_decl_rtl, but inhibit creation of new alias sets when
1498 calling make_decl_rtl. Also, reset DECL_RTL before returning the
1499 rtl. */
1502 make_decl_rtl_for_debug (tree decl)
1504 unsigned int save_aliasing_flag;
1505 rtx rtl;
1507 if (DECL_RTL_SET_P (decl))
1508 return DECL_RTL (decl);
1510 /* Kludge alert! Somewhere down the call chain, make_decl_rtl will
1511 call new_alias_set. If running with -fcompare-debug, sometimes
1512 we do not want to create alias sets that will throw the alias
1513 numbers off in the comparison dumps. So... clearing
1514 flag_strict_aliasing will keep new_alias_set() from creating a
1515 new set. */
1516 save_aliasing_flag = flag_strict_aliasing;
1517 flag_strict_aliasing = 0;
1519 rtl = DECL_RTL (decl);
1520 /* Reset DECL_RTL back, as various parts of the compiler expects
1521 DECL_RTL set meaning it is actually going to be output. */
1522 SET_DECL_RTL (decl, NULL);
1524 flag_strict_aliasing = save_aliasing_flag;
1525 return rtl;
1528 /* Output a string of literal assembler code
1529 for an `asm' keyword used between functions. */
1531 void
1532 assemble_asm (tree string)
1534 const char *p;
1535 app_enable ();
1537 if (TREE_CODE (string) == ADDR_EXPR)
1538 string = TREE_OPERAND (string, 0);
1540 p = TREE_STRING_POINTER (string);
1541 fprintf (asm_out_file, "%s%s\n", p[0] == '\t' ? "" : "\t", p);
1544 /* Write the address of the entity given by SYMBOL to SEC. */
1545 void
1546 assemble_addr_to_section (rtx symbol, section *sec)
1548 switch_to_section (sec);
1549 assemble_align (POINTER_SIZE);
1550 assemble_integer (symbol, POINTER_SIZE_UNITS, POINTER_SIZE, 1);
1553 /* Return the numbered .ctors.N (if CONSTRUCTOR_P) or .dtors.N (if
1554 not) section for PRIORITY. */
1555 section *
1556 get_cdtor_priority_section (int priority, bool constructor_p)
1558 /* Buffer conservatively large enough for the full range of a 32-bit
1559 int plus the text below. */
1560 char buf[18];
1562 /* ??? This only works reliably with the GNU linker. */
1563 sprintf (buf, "%s.%.5u",
1564 constructor_p ? ".ctors" : ".dtors",
1565 /* Invert the numbering so the linker puts us in the proper
1566 order; constructors are run from right to left, and the
1567 linker sorts in increasing order. */
1568 MAX_INIT_PRIORITY - priority);
1569 return get_section (buf, SECTION_WRITE, NULL);
1572 void
1573 default_named_section_asm_out_destructor (rtx symbol, int priority)
1575 section *sec;
1577 if (priority != DEFAULT_INIT_PRIORITY)
1578 sec = get_cdtor_priority_section (priority,
1579 /*constructor_p=*/false);
1580 else
1581 sec = get_section (".dtors", SECTION_WRITE, NULL);
1583 assemble_addr_to_section (symbol, sec);
1586 #ifdef DTORS_SECTION_ASM_OP
1587 void
1588 default_dtor_section_asm_out_destructor (rtx symbol,
1589 int priority ATTRIBUTE_UNUSED)
1591 assemble_addr_to_section (symbol, dtors_section);
1593 #endif
1595 void
1596 default_named_section_asm_out_constructor (rtx symbol, int priority)
1598 section *sec;
1600 if (priority != DEFAULT_INIT_PRIORITY)
1601 sec = get_cdtor_priority_section (priority,
1602 /*constructor_p=*/true);
1603 else
1604 sec = get_section (".ctors", SECTION_WRITE, NULL);
1606 assemble_addr_to_section (symbol, sec);
1609 #ifdef CTORS_SECTION_ASM_OP
1610 void
1611 default_ctor_section_asm_out_constructor (rtx symbol,
1612 int priority ATTRIBUTE_UNUSED)
1614 assemble_addr_to_section (symbol, ctors_section);
1616 #endif
1618 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1619 a nonzero value if the constant pool should be output before the
1620 start of the function, or a zero value if the pool should output
1621 after the end of the function. The default is to put it before the
1622 start. */
1624 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1625 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1626 #endif
1628 /* DECL is an object (either VAR_DECL or FUNCTION_DECL) which is going
1629 to be output to assembler.
1630 Set first_global_object_name and weak_global_object_name as appropriate. */
1632 void
1633 notice_global_symbol (tree decl)
1635 const char **t = &first_global_object_name;
1637 if (first_global_object_name
1638 || !TREE_PUBLIC (decl)
1639 || DECL_EXTERNAL (decl)
1640 || !DECL_NAME (decl)
1641 || (VAR_P (decl) && DECL_HARD_REGISTER (decl))
1642 || (TREE_CODE (decl) != FUNCTION_DECL
1643 && (!VAR_P (decl)
1644 || (DECL_COMMON (decl)
1645 && (DECL_INITIAL (decl) == 0
1646 || DECL_INITIAL (decl) == error_mark_node)))))
1647 return;
1649 /* We win when global object is found, but it is useful to know about weak
1650 symbol as well so we can produce nicer unique names. */
1651 if (DECL_WEAK (decl) || DECL_ONE_ONLY (decl) || flag_shlib)
1652 t = &weak_global_object_name;
1654 if (!*t)
1656 tree id = DECL_ASSEMBLER_NAME (decl);
1657 ultimate_transparent_alias_target (&id);
1658 *t = ggc_strdup (targetm.strip_name_encoding (IDENTIFIER_POINTER (id)));
1662 /* If not using flag_reorder_blocks_and_partition, decide early whether the
1663 current function goes into the cold section, so that targets can use
1664 current_function_section during RTL expansion. DECL describes the
1665 function. */
1667 void
1668 decide_function_section (tree decl)
1670 first_function_block_is_cold = false;
1672 if (flag_reorder_blocks_and_partition)
1673 /* We will decide in assemble_start_function. */
1674 return;
1676 if (DECL_SECTION_NAME (decl))
1678 struct cgraph_node *node = cgraph_node::get (current_function_decl);
1679 /* Calls to function_section rely on first_function_block_is_cold
1680 being accurate. */
1681 first_function_block_is_cold = (node
1682 && node->frequency
1683 == NODE_FREQUENCY_UNLIKELY_EXECUTED);
1686 in_cold_section_p = first_function_block_is_cold;
1689 /* Get the function's name, as described by its RTL. This may be
1690 different from the DECL_NAME name used in the source file. */
1691 const char *
1692 get_fnname_from_decl (tree decl)
1694 rtx x = DECL_RTL (decl);
1695 gcc_assert (MEM_P (x));
1696 x = XEXP (x, 0);
1697 gcc_assert (GET_CODE (x) == SYMBOL_REF);
1698 return XSTR (x, 0);
1701 /* Output assembler code for the constant pool of a function and associated
1702 with defining the name of the function. DECL describes the function.
1703 NAME is the function's name. For the constant pool, we use the current
1704 constant pool data. */
1706 void
1707 assemble_start_function (tree decl, const char *fnname)
1709 int align;
1710 char tmp_label[100];
1711 bool hot_label_written = false;
1713 if (flag_reorder_blocks_and_partition)
1715 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LHOTB", const_labelno);
1716 crtl->subsections.hot_section_label = ggc_strdup (tmp_label);
1717 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LCOLDB", const_labelno);
1718 crtl->subsections.cold_section_label = ggc_strdup (tmp_label);
1719 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LHOTE", const_labelno);
1720 crtl->subsections.hot_section_end_label = ggc_strdup (tmp_label);
1721 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LCOLDE", const_labelno);
1722 crtl->subsections.cold_section_end_label = ggc_strdup (tmp_label);
1723 const_labelno++;
1724 cold_function_name = NULL_TREE;
1726 else
1728 crtl->subsections.hot_section_label = NULL;
1729 crtl->subsections.cold_section_label = NULL;
1730 crtl->subsections.hot_section_end_label = NULL;
1731 crtl->subsections.cold_section_end_label = NULL;
1734 /* The following code does not need preprocessing in the assembler. */
1736 app_disable ();
1738 if (CONSTANT_POOL_BEFORE_FUNCTION)
1739 output_constant_pool (fnname, decl);
1741 align = symtab_node::get (decl)->definition_alignment ();
1743 /* Make sure the not and cold text (code) sections are properly
1744 aligned. This is necessary here in the case where the function
1745 has both hot and cold sections, because we don't want to re-set
1746 the alignment when the section switch happens mid-function. */
1748 if (flag_reorder_blocks_and_partition)
1750 first_function_block_is_cold = false;
1752 switch_to_section (unlikely_text_section ());
1753 assemble_align (align);
1754 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.cold_section_label);
1756 /* When the function starts with a cold section, we need to explicitly
1757 align the hot section and write out the hot section label.
1758 But if the current function is a thunk, we do not have a CFG. */
1759 if (!cfun->is_thunk
1760 && BB_PARTITION (ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb) == BB_COLD_PARTITION)
1762 switch_to_section (text_section);
1763 assemble_align (align);
1764 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.hot_section_label);
1765 hot_label_written = true;
1766 first_function_block_is_cold = true;
1768 in_cold_section_p = first_function_block_is_cold;
1772 /* Switch to the correct text section for the start of the function. */
1774 switch_to_section (function_section (decl));
1775 if (flag_reorder_blocks_and_partition
1776 && !hot_label_written)
1777 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.hot_section_label);
1779 /* Tell assembler to move to target machine's alignment for functions. */
1780 align = floor_log2 (align / BITS_PER_UNIT);
1781 if (align > 0)
1783 ASM_OUTPUT_ALIGN (asm_out_file, align);
1786 /* Handle a user-specified function alignment.
1787 Note that we still need to align to DECL_ALIGN, as above,
1788 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1789 if (! DECL_USER_ALIGN (decl)
1790 && align_functions_log > align
1791 && optimize_function_for_speed_p (cfun))
1793 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1794 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file,
1795 align_functions_log, align_functions - 1);
1796 #else
1797 ASM_OUTPUT_ALIGN (asm_out_file, align_functions_log);
1798 #endif
1801 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1802 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file, fnname);
1803 #endif
1805 if (!DECL_IGNORED_P (decl))
1806 (*debug_hooks->begin_function) (decl);
1808 /* Make function name accessible from other files, if appropriate. */
1810 if (TREE_PUBLIC (decl)
1811 || (cgraph_node::get (decl)->instrumentation_clone
1812 && cgraph_node::get (decl)->instrumented_version
1813 && TREE_PUBLIC (cgraph_node::get (decl)->instrumented_version->decl)))
1815 notice_global_symbol (decl);
1817 globalize_decl (decl);
1819 maybe_assemble_visibility (decl);
1822 if (DECL_PRESERVE_P (decl))
1823 targetm.asm_out.mark_decl_preserved (fnname);
1825 /* Do any machine/system dependent processing of the function name. */
1826 #ifdef ASM_DECLARE_FUNCTION_NAME
1827 ASM_DECLARE_FUNCTION_NAME (asm_out_file, fnname, current_function_decl);
1828 #else
1829 /* Standard thing is just output label for the function. */
1830 ASM_OUTPUT_FUNCTION_LABEL (asm_out_file, fnname, current_function_decl);
1831 #endif /* ASM_DECLARE_FUNCTION_NAME */
1833 if (lookup_attribute ("no_split_stack", DECL_ATTRIBUTES (decl)))
1834 saw_no_split_stack = true;
1837 /* Output assembler code associated with defining the size of the
1838 function. DECL describes the function. NAME is the function's name. */
1840 void
1841 assemble_end_function (tree decl, const char *fnname ATTRIBUTE_UNUSED)
1843 #ifdef ASM_DECLARE_FUNCTION_SIZE
1844 /* We could have switched section in the middle of the function. */
1845 if (flag_reorder_blocks_and_partition)
1846 switch_to_section (function_section (decl));
1847 ASM_DECLARE_FUNCTION_SIZE (asm_out_file, fnname, decl);
1848 #endif
1849 if (! CONSTANT_POOL_BEFORE_FUNCTION)
1851 output_constant_pool (fnname, decl);
1852 switch_to_section (function_section (decl)); /* need to switch back */
1854 /* Output labels for end of hot/cold text sections (to be used by
1855 debug info.) */
1856 if (flag_reorder_blocks_and_partition)
1858 section *save_text_section;
1860 save_text_section = in_section;
1861 switch_to_section (unlikely_text_section ());
1862 #ifdef ASM_DECLARE_COLD_FUNCTION_SIZE
1863 if (cold_function_name != NULL_TREE)
1864 ASM_DECLARE_COLD_FUNCTION_SIZE (asm_out_file,
1865 IDENTIFIER_POINTER (cold_function_name),
1866 decl);
1867 #endif
1868 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.cold_section_end_label);
1869 if (first_function_block_is_cold)
1870 switch_to_section (text_section);
1871 else
1872 switch_to_section (function_section (decl));
1873 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.hot_section_end_label);
1874 switch_to_section (save_text_section);
1878 /* Assemble code to leave SIZE bytes of zeros. */
1880 void
1881 assemble_zeros (unsigned HOST_WIDE_INT size)
1883 /* Do no output if -fsyntax-only. */
1884 if (flag_syntax_only)
1885 return;
1887 #ifdef ASM_NO_SKIP_IN_TEXT
1888 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1889 so we must output 0s explicitly in the text section. */
1890 if (ASM_NO_SKIP_IN_TEXT && (in_section->common.flags & SECTION_CODE) != 0)
1892 unsigned HOST_WIDE_INT i;
1893 for (i = 0; i < size; i++)
1894 assemble_integer (const0_rtx, 1, BITS_PER_UNIT, 1);
1896 else
1897 #endif
1898 if (size > 0)
1899 ASM_OUTPUT_SKIP (asm_out_file, size);
1902 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1904 void
1905 assemble_align (int align)
1907 if (align > BITS_PER_UNIT)
1909 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
1913 /* Assemble a string constant with the specified C string as contents. */
1915 void
1916 assemble_string (const char *p, int size)
1918 int pos = 0;
1919 int maximum = 2000;
1921 /* If the string is very long, split it up. */
1923 while (pos < size)
1925 int thissize = size - pos;
1926 if (thissize > maximum)
1927 thissize = maximum;
1929 ASM_OUTPUT_ASCII (asm_out_file, p, thissize);
1931 pos += thissize;
1932 p += thissize;
1937 /* A noswitch_section_callback for lcomm_section. */
1939 static bool
1940 emit_local (tree decl ATTRIBUTE_UNUSED,
1941 const char *name ATTRIBUTE_UNUSED,
1942 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1943 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1945 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1946 unsigned int align = symtab_node::get (decl)->definition_alignment ();
1947 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name,
1948 size, align);
1949 return true;
1950 #elif defined ASM_OUTPUT_ALIGNED_LOCAL
1951 unsigned int align = symtab_node::get (decl)->definition_alignment ();
1952 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, align);
1953 return true;
1954 #else
1955 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
1956 return false;
1957 #endif
1960 /* A noswitch_section_callback for bss_noswitch_section. */
1962 #if defined ASM_OUTPUT_ALIGNED_BSS
1963 static bool
1964 emit_bss (tree decl ATTRIBUTE_UNUSED,
1965 const char *name ATTRIBUTE_UNUSED,
1966 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1967 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1969 ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size,
1970 get_variable_align (decl));
1971 return true;
1973 #endif
1975 /* A noswitch_section_callback for comm_section. */
1977 static bool
1978 emit_common (tree decl ATTRIBUTE_UNUSED,
1979 const char *name ATTRIBUTE_UNUSED,
1980 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1981 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1983 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1984 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name,
1985 size, get_variable_align (decl));
1986 return true;
1987 #elif defined ASM_OUTPUT_ALIGNED_COMMON
1988 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size,
1989 get_variable_align (decl));
1990 return true;
1991 #else
1992 ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded);
1993 return false;
1994 #endif
1997 /* A noswitch_section_callback for tls_comm_section. */
1999 static bool
2000 emit_tls_common (tree decl ATTRIBUTE_UNUSED,
2001 const char *name ATTRIBUTE_UNUSED,
2002 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
2003 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
2005 #ifdef ASM_OUTPUT_TLS_COMMON
2006 ASM_OUTPUT_TLS_COMMON (asm_out_file, decl, name, size);
2007 return true;
2008 #else
2009 sorry ("thread-local COMMON data not implemented");
2010 return true;
2011 #endif
2014 /* Assemble DECL given that it belongs in SECTION_NOSWITCH section SECT.
2015 NAME is the name of DECL's SYMBOL_REF. */
2017 static void
2018 assemble_noswitch_variable (tree decl, const char *name, section *sect,
2019 unsigned int align)
2021 unsigned HOST_WIDE_INT size, rounded;
2023 size = tree_to_uhwi (DECL_SIZE_UNIT (decl));
2024 rounded = size;
2026 if ((flag_sanitize & SANITIZE_ADDRESS) && asan_protect_global (decl))
2027 size += asan_red_zone_size (size);
2029 /* Don't allocate zero bytes of common,
2030 since that means "undefined external" in the linker. */
2031 if (size == 0)
2032 rounded = 1;
2034 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2035 so that each uninitialized object starts on such a boundary. */
2036 rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
2037 rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
2038 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
2040 if (!sect->noswitch.callback (decl, name, size, rounded)
2041 && (unsigned HOST_WIDE_INT) (align / BITS_PER_UNIT) > rounded)
2042 error ("requested alignment for %q+D is greater than "
2043 "implemented alignment of %wu", decl, rounded);
2046 /* A subroutine of assemble_variable. Output the label and contents of
2047 DECL, whose address is a SYMBOL_REF with name NAME. DONT_OUTPUT_DATA
2048 is as for assemble_variable. */
2050 static void
2051 assemble_variable_contents (tree decl, const char *name,
2052 bool dont_output_data)
2054 /* Do any machine/system dependent processing of the object. */
2055 #ifdef ASM_DECLARE_OBJECT_NAME
2056 last_assemble_variable_decl = decl;
2057 ASM_DECLARE_OBJECT_NAME (asm_out_file, name, decl);
2058 #else
2059 /* Standard thing is just output label for the object. */
2060 ASM_OUTPUT_LABEL (asm_out_file, name);
2061 #endif /* ASM_DECLARE_OBJECT_NAME */
2063 if (!dont_output_data)
2065 /* Caller is supposed to use varpool_get_constructor when it wants
2066 to output the body. */
2067 gcc_assert (!in_lto_p || DECL_INITIAL (decl) != error_mark_node);
2068 if (DECL_INITIAL (decl)
2069 && DECL_INITIAL (decl) != error_mark_node
2070 && !initializer_zerop (DECL_INITIAL (decl)))
2071 /* Output the actual data. */
2072 output_constant (DECL_INITIAL (decl),
2073 tree_to_uhwi (DECL_SIZE_UNIT (decl)),
2074 get_variable_align (decl),
2075 false);
2076 else
2077 /* Leave space for it. */
2078 assemble_zeros (tree_to_uhwi (DECL_SIZE_UNIT (decl)));
2079 targetm.asm_out.decl_end ();
2083 /* Write out assembly for the variable DECL, which is not defined in
2084 the current translation unit. */
2085 void
2086 assemble_undefined_decl (tree decl)
2088 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
2089 targetm.asm_out.assemble_undefined_decl (asm_out_file, name, decl);
2092 /* Assemble everything that is needed for a variable or function declaration.
2093 Not used for automatic variables, and not used for function definitions.
2094 Should not be called for variables of incomplete structure type.
2096 TOP_LEVEL is nonzero if this variable has file scope.
2097 AT_END is nonzero if this is the special handling, at end of compilation,
2098 to define things that have had only tentative definitions.
2099 DONT_OUTPUT_DATA if nonzero means don't actually output the
2100 initial value (that will be done by the caller). */
2102 void
2103 assemble_variable (tree decl, int top_level ATTRIBUTE_UNUSED,
2104 int at_end ATTRIBUTE_UNUSED, int dont_output_data)
2106 const char *name;
2107 rtx decl_rtl, symbol;
2108 section *sect;
2109 unsigned int align;
2110 bool asan_protected = false;
2112 /* This function is supposed to handle VARIABLES. Ensure we have one. */
2113 gcc_assert (VAR_P (decl));
2115 /* Emulated TLS had better not get this far. */
2116 gcc_checking_assert (targetm.have_tls || !DECL_THREAD_LOCAL_P (decl));
2118 last_assemble_variable_decl = 0;
2120 /* Normally no need to say anything here for external references,
2121 since assemble_external is called by the language-specific code
2122 when a declaration is first seen. */
2124 if (DECL_EXTERNAL (decl))
2125 return;
2127 /* Do nothing for global register variables. */
2128 if (DECL_RTL_SET_P (decl) && REG_P (DECL_RTL (decl)))
2130 TREE_ASM_WRITTEN (decl) = 1;
2131 return;
2134 /* If type was incomplete when the variable was declared,
2135 see if it is complete now. */
2137 if (DECL_SIZE (decl) == 0)
2138 layout_decl (decl, 0);
2140 /* Still incomplete => don't allocate it; treat the tentative defn
2141 (which is what it must have been) as an `extern' reference. */
2143 if (!dont_output_data && DECL_SIZE (decl) == 0)
2145 error ("storage size of %q+D isn%'t known", decl);
2146 TREE_ASM_WRITTEN (decl) = 1;
2147 return;
2150 /* The first declaration of a variable that comes through this function
2151 decides whether it is global (in C, has external linkage)
2152 or local (in C, has internal linkage). So do nothing more
2153 if this function has already run. */
2155 if (TREE_ASM_WRITTEN (decl))
2156 return;
2158 /* Make sure targetm.encode_section_info is invoked before we set
2159 ASM_WRITTEN. */
2160 decl_rtl = DECL_RTL (decl);
2162 TREE_ASM_WRITTEN (decl) = 1;
2164 /* Do no output if -fsyntax-only. */
2165 if (flag_syntax_only)
2166 return;
2168 if (! dont_output_data
2169 && ! valid_constant_size_p (DECL_SIZE_UNIT (decl)))
2171 error ("size of variable %q+D is too large", decl);
2172 return;
2175 gcc_assert (MEM_P (decl_rtl));
2176 gcc_assert (GET_CODE (XEXP (decl_rtl, 0)) == SYMBOL_REF);
2177 symbol = XEXP (decl_rtl, 0);
2179 /* If this symbol belongs to the tree constant pool, output the constant
2180 if it hasn't already been written. */
2181 if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
2183 tree decl = SYMBOL_REF_DECL (symbol);
2184 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl)))
2185 output_constant_def_contents (symbol);
2186 return;
2189 app_disable ();
2191 name = XSTR (symbol, 0);
2192 if (TREE_PUBLIC (decl) && DECL_NAME (decl))
2193 notice_global_symbol (decl);
2195 /* Compute the alignment of this data. */
2197 align_variable (decl, dont_output_data);
2199 if ((flag_sanitize & SANITIZE_ADDRESS)
2200 && asan_protect_global (decl))
2202 asan_protected = true;
2203 SET_DECL_ALIGN (decl, MAX (DECL_ALIGN (decl),
2204 ASAN_RED_ZONE_SIZE * BITS_PER_UNIT));
2207 set_mem_align (decl_rtl, DECL_ALIGN (decl));
2209 align = get_variable_align (decl);
2211 if (TREE_PUBLIC (decl))
2212 maybe_assemble_visibility (decl);
2214 if (DECL_PRESERVE_P (decl))
2215 targetm.asm_out.mark_decl_preserved (name);
2217 /* First make the assembler name(s) global if appropriate. */
2218 sect = get_variable_section (decl, false);
2219 if (TREE_PUBLIC (decl)
2220 && (sect->common.flags & SECTION_COMMON) == 0)
2221 globalize_decl (decl);
2223 /* Output any data that we will need to use the address of. */
2224 if (DECL_INITIAL (decl) && DECL_INITIAL (decl) != error_mark_node)
2225 output_addressed_constants (DECL_INITIAL (decl));
2227 /* dbxout.c needs to know this. */
2228 if (sect && (sect->common.flags & SECTION_CODE) != 0)
2229 DECL_IN_TEXT_SECTION (decl) = 1;
2231 /* If the decl is part of an object_block, make sure that the decl
2232 has been positioned within its block, but do not write out its
2233 definition yet. output_object_blocks will do that later. */
2234 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol) && SYMBOL_REF_BLOCK (symbol))
2236 gcc_assert (!dont_output_data);
2237 place_block_symbol (symbol);
2239 else if (SECTION_STYLE (sect) == SECTION_NOSWITCH)
2240 assemble_noswitch_variable (decl, name, sect, align);
2241 else
2243 /* Special-case handling of vtv comdat sections. */
2244 if (sect->named.name
2245 && (strcmp (sect->named.name, ".vtable_map_vars") == 0))
2246 handle_vtv_comdat_section (sect, decl);
2247 else
2248 switch_to_section (sect);
2249 if (align > BITS_PER_UNIT)
2250 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
2251 assemble_variable_contents (decl, name, dont_output_data);
2252 if (asan_protected)
2254 unsigned HOST_WIDE_INT int size
2255 = tree_to_uhwi (DECL_SIZE_UNIT (decl));
2256 assemble_zeros (asan_red_zone_size (size));
2262 /* Given a function declaration (FN_DECL), this function assembles the
2263 function into the .preinit_array section. */
2265 void
2266 assemble_vtv_preinit_initializer (tree fn_decl)
2268 section *sect;
2269 unsigned flags = SECTION_WRITE;
2270 rtx symbol = XEXP (DECL_RTL (fn_decl), 0);
2272 flags |= SECTION_NOTYPE;
2273 sect = get_section (".preinit_array", flags, fn_decl);
2274 switch_to_section (sect);
2275 assemble_addr_to_section (symbol, sect);
2278 /* Return 1 if type TYPE contains any pointers. */
2280 static int
2281 contains_pointers_p (tree type)
2283 switch (TREE_CODE (type))
2285 case POINTER_TYPE:
2286 case REFERENCE_TYPE:
2287 /* I'm not sure whether OFFSET_TYPE needs this treatment,
2288 so I'll play safe and return 1. */
2289 case OFFSET_TYPE:
2290 return 1;
2292 case RECORD_TYPE:
2293 case UNION_TYPE:
2294 case QUAL_UNION_TYPE:
2296 tree fields;
2297 /* For a type that has fields, see if the fields have pointers. */
2298 for (fields = TYPE_FIELDS (type); fields; fields = DECL_CHAIN (fields))
2299 if (TREE_CODE (fields) == FIELD_DECL
2300 && contains_pointers_p (TREE_TYPE (fields)))
2301 return 1;
2302 return 0;
2305 case ARRAY_TYPE:
2306 /* An array type contains pointers if its element type does. */
2307 return contains_pointers_p (TREE_TYPE (type));
2309 default:
2310 return 0;
2314 /* We delay assemble_external processing until
2315 the compilation unit is finalized. This is the best we can do for
2316 right now (i.e. stage 3 of GCC 4.0) - the right thing is to delay
2317 it all the way to final. See PR 17982 for further discussion. */
2318 static GTY(()) tree pending_assemble_externals;
2320 #ifdef ASM_OUTPUT_EXTERNAL
2321 /* Some targets delay some output to final using TARGET_ASM_FILE_END.
2322 As a result, assemble_external can be called after the list of externals
2323 is processed and the pointer set destroyed. */
2324 static bool pending_assemble_externals_processed;
2326 /* Avoid O(external_decls**2) lookups in the pending_assemble_externals
2327 TREE_LIST in assemble_external. */
2328 static hash_set<tree> *pending_assemble_externals_set;
2330 /* True if DECL is a function decl for which no out-of-line copy exists.
2331 It is assumed that DECL's assembler name has been set. */
2333 static bool
2334 incorporeal_function_p (tree decl)
2336 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
2338 const char *name;
2340 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
2341 && (DECL_FUNCTION_CODE (decl) == BUILT_IN_ALLOCA
2342 || DECL_FUNCTION_CODE (decl) == BUILT_IN_ALLOCA_WITH_ALIGN))
2343 return true;
2345 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2346 /* Atomic or sync builtins which have survived this far will be
2347 resolved externally and therefore are not incorporeal. */
2348 if (strncmp (name, "__builtin_", 10) == 0)
2349 return true;
2351 return false;
2354 /* Actually do the tests to determine if this is necessary, and invoke
2355 ASM_OUTPUT_EXTERNAL. */
2356 static void
2357 assemble_external_real (tree decl)
2359 rtx rtl = DECL_RTL (decl);
2361 if (MEM_P (rtl) && GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF
2362 && !SYMBOL_REF_USED (XEXP (rtl, 0))
2363 && !incorporeal_function_p (decl))
2365 /* Some systems do require some output. */
2366 SYMBOL_REF_USED (XEXP (rtl, 0)) = 1;
2367 ASM_OUTPUT_EXTERNAL (asm_out_file, decl, XSTR (XEXP (rtl, 0), 0));
2370 #endif
2372 void
2373 process_pending_assemble_externals (void)
2375 #ifdef ASM_OUTPUT_EXTERNAL
2376 tree list;
2377 for (list = pending_assemble_externals; list; list = TREE_CHAIN (list))
2378 assemble_external_real (TREE_VALUE (list));
2380 pending_assemble_externals = 0;
2381 pending_assemble_externals_processed = true;
2382 delete pending_assemble_externals_set;
2383 #endif
2386 /* This TREE_LIST contains any weak symbol declarations waiting
2387 to be emitted. */
2388 static GTY(()) tree weak_decls;
2390 /* Output something to declare an external symbol to the assembler,
2391 and qualifiers such as weakness. (Most assemblers don't need
2392 extern declaration, so we normally output nothing.) Do nothing if
2393 DECL is not external. */
2395 void
2396 assemble_external (tree decl ATTRIBUTE_UNUSED)
2398 /* Make sure that the ASM_OUT_FILE is open.
2399 If it's not, we should not be calling this function. */
2400 gcc_assert (asm_out_file);
2402 /* In a perfect world, the following condition would be true.
2403 Sadly, the Java and Go front ends emit assembly *from the front end*,
2404 bypassing the call graph. See PR52739. Fix before GCC 4.8. */
2405 #if 0
2406 /* This function should only be called if we are expanding, or have
2407 expanded, to RTL.
2408 Ideally, only final.c would be calling this function, but it is
2409 not clear whether that would break things somehow. See PR 17982
2410 for further discussion. */
2411 gcc_assert (state == EXPANSION
2412 || state == FINISHED);
2413 #endif
2415 if (!DECL_P (decl) || !DECL_EXTERNAL (decl) || !TREE_PUBLIC (decl))
2416 return;
2418 /* We want to output annotation for weak and external symbols at
2419 very last to check if they are references or not. */
2421 if (TARGET_SUPPORTS_WEAK
2422 && DECL_WEAK (decl)
2423 /* TREE_STATIC is a weird and abused creature which is not
2424 generally the right test for whether an entity has been
2425 locally emitted, inlined or otherwise not-really-extern, but
2426 for declarations that can be weak, it happens to be
2427 match. */
2428 && !TREE_STATIC (decl)
2429 && lookup_attribute ("weak", DECL_ATTRIBUTES (decl))
2430 && value_member (decl, weak_decls) == NULL_TREE)
2431 weak_decls = tree_cons (NULL, decl, weak_decls);
2433 #ifdef ASM_OUTPUT_EXTERNAL
2434 if (pending_assemble_externals_processed)
2436 assemble_external_real (decl);
2437 return;
2440 if (! pending_assemble_externals_set->add (decl))
2441 pending_assemble_externals = tree_cons (NULL, decl,
2442 pending_assemble_externals);
2443 #endif
2446 /* Similar, for calling a library function FUN. */
2448 void
2449 assemble_external_libcall (rtx fun)
2451 /* Declare library function name external when first used, if nec. */
2452 if (! SYMBOL_REF_USED (fun))
2454 SYMBOL_REF_USED (fun) = 1;
2455 targetm.asm_out.external_libcall (fun);
2459 /* Assemble a label named NAME. */
2461 void
2462 assemble_label (FILE *file, const char *name)
2464 ASM_OUTPUT_LABEL (file, name);
2467 /* Set the symbol_referenced flag for ID. */
2468 void
2469 mark_referenced (tree id)
2471 TREE_SYMBOL_REFERENCED (id) = 1;
2474 /* Set the symbol_referenced flag for DECL and notify callgraph. */
2475 void
2476 mark_decl_referenced (tree decl)
2478 if (TREE_CODE (decl) == FUNCTION_DECL)
2480 /* Extern inline functions don't become needed when referenced.
2481 If we know a method will be emitted in other TU and no new
2482 functions can be marked reachable, just use the external
2483 definition. */
2484 struct cgraph_node *node = cgraph_node::get_create (decl);
2485 if (!DECL_EXTERNAL (decl)
2486 && !node->definition)
2487 node->mark_force_output ();
2489 else if (VAR_P (decl))
2491 varpool_node *node = varpool_node::get_create (decl);
2492 /* C++ frontend use mark_decl_references to force COMDAT variables
2493 to be output that might appear dead otherwise. */
2494 node->force_output = true;
2496 /* else do nothing - we can get various sorts of CST nodes here,
2497 which do not need to be marked. */
2501 /* Output to FILE (an assembly file) a reference to NAME. If NAME
2502 starts with a *, the rest of NAME is output verbatim. Otherwise
2503 NAME is transformed in a target-specific way (usually by the
2504 addition of an underscore). */
2506 void
2507 assemble_name_raw (FILE *file, const char *name)
2509 if (name[0] == '*')
2510 fputs (&name[1], file);
2511 else
2512 ASM_OUTPUT_LABELREF (file, name);
2515 /* Like assemble_name_raw, but should be used when NAME might refer to
2516 an entity that is also represented as a tree (like a function or
2517 variable). If NAME does refer to such an entity, that entity will
2518 be marked as referenced. */
2520 void
2521 assemble_name (FILE *file, const char *name)
2523 const char *real_name;
2524 tree id;
2526 real_name = targetm.strip_name_encoding (name);
2528 id = maybe_get_identifier (real_name);
2529 if (id)
2531 tree id_orig = id;
2533 mark_referenced (id);
2534 ultimate_transparent_alias_target (&id);
2535 if (id != id_orig)
2536 name = IDENTIFIER_POINTER (id);
2537 gcc_assert (! TREE_CHAIN (id));
2540 assemble_name_raw (file, name);
2543 /* Allocate SIZE bytes writable static space with a gensym name
2544 and return an RTX to refer to its address. */
2547 assemble_static_space (unsigned HOST_WIDE_INT size)
2549 char name[16];
2550 const char *namestring;
2551 rtx x;
2553 ASM_GENERATE_INTERNAL_LABEL (name, "LF", const_labelno);
2554 ++const_labelno;
2555 namestring = ggc_strdup (name);
2557 x = gen_rtx_SYMBOL_REF (Pmode, namestring);
2558 SYMBOL_REF_FLAGS (x) = SYMBOL_FLAG_LOCAL;
2560 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
2561 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name, size,
2562 BIGGEST_ALIGNMENT);
2563 #else
2564 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
2565 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, BIGGEST_ALIGNMENT);
2566 #else
2568 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2569 so that each uninitialized object starts on such a boundary. */
2570 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
2571 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
2572 = ((size + (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1)
2573 / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
2574 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
2575 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
2577 #endif
2578 #endif
2579 return x;
2582 /* Assemble the static constant template for function entry trampolines.
2583 This is done at most once per compilation.
2584 Returns an RTX for the address of the template. */
2586 static GTY(()) rtx initial_trampoline;
2589 assemble_trampoline_template (void)
2591 char label[256];
2592 const char *name;
2593 int align;
2594 rtx symbol;
2596 gcc_assert (targetm.asm_out.trampoline_template != NULL);
2598 if (initial_trampoline)
2599 return initial_trampoline;
2601 /* By default, put trampoline templates in read-only data section. */
2603 #ifdef TRAMPOLINE_SECTION
2604 switch_to_section (TRAMPOLINE_SECTION);
2605 #else
2606 switch_to_section (readonly_data_section);
2607 #endif
2609 /* Write the assembler code to define one. */
2610 align = floor_log2 (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT);
2611 if (align > 0)
2612 ASM_OUTPUT_ALIGN (asm_out_file, align);
2614 targetm.asm_out.internal_label (asm_out_file, "LTRAMP", 0);
2615 targetm.asm_out.trampoline_template (asm_out_file);
2617 /* Record the rtl to refer to it. */
2618 ASM_GENERATE_INTERNAL_LABEL (label, "LTRAMP", 0);
2619 name = ggc_strdup (label);
2620 symbol = gen_rtx_SYMBOL_REF (Pmode, name);
2621 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
2623 initial_trampoline = gen_const_mem (BLKmode, symbol);
2624 set_mem_align (initial_trampoline, TRAMPOLINE_ALIGNMENT);
2625 set_mem_size (initial_trampoline, TRAMPOLINE_SIZE);
2627 return initial_trampoline;
2630 /* A and B are either alignments or offsets. Return the minimum alignment
2631 that may be assumed after adding the two together. */
2633 static inline unsigned
2634 min_align (unsigned int a, unsigned int b)
2636 return least_bit_hwi (a | b);
2639 /* Return the assembler directive for creating a given kind of integer
2640 object. SIZE is the number of bytes in the object and ALIGNED_P
2641 indicates whether it is known to be aligned. Return NULL if the
2642 assembly dialect has no such directive.
2644 The returned string should be printed at the start of a new line and
2645 be followed immediately by the object's initial value. */
2647 const char *
2648 integer_asm_op (int size, int aligned_p)
2650 struct asm_int_op *ops;
2652 if (aligned_p)
2653 ops = &targetm.asm_out.aligned_op;
2654 else
2655 ops = &targetm.asm_out.unaligned_op;
2657 switch (size)
2659 case 1:
2660 return targetm.asm_out.byte_op;
2661 case 2:
2662 return ops->hi;
2663 case 4:
2664 return ops->si;
2665 case 8:
2666 return ops->di;
2667 case 16:
2668 return ops->ti;
2669 default:
2670 return NULL;
2674 /* Use directive OP to assemble an integer object X. Print OP at the
2675 start of the line, followed immediately by the value of X. */
2677 void
2678 assemble_integer_with_op (const char *op, rtx x)
2680 fputs (op, asm_out_file);
2681 output_addr_const (asm_out_file, x);
2682 fputc ('\n', asm_out_file);
2685 /* The default implementation of the asm_out.integer target hook. */
2687 bool
2688 default_assemble_integer (rtx x ATTRIBUTE_UNUSED,
2689 unsigned int size ATTRIBUTE_UNUSED,
2690 int aligned_p ATTRIBUTE_UNUSED)
2692 const char *op = integer_asm_op (size, aligned_p);
2693 /* Avoid GAS bugs for large values. Specifically negative values whose
2694 absolute value fits in a bfd_vma, but not in a bfd_signed_vma. */
2695 if (size > UNITS_PER_WORD && size > POINTER_SIZE_UNITS)
2696 return false;
2697 return op && (assemble_integer_with_op (op, x), true);
2700 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
2701 the alignment of the integer in bits. Return 1 if we were able to output
2702 the constant, otherwise 0. We must be able to output the constant,
2703 if FORCE is nonzero. */
2705 bool
2706 assemble_integer (rtx x, unsigned int size, unsigned int align, int force)
2708 int aligned_p;
2710 aligned_p = (align >= MIN (size * BITS_PER_UNIT, BIGGEST_ALIGNMENT));
2712 /* See if the target hook can handle this kind of object. */
2713 if (targetm.asm_out.integer (x, size, aligned_p))
2714 return true;
2716 /* If the object is a multi-byte one, try splitting it up. Split
2717 it into words it if is multi-word, otherwise split it into bytes. */
2718 if (size > 1)
2720 machine_mode omode, imode;
2721 unsigned int subalign;
2722 unsigned int subsize, i;
2723 enum mode_class mclass;
2725 subsize = size > UNITS_PER_WORD? UNITS_PER_WORD : 1;
2726 subalign = MIN (align, subsize * BITS_PER_UNIT);
2727 if (GET_CODE (x) == CONST_FIXED)
2728 mclass = GET_MODE_CLASS (GET_MODE (x));
2729 else
2730 mclass = MODE_INT;
2732 omode = mode_for_size (subsize * BITS_PER_UNIT, mclass, 0);
2733 imode = mode_for_size (size * BITS_PER_UNIT, mclass, 0);
2735 for (i = 0; i < size; i += subsize)
2737 rtx partial = simplify_subreg (omode, x, imode, i);
2738 if (!partial || !assemble_integer (partial, subsize, subalign, 0))
2739 break;
2741 if (i == size)
2742 return true;
2744 /* If we've printed some of it, but not all of it, there's no going
2745 back now. */
2746 gcc_assert (!i);
2749 gcc_assert (!force);
2751 return false;
2754 /* Assemble the floating-point constant D into an object of size MODE. ALIGN
2755 is the alignment of the constant in bits. If REVERSE is true, D is output
2756 in reverse storage order. */
2758 void
2759 assemble_real (REAL_VALUE_TYPE d, machine_mode mode, unsigned int align,
2760 bool reverse)
2762 long data[4] = {0, 0, 0, 0};
2763 int bitsize, nelts, nunits, units_per;
2764 rtx elt;
2766 /* This is hairy. We have a quantity of known size. real_to_target
2767 will put it into an array of *host* longs, 32 bits per element
2768 (even if long is more than 32 bits). We need to determine the
2769 number of array elements that are occupied (nelts) and the number
2770 of *target* min-addressable units that will be occupied in the
2771 object file (nunits). We cannot assume that 32 divides the
2772 mode's bitsize (size * BITS_PER_UNIT) evenly.
2774 size * BITS_PER_UNIT is used here to make sure that padding bits
2775 (which might appear at either end of the value; real_to_target
2776 will include the padding bits in its output array) are included. */
2778 nunits = GET_MODE_SIZE (mode);
2779 bitsize = nunits * BITS_PER_UNIT;
2780 nelts = CEIL (bitsize, 32);
2781 units_per = 32 / BITS_PER_UNIT;
2783 real_to_target (data, &d, mode);
2785 /* Put out the first word with the specified alignment. */
2786 if (reverse)
2787 elt = flip_storage_order (SImode, gen_int_mode (data[nelts - 1], SImode));
2788 else
2789 elt = GEN_INT (data[0]);
2790 assemble_integer (elt, MIN (nunits, units_per), align, 1);
2791 nunits -= units_per;
2793 /* Subsequent words need only 32-bit alignment. */
2794 align = min_align (align, 32);
2796 for (int i = 1; i < nelts; i++)
2798 if (reverse)
2799 elt = flip_storage_order (SImode,
2800 gen_int_mode (data[nelts - 1 - i], SImode));
2801 else
2802 elt = GEN_INT (data[i]);
2803 assemble_integer (elt, MIN (nunits, units_per), align, 1);
2804 nunits -= units_per;
2808 /* Given an expression EXP with a constant value,
2809 reduce it to the sum of an assembler symbol and an integer.
2810 Store them both in the structure *VALUE.
2811 EXP must be reducible. */
2813 struct addr_const {
2814 rtx base;
2815 HOST_WIDE_INT offset;
2818 static void
2819 decode_addr_const (tree exp, struct addr_const *value)
2821 tree target = TREE_OPERAND (exp, 0);
2822 int offset = 0;
2823 rtx x;
2825 while (1)
2827 if (TREE_CODE (target) == COMPONENT_REF
2828 && tree_fits_shwi_p (byte_position (TREE_OPERAND (target, 1))))
2830 offset += int_byte_position (TREE_OPERAND (target, 1));
2831 target = TREE_OPERAND (target, 0);
2833 else if (TREE_CODE (target) == ARRAY_REF
2834 || TREE_CODE (target) == ARRAY_RANGE_REF)
2836 offset += (tree_to_uhwi (TYPE_SIZE_UNIT (TREE_TYPE (target)))
2837 * tree_to_shwi (TREE_OPERAND (target, 1)));
2838 target = TREE_OPERAND (target, 0);
2840 else if (TREE_CODE (target) == MEM_REF
2841 && TREE_CODE (TREE_OPERAND (target, 0)) == ADDR_EXPR)
2843 offset += mem_ref_offset (target).to_short_addr ();
2844 target = TREE_OPERAND (TREE_OPERAND (target, 0), 0);
2846 else if (TREE_CODE (target) == INDIRECT_REF
2847 && TREE_CODE (TREE_OPERAND (target, 0)) == NOP_EXPR
2848 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (target, 0), 0))
2849 == ADDR_EXPR)
2850 target = TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (target, 0), 0), 0);
2851 else
2852 break;
2855 switch (TREE_CODE (target))
2857 case VAR_DECL:
2858 case FUNCTION_DECL:
2859 x = DECL_RTL (target);
2860 break;
2862 case LABEL_DECL:
2863 x = gen_rtx_MEM (FUNCTION_MODE,
2864 gen_rtx_LABEL_REF (Pmode, force_label_rtx (target)));
2865 break;
2867 case REAL_CST:
2868 case FIXED_CST:
2869 case STRING_CST:
2870 case COMPLEX_CST:
2871 case CONSTRUCTOR:
2872 case INTEGER_CST:
2873 x = output_constant_def (target, 1);
2874 break;
2876 default:
2877 gcc_unreachable ();
2880 gcc_assert (MEM_P (x));
2881 x = XEXP (x, 0);
2883 value->base = x;
2884 value->offset = offset;
2887 static GTY(()) hash_table<tree_descriptor_hasher> *const_desc_htab;
2889 static void maybe_output_constant_def_contents (struct constant_descriptor_tree *, int);
2891 /* Constant pool accessor function. */
2893 hash_table<tree_descriptor_hasher> *
2894 constant_pool_htab (void)
2896 return const_desc_htab;
2899 /* Compute a hash code for a constant expression. */
2901 hashval_t
2902 tree_descriptor_hasher::hash (constant_descriptor_tree *ptr)
2904 return ptr->hash;
2907 static hashval_t
2908 const_hash_1 (const tree exp)
2910 const char *p;
2911 hashval_t hi;
2912 int len, i;
2913 enum tree_code code = TREE_CODE (exp);
2915 /* Either set P and LEN to the address and len of something to hash and
2916 exit the switch or return a value. */
2918 switch (code)
2920 case INTEGER_CST:
2921 p = (char *) &TREE_INT_CST_ELT (exp, 0);
2922 len = TREE_INT_CST_NUNITS (exp) * sizeof (HOST_WIDE_INT);
2923 break;
2925 case REAL_CST:
2926 return real_hash (TREE_REAL_CST_PTR (exp));
2928 case FIXED_CST:
2929 return fixed_hash (TREE_FIXED_CST_PTR (exp));
2931 case STRING_CST:
2932 p = TREE_STRING_POINTER (exp);
2933 len = TREE_STRING_LENGTH (exp);
2934 break;
2936 case COMPLEX_CST:
2937 return (const_hash_1 (TREE_REALPART (exp)) * 5
2938 + const_hash_1 (TREE_IMAGPART (exp)));
2940 case VECTOR_CST:
2942 unsigned i;
2944 hi = 7 + VECTOR_CST_NELTS (exp);
2946 for (i = 0; i < VECTOR_CST_NELTS (exp); ++i)
2947 hi = hi * 563 + const_hash_1 (VECTOR_CST_ELT (exp, i));
2949 return hi;
2952 case CONSTRUCTOR:
2954 unsigned HOST_WIDE_INT idx;
2955 tree value;
2957 hi = 5 + int_size_in_bytes (TREE_TYPE (exp));
2959 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, value)
2960 if (value)
2961 hi = hi * 603 + const_hash_1 (value);
2963 return hi;
2966 case ADDR_EXPR:
2967 case FDESC_EXPR:
2969 struct addr_const value;
2971 decode_addr_const (exp, &value);
2972 switch (GET_CODE (value.base))
2974 case SYMBOL_REF:
2975 /* Don't hash the address of the SYMBOL_REF;
2976 only use the offset and the symbol name. */
2977 hi = value.offset;
2978 p = XSTR (value.base, 0);
2979 for (i = 0; p[i] != 0; i++)
2980 hi = ((hi * 613) + (unsigned) (p[i]));
2981 break;
2983 case LABEL_REF:
2984 hi = (value.offset
2985 + CODE_LABEL_NUMBER (LABEL_REF_LABEL (value.base)) * 13);
2986 break;
2988 default:
2989 gcc_unreachable ();
2992 return hi;
2994 case PLUS_EXPR:
2995 case POINTER_PLUS_EXPR:
2996 case MINUS_EXPR:
2997 return (const_hash_1 (TREE_OPERAND (exp, 0)) * 9
2998 + const_hash_1 (TREE_OPERAND (exp, 1)));
3000 CASE_CONVERT:
3001 return const_hash_1 (TREE_OPERAND (exp, 0)) * 7 + 2;
3003 default:
3004 /* A language specific constant. Just hash the code. */
3005 return code;
3008 /* Compute hashing function. */
3009 hi = len;
3010 for (i = 0; i < len; i++)
3011 hi = ((hi * 613) + (unsigned) (p[i]));
3013 return hi;
3016 /* Wrapper of compare_constant, for the htab interface. */
3017 bool
3018 tree_descriptor_hasher::equal (constant_descriptor_tree *c1,
3019 constant_descriptor_tree *c2)
3021 if (c1->hash != c2->hash)
3022 return 0;
3023 return compare_constant (c1->value, c2->value);
3026 /* Compare t1 and t2, and return 1 only if they are known to result in
3027 the same bit pattern on output. */
3029 static int
3030 compare_constant (const tree t1, const tree t2)
3032 enum tree_code typecode;
3034 if (t1 == NULL_TREE)
3035 return t2 == NULL_TREE;
3036 if (t2 == NULL_TREE)
3037 return 0;
3039 if (TREE_CODE (t1) != TREE_CODE (t2))
3040 return 0;
3042 switch (TREE_CODE (t1))
3044 case INTEGER_CST:
3045 /* Integer constants are the same only if the same width of type. */
3046 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
3047 return 0;
3048 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
3049 return 0;
3050 return tree_int_cst_equal (t1, t2);
3052 case REAL_CST:
3053 /* Real constants are the same only if the same width of type. */
3054 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
3055 return 0;
3057 return real_identical (&TREE_REAL_CST (t1), &TREE_REAL_CST (t2));
3059 case FIXED_CST:
3060 /* Fixed constants are the same only if the same width of type. */
3061 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
3062 return 0;
3064 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
3066 case STRING_CST:
3067 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
3068 return 0;
3070 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
3071 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
3072 TREE_STRING_LENGTH (t1)));
3074 case COMPLEX_CST:
3075 return (compare_constant (TREE_REALPART (t1), TREE_REALPART (t2))
3076 && compare_constant (TREE_IMAGPART (t1), TREE_IMAGPART (t2)));
3078 case VECTOR_CST:
3080 unsigned i;
3082 if (VECTOR_CST_NELTS (t1) != VECTOR_CST_NELTS (t2))
3083 return 0;
3085 for (i = 0; i < VECTOR_CST_NELTS (t1); ++i)
3086 if (!compare_constant (VECTOR_CST_ELT (t1, i),
3087 VECTOR_CST_ELT (t2, i)))
3088 return 0;
3090 return 1;
3093 case CONSTRUCTOR:
3095 vec<constructor_elt, va_gc> *v1, *v2;
3096 unsigned HOST_WIDE_INT idx;
3098 typecode = TREE_CODE (TREE_TYPE (t1));
3099 if (typecode != TREE_CODE (TREE_TYPE (t2)))
3100 return 0;
3102 if (typecode == ARRAY_TYPE)
3104 HOST_WIDE_INT size_1 = int_size_in_bytes (TREE_TYPE (t1));
3105 /* For arrays, check that mode, size and storage order match. */
3106 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2))
3107 || size_1 == -1
3108 || size_1 != int_size_in_bytes (TREE_TYPE (t2))
3109 || TYPE_REVERSE_STORAGE_ORDER (TREE_TYPE (t1))
3110 != TYPE_REVERSE_STORAGE_ORDER (TREE_TYPE (t2)))
3111 return 0;
3113 else
3115 /* For record and union constructors, require exact type
3116 equality. */
3117 if (TREE_TYPE (t1) != TREE_TYPE (t2))
3118 return 0;
3121 v1 = CONSTRUCTOR_ELTS (t1);
3122 v2 = CONSTRUCTOR_ELTS (t2);
3123 if (vec_safe_length (v1) != vec_safe_length (v2))
3124 return 0;
3126 for (idx = 0; idx < vec_safe_length (v1); ++idx)
3128 constructor_elt *c1 = &(*v1)[idx];
3129 constructor_elt *c2 = &(*v2)[idx];
3131 /* Check that each value is the same... */
3132 if (!compare_constant (c1->value, c2->value))
3133 return 0;
3134 /* ... and that they apply to the same fields! */
3135 if (typecode == ARRAY_TYPE)
3137 if (!compare_constant (c1->index, c2->index))
3138 return 0;
3140 else
3142 if (c1->index != c2->index)
3143 return 0;
3147 return 1;
3150 case ADDR_EXPR:
3151 case FDESC_EXPR:
3153 struct addr_const value1, value2;
3154 enum rtx_code code;
3155 int ret;
3157 decode_addr_const (t1, &value1);
3158 decode_addr_const (t2, &value2);
3160 if (value1.offset != value2.offset)
3161 return 0;
3163 code = GET_CODE (value1.base);
3164 if (code != GET_CODE (value2.base))
3165 return 0;
3167 switch (code)
3169 case SYMBOL_REF:
3170 ret = (strcmp (XSTR (value1.base, 0), XSTR (value2.base, 0)) == 0);
3171 break;
3173 case LABEL_REF:
3174 ret = (CODE_LABEL_NUMBER (LABEL_REF_LABEL (value1.base))
3175 == CODE_LABEL_NUMBER (LABEL_REF_LABEL (value2.base)));
3176 break;
3178 default:
3179 gcc_unreachable ();
3181 return ret;
3184 case PLUS_EXPR:
3185 case POINTER_PLUS_EXPR:
3186 case MINUS_EXPR:
3187 case RANGE_EXPR:
3188 return (compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0))
3189 && compare_constant (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)));
3191 CASE_CONVERT:
3192 case VIEW_CONVERT_EXPR:
3193 return compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3195 default:
3196 return 0;
3199 gcc_unreachable ();
3202 /* Return the section into which constant EXP should be placed. */
3204 static section *
3205 get_constant_section (tree exp, unsigned int align)
3207 return targetm.asm_out.select_section (exp,
3208 compute_reloc_for_constant (exp),
3209 align);
3212 /* Return the size of constant EXP in bytes. */
3214 static HOST_WIDE_INT
3215 get_constant_size (tree exp)
3217 HOST_WIDE_INT size;
3219 size = int_size_in_bytes (TREE_TYPE (exp));
3220 if (TREE_CODE (exp) == STRING_CST)
3221 size = MAX (TREE_STRING_LENGTH (exp), size);
3222 return size;
3225 /* Subroutine of output_constant_def:
3226 No constant equal to EXP is known to have been output.
3227 Make a constant descriptor to enter EXP in the hash table.
3228 Assign the label number and construct RTL to refer to the
3229 constant's location in memory.
3230 Caller is responsible for updating the hash table. */
3232 static struct constant_descriptor_tree *
3233 build_constant_desc (tree exp)
3235 struct constant_descriptor_tree *desc;
3236 rtx symbol, rtl;
3237 char label[256];
3238 int labelno;
3239 tree decl;
3241 desc = ggc_alloc<constant_descriptor_tree> ();
3242 desc->value = exp;
3244 /* Create a string containing the label name, in LABEL. */
3245 labelno = const_labelno++;
3246 ASM_GENERATE_INTERNAL_LABEL (label, "LC", labelno);
3248 /* Construct the VAR_DECL associated with the constant. */
3249 decl = build_decl (UNKNOWN_LOCATION, VAR_DECL, get_identifier (label),
3250 TREE_TYPE (exp));
3251 DECL_ARTIFICIAL (decl) = 1;
3252 DECL_IGNORED_P (decl) = 1;
3253 TREE_READONLY (decl) = 1;
3254 TREE_STATIC (decl) = 1;
3255 TREE_ADDRESSABLE (decl) = 1;
3256 /* We don't set the RTL yet as this would cause varpool to assume that the
3257 variable is referenced. Moreover, it would just be dropped in LTO mode.
3258 Instead we set the flag that will be recognized in make_decl_rtl. */
3259 DECL_IN_CONSTANT_POOL (decl) = 1;
3260 DECL_INITIAL (decl) = desc->value;
3261 /* ??? CONSTANT_ALIGNMENT hasn't been updated for vector types on most
3262 architectures so use DATA_ALIGNMENT as well, except for strings. */
3263 if (TREE_CODE (exp) == STRING_CST)
3265 SET_DECL_ALIGN (decl, CONSTANT_ALIGNMENT (exp, DECL_ALIGN (decl)));
3267 else
3268 align_variable (decl, 0);
3270 /* Now construct the SYMBOL_REF and the MEM. */
3271 if (use_object_blocks_p ())
3273 int align = (TREE_CODE (decl) == CONST_DECL
3274 || (VAR_P (decl) && DECL_IN_CONSTANT_POOL (decl))
3275 ? DECL_ALIGN (decl)
3276 : symtab_node::get (decl)->definition_alignment ());
3277 section *sect = get_constant_section (exp, align);
3278 symbol = create_block_symbol (ggc_strdup (label),
3279 get_block_for_section (sect), -1);
3281 else
3282 symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
3283 SYMBOL_REF_FLAGS (symbol) |= SYMBOL_FLAG_LOCAL;
3284 SET_SYMBOL_REF_DECL (symbol, decl);
3285 TREE_CONSTANT_POOL_ADDRESS_P (symbol) = 1;
3287 rtl = gen_const_mem (TYPE_MODE (TREE_TYPE (exp)), symbol);
3288 set_mem_attributes (rtl, exp, 1);
3289 set_mem_alias_set (rtl, 0);
3291 /* We cannot share RTX'es in pool entries.
3292 Mark this piece of RTL as required for unsharing. */
3293 RTX_FLAG (rtl, used) = 1;
3295 /* Set flags or add text to the name to record information, such as
3296 that it is a local symbol. If the name is changed, the macro
3297 ASM_OUTPUT_LABELREF will have to know how to strip this
3298 information. This call might invalidate our local variable
3299 SYMBOL; we can't use it afterward. */
3300 targetm.encode_section_info (exp, rtl, true);
3302 desc->rtl = rtl;
3304 return desc;
3307 /* Return an rtx representing a reference to constant data in memory
3308 for the constant expression EXP.
3310 If assembler code for such a constant has already been output,
3311 return an rtx to refer to it.
3312 Otherwise, output such a constant in memory
3313 and generate an rtx for it.
3315 If DEFER is nonzero, this constant can be deferred and output only
3316 if referenced in the function after all optimizations.
3318 `const_desc_table' records which constants already have label strings. */
3321 output_constant_def (tree exp, int defer)
3323 struct constant_descriptor_tree *desc;
3324 struct constant_descriptor_tree key;
3326 /* Look up EXP in the table of constant descriptors. If we didn't find
3327 it, create a new one. */
3328 key.value = exp;
3329 key.hash = const_hash_1 (exp);
3330 constant_descriptor_tree **loc
3331 = const_desc_htab->find_slot_with_hash (&key, key.hash, INSERT);
3333 desc = *loc;
3334 if (desc == 0)
3336 desc = build_constant_desc (exp);
3337 desc->hash = key.hash;
3338 *loc = desc;
3341 maybe_output_constant_def_contents (desc, defer);
3342 return desc->rtl;
3345 /* Subroutine of output_constant_def: Decide whether or not we need to
3346 output the constant DESC now, and if so, do it. */
3347 static void
3348 maybe_output_constant_def_contents (struct constant_descriptor_tree *desc,
3349 int defer)
3351 rtx symbol = XEXP (desc->rtl, 0);
3352 tree exp = desc->value;
3354 if (flag_syntax_only)
3355 return;
3357 if (TREE_ASM_WRITTEN (exp))
3358 /* Already output; don't do it again. */
3359 return;
3361 /* We can always defer constants as long as the context allows
3362 doing so. */
3363 if (defer)
3365 /* Increment n_deferred_constants if it exists. It needs to be at
3366 least as large as the number of constants actually referred to
3367 by the function. If it's too small we'll stop looking too early
3368 and fail to emit constants; if it's too large we'll only look
3369 through the entire function when we could have stopped earlier. */
3370 if (cfun)
3371 n_deferred_constants++;
3372 return;
3375 output_constant_def_contents (symbol);
3378 /* Subroutine of output_constant_def_contents. Output the definition
3379 of constant EXP, which is pointed to by label LABEL. ALIGN is the
3380 constant's alignment in bits. */
3382 static void
3383 assemble_constant_contents (tree exp, const char *label, unsigned int align)
3385 HOST_WIDE_INT size;
3387 size = get_constant_size (exp);
3389 /* Do any machine/system dependent processing of the constant. */
3390 targetm.asm_out.declare_constant_name (asm_out_file, label, exp, size);
3392 /* Output the value of EXP. */
3393 output_constant (exp, size, align, false);
3395 targetm.asm_out.decl_end ();
3398 /* We must output the constant data referred to by SYMBOL; do so. */
3400 static void
3401 output_constant_def_contents (rtx symbol)
3403 tree decl = SYMBOL_REF_DECL (symbol);
3404 tree exp = DECL_INITIAL (decl);
3405 bool asan_protected = false;
3407 /* Make sure any other constants whose addresses appear in EXP
3408 are assigned label numbers. */
3409 output_addressed_constants (exp);
3411 /* We are no longer deferring this constant. */
3412 TREE_ASM_WRITTEN (decl) = TREE_ASM_WRITTEN (exp) = 1;
3414 if ((flag_sanitize & SANITIZE_ADDRESS)
3415 && TREE_CODE (exp) == STRING_CST
3416 && asan_protect_global (exp))
3418 asan_protected = true;
3419 SET_DECL_ALIGN (decl, MAX (DECL_ALIGN (decl),
3420 ASAN_RED_ZONE_SIZE * BITS_PER_UNIT));
3423 /* If the constant is part of an object block, make sure that the
3424 decl has been positioned within its block, but do not write out
3425 its definition yet. output_object_blocks will do that later. */
3426 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol) && SYMBOL_REF_BLOCK (symbol))
3427 place_block_symbol (symbol);
3428 else
3430 int align = (TREE_CODE (decl) == CONST_DECL
3431 || (VAR_P (decl) && DECL_IN_CONSTANT_POOL (decl))
3432 ? DECL_ALIGN (decl)
3433 : symtab_node::get (decl)->definition_alignment ());
3434 switch_to_section (get_constant_section (exp, align));
3435 if (align > BITS_PER_UNIT)
3436 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
3437 assemble_constant_contents (exp, XSTR (symbol, 0), align);
3438 if (asan_protected)
3440 HOST_WIDE_INT size = get_constant_size (exp);
3441 assemble_zeros (asan_red_zone_size (size));
3446 /* Look up EXP in the table of constant descriptors. Return the rtl
3447 if it has been emitted, else null. */
3450 lookup_constant_def (tree exp)
3452 struct constant_descriptor_tree key;
3454 key.value = exp;
3455 key.hash = const_hash_1 (exp);
3456 constant_descriptor_tree *desc
3457 = const_desc_htab->find_with_hash (&key, key.hash);
3459 return (desc ? desc->rtl : NULL_RTX);
3462 /* Return a tree representing a reference to constant data in memory
3463 for the constant expression EXP.
3465 This is the counterpart of output_constant_def at the Tree level. */
3467 tree
3468 tree_output_constant_def (tree exp)
3470 struct constant_descriptor_tree *desc, key;
3471 tree decl;
3473 /* Look up EXP in the table of constant descriptors. If we didn't find
3474 it, create a new one. */
3475 key.value = exp;
3476 key.hash = const_hash_1 (exp);
3477 constant_descriptor_tree **loc
3478 = const_desc_htab->find_slot_with_hash (&key, key.hash, INSERT);
3480 desc = *loc;
3481 if (desc == 0)
3483 desc = build_constant_desc (exp);
3484 desc->hash = key.hash;
3485 *loc = desc;
3488 decl = SYMBOL_REF_DECL (XEXP (desc->rtl, 0));
3489 varpool_node::finalize_decl (decl);
3490 return decl;
3493 struct GTY((chain_next ("%h.next"), for_user)) constant_descriptor_rtx {
3494 struct constant_descriptor_rtx *next;
3495 rtx mem;
3496 rtx sym;
3497 rtx constant;
3498 HOST_WIDE_INT offset;
3499 hashval_t hash;
3500 machine_mode mode;
3501 unsigned int align;
3502 int labelno;
3503 int mark;
3506 struct const_rtx_desc_hasher : ggc_ptr_hash<constant_descriptor_rtx>
3508 static hashval_t hash (constant_descriptor_rtx *);
3509 static bool equal (constant_descriptor_rtx *, constant_descriptor_rtx *);
3512 /* Used in the hash tables to avoid outputting the same constant
3513 twice. Unlike 'struct constant_descriptor_tree', RTX constants
3514 are output once per function, not once per file. */
3515 /* ??? Only a few targets need per-function constant pools. Most
3516 can use one per-file pool. Should add a targetm bit to tell the
3517 difference. */
3519 struct GTY(()) rtx_constant_pool {
3520 /* Pointers to first and last constant in pool, as ordered by offset. */
3521 struct constant_descriptor_rtx *first;
3522 struct constant_descriptor_rtx *last;
3524 /* Hash facility for making memory-constants from constant rtl-expressions.
3525 It is used on RISC machines where immediate integer arguments and
3526 constant addresses are restricted so that such constants must be stored
3527 in memory. */
3528 hash_table<const_rtx_desc_hasher> *const_rtx_htab;
3530 /* Current offset in constant pool (does not include any
3531 machine-specific header). */
3532 HOST_WIDE_INT offset;
3535 /* Hash and compare functions for const_rtx_htab. */
3537 hashval_t
3538 const_rtx_desc_hasher::hash (constant_descriptor_rtx *desc)
3540 return desc->hash;
3543 bool
3544 const_rtx_desc_hasher::equal (constant_descriptor_rtx *x,
3545 constant_descriptor_rtx *y)
3547 if (x->mode != y->mode)
3548 return 0;
3549 return rtx_equal_p (x->constant, y->constant);
3552 /* Hash one component of a constant. */
3554 static hashval_t
3555 const_rtx_hash_1 (const_rtx x)
3557 unsigned HOST_WIDE_INT hwi;
3558 machine_mode mode;
3559 enum rtx_code code;
3560 hashval_t h;
3561 int i;
3563 code = GET_CODE (x);
3564 mode = GET_MODE (x);
3565 h = (hashval_t) code * 1048573 + mode;
3567 switch (code)
3569 case CONST_INT:
3570 hwi = INTVAL (x);
3572 fold_hwi:
3574 int shift = sizeof (hashval_t) * CHAR_BIT;
3575 const int n = sizeof (HOST_WIDE_INT) / sizeof (hashval_t);
3577 h ^= (hashval_t) hwi;
3578 for (i = 1; i < n; ++i)
3580 hwi >>= shift;
3581 h ^= (hashval_t) hwi;
3584 break;
3586 case CONST_WIDE_INT:
3587 hwi = GET_MODE_PRECISION (mode);
3589 for (i = 0; i < CONST_WIDE_INT_NUNITS (x); i++)
3590 hwi ^= CONST_WIDE_INT_ELT (x, i);
3591 goto fold_hwi;
3594 case CONST_DOUBLE:
3595 if (TARGET_SUPPORTS_WIDE_INT == 0 && mode == VOIDmode)
3597 hwi = CONST_DOUBLE_LOW (x) ^ CONST_DOUBLE_HIGH (x);
3598 goto fold_hwi;
3600 else
3601 h ^= real_hash (CONST_DOUBLE_REAL_VALUE (x));
3602 break;
3604 case CONST_FIXED:
3605 h ^= fixed_hash (CONST_FIXED_VALUE (x));
3606 break;
3608 case SYMBOL_REF:
3609 h ^= htab_hash_string (XSTR (x, 0));
3610 break;
3612 case LABEL_REF:
3613 h = h * 251 + CODE_LABEL_NUMBER (LABEL_REF_LABEL (x));
3614 break;
3616 case UNSPEC:
3617 case UNSPEC_VOLATILE:
3618 h = h * 251 + XINT (x, 1);
3619 break;
3621 default:
3622 break;
3625 return h;
3628 /* Compute a hash value for X, which should be a constant. */
3630 static hashval_t
3631 const_rtx_hash (rtx x)
3633 hashval_t h = 0;
3634 subrtx_iterator::array_type array;
3635 FOR_EACH_SUBRTX (iter, array, x, ALL)
3636 h = h * 509 + const_rtx_hash_1 (*iter);
3637 return h;
3641 /* Create and return a new rtx constant pool. */
3643 static struct rtx_constant_pool *
3644 create_constant_pool (void)
3646 struct rtx_constant_pool *pool;
3648 pool = ggc_alloc<rtx_constant_pool> ();
3649 pool->const_rtx_htab = hash_table<const_rtx_desc_hasher>::create_ggc (31);
3650 pool->first = NULL;
3651 pool->last = NULL;
3652 pool->offset = 0;
3653 return pool;
3656 /* Initialize constant pool hashing for a new function. */
3658 void
3659 init_varasm_status (void)
3661 crtl->varasm.pool = create_constant_pool ();
3662 crtl->varasm.deferred_constants = 0;
3665 /* Given a MINUS expression, simplify it if both sides
3666 include the same symbol. */
3669 simplify_subtraction (rtx x)
3671 rtx r = simplify_rtx (x);
3672 return r ? r : x;
3675 /* Given a constant rtx X, make (or find) a memory constant for its value
3676 and return a MEM rtx to refer to it in memory. */
3679 force_const_mem (machine_mode mode, rtx x)
3681 struct constant_descriptor_rtx *desc, tmp;
3682 struct rtx_constant_pool *pool;
3683 char label[256];
3684 rtx def, symbol;
3685 hashval_t hash;
3686 unsigned int align;
3687 constant_descriptor_rtx **slot;
3689 /* If we're not allowed to drop X into the constant pool, don't. */
3690 if (targetm.cannot_force_const_mem (mode, x))
3691 return NULL_RTX;
3693 /* Record that this function has used a constant pool entry. */
3694 crtl->uses_const_pool = 1;
3696 /* Decide which pool to use. */
3697 pool = (targetm.use_blocks_for_constant_p (mode, x)
3698 ? shared_constant_pool
3699 : crtl->varasm.pool);
3701 /* Lookup the value in the hashtable. */
3702 tmp.constant = x;
3703 tmp.mode = mode;
3704 hash = const_rtx_hash (x);
3705 slot = pool->const_rtx_htab->find_slot_with_hash (&tmp, hash, INSERT);
3706 desc = *slot;
3708 /* If the constant was already present, return its memory. */
3709 if (desc)
3710 return copy_rtx (desc->mem);
3712 /* Otherwise, create a new descriptor. */
3713 desc = ggc_alloc<constant_descriptor_rtx> ();
3714 *slot = desc;
3716 /* Align the location counter as required by EXP's data type. */
3717 align = GET_MODE_ALIGNMENT (mode == VOIDmode ? word_mode : mode);
3719 tree type = lang_hooks.types.type_for_mode (mode, 0);
3720 if (type != NULL_TREE)
3721 align = CONSTANT_ALIGNMENT (make_tree (type, x), align);
3723 pool->offset += (align / BITS_PER_UNIT) - 1;
3724 pool->offset &= ~ ((align / BITS_PER_UNIT) - 1);
3726 desc->next = NULL;
3727 desc->constant = copy_rtx (tmp.constant);
3728 desc->offset = pool->offset;
3729 desc->hash = hash;
3730 desc->mode = mode;
3731 desc->align = align;
3732 desc->labelno = const_labelno;
3733 desc->mark = 0;
3735 pool->offset += GET_MODE_SIZE (mode);
3736 if (pool->last)
3737 pool->last->next = desc;
3738 else
3739 pool->first = pool->last = desc;
3740 pool->last = desc;
3742 /* Create a string containing the label name, in LABEL. */
3743 ASM_GENERATE_INTERNAL_LABEL (label, "LC", const_labelno);
3744 ++const_labelno;
3746 /* Construct the SYMBOL_REF. Make sure to mark it as belonging to
3747 the constants pool. */
3748 if (use_object_blocks_p () && targetm.use_blocks_for_constant_p (mode, x))
3750 section *sect = targetm.asm_out.select_rtx_section (mode, x, align);
3751 symbol = create_block_symbol (ggc_strdup (label),
3752 get_block_for_section (sect), -1);
3754 else
3755 symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
3756 desc->sym = symbol;
3757 SYMBOL_REF_FLAGS (symbol) |= SYMBOL_FLAG_LOCAL;
3758 CONSTANT_POOL_ADDRESS_P (symbol) = 1;
3759 SET_SYMBOL_REF_CONSTANT (symbol, desc);
3761 /* Construct the MEM. */
3762 desc->mem = def = gen_const_mem (mode, symbol);
3763 set_mem_attributes (def, lang_hooks.types.type_for_mode (mode, 0), 1);
3764 set_mem_align (def, align);
3766 /* If we're dropping a label to the constant pool, make sure we
3767 don't delete it. */
3768 if (GET_CODE (x) == LABEL_REF)
3769 LABEL_PRESERVE_P (XEXP (x, 0)) = 1;
3771 return copy_rtx (def);
3774 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3777 get_pool_constant (const_rtx addr)
3779 return SYMBOL_REF_CONSTANT (addr)->constant;
3782 /* Given a constant pool SYMBOL_REF, return the corresponding constant
3783 and whether it has been output or not. */
3786 get_pool_constant_mark (rtx addr, bool *pmarked)
3788 struct constant_descriptor_rtx *desc;
3790 desc = SYMBOL_REF_CONSTANT (addr);
3791 *pmarked = (desc->mark != 0);
3792 return desc->constant;
3795 /* Similar, return the mode. */
3797 machine_mode
3798 get_pool_mode (const_rtx addr)
3800 return SYMBOL_REF_CONSTANT (addr)->mode;
3803 /* Return the size of the constant pool. */
3806 get_pool_size (void)
3808 return crtl->varasm.pool->offset;
3811 /* Worker function for output_constant_pool_1. Emit assembly for X
3812 in MODE with known alignment ALIGN. */
3814 static void
3815 output_constant_pool_2 (machine_mode mode, rtx x, unsigned int align)
3817 switch (GET_MODE_CLASS (mode))
3819 case MODE_FLOAT:
3820 case MODE_DECIMAL_FLOAT:
3822 gcc_assert (CONST_DOUBLE_AS_FLOAT_P (x));
3823 assemble_real (*CONST_DOUBLE_REAL_VALUE (x), mode, align, false);
3824 break;
3827 case MODE_INT:
3828 case MODE_PARTIAL_INT:
3829 case MODE_FRACT:
3830 case MODE_UFRACT:
3831 case MODE_ACCUM:
3832 case MODE_UACCUM:
3833 case MODE_POINTER_BOUNDS:
3834 assemble_integer (x, GET_MODE_SIZE (mode), align, 1);
3835 break;
3837 case MODE_VECTOR_FLOAT:
3838 case MODE_VECTOR_INT:
3839 case MODE_VECTOR_FRACT:
3840 case MODE_VECTOR_UFRACT:
3841 case MODE_VECTOR_ACCUM:
3842 case MODE_VECTOR_UACCUM:
3844 int i, units;
3845 machine_mode submode = GET_MODE_INNER (mode);
3846 unsigned int subalign = MIN (align, GET_MODE_BITSIZE (submode));
3848 gcc_assert (GET_CODE (x) == CONST_VECTOR);
3849 units = CONST_VECTOR_NUNITS (x);
3851 for (i = 0; i < units; i++)
3853 rtx elt = CONST_VECTOR_ELT (x, i);
3854 output_constant_pool_2 (submode, elt, i ? subalign : align);
3857 break;
3859 default:
3860 gcc_unreachable ();
3864 /* Worker function for output_constant_pool. Emit constant DESC,
3865 giving it ALIGN bits of alignment. */
3867 static void
3868 output_constant_pool_1 (struct constant_descriptor_rtx *desc,
3869 unsigned int align)
3871 rtx x, tmp;
3873 x = desc->constant;
3875 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3876 whose CODE_LABEL has been deleted. This can occur if a jump table
3877 is eliminated by optimization. If so, write a constant of zero
3878 instead. Note that this can also happen by turning the
3879 CODE_LABEL into a NOTE. */
3880 /* ??? This seems completely and utterly wrong. Certainly it's
3881 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3882 functioning even with rtx_insn::deleted and friends. */
3884 tmp = x;
3885 switch (GET_CODE (tmp))
3887 case CONST:
3888 if (GET_CODE (XEXP (tmp, 0)) != PLUS
3889 || GET_CODE (XEXP (XEXP (tmp, 0), 0)) != LABEL_REF)
3890 break;
3891 tmp = XEXP (XEXP (tmp, 0), 0);
3892 /* FALLTHRU */
3894 case LABEL_REF:
3895 tmp = LABEL_REF_LABEL (tmp);
3896 gcc_assert (!as_a<rtx_insn *> (tmp)->deleted ());
3897 gcc_assert (!NOTE_P (tmp)
3898 || NOTE_KIND (tmp) != NOTE_INSN_DELETED);
3899 break;
3901 default:
3902 break;
3905 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3906 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file, x, desc->mode,
3907 align, desc->labelno, done);
3908 #endif
3910 assemble_align (align);
3912 /* Output the label. */
3913 targetm.asm_out.internal_label (asm_out_file, "LC", desc->labelno);
3915 /* Output the data.
3916 Pass actual alignment value while emitting string constant to asm code
3917 as function 'output_constant_pool_1' explicitly passes the alignment as 1
3918 assuming that the data is already aligned which prevents the generation
3919 of fix-up table entries. */
3920 output_constant_pool_2 (desc->mode, x, desc->align);
3922 /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
3923 sections have proper size. */
3924 if (align > GET_MODE_BITSIZE (desc->mode)
3925 && in_section
3926 && (in_section->common.flags & SECTION_MERGE))
3927 assemble_align (align);
3929 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3930 done:
3931 #endif
3932 return;
3935 /* Mark all constants that are referenced by SYMBOL_REFs in X.
3936 Emit referenced deferred strings. */
3938 static void
3939 mark_constants_in_pattern (rtx insn)
3941 subrtx_iterator::array_type array;
3942 FOR_EACH_SUBRTX (iter, array, PATTERN (insn), ALL)
3944 const_rtx x = *iter;
3945 if (GET_CODE (x) == SYMBOL_REF)
3947 if (CONSTANT_POOL_ADDRESS_P (x))
3949 struct constant_descriptor_rtx *desc = SYMBOL_REF_CONSTANT (x);
3950 if (desc->mark == 0)
3952 desc->mark = 1;
3953 iter.substitute (desc->constant);
3956 else if (TREE_CONSTANT_POOL_ADDRESS_P (x))
3958 tree decl = SYMBOL_REF_DECL (x);
3959 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl)))
3961 n_deferred_constants--;
3962 output_constant_def_contents (CONST_CAST_RTX (x));
3969 /* Look through appropriate parts of INSN, marking all entries in the
3970 constant pool which are actually being used. Entries that are only
3971 referenced by other constants are also marked as used. Emit
3972 deferred strings that are used. */
3974 static void
3975 mark_constants (rtx_insn *insn)
3977 if (!INSN_P (insn))
3978 return;
3980 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3981 insns, not any notes that may be attached. We don't want to mark
3982 a constant just because it happens to appear in a REG_EQUIV note. */
3983 if (rtx_sequence *seq = dyn_cast <rtx_sequence *> (PATTERN (insn)))
3985 int i, n = seq->len ();
3986 for (i = 0; i < n; ++i)
3988 rtx subinsn = seq->element (i);
3989 if (INSN_P (subinsn))
3990 mark_constants_in_pattern (subinsn);
3993 else
3994 mark_constants_in_pattern (insn);
3997 /* Look through the instructions for this function, and mark all the
3998 entries in POOL which are actually being used. Emit deferred constants
3999 which have indeed been used. */
4001 static void
4002 mark_constant_pool (void)
4004 rtx_insn *insn;
4006 if (!crtl->uses_const_pool && n_deferred_constants == 0)
4007 return;
4009 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
4010 mark_constants (insn);
4013 /* Write all the constants in POOL. */
4015 static void
4016 output_constant_pool_contents (struct rtx_constant_pool *pool)
4018 struct constant_descriptor_rtx *desc;
4020 for (desc = pool->first; desc ; desc = desc->next)
4021 if (desc->mark)
4023 /* If the constant is part of an object_block, make sure that
4024 the constant has been positioned within its block, but do not
4025 write out its definition yet. output_object_blocks will do
4026 that later. */
4027 if (SYMBOL_REF_HAS_BLOCK_INFO_P (desc->sym)
4028 && SYMBOL_REF_BLOCK (desc->sym))
4029 place_block_symbol (desc->sym);
4030 else
4032 switch_to_section (targetm.asm_out.select_rtx_section
4033 (desc->mode, desc->constant, desc->align));
4034 output_constant_pool_1 (desc, desc->align);
4039 /* Mark all constants that are used in the current function, then write
4040 out the function's private constant pool. */
4042 static void
4043 output_constant_pool (const char *fnname ATTRIBUTE_UNUSED,
4044 tree fndecl ATTRIBUTE_UNUSED)
4046 struct rtx_constant_pool *pool = crtl->varasm.pool;
4048 /* It is possible for gcc to call force_const_mem and then to later
4049 discard the instructions which refer to the constant. In such a
4050 case we do not need to output the constant. */
4051 mark_constant_pool ();
4053 #ifdef ASM_OUTPUT_POOL_PROLOGUE
4054 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file, fnname, fndecl, pool->offset);
4055 #endif
4057 output_constant_pool_contents (pool);
4059 #ifdef ASM_OUTPUT_POOL_EPILOGUE
4060 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file, fnname, fndecl, pool->offset);
4061 #endif
4064 /* Write the contents of the shared constant pool. */
4066 void
4067 output_shared_constant_pool (void)
4069 output_constant_pool_contents (shared_constant_pool);
4072 /* Determine what kind of relocations EXP may need. */
4075 compute_reloc_for_constant (tree exp)
4077 int reloc = 0, reloc2;
4078 tree tem;
4080 switch (TREE_CODE (exp))
4082 case ADDR_EXPR:
4083 case FDESC_EXPR:
4084 /* Go inside any operations that get_inner_reference can handle and see
4085 if what's inside is a constant: no need to do anything here for
4086 addresses of variables or functions. */
4087 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
4088 tem = TREE_OPERAND (tem, 0))
4091 if (TREE_CODE (tem) == MEM_REF
4092 && TREE_CODE (TREE_OPERAND (tem, 0)) == ADDR_EXPR)
4094 reloc = compute_reloc_for_constant (TREE_OPERAND (tem, 0));
4095 break;
4098 if (!targetm.binds_local_p (tem))
4099 reloc |= 2;
4100 else
4101 reloc |= 1;
4102 break;
4104 case PLUS_EXPR:
4105 case POINTER_PLUS_EXPR:
4106 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
4107 reloc |= compute_reloc_for_constant (TREE_OPERAND (exp, 1));
4108 break;
4110 case MINUS_EXPR:
4111 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
4112 reloc2 = compute_reloc_for_constant (TREE_OPERAND (exp, 1));
4113 /* The difference of two local labels is computable at link time. */
4114 if (reloc == 1 && reloc2 == 1)
4115 reloc = 0;
4116 else
4117 reloc |= reloc2;
4118 break;
4120 CASE_CONVERT:
4121 case VIEW_CONVERT_EXPR:
4122 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
4123 break;
4125 case CONSTRUCTOR:
4127 unsigned HOST_WIDE_INT idx;
4128 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, tem)
4129 if (tem != 0)
4130 reloc |= compute_reloc_for_constant (tem);
4132 break;
4134 default:
4135 break;
4137 return reloc;
4140 /* Find all the constants whose addresses are referenced inside of EXP,
4141 and make sure assembler code with a label has been output for each one.
4142 Indicate whether an ADDR_EXPR has been encountered. */
4144 static void
4145 output_addressed_constants (tree exp)
4147 tree tem;
4149 switch (TREE_CODE (exp))
4151 case ADDR_EXPR:
4152 case FDESC_EXPR:
4153 /* Go inside any operations that get_inner_reference can handle and see
4154 if what's inside is a constant: no need to do anything here for
4155 addresses of variables or functions. */
4156 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
4157 tem = TREE_OPERAND (tem, 0))
4160 /* If we have an initialized CONST_DECL, retrieve the initializer. */
4161 if (TREE_CODE (tem) == CONST_DECL && DECL_INITIAL (tem))
4162 tem = DECL_INITIAL (tem);
4164 if (CONSTANT_CLASS_P (tem) || TREE_CODE (tem) == CONSTRUCTOR)
4165 output_constant_def (tem, 0);
4167 if (TREE_CODE (tem) == MEM_REF)
4168 output_addressed_constants (TREE_OPERAND (tem, 0));
4169 break;
4171 case PLUS_EXPR:
4172 case POINTER_PLUS_EXPR:
4173 case MINUS_EXPR:
4174 output_addressed_constants (TREE_OPERAND (exp, 1));
4175 gcc_fallthrough ();
4177 CASE_CONVERT:
4178 case VIEW_CONVERT_EXPR:
4179 output_addressed_constants (TREE_OPERAND (exp, 0));
4180 break;
4182 case CONSTRUCTOR:
4184 unsigned HOST_WIDE_INT idx;
4185 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, tem)
4186 if (tem != 0)
4187 output_addressed_constants (tem);
4189 break;
4191 default:
4192 break;
4196 /* Whether a constructor CTOR is a valid static constant initializer if all
4197 its elements are. This used to be internal to initializer_constant_valid_p
4198 and has been exposed to let other functions like categorize_ctor_elements
4199 evaluate the property while walking a constructor for other purposes. */
4201 bool
4202 constructor_static_from_elts_p (const_tree ctor)
4204 return (TREE_CONSTANT (ctor)
4205 && (TREE_CODE (TREE_TYPE (ctor)) == UNION_TYPE
4206 || TREE_CODE (TREE_TYPE (ctor)) == RECORD_TYPE
4207 || TREE_CODE (TREE_TYPE (ctor)) == ARRAY_TYPE));
4210 static tree initializer_constant_valid_p_1 (tree value, tree endtype,
4211 tree *cache);
4213 /* A subroutine of initializer_constant_valid_p. VALUE is a MINUS_EXPR,
4214 PLUS_EXPR or POINTER_PLUS_EXPR. This looks for cases of VALUE
4215 which are valid when ENDTYPE is an integer of any size; in
4216 particular, this does not accept a pointer minus a constant. This
4217 returns null_pointer_node if the VALUE is an absolute constant
4218 which can be used to initialize a static variable. Otherwise it
4219 returns NULL. */
4221 static tree
4222 narrowing_initializer_constant_valid_p (tree value, tree endtype, tree *cache)
4224 tree op0, op1;
4226 if (!INTEGRAL_TYPE_P (endtype))
4227 return NULL_TREE;
4229 op0 = TREE_OPERAND (value, 0);
4230 op1 = TREE_OPERAND (value, 1);
4232 /* Like STRIP_NOPS except allow the operand mode to widen. This
4233 works around a feature of fold that simplifies (int)(p1 - p2) to
4234 ((int)p1 - (int)p2) under the theory that the narrower operation
4235 is cheaper. */
4237 while (CONVERT_EXPR_P (op0)
4238 || TREE_CODE (op0) == NON_LVALUE_EXPR)
4240 tree inner = TREE_OPERAND (op0, 0);
4241 if (inner == error_mark_node
4242 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
4243 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0)))
4244 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
4245 break;
4246 op0 = inner;
4249 while (CONVERT_EXPR_P (op1)
4250 || TREE_CODE (op1) == NON_LVALUE_EXPR)
4252 tree inner = TREE_OPERAND (op1, 0);
4253 if (inner == error_mark_node
4254 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
4255 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op1)))
4256 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
4257 break;
4258 op1 = inner;
4261 op0 = initializer_constant_valid_p_1 (op0, endtype, cache);
4262 if (!op0)
4263 return NULL_TREE;
4265 op1 = initializer_constant_valid_p_1 (op1, endtype,
4266 cache ? cache + 2 : NULL);
4267 /* Both initializers must be known. */
4268 if (op1)
4270 if (op0 == op1
4271 && (op0 == null_pointer_node
4272 || TREE_CODE (value) == MINUS_EXPR))
4273 return null_pointer_node;
4275 /* Support differences between labels. */
4276 if (TREE_CODE (op0) == LABEL_DECL
4277 && TREE_CODE (op1) == LABEL_DECL)
4278 return null_pointer_node;
4280 if (TREE_CODE (op0) == STRING_CST
4281 && TREE_CODE (op1) == STRING_CST
4282 && operand_equal_p (op0, op1, 1))
4283 return null_pointer_node;
4286 return NULL_TREE;
4289 /* Helper function of initializer_constant_valid_p.
4290 Return nonzero if VALUE is a valid constant-valued expression
4291 for use in initializing a static variable; one that can be an
4292 element of a "constant" initializer.
4294 Return null_pointer_node if the value is absolute;
4295 if it is relocatable, return the variable that determines the relocation.
4296 We assume that VALUE has been folded as much as possible;
4297 therefore, we do not need to check for such things as
4298 arithmetic-combinations of integers.
4300 Use CACHE (pointer to 2 tree values) for caching if non-NULL. */
4302 static tree
4303 initializer_constant_valid_p_1 (tree value, tree endtype, tree *cache)
4305 tree ret;
4307 switch (TREE_CODE (value))
4309 case CONSTRUCTOR:
4310 if (constructor_static_from_elts_p (value))
4312 unsigned HOST_WIDE_INT idx;
4313 tree elt;
4314 bool absolute = true;
4316 if (cache && cache[0] == value)
4317 return cache[1];
4318 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value), idx, elt)
4320 tree reloc;
4321 reloc = initializer_constant_valid_p_1 (elt, TREE_TYPE (elt),
4322 NULL);
4323 if (!reloc
4324 /* An absolute value is required with reverse SSO. */
4325 || (reloc != null_pointer_node
4326 && TYPE_REVERSE_STORAGE_ORDER (TREE_TYPE (value))
4327 && !AGGREGATE_TYPE_P (TREE_TYPE (elt))))
4329 if (cache)
4331 cache[0] = value;
4332 cache[1] = NULL_TREE;
4334 return NULL_TREE;
4336 if (reloc != null_pointer_node)
4337 absolute = false;
4339 /* For a non-absolute relocation, there is no single
4340 variable that can be "the variable that determines the
4341 relocation." */
4342 if (cache)
4344 cache[0] = value;
4345 cache[1] = absolute ? null_pointer_node : error_mark_node;
4347 return absolute ? null_pointer_node : error_mark_node;
4350 return TREE_STATIC (value) ? null_pointer_node : NULL_TREE;
4352 case INTEGER_CST:
4353 case VECTOR_CST:
4354 case REAL_CST:
4355 case FIXED_CST:
4356 case STRING_CST:
4357 case COMPLEX_CST:
4358 return null_pointer_node;
4360 case ADDR_EXPR:
4361 case FDESC_EXPR:
4363 tree op0 = staticp (TREE_OPERAND (value, 0));
4364 if (op0)
4366 /* "&(*a).f" is like unto pointer arithmetic. If "a" turns out
4367 to be a constant, this is old-skool offsetof-like nonsense. */
4368 if (TREE_CODE (op0) == INDIRECT_REF
4369 && TREE_CONSTANT (TREE_OPERAND (op0, 0)))
4370 return null_pointer_node;
4371 /* Taking the address of a nested function involves a trampoline,
4372 unless we don't need or want one. */
4373 if (TREE_CODE (op0) == FUNCTION_DECL
4374 && DECL_STATIC_CHAIN (op0)
4375 && !TREE_NO_TRAMPOLINE (value))
4376 return NULL_TREE;
4377 /* "&{...}" requires a temporary to hold the constructed
4378 object. */
4379 if (TREE_CODE (op0) == CONSTRUCTOR)
4380 return NULL_TREE;
4382 return op0;
4385 case NON_LVALUE_EXPR:
4386 return initializer_constant_valid_p_1 (TREE_OPERAND (value, 0),
4387 endtype, cache);
4389 case VIEW_CONVERT_EXPR:
4391 tree src = TREE_OPERAND (value, 0);
4392 tree src_type = TREE_TYPE (src);
4393 tree dest_type = TREE_TYPE (value);
4395 /* Allow view-conversions from aggregate to non-aggregate type only
4396 if the bit pattern is fully preserved afterwards; otherwise, the
4397 RTL expander won't be able to apply a subsequent transformation
4398 to the underlying constructor. */
4399 if (AGGREGATE_TYPE_P (src_type) && !AGGREGATE_TYPE_P (dest_type))
4401 if (TYPE_MODE (endtype) == TYPE_MODE (dest_type))
4402 return initializer_constant_valid_p_1 (src, endtype, cache);
4403 else
4404 return NULL_TREE;
4407 /* Allow all other kinds of view-conversion. */
4408 return initializer_constant_valid_p_1 (src, endtype, cache);
4411 CASE_CONVERT:
4413 tree src = TREE_OPERAND (value, 0);
4414 tree src_type = TREE_TYPE (src);
4415 tree dest_type = TREE_TYPE (value);
4417 /* Allow conversions between pointer types, floating-point
4418 types, and offset types. */
4419 if ((POINTER_TYPE_P (dest_type) && POINTER_TYPE_P (src_type))
4420 || (FLOAT_TYPE_P (dest_type) && FLOAT_TYPE_P (src_type))
4421 || (TREE_CODE (dest_type) == OFFSET_TYPE
4422 && TREE_CODE (src_type) == OFFSET_TYPE))
4423 return initializer_constant_valid_p_1 (src, endtype, cache);
4425 /* Allow length-preserving conversions between integer types. */
4426 if (INTEGRAL_TYPE_P (dest_type) && INTEGRAL_TYPE_P (src_type)
4427 && (TYPE_PRECISION (dest_type) == TYPE_PRECISION (src_type)))
4428 return initializer_constant_valid_p_1 (src, endtype, cache);
4430 /* Allow conversions between other integer types only if
4431 explicit value. */
4432 if (INTEGRAL_TYPE_P (dest_type) && INTEGRAL_TYPE_P (src_type))
4434 tree inner = initializer_constant_valid_p_1 (src, endtype, cache);
4435 if (inner == null_pointer_node)
4436 return null_pointer_node;
4437 break;
4440 /* Allow (int) &foo provided int is as wide as a pointer. */
4441 if (INTEGRAL_TYPE_P (dest_type) && POINTER_TYPE_P (src_type)
4442 && (TYPE_PRECISION (dest_type) >= TYPE_PRECISION (src_type)))
4443 return initializer_constant_valid_p_1 (src, endtype, cache);
4445 /* Likewise conversions from int to pointers, but also allow
4446 conversions from 0. */
4447 if ((POINTER_TYPE_P (dest_type)
4448 || TREE_CODE (dest_type) == OFFSET_TYPE)
4449 && INTEGRAL_TYPE_P (src_type))
4451 if (TREE_CODE (src) == INTEGER_CST
4452 && TYPE_PRECISION (dest_type) >= TYPE_PRECISION (src_type))
4453 return null_pointer_node;
4454 if (integer_zerop (src))
4455 return null_pointer_node;
4456 else if (TYPE_PRECISION (dest_type) <= TYPE_PRECISION (src_type))
4457 return initializer_constant_valid_p_1 (src, endtype, cache);
4460 /* Allow conversions to struct or union types if the value
4461 inside is okay. */
4462 if (TREE_CODE (dest_type) == RECORD_TYPE
4463 || TREE_CODE (dest_type) == UNION_TYPE)
4464 return initializer_constant_valid_p_1 (src, endtype, cache);
4466 break;
4468 case POINTER_PLUS_EXPR:
4469 case PLUS_EXPR:
4470 /* Any valid floating-point constants will have been folded by now;
4471 with -frounding-math we hit this with addition of two constants. */
4472 if (TREE_CODE (endtype) == REAL_TYPE)
4473 return NULL_TREE;
4474 if (cache && cache[0] == value)
4475 return cache[1];
4476 if (! INTEGRAL_TYPE_P (endtype)
4477 || TYPE_PRECISION (endtype) >= TYPE_PRECISION (TREE_TYPE (value)))
4479 tree ncache[4] = { NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE };
4480 tree valid0
4481 = initializer_constant_valid_p_1 (TREE_OPERAND (value, 0),
4482 endtype, ncache);
4483 tree valid1
4484 = initializer_constant_valid_p_1 (TREE_OPERAND (value, 1),
4485 endtype, ncache + 2);
4486 /* If either term is absolute, use the other term's relocation. */
4487 if (valid0 == null_pointer_node)
4488 ret = valid1;
4489 else if (valid1 == null_pointer_node)
4490 ret = valid0;
4491 /* Support narrowing pointer differences. */
4492 else
4493 ret = narrowing_initializer_constant_valid_p (value, endtype,
4494 ncache);
4496 else
4497 /* Support narrowing pointer differences. */
4498 ret = narrowing_initializer_constant_valid_p (value, endtype, NULL);
4499 if (cache)
4501 cache[0] = value;
4502 cache[1] = ret;
4504 return ret;
4506 case MINUS_EXPR:
4507 if (TREE_CODE (endtype) == REAL_TYPE)
4508 return NULL_TREE;
4509 if (cache && cache[0] == value)
4510 return cache[1];
4511 if (! INTEGRAL_TYPE_P (endtype)
4512 || TYPE_PRECISION (endtype) >= TYPE_PRECISION (TREE_TYPE (value)))
4514 tree ncache[4] = { NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE };
4515 tree valid0
4516 = initializer_constant_valid_p_1 (TREE_OPERAND (value, 0),
4517 endtype, ncache);
4518 tree valid1
4519 = initializer_constant_valid_p_1 (TREE_OPERAND (value, 1),
4520 endtype, ncache + 2);
4521 /* Win if second argument is absolute. */
4522 if (valid1 == null_pointer_node)
4523 ret = valid0;
4524 /* Win if both arguments have the same relocation.
4525 Then the value is absolute. */
4526 else if (valid0 == valid1 && valid0 != 0)
4527 ret = null_pointer_node;
4528 /* Since GCC guarantees that string constants are unique in the
4529 generated code, a subtraction between two copies of the same
4530 constant string is absolute. */
4531 else if (valid0 && TREE_CODE (valid0) == STRING_CST
4532 && valid1 && TREE_CODE (valid1) == STRING_CST
4533 && operand_equal_p (valid0, valid1, 1))
4534 ret = null_pointer_node;
4535 /* Support narrowing differences. */
4536 else
4537 ret = narrowing_initializer_constant_valid_p (value, endtype,
4538 ncache);
4540 else
4541 /* Support narrowing differences. */
4542 ret = narrowing_initializer_constant_valid_p (value, endtype, NULL);
4543 if (cache)
4545 cache[0] = value;
4546 cache[1] = ret;
4548 return ret;
4550 default:
4551 break;
4554 return NULL_TREE;
4557 /* Return nonzero if VALUE is a valid constant-valued expression
4558 for use in initializing a static variable; one that can be an
4559 element of a "constant" initializer.
4561 Return null_pointer_node if the value is absolute;
4562 if it is relocatable, return the variable that determines the relocation.
4563 We assume that VALUE has been folded as much as possible;
4564 therefore, we do not need to check for such things as
4565 arithmetic-combinations of integers. */
4566 tree
4567 initializer_constant_valid_p (tree value, tree endtype, bool reverse)
4569 tree reloc = initializer_constant_valid_p_1 (value, endtype, NULL);
4571 /* An absolute value is required with reverse storage order. */
4572 if (reloc
4573 && reloc != null_pointer_node
4574 && reverse
4575 && !AGGREGATE_TYPE_P (endtype)
4576 && !VECTOR_TYPE_P (endtype))
4577 reloc = NULL_TREE;
4579 return reloc;
4582 /* Return true if VALUE is a valid constant-valued expression
4583 for use in initializing a static bit-field; one that can be
4584 an element of a "constant" initializer. */
4586 bool
4587 initializer_constant_valid_for_bitfield_p (tree value)
4589 /* For bitfields we support integer constants or possibly nested aggregates
4590 of such. */
4591 switch (TREE_CODE (value))
4593 case CONSTRUCTOR:
4595 unsigned HOST_WIDE_INT idx;
4596 tree elt;
4598 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value), idx, elt)
4599 if (!initializer_constant_valid_for_bitfield_p (elt))
4600 return false;
4601 return true;
4604 case INTEGER_CST:
4605 case REAL_CST:
4606 return true;
4608 case VIEW_CONVERT_EXPR:
4609 case NON_LVALUE_EXPR:
4610 return
4611 initializer_constant_valid_for_bitfield_p (TREE_OPERAND (value, 0));
4613 default:
4614 break;
4617 return false;
4620 /* output_constructor outer state of relevance in recursive calls, typically
4621 for nested aggregate bitfields. */
4623 struct oc_outer_state {
4624 unsigned int bit_offset; /* current position in ... */
4625 int byte; /* ... the outer byte buffer. */
4628 static unsigned HOST_WIDE_INT
4629 output_constructor (tree, unsigned HOST_WIDE_INT, unsigned int, bool,
4630 oc_outer_state *);
4632 /* Output assembler code for constant EXP, with no label.
4633 This includes the pseudo-op such as ".int" or ".byte", and a newline.
4634 Assumes output_addressed_constants has been done on EXP already.
4636 Generate at least SIZE bytes of assembler data, padding at the end
4637 with zeros if necessary. SIZE must always be specified. The returned
4638 value is the actual number of bytes of assembler data generated, which
4639 may be bigger than SIZE if the object contains a variable length field.
4641 SIZE is important for structure constructors,
4642 since trailing members may have been omitted from the constructor.
4643 It is also important for initialization of arrays from string constants
4644 since the full length of the string constant might not be wanted.
4645 It is also needed for initialization of unions, where the initializer's
4646 type is just one member, and that may not be as long as the union.
4648 There a case in which we would fail to output exactly SIZE bytes:
4649 for a structure constructor that wants to produce more than SIZE bytes.
4650 But such constructors will never be generated for any possible input.
4652 ALIGN is the alignment of the data in bits.
4654 If REVERSE is true, EXP is output in reverse storage order. */
4656 static unsigned HOST_WIDE_INT
4657 output_constant (tree exp, unsigned HOST_WIDE_INT size, unsigned int align,
4658 bool reverse)
4660 enum tree_code code;
4661 unsigned HOST_WIDE_INT thissize;
4662 rtx cst;
4664 if (size == 0 || flag_syntax_only)
4665 return size;
4667 /* See if we're trying to initialize a pointer in a non-default mode
4668 to the address of some declaration somewhere. If the target says
4669 the mode is valid for pointers, assume the target has a way of
4670 resolving it. */
4671 if (TREE_CODE (exp) == NOP_EXPR
4672 && POINTER_TYPE_P (TREE_TYPE (exp))
4673 && targetm.addr_space.valid_pointer_mode
4674 (TYPE_MODE (TREE_TYPE (exp)),
4675 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp)))))
4677 tree saved_type = TREE_TYPE (exp);
4679 /* Peel off any intermediate conversions-to-pointer for valid
4680 pointer modes. */
4681 while (TREE_CODE (exp) == NOP_EXPR
4682 && POINTER_TYPE_P (TREE_TYPE (exp))
4683 && targetm.addr_space.valid_pointer_mode
4684 (TYPE_MODE (TREE_TYPE (exp)),
4685 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp)))))
4686 exp = TREE_OPERAND (exp, 0);
4688 /* If what we're left with is the address of something, we can
4689 convert the address to the final type and output it that
4690 way. */
4691 if (TREE_CODE (exp) == ADDR_EXPR)
4692 exp = build1 (ADDR_EXPR, saved_type, TREE_OPERAND (exp, 0));
4693 /* Likewise for constant ints. */
4694 else if (TREE_CODE (exp) == INTEGER_CST)
4695 exp = fold_convert (saved_type, exp);
4699 /* Eliminate any conversions since we'll be outputting the underlying
4700 constant. */
4701 while (CONVERT_EXPR_P (exp)
4702 || TREE_CODE (exp) == NON_LVALUE_EXPR
4703 || TREE_CODE (exp) == VIEW_CONVERT_EXPR)
4705 HOST_WIDE_INT type_size = int_size_in_bytes (TREE_TYPE (exp));
4706 HOST_WIDE_INT op_size = int_size_in_bytes (TREE_TYPE (TREE_OPERAND (exp, 0)));
4708 /* Make sure eliminating the conversion is really a no-op, except with
4709 VIEW_CONVERT_EXPRs to allow for wild Ada unchecked conversions and
4710 union types to allow for Ada unchecked unions. */
4711 if (type_size > op_size
4712 && TREE_CODE (exp) != VIEW_CONVERT_EXPR
4713 && TREE_CODE (TREE_TYPE (exp)) != UNION_TYPE)
4714 /* Keep the conversion. */
4715 break;
4716 else
4717 exp = TREE_OPERAND (exp, 0);
4720 code = TREE_CODE (TREE_TYPE (exp));
4721 thissize = int_size_in_bytes (TREE_TYPE (exp));
4723 /* Allow a constructor with no elements for any data type.
4724 This means to fill the space with zeros. */
4725 if (TREE_CODE (exp) == CONSTRUCTOR
4726 && vec_safe_is_empty (CONSTRUCTOR_ELTS (exp)))
4728 assemble_zeros (size);
4729 return size;
4732 if (TREE_CODE (exp) == FDESC_EXPR)
4734 #ifdef ASM_OUTPUT_FDESC
4735 HOST_WIDE_INT part = tree_to_shwi (TREE_OPERAND (exp, 1));
4736 tree decl = TREE_OPERAND (exp, 0);
4737 ASM_OUTPUT_FDESC (asm_out_file, decl, part);
4738 #else
4739 gcc_unreachable ();
4740 #endif
4741 return size;
4744 /* Now output the underlying data. If we've handling the padding, return.
4745 Otherwise, break and ensure SIZE is the size written. */
4746 switch (code)
4748 case BOOLEAN_TYPE:
4749 case INTEGER_TYPE:
4750 case ENUMERAL_TYPE:
4751 case POINTER_TYPE:
4752 case REFERENCE_TYPE:
4753 case OFFSET_TYPE:
4754 case FIXED_POINT_TYPE:
4755 case POINTER_BOUNDS_TYPE:
4756 case NULLPTR_TYPE:
4757 cst = expand_expr (exp, NULL_RTX, VOIDmode, EXPAND_INITIALIZER);
4758 if (reverse)
4759 cst = flip_storage_order (TYPE_MODE (TREE_TYPE (exp)), cst);
4760 if (!assemble_integer (cst, MIN (size, thissize), align, 0))
4761 error ("initializer for integer/fixed-point value is too complicated");
4762 break;
4764 case REAL_TYPE:
4765 if (TREE_CODE (exp) != REAL_CST)
4766 error ("initializer for floating value is not a floating constant");
4767 else
4768 assemble_real (TREE_REAL_CST (exp), TYPE_MODE (TREE_TYPE (exp)),
4769 align, reverse);
4770 break;
4772 case COMPLEX_TYPE:
4773 output_constant (TREE_REALPART (exp), thissize / 2, align, reverse);
4774 output_constant (TREE_IMAGPART (exp), thissize / 2,
4775 min_align (align, BITS_PER_UNIT * (thissize / 2)),
4776 reverse);
4777 break;
4779 case ARRAY_TYPE:
4780 case VECTOR_TYPE:
4781 switch (TREE_CODE (exp))
4783 case CONSTRUCTOR:
4784 return output_constructor (exp, size, align, reverse, NULL);
4785 case STRING_CST:
4786 thissize
4787 = MIN ((unsigned HOST_WIDE_INT)TREE_STRING_LENGTH (exp), size);
4788 assemble_string (TREE_STRING_POINTER (exp), thissize);
4789 break;
4790 case VECTOR_CST:
4792 machine_mode inner = TYPE_MODE (TREE_TYPE (TREE_TYPE (exp)));
4793 unsigned int nalign = MIN (align, GET_MODE_ALIGNMENT (inner));
4794 int elt_size = GET_MODE_SIZE (inner);
4795 output_constant (VECTOR_CST_ELT (exp, 0), elt_size, align,
4796 reverse);
4797 thissize = elt_size;
4798 for (unsigned int i = 1; i < VECTOR_CST_NELTS (exp); i++)
4800 output_constant (VECTOR_CST_ELT (exp, i), elt_size, nalign,
4801 reverse);
4802 thissize += elt_size;
4804 break;
4806 default:
4807 gcc_unreachable ();
4809 break;
4811 case RECORD_TYPE:
4812 case UNION_TYPE:
4813 gcc_assert (TREE_CODE (exp) == CONSTRUCTOR);
4814 return output_constructor (exp, size, align, reverse, NULL);
4816 case ERROR_MARK:
4817 return 0;
4819 default:
4820 gcc_unreachable ();
4823 if (size > thissize)
4824 assemble_zeros (size - thissize);
4826 return size;
4829 /* Subroutine of output_constructor, used for computing the size of
4830 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
4831 type with an unspecified upper bound. */
4833 static unsigned HOST_WIDE_INT
4834 array_size_for_constructor (tree val)
4836 tree max_index;
4837 unsigned HOST_WIDE_INT cnt;
4838 tree index, value, tmp;
4839 offset_int i;
4841 /* This code used to attempt to handle string constants that are not
4842 arrays of single-bytes, but nothing else does, so there's no point in
4843 doing it here. */
4844 if (TREE_CODE (val) == STRING_CST)
4845 return TREE_STRING_LENGTH (val);
4847 max_index = NULL_TREE;
4848 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (val), cnt, index, value)
4850 if (TREE_CODE (index) == RANGE_EXPR)
4851 index = TREE_OPERAND (index, 1);
4852 if (max_index == NULL_TREE || tree_int_cst_lt (max_index, index))
4853 max_index = index;
4856 if (max_index == NULL_TREE)
4857 return 0;
4859 /* Compute the total number of array elements. */
4860 tmp = TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val)));
4861 i = wi::to_offset (max_index) - wi::to_offset (tmp) + 1;
4863 /* Multiply by the array element unit size to find number of bytes. */
4864 i *= wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val))));
4866 gcc_assert (wi::fits_uhwi_p (i));
4867 return i.to_uhwi ();
4870 /* Other datastructures + helpers for output_constructor. */
4872 /* output_constructor local state to support interaction with helpers. */
4874 struct oc_local_state {
4876 /* Received arguments. */
4877 tree exp; /* Constructor expression. */
4878 tree type; /* Type of constructor expression. */
4879 unsigned HOST_WIDE_INT size; /* # bytes to output - pad if necessary. */
4880 unsigned int align; /* Known initial alignment. */
4881 tree min_index; /* Lower bound if specified for an array. */
4883 /* Output processing state. */
4884 HOST_WIDE_INT total_bytes; /* # bytes output so far / current position. */
4885 int byte; /* Part of a bitfield byte yet to be output. */
4886 int last_relative_index; /* Implicit or explicit index of the last
4887 array element output within a bitfield. */
4888 bool byte_buffer_in_use; /* Whether BYTE is in use. */
4889 bool reverse; /* Whether reverse storage order is in use. */
4891 /* Current element. */
4892 tree field; /* Current field decl in a record. */
4893 tree val; /* Current element value. */
4894 tree index; /* Current element index. */
4898 /* Helper for output_constructor. From the current LOCAL state, output a
4899 RANGE_EXPR element. */
4901 static void
4902 output_constructor_array_range (oc_local_state *local)
4904 unsigned HOST_WIDE_INT fieldsize
4905 = int_size_in_bytes (TREE_TYPE (local->type));
4907 HOST_WIDE_INT lo_index
4908 = tree_to_shwi (TREE_OPERAND (local->index, 0));
4909 HOST_WIDE_INT hi_index
4910 = tree_to_shwi (TREE_OPERAND (local->index, 1));
4911 HOST_WIDE_INT index;
4913 unsigned int align2
4914 = min_align (local->align, fieldsize * BITS_PER_UNIT);
4916 for (index = lo_index; index <= hi_index; index++)
4918 /* Output the element's initial value. */
4919 if (local->val == NULL_TREE)
4920 assemble_zeros (fieldsize);
4921 else
4922 fieldsize
4923 = output_constant (local->val, fieldsize, align2, local->reverse);
4925 /* Count its size. */
4926 local->total_bytes += fieldsize;
4930 /* Helper for output_constructor. From the current LOCAL state, output a
4931 field element that is not true bitfield or part of an outer one. */
4933 static void
4934 output_constructor_regular_field (oc_local_state *local)
4936 /* Field size and position. Since this structure is static, we know the
4937 positions are constant. */
4938 unsigned HOST_WIDE_INT fieldsize;
4939 HOST_WIDE_INT fieldpos;
4941 unsigned int align2;
4943 /* Output any buffered-up bit-fields preceding this element. */
4944 if (local->byte_buffer_in_use)
4946 assemble_integer (GEN_INT (local->byte), 1, BITS_PER_UNIT, 1);
4947 local->total_bytes++;
4948 local->byte_buffer_in_use = false;
4951 if (local->index != NULL_TREE)
4953 /* Perform the index calculation in modulo arithmetic but
4954 sign-extend the result because Ada has negative DECL_FIELD_OFFSETs
4955 but we are using an unsigned sizetype. */
4956 unsigned prec = TYPE_PRECISION (sizetype);
4957 offset_int idx = wi::sext (wi::to_offset (local->index)
4958 - wi::to_offset (local->min_index), prec);
4959 fieldpos = (idx * wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (local->val))))
4960 .to_short_addr ();
4962 else if (local->field != NULL_TREE)
4963 fieldpos = int_byte_position (local->field);
4964 else
4965 fieldpos = 0;
4967 /* Advance to offset of this element.
4968 Note no alignment needed in an array, since that is guaranteed
4969 if each element has the proper size. */
4970 if (local->field != NULL_TREE || local->index != NULL_TREE)
4972 if (fieldpos > local->total_bytes)
4974 assemble_zeros (fieldpos - local->total_bytes);
4975 local->total_bytes = fieldpos;
4977 else
4978 /* Must not go backwards. */
4979 gcc_assert (fieldpos == local->total_bytes);
4982 /* Find the alignment of this element. */
4983 align2 = min_align (local->align, BITS_PER_UNIT * fieldpos);
4985 /* Determine size this element should occupy. */
4986 if (local->field)
4988 fieldsize = 0;
4990 /* If this is an array with an unspecified upper bound,
4991 the initializer determines the size. */
4992 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4993 but we cannot do this until the deprecated support for
4994 initializing zero-length array members is removed. */
4995 if (TREE_CODE (TREE_TYPE (local->field)) == ARRAY_TYPE
4996 && (!TYPE_DOMAIN (TREE_TYPE (local->field))
4997 || !TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (local->field)))))
4999 fieldsize = array_size_for_constructor (local->val);
5000 /* Given a non-empty initialization, this field had better
5001 be last. Given a flexible array member, the next field
5002 on the chain is a TYPE_DECL of the enclosing struct. */
5003 const_tree next = DECL_CHAIN (local->field);
5004 gcc_assert (!fieldsize || !next || TREE_CODE (next) != FIELD_DECL);
5006 else
5007 fieldsize = tree_to_uhwi (DECL_SIZE_UNIT (local->field));
5009 else
5010 fieldsize = int_size_in_bytes (TREE_TYPE (local->type));
5012 /* Output the element's initial value. */
5013 if (local->val == NULL_TREE)
5014 assemble_zeros (fieldsize);
5015 else
5016 fieldsize
5017 = output_constant (local->val, fieldsize, align2, local->reverse);
5019 /* Count its size. */
5020 local->total_bytes += fieldsize;
5023 /* Helper for output_constructor. From the LOCAL state, output an element
5024 that is a true bitfield or part of an outer one. BIT_OFFSET is the offset
5025 from the start of a possibly ongoing outer byte buffer. */
5027 static void
5028 output_constructor_bitfield (oc_local_state *local, unsigned int bit_offset)
5030 /* Bit size of this element. */
5031 HOST_WIDE_INT ebitsize
5032 = (local->field
5033 ? tree_to_uhwi (DECL_SIZE (local->field))
5034 : tree_to_uhwi (TYPE_SIZE (TREE_TYPE (local->type))));
5036 /* Relative index of this element if this is an array component. */
5037 HOST_WIDE_INT relative_index
5038 = (!local->field
5039 ? (local->index
5040 ? (tree_to_shwi (local->index)
5041 - tree_to_shwi (local->min_index))
5042 : local->last_relative_index + 1)
5043 : 0);
5045 /* Bit position of this element from the start of the containing
5046 constructor. */
5047 HOST_WIDE_INT constructor_relative_ebitpos
5048 = (local->field
5049 ? int_bit_position (local->field)
5050 : ebitsize * relative_index);
5052 /* Bit position of this element from the start of a possibly ongoing
5053 outer byte buffer. */
5054 HOST_WIDE_INT byte_relative_ebitpos
5055 = bit_offset + constructor_relative_ebitpos;
5057 /* From the start of a possibly ongoing outer byte buffer, offsets to
5058 the first bit of this element and to the first bit past the end of
5059 this element. */
5060 HOST_WIDE_INT next_offset = byte_relative_ebitpos;
5061 HOST_WIDE_INT end_offset = byte_relative_ebitpos + ebitsize;
5063 local->last_relative_index = relative_index;
5065 if (local->val == NULL_TREE)
5066 local->val = integer_zero_node;
5068 while (TREE_CODE (local->val) == VIEW_CONVERT_EXPR
5069 || TREE_CODE (local->val) == NON_LVALUE_EXPR)
5070 local->val = TREE_OPERAND (local->val, 0);
5072 if (TREE_CODE (local->val) != INTEGER_CST
5073 && TREE_CODE (local->val) != CONSTRUCTOR)
5075 error ("invalid initial value for member %qE", DECL_NAME (local->field));
5076 return;
5079 /* If this field does not start in this (or next) byte, skip some bytes. */
5080 if (next_offset / BITS_PER_UNIT != local->total_bytes)
5082 /* Output remnant of any bit field in previous bytes. */
5083 if (local->byte_buffer_in_use)
5085 assemble_integer (GEN_INT (local->byte), 1, BITS_PER_UNIT, 1);
5086 local->total_bytes++;
5087 local->byte_buffer_in_use = false;
5090 /* If still not at proper byte, advance to there. */
5091 if (next_offset / BITS_PER_UNIT != local->total_bytes)
5093 gcc_assert (next_offset / BITS_PER_UNIT >= local->total_bytes);
5094 assemble_zeros (next_offset / BITS_PER_UNIT - local->total_bytes);
5095 local->total_bytes = next_offset / BITS_PER_UNIT;
5099 /* Set up the buffer if necessary. */
5100 if (!local->byte_buffer_in_use)
5102 local->byte = 0;
5103 if (ebitsize > 0)
5104 local->byte_buffer_in_use = true;
5107 /* If this is nested constructor, recurse passing the bit offset and the
5108 pending data, then retrieve the new pending data afterwards. */
5109 if (TREE_CODE (local->val) == CONSTRUCTOR)
5111 oc_outer_state temp_state;
5112 temp_state.bit_offset = next_offset % BITS_PER_UNIT;
5113 temp_state.byte = local->byte;
5114 local->total_bytes
5115 += output_constructor (local->val, 0, 0, local->reverse, &temp_state);
5116 local->byte = temp_state.byte;
5117 return;
5120 /* Otherwise, we must split the element into pieces that fall within
5121 separate bytes, and combine each byte with previous or following
5122 bit-fields. */
5123 while (next_offset < end_offset)
5125 int this_time;
5126 int shift;
5127 HOST_WIDE_INT value;
5128 HOST_WIDE_INT next_byte = next_offset / BITS_PER_UNIT;
5129 HOST_WIDE_INT next_bit = next_offset % BITS_PER_UNIT;
5131 /* Advance from byte to byte within this element when necessary. */
5132 while (next_byte != local->total_bytes)
5134 assemble_integer (GEN_INT (local->byte), 1, BITS_PER_UNIT, 1);
5135 local->total_bytes++;
5136 local->byte = 0;
5139 /* Number of bits we can process at once (all part of the same byte). */
5140 this_time = MIN (end_offset - next_offset, BITS_PER_UNIT - next_bit);
5141 if (local->reverse ? !BYTES_BIG_ENDIAN : BYTES_BIG_ENDIAN)
5143 /* For big-endian data, take the most significant bits (of the
5144 bits that are significant) first and put them into bytes from
5145 the most significant end. */
5146 shift = end_offset - next_offset - this_time;
5148 /* Don't try to take a bunch of bits that cross
5149 the word boundary in the INTEGER_CST. We can
5150 only select bits from one element. */
5151 if ((shift / HOST_BITS_PER_WIDE_INT)
5152 != ((shift + this_time - 1) / HOST_BITS_PER_WIDE_INT))
5154 const int end = shift + this_time - 1;
5155 shift = end & -HOST_BITS_PER_WIDE_INT;
5156 this_time = end - shift + 1;
5159 /* Now get the bits from the appropriate constant word. */
5160 value = TREE_INT_CST_ELT (local->val, shift / HOST_BITS_PER_WIDE_INT);
5161 shift = shift & (HOST_BITS_PER_WIDE_INT - 1);
5163 /* Get the result. This works only when:
5164 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
5165 local->byte |= (((value >> shift)
5166 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
5167 << (BITS_PER_UNIT - this_time - next_bit));
5169 else
5171 /* On little-endian machines, take the least significant bits of
5172 the value first and pack them starting at the least significant
5173 bits of the bytes. */
5174 shift = next_offset - byte_relative_ebitpos;
5176 /* Don't try to take a bunch of bits that cross
5177 the word boundary in the INTEGER_CST. We can
5178 only select bits from one element. */
5179 if ((shift / HOST_BITS_PER_WIDE_INT)
5180 != ((shift + this_time - 1) / HOST_BITS_PER_WIDE_INT))
5181 this_time
5182 = HOST_BITS_PER_WIDE_INT - (shift & (HOST_BITS_PER_WIDE_INT - 1));
5184 /* Now get the bits from the appropriate constant word. */
5185 value = TREE_INT_CST_ELT (local->val, shift / HOST_BITS_PER_WIDE_INT);
5186 shift = shift & (HOST_BITS_PER_WIDE_INT - 1);
5188 /* Get the result. This works only when:
5189 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
5190 local->byte |= (((value >> shift)
5191 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
5192 << next_bit);
5195 next_offset += this_time;
5196 local->byte_buffer_in_use = true;
5200 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
5201 Generate at least SIZE bytes, padding if necessary. OUTER designates the
5202 caller output state of relevance in recursive invocations. */
5204 static unsigned HOST_WIDE_INT
5205 output_constructor (tree exp, unsigned HOST_WIDE_INT size, unsigned int align,
5206 bool reverse, oc_outer_state *outer)
5208 unsigned HOST_WIDE_INT cnt;
5209 constructor_elt *ce;
5210 oc_local_state local;
5212 /* Setup our local state to communicate with helpers. */
5213 local.exp = exp;
5214 local.type = TREE_TYPE (exp);
5215 local.size = size;
5216 local.align = align;
5217 if (TREE_CODE (local.type) == ARRAY_TYPE && TYPE_DOMAIN (local.type))
5218 local.min_index = TYPE_MIN_VALUE (TYPE_DOMAIN (local.type));
5219 else
5220 local.min_index = integer_zero_node;
5222 local.total_bytes = 0;
5223 local.byte_buffer_in_use = outer != NULL;
5224 local.byte = outer ? outer->byte : 0;
5225 local.last_relative_index = -1;
5226 /* The storage order is specified for every aggregate type. */
5227 if (AGGREGATE_TYPE_P (local.type))
5228 local.reverse = TYPE_REVERSE_STORAGE_ORDER (local.type);
5229 else
5230 local.reverse = reverse;
5232 gcc_assert (HOST_BITS_PER_WIDE_INT >= BITS_PER_UNIT);
5234 /* As CE goes through the elements of the constant, FIELD goes through the
5235 structure fields if the constant is a structure. If the constant is a
5236 union, we override this by getting the field from the TREE_LIST element.
5237 But the constant could also be an array. Then FIELD is zero.
5239 There is always a maximum of one element in the chain LINK for unions
5240 (even if the initializer in a source program incorrectly contains
5241 more one). */
5243 if (TREE_CODE (local.type) == RECORD_TYPE)
5244 local.field = TYPE_FIELDS (local.type);
5245 else
5246 local.field = NULL_TREE;
5248 for (cnt = 0;
5249 vec_safe_iterate (CONSTRUCTOR_ELTS (exp), cnt, &ce);
5250 cnt++, local.field = local.field ? DECL_CHAIN (local.field) : 0)
5252 local.val = ce->value;
5253 local.index = NULL_TREE;
5255 /* The element in a union constructor specifies the proper field
5256 or index. */
5257 if (RECORD_OR_UNION_TYPE_P (local.type) && ce->index != NULL_TREE)
5258 local.field = ce->index;
5260 else if (TREE_CODE (local.type) == ARRAY_TYPE)
5261 local.index = ce->index;
5263 if (local.field && flag_verbose_asm)
5264 fprintf (asm_out_file, "%s %s:\n",
5265 ASM_COMMENT_START,
5266 DECL_NAME (local.field)
5267 ? IDENTIFIER_POINTER (DECL_NAME (local.field))
5268 : "<anonymous>");
5270 /* Eliminate the marker that makes a cast not be an lvalue. */
5271 if (local.val != NULL_TREE)
5272 STRIP_NOPS (local.val);
5274 /* Output the current element, using the appropriate helper ... */
5276 /* For an array slice not part of an outer bitfield. */
5277 if (!outer
5278 && local.index != NULL_TREE
5279 && TREE_CODE (local.index) == RANGE_EXPR)
5280 output_constructor_array_range (&local);
5282 /* For a field that is neither a true bitfield nor part of an outer one,
5283 known to be at least byte aligned and multiple-of-bytes long. */
5284 else if (!outer
5285 && (local.field == NULL_TREE
5286 || !CONSTRUCTOR_BITFIELD_P (local.field)))
5287 output_constructor_regular_field (&local);
5289 /* For a true bitfield or part of an outer one. Only INTEGER_CSTs are
5290 supported for scalar fields, so we may need to convert first. */
5291 else
5293 if (TREE_CODE (local.val) == REAL_CST)
5294 local.val
5295 = fold_unary (VIEW_CONVERT_EXPR,
5296 build_nonstandard_integer_type
5297 (TYPE_PRECISION (TREE_TYPE (local.val)), 0),
5298 local.val);
5299 output_constructor_bitfield (&local, outer ? outer->bit_offset : 0);
5303 /* If we are not at toplevel, save the pending data for our caller.
5304 Otherwise output the pending data and padding zeros as needed. */
5305 if (outer)
5306 outer->byte = local.byte;
5307 else
5309 if (local.byte_buffer_in_use)
5311 assemble_integer (GEN_INT (local.byte), 1, BITS_PER_UNIT, 1);
5312 local.total_bytes++;
5315 if ((unsigned HOST_WIDE_INT)local.total_bytes < local.size)
5317 assemble_zeros (local.size - local.total_bytes);
5318 local.total_bytes = local.size;
5322 return local.total_bytes;
5325 /* Mark DECL as weak. */
5327 static void
5328 mark_weak (tree decl)
5330 if (DECL_WEAK (decl))
5331 return;
5333 struct symtab_node *n = symtab_node::get (decl);
5334 if (n && n->refuse_visibility_changes)
5335 error ("%+D declared weak after being used", decl);
5336 DECL_WEAK (decl) = 1;
5338 if (DECL_RTL_SET_P (decl)
5339 && MEM_P (DECL_RTL (decl))
5340 && XEXP (DECL_RTL (decl), 0)
5341 && GET_CODE (XEXP (DECL_RTL (decl), 0)) == SYMBOL_REF)
5342 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl), 0)) = 1;
5345 /* Merge weak status between NEWDECL and OLDDECL. */
5347 void
5348 merge_weak (tree newdecl, tree olddecl)
5350 if (DECL_WEAK (newdecl) == DECL_WEAK (olddecl))
5352 if (DECL_WEAK (newdecl) && TARGET_SUPPORTS_WEAK)
5354 tree *pwd;
5355 /* We put the NEWDECL on the weak_decls list at some point
5356 and OLDDECL as well. Keep just OLDDECL on the list. */
5357 for (pwd = &weak_decls; *pwd; pwd = &TREE_CHAIN (*pwd))
5358 if (TREE_VALUE (*pwd) == newdecl)
5360 *pwd = TREE_CHAIN (*pwd);
5361 break;
5364 return;
5367 if (DECL_WEAK (newdecl))
5369 tree wd;
5371 /* NEWDECL is weak, but OLDDECL is not. */
5373 /* If we already output the OLDDECL, we're in trouble; we can't
5374 go back and make it weak. This should never happen in
5375 unit-at-a-time compilation. */
5376 gcc_assert (!TREE_ASM_WRITTEN (olddecl));
5378 /* If we've already generated rtl referencing OLDDECL, we may
5379 have done so in a way that will not function properly with
5380 a weak symbol. Again in unit-at-a-time this should be
5381 impossible. */
5382 gcc_assert (!TREE_USED (olddecl)
5383 || !TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl)));
5385 /* PR 49899: You cannot convert a static function into a weak, public function. */
5386 if (! TREE_PUBLIC (olddecl) && TREE_PUBLIC (newdecl))
5387 error ("weak declaration of %q+D being applied to a already "
5388 "existing, static definition", newdecl);
5390 if (TARGET_SUPPORTS_WEAK)
5392 /* We put the NEWDECL on the weak_decls list at some point.
5393 Replace it with the OLDDECL. */
5394 for (wd = weak_decls; wd; wd = TREE_CHAIN (wd))
5395 if (TREE_VALUE (wd) == newdecl)
5397 TREE_VALUE (wd) = olddecl;
5398 break;
5400 /* We may not find the entry on the list. If NEWDECL is a
5401 weak alias, then we will have already called
5402 globalize_decl to remove the entry; in that case, we do
5403 not need to do anything. */
5406 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
5407 mark_weak (olddecl);
5409 else
5410 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
5411 weak. Just update NEWDECL to indicate that it's weak too. */
5412 mark_weak (newdecl);
5415 /* Declare DECL to be a weak symbol. */
5417 void
5418 declare_weak (tree decl)
5420 gcc_assert (TREE_CODE (decl) != FUNCTION_DECL || !TREE_ASM_WRITTEN (decl));
5421 if (! TREE_PUBLIC (decl))
5423 error ("weak declaration of %q+D must be public", decl);
5424 return;
5426 else if (!TARGET_SUPPORTS_WEAK)
5427 warning (0, "weak declaration of %q+D not supported", decl);
5429 mark_weak (decl);
5430 if (!lookup_attribute ("weak", DECL_ATTRIBUTES (decl)))
5431 DECL_ATTRIBUTES (decl)
5432 = tree_cons (get_identifier ("weak"), NULL, DECL_ATTRIBUTES (decl));
5435 static void
5436 weak_finish_1 (tree decl)
5438 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
5439 const char *const name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5440 #endif
5442 if (! TREE_USED (decl))
5443 return;
5445 #ifdef ASM_WEAKEN_DECL
5446 ASM_WEAKEN_DECL (asm_out_file, decl, name, NULL);
5447 #else
5448 #ifdef ASM_WEAKEN_LABEL
5449 ASM_WEAKEN_LABEL (asm_out_file, name);
5450 #else
5451 #ifdef ASM_OUTPUT_WEAK_ALIAS
5453 static bool warn_once = 0;
5454 if (! warn_once)
5456 warning (0, "only weak aliases are supported in this configuration");
5457 warn_once = 1;
5459 return;
5461 #endif
5462 #endif
5463 #endif
5466 /* Fiven an assembly name, find the decl it is associated with. */
5467 static tree
5468 find_decl (tree target)
5470 symtab_node *node = symtab_node::get_for_asmname (target);
5471 if (node)
5472 return node->decl;
5473 return NULL_TREE;
5476 /* This TREE_LIST contains weakref targets. */
5478 static GTY(()) tree weakref_targets;
5480 /* Emit any pending weak declarations. */
5482 void
5483 weak_finish (void)
5485 tree t;
5487 for (t = weakref_targets; t; t = TREE_CHAIN (t))
5489 tree alias_decl = TREE_PURPOSE (t);
5490 tree target = ultimate_transparent_alias_target (&TREE_VALUE (t));
5492 if (! TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (alias_decl)))
5493 /* Remove alias_decl from the weak list, but leave entries for
5494 the target alone. */
5495 target = NULL_TREE;
5496 #ifndef ASM_OUTPUT_WEAKREF
5497 else if (! TREE_SYMBOL_REFERENCED (target))
5499 /* Use ASM_WEAKEN_LABEL only if ASM_WEAKEN_DECL is not
5500 defined, otherwise we and weak_finish_1 would use
5501 different macros. */
5502 # if defined ASM_WEAKEN_LABEL && ! defined ASM_WEAKEN_DECL
5503 ASM_WEAKEN_LABEL (asm_out_file, IDENTIFIER_POINTER (target));
5504 # else
5505 tree decl = find_decl (target);
5507 if (! decl)
5509 decl = build_decl (DECL_SOURCE_LOCATION (alias_decl),
5510 TREE_CODE (alias_decl), target,
5511 TREE_TYPE (alias_decl));
5513 DECL_EXTERNAL (decl) = 1;
5514 TREE_PUBLIC (decl) = 1;
5515 DECL_ARTIFICIAL (decl) = 1;
5516 TREE_NOTHROW (decl) = TREE_NOTHROW (alias_decl);
5517 TREE_USED (decl) = 1;
5520 weak_finish_1 (decl);
5521 # endif
5523 #endif
5526 tree *p;
5527 tree t2;
5529 /* Remove the alias and the target from the pending weak list
5530 so that we do not emit any .weak directives for the former,
5531 nor multiple .weak directives for the latter. */
5532 for (p = &weak_decls; (t2 = *p) ; )
5534 if (TREE_VALUE (t2) == alias_decl
5535 || target == DECL_ASSEMBLER_NAME (TREE_VALUE (t2)))
5536 *p = TREE_CHAIN (t2);
5537 else
5538 p = &TREE_CHAIN (t2);
5541 /* Remove other weakrefs to the same target, to speed things up. */
5542 for (p = &TREE_CHAIN (t); (t2 = *p) ; )
5544 if (target == ultimate_transparent_alias_target (&TREE_VALUE (t2)))
5545 *p = TREE_CHAIN (t2);
5546 else
5547 p = &TREE_CHAIN (t2);
5552 for (t = weak_decls; t; t = TREE_CHAIN (t))
5554 tree decl = TREE_VALUE (t);
5556 weak_finish_1 (decl);
5560 /* Emit the assembly bits to indicate that DECL is globally visible. */
5562 static void
5563 globalize_decl (tree decl)
5566 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
5567 if (DECL_WEAK (decl))
5569 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
5570 tree *p, t;
5572 #ifdef ASM_WEAKEN_DECL
5573 ASM_WEAKEN_DECL (asm_out_file, decl, name, 0);
5574 #else
5575 ASM_WEAKEN_LABEL (asm_out_file, name);
5576 #endif
5578 /* Remove this function from the pending weak list so that
5579 we do not emit multiple .weak directives for it. */
5580 for (p = &weak_decls; (t = *p) ; )
5582 if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
5583 *p = TREE_CHAIN (t);
5584 else
5585 p = &TREE_CHAIN (t);
5588 /* Remove weakrefs to the same target from the pending weakref
5589 list, for the same reason. */
5590 for (p = &weakref_targets; (t = *p) ; )
5592 if (DECL_ASSEMBLER_NAME (decl)
5593 == ultimate_transparent_alias_target (&TREE_VALUE (t)))
5594 *p = TREE_CHAIN (t);
5595 else
5596 p = &TREE_CHAIN (t);
5599 return;
5601 #endif
5603 targetm.asm_out.globalize_decl_name (asm_out_file, decl);
5606 vec<alias_pair, va_gc> *alias_pairs;
5608 /* Output the assembler code for a define (equate) using ASM_OUTPUT_DEF
5609 or ASM_OUTPUT_DEF_FROM_DECLS. The function defines the symbol whose
5610 tree node is DECL to have the value of the tree node TARGET. */
5612 void
5613 do_assemble_alias (tree decl, tree target)
5615 tree id;
5617 /* Emulated TLS had better not get this var. */
5618 gcc_assert (!(!targetm.have_tls
5619 && VAR_P (decl)
5620 && DECL_THREAD_LOCAL_P (decl)));
5622 if (TREE_ASM_WRITTEN (decl))
5623 return;
5625 id = DECL_ASSEMBLER_NAME (decl);
5626 ultimate_transparent_alias_target (&id);
5627 ultimate_transparent_alias_target (&target);
5629 /* We must force creation of DECL_RTL for debug info generation, even though
5630 we don't use it here. */
5631 make_decl_rtl (decl);
5633 TREE_ASM_WRITTEN (decl) = 1;
5634 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl)) = 1;
5635 TREE_ASM_WRITTEN (id) = 1;
5637 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl)))
5639 if (!TREE_SYMBOL_REFERENCED (target))
5640 weakref_targets = tree_cons (decl, target, weakref_targets);
5642 #ifdef ASM_OUTPUT_WEAKREF
5643 ASM_OUTPUT_WEAKREF (asm_out_file, decl,
5644 IDENTIFIER_POINTER (id),
5645 IDENTIFIER_POINTER (target));
5646 #else
5647 if (!TARGET_SUPPORTS_WEAK)
5649 error_at (DECL_SOURCE_LOCATION (decl),
5650 "weakref is not supported in this configuration");
5651 return;
5653 #endif
5654 return;
5657 #ifdef ASM_OUTPUT_DEF
5658 tree orig_decl = decl;
5660 if (TREE_CODE (decl) == FUNCTION_DECL
5661 && cgraph_node::get (decl)->instrumentation_clone
5662 && cgraph_node::get (decl)->instrumented_version)
5663 orig_decl = cgraph_node::get (decl)->instrumented_version->decl;
5665 /* Make name accessible from other files, if appropriate. */
5667 if (TREE_PUBLIC (decl) || TREE_PUBLIC (orig_decl))
5669 globalize_decl (decl);
5670 maybe_assemble_visibility (decl);
5672 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl)))
5674 #if defined (ASM_OUTPUT_TYPE_DIRECTIVE)
5675 if (targetm.has_ifunc_p ())
5676 ASM_OUTPUT_TYPE_DIRECTIVE
5677 (asm_out_file, IDENTIFIER_POINTER (id),
5678 IFUNC_ASM_TYPE);
5679 else
5680 #endif
5681 error_at (DECL_SOURCE_LOCATION (decl),
5682 "ifunc is not supported on this target");
5685 # ifdef ASM_OUTPUT_DEF_FROM_DECLS
5686 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file, decl, target);
5687 # else
5688 ASM_OUTPUT_DEF (asm_out_file,
5689 IDENTIFIER_POINTER (id),
5690 IDENTIFIER_POINTER (target));
5691 # endif
5692 #elif defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
5694 const char *name;
5695 tree *p, t;
5697 name = IDENTIFIER_POINTER (id);
5698 # ifdef ASM_WEAKEN_DECL
5699 ASM_WEAKEN_DECL (asm_out_file, decl, name, IDENTIFIER_POINTER (target));
5700 # else
5701 ASM_OUTPUT_WEAK_ALIAS (asm_out_file, name, IDENTIFIER_POINTER (target));
5702 # endif
5703 /* Remove this function from the pending weak list so that
5704 we do not emit multiple .weak directives for it. */
5705 for (p = &weak_decls; (t = *p) ; )
5706 if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t))
5707 || id == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
5708 *p = TREE_CHAIN (t);
5709 else
5710 p = &TREE_CHAIN (t);
5712 /* Remove weakrefs to the same target from the pending weakref
5713 list, for the same reason. */
5714 for (p = &weakref_targets; (t = *p) ; )
5716 if (id == ultimate_transparent_alias_target (&TREE_VALUE (t)))
5717 *p = TREE_CHAIN (t);
5718 else
5719 p = &TREE_CHAIN (t);
5722 #endif
5725 /* Emit an assembler directive to make the symbol for DECL an alias to
5726 the symbol for TARGET. */
5728 void
5729 assemble_alias (tree decl, tree target)
5731 tree target_decl;
5733 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl)))
5735 tree alias = DECL_ASSEMBLER_NAME (decl);
5737 ultimate_transparent_alias_target (&target);
5739 if (alias == target)
5740 error ("weakref %q+D ultimately targets itself", decl);
5741 if (TREE_PUBLIC (decl))
5742 error ("weakref %q+D must have static linkage", decl);
5744 else
5746 #if !defined (ASM_OUTPUT_DEF)
5747 # if !defined(ASM_OUTPUT_WEAK_ALIAS) && !defined (ASM_WEAKEN_DECL)
5748 error_at (DECL_SOURCE_LOCATION (decl),
5749 "alias definitions not supported in this configuration");
5750 TREE_ASM_WRITTEN (decl) = 1;
5751 return;
5752 # else
5753 if (!DECL_WEAK (decl))
5755 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl)))
5756 error_at (DECL_SOURCE_LOCATION (decl),
5757 "ifunc is not supported in this configuration");
5758 else
5759 error_at (DECL_SOURCE_LOCATION (decl),
5760 "only weak aliases are supported in this configuration");
5761 TREE_ASM_WRITTEN (decl) = 1;
5762 return;
5764 # endif
5765 #endif
5767 TREE_USED (decl) = 1;
5769 /* Allow aliases to aliases. */
5770 if (TREE_CODE (decl) == FUNCTION_DECL)
5771 cgraph_node::get_create (decl)->alias = true;
5772 else
5773 varpool_node::get_create (decl)->alias = true;
5775 /* If the target has already been emitted, we don't have to queue the
5776 alias. This saves a tad of memory. */
5777 if (symtab->global_info_ready)
5778 target_decl = find_decl (target);
5779 else
5780 target_decl= NULL;
5781 if ((target_decl && TREE_ASM_WRITTEN (target_decl))
5782 || symtab->state >= EXPANSION)
5783 do_assemble_alias (decl, target);
5784 else
5786 alias_pair p = {decl, target};
5787 vec_safe_push (alias_pairs, p);
5791 /* Record and output a table of translations from original function
5792 to its transaction aware clone. Note that tm_pure functions are
5793 considered to be their own clone. */
5795 struct tm_clone_hasher : ggc_cache_ptr_hash<tree_map>
5797 static hashval_t hash (tree_map *m) { return tree_map_hash (m); }
5798 static bool equal (tree_map *a, tree_map *b) { return tree_map_eq (a, b); }
5800 static int
5801 keep_cache_entry (tree_map *&e)
5803 return ggc_marked_p (e->base.from);
5807 static GTY((cache)) hash_table<tm_clone_hasher> *tm_clone_hash;
5809 void
5810 record_tm_clone_pair (tree o, tree n)
5812 struct tree_map **slot, *h;
5814 if (tm_clone_hash == NULL)
5815 tm_clone_hash = hash_table<tm_clone_hasher>::create_ggc (32);
5817 h = ggc_alloc<tree_map> ();
5818 h->hash = htab_hash_pointer (o);
5819 h->base.from = o;
5820 h->to = n;
5822 slot = tm_clone_hash->find_slot_with_hash (h, h->hash, INSERT);
5823 *slot = h;
5826 tree
5827 get_tm_clone_pair (tree o)
5829 if (tm_clone_hash)
5831 struct tree_map *h, in;
5833 in.base.from = o;
5834 in.hash = htab_hash_pointer (o);
5835 h = tm_clone_hash->find_with_hash (&in, in.hash);
5836 if (h)
5837 return h->to;
5839 return NULL_TREE;
5842 struct tm_alias_pair
5844 unsigned int uid;
5845 tree from;
5846 tree to;
5850 /* Dump the actual pairs to the .tm_clone_table section. */
5852 static void
5853 dump_tm_clone_pairs (vec<tm_alias_pair> tm_alias_pairs)
5855 unsigned i;
5856 tm_alias_pair *p;
5857 bool switched = false;
5859 FOR_EACH_VEC_ELT (tm_alias_pairs, i, p)
5861 tree src = p->from;
5862 tree dst = p->to;
5863 struct cgraph_node *src_n = cgraph_node::get (src);
5864 struct cgraph_node *dst_n = cgraph_node::get (dst);
5866 /* The function ipa_tm_create_version() marks the clone as needed if
5867 the original function was needed. But we also mark the clone as
5868 needed if we ever called the clone indirectly through
5869 TM_GETTMCLONE. If neither of these are true, we didn't generate
5870 a clone, and we didn't call it indirectly... no sense keeping it
5871 in the clone table. */
5872 if (!dst_n || !dst_n->definition)
5873 continue;
5875 /* This covers the case where we have optimized the original
5876 function away, and only access the transactional clone. */
5877 if (!src_n || !src_n->definition)
5878 continue;
5880 if (!switched)
5882 switch_to_section (targetm.asm_out.tm_clone_table_section ());
5883 assemble_align (POINTER_SIZE);
5884 switched = true;
5887 assemble_integer (XEXP (DECL_RTL (src), 0),
5888 POINTER_SIZE_UNITS, POINTER_SIZE, 1);
5889 assemble_integer (XEXP (DECL_RTL (dst), 0),
5890 POINTER_SIZE_UNITS, POINTER_SIZE, 1);
5894 /* Provide a default for the tm_clone_table section. */
5896 section *
5897 default_clone_table_section (void)
5899 return get_named_section (NULL, ".tm_clone_table", 3);
5902 /* Helper comparison function for qsorting by the DECL_UID stored in
5903 alias_pair->emitted_diags. */
5905 static int
5906 tm_alias_pair_cmp (const void *x, const void *y)
5908 const tm_alias_pair *p1 = (const tm_alias_pair *) x;
5909 const tm_alias_pair *p2 = (const tm_alias_pair *) y;
5910 if (p1->uid < p2->uid)
5911 return -1;
5912 if (p1->uid > p2->uid)
5913 return 1;
5914 return 0;
5917 void
5918 finish_tm_clone_pairs (void)
5920 vec<tm_alias_pair> tm_alias_pairs = vNULL;
5922 if (tm_clone_hash == NULL)
5923 return;
5925 /* We need a determenistic order for the .tm_clone_table, otherwise
5926 we will get bootstrap comparison failures, so dump the hash table
5927 to a vector, sort it, and dump the vector. */
5929 /* Dump the hashtable to a vector. */
5930 tree_map *map;
5931 hash_table<tm_clone_hasher>::iterator iter;
5932 FOR_EACH_HASH_TABLE_ELEMENT (*tm_clone_hash, map, tree_map *, iter)
5934 tm_alias_pair p = {DECL_UID (map->base.from), map->base.from, map->to};
5935 tm_alias_pairs.safe_push (p);
5937 /* Sort it. */
5938 tm_alias_pairs.qsort (tm_alias_pair_cmp);
5940 /* Dump it. */
5941 dump_tm_clone_pairs (tm_alias_pairs);
5943 tm_clone_hash->empty ();
5944 tm_clone_hash = NULL;
5945 tm_alias_pairs.release ();
5949 /* Emit an assembler directive to set symbol for DECL visibility to
5950 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
5952 void
5953 default_assemble_visibility (tree decl ATTRIBUTE_UNUSED,
5954 int vis ATTRIBUTE_UNUSED)
5956 #ifdef HAVE_GAS_HIDDEN
5957 static const char * const visibility_types[] = {
5958 NULL, "protected", "hidden", "internal"
5961 const char *name, *type;
5962 tree id;
5964 id = DECL_ASSEMBLER_NAME (decl);
5965 ultimate_transparent_alias_target (&id);
5966 name = IDENTIFIER_POINTER (id);
5968 type = visibility_types[vis];
5970 fprintf (asm_out_file, "\t.%s\t", type);
5971 assemble_name (asm_out_file, name);
5972 fprintf (asm_out_file, "\n");
5973 #else
5974 if (!DECL_ARTIFICIAL (decl))
5975 warning (OPT_Wattributes, "visibility attribute not supported "
5976 "in this configuration; ignored");
5977 #endif
5980 /* A helper function to call assemble_visibility when needed for a decl. */
5983 maybe_assemble_visibility (tree decl)
5985 enum symbol_visibility vis = DECL_VISIBILITY (decl);
5987 if (TREE_CODE (decl) == FUNCTION_DECL
5988 && cgraph_node::get (decl)
5989 && cgraph_node::get (decl)->instrumentation_clone
5990 && cgraph_node::get (decl)->instrumented_version)
5991 vis = DECL_VISIBILITY (cgraph_node::get (decl)->instrumented_version->decl);
5993 if (vis != VISIBILITY_DEFAULT)
5995 targetm.asm_out.assemble_visibility (decl, vis);
5996 return 1;
5998 else
5999 return 0;
6002 /* Returns 1 if the target configuration supports defining public symbols
6003 so that one of them will be chosen at link time instead of generating a
6004 multiply-defined symbol error, whether through the use of weak symbols or
6005 a target-specific mechanism for having duplicates discarded. */
6008 supports_one_only (void)
6010 if (SUPPORTS_ONE_ONLY)
6011 return 1;
6012 return TARGET_SUPPORTS_WEAK;
6015 /* Set up DECL as a public symbol that can be defined in multiple
6016 translation units without generating a linker error. */
6018 void
6019 make_decl_one_only (tree decl, tree comdat_group)
6021 struct symtab_node *symbol;
6022 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
6024 TREE_PUBLIC (decl) = 1;
6026 if (VAR_P (decl))
6027 symbol = varpool_node::get_create (decl);
6028 else
6029 symbol = cgraph_node::get_create (decl);
6031 if (SUPPORTS_ONE_ONLY)
6033 #ifdef MAKE_DECL_ONE_ONLY
6034 MAKE_DECL_ONE_ONLY (decl);
6035 #endif
6036 symbol->set_comdat_group (comdat_group);
6038 else if (VAR_P (decl)
6039 && (DECL_INITIAL (decl) == 0
6040 || (!in_lto_p && DECL_INITIAL (decl) == error_mark_node)))
6041 DECL_COMMON (decl) = 1;
6042 else
6044 gcc_assert (TARGET_SUPPORTS_WEAK);
6045 DECL_WEAK (decl) = 1;
6049 void
6050 init_varasm_once (void)
6052 section_htab = hash_table<section_hasher>::create_ggc (31);
6053 object_block_htab = hash_table<object_block_hasher>::create_ggc (31);
6054 const_desc_htab = hash_table<tree_descriptor_hasher>::create_ggc (1009);
6056 shared_constant_pool = create_constant_pool ();
6058 #ifdef TEXT_SECTION_ASM_OP
6059 text_section = get_unnamed_section (SECTION_CODE, output_section_asm_op,
6060 TEXT_SECTION_ASM_OP);
6061 #endif
6063 #ifdef DATA_SECTION_ASM_OP
6064 data_section = get_unnamed_section (SECTION_WRITE, output_section_asm_op,
6065 DATA_SECTION_ASM_OP);
6066 #endif
6068 #ifdef SDATA_SECTION_ASM_OP
6069 sdata_section = get_unnamed_section (SECTION_WRITE, output_section_asm_op,
6070 SDATA_SECTION_ASM_OP);
6071 #endif
6073 #ifdef READONLY_DATA_SECTION_ASM_OP
6074 readonly_data_section = get_unnamed_section (0, output_section_asm_op,
6075 READONLY_DATA_SECTION_ASM_OP);
6076 #endif
6078 #ifdef CTORS_SECTION_ASM_OP
6079 ctors_section = get_unnamed_section (0, output_section_asm_op,
6080 CTORS_SECTION_ASM_OP);
6081 #endif
6083 #ifdef DTORS_SECTION_ASM_OP
6084 dtors_section = get_unnamed_section (0, output_section_asm_op,
6085 DTORS_SECTION_ASM_OP);
6086 #endif
6088 #ifdef BSS_SECTION_ASM_OP
6089 bss_section = get_unnamed_section (SECTION_WRITE | SECTION_BSS,
6090 output_section_asm_op,
6091 BSS_SECTION_ASM_OP);
6092 #endif
6094 #ifdef SBSS_SECTION_ASM_OP
6095 sbss_section = get_unnamed_section (SECTION_WRITE | SECTION_BSS,
6096 output_section_asm_op,
6097 SBSS_SECTION_ASM_OP);
6098 #endif
6100 tls_comm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
6101 | SECTION_COMMON, emit_tls_common);
6102 lcomm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
6103 | SECTION_COMMON, emit_local);
6104 comm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
6105 | SECTION_COMMON, emit_common);
6107 #if defined ASM_OUTPUT_ALIGNED_BSS
6108 bss_noswitch_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS,
6109 emit_bss);
6110 #endif
6112 targetm.asm_out.init_sections ();
6114 if (readonly_data_section == NULL)
6115 readonly_data_section = text_section;
6117 #ifdef ASM_OUTPUT_EXTERNAL
6118 pending_assemble_externals_set = new hash_set<tree>;
6119 #endif
6122 enum tls_model
6123 decl_default_tls_model (const_tree decl)
6125 enum tls_model kind;
6126 bool is_local;
6128 is_local = targetm.binds_local_p (decl);
6129 if (!flag_shlib)
6131 if (is_local)
6132 kind = TLS_MODEL_LOCAL_EXEC;
6133 else
6134 kind = TLS_MODEL_INITIAL_EXEC;
6137 /* Local dynamic is inefficient when we're not combining the
6138 parts of the address. */
6139 else if (optimize && is_local)
6140 kind = TLS_MODEL_LOCAL_DYNAMIC;
6141 else
6142 kind = TLS_MODEL_GLOBAL_DYNAMIC;
6143 if (kind < flag_tls_default)
6144 kind = flag_tls_default;
6146 return kind;
6149 /* Select a set of attributes for section NAME based on the properties
6150 of DECL and whether or not RELOC indicates that DECL's initializer
6151 might contain runtime relocations.
6153 We make the section read-only and executable for a function decl,
6154 read-only for a const data decl, and writable for a non-const data decl. */
6156 unsigned int
6157 default_section_type_flags (tree decl, const char *name, int reloc)
6159 unsigned int flags;
6161 if (decl && TREE_CODE (decl) == FUNCTION_DECL)
6162 flags = SECTION_CODE;
6163 else if (decl)
6165 enum section_category category
6166 = categorize_decl_for_section (decl, reloc);
6167 if (decl_readonly_section_1 (category))
6168 flags = 0;
6169 else if (category == SECCAT_DATA_REL_RO
6170 || category == SECCAT_DATA_REL_RO_LOCAL)
6171 flags = SECTION_WRITE | SECTION_RELRO;
6172 else
6173 flags = SECTION_WRITE;
6175 else
6177 flags = SECTION_WRITE;
6178 if (strcmp (name, ".data.rel.ro") == 0
6179 || strcmp (name, ".data.rel.ro.local") == 0)
6180 flags |= SECTION_RELRO;
6183 if (decl && DECL_P (decl) && DECL_COMDAT_GROUP (decl))
6184 flags |= SECTION_LINKONCE;
6186 if (strcmp (name, ".vtable_map_vars") == 0)
6187 flags |= SECTION_LINKONCE;
6189 if (decl && VAR_P (decl) && DECL_THREAD_LOCAL_P (decl))
6190 flags |= SECTION_TLS | SECTION_WRITE;
6192 if (strcmp (name, ".bss") == 0
6193 || strncmp (name, ".bss.", 5) == 0
6194 || strncmp (name, ".gnu.linkonce.b.", 16) == 0
6195 || strcmp (name, ".persistent.bss") == 0
6196 || strcmp (name, ".sbss") == 0
6197 || strncmp (name, ".sbss.", 6) == 0
6198 || strncmp (name, ".gnu.linkonce.sb.", 17) == 0)
6199 flags |= SECTION_BSS;
6201 if (strcmp (name, ".tdata") == 0
6202 || strncmp (name, ".tdata.", 7) == 0
6203 || strncmp (name, ".gnu.linkonce.td.", 17) == 0)
6204 flags |= SECTION_TLS;
6206 if (strcmp (name, ".tbss") == 0
6207 || strncmp (name, ".tbss.", 6) == 0
6208 || strncmp (name, ".gnu.linkonce.tb.", 17) == 0)
6209 flags |= SECTION_TLS | SECTION_BSS;
6211 /* These three sections have special ELF types. They are neither
6212 SHT_PROGBITS nor SHT_NOBITS, so when changing sections we don't
6213 want to print a section type (@progbits or @nobits). If someone
6214 is silly enough to emit code or TLS variables to one of these
6215 sections, then don't handle them specially. */
6216 if (!(flags & (SECTION_CODE | SECTION_BSS | SECTION_TLS))
6217 && (strcmp (name, ".init_array") == 0
6218 || strcmp (name, ".fini_array") == 0
6219 || strcmp (name, ".preinit_array") == 0))
6220 flags |= SECTION_NOTYPE;
6222 return flags;
6225 /* Return true if the target supports some form of global BSS,
6226 either through bss_noswitch_section, or by selecting a BSS
6227 section in TARGET_ASM_SELECT_SECTION. */
6229 bool
6230 have_global_bss_p (void)
6232 return bss_noswitch_section || targetm.have_switchable_bss_sections;
6235 /* Output assembly to switch to section NAME with attribute FLAGS.
6236 Four variants for common object file formats. */
6238 void
6239 default_no_named_section (const char *name ATTRIBUTE_UNUSED,
6240 unsigned int flags ATTRIBUTE_UNUSED,
6241 tree decl ATTRIBUTE_UNUSED)
6243 /* Some object formats don't support named sections at all. The
6244 front-end should already have flagged this as an error. */
6245 gcc_unreachable ();
6248 #ifndef TLS_SECTION_ASM_FLAG
6249 #define TLS_SECTION_ASM_FLAG 'T'
6250 #endif
6252 void
6253 default_elf_asm_named_section (const char *name, unsigned int flags,
6254 tree decl)
6256 char flagchars[11], *f = flagchars;
6257 unsigned int numeric_value = 0;
6259 /* If we have already declared this section, we can use an
6260 abbreviated form to switch back to it -- unless this section is
6261 part of a COMDAT groups, in which case GAS requires the full
6262 declaration every time. */
6263 if (!(HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
6264 && (flags & SECTION_DECLARED))
6266 fprintf (asm_out_file, "\t.section\t%s\n", name);
6267 return;
6270 /* If we have a machine specific flag, then use the numeric value to pass
6271 this on to GAS. */
6272 if (targetm.asm_out.elf_flags_numeric (flags, &numeric_value))
6273 snprintf (f, sizeof (flagchars), "0x%08x", numeric_value);
6274 else
6276 if (!(flags & SECTION_DEBUG))
6277 *f++ = 'a';
6278 #if defined (HAVE_GAS_SECTION_EXCLUDE) && HAVE_GAS_SECTION_EXCLUDE == 1
6279 if (flags & SECTION_EXCLUDE)
6280 *f++ = 'e';
6281 #endif
6282 if (flags & SECTION_WRITE)
6283 *f++ = 'w';
6284 if (flags & SECTION_CODE)
6285 *f++ = 'x';
6286 if (flags & SECTION_SMALL)
6287 *f++ = 's';
6288 if (flags & SECTION_MERGE)
6289 *f++ = 'M';
6290 if (flags & SECTION_STRINGS)
6291 *f++ = 'S';
6292 if (flags & SECTION_TLS)
6293 *f++ = TLS_SECTION_ASM_FLAG;
6294 if (HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
6295 *f++ = 'G';
6296 #ifdef MACH_DEP_SECTION_ASM_FLAG
6297 if (flags & SECTION_MACH_DEP)
6298 *f++ = MACH_DEP_SECTION_ASM_FLAG;
6299 #endif
6300 *f = '\0';
6303 fprintf (asm_out_file, "\t.section\t%s,\"%s\"", name, flagchars);
6305 if (!(flags & SECTION_NOTYPE))
6307 const char *type;
6308 const char *format;
6310 if (flags & SECTION_BSS)
6311 type = "nobits";
6312 else
6313 type = "progbits";
6315 format = ",@%s";
6316 /* On platforms that use "@" as the assembly comment character,
6317 use "%" instead. */
6318 if (strcmp (ASM_COMMENT_START, "@") == 0)
6319 format = ",%%%s";
6320 fprintf (asm_out_file, format, type);
6322 if (flags & SECTION_ENTSIZE)
6323 fprintf (asm_out_file, ",%d", flags & SECTION_ENTSIZE);
6324 if (HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
6326 if (TREE_CODE (decl) == IDENTIFIER_NODE)
6327 fprintf (asm_out_file, ",%s,comdat", IDENTIFIER_POINTER (decl));
6328 else
6329 fprintf (asm_out_file, ",%s,comdat",
6330 IDENTIFIER_POINTER (DECL_COMDAT_GROUP (decl)));
6334 putc ('\n', asm_out_file);
6337 void
6338 default_coff_asm_named_section (const char *name, unsigned int flags,
6339 tree decl ATTRIBUTE_UNUSED)
6341 char flagchars[8], *f = flagchars;
6343 if (flags & SECTION_WRITE)
6344 *f++ = 'w';
6345 if (flags & SECTION_CODE)
6346 *f++ = 'x';
6347 *f = '\0';
6349 fprintf (asm_out_file, "\t.section\t%s,\"%s\"\n", name, flagchars);
6352 void
6353 default_pe_asm_named_section (const char *name, unsigned int flags,
6354 tree decl)
6356 default_coff_asm_named_section (name, flags, decl);
6358 if (flags & SECTION_LINKONCE)
6360 /* Functions may have been compiled at various levels of
6361 optimization so we can't use `same_size' here.
6362 Instead, have the linker pick one. */
6363 fprintf (asm_out_file, "\t.linkonce %s\n",
6364 (flags & SECTION_CODE ? "discard" : "same_size"));
6368 /* The lame default section selector. */
6370 section *
6371 default_select_section (tree decl, int reloc,
6372 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
6374 if (DECL_P (decl))
6376 if (decl_readonly_section (decl, reloc))
6377 return readonly_data_section;
6379 else if (TREE_CODE (decl) == CONSTRUCTOR)
6381 if (! ((flag_pic && reloc)
6382 || !TREE_READONLY (decl)
6383 || TREE_SIDE_EFFECTS (decl)
6384 || !TREE_CONSTANT (decl)))
6385 return readonly_data_section;
6387 else if (TREE_CODE (decl) == STRING_CST)
6388 return readonly_data_section;
6389 else if (! (flag_pic && reloc))
6390 return readonly_data_section;
6392 return data_section;
6395 enum section_category
6396 categorize_decl_for_section (const_tree decl, int reloc)
6398 enum section_category ret;
6400 if (TREE_CODE (decl) == FUNCTION_DECL)
6401 return SECCAT_TEXT;
6402 else if (TREE_CODE (decl) == STRING_CST)
6404 if ((flag_sanitize & SANITIZE_ADDRESS)
6405 && asan_protect_global (CONST_CAST_TREE (decl)))
6406 /* or !flag_merge_constants */
6407 return SECCAT_RODATA;
6408 else
6409 return SECCAT_RODATA_MERGE_STR;
6411 else if (VAR_P (decl))
6413 if (bss_initializer_p (decl))
6414 ret = SECCAT_BSS;
6415 else if (! TREE_READONLY (decl)
6416 || TREE_SIDE_EFFECTS (decl)
6417 || ! TREE_CONSTANT (DECL_INITIAL (decl)))
6419 /* Here the reloc_rw_mask is not testing whether the section should
6420 be read-only or not, but whether the dynamic link will have to
6421 do something. If so, we wish to segregate the data in order to
6422 minimize cache misses inside the dynamic linker. */
6423 if (reloc & targetm.asm_out.reloc_rw_mask ())
6424 ret = reloc == 1 ? SECCAT_DATA_REL_LOCAL : SECCAT_DATA_REL;
6425 else
6426 ret = SECCAT_DATA;
6428 else if (reloc & targetm.asm_out.reloc_rw_mask ())
6429 ret = reloc == 1 ? SECCAT_DATA_REL_RO_LOCAL : SECCAT_DATA_REL_RO;
6430 else if (reloc || flag_merge_constants < 2
6431 || ((flag_sanitize & SANITIZE_ADDRESS)
6432 && asan_protect_global (CONST_CAST_TREE (decl))))
6433 /* C and C++ don't allow different variables to share the same
6434 location. -fmerge-all-constants allows even that (at the
6435 expense of not conforming). */
6436 ret = SECCAT_RODATA;
6437 else if (TREE_CODE (DECL_INITIAL (decl)) == STRING_CST)
6438 ret = SECCAT_RODATA_MERGE_STR_INIT;
6439 else
6440 ret = SECCAT_RODATA_MERGE_CONST;
6442 else if (TREE_CODE (decl) == CONSTRUCTOR)
6444 if ((reloc & targetm.asm_out.reloc_rw_mask ())
6445 || TREE_SIDE_EFFECTS (decl)
6446 || ! TREE_CONSTANT (decl))
6447 ret = SECCAT_DATA;
6448 else
6449 ret = SECCAT_RODATA;
6451 else
6452 ret = SECCAT_RODATA;
6454 /* There are no read-only thread-local sections. */
6455 if (VAR_P (decl) && DECL_THREAD_LOCAL_P (decl))
6457 /* Note that this would be *just* SECCAT_BSS, except that there's
6458 no concept of a read-only thread-local-data section. */
6459 if (ret == SECCAT_BSS
6460 || (flag_zero_initialized_in_bss
6461 && initializer_zerop (DECL_INITIAL (decl))))
6462 ret = SECCAT_TBSS;
6463 else
6464 ret = SECCAT_TDATA;
6467 /* If the target uses small data sections, select it. */
6468 else if (targetm.in_small_data_p (decl))
6470 if (ret == SECCAT_BSS)
6471 ret = SECCAT_SBSS;
6472 else if (targetm.have_srodata_section && ret == SECCAT_RODATA)
6473 ret = SECCAT_SRODATA;
6474 else
6475 ret = SECCAT_SDATA;
6478 return ret;
6481 static bool
6482 decl_readonly_section_1 (enum section_category category)
6484 switch (category)
6486 case SECCAT_RODATA:
6487 case SECCAT_RODATA_MERGE_STR:
6488 case SECCAT_RODATA_MERGE_STR_INIT:
6489 case SECCAT_RODATA_MERGE_CONST:
6490 case SECCAT_SRODATA:
6491 return true;
6492 default:
6493 return false;
6497 bool
6498 decl_readonly_section (const_tree decl, int reloc)
6500 return decl_readonly_section_1 (categorize_decl_for_section (decl, reloc));
6503 /* Select a section based on the above categorization. */
6505 section *
6506 default_elf_select_section (tree decl, int reloc,
6507 unsigned HOST_WIDE_INT align)
6509 const char *sname;
6510 switch (categorize_decl_for_section (decl, reloc))
6512 case SECCAT_TEXT:
6513 /* We're not supposed to be called on FUNCTION_DECLs. */
6514 gcc_unreachable ();
6515 case SECCAT_RODATA:
6516 return readonly_data_section;
6517 case SECCAT_RODATA_MERGE_STR:
6518 return mergeable_string_section (decl, align, 0);
6519 case SECCAT_RODATA_MERGE_STR_INIT:
6520 return mergeable_string_section (DECL_INITIAL (decl), align, 0);
6521 case SECCAT_RODATA_MERGE_CONST:
6522 return mergeable_constant_section (DECL_MODE (decl), align, 0);
6523 case SECCAT_SRODATA:
6524 sname = ".sdata2";
6525 break;
6526 case SECCAT_DATA:
6527 return data_section;
6528 case SECCAT_DATA_REL:
6529 sname = ".data.rel";
6530 break;
6531 case SECCAT_DATA_REL_LOCAL:
6532 sname = ".data.rel.local";
6533 break;
6534 case SECCAT_DATA_REL_RO:
6535 sname = ".data.rel.ro";
6536 break;
6537 case SECCAT_DATA_REL_RO_LOCAL:
6538 sname = ".data.rel.ro.local";
6539 break;
6540 case SECCAT_SDATA:
6541 sname = ".sdata";
6542 break;
6543 case SECCAT_TDATA:
6544 sname = ".tdata";
6545 break;
6546 case SECCAT_BSS:
6547 if (bss_section)
6548 return bss_section;
6549 sname = ".bss";
6550 break;
6551 case SECCAT_SBSS:
6552 sname = ".sbss";
6553 break;
6554 case SECCAT_TBSS:
6555 sname = ".tbss";
6556 break;
6557 default:
6558 gcc_unreachable ();
6561 return get_named_section (decl, sname, reloc);
6564 /* Construct a unique section name based on the decl name and the
6565 categorization performed above. */
6567 void
6568 default_unique_section (tree decl, int reloc)
6570 /* We only need to use .gnu.linkonce if we don't have COMDAT groups. */
6571 bool one_only = DECL_ONE_ONLY (decl) && !HAVE_COMDAT_GROUP;
6572 const char *prefix, *name, *linkonce;
6573 char *string;
6574 tree id;
6576 switch (categorize_decl_for_section (decl, reloc))
6578 case SECCAT_TEXT:
6579 prefix = one_only ? ".t" : ".text";
6580 break;
6581 case SECCAT_RODATA:
6582 case SECCAT_RODATA_MERGE_STR:
6583 case SECCAT_RODATA_MERGE_STR_INIT:
6584 case SECCAT_RODATA_MERGE_CONST:
6585 prefix = one_only ? ".r" : ".rodata";
6586 break;
6587 case SECCAT_SRODATA:
6588 prefix = one_only ? ".s2" : ".sdata2";
6589 break;
6590 case SECCAT_DATA:
6591 prefix = one_only ? ".d" : ".data";
6592 break;
6593 case SECCAT_DATA_REL:
6594 prefix = one_only ? ".d.rel" : ".data.rel";
6595 break;
6596 case SECCAT_DATA_REL_LOCAL:
6597 prefix = one_only ? ".d.rel.local" : ".data.rel.local";
6598 break;
6599 case SECCAT_DATA_REL_RO:
6600 prefix = one_only ? ".d.rel.ro" : ".data.rel.ro";
6601 break;
6602 case SECCAT_DATA_REL_RO_LOCAL:
6603 prefix = one_only ? ".d.rel.ro.local" : ".data.rel.ro.local";
6604 break;
6605 case SECCAT_SDATA:
6606 prefix = one_only ? ".s" : ".sdata";
6607 break;
6608 case SECCAT_BSS:
6609 prefix = one_only ? ".b" : ".bss";
6610 break;
6611 case SECCAT_SBSS:
6612 prefix = one_only ? ".sb" : ".sbss";
6613 break;
6614 case SECCAT_TDATA:
6615 prefix = one_only ? ".td" : ".tdata";
6616 break;
6617 case SECCAT_TBSS:
6618 prefix = one_only ? ".tb" : ".tbss";
6619 break;
6620 default:
6621 gcc_unreachable ();
6624 id = DECL_ASSEMBLER_NAME (decl);
6625 ultimate_transparent_alias_target (&id);
6626 name = IDENTIFIER_POINTER (id);
6627 name = targetm.strip_name_encoding (name);
6629 /* If we're using one_only, then there needs to be a .gnu.linkonce
6630 prefix to the section name. */
6631 linkonce = one_only ? ".gnu.linkonce" : "";
6633 string = ACONCAT ((linkonce, prefix, ".", name, NULL));
6635 set_decl_section_name (decl, string);
6638 /* Subroutine of compute_reloc_for_rtx for leaf rtxes. */
6640 static int
6641 compute_reloc_for_rtx_1 (const_rtx x)
6643 switch (GET_CODE (x))
6645 case SYMBOL_REF:
6646 return SYMBOL_REF_LOCAL_P (x) ? 1 : 2;
6647 case LABEL_REF:
6648 return 1;
6649 default:
6650 return 0;
6654 /* Like compute_reloc_for_constant, except for an RTX. The return value
6655 is a mask for which bit 1 indicates a global relocation, and bit 0
6656 indicates a local relocation. */
6658 static int
6659 compute_reloc_for_rtx (const_rtx x)
6661 switch (GET_CODE (x))
6663 case SYMBOL_REF:
6664 case LABEL_REF:
6665 return compute_reloc_for_rtx_1 (x);
6667 case CONST:
6669 int reloc = 0;
6670 subrtx_iterator::array_type array;
6671 FOR_EACH_SUBRTX (iter, array, x, ALL)
6672 reloc |= compute_reloc_for_rtx_1 (*iter);
6673 return reloc;
6676 default:
6677 return 0;
6681 section *
6682 default_select_rtx_section (machine_mode mode ATTRIBUTE_UNUSED,
6683 rtx x,
6684 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
6686 if (compute_reloc_for_rtx (x) & targetm.asm_out.reloc_rw_mask ())
6687 return data_section;
6688 else
6689 return readonly_data_section;
6692 section *
6693 default_elf_select_rtx_section (machine_mode mode, rtx x,
6694 unsigned HOST_WIDE_INT align)
6696 int reloc = compute_reloc_for_rtx (x);
6698 /* ??? Handle small data here somehow. */
6700 if (reloc & targetm.asm_out.reloc_rw_mask ())
6702 if (reloc == 1)
6703 return get_named_section (NULL, ".data.rel.ro.local", 1);
6704 else
6705 return get_named_section (NULL, ".data.rel.ro", 3);
6708 return mergeable_constant_section (mode, align, 0);
6711 /* Set the generally applicable flags on the SYMBOL_REF for EXP. */
6713 void
6714 default_encode_section_info (tree decl, rtx rtl, int first ATTRIBUTE_UNUSED)
6716 rtx symbol;
6717 int flags;
6719 /* Careful not to prod global register variables. */
6720 if (!MEM_P (rtl))
6721 return;
6722 symbol = XEXP (rtl, 0);
6723 if (GET_CODE (symbol) != SYMBOL_REF)
6724 return;
6726 flags = SYMBOL_REF_FLAGS (symbol) & SYMBOL_FLAG_HAS_BLOCK_INFO;
6727 if (TREE_CODE (decl) == FUNCTION_DECL)
6728 flags |= SYMBOL_FLAG_FUNCTION;
6729 if (targetm.binds_local_p (decl))
6730 flags |= SYMBOL_FLAG_LOCAL;
6731 if (VAR_P (decl) && DECL_THREAD_LOCAL_P (decl))
6732 flags |= DECL_TLS_MODEL (decl) << SYMBOL_FLAG_TLS_SHIFT;
6733 else if (targetm.in_small_data_p (decl))
6734 flags |= SYMBOL_FLAG_SMALL;
6735 /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names? Without
6736 being PUBLIC, the thing *must* be defined in this translation unit.
6737 Prevent this buglet from being propagated into rtl code as well. */
6738 if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
6739 flags |= SYMBOL_FLAG_EXTERNAL;
6741 SYMBOL_REF_FLAGS (symbol) = flags;
6744 /* By default, we do nothing for encode_section_info, so we need not
6745 do anything but discard the '*' marker. */
6747 const char *
6748 default_strip_name_encoding (const char *str)
6750 return str + (*str == '*');
6753 #ifdef ASM_OUTPUT_DEF
6754 /* The default implementation of TARGET_ASM_OUTPUT_ANCHOR. Define the
6755 anchor relative to ".", the current section position. */
6757 void
6758 default_asm_output_anchor (rtx symbol)
6760 char buffer[100];
6762 sprintf (buffer, "*. + " HOST_WIDE_INT_PRINT_DEC,
6763 SYMBOL_REF_BLOCK_OFFSET (symbol));
6764 ASM_OUTPUT_DEF (asm_out_file, XSTR (symbol, 0), buffer);
6766 #endif
6768 /* The default implementation of TARGET_USE_ANCHORS_FOR_SYMBOL_P. */
6770 bool
6771 default_use_anchors_for_symbol_p (const_rtx symbol)
6773 section *sect;
6774 tree decl;
6776 /* Don't use anchors for mergeable sections. The linker might move
6777 the objects around. */
6778 sect = SYMBOL_REF_BLOCK (symbol)->sect;
6779 if (sect->common.flags & SECTION_MERGE)
6780 return false;
6782 /* Don't use anchors for small data sections. The small data register
6783 acts as an anchor for such sections. */
6784 if (sect->common.flags & SECTION_SMALL)
6785 return false;
6787 decl = SYMBOL_REF_DECL (symbol);
6788 if (decl && DECL_P (decl))
6790 /* Don't use section anchors for decls that might be defined or
6791 usurped by other modules. */
6792 if (TREE_PUBLIC (decl) && !decl_binds_to_current_def_p (decl))
6793 return false;
6795 /* Don't use section anchors for decls that will be placed in a
6796 small data section. */
6797 /* ??? Ideally, this check would be redundant with the SECTION_SMALL
6798 one above. The problem is that we only use SECTION_SMALL for
6799 sections that should be marked as small in the section directive. */
6800 if (targetm.in_small_data_p (decl))
6801 return false;
6803 /* Don't use section anchors for decls that won't fit inside a single
6804 anchor range to reduce the amount of instructions require to refer
6805 to the entire declaration. */
6806 if (decl && DECL_SIZE (decl)
6807 && tree_to_shwi (DECL_SIZE (decl))
6808 >= (targetm.max_anchor_offset * BITS_PER_UNIT))
6809 return false;
6812 return true;
6815 /* Return true when RESOLUTION indicate that symbol will be bound to the
6816 definition provided by current .o file. */
6818 static bool
6819 resolution_to_local_definition_p (enum ld_plugin_symbol_resolution resolution)
6821 return (resolution == LDPR_PREVAILING_DEF
6822 || resolution == LDPR_PREVAILING_DEF_IRONLY_EXP
6823 || resolution == LDPR_PREVAILING_DEF_IRONLY);
6826 /* Return true when RESOLUTION indicate that symbol will be bound locally
6827 within current executable or DSO. */
6829 static bool
6830 resolution_local_p (enum ld_plugin_symbol_resolution resolution)
6832 return (resolution == LDPR_PREVAILING_DEF
6833 || resolution == LDPR_PREVAILING_DEF_IRONLY
6834 || resolution == LDPR_PREVAILING_DEF_IRONLY_EXP
6835 || resolution == LDPR_PREEMPTED_REG
6836 || resolution == LDPR_PREEMPTED_IR
6837 || resolution == LDPR_RESOLVED_IR
6838 || resolution == LDPR_RESOLVED_EXEC);
6841 /* COMMON_LOCAL_P is true means that the linker can guarantee that an
6842 uninitialized common symbol in the executable will still be defined
6843 (through COPY relocation) in the executable. */
6845 bool
6846 default_binds_local_p_3 (const_tree exp, bool shlib, bool weak_dominate,
6847 bool extern_protected_data, bool common_local_p)
6849 /* A non-decl is an entry in the constant pool. */
6850 if (!DECL_P (exp))
6851 return true;
6853 /* Weakrefs may not bind locally, even though the weakref itself is always
6854 static and therefore local. Similarly, the resolver for ifunc functions
6855 might resolve to a non-local function.
6856 FIXME: We can resolve the weakref case more curefuly by looking at the
6857 weakref alias. */
6858 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (exp))
6859 || (TREE_CODE (exp) == FUNCTION_DECL
6860 && lookup_attribute ("ifunc", DECL_ATTRIBUTES (exp))))
6861 return false;
6863 /* Static variables are always local. */
6864 if (! TREE_PUBLIC (exp))
6865 return true;
6867 /* With resolution file in hand, take look into resolutions.
6868 We can't just return true for resolved_locally symbols,
6869 because dynamic linking might overwrite symbols
6870 in shared libraries. */
6871 bool resolved_locally = false;
6873 bool uninited_common = (DECL_COMMON (exp)
6874 && (DECL_INITIAL (exp) == NULL
6875 || (!in_lto_p
6876 && DECL_INITIAL (exp) == error_mark_node)));
6878 /* A non-external variable is defined locally only if it isn't
6879 uninitialized COMMON variable or common_local_p is true. */
6880 bool defined_locally = (!DECL_EXTERNAL (exp)
6881 && (!uninited_common || common_local_p));
6882 if (symtab_node *node = symtab_node::get (exp))
6884 if (node->in_other_partition)
6885 defined_locally = true;
6886 if (node->can_be_discarded_p ())
6888 else if (resolution_to_local_definition_p (node->resolution))
6889 defined_locally = resolved_locally = true;
6890 else if (resolution_local_p (node->resolution))
6891 resolved_locally = true;
6893 if (defined_locally && weak_dominate && !shlib)
6894 resolved_locally = true;
6896 /* Undefined weak symbols are never defined locally. */
6897 if (DECL_WEAK (exp) && !defined_locally)
6898 return false;
6900 /* A symbol is local if the user has said explicitly that it will be,
6901 or if we have a definition for the symbol. We cannot infer visibility
6902 for undefined symbols. */
6903 if (DECL_VISIBILITY (exp) != VISIBILITY_DEFAULT
6904 && (TREE_CODE (exp) == FUNCTION_DECL
6905 || !extern_protected_data
6906 || DECL_VISIBILITY (exp) != VISIBILITY_PROTECTED)
6907 && (DECL_VISIBILITY_SPECIFIED (exp) || defined_locally))
6908 return true;
6910 /* If PIC, then assume that any global name can be overridden by
6911 symbols resolved from other modules. */
6912 if (shlib)
6913 return false;
6915 /* Variables defined outside this object might not be local. */
6916 if (DECL_EXTERNAL (exp) && !resolved_locally)
6917 return false;
6919 /* Non-dominant weak symbols are not defined locally. */
6920 if (DECL_WEAK (exp) && !resolved_locally)
6921 return false;
6923 /* Uninitialized COMMON variable may be unified with symbols
6924 resolved from other modules. */
6925 if (uninited_common && !resolved_locally)
6926 return false;
6928 /* Otherwise we're left with initialized (or non-common) global data
6929 which is of necessity defined locally. */
6930 return true;
6933 /* Assume ELF-ish defaults, since that's pretty much the most liberal
6934 wrt cross-module name binding. */
6936 bool
6937 default_binds_local_p (const_tree exp)
6939 return default_binds_local_p_3 (exp, flag_shlib != 0, true, false, false);
6942 /* Similar to default_binds_local_p, but common symbol may be local and
6943 extern protected data is non-local. */
6945 bool
6946 default_binds_local_p_2 (const_tree exp)
6948 return default_binds_local_p_3 (exp, flag_shlib != 0, true, true,
6949 !flag_pic);
6952 bool
6953 default_binds_local_p_1 (const_tree exp, int shlib)
6955 return default_binds_local_p_3 (exp, shlib != 0, false, false, false);
6958 /* Return true when references to DECL must bind to current definition in
6959 final executable.
6961 The condition is usually equivalent to whether the function binds to the
6962 current module (shared library or executable), that is to binds_local_p.
6963 We use this fact to avoid need for another target hook and implement
6964 the logic using binds_local_p and just special cases where
6965 decl_binds_to_current_def_p is stronger than binds_local_p. In particular
6966 the weak definitions (that can be overwritten at linktime by other
6967 definition from different object file) and when resolution info is available
6968 we simply use the knowledge passed to us by linker plugin. */
6969 bool
6970 decl_binds_to_current_def_p (const_tree decl)
6972 gcc_assert (DECL_P (decl));
6973 if (!targetm.binds_local_p (decl))
6974 return false;
6975 if (!TREE_PUBLIC (decl))
6976 return true;
6978 /* When resolution is available, just use it. */
6979 if (symtab_node *node = symtab_node::get (decl))
6981 if (node->resolution != LDPR_UNKNOWN
6982 && !node->can_be_discarded_p ())
6983 return resolution_to_local_definition_p (node->resolution);
6986 /* Otherwise we have to assume the worst for DECL_WEAK (hidden weaks
6987 binds locally but still can be overwritten), DECL_COMMON (can be merged
6988 with a non-common definition somewhere in the same module) or
6989 DECL_EXTERNAL.
6990 This rely on fact that binds_local_p behave as decl_replaceable_p
6991 for all other declaration types. */
6992 if (DECL_WEAK (decl))
6993 return false;
6994 if (DECL_COMMON (decl)
6995 && (DECL_INITIAL (decl) == NULL
6996 || (!in_lto_p && DECL_INITIAL (decl) == error_mark_node)))
6997 return false;
6998 if (DECL_EXTERNAL (decl))
6999 return false;
7000 return true;
7003 /* A replaceable function or variable is one which may be replaced
7004 at link-time with an entirely different definition, provided that the
7005 replacement has the same type. For example, functions declared
7006 with __attribute__((weak)) on most systems are replaceable.
7008 COMDAT functions are not replaceable, since all definitions of the
7009 function must be equivalent. It is important that COMDAT functions
7010 not be treated as replaceable so that use of C++ template
7011 instantiations is not penalized. */
7013 bool
7014 decl_replaceable_p (tree decl)
7016 gcc_assert (DECL_P (decl));
7017 if (!TREE_PUBLIC (decl) || DECL_COMDAT (decl))
7018 return false;
7019 if (!flag_semantic_interposition
7020 && !DECL_WEAK (decl))
7021 return false;
7022 return !decl_binds_to_current_def_p (decl);
7025 /* Default function to output code that will globalize a label. A
7026 target must define GLOBAL_ASM_OP or provide its own function to
7027 globalize a label. */
7028 #ifdef GLOBAL_ASM_OP
7029 void
7030 default_globalize_label (FILE * stream, const char *name)
7032 fputs (GLOBAL_ASM_OP, stream);
7033 assemble_name (stream, name);
7034 putc ('\n', stream);
7036 #endif /* GLOBAL_ASM_OP */
7038 /* Default function to output code that will globalize a declaration. */
7039 void
7040 default_globalize_decl_name (FILE * stream, tree decl)
7042 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
7043 targetm.asm_out.globalize_label (stream, name);
7046 /* Default function to output a label for unwind information. The
7047 default is to do nothing. A target that needs nonlocal labels for
7048 unwind information must provide its own function to do this. */
7049 void
7050 default_emit_unwind_label (FILE * stream ATTRIBUTE_UNUSED,
7051 tree decl ATTRIBUTE_UNUSED,
7052 int for_eh ATTRIBUTE_UNUSED,
7053 int empty ATTRIBUTE_UNUSED)
7057 /* Default function to output a label to divide up the exception table.
7058 The default is to do nothing. A target that needs/wants to divide
7059 up the table must provide it's own function to do this. */
7060 void
7061 default_emit_except_table_label (FILE * stream ATTRIBUTE_UNUSED)
7065 /* This is how to output an internal numbered label where PREFIX is
7066 the class of label and LABELNO is the number within the class. */
7068 void
7069 default_generate_internal_label (char *buf, const char *prefix,
7070 unsigned long labelno)
7072 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, labelno);
7075 /* This is how to output an internal numbered label where PREFIX is
7076 the class of label and LABELNO is the number within the class. */
7078 void
7079 default_internal_label (FILE *stream, const char *prefix,
7080 unsigned long labelno)
7082 char *const buf = (char *) alloca (40 + strlen (prefix));
7083 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, labelno);
7084 ASM_OUTPUT_INTERNAL_LABEL (stream, buf);
7088 /* The default implementation of ASM_DECLARE_CONSTANT_NAME. */
7090 void
7091 default_asm_declare_constant_name (FILE *file, const char *name,
7092 const_tree exp ATTRIBUTE_UNUSED,
7093 HOST_WIDE_INT size ATTRIBUTE_UNUSED)
7095 assemble_label (file, name);
7098 /* This is the default behavior at the beginning of a file. It's
7099 controlled by two other target-hook toggles. */
7100 void
7101 default_file_start (void)
7103 if (targetm.asm_file_start_app_off
7104 && !(flag_verbose_asm || flag_debug_asm || flag_dump_rtl_in_asm))
7105 fputs (ASM_APP_OFF, asm_out_file);
7107 if (targetm.asm_file_start_file_directive)
7109 /* LTO produced units have no meaningful main_input_filename. */
7110 if (in_lto_p)
7111 output_file_directive (asm_out_file, "<artificial>");
7112 else
7113 output_file_directive (asm_out_file, main_input_filename);
7117 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
7118 which emits a special section directive used to indicate whether or
7119 not this object file needs an executable stack. This is primarily
7120 a GNU extension to ELF but could be used on other targets. */
7122 int trampolines_created;
7124 void
7125 file_end_indicate_exec_stack (void)
7127 unsigned int flags = SECTION_DEBUG;
7128 if (trampolines_created)
7129 flags |= SECTION_CODE;
7131 switch_to_section (get_section (".note.GNU-stack", flags, NULL));
7134 /* Emit a special section directive to indicate that this object file
7135 was compiled with -fsplit-stack. This is used to let the linker
7136 detect calls between split-stack code and non-split-stack code, so
7137 that it can modify the split-stack code to allocate a sufficiently
7138 large stack. We emit another special section if there are any
7139 functions in this file which have the no_split_stack attribute, to
7140 prevent the linker from warning about being unable to convert the
7141 functions if they call non-split-stack code. */
7143 void
7144 file_end_indicate_split_stack (void)
7146 if (flag_split_stack)
7148 switch_to_section (get_section (".note.GNU-split-stack", SECTION_DEBUG,
7149 NULL));
7150 if (saw_no_split_stack)
7151 switch_to_section (get_section (".note.GNU-no-split-stack",
7152 SECTION_DEBUG, NULL));
7156 /* Output DIRECTIVE (a C string) followed by a newline. This is used as
7157 a get_unnamed_section callback. */
7159 void
7160 output_section_asm_op (const void *directive)
7162 fprintf (asm_out_file, "%s\n", (const char *) directive);
7165 /* Emit assembly code to switch to section NEW_SECTION. Do nothing if
7166 the current section is NEW_SECTION. */
7168 void
7169 switch_to_section (section *new_section)
7171 if (in_section == new_section)
7172 return;
7174 if (new_section->common.flags & SECTION_FORGET)
7175 in_section = NULL;
7176 else
7177 in_section = new_section;
7179 switch (SECTION_STYLE (new_section))
7181 case SECTION_NAMED:
7182 targetm.asm_out.named_section (new_section->named.name,
7183 new_section->named.common.flags,
7184 new_section->named.decl);
7185 break;
7187 case SECTION_UNNAMED:
7188 new_section->unnamed.callback (new_section->unnamed.data);
7189 break;
7191 case SECTION_NOSWITCH:
7192 gcc_unreachable ();
7193 break;
7196 new_section->common.flags |= SECTION_DECLARED;
7199 /* If block symbol SYMBOL has not yet been assigned an offset, place
7200 it at the end of its block. */
7202 void
7203 place_block_symbol (rtx symbol)
7205 unsigned HOST_WIDE_INT size, mask, offset;
7206 struct constant_descriptor_rtx *desc;
7207 unsigned int alignment;
7208 struct object_block *block;
7209 tree decl;
7211 gcc_assert (SYMBOL_REF_BLOCK (symbol));
7212 if (SYMBOL_REF_BLOCK_OFFSET (symbol) >= 0)
7213 return;
7215 /* Work out the symbol's size and alignment. */
7216 if (CONSTANT_POOL_ADDRESS_P (symbol))
7218 desc = SYMBOL_REF_CONSTANT (symbol);
7219 alignment = desc->align;
7220 size = GET_MODE_SIZE (desc->mode);
7222 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
7224 decl = SYMBOL_REF_DECL (symbol);
7225 gcc_checking_assert (DECL_IN_CONSTANT_POOL (decl));
7226 alignment = DECL_ALIGN (decl);
7227 size = get_constant_size (DECL_INITIAL (decl));
7228 if ((flag_sanitize & SANITIZE_ADDRESS)
7229 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
7230 && asan_protect_global (DECL_INITIAL (decl)))
7232 size += asan_red_zone_size (size);
7233 alignment = MAX (alignment,
7234 ASAN_RED_ZONE_SIZE * BITS_PER_UNIT);
7237 else
7239 struct symtab_node *snode;
7240 decl = SYMBOL_REF_DECL (symbol);
7242 snode = symtab_node::get (decl);
7243 if (snode->alias)
7245 rtx target = DECL_RTL (snode->ultimate_alias_target ()->decl);
7247 gcc_assert (MEM_P (target)
7248 && GET_CODE (XEXP (target, 0)) == SYMBOL_REF
7249 && SYMBOL_REF_HAS_BLOCK_INFO_P (XEXP (target, 0)));
7250 target = XEXP (target, 0);
7251 place_block_symbol (target);
7252 SYMBOL_REF_BLOCK_OFFSET (symbol) = SYMBOL_REF_BLOCK_OFFSET (target);
7253 return;
7255 alignment = get_variable_align (decl);
7256 size = tree_to_uhwi (DECL_SIZE_UNIT (decl));
7257 if ((flag_sanitize & SANITIZE_ADDRESS)
7258 && asan_protect_global (decl))
7260 size += asan_red_zone_size (size);
7261 alignment = MAX (alignment,
7262 ASAN_RED_ZONE_SIZE * BITS_PER_UNIT);
7266 /* Calculate the object's offset from the start of the block. */
7267 block = SYMBOL_REF_BLOCK (symbol);
7268 mask = alignment / BITS_PER_UNIT - 1;
7269 offset = (block->size + mask) & ~mask;
7270 SYMBOL_REF_BLOCK_OFFSET (symbol) = offset;
7272 /* Record the block's new alignment and size. */
7273 block->alignment = MAX (block->alignment, alignment);
7274 block->size = offset + size;
7276 vec_safe_push (block->objects, symbol);
7279 /* Return the anchor that should be used to address byte offset OFFSET
7280 from the first object in BLOCK. MODEL is the TLS model used
7281 to access it. */
7284 get_section_anchor (struct object_block *block, HOST_WIDE_INT offset,
7285 enum tls_model model)
7287 char label[100];
7288 unsigned int begin, middle, end;
7289 unsigned HOST_WIDE_INT min_offset, max_offset, range, bias, delta;
7290 rtx anchor;
7292 /* Work out the anchor's offset. Use an offset of 0 for the first
7293 anchor so that we don't pessimize the case where we take the address
7294 of a variable at the beginning of the block. This is particularly
7295 useful when a block has only one variable assigned to it.
7297 We try to place anchors RANGE bytes apart, so there can then be
7298 anchors at +/-RANGE, +/-2 * RANGE, and so on, up to the limits of
7299 a ptr_mode offset. With some target settings, the lowest such
7300 anchor might be out of range for the lowest ptr_mode offset;
7301 likewise the highest anchor for the highest offset. Use anchors
7302 at the extreme ends of the ptr_mode range in such cases.
7304 All arithmetic uses unsigned integers in order to avoid
7305 signed overflow. */
7306 max_offset = (unsigned HOST_WIDE_INT) targetm.max_anchor_offset;
7307 min_offset = (unsigned HOST_WIDE_INT) targetm.min_anchor_offset;
7308 range = max_offset - min_offset + 1;
7309 if (range == 0)
7310 offset = 0;
7311 else
7313 bias = HOST_WIDE_INT_1U << (GET_MODE_BITSIZE (ptr_mode) - 1);
7314 if (offset < 0)
7316 delta = -(unsigned HOST_WIDE_INT) offset + max_offset;
7317 delta -= delta % range;
7318 if (delta > bias)
7319 delta = bias;
7320 offset = (HOST_WIDE_INT) (-delta);
7322 else
7324 delta = (unsigned HOST_WIDE_INT) offset - min_offset;
7325 delta -= delta % range;
7326 if (delta > bias - 1)
7327 delta = bias - 1;
7328 offset = (HOST_WIDE_INT) delta;
7332 /* Do a binary search to see if there's already an anchor we can use.
7333 Set BEGIN to the new anchor's index if not. */
7334 begin = 0;
7335 end = vec_safe_length (block->anchors);
7336 while (begin != end)
7338 middle = (end + begin) / 2;
7339 anchor = (*block->anchors)[middle];
7340 if (SYMBOL_REF_BLOCK_OFFSET (anchor) > offset)
7341 end = middle;
7342 else if (SYMBOL_REF_BLOCK_OFFSET (anchor) < offset)
7343 begin = middle + 1;
7344 else if (SYMBOL_REF_TLS_MODEL (anchor) > model)
7345 end = middle;
7346 else if (SYMBOL_REF_TLS_MODEL (anchor) < model)
7347 begin = middle + 1;
7348 else
7349 return anchor;
7352 /* Create a new anchor with a unique label. */
7353 ASM_GENERATE_INTERNAL_LABEL (label, "LANCHOR", anchor_labelno++);
7354 anchor = create_block_symbol (ggc_strdup (label), block, offset);
7355 SYMBOL_REF_FLAGS (anchor) |= SYMBOL_FLAG_LOCAL | SYMBOL_FLAG_ANCHOR;
7356 SYMBOL_REF_FLAGS (anchor) |= model << SYMBOL_FLAG_TLS_SHIFT;
7358 /* Insert it at index BEGIN. */
7359 vec_safe_insert (block->anchors, begin, anchor);
7360 return anchor;
7363 /* Output the objects in BLOCK. */
7365 static void
7366 output_object_block (struct object_block *block)
7368 struct constant_descriptor_rtx *desc;
7369 unsigned int i;
7370 HOST_WIDE_INT offset;
7371 tree decl;
7372 rtx symbol;
7374 if (!block->objects)
7375 return;
7377 /* Switch to the section and make sure that the first byte is
7378 suitably aligned. */
7379 /* Special case VTV comdat sections similar to assemble_variable. */
7380 if (SECTION_STYLE (block->sect) == SECTION_NAMED
7381 && block->sect->named.name
7382 && (strcmp (block->sect->named.name, ".vtable_map_vars") == 0))
7383 handle_vtv_comdat_section (block->sect, block->sect->named.decl);
7384 else
7385 switch_to_section (block->sect);
7387 assemble_align (block->alignment);
7389 /* Define the values of all anchors relative to the current section
7390 position. */
7391 FOR_EACH_VEC_SAFE_ELT (block->anchors, i, symbol)
7392 targetm.asm_out.output_anchor (symbol);
7394 /* Output the objects themselves. */
7395 offset = 0;
7396 FOR_EACH_VEC_ELT (*block->objects, i, symbol)
7398 /* Move to the object's offset, padding with zeros if necessary. */
7399 assemble_zeros (SYMBOL_REF_BLOCK_OFFSET (symbol) - offset);
7400 offset = SYMBOL_REF_BLOCK_OFFSET (symbol);
7401 if (CONSTANT_POOL_ADDRESS_P (symbol))
7403 desc = SYMBOL_REF_CONSTANT (symbol);
7404 /* Pass 1 for align as we have already laid out everything in the block.
7405 So aligning shouldn't be necessary. */
7406 output_constant_pool_1 (desc, 1);
7407 offset += GET_MODE_SIZE (desc->mode);
7409 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
7411 HOST_WIDE_INT size;
7412 decl = SYMBOL_REF_DECL (symbol);
7413 assemble_constant_contents
7414 (DECL_INITIAL (decl), XSTR (symbol, 0), DECL_ALIGN (decl));
7416 size = get_constant_size (DECL_INITIAL (decl));
7417 offset += size;
7418 if ((flag_sanitize & SANITIZE_ADDRESS)
7419 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
7420 && asan_protect_global (DECL_INITIAL (decl)))
7422 size = asan_red_zone_size (size);
7423 assemble_zeros (size);
7424 offset += size;
7427 else
7429 HOST_WIDE_INT size;
7430 decl = SYMBOL_REF_DECL (symbol);
7431 assemble_variable_contents (decl, XSTR (symbol, 0), false);
7432 size = tree_to_uhwi (DECL_SIZE_UNIT (decl));
7433 offset += size;
7434 if ((flag_sanitize & SANITIZE_ADDRESS)
7435 && asan_protect_global (decl))
7437 size = asan_red_zone_size (size);
7438 assemble_zeros (size);
7439 offset += size;
7445 /* A callback for qsort to compare object_blocks. */
7447 static int
7448 output_object_block_compare (const void *x, const void *y)
7450 object_block *p1 = *(object_block * const*)x;
7451 object_block *p2 = *(object_block * const*)y;
7453 if (p1->sect->common.flags & SECTION_NAMED
7454 && !(p2->sect->common.flags & SECTION_NAMED))
7455 return 1;
7457 if (!(p1->sect->common.flags & SECTION_NAMED)
7458 && p2->sect->common.flags & SECTION_NAMED)
7459 return -1;
7461 if (p1->sect->common.flags & SECTION_NAMED
7462 && p2->sect->common.flags & SECTION_NAMED)
7463 return strcmp (p1->sect->named.name, p2->sect->named.name);
7465 unsigned f1 = p1->sect->common.flags;
7466 unsigned f2 = p2->sect->common.flags;
7467 if (f1 == f2)
7468 return 0;
7469 return f1 < f2 ? -1 : 1;
7472 /* Output the definitions of all object_blocks. */
7474 void
7475 output_object_blocks (void)
7477 vec<object_block *, va_heap> v;
7478 v.create (object_block_htab->elements ());
7479 object_block *obj;
7480 hash_table<object_block_hasher>::iterator hi;
7482 FOR_EACH_HASH_TABLE_ELEMENT (*object_block_htab, obj, object_block *, hi)
7483 v.quick_push (obj);
7485 /* Sort them in order to output them in a deterministic manner,
7486 otherwise we may get .rodata sections in different orders with
7487 and without -g. */
7488 v.qsort (output_object_block_compare);
7489 unsigned i;
7490 FOR_EACH_VEC_ELT (v, i, obj)
7491 output_object_block (obj);
7493 v.release ();
7496 /* This function provides a possible implementation of the
7497 TARGET_ASM_RECORD_GCC_SWITCHES target hook for ELF targets. When triggered
7498 by -frecord-gcc-switches it creates a new mergeable, string section in the
7499 assembler output file called TARGET_ASM_RECORD_GCC_SWITCHES_SECTION which
7500 contains the switches in ASCII format.
7502 FIXME: This code does not correctly handle double quote characters
7503 that appear inside strings, (it strips them rather than preserving them).
7504 FIXME: ASM_OUTPUT_ASCII, as defined in config/elfos.h will not emit NUL
7505 characters - instead it treats them as sub-string separators. Since
7506 we want to emit NUL strings terminators into the object file we have to use
7507 ASM_OUTPUT_SKIP. */
7510 elf_record_gcc_switches (print_switch_type type, const char * name)
7512 switch (type)
7514 case SWITCH_TYPE_PASSED:
7515 ASM_OUTPUT_ASCII (asm_out_file, name, strlen (name));
7516 ASM_OUTPUT_SKIP (asm_out_file, HOST_WIDE_INT_1U);
7517 break;
7519 case SWITCH_TYPE_DESCRIPTIVE:
7520 if (name == NULL)
7522 /* Distinguish between invocations where name is NULL. */
7523 static bool started = false;
7525 if (!started)
7527 section * sec;
7529 sec = get_section (targetm.asm_out.record_gcc_switches_section,
7530 SECTION_DEBUG
7531 | SECTION_MERGE
7532 | SECTION_STRINGS
7533 | (SECTION_ENTSIZE & 1),
7534 NULL);
7535 switch_to_section (sec);
7536 started = true;
7540 default:
7541 break;
7544 /* The return value is currently ignored by the caller, but must be 0.
7545 For -fverbose-asm the return value would be the number of characters
7546 emitted into the assembler file. */
7547 return 0;
7550 /* Emit text to declare externally defined symbols. It is needed to
7551 properly support non-default visibility. */
7552 void
7553 default_elf_asm_output_external (FILE *file ATTRIBUTE_UNUSED,
7554 tree decl,
7555 const char *name ATTRIBUTE_UNUSED)
7557 /* We output the name if and only if TREE_SYMBOL_REFERENCED is
7558 set in order to avoid putting out names that are never really
7559 used. Always output visibility specified in the source. */
7560 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))
7561 && (DECL_VISIBILITY_SPECIFIED (decl)
7562 || targetm.binds_local_p (decl)))
7563 maybe_assemble_visibility (decl);
7566 /* The default hook for TARGET_ASM_OUTPUT_SOURCE_FILENAME. */
7568 void
7569 default_asm_output_source_filename (FILE *file, const char *name)
7571 #ifdef ASM_OUTPUT_SOURCE_FILENAME
7572 ASM_OUTPUT_SOURCE_FILENAME (file, name);
7573 #else
7574 fprintf (file, "\t.file\t");
7575 output_quoted_string (file, name);
7576 putc ('\n', file);
7577 #endif
7580 /* Output a file name in the form wanted by System V. */
7582 void
7583 output_file_directive (FILE *asm_file, const char *input_name)
7585 int len;
7586 const char *na;
7588 if (input_name == NULL)
7589 input_name = "<stdin>";
7590 else
7591 input_name = remap_debug_filename (input_name);
7593 len = strlen (input_name);
7594 na = input_name + len;
7596 /* NA gets INPUT_NAME sans directory names. */
7597 while (na > input_name)
7599 if (IS_DIR_SEPARATOR (na[-1]))
7600 break;
7601 na--;
7604 targetm.asm_out.output_source_filename (asm_file, na);
7607 /* Create a DEBUG_EXPR_DECL / DEBUG_EXPR pair from RTL expression
7608 EXP. */
7610 make_debug_expr_from_rtl (const_rtx exp)
7612 tree ddecl = make_node (DEBUG_EXPR_DECL), type;
7613 machine_mode mode = GET_MODE (exp);
7614 rtx dval;
7616 DECL_ARTIFICIAL (ddecl) = 1;
7617 if (REG_P (exp) && REG_EXPR (exp))
7618 type = TREE_TYPE (REG_EXPR (exp));
7619 else if (MEM_P (exp) && MEM_EXPR (exp))
7620 type = TREE_TYPE (MEM_EXPR (exp));
7621 else
7622 type = NULL_TREE;
7623 if (type && TYPE_MODE (type) == mode)
7624 TREE_TYPE (ddecl) = type;
7625 else
7626 TREE_TYPE (ddecl) = lang_hooks.types.type_for_mode (mode, 1);
7627 DECL_MODE (ddecl) = mode;
7628 dval = gen_rtx_DEBUG_EXPR (mode);
7629 DEBUG_EXPR_TREE_DECL (dval) = ddecl;
7630 SET_DECL_RTL (ddecl, dval);
7631 return dval;
7634 #ifdef ELF_ASCII_ESCAPES
7635 /* Default ASM_OUTPUT_LIMITED_STRING for ELF targets. */
7637 void
7638 default_elf_asm_output_limited_string (FILE *f, const char *s)
7640 int escape;
7641 unsigned char c;
7643 fputs (STRING_ASM_OP, f);
7644 putc ('"', f);
7645 while (*s != '\0')
7647 c = *s;
7648 escape = ELF_ASCII_ESCAPES[c];
7649 switch (escape)
7651 case 0:
7652 putc (c, f);
7653 break;
7654 case 1:
7655 putc ('\\', f);
7656 putc ('0'+((c>>6)&7), f);
7657 putc ('0'+((c>>3)&7), f);
7658 putc ('0'+(c&7), f);
7659 break;
7660 default:
7661 putc ('\\', f);
7662 putc (escape, f);
7663 break;
7665 s++;
7667 putc ('\"', f);
7668 putc ('\n', f);
7671 /* Default ASM_OUTPUT_ASCII for ELF targets. */
7673 void
7674 default_elf_asm_output_ascii (FILE *f, const char *s, unsigned int len)
7676 const char *limit = s + len;
7677 const char *last_null = NULL;
7678 unsigned bytes_in_chunk = 0;
7679 unsigned char c;
7680 int escape;
7682 for (; s < limit; s++)
7684 const char *p;
7686 if (bytes_in_chunk >= 60)
7688 putc ('\"', f);
7689 putc ('\n', f);
7690 bytes_in_chunk = 0;
7693 if (s > last_null)
7695 for (p = s; p < limit && *p != '\0'; p++)
7696 continue;
7697 last_null = p;
7699 else
7700 p = last_null;
7702 if (p < limit && (p - s) <= (long) ELF_STRING_LIMIT)
7704 if (bytes_in_chunk > 0)
7706 putc ('\"', f);
7707 putc ('\n', f);
7708 bytes_in_chunk = 0;
7711 default_elf_asm_output_limited_string (f, s);
7712 s = p;
7714 else
7716 if (bytes_in_chunk == 0)
7717 fputs (ASCII_DATA_ASM_OP "\"", f);
7719 c = *s;
7720 escape = ELF_ASCII_ESCAPES[c];
7721 switch (escape)
7723 case 0:
7724 putc (c, f);
7725 bytes_in_chunk++;
7726 break;
7727 case 1:
7728 putc ('\\', f);
7729 putc ('0'+((c>>6)&7), f);
7730 putc ('0'+((c>>3)&7), f);
7731 putc ('0'+(c&7), f);
7732 bytes_in_chunk += 4;
7733 break;
7734 default:
7735 putc ('\\', f);
7736 putc (escape, f);
7737 bytes_in_chunk += 2;
7738 break;
7744 if (bytes_in_chunk > 0)
7746 putc ('\"', f);
7747 putc ('\n', f);
7750 #endif
7752 static GTY(()) section *elf_init_array_section;
7753 static GTY(()) section *elf_fini_array_section;
7755 static section *
7756 get_elf_initfini_array_priority_section (int priority,
7757 bool constructor_p)
7759 section *sec;
7760 if (priority != DEFAULT_INIT_PRIORITY)
7762 char buf[18];
7763 sprintf (buf, "%s.%.5u",
7764 constructor_p ? ".init_array" : ".fini_array",
7765 priority);
7766 sec = get_section (buf, SECTION_WRITE | SECTION_NOTYPE, NULL_TREE);
7768 else
7770 if (constructor_p)
7772 if (elf_init_array_section == NULL)
7773 elf_init_array_section
7774 = get_section (".init_array",
7775 SECTION_WRITE | SECTION_NOTYPE, NULL_TREE);
7776 sec = elf_init_array_section;
7778 else
7780 if (elf_fini_array_section == NULL)
7781 elf_fini_array_section
7782 = get_section (".fini_array",
7783 SECTION_WRITE | SECTION_NOTYPE, NULL_TREE);
7784 sec = elf_fini_array_section;
7787 return sec;
7790 /* Use .init_array section for constructors. */
7792 void
7793 default_elf_init_array_asm_out_constructor (rtx symbol, int priority)
7795 section *sec = get_elf_initfini_array_priority_section (priority,
7796 true);
7797 assemble_addr_to_section (symbol, sec);
7800 /* Use .fini_array section for destructors. */
7802 void
7803 default_elf_fini_array_asm_out_destructor (rtx symbol, int priority)
7805 section *sec = get_elf_initfini_array_priority_section (priority,
7806 false);
7807 assemble_addr_to_section (symbol, sec);
7810 /* Default TARGET_ASM_OUTPUT_IDENT hook.
7812 This is a bit of a cheat. The real default is a no-op, but this
7813 hook is the default for all targets with a .ident directive. */
7815 void
7816 default_asm_output_ident_directive (const char *ident_str)
7818 const char *ident_asm_op = "\t.ident\t";
7820 /* If we are still in the front end, do not write out the string
7821 to asm_out_file. Instead, add a fake top-level asm statement.
7822 This allows the front ends to use this hook without actually
7823 writing to asm_out_file, to handle #ident or Pragma Ident. */
7824 if (symtab->state == PARSING)
7826 char *buf = ACONCAT ((ident_asm_op, "\"", ident_str, "\"\n", NULL));
7827 symtab->finalize_toplevel_asm (build_string (strlen (buf), buf));
7829 else
7830 fprintf (asm_out_file, "%s\"%s\"\n", ident_asm_op, ident_str);
7834 /* This function ensures that vtable_map variables are not only
7835 in the comdat section, but that each variable has its own unique
7836 comdat name. Without this the variables end up in the same section
7837 with a single comdat name.
7839 FIXME: resolve_unique_section needs to deal better with
7840 decls with both DECL_SECTION_NAME and DECL_ONE_ONLY. Once
7841 that is fixed, this if-else statement can be replaced with
7842 a single call to "switch_to_section (sect)". */
7844 static void
7845 handle_vtv_comdat_section (section *sect, const_tree decl ATTRIBUTE_UNUSED)
7847 #if defined (OBJECT_FORMAT_ELF)
7848 targetm.asm_out.named_section (sect->named.name,
7849 sect->named.common.flags
7850 | SECTION_LINKONCE,
7851 DECL_NAME (decl));
7852 in_section = sect;
7853 #else
7854 /* Neither OBJECT_FORMAT_PE, nor OBJECT_FORMAT_COFF is set here.
7855 Therefore the following check is used.
7856 In case a the target is PE or COFF a comdat group section
7857 is created, e.g. .vtable_map_vars$foo. The linker places
7858 everything in .vtable_map_vars at the end.
7860 A fix could be made in
7861 gcc/config/i386/winnt.c: i386_pe_unique_section. */
7862 if (TARGET_PECOFF)
7864 char *name;
7866 if (TREE_CODE (DECL_NAME (decl)) == IDENTIFIER_NODE)
7867 name = ACONCAT ((sect->named.name, "$",
7868 IDENTIFIER_POINTER (DECL_NAME (decl)), NULL));
7869 else
7870 name = ACONCAT ((sect->named.name, "$",
7871 IDENTIFIER_POINTER (DECL_COMDAT_GROUP (DECL_NAME (decl))),
7872 NULL));
7874 targetm.asm_out.named_section (name,
7875 sect->named.common.flags
7876 | SECTION_LINKONCE,
7877 DECL_NAME (decl));
7878 in_section = sect;
7880 else
7881 switch_to_section (sect);
7882 #endif
7885 #include "gt-varasm.h"