1 /* Output variables, constants and external declarations, for GNU compiler.
2 Copyright (C) 1987-2015 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
21 /* This file handles generation of all the assembler code
22 *except* the instructions of a function.
23 This includes declarations of variables and their initial values.
25 We also output the assembler code for constants stored in memory
26 and are responsible for combining constants with the same value. */
30 #include "coretypes.h"
35 #include "fold-const.h"
36 #include "stor-layout.h"
37 #include "stringpool.h"
40 #include "insn-config.h"
50 #include "diagnostic-core.h"
51 #include "langhooks.h"
55 #include "common/common-target.h"
56 #include "targhooks.h"
60 #include "tree-chkp.h"
62 #ifdef XCOFF_DEBUGGING_INFO
63 #include "xcoffout.h" /* Needed for external data
64 declarations for e.g. AIX 4.x. */
67 /* The (assembler) name of the first globally-visible object output. */
68 extern GTY(()) const char *first_global_object_name
;
69 extern GTY(()) const char *weak_global_object_name
;
71 const char *first_global_object_name
;
72 const char *weak_global_object_name
;
75 struct constant_descriptor_rtx
;
76 struct rtx_constant_pool
;
78 #define n_deferred_constants (crtl->varasm.deferred_constants)
80 /* Number for making the label on the next
81 constant that is stored in memory. */
83 static GTY(()) int const_labelno
;
85 /* Carry information from ASM_DECLARE_OBJECT_NAME
86 to ASM_FINISH_DECLARE_OBJECT. */
88 int size_directive_output
;
90 /* The last decl for which assemble_variable was called,
91 if it did ASM_DECLARE_OBJECT_NAME.
92 If the last call to assemble_variable didn't do that,
95 tree last_assemble_variable_decl
;
97 /* The following global variable indicates if the first basic block
98 in a function belongs to the cold partition or not. */
100 bool first_function_block_is_cold
;
102 /* Whether we saw any functions with no_split_stack. */
104 static bool saw_no_split_stack
;
106 static const char *strip_reg_name (const char *);
107 static int contains_pointers_p (tree
);
108 #ifdef ASM_OUTPUT_EXTERNAL
109 static bool incorporeal_function_p (tree
);
111 static void decode_addr_const (tree
, struct addr_const
*);
112 static hashval_t
const_hash_1 (const tree
);
113 static int compare_constant (const tree
, const tree
);
114 static void output_constant_def_contents (rtx
);
115 static void output_addressed_constants (tree
);
116 static unsigned HOST_WIDE_INT
output_constant (tree
, unsigned HOST_WIDE_INT
,
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)
126 #endif /* BSS_SECTION_ASM_OP */
127 static void mark_weak (tree
);
128 static void output_constant_pool (const char *, tree
);
130 /* Well-known sections, each one associated with some sort of *_ASM_OP. */
131 section
*text_section
;
132 section
*data_section
;
133 section
*readonly_data_section
;
134 section
*sdata_section
;
135 section
*ctors_section
;
136 section
*dtors_section
;
137 section
*bss_section
;
138 section
*sbss_section
;
140 /* Various forms of common section. All are guaranteed to be nonnull. */
141 section
*tls_comm_section
;
142 section
*comm_section
;
143 section
*lcomm_section
;
145 /* A SECTION_NOSWITCH section used for declaring global BSS variables.
147 section
*bss_noswitch_section
;
149 /* The section that holds the main exception table, when known. The section
150 is set either by the target's init_sections hook or by the first call to
151 switch_to_exception_section. */
152 section
*exception_section
;
154 /* The section that holds the DWARF2 frame unwind information, when known.
155 The section is set either by the target's init_sections hook or by the
156 first call to switch_to_eh_frame_section. */
157 section
*eh_frame_section
;
159 /* asm_out_file's current section. This is NULL if no section has yet
160 been selected or if we lose track of what the current section is. */
163 /* True if code for the current function is currently being directed
164 at the cold section. */
165 bool in_cold_section_p
;
167 /* The following global holds the "function name" for the code in the
168 cold section of a function, if hot/cold function splitting is enabled
169 and there was actually code that went into the cold section. A
170 pseudo function name is needed for the cold section of code for some
171 debugging tools that perform symbolization. */
172 tree cold_function_name
= NULL_TREE
;
174 /* A linked list of all the unnamed sections. */
175 static GTY(()) section
*unnamed_sections
;
177 /* Return a nonzero value if DECL has a section attribute. */
178 #define IN_NAMED_SECTION(DECL) \
179 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
180 && DECL_SECTION_NAME (DECL) != NULL)
182 struct section_hasher
: ggc_ptr_hash
<section
>
184 typedef const char *compare_type
;
186 static hashval_t
hash (section
*);
187 static bool equal (section
*, const char *);
190 /* Hash table of named sections. */
191 static GTY(()) hash_table
<section_hasher
> *section_htab
;
193 struct object_block_hasher
: ggc_ptr_hash
<object_block
>
195 typedef const section
*compare_type
;
197 static hashval_t
hash (object_block
*);
198 static bool equal (object_block
*, const section
*);
201 /* A table of object_blocks, indexed by section. */
202 static GTY(()) hash_table
<object_block_hasher
> *object_block_htab
;
204 /* The next number to use for internal anchor labels. */
205 static GTY(()) int anchor_labelno
;
207 /* A pool of constants that can be shared between functions. */
208 static GTY(()) struct rtx_constant_pool
*shared_constant_pool
;
210 /* Helper routines for maintaining section_htab. */
213 section_hasher::equal (section
*old
, const char *new_name
)
215 return strcmp (old
->named
.name
, new_name
) == 0;
219 section_hasher::hash (section
*old
)
221 return htab_hash_string (old
->named
.name
);
224 /* Return a hash value for section SECT. */
227 hash_section (section
*sect
)
229 if (sect
->common
.flags
& SECTION_NAMED
)
230 return htab_hash_string (sect
->named
.name
);
231 return sect
->common
.flags
;
234 /* Helper routines for maintaining object_block_htab. */
237 object_block_hasher::equal (object_block
*old
, const section
*new_section
)
239 return old
->sect
== new_section
;
243 object_block_hasher::hash (object_block
*old
)
245 return hash_section (old
->sect
);
248 /* Return a new unnamed section with the given fields. */
251 get_unnamed_section (unsigned int flags
, void (*callback
) (const void *),
256 sect
= ggc_alloc
<section
> ();
257 sect
->unnamed
.common
.flags
= flags
| SECTION_UNNAMED
;
258 sect
->unnamed
.callback
= callback
;
259 sect
->unnamed
.data
= data
;
260 sect
->unnamed
.next
= unnamed_sections
;
262 unnamed_sections
= sect
;
266 /* Return a SECTION_NOSWITCH section with the given fields. */
269 get_noswitch_section (unsigned int flags
, noswitch_section_callback callback
)
273 sect
= ggc_alloc
<section
> ();
274 sect
->noswitch
.common
.flags
= flags
| SECTION_NOSWITCH
;
275 sect
->noswitch
.callback
= callback
;
280 /* Return the named section structure associated with NAME. Create
281 a new section with the given fields if no such structure exists. */
284 get_section (const char *name
, unsigned int flags
, tree decl
)
286 section
*sect
, **slot
;
288 slot
= section_htab
->find_slot_with_hash (name
, htab_hash_string (name
),
290 flags
|= SECTION_NAMED
;
293 sect
= ggc_alloc
<section
> ();
294 sect
->named
.common
.flags
= flags
;
295 sect
->named
.name
= ggc_strdup (name
);
296 sect
->named
.decl
= decl
;
302 if ((sect
->common
.flags
& ~SECTION_DECLARED
) != flags
303 && ((sect
->common
.flags
| flags
) & SECTION_OVERRIDE
) == 0)
305 /* It is fine if one of the section flags is
306 SECTION_WRITE | SECTION_RELRO and the other has none of these
307 flags (i.e. read-only) in named sections and either the
308 section hasn't been declared yet or has been declared as writable.
309 In that case just make sure the resulting flags are
310 SECTION_WRITE | SECTION_RELRO, ie. writable only because of
312 if (((sect
->common
.flags
^ flags
) & (SECTION_WRITE
| SECTION_RELRO
))
313 == (SECTION_WRITE
| SECTION_RELRO
)
314 && (sect
->common
.flags
315 & ~(SECTION_DECLARED
| SECTION_WRITE
| SECTION_RELRO
))
316 == (flags
& ~(SECTION_WRITE
| SECTION_RELRO
))
317 && ((sect
->common
.flags
& SECTION_DECLARED
) == 0
318 || (sect
->common
.flags
& SECTION_WRITE
)))
320 sect
->common
.flags
|= (SECTION_WRITE
| SECTION_RELRO
);
323 /* Sanity check user variables for flag changes. */
324 if (sect
->named
.decl
!= NULL
325 && DECL_P (sect
->named
.decl
)
326 && decl
!= sect
->named
.decl
)
328 if (decl
!= NULL
&& DECL_P (decl
))
329 error ("%+D causes a section type conflict with %D",
330 decl
, sect
->named
.decl
);
332 error ("section type conflict with %D", sect
->named
.decl
);
333 inform (DECL_SOURCE_LOCATION (sect
->named
.decl
),
334 "%qD was declared here", sect
->named
.decl
);
336 else if (decl
!= NULL
&& DECL_P (decl
))
337 error ("%+D causes a section type conflict", decl
);
339 error ("section type conflict");
340 /* Make sure we don't error about one section multiple times. */
341 sect
->common
.flags
|= SECTION_OVERRIDE
;
347 /* Return true if the current compilation mode benefits from having
348 objects grouped into blocks. */
351 use_object_blocks_p (void)
353 return flag_section_anchors
;
356 /* Return the object_block structure for section SECT. Create a new
357 structure if we haven't created one already. Return null if SECT
360 static struct object_block
*
361 get_block_for_section (section
*sect
)
363 struct object_block
*block
;
369 = object_block_htab
->find_slot_with_hash (sect
, hash_section (sect
),
374 block
= ggc_cleared_alloc
<object_block
> ();
381 /* Create a symbol with label LABEL and place it at byte offset
382 OFFSET in BLOCK. OFFSET can be negative if the symbol's offset
383 is not yet known. LABEL must be a garbage-collected string. */
386 create_block_symbol (const char *label
, struct object_block
*block
,
387 HOST_WIDE_INT offset
)
392 /* Create the extended SYMBOL_REF. */
393 size
= RTX_HDR_SIZE
+ sizeof (struct block_symbol
);
394 symbol
= (rtx
) ggc_internal_alloc (size
);
396 /* Initialize the normal SYMBOL_REF fields. */
397 memset (symbol
, 0, size
);
398 PUT_CODE (symbol
, SYMBOL_REF
);
399 PUT_MODE (symbol
, Pmode
);
400 XSTR (symbol
, 0) = label
;
401 SYMBOL_REF_FLAGS (symbol
) = SYMBOL_FLAG_HAS_BLOCK_INFO
;
403 /* Initialize the block_symbol stuff. */
404 SYMBOL_REF_BLOCK (symbol
) = block
;
405 SYMBOL_REF_BLOCK_OFFSET (symbol
) = offset
;
410 /* Return a section with a particular name and with whatever SECTION_*
411 flags section_type_flags deems appropriate. The name of the section
412 is taken from NAME if nonnull, otherwise it is taken from DECL's
413 DECL_SECTION_NAME. DECL is the decl associated with the section
414 (see the section comment for details) and RELOC is as for
415 section_type_flags. */
418 get_named_section (tree decl
, const char *name
, int reloc
)
424 gcc_assert (decl
&& DECL_P (decl
) && DECL_SECTION_NAME (decl
));
425 name
= DECL_SECTION_NAME (decl
);
428 flags
= targetm
.section_type_flags (decl
, name
, reloc
);
429 return get_section (name
, flags
, decl
);
432 /* Worker for resolve_unique_section. */
435 set_implicit_section (struct symtab_node
*n
, void *data ATTRIBUTE_UNUSED
)
437 n
->implicit_section
= true;
441 /* If required, set DECL_SECTION_NAME to a unique name. */
444 resolve_unique_section (tree decl
, int reloc ATTRIBUTE_UNUSED
,
445 int flag_function_or_data_sections
)
447 if (DECL_SECTION_NAME (decl
) == NULL
448 && targetm_common
.have_named_sections
449 && (flag_function_or_data_sections
450 || DECL_COMDAT_GROUP (decl
)))
452 targetm
.asm_out
.unique_section (decl
, reloc
);
453 if (DECL_SECTION_NAME (decl
))
454 symtab_node::get (decl
)->call_for_symbol_and_aliases
455 (set_implicit_section
, NULL
, true);
459 #ifdef BSS_SECTION_ASM_OP
461 #ifdef ASM_OUTPUT_ALIGNED_BSS
463 /* Utility function for targets to use in implementing
464 ASM_OUTPUT_ALIGNED_BSS.
465 ??? It is believed that this function will work in most cases so such
466 support is localized here. */
469 asm_output_aligned_bss (FILE *file
, tree decl ATTRIBUTE_UNUSED
,
470 const char *name
, unsigned HOST_WIDE_INT size
,
473 switch_to_section (bss_section
);
474 ASM_OUTPUT_ALIGN (file
, floor_log2 (align
/ BITS_PER_UNIT
));
475 #ifdef ASM_DECLARE_OBJECT_NAME
476 last_assemble_variable_decl
= decl
;
477 ASM_DECLARE_OBJECT_NAME (file
, name
, decl
);
479 /* Standard thing is just output label for the object. */
480 ASM_OUTPUT_LABEL (file
, name
);
481 #endif /* ASM_DECLARE_OBJECT_NAME */
482 ASM_OUTPUT_SKIP (file
, size
? size
: 1);
487 #endif /* BSS_SECTION_ASM_OP */
489 #ifndef USE_SELECT_SECTION_FOR_FUNCTIONS
490 /* Return the hot section for function DECL. Return text_section for
494 hot_function_section (tree decl
)
496 if (decl
!= NULL_TREE
497 && DECL_SECTION_NAME (decl
) != NULL
498 && targetm_common
.have_named_sections
)
499 return get_named_section (decl
, NULL
, 0);
505 /* Return section for TEXT_SECTION_NAME if DECL or DECL_SECTION_NAME (DECL)
508 When DECL_SECTION_NAME is non-NULL and it is implicit section and
509 NAMED_SECTION_SUFFIX is non-NULL, then produce section called
510 concatenate the name with NAMED_SECTION_SUFFIX.
511 Otherwise produce "TEXT_SECTION_NAME.IMPLICIT_NAME". */
514 get_named_text_section (tree decl
,
515 const char *text_section_name
,
516 const char *named_section_suffix
)
518 if (decl
&& DECL_SECTION_NAME (decl
))
520 if (named_section_suffix
)
522 const char *dsn
= DECL_SECTION_NAME (decl
);
523 const char *stripped_name
;
526 name
= (char *) alloca (strlen (dsn
) + 1);
530 stripped_name
= targetm
.strip_name_encoding (name
);
532 buffer
= ACONCAT ((stripped_name
, named_section_suffix
, NULL
));
533 return get_named_section (decl
, buffer
, 0);
535 else if (symtab_node::get (decl
)->implicit_section
)
539 /* Do not try to split gnu_linkonce functions. This gets somewhat
541 if (DECL_COMDAT_GROUP (decl
) && !HAVE_COMDAT_GROUP
)
543 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
544 name
= targetm
.strip_name_encoding (name
);
545 return get_named_section (decl
, ACONCAT ((text_section_name
, ".",
551 return get_named_section (decl
, text_section_name
, 0);
554 /* Choose named function section based on its frequency. */
557 default_function_section (tree decl
, enum node_frequency freq
,
558 bool startup
, bool exit
)
560 #if defined HAVE_LD_EH_GC_SECTIONS && defined HAVE_LD_EH_GC_SECTIONS_BUG
561 /* Old GNU linkers have buggy --gc-section support, which sometimes
562 results in .gcc_except_table* sections being garbage collected. */
564 && symtab_node::get (decl
)->implicit_section
)
568 if (!flag_reorder_functions
569 || !targetm_common
.have_named_sections
)
571 /* Startup code should go to startup subsection unless it is
572 unlikely executed (this happens especially with function splitting
573 where we can split away unnecessary parts of static constructors. */
574 if (startup
&& freq
!= NODE_FREQUENCY_UNLIKELY_EXECUTED
)
576 /* If we do have a profile or(and) LTO phase is executed, we do not need
577 these ELF section. */
578 if (!in_lto_p
|| !flag_profile_values
)
579 return get_named_text_section (decl
, ".text.startup", NULL
);
584 /* Similarly for exit. */
585 if (exit
&& freq
!= NODE_FREQUENCY_UNLIKELY_EXECUTED
)
586 return get_named_text_section (decl
, ".text.exit", NULL
);
588 /* Group cold functions together, similarly for hot code. */
591 case NODE_FREQUENCY_UNLIKELY_EXECUTED
:
592 return get_named_text_section (decl
, ".text.unlikely", NULL
);
593 case NODE_FREQUENCY_HOT
:
594 /* If we do have a profile or(and) LTO phase is executed, we do not need
595 these ELF section. */
596 if (!in_lto_p
|| !flag_profile_values
)
597 return get_named_text_section (decl
, ".text.hot", NULL
);
603 /* Return the section for function DECL.
605 If DECL is NULL_TREE, return the text section. We can be passed
606 NULL_TREE under some circumstances by dbxout.c at least.
608 If FORCE_COLD is true, return cold function section ignoring
609 the frequency info of cgraph_node. */
612 function_section_1 (tree decl
, bool force_cold
)
614 section
*section
= NULL
;
615 enum node_frequency freq
= NODE_FREQUENCY_NORMAL
;
616 bool startup
= false, exit
= false;
620 struct cgraph_node
*node
= cgraph_node::get (decl
);
624 freq
= node
->frequency
;
625 startup
= node
->only_called_at_startup
;
626 exit
= node
->only_called_at_exit
;
630 freq
= NODE_FREQUENCY_UNLIKELY_EXECUTED
;
632 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
633 if (decl
!= NULL_TREE
634 && DECL_SECTION_NAME (decl
) != NULL
)
636 if (targetm
.asm_out
.function_section
)
637 section
= targetm
.asm_out
.function_section (decl
, freq
,
641 return get_named_section (decl
, NULL
, 0);
644 return targetm
.asm_out
.select_section
645 (decl
, freq
== NODE_FREQUENCY_UNLIKELY_EXECUTED
,
646 symtab_node::get (decl
)->definition_alignment ());
648 if (targetm
.asm_out
.function_section
)
649 section
= targetm
.asm_out
.function_section (decl
, freq
, startup
, exit
);
652 return hot_function_section (decl
);
656 /* Return the section for function DECL.
658 If DECL is NULL_TREE, return the text section. We can be passed
659 NULL_TREE under some circumstances by dbxout.c at least. */
662 function_section (tree decl
)
664 /* Handle cases where function splitting code decides
665 to put function entry point into unlikely executed section
666 despite the fact that the function itself is not cold
667 (i.e. it is called rarely but contains a hot loop that is
668 better to live in hot subsection for the code locality). */
669 return function_section_1 (decl
,
670 first_function_block_is_cold
);
673 /* Return the section for the current function, take IN_COLD_SECTION_P
677 current_function_section (void)
679 return function_section_1 (current_function_decl
, in_cold_section_p
);
682 /* Tell assembler to switch to unlikely-to-be-executed text section. */
685 unlikely_text_section (void)
687 return function_section_1 (current_function_decl
, true);
690 /* When called within a function context, return true if the function
691 has been assigned a cold text section and if SECT is that section.
692 When called outside a function context, return true if SECT is the
693 default cold section. */
696 unlikely_text_section_p (section
*sect
)
698 return sect
== function_section_1 (current_function_decl
, true);
701 /* Return the read-only data section associated with function DECL. */
704 default_function_rodata_section (tree decl
)
706 if (decl
!= NULL_TREE
&& DECL_SECTION_NAME (decl
))
708 const char *name
= DECL_SECTION_NAME (decl
);
710 if (DECL_COMDAT_GROUP (decl
) && HAVE_COMDAT_GROUP
)
716 dot
= strchr (name
+ 1, '.');
719 len
= strlen (dot
) + 8;
720 rname
= (char *) alloca (len
);
722 strcpy (rname
, ".rodata");
724 return get_section (rname
, SECTION_LINKONCE
, decl
);
726 /* For .gnu.linkonce.t.foo we want to use .gnu.linkonce.r.foo. */
727 else if (DECL_COMDAT_GROUP (decl
)
728 && strncmp (name
, ".gnu.linkonce.t.", 16) == 0)
730 size_t len
= strlen (name
) + 1;
731 char *rname
= (char *) alloca (len
);
733 memcpy (rname
, name
, len
);
735 return get_section (rname
, SECTION_LINKONCE
, decl
);
737 /* For .text.foo we want to use .rodata.foo. */
738 else if (flag_function_sections
&& flag_data_sections
739 && strncmp (name
, ".text.", 6) == 0)
741 size_t len
= strlen (name
) + 1;
742 char *rname
= (char *) alloca (len
+ 2);
744 memcpy (rname
, ".rodata", 7);
745 memcpy (rname
+ 7, name
+ 5, len
- 5);
746 return get_section (rname
, 0, decl
);
750 return readonly_data_section
;
753 /* Return the read-only data section associated with function DECL
754 for targets where that section should be always the single
755 readonly data section. */
758 default_no_function_rodata_section (tree decl ATTRIBUTE_UNUSED
)
760 return readonly_data_section
;
763 /* A subroutine of mergeable_string_section and mergeable_constant_section. */
766 function_mergeable_rodata_prefix (void)
768 section
*s
= targetm
.asm_out
.function_rodata_section (current_function_decl
);
769 if (SECTION_STYLE (s
) == SECTION_NAMED
)
770 return s
->named
.name
;
772 return targetm
.asm_out
.mergeable_rodata_prefix
;
775 /* Return the section to use for string merging. */
778 mergeable_string_section (tree decl ATTRIBUTE_UNUSED
,
779 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
,
780 unsigned int flags ATTRIBUTE_UNUSED
)
784 if (HAVE_GAS_SHF_MERGE
&& flag_merge_constants
785 && TREE_CODE (decl
) == STRING_CST
786 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
788 && (len
= int_size_in_bytes (TREE_TYPE (decl
))) > 0
789 && TREE_STRING_LENGTH (decl
) >= len
)
792 unsigned int modesize
;
796 const char *prefix
= function_mergeable_rodata_prefix ();
797 char *name
= (char *) alloca (strlen (prefix
) + 30);
799 mode
= TYPE_MODE (TREE_TYPE (TREE_TYPE (decl
)));
800 modesize
= GET_MODE_BITSIZE (mode
);
801 if (modesize
>= 8 && modesize
<= 256
802 && (modesize
& (modesize
- 1)) == 0)
804 if (align
< modesize
)
807 str
= TREE_STRING_POINTER (decl
);
808 unit
= GET_MODE_SIZE (mode
);
810 /* Check for embedded NUL characters. */
811 for (i
= 0; i
< len
; i
+= unit
)
813 for (j
= 0; j
< unit
; j
++)
814 if (str
[i
+ j
] != '\0')
821 sprintf (name
, "%s.str%d.%d", prefix
,
822 modesize
/ 8, (int) (align
/ 8));
823 flags
|= (modesize
/ 8) | SECTION_MERGE
| SECTION_STRINGS
;
824 return get_section (name
, flags
, NULL
);
829 return readonly_data_section
;
832 /* Return the section to use for constant merging. */
835 mergeable_constant_section (machine_mode mode ATTRIBUTE_UNUSED
,
836 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
,
837 unsigned int flags ATTRIBUTE_UNUSED
)
839 unsigned int modesize
= GET_MODE_BITSIZE (mode
);
841 if (HAVE_GAS_SHF_MERGE
&& flag_merge_constants
847 && (align
& (align
- 1)) == 0)
849 const char *prefix
= function_mergeable_rodata_prefix ();
850 char *name
= (char *) alloca (strlen (prefix
) + 30);
852 sprintf (name
, "%s.cst%d", prefix
, (int) (align
/ 8));
853 flags
|= (align
/ 8) | SECTION_MERGE
;
854 return get_section (name
, flags
, NULL
);
856 return readonly_data_section
;
859 /* Given NAME, a putative register name, discard any customary prefixes. */
862 strip_reg_name (const char *name
)
864 #ifdef REGISTER_PREFIX
865 if (!strncmp (name
, REGISTER_PREFIX
, strlen (REGISTER_PREFIX
)))
866 name
+= strlen (REGISTER_PREFIX
);
868 if (name
[0] == '%' || name
[0] == '#')
873 /* The user has asked for a DECL to have a particular name. Set (or
874 change) it in such a way that we don't prefix an underscore to
877 set_user_assembler_name (tree decl
, const char *name
)
879 char *starred
= (char *) alloca (strlen (name
) + 2);
881 strcpy (starred
+ 1, name
);
882 symtab
->change_decl_assembler_name (decl
, get_identifier (starred
));
883 SET_DECL_RTL (decl
, NULL_RTX
);
886 /* Decode an `asm' spec for a declaration as a register name.
887 Return the register number, or -1 if nothing specified,
888 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
889 or -3 if ASMSPEC is `cc' and is not recognized,
890 or -4 if ASMSPEC is `memory' and is not recognized.
891 Accept an exact spelling or a decimal number.
892 Prefixes such as % are optional. */
895 decode_reg_name_and_count (const char *asmspec
, int *pnregs
)
897 /* Presume just one register is clobbered. */
904 /* Get rid of confusing prefixes. */
905 asmspec
= strip_reg_name (asmspec
);
907 /* Allow a decimal number as a "register name". */
908 for (i
= strlen (asmspec
) - 1; i
>= 0; i
--)
909 if (! ISDIGIT (asmspec
[i
]))
911 if (asmspec
[0] != 0 && i
< 0)
914 if (i
< FIRST_PSEUDO_REGISTER
&& i
>= 0 && reg_names
[i
][0])
920 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
922 && ! strcmp (asmspec
, strip_reg_name (reg_names
[i
])))
925 #ifdef OVERLAPPING_REGISTER_NAMES
929 const char *const name
;
932 } table
[] = OVERLAPPING_REGISTER_NAMES
;
934 for (i
= 0; i
< (int) ARRAY_SIZE (table
); i
++)
936 && ! strcmp (asmspec
, table
[i
].name
))
938 *pnregs
= table
[i
].nregs
;
939 return table
[i
].number
;
942 #endif /* OVERLAPPING_REGISTER_NAMES */
944 #ifdef ADDITIONAL_REGISTER_NAMES
946 static const struct { const char *const name
; const int number
; } table
[]
947 = ADDITIONAL_REGISTER_NAMES
;
949 for (i
= 0; i
< (int) ARRAY_SIZE (table
); i
++)
951 && ! strcmp (asmspec
, table
[i
].name
)
952 && reg_names
[table
[i
].number
][0])
953 return table
[i
].number
;
955 #endif /* ADDITIONAL_REGISTER_NAMES */
957 if (!strcmp (asmspec
, "memory"))
960 if (!strcmp (asmspec
, "cc"))
970 decode_reg_name (const char *name
)
973 return decode_reg_name_and_count (name
, &count
);
977 /* Return true if DECL's initializer is suitable for a BSS section. */
980 bss_initializer_p (const_tree decl
)
982 return (DECL_INITIAL (decl
) == NULL
983 /* In LTO we have no errors in program; error_mark_node is used
984 to mark offlined constructors. */
985 || (DECL_INITIAL (decl
) == error_mark_node
987 || (flag_zero_initialized_in_bss
988 /* Leave constant zeroes in .rodata so they
990 && !TREE_READONLY (decl
)
991 && initializer_zerop (DECL_INITIAL (decl
))));
994 /* Compute the alignment of variable specified by DECL.
995 DONT_OUTPUT_DATA is from assemble_variable. */
998 align_variable (tree decl
, bool dont_output_data
)
1000 unsigned int align
= DECL_ALIGN (decl
);
1002 /* In the case for initialing an array whose length isn't specified,
1003 where we have not yet been able to do the layout,
1004 figure out the proper alignment now. */
1005 if (dont_output_data
&& DECL_SIZE (decl
) == 0
1006 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
1007 align
= MAX (align
, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl
))));
1009 /* Some object file formats have a maximum alignment which they support.
1010 In particular, a.out format supports a maximum alignment of 4. */
1011 if (align
> MAX_OFILE_ALIGNMENT
)
1013 error ("alignment of %q+D is greater than maximum object "
1014 "file alignment %d", decl
,
1015 MAX_OFILE_ALIGNMENT
/BITS_PER_UNIT
);
1016 align
= MAX_OFILE_ALIGNMENT
;
1019 if (! DECL_USER_ALIGN (decl
))
1021 #ifdef DATA_ABI_ALIGNMENT
1022 unsigned int data_abi_align
1023 = DATA_ABI_ALIGNMENT (TREE_TYPE (decl
), align
);
1024 /* For backwards compatibility, don't assume the ABI alignment for
1026 if (! DECL_THREAD_LOCAL_P (decl
) || data_abi_align
<= BITS_PER_WORD
)
1027 align
= data_abi_align
;
1030 /* On some machines, it is good to increase alignment sometimes.
1031 But as DECL_ALIGN is used both for actually emitting the variable
1032 and for code accessing the variable as guaranteed alignment, we
1033 can only increase the alignment if it is a performance optimization
1034 if the references to it must bind to the current definition. */
1035 if (decl_binds_to_current_def_p (decl
)
1036 && !DECL_VIRTUAL_P (decl
))
1038 #ifdef DATA_ALIGNMENT
1039 unsigned int data_align
= DATA_ALIGNMENT (TREE_TYPE (decl
), align
);
1040 /* Don't increase alignment too much for TLS variables - TLS space
1042 if (! DECL_THREAD_LOCAL_P (decl
) || data_align
<= BITS_PER_WORD
)
1045 #ifdef CONSTANT_ALIGNMENT
1046 if (DECL_INITIAL (decl
) != 0
1047 /* In LTO we have no errors in program; error_mark_node is used
1048 to mark offlined constructors. */
1049 && (in_lto_p
|| DECL_INITIAL (decl
) != error_mark_node
))
1051 unsigned int const_align
1052 = CONSTANT_ALIGNMENT (DECL_INITIAL (decl
), align
);
1053 /* Don't increase alignment too much for TLS variables - TLS
1054 space is too precious. */
1055 if (! DECL_THREAD_LOCAL_P (decl
) || const_align
<= BITS_PER_WORD
)
1056 align
= const_align
;
1062 /* Reset the alignment in case we have made it tighter, so we can benefit
1063 from it in get_pointer_alignment. */
1064 DECL_ALIGN (decl
) = align
;
1067 /* Return DECL_ALIGN (decl), possibly increased for optimization purposes
1068 beyond what align_variable returned. */
1071 get_variable_align (tree decl
)
1073 unsigned int align
= DECL_ALIGN (decl
);
1075 /* For user aligned vars or static vars align_variable already did
1077 if (DECL_USER_ALIGN (decl
) || !TREE_PUBLIC (decl
))
1080 #ifdef DATA_ABI_ALIGNMENT
1081 if (DECL_THREAD_LOCAL_P (decl
))
1082 align
= DATA_ABI_ALIGNMENT (TREE_TYPE (decl
), align
);
1085 /* For decls that bind to the current definition, align_variable
1086 did also everything, except for not assuming ABI required alignment
1087 of TLS variables. For other vars, increase the alignment here
1088 as an optimization. */
1089 if (!decl_binds_to_current_def_p (decl
))
1091 /* On some machines, it is good to increase alignment sometimes. */
1092 #ifdef DATA_ALIGNMENT
1093 unsigned int data_align
= DATA_ALIGNMENT (TREE_TYPE (decl
), align
);
1094 /* Don't increase alignment too much for TLS variables - TLS space
1096 if (! DECL_THREAD_LOCAL_P (decl
) || data_align
<= BITS_PER_WORD
)
1099 #ifdef CONSTANT_ALIGNMENT
1100 if (DECL_INITIAL (decl
) != 0
1101 /* In LTO we have no errors in program; error_mark_node is used
1102 to mark offlined constructors. */
1103 && (in_lto_p
|| DECL_INITIAL (decl
) != error_mark_node
))
1105 unsigned int const_align
= CONSTANT_ALIGNMENT (DECL_INITIAL (decl
),
1107 /* Don't increase alignment too much for TLS variables - TLS space
1109 if (! DECL_THREAD_LOCAL_P (decl
) || const_align
<= BITS_PER_WORD
)
1110 align
= const_align
;
1118 /* Return the section into which the given VAR_DECL or CONST_DECL
1119 should be placed. PREFER_NOSWITCH_P is true if a noswitch
1120 section should be used wherever possible. */
1123 get_variable_section (tree decl
, bool prefer_noswitch_p
)
1125 addr_space_t as
= ADDR_SPACE_GENERIC
;
1127 varpool_node
*vnode
= varpool_node::get (decl
);
1130 vnode
= vnode
->ultimate_alias_target ();
1134 if (TREE_TYPE (decl
) != error_mark_node
)
1135 as
= TYPE_ADDR_SPACE (TREE_TYPE (decl
));
1137 /* We need the constructor to figure out reloc flag. */
1139 vnode
->get_constructor ();
1141 if (DECL_COMMON (decl
))
1143 /* If the decl has been given an explicit section name, or it resides
1144 in a non-generic address space, then it isn't common, and shouldn't
1145 be handled as such. */
1146 gcc_assert (DECL_SECTION_NAME (decl
) == NULL
1147 && ADDR_SPACE_GENERIC_P (as
));
1148 if (DECL_THREAD_LOCAL_P (decl
))
1149 return tls_comm_section
;
1150 else if (TREE_PUBLIC (decl
) && bss_initializer_p (decl
))
1151 return comm_section
;
1154 if (DECL_INITIAL (decl
) == error_mark_node
)
1155 reloc
= contains_pointers_p (TREE_TYPE (decl
)) ? 3 : 0;
1156 else if (DECL_INITIAL (decl
))
1157 reloc
= compute_reloc_for_constant (DECL_INITIAL (decl
));
1161 resolve_unique_section (decl
, reloc
, flag_data_sections
);
1162 if (IN_NAMED_SECTION (decl
))
1163 return get_named_section (decl
, NULL
, reloc
);
1165 if (ADDR_SPACE_GENERIC_P (as
)
1166 && !DECL_THREAD_LOCAL_P (decl
)
1167 && !(prefer_noswitch_p
&& targetm
.have_switchable_bss_sections
)
1168 && bss_initializer_p (decl
))
1170 if (!TREE_PUBLIC (decl
)
1171 && !((flag_sanitize
& SANITIZE_ADDRESS
)
1172 && asan_protect_global (decl
)))
1173 return lcomm_section
;
1174 if (bss_noswitch_section
)
1175 return bss_noswitch_section
;
1178 return targetm
.asm_out
.select_section (decl
, reloc
,
1179 get_variable_align (decl
));
1182 /* Return the block into which object_block DECL should be placed. */
1184 static struct object_block
*
1185 get_block_for_decl (tree decl
)
1189 if (TREE_CODE (decl
) == VAR_DECL
)
1191 /* The object must be defined in this translation unit. */
1192 if (DECL_EXTERNAL (decl
))
1195 /* There's no point using object blocks for something that is
1196 isolated by definition. */
1197 if (DECL_COMDAT_GROUP (decl
))
1201 /* We can only calculate block offsets if the decl has a known
1203 if (DECL_SIZE_UNIT (decl
) == NULL
)
1205 if (!tree_fits_uhwi_p (DECL_SIZE_UNIT (decl
)))
1208 /* Find out which section should contain DECL. We cannot put it into
1209 an object block if it requires a standalone definition. */
1210 if (TREE_CODE (decl
) == VAR_DECL
)
1211 align_variable (decl
, 0);
1212 sect
= get_variable_section (decl
, true);
1213 if (SECTION_STYLE (sect
) == SECTION_NOSWITCH
)
1216 return get_block_for_section (sect
);
1219 /* Make sure block symbol SYMBOL is in block BLOCK. */
1222 change_symbol_block (rtx symbol
, struct object_block
*block
)
1224 if (block
!= SYMBOL_REF_BLOCK (symbol
))
1226 gcc_assert (SYMBOL_REF_BLOCK_OFFSET (symbol
) < 0);
1227 SYMBOL_REF_BLOCK (symbol
) = block
;
1231 /* Return true if it is possible to put DECL in an object_block. */
1234 use_blocks_for_decl_p (tree decl
)
1236 struct symtab_node
*snode
;
1238 /* Only data DECLs can be placed into object blocks. */
1239 if (TREE_CODE (decl
) != VAR_DECL
&& TREE_CODE (decl
) != CONST_DECL
)
1242 /* Detect decls created by dw2_force_const_mem. Such decls are
1243 special because DECL_INITIAL doesn't specify the decl's true value.
1244 dw2_output_indirect_constants will instead call assemble_variable
1245 with dont_output_data set to 1 and then print the contents itself. */
1246 if (DECL_INITIAL (decl
) == decl
)
1249 /* If this decl is an alias, then we don't want to emit a
1251 if (TREE_CODE (decl
) == VAR_DECL
1252 && (snode
= symtab_node::get (decl
)) != NULL
1256 return targetm
.use_blocks_for_decl_p (decl
);
1259 /* Follow the IDENTIFIER_TRANSPARENT_ALIAS chain starting at *ALIAS
1260 until we find an identifier that is not itself a transparent alias.
1261 Modify the alias passed to it by reference (and all aliases on the
1262 way to the ultimate target), such that they do not have to be
1263 followed again, and return the ultimate target of the alias
1267 ultimate_transparent_alias_target (tree
*alias
)
1269 tree target
= *alias
;
1271 if (IDENTIFIER_TRANSPARENT_ALIAS (target
))
1273 gcc_assert (TREE_CHAIN (target
));
1274 target
= ultimate_transparent_alias_target (&TREE_CHAIN (target
));
1275 gcc_assert (! IDENTIFIER_TRANSPARENT_ALIAS (target
)
1276 && ! TREE_CHAIN (target
));
1283 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
1284 have static storage duration. In other words, it should not be an
1285 automatic variable, including PARM_DECLs.
1287 There is, however, one exception: this function handles variables
1288 explicitly placed in a particular register by the user.
1290 This is never called for PARM_DECL nodes. */
1293 make_decl_rtl (tree decl
)
1295 const char *name
= 0;
1300 /* Check that we are not being given an automatic variable. */
1301 gcc_assert (TREE_CODE (decl
) != PARM_DECL
1302 && TREE_CODE (decl
) != RESULT_DECL
);
1304 /* A weak alias has TREE_PUBLIC set but not the other bits. */
1305 gcc_assert (TREE_CODE (decl
) != VAR_DECL
1306 || TREE_STATIC (decl
)
1307 || TREE_PUBLIC (decl
)
1308 || DECL_EXTERNAL (decl
)
1309 || DECL_REGISTER (decl
));
1311 /* And that we were not given a type or a label. */
1312 gcc_assert (TREE_CODE (decl
) != TYPE_DECL
1313 && TREE_CODE (decl
) != LABEL_DECL
);
1315 /* For a duplicate declaration, we can be called twice on the
1316 same DECL node. Don't discard the RTL already made. */
1317 if (DECL_RTL_SET_P (decl
))
1319 /* If the old RTL had the wrong mode, fix the mode. */
1320 x
= DECL_RTL (decl
);
1321 if (GET_MODE (x
) != DECL_MODE (decl
))
1322 SET_DECL_RTL (decl
, adjust_address_nv (x
, DECL_MODE (decl
), 0));
1324 if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
))
1327 /* ??? Another way to do this would be to maintain a hashed
1328 table of such critters. Instead of adding stuff to a DECL
1329 to give certain attributes to it, we could use an external
1330 hash map from DECL to set of attributes. */
1332 /* Let the target reassign the RTL if it wants.
1333 This is necessary, for example, when one machine specific
1334 decl attribute overrides another. */
1335 targetm
.encode_section_info (decl
, DECL_RTL (decl
), false);
1337 /* If the symbol has a SYMBOL_REF_BLOCK field, update it based
1338 on the new decl information. */
1340 && GET_CODE (XEXP (x
, 0)) == SYMBOL_REF
1341 && SYMBOL_REF_HAS_BLOCK_INFO_P (XEXP (x
, 0)))
1342 change_symbol_block (XEXP (x
, 0), get_block_for_decl (decl
));
1347 /* If this variable belongs to the global constant pool, retrieve the
1348 pre-computed RTL or recompute it in LTO mode. */
1349 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_IN_CONSTANT_POOL (decl
))
1351 SET_DECL_RTL (decl
, output_constant_def (DECL_INITIAL (decl
), 1));
1355 id
= DECL_ASSEMBLER_NAME (decl
);
1356 if (TREE_CODE (decl
) == FUNCTION_DECL
1357 && cgraph_node::get (decl
)
1358 && cgraph_node::get (decl
)->instrumentation_clone
)
1359 ultimate_transparent_alias_target (&id
);
1360 name
= IDENTIFIER_POINTER (id
);
1362 if (name
[0] != '*' && TREE_CODE (decl
) != FUNCTION_DECL
1363 && DECL_REGISTER (decl
))
1365 error ("register name not specified for %q+D", decl
);
1367 else if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
))
1369 const char *asmspec
= name
+1;
1370 machine_mode mode
= DECL_MODE (decl
);
1371 reg_number
= decode_reg_name (asmspec
);
1372 /* First detect errors in declaring global registers. */
1373 if (reg_number
== -1)
1374 error ("register name not specified for %q+D", decl
);
1375 else if (reg_number
< 0)
1376 error ("invalid register name for %q+D", decl
);
1377 else if (mode
== BLKmode
)
1378 error ("data type of %q+D isn%'t suitable for a register",
1380 else if (!in_hard_reg_set_p (accessible_reg_set
, mode
, reg_number
))
1381 error ("the register specified for %q+D cannot be accessed"
1382 " by the current target", decl
);
1383 else if (!in_hard_reg_set_p (operand_reg_set
, mode
, reg_number
))
1384 error ("the register specified for %q+D is not general enough"
1385 " to be used as a register variable", decl
);
1386 else if (!HARD_REGNO_MODE_OK (reg_number
, mode
))
1387 error ("register specified for %q+D isn%'t suitable for data type",
1389 /* Now handle properly declared static register variables. */
1394 if (DECL_INITIAL (decl
) != 0 && TREE_STATIC (decl
))
1396 DECL_INITIAL (decl
) = 0;
1397 error ("global register variable has initial value");
1399 if (TREE_THIS_VOLATILE (decl
))
1400 warning (OPT_Wvolatile_register_var
,
1401 "optimization may eliminate reads and/or "
1402 "writes to register variables");
1404 /* If the user specified one of the eliminables registers here,
1405 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
1406 confused with that register and be eliminated. This usage is
1407 somewhat suspect... */
1409 SET_DECL_RTL (decl
, gen_raw_REG (mode
, reg_number
));
1410 ORIGINAL_REGNO (DECL_RTL (decl
)) = reg_number
;
1411 REG_USERVAR_P (DECL_RTL (decl
)) = 1;
1413 if (TREE_STATIC (decl
))
1415 /* Make this register global, so not usable for anything
1417 #ifdef ASM_DECLARE_REGISTER_GLOBAL
1418 name
= IDENTIFIER_POINTER (DECL_NAME (decl
));
1419 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file
, decl
, reg_number
, name
);
1421 nregs
= hard_regno_nregs
[reg_number
][mode
];
1423 globalize_reg (decl
, reg_number
+ --nregs
);
1426 /* As a register variable, it has no section. */
1429 /* Avoid internal errors from invalid register
1431 SET_DECL_ASSEMBLER_NAME (decl
, NULL_TREE
);
1432 DECL_HARD_REGISTER (decl
) = 0;
1435 /* Now handle ordinary static variables and functions (in memory).
1436 Also handle vars declared register invalidly. */
1437 else if (name
[0] == '*')
1439 #ifdef REGISTER_PREFIX
1440 if (strlen (REGISTER_PREFIX
) != 0)
1442 reg_number
= decode_reg_name (name
);
1443 if (reg_number
>= 0 || reg_number
== -3)
1444 error ("register name given for non-register variable %q+D", decl
);
1449 /* Specifying a section attribute on a variable forces it into a
1450 non-.bss section, and thus it cannot be common. */
1451 /* FIXME: In general this code should not be necessary because
1452 visibility pass is doing the same work. But notice_global_symbol
1453 is called early and it needs to make DECL_RTL to get the name.
1454 we take care of recomputing the DECL_RTL after visibility is changed. */
1455 if (TREE_CODE (decl
) == VAR_DECL
1456 && (TREE_STATIC (decl
) || DECL_EXTERNAL (decl
))
1457 && DECL_SECTION_NAME (decl
) != NULL
1458 && DECL_INITIAL (decl
) == NULL_TREE
1459 && DECL_COMMON (decl
))
1460 DECL_COMMON (decl
) = 0;
1462 /* Variables can't be both common and weak. */
1463 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_WEAK (decl
))
1464 DECL_COMMON (decl
) = 0;
1466 if (use_object_blocks_p () && use_blocks_for_decl_p (decl
))
1467 x
= create_block_symbol (name
, get_block_for_decl (decl
), -1);
1470 machine_mode address_mode
= Pmode
;
1471 if (TREE_TYPE (decl
) != error_mark_node
)
1473 addr_space_t as
= TYPE_ADDR_SPACE (TREE_TYPE (decl
));
1474 address_mode
= targetm
.addr_space
.address_mode (as
);
1476 x
= gen_rtx_SYMBOL_REF (address_mode
, name
);
1478 SYMBOL_REF_WEAK (x
) = DECL_WEAK (decl
);
1479 SET_SYMBOL_REF_DECL (x
, decl
);
1481 x
= gen_rtx_MEM (DECL_MODE (decl
), x
);
1482 if (TREE_CODE (decl
) != FUNCTION_DECL
)
1483 set_mem_attributes (x
, decl
, 1);
1484 SET_DECL_RTL (decl
, x
);
1486 /* Optionally set flags or add text to the name to record information
1487 such as that it is a function name.
1488 If the name is changed, the macro ASM_OUTPUT_LABELREF
1489 will have to know how to strip this information. */
1490 targetm
.encode_section_info (decl
, DECL_RTL (decl
), true);
1493 /* Like make_decl_rtl, but inhibit creation of new alias sets when
1494 calling make_decl_rtl. Also, reset DECL_RTL before returning the
1498 make_decl_rtl_for_debug (tree decl
)
1500 unsigned int save_aliasing_flag
;
1503 if (DECL_RTL_SET_P (decl
))
1504 return DECL_RTL (decl
);
1506 /* Kludge alert! Somewhere down the call chain, make_decl_rtl will
1507 call new_alias_set. If running with -fcompare-debug, sometimes
1508 we do not want to create alias sets that will throw the alias
1509 numbers off in the comparison dumps. So... clearing
1510 flag_strict_aliasing will keep new_alias_set() from creating a
1512 save_aliasing_flag
= flag_strict_aliasing
;
1513 flag_strict_aliasing
= 0;
1515 rtl
= DECL_RTL (decl
);
1516 /* Reset DECL_RTL back, as various parts of the compiler expects
1517 DECL_RTL set meaning it is actually going to be output. */
1518 SET_DECL_RTL (decl
, NULL
);
1520 flag_strict_aliasing
= save_aliasing_flag
;
1524 /* Output a string of literal assembler code
1525 for an `asm' keyword used between functions. */
1528 assemble_asm (tree string
)
1533 if (TREE_CODE (string
) == ADDR_EXPR
)
1534 string
= TREE_OPERAND (string
, 0);
1536 p
= TREE_STRING_POINTER (string
);
1537 fprintf (asm_out_file
, "%s%s\n", p
[0] == '\t' ? "" : "\t", p
);
1540 /* Write the address of the entity given by SYMBOL to SEC. */
1542 assemble_addr_to_section (rtx symbol
, section
*sec
)
1544 switch_to_section (sec
);
1545 assemble_align (POINTER_SIZE
);
1546 assemble_integer (symbol
, POINTER_SIZE_UNITS
, POINTER_SIZE
, 1);
1549 /* Return the numbered .ctors.N (if CONSTRUCTOR_P) or .dtors.N (if
1550 not) section for PRIORITY. */
1552 get_cdtor_priority_section (int priority
, bool constructor_p
)
1556 /* ??? This only works reliably with the GNU linker. */
1557 sprintf (buf
, "%s.%.5u",
1558 constructor_p
? ".ctors" : ".dtors",
1559 /* Invert the numbering so the linker puts us in the proper
1560 order; constructors are run from right to left, and the
1561 linker sorts in increasing order. */
1562 MAX_INIT_PRIORITY
- priority
);
1563 return get_section (buf
, SECTION_WRITE
, NULL
);
1567 default_named_section_asm_out_destructor (rtx symbol
, int priority
)
1571 if (priority
!= DEFAULT_INIT_PRIORITY
)
1572 sec
= get_cdtor_priority_section (priority
,
1573 /*constructor_p=*/false);
1575 sec
= get_section (".dtors", SECTION_WRITE
, NULL
);
1577 assemble_addr_to_section (symbol
, sec
);
1580 #ifdef DTORS_SECTION_ASM_OP
1582 default_dtor_section_asm_out_destructor (rtx symbol
,
1583 int priority ATTRIBUTE_UNUSED
)
1585 assemble_addr_to_section (symbol
, dtors_section
);
1590 default_named_section_asm_out_constructor (rtx symbol
, int priority
)
1594 if (priority
!= DEFAULT_INIT_PRIORITY
)
1595 sec
= get_cdtor_priority_section (priority
,
1596 /*constructor_p=*/true);
1598 sec
= get_section (".ctors", SECTION_WRITE
, NULL
);
1600 assemble_addr_to_section (symbol
, sec
);
1603 #ifdef CTORS_SECTION_ASM_OP
1605 default_ctor_section_asm_out_constructor (rtx symbol
,
1606 int priority ATTRIBUTE_UNUSED
)
1608 assemble_addr_to_section (symbol
, ctors_section
);
1612 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1613 a nonzero value if the constant pool should be output before the
1614 start of the function, or a zero value if the pool should output
1615 after the end of the function. The default is to put it before the
1618 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1619 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1622 /* DECL is an object (either VAR_DECL or FUNCTION_DECL) which is going
1623 to be output to assembler.
1624 Set first_global_object_name and weak_global_object_name as appropriate. */
1627 notice_global_symbol (tree decl
)
1629 const char **t
= &first_global_object_name
;
1631 if (first_global_object_name
1632 || !TREE_PUBLIC (decl
)
1633 || DECL_EXTERNAL (decl
)
1634 || !DECL_NAME (decl
)
1635 || (TREE_CODE (decl
) == VAR_DECL
&& DECL_HARD_REGISTER (decl
))
1636 || (TREE_CODE (decl
) != FUNCTION_DECL
1637 && (TREE_CODE (decl
) != VAR_DECL
1638 || (DECL_COMMON (decl
)
1639 && (DECL_INITIAL (decl
) == 0
1640 || DECL_INITIAL (decl
) == error_mark_node
)))))
1643 /* We win when global object is found, but it is useful to know about weak
1644 symbol as well so we can produce nicer unique names. */
1645 if (DECL_WEAK (decl
) || DECL_ONE_ONLY (decl
) || flag_shlib
)
1646 t
= &weak_global_object_name
;
1650 tree id
= DECL_ASSEMBLER_NAME (decl
);
1651 ultimate_transparent_alias_target (&id
);
1652 *t
= ggc_strdup (targetm
.strip_name_encoding (IDENTIFIER_POINTER (id
)));
1656 /* If not using flag_reorder_blocks_and_partition, decide early whether the
1657 current function goes into the cold section, so that targets can use
1658 current_function_section during RTL expansion. DECL describes the
1662 decide_function_section (tree decl
)
1664 first_function_block_is_cold
= false;
1666 if (flag_reorder_blocks_and_partition
)
1667 /* We will decide in assemble_start_function. */
1670 if (DECL_SECTION_NAME (decl
))
1672 struct cgraph_node
*node
= cgraph_node::get (current_function_decl
);
1673 /* Calls to function_section rely on first_function_block_is_cold
1675 first_function_block_is_cold
= (node
1677 == NODE_FREQUENCY_UNLIKELY_EXECUTED
);
1680 in_cold_section_p
= first_function_block_is_cold
;
1683 /* Get the function's name, as described by its RTL. This may be
1684 different from the DECL_NAME name used in the source file. */
1686 get_fnname_from_decl (tree decl
)
1688 rtx x
= DECL_RTL (decl
);
1689 gcc_assert (MEM_P (x
));
1691 gcc_assert (GET_CODE (x
) == SYMBOL_REF
);
1695 /* Output assembler code for the constant pool of a function and associated
1696 with defining the name of the function. DECL describes the function.
1697 NAME is the function's name. For the constant pool, we use the current
1698 constant pool data. */
1701 assemble_start_function (tree decl
, const char *fnname
)
1704 char tmp_label
[100];
1705 bool hot_label_written
= false;
1707 if (flag_reorder_blocks_and_partition
)
1709 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LHOTB", const_labelno
);
1710 crtl
->subsections
.hot_section_label
= ggc_strdup (tmp_label
);
1711 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LCOLDB", const_labelno
);
1712 crtl
->subsections
.cold_section_label
= ggc_strdup (tmp_label
);
1713 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LHOTE", const_labelno
);
1714 crtl
->subsections
.hot_section_end_label
= ggc_strdup (tmp_label
);
1715 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LCOLDE", const_labelno
);
1716 crtl
->subsections
.cold_section_end_label
= ggc_strdup (tmp_label
);
1718 cold_function_name
= NULL_TREE
;
1722 crtl
->subsections
.hot_section_label
= NULL
;
1723 crtl
->subsections
.cold_section_label
= NULL
;
1724 crtl
->subsections
.hot_section_end_label
= NULL
;
1725 crtl
->subsections
.cold_section_end_label
= NULL
;
1728 /* The following code does not need preprocessing in the assembler. */
1732 if (CONSTANT_POOL_BEFORE_FUNCTION
)
1733 output_constant_pool (fnname
, decl
);
1735 align
= symtab_node::get (decl
)->definition_alignment ();
1737 /* Make sure the not and cold text (code) sections are properly
1738 aligned. This is necessary here in the case where the function
1739 has both hot and cold sections, because we don't want to re-set
1740 the alignment when the section switch happens mid-function. */
1742 if (flag_reorder_blocks_and_partition
)
1744 first_function_block_is_cold
= false;
1746 switch_to_section (unlikely_text_section ());
1747 assemble_align (align
);
1748 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.cold_section_label
);
1750 /* When the function starts with a cold section, we need to explicitly
1751 align the hot section and write out the hot section label.
1752 But if the current function is a thunk, we do not have a CFG. */
1754 && BB_PARTITION (ENTRY_BLOCK_PTR_FOR_FN (cfun
)->next_bb
) == BB_COLD_PARTITION
)
1756 switch_to_section (text_section
);
1757 assemble_align (align
);
1758 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.hot_section_label
);
1759 hot_label_written
= true;
1760 first_function_block_is_cold
= true;
1762 in_cold_section_p
= first_function_block_is_cold
;
1766 /* Switch to the correct text section for the start of the function. */
1768 switch_to_section (function_section (decl
));
1769 if (flag_reorder_blocks_and_partition
1770 && !hot_label_written
)
1771 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.hot_section_label
);
1773 /* Tell assembler to move to target machine's alignment for functions. */
1774 align
= floor_log2 (align
/ BITS_PER_UNIT
);
1777 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
1780 /* Handle a user-specified function alignment.
1781 Note that we still need to align to DECL_ALIGN, as above,
1782 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1783 if (! DECL_USER_ALIGN (decl
)
1784 && align_functions_log
> align
1785 && optimize_function_for_speed_p (cfun
))
1787 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1788 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file
,
1789 align_functions_log
, align_functions
- 1);
1791 ASM_OUTPUT_ALIGN (asm_out_file
, align_functions_log
);
1795 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1796 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file
, fnname
);
1799 if (!DECL_IGNORED_P (decl
))
1800 (*debug_hooks
->begin_function
) (decl
);
1802 /* Make function name accessible from other files, if appropriate. */
1804 if (TREE_PUBLIC (decl
)
1805 || (cgraph_node::get (decl
)->instrumentation_clone
1806 && cgraph_node::get (decl
)->instrumented_version
1807 && TREE_PUBLIC (cgraph_node::get (decl
)->instrumented_version
->decl
)))
1809 notice_global_symbol (decl
);
1811 globalize_decl (decl
);
1813 maybe_assemble_visibility (decl
);
1816 if (DECL_PRESERVE_P (decl
))
1817 targetm
.asm_out
.mark_decl_preserved (fnname
);
1819 /* Do any machine/system dependent processing of the function name. */
1820 #ifdef ASM_DECLARE_FUNCTION_NAME
1821 ASM_DECLARE_FUNCTION_NAME (asm_out_file
, fnname
, current_function_decl
);
1823 /* Standard thing is just output label for the function. */
1824 ASM_OUTPUT_FUNCTION_LABEL (asm_out_file
, fnname
, current_function_decl
);
1825 #endif /* ASM_DECLARE_FUNCTION_NAME */
1827 if (lookup_attribute ("no_split_stack", DECL_ATTRIBUTES (decl
)))
1828 saw_no_split_stack
= true;
1831 /* Output assembler code associated with defining the size of the
1832 function. DECL describes the function. NAME is the function's name. */
1835 assemble_end_function (tree decl
, const char *fnname ATTRIBUTE_UNUSED
)
1837 #ifdef ASM_DECLARE_FUNCTION_SIZE
1838 /* We could have switched section in the middle of the function. */
1839 if (flag_reorder_blocks_and_partition
)
1840 switch_to_section (function_section (decl
));
1841 ASM_DECLARE_FUNCTION_SIZE (asm_out_file
, fnname
, decl
);
1843 if (! CONSTANT_POOL_BEFORE_FUNCTION
)
1845 output_constant_pool (fnname
, decl
);
1846 switch_to_section (function_section (decl
)); /* need to switch back */
1848 /* Output labels for end of hot/cold text sections (to be used by
1850 if (flag_reorder_blocks_and_partition
)
1852 section
*save_text_section
;
1854 save_text_section
= in_section
;
1855 switch_to_section (unlikely_text_section ());
1856 #ifdef ASM_DECLARE_COLD_FUNCTION_SIZE
1857 if (cold_function_name
!= NULL_TREE
)
1858 ASM_DECLARE_COLD_FUNCTION_SIZE (asm_out_file
,
1859 IDENTIFIER_POINTER (cold_function_name
),
1862 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.cold_section_end_label
);
1863 if (first_function_block_is_cold
)
1864 switch_to_section (text_section
);
1866 switch_to_section (function_section (decl
));
1867 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.hot_section_end_label
);
1868 switch_to_section (save_text_section
);
1872 /* Assemble code to leave SIZE bytes of zeros. */
1875 assemble_zeros (unsigned HOST_WIDE_INT size
)
1877 /* Do no output if -fsyntax-only. */
1878 if (flag_syntax_only
)
1881 #ifdef ASM_NO_SKIP_IN_TEXT
1882 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1883 so we must output 0s explicitly in the text section. */
1884 if (ASM_NO_SKIP_IN_TEXT
&& (in_section
->common
.flags
& SECTION_CODE
) != 0)
1886 unsigned HOST_WIDE_INT i
;
1887 for (i
= 0; i
< size
; i
++)
1888 assemble_integer (const0_rtx
, 1, BITS_PER_UNIT
, 1);
1893 ASM_OUTPUT_SKIP (asm_out_file
, size
);
1896 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1899 assemble_align (int align
)
1901 if (align
> BITS_PER_UNIT
)
1903 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
1907 /* Assemble a string constant with the specified C string as contents. */
1910 assemble_string (const char *p
, int size
)
1915 /* If the string is very long, split it up. */
1919 int thissize
= size
- pos
;
1920 if (thissize
> maximum
)
1923 ASM_OUTPUT_ASCII (asm_out_file
, p
, thissize
);
1931 /* A noswitch_section_callback for lcomm_section. */
1934 emit_local (tree decl ATTRIBUTE_UNUSED
,
1935 const char *name ATTRIBUTE_UNUSED
,
1936 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
1937 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
1939 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1940 unsigned int align
= symtab_node::get (decl
)->definition_alignment ();
1941 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file
, decl
, name
,
1944 #elif defined ASM_OUTPUT_ALIGNED_LOCAL
1945 unsigned int align
= symtab_node::get (decl
)->definition_alignment ();
1946 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file
, name
, size
, align
);
1949 ASM_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
1954 /* A noswitch_section_callback for bss_noswitch_section. */
1956 #if defined ASM_OUTPUT_ALIGNED_BSS
1958 emit_bss (tree decl ATTRIBUTE_UNUSED
,
1959 const char *name ATTRIBUTE_UNUSED
,
1960 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
1961 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
1963 ASM_OUTPUT_ALIGNED_BSS (asm_out_file
, decl
, name
, size
,
1964 get_variable_align (decl
));
1969 /* A noswitch_section_callback for comm_section. */
1972 emit_common (tree decl ATTRIBUTE_UNUSED
,
1973 const char *name ATTRIBUTE_UNUSED
,
1974 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
1975 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
1977 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1978 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file
, decl
, name
,
1979 size
, get_variable_align (decl
));
1981 #elif defined ASM_OUTPUT_ALIGNED_COMMON
1982 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file
, name
, size
,
1983 get_variable_align (decl
));
1986 ASM_OUTPUT_COMMON (asm_out_file
, name
, size
, rounded
);
1991 /* A noswitch_section_callback for tls_comm_section. */
1994 emit_tls_common (tree decl ATTRIBUTE_UNUSED
,
1995 const char *name ATTRIBUTE_UNUSED
,
1996 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
1997 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
1999 #ifdef ASM_OUTPUT_TLS_COMMON
2000 ASM_OUTPUT_TLS_COMMON (asm_out_file
, decl
, name
, size
);
2003 sorry ("thread-local COMMON data not implemented");
2008 /* Assemble DECL given that it belongs in SECTION_NOSWITCH section SECT.
2009 NAME is the name of DECL's SYMBOL_REF. */
2012 assemble_noswitch_variable (tree decl
, const char *name
, section
*sect
,
2015 unsigned HOST_WIDE_INT size
, rounded
;
2017 size
= tree_to_uhwi (DECL_SIZE_UNIT (decl
));
2020 if ((flag_sanitize
& SANITIZE_ADDRESS
) && asan_protect_global (decl
))
2021 size
+= asan_red_zone_size (size
);
2023 /* Don't allocate zero bytes of common,
2024 since that means "undefined external" in the linker. */
2028 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2029 so that each uninitialized object starts on such a boundary. */
2030 rounded
+= (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1;
2031 rounded
= (rounded
/ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
2032 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
2034 if (!sect
->noswitch
.callback (decl
, name
, size
, rounded
)
2035 && (unsigned HOST_WIDE_INT
) (align
/ BITS_PER_UNIT
) > rounded
)
2036 error ("requested alignment for %q+D is greater than "
2037 "implemented alignment of %wu", decl
, rounded
);
2040 /* A subroutine of assemble_variable. Output the label and contents of
2041 DECL, whose address is a SYMBOL_REF with name NAME. DONT_OUTPUT_DATA
2042 is as for assemble_variable. */
2045 assemble_variable_contents (tree decl
, const char *name
,
2046 bool dont_output_data
)
2048 /* Do any machine/system dependent processing of the object. */
2049 #ifdef ASM_DECLARE_OBJECT_NAME
2050 last_assemble_variable_decl
= decl
;
2051 ASM_DECLARE_OBJECT_NAME (asm_out_file
, name
, decl
);
2053 /* Standard thing is just output label for the object. */
2054 ASM_OUTPUT_LABEL (asm_out_file
, name
);
2055 #endif /* ASM_DECLARE_OBJECT_NAME */
2057 if (!dont_output_data
)
2059 /* Caller is supposed to use varpool_get_constructor when it wants
2060 to output the body. */
2061 gcc_assert (!in_lto_p
|| DECL_INITIAL (decl
) != error_mark_node
);
2062 if (DECL_INITIAL (decl
)
2063 && DECL_INITIAL (decl
) != error_mark_node
2064 && !initializer_zerop (DECL_INITIAL (decl
)))
2065 /* Output the actual data. */
2066 output_constant (DECL_INITIAL (decl
),
2067 tree_to_uhwi (DECL_SIZE_UNIT (decl
)),
2068 get_variable_align (decl
));
2070 /* Leave space for it. */
2071 assemble_zeros (tree_to_uhwi (DECL_SIZE_UNIT (decl
)));
2072 targetm
.asm_out
.decl_end ();
2076 /* Write out assembly for the variable DECL, which is not defined in
2077 the current translation unit. */
2079 assemble_undefined_decl (tree decl
)
2081 const char *name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
2082 targetm
.asm_out
.assemble_undefined_decl (asm_out_file
, name
, decl
);
2085 /* Assemble everything that is needed for a variable or function declaration.
2086 Not used for automatic variables, and not used for function definitions.
2087 Should not be called for variables of incomplete structure type.
2089 TOP_LEVEL is nonzero if this variable has file scope.
2090 AT_END is nonzero if this is the special handling, at end of compilation,
2091 to define things that have had only tentative definitions.
2092 DONT_OUTPUT_DATA if nonzero means don't actually output the
2093 initial value (that will be done by the caller). */
2096 assemble_variable (tree decl
, int top_level ATTRIBUTE_UNUSED
,
2097 int at_end ATTRIBUTE_UNUSED
, int dont_output_data
)
2100 rtx decl_rtl
, symbol
;
2103 bool asan_protected
= false;
2105 /* This function is supposed to handle VARIABLES. Ensure we have one. */
2106 gcc_assert (TREE_CODE (decl
) == VAR_DECL
);
2108 /* Emulated TLS had better not get this far. */
2109 gcc_checking_assert (targetm
.have_tls
|| !DECL_THREAD_LOCAL_P (decl
));
2111 last_assemble_variable_decl
= 0;
2113 /* Normally no need to say anything here for external references,
2114 since assemble_external is called by the language-specific code
2115 when a declaration is first seen. */
2117 if (DECL_EXTERNAL (decl
))
2120 /* Do nothing for global register variables. */
2121 if (DECL_RTL_SET_P (decl
) && REG_P (DECL_RTL (decl
)))
2123 TREE_ASM_WRITTEN (decl
) = 1;
2127 /* If type was incomplete when the variable was declared,
2128 see if it is complete now. */
2130 if (DECL_SIZE (decl
) == 0)
2131 layout_decl (decl
, 0);
2133 /* Still incomplete => don't allocate it; treat the tentative defn
2134 (which is what it must have been) as an `extern' reference. */
2136 if (!dont_output_data
&& DECL_SIZE (decl
) == 0)
2138 error ("storage size of %q+D isn%'t known", decl
);
2139 TREE_ASM_WRITTEN (decl
) = 1;
2143 /* The first declaration of a variable that comes through this function
2144 decides whether it is global (in C, has external linkage)
2145 or local (in C, has internal linkage). So do nothing more
2146 if this function has already run. */
2148 if (TREE_ASM_WRITTEN (decl
))
2151 /* Make sure targetm.encode_section_info is invoked before we set
2153 decl_rtl
= DECL_RTL (decl
);
2155 TREE_ASM_WRITTEN (decl
) = 1;
2157 /* Do no output if -fsyntax-only. */
2158 if (flag_syntax_only
)
2161 if (! dont_output_data
2162 && ! valid_constant_size_p (DECL_SIZE_UNIT (decl
)))
2164 error ("size of variable %q+D is too large", decl
);
2168 gcc_assert (MEM_P (decl_rtl
));
2169 gcc_assert (GET_CODE (XEXP (decl_rtl
, 0)) == SYMBOL_REF
);
2170 symbol
= XEXP (decl_rtl
, 0);
2172 /* If this symbol belongs to the tree constant pool, output the constant
2173 if it hasn't already been written. */
2174 if (TREE_CONSTANT_POOL_ADDRESS_P (symbol
))
2176 tree decl
= SYMBOL_REF_DECL (symbol
);
2177 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl
)))
2178 output_constant_def_contents (symbol
);
2184 name
= XSTR (symbol
, 0);
2185 if (TREE_PUBLIC (decl
) && DECL_NAME (decl
))
2186 notice_global_symbol (decl
);
2188 /* Compute the alignment of this data. */
2190 align_variable (decl
, dont_output_data
);
2192 if ((flag_sanitize
& SANITIZE_ADDRESS
)
2193 && asan_protect_global (decl
))
2195 asan_protected
= true;
2196 DECL_ALIGN (decl
) = MAX (DECL_ALIGN (decl
),
2197 ASAN_RED_ZONE_SIZE
* BITS_PER_UNIT
);
2200 set_mem_align (decl_rtl
, DECL_ALIGN (decl
));
2202 align
= get_variable_align (decl
);
2204 if (TREE_PUBLIC (decl
))
2205 maybe_assemble_visibility (decl
);
2207 if (DECL_PRESERVE_P (decl
))
2208 targetm
.asm_out
.mark_decl_preserved (name
);
2210 /* First make the assembler name(s) global if appropriate. */
2211 sect
= get_variable_section (decl
, false);
2212 if (TREE_PUBLIC (decl
)
2213 && (sect
->common
.flags
& SECTION_COMMON
) == 0)
2214 globalize_decl (decl
);
2216 /* Output any data that we will need to use the address of. */
2217 if (DECL_INITIAL (decl
) && DECL_INITIAL (decl
) != error_mark_node
)
2218 output_addressed_constants (DECL_INITIAL (decl
));
2220 /* dbxout.c needs to know this. */
2221 if (sect
&& (sect
->common
.flags
& SECTION_CODE
) != 0)
2222 DECL_IN_TEXT_SECTION (decl
) = 1;
2224 /* If the decl is part of an object_block, make sure that the decl
2225 has been positioned within its block, but do not write out its
2226 definition yet. output_object_blocks will do that later. */
2227 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol
) && SYMBOL_REF_BLOCK (symbol
))
2229 gcc_assert (!dont_output_data
);
2230 place_block_symbol (symbol
);
2232 else if (SECTION_STYLE (sect
) == SECTION_NOSWITCH
)
2233 assemble_noswitch_variable (decl
, name
, sect
, align
);
2236 /* The following bit of code ensures that vtable_map
2237 variables are not only in the comdat section, but that
2238 each variable has its own unique comdat name. If this
2239 code is removed, the variables end up in the same section
2240 with a single comdat name.
2242 FIXME: resolve_unique_section needs to deal better with
2243 decls with both DECL_SECTION_NAME and DECL_ONE_ONLY. Once
2244 that is fixed, this if-else statement can be replaced with
2245 a single call to "switch_to_section (sect)". */
2246 if (sect
->named
.name
2247 && (strcmp (sect
->named
.name
, ".vtable_map_vars") == 0))
2249 #if defined (OBJECT_FORMAT_ELF)
2250 targetm
.asm_out
.named_section (sect
->named
.name
,
2251 sect
->named
.common
.flags
2255 #elif defined (TARGET_PECOFF)
2256 /* Neither OBJECT_FORMAT_PE, nor OBJECT_FORMAT_COFF is set here.
2257 Therefore the following check is used.
2258 In case a the target is PE or COFF a comdat group section
2259 is created, e.g. .vtable_map_vars$foo. The linker places
2260 everything in .vtable_map_vars at the end.
2262 A fix could be made in
2263 gcc/config/i386/winnt.c: i386_pe_unique_section. */
2268 if (TREE_CODE (DECL_NAME (decl
)) == IDENTIFIER_NODE
)
2269 name
= ACONCAT ((sect
->named
.name
, "$",
2270 IDENTIFIER_POINTER (DECL_NAME (decl
)), NULL
));
2272 name
= ACONCAT ((sect
->named
.name
, "$",
2273 IDENTIFIER_POINTER (DECL_COMDAT_GROUP (DECL_NAME (decl
))),
2276 targetm
.asm_out
.named_section (name
,
2277 sect
->named
.common
.flags
2283 switch_to_section (sect
);
2287 switch_to_section (sect
);
2288 if (align
> BITS_PER_UNIT
)
2289 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
2290 assemble_variable_contents (decl
, name
, dont_output_data
);
2293 unsigned HOST_WIDE_INT
int size
2294 = tree_to_uhwi (DECL_SIZE_UNIT (decl
));
2295 assemble_zeros (asan_red_zone_size (size
));
2301 /* Given a function declaration (FN_DECL), this function assembles the
2302 function into the .preinit_array section. */
2305 assemble_vtv_preinit_initializer (tree fn_decl
)
2308 unsigned flags
= SECTION_WRITE
;
2309 rtx symbol
= XEXP (DECL_RTL (fn_decl
), 0);
2311 flags
|= SECTION_NOTYPE
;
2312 sect
= get_section (".preinit_array", flags
, fn_decl
);
2313 switch_to_section (sect
);
2314 assemble_addr_to_section (symbol
, sect
);
2317 /* Return 1 if type TYPE contains any pointers. */
2320 contains_pointers_p (tree type
)
2322 switch (TREE_CODE (type
))
2325 case REFERENCE_TYPE
:
2326 /* I'm not sure whether OFFSET_TYPE needs this treatment,
2327 so I'll play safe and return 1. */
2333 case QUAL_UNION_TYPE
:
2336 /* For a type that has fields, see if the fields have pointers. */
2337 for (fields
= TYPE_FIELDS (type
); fields
; fields
= DECL_CHAIN (fields
))
2338 if (TREE_CODE (fields
) == FIELD_DECL
2339 && contains_pointers_p (TREE_TYPE (fields
)))
2345 /* An array type contains pointers if its element type does. */
2346 return contains_pointers_p (TREE_TYPE (type
));
2353 /* We delay assemble_external processing until
2354 the compilation unit is finalized. This is the best we can do for
2355 right now (i.e. stage 3 of GCC 4.0) - the right thing is to delay
2356 it all the way to final. See PR 17982 for further discussion. */
2357 static GTY(()) tree pending_assemble_externals
;
2359 #ifdef ASM_OUTPUT_EXTERNAL
2360 /* Some targets delay some output to final using TARGET_ASM_FILE_END.
2361 As a result, assemble_external can be called after the list of externals
2362 is processed and the pointer set destroyed. */
2363 static bool pending_assemble_externals_processed
;
2365 /* Avoid O(external_decls**2) lookups in the pending_assemble_externals
2366 TREE_LIST in assemble_external. */
2367 static hash_set
<tree
> *pending_assemble_externals_set
;
2369 /* True if DECL is a function decl for which no out-of-line copy exists.
2370 It is assumed that DECL's assembler name has been set. */
2373 incorporeal_function_p (tree decl
)
2375 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_BUILT_IN (decl
))
2379 if (DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
2380 && (DECL_FUNCTION_CODE (decl
) == BUILT_IN_ALLOCA
2381 || DECL_FUNCTION_CODE (decl
) == BUILT_IN_ALLOCA_WITH_ALIGN
))
2384 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
2385 /* Atomic or sync builtins which have survived this far will be
2386 resolved externally and therefore are not incorporeal. */
2387 if (strncmp (name
, "__builtin_", 10) == 0)
2393 /* Actually do the tests to determine if this is necessary, and invoke
2394 ASM_OUTPUT_EXTERNAL. */
2396 assemble_external_real (tree decl
)
2398 rtx rtl
= DECL_RTL (decl
);
2400 if (MEM_P (rtl
) && GET_CODE (XEXP (rtl
, 0)) == SYMBOL_REF
2401 && !SYMBOL_REF_USED (XEXP (rtl
, 0))
2402 && !incorporeal_function_p (decl
))
2404 /* Some systems do require some output. */
2405 SYMBOL_REF_USED (XEXP (rtl
, 0)) = 1;
2406 ASM_OUTPUT_EXTERNAL (asm_out_file
, decl
, XSTR (XEXP (rtl
, 0), 0));
2412 process_pending_assemble_externals (void)
2414 #ifdef ASM_OUTPUT_EXTERNAL
2416 for (list
= pending_assemble_externals
; list
; list
= TREE_CHAIN (list
))
2417 assemble_external_real (TREE_VALUE (list
));
2419 pending_assemble_externals
= 0;
2420 pending_assemble_externals_processed
= true;
2421 delete pending_assemble_externals_set
;
2425 /* This TREE_LIST contains any weak symbol declarations waiting
2427 static GTY(()) tree weak_decls
;
2429 /* Output something to declare an external symbol to the assembler,
2430 and qualifiers such as weakness. (Most assemblers don't need
2431 extern declaration, so we normally output nothing.) Do nothing if
2432 DECL is not external. */
2435 assemble_external (tree decl ATTRIBUTE_UNUSED
)
2437 /* Make sure that the ASM_OUT_FILE is open.
2438 If it's not, we should not be calling this function. */
2439 gcc_assert (asm_out_file
);
2441 /* In a perfect world, the following condition would be true.
2442 Sadly, the Java and Go front ends emit assembly *from the front end*,
2443 bypassing the call graph. See PR52739. Fix before GCC 4.8. */
2445 /* This function should only be called if we are expanding, or have
2447 Ideally, only final.c would be calling this function, but it is
2448 not clear whether that would break things somehow. See PR 17982
2449 for further discussion. */
2450 gcc_assert (state
== EXPANSION
2451 || state
== FINISHED
);
2454 if (!DECL_P (decl
) || !DECL_EXTERNAL (decl
) || !TREE_PUBLIC (decl
))
2457 /* We want to output annotation for weak and external symbols at
2458 very last to check if they are references or not. */
2460 if (TARGET_SUPPORTS_WEAK
2462 /* TREE_STATIC is a weird and abused creature which is not
2463 generally the right test for whether an entity has been
2464 locally emitted, inlined or otherwise not-really-extern, but
2465 for declarations that can be weak, it happens to be
2467 && !TREE_STATIC (decl
)
2468 && lookup_attribute ("weak", DECL_ATTRIBUTES (decl
))
2469 && value_member (decl
, weak_decls
) == NULL_TREE
)
2470 weak_decls
= tree_cons (NULL
, decl
, weak_decls
);
2472 #ifdef ASM_OUTPUT_EXTERNAL
2473 if (pending_assemble_externals_processed
)
2475 assemble_external_real (decl
);
2479 if (! pending_assemble_externals_set
->add (decl
))
2480 pending_assemble_externals
= tree_cons (NULL
, decl
,
2481 pending_assemble_externals
);
2485 /* Similar, for calling a library function FUN. */
2488 assemble_external_libcall (rtx fun
)
2490 /* Declare library function name external when first used, if nec. */
2491 if (! SYMBOL_REF_USED (fun
))
2493 SYMBOL_REF_USED (fun
) = 1;
2494 targetm
.asm_out
.external_libcall (fun
);
2498 /* Assemble a label named NAME. */
2501 assemble_label (FILE *file
, const char *name
)
2503 ASM_OUTPUT_LABEL (file
, name
);
2506 /* Set the symbol_referenced flag for ID. */
2508 mark_referenced (tree id
)
2510 TREE_SYMBOL_REFERENCED (id
) = 1;
2513 /* Set the symbol_referenced flag for DECL and notify callgraph. */
2515 mark_decl_referenced (tree decl
)
2517 if (TREE_CODE (decl
) == FUNCTION_DECL
)
2519 /* Extern inline functions don't become needed when referenced.
2520 If we know a method will be emitted in other TU and no new
2521 functions can be marked reachable, just use the external
2523 struct cgraph_node
*node
= cgraph_node::get_create (decl
);
2524 if (!DECL_EXTERNAL (decl
)
2525 && !node
->definition
)
2526 node
->mark_force_output ();
2528 else if (TREE_CODE (decl
) == VAR_DECL
)
2530 varpool_node
*node
= varpool_node::get_create (decl
);
2531 /* C++ frontend use mark_decl_references to force COMDAT variables
2532 to be output that might appear dead otherwise. */
2533 node
->force_output
= true;
2535 /* else do nothing - we can get various sorts of CST nodes here,
2536 which do not need to be marked. */
2540 /* Output to FILE (an assembly file) a reference to NAME. If NAME
2541 starts with a *, the rest of NAME is output verbatim. Otherwise
2542 NAME is transformed in a target-specific way (usually by the
2543 addition of an underscore). */
2546 assemble_name_raw (FILE *file
, const char *name
)
2549 fputs (&name
[1], file
);
2551 ASM_OUTPUT_LABELREF (file
, name
);
2554 /* Like assemble_name_raw, but should be used when NAME might refer to
2555 an entity that is also represented as a tree (like a function or
2556 variable). If NAME does refer to such an entity, that entity will
2557 be marked as referenced. */
2560 assemble_name (FILE *file
, const char *name
)
2562 const char *real_name
;
2565 real_name
= targetm
.strip_name_encoding (name
);
2567 id
= maybe_get_identifier (real_name
);
2572 mark_referenced (id
);
2573 ultimate_transparent_alias_target (&id
);
2575 name
= IDENTIFIER_POINTER (id
);
2576 gcc_assert (! TREE_CHAIN (id
));
2579 assemble_name_raw (file
, name
);
2582 /* Allocate SIZE bytes writable static space with a gensym name
2583 and return an RTX to refer to its address. */
2586 assemble_static_space (unsigned HOST_WIDE_INT size
)
2589 const char *namestring
;
2592 ASM_GENERATE_INTERNAL_LABEL (name
, "LF", const_labelno
);
2594 namestring
= ggc_strdup (name
);
2596 x
= gen_rtx_SYMBOL_REF (Pmode
, namestring
);
2597 SYMBOL_REF_FLAGS (x
) = SYMBOL_FLAG_LOCAL
;
2599 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
2600 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file
, NULL_TREE
, name
, size
,
2603 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
2604 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file
, name
, size
, BIGGEST_ALIGNMENT
);
2607 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2608 so that each uninitialized object starts on such a boundary. */
2609 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
2610 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
2611 = ((size
+ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1)
2612 / (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
2613 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
2614 ASM_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
2621 /* Assemble the static constant template for function entry trampolines.
2622 This is done at most once per compilation.
2623 Returns an RTX for the address of the template. */
2625 static GTY(()) rtx initial_trampoline
;
2628 assemble_trampoline_template (void)
2635 gcc_assert (targetm
.asm_out
.trampoline_template
!= NULL
);
2637 if (initial_trampoline
)
2638 return initial_trampoline
;
2640 /* By default, put trampoline templates in read-only data section. */
2642 #ifdef TRAMPOLINE_SECTION
2643 switch_to_section (TRAMPOLINE_SECTION
);
2645 switch_to_section (readonly_data_section
);
2648 /* Write the assembler code to define one. */
2649 align
= floor_log2 (TRAMPOLINE_ALIGNMENT
/ BITS_PER_UNIT
);
2651 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
2653 targetm
.asm_out
.internal_label (asm_out_file
, "LTRAMP", 0);
2654 targetm
.asm_out
.trampoline_template (asm_out_file
);
2656 /* Record the rtl to refer to it. */
2657 ASM_GENERATE_INTERNAL_LABEL (label
, "LTRAMP", 0);
2658 name
= ggc_strdup (label
);
2659 symbol
= gen_rtx_SYMBOL_REF (Pmode
, name
);
2660 SYMBOL_REF_FLAGS (symbol
) = SYMBOL_FLAG_LOCAL
;
2662 initial_trampoline
= gen_const_mem (BLKmode
, symbol
);
2663 set_mem_align (initial_trampoline
, TRAMPOLINE_ALIGNMENT
);
2664 set_mem_size (initial_trampoline
, TRAMPOLINE_SIZE
);
2666 return initial_trampoline
;
2669 /* A and B are either alignments or offsets. Return the minimum alignment
2670 that may be assumed after adding the two together. */
2672 static inline unsigned
2673 min_align (unsigned int a
, unsigned int b
)
2675 return (a
| b
) & -(a
| b
);
2678 /* Return the assembler directive for creating a given kind of integer
2679 object. SIZE is the number of bytes in the object and ALIGNED_P
2680 indicates whether it is known to be aligned. Return NULL if the
2681 assembly dialect has no such directive.
2683 The returned string should be printed at the start of a new line and
2684 be followed immediately by the object's initial value. */
2687 integer_asm_op (int size
, int aligned_p
)
2689 struct asm_int_op
*ops
;
2692 ops
= &targetm
.asm_out
.aligned_op
;
2694 ops
= &targetm
.asm_out
.unaligned_op
;
2699 return targetm
.asm_out
.byte_op
;
2713 /* Use directive OP to assemble an integer object X. Print OP at the
2714 start of the line, followed immediately by the value of X. */
2717 assemble_integer_with_op (const char *op
, rtx x
)
2719 fputs (op
, asm_out_file
);
2720 output_addr_const (asm_out_file
, x
);
2721 fputc ('\n', asm_out_file
);
2724 /* The default implementation of the asm_out.integer target hook. */
2727 default_assemble_integer (rtx x ATTRIBUTE_UNUSED
,
2728 unsigned int size ATTRIBUTE_UNUSED
,
2729 int aligned_p ATTRIBUTE_UNUSED
)
2731 const char *op
= integer_asm_op (size
, aligned_p
);
2732 /* Avoid GAS bugs for large values. Specifically negative values whose
2733 absolute value fits in a bfd_vma, but not in a bfd_signed_vma. */
2734 if (size
> UNITS_PER_WORD
&& size
> POINTER_SIZE_UNITS
)
2736 return op
&& (assemble_integer_with_op (op
, x
), true);
2739 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
2740 the alignment of the integer in bits. Return 1 if we were able to output
2741 the constant, otherwise 0. We must be able to output the constant,
2742 if FORCE is nonzero. */
2745 assemble_integer (rtx x
, unsigned int size
, unsigned int align
, int force
)
2749 aligned_p
= (align
>= MIN (size
* BITS_PER_UNIT
, BIGGEST_ALIGNMENT
));
2751 /* See if the target hook can handle this kind of object. */
2752 if (targetm
.asm_out
.integer (x
, size
, aligned_p
))
2755 /* If the object is a multi-byte one, try splitting it up. Split
2756 it into words it if is multi-word, otherwise split it into bytes. */
2759 machine_mode omode
, imode
;
2760 unsigned int subalign
;
2761 unsigned int subsize
, i
;
2762 enum mode_class mclass
;
2764 subsize
= size
> UNITS_PER_WORD
? UNITS_PER_WORD
: 1;
2765 subalign
= MIN (align
, subsize
* BITS_PER_UNIT
);
2766 if (GET_CODE (x
) == CONST_FIXED
)
2767 mclass
= GET_MODE_CLASS (GET_MODE (x
));
2771 omode
= mode_for_size (subsize
* BITS_PER_UNIT
, mclass
, 0);
2772 imode
= mode_for_size (size
* BITS_PER_UNIT
, mclass
, 0);
2774 for (i
= 0; i
< size
; i
+= subsize
)
2776 rtx partial
= simplify_subreg (omode
, x
, imode
, i
);
2777 if (!partial
|| !assemble_integer (partial
, subsize
, subalign
, 0))
2783 /* If we've printed some of it, but not all of it, there's no going
2788 gcc_assert (!force
);
2794 assemble_real (REAL_VALUE_TYPE d
, machine_mode mode
, unsigned int align
)
2796 long data
[4] = {0, 0, 0, 0};
2798 int bitsize
, nelts
, nunits
, units_per
;
2800 /* This is hairy. We have a quantity of known size. real_to_target
2801 will put it into an array of *host* longs, 32 bits per element
2802 (even if long is more than 32 bits). We need to determine the
2803 number of array elements that are occupied (nelts) and the number
2804 of *target* min-addressable units that will be occupied in the
2805 object file (nunits). We cannot assume that 32 divides the
2806 mode's bitsize (size * BITS_PER_UNIT) evenly.
2808 size * BITS_PER_UNIT is used here to make sure that padding bits
2809 (which might appear at either end of the value; real_to_target
2810 will include the padding bits in its output array) are included. */
2812 nunits
= GET_MODE_SIZE (mode
);
2813 bitsize
= nunits
* BITS_PER_UNIT
;
2814 nelts
= CEIL (bitsize
, 32);
2815 units_per
= 32 / BITS_PER_UNIT
;
2817 real_to_target (data
, &d
, mode
);
2819 /* Put out the first word with the specified alignment. */
2820 assemble_integer (GEN_INT (data
[0]), MIN (nunits
, units_per
), align
, 1);
2821 nunits
-= units_per
;
2823 /* Subsequent words need only 32-bit alignment. */
2824 align
= min_align (align
, 32);
2826 for (i
= 1; i
< nelts
; i
++)
2828 assemble_integer (GEN_INT (data
[i
]), MIN (nunits
, units_per
), align
, 1);
2829 nunits
-= units_per
;
2833 /* Given an expression EXP with a constant value,
2834 reduce it to the sum of an assembler symbol and an integer.
2835 Store them both in the structure *VALUE.
2836 EXP must be reducible. */
2840 HOST_WIDE_INT offset
;
2844 decode_addr_const (tree exp
, struct addr_const
*value
)
2846 tree target
= TREE_OPERAND (exp
, 0);
2852 if (TREE_CODE (target
) == COMPONENT_REF
2853 && tree_fits_shwi_p (byte_position (TREE_OPERAND (target
, 1))))
2855 offset
+= int_byte_position (TREE_OPERAND (target
, 1));
2856 target
= TREE_OPERAND (target
, 0);
2858 else if (TREE_CODE (target
) == ARRAY_REF
2859 || TREE_CODE (target
) == ARRAY_RANGE_REF
)
2861 offset
+= (tree_to_uhwi (TYPE_SIZE_UNIT (TREE_TYPE (target
)))
2862 * tree_to_shwi (TREE_OPERAND (target
, 1)));
2863 target
= TREE_OPERAND (target
, 0);
2865 else if (TREE_CODE (target
) == MEM_REF
2866 && TREE_CODE (TREE_OPERAND (target
, 0)) == ADDR_EXPR
)
2868 offset
+= mem_ref_offset (target
).to_short_addr ();
2869 target
= TREE_OPERAND (TREE_OPERAND (target
, 0), 0);
2871 else if (TREE_CODE (target
) == INDIRECT_REF
2872 && TREE_CODE (TREE_OPERAND (target
, 0)) == NOP_EXPR
2873 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (target
, 0), 0))
2875 target
= TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (target
, 0), 0), 0);
2880 switch (TREE_CODE (target
))
2884 x
= DECL_RTL (target
);
2888 x
= gen_rtx_MEM (FUNCTION_MODE
,
2889 gen_rtx_LABEL_REF (Pmode
, force_label_rtx (target
)));
2898 x
= output_constant_def (target
, 1);
2905 gcc_assert (MEM_P (x
));
2909 value
->offset
= offset
;
2912 static GTY(()) hash_table
<tree_descriptor_hasher
> *const_desc_htab
;
2914 static void maybe_output_constant_def_contents (struct constant_descriptor_tree
*, int);
2916 /* Constant pool accessor function. */
2918 hash_table
<tree_descriptor_hasher
> *
2919 constant_pool_htab (void)
2921 return const_desc_htab
;
2924 /* Compute a hash code for a constant expression. */
2927 tree_descriptor_hasher::hash (constant_descriptor_tree
*ptr
)
2933 const_hash_1 (const tree exp
)
2938 enum tree_code code
= TREE_CODE (exp
);
2940 /* Either set P and LEN to the address and len of something to hash and
2941 exit the switch or return a value. */
2946 p
= (char *) &TREE_INT_CST_ELT (exp
, 0);
2947 len
= TREE_INT_CST_NUNITS (exp
) * sizeof (HOST_WIDE_INT
);
2951 return real_hash (TREE_REAL_CST_PTR (exp
));
2954 return fixed_hash (TREE_FIXED_CST_PTR (exp
));
2957 p
= TREE_STRING_POINTER (exp
);
2958 len
= TREE_STRING_LENGTH (exp
);
2962 return (const_hash_1 (TREE_REALPART (exp
)) * 5
2963 + const_hash_1 (TREE_IMAGPART (exp
)));
2969 hi
= 7 + VECTOR_CST_NELTS (exp
);
2971 for (i
= 0; i
< VECTOR_CST_NELTS (exp
); ++i
)
2972 hi
= hi
* 563 + const_hash_1 (VECTOR_CST_ELT (exp
, i
));
2979 unsigned HOST_WIDE_INT idx
;
2982 hi
= 5 + int_size_in_bytes (TREE_TYPE (exp
));
2984 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, value
)
2986 hi
= hi
* 603 + const_hash_1 (value
);
2994 struct addr_const value
;
2996 decode_addr_const (exp
, &value
);
2997 switch (GET_CODE (value
.base
))
3000 /* Don't hash the address of the SYMBOL_REF;
3001 only use the offset and the symbol name. */
3003 p
= XSTR (value
.base
, 0);
3004 for (i
= 0; p
[i
] != 0; i
++)
3005 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
3010 + CODE_LABEL_NUMBER (LABEL_REF_LABEL (value
.base
)) * 13);
3020 case POINTER_PLUS_EXPR
:
3022 return (const_hash_1 (TREE_OPERAND (exp
, 0)) * 9
3023 + const_hash_1 (TREE_OPERAND (exp
, 1)));
3026 return const_hash_1 (TREE_OPERAND (exp
, 0)) * 7 + 2;
3029 /* A language specific constant. Just hash the code. */
3033 /* Compute hashing function. */
3035 for (i
= 0; i
< len
; i
++)
3036 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
3041 /* Wrapper of compare_constant, for the htab interface. */
3043 tree_descriptor_hasher::equal (constant_descriptor_tree
*c1
,
3044 constant_descriptor_tree
*c2
)
3046 if (c1
->hash
!= c2
->hash
)
3048 return compare_constant (c1
->value
, c2
->value
);
3051 /* Compare t1 and t2, and return 1 only if they are known to result in
3052 the same bit pattern on output. */
3055 compare_constant (const tree t1
, const tree t2
)
3057 enum tree_code typecode
;
3059 if (t1
== NULL_TREE
)
3060 return t2
== NULL_TREE
;
3061 if (t2
== NULL_TREE
)
3064 if (TREE_CODE (t1
) != TREE_CODE (t2
))
3067 switch (TREE_CODE (t1
))
3070 /* Integer constants are the same only if the same width of type. */
3071 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
3073 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
)))
3075 return tree_int_cst_equal (t1
, t2
);
3078 /* Real constants are the same only if the same width of type. */
3079 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
3082 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1
), TREE_REAL_CST (t2
));
3085 /* Fixed constants are the same only if the same width of type. */
3086 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
3089 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1
), TREE_FIXED_CST (t2
));
3092 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
)))
3095 return (TREE_STRING_LENGTH (t1
) == TREE_STRING_LENGTH (t2
)
3096 && ! memcmp (TREE_STRING_POINTER (t1
), TREE_STRING_POINTER (t2
),
3097 TREE_STRING_LENGTH (t1
)));
3100 return (compare_constant (TREE_REALPART (t1
), TREE_REALPART (t2
))
3101 && compare_constant (TREE_IMAGPART (t1
), TREE_IMAGPART (t2
)));
3107 if (VECTOR_CST_NELTS (t1
) != VECTOR_CST_NELTS (t2
))
3110 for (i
= 0; i
< VECTOR_CST_NELTS (t1
); ++i
)
3111 if (!compare_constant (VECTOR_CST_ELT (t1
, i
),
3112 VECTOR_CST_ELT (t2
, i
)))
3120 vec
<constructor_elt
, va_gc
> *v1
, *v2
;
3121 unsigned HOST_WIDE_INT idx
;
3123 typecode
= TREE_CODE (TREE_TYPE (t1
));
3124 if (typecode
!= TREE_CODE (TREE_TYPE (t2
)))
3127 if (typecode
== ARRAY_TYPE
)
3129 HOST_WIDE_INT size_1
= int_size_in_bytes (TREE_TYPE (t1
));
3130 /* For arrays, check that the sizes all match. */
3131 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
))
3133 || size_1
!= int_size_in_bytes (TREE_TYPE (t2
)))
3138 /* For record and union constructors, require exact type
3140 if (TREE_TYPE (t1
) != TREE_TYPE (t2
))
3144 v1
= CONSTRUCTOR_ELTS (t1
);
3145 v2
= CONSTRUCTOR_ELTS (t2
);
3146 if (vec_safe_length (v1
) != vec_safe_length (v2
))
3149 for (idx
= 0; idx
< vec_safe_length (v1
); ++idx
)
3151 constructor_elt
*c1
= &(*v1
)[idx
];
3152 constructor_elt
*c2
= &(*v2
)[idx
];
3154 /* Check that each value is the same... */
3155 if (!compare_constant (c1
->value
, c2
->value
))
3157 /* ... and that they apply to the same fields! */
3158 if (typecode
== ARRAY_TYPE
)
3160 if (!compare_constant (c1
->index
, c2
->index
))
3165 if (c1
->index
!= c2
->index
)
3176 struct addr_const value1
, value2
;
3180 decode_addr_const (t1
, &value1
);
3181 decode_addr_const (t2
, &value2
);
3183 if (value1
.offset
!= value2
.offset
)
3186 code
= GET_CODE (value1
.base
);
3187 if (code
!= GET_CODE (value2
.base
))
3193 ret
= (strcmp (XSTR (value1
.base
, 0), XSTR (value2
.base
, 0)) == 0);
3197 ret
= (CODE_LABEL_NUMBER (LABEL_REF_LABEL (value1
.base
))
3198 == CODE_LABEL_NUMBER (LABEL_REF_LABEL (value2
.base
)));
3208 case POINTER_PLUS_EXPR
:
3211 return (compare_constant (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0))
3212 && compare_constant (TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1)));
3215 case VIEW_CONVERT_EXPR
:
3216 return compare_constant (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
3225 /* Return the section into which constant EXP should be placed. */
3228 get_constant_section (tree exp
, unsigned int align
)
3230 return targetm
.asm_out
.select_section (exp
,
3231 compute_reloc_for_constant (exp
),
3235 /* Return the size of constant EXP in bytes. */
3237 static HOST_WIDE_INT
3238 get_constant_size (tree exp
)
3242 size
= int_size_in_bytes (TREE_TYPE (exp
));
3243 if (TREE_CODE (exp
) == STRING_CST
)
3244 size
= MAX (TREE_STRING_LENGTH (exp
), size
);
3248 /* Subroutine of output_constant_def:
3249 No constant equal to EXP is known to have been output.
3250 Make a constant descriptor to enter EXP in the hash table.
3251 Assign the label number and construct RTL to refer to the
3252 constant's location in memory.
3253 Caller is responsible for updating the hash table. */
3255 static struct constant_descriptor_tree
*
3256 build_constant_desc (tree exp
)
3258 struct constant_descriptor_tree
*desc
;
3264 desc
= ggc_alloc
<constant_descriptor_tree
> ();
3267 /* Create a string containing the label name, in LABEL. */
3268 labelno
= const_labelno
++;
3269 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", labelno
);
3271 /* Construct the VAR_DECL associated with the constant. */
3272 decl
= build_decl (UNKNOWN_LOCATION
, VAR_DECL
, get_identifier (label
),
3274 DECL_ARTIFICIAL (decl
) = 1;
3275 DECL_IGNORED_P (decl
) = 1;
3276 TREE_READONLY (decl
) = 1;
3277 TREE_STATIC (decl
) = 1;
3278 TREE_ADDRESSABLE (decl
) = 1;
3279 /* We don't set the RTL yet as this would cause varpool to assume that the
3280 variable is referenced. Moreover, it would just be dropped in LTO mode.
3281 Instead we set the flag that will be recognized in make_decl_rtl. */
3282 DECL_IN_CONSTANT_POOL (decl
) = 1;
3283 DECL_INITIAL (decl
) = desc
->value
;
3284 /* ??? CONSTANT_ALIGNMENT hasn't been updated for vector types on most
3285 architectures so use DATA_ALIGNMENT as well, except for strings. */
3286 if (TREE_CODE (exp
) == STRING_CST
)
3288 #ifdef CONSTANT_ALIGNMENT
3289 DECL_ALIGN (decl
) = CONSTANT_ALIGNMENT (exp
, DECL_ALIGN (decl
));
3293 align_variable (decl
, 0);
3295 /* Now construct the SYMBOL_REF and the MEM. */
3296 if (use_object_blocks_p ())
3298 int align
= (TREE_CODE (decl
) == CONST_DECL
3299 || (TREE_CODE (decl
) == VAR_DECL
3300 && DECL_IN_CONSTANT_POOL (decl
))
3302 : symtab_node::get (decl
)->definition_alignment ());
3303 section
*sect
= get_constant_section (exp
, align
);
3304 symbol
= create_block_symbol (ggc_strdup (label
),
3305 get_block_for_section (sect
), -1);
3308 symbol
= gen_rtx_SYMBOL_REF (Pmode
, ggc_strdup (label
));
3309 SYMBOL_REF_FLAGS (symbol
) |= SYMBOL_FLAG_LOCAL
;
3310 SET_SYMBOL_REF_DECL (symbol
, decl
);
3311 TREE_CONSTANT_POOL_ADDRESS_P (symbol
) = 1;
3313 rtl
= gen_const_mem (TYPE_MODE (TREE_TYPE (exp
)), symbol
);
3314 set_mem_attributes (rtl
, exp
, 1);
3315 set_mem_alias_set (rtl
, 0);
3317 /* We cannot share RTX'es in pool entries.
3318 Mark this piece of RTL as required for unsharing. */
3319 RTX_FLAG (rtl
, used
) = 1;
3321 /* Set flags or add text to the name to record information, such as
3322 that it is a local symbol. If the name is changed, the macro
3323 ASM_OUTPUT_LABELREF will have to know how to strip this
3324 information. This call might invalidate our local variable
3325 SYMBOL; we can't use it afterward. */
3326 targetm
.encode_section_info (exp
, rtl
, true);
3333 /* Return an rtx representing a reference to constant data in memory
3334 for the constant expression EXP.
3336 If assembler code for such a constant has already been output,
3337 return an rtx to refer to it.
3338 Otherwise, output such a constant in memory
3339 and generate an rtx for it.
3341 If DEFER is nonzero, this constant can be deferred and output only
3342 if referenced in the function after all optimizations.
3344 `const_desc_table' records which constants already have label strings. */
3347 output_constant_def (tree exp
, int defer
)
3349 struct constant_descriptor_tree
*desc
;
3350 struct constant_descriptor_tree key
;
3352 /* Look up EXP in the table of constant descriptors. If we didn't find
3353 it, create a new one. */
3355 key
.hash
= const_hash_1 (exp
);
3356 constant_descriptor_tree
**loc
3357 = const_desc_htab
->find_slot_with_hash (&key
, key
.hash
, INSERT
);
3362 desc
= build_constant_desc (exp
);
3363 desc
->hash
= key
.hash
;
3367 maybe_output_constant_def_contents (desc
, defer
);
3371 /* Subroutine of output_constant_def: Decide whether or not we need to
3372 output the constant DESC now, and if so, do it. */
3374 maybe_output_constant_def_contents (struct constant_descriptor_tree
*desc
,
3377 rtx symbol
= XEXP (desc
->rtl
, 0);
3378 tree exp
= desc
->value
;
3380 if (flag_syntax_only
)
3383 if (TREE_ASM_WRITTEN (exp
))
3384 /* Already output; don't do it again. */
3387 /* We can always defer constants as long as the context allows
3391 /* Increment n_deferred_constants if it exists. It needs to be at
3392 least as large as the number of constants actually referred to
3393 by the function. If it's too small we'll stop looking too early
3394 and fail to emit constants; if it's too large we'll only look
3395 through the entire function when we could have stopped earlier. */
3397 n_deferred_constants
++;
3401 output_constant_def_contents (symbol
);
3404 /* Subroutine of output_constant_def_contents. Output the definition
3405 of constant EXP, which is pointed to by label LABEL. ALIGN is the
3406 constant's alignment in bits. */
3409 assemble_constant_contents (tree exp
, const char *label
, unsigned int align
)
3413 size
= get_constant_size (exp
);
3415 /* Do any machine/system dependent processing of the constant. */
3416 targetm
.asm_out
.declare_constant_name (asm_out_file
, label
, exp
, size
);
3418 /* Output the value of EXP. */
3419 output_constant (exp
, size
, align
);
3421 targetm
.asm_out
.decl_end ();
3424 /* We must output the constant data referred to by SYMBOL; do so. */
3427 output_constant_def_contents (rtx symbol
)
3429 tree decl
= SYMBOL_REF_DECL (symbol
);
3430 tree exp
= DECL_INITIAL (decl
);
3431 bool asan_protected
= false;
3433 /* Make sure any other constants whose addresses appear in EXP
3434 are assigned label numbers. */
3435 output_addressed_constants (exp
);
3437 /* We are no longer deferring this constant. */
3438 TREE_ASM_WRITTEN (decl
) = TREE_ASM_WRITTEN (exp
) = 1;
3440 if ((flag_sanitize
& SANITIZE_ADDRESS
)
3441 && TREE_CODE (exp
) == STRING_CST
3442 && asan_protect_global (exp
))
3444 asan_protected
= true;
3445 DECL_ALIGN (decl
) = MAX (DECL_ALIGN (decl
),
3446 ASAN_RED_ZONE_SIZE
* BITS_PER_UNIT
);
3449 /* If the constant is part of an object block, make sure that the
3450 decl has been positioned within its block, but do not write out
3451 its definition yet. output_object_blocks will do that later. */
3452 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol
) && SYMBOL_REF_BLOCK (symbol
))
3453 place_block_symbol (symbol
);
3456 int align
= (TREE_CODE (decl
) == CONST_DECL
3457 || (TREE_CODE (decl
) == VAR_DECL
3458 && DECL_IN_CONSTANT_POOL (decl
))
3460 : symtab_node::get (decl
)->definition_alignment ());
3461 switch_to_section (get_constant_section (exp
, align
));
3462 if (align
> BITS_PER_UNIT
)
3463 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
3464 assemble_constant_contents (exp
, XSTR (symbol
, 0), align
);
3467 HOST_WIDE_INT size
= get_constant_size (exp
);
3468 assemble_zeros (asan_red_zone_size (size
));
3473 /* Look up EXP in the table of constant descriptors. Return the rtl
3474 if it has been emitted, else null. */
3477 lookup_constant_def (tree exp
)
3479 struct constant_descriptor_tree key
;
3482 key
.hash
= const_hash_1 (exp
);
3483 constant_descriptor_tree
*desc
3484 = const_desc_htab
->find_with_hash (&key
, key
.hash
);
3486 return (desc
? desc
->rtl
: NULL_RTX
);
3489 /* Return a tree representing a reference to constant data in memory
3490 for the constant expression EXP.
3492 This is the counterpart of output_constant_def at the Tree level. */
3495 tree_output_constant_def (tree exp
)
3497 struct constant_descriptor_tree
*desc
, key
;
3500 /* Look up EXP in the table of constant descriptors. If we didn't find
3501 it, create a new one. */
3503 key
.hash
= const_hash_1 (exp
);
3504 constant_descriptor_tree
**loc
3505 = const_desc_htab
->find_slot_with_hash (&key
, key
.hash
, INSERT
);
3510 desc
= build_constant_desc (exp
);
3511 desc
->hash
= key
.hash
;
3515 decl
= SYMBOL_REF_DECL (XEXP (desc
->rtl
, 0));
3516 varpool_node::finalize_decl (decl
);
3520 struct GTY((chain_next ("%h.next"), for_user
)) constant_descriptor_rtx
{
3521 struct constant_descriptor_rtx
*next
;
3525 HOST_WIDE_INT offset
;
3533 struct const_rtx_desc_hasher
: ggc_ptr_hash
<constant_descriptor_rtx
>
3535 static hashval_t
hash (constant_descriptor_rtx
*);
3536 static bool equal (constant_descriptor_rtx
*, constant_descriptor_rtx
*);
3539 /* Used in the hash tables to avoid outputting the same constant
3540 twice. Unlike 'struct constant_descriptor_tree', RTX constants
3541 are output once per function, not once per file. */
3542 /* ??? Only a few targets need per-function constant pools. Most
3543 can use one per-file pool. Should add a targetm bit to tell the
3546 struct GTY(()) rtx_constant_pool
{
3547 /* Pointers to first and last constant in pool, as ordered by offset. */
3548 struct constant_descriptor_rtx
*first
;
3549 struct constant_descriptor_rtx
*last
;
3551 /* Hash facility for making memory-constants from constant rtl-expressions.
3552 It is used on RISC machines where immediate integer arguments and
3553 constant addresses are restricted so that such constants must be stored
3555 hash_table
<const_rtx_desc_hasher
> *const_rtx_htab
;
3557 /* Current offset in constant pool (does not include any
3558 machine-specific header). */
3559 HOST_WIDE_INT offset
;
3562 /* Hash and compare functions for const_rtx_htab. */
3565 const_rtx_desc_hasher::hash (constant_descriptor_rtx
*desc
)
3571 const_rtx_desc_hasher::equal (constant_descriptor_rtx
*x
,
3572 constant_descriptor_rtx
*y
)
3574 if (x
->mode
!= y
->mode
)
3576 return rtx_equal_p (x
->constant
, y
->constant
);
3579 /* Hash one component of a constant. */
3582 const_rtx_hash_1 (const_rtx x
)
3584 unsigned HOST_WIDE_INT hwi
;
3590 code
= GET_CODE (x
);
3591 mode
= GET_MODE (x
);
3592 h
= (hashval_t
) code
* 1048573 + mode
;
3601 int shift
= sizeof (hashval_t
) * CHAR_BIT
;
3602 const int n
= sizeof (HOST_WIDE_INT
) / sizeof (hashval_t
);
3604 h
^= (hashval_t
) hwi
;
3605 for (i
= 1; i
< n
; ++i
)
3608 h
^= (hashval_t
) hwi
;
3613 case CONST_WIDE_INT
:
3614 hwi
= GET_MODE_PRECISION (mode
);
3616 for (i
= 0; i
< CONST_WIDE_INT_NUNITS (x
); i
++)
3617 hwi
^= CONST_WIDE_INT_ELT (x
, i
);
3622 if (TARGET_SUPPORTS_WIDE_INT
== 0 && mode
== VOIDmode
)
3624 hwi
= CONST_DOUBLE_LOW (x
) ^ CONST_DOUBLE_HIGH (x
);
3628 h
^= real_hash (CONST_DOUBLE_REAL_VALUE (x
));
3632 h
^= fixed_hash (CONST_FIXED_VALUE (x
));
3636 h
^= htab_hash_string (XSTR (x
, 0));
3640 h
= h
* 251 + CODE_LABEL_NUMBER (LABEL_REF_LABEL (x
));
3644 case UNSPEC_VOLATILE
:
3645 h
= h
* 251 + XINT (x
, 1);
3655 /* Compute a hash value for X, which should be a constant. */
3658 const_rtx_hash (rtx x
)
3661 subrtx_iterator::array_type array
;
3662 FOR_EACH_SUBRTX (iter
, array
, x
, ALL
)
3663 h
= h
* 509 + const_rtx_hash_1 (*iter
);
3668 /* Create and return a new rtx constant pool. */
3670 static struct rtx_constant_pool
*
3671 create_constant_pool (void)
3673 struct rtx_constant_pool
*pool
;
3675 pool
= ggc_alloc
<rtx_constant_pool
> ();
3676 pool
->const_rtx_htab
= hash_table
<const_rtx_desc_hasher
>::create_ggc (31);
3683 /* Initialize constant pool hashing for a new function. */
3686 init_varasm_status (void)
3688 crtl
->varasm
.pool
= create_constant_pool ();
3689 crtl
->varasm
.deferred_constants
= 0;
3692 /* Given a MINUS expression, simplify it if both sides
3693 include the same symbol. */
3696 simplify_subtraction (rtx x
)
3698 rtx r
= simplify_rtx (x
);
3702 /* Given a constant rtx X, make (or find) a memory constant for its value
3703 and return a MEM rtx to refer to it in memory. */
3706 force_const_mem (machine_mode mode
, rtx x
)
3708 struct constant_descriptor_rtx
*desc
, tmp
;
3709 struct rtx_constant_pool
*pool
;
3714 constant_descriptor_rtx
**slot
;
3716 /* If we're not allowed to drop X into the constant pool, don't. */
3717 if (targetm
.cannot_force_const_mem (mode
, x
))
3720 /* Record that this function has used a constant pool entry. */
3721 crtl
->uses_const_pool
= 1;
3723 /* Decide which pool to use. */
3724 pool
= (targetm
.use_blocks_for_constant_p (mode
, x
)
3725 ? shared_constant_pool
3726 : crtl
->varasm
.pool
);
3728 /* Lookup the value in the hashtable. */
3731 hash
= const_rtx_hash (x
);
3732 slot
= pool
->const_rtx_htab
->find_slot_with_hash (&tmp
, hash
, INSERT
);
3735 /* If the constant was already present, return its memory. */
3737 return copy_rtx (desc
->mem
);
3739 /* Otherwise, create a new descriptor. */
3740 desc
= ggc_alloc
<constant_descriptor_rtx
> ();
3743 /* Align the location counter as required by EXP's data type. */
3744 align
= GET_MODE_ALIGNMENT (mode
== VOIDmode
? word_mode
: mode
);
3745 #ifdef CONSTANT_ALIGNMENT
3747 tree type
= lang_hooks
.types
.type_for_mode (mode
, 0);
3748 if (type
!= NULL_TREE
)
3749 align
= CONSTANT_ALIGNMENT (make_tree (type
, x
), align
);
3753 pool
->offset
+= (align
/ BITS_PER_UNIT
) - 1;
3754 pool
->offset
&= ~ ((align
/ BITS_PER_UNIT
) - 1);
3757 desc
->constant
= copy_rtx (tmp
.constant
);
3758 desc
->offset
= pool
->offset
;
3761 desc
->align
= align
;
3762 desc
->labelno
= const_labelno
;
3765 pool
->offset
+= GET_MODE_SIZE (mode
);
3767 pool
->last
->next
= desc
;
3769 pool
->first
= pool
->last
= desc
;
3772 /* Create a string containing the label name, in LABEL. */
3773 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", const_labelno
);
3776 /* Construct the SYMBOL_REF. Make sure to mark it as belonging to
3777 the constants pool. */
3778 if (use_object_blocks_p () && targetm
.use_blocks_for_constant_p (mode
, x
))
3780 section
*sect
= targetm
.asm_out
.select_rtx_section (mode
, x
, align
);
3781 symbol
= create_block_symbol (ggc_strdup (label
),
3782 get_block_for_section (sect
), -1);
3785 symbol
= gen_rtx_SYMBOL_REF (Pmode
, ggc_strdup (label
));
3787 SYMBOL_REF_FLAGS (symbol
) |= SYMBOL_FLAG_LOCAL
;
3788 CONSTANT_POOL_ADDRESS_P (symbol
) = 1;
3789 SET_SYMBOL_REF_CONSTANT (symbol
, desc
);
3791 /* Construct the MEM. */
3792 desc
->mem
= def
= gen_const_mem (mode
, symbol
);
3793 set_mem_attributes (def
, lang_hooks
.types
.type_for_mode (mode
, 0), 1);
3794 set_mem_align (def
, align
);
3796 /* If we're dropping a label to the constant pool, make sure we
3798 if (GET_CODE (x
) == LABEL_REF
)
3799 LABEL_PRESERVE_P (XEXP (x
, 0)) = 1;
3801 return copy_rtx (def
);
3804 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3807 get_pool_constant (const_rtx addr
)
3809 return SYMBOL_REF_CONSTANT (addr
)->constant
;
3812 /* Given a constant pool SYMBOL_REF, return the corresponding constant
3813 and whether it has been output or not. */
3816 get_pool_constant_mark (rtx addr
, bool *pmarked
)
3818 struct constant_descriptor_rtx
*desc
;
3820 desc
= SYMBOL_REF_CONSTANT (addr
);
3821 *pmarked
= (desc
->mark
!= 0);
3822 return desc
->constant
;
3825 /* Similar, return the mode. */
3828 get_pool_mode (const_rtx addr
)
3830 return SYMBOL_REF_CONSTANT (addr
)->mode
;
3833 /* Return the size of the constant pool. */
3836 get_pool_size (void)
3838 return crtl
->varasm
.pool
->offset
;
3841 /* Worker function for output_constant_pool_1. Emit assembly for X
3842 in MODE with known alignment ALIGN. */
3845 output_constant_pool_2 (machine_mode mode
, rtx x
, unsigned int align
)
3847 switch (GET_MODE_CLASS (mode
))
3850 case MODE_DECIMAL_FLOAT
:
3854 gcc_assert (CONST_DOUBLE_AS_FLOAT_P (x
));
3855 REAL_VALUE_FROM_CONST_DOUBLE (r
, x
);
3856 assemble_real (r
, mode
, align
);
3861 case MODE_PARTIAL_INT
:
3866 case MODE_POINTER_BOUNDS
:
3867 assemble_integer (x
, GET_MODE_SIZE (mode
), align
, 1);
3870 case MODE_VECTOR_FLOAT
:
3871 case MODE_VECTOR_INT
:
3872 case MODE_VECTOR_FRACT
:
3873 case MODE_VECTOR_UFRACT
:
3874 case MODE_VECTOR_ACCUM
:
3875 case MODE_VECTOR_UACCUM
:
3878 machine_mode submode
= GET_MODE_INNER (mode
);
3879 unsigned int subalign
= MIN (align
, GET_MODE_BITSIZE (submode
));
3881 gcc_assert (GET_CODE (x
) == CONST_VECTOR
);
3882 units
= CONST_VECTOR_NUNITS (x
);
3884 for (i
= 0; i
< units
; i
++)
3886 rtx elt
= CONST_VECTOR_ELT (x
, i
);
3887 output_constant_pool_2 (submode
, elt
, i
? subalign
: align
);
3897 /* Worker function for output_constant_pool. Emit constant DESC,
3898 giving it ALIGN bits of alignment. */
3901 output_constant_pool_1 (struct constant_descriptor_rtx
*desc
,
3908 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3909 whose CODE_LABEL has been deleted. This can occur if a jump table
3910 is eliminated by optimization. If so, write a constant of zero
3911 instead. Note that this can also happen by turning the
3912 CODE_LABEL into a NOTE. */
3913 /* ??? This seems completely and utterly wrong. Certainly it's
3914 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3915 functioning even with rtx_insn::deleted and friends. */
3918 switch (GET_CODE (tmp
))
3921 if (GET_CODE (XEXP (tmp
, 0)) != PLUS
3922 || GET_CODE (XEXP (XEXP (tmp
, 0), 0)) != LABEL_REF
)
3924 tmp
= XEXP (XEXP (tmp
, 0), 0);
3928 tmp
= LABEL_REF_LABEL (tmp
);
3929 gcc_assert (!as_a
<rtx_insn
*> (tmp
)->deleted ());
3930 gcc_assert (!NOTE_P (tmp
)
3931 || NOTE_KIND (tmp
) != NOTE_INSN_DELETED
);
3938 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3939 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file
, x
, desc
->mode
,
3940 align
, desc
->labelno
, done
);
3943 assemble_align (align
);
3945 /* Output the label. */
3946 targetm
.asm_out
.internal_label (asm_out_file
, "LC", desc
->labelno
);
3949 Pass actual alignment value while emitting string constant to asm code
3950 as function 'output_constant_pool_1' explicitly passes the alignment as 1
3951 assuming that the data is already aligned which prevents the generation
3952 of fix-up table entries. */
3953 output_constant_pool_2 (desc
->mode
, x
, desc
->align
);
3955 /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
3956 sections have proper size. */
3957 if (align
> GET_MODE_BITSIZE (desc
->mode
)
3959 && (in_section
->common
.flags
& SECTION_MERGE
))
3960 assemble_align (align
);
3962 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3968 /* Mark all constants that are referenced by SYMBOL_REFs in X.
3969 Emit referenced deferred strings. */
3972 mark_constants_in_pattern (rtx insn
)
3974 subrtx_iterator::array_type array
;
3975 FOR_EACH_SUBRTX (iter
, array
, PATTERN (insn
), ALL
)
3977 const_rtx x
= *iter
;
3978 if (GET_CODE (x
) == SYMBOL_REF
)
3980 if (CONSTANT_POOL_ADDRESS_P (x
))
3982 struct constant_descriptor_rtx
*desc
= SYMBOL_REF_CONSTANT (x
);
3983 if (desc
->mark
== 0)
3986 iter
.substitute (desc
->constant
);
3989 else if (TREE_CONSTANT_POOL_ADDRESS_P (x
))
3991 tree decl
= SYMBOL_REF_DECL (x
);
3992 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl
)))
3994 n_deferred_constants
--;
3995 output_constant_def_contents (CONST_CAST_RTX (x
));
4002 /* Look through appropriate parts of INSN, marking all entries in the
4003 constant pool which are actually being used. Entries that are only
4004 referenced by other constants are also marked as used. Emit
4005 deferred strings that are used. */
4008 mark_constants (rtx_insn
*insn
)
4013 /* Insns may appear inside a SEQUENCE. Only check the patterns of
4014 insns, not any notes that may be attached. We don't want to mark
4015 a constant just because it happens to appear in a REG_EQUIV note. */
4016 if (rtx_sequence
*seq
= dyn_cast
<rtx_sequence
*> (PATTERN (insn
)))
4018 int i
, n
= seq
->len ();
4019 for (i
= 0; i
< n
; ++i
)
4021 rtx subinsn
= seq
->element (i
);
4022 if (INSN_P (subinsn
))
4023 mark_constants_in_pattern (subinsn
);
4027 mark_constants_in_pattern (insn
);
4030 /* Look through the instructions for this function, and mark all the
4031 entries in POOL which are actually being used. Emit deferred constants
4032 which have indeed been used. */
4035 mark_constant_pool (void)
4039 if (!crtl
->uses_const_pool
&& n_deferred_constants
== 0)
4042 for (insn
= get_insns (); insn
; insn
= NEXT_INSN (insn
))
4043 mark_constants (insn
);
4046 /* Write all the constants in POOL. */
4049 output_constant_pool_contents (struct rtx_constant_pool
*pool
)
4051 struct constant_descriptor_rtx
*desc
;
4053 for (desc
= pool
->first
; desc
; desc
= desc
->next
)
4056 /* If the constant is part of an object_block, make sure that
4057 the constant has been positioned within its block, but do not
4058 write out its definition yet. output_object_blocks will do
4060 if (SYMBOL_REF_HAS_BLOCK_INFO_P (desc
->sym
)
4061 && SYMBOL_REF_BLOCK (desc
->sym
))
4062 place_block_symbol (desc
->sym
);
4065 switch_to_section (targetm
.asm_out
.select_rtx_section
4066 (desc
->mode
, desc
->constant
, desc
->align
));
4067 output_constant_pool_1 (desc
, desc
->align
);
4072 /* Mark all constants that are used in the current function, then write
4073 out the function's private constant pool. */
4076 output_constant_pool (const char *fnname ATTRIBUTE_UNUSED
,
4077 tree fndecl ATTRIBUTE_UNUSED
)
4079 struct rtx_constant_pool
*pool
= crtl
->varasm
.pool
;
4081 /* It is possible for gcc to call force_const_mem and then to later
4082 discard the instructions which refer to the constant. In such a
4083 case we do not need to output the constant. */
4084 mark_constant_pool ();
4086 #ifdef ASM_OUTPUT_POOL_PROLOGUE
4087 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file
, fnname
, fndecl
, pool
->offset
);
4090 output_constant_pool_contents (pool
);
4092 #ifdef ASM_OUTPUT_POOL_EPILOGUE
4093 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file
, fnname
, fndecl
, pool
->offset
);
4097 /* Write the contents of the shared constant pool. */
4100 output_shared_constant_pool (void)
4102 output_constant_pool_contents (shared_constant_pool
);
4105 /* Determine what kind of relocations EXP may need. */
4108 compute_reloc_for_constant (tree exp
)
4110 int reloc
= 0, reloc2
;
4113 switch (TREE_CODE (exp
))
4117 /* Go inside any operations that get_inner_reference can handle and see
4118 if what's inside is a constant: no need to do anything here for
4119 addresses of variables or functions. */
4120 for (tem
= TREE_OPERAND (exp
, 0); handled_component_p (tem
);
4121 tem
= TREE_OPERAND (tem
, 0))
4124 if (TREE_CODE (tem
) == MEM_REF
4125 && TREE_CODE (TREE_OPERAND (tem
, 0)) == ADDR_EXPR
)
4127 reloc
= compute_reloc_for_constant (TREE_OPERAND (tem
, 0));
4131 if (!targetm
.binds_local_p (tem
))
4138 case POINTER_PLUS_EXPR
:
4139 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
4140 reloc
|= compute_reloc_for_constant (TREE_OPERAND (exp
, 1));
4144 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
4145 reloc2
= compute_reloc_for_constant (TREE_OPERAND (exp
, 1));
4146 /* The difference of two local labels is computable at link time. */
4147 if (reloc
== 1 && reloc2
== 1)
4154 case VIEW_CONVERT_EXPR
:
4155 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
4160 unsigned HOST_WIDE_INT idx
;
4161 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, tem
)
4163 reloc
|= compute_reloc_for_constant (tem
);
4173 /* Find all the constants whose addresses are referenced inside of EXP,
4174 and make sure assembler code with a label has been output for each one.
4175 Indicate whether an ADDR_EXPR has been encountered. */
4178 output_addressed_constants (tree exp
)
4182 switch (TREE_CODE (exp
))
4186 /* Go inside any operations that get_inner_reference can handle and see
4187 if what's inside is a constant: no need to do anything here for
4188 addresses of variables or functions. */
4189 for (tem
= TREE_OPERAND (exp
, 0); handled_component_p (tem
);
4190 tem
= TREE_OPERAND (tem
, 0))
4193 /* If we have an initialized CONST_DECL, retrieve the initializer. */
4194 if (TREE_CODE (tem
) == CONST_DECL
&& DECL_INITIAL (tem
))
4195 tem
= DECL_INITIAL (tem
);
4197 if (CONSTANT_CLASS_P (tem
) || TREE_CODE (tem
) == CONSTRUCTOR
)
4198 output_constant_def (tem
, 0);
4200 if (TREE_CODE (tem
) == MEM_REF
)
4201 output_addressed_constants (TREE_OPERAND (tem
, 0));
4205 case POINTER_PLUS_EXPR
:
4207 output_addressed_constants (TREE_OPERAND (exp
, 1));
4211 case VIEW_CONVERT_EXPR
:
4212 output_addressed_constants (TREE_OPERAND (exp
, 0));
4217 unsigned HOST_WIDE_INT idx
;
4218 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, tem
)
4220 output_addressed_constants (tem
);
4229 /* Whether a constructor CTOR is a valid static constant initializer if all
4230 its elements are. This used to be internal to initializer_constant_valid_p
4231 and has been exposed to let other functions like categorize_ctor_elements
4232 evaluate the property while walking a constructor for other purposes. */
4235 constructor_static_from_elts_p (const_tree ctor
)
4237 return (TREE_CONSTANT (ctor
)
4238 && (TREE_CODE (TREE_TYPE (ctor
)) == UNION_TYPE
4239 || TREE_CODE (TREE_TYPE (ctor
)) == RECORD_TYPE
4240 || TREE_CODE (TREE_TYPE (ctor
)) == ARRAY_TYPE
));
4243 static tree
initializer_constant_valid_p_1 (tree value
, tree endtype
,
4246 /* A subroutine of initializer_constant_valid_p. VALUE is a MINUS_EXPR,
4247 PLUS_EXPR or POINTER_PLUS_EXPR. This looks for cases of VALUE
4248 which are valid when ENDTYPE is an integer of any size; in
4249 particular, this does not accept a pointer minus a constant. This
4250 returns null_pointer_node if the VALUE is an absolute constant
4251 which can be used to initialize a static variable. Otherwise it
4255 narrowing_initializer_constant_valid_p (tree value
, tree endtype
, tree
*cache
)
4259 if (!INTEGRAL_TYPE_P (endtype
))
4262 op0
= TREE_OPERAND (value
, 0);
4263 op1
= TREE_OPERAND (value
, 1);
4265 /* Like STRIP_NOPS except allow the operand mode to widen. This
4266 works around a feature of fold that simplifies (int)(p1 - p2) to
4267 ((int)p1 - (int)p2) under the theory that the narrower operation
4270 while (CONVERT_EXPR_P (op0
)
4271 || TREE_CODE (op0
) == NON_LVALUE_EXPR
)
4273 tree inner
= TREE_OPERAND (op0
, 0);
4274 if (inner
== error_mark_node
4275 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner
)))
4276 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0
)))
4277 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner
)))))
4282 while (CONVERT_EXPR_P (op1
)
4283 || TREE_CODE (op1
) == NON_LVALUE_EXPR
)
4285 tree inner
= TREE_OPERAND (op1
, 0);
4286 if (inner
== error_mark_node
4287 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner
)))
4288 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op1
)))
4289 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner
)))))
4294 op0
= initializer_constant_valid_p_1 (op0
, endtype
, cache
);
4298 op1
= initializer_constant_valid_p_1 (op1
, endtype
,
4299 cache
? cache
+ 2 : NULL
);
4300 /* Both initializers must be known. */
4304 && (op0
== null_pointer_node
4305 || TREE_CODE (value
) == MINUS_EXPR
))
4306 return null_pointer_node
;
4308 /* Support differences between labels. */
4309 if (TREE_CODE (op0
) == LABEL_DECL
4310 && TREE_CODE (op1
) == LABEL_DECL
)
4311 return null_pointer_node
;
4313 if (TREE_CODE (op0
) == STRING_CST
4314 && TREE_CODE (op1
) == STRING_CST
4315 && operand_equal_p (op0
, op1
, 1))
4316 return null_pointer_node
;
4322 /* Helper function of initializer_constant_valid_p.
4323 Return nonzero if VALUE is a valid constant-valued expression
4324 for use in initializing a static variable; one that can be an
4325 element of a "constant" initializer.
4327 Return null_pointer_node if the value is absolute;
4328 if it is relocatable, return the variable that determines the relocation.
4329 We assume that VALUE has been folded as much as possible;
4330 therefore, we do not need to check for such things as
4331 arithmetic-combinations of integers.
4333 Use CACHE (pointer to 2 tree values) for caching if non-NULL. */
4336 initializer_constant_valid_p_1 (tree value
, tree endtype
, tree
*cache
)
4340 switch (TREE_CODE (value
))
4343 if (constructor_static_from_elts_p (value
))
4345 unsigned HOST_WIDE_INT idx
;
4347 bool absolute
= true;
4349 if (cache
&& cache
[0] == value
)
4351 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value
), idx
, elt
)
4354 reloc
= initializer_constant_valid_p_1 (elt
, TREE_TYPE (elt
),
4361 cache
[1] = NULL_TREE
;
4365 if (reloc
!= null_pointer_node
)
4368 /* For a non-absolute relocation, there is no single
4369 variable that can be "the variable that determines the
4374 cache
[1] = absolute
? null_pointer_node
: error_mark_node
;
4376 return absolute
? null_pointer_node
: error_mark_node
;
4379 return TREE_STATIC (value
) ? null_pointer_node
: NULL_TREE
;
4387 return null_pointer_node
;
4392 tree op0
= staticp (TREE_OPERAND (value
, 0));
4395 /* "&(*a).f" is like unto pointer arithmetic. If "a" turns out
4396 to be a constant, this is old-skool offsetof-like nonsense. */
4397 if (TREE_CODE (op0
) == INDIRECT_REF
4398 && TREE_CONSTANT (TREE_OPERAND (op0
, 0)))
4399 return null_pointer_node
;
4400 /* Taking the address of a nested function involves a trampoline,
4401 unless we don't need or want one. */
4402 if (TREE_CODE (op0
) == FUNCTION_DECL
4403 && DECL_STATIC_CHAIN (op0
)
4404 && !TREE_NO_TRAMPOLINE (value
))
4406 /* "&{...}" requires a temporary to hold the constructed
4408 if (TREE_CODE (op0
) == CONSTRUCTOR
)
4414 case NON_LVALUE_EXPR
:
4415 return initializer_constant_valid_p_1 (TREE_OPERAND (value
, 0),
4418 case VIEW_CONVERT_EXPR
:
4420 tree src
= TREE_OPERAND (value
, 0);
4421 tree src_type
= TREE_TYPE (src
);
4422 tree dest_type
= TREE_TYPE (value
);
4424 /* Allow view-conversions from aggregate to non-aggregate type only
4425 if the bit pattern is fully preserved afterwards; otherwise, the
4426 RTL expander won't be able to apply a subsequent transformation
4427 to the underlying constructor. */
4428 if (AGGREGATE_TYPE_P (src_type
) && !AGGREGATE_TYPE_P (dest_type
))
4430 if (TYPE_MODE (endtype
) == TYPE_MODE (dest_type
))
4431 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4436 /* Allow all other kinds of view-conversion. */
4437 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4442 tree src
= TREE_OPERAND (value
, 0);
4443 tree src_type
= TREE_TYPE (src
);
4444 tree dest_type
= TREE_TYPE (value
);
4446 /* Allow conversions between pointer types, floating-point
4447 types, and offset types. */
4448 if ((POINTER_TYPE_P (dest_type
) && POINTER_TYPE_P (src_type
))
4449 || (FLOAT_TYPE_P (dest_type
) && FLOAT_TYPE_P (src_type
))
4450 || (TREE_CODE (dest_type
) == OFFSET_TYPE
4451 && TREE_CODE (src_type
) == OFFSET_TYPE
))
4452 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4454 /* Allow length-preserving conversions between integer types. */
4455 if (INTEGRAL_TYPE_P (dest_type
) && INTEGRAL_TYPE_P (src_type
)
4456 && (TYPE_PRECISION (dest_type
) == TYPE_PRECISION (src_type
)))
4457 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4459 /* Allow conversions between other integer types only if
4461 if (INTEGRAL_TYPE_P (dest_type
) && INTEGRAL_TYPE_P (src_type
))
4463 tree inner
= initializer_constant_valid_p_1 (src
, endtype
, cache
);
4464 if (inner
== null_pointer_node
)
4465 return null_pointer_node
;
4469 /* Allow (int) &foo provided int is as wide as a pointer. */
4470 if (INTEGRAL_TYPE_P (dest_type
) && POINTER_TYPE_P (src_type
)
4471 && (TYPE_PRECISION (dest_type
) >= TYPE_PRECISION (src_type
)))
4472 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4474 /* Likewise conversions from int to pointers, but also allow
4475 conversions from 0. */
4476 if ((POINTER_TYPE_P (dest_type
)
4477 || TREE_CODE (dest_type
) == OFFSET_TYPE
)
4478 && INTEGRAL_TYPE_P (src_type
))
4480 if (TREE_CODE (src
) == INTEGER_CST
4481 && TYPE_PRECISION (dest_type
) >= TYPE_PRECISION (src_type
))
4482 return null_pointer_node
;
4483 if (integer_zerop (src
))
4484 return null_pointer_node
;
4485 else if (TYPE_PRECISION (dest_type
) <= TYPE_PRECISION (src_type
))
4486 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4489 /* Allow conversions to struct or union types if the value
4491 if (TREE_CODE (dest_type
) == RECORD_TYPE
4492 || TREE_CODE (dest_type
) == UNION_TYPE
)
4493 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4497 case POINTER_PLUS_EXPR
:
4499 /* Any valid floating-point constants will have been folded by now;
4500 with -frounding-math we hit this with addition of two constants. */
4501 if (TREE_CODE (endtype
) == REAL_TYPE
)
4503 if (cache
&& cache
[0] == value
)
4505 if (! INTEGRAL_TYPE_P (endtype
)
4506 || TYPE_PRECISION (endtype
) >= TYPE_PRECISION (TREE_TYPE (value
)))
4508 tree ncache
[4] = { NULL_TREE
, NULL_TREE
, NULL_TREE
, NULL_TREE
};
4510 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 0),
4513 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 1),
4514 endtype
, ncache
+ 2);
4515 /* If either term is absolute, use the other term's relocation. */
4516 if (valid0
== null_pointer_node
)
4518 else if (valid1
== null_pointer_node
)
4520 /* Support narrowing pointer differences. */
4522 ret
= narrowing_initializer_constant_valid_p (value
, endtype
,
4526 /* Support narrowing pointer differences. */
4527 ret
= narrowing_initializer_constant_valid_p (value
, endtype
, NULL
);
4536 if (TREE_CODE (endtype
) == REAL_TYPE
)
4538 if (cache
&& cache
[0] == value
)
4540 if (! INTEGRAL_TYPE_P (endtype
)
4541 || TYPE_PRECISION (endtype
) >= TYPE_PRECISION (TREE_TYPE (value
)))
4543 tree ncache
[4] = { NULL_TREE
, NULL_TREE
, NULL_TREE
, NULL_TREE
};
4545 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 0),
4548 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 1),
4549 endtype
, ncache
+ 2);
4550 /* Win if second argument is absolute. */
4551 if (valid1
== null_pointer_node
)
4553 /* Win if both arguments have the same relocation.
4554 Then the value is absolute. */
4555 else if (valid0
== valid1
&& valid0
!= 0)
4556 ret
= null_pointer_node
;
4557 /* Since GCC guarantees that string constants are unique in the
4558 generated code, a subtraction between two copies of the same
4559 constant string is absolute. */
4560 else if (valid0
&& TREE_CODE (valid0
) == STRING_CST
4561 && valid1
&& TREE_CODE (valid1
) == STRING_CST
4562 && operand_equal_p (valid0
, valid1
, 1))
4563 ret
= null_pointer_node
;
4564 /* Support narrowing differences. */
4566 ret
= narrowing_initializer_constant_valid_p (value
, endtype
,
4570 /* Support narrowing differences. */
4571 ret
= narrowing_initializer_constant_valid_p (value
, endtype
, NULL
);
4586 /* Return nonzero if VALUE is a valid constant-valued expression
4587 for use in initializing a static variable; one that can be an
4588 element of a "constant" initializer.
4590 Return null_pointer_node if the value is absolute;
4591 if it is relocatable, return the variable that determines the relocation.
4592 We assume that VALUE has been folded as much as possible;
4593 therefore, we do not need to check for such things as
4594 arithmetic-combinations of integers. */
4596 initializer_constant_valid_p (tree value
, tree endtype
)
4598 return initializer_constant_valid_p_1 (value
, endtype
, NULL
);
4601 /* Return true if VALUE is a valid constant-valued expression
4602 for use in initializing a static bit-field; one that can be
4603 an element of a "constant" initializer. */
4606 initializer_constant_valid_for_bitfield_p (tree value
)
4608 /* For bitfields we support integer constants or possibly nested aggregates
4610 switch (TREE_CODE (value
))
4614 unsigned HOST_WIDE_INT idx
;
4617 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value
), idx
, elt
)
4618 if (!initializer_constant_valid_for_bitfield_p (elt
))
4627 case VIEW_CONVERT_EXPR
:
4628 case NON_LVALUE_EXPR
:
4630 initializer_constant_valid_for_bitfield_p (TREE_OPERAND (value
, 0));
4639 /* output_constructor outer state of relevance in recursive calls, typically
4640 for nested aggregate bitfields. */
4643 unsigned int bit_offset
; /* current position in ... */
4644 int byte
; /* ... the outer byte buffer. */
4647 static unsigned HOST_WIDE_INT
4648 output_constructor (tree
, unsigned HOST_WIDE_INT
, unsigned int,
4651 /* Output assembler code for constant EXP, with no label.
4652 This includes the pseudo-op such as ".int" or ".byte", and a newline.
4653 Assumes output_addressed_constants has been done on EXP already.
4655 Generate at least SIZE bytes of assembler data, padding at the end
4656 with zeros if necessary. SIZE must always be specified. The returned
4657 value is the actual number of bytes of assembler data generated, which
4658 may be bigger than SIZE if the object contains a variable length field.
4660 SIZE is important for structure constructors,
4661 since trailing members may have been omitted from the constructor.
4662 It is also important for initialization of arrays from string constants
4663 since the full length of the string constant might not be wanted.
4664 It is also needed for initialization of unions, where the initializer's
4665 type is just one member, and that may not be as long as the union.
4667 There a case in which we would fail to output exactly SIZE bytes:
4668 for a structure constructor that wants to produce more than SIZE bytes.
4669 But such constructors will never be generated for any possible input.
4671 ALIGN is the alignment of the data in bits. */
4673 static unsigned HOST_WIDE_INT
4674 output_constant (tree exp
, unsigned HOST_WIDE_INT size
, unsigned int align
)
4676 enum tree_code code
;
4677 unsigned HOST_WIDE_INT thissize
;
4679 if (size
== 0 || flag_syntax_only
)
4682 /* See if we're trying to initialize a pointer in a non-default mode
4683 to the address of some declaration somewhere. If the target says
4684 the mode is valid for pointers, assume the target has a way of
4686 if (TREE_CODE (exp
) == NOP_EXPR
4687 && POINTER_TYPE_P (TREE_TYPE (exp
))
4688 && targetm
.addr_space
.valid_pointer_mode
4689 (TYPE_MODE (TREE_TYPE (exp
)),
4690 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp
)))))
4692 tree saved_type
= TREE_TYPE (exp
);
4694 /* Peel off any intermediate conversions-to-pointer for valid
4696 while (TREE_CODE (exp
) == NOP_EXPR
4697 && POINTER_TYPE_P (TREE_TYPE (exp
))
4698 && targetm
.addr_space
.valid_pointer_mode
4699 (TYPE_MODE (TREE_TYPE (exp
)),
4700 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp
)))))
4701 exp
= TREE_OPERAND (exp
, 0);
4703 /* If what we're left with is the address of something, we can
4704 convert the address to the final type and output it that
4706 if (TREE_CODE (exp
) == ADDR_EXPR
)
4707 exp
= build1 (ADDR_EXPR
, saved_type
, TREE_OPERAND (exp
, 0));
4708 /* Likewise for constant ints. */
4709 else if (TREE_CODE (exp
) == INTEGER_CST
)
4710 exp
= wide_int_to_tree (saved_type
, exp
);
4714 /* Eliminate any conversions since we'll be outputting the underlying
4716 while (CONVERT_EXPR_P (exp
)
4717 || TREE_CODE (exp
) == NON_LVALUE_EXPR
4718 || TREE_CODE (exp
) == VIEW_CONVERT_EXPR
)
4720 HOST_WIDE_INT type_size
= int_size_in_bytes (TREE_TYPE (exp
));
4721 HOST_WIDE_INT op_size
= int_size_in_bytes (TREE_TYPE (TREE_OPERAND (exp
, 0)));
4723 /* Make sure eliminating the conversion is really a no-op, except with
4724 VIEW_CONVERT_EXPRs to allow for wild Ada unchecked conversions and
4725 union types to allow for Ada unchecked unions. */
4726 if (type_size
> op_size
4727 && TREE_CODE (exp
) != VIEW_CONVERT_EXPR
4728 && TREE_CODE (TREE_TYPE (exp
)) != UNION_TYPE
)
4729 /* Keep the conversion. */
4732 exp
= TREE_OPERAND (exp
, 0);
4735 code
= TREE_CODE (TREE_TYPE (exp
));
4736 thissize
= int_size_in_bytes (TREE_TYPE (exp
));
4738 /* Allow a constructor with no elements for any data type.
4739 This means to fill the space with zeros. */
4740 if (TREE_CODE (exp
) == CONSTRUCTOR
4741 && vec_safe_is_empty (CONSTRUCTOR_ELTS (exp
)))
4743 assemble_zeros (size
);
4747 if (TREE_CODE (exp
) == FDESC_EXPR
)
4749 #ifdef ASM_OUTPUT_FDESC
4750 HOST_WIDE_INT part
= tree_to_shwi (TREE_OPERAND (exp
, 1));
4751 tree decl
= TREE_OPERAND (exp
, 0);
4752 ASM_OUTPUT_FDESC (asm_out_file
, decl
, part
);
4759 /* Now output the underlying data. If we've handling the padding, return.
4760 Otherwise, break and ensure SIZE is the size written. */
4767 case REFERENCE_TYPE
:
4769 case FIXED_POINT_TYPE
:
4770 case POINTER_BOUNDS_TYPE
:
4772 if (! assemble_integer (expand_expr (exp
, NULL_RTX
, VOIDmode
,
4773 EXPAND_INITIALIZER
),
4774 MIN (size
, thissize
), align
, 0))
4775 error ("initializer for integer/fixed-point value is too complicated");
4779 if (TREE_CODE (exp
) != REAL_CST
)
4780 error ("initializer for floating value is not a floating constant");
4782 assemble_real (TREE_REAL_CST (exp
), TYPE_MODE (TREE_TYPE (exp
)), align
);
4786 output_constant (TREE_REALPART (exp
), thissize
/ 2, align
);
4787 output_constant (TREE_IMAGPART (exp
), thissize
/ 2,
4788 min_align (align
, BITS_PER_UNIT
* (thissize
/ 2)));
4793 switch (TREE_CODE (exp
))
4796 return output_constructor (exp
, size
, align
, NULL
);
4799 = MIN ((unsigned HOST_WIDE_INT
)TREE_STRING_LENGTH (exp
), size
);
4800 assemble_string (TREE_STRING_POINTER (exp
), thissize
);
4804 machine_mode inner
= TYPE_MODE (TREE_TYPE (TREE_TYPE (exp
)));
4805 unsigned int nalign
= MIN (align
, GET_MODE_ALIGNMENT (inner
));
4806 int elt_size
= GET_MODE_SIZE (inner
);
4807 output_constant (VECTOR_CST_ELT (exp
, 0), elt_size
, align
);
4808 thissize
= elt_size
;
4809 for (unsigned int i
= 1; i
< VECTOR_CST_NELTS (exp
); i
++)
4811 output_constant (VECTOR_CST_ELT (exp
, i
), elt_size
, nalign
);
4812 thissize
+= elt_size
;
4823 gcc_assert (TREE_CODE (exp
) == CONSTRUCTOR
);
4824 return output_constructor (exp
, size
, align
, NULL
);
4833 if (size
> thissize
)
4834 assemble_zeros (size
- thissize
);
4840 /* Subroutine of output_constructor, used for computing the size of
4841 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
4842 type with an unspecified upper bound. */
4844 static unsigned HOST_WIDE_INT
4845 array_size_for_constructor (tree val
)
4848 unsigned HOST_WIDE_INT cnt
;
4849 tree index
, value
, tmp
;
4852 /* This code used to attempt to handle string constants that are not
4853 arrays of single-bytes, but nothing else does, so there's no point in
4855 if (TREE_CODE (val
) == STRING_CST
)
4856 return TREE_STRING_LENGTH (val
);
4858 max_index
= NULL_TREE
;
4859 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (val
), cnt
, index
, value
)
4861 if (TREE_CODE (index
) == RANGE_EXPR
)
4862 index
= TREE_OPERAND (index
, 1);
4863 if (max_index
== NULL_TREE
|| tree_int_cst_lt (max_index
, index
))
4867 if (max_index
== NULL_TREE
)
4870 /* Compute the total number of array elements. */
4871 tmp
= TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val
)));
4872 i
= wi::to_offset (max_index
) - wi::to_offset (tmp
) + 1;
4874 /* Multiply by the array element unit size to find number of bytes. */
4875 i
*= wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val
))));
4877 gcc_assert (wi::fits_uhwi_p (i
));
4878 return i
.to_uhwi ();
4881 /* Other datastructures + helpers for output_constructor. */
4883 /* output_constructor local state to support interaction with helpers. */
4887 /* Received arguments. */
4888 tree exp
; /* Constructor expression. */
4889 tree type
; /* Type of constructor expression. */
4890 unsigned HOST_WIDE_INT size
; /* # bytes to output - pad if necessary. */
4891 unsigned int align
; /* Known initial alignment. */
4892 tree min_index
; /* Lower bound if specified for an array. */
4894 /* Output processing state. */
4895 HOST_WIDE_INT total_bytes
; /* # bytes output so far / current position. */
4896 int byte
; /* Part of a bitfield byte yet to be output. */
4897 int last_relative_index
; /* Implicit or explicit index of the last
4898 array element output within a bitfield. */
4899 bool byte_buffer_in_use
; /* Whether BYTE is in use. */
4901 /* Current element. */
4902 tree field
; /* Current field decl in a record. */
4903 tree val
; /* Current element value. */
4904 tree index
; /* Current element index. */
4908 /* Helper for output_constructor. From the current LOCAL state, output a
4909 RANGE_EXPR element. */
4912 output_constructor_array_range (oc_local_state
*local
)
4914 unsigned HOST_WIDE_INT fieldsize
4915 = int_size_in_bytes (TREE_TYPE (local
->type
));
4917 HOST_WIDE_INT lo_index
4918 = tree_to_shwi (TREE_OPERAND (local
->index
, 0));
4919 HOST_WIDE_INT hi_index
4920 = tree_to_shwi (TREE_OPERAND (local
->index
, 1));
4921 HOST_WIDE_INT index
;
4924 = min_align (local
->align
, fieldsize
* BITS_PER_UNIT
);
4926 for (index
= lo_index
; index
<= hi_index
; index
++)
4928 /* Output the element's initial value. */
4929 if (local
->val
== NULL_TREE
)
4930 assemble_zeros (fieldsize
);
4932 fieldsize
= output_constant (local
->val
, fieldsize
, align2
);
4934 /* Count its size. */
4935 local
->total_bytes
+= fieldsize
;
4939 /* Helper for output_constructor. From the current LOCAL state, output a
4940 field element that is not true bitfield or part of an outer one. */
4943 output_constructor_regular_field (oc_local_state
*local
)
4945 /* Field size and position. Since this structure is static, we know the
4946 positions are constant. */
4947 unsigned HOST_WIDE_INT fieldsize
;
4948 HOST_WIDE_INT fieldpos
;
4950 unsigned int align2
;
4952 if (local
->index
!= NULL_TREE
)
4954 /* Perform the index calculation in modulo arithmetic but
4955 sign-extend the result because Ada has negative DECL_FIELD_OFFSETs
4956 but we are using an unsigned sizetype. */
4957 unsigned prec
= TYPE_PRECISION (sizetype
);
4958 offset_int idx
= wi::sext (wi::to_offset (local
->index
)
4959 - wi::to_offset (local
->min_index
), prec
);
4960 fieldpos
= (idx
* wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (local
->val
))))
4963 else if (local
->field
!= NULL_TREE
)
4964 fieldpos
= int_byte_position (local
->field
);
4968 /* Output any buffered-up bit-fields preceding this element. */
4969 if (local
->byte_buffer_in_use
)
4971 assemble_integer (GEN_INT (local
->byte
), 1, BITS_PER_UNIT
, 1);
4972 local
->total_bytes
++;
4973 local
->byte_buffer_in_use
= false;
4976 /* Advance to offset of this element.
4977 Note no alignment needed in an array, since that is guaranteed
4978 if each element has the proper size. */
4979 if ((local
->field
!= NULL_TREE
|| local
->index
!= NULL_TREE
)
4980 && fieldpos
> local
->total_bytes
)
4982 assemble_zeros (fieldpos
- local
->total_bytes
);
4983 local
->total_bytes
= fieldpos
;
4986 /* Find the alignment of this element. */
4987 align2
= min_align (local
->align
, BITS_PER_UNIT
* fieldpos
);
4989 /* Determine size this element should occupy. */
4994 /* If this is an array with an unspecified upper bound,
4995 the initializer determines the size. */
4996 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4997 but we cannot do this until the deprecated support for
4998 initializing zero-length array members is removed. */
4999 if (TREE_CODE (TREE_TYPE (local
->field
)) == ARRAY_TYPE
5000 && TYPE_DOMAIN (TREE_TYPE (local
->field
))
5001 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (local
->field
))))
5003 fieldsize
= array_size_for_constructor (local
->val
);
5004 /* Given a non-empty initialization, this field had
5006 gcc_assert (!fieldsize
|| !DECL_CHAIN (local
->field
));
5009 fieldsize
= tree_to_uhwi (DECL_SIZE_UNIT (local
->field
));
5012 fieldsize
= int_size_in_bytes (TREE_TYPE (local
->type
));
5014 /* Output the element's initial value. */
5015 if (local
->val
== NULL_TREE
)
5016 assemble_zeros (fieldsize
);
5018 fieldsize
= output_constant (local
->val
, fieldsize
, align2
);
5020 /* Count its size. */
5021 local
->total_bytes
+= fieldsize
;
5024 /* Helper for output_constructor. From the LOCAL state, output an element
5025 that is a true bitfield or part of an outer one. BIT_OFFSET is the offset
5026 from the start of a possibly ongoing outer byte buffer. */
5029 output_constructor_bitfield (oc_local_state
*local
, unsigned int bit_offset
)
5031 /* Bit size of this element. */
5032 HOST_WIDE_INT ebitsize
5034 ? tree_to_uhwi (DECL_SIZE (local
->field
))
5035 : tree_to_uhwi (TYPE_SIZE (TREE_TYPE (local
->type
))));
5037 /* Relative index of this element if this is an array component. */
5038 HOST_WIDE_INT relative_index
5041 ? (tree_to_shwi (local
->index
)
5042 - tree_to_shwi (local
->min_index
))
5043 : local
->last_relative_index
+ 1)
5046 /* Bit position of this element from the start of the containing
5048 HOST_WIDE_INT constructor_relative_ebitpos
5050 ? int_bit_position (local
->field
)
5051 : ebitsize
* relative_index
);
5053 /* Bit position of this element from the start of a possibly ongoing
5054 outer byte buffer. */
5055 HOST_WIDE_INT byte_relative_ebitpos
5056 = bit_offset
+ constructor_relative_ebitpos
;
5058 /* From the start of a possibly ongoing outer byte buffer, offsets to
5059 the first bit of this element and to the first bit past the end of
5061 HOST_WIDE_INT next_offset
= byte_relative_ebitpos
;
5062 HOST_WIDE_INT end_offset
= byte_relative_ebitpos
+ ebitsize
;
5064 local
->last_relative_index
= relative_index
;
5066 if (local
->val
== NULL_TREE
)
5067 local
->val
= integer_zero_node
;
5069 while (TREE_CODE (local
->val
) == VIEW_CONVERT_EXPR
5070 || TREE_CODE (local
->val
) == NON_LVALUE_EXPR
)
5071 local
->val
= TREE_OPERAND (local
->val
, 0);
5073 if (TREE_CODE (local
->val
) != INTEGER_CST
5074 && TREE_CODE (local
->val
) != CONSTRUCTOR
)
5076 error ("invalid initial value for member %qE", DECL_NAME (local
->field
));
5080 /* If this field does not start in this (or next) byte, skip some bytes. */
5081 if (next_offset
/ BITS_PER_UNIT
!= local
->total_bytes
)
5083 /* Output remnant of any bit field in previous bytes. */
5084 if (local
->byte_buffer_in_use
)
5086 assemble_integer (GEN_INT (local
->byte
), 1, BITS_PER_UNIT
, 1);
5087 local
->total_bytes
++;
5088 local
->byte_buffer_in_use
= false;
5091 /* If still not at proper byte, advance to there. */
5092 if (next_offset
/ BITS_PER_UNIT
!= local
->total_bytes
)
5094 gcc_assert (next_offset
/ BITS_PER_UNIT
>= local
->total_bytes
);
5095 assemble_zeros (next_offset
/ BITS_PER_UNIT
- local
->total_bytes
);
5096 local
->total_bytes
= next_offset
/ BITS_PER_UNIT
;
5100 /* Set up the buffer if necessary. */
5101 if (!local
->byte_buffer_in_use
)
5105 local
->byte_buffer_in_use
= true;
5108 /* If this is nested constructor, recurse passing the bit offset and the
5109 pending data, then retrieve the new pending data afterwards. */
5110 if (TREE_CODE (local
->val
) == CONSTRUCTOR
)
5112 oc_outer_state temp_state
;
5113 temp_state
.bit_offset
= next_offset
% BITS_PER_UNIT
;
5114 temp_state
.byte
= local
->byte
;
5116 += output_constructor (local
->val
, 0, 0, &temp_state
);
5117 local
->byte
= temp_state
.byte
;
5121 /* Otherwise, we must split the element into pieces that fall within
5122 separate bytes, and combine each byte with previous or following
5124 while (next_offset
< end_offset
)
5128 HOST_WIDE_INT value
;
5129 HOST_WIDE_INT next_byte
= next_offset
/ BITS_PER_UNIT
;
5130 HOST_WIDE_INT next_bit
= next_offset
% BITS_PER_UNIT
;
5132 /* Advance from byte to byte within this element when necessary. */
5133 while (next_byte
!= local
->total_bytes
)
5135 assemble_integer (GEN_INT (local
->byte
), 1, BITS_PER_UNIT
, 1);
5136 local
->total_bytes
++;
5140 /* Number of bits we can process at once (all part of the same byte). */
5141 this_time
= MIN (end_offset
- next_offset
, BITS_PER_UNIT
- next_bit
);
5142 if (BYTES_BIG_ENDIAN
)
5144 /* On big-endian machine, take the most significant bits (of the
5145 bits that are significant) first and put them into bytes from
5146 the most significant end. */
5147 shift
= end_offset
- next_offset
- this_time
;
5149 /* Don't try to take a bunch of bits that cross
5150 the word boundary in the INTEGER_CST. We can
5151 only select bits from one element. */
5152 if ((shift
/ HOST_BITS_PER_WIDE_INT
)
5153 != ((shift
+ this_time
- 1) / HOST_BITS_PER_WIDE_INT
))
5155 const int end
= shift
+ this_time
- 1;
5156 shift
= end
& -HOST_BITS_PER_WIDE_INT
;
5157 this_time
= end
- shift
+ 1;
5160 /* Now get the bits from the appropriate constant word. */
5161 value
= TREE_INT_CST_ELT (local
->val
, shift
/ HOST_BITS_PER_WIDE_INT
);
5162 shift
= shift
& (HOST_BITS_PER_WIDE_INT
- 1);
5164 /* Get the result. This works only when:
5165 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
5166 local
->byte
|= (((value
>> shift
)
5167 & (((HOST_WIDE_INT
) 2 << (this_time
- 1)) - 1))
5168 << (BITS_PER_UNIT
- this_time
- next_bit
));
5172 /* On little-endian machines, take the least significant bits of
5173 the value first and pack them starting at the least significant
5174 bits of the bytes. */
5175 shift
= next_offset
- byte_relative_ebitpos
;
5177 /* Don't try to take a bunch of bits that cross
5178 the word boundary in the INTEGER_CST. We can
5179 only select bits from one element. */
5180 if ((shift
/ HOST_BITS_PER_WIDE_INT
)
5181 != ((shift
+ this_time
- 1) / HOST_BITS_PER_WIDE_INT
))
5183 = HOST_BITS_PER_WIDE_INT
- (shift
& (HOST_BITS_PER_WIDE_INT
- 1));
5185 /* Now get the bits from the appropriate constant word. */
5186 value
= TREE_INT_CST_ELT (local
->val
, shift
/ HOST_BITS_PER_WIDE_INT
);
5187 shift
= shift
& (HOST_BITS_PER_WIDE_INT
- 1);
5189 /* Get the result. This works only when:
5190 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
5191 local
->byte
|= (((value
>> shift
)
5192 & (((HOST_WIDE_INT
) 2 << (this_time
- 1)) - 1))
5196 next_offset
+= this_time
;
5197 local
->byte_buffer_in_use
= true;
5201 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
5202 Generate at least SIZE bytes, padding if necessary. OUTER designates the
5203 caller output state of relevance in recursive invocations. */
5205 static unsigned HOST_WIDE_INT
5206 output_constructor (tree exp
, unsigned HOST_WIDE_INT size
,
5207 unsigned int align
, oc_outer_state
*outer
)
5209 unsigned HOST_WIDE_INT cnt
;
5210 constructor_elt
*ce
;
5212 oc_local_state local
;
5214 /* Setup our local state to communicate with helpers. */
5216 local
.type
= TREE_TYPE (exp
);
5218 local
.align
= align
;
5219 if (TREE_CODE (local
.type
) == ARRAY_TYPE
&& TYPE_DOMAIN (local
.type
))
5220 local
.min_index
= TYPE_MIN_VALUE (TYPE_DOMAIN (local
.type
));
5222 local
.min_index
= NULL_TREE
;
5224 local
.total_bytes
= 0;
5225 local
.byte_buffer_in_use
= outer
!= NULL
;
5226 local
.byte
= outer
? outer
->byte
: 0;
5227 local
.last_relative_index
= -1;
5229 gcc_assert (HOST_BITS_PER_WIDE_INT
>= BITS_PER_UNIT
);
5231 /* As CE goes through the elements of the constant, FIELD goes through the
5232 structure fields if the constant is a structure. If the constant is a
5233 union, we override this by getting the field from the TREE_LIST element.
5234 But the constant could also be an array. Then FIELD is zero.
5236 There is always a maximum of one element in the chain LINK for unions
5237 (even if the initializer in a source program incorrectly contains
5240 if (TREE_CODE (local
.type
) == RECORD_TYPE
)
5241 local
.field
= TYPE_FIELDS (local
.type
);
5243 local
.field
= NULL_TREE
;
5246 vec_safe_iterate (CONSTRUCTOR_ELTS (exp
), cnt
, &ce
);
5247 cnt
++, local
.field
= local
.field
? DECL_CHAIN (local
.field
) : 0)
5249 local
.val
= ce
->value
;
5250 local
.index
= NULL_TREE
;
5252 /* The element in a union constructor specifies the proper field
5254 if (RECORD_OR_UNION_TYPE_P (local
.type
) && ce
->index
!= NULL_TREE
)
5255 local
.field
= ce
->index
;
5257 else if (TREE_CODE (local
.type
) == ARRAY_TYPE
)
5258 local
.index
= ce
->index
;
5260 if (local
.field
&& flag_verbose_asm
)
5261 fprintf (asm_out_file
, "%s %s:\n",
5263 DECL_NAME (local
.field
)
5264 ? IDENTIFIER_POINTER (DECL_NAME (local
.field
))
5267 /* Eliminate the marker that makes a cast not be an lvalue. */
5268 if (local
.val
!= NULL_TREE
)
5269 STRIP_NOPS (local
.val
);
5271 /* Output the current element, using the appropriate helper ... */
5273 /* For an array slice not part of an outer bitfield. */
5275 && local
.index
!= NULL_TREE
5276 && TREE_CODE (local
.index
) == RANGE_EXPR
)
5277 output_constructor_array_range (&local
);
5279 /* For a field that is neither a true bitfield nor part of an outer one,
5280 known to be at least byte aligned and multiple-of-bytes long. */
5282 && (local
.field
== NULL_TREE
5283 || !CONSTRUCTOR_BITFIELD_P (local
.field
)))
5284 output_constructor_regular_field (&local
);
5286 /* For a true bitfield or part of an outer one. Only INTEGER_CSTs are
5287 supported for scalar fields, so we may need to convert first. */
5290 if (TREE_CODE (local
.val
) == REAL_CST
)
5292 = fold_unary (VIEW_CONVERT_EXPR
,
5293 build_nonstandard_integer_type
5294 (TYPE_PRECISION (TREE_TYPE (local
.val
)), 0),
5296 output_constructor_bitfield (&local
, outer
? outer
->bit_offset
: 0);
5300 /* If we are not at toplevel, save the pending data for our caller.
5301 Otherwise output the pending data and padding zeros as needed. */
5303 outer
->byte
= local
.byte
;
5306 if (local
.byte_buffer_in_use
)
5308 assemble_integer (GEN_INT (local
.byte
), 1, BITS_PER_UNIT
, 1);
5309 local
.total_bytes
++;
5312 if ((unsigned HOST_WIDE_INT
)local
.total_bytes
< local
.size
)
5314 assemble_zeros (local
.size
- local
.total_bytes
);
5315 local
.total_bytes
= local
.size
;
5319 return local
.total_bytes
;
5322 /* Mark DECL as weak. */
5325 mark_weak (tree decl
)
5327 if (DECL_WEAK (decl
))
5330 struct symtab_node
*n
= symtab_node::get (decl
);
5331 if (n
&& n
->refuse_visibility_changes
)
5332 error ("%+D declared weak after being used", decl
);
5333 DECL_WEAK (decl
) = 1;
5335 if (DECL_RTL_SET_P (decl
)
5336 && MEM_P (DECL_RTL (decl
))
5337 && XEXP (DECL_RTL (decl
), 0)
5338 && GET_CODE (XEXP (DECL_RTL (decl
), 0)) == SYMBOL_REF
)
5339 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl
), 0)) = 1;
5342 /* Merge weak status between NEWDECL and OLDDECL. */
5345 merge_weak (tree newdecl
, tree olddecl
)
5347 if (DECL_WEAK (newdecl
) == DECL_WEAK (olddecl
))
5349 if (DECL_WEAK (newdecl
) && TARGET_SUPPORTS_WEAK
)
5352 /* We put the NEWDECL on the weak_decls list at some point
5353 and OLDDECL as well. Keep just OLDDECL on the list. */
5354 for (pwd
= &weak_decls
; *pwd
; pwd
= &TREE_CHAIN (*pwd
))
5355 if (TREE_VALUE (*pwd
) == newdecl
)
5357 *pwd
= TREE_CHAIN (*pwd
);
5364 if (DECL_WEAK (newdecl
))
5368 /* NEWDECL is weak, but OLDDECL is not. */
5370 /* If we already output the OLDDECL, we're in trouble; we can't
5371 go back and make it weak. This should never happen in
5372 unit-at-a-time compilation. */
5373 gcc_assert (!TREE_ASM_WRITTEN (olddecl
));
5375 /* If we've already generated rtl referencing OLDDECL, we may
5376 have done so in a way that will not function properly with
5377 a weak symbol. Again in unit-at-a-time this should be
5379 gcc_assert (!TREE_USED (olddecl
)
5380 || !TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl
)));
5382 if (TARGET_SUPPORTS_WEAK
)
5384 /* We put the NEWDECL on the weak_decls list at some point.
5385 Replace it with the OLDDECL. */
5386 for (wd
= weak_decls
; wd
; wd
= TREE_CHAIN (wd
))
5387 if (TREE_VALUE (wd
) == newdecl
)
5389 TREE_VALUE (wd
) = olddecl
;
5392 /* We may not find the entry on the list. If NEWDECL is a
5393 weak alias, then we will have already called
5394 globalize_decl to remove the entry; in that case, we do
5395 not need to do anything. */
5398 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
5399 mark_weak (olddecl
);
5402 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
5403 weak. Just update NEWDECL to indicate that it's weak too. */
5404 mark_weak (newdecl
);
5407 /* Declare DECL to be a weak symbol. */
5410 declare_weak (tree decl
)
5412 gcc_assert (TREE_CODE (decl
) != FUNCTION_DECL
|| !TREE_ASM_WRITTEN (decl
));
5413 if (! TREE_PUBLIC (decl
))
5414 error ("weak declaration of %q+D must be public", decl
);
5415 else if (!TARGET_SUPPORTS_WEAK
)
5416 warning (0, "weak declaration of %q+D not supported", decl
);
5419 if (!lookup_attribute ("weak", DECL_ATTRIBUTES (decl
)))
5420 DECL_ATTRIBUTES (decl
)
5421 = tree_cons (get_identifier ("weak"), NULL
, DECL_ATTRIBUTES (decl
));
5425 weak_finish_1 (tree decl
)
5427 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
5428 const char *const name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
5431 if (! TREE_USED (decl
))
5434 #ifdef ASM_WEAKEN_DECL
5435 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, NULL
);
5437 #ifdef ASM_WEAKEN_LABEL
5438 ASM_WEAKEN_LABEL (asm_out_file
, name
);
5440 #ifdef ASM_OUTPUT_WEAK_ALIAS
5442 static bool warn_once
= 0;
5445 warning (0, "only weak aliases are supported in this configuration");
5455 /* Fiven an assembly name, find the decl it is associated with. */
5457 find_decl (tree target
)
5459 symtab_node
*node
= symtab_node::get_for_asmname (target
);
5465 /* This TREE_LIST contains weakref targets. */
5467 static GTY(()) tree weakref_targets
;
5469 /* Emit any pending weak declarations. */
5476 for (t
= weakref_targets
; t
; t
= TREE_CHAIN (t
))
5478 tree alias_decl
= TREE_PURPOSE (t
);
5479 tree target
= ultimate_transparent_alias_target (&TREE_VALUE (t
));
5481 if (! TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (alias_decl
)))
5482 /* Remove alias_decl from the weak list, but leave entries for
5483 the target alone. */
5485 #ifndef ASM_OUTPUT_WEAKREF
5486 else if (! TREE_SYMBOL_REFERENCED (target
))
5488 /* Use ASM_WEAKEN_LABEL only if ASM_WEAKEN_DECL is not
5489 defined, otherwise we and weak_finish_1 would use
5490 different macros. */
5491 # if defined ASM_WEAKEN_LABEL && ! defined ASM_WEAKEN_DECL
5492 ASM_WEAKEN_LABEL (asm_out_file
, IDENTIFIER_POINTER (target
));
5494 tree decl
= find_decl (target
);
5498 decl
= build_decl (DECL_SOURCE_LOCATION (alias_decl
),
5499 TREE_CODE (alias_decl
), target
,
5500 TREE_TYPE (alias_decl
));
5502 DECL_EXTERNAL (decl
) = 1;
5503 TREE_PUBLIC (decl
) = 1;
5504 DECL_ARTIFICIAL (decl
) = 1;
5505 TREE_NOTHROW (decl
) = TREE_NOTHROW (alias_decl
);
5506 TREE_USED (decl
) = 1;
5509 weak_finish_1 (decl
);
5518 /* Remove the alias and the target from the pending weak list
5519 so that we do not emit any .weak directives for the former,
5520 nor multiple .weak directives for the latter. */
5521 for (p
= &weak_decls
; (t2
= *p
) ; )
5523 if (TREE_VALUE (t2
) == alias_decl
5524 || target
== DECL_ASSEMBLER_NAME (TREE_VALUE (t2
)))
5525 *p
= TREE_CHAIN (t2
);
5527 p
= &TREE_CHAIN (t2
);
5530 /* Remove other weakrefs to the same target, to speed things up. */
5531 for (p
= &TREE_CHAIN (t
); (t2
= *p
) ; )
5533 if (target
== ultimate_transparent_alias_target (&TREE_VALUE (t2
)))
5534 *p
= TREE_CHAIN (t2
);
5536 p
= &TREE_CHAIN (t2
);
5541 for (t
= weak_decls
; t
; t
= TREE_CHAIN (t
))
5543 tree decl
= TREE_VALUE (t
);
5545 weak_finish_1 (decl
);
5549 /* Emit the assembly bits to indicate that DECL is globally visible. */
5552 globalize_decl (tree decl
)
5555 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
5556 if (DECL_WEAK (decl
))
5558 const char *name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
5561 #ifdef ASM_WEAKEN_DECL
5562 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, 0);
5564 ASM_WEAKEN_LABEL (asm_out_file
, name
);
5567 /* Remove this function from the pending weak list so that
5568 we do not emit multiple .weak directives for it. */
5569 for (p
= &weak_decls
; (t
= *p
) ; )
5571 if (DECL_ASSEMBLER_NAME (decl
) == DECL_ASSEMBLER_NAME (TREE_VALUE (t
)))
5572 *p
= TREE_CHAIN (t
);
5574 p
= &TREE_CHAIN (t
);
5577 /* Remove weakrefs to the same target from the pending weakref
5578 list, for the same reason. */
5579 for (p
= &weakref_targets
; (t
= *p
) ; )
5581 if (DECL_ASSEMBLER_NAME (decl
)
5582 == ultimate_transparent_alias_target (&TREE_VALUE (t
)))
5583 *p
= TREE_CHAIN (t
);
5585 p
= &TREE_CHAIN (t
);
5592 targetm
.asm_out
.globalize_decl_name (asm_out_file
, decl
);
5595 vec
<alias_pair
, va_gc
> *alias_pairs
;
5597 /* Output the assembler code for a define (equate) using ASM_OUTPUT_DEF
5598 or ASM_OUTPUT_DEF_FROM_DECLS. The function defines the symbol whose
5599 tree node is DECL to have the value of the tree node TARGET. */
5602 do_assemble_alias (tree decl
, tree target
)
5606 /* Emulated TLS had better not get this var. */
5607 gcc_assert (!(!targetm
.have_tls
5608 && TREE_CODE (decl
) == VAR_DECL
5609 && DECL_THREAD_LOCAL_P (decl
)));
5611 if (TREE_ASM_WRITTEN (decl
))
5614 id
= DECL_ASSEMBLER_NAME (decl
);
5615 ultimate_transparent_alias_target (&id
);
5616 ultimate_transparent_alias_target (&target
);
5618 /* We must force creation of DECL_RTL for debug info generation, even though
5619 we don't use it here. */
5620 make_decl_rtl (decl
);
5622 TREE_ASM_WRITTEN (decl
) = 1;
5623 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl
)) = 1;
5624 TREE_ASM_WRITTEN (id
) = 1;
5626 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl
)))
5628 if (!TREE_SYMBOL_REFERENCED (target
))
5629 weakref_targets
= tree_cons (decl
, target
, weakref_targets
);
5631 #ifdef ASM_OUTPUT_WEAKREF
5632 ASM_OUTPUT_WEAKREF (asm_out_file
, decl
,
5633 IDENTIFIER_POINTER (id
),
5634 IDENTIFIER_POINTER (target
));
5636 if (!TARGET_SUPPORTS_WEAK
)
5638 error_at (DECL_SOURCE_LOCATION (decl
),
5639 "weakref is not supported in this configuration");
5646 #ifdef ASM_OUTPUT_DEF
5647 tree orig_decl
= decl
;
5649 if (TREE_CODE (decl
) == FUNCTION_DECL
5650 && cgraph_node::get (decl
)->instrumentation_clone
5651 && cgraph_node::get (decl
)->instrumented_version
)
5652 orig_decl
= cgraph_node::get (decl
)->instrumented_version
->decl
;
5654 /* Make name accessible from other files, if appropriate. */
5656 if (TREE_PUBLIC (decl
) || TREE_PUBLIC (orig_decl
))
5658 globalize_decl (decl
);
5659 maybe_assemble_visibility (decl
);
5661 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl
)))
5663 #if defined (ASM_OUTPUT_TYPE_DIRECTIVE)
5664 if (targetm
.has_ifunc_p ())
5665 ASM_OUTPUT_TYPE_DIRECTIVE
5666 (asm_out_file
, IDENTIFIER_POINTER (id
),
5670 error_at (DECL_SOURCE_LOCATION (decl
),
5671 "ifunc is not supported on this target");
5674 # ifdef ASM_OUTPUT_DEF_FROM_DECLS
5675 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file
, decl
, target
);
5677 ASM_OUTPUT_DEF (asm_out_file
,
5678 IDENTIFIER_POINTER (id
),
5679 IDENTIFIER_POINTER (target
));
5681 #elif defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
5686 name
= IDENTIFIER_POINTER (id
);
5687 # ifdef ASM_WEAKEN_DECL
5688 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, IDENTIFIER_POINTER (target
));
5690 ASM_OUTPUT_WEAK_ALIAS (asm_out_file
, name
, IDENTIFIER_POINTER (target
));
5692 /* Remove this function from the pending weak list so that
5693 we do not emit multiple .weak directives for it. */
5694 for (p
= &weak_decls
; (t
= *p
) ; )
5695 if (DECL_ASSEMBLER_NAME (decl
) == DECL_ASSEMBLER_NAME (TREE_VALUE (t
))
5696 || id
== DECL_ASSEMBLER_NAME (TREE_VALUE (t
)))
5697 *p
= TREE_CHAIN (t
);
5699 p
= &TREE_CHAIN (t
);
5701 /* Remove weakrefs to the same target from the pending weakref
5702 list, for the same reason. */
5703 for (p
= &weakref_targets
; (t
= *p
) ; )
5705 if (id
== ultimate_transparent_alias_target (&TREE_VALUE (t
)))
5706 *p
= TREE_CHAIN (t
);
5708 p
= &TREE_CHAIN (t
);
5714 /* Emit an assembler directive to make the symbol for DECL an alias to
5715 the symbol for TARGET. */
5718 assemble_alias (tree decl
, tree target
)
5722 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl
)))
5724 tree alias
= DECL_ASSEMBLER_NAME (decl
);
5726 ultimate_transparent_alias_target (&target
);
5728 if (alias
== target
)
5729 error ("weakref %q+D ultimately targets itself", decl
);
5730 if (TREE_PUBLIC (decl
))
5731 error ("weakref %q+D must have static linkage", decl
);
5735 #if !defined (ASM_OUTPUT_DEF)
5736 # if !defined(ASM_OUTPUT_WEAK_ALIAS) && !defined (ASM_WEAKEN_DECL)
5737 error_at (DECL_SOURCE_LOCATION (decl
),
5738 "alias definitions not supported in this configuration");
5739 TREE_ASM_WRITTEN (decl
) = 1;
5742 if (!DECL_WEAK (decl
))
5744 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl
)))
5745 error_at (DECL_SOURCE_LOCATION (decl
),
5746 "ifunc is not supported in this configuration");
5748 error_at (DECL_SOURCE_LOCATION (decl
),
5749 "only weak aliases are supported in this configuration");
5750 TREE_ASM_WRITTEN (decl
) = 1;
5756 TREE_USED (decl
) = 1;
5758 /* Allow aliases to aliases. */
5759 if (TREE_CODE (decl
) == FUNCTION_DECL
)
5760 cgraph_node::get_create (decl
)->alias
= true;
5762 varpool_node::get_create (decl
)->alias
= true;
5764 /* If the target has already been emitted, we don't have to queue the
5765 alias. This saves a tad of memory. */
5766 if (symtab
->global_info_ready
)
5767 target_decl
= find_decl (target
);
5770 if ((target_decl
&& TREE_ASM_WRITTEN (target_decl
))
5771 || symtab
->state
>= EXPANSION
)
5772 do_assemble_alias (decl
, target
);
5775 alias_pair p
= {decl
, target
};
5776 vec_safe_push (alias_pairs
, p
);
5780 /* Record and output a table of translations from original function
5781 to its transaction aware clone. Note that tm_pure functions are
5782 considered to be their own clone. */
5784 struct tm_clone_hasher
: ggc_cache_ptr_hash
<tree_map
>
5786 static hashval_t
hash (tree_map
*m
) { return tree_map_hash (m
); }
5787 static bool equal (tree_map
*a
, tree_map
*b
) { return tree_map_eq (a
, b
); }
5790 keep_cache_entry (tree_map
*&e
)
5792 return ggc_marked_p (e
->base
.from
);
5796 static GTY((cache
)) hash_table
<tm_clone_hasher
> *tm_clone_hash
;
5799 record_tm_clone_pair (tree o
, tree n
)
5801 struct tree_map
**slot
, *h
;
5803 if (tm_clone_hash
== NULL
)
5804 tm_clone_hash
= hash_table
<tm_clone_hasher
>::create_ggc (32);
5806 h
= ggc_alloc
<tree_map
> ();
5807 h
->hash
= htab_hash_pointer (o
);
5811 slot
= tm_clone_hash
->find_slot_with_hash (h
, h
->hash
, INSERT
);
5816 get_tm_clone_pair (tree o
)
5820 struct tree_map
*h
, in
;
5823 in
.hash
= htab_hash_pointer (o
);
5824 h
= tm_clone_hash
->find_with_hash (&in
, in
.hash
);
5831 typedef struct tm_alias_pair
5839 /* Dump the actual pairs to the .tm_clone_table section. */
5842 dump_tm_clone_pairs (vec
<tm_alias_pair
> tm_alias_pairs
)
5846 bool switched
= false;
5848 FOR_EACH_VEC_ELT (tm_alias_pairs
, i
, p
)
5852 struct cgraph_node
*src_n
= cgraph_node::get (src
);
5853 struct cgraph_node
*dst_n
= cgraph_node::get (dst
);
5855 /* The function ipa_tm_create_version() marks the clone as needed if
5856 the original function was needed. But we also mark the clone as
5857 needed if we ever called the clone indirectly through
5858 TM_GETTMCLONE. If neither of these are true, we didn't generate
5859 a clone, and we didn't call it indirectly... no sense keeping it
5860 in the clone table. */
5861 if (!dst_n
|| !dst_n
->definition
)
5864 /* This covers the case where we have optimized the original
5865 function away, and only access the transactional clone. */
5866 if (!src_n
|| !src_n
->definition
)
5871 switch_to_section (targetm
.asm_out
.tm_clone_table_section ());
5872 assemble_align (POINTER_SIZE
);
5876 assemble_integer (XEXP (DECL_RTL (src
), 0),
5877 POINTER_SIZE_UNITS
, POINTER_SIZE
, 1);
5878 assemble_integer (XEXP (DECL_RTL (dst
), 0),
5879 POINTER_SIZE_UNITS
, POINTER_SIZE
, 1);
5883 /* Provide a default for the tm_clone_table section. */
5886 default_clone_table_section (void)
5888 return get_named_section (NULL
, ".tm_clone_table", 3);
5891 /* Helper comparison function for qsorting by the DECL_UID stored in
5892 alias_pair->emitted_diags. */
5895 tm_alias_pair_cmp (const void *x
, const void *y
)
5897 const tm_alias_pair
*p1
= (const tm_alias_pair
*) x
;
5898 const tm_alias_pair
*p2
= (const tm_alias_pair
*) y
;
5899 if (p1
->uid
< p2
->uid
)
5901 if (p1
->uid
> p2
->uid
)
5907 finish_tm_clone_pairs (void)
5909 vec
<tm_alias_pair
> tm_alias_pairs
= vNULL
;
5911 if (tm_clone_hash
== NULL
)
5914 /* We need a determenistic order for the .tm_clone_table, otherwise
5915 we will get bootstrap comparison failures, so dump the hash table
5916 to a vector, sort it, and dump the vector. */
5918 /* Dump the hashtable to a vector. */
5920 hash_table
<tm_clone_hasher
>::iterator iter
;
5921 FOR_EACH_HASH_TABLE_ELEMENT (*tm_clone_hash
, map
, tree_map
*, iter
)
5923 tm_alias_pair p
= {DECL_UID (map
->base
.from
), map
->base
.from
, map
->to
};
5924 tm_alias_pairs
.safe_push (p
);
5927 tm_alias_pairs
.qsort (tm_alias_pair_cmp
);
5930 dump_tm_clone_pairs (tm_alias_pairs
);
5932 tm_clone_hash
->empty ();
5933 tm_clone_hash
= NULL
;
5934 tm_alias_pairs
.release ();
5938 /* Emit an assembler directive to set symbol for DECL visibility to
5939 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
5942 default_assemble_visibility (tree decl ATTRIBUTE_UNUSED
,
5943 int vis ATTRIBUTE_UNUSED
)
5945 #ifdef HAVE_GAS_HIDDEN
5946 static const char * const visibility_types
[] = {
5947 NULL
, "protected", "hidden", "internal"
5950 const char *name
, *type
;
5953 id
= DECL_ASSEMBLER_NAME (decl
);
5954 ultimate_transparent_alias_target (&id
);
5955 name
= IDENTIFIER_POINTER (id
);
5957 type
= visibility_types
[vis
];
5959 fprintf (asm_out_file
, "\t.%s\t", type
);
5960 assemble_name (asm_out_file
, name
);
5961 fprintf (asm_out_file
, "\n");
5963 if (!DECL_ARTIFICIAL (decl
))
5964 warning (OPT_Wattributes
, "visibility attribute not supported "
5965 "in this configuration; ignored");
5969 /* A helper function to call assemble_visibility when needed for a decl. */
5972 maybe_assemble_visibility (tree decl
)
5974 enum symbol_visibility vis
= DECL_VISIBILITY (decl
);
5976 if (TREE_CODE (decl
) == FUNCTION_DECL
5977 && cgraph_node::get (decl
)
5978 && cgraph_node::get (decl
)->instrumentation_clone
5979 && cgraph_node::get (decl
)->instrumented_version
)
5980 vis
= DECL_VISIBILITY (cgraph_node::get (decl
)->instrumented_version
->decl
);
5982 if (vis
!= VISIBILITY_DEFAULT
)
5984 targetm
.asm_out
.assemble_visibility (decl
, vis
);
5991 /* Returns 1 if the target configuration supports defining public symbols
5992 so that one of them will be chosen at link time instead of generating a
5993 multiply-defined symbol error, whether through the use of weak symbols or
5994 a target-specific mechanism for having duplicates discarded. */
5997 supports_one_only (void)
5999 if (SUPPORTS_ONE_ONLY
)
6001 return TARGET_SUPPORTS_WEAK
;
6004 /* Set up DECL as a public symbol that can be defined in multiple
6005 translation units without generating a linker error. */
6008 make_decl_one_only (tree decl
, tree comdat_group
)
6010 struct symtab_node
*symbol
;
6011 gcc_assert (TREE_CODE (decl
) == VAR_DECL
6012 || TREE_CODE (decl
) == FUNCTION_DECL
);
6014 TREE_PUBLIC (decl
) = 1;
6016 if (TREE_CODE (decl
) == VAR_DECL
)
6017 symbol
= varpool_node::get_create (decl
);
6019 symbol
= cgraph_node::get_create (decl
);
6021 if (SUPPORTS_ONE_ONLY
)
6023 #ifdef MAKE_DECL_ONE_ONLY
6024 MAKE_DECL_ONE_ONLY (decl
);
6026 symbol
->set_comdat_group (comdat_group
);
6028 else if (TREE_CODE (decl
) == VAR_DECL
6029 && (DECL_INITIAL (decl
) == 0
6030 || (!in_lto_p
&& DECL_INITIAL (decl
) == error_mark_node
)))
6031 DECL_COMMON (decl
) = 1;
6034 gcc_assert (TARGET_SUPPORTS_WEAK
);
6035 DECL_WEAK (decl
) = 1;
6040 init_varasm_once (void)
6042 section_htab
= hash_table
<section_hasher
>::create_ggc (31);
6043 object_block_htab
= hash_table
<object_block_hasher
>::create_ggc (31);
6044 const_desc_htab
= hash_table
<tree_descriptor_hasher
>::create_ggc (1009);
6046 shared_constant_pool
= create_constant_pool ();
6048 #ifdef TEXT_SECTION_ASM_OP
6049 text_section
= get_unnamed_section (SECTION_CODE
, output_section_asm_op
,
6050 TEXT_SECTION_ASM_OP
);
6053 #ifdef DATA_SECTION_ASM_OP
6054 data_section
= get_unnamed_section (SECTION_WRITE
, output_section_asm_op
,
6055 DATA_SECTION_ASM_OP
);
6058 #ifdef SDATA_SECTION_ASM_OP
6059 sdata_section
= get_unnamed_section (SECTION_WRITE
, output_section_asm_op
,
6060 SDATA_SECTION_ASM_OP
);
6063 #ifdef READONLY_DATA_SECTION_ASM_OP
6064 readonly_data_section
= get_unnamed_section (0, output_section_asm_op
,
6065 READONLY_DATA_SECTION_ASM_OP
);
6068 #ifdef CTORS_SECTION_ASM_OP
6069 ctors_section
= get_unnamed_section (0, output_section_asm_op
,
6070 CTORS_SECTION_ASM_OP
);
6073 #ifdef DTORS_SECTION_ASM_OP
6074 dtors_section
= get_unnamed_section (0, output_section_asm_op
,
6075 DTORS_SECTION_ASM_OP
);
6078 #ifdef BSS_SECTION_ASM_OP
6079 bss_section
= get_unnamed_section (SECTION_WRITE
| SECTION_BSS
,
6080 output_section_asm_op
,
6081 BSS_SECTION_ASM_OP
);
6084 #ifdef SBSS_SECTION_ASM_OP
6085 sbss_section
= get_unnamed_section (SECTION_WRITE
| SECTION_BSS
,
6086 output_section_asm_op
,
6087 SBSS_SECTION_ASM_OP
);
6090 tls_comm_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
6091 | SECTION_COMMON
, emit_tls_common
);
6092 lcomm_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
6093 | SECTION_COMMON
, emit_local
);
6094 comm_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
6095 | SECTION_COMMON
, emit_common
);
6097 #if defined ASM_OUTPUT_ALIGNED_BSS
6098 bss_noswitch_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
,
6102 targetm
.asm_out
.init_sections ();
6104 if (readonly_data_section
== NULL
)
6105 readonly_data_section
= text_section
;
6107 #ifdef ASM_OUTPUT_EXTERNAL
6108 pending_assemble_externals_set
= new hash_set
<tree
>;
6113 decl_default_tls_model (const_tree decl
)
6115 enum tls_model kind
;
6118 is_local
= targetm
.binds_local_p (decl
);
6122 kind
= TLS_MODEL_LOCAL_EXEC
;
6124 kind
= TLS_MODEL_INITIAL_EXEC
;
6127 /* Local dynamic is inefficient when we're not combining the
6128 parts of the address. */
6129 else if (optimize
&& is_local
)
6130 kind
= TLS_MODEL_LOCAL_DYNAMIC
;
6132 kind
= TLS_MODEL_GLOBAL_DYNAMIC
;
6133 if (kind
< flag_tls_default
)
6134 kind
= flag_tls_default
;
6139 /* Select a set of attributes for section NAME based on the properties
6140 of DECL and whether or not RELOC indicates that DECL's initializer
6141 might contain runtime relocations.
6143 We make the section read-only and executable for a function decl,
6144 read-only for a const data decl, and writable for a non-const data decl. */
6147 default_section_type_flags (tree decl
, const char *name
, int reloc
)
6151 if (decl
&& TREE_CODE (decl
) == FUNCTION_DECL
)
6152 flags
= SECTION_CODE
;
6155 enum section_category category
6156 = categorize_decl_for_section (decl
, reloc
);
6157 if (decl_readonly_section_1 (category
))
6159 else if (category
== SECCAT_DATA_REL_RO
6160 || category
== SECCAT_DATA_REL_RO_LOCAL
)
6161 flags
= SECTION_WRITE
| SECTION_RELRO
;
6163 flags
= SECTION_WRITE
;
6167 flags
= SECTION_WRITE
;
6168 if (strcmp (name
, ".data.rel.ro") == 0
6169 || strcmp (name
, ".data.rel.ro.local") == 0)
6170 flags
|= SECTION_RELRO
;
6173 if (decl
&& DECL_P (decl
) && DECL_COMDAT_GROUP (decl
))
6174 flags
|= SECTION_LINKONCE
;
6176 if (strcmp (name
, ".vtable_map_vars") == 0)
6177 flags
|= SECTION_LINKONCE
;
6179 if (decl
&& TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL_P (decl
))
6180 flags
|= SECTION_TLS
| SECTION_WRITE
;
6182 if (strcmp (name
, ".bss") == 0
6183 || strncmp (name
, ".bss.", 5) == 0
6184 || strncmp (name
, ".gnu.linkonce.b.", 16) == 0
6185 || strcmp (name
, ".persistent.bss") == 0
6186 || strcmp (name
, ".sbss") == 0
6187 || strncmp (name
, ".sbss.", 6) == 0
6188 || strncmp (name
, ".gnu.linkonce.sb.", 17) == 0)
6189 flags
|= SECTION_BSS
;
6191 if (strcmp (name
, ".tdata") == 0
6192 || strncmp (name
, ".tdata.", 7) == 0
6193 || strncmp (name
, ".gnu.linkonce.td.", 17) == 0)
6194 flags
|= SECTION_TLS
;
6196 if (strcmp (name
, ".tbss") == 0
6197 || strncmp (name
, ".tbss.", 6) == 0
6198 || strncmp (name
, ".gnu.linkonce.tb.", 17) == 0)
6199 flags
|= SECTION_TLS
| SECTION_BSS
;
6201 /* These three sections have special ELF types. They are neither
6202 SHT_PROGBITS nor SHT_NOBITS, so when changing sections we don't
6203 want to print a section type (@progbits or @nobits). If someone
6204 is silly enough to emit code or TLS variables to one of these
6205 sections, then don't handle them specially. */
6206 if (!(flags
& (SECTION_CODE
| SECTION_BSS
| SECTION_TLS
))
6207 && (strcmp (name
, ".init_array") == 0
6208 || strcmp (name
, ".fini_array") == 0
6209 || strcmp (name
, ".preinit_array") == 0))
6210 flags
|= SECTION_NOTYPE
;
6215 /* Return true if the target supports some form of global BSS,
6216 either through bss_noswitch_section, or by selecting a BSS
6217 section in TARGET_ASM_SELECT_SECTION. */
6220 have_global_bss_p (void)
6222 return bss_noswitch_section
|| targetm
.have_switchable_bss_sections
;
6225 /* Output assembly to switch to section NAME with attribute FLAGS.
6226 Four variants for common object file formats. */
6229 default_no_named_section (const char *name ATTRIBUTE_UNUSED
,
6230 unsigned int flags ATTRIBUTE_UNUSED
,
6231 tree decl ATTRIBUTE_UNUSED
)
6233 /* Some object formats don't support named sections at all. The
6234 front-end should already have flagged this as an error. */
6238 #ifndef TLS_SECTION_ASM_FLAG
6239 #define TLS_SECTION_ASM_FLAG 'T'
6243 default_elf_asm_named_section (const char *name
, unsigned int flags
,
6244 tree decl ATTRIBUTE_UNUSED
)
6246 char flagchars
[10], *f
= flagchars
;
6248 /* If we have already declared this section, we can use an
6249 abbreviated form to switch back to it -- unless this section is
6250 part of a COMDAT groups, in which case GAS requires the full
6251 declaration every time. */
6252 if (!(HAVE_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
6253 && (flags
& SECTION_DECLARED
))
6255 fprintf (asm_out_file
, "\t.section\t%s\n", name
);
6259 if (!(flags
& SECTION_DEBUG
))
6261 #if defined (HAVE_GAS_SECTION_EXCLUDE) && HAVE_GAS_SECTION_EXCLUDE == 1
6262 if (flags
& SECTION_EXCLUDE
)
6265 if (flags
& SECTION_WRITE
)
6267 if (flags
& SECTION_CODE
)
6269 if (flags
& SECTION_SMALL
)
6271 if (flags
& SECTION_MERGE
)
6273 if (flags
& SECTION_STRINGS
)
6275 if (flags
& SECTION_TLS
)
6276 *f
++ = TLS_SECTION_ASM_FLAG
;
6277 if (HAVE_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
6281 fprintf (asm_out_file
, "\t.section\t%s,\"%s\"", name
, flagchars
);
6283 if (!(flags
& SECTION_NOTYPE
))
6288 if (flags
& SECTION_BSS
)
6294 /* On platforms that use "@" as the assembly comment character,
6296 if (strcmp (ASM_COMMENT_START
, "@") == 0)
6298 fprintf (asm_out_file
, format
, type
);
6300 if (flags
& SECTION_ENTSIZE
)
6301 fprintf (asm_out_file
, ",%d", flags
& SECTION_ENTSIZE
);
6302 if (HAVE_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
6304 if (TREE_CODE (decl
) == IDENTIFIER_NODE
)
6305 fprintf (asm_out_file
, ",%s,comdat", IDENTIFIER_POINTER (decl
));
6307 fprintf (asm_out_file
, ",%s,comdat",
6308 IDENTIFIER_POINTER (DECL_COMDAT_GROUP (decl
)));
6312 putc ('\n', asm_out_file
);
6316 default_coff_asm_named_section (const char *name
, unsigned int flags
,
6317 tree decl ATTRIBUTE_UNUSED
)
6319 char flagchars
[8], *f
= flagchars
;
6321 if (flags
& SECTION_WRITE
)
6323 if (flags
& SECTION_CODE
)
6327 fprintf (asm_out_file
, "\t.section\t%s,\"%s\"\n", name
, flagchars
);
6331 default_pe_asm_named_section (const char *name
, unsigned int flags
,
6334 default_coff_asm_named_section (name
, flags
, decl
);
6336 if (flags
& SECTION_LINKONCE
)
6338 /* Functions may have been compiled at various levels of
6339 optimization so we can't use `same_size' here.
6340 Instead, have the linker pick one. */
6341 fprintf (asm_out_file
, "\t.linkonce %s\n",
6342 (flags
& SECTION_CODE
? "discard" : "same_size"));
6346 /* The lame default section selector. */
6349 default_select_section (tree decl
, int reloc
,
6350 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
)
6354 if (decl_readonly_section (decl
, reloc
))
6355 return readonly_data_section
;
6357 else if (TREE_CODE (decl
) == CONSTRUCTOR
)
6359 if (! ((flag_pic
&& reloc
)
6360 || !TREE_READONLY (decl
)
6361 || TREE_SIDE_EFFECTS (decl
)
6362 || !TREE_CONSTANT (decl
)))
6363 return readonly_data_section
;
6365 else if (TREE_CODE (decl
) == STRING_CST
)
6366 return readonly_data_section
;
6367 else if (! (flag_pic
&& reloc
))
6368 return readonly_data_section
;
6370 return data_section
;
6373 enum section_category
6374 categorize_decl_for_section (const_tree decl
, int reloc
)
6376 enum section_category ret
;
6378 if (TREE_CODE (decl
) == FUNCTION_DECL
)
6380 else if (TREE_CODE (decl
) == STRING_CST
)
6382 if ((flag_sanitize
& SANITIZE_ADDRESS
)
6383 && asan_protect_global (CONST_CAST_TREE (decl
)))
6384 /* or !flag_merge_constants */
6385 return SECCAT_RODATA
;
6387 return SECCAT_RODATA_MERGE_STR
;
6389 else if (TREE_CODE (decl
) == VAR_DECL
)
6391 if (bss_initializer_p (decl
))
6393 else if (! TREE_READONLY (decl
)
6394 || TREE_SIDE_EFFECTS (decl
)
6395 || ! TREE_CONSTANT (DECL_INITIAL (decl
)))
6397 /* Here the reloc_rw_mask is not testing whether the section should
6398 be read-only or not, but whether the dynamic link will have to
6399 do something. If so, we wish to segregate the data in order to
6400 minimize cache misses inside the dynamic linker. */
6401 if (reloc
& targetm
.asm_out
.reloc_rw_mask ())
6402 ret
= reloc
== 1 ? SECCAT_DATA_REL_LOCAL
: SECCAT_DATA_REL
;
6406 else if (reloc
& targetm
.asm_out
.reloc_rw_mask ())
6407 ret
= reloc
== 1 ? SECCAT_DATA_REL_RO_LOCAL
: SECCAT_DATA_REL_RO
;
6408 else if (reloc
|| flag_merge_constants
< 2
6409 || ((flag_sanitize
& SANITIZE_ADDRESS
)
6410 && asan_protect_global (CONST_CAST_TREE (decl
))))
6411 /* C and C++ don't allow different variables to share the same
6412 location. -fmerge-all-constants allows even that (at the
6413 expense of not conforming). */
6414 ret
= SECCAT_RODATA
;
6415 else if (TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
)
6416 ret
= SECCAT_RODATA_MERGE_STR_INIT
;
6418 ret
= SECCAT_RODATA_MERGE_CONST
;
6420 else if (TREE_CODE (decl
) == CONSTRUCTOR
)
6422 if ((reloc
& targetm
.asm_out
.reloc_rw_mask ())
6423 || TREE_SIDE_EFFECTS (decl
)
6424 || ! TREE_CONSTANT (decl
))
6427 ret
= SECCAT_RODATA
;
6430 ret
= SECCAT_RODATA
;
6432 /* There are no read-only thread-local sections. */
6433 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL_P (decl
))
6435 /* Note that this would be *just* SECCAT_BSS, except that there's
6436 no concept of a read-only thread-local-data section. */
6437 if (ret
== SECCAT_BSS
6438 || (flag_zero_initialized_in_bss
6439 && initializer_zerop (DECL_INITIAL (decl
))))
6445 /* If the target uses small data sections, select it. */
6446 else if (targetm
.in_small_data_p (decl
))
6448 if (ret
== SECCAT_BSS
)
6450 else if (targetm
.have_srodata_section
&& ret
== SECCAT_RODATA
)
6451 ret
= SECCAT_SRODATA
;
6460 decl_readonly_section_1 (enum section_category category
)
6465 case SECCAT_RODATA_MERGE_STR
:
6466 case SECCAT_RODATA_MERGE_STR_INIT
:
6467 case SECCAT_RODATA_MERGE_CONST
:
6468 case SECCAT_SRODATA
:
6476 decl_readonly_section (const_tree decl
, int reloc
)
6478 return decl_readonly_section_1 (categorize_decl_for_section (decl
, reloc
));
6481 /* Select a section based on the above categorization. */
6484 default_elf_select_section (tree decl
, int reloc
,
6485 unsigned HOST_WIDE_INT align
)
6488 switch (categorize_decl_for_section (decl
, reloc
))
6491 /* We're not supposed to be called on FUNCTION_DECLs. */
6494 return readonly_data_section
;
6495 case SECCAT_RODATA_MERGE_STR
:
6496 return mergeable_string_section (decl
, align
, 0);
6497 case SECCAT_RODATA_MERGE_STR_INIT
:
6498 return mergeable_string_section (DECL_INITIAL (decl
), align
, 0);
6499 case SECCAT_RODATA_MERGE_CONST
:
6500 return mergeable_constant_section (DECL_MODE (decl
), align
, 0);
6501 case SECCAT_SRODATA
:
6505 return data_section
;
6506 case SECCAT_DATA_REL
:
6507 sname
= ".data.rel";
6509 case SECCAT_DATA_REL_LOCAL
:
6510 sname
= ".data.rel.local";
6512 case SECCAT_DATA_REL_RO
:
6513 sname
= ".data.rel.ro";
6515 case SECCAT_DATA_REL_RO_LOCAL
:
6516 sname
= ".data.rel.ro.local";
6539 return get_named_section (decl
, sname
, reloc
);
6542 /* Construct a unique section name based on the decl name and the
6543 categorization performed above. */
6546 default_unique_section (tree decl
, int reloc
)
6548 /* We only need to use .gnu.linkonce if we don't have COMDAT groups. */
6549 bool one_only
= DECL_ONE_ONLY (decl
) && !HAVE_COMDAT_GROUP
;
6550 const char *prefix
, *name
, *linkonce
;
6554 switch (categorize_decl_for_section (decl
, reloc
))
6557 prefix
= one_only
? ".t" : ".text";
6560 case SECCAT_RODATA_MERGE_STR
:
6561 case SECCAT_RODATA_MERGE_STR_INIT
:
6562 case SECCAT_RODATA_MERGE_CONST
:
6563 prefix
= one_only
? ".r" : ".rodata";
6565 case SECCAT_SRODATA
:
6566 prefix
= one_only
? ".s2" : ".sdata2";
6569 prefix
= one_only
? ".d" : ".data";
6571 case SECCAT_DATA_REL
:
6572 prefix
= one_only
? ".d.rel" : ".data.rel";
6574 case SECCAT_DATA_REL_LOCAL
:
6575 prefix
= one_only
? ".d.rel.local" : ".data.rel.local";
6577 case SECCAT_DATA_REL_RO
:
6578 prefix
= one_only
? ".d.rel.ro" : ".data.rel.ro";
6580 case SECCAT_DATA_REL_RO_LOCAL
:
6581 prefix
= one_only
? ".d.rel.ro.local" : ".data.rel.ro.local";
6584 prefix
= one_only
? ".s" : ".sdata";
6587 prefix
= one_only
? ".b" : ".bss";
6590 prefix
= one_only
? ".sb" : ".sbss";
6593 prefix
= one_only
? ".td" : ".tdata";
6596 prefix
= one_only
? ".tb" : ".tbss";
6602 id
= DECL_ASSEMBLER_NAME (decl
);
6603 ultimate_transparent_alias_target (&id
);
6604 name
= IDENTIFIER_POINTER (id
);
6605 name
= targetm
.strip_name_encoding (name
);
6607 /* If we're using one_only, then there needs to be a .gnu.linkonce
6608 prefix to the section name. */
6609 linkonce
= one_only
? ".gnu.linkonce" : "";
6611 string
= ACONCAT ((linkonce
, prefix
, ".", name
, NULL
));
6613 set_decl_section_name (decl
, string
);
6616 /* Subroutine of compute_reloc_for_rtx for leaf rtxes. */
6619 compute_reloc_for_rtx_1 (const_rtx x
)
6621 switch (GET_CODE (x
))
6624 return SYMBOL_REF_LOCAL_P (x
) ? 1 : 2;
6632 /* Like compute_reloc_for_constant, except for an RTX. The return value
6633 is a mask for which bit 1 indicates a global relocation, and bit 0
6634 indicates a local relocation. */
6637 compute_reloc_for_rtx (const_rtx x
)
6639 switch (GET_CODE (x
))
6643 return compute_reloc_for_rtx_1 (x
);
6648 subrtx_iterator::array_type array
;
6649 FOR_EACH_SUBRTX (iter
, array
, x
, ALL
)
6650 reloc
|= compute_reloc_for_rtx_1 (*iter
);
6660 default_select_rtx_section (machine_mode mode ATTRIBUTE_UNUSED
,
6662 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
)
6664 if (compute_reloc_for_rtx (x
) & targetm
.asm_out
.reloc_rw_mask ())
6665 return data_section
;
6667 return readonly_data_section
;
6671 default_elf_select_rtx_section (machine_mode mode
, rtx x
,
6672 unsigned HOST_WIDE_INT align
)
6674 int reloc
= compute_reloc_for_rtx (x
);
6676 /* ??? Handle small data here somehow. */
6678 if (reloc
& targetm
.asm_out
.reloc_rw_mask ())
6681 return get_named_section (NULL
, ".data.rel.ro.local", 1);
6683 return get_named_section (NULL
, ".data.rel.ro", 3);
6686 return mergeable_constant_section (mode
, align
, 0);
6689 /* Set the generally applicable flags on the SYMBOL_REF for EXP. */
6692 default_encode_section_info (tree decl
, rtx rtl
, int first ATTRIBUTE_UNUSED
)
6697 /* Careful not to prod global register variables. */
6700 symbol
= XEXP (rtl
, 0);
6701 if (GET_CODE (symbol
) != SYMBOL_REF
)
6704 flags
= SYMBOL_REF_FLAGS (symbol
) & SYMBOL_FLAG_HAS_BLOCK_INFO
;
6705 if (TREE_CODE (decl
) == FUNCTION_DECL
)
6706 flags
|= SYMBOL_FLAG_FUNCTION
;
6707 if (targetm
.binds_local_p (decl
))
6708 flags
|= SYMBOL_FLAG_LOCAL
;
6709 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL_P (decl
))
6710 flags
|= DECL_TLS_MODEL (decl
) << SYMBOL_FLAG_TLS_SHIFT
;
6711 else if (targetm
.in_small_data_p (decl
))
6712 flags
|= SYMBOL_FLAG_SMALL
;
6713 /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names? Without
6714 being PUBLIC, the thing *must* be defined in this translation unit.
6715 Prevent this buglet from being propagated into rtl code as well. */
6716 if (DECL_P (decl
) && DECL_EXTERNAL (decl
) && TREE_PUBLIC (decl
))
6717 flags
|= SYMBOL_FLAG_EXTERNAL
;
6719 SYMBOL_REF_FLAGS (symbol
) = flags
;
6722 /* By default, we do nothing for encode_section_info, so we need not
6723 do anything but discard the '*' marker. */
6726 default_strip_name_encoding (const char *str
)
6728 return str
+ (*str
== '*');
6731 #ifdef ASM_OUTPUT_DEF
6732 /* The default implementation of TARGET_ASM_OUTPUT_ANCHOR. Define the
6733 anchor relative to ".", the current section position. */
6736 default_asm_output_anchor (rtx symbol
)
6740 sprintf (buffer
, "*. + " HOST_WIDE_INT_PRINT_DEC
,
6741 SYMBOL_REF_BLOCK_OFFSET (symbol
));
6742 ASM_OUTPUT_DEF (asm_out_file
, XSTR (symbol
, 0), buffer
);
6746 /* The default implementation of TARGET_USE_ANCHORS_FOR_SYMBOL_P. */
6749 default_use_anchors_for_symbol_p (const_rtx symbol
)
6754 /* Don't use anchors for mergeable sections. The linker might move
6755 the objects around. */
6756 sect
= SYMBOL_REF_BLOCK (symbol
)->sect
;
6757 if (sect
->common
.flags
& SECTION_MERGE
)
6760 /* Don't use anchors for small data sections. The small data register
6761 acts as an anchor for such sections. */
6762 if (sect
->common
.flags
& SECTION_SMALL
)
6765 decl
= SYMBOL_REF_DECL (symbol
);
6766 if (decl
&& DECL_P (decl
))
6768 /* Don't use section anchors for decls that might be defined or
6769 usurped by other modules. */
6770 if (TREE_PUBLIC (decl
) && !decl_binds_to_current_def_p (decl
))
6773 /* Don't use section anchors for decls that will be placed in a
6774 small data section. */
6775 /* ??? Ideally, this check would be redundant with the SECTION_SMALL
6776 one above. The problem is that we only use SECTION_SMALL for
6777 sections that should be marked as small in the section directive. */
6778 if (targetm
.in_small_data_p (decl
))
6784 /* Return true when RESOLUTION indicate that symbol will be bound to the
6785 definition provided by current .o file. */
6788 resolution_to_local_definition_p (enum ld_plugin_symbol_resolution resolution
)
6790 return (resolution
== LDPR_PREVAILING_DEF
6791 || resolution
== LDPR_PREVAILING_DEF_IRONLY_EXP
6792 || resolution
== LDPR_PREVAILING_DEF_IRONLY
);
6795 /* Return true when RESOLUTION indicate that symbol will be bound locally
6796 within current executable or DSO. */
6799 resolution_local_p (enum ld_plugin_symbol_resolution resolution
)
6801 return (resolution
== LDPR_PREVAILING_DEF
6802 || resolution
== LDPR_PREVAILING_DEF_IRONLY
6803 || resolution
== LDPR_PREVAILING_DEF_IRONLY_EXP
6804 || resolution
== LDPR_PREEMPTED_REG
6805 || resolution
== LDPR_PREEMPTED_IR
6806 || resolution
== LDPR_RESOLVED_IR
6807 || resolution
== LDPR_RESOLVED_EXEC
);
6810 /* COMMON_LOCAL_P is true means that the linker can guarantee that an
6811 uninitialized common symbol in the executable will still be defined
6812 (through COPY relocation) in the executable. */
6815 default_binds_local_p_3 (const_tree exp
, bool shlib
, bool weak_dominate
,
6816 bool extern_protected_data
, bool common_local_p
)
6818 /* A non-decl is an entry in the constant pool. */
6822 /* Weakrefs may not bind locally, even though the weakref itself is always
6823 static and therefore local. Similarly, the resolver for ifunc functions
6824 might resolve to a non-local function.
6825 FIXME: We can resolve the weakref case more curefuly by looking at the
6827 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (exp
))
6828 || (TREE_CODE (exp
) == FUNCTION_DECL
6829 && lookup_attribute ("ifunc", DECL_ATTRIBUTES (exp
))))
6832 /* Static variables are always local. */
6833 if (! TREE_PUBLIC (exp
))
6836 /* With resolution file in hand, take look into resolutions.
6837 We can't just return true for resolved_locally symbols,
6838 because dynamic linking might overwrite symbols
6839 in shared libraries. */
6840 bool resolved_locally
= false;
6842 bool uninited_common
= (DECL_COMMON (exp
)
6843 && (DECL_INITIAL (exp
) == NULL
6845 && DECL_INITIAL (exp
) == error_mark_node
)));
6847 /* A non-external variable is defined locally only if it isn't
6848 uninitialized COMMON variable or common_local_p is true. */
6849 bool defined_locally
= (!DECL_EXTERNAL (exp
)
6850 && (!uninited_common
|| common_local_p
));
6851 if (symtab_node
*node
= symtab_node::get (exp
))
6853 if (node
->in_other_partition
)
6854 defined_locally
= true;
6855 if (resolution_to_local_definition_p (node
->resolution
))
6856 defined_locally
= resolved_locally
= true;
6857 else if (resolution_local_p (node
->resolution
))
6858 resolved_locally
= true;
6860 if (defined_locally
&& weak_dominate
&& !shlib
)
6861 resolved_locally
= true;
6863 /* Undefined weak symbols are never defined locally. */
6864 if (DECL_WEAK (exp
) && !defined_locally
)
6867 /* A symbol is local if the user has said explicitly that it will be,
6868 or if we have a definition for the symbol. We cannot infer visibility
6869 for undefined symbols. */
6870 if (DECL_VISIBILITY (exp
) != VISIBILITY_DEFAULT
6871 && (TREE_CODE (exp
) == FUNCTION_DECL
6872 || !extern_protected_data
6873 || DECL_VISIBILITY (exp
) != VISIBILITY_PROTECTED
)
6874 && (DECL_VISIBILITY_SPECIFIED (exp
) || defined_locally
))
6877 /* If PIC, then assume that any global name can be overridden by
6878 symbols resolved from other modules. */
6882 /* Variables defined outside this object might not be local. */
6883 if (DECL_EXTERNAL (exp
) && !resolved_locally
)
6886 /* Non-dominant weak symbols are not defined locally. */
6887 if (DECL_WEAK (exp
) && !resolved_locally
)
6890 /* Uninitialized COMMON variable may be unified with symbols
6891 resolved from other modules. */
6892 if (uninited_common
&& !resolved_locally
)
6895 /* Otherwise we're left with initialized (or non-common) global data
6896 which is of necessity defined locally. */
6900 /* Assume ELF-ish defaults, since that's pretty much the most liberal
6901 wrt cross-module name binding. */
6904 default_binds_local_p (const_tree exp
)
6906 return default_binds_local_p_3 (exp
, flag_shlib
!= 0, true, false, false);
6909 /* Similar to default_binds_local_p, but common symbol may be local. */
6912 default_binds_local_p_2 (const_tree exp
)
6914 return default_binds_local_p_3 (exp
, flag_shlib
!= 0, true, false,
6919 default_binds_local_p_1 (const_tree exp
, int shlib
)
6921 return default_binds_local_p_3 (exp
, shlib
!= 0, false, false, false);
6924 /* Return true when references to DECL must bind to current definition in
6927 The condition is usually equivalent to whether the function binds to the
6928 current module (shared library or executable), that is to binds_local_p.
6929 We use this fact to avoid need for another target hook and implement
6930 the logic using binds_local_p and just special cases where
6931 decl_binds_to_current_def_p is stronger than binds_local_p. In particular
6932 the weak definitions (that can be overwritten at linktime by other
6933 definition from different object file) and when resolution info is available
6934 we simply use the knowledge passed to us by linker plugin. */
6936 decl_binds_to_current_def_p (const_tree decl
)
6938 gcc_assert (DECL_P (decl
));
6939 if (!targetm
.binds_local_p (decl
))
6941 if (!TREE_PUBLIC (decl
))
6944 /* When resolution is available, just use it. */
6945 if (symtab_node
*node
= symtab_node::get (decl
))
6947 if (node
->resolution
!= LDPR_UNKNOWN
)
6948 return resolution_to_local_definition_p (node
->resolution
);
6951 /* Otherwise we have to assume the worst for DECL_WEAK (hidden weaks
6952 binds locally but still can be overwritten), DECL_COMMON (can be merged
6953 with a non-common definition somewhere in the same module) or
6955 This rely on fact that binds_local_p behave as decl_replaceable_p
6956 for all other declaration types. */
6957 if (DECL_WEAK (decl
))
6959 if (DECL_COMMON (decl
)
6960 && (DECL_INITIAL (decl
) == NULL
6961 || (!in_lto_p
&& DECL_INITIAL (decl
) == error_mark_node
)))
6963 if (DECL_EXTERNAL (decl
))
6968 /* A replaceable function or variable is one which may be replaced
6969 at link-time with an entirely different definition, provided that the
6970 replacement has the same type. For example, functions declared
6971 with __attribute__((weak)) on most systems are replaceable.
6973 COMDAT functions are not replaceable, since all definitions of the
6974 function must be equivalent. It is important that COMDAT functions
6975 not be treated as replaceable so that use of C++ template
6976 instantiations is not penalized. */
6979 decl_replaceable_p (tree decl
)
6981 gcc_assert (DECL_P (decl
));
6982 if (!TREE_PUBLIC (decl
) || DECL_COMDAT (decl
))
6984 if (!flag_semantic_interposition
6985 && !DECL_WEAK (decl
))
6987 return !decl_binds_to_current_def_p (decl
);
6990 /* Default function to output code that will globalize a label. A
6991 target must define GLOBAL_ASM_OP or provide its own function to
6992 globalize a label. */
6993 #ifdef GLOBAL_ASM_OP
6995 default_globalize_label (FILE * stream
, const char *name
)
6997 fputs (GLOBAL_ASM_OP
, stream
);
6998 assemble_name (stream
, name
);
6999 putc ('\n', stream
);
7001 #endif /* GLOBAL_ASM_OP */
7003 /* Default function to output code that will globalize a declaration. */
7005 default_globalize_decl_name (FILE * stream
, tree decl
)
7007 const char *name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
7008 targetm
.asm_out
.globalize_label (stream
, name
);
7011 /* Default function to output a label for unwind information. The
7012 default is to do nothing. A target that needs nonlocal labels for
7013 unwind information must provide its own function to do this. */
7015 default_emit_unwind_label (FILE * stream ATTRIBUTE_UNUSED
,
7016 tree decl ATTRIBUTE_UNUSED
,
7017 int for_eh ATTRIBUTE_UNUSED
,
7018 int empty ATTRIBUTE_UNUSED
)
7022 /* Default function to output a label to divide up the exception table.
7023 The default is to do nothing. A target that needs/wants to divide
7024 up the table must provide it's own function to do this. */
7026 default_emit_except_table_label (FILE * stream ATTRIBUTE_UNUSED
)
7030 /* This is how to output an internal numbered label where PREFIX is
7031 the class of label and LABELNO is the number within the class. */
7034 default_generate_internal_label (char *buf
, const char *prefix
,
7035 unsigned long labelno
)
7037 ASM_GENERATE_INTERNAL_LABEL (buf
, prefix
, labelno
);
7040 /* This is how to output an internal numbered label where PREFIX is
7041 the class of label and LABELNO is the number within the class. */
7044 default_internal_label (FILE *stream
, const char *prefix
,
7045 unsigned long labelno
)
7047 char *const buf
= (char *) alloca (40 + strlen (prefix
));
7048 ASM_GENERATE_INTERNAL_LABEL (buf
, prefix
, labelno
);
7049 ASM_OUTPUT_INTERNAL_LABEL (stream
, buf
);
7053 /* The default implementation of ASM_DECLARE_CONSTANT_NAME. */
7056 default_asm_declare_constant_name (FILE *file
, const char *name
,
7057 const_tree exp ATTRIBUTE_UNUSED
,
7058 HOST_WIDE_INT size ATTRIBUTE_UNUSED
)
7060 assemble_label (file
, name
);
7063 /* This is the default behavior at the beginning of a file. It's
7064 controlled by two other target-hook toggles. */
7066 default_file_start (void)
7068 if (targetm
.asm_file_start_app_off
7069 && !(flag_verbose_asm
|| flag_debug_asm
|| flag_dump_rtl_in_asm
))
7070 fputs (ASM_APP_OFF
, asm_out_file
);
7072 if (targetm
.asm_file_start_file_directive
)
7074 /* LTO produced units have no meaningful main_input_filename. */
7076 output_file_directive (asm_out_file
, "<artificial>");
7078 output_file_directive (asm_out_file
, main_input_filename
);
7082 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
7083 which emits a special section directive used to indicate whether or
7084 not this object file needs an executable stack. This is primarily
7085 a GNU extension to ELF but could be used on other targets. */
7087 int trampolines_created
;
7090 file_end_indicate_exec_stack (void)
7092 unsigned int flags
= SECTION_DEBUG
;
7093 if (trampolines_created
)
7094 flags
|= SECTION_CODE
;
7096 switch_to_section (get_section (".note.GNU-stack", flags
, NULL
));
7099 /* Emit a special section directive to indicate that this object file
7100 was compiled with -fsplit-stack. This is used to let the linker
7101 detect calls between split-stack code and non-split-stack code, so
7102 that it can modify the split-stack code to allocate a sufficiently
7103 large stack. We emit another special section if there are any
7104 functions in this file which have the no_split_stack attribute, to
7105 prevent the linker from warning about being unable to convert the
7106 functions if they call non-split-stack code. */
7109 file_end_indicate_split_stack (void)
7111 if (flag_split_stack
)
7113 switch_to_section (get_section (".note.GNU-split-stack", SECTION_DEBUG
,
7115 if (saw_no_split_stack
)
7116 switch_to_section (get_section (".note.GNU-no-split-stack",
7117 SECTION_DEBUG
, NULL
));
7121 /* Output DIRECTIVE (a C string) followed by a newline. This is used as
7122 a get_unnamed_section callback. */
7125 output_section_asm_op (const void *directive
)
7127 fprintf (asm_out_file
, "%s\n", (const char *) directive
);
7130 /* Emit assembly code to switch to section NEW_SECTION. Do nothing if
7131 the current section is NEW_SECTION. */
7134 switch_to_section (section
*new_section
)
7136 if (in_section
== new_section
)
7139 if (new_section
->common
.flags
& SECTION_FORGET
)
7142 in_section
= new_section
;
7144 switch (SECTION_STYLE (new_section
))
7147 targetm
.asm_out
.named_section (new_section
->named
.name
,
7148 new_section
->named
.common
.flags
,
7149 new_section
->named
.decl
);
7152 case SECTION_UNNAMED
:
7153 new_section
->unnamed
.callback (new_section
->unnamed
.data
);
7156 case SECTION_NOSWITCH
:
7161 new_section
->common
.flags
|= SECTION_DECLARED
;
7164 /* If block symbol SYMBOL has not yet been assigned an offset, place
7165 it at the end of its block. */
7168 place_block_symbol (rtx symbol
)
7170 unsigned HOST_WIDE_INT size
, mask
, offset
;
7171 struct constant_descriptor_rtx
*desc
;
7172 unsigned int alignment
;
7173 struct object_block
*block
;
7176 gcc_assert (SYMBOL_REF_BLOCK (symbol
));
7177 if (SYMBOL_REF_BLOCK_OFFSET (symbol
) >= 0)
7180 /* Work out the symbol's size and alignment. */
7181 if (CONSTANT_POOL_ADDRESS_P (symbol
))
7183 desc
= SYMBOL_REF_CONSTANT (symbol
);
7184 alignment
= desc
->align
;
7185 size
= GET_MODE_SIZE (desc
->mode
);
7187 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol
))
7189 decl
= SYMBOL_REF_DECL (symbol
);
7190 gcc_checking_assert (DECL_IN_CONSTANT_POOL (decl
));
7191 alignment
= DECL_ALIGN (decl
);
7192 size
= get_constant_size (DECL_INITIAL (decl
));
7193 if ((flag_sanitize
& SANITIZE_ADDRESS
)
7194 && TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
7195 && asan_protect_global (DECL_INITIAL (decl
)))
7196 size
+= asan_red_zone_size (size
);
7200 struct symtab_node
*snode
;
7201 decl
= SYMBOL_REF_DECL (symbol
);
7203 snode
= symtab_node::get (decl
);
7206 rtx target
= DECL_RTL (snode
->ultimate_alias_target ()->decl
);
7208 gcc_assert (MEM_P (target
)
7209 && GET_CODE (XEXP (target
, 0)) == SYMBOL_REF
7210 && SYMBOL_REF_HAS_BLOCK_INFO_P (XEXP (target
, 0)));
7211 target
= XEXP (target
, 0);
7212 place_block_symbol (target
);
7213 SYMBOL_REF_BLOCK_OFFSET (symbol
) = SYMBOL_REF_BLOCK_OFFSET (target
);
7216 alignment
= get_variable_align (decl
);
7217 size
= tree_to_uhwi (DECL_SIZE_UNIT (decl
));
7218 if ((flag_sanitize
& SANITIZE_ADDRESS
)
7219 && asan_protect_global (decl
))
7221 size
+= asan_red_zone_size (size
);
7222 alignment
= MAX (alignment
,
7223 ASAN_RED_ZONE_SIZE
* BITS_PER_UNIT
);
7227 /* Calculate the object's offset from the start of the block. */
7228 block
= SYMBOL_REF_BLOCK (symbol
);
7229 mask
= alignment
/ BITS_PER_UNIT
- 1;
7230 offset
= (block
->size
+ mask
) & ~mask
;
7231 SYMBOL_REF_BLOCK_OFFSET (symbol
) = offset
;
7233 /* Record the block's new alignment and size. */
7234 block
->alignment
= MAX (block
->alignment
, alignment
);
7235 block
->size
= offset
+ size
;
7237 vec_safe_push (block
->objects
, symbol
);
7240 /* Return the anchor that should be used to address byte offset OFFSET
7241 from the first object in BLOCK. MODEL is the TLS model used
7245 get_section_anchor (struct object_block
*block
, HOST_WIDE_INT offset
,
7246 enum tls_model model
)
7249 unsigned int begin
, middle
, end
;
7250 unsigned HOST_WIDE_INT min_offset
, max_offset
, range
, bias
, delta
;
7253 /* Work out the anchor's offset. Use an offset of 0 for the first
7254 anchor so that we don't pessimize the case where we take the address
7255 of a variable at the beginning of the block. This is particularly
7256 useful when a block has only one variable assigned to it.
7258 We try to place anchors RANGE bytes apart, so there can then be
7259 anchors at +/-RANGE, +/-2 * RANGE, and so on, up to the limits of
7260 a ptr_mode offset. With some target settings, the lowest such
7261 anchor might be out of range for the lowest ptr_mode offset;
7262 likewise the highest anchor for the highest offset. Use anchors
7263 at the extreme ends of the ptr_mode range in such cases.
7265 All arithmetic uses unsigned integers in order to avoid
7267 max_offset
= (unsigned HOST_WIDE_INT
) targetm
.max_anchor_offset
;
7268 min_offset
= (unsigned HOST_WIDE_INT
) targetm
.min_anchor_offset
;
7269 range
= max_offset
- min_offset
+ 1;
7274 bias
= HOST_WIDE_INT_1U
<< (GET_MODE_BITSIZE (ptr_mode
) - 1);
7277 delta
= -(unsigned HOST_WIDE_INT
) offset
+ max_offset
;
7278 delta
-= delta
% range
;
7281 offset
= (HOST_WIDE_INT
) (-delta
);
7285 delta
= (unsigned HOST_WIDE_INT
) offset
- min_offset
;
7286 delta
-= delta
% range
;
7287 if (delta
> bias
- 1)
7289 offset
= (HOST_WIDE_INT
) delta
;
7293 /* Do a binary search to see if there's already an anchor we can use.
7294 Set BEGIN to the new anchor's index if not. */
7296 end
= vec_safe_length (block
->anchors
);
7297 while (begin
!= end
)
7299 middle
= (end
+ begin
) / 2;
7300 anchor
= (*block
->anchors
)[middle
];
7301 if (SYMBOL_REF_BLOCK_OFFSET (anchor
) > offset
)
7303 else if (SYMBOL_REF_BLOCK_OFFSET (anchor
) < offset
)
7305 else if (SYMBOL_REF_TLS_MODEL (anchor
) > model
)
7307 else if (SYMBOL_REF_TLS_MODEL (anchor
) < model
)
7313 /* Create a new anchor with a unique label. */
7314 ASM_GENERATE_INTERNAL_LABEL (label
, "LANCHOR", anchor_labelno
++);
7315 anchor
= create_block_symbol (ggc_strdup (label
), block
, offset
);
7316 SYMBOL_REF_FLAGS (anchor
) |= SYMBOL_FLAG_LOCAL
| SYMBOL_FLAG_ANCHOR
;
7317 SYMBOL_REF_FLAGS (anchor
) |= model
<< SYMBOL_FLAG_TLS_SHIFT
;
7319 /* Insert it at index BEGIN. */
7320 vec_safe_insert (block
->anchors
, begin
, anchor
);
7324 /* Output the objects in BLOCK. */
7327 output_object_block (struct object_block
*block
)
7329 struct constant_descriptor_rtx
*desc
;
7331 HOST_WIDE_INT offset
;
7335 if (!block
->objects
)
7338 /* Switch to the section and make sure that the first byte is
7339 suitably aligned. */
7340 switch_to_section (block
->sect
);
7341 assemble_align (block
->alignment
);
7343 /* Define the values of all anchors relative to the current section
7345 FOR_EACH_VEC_SAFE_ELT (block
->anchors
, i
, symbol
)
7346 targetm
.asm_out
.output_anchor (symbol
);
7348 /* Output the objects themselves. */
7350 FOR_EACH_VEC_ELT (*block
->objects
, i
, symbol
)
7352 /* Move to the object's offset, padding with zeros if necessary. */
7353 assemble_zeros (SYMBOL_REF_BLOCK_OFFSET (symbol
) - offset
);
7354 offset
= SYMBOL_REF_BLOCK_OFFSET (symbol
);
7355 if (CONSTANT_POOL_ADDRESS_P (symbol
))
7357 desc
= SYMBOL_REF_CONSTANT (symbol
);
7358 /* Pass 1 for align as we have already laid out everything in the block.
7359 So aligning shouldn't be necessary. */
7360 output_constant_pool_1 (desc
, 1);
7361 offset
+= GET_MODE_SIZE (desc
->mode
);
7363 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol
))
7366 decl
= SYMBOL_REF_DECL (symbol
);
7367 assemble_constant_contents
7368 (DECL_INITIAL (decl
), XSTR (symbol
, 0), DECL_ALIGN (decl
));
7370 size
= get_constant_size (DECL_INITIAL (decl
));
7372 if ((flag_sanitize
& SANITIZE_ADDRESS
)
7373 && TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
7374 && asan_protect_global (DECL_INITIAL (decl
)))
7376 size
= asan_red_zone_size (size
);
7377 assemble_zeros (size
);
7384 decl
= SYMBOL_REF_DECL (symbol
);
7385 assemble_variable_contents (decl
, XSTR (symbol
, 0), false);
7386 size
= tree_to_uhwi (DECL_SIZE_UNIT (decl
));
7388 if ((flag_sanitize
& SANITIZE_ADDRESS
)
7389 && asan_protect_global (decl
))
7391 size
= asan_red_zone_size (size
);
7392 assemble_zeros (size
);
7399 /* A callback for qsort to compare object_blocks. */
7402 output_object_block_compare (const void *x
, const void *y
)
7404 object_block
*p1
= *(object_block
* const*)x
;
7405 object_block
*p2
= *(object_block
* const*)y
;
7407 if (p1
->sect
->common
.flags
& SECTION_NAMED
7408 && !(p2
->sect
->common
.flags
& SECTION_NAMED
))
7411 if (!(p1
->sect
->common
.flags
& SECTION_NAMED
)
7412 && p2
->sect
->common
.flags
& SECTION_NAMED
)
7415 if (p1
->sect
->common
.flags
& SECTION_NAMED
7416 && p2
->sect
->common
.flags
& SECTION_NAMED
)
7417 return strcmp (p1
->sect
->named
.name
, p2
->sect
->named
.name
);
7419 unsigned f1
= p1
->sect
->common
.flags
;
7420 unsigned f2
= p2
->sect
->common
.flags
;
7423 return f1
< f2
? -1 : 1;
7426 /* Output the definitions of all object_blocks. */
7429 output_object_blocks (void)
7431 vec
<object_block
*, va_heap
> v
;
7432 v
.create (object_block_htab
->elements ());
7434 hash_table
<object_block_hasher
>::iterator hi
;
7436 FOR_EACH_HASH_TABLE_ELEMENT (*object_block_htab
, obj
, object_block
*, hi
)
7439 /* Sort them in order to output them in a deterministic manner,
7440 otherwise we may get .rodata sections in different orders with
7442 v
.qsort (output_object_block_compare
);
7444 FOR_EACH_VEC_ELT (v
, i
, obj
)
7445 output_object_block (obj
);
7450 /* This function provides a possible implementation of the
7451 TARGET_ASM_RECORD_GCC_SWITCHES target hook for ELF targets. When triggered
7452 by -frecord-gcc-switches it creates a new mergeable, string section in the
7453 assembler output file called TARGET_ASM_RECORD_GCC_SWITCHES_SECTION which
7454 contains the switches in ASCII format.
7456 FIXME: This code does not correctly handle double quote characters
7457 that appear inside strings, (it strips them rather than preserving them).
7458 FIXME: ASM_OUTPUT_ASCII, as defined in config/elfos.h will not emit NUL
7459 characters - instead it treats them as sub-string separators. Since
7460 we want to emit NUL strings terminators into the object file we have to use
7464 elf_record_gcc_switches (print_switch_type type
, const char * name
)
7468 case SWITCH_TYPE_PASSED
:
7469 ASM_OUTPUT_ASCII (asm_out_file
, name
, strlen (name
));
7470 ASM_OUTPUT_SKIP (asm_out_file
, (unsigned HOST_WIDE_INT
) 1);
7473 case SWITCH_TYPE_DESCRIPTIVE
:
7476 /* Distinguish between invocations where name is NULL. */
7477 static bool started
= false;
7483 sec
= get_section (targetm
.asm_out
.record_gcc_switches_section
,
7487 | (SECTION_ENTSIZE
& 1),
7489 switch_to_section (sec
);
7498 /* The return value is currently ignored by the caller, but must be 0.
7499 For -fverbose-asm the return value would be the number of characters
7500 emitted into the assembler file. */
7504 /* Emit text to declare externally defined symbols. It is needed to
7505 properly support non-default visibility. */
7507 default_elf_asm_output_external (FILE *file ATTRIBUTE_UNUSED
,
7509 const char *name ATTRIBUTE_UNUSED
)
7511 /* We output the name if and only if TREE_SYMBOL_REFERENCED is
7512 set in order to avoid putting out names that are never really
7513 used. Always output visibility specified in the source. */
7514 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
))
7515 && (DECL_VISIBILITY_SPECIFIED (decl
)
7516 || targetm
.binds_local_p (decl
)))
7517 maybe_assemble_visibility (decl
);
7520 /* The default hook for TARGET_ASM_OUTPUT_SOURCE_FILENAME. */
7523 default_asm_output_source_filename (FILE *file
, const char *name
)
7525 #ifdef ASM_OUTPUT_SOURCE_FILENAME
7526 ASM_OUTPUT_SOURCE_FILENAME (file
, name
);
7528 fprintf (file
, "\t.file\t");
7529 output_quoted_string (file
, name
);
7534 /* Output a file name in the form wanted by System V. */
7537 output_file_directive (FILE *asm_file
, const char *input_name
)
7542 if (input_name
== NULL
)
7543 input_name
= "<stdin>";
7545 input_name
= remap_debug_filename (input_name
);
7547 len
= strlen (input_name
);
7548 na
= input_name
+ len
;
7550 /* NA gets INPUT_NAME sans directory names. */
7551 while (na
> input_name
)
7553 if (IS_DIR_SEPARATOR (na
[-1]))
7558 targetm
.asm_out
.output_source_filename (asm_file
, na
);
7561 /* Create a DEBUG_EXPR_DECL / DEBUG_EXPR pair from RTL expression
7564 make_debug_expr_from_rtl (const_rtx exp
)
7566 tree ddecl
= make_node (DEBUG_EXPR_DECL
), type
;
7567 machine_mode mode
= GET_MODE (exp
);
7570 DECL_ARTIFICIAL (ddecl
) = 1;
7571 if (REG_P (exp
) && REG_EXPR (exp
))
7572 type
= TREE_TYPE (REG_EXPR (exp
));
7573 else if (MEM_P (exp
) && MEM_EXPR (exp
))
7574 type
= TREE_TYPE (MEM_EXPR (exp
));
7577 if (type
&& TYPE_MODE (type
) == mode
)
7578 TREE_TYPE (ddecl
) = type
;
7580 TREE_TYPE (ddecl
) = lang_hooks
.types
.type_for_mode (mode
, 1);
7581 DECL_MODE (ddecl
) = mode
;
7582 dval
= gen_rtx_DEBUG_EXPR (mode
);
7583 DEBUG_EXPR_TREE_DECL (dval
) = ddecl
;
7584 SET_DECL_RTL (ddecl
, dval
);
7588 #ifdef ELF_ASCII_ESCAPES
7589 /* Default ASM_OUTPUT_LIMITED_STRING for ELF targets. */
7592 default_elf_asm_output_limited_string (FILE *f
, const char *s
)
7597 fputs (STRING_ASM_OP
, f
);
7602 escape
= ELF_ASCII_ESCAPES
[c
];
7609 /* TODO: Print in hex with fast function, important for -flto. */
7610 fprintf (f
, "\\%03o", c
);
7623 /* Default ASM_OUTPUT_ASCII for ELF targets. */
7626 default_elf_asm_output_ascii (FILE *f
, const char *s
, unsigned int len
)
7628 const char *limit
= s
+ len
;
7629 const char *last_null
= NULL
;
7630 unsigned bytes_in_chunk
= 0;
7634 for (; s
< limit
; s
++)
7638 if (bytes_in_chunk
>= 60)
7647 for (p
= s
; p
< limit
&& *p
!= '\0'; p
++)
7654 if (p
< limit
&& (p
- s
) <= (long) ELF_STRING_LIMIT
)
7656 if (bytes_in_chunk
> 0)
7663 default_elf_asm_output_limited_string (f
, s
);
7668 if (bytes_in_chunk
== 0)
7669 fputs (ASCII_DATA_ASM_OP
"\"", f
);
7672 escape
= ELF_ASCII_ESCAPES
[c
];
7680 /* TODO: Print in hex with fast function, important for -flto. */
7681 fprintf (f
, "\\%03o", c
);
7682 bytes_in_chunk
+= 4;
7687 bytes_in_chunk
+= 2;
7694 if (bytes_in_chunk
> 0)
7702 static GTY(()) section
*elf_init_array_section
;
7703 static GTY(()) section
*elf_fini_array_section
;
7706 get_elf_initfini_array_priority_section (int priority
,
7710 if (priority
!= DEFAULT_INIT_PRIORITY
)
7713 sprintf (buf
, "%s.%.5u",
7714 constructor_p
? ".init_array" : ".fini_array",
7716 sec
= get_section (buf
, SECTION_WRITE
| SECTION_NOTYPE
, NULL_TREE
);
7722 if (elf_init_array_section
== NULL
)
7723 elf_init_array_section
7724 = get_section (".init_array",
7725 SECTION_WRITE
| SECTION_NOTYPE
, NULL_TREE
);
7726 sec
= elf_init_array_section
;
7730 if (elf_fini_array_section
== NULL
)
7731 elf_fini_array_section
7732 = get_section (".fini_array",
7733 SECTION_WRITE
| SECTION_NOTYPE
, NULL_TREE
);
7734 sec
= elf_fini_array_section
;
7740 /* Use .init_array section for constructors. */
7743 default_elf_init_array_asm_out_constructor (rtx symbol
, int priority
)
7745 section
*sec
= get_elf_initfini_array_priority_section (priority
,
7747 assemble_addr_to_section (symbol
, sec
);
7750 /* Use .fini_array section for destructors. */
7753 default_elf_fini_array_asm_out_destructor (rtx symbol
, int priority
)
7755 section
*sec
= get_elf_initfini_array_priority_section (priority
,
7757 assemble_addr_to_section (symbol
, sec
);
7760 /* Default TARGET_ASM_OUTPUT_IDENT hook.
7762 This is a bit of a cheat. The real default is a no-op, but this
7763 hook is the default for all targets with a .ident directive. */
7766 default_asm_output_ident_directive (const char *ident_str
)
7768 const char *ident_asm_op
= "\t.ident\t";
7770 /* If we are still in the front end, do not write out the string
7771 to asm_out_file. Instead, add a fake top-level asm statement.
7772 This allows the front ends to use this hook without actually
7773 writing to asm_out_file, to handle #ident or Pragma Ident. */
7774 if (symtab
->state
== PARSING
)
7776 char *buf
= ACONCAT ((ident_asm_op
, "\"", ident_str
, "\"\n", NULL
));
7777 symtab
->finalize_toplevel_asm (build_string (strlen (buf
), buf
));
7780 fprintf (asm_out_file
, "%s\"%s\"\n", ident_asm_op
, ident_str
);
7783 #include "gt-varasm.h"