PR/56490
[official-gcc.git] / gcc / varasm.c
blob98a29ff407f92ed3b020bb54f19da1423d6fc248
1 /* Output variables, constants and external declarations, for GNU compiler.
2 Copyright (C) 1987-2013 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
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 "tm.h"
32 #include "rtl.h"
33 #include "tree.h"
34 #include "flags.h"
35 #include "function.h"
36 #include "expr.h"
37 #include "hard-reg-set.h"
38 #include "regs.h"
39 #include "output.h"
40 #include "diagnostic-core.h"
41 #include "hashtab.h"
42 #include "ggc.h"
43 #include "langhooks.h"
44 #include "tm_p.h"
45 #include "debug.h"
46 #include "target.h"
47 #include "common/common-target.h"
48 #include "targhooks.h"
49 #include "tree-mudflap.h"
50 #include "cgraph.h"
51 #include "pointer-set.h"
52 #include "asan.h"
54 #ifdef XCOFF_DEBUGGING_INFO
55 #include "xcoffout.h" /* Needed for external data
56 declarations for e.g. AIX 4.x. */
57 #endif
59 /* The (assembler) name of the first globally-visible object output. */
60 extern GTY(()) const char *first_global_object_name;
61 extern GTY(()) const char *weak_global_object_name;
63 const char *first_global_object_name;
64 const char *weak_global_object_name;
66 struct addr_const;
67 struct constant_descriptor_rtx;
68 struct rtx_constant_pool;
70 #define n_deferred_constants (crtl->varasm.deferred_constants)
72 /* Number for making the label on the next
73 constant that is stored in memory. */
75 static GTY(()) int const_labelno;
77 /* Carry information from ASM_DECLARE_OBJECT_NAME
78 to ASM_FINISH_DECLARE_OBJECT. */
80 int size_directive_output;
82 /* The last decl for which assemble_variable was called,
83 if it did ASM_DECLARE_OBJECT_NAME.
84 If the last call to assemble_variable didn't do that,
85 this holds 0. */
87 tree last_assemble_variable_decl;
89 /* The following global variable indicates if the first basic block
90 in a function belongs to the cold partition or not. */
92 bool first_function_block_is_cold;
94 /* We give all constants their own alias set. Perhaps redundant with
95 MEM_READONLY_P, but pre-dates it. */
97 static alias_set_type const_alias_set;
99 /* Whether we saw any functions with no_split_stack. */
101 static bool saw_no_split_stack;
103 static const char *strip_reg_name (const char *);
104 static int contains_pointers_p (tree);
105 #ifdef ASM_OUTPUT_EXTERNAL
106 static bool incorporeal_function_p (tree);
107 #endif
108 static void decode_addr_const (tree, struct addr_const *);
109 static hashval_t const_desc_hash (const void *);
110 static int const_desc_eq (const void *, const void *);
111 static hashval_t const_hash_1 (const tree);
112 static int compare_constant (const tree, const tree);
113 static tree copy_constant (tree);
114 static void output_constant_def_contents (rtx);
115 static void output_addressed_constants (tree);
116 static unsigned HOST_WIDE_INT array_size_for_constructor (tree);
117 static unsigned min_align (unsigned, unsigned);
118 static void globalize_decl (tree);
119 static bool decl_readonly_section_1 (enum section_category);
120 #ifdef BSS_SECTION_ASM_OP
121 #ifdef ASM_OUTPUT_ALIGNED_BSS
122 static void asm_output_aligned_bss (FILE *, tree, const char *,
123 unsigned HOST_WIDE_INT, int)
124 ATTRIBUTE_UNUSED;
125 #endif
126 #endif /* BSS_SECTION_ASM_OP */
127 static void mark_weak (tree);
128 static void output_constant_pool (const char *, tree);
129 static rtx output_constant_def_1 (tree, tree, int);
131 /* Well-known sections, each one associated with some sort of *_ASM_OP. */
132 section *text_section;
133 section *data_section;
134 section *readonly_data_section;
135 section *sdata_section;
136 section *ctors_section;
137 section *dtors_section;
138 section *bss_section;
139 section *sbss_section;
141 /* Various forms of common section. All are guaranteed to be nonnull. */
142 section *tls_comm_section;
143 section *comm_section;
144 section *lcomm_section;
146 /* A SECTION_NOSWITCH section used for declaring global BSS variables.
147 May be null. */
148 section *bss_noswitch_section;
150 /* The section that holds the main exception table, when known. The section
151 is set either by the target's init_sections hook or by the first call to
152 switch_to_exception_section. */
153 section *exception_section;
155 /* The section that holds the DWARF2 frame unwind information, when known.
156 The section is set either by the target's init_sections hook or by the
157 first call to switch_to_eh_frame_section. */
158 section *eh_frame_section;
160 /* asm_out_file's current section. This is NULL if no section has yet
161 been selected or if we lose track of what the current section is. */
162 section *in_section;
164 /* True if code for the current function is currently being directed
165 at the cold section. */
166 bool in_cold_section_p;
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 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
174 && DECL_SECTION_NAME (DECL) != NULL_TREE)
176 /* Hash table of named sections. */
177 static GTY((param_is (section))) htab_t section_htab;
179 /* A table of object_blocks, indexed by section. */
180 static GTY((param_is (struct object_block))) htab_t object_block_htab;
182 /* The next number to use for internal anchor labels. */
183 static GTY(()) int anchor_labelno;
185 /* A pool of constants that can be shared between functions. */
186 static GTY(()) struct rtx_constant_pool *shared_constant_pool;
188 /* Helper routines for maintaining section_htab. */
190 static int
191 section_entry_eq (const void *p1, const void *p2)
193 const section *old = (const section *) p1;
194 const char *new_name = (const char *) p2;
196 return strcmp (old->named.name, new_name) == 0;
199 static hashval_t
200 section_entry_hash (const void *p)
202 const section *old = (const section *) p;
203 return htab_hash_string (old->named.name);
206 /* Return a hash value for section SECT. */
208 static hashval_t
209 hash_section (section *sect)
211 if (sect->common.flags & SECTION_NAMED)
212 return htab_hash_string (sect->named.name);
213 return sect->common.flags;
216 /* Helper routines for maintaining object_block_htab. */
218 static int
219 object_block_entry_eq (const void *p1, const void *p2)
221 const struct object_block *old = (const struct object_block *) p1;
222 const section *new_section = (const section *) p2;
224 return old->sect == new_section;
227 static hashval_t
228 object_block_entry_hash (const void *p)
230 const struct object_block *old = (const struct object_block *) p;
231 return hash_section (old->sect);
234 /* Return a new unnamed section with the given fields. */
236 section *
237 get_unnamed_section (unsigned int flags, void (*callback) (const void *),
238 const void *data)
240 section *sect;
242 sect = ggc_alloc_section ();
243 sect->unnamed.common.flags = flags | SECTION_UNNAMED;
244 sect->unnamed.callback = callback;
245 sect->unnamed.data = data;
246 sect->unnamed.next = unnamed_sections;
248 unnamed_sections = sect;
249 return sect;
252 /* Return a SECTION_NOSWITCH section with the given fields. */
254 static section *
255 get_noswitch_section (unsigned int flags, noswitch_section_callback callback)
257 section *sect;
259 sect = ggc_alloc_section ();
260 sect->noswitch.common.flags = flags | SECTION_NOSWITCH;
261 sect->noswitch.callback = callback;
263 return sect;
266 /* Return the named section structure associated with NAME. Create
267 a new section with the given fields if no such structure exists. */
269 section *
270 get_section (const char *name, unsigned int flags, tree decl)
272 section *sect, **slot;
274 slot = (section **)
275 htab_find_slot_with_hash (section_htab, name,
276 htab_hash_string (name), INSERT);
277 flags |= SECTION_NAMED;
278 if (*slot == NULL)
280 sect = ggc_alloc_section ();
281 sect->named.common.flags = flags;
282 sect->named.name = ggc_strdup (name);
283 sect->named.decl = decl;
284 *slot = sect;
286 else
288 sect = *slot;
289 if ((sect->common.flags & ~SECTION_DECLARED) != flags
290 && ((sect->common.flags | flags) & SECTION_OVERRIDE) == 0)
292 /* It is fine if one of the section flags is
293 SECTION_WRITE | SECTION_RELRO and the other has none of these
294 flags (i.e. read-only) in named sections and either the
295 section hasn't been declared yet or has been declared as writable.
296 In that case just make sure the resulting flags are
297 SECTION_WRITE | SECTION_RELRO, ie. writable only because of
298 relocations. */
299 if (((sect->common.flags ^ flags) & (SECTION_WRITE | SECTION_RELRO))
300 == (SECTION_WRITE | SECTION_RELRO)
301 && (sect->common.flags
302 & ~(SECTION_DECLARED | SECTION_WRITE | SECTION_RELRO))
303 == (flags & ~(SECTION_WRITE | SECTION_RELRO))
304 && ((sect->common.flags & SECTION_DECLARED) == 0
305 || (sect->common.flags & SECTION_WRITE)))
307 sect->common.flags |= (SECTION_WRITE | SECTION_RELRO);
308 return sect;
310 /* Sanity check user variables for flag changes. */
311 if (decl == 0)
312 decl = sect->named.decl;
313 gcc_assert (decl);
314 if (sect->named.decl == NULL)
315 error ("%+D causes a section type conflict", decl);
316 else
318 error ("%+D causes a section type conflict with %D",
319 decl, sect->named.decl);
320 if (decl != sect->named.decl)
321 inform (DECL_SOURCE_LOCATION (sect->named.decl),
322 "%qD was declared here", sect->named.decl);
324 /* Make sure we don't error about one section multiple times. */
325 sect->common.flags |= SECTION_OVERRIDE;
328 return sect;
331 /* Return true if the current compilation mode benefits from having
332 objects grouped into blocks. */
334 static bool
335 use_object_blocks_p (void)
337 return flag_section_anchors;
340 /* Return the object_block structure for section SECT. Create a new
341 structure if we haven't created one already. Return null if SECT
342 itself is null. */
344 static struct object_block *
345 get_block_for_section (section *sect)
347 struct object_block *block;
348 void **slot;
350 if (sect == NULL)
351 return NULL;
353 slot = htab_find_slot_with_hash (object_block_htab, sect,
354 hash_section (sect), INSERT);
355 block = (struct object_block *) *slot;
356 if (block == NULL)
358 block = ggc_alloc_cleared_object_block ();
359 block->sect = sect;
360 *slot = block;
362 return block;
365 /* Create a symbol with label LABEL and place it at byte offset
366 OFFSET in BLOCK. OFFSET can be negative if the symbol's offset
367 is not yet known. LABEL must be a garbage-collected string. */
369 static rtx
370 create_block_symbol (const char *label, struct object_block *block,
371 HOST_WIDE_INT offset)
373 rtx symbol;
374 unsigned int size;
376 /* Create the extended SYMBOL_REF. */
377 size = RTX_HDR_SIZE + sizeof (struct block_symbol);
378 symbol = ggc_alloc_rtx_def (size);
380 /* Initialize the normal SYMBOL_REF fields. */
381 memset (symbol, 0, size);
382 PUT_CODE (symbol, SYMBOL_REF);
383 PUT_MODE (symbol, Pmode);
384 XSTR (symbol, 0) = label;
385 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_HAS_BLOCK_INFO;
387 /* Initialize the block_symbol stuff. */
388 SYMBOL_REF_BLOCK (symbol) = block;
389 SYMBOL_REF_BLOCK_OFFSET (symbol) = offset;
391 return symbol;
394 /* Return a section with a particular name and with whatever SECTION_*
395 flags section_type_flags deems appropriate. The name of the section
396 is taken from NAME if nonnull, otherwise it is taken from DECL's
397 DECL_SECTION_NAME. DECL is the decl associated with the section
398 (see the section comment for details) and RELOC is as for
399 section_type_flags. */
401 section *
402 get_named_section (tree decl, const char *name, int reloc)
404 unsigned int flags;
406 gcc_assert (!decl || DECL_P (decl));
407 if (name == NULL)
408 name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
410 flags = targetm.section_type_flags (decl, name, reloc);
412 return get_section (name, flags, decl);
415 /* If required, set DECL_SECTION_NAME to a unique name. */
417 void
418 resolve_unique_section (tree decl, int reloc ATTRIBUTE_UNUSED,
419 int flag_function_or_data_sections)
421 if (DECL_SECTION_NAME (decl) == NULL_TREE
422 && targetm_common.have_named_sections
423 && (flag_function_or_data_sections
424 || DECL_ONE_ONLY (decl)))
426 targetm.asm_out.unique_section (decl, reloc);
427 DECL_HAS_IMPLICIT_SECTION_NAME_P (decl) = true;
431 #ifdef BSS_SECTION_ASM_OP
433 #ifdef ASM_OUTPUT_ALIGNED_BSS
435 /* Utility function for targets to use in implementing
436 ASM_OUTPUT_ALIGNED_BSS.
437 ??? It is believed that this function will work in most cases so such
438 support is localized here. */
440 static void
441 asm_output_aligned_bss (FILE *file, tree decl ATTRIBUTE_UNUSED,
442 const char *name, unsigned HOST_WIDE_INT size,
443 int align)
445 switch_to_section (bss_section);
446 ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
447 #ifdef ASM_DECLARE_OBJECT_NAME
448 last_assemble_variable_decl = decl;
449 ASM_DECLARE_OBJECT_NAME (file, name, decl);
450 #else
451 /* Standard thing is just output label for the object. */
452 ASM_OUTPUT_LABEL (file, name);
453 #endif /* ASM_DECLARE_OBJECT_NAME */
454 ASM_OUTPUT_SKIP (file, size ? size : 1);
457 #endif
459 #endif /* BSS_SECTION_ASM_OP */
461 #ifndef USE_SELECT_SECTION_FOR_FUNCTIONS
462 /* Return the hot section for function DECL. Return text_section for
463 null DECLs. */
465 static section *
466 hot_function_section (tree decl)
468 if (decl != NULL_TREE
469 && DECL_SECTION_NAME (decl) != NULL_TREE
470 && targetm_common.have_named_sections)
471 return get_named_section (decl, NULL, 0);
472 else
473 return text_section;
475 #endif
477 /* Return section for TEXT_SECTION_NAME if DECL or DECL_SECTION_NAME (DECL)
478 is NULL.
480 When DECL_SECTION_NAME is non-NULL and it is implicit section and
481 NAMED_SECTION_SUFFIX is non-NULL, then produce section called
482 concatenate the name with NAMED_SECTION_SUFFIX.
483 Otherwise produce "TEXT_SECTION_NAME.IMPLICIT_NAME". */
485 section *
486 get_named_text_section (tree decl,
487 const char *text_section_name,
488 const char *named_section_suffix)
490 if (decl && DECL_SECTION_NAME (decl))
492 if (named_section_suffix)
494 tree dsn = DECL_SECTION_NAME (decl);
495 const char *stripped_name;
496 char *name, *buffer;
498 name = (char *) alloca (TREE_STRING_LENGTH (dsn) + 1);
499 memcpy (name, TREE_STRING_POINTER (dsn),
500 TREE_STRING_LENGTH (dsn) + 1);
502 stripped_name = targetm.strip_name_encoding (name);
504 buffer = ACONCAT ((stripped_name, named_section_suffix, NULL));
505 return get_named_section (decl, buffer, 0);
507 else if (DECL_HAS_IMPLICIT_SECTION_NAME_P (decl))
509 const char *name;
511 /* Do not try to split gnu_linkonce functions. This gets somewhat
512 slipperly. */
513 if (DECL_ONE_ONLY (decl) && !HAVE_COMDAT_GROUP)
514 return NULL;
515 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
516 name = targetm.strip_name_encoding (name);
517 return get_named_section (decl, ACONCAT ((text_section_name, ".",
518 name, NULL)), 0);
520 else
521 return NULL;
523 return get_named_section (decl, text_section_name, 0);
526 /* Choose named function section based on its frequency. */
528 section *
529 default_function_section (tree decl, enum node_frequency freq,
530 bool startup, bool exit)
532 #if defined HAVE_LD_EH_GC_SECTIONS && defined HAVE_LD_EH_GC_SECTIONS_BUG
533 /* Old GNU linkers have buggy --gc-section support, which sometimes
534 results in .gcc_except_table* sections being garbage collected. */
535 if (decl
536 && DECL_SECTION_NAME (decl)
537 && DECL_HAS_IMPLICIT_SECTION_NAME_P (decl))
538 return NULL;
539 #endif
541 if (!flag_reorder_functions
542 || !targetm_common.have_named_sections)
543 return NULL;
544 /* Startup code should go to startup subsection unless it is
545 unlikely executed (this happens especially with function splitting
546 where we can split away unnecessary parts of static constructors. */
547 if (startup && freq != NODE_FREQUENCY_UNLIKELY_EXECUTED)
548 return get_named_text_section (decl, ".text.startup", NULL);
550 /* Similarly for exit. */
551 if (exit && freq != NODE_FREQUENCY_UNLIKELY_EXECUTED)
552 return get_named_text_section (decl, ".text.exit", NULL);
554 /* Group cold functions together, similarly for hot code. */
555 switch (freq)
557 case NODE_FREQUENCY_UNLIKELY_EXECUTED:
558 return get_named_text_section (decl, ".text.unlikely", NULL);
559 case NODE_FREQUENCY_HOT:
560 return get_named_text_section (decl, ".text.hot", NULL);
561 default:
562 return NULL;
566 /* Return the section for function DECL.
568 If DECL is NULL_TREE, return the text section. We can be passed
569 NULL_TREE under some circumstances by dbxout.c at least.
571 If FORCE_COLD is true, return cold function section ignoring
572 the frequency info of cgraph_node. */
574 static section *
575 function_section_1 (tree decl, bool force_cold)
577 section *section = NULL;
578 enum node_frequency freq = NODE_FREQUENCY_NORMAL;
579 bool startup = false, exit = false;
581 if (decl)
583 struct cgraph_node *node = cgraph_get_node (decl);
585 if (node)
587 freq = node->frequency;
588 startup = node->only_called_at_startup;
589 exit = node->only_called_at_exit;
592 if (force_cold)
593 freq = NODE_FREQUENCY_UNLIKELY_EXECUTED;
595 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
596 if (decl != NULL_TREE
597 && DECL_SECTION_NAME (decl) != NULL_TREE)
599 if (targetm.asm_out.function_section)
600 section = targetm.asm_out.function_section (decl, freq,
601 startup, exit);
602 if (section)
603 return section;
604 return get_named_section (decl, NULL, 0);
606 else
607 return targetm.asm_out.select_section
608 (decl, freq == NODE_FREQUENCY_UNLIKELY_EXECUTED,
609 DECL_ALIGN (decl));
610 #else
611 if (targetm.asm_out.function_section)
612 section = targetm.asm_out.function_section (decl, freq, startup, exit);
613 if (section)
614 return section;
615 return hot_function_section (decl);
616 #endif
619 /* Return the section for function DECL.
621 If DECL is NULL_TREE, return the text section. We can be passed
622 NULL_TREE under some circumstances by dbxout.c at least. */
624 section *
625 function_section (tree decl)
627 /* Handle cases where function splitting code decides
628 to put function entry point into unlikely executed section
629 despite the fact that the function itself is not cold
630 (i.e. it is called rarely but contains a hot loop that is
631 better to live in hot subsection for the code locality). */
632 return function_section_1 (decl,
633 first_function_block_is_cold);
636 /* Return the section for the current function, take IN_COLD_SECTION_P
637 into account. */
639 section *
640 current_function_section (void)
642 return function_section_1 (current_function_decl, in_cold_section_p);
645 /* Tell assembler to switch to unlikely-to-be-executed text section. */
647 section *
648 unlikely_text_section (void)
650 return function_section_1 (current_function_decl, true);
653 /* When called within a function context, return true if the function
654 has been assigned a cold text section and if SECT is that section.
655 When called outside a function context, return true if SECT is the
656 default cold section. */
658 bool
659 unlikely_text_section_p (section *sect)
661 return sect == function_section_1 (current_function_decl, true);
664 /* Return the read-only data section associated with function DECL. */
666 section *
667 default_function_rodata_section (tree decl)
669 if (decl != NULL_TREE && DECL_SECTION_NAME (decl))
671 const char *name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
673 if (DECL_ONE_ONLY (decl) && HAVE_COMDAT_GROUP)
675 const char *dot;
676 size_t len;
677 char* rname;
679 dot = strchr (name + 1, '.');
680 if (!dot)
681 dot = name;
682 len = strlen (dot) + 8;
683 rname = (char *) alloca (len);
685 strcpy (rname, ".rodata");
686 strcat (rname, dot);
687 return get_section (rname, SECTION_LINKONCE, decl);
689 /* For .gnu.linkonce.t.foo we want to use .gnu.linkonce.r.foo. */
690 else if (DECL_ONE_ONLY (decl)
691 && strncmp (name, ".gnu.linkonce.t.", 16) == 0)
693 size_t len = strlen (name) + 1;
694 char *rname = (char *) alloca (len);
696 memcpy (rname, name, len);
697 rname[14] = 'r';
698 return get_section (rname, SECTION_LINKONCE, decl);
700 /* For .text.foo we want to use .rodata.foo. */
701 else if (flag_function_sections && flag_data_sections
702 && strncmp (name, ".text.", 6) == 0)
704 size_t len = strlen (name) + 1;
705 char *rname = (char *) alloca (len + 2);
707 memcpy (rname, ".rodata", 7);
708 memcpy (rname + 7, name + 5, len - 5);
709 return get_section (rname, 0, decl);
713 return readonly_data_section;
716 /* Return the read-only data section associated with function DECL
717 for targets where that section should be always the single
718 readonly data section. */
720 section *
721 default_no_function_rodata_section (tree decl ATTRIBUTE_UNUSED)
723 return readonly_data_section;
726 /* Return the section to use for string merging. */
728 static section *
729 mergeable_string_section (tree decl ATTRIBUTE_UNUSED,
730 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
731 unsigned int flags ATTRIBUTE_UNUSED)
733 HOST_WIDE_INT len;
735 if (HAVE_GAS_SHF_MERGE && flag_merge_constants
736 && TREE_CODE (decl) == STRING_CST
737 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
738 && align <= 256
739 && (len = int_size_in_bytes (TREE_TYPE (decl))) > 0
740 && TREE_STRING_LENGTH (decl) >= len)
742 enum machine_mode mode;
743 unsigned int modesize;
744 const char *str;
745 HOST_WIDE_INT i;
746 int j, unit;
747 const char *prefix = targetm.asm_out.mergeable_rodata_prefix;
748 char *name = (char *) alloca (strlen (prefix) + 30);
750 mode = TYPE_MODE (TREE_TYPE (TREE_TYPE (decl)));
751 modesize = GET_MODE_BITSIZE (mode);
752 if (modesize >= 8 && modesize <= 256
753 && (modesize & (modesize - 1)) == 0)
755 if (align < modesize)
756 align = modesize;
758 str = TREE_STRING_POINTER (decl);
759 unit = GET_MODE_SIZE (mode);
761 /* Check for embedded NUL characters. */
762 for (i = 0; i < len; i += unit)
764 for (j = 0; j < unit; j++)
765 if (str[i + j] != '\0')
766 break;
767 if (j == unit)
768 break;
770 if (i == len - unit)
772 sprintf (name, "%s.str%d.%d", prefix,
773 modesize / 8, (int) (align / 8));
774 flags |= (modesize / 8) | SECTION_MERGE | SECTION_STRINGS;
775 return get_section (name, flags, NULL);
780 return readonly_data_section;
783 /* Return the section to use for constant merging. */
785 section *
786 mergeable_constant_section (enum machine_mode mode ATTRIBUTE_UNUSED,
787 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
788 unsigned int flags ATTRIBUTE_UNUSED)
790 unsigned int modesize = GET_MODE_BITSIZE (mode);
792 if (HAVE_GAS_SHF_MERGE && flag_merge_constants
793 && mode != VOIDmode
794 && mode != BLKmode
795 && modesize <= align
796 && align >= 8
797 && align <= 256
798 && (align & (align - 1)) == 0)
800 const char *prefix = targetm.asm_out.mergeable_rodata_prefix;
801 char *name = (char *) alloca (strlen (prefix) + 30);
803 sprintf (name, "%s.cst%d", prefix, (int) (align / 8));
804 flags |= (align / 8) | SECTION_MERGE;
805 return get_section (name, flags, NULL);
807 return readonly_data_section;
810 /* Given NAME, a putative register name, discard any customary prefixes. */
812 static const char *
813 strip_reg_name (const char *name)
815 #ifdef REGISTER_PREFIX
816 if (!strncmp (name, REGISTER_PREFIX, strlen (REGISTER_PREFIX)))
817 name += strlen (REGISTER_PREFIX);
818 #endif
819 if (name[0] == '%' || name[0] == '#')
820 name++;
821 return name;
824 /* The user has asked for a DECL to have a particular name. Set (or
825 change) it in such a way that we don't prefix an underscore to
826 it. */
827 void
828 set_user_assembler_name (tree decl, const char *name)
830 char *starred = (char *) alloca (strlen (name) + 2);
831 starred[0] = '*';
832 strcpy (starred + 1, name);
833 change_decl_assembler_name (decl, get_identifier (starred));
834 SET_DECL_RTL (decl, NULL_RTX);
837 /* Decode an `asm' spec for a declaration as a register name.
838 Return the register number, or -1 if nothing specified,
839 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
840 or -3 if ASMSPEC is `cc' and is not recognized,
841 or -4 if ASMSPEC is `memory' and is not recognized.
842 Accept an exact spelling or a decimal number.
843 Prefixes such as % are optional. */
846 decode_reg_name_and_count (const char *asmspec, int *pnregs)
848 /* Presume just one register is clobbered. */
849 *pnregs = 1;
851 if (asmspec != 0)
853 int i;
855 /* Get rid of confusing prefixes. */
856 asmspec = strip_reg_name (asmspec);
858 /* Allow a decimal number as a "register name". */
859 for (i = strlen (asmspec) - 1; i >= 0; i--)
860 if (! ISDIGIT (asmspec[i]))
861 break;
862 if (asmspec[0] != 0 && i < 0)
864 i = atoi (asmspec);
865 if (i < FIRST_PSEUDO_REGISTER && i >= 0)
866 return i;
867 else
868 return -2;
871 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
872 if (reg_names[i][0]
873 && ! strcmp (asmspec, strip_reg_name (reg_names[i])))
874 return i;
876 #ifdef OVERLAPPING_REGISTER_NAMES
878 static const struct
880 const char *const name;
881 const int number;
882 const int nregs;
883 } table[] = OVERLAPPING_REGISTER_NAMES;
885 for (i = 0; i < (int) ARRAY_SIZE (table); i++)
886 if (table[i].name[0]
887 && ! strcmp (asmspec, table[i].name))
889 *pnregs = table[i].nregs;
890 return table[i].number;
893 #endif /* OVERLAPPING_REGISTER_NAMES */
895 #ifdef ADDITIONAL_REGISTER_NAMES
897 static const struct { const char *const name; const int number; } table[]
898 = ADDITIONAL_REGISTER_NAMES;
900 for (i = 0; i < (int) ARRAY_SIZE (table); i++)
901 if (table[i].name[0]
902 && ! strcmp (asmspec, table[i].name))
903 return table[i].number;
905 #endif /* ADDITIONAL_REGISTER_NAMES */
907 if (!strcmp (asmspec, "memory"))
908 return -4;
910 if (!strcmp (asmspec, "cc"))
911 return -3;
913 return -2;
916 return -1;
920 decode_reg_name (const char *name)
922 int count;
923 return decode_reg_name_and_count (name, &count);
927 /* Return true if DECL's initializer is suitable for a BSS section. */
929 bool
930 bss_initializer_p (const_tree decl)
932 return (DECL_INITIAL (decl) == NULL
933 || DECL_INITIAL (decl) == error_mark_node
934 || (flag_zero_initialized_in_bss
935 /* Leave constant zeroes in .rodata so they
936 can be shared. */
937 && !TREE_READONLY (decl)
938 && initializer_zerop (DECL_INITIAL (decl))));
941 /* Compute the alignment of variable specified by DECL.
942 DONT_OUTPUT_DATA is from assemble_variable. */
944 void
945 align_variable (tree decl, bool dont_output_data)
947 unsigned int align = DECL_ALIGN (decl);
949 /* In the case for initialing an array whose length isn't specified,
950 where we have not yet been able to do the layout,
951 figure out the proper alignment now. */
952 if (dont_output_data && DECL_SIZE (decl) == 0
953 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
954 align = MAX (align, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
956 /* Some object file formats have a maximum alignment which they support.
957 In particular, a.out format supports a maximum alignment of 4. */
958 if (align > MAX_OFILE_ALIGNMENT)
960 warning (0, "alignment of %q+D is greater than maximum object "
961 "file alignment. Using %d", decl,
962 MAX_OFILE_ALIGNMENT/BITS_PER_UNIT);
963 align = MAX_OFILE_ALIGNMENT;
966 /* On some machines, it is good to increase alignment sometimes. */
967 if (! DECL_USER_ALIGN (decl))
969 #ifdef DATA_ALIGNMENT
970 unsigned int data_align = DATA_ALIGNMENT (TREE_TYPE (decl), align);
971 /* Don't increase alignment too much for TLS variables - TLS space
972 is too precious. */
973 if (! DECL_THREAD_LOCAL_P (decl) || data_align <= BITS_PER_WORD)
974 align = data_align;
975 #endif
976 #ifdef CONSTANT_ALIGNMENT
977 if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
979 unsigned int const_align = CONSTANT_ALIGNMENT (DECL_INITIAL (decl),
980 align);
981 /* Don't increase alignment too much for TLS variables - TLS space
982 is too precious. */
983 if (! DECL_THREAD_LOCAL_P (decl) || const_align <= BITS_PER_WORD)
984 align = const_align;
986 #endif
989 /* Reset the alignment in case we have made it tighter, so we can benefit
990 from it in get_pointer_alignment. */
991 DECL_ALIGN (decl) = align;
994 /* Return the section into which the given VAR_DECL or CONST_DECL
995 should be placed. PREFER_NOSWITCH_P is true if a noswitch
996 section should be used wherever possible. */
998 section *
999 get_variable_section (tree decl, bool prefer_noswitch_p)
1001 addr_space_t as = ADDR_SPACE_GENERIC;
1002 int reloc;
1004 if (TREE_TYPE (decl) != error_mark_node)
1005 as = TYPE_ADDR_SPACE (TREE_TYPE (decl));
1007 if (DECL_COMMON (decl))
1009 /* If the decl has been given an explicit section name, or it resides
1010 in a non-generic address space, then it isn't common, and shouldn't
1011 be handled as such. */
1012 gcc_assert (DECL_SECTION_NAME (decl) == NULL
1013 && ADDR_SPACE_GENERIC_P (as));
1014 if (DECL_THREAD_LOCAL_P (decl))
1015 return tls_comm_section;
1016 else if (TREE_PUBLIC (decl) && bss_initializer_p (decl))
1017 return comm_section;
1020 if (DECL_INITIAL (decl) == error_mark_node)
1021 reloc = contains_pointers_p (TREE_TYPE (decl)) ? 3 : 0;
1022 else if (DECL_INITIAL (decl))
1023 reloc = compute_reloc_for_constant (DECL_INITIAL (decl));
1024 else
1025 reloc = 0;
1027 resolve_unique_section (decl, reloc, flag_data_sections);
1028 if (IN_NAMED_SECTION (decl))
1029 return get_named_section (decl, NULL, reloc);
1031 if (ADDR_SPACE_GENERIC_P (as)
1032 && !DECL_THREAD_LOCAL_P (decl)
1033 && !(prefer_noswitch_p && targetm.have_switchable_bss_sections)
1034 && bss_initializer_p (decl))
1036 if (!TREE_PUBLIC (decl)
1037 && !(flag_asan && asan_protect_global (decl)))
1038 return lcomm_section;
1039 if (bss_noswitch_section)
1040 return bss_noswitch_section;
1043 return targetm.asm_out.select_section (decl, reloc, DECL_ALIGN (decl));
1046 /* Return the block into which object_block DECL should be placed. */
1048 static struct object_block *
1049 get_block_for_decl (tree decl)
1051 section *sect;
1053 if (TREE_CODE (decl) == VAR_DECL)
1055 /* The object must be defined in this translation unit. */
1056 if (DECL_EXTERNAL (decl))
1057 return NULL;
1059 /* There's no point using object blocks for something that is
1060 isolated by definition. */
1061 if (DECL_ONE_ONLY (decl))
1062 return NULL;
1065 /* We can only calculate block offsets if the decl has a known
1066 constant size. */
1067 if (DECL_SIZE_UNIT (decl) == NULL)
1068 return NULL;
1069 if (!host_integerp (DECL_SIZE_UNIT (decl), 1))
1070 return NULL;
1072 /* Find out which section should contain DECL. We cannot put it into
1073 an object block if it requires a standalone definition. */
1074 if (TREE_CODE (decl) == VAR_DECL)
1075 align_variable (decl, 0);
1076 sect = get_variable_section (decl, true);
1077 if (SECTION_STYLE (sect) == SECTION_NOSWITCH)
1078 return NULL;
1080 return get_block_for_section (sect);
1083 /* Make sure block symbol SYMBOL is in block BLOCK. */
1085 static void
1086 change_symbol_block (rtx symbol, struct object_block *block)
1088 if (block != SYMBOL_REF_BLOCK (symbol))
1090 gcc_assert (SYMBOL_REF_BLOCK_OFFSET (symbol) < 0);
1091 SYMBOL_REF_BLOCK (symbol) = block;
1095 /* Return true if it is possible to put DECL in an object_block. */
1097 static bool
1098 use_blocks_for_decl_p (tree decl)
1100 /* Only data DECLs can be placed into object blocks. */
1101 if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != CONST_DECL)
1102 return false;
1104 /* Detect decls created by dw2_force_const_mem. Such decls are
1105 special because DECL_INITIAL doesn't specify the decl's true value.
1106 dw2_output_indirect_constants will instead call assemble_variable
1107 with dont_output_data set to 1 and then print the contents itself. */
1108 if (DECL_INITIAL (decl) == decl)
1109 return false;
1111 /* If this decl is an alias, then we don't want to emit a
1112 definition. */
1113 if (lookup_attribute ("alias", DECL_ATTRIBUTES (decl)))
1114 return false;
1116 return targetm.use_blocks_for_decl_p (decl);
1119 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
1120 have static storage duration. In other words, it should not be an
1121 automatic variable, including PARM_DECLs.
1123 There is, however, one exception: this function handles variables
1124 explicitly placed in a particular register by the user.
1126 This is never called for PARM_DECL nodes. */
1128 void
1129 make_decl_rtl (tree decl)
1131 const char *name = 0;
1132 int reg_number;
1133 rtx x;
1135 /* Check that we are not being given an automatic variable. */
1136 gcc_assert (TREE_CODE (decl) != PARM_DECL
1137 && TREE_CODE (decl) != RESULT_DECL);
1139 /* A weak alias has TREE_PUBLIC set but not the other bits. */
1140 gcc_assert (TREE_CODE (decl) != VAR_DECL
1141 || TREE_STATIC (decl)
1142 || TREE_PUBLIC (decl)
1143 || DECL_EXTERNAL (decl)
1144 || DECL_REGISTER (decl));
1146 /* And that we were not given a type or a label. */
1147 gcc_assert (TREE_CODE (decl) != TYPE_DECL
1148 && TREE_CODE (decl) != LABEL_DECL);
1150 /* For a duplicate declaration, we can be called twice on the
1151 same DECL node. Don't discard the RTL already made. */
1152 if (DECL_RTL_SET_P (decl))
1154 /* If the old RTL had the wrong mode, fix the mode. */
1155 x = DECL_RTL (decl);
1156 if (GET_MODE (x) != DECL_MODE (decl))
1157 SET_DECL_RTL (decl, adjust_address_nv (x, DECL_MODE (decl), 0));
1159 if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
1160 return;
1162 /* ??? Another way to do this would be to maintain a hashed
1163 table of such critters. Instead of adding stuff to a DECL
1164 to give certain attributes to it, we could use an external
1165 hash map from DECL to set of attributes. */
1167 /* Let the target reassign the RTL if it wants.
1168 This is necessary, for example, when one machine specific
1169 decl attribute overrides another. */
1170 targetm.encode_section_info (decl, DECL_RTL (decl), false);
1172 /* If the symbol has a SYMBOL_REF_BLOCK field, update it based
1173 on the new decl information. */
1174 if (MEM_P (x)
1175 && GET_CODE (XEXP (x, 0)) == SYMBOL_REF
1176 && SYMBOL_REF_HAS_BLOCK_INFO_P (XEXP (x, 0)))
1177 change_symbol_block (XEXP (x, 0), get_block_for_decl (decl));
1179 /* Make this function static known to the mudflap runtime. */
1180 if (flag_mudflap && TREE_CODE (decl) == VAR_DECL)
1181 mudflap_enqueue_decl (decl);
1183 return;
1186 /* If this variable belongs to the global constant pool, retrieve the
1187 pre-computed RTL or recompute it in LTO mode. */
1188 if (TREE_CODE (decl) == VAR_DECL && DECL_IN_CONSTANT_POOL (decl))
1190 SET_DECL_RTL (decl, output_constant_def_1 (DECL_INITIAL (decl),
1191 decl, 1));
1192 return;
1195 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
1197 if (name[0] != '*' && TREE_CODE (decl) != FUNCTION_DECL
1198 && DECL_REGISTER (decl))
1200 error ("register name not specified for %q+D", decl);
1202 else if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
1204 const char *asmspec = name+1;
1205 enum machine_mode mode = DECL_MODE (decl);
1206 reg_number = decode_reg_name (asmspec);
1207 /* First detect errors in declaring global registers. */
1208 if (reg_number == -1)
1209 error ("register name not specified for %q+D", decl);
1210 else if (reg_number < 0)
1211 error ("invalid register name for %q+D", decl);
1212 else if (mode == BLKmode)
1213 error ("data type of %q+D isn%'t suitable for a register",
1214 decl);
1215 else if (!in_hard_reg_set_p (accessible_reg_set, mode, reg_number))
1216 error ("the register specified for %q+D cannot be accessed"
1217 " by the current target", decl);
1218 else if (!in_hard_reg_set_p (operand_reg_set, mode, reg_number))
1219 error ("the register specified for %q+D is not general enough"
1220 " to be used as a register variable", decl);
1221 else if (!HARD_REGNO_MODE_OK (reg_number, mode))
1222 error ("register specified for %q+D isn%'t suitable for data type",
1223 decl);
1224 /* Now handle properly declared static register variables. */
1225 else
1227 int nregs;
1229 if (DECL_INITIAL (decl) != 0 && TREE_STATIC (decl))
1231 DECL_INITIAL (decl) = 0;
1232 error ("global register variable has initial value");
1234 if (TREE_THIS_VOLATILE (decl))
1235 warning (OPT_Wvolatile_register_var,
1236 "optimization may eliminate reads and/or "
1237 "writes to register variables");
1239 /* If the user specified one of the eliminables registers here,
1240 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
1241 confused with that register and be eliminated. This usage is
1242 somewhat suspect... */
1244 SET_DECL_RTL (decl, gen_rtx_raw_REG (mode, reg_number));
1245 ORIGINAL_REGNO (DECL_RTL (decl)) = reg_number;
1246 REG_USERVAR_P (DECL_RTL (decl)) = 1;
1248 if (TREE_STATIC (decl))
1250 /* Make this register global, so not usable for anything
1251 else. */
1252 #ifdef ASM_DECLARE_REGISTER_GLOBAL
1253 name = IDENTIFIER_POINTER (DECL_NAME (decl));
1254 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file, decl, reg_number, name);
1255 #endif
1256 nregs = hard_regno_nregs[reg_number][mode];
1257 while (nregs > 0)
1258 globalize_reg (decl, reg_number + --nregs);
1261 /* As a register variable, it has no section. */
1262 return;
1265 /* Now handle ordinary static variables and functions (in memory).
1266 Also handle vars declared register invalidly. */
1267 else if (name[0] == '*')
1269 #ifdef REGISTER_PREFIX
1270 if (strlen (REGISTER_PREFIX) != 0)
1272 reg_number = decode_reg_name (name);
1273 if (reg_number >= 0 || reg_number == -3)
1274 error ("register name given for non-register variable %q+D", decl);
1276 #endif
1279 /* Specifying a section attribute on a variable forces it into a
1280 non-.bss section, and thus it cannot be common. */
1281 /* FIXME: In general this code should not be necessary because
1282 visibility pass is doing the same work. But notice_global_symbol
1283 is called early and it needs to make DECL_RTL to get the name.
1284 we take care of recomputing the DECL_RTL after visibility is changed. */
1285 if (TREE_CODE (decl) == VAR_DECL
1286 && DECL_SECTION_NAME (decl) != NULL_TREE
1287 && DECL_INITIAL (decl) == NULL_TREE
1288 && DECL_COMMON (decl))
1289 DECL_COMMON (decl) = 0;
1291 /* Variables can't be both common and weak. */
1292 if (TREE_CODE (decl) == VAR_DECL && DECL_WEAK (decl))
1293 DECL_COMMON (decl) = 0;
1295 if (use_object_blocks_p () && use_blocks_for_decl_p (decl))
1296 x = create_block_symbol (name, get_block_for_decl (decl), -1);
1297 else
1299 enum machine_mode address_mode = Pmode;
1300 if (TREE_TYPE (decl) != error_mark_node)
1302 addr_space_t as = TYPE_ADDR_SPACE (TREE_TYPE (decl));
1303 address_mode = targetm.addr_space.address_mode (as);
1305 x = gen_rtx_SYMBOL_REF (address_mode, name);
1307 SYMBOL_REF_WEAK (x) = DECL_WEAK (decl);
1308 SET_SYMBOL_REF_DECL (x, decl);
1310 x = gen_rtx_MEM (DECL_MODE (decl), x);
1311 if (TREE_CODE (decl) != FUNCTION_DECL)
1312 set_mem_attributes (x, decl, 1);
1313 SET_DECL_RTL (decl, x);
1315 /* Optionally set flags or add text to the name to record information
1316 such as that it is a function name.
1317 If the name is changed, the macro ASM_OUTPUT_LABELREF
1318 will have to know how to strip this information. */
1319 targetm.encode_section_info (decl, DECL_RTL (decl), true);
1321 /* Make this function static known to the mudflap runtime. */
1322 if (flag_mudflap && TREE_CODE (decl) == VAR_DECL)
1323 mudflap_enqueue_decl (decl);
1326 /* Like make_decl_rtl, but inhibit creation of new alias sets when
1327 calling make_decl_rtl. Also, reset DECL_RTL before returning the
1328 rtl. */
1331 make_decl_rtl_for_debug (tree decl)
1333 unsigned int save_aliasing_flag, save_mudflap_flag;
1334 rtx rtl;
1336 if (DECL_RTL_SET_P (decl))
1337 return DECL_RTL (decl);
1339 /* Kludge alert! Somewhere down the call chain, make_decl_rtl will
1340 call new_alias_set. If running with -fcompare-debug, sometimes
1341 we do not want to create alias sets that will throw the alias
1342 numbers off in the comparison dumps. So... clearing
1343 flag_strict_aliasing will keep new_alias_set() from creating a
1344 new set. It is undesirable to register decl with mudflap
1345 in this case as well. */
1346 save_aliasing_flag = flag_strict_aliasing;
1347 flag_strict_aliasing = 0;
1348 save_mudflap_flag = flag_mudflap;
1349 flag_mudflap = 0;
1351 rtl = DECL_RTL (decl);
1352 /* Reset DECL_RTL back, as various parts of the compiler expects
1353 DECL_RTL set meaning it is actually going to be output. */
1354 SET_DECL_RTL (decl, NULL);
1356 flag_strict_aliasing = save_aliasing_flag;
1357 flag_mudflap = save_mudflap_flag;
1359 return rtl;
1362 /* Output a string of literal assembler code
1363 for an `asm' keyword used between functions. */
1365 void
1366 assemble_asm (tree string)
1368 const char *p;
1369 app_enable ();
1371 if (TREE_CODE (string) == ADDR_EXPR)
1372 string = TREE_OPERAND (string, 0);
1374 p = TREE_STRING_POINTER (string);
1375 fprintf (asm_out_file, "%s%s\n", p[0] == '\t' ? "" : "\t", p);
1378 /* Write the address of the entity given by SYMBOL to SEC. */
1379 void
1380 assemble_addr_to_section (rtx symbol, section *sec)
1382 switch_to_section (sec);
1383 assemble_align (POINTER_SIZE);
1384 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1387 /* Return the numbered .ctors.N (if CONSTRUCTOR_P) or .dtors.N (if
1388 not) section for PRIORITY. */
1389 section *
1390 get_cdtor_priority_section (int priority, bool constructor_p)
1392 char buf[16];
1394 /* ??? This only works reliably with the GNU linker. */
1395 sprintf (buf, "%s.%.5u",
1396 constructor_p ? ".ctors" : ".dtors",
1397 /* Invert the numbering so the linker puts us in the proper
1398 order; constructors are run from right to left, and the
1399 linker sorts in increasing order. */
1400 MAX_INIT_PRIORITY - priority);
1401 return get_section (buf, SECTION_WRITE, NULL);
1404 void
1405 default_named_section_asm_out_destructor (rtx symbol, int priority)
1407 section *sec;
1409 if (priority != DEFAULT_INIT_PRIORITY)
1410 sec = get_cdtor_priority_section (priority,
1411 /*constructor_p=*/false);
1412 else
1413 sec = get_section (".dtors", SECTION_WRITE, NULL);
1415 assemble_addr_to_section (symbol, sec);
1418 #ifdef DTORS_SECTION_ASM_OP
1419 void
1420 default_dtor_section_asm_out_destructor (rtx symbol,
1421 int priority ATTRIBUTE_UNUSED)
1423 assemble_addr_to_section (symbol, dtors_section);
1425 #endif
1427 void
1428 default_named_section_asm_out_constructor (rtx symbol, int priority)
1430 section *sec;
1432 if (priority != DEFAULT_INIT_PRIORITY)
1433 sec = get_cdtor_priority_section (priority,
1434 /*constructor_p=*/true);
1435 else
1436 sec = get_section (".ctors", SECTION_WRITE, NULL);
1438 assemble_addr_to_section (symbol, sec);
1441 #ifdef CTORS_SECTION_ASM_OP
1442 void
1443 default_ctor_section_asm_out_constructor (rtx symbol,
1444 int priority ATTRIBUTE_UNUSED)
1446 assemble_addr_to_section (symbol, ctors_section);
1448 #endif
1450 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1451 a nonzero value if the constant pool should be output before the
1452 start of the function, or a zero value if the pool should output
1453 after the end of the function. The default is to put it before the
1454 start. */
1456 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1457 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1458 #endif
1460 /* DECL is an object (either VAR_DECL or FUNCTION_DECL) which is going
1461 to be output to assembler.
1462 Set first_global_object_name and weak_global_object_name as appropriate. */
1464 void
1465 notice_global_symbol (tree decl)
1467 const char **type = &first_global_object_name;
1469 if (first_global_object_name
1470 || !TREE_PUBLIC (decl)
1471 || DECL_EXTERNAL (decl)
1472 || !DECL_NAME (decl)
1473 || (TREE_CODE (decl) != FUNCTION_DECL
1474 && (TREE_CODE (decl) != VAR_DECL
1475 || (DECL_COMMON (decl)
1476 && (DECL_INITIAL (decl) == 0
1477 || DECL_INITIAL (decl) == error_mark_node))))
1478 || !MEM_P (DECL_RTL (decl)))
1479 return;
1481 /* We win when global object is found, but it is useful to know about weak
1482 symbol as well so we can produce nicer unique names. */
1483 if (DECL_WEAK (decl) || DECL_ONE_ONLY (decl) || flag_shlib)
1484 type = &weak_global_object_name;
1486 if (!*type)
1488 const char *p;
1489 const char *name;
1490 rtx decl_rtl = DECL_RTL (decl);
1492 p = targetm.strip_name_encoding (XSTR (XEXP (decl_rtl, 0), 0));
1493 name = ggc_strdup (p);
1495 *type = name;
1499 /* If not using flag_reorder_blocks_and_partition, decide early whether the
1500 current function goes into the cold section, so that targets can use
1501 current_function_section during RTL expansion. DECL describes the
1502 function. */
1504 void
1505 decide_function_section (tree decl)
1507 first_function_block_is_cold = false;
1509 if (flag_reorder_blocks_and_partition)
1510 /* We will decide in assemble_start_function. */
1511 return;
1513 if (DECL_SECTION_NAME (decl))
1515 struct cgraph_node *node = cgraph_get_node (current_function_decl);
1516 /* Calls to function_section rely on first_function_block_is_cold
1517 being accurate. */
1518 first_function_block_is_cold = (node
1519 && node->frequency
1520 == NODE_FREQUENCY_UNLIKELY_EXECUTED);
1523 in_cold_section_p = first_function_block_is_cold;
1526 /* Output assembler code for the constant pool of a function and associated
1527 with defining the name of the function. DECL describes the function.
1528 NAME is the function's name. For the constant pool, we use the current
1529 constant pool data. */
1531 void
1532 assemble_start_function (tree decl, const char *fnname)
1534 int align;
1535 char tmp_label[100];
1536 bool hot_label_written = false;
1538 if (flag_reorder_blocks_and_partition)
1540 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LHOTB", const_labelno);
1541 crtl->subsections.hot_section_label = ggc_strdup (tmp_label);
1542 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LCOLDB", const_labelno);
1543 crtl->subsections.cold_section_label = ggc_strdup (tmp_label);
1544 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LHOTE", const_labelno);
1545 crtl->subsections.hot_section_end_label = ggc_strdup (tmp_label);
1546 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LCOLDE", const_labelno);
1547 crtl->subsections.cold_section_end_label = ggc_strdup (tmp_label);
1548 const_labelno++;
1550 else
1552 crtl->subsections.hot_section_label = NULL;
1553 crtl->subsections.cold_section_label = NULL;
1554 crtl->subsections.hot_section_end_label = NULL;
1555 crtl->subsections.cold_section_end_label = NULL;
1558 /* The following code does not need preprocessing in the assembler. */
1560 app_disable ();
1562 if (CONSTANT_POOL_BEFORE_FUNCTION)
1563 output_constant_pool (fnname, decl);
1565 /* Make sure the not and cold text (code) sections are properly
1566 aligned. This is necessary here in the case where the function
1567 has both hot and cold sections, because we don't want to re-set
1568 the alignment when the section switch happens mid-function. */
1570 if (flag_reorder_blocks_and_partition)
1572 first_function_block_is_cold = false;
1574 switch_to_section (unlikely_text_section ());
1575 assemble_align (DECL_ALIGN (decl));
1576 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.cold_section_label);
1578 /* When the function starts with a cold section, we need to explicitly
1579 align the hot section and write out the hot section label.
1580 But if the current function is a thunk, we do not have a CFG. */
1581 if (!cfun->is_thunk
1582 && BB_PARTITION (ENTRY_BLOCK_PTR->next_bb) == BB_COLD_PARTITION)
1584 switch_to_section (text_section);
1585 assemble_align (DECL_ALIGN (decl));
1586 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.hot_section_label);
1587 hot_label_written = true;
1588 first_function_block_is_cold = true;
1590 in_cold_section_p = first_function_block_is_cold;
1594 /* Switch to the correct text section for the start of the function. */
1596 switch_to_section (function_section (decl));
1597 if (flag_reorder_blocks_and_partition
1598 && !hot_label_written)
1599 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.hot_section_label);
1601 /* Tell assembler to move to target machine's alignment for functions. */
1602 align = floor_log2 (DECL_ALIGN (decl) / BITS_PER_UNIT);
1603 if (align > 0)
1605 ASM_OUTPUT_ALIGN (asm_out_file, align);
1608 /* Handle a user-specified function alignment.
1609 Note that we still need to align to DECL_ALIGN, as above,
1610 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1611 if (! DECL_USER_ALIGN (decl)
1612 && align_functions_log > align
1613 && optimize_function_for_speed_p (cfun))
1615 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1616 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file,
1617 align_functions_log, align_functions - 1);
1618 #else
1619 ASM_OUTPUT_ALIGN (asm_out_file, align_functions_log);
1620 #endif
1623 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1624 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file, fnname);
1625 #endif
1627 if (!DECL_IGNORED_P (decl))
1628 (*debug_hooks->begin_function) (decl);
1630 /* Make function name accessible from other files, if appropriate. */
1632 if (TREE_PUBLIC (decl))
1634 notice_global_symbol (decl);
1636 globalize_decl (decl);
1638 maybe_assemble_visibility (decl);
1641 if (DECL_PRESERVE_P (decl))
1642 targetm.asm_out.mark_decl_preserved (fnname);
1644 /* Do any machine/system dependent processing of the function name. */
1645 #ifdef ASM_DECLARE_FUNCTION_NAME
1646 ASM_DECLARE_FUNCTION_NAME (asm_out_file, fnname, current_function_decl);
1647 #else
1648 /* Standard thing is just output label for the function. */
1649 ASM_OUTPUT_FUNCTION_LABEL (asm_out_file, fnname, current_function_decl);
1650 #endif /* ASM_DECLARE_FUNCTION_NAME */
1652 if (lookup_attribute ("no_split_stack", DECL_ATTRIBUTES (decl)))
1653 saw_no_split_stack = true;
1656 /* Output assembler code associated with defining the size of the
1657 function. DECL describes the function. NAME is the function's name. */
1659 void
1660 assemble_end_function (tree decl, const char *fnname ATTRIBUTE_UNUSED)
1662 #ifdef ASM_DECLARE_FUNCTION_SIZE
1663 /* We could have switched section in the middle of the function. */
1664 if (flag_reorder_blocks_and_partition)
1665 switch_to_section (function_section (decl));
1666 ASM_DECLARE_FUNCTION_SIZE (asm_out_file, fnname, decl);
1667 #endif
1668 if (! CONSTANT_POOL_BEFORE_FUNCTION)
1670 output_constant_pool (fnname, decl);
1671 switch_to_section (function_section (decl)); /* need to switch back */
1673 /* Output labels for end of hot/cold text sections (to be used by
1674 debug info.) */
1675 if (flag_reorder_blocks_and_partition)
1677 section *save_text_section;
1679 save_text_section = in_section;
1680 switch_to_section (unlikely_text_section ());
1681 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.cold_section_end_label);
1682 if (first_function_block_is_cold)
1683 switch_to_section (text_section);
1684 else
1685 switch_to_section (function_section (decl));
1686 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.hot_section_end_label);
1687 switch_to_section (save_text_section);
1691 /* Assemble code to leave SIZE bytes of zeros. */
1693 void
1694 assemble_zeros (unsigned HOST_WIDE_INT size)
1696 /* Do no output if -fsyntax-only. */
1697 if (flag_syntax_only)
1698 return;
1700 #ifdef ASM_NO_SKIP_IN_TEXT
1701 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1702 so we must output 0s explicitly in the text section. */
1703 if (ASM_NO_SKIP_IN_TEXT && (in_section->common.flags & SECTION_CODE) != 0)
1705 unsigned HOST_WIDE_INT i;
1706 for (i = 0; i < size; i++)
1707 assemble_integer (const0_rtx, 1, BITS_PER_UNIT, 1);
1709 else
1710 #endif
1711 if (size > 0)
1712 ASM_OUTPUT_SKIP (asm_out_file, size);
1715 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1717 void
1718 assemble_align (int align)
1720 if (align > BITS_PER_UNIT)
1722 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
1726 /* Assemble a string constant with the specified C string as contents. */
1728 void
1729 assemble_string (const char *p, int size)
1731 int pos = 0;
1732 int maximum = 2000;
1734 /* If the string is very long, split it up. */
1736 while (pos < size)
1738 int thissize = size - pos;
1739 if (thissize > maximum)
1740 thissize = maximum;
1742 ASM_OUTPUT_ASCII (asm_out_file, p, thissize);
1744 pos += thissize;
1745 p += thissize;
1750 /* A noswitch_section_callback for lcomm_section. */
1752 static bool
1753 emit_local (tree decl ATTRIBUTE_UNUSED,
1754 const char *name ATTRIBUTE_UNUSED,
1755 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1756 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1758 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1759 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name,
1760 size, DECL_ALIGN (decl));
1761 return true;
1762 #elif defined ASM_OUTPUT_ALIGNED_LOCAL
1763 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, DECL_ALIGN (decl));
1764 return true;
1765 #else
1766 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
1767 return false;
1768 #endif
1771 /* A noswitch_section_callback for bss_noswitch_section. */
1773 #if defined ASM_OUTPUT_ALIGNED_BSS
1774 static bool
1775 emit_bss (tree decl ATTRIBUTE_UNUSED,
1776 const char *name ATTRIBUTE_UNUSED,
1777 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1778 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1780 #if defined ASM_OUTPUT_ALIGNED_BSS
1781 ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size, DECL_ALIGN (decl));
1782 return true;
1783 #endif
1785 #endif
1787 /* A noswitch_section_callback for comm_section. */
1789 static bool
1790 emit_common (tree decl ATTRIBUTE_UNUSED,
1791 const char *name ATTRIBUTE_UNUSED,
1792 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1793 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1795 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1796 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name,
1797 size, DECL_ALIGN (decl));
1798 return true;
1799 #elif defined ASM_OUTPUT_ALIGNED_COMMON
1800 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size, DECL_ALIGN (decl));
1801 return true;
1802 #else
1803 ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded);
1804 return false;
1805 #endif
1808 /* A noswitch_section_callback for tls_comm_section. */
1810 static bool
1811 emit_tls_common (tree decl ATTRIBUTE_UNUSED,
1812 const char *name ATTRIBUTE_UNUSED,
1813 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1814 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1816 #ifdef ASM_OUTPUT_TLS_COMMON
1817 ASM_OUTPUT_TLS_COMMON (asm_out_file, decl, name, size);
1818 return true;
1819 #else
1820 sorry ("thread-local COMMON data not implemented");
1821 return true;
1822 #endif
1825 /* Assemble DECL given that it belongs in SECTION_NOSWITCH section SECT.
1826 NAME is the name of DECL's SYMBOL_REF. */
1828 static void
1829 assemble_noswitch_variable (tree decl, const char *name, section *sect)
1831 unsigned HOST_WIDE_INT size, rounded;
1833 size = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
1834 rounded = size;
1836 if (flag_asan && asan_protect_global (decl))
1837 size += asan_red_zone_size (size);
1839 /* Don't allocate zero bytes of common,
1840 since that means "undefined external" in the linker. */
1841 if (size == 0)
1842 rounded = 1;
1844 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1845 so that each uninitialized object starts on such a boundary. */
1846 rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
1847 rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1848 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1850 if (!sect->noswitch.callback (decl, name, size, rounded)
1851 && (unsigned HOST_WIDE_INT) DECL_ALIGN_UNIT (decl) > rounded)
1852 warning (0, "requested alignment for %q+D is greater than "
1853 "implemented alignment of %wu", decl, rounded);
1856 /* A subroutine of assemble_variable. Output the label and contents of
1857 DECL, whose address is a SYMBOL_REF with name NAME. DONT_OUTPUT_DATA
1858 is as for assemble_variable. */
1860 static void
1861 assemble_variable_contents (tree decl, const char *name,
1862 bool dont_output_data)
1864 /* Do any machine/system dependent processing of the object. */
1865 #ifdef ASM_DECLARE_OBJECT_NAME
1866 last_assemble_variable_decl = decl;
1867 ASM_DECLARE_OBJECT_NAME (asm_out_file, name, decl);
1868 #else
1869 /* Standard thing is just output label for the object. */
1870 ASM_OUTPUT_LABEL (asm_out_file, name);
1871 #endif /* ASM_DECLARE_OBJECT_NAME */
1873 if (!dont_output_data)
1875 if (DECL_INITIAL (decl)
1876 && DECL_INITIAL (decl) != error_mark_node
1877 && !initializer_zerop (DECL_INITIAL (decl)))
1878 /* Output the actual data. */
1879 output_constant (DECL_INITIAL (decl),
1880 tree_low_cst (DECL_SIZE_UNIT (decl), 1),
1881 DECL_ALIGN (decl));
1882 else
1883 /* Leave space for it. */
1884 assemble_zeros (tree_low_cst (DECL_SIZE_UNIT (decl), 1));
1888 /* Assemble everything that is needed for a variable or function declaration.
1889 Not used for automatic variables, and not used for function definitions.
1890 Should not be called for variables of incomplete structure type.
1892 TOP_LEVEL is nonzero if this variable has file scope.
1893 AT_END is nonzero if this is the special handling, at end of compilation,
1894 to define things that have had only tentative definitions.
1895 DONT_OUTPUT_DATA if nonzero means don't actually output the
1896 initial value (that will be done by the caller). */
1898 void
1899 assemble_variable (tree decl, int top_level ATTRIBUTE_UNUSED,
1900 int at_end ATTRIBUTE_UNUSED, int dont_output_data)
1902 const char *name;
1903 rtx decl_rtl, symbol;
1904 section *sect;
1905 bool asan_protected = false;
1907 /* This function is supposed to handle VARIABLES. Ensure we have one. */
1908 gcc_assert (TREE_CODE (decl) == VAR_DECL);
1910 /* Emulated TLS had better not get this far. */
1911 gcc_checking_assert (targetm.have_tls || !DECL_THREAD_LOCAL_P (decl));
1913 last_assemble_variable_decl = 0;
1915 /* Normally no need to say anything here for external references,
1916 since assemble_external is called by the language-specific code
1917 when a declaration is first seen. */
1919 if (DECL_EXTERNAL (decl))
1920 return;
1922 /* Do nothing for global register variables. */
1923 if (DECL_RTL_SET_P (decl) && REG_P (DECL_RTL (decl)))
1925 TREE_ASM_WRITTEN (decl) = 1;
1926 return;
1929 /* If type was incomplete when the variable was declared,
1930 see if it is complete now. */
1932 if (DECL_SIZE (decl) == 0)
1933 layout_decl (decl, 0);
1935 /* Still incomplete => don't allocate it; treat the tentative defn
1936 (which is what it must have been) as an `extern' reference. */
1938 if (!dont_output_data && DECL_SIZE (decl) == 0)
1940 error ("storage size of %q+D isn%'t known", decl);
1941 TREE_ASM_WRITTEN (decl) = 1;
1942 return;
1945 /* The first declaration of a variable that comes through this function
1946 decides whether it is global (in C, has external linkage)
1947 or local (in C, has internal linkage). So do nothing more
1948 if this function has already run. */
1950 if (TREE_ASM_WRITTEN (decl))
1951 return;
1953 /* Make sure targetm.encode_section_info is invoked before we set
1954 ASM_WRITTEN. */
1955 decl_rtl = DECL_RTL (decl);
1957 TREE_ASM_WRITTEN (decl) = 1;
1959 /* Do no output if -fsyntax-only. */
1960 if (flag_syntax_only)
1961 return;
1963 if (! dont_output_data
1964 && ! valid_constant_size_p (DECL_SIZE_UNIT (decl)))
1966 error ("size of variable %q+D is too large", decl);
1967 return;
1970 gcc_assert (MEM_P (decl_rtl));
1971 gcc_assert (GET_CODE (XEXP (decl_rtl, 0)) == SYMBOL_REF);
1972 symbol = XEXP (decl_rtl, 0);
1974 /* If this symbol belongs to the tree constant pool, output the constant
1975 if it hasn't already been written. */
1976 if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
1978 tree decl = SYMBOL_REF_DECL (symbol);
1979 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl)))
1980 output_constant_def_contents (symbol);
1981 return;
1984 app_disable ();
1986 name = XSTR (symbol, 0);
1987 if (TREE_PUBLIC (decl) && DECL_NAME (decl))
1988 notice_global_symbol (decl);
1990 /* Compute the alignment of this data. */
1992 align_variable (decl, dont_output_data);
1994 if (flag_asan
1995 && asan_protect_global (decl))
1997 asan_protected = true;
1998 DECL_ALIGN (decl) = MAX (DECL_ALIGN (decl),
1999 ASAN_RED_ZONE_SIZE * BITS_PER_UNIT);
2002 set_mem_align (decl_rtl, DECL_ALIGN (decl));
2004 if (TREE_PUBLIC (decl))
2005 maybe_assemble_visibility (decl);
2007 if (DECL_PRESERVE_P (decl))
2008 targetm.asm_out.mark_decl_preserved (name);
2010 /* First make the assembler name(s) global if appropriate. */
2011 sect = get_variable_section (decl, false);
2012 if (TREE_PUBLIC (decl)
2013 && (sect->common.flags & SECTION_COMMON) == 0)
2014 globalize_decl (decl);
2016 /* Output any data that we will need to use the address of. */
2017 if (DECL_INITIAL (decl) && DECL_INITIAL (decl) != error_mark_node)
2018 output_addressed_constants (DECL_INITIAL (decl));
2020 /* dbxout.c needs to know this. */
2021 if (sect && (sect->common.flags & SECTION_CODE) != 0)
2022 DECL_IN_TEXT_SECTION (decl) = 1;
2024 /* If the decl is part of an object_block, make sure that the decl
2025 has been positioned within its block, but do not write out its
2026 definition yet. output_object_blocks will do that later. */
2027 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol) && SYMBOL_REF_BLOCK (symbol))
2029 gcc_assert (!dont_output_data);
2030 place_block_symbol (symbol);
2032 else if (SECTION_STYLE (sect) == SECTION_NOSWITCH)
2033 assemble_noswitch_variable (decl, name, sect);
2034 else
2036 switch_to_section (sect);
2037 if (DECL_ALIGN (decl) > BITS_PER_UNIT)
2038 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (DECL_ALIGN_UNIT (decl)));
2039 assemble_variable_contents (decl, name, dont_output_data);
2040 if (asan_protected)
2042 unsigned HOST_WIDE_INT int size
2043 = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
2044 assemble_zeros (asan_red_zone_size (size));
2049 /* Return 1 if type TYPE contains any pointers. */
2051 static int
2052 contains_pointers_p (tree type)
2054 switch (TREE_CODE (type))
2056 case POINTER_TYPE:
2057 case REFERENCE_TYPE:
2058 /* I'm not sure whether OFFSET_TYPE needs this treatment,
2059 so I'll play safe and return 1. */
2060 case OFFSET_TYPE:
2061 return 1;
2063 case RECORD_TYPE:
2064 case UNION_TYPE:
2065 case QUAL_UNION_TYPE:
2067 tree fields;
2068 /* For a type that has fields, see if the fields have pointers. */
2069 for (fields = TYPE_FIELDS (type); fields; fields = DECL_CHAIN (fields))
2070 if (TREE_CODE (fields) == FIELD_DECL
2071 && contains_pointers_p (TREE_TYPE (fields)))
2072 return 1;
2073 return 0;
2076 case ARRAY_TYPE:
2077 /* An array type contains pointers if its element type does. */
2078 return contains_pointers_p (TREE_TYPE (type));
2080 default:
2081 return 0;
2085 /* We delay assemble_external processing until
2086 the compilation unit is finalized. This is the best we can do for
2087 right now (i.e. stage 3 of GCC 4.0) - the right thing is to delay
2088 it all the way to final. See PR 17982 for further discussion. */
2089 static GTY(()) tree pending_assemble_externals;
2091 #ifdef ASM_OUTPUT_EXTERNAL
2092 /* Some targets delay some output to final using TARGET_ASM_FILE_END.
2093 As a result, assemble_external can be called after the list of externals
2094 is processed and the pointer set destroyed. */
2095 static bool pending_assemble_externals_processed;
2097 /* Avoid O(external_decls**2) lookups in the pending_assemble_externals
2098 TREE_LIST in assemble_external. */
2099 static struct pointer_set_t *pending_assemble_externals_set;
2101 /* True if DECL is a function decl for which no out-of-line copy exists.
2102 It is assumed that DECL's assembler name has been set. */
2104 static bool
2105 incorporeal_function_p (tree decl)
2107 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
2109 const char *name;
2111 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
2112 && (DECL_FUNCTION_CODE (decl) == BUILT_IN_ALLOCA
2113 || DECL_FUNCTION_CODE (decl) == BUILT_IN_ALLOCA_WITH_ALIGN))
2114 return true;
2116 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2117 /* Atomic or sync builtins which have survived this far will be
2118 resolved externally and therefore are not incorporeal. */
2119 if (strncmp (name, "__builtin_", 10) == 0)
2120 return true;
2122 return false;
2125 /* Actually do the tests to determine if this is necessary, and invoke
2126 ASM_OUTPUT_EXTERNAL. */
2127 static void
2128 assemble_external_real (tree decl)
2130 rtx rtl = DECL_RTL (decl);
2132 if (MEM_P (rtl) && GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF
2133 && !SYMBOL_REF_USED (XEXP (rtl, 0))
2134 && !incorporeal_function_p (decl))
2136 /* Some systems do require some output. */
2137 SYMBOL_REF_USED (XEXP (rtl, 0)) = 1;
2138 ASM_OUTPUT_EXTERNAL (asm_out_file, decl, XSTR (XEXP (rtl, 0), 0));
2141 #endif
2143 void
2144 process_pending_assemble_externals (void)
2146 #ifdef ASM_OUTPUT_EXTERNAL
2147 tree list;
2148 for (list = pending_assemble_externals; list; list = TREE_CHAIN (list))
2149 assemble_external_real (TREE_VALUE (list));
2151 pending_assemble_externals = 0;
2152 pending_assemble_externals_processed = true;
2153 pointer_set_destroy (pending_assemble_externals_set);
2154 #endif
2157 /* This TREE_LIST contains any weak symbol declarations waiting
2158 to be emitted. */
2159 static GTY(()) tree weak_decls;
2161 /* Output something to declare an external symbol to the assembler,
2162 and qualifiers such as weakness. (Most assemblers don't need
2163 extern declaration, so we normally output nothing.) Do nothing if
2164 DECL is not external. */
2166 void
2167 assemble_external (tree decl ATTRIBUTE_UNUSED)
2169 /* Make sure that the ASM_OUT_FILE is open.
2170 If it's not, we should not be calling this function. */
2171 gcc_assert (asm_out_file);
2173 /* In a perfect world, the following condition would be true.
2174 Sadly, the Java and Go front ends emit assembly *from the front end*,
2175 bypassing the call graph. See PR52739. Fix before GCC 4.8. */
2176 #if 0
2177 /* This function should only be called if we are expanding, or have
2178 expanded, to RTL.
2179 Ideally, only final.c would be calling this function, but it is
2180 not clear whether that would break things somehow. See PR 17982
2181 for further discussion. */
2182 gcc_assert (cgraph_state == CGRAPH_STATE_EXPANSION
2183 || cgraph_state == CGRAPH_STATE_FINISHED);
2184 #endif
2186 if (!DECL_P (decl) || !DECL_EXTERNAL (decl) || !TREE_PUBLIC (decl))
2187 return;
2189 /* We want to output annotation for weak and external symbols at
2190 very last to check if they are references or not. */
2192 if (TARGET_SUPPORTS_WEAK
2193 && DECL_WEAK (decl)
2194 /* TREE_STATIC is a weird and abused creature which is not
2195 generally the right test for whether an entity has been
2196 locally emitted, inlined or otherwise not-really-extern, but
2197 for declarations that can be weak, it happens to be
2198 match. */
2199 && !TREE_STATIC (decl)
2200 && lookup_attribute ("weak", DECL_ATTRIBUTES (decl))
2201 && value_member (decl, weak_decls) == NULL_TREE)
2202 weak_decls = tree_cons (NULL, decl, weak_decls);
2204 #ifdef ASM_OUTPUT_EXTERNAL
2205 if (pending_assemble_externals_processed)
2207 assemble_external_real (decl);
2208 return;
2211 if (! pointer_set_insert (pending_assemble_externals_set, decl))
2212 pending_assemble_externals = tree_cons (NULL, decl,
2213 pending_assemble_externals);
2214 #endif
2217 /* Similar, for calling a library function FUN. */
2219 void
2220 assemble_external_libcall (rtx fun)
2222 /* Declare library function name external when first used, if nec. */
2223 if (! SYMBOL_REF_USED (fun))
2225 SYMBOL_REF_USED (fun) = 1;
2226 targetm.asm_out.external_libcall (fun);
2230 /* Assemble a label named NAME. */
2232 void
2233 assemble_label (FILE *file, const char *name)
2235 ASM_OUTPUT_LABEL (file, name);
2238 /* Set the symbol_referenced flag for ID. */
2239 void
2240 mark_referenced (tree id)
2242 TREE_SYMBOL_REFERENCED (id) = 1;
2245 /* Set the symbol_referenced flag for DECL and notify callgraph. */
2246 void
2247 mark_decl_referenced (tree decl)
2249 if (TREE_CODE (decl) == FUNCTION_DECL)
2251 /* Extern inline functions don't become needed when referenced.
2252 If we know a method will be emitted in other TU and no new
2253 functions can be marked reachable, just use the external
2254 definition. */
2255 struct cgraph_node *node = cgraph_get_create_node (decl);
2256 if (!DECL_EXTERNAL (decl)
2257 && !node->local.finalized)
2258 cgraph_mark_force_output_node (node);
2260 else if (TREE_CODE (decl) == VAR_DECL)
2262 struct varpool_node *node = varpool_node_for_decl (decl);
2263 /* C++ frontend use mark_decl_references to force COMDAT variables
2264 to be output that might appear dead otherwise. */
2265 node->symbol.force_output = true;
2267 /* else do nothing - we can get various sorts of CST nodes here,
2268 which do not need to be marked. */
2272 /* Follow the IDENTIFIER_TRANSPARENT_ALIAS chain starting at *ALIAS
2273 until we find an identifier that is not itself a transparent alias.
2274 Modify the alias passed to it by reference (and all aliases on the
2275 way to the ultimate target), such that they do not have to be
2276 followed again, and return the ultimate target of the alias
2277 chain. */
2279 static inline tree
2280 ultimate_transparent_alias_target (tree *alias)
2282 tree target = *alias;
2284 if (IDENTIFIER_TRANSPARENT_ALIAS (target))
2286 gcc_assert (TREE_CHAIN (target));
2287 target = ultimate_transparent_alias_target (&TREE_CHAIN (target));
2288 gcc_assert (! IDENTIFIER_TRANSPARENT_ALIAS (target)
2289 && ! TREE_CHAIN (target));
2290 *alias = target;
2293 return target;
2296 /* Output to FILE (an assembly file) a reference to NAME. If NAME
2297 starts with a *, the rest of NAME is output verbatim. Otherwise
2298 NAME is transformed in a target-specific way (usually by the
2299 addition of an underscore). */
2301 void
2302 assemble_name_raw (FILE *file, const char *name)
2304 if (name[0] == '*')
2305 fputs (&name[1], file);
2306 else
2307 ASM_OUTPUT_LABELREF (file, name);
2310 /* Like assemble_name_raw, but should be used when NAME might refer to
2311 an entity that is also represented as a tree (like a function or
2312 variable). If NAME does refer to such an entity, that entity will
2313 be marked as referenced. */
2315 void
2316 assemble_name (FILE *file, const char *name)
2318 const char *real_name;
2319 tree id;
2321 real_name = targetm.strip_name_encoding (name);
2323 id = maybe_get_identifier (real_name);
2324 if (id)
2326 tree id_orig = id;
2328 mark_referenced (id);
2329 ultimate_transparent_alias_target (&id);
2330 if (id != id_orig)
2331 name = IDENTIFIER_POINTER (id);
2332 gcc_assert (! TREE_CHAIN (id));
2335 assemble_name_raw (file, name);
2338 /* Allocate SIZE bytes writable static space with a gensym name
2339 and return an RTX to refer to its address. */
2342 assemble_static_space (unsigned HOST_WIDE_INT size)
2344 char name[12];
2345 const char *namestring;
2346 rtx x;
2348 ASM_GENERATE_INTERNAL_LABEL (name, "LF", const_labelno);
2349 ++const_labelno;
2350 namestring = ggc_strdup (name);
2352 x = gen_rtx_SYMBOL_REF (Pmode, namestring);
2353 SYMBOL_REF_FLAGS (x) = SYMBOL_FLAG_LOCAL;
2355 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
2356 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name, size,
2357 BIGGEST_ALIGNMENT);
2358 #else
2359 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
2360 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, BIGGEST_ALIGNMENT);
2361 #else
2363 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2364 so that each uninitialized object starts on such a boundary. */
2365 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
2366 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
2367 = ((size + (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1)
2368 / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
2369 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
2370 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
2372 #endif
2373 #endif
2374 return x;
2377 /* Assemble the static constant template for function entry trampolines.
2378 This is done at most once per compilation.
2379 Returns an RTX for the address of the template. */
2381 static GTY(()) rtx initial_trampoline;
2384 assemble_trampoline_template (void)
2386 char label[256];
2387 const char *name;
2388 int align;
2389 rtx symbol;
2391 gcc_assert (targetm.asm_out.trampoline_template != NULL);
2393 if (initial_trampoline)
2394 return initial_trampoline;
2396 /* By default, put trampoline templates in read-only data section. */
2398 #ifdef TRAMPOLINE_SECTION
2399 switch_to_section (TRAMPOLINE_SECTION);
2400 #else
2401 switch_to_section (readonly_data_section);
2402 #endif
2404 /* Write the assembler code to define one. */
2405 align = floor_log2 (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT);
2406 if (align > 0)
2407 ASM_OUTPUT_ALIGN (asm_out_file, align);
2409 targetm.asm_out.internal_label (asm_out_file, "LTRAMP", 0);
2410 targetm.asm_out.trampoline_template (asm_out_file);
2412 /* Record the rtl to refer to it. */
2413 ASM_GENERATE_INTERNAL_LABEL (label, "LTRAMP", 0);
2414 name = ggc_strdup (label);
2415 symbol = gen_rtx_SYMBOL_REF (Pmode, name);
2416 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
2418 initial_trampoline = gen_const_mem (BLKmode, symbol);
2419 set_mem_align (initial_trampoline, TRAMPOLINE_ALIGNMENT);
2420 set_mem_size (initial_trampoline, TRAMPOLINE_SIZE);
2422 return initial_trampoline;
2425 /* A and B are either alignments or offsets. Return the minimum alignment
2426 that may be assumed after adding the two together. */
2428 static inline unsigned
2429 min_align (unsigned int a, unsigned int b)
2431 return (a | b) & -(a | b);
2434 /* Return the assembler directive for creating a given kind of integer
2435 object. SIZE is the number of bytes in the object and ALIGNED_P
2436 indicates whether it is known to be aligned. Return NULL if the
2437 assembly dialect has no such directive.
2439 The returned string should be printed at the start of a new line and
2440 be followed immediately by the object's initial value. */
2442 const char *
2443 integer_asm_op (int size, int aligned_p)
2445 struct asm_int_op *ops;
2447 if (aligned_p)
2448 ops = &targetm.asm_out.aligned_op;
2449 else
2450 ops = &targetm.asm_out.unaligned_op;
2452 switch (size)
2454 case 1:
2455 return targetm.asm_out.byte_op;
2456 case 2:
2457 return ops->hi;
2458 case 4:
2459 return ops->si;
2460 case 8:
2461 return ops->di;
2462 case 16:
2463 return ops->ti;
2464 default:
2465 return NULL;
2469 /* Use directive OP to assemble an integer object X. Print OP at the
2470 start of the line, followed immediately by the value of X. */
2472 void
2473 assemble_integer_with_op (const char *op, rtx x)
2475 fputs (op, asm_out_file);
2476 output_addr_const (asm_out_file, x);
2477 fputc ('\n', asm_out_file);
2480 /* The default implementation of the asm_out.integer target hook. */
2482 bool
2483 default_assemble_integer (rtx x ATTRIBUTE_UNUSED,
2484 unsigned int size ATTRIBUTE_UNUSED,
2485 int aligned_p ATTRIBUTE_UNUSED)
2487 const char *op = integer_asm_op (size, aligned_p);
2488 /* Avoid GAS bugs for large values. Specifically negative values whose
2489 absolute value fits in a bfd_vma, but not in a bfd_signed_vma. */
2490 if (size > UNITS_PER_WORD && size > POINTER_SIZE / BITS_PER_UNIT)
2491 return false;
2492 return op && (assemble_integer_with_op (op, x), true);
2495 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
2496 the alignment of the integer in bits. Return 1 if we were able to output
2497 the constant, otherwise 0. We must be able to output the constant,
2498 if FORCE is nonzero. */
2500 bool
2501 assemble_integer (rtx x, unsigned int size, unsigned int align, int force)
2503 int aligned_p;
2505 aligned_p = (align >= MIN (size * BITS_PER_UNIT, BIGGEST_ALIGNMENT));
2507 /* See if the target hook can handle this kind of object. */
2508 if (targetm.asm_out.integer (x, size, aligned_p))
2509 return true;
2511 /* If the object is a multi-byte one, try splitting it up. Split
2512 it into words it if is multi-word, otherwise split it into bytes. */
2513 if (size > 1)
2515 enum machine_mode omode, imode;
2516 unsigned int subalign;
2517 unsigned int subsize, i;
2518 enum mode_class mclass;
2520 subsize = size > UNITS_PER_WORD? UNITS_PER_WORD : 1;
2521 subalign = MIN (align, subsize * BITS_PER_UNIT);
2522 if (GET_CODE (x) == CONST_FIXED)
2523 mclass = GET_MODE_CLASS (GET_MODE (x));
2524 else
2525 mclass = MODE_INT;
2527 omode = mode_for_size (subsize * BITS_PER_UNIT, mclass, 0);
2528 imode = mode_for_size (size * BITS_PER_UNIT, mclass, 0);
2530 for (i = 0; i < size; i += subsize)
2532 rtx partial = simplify_subreg (omode, x, imode, i);
2533 if (!partial || !assemble_integer (partial, subsize, subalign, 0))
2534 break;
2536 if (i == size)
2537 return true;
2539 /* If we've printed some of it, but not all of it, there's no going
2540 back now. */
2541 gcc_assert (!i);
2544 gcc_assert (!force);
2546 return false;
2549 void
2550 assemble_real (REAL_VALUE_TYPE d, enum machine_mode mode, unsigned int align)
2552 long data[4] = {0, 0, 0, 0};
2553 int i;
2554 int bitsize, nelts, nunits, units_per;
2556 /* This is hairy. We have a quantity of known size. real_to_target
2557 will put it into an array of *host* longs, 32 bits per element
2558 (even if long is more than 32 bits). We need to determine the
2559 number of array elements that are occupied (nelts) and the number
2560 of *target* min-addressable units that will be occupied in the
2561 object file (nunits). We cannot assume that 32 divides the
2562 mode's bitsize (size * BITS_PER_UNIT) evenly.
2564 size * BITS_PER_UNIT is used here to make sure that padding bits
2565 (which might appear at either end of the value; real_to_target
2566 will include the padding bits in its output array) are included. */
2568 nunits = GET_MODE_SIZE (mode);
2569 bitsize = nunits * BITS_PER_UNIT;
2570 nelts = CEIL (bitsize, 32);
2571 units_per = 32 / BITS_PER_UNIT;
2573 real_to_target (data, &d, mode);
2575 /* Put out the first word with the specified alignment. */
2576 assemble_integer (GEN_INT (data[0]), MIN (nunits, units_per), align, 1);
2577 nunits -= units_per;
2579 /* Subsequent words need only 32-bit alignment. */
2580 align = min_align (align, 32);
2582 for (i = 1; i < nelts; i++)
2584 assemble_integer (GEN_INT (data[i]), MIN (nunits, units_per), align, 1);
2585 nunits -= units_per;
2589 /* Given an expression EXP with a constant value,
2590 reduce it to the sum of an assembler symbol and an integer.
2591 Store them both in the structure *VALUE.
2592 EXP must be reducible. */
2594 struct addr_const {
2595 rtx base;
2596 HOST_WIDE_INT offset;
2599 static void
2600 decode_addr_const (tree exp, struct addr_const *value)
2602 tree target = TREE_OPERAND (exp, 0);
2603 int offset = 0;
2604 rtx x;
2606 while (1)
2608 if (TREE_CODE (target) == COMPONENT_REF
2609 && host_integerp (byte_position (TREE_OPERAND (target, 1)), 0))
2611 offset += int_byte_position (TREE_OPERAND (target, 1));
2612 target = TREE_OPERAND (target, 0);
2614 else if (TREE_CODE (target) == ARRAY_REF
2615 || TREE_CODE (target) == ARRAY_RANGE_REF)
2617 offset += (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (target)), 1)
2618 * tree_low_cst (TREE_OPERAND (target, 1), 0));
2619 target = TREE_OPERAND (target, 0);
2621 else if (TREE_CODE (target) == MEM_REF
2622 && TREE_CODE (TREE_OPERAND (target, 0)) == ADDR_EXPR)
2624 offset += mem_ref_offset (target).low;
2625 target = TREE_OPERAND (TREE_OPERAND (target, 0), 0);
2627 else if (TREE_CODE (target) == INDIRECT_REF
2628 && TREE_CODE (TREE_OPERAND (target, 0)) == NOP_EXPR
2629 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (target, 0), 0))
2630 == ADDR_EXPR)
2631 target = TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (target, 0), 0), 0);
2632 else
2633 break;
2636 switch (TREE_CODE (target))
2638 case VAR_DECL:
2639 case FUNCTION_DECL:
2640 x = DECL_RTL (target);
2641 break;
2643 case LABEL_DECL:
2644 x = gen_rtx_MEM (FUNCTION_MODE,
2645 gen_rtx_LABEL_REF (Pmode, force_label_rtx (target)));
2646 break;
2648 case REAL_CST:
2649 case FIXED_CST:
2650 case STRING_CST:
2651 case COMPLEX_CST:
2652 case CONSTRUCTOR:
2653 case INTEGER_CST:
2654 x = output_constant_def (target, 1);
2655 break;
2657 default:
2658 gcc_unreachable ();
2661 gcc_assert (MEM_P (x));
2662 x = XEXP (x, 0);
2664 value->base = x;
2665 value->offset = offset;
2669 static GTY((param_is (struct constant_descriptor_tree)))
2670 htab_t const_desc_htab;
2672 static void maybe_output_constant_def_contents (struct constant_descriptor_tree *, int);
2674 /* Constant pool accessor function. */
2676 htab_t
2677 constant_pool_htab (void)
2679 return const_desc_htab;
2682 /* Compute a hash code for a constant expression. */
2684 static hashval_t
2685 const_desc_hash (const void *ptr)
2687 return ((const struct constant_descriptor_tree *)ptr)->hash;
2690 static hashval_t
2691 const_hash_1 (const tree exp)
2693 const char *p;
2694 hashval_t hi;
2695 int len, i;
2696 enum tree_code code = TREE_CODE (exp);
2698 /* Either set P and LEN to the address and len of something to hash and
2699 exit the switch or return a value. */
2701 switch (code)
2703 case INTEGER_CST:
2704 p = (char *) &TREE_INT_CST (exp);
2705 len = sizeof TREE_INT_CST (exp);
2706 break;
2708 case REAL_CST:
2709 return real_hash (TREE_REAL_CST_PTR (exp));
2711 case FIXED_CST:
2712 return fixed_hash (TREE_FIXED_CST_PTR (exp));
2714 case STRING_CST:
2715 p = TREE_STRING_POINTER (exp);
2716 len = TREE_STRING_LENGTH (exp);
2717 break;
2719 case COMPLEX_CST:
2720 return (const_hash_1 (TREE_REALPART (exp)) * 5
2721 + const_hash_1 (TREE_IMAGPART (exp)));
2723 case VECTOR_CST:
2725 unsigned i;
2727 hi = 7 + VECTOR_CST_NELTS (exp);
2729 for (i = 0; i < VECTOR_CST_NELTS (exp); ++i)
2730 hi = hi * 563 + const_hash_1 (VECTOR_CST_ELT (exp, i));
2732 return hi;
2735 case CONSTRUCTOR:
2737 unsigned HOST_WIDE_INT idx;
2738 tree value;
2740 hi = 5 + int_size_in_bytes (TREE_TYPE (exp));
2742 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, value)
2743 if (value)
2744 hi = hi * 603 + const_hash_1 (value);
2746 return hi;
2749 case ADDR_EXPR:
2750 case FDESC_EXPR:
2752 struct addr_const value;
2754 decode_addr_const (exp, &value);
2755 switch (GET_CODE (value.base))
2757 case SYMBOL_REF:
2758 /* Don't hash the address of the SYMBOL_REF;
2759 only use the offset and the symbol name. */
2760 hi = value.offset;
2761 p = XSTR (value.base, 0);
2762 for (i = 0; p[i] != 0; i++)
2763 hi = ((hi * 613) + (unsigned) (p[i]));
2764 break;
2766 case LABEL_REF:
2767 hi = value.offset + CODE_LABEL_NUMBER (XEXP (value.base, 0)) * 13;
2768 break;
2770 default:
2771 gcc_unreachable ();
2774 return hi;
2776 case PLUS_EXPR:
2777 case POINTER_PLUS_EXPR:
2778 case MINUS_EXPR:
2779 return (const_hash_1 (TREE_OPERAND (exp, 0)) * 9
2780 + const_hash_1 (TREE_OPERAND (exp, 1)));
2782 CASE_CONVERT:
2783 return const_hash_1 (TREE_OPERAND (exp, 0)) * 7 + 2;
2785 default:
2786 /* A language specific constant. Just hash the code. */
2787 return code;
2790 /* Compute hashing function. */
2791 hi = len;
2792 for (i = 0; i < len; i++)
2793 hi = ((hi * 613) + (unsigned) (p[i]));
2795 return hi;
2798 /* Wrapper of compare_constant, for the htab interface. */
2799 static int
2800 const_desc_eq (const void *p1, const void *p2)
2802 const struct constant_descriptor_tree *const c1
2803 = (const struct constant_descriptor_tree *) p1;
2804 const struct constant_descriptor_tree *const c2
2805 = (const struct constant_descriptor_tree *) p2;
2806 if (c1->hash != c2->hash)
2807 return 0;
2808 return compare_constant (c1->value, c2->value);
2811 /* Compare t1 and t2, and return 1 only if they are known to result in
2812 the same bit pattern on output. */
2814 static int
2815 compare_constant (const tree t1, const tree t2)
2817 enum tree_code typecode;
2819 if (t1 == NULL_TREE)
2820 return t2 == NULL_TREE;
2821 if (t2 == NULL_TREE)
2822 return 0;
2824 if (TREE_CODE (t1) != TREE_CODE (t2))
2825 return 0;
2827 switch (TREE_CODE (t1))
2829 case INTEGER_CST:
2830 /* Integer constants are the same only if the same width of type. */
2831 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2832 return 0;
2833 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
2834 return 0;
2835 return tree_int_cst_equal (t1, t2);
2837 case REAL_CST:
2838 /* Real constants are the same only if the same width of type. */
2839 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2840 return 0;
2842 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
2844 case FIXED_CST:
2845 /* Fixed constants are the same only if the same width of type. */
2846 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2847 return 0;
2849 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
2851 case STRING_CST:
2852 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
2853 return 0;
2855 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
2856 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
2857 TREE_STRING_LENGTH (t1)));
2859 case COMPLEX_CST:
2860 return (compare_constant (TREE_REALPART (t1), TREE_REALPART (t2))
2861 && compare_constant (TREE_IMAGPART (t1), TREE_IMAGPART (t2)));
2863 case VECTOR_CST:
2865 unsigned i;
2867 if (VECTOR_CST_NELTS (t1) != VECTOR_CST_NELTS (t2))
2868 return 0;
2870 for (i = 0; i < VECTOR_CST_NELTS (t1); ++i)
2871 if (!compare_constant (VECTOR_CST_ELT (t1, i),
2872 VECTOR_CST_ELT (t2, i)))
2873 return 0;
2875 return 1;
2878 case CONSTRUCTOR:
2880 vec<constructor_elt, va_gc> *v1, *v2;
2881 unsigned HOST_WIDE_INT idx;
2883 typecode = TREE_CODE (TREE_TYPE (t1));
2884 if (typecode != TREE_CODE (TREE_TYPE (t2)))
2885 return 0;
2887 if (typecode == ARRAY_TYPE)
2889 HOST_WIDE_INT size_1 = int_size_in_bytes (TREE_TYPE (t1));
2890 /* For arrays, check that the sizes all match. */
2891 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2))
2892 || size_1 == -1
2893 || size_1 != int_size_in_bytes (TREE_TYPE (t2)))
2894 return 0;
2896 else
2898 /* For record and union constructors, require exact type
2899 equality. */
2900 if (TREE_TYPE (t1) != TREE_TYPE (t2))
2901 return 0;
2904 v1 = CONSTRUCTOR_ELTS (t1);
2905 v2 = CONSTRUCTOR_ELTS (t2);
2906 if (vec_safe_length (v1) != vec_safe_length (v2))
2907 return 0;
2909 for (idx = 0; idx < vec_safe_length (v1); ++idx)
2911 constructor_elt *c1 = &(*v1)[idx];
2912 constructor_elt *c2 = &(*v2)[idx];
2914 /* Check that each value is the same... */
2915 if (!compare_constant (c1->value, c2->value))
2916 return 0;
2917 /* ... and that they apply to the same fields! */
2918 if (typecode == ARRAY_TYPE)
2920 if (!compare_constant (c1->index, c2->index))
2921 return 0;
2923 else
2925 if (c1->index != c2->index)
2926 return 0;
2930 return 1;
2933 case ADDR_EXPR:
2934 case FDESC_EXPR:
2936 struct addr_const value1, value2;
2937 enum rtx_code code;
2938 int ret;
2940 decode_addr_const (t1, &value1);
2941 decode_addr_const (t2, &value2);
2943 if (value1.offset != value2.offset)
2944 return 0;
2946 code = GET_CODE (value1.base);
2947 if (code != GET_CODE (value2.base))
2948 return 0;
2950 switch (code)
2952 case SYMBOL_REF:
2953 ret = (strcmp (XSTR (value1.base, 0), XSTR (value2.base, 0)) == 0);
2954 break;
2956 case LABEL_REF:
2957 ret = (CODE_LABEL_NUMBER (XEXP (value1.base, 0))
2958 == CODE_LABEL_NUMBER (XEXP (value2.base, 0)));
2959 break;
2961 default:
2962 gcc_unreachable ();
2964 return ret;
2967 case PLUS_EXPR:
2968 case POINTER_PLUS_EXPR:
2969 case MINUS_EXPR:
2970 case RANGE_EXPR:
2971 return (compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0))
2972 && compare_constant(TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)));
2974 CASE_CONVERT:
2975 case VIEW_CONVERT_EXPR:
2976 return compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
2978 default:
2979 return 0;
2982 gcc_unreachable ();
2985 /* Make a copy of the whole tree structure for a constant. This
2986 handles the same types of nodes that compare_constant handles. */
2988 static tree
2989 copy_constant (tree exp)
2991 switch (TREE_CODE (exp))
2993 case ADDR_EXPR:
2994 /* For ADDR_EXPR, we do not want to copy the decl whose address
2995 is requested. We do want to copy constants though. */
2996 if (CONSTANT_CLASS_P (TREE_OPERAND (exp, 0)))
2997 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2998 copy_constant (TREE_OPERAND (exp, 0)));
2999 else
3000 return copy_node (exp);
3002 case INTEGER_CST:
3003 case REAL_CST:
3004 case FIXED_CST:
3005 case STRING_CST:
3006 return copy_node (exp);
3008 case COMPLEX_CST:
3009 return build_complex (TREE_TYPE (exp),
3010 copy_constant (TREE_REALPART (exp)),
3011 copy_constant (TREE_IMAGPART (exp)));
3013 case PLUS_EXPR:
3014 case POINTER_PLUS_EXPR:
3015 case MINUS_EXPR:
3016 return build2 (TREE_CODE (exp), TREE_TYPE (exp),
3017 copy_constant (TREE_OPERAND (exp, 0)),
3018 copy_constant (TREE_OPERAND (exp, 1)));
3020 CASE_CONVERT:
3021 case VIEW_CONVERT_EXPR:
3022 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
3023 copy_constant (TREE_OPERAND (exp, 0)));
3025 case VECTOR_CST:
3026 return build_vector (TREE_TYPE (exp), VECTOR_CST_ELTS (exp));
3028 case CONSTRUCTOR:
3030 tree copy = copy_node (exp);
3031 vec<constructor_elt, va_gc> *v;
3032 unsigned HOST_WIDE_INT idx;
3033 tree purpose, value;
3035 vec_alloc (v, vec_safe_length (CONSTRUCTOR_ELTS (exp)));
3036 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp), idx, purpose, value)
3038 constructor_elt ce = {purpose, copy_constant (value)};
3039 v->quick_push (ce);
3041 CONSTRUCTOR_ELTS (copy) = v;
3042 return copy;
3045 default:
3046 gcc_unreachable ();
3050 /* Return the section into which constant EXP should be placed. */
3052 static section *
3053 get_constant_section (tree exp, unsigned int align)
3055 return targetm.asm_out.select_section (exp,
3056 compute_reloc_for_constant (exp),
3057 align);
3060 /* Return the size of constant EXP in bytes. */
3062 static HOST_WIDE_INT
3063 get_constant_size (tree exp)
3065 HOST_WIDE_INT size;
3067 size = int_size_in_bytes (TREE_TYPE (exp));
3068 if (TREE_CODE (exp) == STRING_CST)
3069 size = MAX (TREE_STRING_LENGTH (exp), size);
3070 return size;
3073 /* Subroutine of output_constant_def:
3074 No constant equal to EXP is known to have been output.
3075 Make a constant descriptor to enter EXP in the hash table.
3076 Assign the label number and construct RTL to refer to the
3077 constant's location in memory.
3078 If DECL is non-NULL use it as VAR_DECL associated with the constant.
3079 Caller is responsible for updating the hash table. */
3081 static struct constant_descriptor_tree *
3082 build_constant_desc (tree exp, tree decl)
3084 struct constant_descriptor_tree *desc;
3085 rtx symbol, rtl;
3086 char label[256];
3087 int labelno;
3089 desc = ggc_alloc_constant_descriptor_tree ();
3090 desc->value = copy_constant (exp);
3092 /* Propagate marked-ness to copied constant. */
3093 if (flag_mudflap && mf_marked_p (exp))
3094 mf_mark (desc->value);
3096 /* Create a string containing the label name, in LABEL. */
3097 labelno = const_labelno++;
3098 ASM_GENERATE_INTERNAL_LABEL (label, "LC", labelno);
3100 /* Construct the VAR_DECL associated with the constant. */
3101 if (decl == NULL_TREE)
3103 decl = build_decl (UNKNOWN_LOCATION, VAR_DECL, get_identifier (label),
3104 TREE_TYPE (exp));
3105 DECL_ARTIFICIAL (decl) = 1;
3106 DECL_IGNORED_P (decl) = 1;
3107 TREE_READONLY (decl) = 1;
3108 TREE_STATIC (decl) = 1;
3109 TREE_ADDRESSABLE (decl) = 1;
3110 /* We don't set the RTL yet as this would cause varpool to assume that
3111 the variable is referenced. Moreover, it would just be dropped in
3112 LTO mode. Instead we set the flag that will be recognized in
3113 make_decl_rtl. */
3114 DECL_IN_CONSTANT_POOL (decl) = 1;
3115 DECL_INITIAL (decl) = desc->value;
3116 /* ??? CONSTANT_ALIGNMENT hasn't been updated for vector types on most
3117 architectures so use DATA_ALIGNMENT as well, except for strings. */
3118 if (TREE_CODE (exp) == STRING_CST)
3120 #ifdef CONSTANT_ALIGNMENT
3121 DECL_ALIGN (decl) = CONSTANT_ALIGNMENT (exp, DECL_ALIGN (decl));
3122 #endif
3124 else
3125 align_variable (decl, 0);
3128 /* Now construct the SYMBOL_REF and the MEM. */
3129 if (use_object_blocks_p ())
3131 section *sect = get_constant_section (exp, DECL_ALIGN (decl));
3132 symbol = create_block_symbol (ggc_strdup (label),
3133 get_block_for_section (sect), -1);
3135 else
3136 symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
3137 SYMBOL_REF_FLAGS (symbol) |= SYMBOL_FLAG_LOCAL;
3138 SET_SYMBOL_REF_DECL (symbol, decl);
3139 TREE_CONSTANT_POOL_ADDRESS_P (symbol) = 1;
3141 rtl = gen_const_mem (TYPE_MODE (TREE_TYPE (exp)), symbol);
3142 set_mem_attributes (rtl, exp, 1);
3143 set_mem_alias_set (rtl, 0);
3144 set_mem_alias_set (rtl, const_alias_set);
3146 /* We cannot share RTX'es in pool entries.
3147 Mark this piece of RTL as required for unsharing. */
3148 RTX_FLAG (rtl, used) = 1;
3150 /* Set flags or add text to the name to record information, such as
3151 that it is a local symbol. If the name is changed, the macro
3152 ASM_OUTPUT_LABELREF will have to know how to strip this
3153 information. This call might invalidate our local variable
3154 SYMBOL; we can't use it afterward. */
3155 targetm.encode_section_info (exp, rtl, true);
3157 desc->rtl = rtl;
3159 return desc;
3162 /* Return an rtx representing a reference to constant data in memory
3163 for the constant expression EXP with the associated DECL.
3165 If assembler code for such a constant has already been output,
3166 return an rtx to refer to it.
3167 Otherwise, output such a constant in memory
3168 and generate an rtx for it.
3170 If DEFER is nonzero, this constant can be deferred and output only
3171 if referenced in the function after all optimizations.
3173 `const_desc_table' records which constants already have label strings. */
3175 static rtx
3176 output_constant_def_1 (tree exp, tree decl, int defer)
3178 struct constant_descriptor_tree *desc;
3179 struct constant_descriptor_tree key;
3180 void **loc;
3182 /* Look up EXP in the table of constant descriptors. If we didn't find
3183 it, create a new one. */
3184 key.value = exp;
3185 key.hash = const_hash_1 (exp);
3186 loc = htab_find_slot_with_hash (const_desc_htab, &key, key.hash, INSERT);
3188 desc = (struct constant_descriptor_tree *) *loc;
3189 if (desc == 0)
3191 desc = build_constant_desc (exp, decl);
3192 desc->hash = key.hash;
3193 *loc = desc;
3196 maybe_output_constant_def_contents (desc, defer);
3197 return desc->rtl;
3200 /* Like output_constant_def but create a new decl representing the
3201 constant if necessary. */
3204 output_constant_def (tree exp, int defer)
3206 return output_constant_def_1 (exp, NULL_TREE, defer);
3209 /* Subroutine of output_constant_def: Decide whether or not we need to
3210 output the constant DESC now, and if so, do it. */
3211 static void
3212 maybe_output_constant_def_contents (struct constant_descriptor_tree *desc,
3213 int defer)
3215 rtx symbol = XEXP (desc->rtl, 0);
3216 tree exp = desc->value;
3218 if (flag_syntax_only)
3219 return;
3221 if (TREE_ASM_WRITTEN (exp))
3222 /* Already output; don't do it again. */
3223 return;
3225 /* We can always defer constants as long as the context allows
3226 doing so. */
3227 if (defer)
3229 /* Increment n_deferred_constants if it exists. It needs to be at
3230 least as large as the number of constants actually referred to
3231 by the function. If it's too small we'll stop looking too early
3232 and fail to emit constants; if it's too large we'll only look
3233 through the entire function when we could have stopped earlier. */
3234 if (cfun)
3235 n_deferred_constants++;
3236 return;
3239 output_constant_def_contents (symbol);
3242 /* Subroutine of output_constant_def_contents. Output the definition
3243 of constant EXP, which is pointed to by label LABEL. ALIGN is the
3244 constant's alignment in bits. */
3246 static void
3247 assemble_constant_contents (tree exp, const char *label, unsigned int align)
3249 HOST_WIDE_INT size;
3251 size = get_constant_size (exp);
3253 /* Do any machine/system dependent processing of the constant. */
3254 targetm.asm_out.declare_constant_name (asm_out_file, label, exp, size);
3256 /* Output the value of EXP. */
3257 output_constant (exp, size, align);
3260 /* We must output the constant data referred to by SYMBOL; do so. */
3262 static void
3263 output_constant_def_contents (rtx symbol)
3265 tree decl = SYMBOL_REF_DECL (symbol);
3266 tree exp = DECL_INITIAL (decl);
3267 unsigned int align;
3268 bool asan_protected = false;
3270 /* Make sure any other constants whose addresses appear in EXP
3271 are assigned label numbers. */
3272 output_addressed_constants (exp);
3274 /* We are no longer deferring this constant. */
3275 TREE_ASM_WRITTEN (decl) = TREE_ASM_WRITTEN (exp) = 1;
3277 if (flag_asan && TREE_CODE (exp) == STRING_CST
3278 && asan_protect_global (exp))
3280 asan_protected = true;
3281 DECL_ALIGN (decl) = MAX (DECL_ALIGN (decl),
3282 ASAN_RED_ZONE_SIZE * BITS_PER_UNIT);
3285 /* If the constant is part of an object block, make sure that the
3286 decl has been positioned within its block, but do not write out
3287 its definition yet. output_object_blocks will do that later. */
3288 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol) && SYMBOL_REF_BLOCK (symbol))
3289 place_block_symbol (symbol);
3290 else
3292 align = DECL_ALIGN (decl);
3293 switch_to_section (get_constant_section (exp, align));
3294 if (align > BITS_PER_UNIT)
3295 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
3296 assemble_constant_contents (exp, XSTR (symbol, 0), align);
3297 if (asan_protected)
3299 HOST_WIDE_INT size = get_constant_size (exp);
3300 assemble_zeros (asan_red_zone_size (size));
3303 if (flag_mudflap)
3304 mudflap_enqueue_constant (exp);
3307 /* Look up EXP in the table of constant descriptors. Return the rtl
3308 if it has been emitted, else null. */
3311 lookup_constant_def (tree exp)
3313 struct constant_descriptor_tree *desc;
3314 struct constant_descriptor_tree key;
3316 key.value = exp;
3317 key.hash = const_hash_1 (exp);
3318 desc = (struct constant_descriptor_tree *)
3319 htab_find_with_hash (const_desc_htab, &key, key.hash);
3321 return (desc ? desc->rtl : NULL_RTX);
3324 /* Return a tree representing a reference to constant data in memory
3325 for the constant expression EXP.
3327 This is the counterpart of output_constant_def at the Tree level. */
3329 tree
3330 tree_output_constant_def (tree exp)
3332 struct constant_descriptor_tree *desc, key;
3333 void **loc;
3334 tree decl;
3336 /* Look up EXP in the table of constant descriptors. If we didn't find
3337 it, create a new one. */
3338 key.value = exp;
3339 key.hash = const_hash_1 (exp);
3340 loc = htab_find_slot_with_hash (const_desc_htab, &key, key.hash, INSERT);
3342 desc = (struct constant_descriptor_tree *) *loc;
3343 if (desc == 0)
3345 desc = build_constant_desc (exp, NULL_TREE);
3346 desc->hash = key.hash;
3347 *loc = desc;
3350 decl = SYMBOL_REF_DECL (XEXP (desc->rtl, 0));
3351 varpool_finalize_decl (decl);
3352 return decl;
3355 /* Used in the hash tables to avoid outputting the same constant
3356 twice. Unlike 'struct constant_descriptor_tree', RTX constants
3357 are output once per function, not once per file. */
3358 /* ??? Only a few targets need per-function constant pools. Most
3359 can use one per-file pool. Should add a targetm bit to tell the
3360 difference. */
3362 struct GTY(()) rtx_constant_pool {
3363 /* Pointers to first and last constant in pool, as ordered by offset. */
3364 struct constant_descriptor_rtx *first;
3365 struct constant_descriptor_rtx *last;
3367 /* Hash facility for making memory-constants from constant rtl-expressions.
3368 It is used on RISC machines where immediate integer arguments and
3369 constant addresses are restricted so that such constants must be stored
3370 in memory. */
3371 htab_t GTY((param_is (struct constant_descriptor_rtx))) const_rtx_htab;
3373 /* Current offset in constant pool (does not include any
3374 machine-specific header). */
3375 HOST_WIDE_INT offset;
3378 struct GTY((chain_next ("%h.next"))) constant_descriptor_rtx {
3379 struct constant_descriptor_rtx *next;
3380 rtx mem;
3381 rtx sym;
3382 rtx constant;
3383 HOST_WIDE_INT offset;
3384 hashval_t hash;
3385 enum machine_mode mode;
3386 unsigned int align;
3387 int labelno;
3388 int mark;
3391 /* Hash and compare functions for const_rtx_htab. */
3393 static hashval_t
3394 const_desc_rtx_hash (const void *ptr)
3396 const struct constant_descriptor_rtx *const desc
3397 = (const struct constant_descriptor_rtx *) ptr;
3398 return desc->hash;
3401 static int
3402 const_desc_rtx_eq (const void *a, const void *b)
3404 const struct constant_descriptor_rtx *const x
3405 = (const struct constant_descriptor_rtx *) a;
3406 const struct constant_descriptor_rtx *const y
3407 = (const struct constant_descriptor_rtx *) b;
3409 if (x->mode != y->mode)
3410 return 0;
3411 return rtx_equal_p (x->constant, y->constant);
3414 /* This is the worker function for const_rtx_hash, called via for_each_rtx. */
3416 static int
3417 const_rtx_hash_1 (rtx *xp, void *data)
3419 unsigned HOST_WIDE_INT hwi;
3420 enum machine_mode mode;
3421 enum rtx_code code;
3422 hashval_t h, *hp;
3423 rtx x;
3425 x = *xp;
3426 code = GET_CODE (x);
3427 mode = GET_MODE (x);
3428 h = (hashval_t) code * 1048573 + mode;
3430 switch (code)
3432 case CONST_INT:
3433 hwi = INTVAL (x);
3434 fold_hwi:
3436 int shift = sizeof (hashval_t) * CHAR_BIT;
3437 const int n = sizeof (HOST_WIDE_INT) / sizeof (hashval_t);
3438 int i;
3440 h ^= (hashval_t) hwi;
3441 for (i = 1; i < n; ++i)
3443 hwi >>= shift;
3444 h ^= (hashval_t) hwi;
3447 break;
3449 case CONST_DOUBLE:
3450 if (mode == VOIDmode)
3452 hwi = CONST_DOUBLE_LOW (x) ^ CONST_DOUBLE_HIGH (x);
3453 goto fold_hwi;
3455 else
3456 h ^= real_hash (CONST_DOUBLE_REAL_VALUE (x));
3457 break;
3459 case CONST_FIXED:
3460 h ^= fixed_hash (CONST_FIXED_VALUE (x));
3461 break;
3463 case CONST_VECTOR:
3465 int i;
3466 for (i = XVECLEN (x, 0); i-- > 0; )
3467 h = h * 251 + const_rtx_hash_1 (&XVECEXP (x, 0, i), data);
3469 break;
3471 case SYMBOL_REF:
3472 h ^= htab_hash_string (XSTR (x, 0));
3473 break;
3475 case LABEL_REF:
3476 h = h * 251 + CODE_LABEL_NUMBER (XEXP (x, 0));
3477 break;
3479 case UNSPEC:
3480 case UNSPEC_VOLATILE:
3481 h = h * 251 + XINT (x, 1);
3482 break;
3484 default:
3485 break;
3488 hp = (hashval_t *) data;
3489 *hp = *hp * 509 + h;
3490 return 0;
3493 /* Compute a hash value for X, which should be a constant. */
3495 static hashval_t
3496 const_rtx_hash (rtx x)
3498 hashval_t h = 0;
3499 for_each_rtx (&x, const_rtx_hash_1, &h);
3500 return h;
3504 /* Create and return a new rtx constant pool. */
3506 static struct rtx_constant_pool *
3507 create_constant_pool (void)
3509 struct rtx_constant_pool *pool;
3511 pool = ggc_alloc_rtx_constant_pool ();
3512 pool->const_rtx_htab = htab_create_ggc (31, const_desc_rtx_hash,
3513 const_desc_rtx_eq, NULL);
3514 pool->first = NULL;
3515 pool->last = NULL;
3516 pool->offset = 0;
3517 return pool;
3520 /* Initialize constant pool hashing for a new function. */
3522 void
3523 init_varasm_status (void)
3525 crtl->varasm.pool = create_constant_pool ();
3526 crtl->varasm.deferred_constants = 0;
3529 /* Given a MINUS expression, simplify it if both sides
3530 include the same symbol. */
3533 simplify_subtraction (rtx x)
3535 rtx r = simplify_rtx (x);
3536 return r ? r : x;
3539 /* Given a constant rtx X, make (or find) a memory constant for its value
3540 and return a MEM rtx to refer to it in memory. */
3543 force_const_mem (enum machine_mode mode, rtx x)
3545 struct constant_descriptor_rtx *desc, tmp;
3546 struct rtx_constant_pool *pool;
3547 char label[256];
3548 rtx def, symbol;
3549 hashval_t hash;
3550 unsigned int align;
3551 void **slot;
3553 /* If we're not allowed to drop X into the constant pool, don't. */
3554 if (targetm.cannot_force_const_mem (mode, x))
3555 return NULL_RTX;
3557 /* Record that this function has used a constant pool entry. */
3558 crtl->uses_const_pool = 1;
3560 /* Decide which pool to use. */
3561 pool = (targetm.use_blocks_for_constant_p (mode, x)
3562 ? shared_constant_pool
3563 : crtl->varasm.pool);
3565 /* Lookup the value in the hashtable. */
3566 tmp.constant = x;
3567 tmp.mode = mode;
3568 hash = const_rtx_hash (x);
3569 slot = htab_find_slot_with_hash (pool->const_rtx_htab, &tmp, hash, INSERT);
3570 desc = (struct constant_descriptor_rtx *) *slot;
3572 /* If the constant was already present, return its memory. */
3573 if (desc)
3574 return copy_rtx (desc->mem);
3576 /* Otherwise, create a new descriptor. */
3577 desc = ggc_alloc_constant_descriptor_rtx ();
3578 *slot = desc;
3580 /* Align the location counter as required by EXP's data type. */
3581 align = GET_MODE_ALIGNMENT (mode == VOIDmode ? word_mode : mode);
3582 #ifdef CONSTANT_ALIGNMENT
3584 tree type = lang_hooks.types.type_for_mode (mode, 0);
3585 if (type != NULL_TREE)
3586 align = CONSTANT_ALIGNMENT (make_tree (type, x), align);
3588 #endif
3590 pool->offset += (align / BITS_PER_UNIT) - 1;
3591 pool->offset &= ~ ((align / BITS_PER_UNIT) - 1);
3593 desc->next = NULL;
3594 desc->constant = copy_rtx (tmp.constant);
3595 desc->offset = pool->offset;
3596 desc->hash = hash;
3597 desc->mode = mode;
3598 desc->align = align;
3599 desc->labelno = const_labelno;
3600 desc->mark = 0;
3602 pool->offset += GET_MODE_SIZE (mode);
3603 if (pool->last)
3604 pool->last->next = desc;
3605 else
3606 pool->first = pool->last = desc;
3607 pool->last = desc;
3609 /* Create a string containing the label name, in LABEL. */
3610 ASM_GENERATE_INTERNAL_LABEL (label, "LC", const_labelno);
3611 ++const_labelno;
3613 /* Construct the SYMBOL_REF. Make sure to mark it as belonging to
3614 the constants pool. */
3615 if (use_object_blocks_p () && targetm.use_blocks_for_constant_p (mode, x))
3617 section *sect = targetm.asm_out.select_rtx_section (mode, x, align);
3618 symbol = create_block_symbol (ggc_strdup (label),
3619 get_block_for_section (sect), -1);
3621 else
3622 symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
3623 desc->sym = symbol;
3624 SYMBOL_REF_FLAGS (symbol) |= SYMBOL_FLAG_LOCAL;
3625 CONSTANT_POOL_ADDRESS_P (symbol) = 1;
3626 SET_SYMBOL_REF_CONSTANT (symbol, desc);
3628 /* Construct the MEM. */
3629 desc->mem = def = gen_const_mem (mode, symbol);
3630 set_mem_attributes (def, lang_hooks.types.type_for_mode (mode, 0), 1);
3631 set_mem_align (def, align);
3633 /* If we're dropping a label to the constant pool, make sure we
3634 don't delete it. */
3635 if (GET_CODE (x) == LABEL_REF)
3636 LABEL_PRESERVE_P (XEXP (x, 0)) = 1;
3638 return copy_rtx (def);
3641 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3644 get_pool_constant (rtx addr)
3646 return SYMBOL_REF_CONSTANT (addr)->constant;
3649 /* Given a constant pool SYMBOL_REF, return the corresponding constant
3650 and whether it has been output or not. */
3653 get_pool_constant_mark (rtx addr, bool *pmarked)
3655 struct constant_descriptor_rtx *desc;
3657 desc = SYMBOL_REF_CONSTANT (addr);
3658 *pmarked = (desc->mark != 0);
3659 return desc->constant;
3662 /* Similar, return the mode. */
3664 enum machine_mode
3665 get_pool_mode (const_rtx addr)
3667 return SYMBOL_REF_CONSTANT (addr)->mode;
3670 /* Return the size of the constant pool. */
3673 get_pool_size (void)
3675 return crtl->varasm.pool->offset;
3678 /* Worker function for output_constant_pool_1. Emit assembly for X
3679 in MODE with known alignment ALIGN. */
3681 static void
3682 output_constant_pool_2 (enum machine_mode mode, rtx x, unsigned int align)
3684 switch (GET_MODE_CLASS (mode))
3686 case MODE_FLOAT:
3687 case MODE_DECIMAL_FLOAT:
3689 REAL_VALUE_TYPE r;
3691 gcc_assert (CONST_DOUBLE_AS_FLOAT_P (x));
3692 REAL_VALUE_FROM_CONST_DOUBLE (r, x);
3693 assemble_real (r, mode, align);
3694 break;
3697 case MODE_INT:
3698 case MODE_PARTIAL_INT:
3699 case MODE_FRACT:
3700 case MODE_UFRACT:
3701 case MODE_ACCUM:
3702 case MODE_UACCUM:
3703 assemble_integer (x, GET_MODE_SIZE (mode), align, 1);
3704 break;
3706 case MODE_VECTOR_FLOAT:
3707 case MODE_VECTOR_INT:
3708 case MODE_VECTOR_FRACT:
3709 case MODE_VECTOR_UFRACT:
3710 case MODE_VECTOR_ACCUM:
3711 case MODE_VECTOR_UACCUM:
3713 int i, units;
3714 enum machine_mode submode = GET_MODE_INNER (mode);
3715 unsigned int subalign = MIN (align, GET_MODE_BITSIZE (submode));
3717 gcc_assert (GET_CODE (x) == CONST_VECTOR);
3718 units = CONST_VECTOR_NUNITS (x);
3720 for (i = 0; i < units; i++)
3722 rtx elt = CONST_VECTOR_ELT (x, i);
3723 output_constant_pool_2 (submode, elt, i ? subalign : align);
3726 break;
3728 default:
3729 gcc_unreachable ();
3733 /* Worker function for output_constant_pool. Emit constant DESC,
3734 giving it ALIGN bits of alignment. */
3736 static void
3737 output_constant_pool_1 (struct constant_descriptor_rtx *desc,
3738 unsigned int align)
3740 rtx x, tmp;
3742 x = desc->constant;
3744 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3745 whose CODE_LABEL has been deleted. This can occur if a jump table
3746 is eliminated by optimization. If so, write a constant of zero
3747 instead. Note that this can also happen by turning the
3748 CODE_LABEL into a NOTE. */
3749 /* ??? This seems completely and utterly wrong. Certainly it's
3750 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3751 functioning even with INSN_DELETED_P and friends. */
3753 tmp = x;
3754 switch (GET_CODE (tmp))
3756 case CONST:
3757 if (GET_CODE (XEXP (tmp, 0)) != PLUS
3758 || GET_CODE (XEXP (XEXP (tmp, 0), 0)) != LABEL_REF)
3759 break;
3760 tmp = XEXP (XEXP (tmp, 0), 0);
3761 /* FALLTHRU */
3763 case LABEL_REF:
3764 tmp = XEXP (tmp, 0);
3765 gcc_assert (!INSN_DELETED_P (tmp));
3766 gcc_assert (!NOTE_P (tmp)
3767 || NOTE_KIND (tmp) != NOTE_INSN_DELETED);
3768 break;
3770 default:
3771 break;
3774 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3775 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file, x, desc->mode,
3776 align, desc->labelno, done);
3777 #endif
3779 assemble_align (align);
3781 /* Output the label. */
3782 targetm.asm_out.internal_label (asm_out_file, "LC", desc->labelno);
3784 /* Output the data. */
3785 output_constant_pool_2 (desc->mode, x, align);
3787 /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
3788 sections have proper size. */
3789 if (align > GET_MODE_BITSIZE (desc->mode)
3790 && in_section
3791 && (in_section->common.flags & SECTION_MERGE))
3792 assemble_align (align);
3794 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3795 done:
3796 #endif
3797 return;
3800 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3801 to as used. Emit referenced deferred strings. This function can
3802 be used with for_each_rtx to mark all SYMBOL_REFs in an rtx. */
3804 static int
3805 mark_constant (rtx *current_rtx, void *data ATTRIBUTE_UNUSED)
3807 rtx x = *current_rtx;
3809 if (x == NULL_RTX || GET_CODE (x) != SYMBOL_REF)
3810 return 0;
3812 if (CONSTANT_POOL_ADDRESS_P (x))
3814 struct constant_descriptor_rtx *desc = SYMBOL_REF_CONSTANT (x);
3815 if (desc->mark == 0)
3817 desc->mark = 1;
3818 for_each_rtx (&desc->constant, mark_constant, NULL);
3821 else if (TREE_CONSTANT_POOL_ADDRESS_P (x))
3823 tree decl = SYMBOL_REF_DECL (x);
3824 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl)))
3826 n_deferred_constants--;
3827 output_constant_def_contents (x);
3831 return -1;
3834 /* Look through appropriate parts of INSN, marking all entries in the
3835 constant pool which are actually being used. Entries that are only
3836 referenced by other constants are also marked as used. Emit
3837 deferred strings that are used. */
3839 static void
3840 mark_constants (rtx insn)
3842 if (!INSN_P (insn))
3843 return;
3845 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3846 insns, not any notes that may be attached. We don't want to mark
3847 a constant just because it happens to appear in a REG_EQUIV note. */
3848 if (GET_CODE (PATTERN (insn)) == SEQUENCE)
3850 rtx seq = PATTERN (insn);
3851 int i, n = XVECLEN (seq, 0);
3852 for (i = 0; i < n; ++i)
3854 rtx subinsn = XVECEXP (seq, 0, i);
3855 if (INSN_P (subinsn))
3856 for_each_rtx (&PATTERN (subinsn), mark_constant, NULL);
3859 else
3860 for_each_rtx (&PATTERN (insn), mark_constant, NULL);
3863 /* Look through the instructions for this function, and mark all the
3864 entries in POOL which are actually being used. Emit deferred constants
3865 which have indeed been used. */
3867 static void
3868 mark_constant_pool (void)
3870 rtx insn;
3872 if (!crtl->uses_const_pool && n_deferred_constants == 0)
3873 return;
3875 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3876 mark_constants (insn);
3879 /* Write all the constants in POOL. */
3881 static void
3882 output_constant_pool_contents (struct rtx_constant_pool *pool)
3884 struct constant_descriptor_rtx *desc;
3886 for (desc = pool->first; desc ; desc = desc->next)
3887 if (desc->mark)
3889 /* If the constant is part of an object_block, make sure that
3890 the constant has been positioned within its block, but do not
3891 write out its definition yet. output_object_blocks will do
3892 that later. */
3893 if (SYMBOL_REF_HAS_BLOCK_INFO_P (desc->sym)
3894 && SYMBOL_REF_BLOCK (desc->sym))
3895 place_block_symbol (desc->sym);
3896 else
3898 switch_to_section (targetm.asm_out.select_rtx_section
3899 (desc->mode, desc->constant, desc->align));
3900 output_constant_pool_1 (desc, desc->align);
3905 /* Mark all constants that are used in the current function, then write
3906 out the function's private constant pool. */
3908 static void
3909 output_constant_pool (const char *fnname ATTRIBUTE_UNUSED,
3910 tree fndecl ATTRIBUTE_UNUSED)
3912 struct rtx_constant_pool *pool = crtl->varasm.pool;
3914 /* It is possible for gcc to call force_const_mem and then to later
3915 discard the instructions which refer to the constant. In such a
3916 case we do not need to output the constant. */
3917 mark_constant_pool ();
3919 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3920 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file, fnname, fndecl, pool->offset);
3921 #endif
3923 output_constant_pool_contents (pool);
3925 #ifdef ASM_OUTPUT_POOL_EPILOGUE
3926 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file, fnname, fndecl, pool->offset);
3927 #endif
3930 /* Write the contents of the shared constant pool. */
3932 void
3933 output_shared_constant_pool (void)
3935 output_constant_pool_contents (shared_constant_pool);
3938 /* Determine what kind of relocations EXP may need. */
3941 compute_reloc_for_constant (tree exp)
3943 int reloc = 0, reloc2;
3944 tree tem;
3946 switch (TREE_CODE (exp))
3948 case ADDR_EXPR:
3949 case FDESC_EXPR:
3950 /* Go inside any operations that get_inner_reference can handle and see
3951 if what's inside is a constant: no need to do anything here for
3952 addresses of variables or functions. */
3953 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
3954 tem = TREE_OPERAND (tem, 0))
3957 if (TREE_CODE (tem) == MEM_REF
3958 && TREE_CODE (TREE_OPERAND (tem, 0)) == ADDR_EXPR)
3960 reloc = compute_reloc_for_constant (TREE_OPERAND (tem, 0));
3961 break;
3964 if (TREE_PUBLIC (tem))
3965 reloc |= 2;
3966 else
3967 reloc |= 1;
3968 break;
3970 case PLUS_EXPR:
3971 case POINTER_PLUS_EXPR:
3972 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3973 reloc |= compute_reloc_for_constant (TREE_OPERAND (exp, 1));
3974 break;
3976 case MINUS_EXPR:
3977 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3978 reloc2 = compute_reloc_for_constant (TREE_OPERAND (exp, 1));
3979 /* The difference of two local labels is computable at link time. */
3980 if (reloc == 1 && reloc2 == 1)
3981 reloc = 0;
3982 else
3983 reloc |= reloc2;
3984 break;
3986 CASE_CONVERT:
3987 case VIEW_CONVERT_EXPR:
3988 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3989 break;
3991 case CONSTRUCTOR:
3993 unsigned HOST_WIDE_INT idx;
3994 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, tem)
3995 if (tem != 0)
3996 reloc |= compute_reloc_for_constant (tem);
3998 break;
4000 default:
4001 break;
4003 return reloc;
4006 /* Find all the constants whose addresses are referenced inside of EXP,
4007 and make sure assembler code with a label has been output for each one.
4008 Indicate whether an ADDR_EXPR has been encountered. */
4010 static void
4011 output_addressed_constants (tree exp)
4013 tree tem;
4015 switch (TREE_CODE (exp))
4017 case ADDR_EXPR:
4018 case FDESC_EXPR:
4019 /* Go inside any operations that get_inner_reference can handle and see
4020 if what's inside is a constant: no need to do anything here for
4021 addresses of variables or functions. */
4022 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
4023 tem = TREE_OPERAND (tem, 0))
4026 /* If we have an initialized CONST_DECL, retrieve the initializer. */
4027 if (TREE_CODE (tem) == CONST_DECL && DECL_INITIAL (tem))
4028 tem = DECL_INITIAL (tem);
4030 if (CONSTANT_CLASS_P (tem) || TREE_CODE (tem) == CONSTRUCTOR)
4031 output_constant_def (tem, 0);
4033 if (TREE_CODE (tem) == MEM_REF)
4034 output_addressed_constants (TREE_OPERAND (tem, 0));
4035 break;
4037 case PLUS_EXPR:
4038 case POINTER_PLUS_EXPR:
4039 case MINUS_EXPR:
4040 output_addressed_constants (TREE_OPERAND (exp, 1));
4041 /* Fall through. */
4043 CASE_CONVERT:
4044 case VIEW_CONVERT_EXPR:
4045 output_addressed_constants (TREE_OPERAND (exp, 0));
4046 break;
4048 case CONSTRUCTOR:
4050 unsigned HOST_WIDE_INT idx;
4051 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, tem)
4052 if (tem != 0)
4053 output_addressed_constants (tem);
4055 break;
4057 default:
4058 break;
4062 /* Whether a constructor CTOR is a valid static constant initializer if all
4063 its elements are. This used to be internal to initializer_constant_valid_p
4064 and has been exposed to let other functions like categorize_ctor_elements
4065 evaluate the property while walking a constructor for other purposes. */
4067 bool
4068 constructor_static_from_elts_p (const_tree ctor)
4070 return (TREE_CONSTANT (ctor)
4071 && (TREE_CODE (TREE_TYPE (ctor)) == UNION_TYPE
4072 || TREE_CODE (TREE_TYPE (ctor)) == RECORD_TYPE
4073 || TREE_CODE (TREE_TYPE (ctor)) == ARRAY_TYPE));
4076 static tree initializer_constant_valid_p_1 (tree value, tree endtype,
4077 tree *cache);
4079 /* A subroutine of initializer_constant_valid_p. VALUE is a MINUS_EXPR,
4080 PLUS_EXPR or POINTER_PLUS_EXPR. This looks for cases of VALUE
4081 which are valid when ENDTYPE is an integer of any size; in
4082 particular, this does not accept a pointer minus a constant. This
4083 returns null_pointer_node if the VALUE is an absolute constant
4084 which can be used to initialize a static variable. Otherwise it
4085 returns NULL. */
4087 static tree
4088 narrowing_initializer_constant_valid_p (tree value, tree endtype, tree *cache)
4090 tree op0, op1;
4092 if (!INTEGRAL_TYPE_P (endtype))
4093 return NULL_TREE;
4095 op0 = TREE_OPERAND (value, 0);
4096 op1 = TREE_OPERAND (value, 1);
4098 /* Like STRIP_NOPS except allow the operand mode to widen. This
4099 works around a feature of fold that simplifies (int)(p1 - p2) to
4100 ((int)p1 - (int)p2) under the theory that the narrower operation
4101 is cheaper. */
4103 while (CONVERT_EXPR_P (op0)
4104 || TREE_CODE (op0) == NON_LVALUE_EXPR)
4106 tree inner = TREE_OPERAND (op0, 0);
4107 if (inner == error_mark_node
4108 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
4109 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0)))
4110 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
4111 break;
4112 op0 = inner;
4115 while (CONVERT_EXPR_P (op1)
4116 || TREE_CODE (op1) == NON_LVALUE_EXPR)
4118 tree inner = TREE_OPERAND (op1, 0);
4119 if (inner == error_mark_node
4120 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
4121 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op1)))
4122 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
4123 break;
4124 op1 = inner;
4127 op0 = initializer_constant_valid_p_1 (op0, endtype, cache);
4128 if (!op0)
4129 return NULL_TREE;
4131 op1 = initializer_constant_valid_p_1 (op1, endtype,
4132 cache ? cache + 2 : NULL);
4133 /* Both initializers must be known. */
4134 if (op1)
4136 if (op0 == op1
4137 && (op0 == null_pointer_node
4138 || TREE_CODE (value) == MINUS_EXPR))
4139 return null_pointer_node;
4141 /* Support differences between labels. */
4142 if (TREE_CODE (op0) == LABEL_DECL
4143 && TREE_CODE (op1) == LABEL_DECL)
4144 return null_pointer_node;
4146 if (TREE_CODE (op0) == STRING_CST
4147 && TREE_CODE (op1) == STRING_CST
4148 && operand_equal_p (op0, op1, 1))
4149 return null_pointer_node;
4152 return NULL_TREE;
4155 /* Helper function of initializer_constant_valid_p.
4156 Return nonzero if VALUE is a valid constant-valued expression
4157 for use in initializing a static variable; one that can be an
4158 element of a "constant" initializer.
4160 Return null_pointer_node if the value is absolute;
4161 if it is relocatable, return the variable that determines the relocation.
4162 We assume that VALUE has been folded as much as possible;
4163 therefore, we do not need to check for such things as
4164 arithmetic-combinations of integers.
4166 Use CACHE (pointer to 2 tree values) for caching if non-NULL. */
4168 static tree
4169 initializer_constant_valid_p_1 (tree value, tree endtype, tree *cache)
4171 tree ret;
4173 switch (TREE_CODE (value))
4175 case CONSTRUCTOR:
4176 if (constructor_static_from_elts_p (value))
4178 unsigned HOST_WIDE_INT idx;
4179 tree elt;
4180 bool absolute = true;
4182 if (cache && cache[0] == value)
4183 return cache[1];
4184 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value), idx, elt)
4186 tree reloc;
4187 reloc = initializer_constant_valid_p_1 (elt, TREE_TYPE (elt),
4188 NULL);
4189 if (!reloc)
4191 if (cache)
4193 cache[0] = value;
4194 cache[1] = NULL_TREE;
4196 return NULL_TREE;
4198 if (reloc != null_pointer_node)
4199 absolute = false;
4201 /* For a non-absolute relocation, there is no single
4202 variable that can be "the variable that determines the
4203 relocation." */
4204 if (cache)
4206 cache[0] = value;
4207 cache[1] = absolute ? null_pointer_node : error_mark_node;
4209 return absolute ? null_pointer_node : error_mark_node;
4212 return TREE_STATIC (value) ? null_pointer_node : NULL_TREE;
4214 case INTEGER_CST:
4215 case VECTOR_CST:
4216 case REAL_CST:
4217 case FIXED_CST:
4218 case STRING_CST:
4219 case COMPLEX_CST:
4220 return null_pointer_node;
4222 case ADDR_EXPR:
4223 case FDESC_EXPR:
4225 tree op0 = staticp (TREE_OPERAND (value, 0));
4226 if (op0)
4228 /* "&(*a).f" is like unto pointer arithmetic. If "a" turns out
4229 to be a constant, this is old-skool offsetof-like nonsense. */
4230 if (TREE_CODE (op0) == INDIRECT_REF
4231 && TREE_CONSTANT (TREE_OPERAND (op0, 0)))
4232 return null_pointer_node;
4233 /* Taking the address of a nested function involves a trampoline,
4234 unless we don't need or want one. */
4235 if (TREE_CODE (op0) == FUNCTION_DECL
4236 && DECL_STATIC_CHAIN (op0)
4237 && !TREE_NO_TRAMPOLINE (value))
4238 return NULL_TREE;
4239 /* "&{...}" requires a temporary to hold the constructed
4240 object. */
4241 if (TREE_CODE (op0) == CONSTRUCTOR)
4242 return NULL_TREE;
4244 return op0;
4247 case NON_LVALUE_EXPR:
4248 return initializer_constant_valid_p_1 (TREE_OPERAND (value, 0),
4249 endtype, cache);
4251 case VIEW_CONVERT_EXPR:
4253 tree src = TREE_OPERAND (value, 0);
4254 tree src_type = TREE_TYPE (src);
4255 tree dest_type = TREE_TYPE (value);
4257 /* Allow view-conversions from aggregate to non-aggregate type only
4258 if the bit pattern is fully preserved afterwards; otherwise, the
4259 RTL expander won't be able to apply a subsequent transformation
4260 to the underlying constructor. */
4261 if (AGGREGATE_TYPE_P (src_type) && !AGGREGATE_TYPE_P (dest_type))
4263 if (TYPE_MODE (endtype) == TYPE_MODE (dest_type))
4264 return initializer_constant_valid_p_1 (src, endtype, cache);
4265 else
4266 return NULL_TREE;
4269 /* Allow all other kinds of view-conversion. */
4270 return initializer_constant_valid_p_1 (src, endtype, cache);
4273 CASE_CONVERT:
4275 tree src = TREE_OPERAND (value, 0);
4276 tree src_type = TREE_TYPE (src);
4277 tree dest_type = TREE_TYPE (value);
4279 /* Allow conversions between pointer types, floating-point
4280 types, and offset types. */
4281 if ((POINTER_TYPE_P (dest_type) && POINTER_TYPE_P (src_type))
4282 || (FLOAT_TYPE_P (dest_type) && FLOAT_TYPE_P (src_type))
4283 || (TREE_CODE (dest_type) == OFFSET_TYPE
4284 && TREE_CODE (src_type) == OFFSET_TYPE))
4285 return initializer_constant_valid_p_1 (src, endtype, cache);
4287 /* Allow length-preserving conversions between integer types. */
4288 if (INTEGRAL_TYPE_P (dest_type) && INTEGRAL_TYPE_P (src_type)
4289 && (TYPE_PRECISION (dest_type) == TYPE_PRECISION (src_type)))
4290 return initializer_constant_valid_p_1 (src, endtype, cache);
4292 /* Allow conversions between other integer types only if
4293 explicit value. */
4294 if (INTEGRAL_TYPE_P (dest_type) && INTEGRAL_TYPE_P (src_type))
4296 tree inner = initializer_constant_valid_p_1 (src, endtype, cache);
4297 if (inner == null_pointer_node)
4298 return null_pointer_node;
4299 break;
4302 /* Allow (int) &foo provided int is as wide as a pointer. */
4303 if (INTEGRAL_TYPE_P (dest_type) && POINTER_TYPE_P (src_type)
4304 && (TYPE_PRECISION (dest_type) >= TYPE_PRECISION (src_type)))
4305 return initializer_constant_valid_p_1 (src, endtype, cache);
4307 /* Likewise conversions from int to pointers, but also allow
4308 conversions from 0. */
4309 if ((POINTER_TYPE_P (dest_type)
4310 || TREE_CODE (dest_type) == OFFSET_TYPE)
4311 && INTEGRAL_TYPE_P (src_type))
4313 if (TREE_CODE (src) == INTEGER_CST
4314 && TYPE_PRECISION (dest_type) >= TYPE_PRECISION (src_type))
4315 return null_pointer_node;
4316 if (integer_zerop (src))
4317 return null_pointer_node;
4318 else if (TYPE_PRECISION (dest_type) <= TYPE_PRECISION (src_type))
4319 return initializer_constant_valid_p_1 (src, endtype, cache);
4322 /* Allow conversions to struct or union types if the value
4323 inside is okay. */
4324 if (TREE_CODE (dest_type) == RECORD_TYPE
4325 || TREE_CODE (dest_type) == UNION_TYPE)
4326 return initializer_constant_valid_p_1 (src, endtype, cache);
4328 break;
4330 case POINTER_PLUS_EXPR:
4331 case PLUS_EXPR:
4332 /* Any valid floating-point constants will have been folded by now;
4333 with -frounding-math we hit this with addition of two constants. */
4334 if (TREE_CODE (endtype) == REAL_TYPE)
4335 return NULL_TREE;
4336 if (cache && cache[0] == value)
4337 return cache[1];
4338 if (! INTEGRAL_TYPE_P (endtype)
4339 || TYPE_PRECISION (endtype) >= TYPE_PRECISION (TREE_TYPE (value)))
4341 tree ncache[4] = { NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE };
4342 tree valid0
4343 = initializer_constant_valid_p_1 (TREE_OPERAND (value, 0),
4344 endtype, ncache);
4345 tree valid1
4346 = initializer_constant_valid_p_1 (TREE_OPERAND (value, 1),
4347 endtype, ncache + 2);
4348 /* If either term is absolute, use the other term's relocation. */
4349 if (valid0 == null_pointer_node)
4350 ret = valid1;
4351 else if (valid1 == null_pointer_node)
4352 ret = valid0;
4353 /* Support narrowing pointer differences. */
4354 else
4355 ret = narrowing_initializer_constant_valid_p (value, endtype,
4356 ncache);
4358 else
4359 /* Support narrowing pointer differences. */
4360 ret = narrowing_initializer_constant_valid_p (value, endtype, NULL);
4361 if (cache)
4363 cache[0] = value;
4364 cache[1] = ret;
4366 return ret;
4368 case MINUS_EXPR:
4369 if (TREE_CODE (endtype) == REAL_TYPE)
4370 return NULL_TREE;
4371 if (cache && cache[0] == value)
4372 return cache[1];
4373 if (! INTEGRAL_TYPE_P (endtype)
4374 || TYPE_PRECISION (endtype) >= TYPE_PRECISION (TREE_TYPE (value)))
4376 tree ncache[4] = { NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE };
4377 tree valid0
4378 = initializer_constant_valid_p_1 (TREE_OPERAND (value, 0),
4379 endtype, ncache);
4380 tree valid1
4381 = initializer_constant_valid_p_1 (TREE_OPERAND (value, 1),
4382 endtype, ncache + 2);
4383 /* Win if second argument is absolute. */
4384 if (valid1 == null_pointer_node)
4385 ret = valid0;
4386 /* Win if both arguments have the same relocation.
4387 Then the value is absolute. */
4388 else if (valid0 == valid1 && valid0 != 0)
4389 ret = null_pointer_node;
4390 /* Since GCC guarantees that string constants are unique in the
4391 generated code, a subtraction between two copies of the same
4392 constant string is absolute. */
4393 else if (valid0 && TREE_CODE (valid0) == STRING_CST
4394 && valid1 && TREE_CODE (valid1) == STRING_CST
4395 && operand_equal_p (valid0, valid1, 1))
4396 ret = null_pointer_node;
4397 /* Support narrowing differences. */
4398 else
4399 ret = narrowing_initializer_constant_valid_p (value, endtype,
4400 ncache);
4402 else
4403 /* Support narrowing differences. */
4404 ret = narrowing_initializer_constant_valid_p (value, endtype, NULL);
4405 if (cache)
4407 cache[0] = value;
4408 cache[1] = ret;
4410 return ret;
4412 default:
4413 break;
4416 return NULL_TREE;
4419 /* Return nonzero if VALUE is a valid constant-valued expression
4420 for use in initializing a static variable; one that can be an
4421 element of a "constant" initializer.
4423 Return null_pointer_node if the value is absolute;
4424 if it is relocatable, return the variable that determines the relocation.
4425 We assume that VALUE has been folded as much as possible;
4426 therefore, we do not need to check for such things as
4427 arithmetic-combinations of integers. */
4428 tree
4429 initializer_constant_valid_p (tree value, tree endtype)
4431 return initializer_constant_valid_p_1 (value, endtype, NULL);
4434 /* Return true if VALUE is a valid constant-valued expression
4435 for use in initializing a static bit-field; one that can be
4436 an element of a "constant" initializer. */
4438 bool
4439 initializer_constant_valid_for_bitfield_p (tree value)
4441 /* For bitfields we support integer constants or possibly nested aggregates
4442 of such. */
4443 switch (TREE_CODE (value))
4445 case CONSTRUCTOR:
4447 unsigned HOST_WIDE_INT idx;
4448 tree elt;
4450 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value), idx, elt)
4451 if (!initializer_constant_valid_for_bitfield_p (elt))
4452 return false;
4453 return true;
4456 case INTEGER_CST:
4457 case REAL_CST:
4458 return true;
4460 case VIEW_CONVERT_EXPR:
4461 case NON_LVALUE_EXPR:
4462 return
4463 initializer_constant_valid_for_bitfield_p (TREE_OPERAND (value, 0));
4465 default:
4466 break;
4469 return false;
4472 /* output_constructor outer state of relevance in recursive calls, typically
4473 for nested aggregate bitfields. */
4475 typedef struct {
4476 unsigned int bit_offset; /* current position in ... */
4477 int byte; /* ... the outer byte buffer. */
4478 } oc_outer_state;
4480 static unsigned HOST_WIDE_INT
4481 output_constructor (tree, unsigned HOST_WIDE_INT, unsigned int,
4482 oc_outer_state *);
4484 /* Output assembler code for constant EXP to FILE, with no label.
4485 This includes the pseudo-op such as ".int" or ".byte", and a newline.
4486 Assumes output_addressed_constants has been done on EXP already.
4488 Generate exactly SIZE bytes of assembler data, padding at the end
4489 with zeros if necessary. SIZE must always be specified.
4491 SIZE is important for structure constructors,
4492 since trailing members may have been omitted from the constructor.
4493 It is also important for initialization of arrays from string constants
4494 since the full length of the string constant might not be wanted.
4495 It is also needed for initialization of unions, where the initializer's
4496 type is just one member, and that may not be as long as the union.
4498 There a case in which we would fail to output exactly SIZE bytes:
4499 for a structure constructor that wants to produce more than SIZE bytes.
4500 But such constructors will never be generated for any possible input.
4502 ALIGN is the alignment of the data in bits. */
4504 void
4505 output_constant (tree exp, unsigned HOST_WIDE_INT size, unsigned int align)
4507 enum tree_code code;
4508 unsigned HOST_WIDE_INT thissize;
4510 if (size == 0 || flag_syntax_only)
4511 return;
4513 /* See if we're trying to initialize a pointer in a non-default mode
4514 to the address of some declaration somewhere. If the target says
4515 the mode is valid for pointers, assume the target has a way of
4516 resolving it. */
4517 if (TREE_CODE (exp) == NOP_EXPR
4518 && POINTER_TYPE_P (TREE_TYPE (exp))
4519 && targetm.addr_space.valid_pointer_mode
4520 (TYPE_MODE (TREE_TYPE (exp)),
4521 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp)))))
4523 tree saved_type = TREE_TYPE (exp);
4525 /* Peel off any intermediate conversions-to-pointer for valid
4526 pointer modes. */
4527 while (TREE_CODE (exp) == NOP_EXPR
4528 && POINTER_TYPE_P (TREE_TYPE (exp))
4529 && targetm.addr_space.valid_pointer_mode
4530 (TYPE_MODE (TREE_TYPE (exp)),
4531 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp)))))
4532 exp = TREE_OPERAND (exp, 0);
4534 /* If what we're left with is the address of something, we can
4535 convert the address to the final type and output it that
4536 way. */
4537 if (TREE_CODE (exp) == ADDR_EXPR)
4538 exp = build1 (ADDR_EXPR, saved_type, TREE_OPERAND (exp, 0));
4539 /* Likewise for constant ints. */
4540 else if (TREE_CODE (exp) == INTEGER_CST)
4541 exp = build_int_cst_wide (saved_type, TREE_INT_CST_LOW (exp),
4542 TREE_INT_CST_HIGH (exp));
4546 /* Eliminate any conversions since we'll be outputting the underlying
4547 constant. */
4548 while (CONVERT_EXPR_P (exp)
4549 || TREE_CODE (exp) == NON_LVALUE_EXPR
4550 || TREE_CODE (exp) == VIEW_CONVERT_EXPR)
4552 HOST_WIDE_INT type_size = int_size_in_bytes (TREE_TYPE (exp));
4553 HOST_WIDE_INT op_size = int_size_in_bytes (TREE_TYPE (TREE_OPERAND (exp, 0)));
4555 /* Make sure eliminating the conversion is really a no-op, except with
4556 VIEW_CONVERT_EXPRs to allow for wild Ada unchecked conversions and
4557 union types to allow for Ada unchecked unions. */
4558 if (type_size > op_size
4559 && TREE_CODE (exp) != VIEW_CONVERT_EXPR
4560 && TREE_CODE (TREE_TYPE (exp)) != UNION_TYPE)
4561 /* Keep the conversion. */
4562 break;
4563 else
4564 exp = TREE_OPERAND (exp, 0);
4567 code = TREE_CODE (TREE_TYPE (exp));
4568 thissize = int_size_in_bytes (TREE_TYPE (exp));
4570 /* Allow a constructor with no elements for any data type.
4571 This means to fill the space with zeros. */
4572 if (TREE_CODE (exp) == CONSTRUCTOR
4573 && vec_safe_is_empty (CONSTRUCTOR_ELTS (exp)))
4575 assemble_zeros (size);
4576 return;
4579 if (TREE_CODE (exp) == FDESC_EXPR)
4581 #ifdef ASM_OUTPUT_FDESC
4582 HOST_WIDE_INT part = tree_low_cst (TREE_OPERAND (exp, 1), 0);
4583 tree decl = TREE_OPERAND (exp, 0);
4584 ASM_OUTPUT_FDESC (asm_out_file, decl, part);
4585 #else
4586 gcc_unreachable ();
4587 #endif
4588 return;
4591 /* Now output the underlying data. If we've handling the padding, return.
4592 Otherwise, break and ensure SIZE is the size written. */
4593 switch (code)
4595 case BOOLEAN_TYPE:
4596 case INTEGER_TYPE:
4597 case ENUMERAL_TYPE:
4598 case POINTER_TYPE:
4599 case REFERENCE_TYPE:
4600 case OFFSET_TYPE:
4601 case FIXED_POINT_TYPE:
4602 if (! assemble_integer (expand_expr (exp, NULL_RTX, VOIDmode,
4603 EXPAND_INITIALIZER),
4604 MIN (size, thissize), align, 0))
4605 error ("initializer for integer/fixed-point value is too complicated");
4606 break;
4608 case REAL_TYPE:
4609 if (TREE_CODE (exp) != REAL_CST)
4610 error ("initializer for floating value is not a floating constant");
4611 else
4612 assemble_real (TREE_REAL_CST (exp), TYPE_MODE (TREE_TYPE (exp)), align);
4613 break;
4615 case COMPLEX_TYPE:
4616 output_constant (TREE_REALPART (exp), thissize / 2, align);
4617 output_constant (TREE_IMAGPART (exp), thissize / 2,
4618 min_align (align, BITS_PER_UNIT * (thissize / 2)));
4619 break;
4621 case ARRAY_TYPE:
4622 case VECTOR_TYPE:
4623 switch (TREE_CODE (exp))
4625 case CONSTRUCTOR:
4626 output_constructor (exp, size, align, NULL);
4627 return;
4628 case STRING_CST:
4629 thissize = MIN ((unsigned HOST_WIDE_INT)TREE_STRING_LENGTH (exp),
4630 size);
4631 assemble_string (TREE_STRING_POINTER (exp), thissize);
4632 break;
4634 case VECTOR_CST:
4636 int elt_size;
4637 unsigned int i, nalign;
4638 enum machine_mode inner;
4640 inner = TYPE_MODE (TREE_TYPE (TREE_TYPE (exp)));
4641 nalign = MIN (align, GET_MODE_ALIGNMENT (inner));
4643 elt_size = GET_MODE_SIZE (inner);
4645 output_constant (VECTOR_CST_ELT (exp, 0), elt_size, align);
4646 thissize = elt_size;
4647 for (i = 1; i < VECTOR_CST_NELTS (exp); ++i)
4649 output_constant (VECTOR_CST_ELT (exp, i), elt_size, nalign);
4650 thissize += elt_size;
4652 break;
4654 default:
4655 gcc_unreachable ();
4657 break;
4659 case RECORD_TYPE:
4660 case UNION_TYPE:
4661 gcc_assert (TREE_CODE (exp) == CONSTRUCTOR);
4662 output_constructor (exp, size, align, NULL);
4663 return;
4665 case ERROR_MARK:
4666 return;
4668 default:
4669 gcc_unreachable ();
4672 if (size > thissize)
4673 assemble_zeros (size - thissize);
4677 /* Subroutine of output_constructor, used for computing the size of
4678 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
4679 type with an unspecified upper bound. */
4681 static unsigned HOST_WIDE_INT
4682 array_size_for_constructor (tree val)
4684 tree max_index;
4685 unsigned HOST_WIDE_INT cnt;
4686 tree index, value, tmp;
4687 double_int i;
4689 /* This code used to attempt to handle string constants that are not
4690 arrays of single-bytes, but nothing else does, so there's no point in
4691 doing it here. */
4692 if (TREE_CODE (val) == STRING_CST)
4693 return TREE_STRING_LENGTH (val);
4695 max_index = NULL_TREE;
4696 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (val), cnt, index, value)
4698 if (TREE_CODE (index) == RANGE_EXPR)
4699 index = TREE_OPERAND (index, 1);
4700 if (max_index == NULL_TREE || tree_int_cst_lt (max_index, index))
4701 max_index = index;
4704 if (max_index == NULL_TREE)
4705 return 0;
4707 /* Compute the total number of array elements. */
4708 tmp = TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val)));
4709 i = tree_to_double_int (max_index) - tree_to_double_int (tmp);
4710 i += double_int_one;
4712 /* Multiply by the array element unit size to find number of bytes. */
4713 i *= tree_to_double_int (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val))));
4715 gcc_assert (i.fits_uhwi ());
4716 return i.low;
4719 /* Other datastructures + helpers for output_constructor. */
4721 /* output_constructor local state to support interaction with helpers. */
4723 typedef struct {
4725 /* Received arguments. */
4726 tree exp; /* Constructor expression. */
4727 unsigned HOST_WIDE_INT size; /* # bytes to output - pad if necessary. */
4728 unsigned int align; /* Known initial alignment. */
4730 /* Constructor expression data. */
4731 tree type; /* Expression type. */
4732 tree field; /* Current field decl in a record. */
4733 tree min_index; /* Lower bound if specified for an array. */
4735 /* Output processing state. */
4736 HOST_WIDE_INT total_bytes; /* # bytes output so far / current position. */
4737 bool byte_buffer_in_use; /* Whether byte ... */
4738 int byte; /* ... contains part of a bitfield byte yet to
4739 be output. */
4741 int last_relative_index; /* Implicit or explicit index of the last
4742 array element output within a bitfield. */
4743 /* Current element. */
4744 tree val; /* Current element value. */
4745 tree index; /* Current element index. */
4747 } oc_local_state;
4749 /* Helper for output_constructor. From the current LOCAL state, output a
4750 RANGE_EXPR element. */
4752 static void
4753 output_constructor_array_range (oc_local_state *local)
4755 unsigned HOST_WIDE_INT fieldsize
4756 = int_size_in_bytes (TREE_TYPE (local->type));
4758 HOST_WIDE_INT lo_index
4759 = tree_low_cst (TREE_OPERAND (local->index, 0), 0);
4760 HOST_WIDE_INT hi_index
4761 = tree_low_cst (TREE_OPERAND (local->index, 1), 0);
4762 HOST_WIDE_INT index;
4764 unsigned int align2
4765 = min_align (local->align, fieldsize * BITS_PER_UNIT);
4767 for (index = lo_index; index <= hi_index; index++)
4769 /* Output the element's initial value. */
4770 if (local->val == NULL_TREE)
4771 assemble_zeros (fieldsize);
4772 else
4773 output_constant (local->val, fieldsize, align2);
4775 /* Count its size. */
4776 local->total_bytes += fieldsize;
4780 /* Helper for output_constructor. From the current LOCAL state, output a
4781 field element that is not true bitfield or part of an outer one. */
4783 static void
4784 output_constructor_regular_field (oc_local_state *local)
4786 /* Field size and position. Since this structure is static, we know the
4787 positions are constant. */
4788 unsigned HOST_WIDE_INT fieldsize;
4789 HOST_WIDE_INT fieldpos;
4791 unsigned int align2;
4793 if (local->index != NULL_TREE)
4795 /* Perform the index calculation in modulo arithmetic but
4796 sign-extend the result because Ada has negative DECL_FIELD_OFFSETs
4797 but we are using an unsigned sizetype. */
4798 unsigned prec = TYPE_PRECISION (sizetype);
4799 double_int idx = tree_to_double_int (local->index)
4800 - tree_to_double_int (local->min_index);
4801 idx = idx.sext (prec);
4802 fieldpos = (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (local->val)), 1)
4803 * idx.low);
4805 else if (local->field != NULL_TREE)
4806 fieldpos = int_byte_position (local->field);
4807 else
4808 fieldpos = 0;
4810 /* Output any buffered-up bit-fields preceding this element. */
4811 if (local->byte_buffer_in_use)
4813 assemble_integer (GEN_INT (local->byte), 1, BITS_PER_UNIT, 1);
4814 local->total_bytes++;
4815 local->byte_buffer_in_use = false;
4818 /* Advance to offset of this element.
4819 Note no alignment needed in an array, since that is guaranteed
4820 if each element has the proper size. */
4821 if ((local->field != NULL_TREE || local->index != NULL_TREE)
4822 && fieldpos != local->total_bytes)
4824 gcc_assert (fieldpos >= local->total_bytes);
4825 assemble_zeros (fieldpos - local->total_bytes);
4826 local->total_bytes = fieldpos;
4829 /* Find the alignment of this element. */
4830 align2 = min_align (local->align, BITS_PER_UNIT * fieldpos);
4832 /* Determine size this element should occupy. */
4833 if (local->field)
4835 fieldsize = 0;
4837 /* If this is an array with an unspecified upper bound,
4838 the initializer determines the size. */
4839 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4840 but we cannot do this until the deprecated support for
4841 initializing zero-length array members is removed. */
4842 if (TREE_CODE (TREE_TYPE (local->field)) == ARRAY_TYPE
4843 && TYPE_DOMAIN (TREE_TYPE (local->field))
4844 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (local->field))))
4846 fieldsize = array_size_for_constructor (local->val);
4847 /* Given a non-empty initialization, this field had
4848 better be last. */
4849 gcc_assert (!fieldsize || !DECL_CHAIN (local->field));
4851 else
4852 fieldsize = tree_low_cst (DECL_SIZE_UNIT (local->field), 1);
4854 else
4855 fieldsize = int_size_in_bytes (TREE_TYPE (local->type));
4857 /* Output the element's initial value. */
4858 if (local->val == NULL_TREE)
4859 assemble_zeros (fieldsize);
4860 else
4861 output_constant (local->val, fieldsize, align2);
4863 /* Count its size. */
4864 local->total_bytes += fieldsize;
4867 /* Helper for output_constructor. From the current LOCAL and OUTER states,
4868 output an element that is a true bitfield or part of an outer one. */
4870 static void
4871 output_constructor_bitfield (oc_local_state *local, oc_outer_state *outer)
4873 /* Bit size of this element. */
4874 HOST_WIDE_INT ebitsize
4875 = (local->field
4876 ? tree_low_cst (DECL_SIZE (local->field), 1)
4877 : tree_low_cst (TYPE_SIZE (TREE_TYPE (local->type)), 1));
4879 /* Relative index of this element if this is an array component. */
4880 HOST_WIDE_INT relative_index
4881 = (!local->field
4882 ? (local->index
4883 ? (tree_low_cst (local->index, 0)
4884 - tree_low_cst (local->min_index, 0))
4885 : local->last_relative_index + 1)
4886 : 0);
4888 /* Bit position of this element from the start of the containing
4889 constructor. */
4890 HOST_WIDE_INT constructor_relative_ebitpos
4891 = (local->field
4892 ? int_bit_position (local->field)
4893 : ebitsize * relative_index);
4895 /* Bit position of this element from the start of a possibly ongoing
4896 outer byte buffer. */
4897 HOST_WIDE_INT byte_relative_ebitpos
4898 = ((outer ? outer->bit_offset : 0) + constructor_relative_ebitpos);
4900 /* From the start of a possibly ongoing outer byte buffer, offsets to
4901 the first bit of this element and to the first bit past the end of
4902 this element. */
4903 HOST_WIDE_INT next_offset = byte_relative_ebitpos;
4904 HOST_WIDE_INT end_offset = byte_relative_ebitpos + ebitsize;
4906 local->last_relative_index = relative_index;
4908 if (local->val == NULL_TREE)
4909 local->val = integer_zero_node;
4911 while (TREE_CODE (local->val) == VIEW_CONVERT_EXPR
4912 || TREE_CODE (local->val) == NON_LVALUE_EXPR)
4913 local->val = TREE_OPERAND (local->val, 0);
4915 if (TREE_CODE (local->val) != INTEGER_CST
4916 && TREE_CODE (local->val) != CONSTRUCTOR)
4918 error ("invalid initial value for member %qE", DECL_NAME (local->field));
4919 return;
4922 /* If this field does not start in this (or, next) byte,
4923 skip some bytes. */
4924 if (next_offset / BITS_PER_UNIT != local->total_bytes)
4926 /* Output remnant of any bit field in previous bytes. */
4927 if (local->byte_buffer_in_use)
4929 assemble_integer (GEN_INT (local->byte), 1, BITS_PER_UNIT, 1);
4930 local->total_bytes++;
4931 local->byte_buffer_in_use = false;
4934 /* If still not at proper byte, advance to there. */
4935 if (next_offset / BITS_PER_UNIT != local->total_bytes)
4937 gcc_assert (next_offset / BITS_PER_UNIT >= local->total_bytes);
4938 assemble_zeros (next_offset / BITS_PER_UNIT - local->total_bytes);
4939 local->total_bytes = next_offset / BITS_PER_UNIT;
4943 /* Set up the buffer if necessary. */
4944 if (!local->byte_buffer_in_use)
4946 local->byte = 0;
4947 if (ebitsize > 0)
4948 local->byte_buffer_in_use = true;
4951 /* If this is nested constructor, recurse passing the bit offset and the
4952 pending data, then retrieve the new pending data afterwards. */
4953 if (TREE_CODE (local->val) == CONSTRUCTOR)
4955 oc_outer_state output_state;
4957 output_state.bit_offset = next_offset % BITS_PER_UNIT;
4958 output_state.byte = local->byte;
4959 local->total_bytes
4960 += output_constructor (local->val, 0, 0, &output_state);
4961 local->byte = output_state.byte;
4962 return;
4965 /* Otherwise, we must split the element into pieces that fall within
4966 separate bytes, and combine each byte with previous or following
4967 bit-fields. */
4968 while (next_offset < end_offset)
4970 int this_time;
4971 int shift;
4972 HOST_WIDE_INT value;
4973 HOST_WIDE_INT next_byte = next_offset / BITS_PER_UNIT;
4974 HOST_WIDE_INT next_bit = next_offset % BITS_PER_UNIT;
4976 /* Advance from byte to byte
4977 within this element when necessary. */
4978 while (next_byte != local->total_bytes)
4980 assemble_integer (GEN_INT (local->byte), 1, BITS_PER_UNIT, 1);
4981 local->total_bytes++;
4982 local->byte = 0;
4985 /* Number of bits we can process at once
4986 (all part of the same byte). */
4987 this_time = MIN (end_offset - next_offset,
4988 BITS_PER_UNIT - next_bit);
4989 if (BYTES_BIG_ENDIAN)
4991 /* On big-endian machine, take the most significant bits
4992 first (of the bits that are significant)
4993 and put them into bytes from the most significant end. */
4994 shift = end_offset - next_offset - this_time;
4996 /* Don't try to take a bunch of bits that cross
4997 the word boundary in the INTEGER_CST. We can
4998 only select bits from the LOW or HIGH part
4999 not from both. */
5000 if (shift < HOST_BITS_PER_WIDE_INT
5001 && shift + this_time > HOST_BITS_PER_WIDE_INT)
5003 this_time = shift + this_time - HOST_BITS_PER_WIDE_INT;
5004 shift = HOST_BITS_PER_WIDE_INT;
5007 /* Now get the bits from the appropriate constant word. */
5008 if (shift < HOST_BITS_PER_WIDE_INT)
5009 value = TREE_INT_CST_LOW (local->val);
5010 else
5012 gcc_assert (shift < HOST_BITS_PER_DOUBLE_INT);
5013 value = TREE_INT_CST_HIGH (local->val);
5014 shift -= HOST_BITS_PER_WIDE_INT;
5017 /* Get the result. This works only when:
5018 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
5019 local->byte |= (((value >> shift)
5020 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
5021 << (BITS_PER_UNIT - this_time - next_bit));
5023 else
5025 /* On little-endian machines,
5026 take first the least significant bits of the value
5027 and pack them starting at the least significant
5028 bits of the bytes. */
5029 shift = next_offset - byte_relative_ebitpos;
5031 /* Don't try to take a bunch of bits that cross
5032 the word boundary in the INTEGER_CST. We can
5033 only select bits from the LOW or HIGH part
5034 not from both. */
5035 if (shift < HOST_BITS_PER_WIDE_INT
5036 && shift + this_time > HOST_BITS_PER_WIDE_INT)
5037 this_time = (HOST_BITS_PER_WIDE_INT - shift);
5039 /* Now get the bits from the appropriate constant word. */
5040 if (shift < HOST_BITS_PER_WIDE_INT)
5041 value = TREE_INT_CST_LOW (local->val);
5042 else
5044 gcc_assert (shift < HOST_BITS_PER_DOUBLE_INT);
5045 value = TREE_INT_CST_HIGH (local->val);
5046 shift -= HOST_BITS_PER_WIDE_INT;
5049 /* Get the result. This works only when:
5050 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
5051 local->byte |= (((value >> shift)
5052 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
5053 << next_bit);
5056 next_offset += this_time;
5057 local->byte_buffer_in_use = true;
5061 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
5062 Generate at least SIZE bytes, padding if necessary. OUTER designates the
5063 caller output state of relevance in recursive invocations. */
5065 static unsigned HOST_WIDE_INT
5066 output_constructor (tree exp, unsigned HOST_WIDE_INT size,
5067 unsigned int align, oc_outer_state * outer)
5069 unsigned HOST_WIDE_INT cnt;
5070 constructor_elt *ce;
5072 oc_local_state local;
5074 /* Setup our local state to communicate with helpers. */
5075 local.exp = exp;
5076 local.size = size;
5077 local.align = align;
5079 local.total_bytes = 0;
5080 local.byte_buffer_in_use = outer != NULL;
5081 local.byte = outer ? outer->byte : 0;
5083 local.type = TREE_TYPE (exp);
5085 local.last_relative_index = -1;
5087 local.min_index = NULL_TREE;
5088 if (TREE_CODE (local.type) == ARRAY_TYPE
5089 && TYPE_DOMAIN (local.type) != NULL_TREE)
5090 local.min_index = TYPE_MIN_VALUE (TYPE_DOMAIN (local.type));
5092 gcc_assert (HOST_BITS_PER_WIDE_INT >= BITS_PER_UNIT);
5094 /* As CE goes through the elements of the constant, FIELD goes through the
5095 structure fields if the constant is a structure. If the constant is a
5096 union, we override this by getting the field from the TREE_LIST element.
5097 But the constant could also be an array. Then FIELD is zero.
5099 There is always a maximum of one element in the chain LINK for unions
5100 (even if the initializer in a source program incorrectly contains
5101 more one). */
5103 local.field = NULL_TREE;
5104 if (TREE_CODE (local.type) == RECORD_TYPE)
5105 local.field = TYPE_FIELDS (local.type);
5107 for (cnt = 0;
5108 vec_safe_iterate (CONSTRUCTOR_ELTS (exp), cnt, &ce);
5109 cnt++, local.field = local.field ? DECL_CHAIN (local.field) : 0)
5111 local.val = ce->value;
5112 local.index = NULL_TREE;
5114 /* The element in a union constructor specifies the proper field
5115 or index. */
5116 if (RECORD_OR_UNION_TYPE_P (local.type) && ce->index != NULL_TREE)
5117 local.field = ce->index;
5119 else if (TREE_CODE (local.type) == ARRAY_TYPE)
5120 local.index = ce->index;
5122 if (local.field && flag_verbose_asm)
5123 fprintf (asm_out_file, "%s %s:\n",
5124 ASM_COMMENT_START,
5125 DECL_NAME (local.field)
5126 ? IDENTIFIER_POINTER (DECL_NAME (local.field))
5127 : "<anonymous>");
5129 /* Eliminate the marker that makes a cast not be an lvalue. */
5130 if (local.val != NULL_TREE)
5131 STRIP_NOPS (local.val);
5133 /* Output the current element, using the appropriate helper ... */
5135 /* For an array slice not part of an outer bitfield. */
5136 if (!outer
5137 && local.index != NULL_TREE
5138 && TREE_CODE (local.index) == RANGE_EXPR)
5139 output_constructor_array_range (&local);
5141 /* For a field that is neither a true bitfield nor part of an outer one,
5142 known to be at least byte aligned and multiple-of-bytes long. */
5143 else if (!outer
5144 && (local.field == NULL_TREE
5145 || !CONSTRUCTOR_BITFIELD_P (local.field)))
5146 output_constructor_regular_field (&local);
5148 /* For a true bitfield or part of an outer one. Only INTEGER_CSTs are
5149 supported for scalar fields, so we may need to convert first. */
5150 else
5152 if (TREE_CODE (local.val) == REAL_CST)
5153 local.val
5154 = fold_unary (VIEW_CONVERT_EXPR,
5155 build_nonstandard_integer_type
5156 (TYPE_PRECISION (TREE_TYPE (local.val)), 0),
5157 local.val);
5158 output_constructor_bitfield (&local, outer);
5162 /* If we are not at toplevel, save the pending data for our caller.
5163 Otherwise output the pending data and padding zeros as needed. */
5164 if (outer)
5165 outer->byte = local.byte;
5166 else
5168 if (local.byte_buffer_in_use)
5170 assemble_integer (GEN_INT (local.byte), 1, BITS_PER_UNIT, 1);
5171 local.total_bytes++;
5174 if ((unsigned HOST_WIDE_INT)local.total_bytes < local.size)
5176 assemble_zeros (local.size - local.total_bytes);
5177 local.total_bytes = local.size;
5181 return local.total_bytes;
5184 /* Mark DECL as weak. */
5186 static void
5187 mark_weak (tree decl)
5189 DECL_WEAK (decl) = 1;
5191 if (DECL_RTL_SET_P (decl)
5192 && MEM_P (DECL_RTL (decl))
5193 && XEXP (DECL_RTL (decl), 0)
5194 && GET_CODE (XEXP (DECL_RTL (decl), 0)) == SYMBOL_REF)
5195 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl), 0)) = 1;
5198 /* Merge weak status between NEWDECL and OLDDECL. */
5200 void
5201 merge_weak (tree newdecl, tree olddecl)
5203 if (DECL_WEAK (newdecl) == DECL_WEAK (olddecl))
5205 if (DECL_WEAK (newdecl) && TARGET_SUPPORTS_WEAK)
5207 tree *pwd;
5208 /* We put the NEWDECL on the weak_decls list at some point
5209 and OLDDECL as well. Keep just OLDDECL on the list. */
5210 for (pwd = &weak_decls; *pwd; pwd = &TREE_CHAIN (*pwd))
5211 if (TREE_VALUE (*pwd) == newdecl)
5213 *pwd = TREE_CHAIN (*pwd);
5214 break;
5217 return;
5220 if (DECL_WEAK (newdecl))
5222 tree wd;
5224 /* NEWDECL is weak, but OLDDECL is not. */
5226 /* If we already output the OLDDECL, we're in trouble; we can't
5227 go back and make it weak. This should never happen in
5228 unit-at-a-time compilation. */
5229 gcc_assert (!TREE_ASM_WRITTEN (olddecl));
5231 /* If we've already generated rtl referencing OLDDECL, we may
5232 have done so in a way that will not function properly with
5233 a weak symbol. Again in unit-at-a-time this should be
5234 impossible. */
5235 gcc_assert (!TREE_USED (olddecl)
5236 || !TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl)));
5238 if (TARGET_SUPPORTS_WEAK)
5240 /* We put the NEWDECL on the weak_decls list at some point.
5241 Replace it with the OLDDECL. */
5242 for (wd = weak_decls; wd; wd = TREE_CHAIN (wd))
5243 if (TREE_VALUE (wd) == newdecl)
5245 TREE_VALUE (wd) = olddecl;
5246 break;
5248 /* We may not find the entry on the list. If NEWDECL is a
5249 weak alias, then we will have already called
5250 globalize_decl to remove the entry; in that case, we do
5251 not need to do anything. */
5254 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
5255 mark_weak (olddecl);
5257 else
5258 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
5259 weak. Just update NEWDECL to indicate that it's weak too. */
5260 mark_weak (newdecl);
5263 /* Declare DECL to be a weak symbol. */
5265 void
5266 declare_weak (tree decl)
5268 gcc_assert (TREE_CODE (decl) != FUNCTION_DECL || !TREE_ASM_WRITTEN (decl));
5269 if (! TREE_PUBLIC (decl))
5270 error ("weak declaration of %q+D must be public", decl);
5271 else if (!TARGET_SUPPORTS_WEAK)
5272 warning (0, "weak declaration of %q+D not supported", decl);
5274 mark_weak (decl);
5275 if (!lookup_attribute ("weak", DECL_ATTRIBUTES (decl)))
5276 DECL_ATTRIBUTES (decl)
5277 = tree_cons (get_identifier ("weak"), NULL, DECL_ATTRIBUTES (decl));
5280 static void
5281 weak_finish_1 (tree decl)
5283 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
5284 const char *const name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5285 #endif
5287 if (! TREE_USED (decl))
5288 return;
5290 #ifdef ASM_WEAKEN_DECL
5291 ASM_WEAKEN_DECL (asm_out_file, decl, name, NULL);
5292 #else
5293 #ifdef ASM_WEAKEN_LABEL
5294 ASM_WEAKEN_LABEL (asm_out_file, name);
5295 #else
5296 #ifdef ASM_OUTPUT_WEAK_ALIAS
5298 static bool warn_once = 0;
5299 if (! warn_once)
5301 warning (0, "only weak aliases are supported in this configuration");
5302 warn_once = 1;
5304 return;
5306 #endif
5307 #endif
5308 #endif
5311 /* Fiven an assembly name, find the decl it is associated with. */
5312 static tree
5313 find_decl (tree target)
5315 symtab_node node = symtab_node_for_asm (target);
5316 if (node)
5317 return node->symbol.decl;
5318 return NULL_TREE;
5321 /* This TREE_LIST contains weakref targets. */
5323 static GTY(()) tree weakref_targets;
5325 /* Emit any pending weak declarations. */
5327 void
5328 weak_finish (void)
5330 tree t;
5332 for (t = weakref_targets; t; t = TREE_CHAIN (t))
5334 tree alias_decl = TREE_PURPOSE (t);
5335 tree target = ultimate_transparent_alias_target (&TREE_VALUE (t));
5337 if (! TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (alias_decl)))
5338 /* Remove alias_decl from the weak list, but leave entries for
5339 the target alone. */
5340 target = NULL_TREE;
5341 #ifndef ASM_OUTPUT_WEAKREF
5342 else if (! TREE_SYMBOL_REFERENCED (target))
5344 /* Use ASM_WEAKEN_LABEL only if ASM_WEAKEN_DECL is not
5345 defined, otherwise we and weak_finish_1 would use
5346 different macros. */
5347 # if defined ASM_WEAKEN_LABEL && ! defined ASM_WEAKEN_DECL
5348 ASM_WEAKEN_LABEL (asm_out_file, IDENTIFIER_POINTER (target));
5349 # else
5350 tree decl = find_decl (target);
5352 if (! decl)
5354 decl = build_decl (DECL_SOURCE_LOCATION (alias_decl),
5355 TREE_CODE (alias_decl), target,
5356 TREE_TYPE (alias_decl));
5358 DECL_EXTERNAL (decl) = 1;
5359 TREE_PUBLIC (decl) = 1;
5360 DECL_ARTIFICIAL (decl) = 1;
5361 TREE_NOTHROW (decl) = TREE_NOTHROW (alias_decl);
5362 TREE_USED (decl) = 1;
5365 weak_finish_1 (decl);
5366 # endif
5368 #endif
5371 tree *p;
5372 tree t2;
5374 /* Remove the alias and the target from the pending weak list
5375 so that we do not emit any .weak directives for the former,
5376 nor multiple .weak directives for the latter. */
5377 for (p = &weak_decls; (t2 = *p) ; )
5379 if (TREE_VALUE (t2) == alias_decl
5380 || target == DECL_ASSEMBLER_NAME (TREE_VALUE (t2)))
5381 *p = TREE_CHAIN (t2);
5382 else
5383 p = &TREE_CHAIN (t2);
5386 /* Remove other weakrefs to the same target, to speed things up. */
5387 for (p = &TREE_CHAIN (t); (t2 = *p) ; )
5389 if (target == ultimate_transparent_alias_target (&TREE_VALUE (t2)))
5390 *p = TREE_CHAIN (t2);
5391 else
5392 p = &TREE_CHAIN (t2);
5397 for (t = weak_decls; t; t = TREE_CHAIN (t))
5399 tree decl = TREE_VALUE (t);
5401 weak_finish_1 (decl);
5405 /* Emit the assembly bits to indicate that DECL is globally visible. */
5407 static void
5408 globalize_decl (tree decl)
5411 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
5412 if (DECL_WEAK (decl))
5414 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
5415 tree *p, t;
5417 #ifdef ASM_WEAKEN_DECL
5418 ASM_WEAKEN_DECL (asm_out_file, decl, name, 0);
5419 #else
5420 ASM_WEAKEN_LABEL (asm_out_file, name);
5421 #endif
5423 /* Remove this function from the pending weak list so that
5424 we do not emit multiple .weak directives for it. */
5425 for (p = &weak_decls; (t = *p) ; )
5427 if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
5428 *p = TREE_CHAIN (t);
5429 else
5430 p = &TREE_CHAIN (t);
5433 /* Remove weakrefs to the same target from the pending weakref
5434 list, for the same reason. */
5435 for (p = &weakref_targets; (t = *p) ; )
5437 if (DECL_ASSEMBLER_NAME (decl)
5438 == ultimate_transparent_alias_target (&TREE_VALUE (t)))
5439 *p = TREE_CHAIN (t);
5440 else
5441 p = &TREE_CHAIN (t);
5444 return;
5446 #endif
5448 targetm.asm_out.globalize_decl_name (asm_out_file, decl);
5451 vec<alias_pair, va_gc> *alias_pairs;
5453 /* Output the assembler code for a define (equate) using ASM_OUTPUT_DEF
5454 or ASM_OUTPUT_DEF_FROM_DECLS. The function defines the symbol whose
5455 tree node is DECL to have the value of the tree node TARGET. */
5457 void
5458 do_assemble_alias (tree decl, tree target)
5460 /* Emulated TLS had better not get this var. */
5461 gcc_assert(!(!targetm.have_tls
5462 && TREE_CODE (decl) == VAR_DECL
5463 && DECL_THREAD_LOCAL_P (decl)));
5465 if (TREE_ASM_WRITTEN (decl))
5466 return;
5468 /* We must force creation of DECL_RTL for debug info generation, even though
5469 we don't use it here. */
5470 make_decl_rtl (decl);
5472 TREE_ASM_WRITTEN (decl) = 1;
5473 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl)) = 1;
5475 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl)))
5477 ultimate_transparent_alias_target (&target);
5479 if (!TREE_SYMBOL_REFERENCED (target))
5480 weakref_targets = tree_cons (decl, target, weakref_targets);
5482 #ifdef ASM_OUTPUT_WEAKREF
5483 ASM_OUTPUT_WEAKREF (asm_out_file, decl,
5484 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)),
5485 IDENTIFIER_POINTER (target));
5486 #else
5487 if (!TARGET_SUPPORTS_WEAK)
5489 error_at (DECL_SOURCE_LOCATION (decl),
5490 "weakref is not supported in this configuration");
5491 return;
5493 #endif
5494 return;
5497 #ifdef ASM_OUTPUT_DEF
5498 /* Make name accessible from other files, if appropriate. */
5500 if (TREE_PUBLIC (decl))
5502 globalize_decl (decl);
5503 maybe_assemble_visibility (decl);
5505 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl)))
5507 #if defined (ASM_OUTPUT_TYPE_DIRECTIVE) && HAVE_GNU_INDIRECT_FUNCTION
5508 ASM_OUTPUT_TYPE_DIRECTIVE
5509 (asm_out_file, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)),
5510 IFUNC_ASM_TYPE);
5511 #else
5512 error_at (DECL_SOURCE_LOCATION (decl),
5513 "ifunc is not supported in this configuration");
5514 #endif
5517 # ifdef ASM_OUTPUT_DEF_FROM_DECLS
5518 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file, decl, target);
5519 # else
5520 ASM_OUTPUT_DEF (asm_out_file,
5521 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)),
5522 IDENTIFIER_POINTER (target));
5523 # endif
5524 #elif defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
5526 const char *name;
5527 tree *p, t;
5529 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5530 # ifdef ASM_WEAKEN_DECL
5531 ASM_WEAKEN_DECL (asm_out_file, decl, name, IDENTIFIER_POINTER (target));
5532 # else
5533 ASM_OUTPUT_WEAK_ALIAS (asm_out_file, name, IDENTIFIER_POINTER (target));
5534 # endif
5535 /* Remove this function from the pending weak list so that
5536 we do not emit multiple .weak directives for it. */
5537 for (p = &weak_decls; (t = *p) ; )
5538 if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
5539 *p = TREE_CHAIN (t);
5540 else
5541 p = &TREE_CHAIN (t);
5543 /* Remove weakrefs to the same target from the pending weakref
5544 list, for the same reason. */
5545 for (p = &weakref_targets; (t = *p) ; )
5547 if (DECL_ASSEMBLER_NAME (decl)
5548 == ultimate_transparent_alias_target (&TREE_VALUE (t)))
5549 *p = TREE_CHAIN (t);
5550 else
5551 p = &TREE_CHAIN (t);
5554 #endif
5557 /* Emit an assembler directive to make the symbol for DECL an alias to
5558 the symbol for TARGET. */
5560 void
5561 assemble_alias (tree decl, tree target)
5563 tree target_decl;
5565 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl)))
5567 tree alias = DECL_ASSEMBLER_NAME (decl);
5569 ultimate_transparent_alias_target (&target);
5571 if (alias == target)
5572 error ("weakref %q+D ultimately targets itself", decl);
5573 else
5575 #ifndef ASM_OUTPUT_WEAKREF
5576 IDENTIFIER_TRANSPARENT_ALIAS (alias) = 1;
5577 TREE_CHAIN (alias) = target;
5578 #endif
5580 if (TREE_PUBLIC (decl))
5581 error ("weakref %q+D must have static linkage", decl);
5583 else
5585 #if !defined (ASM_OUTPUT_DEF)
5586 # if !defined(ASM_OUTPUT_WEAK_ALIAS) && !defined (ASM_WEAKEN_DECL)
5587 error_at (DECL_SOURCE_LOCATION (decl),
5588 "alias definitions not supported in this configuration");
5589 return;
5590 # else
5591 if (!DECL_WEAK (decl))
5593 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl)))
5594 error_at (DECL_SOURCE_LOCATION (decl),
5595 "ifunc is not supported in this configuration");
5596 else
5597 error_at (DECL_SOURCE_LOCATION (decl),
5598 "only weak aliases are supported in this configuration");
5599 return;
5601 # endif
5602 #endif
5604 TREE_USED (decl) = 1;
5606 /* Allow aliases to aliases. */
5607 if (TREE_CODE (decl) == FUNCTION_DECL)
5608 cgraph_get_create_node (decl)->alias = true;
5609 else
5610 varpool_node_for_decl (decl)->alias = true;
5612 /* If the target has already been emitted, we don't have to queue the
5613 alias. This saves a tad of memory. */
5614 if (cgraph_global_info_ready)
5615 target_decl = find_decl (target);
5616 else
5617 target_decl= NULL;
5618 if ((target_decl && TREE_ASM_WRITTEN (target_decl))
5619 || cgraph_state >= CGRAPH_STATE_EXPANSION)
5620 do_assemble_alias (decl, target);
5621 else
5623 alias_pair p = {decl, target};
5624 vec_safe_push (alias_pairs, p);
5628 /* Record and output a table of translations from original function
5629 to its transaction aware clone. Note that tm_pure functions are
5630 considered to be their own clone. */
5632 static GTY((if_marked ("tree_map_marked_p"), param_is (struct tree_map)))
5633 htab_t tm_clone_hash;
5635 void
5636 record_tm_clone_pair (tree o, tree n)
5638 struct tree_map **slot, *h;
5640 if (tm_clone_hash == NULL)
5641 tm_clone_hash = htab_create_ggc (32, tree_map_hash, tree_map_eq, 0);
5643 h = ggc_alloc_tree_map ();
5644 h->hash = htab_hash_pointer (o);
5645 h->base.from = o;
5646 h->to = n;
5648 slot = (struct tree_map **)
5649 htab_find_slot_with_hash (tm_clone_hash, h, h->hash, INSERT);
5650 *slot = h;
5653 tree
5654 get_tm_clone_pair (tree o)
5656 if (tm_clone_hash)
5658 struct tree_map *h, in;
5660 in.base.from = o;
5661 in.hash = htab_hash_pointer (o);
5662 h = (struct tree_map *) htab_find_with_hash (tm_clone_hash,
5663 &in, in.hash);
5664 if (h)
5665 return h->to;
5667 return NULL_TREE;
5670 typedef struct tm_alias_pair
5672 unsigned int uid;
5673 tree from;
5674 tree to;
5675 } tm_alias_pair;
5678 /* Helper function for finish_tm_clone_pairs. Dump a hash table entry
5679 into a VEC in INFO. */
5681 static int
5682 dump_tm_clone_to_vec (void **slot, void *info)
5684 struct tree_map *map = (struct tree_map *) *slot;
5685 vec<tm_alias_pair> *tm_alias_pairs = (vec<tm_alias_pair> *) info;
5686 tm_alias_pair p = {DECL_UID (map->base.from), map->base.from, map->to};
5687 tm_alias_pairs->safe_push (p);
5688 return 1;
5691 /* Dump the actual pairs to the .tm_clone_table section. */
5693 static void
5694 dump_tm_clone_pairs (vec<tm_alias_pair> tm_alias_pairs)
5696 unsigned i;
5697 tm_alias_pair *p;
5698 bool switched = false;
5700 FOR_EACH_VEC_ELT (tm_alias_pairs, i, p)
5702 tree src = p->from;
5703 tree dst = p->to;
5704 struct cgraph_node *src_n = cgraph_get_node (src);
5705 struct cgraph_node *dst_n = cgraph_get_node (dst);
5707 /* The function ipa_tm_create_version() marks the clone as needed if
5708 the original function was needed. But we also mark the clone as
5709 needed if we ever called the clone indirectly through
5710 TM_GETTMCLONE. If neither of these are true, we didn't generate
5711 a clone, and we didn't call it indirectly... no sense keeping it
5712 in the clone table. */
5713 if (!dst_n || !dst_n->analyzed)
5714 continue;
5716 /* This covers the case where we have optimized the original
5717 function away, and only access the transactional clone. */
5718 if (!src_n || !src_n->analyzed)
5719 continue;
5721 if (!switched)
5723 switch_to_section (targetm.asm_out.tm_clone_table_section ());
5724 assemble_align (POINTER_SIZE);
5725 switched = true;
5728 assemble_integer (XEXP (DECL_RTL (src), 0),
5729 POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
5730 assemble_integer (XEXP (DECL_RTL (dst), 0),
5731 POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
5735 /* Provide a default for the tm_clone_table section. */
5737 section *
5738 default_clone_table_section (void)
5740 return get_named_section (NULL, ".tm_clone_table", 3);
5743 /* Helper comparison function for qsorting by the DECL_UID stored in
5744 alias_pair->emitted_diags. */
5746 static int
5747 tm_alias_pair_cmp (const void *x, const void *y)
5749 const tm_alias_pair *p1 = (const tm_alias_pair *) x;
5750 const tm_alias_pair *p2 = (const tm_alias_pair *) y;
5751 if (p1->uid < p2->uid)
5752 return -1;
5753 if (p1->uid > p2->uid)
5754 return 1;
5755 return 0;
5758 void
5759 finish_tm_clone_pairs (void)
5761 vec<tm_alias_pair> tm_alias_pairs = vNULL;
5763 if (tm_clone_hash == NULL)
5764 return;
5766 /* We need a determenistic order for the .tm_clone_table, otherwise
5767 we will get bootstrap comparison failures, so dump the hash table
5768 to a vector, sort it, and dump the vector. */
5770 /* Dump the hashtable to a vector. */
5771 htab_traverse_noresize (tm_clone_hash, dump_tm_clone_to_vec,
5772 (void *) &tm_alias_pairs);
5773 /* Sort it. */
5774 tm_alias_pairs.qsort (tm_alias_pair_cmp);
5776 /* Dump it. */
5777 dump_tm_clone_pairs (tm_alias_pairs);
5779 htab_delete (tm_clone_hash);
5780 tm_clone_hash = NULL;
5781 tm_alias_pairs.release ();
5785 /* Emit an assembler directive to set symbol for DECL visibility to
5786 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
5788 void
5789 default_assemble_visibility (tree decl ATTRIBUTE_UNUSED,
5790 int vis ATTRIBUTE_UNUSED)
5792 #ifdef HAVE_GAS_HIDDEN
5793 static const char * const visibility_types[] = {
5794 NULL, "protected", "hidden", "internal"
5797 const char *name, *type;
5799 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5800 type = visibility_types[vis];
5802 fprintf (asm_out_file, "\t.%s\t", type);
5803 assemble_name (asm_out_file, name);
5804 fprintf (asm_out_file, "\n");
5805 #else
5806 if (!DECL_ARTIFICIAL (decl))
5807 warning (OPT_Wattributes, "visibility attribute not supported "
5808 "in this configuration; ignored");
5809 #endif
5812 /* A helper function to call assemble_visibility when needed for a decl. */
5815 maybe_assemble_visibility (tree decl)
5817 enum symbol_visibility vis = DECL_VISIBILITY (decl);
5819 if (vis != VISIBILITY_DEFAULT)
5821 targetm.asm_out.assemble_visibility (decl, vis);
5822 return 1;
5824 else
5825 return 0;
5828 /* Returns 1 if the target configuration supports defining public symbols
5829 so that one of them will be chosen at link time instead of generating a
5830 multiply-defined symbol error, whether through the use of weak symbols or
5831 a target-specific mechanism for having duplicates discarded. */
5834 supports_one_only (void)
5836 if (SUPPORTS_ONE_ONLY)
5837 return 1;
5838 return TARGET_SUPPORTS_WEAK;
5841 /* Set up DECL as a public symbol that can be defined in multiple
5842 translation units without generating a linker error. */
5844 void
5845 make_decl_one_only (tree decl, tree comdat_group)
5847 gcc_assert (TREE_CODE (decl) == VAR_DECL
5848 || TREE_CODE (decl) == FUNCTION_DECL);
5850 TREE_PUBLIC (decl) = 1;
5852 if (SUPPORTS_ONE_ONLY)
5854 #ifdef MAKE_DECL_ONE_ONLY
5855 MAKE_DECL_ONE_ONLY (decl);
5856 #endif
5857 DECL_COMDAT_GROUP (decl) = comdat_group;
5859 else if (TREE_CODE (decl) == VAR_DECL
5860 && (DECL_INITIAL (decl) == 0 || DECL_INITIAL (decl) == error_mark_node))
5861 DECL_COMMON (decl) = 1;
5862 else
5864 gcc_assert (TARGET_SUPPORTS_WEAK);
5865 DECL_WEAK (decl) = 1;
5869 void
5870 init_varasm_once (void)
5872 section_htab = htab_create_ggc (31, section_entry_hash,
5873 section_entry_eq, NULL);
5874 object_block_htab = htab_create_ggc (31, object_block_entry_hash,
5875 object_block_entry_eq, NULL);
5876 const_desc_htab = htab_create_ggc (1009, const_desc_hash,
5877 const_desc_eq, NULL);
5879 const_alias_set = new_alias_set ();
5880 shared_constant_pool = create_constant_pool ();
5882 #ifdef TEXT_SECTION_ASM_OP
5883 text_section = get_unnamed_section (SECTION_CODE, output_section_asm_op,
5884 TEXT_SECTION_ASM_OP);
5885 #endif
5887 #ifdef DATA_SECTION_ASM_OP
5888 data_section = get_unnamed_section (SECTION_WRITE, output_section_asm_op,
5889 DATA_SECTION_ASM_OP);
5890 #endif
5892 #ifdef SDATA_SECTION_ASM_OP
5893 sdata_section = get_unnamed_section (SECTION_WRITE, output_section_asm_op,
5894 SDATA_SECTION_ASM_OP);
5895 #endif
5897 #ifdef READONLY_DATA_SECTION_ASM_OP
5898 readonly_data_section = get_unnamed_section (0, output_section_asm_op,
5899 READONLY_DATA_SECTION_ASM_OP);
5900 #endif
5902 #ifdef CTORS_SECTION_ASM_OP
5903 ctors_section = get_unnamed_section (0, output_section_asm_op,
5904 CTORS_SECTION_ASM_OP);
5905 #endif
5907 #ifdef DTORS_SECTION_ASM_OP
5908 dtors_section = get_unnamed_section (0, output_section_asm_op,
5909 DTORS_SECTION_ASM_OP);
5910 #endif
5912 #ifdef BSS_SECTION_ASM_OP
5913 bss_section = get_unnamed_section (SECTION_WRITE | SECTION_BSS,
5914 output_section_asm_op,
5915 BSS_SECTION_ASM_OP);
5916 #endif
5918 #ifdef SBSS_SECTION_ASM_OP
5919 sbss_section = get_unnamed_section (SECTION_WRITE | SECTION_BSS,
5920 output_section_asm_op,
5921 SBSS_SECTION_ASM_OP);
5922 #endif
5924 tls_comm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
5925 | SECTION_COMMON, emit_tls_common);
5926 lcomm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
5927 | SECTION_COMMON, emit_local);
5928 comm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
5929 | SECTION_COMMON, emit_common);
5931 #if defined ASM_OUTPUT_ALIGNED_BSS
5932 bss_noswitch_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS,
5933 emit_bss);
5934 #endif
5936 targetm.asm_out.init_sections ();
5938 if (readonly_data_section == NULL)
5939 readonly_data_section = text_section;
5941 #ifdef ASM_OUTPUT_EXTERNAL
5942 pending_assemble_externals_set = pointer_set_create ();
5943 #endif
5946 enum tls_model
5947 decl_default_tls_model (const_tree decl)
5949 enum tls_model kind;
5950 bool is_local;
5952 is_local = targetm.binds_local_p (decl);
5953 if (!flag_shlib)
5955 if (is_local)
5956 kind = TLS_MODEL_LOCAL_EXEC;
5957 else
5958 kind = TLS_MODEL_INITIAL_EXEC;
5961 /* Local dynamic is inefficient when we're not combining the
5962 parts of the address. */
5963 else if (optimize && is_local)
5964 kind = TLS_MODEL_LOCAL_DYNAMIC;
5965 else
5966 kind = TLS_MODEL_GLOBAL_DYNAMIC;
5967 if (kind < flag_tls_default)
5968 kind = flag_tls_default;
5970 return kind;
5973 /* Select a set of attributes for section NAME based on the properties
5974 of DECL and whether or not RELOC indicates that DECL's initializer
5975 might contain runtime relocations.
5977 We make the section read-only and executable for a function decl,
5978 read-only for a const data decl, and writable for a non-const data decl. */
5980 unsigned int
5981 default_section_type_flags (tree decl, const char *name, int reloc)
5983 unsigned int flags;
5985 if (decl && TREE_CODE (decl) == FUNCTION_DECL)
5986 flags = SECTION_CODE;
5987 else if (decl)
5989 enum section_category category
5990 = categorize_decl_for_section (decl, reloc);
5991 if (decl_readonly_section_1 (category))
5992 flags = 0;
5993 else if (category == SECCAT_DATA_REL_RO
5994 || category == SECCAT_DATA_REL_RO_LOCAL)
5995 flags = SECTION_WRITE | SECTION_RELRO;
5996 else
5997 flags = SECTION_WRITE;
5999 else
6001 flags = SECTION_WRITE;
6002 if (strcmp (name, ".data.rel.ro") == 0
6003 || strcmp (name, ".data.rel.ro.local") == 0)
6004 flags |= SECTION_RELRO;
6007 if (decl && DECL_ONE_ONLY (decl))
6008 flags |= SECTION_LINKONCE;
6010 if (decl && TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl))
6011 flags |= SECTION_TLS | SECTION_WRITE;
6013 if (strcmp (name, ".bss") == 0
6014 || strncmp (name, ".bss.", 5) == 0
6015 || strncmp (name, ".gnu.linkonce.b.", 16) == 0
6016 || strcmp (name, ".sbss") == 0
6017 || strncmp (name, ".sbss.", 6) == 0
6018 || strncmp (name, ".gnu.linkonce.sb.", 17) == 0)
6019 flags |= SECTION_BSS;
6021 if (strcmp (name, ".tdata") == 0
6022 || strncmp (name, ".tdata.", 7) == 0
6023 || strncmp (name, ".gnu.linkonce.td.", 17) == 0)
6024 flags |= SECTION_TLS;
6026 if (strcmp (name, ".tbss") == 0
6027 || strncmp (name, ".tbss.", 6) == 0
6028 || strncmp (name, ".gnu.linkonce.tb.", 17) == 0)
6029 flags |= SECTION_TLS | SECTION_BSS;
6031 /* These three sections have special ELF types. They are neither
6032 SHT_PROGBITS nor SHT_NOBITS, so when changing sections we don't
6033 want to print a section type (@progbits or @nobits). If someone
6034 is silly enough to emit code or TLS variables to one of these
6035 sections, then don't handle them specially. */
6036 if (!(flags & (SECTION_CODE | SECTION_BSS | SECTION_TLS))
6037 && (strcmp (name, ".init_array") == 0
6038 || strcmp (name, ".fini_array") == 0
6039 || strcmp (name, ".preinit_array") == 0))
6040 flags |= SECTION_NOTYPE;
6042 return flags;
6045 /* Return true if the target supports some form of global BSS,
6046 either through bss_noswitch_section, or by selecting a BSS
6047 section in TARGET_ASM_SELECT_SECTION. */
6049 bool
6050 have_global_bss_p (void)
6052 return bss_noswitch_section || targetm.have_switchable_bss_sections;
6055 /* Output assembly to switch to section NAME with attribute FLAGS.
6056 Four variants for common object file formats. */
6058 void
6059 default_no_named_section (const char *name ATTRIBUTE_UNUSED,
6060 unsigned int flags ATTRIBUTE_UNUSED,
6061 tree decl ATTRIBUTE_UNUSED)
6063 /* Some object formats don't support named sections at all. The
6064 front-end should already have flagged this as an error. */
6065 gcc_unreachable ();
6068 #ifndef TLS_SECTION_ASM_FLAG
6069 #define TLS_SECTION_ASM_FLAG 'T'
6070 #endif
6072 void
6073 default_elf_asm_named_section (const char *name, unsigned int flags,
6074 tree decl ATTRIBUTE_UNUSED)
6076 char flagchars[10], *f = flagchars;
6078 /* If we have already declared this section, we can use an
6079 abbreviated form to switch back to it -- unless this section is
6080 part of a COMDAT groups, in which case GAS requires the full
6081 declaration every time. */
6082 if (!(HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
6083 && (flags & SECTION_DECLARED))
6085 fprintf (asm_out_file, "\t.section\t%s\n", name);
6086 return;
6089 if (!(flags & SECTION_DEBUG))
6090 *f++ = 'a';
6091 if (flags & SECTION_EXCLUDE)
6092 *f++ = 'e';
6093 if (flags & SECTION_WRITE)
6094 *f++ = 'w';
6095 if (flags & SECTION_CODE)
6096 *f++ = 'x';
6097 if (flags & SECTION_SMALL)
6098 *f++ = 's';
6099 if (flags & SECTION_MERGE)
6100 *f++ = 'M';
6101 if (flags & SECTION_STRINGS)
6102 *f++ = 'S';
6103 if (flags & SECTION_TLS)
6104 *f++ = TLS_SECTION_ASM_FLAG;
6105 if (HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
6106 *f++ = 'G';
6107 *f = '\0';
6109 fprintf (asm_out_file, "\t.section\t%s,\"%s\"", name, flagchars);
6111 if (!(flags & SECTION_NOTYPE))
6113 const char *type;
6114 const char *format;
6116 if (flags & SECTION_BSS)
6117 type = "nobits";
6118 else
6119 type = "progbits";
6121 format = ",@%s";
6122 /* On platforms that use "@" as the assembly comment character,
6123 use "%" instead. */
6124 if (strcmp (ASM_COMMENT_START, "@") == 0)
6125 format = ",%%%s";
6126 fprintf (asm_out_file, format, type);
6128 if (flags & SECTION_ENTSIZE)
6129 fprintf (asm_out_file, ",%d", flags & SECTION_ENTSIZE);
6130 if (HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
6132 if (TREE_CODE (decl) == IDENTIFIER_NODE)
6133 fprintf (asm_out_file, ",%s,comdat", IDENTIFIER_POINTER (decl));
6134 else
6135 fprintf (asm_out_file, ",%s,comdat",
6136 IDENTIFIER_POINTER (DECL_COMDAT_GROUP (decl)));
6140 putc ('\n', asm_out_file);
6143 void
6144 default_coff_asm_named_section (const char *name, unsigned int flags,
6145 tree decl ATTRIBUTE_UNUSED)
6147 char flagchars[8], *f = flagchars;
6149 if (flags & SECTION_WRITE)
6150 *f++ = 'w';
6151 if (flags & SECTION_CODE)
6152 *f++ = 'x';
6153 *f = '\0';
6155 fprintf (asm_out_file, "\t.section\t%s,\"%s\"\n", name, flagchars);
6158 void
6159 default_pe_asm_named_section (const char *name, unsigned int flags,
6160 tree decl)
6162 default_coff_asm_named_section (name, flags, decl);
6164 if (flags & SECTION_LINKONCE)
6166 /* Functions may have been compiled at various levels of
6167 optimization so we can't use `same_size' here.
6168 Instead, have the linker pick one. */
6169 fprintf (asm_out_file, "\t.linkonce %s\n",
6170 (flags & SECTION_CODE ? "discard" : "same_size"));
6174 /* The lame default section selector. */
6176 section *
6177 default_select_section (tree decl, int reloc,
6178 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
6180 if (DECL_P (decl))
6182 if (decl_readonly_section (decl, reloc))
6183 return readonly_data_section;
6185 else if (TREE_CODE (decl) == CONSTRUCTOR)
6187 if (! ((flag_pic && reloc)
6188 || !TREE_READONLY (decl)
6189 || TREE_SIDE_EFFECTS (decl)
6190 || !TREE_CONSTANT (decl)))
6191 return readonly_data_section;
6193 else if (TREE_CODE (decl) == STRING_CST)
6194 return readonly_data_section;
6195 else if (! (flag_pic && reloc))
6196 return readonly_data_section;
6198 return data_section;
6201 enum section_category
6202 categorize_decl_for_section (const_tree decl, int reloc)
6204 enum section_category ret;
6206 if (TREE_CODE (decl) == FUNCTION_DECL)
6207 return SECCAT_TEXT;
6208 else if (TREE_CODE (decl) == STRING_CST)
6210 if (flag_mudflap
6211 || (flag_asan && asan_protect_global (CONST_CAST_TREE (decl))))
6212 /* or !flag_merge_constants */
6213 return SECCAT_RODATA;
6214 else
6215 return SECCAT_RODATA_MERGE_STR;
6217 else if (TREE_CODE (decl) == VAR_DECL)
6219 if (bss_initializer_p (decl))
6220 ret = SECCAT_BSS;
6221 else if (! TREE_READONLY (decl)
6222 || TREE_SIDE_EFFECTS (decl)
6223 || ! TREE_CONSTANT (DECL_INITIAL (decl)))
6225 /* Here the reloc_rw_mask is not testing whether the section should
6226 be read-only or not, but whether the dynamic link will have to
6227 do something. If so, we wish to segregate the data in order to
6228 minimize cache misses inside the dynamic linker. */
6229 if (reloc & targetm.asm_out.reloc_rw_mask ())
6230 ret = reloc == 1 ? SECCAT_DATA_REL_LOCAL : SECCAT_DATA_REL;
6231 else
6232 ret = SECCAT_DATA;
6234 else if (reloc & targetm.asm_out.reloc_rw_mask ())
6235 ret = reloc == 1 ? SECCAT_DATA_REL_RO_LOCAL : SECCAT_DATA_REL_RO;
6236 else if (reloc || flag_merge_constants < 2 || flag_mudflap
6237 || (flag_asan && asan_protect_global (CONST_CAST_TREE (decl))))
6238 /* C and C++ don't allow different variables to share the same
6239 location. -fmerge-all-constants allows even that (at the
6240 expense of not conforming). */
6241 ret = SECCAT_RODATA;
6242 else if (TREE_CODE (DECL_INITIAL (decl)) == STRING_CST)
6243 ret = SECCAT_RODATA_MERGE_STR_INIT;
6244 else
6245 ret = SECCAT_RODATA_MERGE_CONST;
6247 else if (TREE_CODE (decl) == CONSTRUCTOR)
6249 if ((reloc & targetm.asm_out.reloc_rw_mask ())
6250 || TREE_SIDE_EFFECTS (decl)
6251 || ! TREE_CONSTANT (decl))
6252 ret = SECCAT_DATA;
6253 else
6254 ret = SECCAT_RODATA;
6256 else
6257 ret = SECCAT_RODATA;
6259 /* There are no read-only thread-local sections. */
6260 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl))
6262 /* Note that this would be *just* SECCAT_BSS, except that there's
6263 no concept of a read-only thread-local-data section. */
6264 if (ret == SECCAT_BSS
6265 || (flag_zero_initialized_in_bss
6266 && initializer_zerop (DECL_INITIAL (decl))))
6267 ret = SECCAT_TBSS;
6268 else
6269 ret = SECCAT_TDATA;
6272 /* If the target uses small data sections, select it. */
6273 else if (targetm.in_small_data_p (decl))
6275 if (ret == SECCAT_BSS)
6276 ret = SECCAT_SBSS;
6277 else if (targetm.have_srodata_section && ret == SECCAT_RODATA)
6278 ret = SECCAT_SRODATA;
6279 else
6280 ret = SECCAT_SDATA;
6283 return ret;
6286 static bool
6287 decl_readonly_section_1 (enum section_category category)
6289 switch (category)
6291 case SECCAT_RODATA:
6292 case SECCAT_RODATA_MERGE_STR:
6293 case SECCAT_RODATA_MERGE_STR_INIT:
6294 case SECCAT_RODATA_MERGE_CONST:
6295 case SECCAT_SRODATA:
6296 return true;
6297 default:
6298 return false;
6302 bool
6303 decl_readonly_section (const_tree decl, int reloc)
6305 return decl_readonly_section_1 (categorize_decl_for_section (decl, reloc));
6308 /* Select a section based on the above categorization. */
6310 section *
6311 default_elf_select_section (tree decl, int reloc,
6312 unsigned HOST_WIDE_INT align)
6314 const char *sname;
6315 switch (categorize_decl_for_section (decl, reloc))
6317 case SECCAT_TEXT:
6318 /* We're not supposed to be called on FUNCTION_DECLs. */
6319 gcc_unreachable ();
6320 case SECCAT_RODATA:
6321 return readonly_data_section;
6322 case SECCAT_RODATA_MERGE_STR:
6323 return mergeable_string_section (decl, align, 0);
6324 case SECCAT_RODATA_MERGE_STR_INIT:
6325 return mergeable_string_section (DECL_INITIAL (decl), align, 0);
6326 case SECCAT_RODATA_MERGE_CONST:
6327 return mergeable_constant_section (DECL_MODE (decl), align, 0);
6328 case SECCAT_SRODATA:
6329 sname = ".sdata2";
6330 break;
6331 case SECCAT_DATA:
6332 return data_section;
6333 case SECCAT_DATA_REL:
6334 sname = ".data.rel";
6335 break;
6336 case SECCAT_DATA_REL_LOCAL:
6337 sname = ".data.rel.local";
6338 break;
6339 case SECCAT_DATA_REL_RO:
6340 sname = ".data.rel.ro";
6341 break;
6342 case SECCAT_DATA_REL_RO_LOCAL:
6343 sname = ".data.rel.ro.local";
6344 break;
6345 case SECCAT_SDATA:
6346 sname = ".sdata";
6347 break;
6348 case SECCAT_TDATA:
6349 sname = ".tdata";
6350 break;
6351 case SECCAT_BSS:
6352 if (bss_section)
6353 return bss_section;
6354 sname = ".bss";
6355 break;
6356 case SECCAT_SBSS:
6357 sname = ".sbss";
6358 break;
6359 case SECCAT_TBSS:
6360 sname = ".tbss";
6361 break;
6362 default:
6363 gcc_unreachable ();
6366 if (!DECL_P (decl))
6367 decl = NULL_TREE;
6368 return get_named_section (decl, sname, reloc);
6371 /* Construct a unique section name based on the decl name and the
6372 categorization performed above. */
6374 void
6375 default_unique_section (tree decl, int reloc)
6377 /* We only need to use .gnu.linkonce if we don't have COMDAT groups. */
6378 bool one_only = DECL_ONE_ONLY (decl) && !HAVE_COMDAT_GROUP;
6379 const char *prefix, *name, *linkonce;
6380 char *string;
6382 switch (categorize_decl_for_section (decl, reloc))
6384 case SECCAT_TEXT:
6385 prefix = one_only ? ".t" : ".text";
6386 break;
6387 case SECCAT_RODATA:
6388 case SECCAT_RODATA_MERGE_STR:
6389 case SECCAT_RODATA_MERGE_STR_INIT:
6390 case SECCAT_RODATA_MERGE_CONST:
6391 prefix = one_only ? ".r" : ".rodata";
6392 break;
6393 case SECCAT_SRODATA:
6394 prefix = one_only ? ".s2" : ".sdata2";
6395 break;
6396 case SECCAT_DATA:
6397 prefix = one_only ? ".d" : ".data";
6398 break;
6399 case SECCAT_DATA_REL:
6400 prefix = one_only ? ".d.rel" : ".data.rel";
6401 break;
6402 case SECCAT_DATA_REL_LOCAL:
6403 prefix = one_only ? ".d.rel.local" : ".data.rel.local";
6404 break;
6405 case SECCAT_DATA_REL_RO:
6406 prefix = one_only ? ".d.rel.ro" : ".data.rel.ro";
6407 break;
6408 case SECCAT_DATA_REL_RO_LOCAL:
6409 prefix = one_only ? ".d.rel.ro.local" : ".data.rel.ro.local";
6410 break;
6411 case SECCAT_SDATA:
6412 prefix = one_only ? ".s" : ".sdata";
6413 break;
6414 case SECCAT_BSS:
6415 prefix = one_only ? ".b" : ".bss";
6416 break;
6417 case SECCAT_SBSS:
6418 prefix = one_only ? ".sb" : ".sbss";
6419 break;
6420 case SECCAT_TDATA:
6421 prefix = one_only ? ".td" : ".tdata";
6422 break;
6423 case SECCAT_TBSS:
6424 prefix = one_only ? ".tb" : ".tbss";
6425 break;
6426 default:
6427 gcc_unreachable ();
6430 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
6431 name = targetm.strip_name_encoding (name);
6433 /* If we're using one_only, then there needs to be a .gnu.linkonce
6434 prefix to the section name. */
6435 linkonce = one_only ? ".gnu.linkonce" : "";
6437 string = ACONCAT ((linkonce, prefix, ".", name, NULL));
6439 DECL_SECTION_NAME (decl) = build_string (strlen (string), string);
6442 /* Like compute_reloc_for_constant, except for an RTX. The return value
6443 is a mask for which bit 1 indicates a global relocation, and bit 0
6444 indicates a local relocation. */
6446 static int
6447 compute_reloc_for_rtx_1 (rtx *xp, void *data)
6449 int *preloc = (int *) data;
6450 rtx x = *xp;
6452 switch (GET_CODE (x))
6454 case SYMBOL_REF:
6455 *preloc |= SYMBOL_REF_LOCAL_P (x) ? 1 : 2;
6456 break;
6457 case LABEL_REF:
6458 *preloc |= 1;
6459 break;
6460 default:
6461 break;
6464 return 0;
6467 static int
6468 compute_reloc_for_rtx (rtx x)
6470 int reloc;
6472 switch (GET_CODE (x))
6474 case CONST:
6475 case SYMBOL_REF:
6476 case LABEL_REF:
6477 reloc = 0;
6478 for_each_rtx (&x, compute_reloc_for_rtx_1, &reloc);
6479 return reloc;
6481 default:
6482 return 0;
6486 section *
6487 default_select_rtx_section (enum machine_mode mode ATTRIBUTE_UNUSED,
6488 rtx x,
6489 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
6491 if (compute_reloc_for_rtx (x) & targetm.asm_out.reloc_rw_mask ())
6492 return data_section;
6493 else
6494 return readonly_data_section;
6497 section *
6498 default_elf_select_rtx_section (enum machine_mode mode, rtx x,
6499 unsigned HOST_WIDE_INT align)
6501 int reloc = compute_reloc_for_rtx (x);
6503 /* ??? Handle small data here somehow. */
6505 if (reloc & targetm.asm_out.reloc_rw_mask ())
6507 if (reloc == 1)
6508 return get_named_section (NULL, ".data.rel.ro.local", 1);
6509 else
6510 return get_named_section (NULL, ".data.rel.ro", 3);
6513 return mergeable_constant_section (mode, align, 0);
6516 /* Set the generally applicable flags on the SYMBOL_REF for EXP. */
6518 void
6519 default_encode_section_info (tree decl, rtx rtl, int first ATTRIBUTE_UNUSED)
6521 rtx symbol;
6522 int flags;
6524 /* Careful not to prod global register variables. */
6525 if (!MEM_P (rtl))
6526 return;
6527 symbol = XEXP (rtl, 0);
6528 if (GET_CODE (symbol) != SYMBOL_REF)
6529 return;
6531 flags = SYMBOL_REF_FLAGS (symbol) & SYMBOL_FLAG_HAS_BLOCK_INFO;
6532 if (TREE_CODE (decl) == FUNCTION_DECL)
6533 flags |= SYMBOL_FLAG_FUNCTION;
6534 if (targetm.binds_local_p (decl))
6535 flags |= SYMBOL_FLAG_LOCAL;
6536 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl))
6537 flags |= DECL_TLS_MODEL (decl) << SYMBOL_FLAG_TLS_SHIFT;
6538 else if (targetm.in_small_data_p (decl))
6539 flags |= SYMBOL_FLAG_SMALL;
6540 /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names? Without
6541 being PUBLIC, the thing *must* be defined in this translation unit.
6542 Prevent this buglet from being propagated into rtl code as well. */
6543 if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
6544 flags |= SYMBOL_FLAG_EXTERNAL;
6546 SYMBOL_REF_FLAGS (symbol) = flags;
6549 /* By default, we do nothing for encode_section_info, so we need not
6550 do anything but discard the '*' marker. */
6552 const char *
6553 default_strip_name_encoding (const char *str)
6555 return str + (*str == '*');
6558 #ifdef ASM_OUTPUT_DEF
6559 /* The default implementation of TARGET_ASM_OUTPUT_ANCHOR. Define the
6560 anchor relative to ".", the current section position. */
6562 void
6563 default_asm_output_anchor (rtx symbol)
6565 char buffer[100];
6567 sprintf (buffer, "*. + " HOST_WIDE_INT_PRINT_DEC,
6568 SYMBOL_REF_BLOCK_OFFSET (symbol));
6569 ASM_OUTPUT_DEF (asm_out_file, XSTR (symbol, 0), buffer);
6571 #endif
6573 /* The default implementation of TARGET_USE_ANCHORS_FOR_SYMBOL_P. */
6575 bool
6576 default_use_anchors_for_symbol_p (const_rtx symbol)
6578 section *sect;
6579 tree decl;
6581 /* Don't use anchors for mergeable sections. The linker might move
6582 the objects around. */
6583 sect = SYMBOL_REF_BLOCK (symbol)->sect;
6584 if (sect->common.flags & SECTION_MERGE)
6585 return false;
6587 /* Don't use anchors for small data sections. The small data register
6588 acts as an anchor for such sections. */
6589 if (sect->common.flags & SECTION_SMALL)
6590 return false;
6592 decl = SYMBOL_REF_DECL (symbol);
6593 if (decl && DECL_P (decl))
6595 /* Don't use section anchors for decls that might be defined by
6596 other modules. */
6597 if (!targetm.binds_local_p (decl))
6598 return false;
6600 /* Don't use section anchors for decls that will be placed in a
6601 small data section. */
6602 /* ??? Ideally, this check would be redundant with the SECTION_SMALL
6603 one above. The problem is that we only use SECTION_SMALL for
6604 sections that should be marked as small in the section directive. */
6605 if (targetm.in_small_data_p (decl))
6606 return false;
6608 return true;
6611 /* Return true when RESOLUTION indicate that symbol will be bound to the
6612 definition provided by current .o file. */
6614 static bool
6615 resolution_to_local_definition_p (enum ld_plugin_symbol_resolution resolution)
6617 return (resolution == LDPR_PREVAILING_DEF
6618 || resolution == LDPR_PREVAILING_DEF_IRONLY_EXP
6619 || resolution == LDPR_PREVAILING_DEF_IRONLY);
6622 /* Return true when RESOLUTION indicate that symbol will be bound locally
6623 within current executable or DSO. */
6625 static bool
6626 resolution_local_p (enum ld_plugin_symbol_resolution resolution)
6628 return (resolution == LDPR_PREVAILING_DEF
6629 || resolution == LDPR_PREVAILING_DEF_IRONLY
6630 || resolution == LDPR_PREVAILING_DEF_IRONLY_EXP
6631 || resolution == LDPR_PREEMPTED_REG
6632 || resolution == LDPR_PREEMPTED_IR
6633 || resolution == LDPR_RESOLVED_IR
6634 || resolution == LDPR_RESOLVED_EXEC);
6637 /* Assume ELF-ish defaults, since that's pretty much the most liberal
6638 wrt cross-module name binding. */
6640 bool
6641 default_binds_local_p (const_tree exp)
6643 return default_binds_local_p_1 (exp, flag_shlib);
6646 bool
6647 default_binds_local_p_1 (const_tree exp, int shlib)
6649 bool local_p;
6650 bool resolved_locally = false;
6651 bool resolved_to_local_def = false;
6653 /* With resolution file in hands, take look into resolutions.
6654 We can't just return true for resolved_locally symbols,
6655 because dynamic linking might overwrite symbols
6656 in shared libraries. */
6657 if (TREE_CODE (exp) == VAR_DECL && TREE_PUBLIC (exp)
6658 && (TREE_STATIC (exp) || DECL_EXTERNAL (exp)))
6660 struct varpool_node *vnode = varpool_get_node (exp);
6661 if (vnode && resolution_local_p (vnode->symbol.resolution))
6662 resolved_locally = true;
6663 if (vnode
6664 && resolution_to_local_definition_p (vnode->symbol.resolution))
6665 resolved_to_local_def = true;
6667 else if (TREE_CODE (exp) == FUNCTION_DECL && TREE_PUBLIC (exp))
6669 struct cgraph_node *node = cgraph_get_node (exp);
6670 if (node
6671 && resolution_local_p (node->symbol.resolution))
6672 resolved_locally = true;
6673 if (node
6674 && resolution_to_local_definition_p (node->symbol.resolution))
6675 resolved_to_local_def = true;
6678 /* A non-decl is an entry in the constant pool. */
6679 if (!DECL_P (exp))
6680 local_p = true;
6681 /* Weakrefs may not bind locally, even though the weakref itself is always
6682 static and therefore local. Similarly, the resolver for ifunc functions
6683 might resolve to a non-local function.
6684 FIXME: We can resolve the weakref case more curefuly by looking at the
6685 weakref alias. */
6686 else if (lookup_attribute ("weakref", DECL_ATTRIBUTES (exp))
6687 || (TREE_CODE (exp) == FUNCTION_DECL
6688 && lookup_attribute ("ifunc", DECL_ATTRIBUTES (exp))))
6689 local_p = false;
6690 /* Static variables are always local. */
6691 else if (! TREE_PUBLIC (exp))
6692 local_p = true;
6693 /* A variable is local if the user has said explicitly that it will
6694 be. */
6695 else if ((DECL_VISIBILITY_SPECIFIED (exp)
6696 || resolved_to_local_def)
6697 && DECL_VISIBILITY (exp) != VISIBILITY_DEFAULT)
6698 local_p = true;
6699 /* Variables defined outside this object might not be local. */
6700 else if (DECL_EXTERNAL (exp) && !resolved_locally)
6701 local_p = false;
6702 /* If defined in this object and visibility is not default, must be
6703 local. */
6704 else if (DECL_VISIBILITY (exp) != VISIBILITY_DEFAULT)
6705 local_p = true;
6706 /* Default visibility weak data can be overridden by a strong symbol
6707 in another module and so are not local. */
6708 else if (DECL_WEAK (exp)
6709 && !resolved_locally)
6710 local_p = false;
6711 /* If PIC, then assume that any global name can be overridden by
6712 symbols resolved from other modules. */
6713 else if (shlib)
6714 local_p = false;
6715 /* Uninitialized COMMON variable may be unified with symbols
6716 resolved from other modules. */
6717 else if (DECL_COMMON (exp)
6718 && !resolved_locally
6719 && (DECL_INITIAL (exp) == NULL
6720 || DECL_INITIAL (exp) == error_mark_node))
6721 local_p = false;
6722 /* Otherwise we're left with initialized (or non-common) global data
6723 which is of necessity defined locally. */
6724 else
6725 local_p = true;
6727 return local_p;
6730 /* Return true when references to DECL must bind to current definition in
6731 final executable.
6733 The condition is usually equivalent to whether the function binds to the
6734 current module (shared library or executable), that is to binds_local_p.
6735 We use this fact to avoid need for another target hook and implement
6736 the logic using binds_local_p and just special cases where
6737 decl_binds_to_current_def_p is stronger than binds_local_p. In particular
6738 the weak definitions (that can be overwritten at linktime by other
6739 definition from different object file) and when resolution info is available
6740 we simply use the knowledge passed to us by linker plugin. */
6741 bool
6742 decl_binds_to_current_def_p (tree decl)
6744 gcc_assert (DECL_P (decl));
6745 if (!TREE_PUBLIC (decl))
6746 return true;
6747 if (!targetm.binds_local_p (decl))
6748 return false;
6749 /* When resolution is available, just use it. */
6750 if (TREE_CODE (decl) == VAR_DECL
6751 && (TREE_STATIC (decl) || DECL_EXTERNAL (decl)))
6753 struct varpool_node *vnode = varpool_get_node (decl);
6754 if (vnode
6755 && vnode->symbol.resolution != LDPR_UNKNOWN)
6756 return resolution_to_local_definition_p (vnode->symbol.resolution);
6758 else if (TREE_CODE (decl) == FUNCTION_DECL)
6760 struct cgraph_node *node = cgraph_get_node (decl);
6761 if (node
6762 && node->symbol.resolution != LDPR_UNKNOWN)
6763 return resolution_to_local_definition_p (node->symbol.resolution);
6765 /* Otherwise we have to assume the worst for DECL_WEAK (hidden weaks
6766 binds locally but still can be overwritten).
6767 This rely on fact that binds_local_p behave as decl_replaceable_p
6768 for all other declaration types. */
6769 return !DECL_WEAK (decl);
6772 /* A replaceable function or variable is one which may be replaced
6773 at link-time with an entirely different definition, provided that the
6774 replacement has the same type. For example, functions declared
6775 with __attribute__((weak)) on most systems are replaceable.
6777 COMDAT functions are not replaceable, since all definitions of the
6778 function must be equivalent. It is important that COMDAT functions
6779 not be treated as replaceable so that use of C++ template
6780 instantiations is not penalized. */
6782 bool
6783 decl_replaceable_p (tree decl)
6785 gcc_assert (DECL_P (decl));
6786 if (!TREE_PUBLIC (decl) || DECL_COMDAT (decl))
6787 return false;
6788 return !decl_binds_to_current_def_p (decl);
6791 /* Default function to output code that will globalize a label. A
6792 target must define GLOBAL_ASM_OP or provide its own function to
6793 globalize a label. */
6794 #ifdef GLOBAL_ASM_OP
6795 void
6796 default_globalize_label (FILE * stream, const char *name)
6798 fputs (GLOBAL_ASM_OP, stream);
6799 assemble_name (stream, name);
6800 putc ('\n', stream);
6802 #endif /* GLOBAL_ASM_OP */
6804 /* Default function to output code that will globalize a declaration. */
6805 void
6806 default_globalize_decl_name (FILE * stream, tree decl)
6808 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
6809 targetm.asm_out.globalize_label (stream, name);
6812 /* Default function to output a label for unwind information. The
6813 default is to do nothing. A target that needs nonlocal labels for
6814 unwind information must provide its own function to do this. */
6815 void
6816 default_emit_unwind_label (FILE * stream ATTRIBUTE_UNUSED,
6817 tree decl ATTRIBUTE_UNUSED,
6818 int for_eh ATTRIBUTE_UNUSED,
6819 int empty ATTRIBUTE_UNUSED)
6823 /* Default function to output a label to divide up the exception table.
6824 The default is to do nothing. A target that needs/wants to divide
6825 up the table must provide it's own function to do this. */
6826 void
6827 default_emit_except_table_label (FILE * stream ATTRIBUTE_UNUSED)
6831 /* This is how to output an internal numbered label where PREFIX is
6832 the class of label and LABELNO is the number within the class. */
6834 void
6835 default_generate_internal_label (char *buf, const char *prefix,
6836 unsigned long labelno)
6838 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, labelno);
6841 /* This is how to output an internal numbered label where PREFIX is
6842 the class of label and LABELNO is the number within the class. */
6844 void
6845 default_internal_label (FILE *stream, const char *prefix,
6846 unsigned long labelno)
6848 char *const buf = (char *) alloca (40 + strlen (prefix));
6849 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, labelno);
6850 ASM_OUTPUT_INTERNAL_LABEL (stream, buf);
6854 /* The default implementation of ASM_DECLARE_CONSTANT_NAME. */
6856 void
6857 default_asm_declare_constant_name (FILE *file, const char *name,
6858 const_tree exp ATTRIBUTE_UNUSED,
6859 HOST_WIDE_INT size ATTRIBUTE_UNUSED)
6861 assemble_label (file, name);
6864 /* This is the default behavior at the beginning of a file. It's
6865 controlled by two other target-hook toggles. */
6866 void
6867 default_file_start (void)
6869 if (targetm.asm_file_start_app_off
6870 && !(flag_verbose_asm || flag_debug_asm || flag_dump_rtl_in_asm))
6871 fputs (ASM_APP_OFF, asm_out_file);
6873 if (targetm.asm_file_start_file_directive)
6874 output_file_directive (asm_out_file, main_input_filename);
6877 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
6878 which emits a special section directive used to indicate whether or
6879 not this object file needs an executable stack. This is primarily
6880 a GNU extension to ELF but could be used on other targets. */
6882 int trampolines_created;
6884 void
6885 file_end_indicate_exec_stack (void)
6887 unsigned int flags = SECTION_DEBUG;
6888 if (trampolines_created)
6889 flags |= SECTION_CODE;
6891 switch_to_section (get_section (".note.GNU-stack", flags, NULL));
6894 /* Emit a special section directive to indicate that this object file
6895 was compiled with -fsplit-stack. This is used to let the linker
6896 detect calls between split-stack code and non-split-stack code, so
6897 that it can modify the split-stack code to allocate a sufficiently
6898 large stack. We emit another special section if there are any
6899 functions in this file which have the no_split_stack attribute, to
6900 prevent the linker from warning about being unable to convert the
6901 functions if they call non-split-stack code. */
6903 void
6904 file_end_indicate_split_stack (void)
6906 if (flag_split_stack)
6908 switch_to_section (get_section (".note.GNU-split-stack", SECTION_DEBUG,
6909 NULL));
6910 if (saw_no_split_stack)
6911 switch_to_section (get_section (".note.GNU-no-split-stack",
6912 SECTION_DEBUG, NULL));
6916 /* Output DIRECTIVE (a C string) followed by a newline. This is used as
6917 a get_unnamed_section callback. */
6919 void
6920 output_section_asm_op (const void *directive)
6922 fprintf (asm_out_file, "%s\n", (const char *) directive);
6925 /* Emit assembly code to switch to section NEW_SECTION. Do nothing if
6926 the current section is NEW_SECTION. */
6928 void
6929 switch_to_section (section *new_section)
6931 if (in_section == new_section)
6932 return;
6934 if (new_section->common.flags & SECTION_FORGET)
6935 in_section = NULL;
6936 else
6937 in_section = new_section;
6939 switch (SECTION_STYLE (new_section))
6941 case SECTION_NAMED:
6942 targetm.asm_out.named_section (new_section->named.name,
6943 new_section->named.common.flags,
6944 new_section->named.decl);
6945 break;
6947 case SECTION_UNNAMED:
6948 new_section->unnamed.callback (new_section->unnamed.data);
6949 break;
6951 case SECTION_NOSWITCH:
6952 gcc_unreachable ();
6953 break;
6956 new_section->common.flags |= SECTION_DECLARED;
6959 /* If block symbol SYMBOL has not yet been assigned an offset, place
6960 it at the end of its block. */
6962 void
6963 place_block_symbol (rtx symbol)
6965 unsigned HOST_WIDE_INT size, mask, offset;
6966 struct constant_descriptor_rtx *desc;
6967 unsigned int alignment;
6968 struct object_block *block;
6969 tree decl;
6971 gcc_assert (SYMBOL_REF_BLOCK (symbol));
6972 if (SYMBOL_REF_BLOCK_OFFSET (symbol) >= 0)
6973 return;
6975 /* Work out the symbol's size and alignment. */
6976 if (CONSTANT_POOL_ADDRESS_P (symbol))
6978 desc = SYMBOL_REF_CONSTANT (symbol);
6979 alignment = desc->align;
6980 size = GET_MODE_SIZE (desc->mode);
6982 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
6984 decl = SYMBOL_REF_DECL (symbol);
6985 alignment = DECL_ALIGN (decl);
6986 size = get_constant_size (DECL_INITIAL (decl));
6987 if (flag_asan
6988 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
6989 && asan_protect_global (DECL_INITIAL (decl)))
6990 size += asan_red_zone_size (size);
6992 else
6994 decl = SYMBOL_REF_DECL (symbol);
6995 alignment = DECL_ALIGN (decl);
6996 size = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
6997 if (flag_asan && asan_protect_global (decl))
6999 size += asan_red_zone_size (size);
7000 alignment = MAX (alignment,
7001 ASAN_RED_ZONE_SIZE * BITS_PER_UNIT);
7005 /* Calculate the object's offset from the start of the block. */
7006 block = SYMBOL_REF_BLOCK (symbol);
7007 mask = alignment / BITS_PER_UNIT - 1;
7008 offset = (block->size + mask) & ~mask;
7009 SYMBOL_REF_BLOCK_OFFSET (symbol) = offset;
7011 /* Record the block's new alignment and size. */
7012 block->alignment = MAX (block->alignment, alignment);
7013 block->size = offset + size;
7015 vec_safe_push (block->objects, symbol);
7018 /* Return the anchor that should be used to address byte offset OFFSET
7019 from the first object in BLOCK. MODEL is the TLS model used
7020 to access it. */
7023 get_section_anchor (struct object_block *block, HOST_WIDE_INT offset,
7024 enum tls_model model)
7026 char label[100];
7027 unsigned int begin, middle, end;
7028 unsigned HOST_WIDE_INT min_offset, max_offset, range, bias, delta;
7029 rtx anchor;
7031 /* Work out the anchor's offset. Use an offset of 0 for the first
7032 anchor so that we don't pessimize the case where we take the address
7033 of a variable at the beginning of the block. This is particularly
7034 useful when a block has only one variable assigned to it.
7036 We try to place anchors RANGE bytes apart, so there can then be
7037 anchors at +/-RANGE, +/-2 * RANGE, and so on, up to the limits of
7038 a ptr_mode offset. With some target settings, the lowest such
7039 anchor might be out of range for the lowest ptr_mode offset;
7040 likewise the highest anchor for the highest offset. Use anchors
7041 at the extreme ends of the ptr_mode range in such cases.
7043 All arithmetic uses unsigned integers in order to avoid
7044 signed overflow. */
7045 max_offset = (unsigned HOST_WIDE_INT) targetm.max_anchor_offset;
7046 min_offset = (unsigned HOST_WIDE_INT) targetm.min_anchor_offset;
7047 range = max_offset - min_offset + 1;
7048 if (range == 0)
7049 offset = 0;
7050 else
7052 bias = 1 << (GET_MODE_BITSIZE (ptr_mode) - 1);
7053 if (offset < 0)
7055 delta = -(unsigned HOST_WIDE_INT) offset + max_offset;
7056 delta -= delta % range;
7057 if (delta > bias)
7058 delta = bias;
7059 offset = (HOST_WIDE_INT) (-delta);
7061 else
7063 delta = (unsigned HOST_WIDE_INT) offset - min_offset;
7064 delta -= delta % range;
7065 if (delta > bias - 1)
7066 delta = bias - 1;
7067 offset = (HOST_WIDE_INT) delta;
7071 /* Do a binary search to see if there's already an anchor we can use.
7072 Set BEGIN to the new anchor's index if not. */
7073 begin = 0;
7074 end = vec_safe_length (block->anchors);
7075 while (begin != end)
7077 middle = (end + begin) / 2;
7078 anchor = (*block->anchors)[middle];
7079 if (SYMBOL_REF_BLOCK_OFFSET (anchor) > offset)
7080 end = middle;
7081 else if (SYMBOL_REF_BLOCK_OFFSET (anchor) < offset)
7082 begin = middle + 1;
7083 else if (SYMBOL_REF_TLS_MODEL (anchor) > model)
7084 end = middle;
7085 else if (SYMBOL_REF_TLS_MODEL (anchor) < model)
7086 begin = middle + 1;
7087 else
7088 return anchor;
7091 /* Create a new anchor with a unique label. */
7092 ASM_GENERATE_INTERNAL_LABEL (label, "LANCHOR", anchor_labelno++);
7093 anchor = create_block_symbol (ggc_strdup (label), block, offset);
7094 SYMBOL_REF_FLAGS (anchor) |= SYMBOL_FLAG_LOCAL | SYMBOL_FLAG_ANCHOR;
7095 SYMBOL_REF_FLAGS (anchor) |= model << SYMBOL_FLAG_TLS_SHIFT;
7097 /* Insert it at index BEGIN. */
7098 vec_safe_insert (block->anchors, begin, anchor);
7099 return anchor;
7102 /* Output the objects in BLOCK. */
7104 static void
7105 output_object_block (struct object_block *block)
7107 struct constant_descriptor_rtx *desc;
7108 unsigned int i;
7109 HOST_WIDE_INT offset;
7110 tree decl;
7111 rtx symbol;
7113 if (!block->objects)
7114 return;
7116 /* Switch to the section and make sure that the first byte is
7117 suitably aligned. */
7118 switch_to_section (block->sect);
7119 assemble_align (block->alignment);
7121 /* Define the values of all anchors relative to the current section
7122 position. */
7123 FOR_EACH_VEC_SAFE_ELT (block->anchors, i, symbol)
7124 targetm.asm_out.output_anchor (symbol);
7126 /* Output the objects themselves. */
7127 offset = 0;
7128 FOR_EACH_VEC_ELT (*block->objects, i, symbol)
7130 /* Move to the object's offset, padding with zeros if necessary. */
7131 assemble_zeros (SYMBOL_REF_BLOCK_OFFSET (symbol) - offset);
7132 offset = SYMBOL_REF_BLOCK_OFFSET (symbol);
7133 if (CONSTANT_POOL_ADDRESS_P (symbol))
7135 desc = SYMBOL_REF_CONSTANT (symbol);
7136 output_constant_pool_1 (desc, 1);
7137 offset += GET_MODE_SIZE (desc->mode);
7139 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
7141 HOST_WIDE_INT size;
7142 decl = SYMBOL_REF_DECL (symbol);
7143 assemble_constant_contents (DECL_INITIAL (decl), XSTR (symbol, 0),
7144 DECL_ALIGN (decl));
7145 size = get_constant_size (DECL_INITIAL (decl));
7146 offset += size;
7147 if (flag_asan
7148 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
7149 && asan_protect_global (DECL_INITIAL (decl)))
7151 size = asan_red_zone_size (size);
7152 assemble_zeros (size);
7153 offset += size;
7156 else
7158 HOST_WIDE_INT size;
7159 decl = SYMBOL_REF_DECL (symbol);
7160 assemble_variable_contents (decl, XSTR (symbol, 0), false);
7161 size = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
7162 offset += size;
7163 if (flag_asan && asan_protect_global (decl))
7165 size = asan_red_zone_size (size);
7166 assemble_zeros (size);
7167 offset += size;
7173 /* A htab_traverse callback used to call output_object_block for
7174 each member of object_block_htab. */
7176 static int
7177 output_object_block_htab (void **slot, void *data ATTRIBUTE_UNUSED)
7179 output_object_block ((struct object_block *) (*slot));
7180 return 1;
7183 /* Output the definitions of all object_blocks. */
7185 void
7186 output_object_blocks (void)
7188 htab_traverse (object_block_htab, output_object_block_htab, NULL);
7191 /* This function provides a possible implementation of the
7192 TARGET_ASM_RECORD_GCC_SWITCHES target hook for ELF targets. When triggered
7193 by -frecord-gcc-switches it creates a new mergeable, string section in the
7194 assembler output file called TARGET_ASM_RECORD_GCC_SWITCHES_SECTION which
7195 contains the switches in ASCII format.
7197 FIXME: This code does not correctly handle double quote characters
7198 that appear inside strings, (it strips them rather than preserving them).
7199 FIXME: ASM_OUTPUT_ASCII, as defined in config/elfos.h will not emit NUL
7200 characters - instead it treats them as sub-string separators. Since
7201 we want to emit NUL strings terminators into the object file we have to use
7202 ASM_OUTPUT_SKIP. */
7205 elf_record_gcc_switches (print_switch_type type, const char * name)
7207 switch (type)
7209 case SWITCH_TYPE_PASSED:
7210 ASM_OUTPUT_ASCII (asm_out_file, name, strlen (name));
7211 ASM_OUTPUT_SKIP (asm_out_file, (unsigned HOST_WIDE_INT) 1);
7212 break;
7214 case SWITCH_TYPE_DESCRIPTIVE:
7215 if (name == NULL)
7217 /* Distinguish between invocations where name is NULL. */
7218 static bool started = false;
7220 if (!started)
7222 section * sec;
7224 sec = get_section (targetm.asm_out.record_gcc_switches_section,
7225 SECTION_DEBUG
7226 | SECTION_MERGE
7227 | SECTION_STRINGS
7228 | (SECTION_ENTSIZE & 1),
7229 NULL);
7230 switch_to_section (sec);
7231 started = true;
7235 default:
7236 break;
7239 /* The return value is currently ignored by the caller, but must be 0.
7240 For -fverbose-asm the return value would be the number of characters
7241 emitted into the assembler file. */
7242 return 0;
7245 /* Emit text to declare externally defined symbols. It is needed to
7246 properly support non-default visibility. */
7247 void
7248 default_elf_asm_output_external (FILE *file ATTRIBUTE_UNUSED,
7249 tree decl,
7250 const char *name ATTRIBUTE_UNUSED)
7252 /* We output the name if and only if TREE_SYMBOL_REFERENCED is
7253 set in order to avoid putting out names that are never really
7254 used. */
7255 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))
7256 && targetm.binds_local_p (decl))
7257 maybe_assemble_visibility (decl);
7260 /* The default hook for TARGET_ASM_OUTPUT_SOURCE_FILENAME. */
7262 void
7263 default_asm_output_source_filename (FILE *file, const char *name)
7265 #ifdef ASM_OUTPUT_SOURCE_FILENAME
7266 ASM_OUTPUT_SOURCE_FILENAME (file, name);
7267 #else
7268 fprintf (file, "\t.file\t");
7269 output_quoted_string (file, name);
7270 putc ('\n', file);
7271 #endif
7274 /* Output a file name in the form wanted by System V. */
7276 void
7277 output_file_directive (FILE *asm_file, const char *input_name)
7279 int len;
7280 const char *na;
7282 if (input_name == NULL)
7283 input_name = "<stdin>";
7284 else
7285 input_name = remap_debug_filename (input_name);
7287 len = strlen (input_name);
7288 na = input_name + len;
7290 /* NA gets INPUT_NAME sans directory names. */
7291 while (na > input_name)
7293 if (IS_DIR_SEPARATOR (na[-1]))
7294 break;
7295 na--;
7298 targetm.asm_out.output_source_filename (asm_file, na);
7301 /* Create a DEBUG_EXPR_DECL / DEBUG_EXPR pair from RTL expression
7302 EXP. */
7304 make_debug_expr_from_rtl (const_rtx exp)
7306 tree ddecl = make_node (DEBUG_EXPR_DECL), type;
7307 enum machine_mode mode = GET_MODE (exp);
7308 rtx dval;
7310 DECL_ARTIFICIAL (ddecl) = 1;
7311 if (REG_P (exp) && REG_EXPR (exp))
7312 type = TREE_TYPE (REG_EXPR (exp));
7313 else if (MEM_P (exp) && MEM_EXPR (exp))
7314 type = TREE_TYPE (MEM_EXPR (exp));
7315 else
7316 type = NULL_TREE;
7317 if (type && TYPE_MODE (type) == mode)
7318 TREE_TYPE (ddecl) = type;
7319 else
7320 TREE_TYPE (ddecl) = lang_hooks.types.type_for_mode (mode, 1);
7321 DECL_MODE (ddecl) = mode;
7322 dval = gen_rtx_DEBUG_EXPR (mode);
7323 DEBUG_EXPR_TREE_DECL (dval) = ddecl;
7324 SET_DECL_RTL (ddecl, dval);
7325 return dval;
7328 #ifdef ELF_ASCII_ESCAPES
7329 /* Default ASM_OUTPUT_LIMITED_STRING for ELF targets. */
7331 void
7332 default_elf_asm_output_limited_string (FILE *f, const char *s)
7334 int escape;
7335 unsigned char c;
7337 fputs (STRING_ASM_OP, f);
7338 putc ('"', f);
7339 while (*s != '\0')
7341 c = *s;
7342 escape = ELF_ASCII_ESCAPES[c];
7343 switch (escape)
7345 case 0:
7346 putc (c, f);
7347 break;
7348 case 1:
7349 /* TODO: Print in hex with fast function, important for -flto. */
7350 fprintf (f, "\\%03o", c);
7351 break;
7352 default:
7353 putc ('\\', f);
7354 putc (escape, f);
7355 break;
7357 s++;
7359 putc ('\"', f);
7360 putc ('\n', f);
7363 /* Default ASM_OUTPUT_ASCII for ELF targets. */
7365 void
7366 default_elf_asm_output_ascii (FILE *f, const char *s, unsigned int len)
7368 const char *limit = s + len;
7369 const char *last_null = NULL;
7370 unsigned bytes_in_chunk = 0;
7371 unsigned char c;
7372 int escape;
7374 for (; s < limit; s++)
7376 const char *p;
7378 if (bytes_in_chunk >= 60)
7380 putc ('\"', f);
7381 putc ('\n', f);
7382 bytes_in_chunk = 0;
7385 if (s > last_null)
7387 for (p = s; p < limit && *p != '\0'; p++)
7388 continue;
7389 last_null = p;
7391 else
7392 p = last_null;
7394 if (p < limit && (p - s) <= (long) ELF_STRING_LIMIT)
7396 if (bytes_in_chunk > 0)
7398 putc ('\"', f);
7399 putc ('\n', f);
7400 bytes_in_chunk = 0;
7403 default_elf_asm_output_limited_string (f, s);
7404 s = p;
7406 else
7408 if (bytes_in_chunk == 0)
7409 fputs (ASCII_DATA_ASM_OP "\"", f);
7411 c = *s;
7412 escape = ELF_ASCII_ESCAPES[c];
7413 switch (escape)
7415 case 0:
7416 putc (c, f);
7417 bytes_in_chunk++;
7418 break;
7419 case 1:
7420 /* TODO: Print in hex with fast function, important for -flto. */
7421 fprintf (f, "\\%03o", c);
7422 bytes_in_chunk += 4;
7423 break;
7424 default:
7425 putc ('\\', f);
7426 putc (escape, f);
7427 bytes_in_chunk += 2;
7428 break;
7434 if (bytes_in_chunk > 0)
7436 putc ('\"', f);
7437 putc ('\n', f);
7440 #endif
7442 static GTY(()) section *elf_init_array_section;
7443 static GTY(()) section *elf_fini_array_section;
7445 static section *
7446 get_elf_initfini_array_priority_section (int priority,
7447 bool constructor_p)
7449 section *sec;
7450 if (priority != DEFAULT_INIT_PRIORITY)
7452 char buf[18];
7453 sprintf (buf, "%s.%.5u",
7454 constructor_p ? ".init_array" : ".fini_array",
7455 priority);
7456 sec = get_section (buf, SECTION_WRITE | SECTION_NOTYPE, NULL_TREE);
7458 else
7460 if (constructor_p)
7462 if (elf_init_array_section == NULL)
7463 elf_init_array_section
7464 = get_section (".init_array",
7465 SECTION_WRITE | SECTION_NOTYPE, NULL_TREE);
7466 sec = elf_init_array_section;
7468 else
7470 if (elf_fini_array_section == NULL)
7471 elf_fini_array_section
7472 = get_section (".fini_array",
7473 SECTION_WRITE | SECTION_NOTYPE, NULL_TREE);
7474 sec = elf_fini_array_section;
7477 return sec;
7480 /* Use .init_array section for constructors. */
7482 void
7483 default_elf_init_array_asm_out_constructor (rtx symbol, int priority)
7485 section *sec = get_elf_initfini_array_priority_section (priority,
7486 true);
7487 assemble_addr_to_section (symbol, sec);
7490 /* Use .fini_array section for destructors. */
7492 void
7493 default_elf_fini_array_asm_out_destructor (rtx symbol, int priority)
7495 section *sec = get_elf_initfini_array_priority_section (priority,
7496 false);
7497 assemble_addr_to_section (symbol, sec);
7500 /* Default TARGET_ASM_OUTPUT_IDENT hook.
7502 This is a bit of a cheat. The real default is a no-op, but this
7503 hook is the default for all targets with a .ident directive. */
7505 void
7506 default_asm_output_ident_directive (const char *ident_str)
7508 const char *ident_asm_op = "\t.ident\t";
7510 /* If we are still in the front end, do not write out the string
7511 to asm_out_file. Instead, add a fake top-level asm statement.
7512 This allows the front ends to use this hook without actually
7513 writing to asm_out_file, to handle #ident or Pragma Ident. */
7514 if (cgraph_state == CGRAPH_STATE_PARSING)
7516 char *buf = ACONCAT ((ident_asm_op, "\"", ident_str, "\"\n", NULL));
7517 add_asm_node (build_string (strlen (buf), buf));
7519 else
7520 fprintf (asm_out_file, "%s\"%s\"\n", ident_asm_op, ident_str);
7523 #include "gt-varasm.h"