]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/varasm.c
Merge with trunk.
[thirdparty/gcc.git] / gcc / varasm.c
1 /* Output variables, constants and external declarations, for GNU compiler.
2 Copyright (C) 1987-2013 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
10
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15
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/>. */
19
20
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.
24
25 We also output the assembler code for constants stored in memory
26 and are responsible for combining constants with the same value. */
27
28 #include "config.h"
29 #include "system.h"
30 #include "coretypes.h"
31 #include "tm.h"
32 #include "rtl.h"
33 #include "tree.h"
34 #include "flags.h"
35 #include "function.h"
36 #include "expr.h"
37 #include "hard-reg-set.h"
38 #include "regs.h"
39 #include "output.h"
40 #include "diagnostic-core.h"
41 #include "hashtab.h"
42 #include "ggc.h"
43 #include "langhooks.h"
44 #include "tm_p.h"
45 #include "debug.h"
46 #include "target.h"
47 #include "common/common-target.h"
48 #include "targhooks.h"
49 #include "cgraph.h"
50 #include "pointer-set.h"
51 #include "asan.h"
52 #include "basic-block.h"
53
54 #ifdef XCOFF_DEBUGGING_INFO
55 #include "xcoffout.h" /* Needed for external data
56 declarations for e.g. AIX 4.x. */
57 #endif
58
59 /* The (assembler) name of the first globally-visible object output. */
60 extern GTY(()) const char *first_global_object_name;
61 extern GTY(()) const char *weak_global_object_name;
62
63 const char *first_global_object_name;
64 const char *weak_global_object_name;
65
66 struct addr_const;
67 struct constant_descriptor_rtx;
68 struct rtx_constant_pool;
69
70 #define n_deferred_constants (crtl->varasm.deferred_constants)
71
72 /* Number for making the label on the next
73 constant that is stored in memory. */
74
75 static GTY(()) int const_labelno;
76
77 /* Carry information from ASM_DECLARE_OBJECT_NAME
78 to ASM_FINISH_DECLARE_OBJECT. */
79
80 int size_directive_output;
81
82 /* The last decl for which assemble_variable was called,
83 if it did ASM_DECLARE_OBJECT_NAME.
84 If the last call to assemble_variable didn't do that,
85 this holds 0. */
86
87 tree last_assemble_variable_decl;
88
89 /* The following global variable indicates if the first basic block
90 in a function belongs to the cold partition or not. */
91
92 bool first_function_block_is_cold;
93
94 /* We give all constants their own alias set. Perhaps redundant with
95 MEM_READONLY_P, but pre-dates it. */
96
97 static alias_set_type const_alias_set;
98
99 /* Whether we saw any functions with no_split_stack. */
100
101 static bool saw_no_split_stack;
102
103 static const char *strip_reg_name (const char *);
104 static int contains_pointers_p (tree);
105 #ifdef ASM_OUTPUT_EXTERNAL
106 static bool incorporeal_function_p (tree);
107 #endif
108 static void decode_addr_const (tree, struct addr_const *);
109 static hashval_t const_desc_hash (const void *);
110 static int const_desc_eq (const void *, const void *);
111 static hashval_t const_hash_1 (const tree);
112 static int compare_constant (const tree, const tree);
113 static tree copy_constant (tree);
114 static void output_constant_def_contents (rtx);
115 static void output_addressed_constants (tree);
116 static unsigned HOST_WIDE_INT array_size_for_constructor (tree);
117 static unsigned min_align (unsigned, unsigned);
118 static void globalize_decl (tree);
119 static bool decl_readonly_section_1 (enum section_category);
120 #ifdef BSS_SECTION_ASM_OP
121 #ifdef ASM_OUTPUT_ALIGNED_BSS
122 static void asm_output_aligned_bss (FILE *, tree, const char *,
123 unsigned HOST_WIDE_INT, int)
124 ATTRIBUTE_UNUSED;
125 #endif
126 #endif /* BSS_SECTION_ASM_OP */
127 static void mark_weak (tree);
128 static void output_constant_pool (const char *, tree);
129 \f
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;
139
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;
144
145 /* A SECTION_NOSWITCH section used for declaring global BSS variables.
146 May be null. */
147 section *bss_noswitch_section;
148
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;
153
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;
158
159 /* asm_out_file's current section. This is NULL if no section has yet
160 been selected or if we lose track of what the current section is. */
161 section *in_section;
162
163 /* True if code for the current function is currently being directed
164 at the cold section. */
165 bool in_cold_section_p;
166
167 /* A linked list of all the unnamed sections. */
168 static GTY(()) section *unnamed_sections;
169
170 /* Return a nonzero value if DECL has a section attribute. */
171 #define IN_NAMED_SECTION(DECL) \
172 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
173 && DECL_SECTION_NAME (DECL) != NULL_TREE)
174
175 /* Hash table of named sections. */
176 static GTY((param_is (section))) htab_t section_htab;
177
178 /* A table of object_blocks, indexed by section. */
179 static GTY((param_is (struct object_block))) htab_t object_block_htab;
180
181 /* The next number to use for internal anchor labels. */
182 static GTY(()) int anchor_labelno;
183
184 /* A pool of constants that can be shared between functions. */
185 static GTY(()) struct rtx_constant_pool *shared_constant_pool;
186
187 /* Helper routines for maintaining section_htab. */
188
189 static int
190 section_entry_eq (const void *p1, const void *p2)
191 {
192 const section *old = (const section *) p1;
193 const char *new_name = (const char *) p2;
194
195 return strcmp (old->named.name, new_name) == 0;
196 }
197
198 static hashval_t
199 section_entry_hash (const void *p)
200 {
201 const section *old = (const section *) p;
202 return htab_hash_string (old->named.name);
203 }
204
205 /* Return a hash value for section SECT. */
206
207 static hashval_t
208 hash_section (section *sect)
209 {
210 if (sect->common.flags & SECTION_NAMED)
211 return htab_hash_string (sect->named.name);
212 return sect->common.flags;
213 }
214
215 /* Helper routines for maintaining object_block_htab. */
216
217 static int
218 object_block_entry_eq (const void *p1, const void *p2)
219 {
220 const struct object_block *old = (const struct object_block *) p1;
221 const section *new_section = (const section *) p2;
222
223 return old->sect == new_section;
224 }
225
226 static hashval_t
227 object_block_entry_hash (const void *p)
228 {
229 const struct object_block *old = (const struct object_block *) p;
230 return hash_section (old->sect);
231 }
232
233 /* Return a new unnamed section with the given fields. */
234
235 section *
236 get_unnamed_section (unsigned int flags, void (*callback) (const void *),
237 const void *data)
238 {
239 section *sect;
240
241 sect = ggc_alloc_section ();
242 sect->unnamed.common.flags = flags | SECTION_UNNAMED;
243 sect->unnamed.callback = callback;
244 sect->unnamed.data = data;
245 sect->unnamed.next = unnamed_sections;
246
247 unnamed_sections = sect;
248 return sect;
249 }
250
251 /* Return a SECTION_NOSWITCH section with the given fields. */
252
253 static section *
254 get_noswitch_section (unsigned int flags, noswitch_section_callback callback)
255 {
256 section *sect;
257
258 sect = ggc_alloc_section ();
259 sect->noswitch.common.flags = flags | SECTION_NOSWITCH;
260 sect->noswitch.callback = callback;
261
262 return sect;
263 }
264
265 /* Return the named section structure associated with NAME. Create
266 a new section with the given fields if no such structure exists. */
267
268 section *
269 get_section (const char *name, unsigned int flags, tree decl)
270 {
271 section *sect, **slot;
272
273 slot = (section **)
274 htab_find_slot_with_hash (section_htab, name,
275 htab_hash_string (name), INSERT);
276 flags |= SECTION_NAMED;
277 if (*slot == NULL)
278 {
279 sect = ggc_alloc_section ();
280 sect->named.common.flags = flags;
281 sect->named.name = ggc_strdup (name);
282 sect->named.decl = decl;
283 *slot = sect;
284 }
285 else
286 {
287 sect = *slot;
288 if ((sect->common.flags & ~SECTION_DECLARED) != flags
289 && ((sect->common.flags | flags) & SECTION_OVERRIDE) == 0)
290 {
291 /* It is fine if one of the section flags is
292 SECTION_WRITE | SECTION_RELRO and the other has none of these
293 flags (i.e. read-only) in named sections and either the
294 section hasn't been declared yet or has been declared as writable.
295 In that case just make sure the resulting flags are
296 SECTION_WRITE | SECTION_RELRO, ie. writable only because of
297 relocations. */
298 if (((sect->common.flags ^ flags) & (SECTION_WRITE | SECTION_RELRO))
299 == (SECTION_WRITE | SECTION_RELRO)
300 && (sect->common.flags
301 & ~(SECTION_DECLARED | SECTION_WRITE | SECTION_RELRO))
302 == (flags & ~(SECTION_WRITE | SECTION_RELRO))
303 && ((sect->common.flags & SECTION_DECLARED) == 0
304 || (sect->common.flags & SECTION_WRITE)))
305 {
306 sect->common.flags |= (SECTION_WRITE | SECTION_RELRO);
307 return sect;
308 }
309 /* Sanity check user variables for flag changes. */
310 if (sect->named.decl != NULL
311 && DECL_P (sect->named.decl)
312 && decl != sect->named.decl)
313 {
314 if (decl != NULL && DECL_P (decl))
315 error ("%+D causes a section type conflict with %D",
316 decl, sect->named.decl);
317 else
318 error ("section type conflict with %D", sect->named.decl);
319 inform (DECL_SOURCE_LOCATION (sect->named.decl),
320 "%qD was declared here", sect->named.decl);
321 }
322 else if (decl != NULL && DECL_P (decl))
323 error ("%+D causes a section type conflict", decl);
324 else
325 error ("section type conflict");
326 /* Make sure we don't error about one section multiple times. */
327 sect->common.flags |= SECTION_OVERRIDE;
328 }
329 }
330 return sect;
331 }
332
333 /* Return true if the current compilation mode benefits from having
334 objects grouped into blocks. */
335
336 static bool
337 use_object_blocks_p (void)
338 {
339 return flag_section_anchors;
340 }
341
342 /* Return the object_block structure for section SECT. Create a new
343 structure if we haven't created one already. Return null if SECT
344 itself is null. */
345
346 static struct object_block *
347 get_block_for_section (section *sect)
348 {
349 struct object_block *block;
350 void **slot;
351
352 if (sect == NULL)
353 return NULL;
354
355 slot = htab_find_slot_with_hash (object_block_htab, sect,
356 hash_section (sect), INSERT);
357 block = (struct object_block *) *slot;
358 if (block == NULL)
359 {
360 block = ggc_alloc_cleared_object_block ();
361 block->sect = sect;
362 *slot = block;
363 }
364 return block;
365 }
366
367 /* Create a symbol with label LABEL and place it at byte offset
368 OFFSET in BLOCK. OFFSET can be negative if the symbol's offset
369 is not yet known. LABEL must be a garbage-collected string. */
370
371 static rtx
372 create_block_symbol (const char *label, struct object_block *block,
373 HOST_WIDE_INT offset)
374 {
375 rtx symbol;
376 unsigned int size;
377
378 /* Create the extended SYMBOL_REF. */
379 size = RTX_HDR_SIZE + sizeof (struct block_symbol);
380 symbol = ggc_alloc_rtx_def (size);
381
382 /* Initialize the normal SYMBOL_REF fields. */
383 memset (symbol, 0, size);
384 PUT_CODE (symbol, SYMBOL_REF);
385 PUT_MODE (symbol, Pmode);
386 XSTR (symbol, 0) = label;
387 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_HAS_BLOCK_INFO;
388
389 /* Initialize the block_symbol stuff. */
390 SYMBOL_REF_BLOCK (symbol) = block;
391 SYMBOL_REF_BLOCK_OFFSET (symbol) = offset;
392
393 return symbol;
394 }
395
396 /* Return a section with a particular name and with whatever SECTION_*
397 flags section_type_flags deems appropriate. The name of the section
398 is taken from NAME if nonnull, otherwise it is taken from DECL's
399 DECL_SECTION_NAME. DECL is the decl associated with the section
400 (see the section comment for details) and RELOC is as for
401 section_type_flags. */
402
403 section *
404 get_named_section (tree decl, const char *name, int reloc)
405 {
406 unsigned int flags;
407
408 if (name == NULL)
409 {
410 gcc_assert (decl && DECL_P (decl) && DECL_SECTION_NAME (decl));
411 name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
412 }
413
414 flags = targetm.section_type_flags (decl, name, reloc);
415 return get_section (name, flags, decl);
416 }
417
418 /* If required, set DECL_SECTION_NAME to a unique name. */
419
420 void
421 resolve_unique_section (tree decl, int reloc ATTRIBUTE_UNUSED,
422 int flag_function_or_data_sections)
423 {
424 if (DECL_SECTION_NAME (decl) == NULL_TREE
425 && targetm_common.have_named_sections
426 && (flag_function_or_data_sections
427 || DECL_ONE_ONLY (decl)))
428 {
429 targetm.asm_out.unique_section (decl, reloc);
430 DECL_HAS_IMPLICIT_SECTION_NAME_P (decl) = true;
431 }
432 }
433
434 #ifdef BSS_SECTION_ASM_OP
435
436 #ifdef ASM_OUTPUT_ALIGNED_BSS
437
438 /* Utility function for targets to use in implementing
439 ASM_OUTPUT_ALIGNED_BSS.
440 ??? It is believed that this function will work in most cases so such
441 support is localized here. */
442
443 static void
444 asm_output_aligned_bss (FILE *file, tree decl ATTRIBUTE_UNUSED,
445 const char *name, unsigned HOST_WIDE_INT size,
446 int align)
447 {
448 switch_to_section (bss_section);
449 ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
450 #ifdef ASM_DECLARE_OBJECT_NAME
451 last_assemble_variable_decl = decl;
452 ASM_DECLARE_OBJECT_NAME (file, name, decl);
453 #else
454 /* Standard thing is just output label for the object. */
455 ASM_OUTPUT_LABEL (file, name);
456 #endif /* ASM_DECLARE_OBJECT_NAME */
457 ASM_OUTPUT_SKIP (file, size ? size : 1);
458 }
459
460 #endif
461
462 #endif /* BSS_SECTION_ASM_OP */
463
464 #ifndef USE_SELECT_SECTION_FOR_FUNCTIONS
465 /* Return the hot section for function DECL. Return text_section for
466 null DECLs. */
467
468 static section *
469 hot_function_section (tree decl)
470 {
471 if (decl != NULL_TREE
472 && DECL_SECTION_NAME (decl) != NULL_TREE
473 && targetm_common.have_named_sections)
474 return get_named_section (decl, NULL, 0);
475 else
476 return text_section;
477 }
478 #endif
479
480 /* Return section for TEXT_SECTION_NAME if DECL or DECL_SECTION_NAME (DECL)
481 is NULL.
482
483 When DECL_SECTION_NAME is non-NULL and it is implicit section and
484 NAMED_SECTION_SUFFIX is non-NULL, then produce section called
485 concatenate the name with NAMED_SECTION_SUFFIX.
486 Otherwise produce "TEXT_SECTION_NAME.IMPLICIT_NAME". */
487
488 section *
489 get_named_text_section (tree decl,
490 const char *text_section_name,
491 const char *named_section_suffix)
492 {
493 if (decl && DECL_SECTION_NAME (decl))
494 {
495 if (named_section_suffix)
496 {
497 tree dsn = DECL_SECTION_NAME (decl);
498 const char *stripped_name;
499 char *name, *buffer;
500
501 name = (char *) alloca (TREE_STRING_LENGTH (dsn) + 1);
502 memcpy (name, TREE_STRING_POINTER (dsn),
503 TREE_STRING_LENGTH (dsn) + 1);
504
505 stripped_name = targetm.strip_name_encoding (name);
506
507 buffer = ACONCAT ((stripped_name, named_section_suffix, NULL));
508 return get_named_section (decl, buffer, 0);
509 }
510 else if (DECL_HAS_IMPLICIT_SECTION_NAME_P (decl))
511 {
512 const char *name;
513
514 /* Do not try to split gnu_linkonce functions. This gets somewhat
515 slipperly. */
516 if (DECL_ONE_ONLY (decl) && !HAVE_COMDAT_GROUP)
517 return NULL;
518 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
519 name = targetm.strip_name_encoding (name);
520 return get_named_section (decl, ACONCAT ((text_section_name, ".",
521 name, NULL)), 0);
522 }
523 else
524 return NULL;
525 }
526 return get_named_section (decl, text_section_name, 0);
527 }
528
529 /* Choose named function section based on its frequency. */
530
531 section *
532 default_function_section (tree decl, enum node_frequency freq,
533 bool startup, bool exit)
534 {
535 #if defined HAVE_LD_EH_GC_SECTIONS && defined HAVE_LD_EH_GC_SECTIONS_BUG
536 /* Old GNU linkers have buggy --gc-section support, which sometimes
537 results in .gcc_except_table* sections being garbage collected. */
538 if (decl
539 && DECL_SECTION_NAME (decl)
540 && DECL_HAS_IMPLICIT_SECTION_NAME_P (decl))
541 return NULL;
542 #endif
543
544 if (!flag_reorder_functions
545 || !targetm_common.have_named_sections)
546 return NULL;
547 /* Startup code should go to startup subsection unless it is
548 unlikely executed (this happens especially with function splitting
549 where we can split away unnecessary parts of static constructors. */
550 if (startup && freq != NODE_FREQUENCY_UNLIKELY_EXECUTED)
551 return get_named_text_section (decl, ".text.startup", NULL);
552
553 /* Similarly for exit. */
554 if (exit && freq != NODE_FREQUENCY_UNLIKELY_EXECUTED)
555 return get_named_text_section (decl, ".text.exit", NULL);
556
557 /* Group cold functions together, similarly for hot code. */
558 switch (freq)
559 {
560 case NODE_FREQUENCY_UNLIKELY_EXECUTED:
561 return get_named_text_section (decl, ".text.unlikely", NULL);
562 case NODE_FREQUENCY_HOT:
563 return get_named_text_section (decl, ".text.hot", NULL);
564 default:
565 return NULL;
566 }
567 }
568
569 /* Return the section for function DECL.
570
571 If DECL is NULL_TREE, return the text section. We can be passed
572 NULL_TREE under some circumstances by dbxout.c at least.
573
574 If FORCE_COLD is true, return cold function section ignoring
575 the frequency info of cgraph_node. */
576
577 static section *
578 function_section_1 (tree decl, bool force_cold)
579 {
580 section *section = NULL;
581 enum node_frequency freq = NODE_FREQUENCY_NORMAL;
582 bool startup = false, exit = false;
583
584 if (decl)
585 {
586 struct cgraph_node *node = cgraph_get_node (decl);
587
588 if (node)
589 {
590 freq = node->frequency;
591 startup = node->only_called_at_startup;
592 exit = node->only_called_at_exit;
593 }
594 }
595 if (force_cold)
596 freq = NODE_FREQUENCY_UNLIKELY_EXECUTED;
597
598 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
599 if (decl != NULL_TREE
600 && DECL_SECTION_NAME (decl) != NULL_TREE)
601 {
602 if (targetm.asm_out.function_section)
603 section = targetm.asm_out.function_section (decl, freq,
604 startup, exit);
605 if (section)
606 return section;
607 return get_named_section (decl, NULL, 0);
608 }
609 else
610 return targetm.asm_out.select_section
611 (decl, freq == NODE_FREQUENCY_UNLIKELY_EXECUTED,
612 DECL_ALIGN (decl));
613 #else
614 if (targetm.asm_out.function_section)
615 section = targetm.asm_out.function_section (decl, freq, startup, exit);
616 if (section)
617 return section;
618 return hot_function_section (decl);
619 #endif
620 }
621
622 /* Return the section for function DECL.
623
624 If DECL is NULL_TREE, return the text section. We can be passed
625 NULL_TREE under some circumstances by dbxout.c at least. */
626
627 section *
628 function_section (tree decl)
629 {
630 /* Handle cases where function splitting code decides
631 to put function entry point into unlikely executed section
632 despite the fact that the function itself is not cold
633 (i.e. it is called rarely but contains a hot loop that is
634 better to live in hot subsection for the code locality). */
635 return function_section_1 (decl,
636 first_function_block_is_cold);
637 }
638
639 /* Return the section for the current function, take IN_COLD_SECTION_P
640 into account. */
641
642 section *
643 current_function_section (void)
644 {
645 return function_section_1 (current_function_decl, in_cold_section_p);
646 }
647
648 /* Tell assembler to switch to unlikely-to-be-executed text section. */
649
650 section *
651 unlikely_text_section (void)
652 {
653 return function_section_1 (current_function_decl, true);
654 }
655
656 /* When called within a function context, return true if the function
657 has been assigned a cold text section and if SECT is that section.
658 When called outside a function context, return true if SECT is the
659 default cold section. */
660
661 bool
662 unlikely_text_section_p (section *sect)
663 {
664 return sect == function_section_1 (current_function_decl, true);
665 }
666
667 /* Return the read-only data section associated with function DECL. */
668
669 section *
670 default_function_rodata_section (tree decl)
671 {
672 if (decl != NULL_TREE && DECL_SECTION_NAME (decl))
673 {
674 const char *name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
675
676 if (DECL_ONE_ONLY (decl) && HAVE_COMDAT_GROUP)
677 {
678 const char *dot;
679 size_t len;
680 char* rname;
681
682 dot = strchr (name + 1, '.');
683 if (!dot)
684 dot = name;
685 len = strlen (dot) + 8;
686 rname = (char *) alloca (len);
687
688 strcpy (rname, ".rodata");
689 strcat (rname, dot);
690 return get_section (rname, SECTION_LINKONCE, decl);
691 }
692 /* For .gnu.linkonce.t.foo we want to use .gnu.linkonce.r.foo. */
693 else if (DECL_ONE_ONLY (decl)
694 && strncmp (name, ".gnu.linkonce.t.", 16) == 0)
695 {
696 size_t len = strlen (name) + 1;
697 char *rname = (char *) alloca (len);
698
699 memcpy (rname, name, len);
700 rname[14] = 'r';
701 return get_section (rname, SECTION_LINKONCE, decl);
702 }
703 /* For .text.foo we want to use .rodata.foo. */
704 else if (flag_function_sections && flag_data_sections
705 && strncmp (name, ".text.", 6) == 0)
706 {
707 size_t len = strlen (name) + 1;
708 char *rname = (char *) alloca (len + 2);
709
710 memcpy (rname, ".rodata", 7);
711 memcpy (rname + 7, name + 5, len - 5);
712 return get_section (rname, 0, decl);
713 }
714 }
715
716 return readonly_data_section;
717 }
718
719 /* Return the read-only data section associated with function DECL
720 for targets where that section should be always the single
721 readonly data section. */
722
723 section *
724 default_no_function_rodata_section (tree decl ATTRIBUTE_UNUSED)
725 {
726 return readonly_data_section;
727 }
728
729 /* Return the section to use for string merging. */
730
731 static section *
732 mergeable_string_section (tree decl ATTRIBUTE_UNUSED,
733 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
734 unsigned int flags ATTRIBUTE_UNUSED)
735 {
736 HOST_WIDE_INT len;
737
738 if (HAVE_GAS_SHF_MERGE && flag_merge_constants
739 && TREE_CODE (decl) == STRING_CST
740 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
741 && align <= 256
742 && (len = int_size_in_bytes (TREE_TYPE (decl))) > 0
743 && TREE_STRING_LENGTH (decl) >= len)
744 {
745 enum machine_mode mode;
746 unsigned int modesize;
747 const char *str;
748 HOST_WIDE_INT i;
749 int j, unit;
750 const char *prefix = targetm.asm_out.mergeable_rodata_prefix;
751 char *name = (char *) alloca (strlen (prefix) + 30);
752
753 mode = TYPE_MODE (TREE_TYPE (TREE_TYPE (decl)));
754 modesize = GET_MODE_BITSIZE (mode);
755 if (modesize >= 8 && modesize <= 256
756 && (modesize & (modesize - 1)) == 0)
757 {
758 if (align < modesize)
759 align = modesize;
760
761 str = TREE_STRING_POINTER (decl);
762 unit = GET_MODE_SIZE (mode);
763
764 /* Check for embedded NUL characters. */
765 for (i = 0; i < len; i += unit)
766 {
767 for (j = 0; j < unit; j++)
768 if (str[i + j] != '\0')
769 break;
770 if (j == unit)
771 break;
772 }
773 if (i == len - unit)
774 {
775 sprintf (name, "%s.str%d.%d", prefix,
776 modesize / 8, (int) (align / 8));
777 flags |= (modesize / 8) | SECTION_MERGE | SECTION_STRINGS;
778 return get_section (name, flags, NULL);
779 }
780 }
781 }
782
783 return readonly_data_section;
784 }
785
786 /* Return the section to use for constant merging. */
787
788 section *
789 mergeable_constant_section (enum machine_mode mode ATTRIBUTE_UNUSED,
790 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
791 unsigned int flags ATTRIBUTE_UNUSED)
792 {
793 unsigned int modesize = GET_MODE_BITSIZE (mode);
794
795 if (HAVE_GAS_SHF_MERGE && flag_merge_constants
796 && mode != VOIDmode
797 && mode != BLKmode
798 && modesize <= align
799 && align >= 8
800 && align <= 256
801 && (align & (align - 1)) == 0)
802 {
803 const char *prefix = targetm.asm_out.mergeable_rodata_prefix;
804 char *name = (char *) alloca (strlen (prefix) + 30);
805
806 sprintf (name, "%s.cst%d", prefix, (int) (align / 8));
807 flags |= (align / 8) | SECTION_MERGE;
808 return get_section (name, flags, NULL);
809 }
810 return readonly_data_section;
811 }
812 \f
813 /* Given NAME, a putative register name, discard any customary prefixes. */
814
815 static const char *
816 strip_reg_name (const char *name)
817 {
818 #ifdef REGISTER_PREFIX
819 if (!strncmp (name, REGISTER_PREFIX, strlen (REGISTER_PREFIX)))
820 name += strlen (REGISTER_PREFIX);
821 #endif
822 if (name[0] == '%' || name[0] == '#')
823 name++;
824 return name;
825 }
826 \f
827 /* The user has asked for a DECL to have a particular name. Set (or
828 change) it in such a way that we don't prefix an underscore to
829 it. */
830 void
831 set_user_assembler_name (tree decl, const char *name)
832 {
833 char *starred = (char *) alloca (strlen (name) + 2);
834 starred[0] = '*';
835 strcpy (starred + 1, name);
836 change_decl_assembler_name (decl, get_identifier (starred));
837 SET_DECL_RTL (decl, NULL_RTX);
838 }
839 \f
840 /* Decode an `asm' spec for a declaration as a register name.
841 Return the register number, or -1 if nothing specified,
842 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
843 or -3 if ASMSPEC is `cc' and is not recognized,
844 or -4 if ASMSPEC is `memory' and is not recognized.
845 Accept an exact spelling or a decimal number.
846 Prefixes such as % are optional. */
847
848 int
849 decode_reg_name_and_count (const char *asmspec, int *pnregs)
850 {
851 /* Presume just one register is clobbered. */
852 *pnregs = 1;
853
854 if (asmspec != 0)
855 {
856 int i;
857
858 /* Get rid of confusing prefixes. */
859 asmspec = strip_reg_name (asmspec);
860
861 /* Allow a decimal number as a "register name". */
862 for (i = strlen (asmspec) - 1; i >= 0; i--)
863 if (! ISDIGIT (asmspec[i]))
864 break;
865 if (asmspec[0] != 0 && i < 0)
866 {
867 i = atoi (asmspec);
868 if (i < FIRST_PSEUDO_REGISTER && i >= 0)
869 return i;
870 else
871 return -2;
872 }
873
874 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
875 if (reg_names[i][0]
876 && ! strcmp (asmspec, strip_reg_name (reg_names[i])))
877 return i;
878
879 #ifdef OVERLAPPING_REGISTER_NAMES
880 {
881 static const struct
882 {
883 const char *const name;
884 const int number;
885 const int nregs;
886 } table[] = OVERLAPPING_REGISTER_NAMES;
887
888 for (i = 0; i < (int) ARRAY_SIZE (table); i++)
889 if (table[i].name[0]
890 && ! strcmp (asmspec, table[i].name))
891 {
892 *pnregs = table[i].nregs;
893 return table[i].number;
894 }
895 }
896 #endif /* OVERLAPPING_REGISTER_NAMES */
897
898 #ifdef ADDITIONAL_REGISTER_NAMES
899 {
900 static const struct { const char *const name; const int number; } table[]
901 = ADDITIONAL_REGISTER_NAMES;
902
903 for (i = 0; i < (int) ARRAY_SIZE (table); i++)
904 if (table[i].name[0]
905 && ! strcmp (asmspec, table[i].name))
906 return table[i].number;
907 }
908 #endif /* ADDITIONAL_REGISTER_NAMES */
909
910 if (!strcmp (asmspec, "memory"))
911 return -4;
912
913 if (!strcmp (asmspec, "cc"))
914 return -3;
915
916 return -2;
917 }
918
919 return -1;
920 }
921
922 int
923 decode_reg_name (const char *name)
924 {
925 int count;
926 return decode_reg_name_and_count (name, &count);
927 }
928
929 \f
930 /* Return true if DECL's initializer is suitable for a BSS section. */
931
932 bool
933 bss_initializer_p (const_tree decl)
934 {
935 return (DECL_INITIAL (decl) == NULL
936 || DECL_INITIAL (decl) == error_mark_node
937 || (flag_zero_initialized_in_bss
938 /* Leave constant zeroes in .rodata so they
939 can be shared. */
940 && !TREE_READONLY (decl)
941 && initializer_zerop (DECL_INITIAL (decl))));
942 }
943
944 /* Compute the alignment of variable specified by DECL.
945 DONT_OUTPUT_DATA is from assemble_variable. */
946
947 void
948 align_variable (tree decl, bool dont_output_data)
949 {
950 unsigned int align = DECL_ALIGN (decl);
951
952 /* In the case for initialing an array whose length isn't specified,
953 where we have not yet been able to do the layout,
954 figure out the proper alignment now. */
955 if (dont_output_data && DECL_SIZE (decl) == 0
956 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
957 align = MAX (align, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
958
959 /* Some object file formats have a maximum alignment which they support.
960 In particular, a.out format supports a maximum alignment of 4. */
961 if (align > MAX_OFILE_ALIGNMENT)
962 {
963 warning (0, "alignment of %q+D is greater than maximum object "
964 "file alignment. Using %d", decl,
965 MAX_OFILE_ALIGNMENT/BITS_PER_UNIT);
966 align = MAX_OFILE_ALIGNMENT;
967 }
968
969 if (! DECL_USER_ALIGN (decl))
970 {
971 #ifdef DATA_ABI_ALIGNMENT
972 unsigned int data_abi_align
973 = DATA_ABI_ALIGNMENT (TREE_TYPE (decl), align);
974 /* For backwards compatibility, don't assume the ABI alignment for
975 TLS variables. */
976 if (! DECL_THREAD_LOCAL_P (decl) || data_abi_align <= BITS_PER_WORD)
977 align = data_abi_align;
978 #endif
979
980 /* On some machines, it is good to increase alignment sometimes.
981 But as DECL_ALIGN is used both for actually emitting the variable
982 and for code accessing the variable as guaranteed alignment, we
983 can only increase the alignment if it is a performance optimization
984 if the references to it must bind to the current definition. */
985 if (decl_binds_to_current_def_p (decl))
986 {
987 #ifdef DATA_ALIGNMENT
988 unsigned int data_align = DATA_ALIGNMENT (TREE_TYPE (decl), align);
989 /* Don't increase alignment too much for TLS variables - TLS space
990 is too precious. */
991 if (! DECL_THREAD_LOCAL_P (decl) || data_align <= BITS_PER_WORD)
992 align = data_align;
993 #endif
994 #ifdef CONSTANT_ALIGNMENT
995 if (DECL_INITIAL (decl) != 0
996 && DECL_INITIAL (decl) != error_mark_node)
997 {
998 unsigned int const_align
999 = CONSTANT_ALIGNMENT (DECL_INITIAL (decl), align);
1000 /* Don't increase alignment too much for TLS variables - TLS
1001 space is too precious. */
1002 if (! DECL_THREAD_LOCAL_P (decl) || const_align <= BITS_PER_WORD)
1003 align = const_align;
1004 }
1005 #endif
1006 }
1007 }
1008
1009 /* Reset the alignment in case we have made it tighter, so we can benefit
1010 from it in get_pointer_alignment. */
1011 DECL_ALIGN (decl) = align;
1012 }
1013
1014 /* Return DECL_ALIGN (decl), possibly increased for optimization purposes
1015 beyond what align_variable returned. */
1016
1017 static unsigned int
1018 get_variable_align (tree decl)
1019 {
1020 unsigned int align = DECL_ALIGN (decl);
1021
1022 /* For user aligned vars or static vars align_variable already did
1023 everything. */
1024 if (DECL_USER_ALIGN (decl) || !TREE_PUBLIC (decl))
1025 return align;
1026
1027 #ifdef DATA_ABI_ALIGNMENT
1028 if (DECL_THREAD_LOCAL_P (decl))
1029 align = DATA_ABI_ALIGNMENT (TREE_TYPE (decl), align);
1030 #endif
1031
1032 /* For decls that bind to the current definition, align_variable
1033 did also everything, except for not assuming ABI required alignment
1034 of TLS variables. For other vars, increase the alignment here
1035 as an optimization. */
1036 if (!decl_binds_to_current_def_p (decl))
1037 {
1038 /* On some machines, it is good to increase alignment sometimes. */
1039 #ifdef DATA_ALIGNMENT
1040 unsigned int data_align = DATA_ALIGNMENT (TREE_TYPE (decl), align);
1041 /* Don't increase alignment too much for TLS variables - TLS space
1042 is too precious. */
1043 if (! DECL_THREAD_LOCAL_P (decl) || data_align <= BITS_PER_WORD)
1044 align = data_align;
1045 #endif
1046 #ifdef CONSTANT_ALIGNMENT
1047 if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
1048 {
1049 unsigned int const_align = CONSTANT_ALIGNMENT (DECL_INITIAL (decl),
1050 align);
1051 /* Don't increase alignment too much for TLS variables - TLS space
1052 is too precious. */
1053 if (! DECL_THREAD_LOCAL_P (decl) || const_align <= BITS_PER_WORD)
1054 align = const_align;
1055 }
1056 #endif
1057 }
1058
1059 return align;
1060 }
1061
1062 /* Return the section into which the given VAR_DECL or CONST_DECL
1063 should be placed. PREFER_NOSWITCH_P is true if a noswitch
1064 section should be used wherever possible. */
1065
1066 section *
1067 get_variable_section (tree decl, bool prefer_noswitch_p)
1068 {
1069 addr_space_t as = ADDR_SPACE_GENERIC;
1070 int reloc;
1071
1072 if (TREE_TYPE (decl) != error_mark_node)
1073 as = TYPE_ADDR_SPACE (TREE_TYPE (decl));
1074
1075 if (DECL_COMMON (decl))
1076 {
1077 /* If the decl has been given an explicit section name, or it resides
1078 in a non-generic address space, then it isn't common, and shouldn't
1079 be handled as such. */
1080 gcc_assert (DECL_SECTION_NAME (decl) == NULL
1081 && ADDR_SPACE_GENERIC_P (as));
1082 if (DECL_THREAD_LOCAL_P (decl))
1083 return tls_comm_section;
1084 else if (TREE_PUBLIC (decl) && bss_initializer_p (decl))
1085 return comm_section;
1086 }
1087
1088 if (DECL_INITIAL (decl) == error_mark_node)
1089 reloc = contains_pointers_p (TREE_TYPE (decl)) ? 3 : 0;
1090 else if (DECL_INITIAL (decl))
1091 reloc = compute_reloc_for_constant (DECL_INITIAL (decl));
1092 else
1093 reloc = 0;
1094
1095 resolve_unique_section (decl, reloc, flag_data_sections);
1096 if (IN_NAMED_SECTION (decl))
1097 return get_named_section (decl, NULL, reloc);
1098
1099 if (ADDR_SPACE_GENERIC_P (as)
1100 && !DECL_THREAD_LOCAL_P (decl)
1101 && !(prefer_noswitch_p && targetm.have_switchable_bss_sections)
1102 && bss_initializer_p (decl))
1103 {
1104 if (!TREE_PUBLIC (decl)
1105 && !((flag_sanitize & SANITIZE_ADDRESS)
1106 && asan_protect_global (decl)))
1107 return lcomm_section;
1108 if (bss_noswitch_section)
1109 return bss_noswitch_section;
1110 }
1111
1112 return targetm.asm_out.select_section (decl, reloc,
1113 get_variable_align (decl));
1114 }
1115
1116 /* Return the block into which object_block DECL should be placed. */
1117
1118 static struct object_block *
1119 get_block_for_decl (tree decl)
1120 {
1121 section *sect;
1122
1123 if (TREE_CODE (decl) == VAR_DECL)
1124 {
1125 /* The object must be defined in this translation unit. */
1126 if (DECL_EXTERNAL (decl))
1127 return NULL;
1128
1129 /* There's no point using object blocks for something that is
1130 isolated by definition. */
1131 if (DECL_ONE_ONLY (decl))
1132 return NULL;
1133 }
1134
1135 /* We can only calculate block offsets if the decl has a known
1136 constant size. */
1137 if (DECL_SIZE_UNIT (decl) == NULL)
1138 return NULL;
1139 if (!tree_fits_uhwi_p (DECL_SIZE_UNIT (decl)))
1140 return NULL;
1141
1142 /* Find out which section should contain DECL. We cannot put it into
1143 an object block if it requires a standalone definition. */
1144 if (TREE_CODE (decl) == VAR_DECL)
1145 align_variable (decl, 0);
1146 sect = get_variable_section (decl, true);
1147 if (SECTION_STYLE (sect) == SECTION_NOSWITCH)
1148 return NULL;
1149
1150 return get_block_for_section (sect);
1151 }
1152
1153 /* Make sure block symbol SYMBOL is in block BLOCK. */
1154
1155 static void
1156 change_symbol_block (rtx symbol, struct object_block *block)
1157 {
1158 if (block != SYMBOL_REF_BLOCK (symbol))
1159 {
1160 gcc_assert (SYMBOL_REF_BLOCK_OFFSET (symbol) < 0);
1161 SYMBOL_REF_BLOCK (symbol) = block;
1162 }
1163 }
1164
1165 /* Return true if it is possible to put DECL in an object_block. */
1166
1167 static bool
1168 use_blocks_for_decl_p (tree decl)
1169 {
1170 /* Only data DECLs can be placed into object blocks. */
1171 if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != CONST_DECL)
1172 return false;
1173
1174 /* Detect decls created by dw2_force_const_mem. Such decls are
1175 special because DECL_INITIAL doesn't specify the decl's true value.
1176 dw2_output_indirect_constants will instead call assemble_variable
1177 with dont_output_data set to 1 and then print the contents itself. */
1178 if (DECL_INITIAL (decl) == decl)
1179 return false;
1180
1181 /* If this decl is an alias, then we don't want to emit a
1182 definition. */
1183 if (lookup_attribute ("alias", DECL_ATTRIBUTES (decl)))
1184 return false;
1185
1186 return targetm.use_blocks_for_decl_p (decl);
1187 }
1188
1189 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
1190 have static storage duration. In other words, it should not be an
1191 automatic variable, including PARM_DECLs.
1192
1193 There is, however, one exception: this function handles variables
1194 explicitly placed in a particular register by the user.
1195
1196 This is never called for PARM_DECL nodes. */
1197
1198 void
1199 make_decl_rtl (tree decl)
1200 {
1201 const char *name = 0;
1202 int reg_number;
1203 rtx x;
1204
1205 /* Check that we are not being given an automatic variable. */
1206 gcc_assert (TREE_CODE (decl) != PARM_DECL
1207 && TREE_CODE (decl) != RESULT_DECL);
1208
1209 /* A weak alias has TREE_PUBLIC set but not the other bits. */
1210 gcc_assert (TREE_CODE (decl) != VAR_DECL
1211 || TREE_STATIC (decl)
1212 || TREE_PUBLIC (decl)
1213 || DECL_EXTERNAL (decl)
1214 || DECL_REGISTER (decl));
1215
1216 /* And that we were not given a type or a label. */
1217 gcc_assert (TREE_CODE (decl) != TYPE_DECL
1218 && TREE_CODE (decl) != LABEL_DECL);
1219
1220 /* For a duplicate declaration, we can be called twice on the
1221 same DECL node. Don't discard the RTL already made. */
1222 if (DECL_RTL_SET_P (decl))
1223 {
1224 /* If the old RTL had the wrong mode, fix the mode. */
1225 x = DECL_RTL (decl);
1226 if (GET_MODE (x) != DECL_MODE (decl))
1227 SET_DECL_RTL (decl, adjust_address_nv (x, DECL_MODE (decl), 0));
1228
1229 if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
1230 return;
1231
1232 /* ??? Another way to do this would be to maintain a hashed
1233 table of such critters. Instead of adding stuff to a DECL
1234 to give certain attributes to it, we could use an external
1235 hash map from DECL to set of attributes. */
1236
1237 /* Let the target reassign the RTL if it wants.
1238 This is necessary, for example, when one machine specific
1239 decl attribute overrides another. */
1240 targetm.encode_section_info (decl, DECL_RTL (decl), false);
1241
1242 /* If the symbol has a SYMBOL_REF_BLOCK field, update it based
1243 on the new decl information. */
1244 if (MEM_P (x)
1245 && GET_CODE (XEXP (x, 0)) == SYMBOL_REF
1246 && SYMBOL_REF_HAS_BLOCK_INFO_P (XEXP (x, 0)))
1247 change_symbol_block (XEXP (x, 0), get_block_for_decl (decl));
1248
1249 return;
1250 }
1251
1252 /* If this variable belongs to the global constant pool, retrieve the
1253 pre-computed RTL or recompute it in LTO mode. */
1254 if (TREE_CODE (decl) == VAR_DECL && DECL_IN_CONSTANT_POOL (decl))
1255 {
1256 SET_DECL_RTL (decl, output_constant_def (DECL_INITIAL (decl), 1));
1257 return;
1258 }
1259
1260 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
1261
1262 if (name[0] != '*' && TREE_CODE (decl) != FUNCTION_DECL
1263 && DECL_REGISTER (decl))
1264 {
1265 error ("register name not specified for %q+D", decl);
1266 }
1267 else if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
1268 {
1269 const char *asmspec = name+1;
1270 enum machine_mode mode = DECL_MODE (decl);
1271 reg_number = decode_reg_name (asmspec);
1272 /* First detect errors in declaring global registers. */
1273 if (reg_number == -1)
1274 error ("register name not specified for %q+D", decl);
1275 else if (reg_number < 0)
1276 error ("invalid register name for %q+D", decl);
1277 else if (mode == BLKmode)
1278 error ("data type of %q+D isn%'t suitable for a register",
1279 decl);
1280 else if (!in_hard_reg_set_p (accessible_reg_set, mode, reg_number))
1281 error ("the register specified for %q+D cannot be accessed"
1282 " by the current target", decl);
1283 else if (!in_hard_reg_set_p (operand_reg_set, mode, reg_number))
1284 error ("the register specified for %q+D is not general enough"
1285 " to be used as a register variable", decl);
1286 else if (!HARD_REGNO_MODE_OK (reg_number, mode))
1287 error ("register specified for %q+D isn%'t suitable for data type",
1288 decl);
1289 /* Now handle properly declared static register variables. */
1290 else
1291 {
1292 int nregs;
1293
1294 if (DECL_INITIAL (decl) != 0 && TREE_STATIC (decl))
1295 {
1296 DECL_INITIAL (decl) = 0;
1297 error ("global register variable has initial value");
1298 }
1299 if (TREE_THIS_VOLATILE (decl))
1300 warning (OPT_Wvolatile_register_var,
1301 "optimization may eliminate reads and/or "
1302 "writes to register variables");
1303
1304 /* If the user specified one of the eliminables registers here,
1305 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
1306 confused with that register and be eliminated. This usage is
1307 somewhat suspect... */
1308
1309 SET_DECL_RTL (decl, gen_rtx_raw_REG (mode, reg_number));
1310 ORIGINAL_REGNO (DECL_RTL (decl)) = reg_number;
1311 REG_USERVAR_P (DECL_RTL (decl)) = 1;
1312
1313 if (TREE_STATIC (decl))
1314 {
1315 /* Make this register global, so not usable for anything
1316 else. */
1317 #ifdef ASM_DECLARE_REGISTER_GLOBAL
1318 name = IDENTIFIER_POINTER (DECL_NAME (decl));
1319 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file, decl, reg_number, name);
1320 #endif
1321 nregs = hard_regno_nregs[reg_number][mode];
1322 while (nregs > 0)
1323 globalize_reg (decl, reg_number + --nregs);
1324 }
1325
1326 /* As a register variable, it has no section. */
1327 return;
1328 }
1329 }
1330 /* Now handle ordinary static variables and functions (in memory).
1331 Also handle vars declared register invalidly. */
1332 else if (name[0] == '*')
1333 {
1334 #ifdef REGISTER_PREFIX
1335 if (strlen (REGISTER_PREFIX) != 0)
1336 {
1337 reg_number = decode_reg_name (name);
1338 if (reg_number >= 0 || reg_number == -3)
1339 error ("register name given for non-register variable %q+D", decl);
1340 }
1341 #endif
1342 }
1343
1344 /* Specifying a section attribute on a variable forces it into a
1345 non-.bss section, and thus it cannot be common. */
1346 /* FIXME: In general this code should not be necessary because
1347 visibility pass is doing the same work. But notice_global_symbol
1348 is called early and it needs to make DECL_RTL to get the name.
1349 we take care of recomputing the DECL_RTL after visibility is changed. */
1350 if (TREE_CODE (decl) == VAR_DECL
1351 && DECL_SECTION_NAME (decl) != NULL_TREE
1352 && DECL_INITIAL (decl) == NULL_TREE
1353 && DECL_COMMON (decl))
1354 DECL_COMMON (decl) = 0;
1355
1356 /* Variables can't be both common and weak. */
1357 if (TREE_CODE (decl) == VAR_DECL && DECL_WEAK (decl))
1358 DECL_COMMON (decl) = 0;
1359
1360 if (use_object_blocks_p () && use_blocks_for_decl_p (decl))
1361 x = create_block_symbol (name, get_block_for_decl (decl), -1);
1362 else
1363 {
1364 enum machine_mode address_mode = Pmode;
1365 if (TREE_TYPE (decl) != error_mark_node)
1366 {
1367 addr_space_t as = TYPE_ADDR_SPACE (TREE_TYPE (decl));
1368 address_mode = targetm.addr_space.address_mode (as);
1369 }
1370 x = gen_rtx_SYMBOL_REF (address_mode, name);
1371 }
1372 SYMBOL_REF_WEAK (x) = DECL_WEAK (decl);
1373 SET_SYMBOL_REF_DECL (x, decl);
1374
1375 x = gen_rtx_MEM (DECL_MODE (decl), x);
1376 if (TREE_CODE (decl) != FUNCTION_DECL)
1377 set_mem_attributes (x, decl, 1);
1378 SET_DECL_RTL (decl, x);
1379
1380 /* Optionally set flags or add text to the name to record information
1381 such as that it is a function name.
1382 If the name is changed, the macro ASM_OUTPUT_LABELREF
1383 will have to know how to strip this information. */
1384 targetm.encode_section_info (decl, DECL_RTL (decl), true);
1385 }
1386
1387 /* Like make_decl_rtl, but inhibit creation of new alias sets when
1388 calling make_decl_rtl. Also, reset DECL_RTL before returning the
1389 rtl. */
1390
1391 rtx
1392 make_decl_rtl_for_debug (tree decl)
1393 {
1394 unsigned int save_aliasing_flag;
1395 rtx rtl;
1396
1397 if (DECL_RTL_SET_P (decl))
1398 return DECL_RTL (decl);
1399
1400 /* Kludge alert! Somewhere down the call chain, make_decl_rtl will
1401 call new_alias_set. If running with -fcompare-debug, sometimes
1402 we do not want to create alias sets that will throw the alias
1403 numbers off in the comparison dumps. So... clearing
1404 flag_strict_aliasing will keep new_alias_set() from creating a
1405 new set. */
1406 save_aliasing_flag = flag_strict_aliasing;
1407 flag_strict_aliasing = 0;
1408
1409 rtl = DECL_RTL (decl);
1410 /* Reset DECL_RTL back, as various parts of the compiler expects
1411 DECL_RTL set meaning it is actually going to be output. */
1412 SET_DECL_RTL (decl, NULL);
1413
1414 flag_strict_aliasing = save_aliasing_flag;
1415 return rtl;
1416 }
1417 \f
1418 /* Output a string of literal assembler code
1419 for an `asm' keyword used between functions. */
1420
1421 void
1422 assemble_asm (tree string)
1423 {
1424 const char *p;
1425 app_enable ();
1426
1427 if (TREE_CODE (string) == ADDR_EXPR)
1428 string = TREE_OPERAND (string, 0);
1429
1430 p = TREE_STRING_POINTER (string);
1431 fprintf (asm_out_file, "%s%s\n", p[0] == '\t' ? "" : "\t", p);
1432 }
1433
1434 /* Write the address of the entity given by SYMBOL to SEC. */
1435 void
1436 assemble_addr_to_section (rtx symbol, section *sec)
1437 {
1438 switch_to_section (sec);
1439 assemble_align (POINTER_SIZE);
1440 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1441 }
1442
1443 /* Return the numbered .ctors.N (if CONSTRUCTOR_P) or .dtors.N (if
1444 not) section for PRIORITY. */
1445 section *
1446 get_cdtor_priority_section (int priority, bool constructor_p)
1447 {
1448 char buf[16];
1449
1450 /* ??? This only works reliably with the GNU linker. */
1451 sprintf (buf, "%s.%.5u",
1452 constructor_p ? ".ctors" : ".dtors",
1453 /* Invert the numbering so the linker puts us in the proper
1454 order; constructors are run from right to left, and the
1455 linker sorts in increasing order. */
1456 MAX_INIT_PRIORITY - priority);
1457 return get_section (buf, SECTION_WRITE, NULL);
1458 }
1459
1460 void
1461 default_named_section_asm_out_destructor (rtx symbol, int priority)
1462 {
1463 section *sec;
1464
1465 if (priority != DEFAULT_INIT_PRIORITY)
1466 sec = get_cdtor_priority_section (priority,
1467 /*constructor_p=*/false);
1468 else
1469 sec = get_section (".dtors", SECTION_WRITE, NULL);
1470
1471 assemble_addr_to_section (symbol, sec);
1472 }
1473
1474 #ifdef DTORS_SECTION_ASM_OP
1475 void
1476 default_dtor_section_asm_out_destructor (rtx symbol,
1477 int priority ATTRIBUTE_UNUSED)
1478 {
1479 assemble_addr_to_section (symbol, dtors_section);
1480 }
1481 #endif
1482
1483 void
1484 default_named_section_asm_out_constructor (rtx symbol, int priority)
1485 {
1486 section *sec;
1487
1488 if (priority != DEFAULT_INIT_PRIORITY)
1489 sec = get_cdtor_priority_section (priority,
1490 /*constructor_p=*/true);
1491 else
1492 sec = get_section (".ctors", SECTION_WRITE, NULL);
1493
1494 assemble_addr_to_section (symbol, sec);
1495 }
1496
1497 #ifdef CTORS_SECTION_ASM_OP
1498 void
1499 default_ctor_section_asm_out_constructor (rtx symbol,
1500 int priority ATTRIBUTE_UNUSED)
1501 {
1502 assemble_addr_to_section (symbol, ctors_section);
1503 }
1504 #endif
1505 \f
1506 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1507 a nonzero value if the constant pool should be output before the
1508 start of the function, or a zero value if the pool should output
1509 after the end of the function. The default is to put it before the
1510 start. */
1511
1512 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1513 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1514 #endif
1515
1516 /* DECL is an object (either VAR_DECL or FUNCTION_DECL) which is going
1517 to be output to assembler.
1518 Set first_global_object_name and weak_global_object_name as appropriate. */
1519
1520 void
1521 notice_global_symbol (tree decl)
1522 {
1523 const char **type = &first_global_object_name;
1524
1525 if (first_global_object_name
1526 || !TREE_PUBLIC (decl)
1527 || DECL_EXTERNAL (decl)
1528 || !DECL_NAME (decl)
1529 || (TREE_CODE (decl) != FUNCTION_DECL
1530 && (TREE_CODE (decl) != VAR_DECL
1531 || (DECL_COMMON (decl)
1532 && (DECL_INITIAL (decl) == 0
1533 || DECL_INITIAL (decl) == error_mark_node))))
1534 || !MEM_P (DECL_RTL (decl)))
1535 return;
1536
1537 /* We win when global object is found, but it is useful to know about weak
1538 symbol as well so we can produce nicer unique names. */
1539 if (DECL_WEAK (decl) || DECL_ONE_ONLY (decl) || flag_shlib)
1540 type = &weak_global_object_name;
1541
1542 if (!*type)
1543 {
1544 const char *p;
1545 const char *name;
1546 rtx decl_rtl = DECL_RTL (decl);
1547
1548 p = targetm.strip_name_encoding (XSTR (XEXP (decl_rtl, 0), 0));
1549 name = ggc_strdup (p);
1550
1551 *type = name;
1552 }
1553 }
1554
1555 /* If not using flag_reorder_blocks_and_partition, decide early whether the
1556 current function goes into the cold section, so that targets can use
1557 current_function_section during RTL expansion. DECL describes the
1558 function. */
1559
1560 void
1561 decide_function_section (tree decl)
1562 {
1563 first_function_block_is_cold = false;
1564
1565 if (flag_reorder_blocks_and_partition)
1566 /* We will decide in assemble_start_function. */
1567 return;
1568
1569 if (DECL_SECTION_NAME (decl))
1570 {
1571 struct cgraph_node *node = cgraph_get_node (current_function_decl);
1572 /* Calls to function_section rely on first_function_block_is_cold
1573 being accurate. */
1574 first_function_block_is_cold = (node
1575 && node->frequency
1576 == NODE_FREQUENCY_UNLIKELY_EXECUTED);
1577 }
1578
1579 in_cold_section_p = first_function_block_is_cold;
1580 }
1581
1582 /* Output assembler code for the constant pool of a function and associated
1583 with defining the name of the function. DECL describes the function.
1584 NAME is the function's name. For the constant pool, we use the current
1585 constant pool data. */
1586
1587 void
1588 assemble_start_function (tree decl, const char *fnname)
1589 {
1590 int align;
1591 char tmp_label[100];
1592 bool hot_label_written = false;
1593
1594 if (flag_reorder_blocks_and_partition)
1595 {
1596 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LHOTB", const_labelno);
1597 crtl->subsections.hot_section_label = ggc_strdup (tmp_label);
1598 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LCOLDB", const_labelno);
1599 crtl->subsections.cold_section_label = ggc_strdup (tmp_label);
1600 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LHOTE", const_labelno);
1601 crtl->subsections.hot_section_end_label = ggc_strdup (tmp_label);
1602 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LCOLDE", const_labelno);
1603 crtl->subsections.cold_section_end_label = ggc_strdup (tmp_label);
1604 const_labelno++;
1605 }
1606 else
1607 {
1608 crtl->subsections.hot_section_label = NULL;
1609 crtl->subsections.cold_section_label = NULL;
1610 crtl->subsections.hot_section_end_label = NULL;
1611 crtl->subsections.cold_section_end_label = NULL;
1612 }
1613
1614 /* The following code does not need preprocessing in the assembler. */
1615
1616 app_disable ();
1617
1618 if (CONSTANT_POOL_BEFORE_FUNCTION)
1619 output_constant_pool (fnname, decl);
1620
1621 /* Make sure the not and cold text (code) sections are properly
1622 aligned. This is necessary here in the case where the function
1623 has both hot and cold sections, because we don't want to re-set
1624 the alignment when the section switch happens mid-function. */
1625
1626 if (flag_reorder_blocks_and_partition)
1627 {
1628 first_function_block_is_cold = false;
1629
1630 switch_to_section (unlikely_text_section ());
1631 assemble_align (DECL_ALIGN (decl));
1632 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.cold_section_label);
1633
1634 /* When the function starts with a cold section, we need to explicitly
1635 align the hot section and write out the hot section label.
1636 But if the current function is a thunk, we do not have a CFG. */
1637 if (!cfun->is_thunk
1638 && BB_PARTITION (ENTRY_BLOCK_PTR->next_bb) == BB_COLD_PARTITION)
1639 {
1640 switch_to_section (text_section);
1641 assemble_align (DECL_ALIGN (decl));
1642 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.hot_section_label);
1643 hot_label_written = true;
1644 first_function_block_is_cold = true;
1645 }
1646 in_cold_section_p = first_function_block_is_cold;
1647 }
1648
1649
1650 /* Switch to the correct text section for the start of the function. */
1651
1652 switch_to_section (function_section (decl));
1653 if (flag_reorder_blocks_and_partition
1654 && !hot_label_written)
1655 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.hot_section_label);
1656
1657 /* Tell assembler to move to target machine's alignment for functions. */
1658 align = floor_log2 (DECL_ALIGN (decl) / BITS_PER_UNIT);
1659 if (align > 0)
1660 {
1661 ASM_OUTPUT_ALIGN (asm_out_file, align);
1662 }
1663
1664 /* Handle a user-specified function alignment.
1665 Note that we still need to align to DECL_ALIGN, as above,
1666 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1667 if (! DECL_USER_ALIGN (decl)
1668 && align_functions_log > align
1669 && optimize_function_for_speed_p (cfun))
1670 {
1671 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1672 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file,
1673 align_functions_log, align_functions - 1);
1674 #else
1675 ASM_OUTPUT_ALIGN (asm_out_file, align_functions_log);
1676 #endif
1677 }
1678
1679 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1680 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file, fnname);
1681 #endif
1682
1683 if (!DECL_IGNORED_P (decl))
1684 (*debug_hooks->begin_function) (decl);
1685
1686 /* Make function name accessible from other files, if appropriate. */
1687
1688 if (TREE_PUBLIC (decl))
1689 {
1690 notice_global_symbol (decl);
1691
1692 globalize_decl (decl);
1693
1694 maybe_assemble_visibility (decl);
1695 }
1696
1697 if (DECL_PRESERVE_P (decl))
1698 targetm.asm_out.mark_decl_preserved (fnname);
1699
1700 /* Do any machine/system dependent processing of the function name. */
1701 #ifdef ASM_DECLARE_FUNCTION_NAME
1702 ASM_DECLARE_FUNCTION_NAME (asm_out_file, fnname, current_function_decl);
1703 #else
1704 /* Standard thing is just output label for the function. */
1705 ASM_OUTPUT_FUNCTION_LABEL (asm_out_file, fnname, current_function_decl);
1706 #endif /* ASM_DECLARE_FUNCTION_NAME */
1707
1708 if (lookup_attribute ("no_split_stack", DECL_ATTRIBUTES (decl)))
1709 saw_no_split_stack = true;
1710 }
1711
1712 /* Output assembler code associated with defining the size of the
1713 function. DECL describes the function. NAME is the function's name. */
1714
1715 void
1716 assemble_end_function (tree decl, const char *fnname ATTRIBUTE_UNUSED)
1717 {
1718 #ifdef ASM_DECLARE_FUNCTION_SIZE
1719 /* We could have switched section in the middle of the function. */
1720 if (flag_reorder_blocks_and_partition)
1721 switch_to_section (function_section (decl));
1722 ASM_DECLARE_FUNCTION_SIZE (asm_out_file, fnname, decl);
1723 #endif
1724 if (! CONSTANT_POOL_BEFORE_FUNCTION)
1725 {
1726 output_constant_pool (fnname, decl);
1727 switch_to_section (function_section (decl)); /* need to switch back */
1728 }
1729 /* Output labels for end of hot/cold text sections (to be used by
1730 debug info.) */
1731 if (flag_reorder_blocks_and_partition)
1732 {
1733 section *save_text_section;
1734
1735 save_text_section = in_section;
1736 switch_to_section (unlikely_text_section ());
1737 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.cold_section_end_label);
1738 if (first_function_block_is_cold)
1739 switch_to_section (text_section);
1740 else
1741 switch_to_section (function_section (decl));
1742 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.hot_section_end_label);
1743 switch_to_section (save_text_section);
1744 }
1745 }
1746 \f
1747 /* Assemble code to leave SIZE bytes of zeros. */
1748
1749 void
1750 assemble_zeros (unsigned HOST_WIDE_INT size)
1751 {
1752 /* Do no output if -fsyntax-only. */
1753 if (flag_syntax_only)
1754 return;
1755
1756 #ifdef ASM_NO_SKIP_IN_TEXT
1757 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1758 so we must output 0s explicitly in the text section. */
1759 if (ASM_NO_SKIP_IN_TEXT && (in_section->common.flags & SECTION_CODE) != 0)
1760 {
1761 unsigned HOST_WIDE_INT i;
1762 for (i = 0; i < size; i++)
1763 assemble_integer (const0_rtx, 1, BITS_PER_UNIT, 1);
1764 }
1765 else
1766 #endif
1767 if (size > 0)
1768 ASM_OUTPUT_SKIP (asm_out_file, size);
1769 }
1770
1771 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1772
1773 void
1774 assemble_align (int align)
1775 {
1776 if (align > BITS_PER_UNIT)
1777 {
1778 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
1779 }
1780 }
1781
1782 /* Assemble a string constant with the specified C string as contents. */
1783
1784 void
1785 assemble_string (const char *p, int size)
1786 {
1787 int pos = 0;
1788 int maximum = 2000;
1789
1790 /* If the string is very long, split it up. */
1791
1792 while (pos < size)
1793 {
1794 int thissize = size - pos;
1795 if (thissize > maximum)
1796 thissize = maximum;
1797
1798 ASM_OUTPUT_ASCII (asm_out_file, p, thissize);
1799
1800 pos += thissize;
1801 p += thissize;
1802 }
1803 }
1804
1805 \f
1806 /* A noswitch_section_callback for lcomm_section. */
1807
1808 static bool
1809 emit_local (tree decl ATTRIBUTE_UNUSED,
1810 const char *name ATTRIBUTE_UNUSED,
1811 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1812 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1813 {
1814 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1815 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name,
1816 size, DECL_ALIGN (decl));
1817 return true;
1818 #elif defined ASM_OUTPUT_ALIGNED_LOCAL
1819 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, DECL_ALIGN (decl));
1820 return true;
1821 #else
1822 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
1823 return false;
1824 #endif
1825 }
1826
1827 /* A noswitch_section_callback for bss_noswitch_section. */
1828
1829 #if defined ASM_OUTPUT_ALIGNED_BSS
1830 static bool
1831 emit_bss (tree decl ATTRIBUTE_UNUSED,
1832 const char *name ATTRIBUTE_UNUSED,
1833 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1834 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1835 {
1836 #if defined ASM_OUTPUT_ALIGNED_BSS
1837 ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size,
1838 get_variable_align (decl));
1839 return true;
1840 #endif
1841 }
1842 #endif
1843
1844 /* A noswitch_section_callback for comm_section. */
1845
1846 static bool
1847 emit_common (tree decl ATTRIBUTE_UNUSED,
1848 const char *name ATTRIBUTE_UNUSED,
1849 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1850 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1851 {
1852 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1853 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name,
1854 size, get_variable_align (decl));
1855 return true;
1856 #elif defined ASM_OUTPUT_ALIGNED_COMMON
1857 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size,
1858 get_variable_align (decl));
1859 return true;
1860 #else
1861 ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded);
1862 return false;
1863 #endif
1864 }
1865
1866 /* A noswitch_section_callback for tls_comm_section. */
1867
1868 static bool
1869 emit_tls_common (tree decl ATTRIBUTE_UNUSED,
1870 const char *name ATTRIBUTE_UNUSED,
1871 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1872 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1873 {
1874 #ifdef ASM_OUTPUT_TLS_COMMON
1875 ASM_OUTPUT_TLS_COMMON (asm_out_file, decl, name, size);
1876 return true;
1877 #else
1878 sorry ("thread-local COMMON data not implemented");
1879 return true;
1880 #endif
1881 }
1882
1883 /* Assemble DECL given that it belongs in SECTION_NOSWITCH section SECT.
1884 NAME is the name of DECL's SYMBOL_REF. */
1885
1886 static void
1887 assemble_noswitch_variable (tree decl, const char *name, section *sect,
1888 unsigned int align)
1889 {
1890 unsigned HOST_WIDE_INT size, rounded;
1891
1892 size = tree_to_uhwi (DECL_SIZE_UNIT (decl));
1893 rounded = size;
1894
1895 if ((flag_sanitize & SANITIZE_ADDRESS) && asan_protect_global (decl))
1896 size += asan_red_zone_size (size);
1897
1898 /* Don't allocate zero bytes of common,
1899 since that means "undefined external" in the linker. */
1900 if (size == 0)
1901 rounded = 1;
1902
1903 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1904 so that each uninitialized object starts on such a boundary. */
1905 rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
1906 rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1907 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1908
1909 if (!sect->noswitch.callback (decl, name, size, rounded)
1910 && (unsigned HOST_WIDE_INT) (align / BITS_PER_UNIT) > rounded)
1911 warning (0, "requested alignment for %q+D is greater than "
1912 "implemented alignment of %wu", decl, rounded);
1913 }
1914
1915 /* A subroutine of assemble_variable. Output the label and contents of
1916 DECL, whose address is a SYMBOL_REF with name NAME. DONT_OUTPUT_DATA
1917 is as for assemble_variable. */
1918
1919 static void
1920 assemble_variable_contents (tree decl, const char *name,
1921 bool dont_output_data)
1922 {
1923 /* Do any machine/system dependent processing of the object. */
1924 #ifdef ASM_DECLARE_OBJECT_NAME
1925 last_assemble_variable_decl = decl;
1926 ASM_DECLARE_OBJECT_NAME (asm_out_file, name, decl);
1927 #else
1928 /* Standard thing is just output label for the object. */
1929 ASM_OUTPUT_LABEL (asm_out_file, name);
1930 #endif /* ASM_DECLARE_OBJECT_NAME */
1931
1932 if (!dont_output_data)
1933 {
1934 if (DECL_INITIAL (decl)
1935 && DECL_INITIAL (decl) != error_mark_node
1936 && !initializer_zerop (DECL_INITIAL (decl)))
1937 /* Output the actual data. */
1938 output_constant (DECL_INITIAL (decl),
1939 tree_to_uhwi (DECL_SIZE_UNIT (decl)),
1940 get_variable_align (decl));
1941 else
1942 /* Leave space for it. */
1943 assemble_zeros (tree_to_uhwi (DECL_SIZE_UNIT (decl)));
1944 }
1945 }
1946
1947 /* Assemble everything that is needed for a variable or function declaration.
1948 Not used for automatic variables, and not used for function definitions.
1949 Should not be called for variables of incomplete structure type.
1950
1951 TOP_LEVEL is nonzero if this variable has file scope.
1952 AT_END is nonzero if this is the special handling, at end of compilation,
1953 to define things that have had only tentative definitions.
1954 DONT_OUTPUT_DATA if nonzero means don't actually output the
1955 initial value (that will be done by the caller). */
1956
1957 void
1958 assemble_variable (tree decl, int top_level ATTRIBUTE_UNUSED,
1959 int at_end ATTRIBUTE_UNUSED, int dont_output_data)
1960 {
1961 const char *name;
1962 rtx decl_rtl, symbol;
1963 section *sect;
1964 unsigned int align;
1965 bool asan_protected = false;
1966
1967 /* This function is supposed to handle VARIABLES. Ensure we have one. */
1968 gcc_assert (TREE_CODE (decl) == VAR_DECL);
1969
1970 /* Emulated TLS had better not get this far. */
1971 gcc_checking_assert (targetm.have_tls || !DECL_THREAD_LOCAL_P (decl));
1972
1973 last_assemble_variable_decl = 0;
1974
1975 /* Normally no need to say anything here for external references,
1976 since assemble_external is called by the language-specific code
1977 when a declaration is first seen. */
1978
1979 if (DECL_EXTERNAL (decl))
1980 return;
1981
1982 /* Do nothing for global register variables. */
1983 if (DECL_RTL_SET_P (decl) && REG_P (DECL_RTL (decl)))
1984 {
1985 TREE_ASM_WRITTEN (decl) = 1;
1986 return;
1987 }
1988
1989 /* If type was incomplete when the variable was declared,
1990 see if it is complete now. */
1991
1992 if (DECL_SIZE (decl) == 0)
1993 layout_decl (decl, 0);
1994
1995 /* Still incomplete => don't allocate it; treat the tentative defn
1996 (which is what it must have been) as an `extern' reference. */
1997
1998 if (!dont_output_data && DECL_SIZE (decl) == 0)
1999 {
2000 error ("storage size of %q+D isn%'t known", decl);
2001 TREE_ASM_WRITTEN (decl) = 1;
2002 return;
2003 }
2004
2005 /* The first declaration of a variable that comes through this function
2006 decides whether it is global (in C, has external linkage)
2007 or local (in C, has internal linkage). So do nothing more
2008 if this function has already run. */
2009
2010 if (TREE_ASM_WRITTEN (decl))
2011 return;
2012
2013 /* Make sure targetm.encode_section_info is invoked before we set
2014 ASM_WRITTEN. */
2015 decl_rtl = DECL_RTL (decl);
2016
2017 TREE_ASM_WRITTEN (decl) = 1;
2018
2019 /* Do no output if -fsyntax-only. */
2020 if (flag_syntax_only)
2021 return;
2022
2023 if (! dont_output_data
2024 && ! valid_constant_size_p (DECL_SIZE_UNIT (decl)))
2025 {
2026 error ("size of variable %q+D is too large", decl);
2027 return;
2028 }
2029
2030 gcc_assert (MEM_P (decl_rtl));
2031 gcc_assert (GET_CODE (XEXP (decl_rtl, 0)) == SYMBOL_REF);
2032 symbol = XEXP (decl_rtl, 0);
2033
2034 /* If this symbol belongs to the tree constant pool, output the constant
2035 if it hasn't already been written. */
2036 if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
2037 {
2038 tree decl = SYMBOL_REF_DECL (symbol);
2039 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl)))
2040 output_constant_def_contents (symbol);
2041 return;
2042 }
2043
2044 app_disable ();
2045
2046 name = XSTR (symbol, 0);
2047 if (TREE_PUBLIC (decl) && DECL_NAME (decl))
2048 notice_global_symbol (decl);
2049
2050 /* Compute the alignment of this data. */
2051
2052 align_variable (decl, dont_output_data);
2053
2054 if ((flag_sanitize & SANITIZE_ADDRESS)
2055 && asan_protect_global (decl))
2056 {
2057 asan_protected = true;
2058 DECL_ALIGN (decl) = MAX (DECL_ALIGN (decl),
2059 ASAN_RED_ZONE_SIZE * BITS_PER_UNIT);
2060 }
2061
2062 set_mem_align (decl_rtl, DECL_ALIGN (decl));
2063
2064 align = get_variable_align (decl);
2065
2066 if (TREE_PUBLIC (decl))
2067 maybe_assemble_visibility (decl);
2068
2069 if (DECL_PRESERVE_P (decl))
2070 targetm.asm_out.mark_decl_preserved (name);
2071
2072 /* First make the assembler name(s) global if appropriate. */
2073 sect = get_variable_section (decl, false);
2074 if (TREE_PUBLIC (decl)
2075 && (sect->common.flags & SECTION_COMMON) == 0)
2076 globalize_decl (decl);
2077
2078 /* Output any data that we will need to use the address of. */
2079 if (DECL_INITIAL (decl) && DECL_INITIAL (decl) != error_mark_node)
2080 output_addressed_constants (DECL_INITIAL (decl));
2081
2082 /* dbxout.c needs to know this. */
2083 if (sect && (sect->common.flags & SECTION_CODE) != 0)
2084 DECL_IN_TEXT_SECTION (decl) = 1;
2085
2086 /* If the decl is part of an object_block, make sure that the decl
2087 has been positioned within its block, but do not write out its
2088 definition yet. output_object_blocks will do that later. */
2089 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol) && SYMBOL_REF_BLOCK (symbol))
2090 {
2091 gcc_assert (!dont_output_data);
2092 place_block_symbol (symbol);
2093 }
2094 else if (SECTION_STYLE (sect) == SECTION_NOSWITCH)
2095 assemble_noswitch_variable (decl, name, sect, align);
2096 else
2097 {
2098 /* The following bit of code ensures that vtable_map
2099 variables are not only in the comdat section, but that
2100 each variable has its own unique comdat name. If this
2101 code is removed, the variables end up in the same section
2102 with a single comdat name.
2103
2104 FIXME: resolve_unique_section needs to deal better with
2105 decls with both DECL_SECTION_NAME and DECL_ONE_ONLY. Once
2106 that is fixed, this if-else statement can be replaced with
2107 a single call to "switch_to_section (sect)". */
2108 if (sect->named.name
2109 && (strcmp (sect->named.name, ".vtable_map_vars") == 0))
2110 {
2111 #if defined (OBJECT_FORMAT_ELF)
2112 targetm.asm_out.named_section (sect->named.name,
2113 sect->named.common.flags
2114 | SECTION_LINKONCE,
2115 DECL_NAME (decl));
2116 in_section = sect;
2117 #else
2118 switch_to_section (sect);
2119 #endif
2120 }
2121 else
2122 switch_to_section (sect);
2123 if (align > BITS_PER_UNIT)
2124 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
2125 assemble_variable_contents (decl, name, dont_output_data);
2126 if (asan_protected)
2127 {
2128 unsigned HOST_WIDE_INT int size
2129 = tree_to_uhwi (DECL_SIZE_UNIT (decl));
2130 assemble_zeros (asan_red_zone_size (size));
2131 }
2132 }
2133 }
2134
2135
2136 /* Given a function declaration (FN_DECL), this function assembles the
2137 function into the .preinit_array section. */
2138
2139 void
2140 assemble_vtv_preinit_initializer (tree fn_decl)
2141 {
2142 section *sect;
2143 unsigned flags = SECTION_WRITE;
2144 rtx symbol = XEXP (DECL_RTL (fn_decl), 0);
2145
2146 flags |= SECTION_NOTYPE;
2147 sect = get_section (".preinit_array", flags, fn_decl);
2148 switch_to_section (sect);
2149 assemble_addr_to_section (symbol, sect);
2150 }
2151
2152 /* Return 1 if type TYPE contains any pointers. */
2153
2154 static int
2155 contains_pointers_p (tree type)
2156 {
2157 switch (TREE_CODE (type))
2158 {
2159 case POINTER_TYPE:
2160 case REFERENCE_TYPE:
2161 /* I'm not sure whether OFFSET_TYPE needs this treatment,
2162 so I'll play safe and return 1. */
2163 case OFFSET_TYPE:
2164 return 1;
2165
2166 case RECORD_TYPE:
2167 case UNION_TYPE:
2168 case QUAL_UNION_TYPE:
2169 {
2170 tree fields;
2171 /* For a type that has fields, see if the fields have pointers. */
2172 for (fields = TYPE_FIELDS (type); fields; fields = DECL_CHAIN (fields))
2173 if (TREE_CODE (fields) == FIELD_DECL
2174 && contains_pointers_p (TREE_TYPE (fields)))
2175 return 1;
2176 return 0;
2177 }
2178
2179 case ARRAY_TYPE:
2180 /* An array type contains pointers if its element type does. */
2181 return contains_pointers_p (TREE_TYPE (type));
2182
2183 default:
2184 return 0;
2185 }
2186 }
2187
2188 /* We delay assemble_external processing until
2189 the compilation unit is finalized. This is the best we can do for
2190 right now (i.e. stage 3 of GCC 4.0) - the right thing is to delay
2191 it all the way to final. See PR 17982 for further discussion. */
2192 static GTY(()) tree pending_assemble_externals;
2193
2194 #ifdef ASM_OUTPUT_EXTERNAL
2195 /* Some targets delay some output to final using TARGET_ASM_FILE_END.
2196 As a result, assemble_external can be called after the list of externals
2197 is processed and the pointer set destroyed. */
2198 static bool pending_assemble_externals_processed;
2199
2200 /* Avoid O(external_decls**2) lookups in the pending_assemble_externals
2201 TREE_LIST in assemble_external. */
2202 static struct pointer_set_t *pending_assemble_externals_set;
2203
2204 /* True if DECL is a function decl for which no out-of-line copy exists.
2205 It is assumed that DECL's assembler name has been set. */
2206
2207 static bool
2208 incorporeal_function_p (tree decl)
2209 {
2210 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
2211 {
2212 const char *name;
2213
2214 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
2215 && (DECL_FUNCTION_CODE (decl) == BUILT_IN_ALLOCA
2216 || DECL_FUNCTION_CODE (decl) == BUILT_IN_ALLOCA_WITH_ALIGN))
2217 return true;
2218
2219 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2220 /* Atomic or sync builtins which have survived this far will be
2221 resolved externally and therefore are not incorporeal. */
2222 if (strncmp (name, "__builtin_", 10) == 0)
2223 return true;
2224 }
2225 return false;
2226 }
2227
2228 /* Actually do the tests to determine if this is necessary, and invoke
2229 ASM_OUTPUT_EXTERNAL. */
2230 static void
2231 assemble_external_real (tree decl)
2232 {
2233 rtx rtl = DECL_RTL (decl);
2234
2235 if (MEM_P (rtl) && GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF
2236 && !SYMBOL_REF_USED (XEXP (rtl, 0))
2237 && !incorporeal_function_p (decl))
2238 {
2239 /* Some systems do require some output. */
2240 SYMBOL_REF_USED (XEXP (rtl, 0)) = 1;
2241 ASM_OUTPUT_EXTERNAL (asm_out_file, decl, XSTR (XEXP (rtl, 0), 0));
2242 }
2243 }
2244 #endif
2245
2246 void
2247 process_pending_assemble_externals (void)
2248 {
2249 #ifdef ASM_OUTPUT_EXTERNAL
2250 tree list;
2251 for (list = pending_assemble_externals; list; list = TREE_CHAIN (list))
2252 assemble_external_real (TREE_VALUE (list));
2253
2254 pending_assemble_externals = 0;
2255 pending_assemble_externals_processed = true;
2256 pointer_set_destroy (pending_assemble_externals_set);
2257 #endif
2258 }
2259
2260 /* This TREE_LIST contains any weak symbol declarations waiting
2261 to be emitted. */
2262 static GTY(()) tree weak_decls;
2263
2264 /* Output something to declare an external symbol to the assembler,
2265 and qualifiers such as weakness. (Most assemblers don't need
2266 extern declaration, so we normally output nothing.) Do nothing if
2267 DECL is not external. */
2268
2269 void
2270 assemble_external (tree decl ATTRIBUTE_UNUSED)
2271 {
2272 /* Make sure that the ASM_OUT_FILE is open.
2273 If it's not, we should not be calling this function. */
2274 gcc_assert (asm_out_file);
2275
2276 /* In a perfect world, the following condition would be true.
2277 Sadly, the Java and Go front ends emit assembly *from the front end*,
2278 bypassing the call graph. See PR52739. Fix before GCC 4.8. */
2279 #if 0
2280 /* This function should only be called if we are expanding, or have
2281 expanded, to RTL.
2282 Ideally, only final.c would be calling this function, but it is
2283 not clear whether that would break things somehow. See PR 17982
2284 for further discussion. */
2285 gcc_assert (cgraph_state == CGRAPH_STATE_EXPANSION
2286 || cgraph_state == CGRAPH_STATE_FINISHED);
2287 #endif
2288
2289 if (!DECL_P (decl) || !DECL_EXTERNAL (decl) || !TREE_PUBLIC (decl))
2290 return;
2291
2292 /* We want to output annotation for weak and external symbols at
2293 very last to check if they are references or not. */
2294
2295 if (TARGET_SUPPORTS_WEAK
2296 && DECL_WEAK (decl)
2297 /* TREE_STATIC is a weird and abused creature which is not
2298 generally the right test for whether an entity has been
2299 locally emitted, inlined or otherwise not-really-extern, but
2300 for declarations that can be weak, it happens to be
2301 match. */
2302 && !TREE_STATIC (decl)
2303 && lookup_attribute ("weak", DECL_ATTRIBUTES (decl))
2304 && value_member (decl, weak_decls) == NULL_TREE)
2305 weak_decls = tree_cons (NULL, decl, weak_decls);
2306
2307 #ifdef ASM_OUTPUT_EXTERNAL
2308 if (pending_assemble_externals_processed)
2309 {
2310 assemble_external_real (decl);
2311 return;
2312 }
2313
2314 if (! pointer_set_insert (pending_assemble_externals_set, decl))
2315 pending_assemble_externals = tree_cons (NULL, decl,
2316 pending_assemble_externals);
2317 #endif
2318 }
2319
2320 /* Similar, for calling a library function FUN. */
2321
2322 void
2323 assemble_external_libcall (rtx fun)
2324 {
2325 /* Declare library function name external when first used, if nec. */
2326 if (! SYMBOL_REF_USED (fun))
2327 {
2328 SYMBOL_REF_USED (fun) = 1;
2329 targetm.asm_out.external_libcall (fun);
2330 }
2331 }
2332
2333 /* Assemble a label named NAME. */
2334
2335 void
2336 assemble_label (FILE *file, const char *name)
2337 {
2338 ASM_OUTPUT_LABEL (file, name);
2339 }
2340
2341 /* Set the symbol_referenced flag for ID. */
2342 void
2343 mark_referenced (tree id)
2344 {
2345 TREE_SYMBOL_REFERENCED (id) = 1;
2346 }
2347
2348 /* Set the symbol_referenced flag for DECL and notify callgraph. */
2349 void
2350 mark_decl_referenced (tree decl)
2351 {
2352 if (TREE_CODE (decl) == FUNCTION_DECL)
2353 {
2354 /* Extern inline functions don't become needed when referenced.
2355 If we know a method will be emitted in other TU and no new
2356 functions can be marked reachable, just use the external
2357 definition. */
2358 struct cgraph_node *node = cgraph_get_create_node (decl);
2359 if (!DECL_EXTERNAL (decl)
2360 && !node->definition)
2361 cgraph_mark_force_output_node (node);
2362 }
2363 else if (TREE_CODE (decl) == VAR_DECL)
2364 {
2365 struct varpool_node *node = varpool_node_for_decl (decl);
2366 /* C++ frontend use mark_decl_references to force COMDAT variables
2367 to be output that might appear dead otherwise. */
2368 node->force_output = true;
2369 }
2370 /* else do nothing - we can get various sorts of CST nodes here,
2371 which do not need to be marked. */
2372 }
2373
2374
2375 /* Follow the IDENTIFIER_TRANSPARENT_ALIAS chain starting at *ALIAS
2376 until we find an identifier that is not itself a transparent alias.
2377 Modify the alias passed to it by reference (and all aliases on the
2378 way to the ultimate target), such that they do not have to be
2379 followed again, and return the ultimate target of the alias
2380 chain. */
2381
2382 static inline tree
2383 ultimate_transparent_alias_target (tree *alias)
2384 {
2385 tree target = *alias;
2386
2387 if (IDENTIFIER_TRANSPARENT_ALIAS (target))
2388 {
2389 gcc_assert (TREE_CHAIN (target));
2390 target = ultimate_transparent_alias_target (&TREE_CHAIN (target));
2391 gcc_assert (! IDENTIFIER_TRANSPARENT_ALIAS (target)
2392 && ! TREE_CHAIN (target));
2393 *alias = target;
2394 }
2395
2396 return target;
2397 }
2398
2399 /* Output to FILE (an assembly file) a reference to NAME. If NAME
2400 starts with a *, the rest of NAME is output verbatim. Otherwise
2401 NAME is transformed in a target-specific way (usually by the
2402 addition of an underscore). */
2403
2404 void
2405 assemble_name_raw (FILE *file, const char *name)
2406 {
2407 if (name[0] == '*')
2408 fputs (&name[1], file);
2409 else
2410 ASM_OUTPUT_LABELREF (file, name);
2411 }
2412
2413 /* Like assemble_name_raw, but should be used when NAME might refer to
2414 an entity that is also represented as a tree (like a function or
2415 variable). If NAME does refer to such an entity, that entity will
2416 be marked as referenced. */
2417
2418 void
2419 assemble_name (FILE *file, const char *name)
2420 {
2421 const char *real_name;
2422 tree id;
2423
2424 real_name = targetm.strip_name_encoding (name);
2425
2426 id = maybe_get_identifier (real_name);
2427 if (id)
2428 {
2429 tree id_orig = id;
2430
2431 mark_referenced (id);
2432 ultimate_transparent_alias_target (&id);
2433 if (id != id_orig)
2434 name = IDENTIFIER_POINTER (id);
2435 gcc_assert (! TREE_CHAIN (id));
2436 }
2437
2438 assemble_name_raw (file, name);
2439 }
2440
2441 /* Allocate SIZE bytes writable static space with a gensym name
2442 and return an RTX to refer to its address. */
2443
2444 rtx
2445 assemble_static_space (unsigned HOST_WIDE_INT size)
2446 {
2447 char name[12];
2448 const char *namestring;
2449 rtx x;
2450
2451 ASM_GENERATE_INTERNAL_LABEL (name, "LF", const_labelno);
2452 ++const_labelno;
2453 namestring = ggc_strdup (name);
2454
2455 x = gen_rtx_SYMBOL_REF (Pmode, namestring);
2456 SYMBOL_REF_FLAGS (x) = SYMBOL_FLAG_LOCAL;
2457
2458 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
2459 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name, size,
2460 BIGGEST_ALIGNMENT);
2461 #else
2462 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
2463 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, BIGGEST_ALIGNMENT);
2464 #else
2465 {
2466 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2467 so that each uninitialized object starts on such a boundary. */
2468 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
2469 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
2470 = ((size + (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1)
2471 / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
2472 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
2473 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
2474 }
2475 #endif
2476 #endif
2477 return x;
2478 }
2479
2480 /* Assemble the static constant template for function entry trampolines.
2481 This is done at most once per compilation.
2482 Returns an RTX for the address of the template. */
2483
2484 static GTY(()) rtx initial_trampoline;
2485
2486 rtx
2487 assemble_trampoline_template (void)
2488 {
2489 char label[256];
2490 const char *name;
2491 int align;
2492 rtx symbol;
2493
2494 gcc_assert (targetm.asm_out.trampoline_template != NULL);
2495
2496 if (initial_trampoline)
2497 return initial_trampoline;
2498
2499 /* By default, put trampoline templates in read-only data section. */
2500
2501 #ifdef TRAMPOLINE_SECTION
2502 switch_to_section (TRAMPOLINE_SECTION);
2503 #else
2504 switch_to_section (readonly_data_section);
2505 #endif
2506
2507 /* Write the assembler code to define one. */
2508 align = floor_log2 (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT);
2509 if (align > 0)
2510 ASM_OUTPUT_ALIGN (asm_out_file, align);
2511
2512 targetm.asm_out.internal_label (asm_out_file, "LTRAMP", 0);
2513 targetm.asm_out.trampoline_template (asm_out_file);
2514
2515 /* Record the rtl to refer to it. */
2516 ASM_GENERATE_INTERNAL_LABEL (label, "LTRAMP", 0);
2517 name = ggc_strdup (label);
2518 symbol = gen_rtx_SYMBOL_REF (Pmode, name);
2519 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
2520
2521 initial_trampoline = gen_const_mem (BLKmode, symbol);
2522 set_mem_align (initial_trampoline, TRAMPOLINE_ALIGNMENT);
2523 set_mem_size (initial_trampoline, TRAMPOLINE_SIZE);
2524
2525 return initial_trampoline;
2526 }
2527 \f
2528 /* A and B are either alignments or offsets. Return the minimum alignment
2529 that may be assumed after adding the two together. */
2530
2531 static inline unsigned
2532 min_align (unsigned int a, unsigned int b)
2533 {
2534 return (a | b) & -(a | b);
2535 }
2536
2537 /* Return the assembler directive for creating a given kind of integer
2538 object. SIZE is the number of bytes in the object and ALIGNED_P
2539 indicates whether it is known to be aligned. Return NULL if the
2540 assembly dialect has no such directive.
2541
2542 The returned string should be printed at the start of a new line and
2543 be followed immediately by the object's initial value. */
2544
2545 const char *
2546 integer_asm_op (int size, int aligned_p)
2547 {
2548 struct asm_int_op *ops;
2549
2550 if (aligned_p)
2551 ops = &targetm.asm_out.aligned_op;
2552 else
2553 ops = &targetm.asm_out.unaligned_op;
2554
2555 switch (size)
2556 {
2557 case 1:
2558 return targetm.asm_out.byte_op;
2559 case 2:
2560 return ops->hi;
2561 case 4:
2562 return ops->si;
2563 case 8:
2564 return ops->di;
2565 case 16:
2566 return ops->ti;
2567 default:
2568 return NULL;
2569 }
2570 }
2571
2572 /* Use directive OP to assemble an integer object X. Print OP at the
2573 start of the line, followed immediately by the value of X. */
2574
2575 void
2576 assemble_integer_with_op (const char *op, rtx x)
2577 {
2578 fputs (op, asm_out_file);
2579 output_addr_const (asm_out_file, x);
2580 fputc ('\n', asm_out_file);
2581 }
2582
2583 /* The default implementation of the asm_out.integer target hook. */
2584
2585 bool
2586 default_assemble_integer (rtx x ATTRIBUTE_UNUSED,
2587 unsigned int size ATTRIBUTE_UNUSED,
2588 int aligned_p ATTRIBUTE_UNUSED)
2589 {
2590 const char *op = integer_asm_op (size, aligned_p);
2591 /* Avoid GAS bugs for large values. Specifically negative values whose
2592 absolute value fits in a bfd_vma, but not in a bfd_signed_vma. */
2593 if (size > UNITS_PER_WORD && size > POINTER_SIZE / BITS_PER_UNIT)
2594 return false;
2595 return op && (assemble_integer_with_op (op, x), true);
2596 }
2597
2598 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
2599 the alignment of the integer in bits. Return 1 if we were able to output
2600 the constant, otherwise 0. We must be able to output the constant,
2601 if FORCE is nonzero. */
2602
2603 bool
2604 assemble_integer (rtx x, unsigned int size, unsigned int align, int force)
2605 {
2606 int aligned_p;
2607
2608 aligned_p = (align >= MIN (size * BITS_PER_UNIT, BIGGEST_ALIGNMENT));
2609
2610 /* See if the target hook can handle this kind of object. */
2611 if (targetm.asm_out.integer (x, size, aligned_p))
2612 return true;
2613
2614 /* If the object is a multi-byte one, try splitting it up. Split
2615 it into words it if is multi-word, otherwise split it into bytes. */
2616 if (size > 1)
2617 {
2618 enum machine_mode omode, imode;
2619 unsigned int subalign;
2620 unsigned int subsize, i;
2621 enum mode_class mclass;
2622
2623 subsize = size > UNITS_PER_WORD? UNITS_PER_WORD : 1;
2624 subalign = MIN (align, subsize * BITS_PER_UNIT);
2625 if (GET_CODE (x) == CONST_FIXED)
2626 mclass = GET_MODE_CLASS (GET_MODE (x));
2627 else
2628 mclass = MODE_INT;
2629
2630 omode = mode_for_size (subsize * BITS_PER_UNIT, mclass, 0);
2631 imode = mode_for_size (size * BITS_PER_UNIT, mclass, 0);
2632
2633 for (i = 0; i < size; i += subsize)
2634 {
2635 rtx partial = simplify_subreg (omode, x, imode, i);
2636 if (!partial || !assemble_integer (partial, subsize, subalign, 0))
2637 break;
2638 }
2639 if (i == size)
2640 return true;
2641
2642 /* If we've printed some of it, but not all of it, there's no going
2643 back now. */
2644 gcc_assert (!i);
2645 }
2646
2647 gcc_assert (!force);
2648
2649 return false;
2650 }
2651 \f
2652 void
2653 assemble_real (REAL_VALUE_TYPE d, enum machine_mode mode, unsigned int align)
2654 {
2655 long data[4] = {0, 0, 0, 0};
2656 int i;
2657 int bitsize, nelts, nunits, units_per;
2658
2659 /* This is hairy. We have a quantity of known size. real_to_target
2660 will put it into an array of *host* longs, 32 bits per element
2661 (even if long is more than 32 bits). We need to determine the
2662 number of array elements that are occupied (nelts) and the number
2663 of *target* min-addressable units that will be occupied in the
2664 object file (nunits). We cannot assume that 32 divides the
2665 mode's bitsize (size * BITS_PER_UNIT) evenly.
2666
2667 size * BITS_PER_UNIT is used here to make sure that padding bits
2668 (which might appear at either end of the value; real_to_target
2669 will include the padding bits in its output array) are included. */
2670
2671 nunits = GET_MODE_SIZE (mode);
2672 bitsize = nunits * BITS_PER_UNIT;
2673 nelts = CEIL (bitsize, 32);
2674 units_per = 32 / BITS_PER_UNIT;
2675
2676 real_to_target (data, &d, mode);
2677
2678 /* Put out the first word with the specified alignment. */
2679 assemble_integer (GEN_INT (data[0]), MIN (nunits, units_per), align, 1);
2680 nunits -= units_per;
2681
2682 /* Subsequent words need only 32-bit alignment. */
2683 align = min_align (align, 32);
2684
2685 for (i = 1; i < nelts; i++)
2686 {
2687 assemble_integer (GEN_INT (data[i]), MIN (nunits, units_per), align, 1);
2688 nunits -= units_per;
2689 }
2690 }
2691 \f
2692 /* Given an expression EXP with a constant value,
2693 reduce it to the sum of an assembler symbol and an integer.
2694 Store them both in the structure *VALUE.
2695 EXP must be reducible. */
2696
2697 struct addr_const {
2698 rtx base;
2699 HOST_WIDE_INT offset;
2700 };
2701
2702 static void
2703 decode_addr_const (tree exp, struct addr_const *value)
2704 {
2705 tree target = TREE_OPERAND (exp, 0);
2706 int offset = 0;
2707 rtx x;
2708
2709 while (1)
2710 {
2711 if (TREE_CODE (target) == COMPONENT_REF
2712 && tree_fits_shwi_p (byte_position (TREE_OPERAND (target, 1))))
2713 {
2714 offset += int_byte_position (TREE_OPERAND (target, 1));
2715 target = TREE_OPERAND (target, 0);
2716 }
2717 else if (TREE_CODE (target) == ARRAY_REF
2718 || TREE_CODE (target) == ARRAY_RANGE_REF)
2719 {
2720 offset += (tree_to_uhwi (TYPE_SIZE_UNIT (TREE_TYPE (target)))
2721 * tree_to_shwi (TREE_OPERAND (target, 1)));
2722 target = TREE_OPERAND (target, 0);
2723 }
2724 else if (TREE_CODE (target) == MEM_REF
2725 && TREE_CODE (TREE_OPERAND (target, 0)) == ADDR_EXPR)
2726 {
2727 offset += mem_ref_offset (target).to_short_addr ();
2728 target = TREE_OPERAND (TREE_OPERAND (target, 0), 0);
2729 }
2730 else if (TREE_CODE (target) == INDIRECT_REF
2731 && TREE_CODE (TREE_OPERAND (target, 0)) == NOP_EXPR
2732 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (target, 0), 0))
2733 == ADDR_EXPR)
2734 target = TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (target, 0), 0), 0);
2735 else
2736 break;
2737 }
2738
2739 switch (TREE_CODE (target))
2740 {
2741 case VAR_DECL:
2742 case FUNCTION_DECL:
2743 x = DECL_RTL (target);
2744 break;
2745
2746 case LABEL_DECL:
2747 x = gen_rtx_MEM (FUNCTION_MODE,
2748 gen_rtx_LABEL_REF (Pmode, force_label_rtx (target)));
2749 break;
2750
2751 case REAL_CST:
2752 case FIXED_CST:
2753 case STRING_CST:
2754 case COMPLEX_CST:
2755 case CONSTRUCTOR:
2756 case INTEGER_CST:
2757 x = output_constant_def (target, 1);
2758 break;
2759
2760 default:
2761 gcc_unreachable ();
2762 }
2763
2764 gcc_assert (MEM_P (x));
2765 x = XEXP (x, 0);
2766
2767 value->base = x;
2768 value->offset = offset;
2769 }
2770 \f
2771
2772 static GTY((param_is (struct constant_descriptor_tree)))
2773 htab_t const_desc_htab;
2774
2775 static void maybe_output_constant_def_contents (struct constant_descriptor_tree *, int);
2776
2777 /* Constant pool accessor function. */
2778
2779 htab_t
2780 constant_pool_htab (void)
2781 {
2782 return const_desc_htab;
2783 }
2784
2785 /* Compute a hash code for a constant expression. */
2786
2787 static hashval_t
2788 const_desc_hash (const void *ptr)
2789 {
2790 return ((const struct constant_descriptor_tree *)ptr)->hash;
2791 }
2792
2793 static hashval_t
2794 const_hash_1 (const tree exp)
2795 {
2796 const char *p;
2797 hashval_t hi;
2798 int len, i;
2799 enum tree_code code = TREE_CODE (exp);
2800
2801 /* Either set P and LEN to the address and len of something to hash and
2802 exit the switch or return a value. */
2803
2804 switch (code)
2805 {
2806 case INTEGER_CST:
2807 p = (char *) &TREE_INT_CST_ELT (exp, 0);
2808 len = TREE_INT_CST_NUNITS (exp) * sizeof (HOST_WIDE_INT);
2809 break;
2810
2811 case REAL_CST:
2812 return real_hash (TREE_REAL_CST_PTR (exp));
2813
2814 case FIXED_CST:
2815 return fixed_hash (TREE_FIXED_CST_PTR (exp));
2816
2817 case STRING_CST:
2818 p = TREE_STRING_POINTER (exp);
2819 len = TREE_STRING_LENGTH (exp);
2820 break;
2821
2822 case COMPLEX_CST:
2823 return (const_hash_1 (TREE_REALPART (exp)) * 5
2824 + const_hash_1 (TREE_IMAGPART (exp)));
2825
2826 case VECTOR_CST:
2827 {
2828 unsigned i;
2829
2830 hi = 7 + VECTOR_CST_NELTS (exp);
2831
2832 for (i = 0; i < VECTOR_CST_NELTS (exp); ++i)
2833 hi = hi * 563 + const_hash_1 (VECTOR_CST_ELT (exp, i));
2834
2835 return hi;
2836 }
2837
2838 case CONSTRUCTOR:
2839 {
2840 unsigned HOST_WIDE_INT idx;
2841 tree value;
2842
2843 hi = 5 + int_size_in_bytes (TREE_TYPE (exp));
2844
2845 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, value)
2846 if (value)
2847 hi = hi * 603 + const_hash_1 (value);
2848
2849 return hi;
2850 }
2851
2852 case ADDR_EXPR:
2853 case FDESC_EXPR:
2854 {
2855 struct addr_const value;
2856
2857 decode_addr_const (exp, &value);
2858 switch (GET_CODE (value.base))
2859 {
2860 case SYMBOL_REF:
2861 /* Don't hash the address of the SYMBOL_REF;
2862 only use the offset and the symbol name. */
2863 hi = value.offset;
2864 p = XSTR (value.base, 0);
2865 for (i = 0; p[i] != 0; i++)
2866 hi = ((hi * 613) + (unsigned) (p[i]));
2867 break;
2868
2869 case LABEL_REF:
2870 hi = value.offset + CODE_LABEL_NUMBER (XEXP (value.base, 0)) * 13;
2871 break;
2872
2873 default:
2874 gcc_unreachable ();
2875 }
2876 }
2877 return hi;
2878
2879 case PLUS_EXPR:
2880 case POINTER_PLUS_EXPR:
2881 case MINUS_EXPR:
2882 return (const_hash_1 (TREE_OPERAND (exp, 0)) * 9
2883 + const_hash_1 (TREE_OPERAND (exp, 1)));
2884
2885 CASE_CONVERT:
2886 return const_hash_1 (TREE_OPERAND (exp, 0)) * 7 + 2;
2887
2888 default:
2889 /* A language specific constant. Just hash the code. */
2890 return code;
2891 }
2892
2893 /* Compute hashing function. */
2894 hi = len;
2895 for (i = 0; i < len; i++)
2896 hi = ((hi * 613) + (unsigned) (p[i]));
2897
2898 return hi;
2899 }
2900
2901 /* Wrapper of compare_constant, for the htab interface. */
2902 static int
2903 const_desc_eq (const void *p1, const void *p2)
2904 {
2905 const struct constant_descriptor_tree *const c1
2906 = (const struct constant_descriptor_tree *) p1;
2907 const struct constant_descriptor_tree *const c2
2908 = (const struct constant_descriptor_tree *) p2;
2909 if (c1->hash != c2->hash)
2910 return 0;
2911 return compare_constant (c1->value, c2->value);
2912 }
2913
2914 /* Compare t1 and t2, and return 1 only if they are known to result in
2915 the same bit pattern on output. */
2916
2917 static int
2918 compare_constant (const tree t1, const tree t2)
2919 {
2920 enum tree_code typecode;
2921
2922 if (t1 == NULL_TREE)
2923 return t2 == NULL_TREE;
2924 if (t2 == NULL_TREE)
2925 return 0;
2926
2927 if (TREE_CODE (t1) != TREE_CODE (t2))
2928 return 0;
2929
2930 switch (TREE_CODE (t1))
2931 {
2932 case INTEGER_CST:
2933 /* Integer constants are the same only if the same width of type. */
2934 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2935 return 0;
2936 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
2937 return 0;
2938 return tree_int_cst_equal (t1, t2);
2939
2940 case REAL_CST:
2941 /* Real constants are the same only if the same width of type. */
2942 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2943 return 0;
2944
2945 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
2946
2947 case FIXED_CST:
2948 /* Fixed constants are the same only if the same width of type. */
2949 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2950 return 0;
2951
2952 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
2953
2954 case STRING_CST:
2955 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
2956 return 0;
2957
2958 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
2959 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
2960 TREE_STRING_LENGTH (t1)));
2961
2962 case COMPLEX_CST:
2963 return (compare_constant (TREE_REALPART (t1), TREE_REALPART (t2))
2964 && compare_constant (TREE_IMAGPART (t1), TREE_IMAGPART (t2)));
2965
2966 case VECTOR_CST:
2967 {
2968 unsigned i;
2969
2970 if (VECTOR_CST_NELTS (t1) != VECTOR_CST_NELTS (t2))
2971 return 0;
2972
2973 for (i = 0; i < VECTOR_CST_NELTS (t1); ++i)
2974 if (!compare_constant (VECTOR_CST_ELT (t1, i),
2975 VECTOR_CST_ELT (t2, i)))
2976 return 0;
2977
2978 return 1;
2979 }
2980
2981 case CONSTRUCTOR:
2982 {
2983 vec<constructor_elt, va_gc> *v1, *v2;
2984 unsigned HOST_WIDE_INT idx;
2985
2986 typecode = TREE_CODE (TREE_TYPE (t1));
2987 if (typecode != TREE_CODE (TREE_TYPE (t2)))
2988 return 0;
2989
2990 if (typecode == ARRAY_TYPE)
2991 {
2992 HOST_WIDE_INT size_1 = int_size_in_bytes (TREE_TYPE (t1));
2993 /* For arrays, check that the sizes all match. */
2994 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2))
2995 || size_1 == -1
2996 || size_1 != int_size_in_bytes (TREE_TYPE (t2)))
2997 return 0;
2998 }
2999 else
3000 {
3001 /* For record and union constructors, require exact type
3002 equality. */
3003 if (TREE_TYPE (t1) != TREE_TYPE (t2))
3004 return 0;
3005 }
3006
3007 v1 = CONSTRUCTOR_ELTS (t1);
3008 v2 = CONSTRUCTOR_ELTS (t2);
3009 if (vec_safe_length (v1) != vec_safe_length (v2))
3010 return 0;
3011
3012 for (idx = 0; idx < vec_safe_length (v1); ++idx)
3013 {
3014 constructor_elt *c1 = &(*v1)[idx];
3015 constructor_elt *c2 = &(*v2)[idx];
3016
3017 /* Check that each value is the same... */
3018 if (!compare_constant (c1->value, c2->value))
3019 return 0;
3020 /* ... and that they apply to the same fields! */
3021 if (typecode == ARRAY_TYPE)
3022 {
3023 if (!compare_constant (c1->index, c2->index))
3024 return 0;
3025 }
3026 else
3027 {
3028 if (c1->index != c2->index)
3029 return 0;
3030 }
3031 }
3032
3033 return 1;
3034 }
3035
3036 case ADDR_EXPR:
3037 case FDESC_EXPR:
3038 {
3039 struct addr_const value1, value2;
3040 enum rtx_code code;
3041 int ret;
3042
3043 decode_addr_const (t1, &value1);
3044 decode_addr_const (t2, &value2);
3045
3046 if (value1.offset != value2.offset)
3047 return 0;
3048
3049 code = GET_CODE (value1.base);
3050 if (code != GET_CODE (value2.base))
3051 return 0;
3052
3053 switch (code)
3054 {
3055 case SYMBOL_REF:
3056 ret = (strcmp (XSTR (value1.base, 0), XSTR (value2.base, 0)) == 0);
3057 break;
3058
3059 case LABEL_REF:
3060 ret = (CODE_LABEL_NUMBER (XEXP (value1.base, 0))
3061 == CODE_LABEL_NUMBER (XEXP (value2.base, 0)));
3062 break;
3063
3064 default:
3065 gcc_unreachable ();
3066 }
3067 return ret;
3068 }
3069
3070 case PLUS_EXPR:
3071 case POINTER_PLUS_EXPR:
3072 case MINUS_EXPR:
3073 case RANGE_EXPR:
3074 return (compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0))
3075 && compare_constant (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)));
3076
3077 CASE_CONVERT:
3078 case VIEW_CONVERT_EXPR:
3079 return compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3080
3081 default:
3082 return 0;
3083 }
3084
3085 gcc_unreachable ();
3086 }
3087 \f
3088 /* Make a copy of the whole tree structure for a constant. This
3089 handles the same types of nodes that compare_constant handles. */
3090
3091 static tree
3092 copy_constant (tree exp)
3093 {
3094 switch (TREE_CODE (exp))
3095 {
3096 case ADDR_EXPR:
3097 /* For ADDR_EXPR, we do not want to copy the decl whose address
3098 is requested. We do want to copy constants though. */
3099 if (CONSTANT_CLASS_P (TREE_OPERAND (exp, 0)))
3100 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
3101 copy_constant (TREE_OPERAND (exp, 0)));
3102 else
3103 return copy_node (exp);
3104
3105 case INTEGER_CST:
3106 case REAL_CST:
3107 case FIXED_CST:
3108 case STRING_CST:
3109 return copy_node (exp);
3110
3111 case COMPLEX_CST:
3112 return build_complex (TREE_TYPE (exp),
3113 copy_constant (TREE_REALPART (exp)),
3114 copy_constant (TREE_IMAGPART (exp)));
3115
3116 case PLUS_EXPR:
3117 case POINTER_PLUS_EXPR:
3118 case MINUS_EXPR:
3119 return build2 (TREE_CODE (exp), TREE_TYPE (exp),
3120 copy_constant (TREE_OPERAND (exp, 0)),
3121 copy_constant (TREE_OPERAND (exp, 1)));
3122
3123 CASE_CONVERT:
3124 case VIEW_CONVERT_EXPR:
3125 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
3126 copy_constant (TREE_OPERAND (exp, 0)));
3127
3128 case VECTOR_CST:
3129 return build_vector (TREE_TYPE (exp), VECTOR_CST_ELTS (exp));
3130
3131 case CONSTRUCTOR:
3132 {
3133 tree copy = copy_node (exp);
3134 vec<constructor_elt, va_gc> *v;
3135 unsigned HOST_WIDE_INT idx;
3136 tree purpose, value;
3137
3138 vec_alloc (v, vec_safe_length (CONSTRUCTOR_ELTS (exp)));
3139 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp), idx, purpose, value)
3140 {
3141 constructor_elt ce = {purpose, copy_constant (value)};
3142 v->quick_push (ce);
3143 }
3144 CONSTRUCTOR_ELTS (copy) = v;
3145 return copy;
3146 }
3147
3148 default:
3149 gcc_unreachable ();
3150 }
3151 }
3152 \f
3153 /* Return the section into which constant EXP should be placed. */
3154
3155 static section *
3156 get_constant_section (tree exp, unsigned int align)
3157 {
3158 return targetm.asm_out.select_section (exp,
3159 compute_reloc_for_constant (exp),
3160 align);
3161 }
3162
3163 /* Return the size of constant EXP in bytes. */
3164
3165 static HOST_WIDE_INT
3166 get_constant_size (tree exp)
3167 {
3168 HOST_WIDE_INT size;
3169
3170 size = int_size_in_bytes (TREE_TYPE (exp));
3171 if (TREE_CODE (exp) == STRING_CST)
3172 size = MAX (TREE_STRING_LENGTH (exp), size);
3173 return size;
3174 }
3175
3176 /* Subroutine of output_constant_def:
3177 No constant equal to EXP is known to have been output.
3178 Make a constant descriptor to enter EXP in the hash table.
3179 Assign the label number and construct RTL to refer to the
3180 constant's location in memory.
3181 Caller is responsible for updating the hash table. */
3182
3183 static struct constant_descriptor_tree *
3184 build_constant_desc (tree exp)
3185 {
3186 struct constant_descriptor_tree *desc;
3187 rtx symbol, rtl;
3188 char label[256];
3189 int labelno;
3190 tree decl;
3191
3192 desc = ggc_alloc_constant_descriptor_tree ();
3193 desc->value = copy_constant (exp);
3194
3195 /* Create a string containing the label name, in LABEL. */
3196 labelno = const_labelno++;
3197 ASM_GENERATE_INTERNAL_LABEL (label, "LC", labelno);
3198
3199 /* Construct the VAR_DECL associated with the constant. */
3200 decl = build_decl (UNKNOWN_LOCATION, VAR_DECL, get_identifier (label),
3201 TREE_TYPE (exp));
3202 DECL_ARTIFICIAL (decl) = 1;
3203 DECL_IGNORED_P (decl) = 1;
3204 TREE_READONLY (decl) = 1;
3205 TREE_STATIC (decl) = 1;
3206 TREE_ADDRESSABLE (decl) = 1;
3207 /* We don't set the RTL yet as this would cause varpool to assume that the
3208 variable is referenced. Moreover, it would just be dropped in LTO mode.
3209 Instead we set the flag that will be recognized in make_decl_rtl. */
3210 DECL_IN_CONSTANT_POOL (decl) = 1;
3211 DECL_INITIAL (decl) = desc->value;
3212 /* ??? CONSTANT_ALIGNMENT hasn't been updated for vector types on most
3213 architectures so use DATA_ALIGNMENT as well, except for strings. */
3214 if (TREE_CODE (exp) == STRING_CST)
3215 {
3216 #ifdef CONSTANT_ALIGNMENT
3217 DECL_ALIGN (decl) = CONSTANT_ALIGNMENT (exp, DECL_ALIGN (decl));
3218 #endif
3219 }
3220 else
3221 align_variable (decl, 0);
3222
3223 /* Now construct the SYMBOL_REF and the MEM. */
3224 if (use_object_blocks_p ())
3225 {
3226 section *sect = get_constant_section (exp, DECL_ALIGN (decl));
3227 symbol = create_block_symbol (ggc_strdup (label),
3228 get_block_for_section (sect), -1);
3229 }
3230 else
3231 symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
3232 SYMBOL_REF_FLAGS (symbol) |= SYMBOL_FLAG_LOCAL;
3233 SET_SYMBOL_REF_DECL (symbol, decl);
3234 TREE_CONSTANT_POOL_ADDRESS_P (symbol) = 1;
3235
3236 rtl = gen_const_mem (TYPE_MODE (TREE_TYPE (exp)), symbol);
3237 set_mem_attributes (rtl, exp, 1);
3238 set_mem_alias_set (rtl, 0);
3239 set_mem_alias_set (rtl, const_alias_set);
3240
3241 /* We cannot share RTX'es in pool entries.
3242 Mark this piece of RTL as required for unsharing. */
3243 RTX_FLAG (rtl, used) = 1;
3244
3245 /* Set flags or add text to the name to record information, such as
3246 that it is a local symbol. If the name is changed, the macro
3247 ASM_OUTPUT_LABELREF will have to know how to strip this
3248 information. This call might invalidate our local variable
3249 SYMBOL; we can't use it afterward. */
3250 targetm.encode_section_info (exp, rtl, true);
3251
3252 desc->rtl = rtl;
3253
3254 return desc;
3255 }
3256
3257 /* Return an rtx representing a reference to constant data in memory
3258 for the constant expression EXP.
3259
3260 If assembler code for such a constant has already been output,
3261 return an rtx to refer to it.
3262 Otherwise, output such a constant in memory
3263 and generate an rtx for it.
3264
3265 If DEFER is nonzero, this constant can be deferred and output only
3266 if referenced in the function after all optimizations.
3267
3268 `const_desc_table' records which constants already have label strings. */
3269
3270 rtx
3271 output_constant_def (tree exp, int defer)
3272 {
3273 struct constant_descriptor_tree *desc;
3274 struct constant_descriptor_tree key;
3275 void **loc;
3276
3277 /* Look up EXP in the table of constant descriptors. If we didn't find
3278 it, create a new one. */
3279 key.value = exp;
3280 key.hash = const_hash_1 (exp);
3281 loc = htab_find_slot_with_hash (const_desc_htab, &key, key.hash, INSERT);
3282
3283 desc = (struct constant_descriptor_tree *) *loc;
3284 if (desc == 0)
3285 {
3286 desc = build_constant_desc (exp);
3287 desc->hash = key.hash;
3288 *loc = desc;
3289 }
3290
3291 maybe_output_constant_def_contents (desc, defer);
3292 return desc->rtl;
3293 }
3294
3295 /* Subroutine of output_constant_def: Decide whether or not we need to
3296 output the constant DESC now, and if so, do it. */
3297 static void
3298 maybe_output_constant_def_contents (struct constant_descriptor_tree *desc,
3299 int defer)
3300 {
3301 rtx symbol = XEXP (desc->rtl, 0);
3302 tree exp = desc->value;
3303
3304 if (flag_syntax_only)
3305 return;
3306
3307 if (TREE_ASM_WRITTEN (exp))
3308 /* Already output; don't do it again. */
3309 return;
3310
3311 /* We can always defer constants as long as the context allows
3312 doing so. */
3313 if (defer)
3314 {
3315 /* Increment n_deferred_constants if it exists. It needs to be at
3316 least as large as the number of constants actually referred to
3317 by the function. If it's too small we'll stop looking too early
3318 and fail to emit constants; if it's too large we'll only look
3319 through the entire function when we could have stopped earlier. */
3320 if (cfun)
3321 n_deferred_constants++;
3322 return;
3323 }
3324
3325 output_constant_def_contents (symbol);
3326 }
3327
3328 /* Subroutine of output_constant_def_contents. Output the definition
3329 of constant EXP, which is pointed to by label LABEL. ALIGN is the
3330 constant's alignment in bits. */
3331
3332 static void
3333 assemble_constant_contents (tree exp, const char *label, unsigned int align)
3334 {
3335 HOST_WIDE_INT size;
3336
3337 size = get_constant_size (exp);
3338
3339 /* Do any machine/system dependent processing of the constant. */
3340 targetm.asm_out.declare_constant_name (asm_out_file, label, exp, size);
3341
3342 /* Output the value of EXP. */
3343 output_constant (exp, size, align);
3344 }
3345
3346 /* We must output the constant data referred to by SYMBOL; do so. */
3347
3348 static void
3349 output_constant_def_contents (rtx symbol)
3350 {
3351 tree decl = SYMBOL_REF_DECL (symbol);
3352 tree exp = DECL_INITIAL (decl);
3353 unsigned int align;
3354 bool asan_protected = false;
3355
3356 /* Make sure any other constants whose addresses appear in EXP
3357 are assigned label numbers. */
3358 output_addressed_constants (exp);
3359
3360 /* We are no longer deferring this constant. */
3361 TREE_ASM_WRITTEN (decl) = TREE_ASM_WRITTEN (exp) = 1;
3362
3363 if ((flag_sanitize & SANITIZE_ADDRESS)
3364 && TREE_CODE (exp) == STRING_CST
3365 && asan_protect_global (exp))
3366 {
3367 asan_protected = true;
3368 DECL_ALIGN (decl) = MAX (DECL_ALIGN (decl),
3369 ASAN_RED_ZONE_SIZE * BITS_PER_UNIT);
3370 }
3371
3372 /* If the constant is part of an object block, make sure that the
3373 decl has been positioned within its block, but do not write out
3374 its definition yet. output_object_blocks will do that later. */
3375 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol) && SYMBOL_REF_BLOCK (symbol))
3376 place_block_symbol (symbol);
3377 else
3378 {
3379 align = DECL_ALIGN (decl);
3380 switch_to_section (get_constant_section (exp, align));
3381 if (align > BITS_PER_UNIT)
3382 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
3383 assemble_constant_contents (exp, XSTR (symbol, 0), align);
3384 if (asan_protected)
3385 {
3386 HOST_WIDE_INT size = get_constant_size (exp);
3387 assemble_zeros (asan_red_zone_size (size));
3388 }
3389 }
3390 }
3391
3392 /* Look up EXP in the table of constant descriptors. Return the rtl
3393 if it has been emitted, else null. */
3394
3395 rtx
3396 lookup_constant_def (tree exp)
3397 {
3398 struct constant_descriptor_tree *desc;
3399 struct constant_descriptor_tree key;
3400
3401 key.value = exp;
3402 key.hash = const_hash_1 (exp);
3403 desc = (struct constant_descriptor_tree *)
3404 htab_find_with_hash (const_desc_htab, &key, key.hash);
3405
3406 return (desc ? desc->rtl : NULL_RTX);
3407 }
3408
3409 /* Return a tree representing a reference to constant data in memory
3410 for the constant expression EXP.
3411
3412 This is the counterpart of output_constant_def at the Tree level. */
3413
3414 tree
3415 tree_output_constant_def (tree exp)
3416 {
3417 struct constant_descriptor_tree *desc, key;
3418 void **loc;
3419 tree decl;
3420
3421 /* Look up EXP in the table of constant descriptors. If we didn't find
3422 it, create a new one. */
3423 key.value = exp;
3424 key.hash = const_hash_1 (exp);
3425 loc = htab_find_slot_with_hash (const_desc_htab, &key, key.hash, INSERT);
3426
3427 desc = (struct constant_descriptor_tree *) *loc;
3428 if (desc == 0)
3429 {
3430 desc = build_constant_desc (exp);
3431 desc->hash = key.hash;
3432 *loc = desc;
3433 }
3434
3435 decl = SYMBOL_REF_DECL (XEXP (desc->rtl, 0));
3436 varpool_finalize_decl (decl);
3437 return decl;
3438 }
3439 \f
3440 /* Used in the hash tables to avoid outputting the same constant
3441 twice. Unlike 'struct constant_descriptor_tree', RTX constants
3442 are output once per function, not once per file. */
3443 /* ??? Only a few targets need per-function constant pools. Most
3444 can use one per-file pool. Should add a targetm bit to tell the
3445 difference. */
3446
3447 struct GTY(()) rtx_constant_pool {
3448 /* Pointers to first and last constant in pool, as ordered by offset. */
3449 struct constant_descriptor_rtx *first;
3450 struct constant_descriptor_rtx *last;
3451
3452 /* Hash facility for making memory-constants from constant rtl-expressions.
3453 It is used on RISC machines where immediate integer arguments and
3454 constant addresses are restricted so that such constants must be stored
3455 in memory. */
3456 htab_t GTY((param_is (struct constant_descriptor_rtx))) const_rtx_htab;
3457
3458 /* Current offset in constant pool (does not include any
3459 machine-specific header). */
3460 HOST_WIDE_INT offset;
3461 };
3462
3463 struct GTY((chain_next ("%h.next"))) constant_descriptor_rtx {
3464 struct constant_descriptor_rtx *next;
3465 rtx mem;
3466 rtx sym;
3467 rtx constant;
3468 HOST_WIDE_INT offset;
3469 hashval_t hash;
3470 enum machine_mode mode;
3471 unsigned int align;
3472 int labelno;
3473 int mark;
3474 };
3475
3476 /* Hash and compare functions for const_rtx_htab. */
3477
3478 static hashval_t
3479 const_desc_rtx_hash (const void *ptr)
3480 {
3481 const struct constant_descriptor_rtx *const desc
3482 = (const struct constant_descriptor_rtx *) ptr;
3483 return desc->hash;
3484 }
3485
3486 static int
3487 const_desc_rtx_eq (const void *a, const void *b)
3488 {
3489 const struct constant_descriptor_rtx *const x
3490 = (const struct constant_descriptor_rtx *) a;
3491 const struct constant_descriptor_rtx *const y
3492 = (const struct constant_descriptor_rtx *) b;
3493
3494 if (x->mode != y->mode)
3495 return 0;
3496 return rtx_equal_p (x->constant, y->constant);
3497 }
3498
3499 /* This is the worker function for const_rtx_hash, called via for_each_rtx. */
3500
3501 static int
3502 const_rtx_hash_1 (rtx *xp, void *data)
3503 {
3504 unsigned HOST_WIDE_INT hwi;
3505 enum machine_mode mode;
3506 enum rtx_code code;
3507 hashval_t h, *hp;
3508 rtx x;
3509 int i;
3510
3511 x = *xp;
3512 code = GET_CODE (x);
3513 mode = GET_MODE (x);
3514 h = (hashval_t) code * 1048573 + mode;
3515
3516 switch (code)
3517 {
3518 case CONST_INT:
3519 hwi = INTVAL (x);
3520
3521 fold_hwi:
3522 {
3523 int shift = sizeof (hashval_t) * CHAR_BIT;
3524 const int n = sizeof (HOST_WIDE_INT) / sizeof (hashval_t);
3525
3526 h ^= (hashval_t) hwi;
3527 for (i = 1; i < n; ++i)
3528 {
3529 hwi >>= shift;
3530 h ^= (hashval_t) hwi;
3531 }
3532 }
3533 break;
3534
3535 case CONST_WIDE_INT:
3536 hwi = GET_MODE_PRECISION (mode);
3537 {
3538 for (i = 0; i < CONST_WIDE_INT_NUNITS (x); i++)
3539 hwi ^= CONST_WIDE_INT_ELT (x, i);
3540 goto fold_hwi;
3541 }
3542
3543 case CONST_DOUBLE:
3544 if (TARGET_SUPPORTS_WIDE_INT == 0 && mode == VOIDmode)
3545 {
3546 hwi = CONST_DOUBLE_LOW (x) ^ CONST_DOUBLE_HIGH (x);
3547 goto fold_hwi;
3548 }
3549 else
3550 h ^= real_hash (CONST_DOUBLE_REAL_VALUE (x));
3551 break;
3552
3553 case CONST_FIXED:
3554 h ^= fixed_hash (CONST_FIXED_VALUE (x));
3555 break;
3556
3557 case CONST_VECTOR:
3558 {
3559 int i;
3560 for (i = XVECLEN (x, 0); i-- > 0; )
3561 h = h * 251 + const_rtx_hash_1 (&XVECEXP (x, 0, i), data);
3562 }
3563 break;
3564
3565 case SYMBOL_REF:
3566 h ^= htab_hash_string (XSTR (x, 0));
3567 break;
3568
3569 case LABEL_REF:
3570 h = h * 251 + CODE_LABEL_NUMBER (XEXP (x, 0));
3571 break;
3572
3573 case UNSPEC:
3574 case UNSPEC_VOLATILE:
3575 h = h * 251 + XINT (x, 1);
3576 break;
3577
3578 default:
3579 break;
3580 }
3581
3582 hp = (hashval_t *) data;
3583 *hp = *hp * 509 + h;
3584 return 0;
3585 }
3586
3587 /* Compute a hash value for X, which should be a constant. */
3588
3589 static hashval_t
3590 const_rtx_hash (rtx x)
3591 {
3592 hashval_t h = 0;
3593 for_each_rtx (&x, const_rtx_hash_1, &h);
3594 return h;
3595 }
3596
3597 \f
3598 /* Create and return a new rtx constant pool. */
3599
3600 static struct rtx_constant_pool *
3601 create_constant_pool (void)
3602 {
3603 struct rtx_constant_pool *pool;
3604
3605 pool = ggc_alloc_rtx_constant_pool ();
3606 pool->const_rtx_htab = htab_create_ggc (31, const_desc_rtx_hash,
3607 const_desc_rtx_eq, NULL);
3608 pool->first = NULL;
3609 pool->last = NULL;
3610 pool->offset = 0;
3611 return pool;
3612 }
3613
3614 /* Initialize constant pool hashing for a new function. */
3615
3616 void
3617 init_varasm_status (void)
3618 {
3619 crtl->varasm.pool = create_constant_pool ();
3620 crtl->varasm.deferred_constants = 0;
3621 }
3622 \f
3623 /* Given a MINUS expression, simplify it if both sides
3624 include the same symbol. */
3625
3626 rtx
3627 simplify_subtraction (rtx x)
3628 {
3629 rtx r = simplify_rtx (x);
3630 return r ? r : x;
3631 }
3632 \f
3633 /* Given a constant rtx X, make (or find) a memory constant for its value
3634 and return a MEM rtx to refer to it in memory. */
3635
3636 rtx
3637 force_const_mem (enum machine_mode mode, rtx x)
3638 {
3639 struct constant_descriptor_rtx *desc, tmp;
3640 struct rtx_constant_pool *pool;
3641 char label[256];
3642 rtx def, symbol;
3643 hashval_t hash;
3644 unsigned int align;
3645 void **slot;
3646
3647 /* If we're not allowed to drop X into the constant pool, don't. */
3648 if (targetm.cannot_force_const_mem (mode, x))
3649 return NULL_RTX;
3650
3651 /* Record that this function has used a constant pool entry. */
3652 crtl->uses_const_pool = 1;
3653
3654 /* Decide which pool to use. */
3655 pool = (targetm.use_blocks_for_constant_p (mode, x)
3656 ? shared_constant_pool
3657 : crtl->varasm.pool);
3658
3659 /* Lookup the value in the hashtable. */
3660 tmp.constant = x;
3661 tmp.mode = mode;
3662 hash = const_rtx_hash (x);
3663 slot = htab_find_slot_with_hash (pool->const_rtx_htab, &tmp, hash, INSERT);
3664 desc = (struct constant_descriptor_rtx *) *slot;
3665
3666 /* If the constant was already present, return its memory. */
3667 if (desc)
3668 return copy_rtx (desc->mem);
3669
3670 /* Otherwise, create a new descriptor. */
3671 desc = ggc_alloc_constant_descriptor_rtx ();
3672 *slot = desc;
3673
3674 /* Align the location counter as required by EXP's data type. */
3675 align = GET_MODE_ALIGNMENT (mode == VOIDmode ? word_mode : mode);
3676 #ifdef CONSTANT_ALIGNMENT
3677 {
3678 tree type = lang_hooks.types.type_for_mode (mode, 0);
3679 if (type != NULL_TREE)
3680 align = CONSTANT_ALIGNMENT (make_tree (type, x), align);
3681 }
3682 #endif
3683
3684 pool->offset += (align / BITS_PER_UNIT) - 1;
3685 pool->offset &= ~ ((align / BITS_PER_UNIT) - 1);
3686
3687 desc->next = NULL;
3688 desc->constant = copy_rtx (tmp.constant);
3689 desc->offset = pool->offset;
3690 desc->hash = hash;
3691 desc->mode = mode;
3692 desc->align = align;
3693 desc->labelno = const_labelno;
3694 desc->mark = 0;
3695
3696 pool->offset += GET_MODE_SIZE (mode);
3697 if (pool->last)
3698 pool->last->next = desc;
3699 else
3700 pool->first = pool->last = desc;
3701 pool->last = desc;
3702
3703 /* Create a string containing the label name, in LABEL. */
3704 ASM_GENERATE_INTERNAL_LABEL (label, "LC", const_labelno);
3705 ++const_labelno;
3706
3707 /* Construct the SYMBOL_REF. Make sure to mark it as belonging to
3708 the constants pool. */
3709 if (use_object_blocks_p () && targetm.use_blocks_for_constant_p (mode, x))
3710 {
3711 section *sect = targetm.asm_out.select_rtx_section (mode, x, align);
3712 symbol = create_block_symbol (ggc_strdup (label),
3713 get_block_for_section (sect), -1);
3714 }
3715 else
3716 symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
3717 desc->sym = symbol;
3718 SYMBOL_REF_FLAGS (symbol) |= SYMBOL_FLAG_LOCAL;
3719 CONSTANT_POOL_ADDRESS_P (symbol) = 1;
3720 SET_SYMBOL_REF_CONSTANT (symbol, desc);
3721
3722 /* Construct the MEM. */
3723 desc->mem = def = gen_const_mem (mode, symbol);
3724 set_mem_attributes (def, lang_hooks.types.type_for_mode (mode, 0), 1);
3725 set_mem_align (def, align);
3726
3727 /* If we're dropping a label to the constant pool, make sure we
3728 don't delete it. */
3729 if (GET_CODE (x) == LABEL_REF)
3730 LABEL_PRESERVE_P (XEXP (x, 0)) = 1;
3731
3732 return copy_rtx (def);
3733 }
3734 \f
3735 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3736
3737 rtx
3738 get_pool_constant (rtx addr)
3739 {
3740 return SYMBOL_REF_CONSTANT (addr)->constant;
3741 }
3742
3743 /* Given a constant pool SYMBOL_REF, return the corresponding constant
3744 and whether it has been output or not. */
3745
3746 rtx
3747 get_pool_constant_mark (rtx addr, bool *pmarked)
3748 {
3749 struct constant_descriptor_rtx *desc;
3750
3751 desc = SYMBOL_REF_CONSTANT (addr);
3752 *pmarked = (desc->mark != 0);
3753 return desc->constant;
3754 }
3755
3756 /* Similar, return the mode. */
3757
3758 enum machine_mode
3759 get_pool_mode (const_rtx addr)
3760 {
3761 return SYMBOL_REF_CONSTANT (addr)->mode;
3762 }
3763
3764 /* Return the size of the constant pool. */
3765
3766 int
3767 get_pool_size (void)
3768 {
3769 return crtl->varasm.pool->offset;
3770 }
3771 \f
3772 /* Worker function for output_constant_pool_1. Emit assembly for X
3773 in MODE with known alignment ALIGN. */
3774
3775 static void
3776 output_constant_pool_2 (enum machine_mode mode, rtx x, unsigned int align)
3777 {
3778 switch (GET_MODE_CLASS (mode))
3779 {
3780 case MODE_FLOAT:
3781 case MODE_DECIMAL_FLOAT:
3782 {
3783 REAL_VALUE_TYPE r;
3784
3785 gcc_assert (CONST_DOUBLE_AS_FLOAT_P (x));
3786 REAL_VALUE_FROM_CONST_DOUBLE (r, x);
3787 assemble_real (r, mode, align);
3788 break;
3789 }
3790
3791 case MODE_INT:
3792 case MODE_PARTIAL_INT:
3793 case MODE_FRACT:
3794 case MODE_UFRACT:
3795 case MODE_ACCUM:
3796 case MODE_UACCUM:
3797 assemble_integer (x, GET_MODE_SIZE (mode), align, 1);
3798 break;
3799
3800 case MODE_VECTOR_FLOAT:
3801 case MODE_VECTOR_INT:
3802 case MODE_VECTOR_FRACT:
3803 case MODE_VECTOR_UFRACT:
3804 case MODE_VECTOR_ACCUM:
3805 case MODE_VECTOR_UACCUM:
3806 {
3807 int i, units;
3808 enum machine_mode submode = GET_MODE_INNER (mode);
3809 unsigned int subalign = MIN (align, GET_MODE_BITSIZE (submode));
3810
3811 gcc_assert (GET_CODE (x) == CONST_VECTOR);
3812 units = CONST_VECTOR_NUNITS (x);
3813
3814 for (i = 0; i < units; i++)
3815 {
3816 rtx elt = CONST_VECTOR_ELT (x, i);
3817 output_constant_pool_2 (submode, elt, i ? subalign : align);
3818 }
3819 }
3820 break;
3821
3822 default:
3823 gcc_unreachable ();
3824 }
3825 }
3826
3827 /* Worker function for output_constant_pool. Emit constant DESC,
3828 giving it ALIGN bits of alignment. */
3829
3830 static void
3831 output_constant_pool_1 (struct constant_descriptor_rtx *desc,
3832 unsigned int align)
3833 {
3834 rtx x, tmp;
3835
3836 x = desc->constant;
3837
3838 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3839 whose CODE_LABEL has been deleted. This can occur if a jump table
3840 is eliminated by optimization. If so, write a constant of zero
3841 instead. Note that this can also happen by turning the
3842 CODE_LABEL into a NOTE. */
3843 /* ??? This seems completely and utterly wrong. Certainly it's
3844 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3845 functioning even with INSN_DELETED_P and friends. */
3846
3847 tmp = x;
3848 switch (GET_CODE (tmp))
3849 {
3850 case CONST:
3851 if (GET_CODE (XEXP (tmp, 0)) != PLUS
3852 || GET_CODE (XEXP (XEXP (tmp, 0), 0)) != LABEL_REF)
3853 break;
3854 tmp = XEXP (XEXP (tmp, 0), 0);
3855 /* FALLTHRU */
3856
3857 case LABEL_REF:
3858 tmp = XEXP (tmp, 0);
3859 gcc_assert (!INSN_DELETED_P (tmp));
3860 gcc_assert (!NOTE_P (tmp)
3861 || NOTE_KIND (tmp) != NOTE_INSN_DELETED);
3862 break;
3863
3864 default:
3865 break;
3866 }
3867
3868 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3869 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file, x, desc->mode,
3870 align, desc->labelno, done);
3871 #endif
3872
3873 assemble_align (align);
3874
3875 /* Output the label. */
3876 targetm.asm_out.internal_label (asm_out_file, "LC", desc->labelno);
3877
3878 /* Output the data. */
3879 output_constant_pool_2 (desc->mode, x, align);
3880
3881 /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
3882 sections have proper size. */
3883 if (align > GET_MODE_BITSIZE (desc->mode)
3884 && in_section
3885 && (in_section->common.flags & SECTION_MERGE))
3886 assemble_align (align);
3887
3888 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3889 done:
3890 #endif
3891 return;
3892 }
3893
3894 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3895 to as used. Emit referenced deferred strings. This function can
3896 be used with for_each_rtx to mark all SYMBOL_REFs in an rtx. */
3897
3898 static int
3899 mark_constant (rtx *current_rtx, void *data ATTRIBUTE_UNUSED)
3900 {
3901 rtx x = *current_rtx;
3902
3903 if (x == NULL_RTX || GET_CODE (x) != SYMBOL_REF)
3904 return 0;
3905
3906 if (CONSTANT_POOL_ADDRESS_P (x))
3907 {
3908 struct constant_descriptor_rtx *desc = SYMBOL_REF_CONSTANT (x);
3909 if (desc->mark == 0)
3910 {
3911 desc->mark = 1;
3912 for_each_rtx (&desc->constant, mark_constant, NULL);
3913 }
3914 }
3915 else if (TREE_CONSTANT_POOL_ADDRESS_P (x))
3916 {
3917 tree decl = SYMBOL_REF_DECL (x);
3918 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl)))
3919 {
3920 n_deferred_constants--;
3921 output_constant_def_contents (x);
3922 }
3923 }
3924
3925 return -1;
3926 }
3927
3928 /* Look through appropriate parts of INSN, marking all entries in the
3929 constant pool which are actually being used. Entries that are only
3930 referenced by other constants are also marked as used. Emit
3931 deferred strings that are used. */
3932
3933 static void
3934 mark_constants (rtx insn)
3935 {
3936 if (!INSN_P (insn))
3937 return;
3938
3939 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3940 insns, not any notes that may be attached. We don't want to mark
3941 a constant just because it happens to appear in a REG_EQUIV note. */
3942 if (GET_CODE (PATTERN (insn)) == SEQUENCE)
3943 {
3944 rtx seq = PATTERN (insn);
3945 int i, n = XVECLEN (seq, 0);
3946 for (i = 0; i < n; ++i)
3947 {
3948 rtx subinsn = XVECEXP (seq, 0, i);
3949 if (INSN_P (subinsn))
3950 for_each_rtx (&PATTERN (subinsn), mark_constant, NULL);
3951 }
3952 }
3953 else
3954 for_each_rtx (&PATTERN (insn), mark_constant, NULL);
3955 }
3956
3957 /* Look through the instructions for this function, and mark all the
3958 entries in POOL which are actually being used. Emit deferred constants
3959 which have indeed been used. */
3960
3961 static void
3962 mark_constant_pool (void)
3963 {
3964 rtx insn;
3965
3966 if (!crtl->uses_const_pool && n_deferred_constants == 0)
3967 return;
3968
3969 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3970 mark_constants (insn);
3971 }
3972
3973 /* Write all the constants in POOL. */
3974
3975 static void
3976 output_constant_pool_contents (struct rtx_constant_pool *pool)
3977 {
3978 struct constant_descriptor_rtx *desc;
3979
3980 for (desc = pool->first; desc ; desc = desc->next)
3981 if (desc->mark)
3982 {
3983 /* If the constant is part of an object_block, make sure that
3984 the constant has been positioned within its block, but do not
3985 write out its definition yet. output_object_blocks will do
3986 that later. */
3987 if (SYMBOL_REF_HAS_BLOCK_INFO_P (desc->sym)
3988 && SYMBOL_REF_BLOCK (desc->sym))
3989 place_block_symbol (desc->sym);
3990 else
3991 {
3992 switch_to_section (targetm.asm_out.select_rtx_section
3993 (desc->mode, desc->constant, desc->align));
3994 output_constant_pool_1 (desc, desc->align);
3995 }
3996 }
3997 }
3998
3999 /* Mark all constants that are used in the current function, then write
4000 out the function's private constant pool. */
4001
4002 static void
4003 output_constant_pool (const char *fnname ATTRIBUTE_UNUSED,
4004 tree fndecl ATTRIBUTE_UNUSED)
4005 {
4006 struct rtx_constant_pool *pool = crtl->varasm.pool;
4007
4008 /* It is possible for gcc to call force_const_mem and then to later
4009 discard the instructions which refer to the constant. In such a
4010 case we do not need to output the constant. */
4011 mark_constant_pool ();
4012
4013 #ifdef ASM_OUTPUT_POOL_PROLOGUE
4014 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file, fnname, fndecl, pool->offset);
4015 #endif
4016
4017 output_constant_pool_contents (pool);
4018
4019 #ifdef ASM_OUTPUT_POOL_EPILOGUE
4020 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file, fnname, fndecl, pool->offset);
4021 #endif
4022 }
4023 \f
4024 /* Write the contents of the shared constant pool. */
4025
4026 void
4027 output_shared_constant_pool (void)
4028 {
4029 output_constant_pool_contents (shared_constant_pool);
4030 }
4031 \f
4032 /* Determine what kind of relocations EXP may need. */
4033
4034 int
4035 compute_reloc_for_constant (tree exp)
4036 {
4037 int reloc = 0, reloc2;
4038 tree tem;
4039
4040 switch (TREE_CODE (exp))
4041 {
4042 case ADDR_EXPR:
4043 case FDESC_EXPR:
4044 /* Go inside any operations that get_inner_reference can handle and see
4045 if what's inside is a constant: no need to do anything here for
4046 addresses of variables or functions. */
4047 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
4048 tem = TREE_OPERAND (tem, 0))
4049 ;
4050
4051 if (TREE_CODE (tem) == MEM_REF
4052 && TREE_CODE (TREE_OPERAND (tem, 0)) == ADDR_EXPR)
4053 {
4054 reloc = compute_reloc_for_constant (TREE_OPERAND (tem, 0));
4055 break;
4056 }
4057
4058 if (TREE_PUBLIC (tem))
4059 reloc |= 2;
4060 else
4061 reloc |= 1;
4062 break;
4063
4064 case PLUS_EXPR:
4065 case POINTER_PLUS_EXPR:
4066 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
4067 reloc |= compute_reloc_for_constant (TREE_OPERAND (exp, 1));
4068 break;
4069
4070 case MINUS_EXPR:
4071 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
4072 reloc2 = compute_reloc_for_constant (TREE_OPERAND (exp, 1));
4073 /* The difference of two local labels is computable at link time. */
4074 if (reloc == 1 && reloc2 == 1)
4075 reloc = 0;
4076 else
4077 reloc |= reloc2;
4078 break;
4079
4080 CASE_CONVERT:
4081 case VIEW_CONVERT_EXPR:
4082 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
4083 break;
4084
4085 case CONSTRUCTOR:
4086 {
4087 unsigned HOST_WIDE_INT idx;
4088 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, tem)
4089 if (tem != 0)
4090 reloc |= compute_reloc_for_constant (tem);
4091 }
4092 break;
4093
4094 default:
4095 break;
4096 }
4097 return reloc;
4098 }
4099
4100 /* Find all the constants whose addresses are referenced inside of EXP,
4101 and make sure assembler code with a label has been output for each one.
4102 Indicate whether an ADDR_EXPR has been encountered. */
4103
4104 static void
4105 output_addressed_constants (tree exp)
4106 {
4107 tree tem;
4108
4109 switch (TREE_CODE (exp))
4110 {
4111 case ADDR_EXPR:
4112 case FDESC_EXPR:
4113 /* Go inside any operations that get_inner_reference can handle and see
4114 if what's inside is a constant: no need to do anything here for
4115 addresses of variables or functions. */
4116 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
4117 tem = TREE_OPERAND (tem, 0))
4118 ;
4119
4120 /* If we have an initialized CONST_DECL, retrieve the initializer. */
4121 if (TREE_CODE (tem) == CONST_DECL && DECL_INITIAL (tem))
4122 tem = DECL_INITIAL (tem);
4123
4124 if (CONSTANT_CLASS_P (tem) || TREE_CODE (tem) == CONSTRUCTOR)
4125 output_constant_def (tem, 0);
4126
4127 if (TREE_CODE (tem) == MEM_REF)
4128 output_addressed_constants (TREE_OPERAND (tem, 0));
4129 break;
4130
4131 case PLUS_EXPR:
4132 case POINTER_PLUS_EXPR:
4133 case MINUS_EXPR:
4134 output_addressed_constants (TREE_OPERAND (exp, 1));
4135 /* Fall through. */
4136
4137 CASE_CONVERT:
4138 case VIEW_CONVERT_EXPR:
4139 output_addressed_constants (TREE_OPERAND (exp, 0));
4140 break;
4141
4142 case CONSTRUCTOR:
4143 {
4144 unsigned HOST_WIDE_INT idx;
4145 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, tem)
4146 if (tem != 0)
4147 output_addressed_constants (tem);
4148 }
4149 break;
4150
4151 default:
4152 break;
4153 }
4154 }
4155 \f
4156 /* Whether a constructor CTOR is a valid static constant initializer if all
4157 its elements are. This used to be internal to initializer_constant_valid_p
4158 and has been exposed to let other functions like categorize_ctor_elements
4159 evaluate the property while walking a constructor for other purposes. */
4160
4161 bool
4162 constructor_static_from_elts_p (const_tree ctor)
4163 {
4164 return (TREE_CONSTANT (ctor)
4165 && (TREE_CODE (TREE_TYPE (ctor)) == UNION_TYPE
4166 || TREE_CODE (TREE_TYPE (ctor)) == RECORD_TYPE
4167 || TREE_CODE (TREE_TYPE (ctor)) == ARRAY_TYPE));
4168 }
4169
4170 static tree initializer_constant_valid_p_1 (tree value, tree endtype,
4171 tree *cache);
4172
4173 /* A subroutine of initializer_constant_valid_p. VALUE is a MINUS_EXPR,
4174 PLUS_EXPR or POINTER_PLUS_EXPR. This looks for cases of VALUE
4175 which are valid when ENDTYPE is an integer of any size; in
4176 particular, this does not accept a pointer minus a constant. This
4177 returns null_pointer_node if the VALUE is an absolute constant
4178 which can be used to initialize a static variable. Otherwise it
4179 returns NULL. */
4180
4181 static tree
4182 narrowing_initializer_constant_valid_p (tree value, tree endtype, tree *cache)
4183 {
4184 tree op0, op1;
4185
4186 if (!INTEGRAL_TYPE_P (endtype))
4187 return NULL_TREE;
4188
4189 op0 = TREE_OPERAND (value, 0);
4190 op1 = TREE_OPERAND (value, 1);
4191
4192 /* Like STRIP_NOPS except allow the operand mode to widen. This
4193 works around a feature of fold that simplifies (int)(p1 - p2) to
4194 ((int)p1 - (int)p2) under the theory that the narrower operation
4195 is cheaper. */
4196
4197 while (CONVERT_EXPR_P (op0)
4198 || TREE_CODE (op0) == NON_LVALUE_EXPR)
4199 {
4200 tree inner = TREE_OPERAND (op0, 0);
4201 if (inner == error_mark_node
4202 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
4203 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0)))
4204 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
4205 break;
4206 op0 = inner;
4207 }
4208
4209 while (CONVERT_EXPR_P (op1)
4210 || TREE_CODE (op1) == NON_LVALUE_EXPR)
4211 {
4212 tree inner = TREE_OPERAND (op1, 0);
4213 if (inner == error_mark_node
4214 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
4215 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op1)))
4216 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
4217 break;
4218 op1 = inner;
4219 }
4220
4221 op0 = initializer_constant_valid_p_1 (op0, endtype, cache);
4222 if (!op0)
4223 return NULL_TREE;
4224
4225 op1 = initializer_constant_valid_p_1 (op1, endtype,
4226 cache ? cache + 2 : NULL);
4227 /* Both initializers must be known. */
4228 if (op1)
4229 {
4230 if (op0 == op1
4231 && (op0 == null_pointer_node
4232 || TREE_CODE (value) == MINUS_EXPR))
4233 return null_pointer_node;
4234
4235 /* Support differences between labels. */
4236 if (TREE_CODE (op0) == LABEL_DECL
4237 && TREE_CODE (op1) == LABEL_DECL)
4238 return null_pointer_node;
4239
4240 if (TREE_CODE (op0) == STRING_CST
4241 && TREE_CODE (op1) == STRING_CST
4242 && operand_equal_p (op0, op1, 1))
4243 return null_pointer_node;
4244 }
4245
4246 return NULL_TREE;
4247 }
4248
4249 /* Helper function of initializer_constant_valid_p.
4250 Return nonzero if VALUE is a valid constant-valued expression
4251 for use in initializing a static variable; one that can be an
4252 element of a "constant" initializer.
4253
4254 Return null_pointer_node if the value is absolute;
4255 if it is relocatable, return the variable that determines the relocation.
4256 We assume that VALUE has been folded as much as possible;
4257 therefore, we do not need to check for such things as
4258 arithmetic-combinations of integers.
4259
4260 Use CACHE (pointer to 2 tree values) for caching if non-NULL. */
4261
4262 static tree
4263 initializer_constant_valid_p_1 (tree value, tree endtype, tree *cache)
4264 {
4265 tree ret;
4266
4267 switch (TREE_CODE (value))
4268 {
4269 case CONSTRUCTOR:
4270 if (constructor_static_from_elts_p (value))
4271 {
4272 unsigned HOST_WIDE_INT idx;
4273 tree elt;
4274 bool absolute = true;
4275
4276 if (cache && cache[0] == value)
4277 return cache[1];
4278 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value), idx, elt)
4279 {
4280 tree reloc;
4281 reloc = initializer_constant_valid_p_1 (elt, TREE_TYPE (elt),
4282 NULL);
4283 if (!reloc)
4284 {
4285 if (cache)
4286 {
4287 cache[0] = value;
4288 cache[1] = NULL_TREE;
4289 }
4290 return NULL_TREE;
4291 }
4292 if (reloc != null_pointer_node)
4293 absolute = false;
4294 }
4295 /* For a non-absolute relocation, there is no single
4296 variable that can be "the variable that determines the
4297 relocation." */
4298 if (cache)
4299 {
4300 cache[0] = value;
4301 cache[1] = absolute ? null_pointer_node : error_mark_node;
4302 }
4303 return absolute ? null_pointer_node : error_mark_node;
4304 }
4305
4306 return TREE_STATIC (value) ? null_pointer_node : NULL_TREE;
4307
4308 case INTEGER_CST:
4309 case VECTOR_CST:
4310 case REAL_CST:
4311 case FIXED_CST:
4312 case STRING_CST:
4313 case COMPLEX_CST:
4314 return null_pointer_node;
4315
4316 case ADDR_EXPR:
4317 case FDESC_EXPR:
4318 {
4319 tree op0 = staticp (TREE_OPERAND (value, 0));
4320 if (op0)
4321 {
4322 /* "&(*a).f" is like unto pointer arithmetic. If "a" turns out
4323 to be a constant, this is old-skool offsetof-like nonsense. */
4324 if (TREE_CODE (op0) == INDIRECT_REF
4325 && TREE_CONSTANT (TREE_OPERAND (op0, 0)))
4326 return null_pointer_node;
4327 /* Taking the address of a nested function involves a trampoline,
4328 unless we don't need or want one. */
4329 if (TREE_CODE (op0) == FUNCTION_DECL
4330 && DECL_STATIC_CHAIN (op0)
4331 && !TREE_NO_TRAMPOLINE (value))
4332 return NULL_TREE;
4333 /* "&{...}" requires a temporary to hold the constructed
4334 object. */
4335 if (TREE_CODE (op0) == CONSTRUCTOR)
4336 return NULL_TREE;
4337 }
4338 return op0;
4339 }
4340
4341 case NON_LVALUE_EXPR:
4342 return initializer_constant_valid_p_1 (TREE_OPERAND (value, 0),
4343 endtype, cache);
4344
4345 case VIEW_CONVERT_EXPR:
4346 {
4347 tree src = TREE_OPERAND (value, 0);
4348 tree src_type = TREE_TYPE (src);
4349 tree dest_type = TREE_TYPE (value);
4350
4351 /* Allow view-conversions from aggregate to non-aggregate type only
4352 if the bit pattern is fully preserved afterwards; otherwise, the
4353 RTL expander won't be able to apply a subsequent transformation
4354 to the underlying constructor. */
4355 if (AGGREGATE_TYPE_P (src_type) && !AGGREGATE_TYPE_P (dest_type))
4356 {
4357 if (TYPE_MODE (endtype) == TYPE_MODE (dest_type))
4358 return initializer_constant_valid_p_1 (src, endtype, cache);
4359 else
4360 return NULL_TREE;
4361 }
4362
4363 /* Allow all other kinds of view-conversion. */
4364 return initializer_constant_valid_p_1 (src, endtype, cache);
4365 }
4366
4367 CASE_CONVERT:
4368 {
4369 tree src = TREE_OPERAND (value, 0);
4370 tree src_type = TREE_TYPE (src);
4371 tree dest_type = TREE_TYPE (value);
4372
4373 /* Allow conversions between pointer types, floating-point
4374 types, and offset types. */
4375 if ((POINTER_TYPE_P (dest_type) && POINTER_TYPE_P (src_type))
4376 || (FLOAT_TYPE_P (dest_type) && FLOAT_TYPE_P (src_type))
4377 || (TREE_CODE (dest_type) == OFFSET_TYPE
4378 && TREE_CODE (src_type) == OFFSET_TYPE))
4379 return initializer_constant_valid_p_1 (src, endtype, cache);
4380
4381 /* Allow length-preserving conversions between integer types. */
4382 if (INTEGRAL_TYPE_P (dest_type) && INTEGRAL_TYPE_P (src_type)
4383 && (TYPE_PRECISION (dest_type) == TYPE_PRECISION (src_type)))
4384 return initializer_constant_valid_p_1 (src, endtype, cache);
4385
4386 /* Allow conversions between other integer types only if
4387 explicit value. */
4388 if (INTEGRAL_TYPE_P (dest_type) && INTEGRAL_TYPE_P (src_type))
4389 {
4390 tree inner = initializer_constant_valid_p_1 (src, endtype, cache);
4391 if (inner == null_pointer_node)
4392 return null_pointer_node;
4393 break;
4394 }
4395
4396 /* Allow (int) &foo provided int is as wide as a pointer. */
4397 if (INTEGRAL_TYPE_P (dest_type) && POINTER_TYPE_P (src_type)
4398 && (TYPE_PRECISION (dest_type) >= TYPE_PRECISION (src_type)))
4399 return initializer_constant_valid_p_1 (src, endtype, cache);
4400
4401 /* Likewise conversions from int to pointers, but also allow
4402 conversions from 0. */
4403 if ((POINTER_TYPE_P (dest_type)
4404 || TREE_CODE (dest_type) == OFFSET_TYPE)
4405 && INTEGRAL_TYPE_P (src_type))
4406 {
4407 if (TREE_CODE (src) == INTEGER_CST
4408 && TYPE_PRECISION (dest_type) >= TYPE_PRECISION (src_type))
4409 return null_pointer_node;
4410 if (integer_zerop (src))
4411 return null_pointer_node;
4412 else if (TYPE_PRECISION (dest_type) <= TYPE_PRECISION (src_type))
4413 return initializer_constant_valid_p_1 (src, endtype, cache);
4414 }
4415
4416 /* Allow conversions to struct or union types if the value
4417 inside is okay. */
4418 if (TREE_CODE (dest_type) == RECORD_TYPE
4419 || TREE_CODE (dest_type) == UNION_TYPE)
4420 return initializer_constant_valid_p_1 (src, endtype, cache);
4421 }
4422 break;
4423
4424 case POINTER_PLUS_EXPR:
4425 case PLUS_EXPR:
4426 /* Any valid floating-point constants will have been folded by now;
4427 with -frounding-math we hit this with addition of two constants. */
4428 if (TREE_CODE (endtype) == REAL_TYPE)
4429 return NULL_TREE;
4430 if (cache && cache[0] == value)
4431 return cache[1];
4432 if (! INTEGRAL_TYPE_P (endtype)
4433 || TYPE_PRECISION (endtype) >= TYPE_PRECISION (TREE_TYPE (value)))
4434 {
4435 tree ncache[4] = { NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE };
4436 tree valid0
4437 = initializer_constant_valid_p_1 (TREE_OPERAND (value, 0),
4438 endtype, ncache);
4439 tree valid1
4440 = initializer_constant_valid_p_1 (TREE_OPERAND (value, 1),
4441 endtype, ncache + 2);
4442 /* If either term is absolute, use the other term's relocation. */
4443 if (valid0 == null_pointer_node)
4444 ret = valid1;
4445 else if (valid1 == null_pointer_node)
4446 ret = valid0;
4447 /* Support narrowing pointer differences. */
4448 else
4449 ret = narrowing_initializer_constant_valid_p (value, endtype,
4450 ncache);
4451 }
4452 else
4453 /* Support narrowing pointer differences. */
4454 ret = narrowing_initializer_constant_valid_p (value, endtype, NULL);
4455 if (cache)
4456 {
4457 cache[0] = value;
4458 cache[1] = ret;
4459 }
4460 return ret;
4461
4462 case MINUS_EXPR:
4463 if (TREE_CODE (endtype) == REAL_TYPE)
4464 return NULL_TREE;
4465 if (cache && cache[0] == value)
4466 return cache[1];
4467 if (! INTEGRAL_TYPE_P (endtype)
4468 || TYPE_PRECISION (endtype) >= TYPE_PRECISION (TREE_TYPE (value)))
4469 {
4470 tree ncache[4] = { NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE };
4471 tree valid0
4472 = initializer_constant_valid_p_1 (TREE_OPERAND (value, 0),
4473 endtype, ncache);
4474 tree valid1
4475 = initializer_constant_valid_p_1 (TREE_OPERAND (value, 1),
4476 endtype, ncache + 2);
4477 /* Win if second argument is absolute. */
4478 if (valid1 == null_pointer_node)
4479 ret = valid0;
4480 /* Win if both arguments have the same relocation.
4481 Then the value is absolute. */
4482 else if (valid0 == valid1 && valid0 != 0)
4483 ret = null_pointer_node;
4484 /* Since GCC guarantees that string constants are unique in the
4485 generated code, a subtraction between two copies of the same
4486 constant string is absolute. */
4487 else if (valid0 && TREE_CODE (valid0) == STRING_CST
4488 && valid1 && TREE_CODE (valid1) == STRING_CST
4489 && operand_equal_p (valid0, valid1, 1))
4490 ret = null_pointer_node;
4491 /* Support narrowing differences. */
4492 else
4493 ret = narrowing_initializer_constant_valid_p (value, endtype,
4494 ncache);
4495 }
4496 else
4497 /* Support narrowing differences. */
4498 ret = narrowing_initializer_constant_valid_p (value, endtype, NULL);
4499 if (cache)
4500 {
4501 cache[0] = value;
4502 cache[1] = ret;
4503 }
4504 return ret;
4505
4506 default:
4507 break;
4508 }
4509
4510 return NULL_TREE;
4511 }
4512
4513 /* Return nonzero if VALUE is a valid constant-valued expression
4514 for use in initializing a static variable; one that can be an
4515 element of a "constant" initializer.
4516
4517 Return null_pointer_node if the value is absolute;
4518 if it is relocatable, return the variable that determines the relocation.
4519 We assume that VALUE has been folded as much as possible;
4520 therefore, we do not need to check for such things as
4521 arithmetic-combinations of integers. */
4522 tree
4523 initializer_constant_valid_p (tree value, tree endtype)
4524 {
4525 return initializer_constant_valid_p_1 (value, endtype, NULL);
4526 }
4527 \f
4528 /* Return true if VALUE is a valid constant-valued expression
4529 for use in initializing a static bit-field; one that can be
4530 an element of a "constant" initializer. */
4531
4532 bool
4533 initializer_constant_valid_for_bitfield_p (tree value)
4534 {
4535 /* For bitfields we support integer constants or possibly nested aggregates
4536 of such. */
4537 switch (TREE_CODE (value))
4538 {
4539 case CONSTRUCTOR:
4540 {
4541 unsigned HOST_WIDE_INT idx;
4542 tree elt;
4543
4544 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value), idx, elt)
4545 if (!initializer_constant_valid_for_bitfield_p (elt))
4546 return false;
4547 return true;
4548 }
4549
4550 case INTEGER_CST:
4551 case REAL_CST:
4552 return true;
4553
4554 case VIEW_CONVERT_EXPR:
4555 case NON_LVALUE_EXPR:
4556 return
4557 initializer_constant_valid_for_bitfield_p (TREE_OPERAND (value, 0));
4558
4559 default:
4560 break;
4561 }
4562
4563 return false;
4564 }
4565
4566 /* output_constructor outer state of relevance in recursive calls, typically
4567 for nested aggregate bitfields. */
4568
4569 typedef struct {
4570 unsigned int bit_offset; /* current position in ... */
4571 int byte; /* ... the outer byte buffer. */
4572 } oc_outer_state;
4573
4574 static unsigned HOST_WIDE_INT
4575 output_constructor (tree, unsigned HOST_WIDE_INT, unsigned int,
4576 oc_outer_state *);
4577
4578 /* Output assembler code for constant EXP, with no label.
4579 This includes the pseudo-op such as ".int" or ".byte", and a newline.
4580 Assumes output_addressed_constants has been done on EXP already.
4581
4582 Generate exactly SIZE bytes of assembler data, padding at the end
4583 with zeros if necessary. SIZE must always be specified.
4584
4585 SIZE is important for structure constructors,
4586 since trailing members may have been omitted from the constructor.
4587 It is also important for initialization of arrays from string constants
4588 since the full length of the string constant might not be wanted.
4589 It is also needed for initialization of unions, where the initializer's
4590 type is just one member, and that may not be as long as the union.
4591
4592 There a case in which we would fail to output exactly SIZE bytes:
4593 for a structure constructor that wants to produce more than SIZE bytes.
4594 But such constructors will never be generated for any possible input.
4595
4596 ALIGN is the alignment of the data in bits. */
4597
4598 void
4599 output_constant (tree exp, unsigned HOST_WIDE_INT size, unsigned int align)
4600 {
4601 enum tree_code code;
4602 unsigned HOST_WIDE_INT thissize;
4603
4604 if (size == 0 || flag_syntax_only)
4605 return;
4606
4607 /* See if we're trying to initialize a pointer in a non-default mode
4608 to the address of some declaration somewhere. If the target says
4609 the mode is valid for pointers, assume the target has a way of
4610 resolving it. */
4611 if (TREE_CODE (exp) == NOP_EXPR
4612 && POINTER_TYPE_P (TREE_TYPE (exp))
4613 && targetm.addr_space.valid_pointer_mode
4614 (TYPE_MODE (TREE_TYPE (exp)),
4615 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp)))))
4616 {
4617 tree saved_type = TREE_TYPE (exp);
4618
4619 /* Peel off any intermediate conversions-to-pointer for valid
4620 pointer modes. */
4621 while (TREE_CODE (exp) == NOP_EXPR
4622 && POINTER_TYPE_P (TREE_TYPE (exp))
4623 && targetm.addr_space.valid_pointer_mode
4624 (TYPE_MODE (TREE_TYPE (exp)),
4625 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp)))))
4626 exp = TREE_OPERAND (exp, 0);
4627
4628 /* If what we're left with is the address of something, we can
4629 convert the address to the final type and output it that
4630 way. */
4631 if (TREE_CODE (exp) == ADDR_EXPR)
4632 exp = build1 (ADDR_EXPR, saved_type, TREE_OPERAND (exp, 0));
4633 /* Likewise for constant ints. */
4634 else if (TREE_CODE (exp) == INTEGER_CST)
4635 exp = wide_int_to_tree (saved_type, exp);
4636
4637 }
4638
4639 /* Eliminate any conversions since we'll be outputting the underlying
4640 constant. */
4641 while (CONVERT_EXPR_P (exp)
4642 || TREE_CODE (exp) == NON_LVALUE_EXPR
4643 || TREE_CODE (exp) == VIEW_CONVERT_EXPR)
4644 {
4645 HOST_WIDE_INT type_size = int_size_in_bytes (TREE_TYPE (exp));
4646 HOST_WIDE_INT op_size = int_size_in_bytes (TREE_TYPE (TREE_OPERAND (exp, 0)));
4647
4648 /* Make sure eliminating the conversion is really a no-op, except with
4649 VIEW_CONVERT_EXPRs to allow for wild Ada unchecked conversions and
4650 union types to allow for Ada unchecked unions. */
4651 if (type_size > op_size
4652 && TREE_CODE (exp) != VIEW_CONVERT_EXPR
4653 && TREE_CODE (TREE_TYPE (exp)) != UNION_TYPE)
4654 /* Keep the conversion. */
4655 break;
4656 else
4657 exp = TREE_OPERAND (exp, 0);
4658 }
4659
4660 code = TREE_CODE (TREE_TYPE (exp));
4661 thissize = int_size_in_bytes (TREE_TYPE (exp));
4662
4663 /* Allow a constructor with no elements for any data type.
4664 This means to fill the space with zeros. */
4665 if (TREE_CODE (exp) == CONSTRUCTOR
4666 && vec_safe_is_empty (CONSTRUCTOR_ELTS (exp)))
4667 {
4668 assemble_zeros (size);
4669 return;
4670 }
4671
4672 if (TREE_CODE (exp) == FDESC_EXPR)
4673 {
4674 #ifdef ASM_OUTPUT_FDESC
4675 HOST_WIDE_INT part = tree_to_shwi (TREE_OPERAND (exp, 1));
4676 tree decl = TREE_OPERAND (exp, 0);
4677 ASM_OUTPUT_FDESC (asm_out_file, decl, part);
4678 #else
4679 gcc_unreachable ();
4680 #endif
4681 return;
4682 }
4683
4684 /* Now output the underlying data. If we've handling the padding, return.
4685 Otherwise, break and ensure SIZE is the size written. */
4686 switch (code)
4687 {
4688 case BOOLEAN_TYPE:
4689 case INTEGER_TYPE:
4690 case ENUMERAL_TYPE:
4691 case POINTER_TYPE:
4692 case REFERENCE_TYPE:
4693 case OFFSET_TYPE:
4694 case FIXED_POINT_TYPE:
4695 case POINTER_BOUNDS_TYPE:
4696 case NULLPTR_TYPE:
4697 if (! assemble_integer (expand_expr (exp, NULL_RTX, VOIDmode,
4698 EXPAND_INITIALIZER),
4699 MIN (size, thissize), align, 0))
4700 error ("initializer for integer/fixed-point value is too complicated");
4701 break;
4702
4703 case REAL_TYPE:
4704 if (TREE_CODE (exp) != REAL_CST)
4705 error ("initializer for floating value is not a floating constant");
4706 else
4707 assemble_real (TREE_REAL_CST (exp), TYPE_MODE (TREE_TYPE (exp)), align);
4708 break;
4709
4710 case COMPLEX_TYPE:
4711 output_constant (TREE_REALPART (exp), thissize / 2, align);
4712 output_constant (TREE_IMAGPART (exp), thissize / 2,
4713 min_align (align, BITS_PER_UNIT * (thissize / 2)));
4714 break;
4715
4716 case ARRAY_TYPE:
4717 case VECTOR_TYPE:
4718 switch (TREE_CODE (exp))
4719 {
4720 case CONSTRUCTOR:
4721 output_constructor (exp, size, align, NULL);
4722 return;
4723 case STRING_CST:
4724 thissize
4725 = MIN ((unsigned HOST_WIDE_INT)TREE_STRING_LENGTH (exp), size);
4726 assemble_string (TREE_STRING_POINTER (exp), thissize);
4727 break;
4728 case VECTOR_CST:
4729 {
4730 enum machine_mode inner = TYPE_MODE (TREE_TYPE (TREE_TYPE (exp)));
4731 unsigned int nalign = MIN (align, GET_MODE_ALIGNMENT (inner));
4732 int elt_size = GET_MODE_SIZE (inner);
4733 output_constant (VECTOR_CST_ELT (exp, 0), elt_size, align);
4734 thissize = elt_size;
4735 for (unsigned int i = 1; i < VECTOR_CST_NELTS (exp); i++)
4736 {
4737 output_constant (VECTOR_CST_ELT (exp, i), elt_size, nalign);
4738 thissize += elt_size;
4739 }
4740 break;
4741 }
4742 default:
4743 gcc_unreachable ();
4744 }
4745 break;
4746
4747 case RECORD_TYPE:
4748 case UNION_TYPE:
4749 gcc_assert (TREE_CODE (exp) == CONSTRUCTOR);
4750 output_constructor (exp, size, align, NULL);
4751 return;
4752
4753 case ERROR_MARK:
4754 return;
4755
4756 default:
4757 gcc_unreachable ();
4758 }
4759
4760 if (size > thissize)
4761 assemble_zeros (size - thissize);
4762 }
4763
4764 \f
4765 /* Subroutine of output_constructor, used for computing the size of
4766 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
4767 type with an unspecified upper bound. */
4768
4769 static unsigned HOST_WIDE_INT
4770 array_size_for_constructor (tree val)
4771 {
4772 tree max_index;
4773 unsigned HOST_WIDE_INT cnt;
4774 tree index, value, tmp;
4775 offset_int i;
4776
4777 /* This code used to attempt to handle string constants that are not
4778 arrays of single-bytes, but nothing else does, so there's no point in
4779 doing it here. */
4780 if (TREE_CODE (val) == STRING_CST)
4781 return TREE_STRING_LENGTH (val);
4782
4783 max_index = NULL_TREE;
4784 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (val), cnt, index, value)
4785 {
4786 if (TREE_CODE (index) == RANGE_EXPR)
4787 index = TREE_OPERAND (index, 1);
4788 if (max_index == NULL_TREE || tree_int_cst_lt (max_index, index))
4789 max_index = index;
4790 }
4791
4792 if (max_index == NULL_TREE)
4793 return 0;
4794
4795 /* Compute the total number of array elements. */
4796 tmp = TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val)));
4797 i = wi::to_offset (max_index) - wi::to_offset (tmp) + 1;
4798
4799 /* Multiply by the array element unit size to find number of bytes. */
4800 i *= wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val))));
4801
4802 gcc_assert (wi::fits_uhwi_p (i));
4803 return i.to_uhwi ();
4804 }
4805
4806 /* Other datastructures + helpers for output_constructor. */
4807
4808 /* output_constructor local state to support interaction with helpers. */
4809
4810 typedef struct {
4811
4812 /* Received arguments. */
4813 tree exp; /* Constructor expression. */
4814 tree type; /* Type of constructor expression. */
4815 unsigned HOST_WIDE_INT size; /* # bytes to output - pad if necessary. */
4816 unsigned int align; /* Known initial alignment. */
4817 tree min_index; /* Lower bound if specified for an array. */
4818
4819 /* Output processing state. */
4820 HOST_WIDE_INT total_bytes; /* # bytes output so far / current position. */
4821 int byte; /* Part of a bitfield byte yet to be output. */
4822 int last_relative_index; /* Implicit or explicit index of the last
4823 array element output within a bitfield. */
4824 bool byte_buffer_in_use; /* Whether BYTE is in use. */
4825
4826 /* Current element. */
4827 tree field; /* Current field decl in a record. */
4828 tree val; /* Current element value. */
4829 tree index; /* Current element index. */
4830
4831 } oc_local_state;
4832
4833 /* Helper for output_constructor. From the current LOCAL state, output a
4834 RANGE_EXPR element. */
4835
4836 static void
4837 output_constructor_array_range (oc_local_state *local)
4838 {
4839 unsigned HOST_WIDE_INT fieldsize
4840 = int_size_in_bytes (TREE_TYPE (local->type));
4841
4842 HOST_WIDE_INT lo_index
4843 = tree_to_shwi (TREE_OPERAND (local->index, 0));
4844 HOST_WIDE_INT hi_index
4845 = tree_to_shwi (TREE_OPERAND (local->index, 1));
4846 HOST_WIDE_INT index;
4847
4848 unsigned int align2
4849 = min_align (local->align, fieldsize * BITS_PER_UNIT);
4850
4851 for (index = lo_index; index <= hi_index; index++)
4852 {
4853 /* Output the element's initial value. */
4854 if (local->val == NULL_TREE)
4855 assemble_zeros (fieldsize);
4856 else
4857 output_constant (local->val, fieldsize, align2);
4858
4859 /* Count its size. */
4860 local->total_bytes += fieldsize;
4861 }
4862 }
4863
4864 /* Helper for output_constructor. From the current LOCAL state, output a
4865 field element that is not true bitfield or part of an outer one. */
4866
4867 static void
4868 output_constructor_regular_field (oc_local_state *local)
4869 {
4870 /* Field size and position. Since this structure is static, we know the
4871 positions are constant. */
4872 unsigned HOST_WIDE_INT fieldsize;
4873 HOST_WIDE_INT fieldpos;
4874
4875 unsigned int align2;
4876
4877 if (local->index != NULL_TREE)
4878 {
4879 /* Perform the index calculation in modulo arithmetic but
4880 sign-extend the result because Ada has negative DECL_FIELD_OFFSETs
4881 but we are using an unsigned sizetype. */
4882 unsigned prec = TYPE_PRECISION (sizetype);
4883 offset_int idx = wi::sext (wi::to_offset (local->index)
4884 - wi::to_offset (local->min_index), prec);
4885 fieldpos = (idx * wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (local->val))))
4886 .to_shwi ();
4887 }
4888 else if (local->field != NULL_TREE)
4889 fieldpos = int_byte_position (local->field);
4890 else
4891 fieldpos = 0;
4892
4893 /* Output any buffered-up bit-fields preceding this element. */
4894 if (local->byte_buffer_in_use)
4895 {
4896 assemble_integer (GEN_INT (local->byte), 1, BITS_PER_UNIT, 1);
4897 local->total_bytes++;
4898 local->byte_buffer_in_use = false;
4899 }
4900
4901 /* Advance to offset of this element.
4902 Note no alignment needed in an array, since that is guaranteed
4903 if each element has the proper size. */
4904 if ((local->field != NULL_TREE || local->index != NULL_TREE)
4905 && fieldpos != local->total_bytes)
4906 {
4907 gcc_assert (fieldpos >= local->total_bytes);
4908 assemble_zeros (fieldpos - local->total_bytes);
4909 local->total_bytes = fieldpos;
4910 }
4911
4912 /* Find the alignment of this element. */
4913 align2 = min_align (local->align, BITS_PER_UNIT * fieldpos);
4914
4915 /* Determine size this element should occupy. */
4916 if (local->field)
4917 {
4918 fieldsize = 0;
4919
4920 /* If this is an array with an unspecified upper bound,
4921 the initializer determines the size. */
4922 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4923 but we cannot do this until the deprecated support for
4924 initializing zero-length array members is removed. */
4925 if (TREE_CODE (TREE_TYPE (local->field)) == ARRAY_TYPE
4926 && TYPE_DOMAIN (TREE_TYPE (local->field))
4927 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (local->field))))
4928 {
4929 fieldsize = array_size_for_constructor (local->val);
4930 /* Given a non-empty initialization, this field had
4931 better be last. */
4932 gcc_assert (!fieldsize || !DECL_CHAIN (local->field));
4933 }
4934 else
4935 fieldsize = tree_to_uhwi (DECL_SIZE_UNIT (local->field));
4936 }
4937 else
4938 fieldsize = int_size_in_bytes (TREE_TYPE (local->type));
4939
4940 /* Output the element's initial value. */
4941 if (local->val == NULL_TREE)
4942 assemble_zeros (fieldsize);
4943 else
4944 output_constant (local->val, fieldsize, align2);
4945
4946 /* Count its size. */
4947 local->total_bytes += fieldsize;
4948 }
4949
4950 /* Helper for output_constructor. From the LOCAL state, output an element
4951 that is a true bitfield or part of an outer one. BIT_OFFSET is the offset
4952 from the start of a possibly ongoing outer byte buffer. */
4953
4954 static void
4955 output_constructor_bitfield (oc_local_state *local, unsigned int bit_offset)
4956 {
4957 /* Bit size of this element. */
4958 HOST_WIDE_INT ebitsize
4959 = (local->field
4960 ? tree_to_uhwi (DECL_SIZE (local->field))
4961 : tree_to_uhwi (TYPE_SIZE (TREE_TYPE (local->type))));
4962
4963 /* Relative index of this element if this is an array component. */
4964 HOST_WIDE_INT relative_index
4965 = (!local->field
4966 ? (local->index
4967 ? (tree_to_shwi (local->index)
4968 - tree_to_shwi (local->min_index))
4969 : local->last_relative_index + 1)
4970 : 0);
4971
4972 /* Bit position of this element from the start of the containing
4973 constructor. */
4974 HOST_WIDE_INT constructor_relative_ebitpos
4975 = (local->field
4976 ? int_bit_position (local->field)
4977 : ebitsize * relative_index);
4978
4979 /* Bit position of this element from the start of a possibly ongoing
4980 outer byte buffer. */
4981 HOST_WIDE_INT byte_relative_ebitpos
4982 = bit_offset + constructor_relative_ebitpos;
4983
4984 /* From the start of a possibly ongoing outer byte buffer, offsets to
4985 the first bit of this element and to the first bit past the end of
4986 this element. */
4987 HOST_WIDE_INT next_offset = byte_relative_ebitpos;
4988 HOST_WIDE_INT end_offset = byte_relative_ebitpos + ebitsize;
4989
4990 local->last_relative_index = relative_index;
4991
4992 if (local->val == NULL_TREE)
4993 local->val = integer_zero_node;
4994
4995 while (TREE_CODE (local->val) == VIEW_CONVERT_EXPR
4996 || TREE_CODE (local->val) == NON_LVALUE_EXPR)
4997 local->val = TREE_OPERAND (local->val, 0);
4998
4999 if (TREE_CODE (local->val) != INTEGER_CST
5000 && TREE_CODE (local->val) != CONSTRUCTOR)
5001 {
5002 error ("invalid initial value for member %qE", DECL_NAME (local->field));
5003 return;
5004 }
5005
5006 /* If this field does not start in this (or next) byte, skip some bytes. */
5007 if (next_offset / BITS_PER_UNIT != local->total_bytes)
5008 {
5009 /* Output remnant of any bit field in previous bytes. */
5010 if (local->byte_buffer_in_use)
5011 {
5012 assemble_integer (GEN_INT (local->byte), 1, BITS_PER_UNIT, 1);
5013 local->total_bytes++;
5014 local->byte_buffer_in_use = false;
5015 }
5016
5017 /* If still not at proper byte, advance to there. */
5018 if (next_offset / BITS_PER_UNIT != local->total_bytes)
5019 {
5020 gcc_assert (next_offset / BITS_PER_UNIT >= local->total_bytes);
5021 assemble_zeros (next_offset / BITS_PER_UNIT - local->total_bytes);
5022 local->total_bytes = next_offset / BITS_PER_UNIT;
5023 }
5024 }
5025
5026 /* Set up the buffer if necessary. */
5027 if (!local->byte_buffer_in_use)
5028 {
5029 local->byte = 0;
5030 if (ebitsize > 0)
5031 local->byte_buffer_in_use = true;
5032 }
5033
5034 /* If this is nested constructor, recurse passing the bit offset and the
5035 pending data, then retrieve the new pending data afterwards. */
5036 if (TREE_CODE (local->val) == CONSTRUCTOR)
5037 {
5038 oc_outer_state temp_state;
5039 temp_state.bit_offset = next_offset % BITS_PER_UNIT;
5040 temp_state.byte = local->byte;
5041 local->total_bytes
5042 += output_constructor (local->val, 0, 0, &temp_state);
5043 local->byte = temp_state.byte;
5044 return;
5045 }
5046
5047 /* Otherwise, we must split the element into pieces that fall within
5048 separate bytes, and combine each byte with previous or following
5049 bit-fields. */
5050 while (next_offset < end_offset)
5051 {
5052 int this_time;
5053 int shift;
5054 HOST_WIDE_INT value;
5055 HOST_WIDE_INT next_byte = next_offset / BITS_PER_UNIT;
5056 HOST_WIDE_INT next_bit = next_offset % BITS_PER_UNIT;
5057
5058 /* Advance from byte to byte within this element when necessary. */
5059 while (next_byte != local->total_bytes)
5060 {
5061 assemble_integer (GEN_INT (local->byte), 1, BITS_PER_UNIT, 1);
5062 local->total_bytes++;
5063 local->byte = 0;
5064 }
5065
5066 /* Number of bits we can process at once (all part of the same byte). */
5067 this_time = MIN (end_offset - next_offset, BITS_PER_UNIT - next_bit);
5068 if (BYTES_BIG_ENDIAN)
5069 {
5070 /* On big-endian machine, take the most significant bits
5071 first (of the bits that are significant)
5072 and put them into bytes from the most significant end. */
5073 shift = end_offset - next_offset - this_time;
5074
5075 /* Don't try to take a bunch of bits that cross
5076 the word boundary in the INTEGER_CST. We can
5077 only select bits from the LOW or HIGH part
5078 not from both. */
5079 if ((shift / HOST_BITS_PER_WIDE_INT)
5080 != ((shift + this_time) / HOST_BITS_PER_WIDE_INT))
5081 this_time = (shift + this_time) & (HOST_BITS_PER_WIDE_INT - 1);
5082
5083 /* Now get the bits from the appropriate constant word. */
5084 value = TREE_INT_CST_ELT (local->val, shift / HOST_BITS_PER_WIDE_INT);
5085 shift = shift & (HOST_BITS_PER_WIDE_INT - 1);
5086
5087 /* Get the result. This works only when:
5088 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
5089 local->byte |= (((value >> shift)
5090 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
5091 << (BITS_PER_UNIT - this_time - next_bit));
5092 }
5093 else
5094 {
5095 /* On little-endian machines,
5096 take first the least significant bits of the value
5097 and pack them starting at the least significant
5098 bits of the bytes. */
5099 shift = next_offset - byte_relative_ebitpos;
5100
5101 /* Don't try to take a bunch of bits that cross
5102 the word boundary in the INTEGER_CST. We can
5103 only select bits from the LOW or HIGH part
5104 not from both. */
5105 if ((shift / HOST_BITS_PER_WIDE_INT)
5106 != ((shift + this_time) / HOST_BITS_PER_WIDE_INT))
5107 this_time = (HOST_BITS_PER_WIDE_INT - shift);
5108
5109 /* Now get the bits from the appropriate constant word. */
5110 value = TREE_INT_CST_ELT (local->val, shift / HOST_BITS_PER_WIDE_INT);
5111 shift = shift & (HOST_BITS_PER_WIDE_INT - 1);
5112
5113 /* Get the result. This works only when:
5114 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
5115 local->byte |= (((value >> shift)
5116 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
5117 << next_bit);
5118 }
5119
5120 next_offset += this_time;
5121 local->byte_buffer_in_use = true;
5122 }
5123 }
5124
5125 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
5126 Generate at least SIZE bytes, padding if necessary. OUTER designates the
5127 caller output state of relevance in recursive invocations. */
5128
5129 static unsigned HOST_WIDE_INT
5130 output_constructor (tree exp, unsigned HOST_WIDE_INT size,
5131 unsigned int align, oc_outer_state *outer)
5132 {
5133 unsigned HOST_WIDE_INT cnt;
5134 constructor_elt *ce;
5135
5136 oc_local_state local;
5137
5138 /* Setup our local state to communicate with helpers. */
5139 local.exp = exp;
5140 local.type = TREE_TYPE (exp);
5141 local.size = size;
5142 local.align = align;
5143 if (TREE_CODE (local.type) == ARRAY_TYPE && TYPE_DOMAIN (local.type))
5144 local.min_index = TYPE_MIN_VALUE (TYPE_DOMAIN (local.type));
5145 else
5146 local.min_index = NULL_TREE;
5147
5148 local.total_bytes = 0;
5149 local.byte_buffer_in_use = outer != NULL;
5150 local.byte = outer ? outer->byte : 0;
5151 local.last_relative_index = -1;
5152
5153 gcc_assert (HOST_BITS_PER_WIDE_INT >= BITS_PER_UNIT);
5154
5155 /* As CE goes through the elements of the constant, FIELD goes through the
5156 structure fields if the constant is a structure. If the constant is a
5157 union, we override this by getting the field from the TREE_LIST element.
5158 But the constant could also be an array. Then FIELD is zero.
5159
5160 There is always a maximum of one element in the chain LINK for unions
5161 (even if the initializer in a source program incorrectly contains
5162 more one). */
5163
5164 if (TREE_CODE (local.type) == RECORD_TYPE)
5165 local.field = TYPE_FIELDS (local.type);
5166 else
5167 local.field = NULL_TREE;
5168
5169 for (cnt = 0;
5170 vec_safe_iterate (CONSTRUCTOR_ELTS (exp), cnt, &ce);
5171 cnt++, local.field = local.field ? DECL_CHAIN (local.field) : 0)
5172 {
5173 local.val = ce->value;
5174 local.index = NULL_TREE;
5175
5176 /* The element in a union constructor specifies the proper field
5177 or index. */
5178 if (RECORD_OR_UNION_TYPE_P (local.type) && ce->index != NULL_TREE)
5179 local.field = ce->index;
5180
5181 else if (TREE_CODE (local.type) == ARRAY_TYPE)
5182 local.index = ce->index;
5183
5184 if (local.field && flag_verbose_asm)
5185 fprintf (asm_out_file, "%s %s:\n",
5186 ASM_COMMENT_START,
5187 DECL_NAME (local.field)
5188 ? IDENTIFIER_POINTER (DECL_NAME (local.field))
5189 : "<anonymous>");
5190
5191 /* Eliminate the marker that makes a cast not be an lvalue. */
5192 if (local.val != NULL_TREE)
5193 STRIP_NOPS (local.val);
5194
5195 /* Output the current element, using the appropriate helper ... */
5196
5197 /* For an array slice not part of an outer bitfield. */
5198 if (!outer
5199 && local.index != NULL_TREE
5200 && TREE_CODE (local.index) == RANGE_EXPR)
5201 output_constructor_array_range (&local);
5202
5203 /* For a field that is neither a true bitfield nor part of an outer one,
5204 known to be at least byte aligned and multiple-of-bytes long. */
5205 else if (!outer
5206 && (local.field == NULL_TREE
5207 || !CONSTRUCTOR_BITFIELD_P (local.field)))
5208 output_constructor_regular_field (&local);
5209
5210 /* For a true bitfield or part of an outer one. Only INTEGER_CSTs are
5211 supported for scalar fields, so we may need to convert first. */
5212 else
5213 {
5214 if (TREE_CODE (local.val) == REAL_CST)
5215 local.val
5216 = fold_unary (VIEW_CONVERT_EXPR,
5217 build_nonstandard_integer_type
5218 (TYPE_PRECISION (TREE_TYPE (local.val)), 0),
5219 local.val);
5220 output_constructor_bitfield (&local, outer ? outer->bit_offset : 0);
5221 }
5222 }
5223
5224 /* If we are not at toplevel, save the pending data for our caller.
5225 Otherwise output the pending data and padding zeros as needed. */
5226 if (outer)
5227 outer->byte = local.byte;
5228 else
5229 {
5230 if (local.byte_buffer_in_use)
5231 {
5232 assemble_integer (GEN_INT (local.byte), 1, BITS_PER_UNIT, 1);
5233 local.total_bytes++;
5234 }
5235
5236 if ((unsigned HOST_WIDE_INT)local.total_bytes < local.size)
5237 {
5238 assemble_zeros (local.size - local.total_bytes);
5239 local.total_bytes = local.size;
5240 }
5241 }
5242
5243 return local.total_bytes;
5244 }
5245
5246 /* Mark DECL as weak. */
5247
5248 static void
5249 mark_weak (tree decl)
5250 {
5251 DECL_WEAK (decl) = 1;
5252
5253 if (DECL_RTL_SET_P (decl)
5254 && MEM_P (DECL_RTL (decl))
5255 && XEXP (DECL_RTL (decl), 0)
5256 && GET_CODE (XEXP (DECL_RTL (decl), 0)) == SYMBOL_REF)
5257 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl), 0)) = 1;
5258 }
5259
5260 /* Merge weak status between NEWDECL and OLDDECL. */
5261
5262 void
5263 merge_weak (tree newdecl, tree olddecl)
5264 {
5265 if (DECL_WEAK (newdecl) == DECL_WEAK (olddecl))
5266 {
5267 if (DECL_WEAK (newdecl) && TARGET_SUPPORTS_WEAK)
5268 {
5269 tree *pwd;
5270 /* We put the NEWDECL on the weak_decls list at some point
5271 and OLDDECL as well. Keep just OLDDECL on the list. */
5272 for (pwd = &weak_decls; *pwd; pwd = &TREE_CHAIN (*pwd))
5273 if (TREE_VALUE (*pwd) == newdecl)
5274 {
5275 *pwd = TREE_CHAIN (*pwd);
5276 break;
5277 }
5278 }
5279 return;
5280 }
5281
5282 if (DECL_WEAK (newdecl))
5283 {
5284 tree wd;
5285
5286 /* NEWDECL is weak, but OLDDECL is not. */
5287
5288 /* If we already output the OLDDECL, we're in trouble; we can't
5289 go back and make it weak. This should never happen in
5290 unit-at-a-time compilation. */
5291 gcc_assert (!TREE_ASM_WRITTEN (olddecl));
5292
5293 /* If we've already generated rtl referencing OLDDECL, we may
5294 have done so in a way that will not function properly with
5295 a weak symbol. Again in unit-at-a-time this should be
5296 impossible. */
5297 gcc_assert (!TREE_USED (olddecl)
5298 || !TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl)));
5299
5300 if (TARGET_SUPPORTS_WEAK)
5301 {
5302 /* We put the NEWDECL on the weak_decls list at some point.
5303 Replace it with the OLDDECL. */
5304 for (wd = weak_decls; wd; wd = TREE_CHAIN (wd))
5305 if (TREE_VALUE (wd) == newdecl)
5306 {
5307 TREE_VALUE (wd) = olddecl;
5308 break;
5309 }
5310 /* We may not find the entry on the list. If NEWDECL is a
5311 weak alias, then we will have already called
5312 globalize_decl to remove the entry; in that case, we do
5313 not need to do anything. */
5314 }
5315
5316 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
5317 mark_weak (olddecl);
5318 }
5319 else
5320 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
5321 weak. Just update NEWDECL to indicate that it's weak too. */
5322 mark_weak (newdecl);
5323 }
5324
5325 /* Declare DECL to be a weak symbol. */
5326
5327 void
5328 declare_weak (tree decl)
5329 {
5330 gcc_assert (TREE_CODE (decl) != FUNCTION_DECL || !TREE_ASM_WRITTEN (decl));
5331 if (! TREE_PUBLIC (decl))
5332 error ("weak declaration of %q+D must be public", decl);
5333 else if (!TARGET_SUPPORTS_WEAK)
5334 warning (0, "weak declaration of %q+D not supported", decl);
5335
5336 mark_weak (decl);
5337 if (!lookup_attribute ("weak", DECL_ATTRIBUTES (decl)))
5338 DECL_ATTRIBUTES (decl)
5339 = tree_cons (get_identifier ("weak"), NULL, DECL_ATTRIBUTES (decl));
5340 }
5341
5342 static void
5343 weak_finish_1 (tree decl)
5344 {
5345 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
5346 const char *const name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5347 #endif
5348
5349 if (! TREE_USED (decl))
5350 return;
5351
5352 #ifdef ASM_WEAKEN_DECL
5353 ASM_WEAKEN_DECL (asm_out_file, decl, name, NULL);
5354 #else
5355 #ifdef ASM_WEAKEN_LABEL
5356 ASM_WEAKEN_LABEL (asm_out_file, name);
5357 #else
5358 #ifdef ASM_OUTPUT_WEAK_ALIAS
5359 {
5360 static bool warn_once = 0;
5361 if (! warn_once)
5362 {
5363 warning (0, "only weak aliases are supported in this configuration");
5364 warn_once = 1;
5365 }
5366 return;
5367 }
5368 #endif
5369 #endif
5370 #endif
5371 }
5372
5373 /* Fiven an assembly name, find the decl it is associated with. */
5374 static tree
5375 find_decl (tree target)
5376 {
5377 symtab_node *node = symtab_node_for_asm (target);
5378 if (node)
5379 return node->decl;
5380 return NULL_TREE;
5381 }
5382
5383 /* This TREE_LIST contains weakref targets. */
5384
5385 static GTY(()) tree weakref_targets;
5386
5387 /* Emit any pending weak declarations. */
5388
5389 void
5390 weak_finish (void)
5391 {
5392 tree t;
5393
5394 for (t = weakref_targets; t; t = TREE_CHAIN (t))
5395 {
5396 tree alias_decl = TREE_PURPOSE (t);
5397 tree target = ultimate_transparent_alias_target (&TREE_VALUE (t));
5398
5399 if (! TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (alias_decl)))
5400 /* Remove alias_decl from the weak list, but leave entries for
5401 the target alone. */
5402 target = NULL_TREE;
5403 #ifndef ASM_OUTPUT_WEAKREF
5404 else if (! TREE_SYMBOL_REFERENCED (target))
5405 {
5406 /* Use ASM_WEAKEN_LABEL only if ASM_WEAKEN_DECL is not
5407 defined, otherwise we and weak_finish_1 would use
5408 different macros. */
5409 # if defined ASM_WEAKEN_LABEL && ! defined ASM_WEAKEN_DECL
5410 ASM_WEAKEN_LABEL (asm_out_file, IDENTIFIER_POINTER (target));
5411 # else
5412 tree decl = find_decl (target);
5413
5414 if (! decl)
5415 {
5416 decl = build_decl (DECL_SOURCE_LOCATION (alias_decl),
5417 TREE_CODE (alias_decl), target,
5418 TREE_TYPE (alias_decl));
5419
5420 DECL_EXTERNAL (decl) = 1;
5421 TREE_PUBLIC (decl) = 1;
5422 DECL_ARTIFICIAL (decl) = 1;
5423 TREE_NOTHROW (decl) = TREE_NOTHROW (alias_decl);
5424 TREE_USED (decl) = 1;
5425 }
5426
5427 weak_finish_1 (decl);
5428 # endif
5429 }
5430 #endif
5431
5432 {
5433 tree *p;
5434 tree t2;
5435
5436 /* Remove the alias and the target from the pending weak list
5437 so that we do not emit any .weak directives for the former,
5438 nor multiple .weak directives for the latter. */
5439 for (p = &weak_decls; (t2 = *p) ; )
5440 {
5441 if (TREE_VALUE (t2) == alias_decl
5442 || target == DECL_ASSEMBLER_NAME (TREE_VALUE (t2)))
5443 *p = TREE_CHAIN (t2);
5444 else
5445 p = &TREE_CHAIN (t2);
5446 }
5447
5448 /* Remove other weakrefs to the same target, to speed things up. */
5449 for (p = &TREE_CHAIN (t); (t2 = *p) ; )
5450 {
5451 if (target == ultimate_transparent_alias_target (&TREE_VALUE (t2)))
5452 *p = TREE_CHAIN (t2);
5453 else
5454 p = &TREE_CHAIN (t2);
5455 }
5456 }
5457 }
5458
5459 for (t = weak_decls; t; t = TREE_CHAIN (t))
5460 {
5461 tree decl = TREE_VALUE (t);
5462
5463 weak_finish_1 (decl);
5464 }
5465 }
5466
5467 /* Emit the assembly bits to indicate that DECL is globally visible. */
5468
5469 static void
5470 globalize_decl (tree decl)
5471 {
5472
5473 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
5474 if (DECL_WEAK (decl))
5475 {
5476 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
5477 tree *p, t;
5478
5479 #ifdef ASM_WEAKEN_DECL
5480 ASM_WEAKEN_DECL (asm_out_file, decl, name, 0);
5481 #else
5482 ASM_WEAKEN_LABEL (asm_out_file, name);
5483 #endif
5484
5485 /* Remove this function from the pending weak list so that
5486 we do not emit multiple .weak directives for it. */
5487 for (p = &weak_decls; (t = *p) ; )
5488 {
5489 if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
5490 *p = TREE_CHAIN (t);
5491 else
5492 p = &TREE_CHAIN (t);
5493 }
5494
5495 /* Remove weakrefs to the same target from the pending weakref
5496 list, for the same reason. */
5497 for (p = &weakref_targets; (t = *p) ; )
5498 {
5499 if (DECL_ASSEMBLER_NAME (decl)
5500 == ultimate_transparent_alias_target (&TREE_VALUE (t)))
5501 *p = TREE_CHAIN (t);
5502 else
5503 p = &TREE_CHAIN (t);
5504 }
5505
5506 return;
5507 }
5508 #endif
5509
5510 targetm.asm_out.globalize_decl_name (asm_out_file, decl);
5511 }
5512
5513 vec<alias_pair, va_gc> *alias_pairs;
5514
5515 /* Output the assembler code for a define (equate) using ASM_OUTPUT_DEF
5516 or ASM_OUTPUT_DEF_FROM_DECLS. The function defines the symbol whose
5517 tree node is DECL to have the value of the tree node TARGET. */
5518
5519 void
5520 do_assemble_alias (tree decl, tree target)
5521 {
5522 /* Emulated TLS had better not get this var. */
5523 gcc_assert (!(!targetm.have_tls
5524 && TREE_CODE (decl) == VAR_DECL
5525 && DECL_THREAD_LOCAL_P (decl)));
5526
5527 if (TREE_ASM_WRITTEN (decl))
5528 return;
5529
5530 /* We must force creation of DECL_RTL for debug info generation, even though
5531 we don't use it here. */
5532 make_decl_rtl (decl);
5533
5534 TREE_ASM_WRITTEN (decl) = 1;
5535 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl)) = 1;
5536
5537 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl)))
5538 {
5539 ultimate_transparent_alias_target (&target);
5540
5541 if (!TREE_SYMBOL_REFERENCED (target))
5542 weakref_targets = tree_cons (decl, target, weakref_targets);
5543
5544 #ifdef ASM_OUTPUT_WEAKREF
5545 ASM_OUTPUT_WEAKREF (asm_out_file, decl,
5546 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)),
5547 IDENTIFIER_POINTER (target));
5548 #else
5549 if (!TARGET_SUPPORTS_WEAK)
5550 {
5551 error_at (DECL_SOURCE_LOCATION (decl),
5552 "weakref is not supported in this configuration");
5553 return;
5554 }
5555 #endif
5556 return;
5557 }
5558
5559 #ifdef ASM_OUTPUT_DEF
5560 /* Make name accessible from other files, if appropriate. */
5561
5562 if (TREE_PUBLIC (decl))
5563 {
5564 globalize_decl (decl);
5565 maybe_assemble_visibility (decl);
5566 }
5567 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl)))
5568 {
5569 #if defined (ASM_OUTPUT_TYPE_DIRECTIVE)
5570 if (targetm.has_ifunc_p ())
5571 ASM_OUTPUT_TYPE_DIRECTIVE
5572 (asm_out_file, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)),
5573 IFUNC_ASM_TYPE);
5574 else
5575 #endif
5576 error_at (DECL_SOURCE_LOCATION (decl),
5577 "ifunc is not supported on this target");
5578 }
5579
5580 # ifdef ASM_OUTPUT_DEF_FROM_DECLS
5581 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file, decl, target);
5582 # else
5583 ASM_OUTPUT_DEF (asm_out_file,
5584 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)),
5585 IDENTIFIER_POINTER (target));
5586 # endif
5587 #elif defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
5588 {
5589 const char *name;
5590 tree *p, t;
5591
5592 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5593 # ifdef ASM_WEAKEN_DECL
5594 ASM_WEAKEN_DECL (asm_out_file, decl, name, IDENTIFIER_POINTER (target));
5595 # else
5596 ASM_OUTPUT_WEAK_ALIAS (asm_out_file, name, IDENTIFIER_POINTER (target));
5597 # endif
5598 /* Remove this function from the pending weak list so that
5599 we do not emit multiple .weak directives for it. */
5600 for (p = &weak_decls; (t = *p) ; )
5601 if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
5602 *p = TREE_CHAIN (t);
5603 else
5604 p = &TREE_CHAIN (t);
5605
5606 /* Remove weakrefs to the same target from the pending weakref
5607 list, for the same reason. */
5608 for (p = &weakref_targets; (t = *p) ; )
5609 {
5610 if (DECL_ASSEMBLER_NAME (decl)
5611 == ultimate_transparent_alias_target (&TREE_VALUE (t)))
5612 *p = TREE_CHAIN (t);
5613 else
5614 p = &TREE_CHAIN (t);
5615 }
5616 }
5617 #endif
5618 }
5619
5620 /* Emit an assembler directive to make the symbol for DECL an alias to
5621 the symbol for TARGET. */
5622
5623 void
5624 assemble_alias (tree decl, tree target)
5625 {
5626 tree target_decl;
5627
5628 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl)))
5629 {
5630 tree alias = DECL_ASSEMBLER_NAME (decl);
5631
5632 ultimate_transparent_alias_target (&target);
5633
5634 if (alias == target)
5635 error ("weakref %q+D ultimately targets itself", decl);
5636 if (TREE_PUBLIC (decl))
5637 error ("weakref %q+D must have static linkage", decl);
5638 }
5639 else
5640 {
5641 #if !defined (ASM_OUTPUT_DEF)
5642 # if !defined(ASM_OUTPUT_WEAK_ALIAS) && !defined (ASM_WEAKEN_DECL)
5643 error_at (DECL_SOURCE_LOCATION (decl),
5644 "alias definitions not supported in this configuration");
5645 return;
5646 # else
5647 if (!DECL_WEAK (decl))
5648 {
5649 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl)))
5650 error_at (DECL_SOURCE_LOCATION (decl),
5651 "ifunc is not supported in this configuration");
5652 else
5653 error_at (DECL_SOURCE_LOCATION (decl),
5654 "only weak aliases are supported in this configuration");
5655 return;
5656 }
5657 # endif
5658 #endif
5659 }
5660 TREE_USED (decl) = 1;
5661
5662 /* Allow aliases to aliases. */
5663 if (TREE_CODE (decl) == FUNCTION_DECL)
5664 cgraph_get_create_node (decl)->alias = true;
5665 else
5666 varpool_node_for_decl (decl)->alias = true;
5667
5668 /* If the target has already been emitted, we don't have to queue the
5669 alias. This saves a tad of memory. */
5670 if (cgraph_global_info_ready)
5671 target_decl = find_decl (target);
5672 else
5673 target_decl= NULL;
5674 if ((target_decl && TREE_ASM_WRITTEN (target_decl))
5675 || cgraph_state >= CGRAPH_STATE_EXPANSION)
5676 do_assemble_alias (decl, target);
5677 else
5678 {
5679 alias_pair p = {decl, target};
5680 vec_safe_push (alias_pairs, p);
5681 }
5682 }
5683
5684 /* Record and output a table of translations from original function
5685 to its transaction aware clone. Note that tm_pure functions are
5686 considered to be their own clone. */
5687
5688 static GTY((if_marked ("tree_map_marked_p"), param_is (struct tree_map)))
5689 htab_t tm_clone_hash;
5690
5691 void
5692 record_tm_clone_pair (tree o, tree n)
5693 {
5694 struct tree_map **slot, *h;
5695
5696 if (tm_clone_hash == NULL)
5697 tm_clone_hash = htab_create_ggc (32, tree_map_hash, tree_map_eq, 0);
5698
5699 h = ggc_alloc_tree_map ();
5700 h->hash = htab_hash_pointer (o);
5701 h->base.from = o;
5702 h->to = n;
5703
5704 slot = (struct tree_map **)
5705 htab_find_slot_with_hash (tm_clone_hash, h, h->hash, INSERT);
5706 *slot = h;
5707 }
5708
5709 tree
5710 get_tm_clone_pair (tree o)
5711 {
5712 if (tm_clone_hash)
5713 {
5714 struct tree_map *h, in;
5715
5716 in.base.from = o;
5717 in.hash = htab_hash_pointer (o);
5718 h = (struct tree_map *) htab_find_with_hash (tm_clone_hash,
5719 &in, in.hash);
5720 if (h)
5721 return h->to;
5722 }
5723 return NULL_TREE;
5724 }
5725
5726 typedef struct tm_alias_pair
5727 {
5728 unsigned int uid;
5729 tree from;
5730 tree to;
5731 } tm_alias_pair;
5732
5733
5734 /* Helper function for finish_tm_clone_pairs. Dump a hash table entry
5735 into a VEC in INFO. */
5736
5737 static int
5738 dump_tm_clone_to_vec (void **slot, void *info)
5739 {
5740 struct tree_map *map = (struct tree_map *) *slot;
5741 vec<tm_alias_pair> *tm_alias_pairs = (vec<tm_alias_pair> *) info;
5742 tm_alias_pair p = {DECL_UID (map->base.from), map->base.from, map->to};
5743 tm_alias_pairs->safe_push (p);
5744 return 1;
5745 }
5746
5747 /* Dump the actual pairs to the .tm_clone_table section. */
5748
5749 static void
5750 dump_tm_clone_pairs (vec<tm_alias_pair> tm_alias_pairs)
5751 {
5752 unsigned i;
5753 tm_alias_pair *p;
5754 bool switched = false;
5755
5756 FOR_EACH_VEC_ELT (tm_alias_pairs, i, p)
5757 {
5758 tree src = p->from;
5759 tree dst = p->to;
5760 struct cgraph_node *src_n = cgraph_get_node (src);
5761 struct cgraph_node *dst_n = cgraph_get_node (dst);
5762
5763 /* The function ipa_tm_create_version() marks the clone as needed if
5764 the original function was needed. But we also mark the clone as
5765 needed if we ever called the clone indirectly through
5766 TM_GETTMCLONE. If neither of these are true, we didn't generate
5767 a clone, and we didn't call it indirectly... no sense keeping it
5768 in the clone table. */
5769 if (!dst_n || !dst_n->definition)
5770 continue;
5771
5772 /* This covers the case where we have optimized the original
5773 function away, and only access the transactional clone. */
5774 if (!src_n || !src_n->definition)
5775 continue;
5776
5777 if (!switched)
5778 {
5779 switch_to_section (targetm.asm_out.tm_clone_table_section ());
5780 assemble_align (POINTER_SIZE);
5781 switched = true;
5782 }
5783
5784 assemble_integer (XEXP (DECL_RTL (src), 0),
5785 POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
5786 assemble_integer (XEXP (DECL_RTL (dst), 0),
5787 POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
5788 }
5789 }
5790
5791 /* Provide a default for the tm_clone_table section. */
5792
5793 section *
5794 default_clone_table_section (void)
5795 {
5796 return get_named_section (NULL, ".tm_clone_table", 3);
5797 }
5798
5799 /* Helper comparison function for qsorting by the DECL_UID stored in
5800 alias_pair->emitted_diags. */
5801
5802 static int
5803 tm_alias_pair_cmp (const void *x, const void *y)
5804 {
5805 const tm_alias_pair *p1 = (const tm_alias_pair *) x;
5806 const tm_alias_pair *p2 = (const tm_alias_pair *) y;
5807 if (p1->uid < p2->uid)
5808 return -1;
5809 if (p1->uid > p2->uid)
5810 return 1;
5811 return 0;
5812 }
5813
5814 void
5815 finish_tm_clone_pairs (void)
5816 {
5817 vec<tm_alias_pair> tm_alias_pairs = vNULL;
5818
5819 if (tm_clone_hash == NULL)
5820 return;
5821
5822 /* We need a determenistic order for the .tm_clone_table, otherwise
5823 we will get bootstrap comparison failures, so dump the hash table
5824 to a vector, sort it, and dump the vector. */
5825
5826 /* Dump the hashtable to a vector. */
5827 htab_traverse_noresize (tm_clone_hash, dump_tm_clone_to_vec,
5828 (void *) &tm_alias_pairs);
5829 /* Sort it. */
5830 tm_alias_pairs.qsort (tm_alias_pair_cmp);
5831
5832 /* Dump it. */
5833 dump_tm_clone_pairs (tm_alias_pairs);
5834
5835 htab_delete (tm_clone_hash);
5836 tm_clone_hash = NULL;
5837 tm_alias_pairs.release ();
5838 }
5839
5840
5841 /* Emit an assembler directive to set symbol for DECL visibility to
5842 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
5843
5844 void
5845 default_assemble_visibility (tree decl ATTRIBUTE_UNUSED,
5846 int vis ATTRIBUTE_UNUSED)
5847 {
5848 #ifdef HAVE_GAS_HIDDEN
5849 static const char * const visibility_types[] = {
5850 NULL, "protected", "hidden", "internal"
5851 };
5852
5853 const char *name, *type;
5854
5855 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5856 type = visibility_types[vis];
5857
5858 fprintf (asm_out_file, "\t.%s\t", type);
5859 assemble_name (asm_out_file, name);
5860 fprintf (asm_out_file, "\n");
5861 #else
5862 if (!DECL_ARTIFICIAL (decl))
5863 warning (OPT_Wattributes, "visibility attribute not supported "
5864 "in this configuration; ignored");
5865 #endif
5866 }
5867
5868 /* A helper function to call assemble_visibility when needed for a decl. */
5869
5870 int
5871 maybe_assemble_visibility (tree decl)
5872 {
5873 enum symbol_visibility vis = DECL_VISIBILITY (decl);
5874
5875 if (vis != VISIBILITY_DEFAULT)
5876 {
5877 targetm.asm_out.assemble_visibility (decl, vis);
5878 return 1;
5879 }
5880 else
5881 return 0;
5882 }
5883
5884 /* Returns 1 if the target configuration supports defining public symbols
5885 so that one of them will be chosen at link time instead of generating a
5886 multiply-defined symbol error, whether through the use of weak symbols or
5887 a target-specific mechanism for having duplicates discarded. */
5888
5889 int
5890 supports_one_only (void)
5891 {
5892 if (SUPPORTS_ONE_ONLY)
5893 return 1;
5894 return TARGET_SUPPORTS_WEAK;
5895 }
5896
5897 /* Set up DECL as a public symbol that can be defined in multiple
5898 translation units without generating a linker error. */
5899
5900 void
5901 make_decl_one_only (tree decl, tree comdat_group)
5902 {
5903 gcc_assert (TREE_CODE (decl) == VAR_DECL
5904 || TREE_CODE (decl) == FUNCTION_DECL);
5905
5906 TREE_PUBLIC (decl) = 1;
5907
5908 if (SUPPORTS_ONE_ONLY)
5909 {
5910 #ifdef MAKE_DECL_ONE_ONLY
5911 MAKE_DECL_ONE_ONLY (decl);
5912 #endif
5913 DECL_COMDAT_GROUP (decl) = comdat_group;
5914 }
5915 else if (TREE_CODE (decl) == VAR_DECL
5916 && (DECL_INITIAL (decl) == 0 || DECL_INITIAL (decl) == error_mark_node))
5917 DECL_COMMON (decl) = 1;
5918 else
5919 {
5920 gcc_assert (TARGET_SUPPORTS_WEAK);
5921 DECL_WEAK (decl) = 1;
5922 }
5923 }
5924
5925 void
5926 init_varasm_once (void)
5927 {
5928 section_htab = htab_create_ggc (31, section_entry_hash,
5929 section_entry_eq, NULL);
5930 object_block_htab = htab_create_ggc (31, object_block_entry_hash,
5931 object_block_entry_eq, NULL);
5932 const_desc_htab = htab_create_ggc (1009, const_desc_hash,
5933 const_desc_eq, NULL);
5934
5935 const_alias_set = new_alias_set ();
5936 shared_constant_pool = create_constant_pool ();
5937
5938 #ifdef TEXT_SECTION_ASM_OP
5939 text_section = get_unnamed_section (SECTION_CODE, output_section_asm_op,
5940 TEXT_SECTION_ASM_OP);
5941 #endif
5942
5943 #ifdef DATA_SECTION_ASM_OP
5944 data_section = get_unnamed_section (SECTION_WRITE, output_section_asm_op,
5945 DATA_SECTION_ASM_OP);
5946 #endif
5947
5948 #ifdef SDATA_SECTION_ASM_OP
5949 sdata_section = get_unnamed_section (SECTION_WRITE, output_section_asm_op,
5950 SDATA_SECTION_ASM_OP);
5951 #endif
5952
5953 #ifdef READONLY_DATA_SECTION_ASM_OP
5954 readonly_data_section = get_unnamed_section (0, output_section_asm_op,
5955 READONLY_DATA_SECTION_ASM_OP);
5956 #endif
5957
5958 #ifdef CTORS_SECTION_ASM_OP
5959 ctors_section = get_unnamed_section (0, output_section_asm_op,
5960 CTORS_SECTION_ASM_OP);
5961 #endif
5962
5963 #ifdef DTORS_SECTION_ASM_OP
5964 dtors_section = get_unnamed_section (0, output_section_asm_op,
5965 DTORS_SECTION_ASM_OP);
5966 #endif
5967
5968 #ifdef BSS_SECTION_ASM_OP
5969 bss_section = get_unnamed_section (SECTION_WRITE | SECTION_BSS,
5970 output_section_asm_op,
5971 BSS_SECTION_ASM_OP);
5972 #endif
5973
5974 #ifdef SBSS_SECTION_ASM_OP
5975 sbss_section = get_unnamed_section (SECTION_WRITE | SECTION_BSS,
5976 output_section_asm_op,
5977 SBSS_SECTION_ASM_OP);
5978 #endif
5979
5980 tls_comm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
5981 | SECTION_COMMON, emit_tls_common);
5982 lcomm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
5983 | SECTION_COMMON, emit_local);
5984 comm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
5985 | SECTION_COMMON, emit_common);
5986
5987 #if defined ASM_OUTPUT_ALIGNED_BSS
5988 bss_noswitch_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS,
5989 emit_bss);
5990 #endif
5991
5992 targetm.asm_out.init_sections ();
5993
5994 if (readonly_data_section == NULL)
5995 readonly_data_section = text_section;
5996
5997 #ifdef ASM_OUTPUT_EXTERNAL
5998 pending_assemble_externals_set = pointer_set_create ();
5999 #endif
6000 }
6001
6002 enum tls_model
6003 decl_default_tls_model (const_tree decl)
6004 {
6005 enum tls_model kind;
6006 bool is_local;
6007
6008 is_local = targetm.binds_local_p (decl);
6009 if (!flag_shlib)
6010 {
6011 if (is_local)
6012 kind = TLS_MODEL_LOCAL_EXEC;
6013 else
6014 kind = TLS_MODEL_INITIAL_EXEC;
6015 }
6016
6017 /* Local dynamic is inefficient when we're not combining the
6018 parts of the address. */
6019 else if (optimize && is_local)
6020 kind = TLS_MODEL_LOCAL_DYNAMIC;
6021 else
6022 kind = TLS_MODEL_GLOBAL_DYNAMIC;
6023 if (kind < flag_tls_default)
6024 kind = flag_tls_default;
6025
6026 return kind;
6027 }
6028
6029 /* Select a set of attributes for section NAME based on the properties
6030 of DECL and whether or not RELOC indicates that DECL's initializer
6031 might contain runtime relocations.
6032
6033 We make the section read-only and executable for a function decl,
6034 read-only for a const data decl, and writable for a non-const data decl. */
6035
6036 unsigned int
6037 default_section_type_flags (tree decl, const char *name, int reloc)
6038 {
6039 unsigned int flags;
6040
6041 if (decl && TREE_CODE (decl) == FUNCTION_DECL)
6042 flags = SECTION_CODE;
6043 else if (decl)
6044 {
6045 enum section_category category
6046 = categorize_decl_for_section (decl, reloc);
6047 if (decl_readonly_section_1 (category))
6048 flags = 0;
6049 else if (category == SECCAT_DATA_REL_RO
6050 || category == SECCAT_DATA_REL_RO_LOCAL)
6051 flags = SECTION_WRITE | SECTION_RELRO;
6052 else
6053 flags = SECTION_WRITE;
6054 }
6055 else
6056 {
6057 flags = SECTION_WRITE;
6058 if (strcmp (name, ".data.rel.ro") == 0
6059 || strcmp (name, ".data.rel.ro.local") == 0)
6060 flags |= SECTION_RELRO;
6061 }
6062
6063 if (decl && DECL_P (decl) && DECL_ONE_ONLY (decl))
6064 flags |= SECTION_LINKONCE;
6065
6066 if (strcmp (name, ".vtable_map_vars") == 0)
6067 flags |= SECTION_LINKONCE;
6068
6069 if (decl && TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl))
6070 flags |= SECTION_TLS | SECTION_WRITE;
6071
6072 if (strcmp (name, ".bss") == 0
6073 || strncmp (name, ".bss.", 5) == 0
6074 || strncmp (name, ".gnu.linkonce.b.", 16) == 0
6075 || strcmp (name, ".sbss") == 0
6076 || strncmp (name, ".sbss.", 6) == 0
6077 || strncmp (name, ".gnu.linkonce.sb.", 17) == 0)
6078 flags |= SECTION_BSS;
6079
6080 if (strcmp (name, ".tdata") == 0
6081 || strncmp (name, ".tdata.", 7) == 0
6082 || strncmp (name, ".gnu.linkonce.td.", 17) == 0)
6083 flags |= SECTION_TLS;
6084
6085 if (strcmp (name, ".tbss") == 0
6086 || strncmp (name, ".tbss.", 6) == 0
6087 || strncmp (name, ".gnu.linkonce.tb.", 17) == 0)
6088 flags |= SECTION_TLS | SECTION_BSS;
6089
6090 /* These three sections have special ELF types. They are neither
6091 SHT_PROGBITS nor SHT_NOBITS, so when changing sections we don't
6092 want to print a section type (@progbits or @nobits). If someone
6093 is silly enough to emit code or TLS variables to one of these
6094 sections, then don't handle them specially. */
6095 if (!(flags & (SECTION_CODE | SECTION_BSS | SECTION_TLS))
6096 && (strcmp (name, ".init_array") == 0
6097 || strcmp (name, ".fini_array") == 0
6098 || strcmp (name, ".preinit_array") == 0))
6099 flags |= SECTION_NOTYPE;
6100
6101 return flags;
6102 }
6103
6104 /* Return true if the target supports some form of global BSS,
6105 either through bss_noswitch_section, or by selecting a BSS
6106 section in TARGET_ASM_SELECT_SECTION. */
6107
6108 bool
6109 have_global_bss_p (void)
6110 {
6111 return bss_noswitch_section || targetm.have_switchable_bss_sections;
6112 }
6113
6114 /* Output assembly to switch to section NAME with attribute FLAGS.
6115 Four variants for common object file formats. */
6116
6117 void
6118 default_no_named_section (const char *name ATTRIBUTE_UNUSED,
6119 unsigned int flags ATTRIBUTE_UNUSED,
6120 tree decl ATTRIBUTE_UNUSED)
6121 {
6122 /* Some object formats don't support named sections at all. The
6123 front-end should already have flagged this as an error. */
6124 gcc_unreachable ();
6125 }
6126
6127 #ifndef TLS_SECTION_ASM_FLAG
6128 #define TLS_SECTION_ASM_FLAG 'T'
6129 #endif
6130
6131 void
6132 default_elf_asm_named_section (const char *name, unsigned int flags,
6133 tree decl ATTRIBUTE_UNUSED)
6134 {
6135 char flagchars[10], *f = flagchars;
6136
6137 /* If we have already declared this section, we can use an
6138 abbreviated form to switch back to it -- unless this section is
6139 part of a COMDAT groups, in which case GAS requires the full
6140 declaration every time. */
6141 if (!(HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
6142 && (flags & SECTION_DECLARED))
6143 {
6144 fprintf (asm_out_file, "\t.section\t%s\n", name);
6145 return;
6146 }
6147
6148 if (!(flags & SECTION_DEBUG))
6149 *f++ = 'a';
6150 if (flags & SECTION_EXCLUDE)
6151 *f++ = 'e';
6152 if (flags & SECTION_WRITE)
6153 *f++ = 'w';
6154 if (flags & SECTION_CODE)
6155 *f++ = 'x';
6156 if (flags & SECTION_SMALL)
6157 *f++ = 's';
6158 if (flags & SECTION_MERGE)
6159 *f++ = 'M';
6160 if (flags & SECTION_STRINGS)
6161 *f++ = 'S';
6162 if (flags & SECTION_TLS)
6163 *f++ = TLS_SECTION_ASM_FLAG;
6164 if (HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
6165 *f++ = 'G';
6166 *f = '\0';
6167
6168 fprintf (asm_out_file, "\t.section\t%s,\"%s\"", name, flagchars);
6169
6170 if (!(flags & SECTION_NOTYPE))
6171 {
6172 const char *type;
6173 const char *format;
6174
6175 if (flags & SECTION_BSS)
6176 type = "nobits";
6177 else
6178 type = "progbits";
6179
6180 format = ",@%s";
6181 /* On platforms that use "@" as the assembly comment character,
6182 use "%" instead. */
6183 if (strcmp (ASM_COMMENT_START, "@") == 0)
6184 format = ",%%%s";
6185 fprintf (asm_out_file, format, type);
6186
6187 if (flags & SECTION_ENTSIZE)
6188 fprintf (asm_out_file, ",%d", flags & SECTION_ENTSIZE);
6189 if (HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
6190 {
6191 if (TREE_CODE (decl) == IDENTIFIER_NODE)
6192 fprintf (asm_out_file, ",%s,comdat", IDENTIFIER_POINTER (decl));
6193 else
6194 fprintf (asm_out_file, ",%s,comdat",
6195 IDENTIFIER_POINTER (DECL_COMDAT_GROUP (decl)));
6196 }
6197 }
6198
6199 putc ('\n', asm_out_file);
6200 }
6201
6202 void
6203 default_coff_asm_named_section (const char *name, unsigned int flags,
6204 tree decl ATTRIBUTE_UNUSED)
6205 {
6206 char flagchars[8], *f = flagchars;
6207
6208 if (flags & SECTION_WRITE)
6209 *f++ = 'w';
6210 if (flags & SECTION_CODE)
6211 *f++ = 'x';
6212 *f = '\0';
6213
6214 fprintf (asm_out_file, "\t.section\t%s,\"%s\"\n", name, flagchars);
6215 }
6216
6217 void
6218 default_pe_asm_named_section (const char *name, unsigned int flags,
6219 tree decl)
6220 {
6221 default_coff_asm_named_section (name, flags, decl);
6222
6223 if (flags & SECTION_LINKONCE)
6224 {
6225 /* Functions may have been compiled at various levels of
6226 optimization so we can't use `same_size' here.
6227 Instead, have the linker pick one. */
6228 fprintf (asm_out_file, "\t.linkonce %s\n",
6229 (flags & SECTION_CODE ? "discard" : "same_size"));
6230 }
6231 }
6232 \f
6233 /* The lame default section selector. */
6234
6235 section *
6236 default_select_section (tree decl, int reloc,
6237 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
6238 {
6239 if (DECL_P (decl))
6240 {
6241 if (decl_readonly_section (decl, reloc))
6242 return readonly_data_section;
6243 }
6244 else if (TREE_CODE (decl) == CONSTRUCTOR)
6245 {
6246 if (! ((flag_pic && reloc)
6247 || !TREE_READONLY (decl)
6248 || TREE_SIDE_EFFECTS (decl)
6249 || !TREE_CONSTANT (decl)))
6250 return readonly_data_section;
6251 }
6252 else if (TREE_CODE (decl) == STRING_CST)
6253 return readonly_data_section;
6254 else if (! (flag_pic && reloc))
6255 return readonly_data_section;
6256
6257 return data_section;
6258 }
6259
6260 enum section_category
6261 categorize_decl_for_section (const_tree decl, int reloc)
6262 {
6263 enum section_category ret;
6264
6265 if (TREE_CODE (decl) == FUNCTION_DECL)
6266 return SECCAT_TEXT;
6267 else if (TREE_CODE (decl) == STRING_CST)
6268 {
6269 if ((flag_sanitize & SANITIZE_ADDRESS)
6270 && asan_protect_global (CONST_CAST_TREE (decl)))
6271 /* or !flag_merge_constants */
6272 return SECCAT_RODATA;
6273 else
6274 return SECCAT_RODATA_MERGE_STR;
6275 }
6276 else if (TREE_CODE (decl) == VAR_DECL)
6277 {
6278 if (bss_initializer_p (decl))
6279 ret = SECCAT_BSS;
6280 else if (! TREE_READONLY (decl)
6281 || TREE_SIDE_EFFECTS (decl)
6282 || ! TREE_CONSTANT (DECL_INITIAL (decl)))
6283 {
6284 /* Here the reloc_rw_mask is not testing whether the section should
6285 be read-only or not, but whether the dynamic link will have to
6286 do something. If so, we wish to segregate the data in order to
6287 minimize cache misses inside the dynamic linker. */
6288 if (reloc & targetm.asm_out.reloc_rw_mask ())
6289 ret = reloc == 1 ? SECCAT_DATA_REL_LOCAL : SECCAT_DATA_REL;
6290 else
6291 ret = SECCAT_DATA;
6292 }
6293 else if (reloc & targetm.asm_out.reloc_rw_mask ())
6294 ret = reloc == 1 ? SECCAT_DATA_REL_RO_LOCAL : SECCAT_DATA_REL_RO;
6295 else if (reloc || flag_merge_constants < 2
6296 || ((flag_sanitize & SANITIZE_ADDRESS)
6297 && asan_protect_global (CONST_CAST_TREE (decl))))
6298 /* C and C++ don't allow different variables to share the same
6299 location. -fmerge-all-constants allows even that (at the
6300 expense of not conforming). */
6301 ret = SECCAT_RODATA;
6302 else if (TREE_CODE (DECL_INITIAL (decl)) == STRING_CST)
6303 ret = SECCAT_RODATA_MERGE_STR_INIT;
6304 else
6305 ret = SECCAT_RODATA_MERGE_CONST;
6306 }
6307 else if (TREE_CODE (decl) == CONSTRUCTOR)
6308 {
6309 if ((reloc & targetm.asm_out.reloc_rw_mask ())
6310 || TREE_SIDE_EFFECTS (decl)
6311 || ! TREE_CONSTANT (decl))
6312 ret = SECCAT_DATA;
6313 else
6314 ret = SECCAT_RODATA;
6315 }
6316 else
6317 ret = SECCAT_RODATA;
6318
6319 /* There are no read-only thread-local sections. */
6320 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl))
6321 {
6322 /* Note that this would be *just* SECCAT_BSS, except that there's
6323 no concept of a read-only thread-local-data section. */
6324 if (ret == SECCAT_BSS
6325 || (flag_zero_initialized_in_bss
6326 && initializer_zerop (DECL_INITIAL (decl))))
6327 ret = SECCAT_TBSS;
6328 else
6329 ret = SECCAT_TDATA;
6330 }
6331
6332 /* If the target uses small data sections, select it. */
6333 else if (targetm.in_small_data_p (decl))
6334 {
6335 if (ret == SECCAT_BSS)
6336 ret = SECCAT_SBSS;
6337 else if (targetm.have_srodata_section && ret == SECCAT_RODATA)
6338 ret = SECCAT_SRODATA;
6339 else
6340 ret = SECCAT_SDATA;
6341 }
6342
6343 return ret;
6344 }
6345
6346 static bool
6347 decl_readonly_section_1 (enum section_category category)
6348 {
6349 switch (category)
6350 {
6351 case SECCAT_RODATA:
6352 case SECCAT_RODATA_MERGE_STR:
6353 case SECCAT_RODATA_MERGE_STR_INIT:
6354 case SECCAT_RODATA_MERGE_CONST:
6355 case SECCAT_SRODATA:
6356 return true;
6357 default:
6358 return false;
6359 }
6360 }
6361
6362 bool
6363 decl_readonly_section (const_tree decl, int reloc)
6364 {
6365 return decl_readonly_section_1 (categorize_decl_for_section (decl, reloc));
6366 }
6367
6368 /* Select a section based on the above categorization. */
6369
6370 section *
6371 default_elf_select_section (tree decl, int reloc,
6372 unsigned HOST_WIDE_INT align)
6373 {
6374 const char *sname;
6375 switch (categorize_decl_for_section (decl, reloc))
6376 {
6377 case SECCAT_TEXT:
6378 /* We're not supposed to be called on FUNCTION_DECLs. */
6379 gcc_unreachable ();
6380 case SECCAT_RODATA:
6381 return readonly_data_section;
6382 case SECCAT_RODATA_MERGE_STR:
6383 return mergeable_string_section (decl, align, 0);
6384 case SECCAT_RODATA_MERGE_STR_INIT:
6385 return mergeable_string_section (DECL_INITIAL (decl), align, 0);
6386 case SECCAT_RODATA_MERGE_CONST:
6387 return mergeable_constant_section (DECL_MODE (decl), align, 0);
6388 case SECCAT_SRODATA:
6389 sname = ".sdata2";
6390 break;
6391 case SECCAT_DATA:
6392 return data_section;
6393 case SECCAT_DATA_REL:
6394 sname = ".data.rel";
6395 break;
6396 case SECCAT_DATA_REL_LOCAL:
6397 sname = ".data.rel.local";
6398 break;
6399 case SECCAT_DATA_REL_RO:
6400 sname = ".data.rel.ro";
6401 break;
6402 case SECCAT_DATA_REL_RO_LOCAL:
6403 sname = ".data.rel.ro.local";
6404 break;
6405 case SECCAT_SDATA:
6406 sname = ".sdata";
6407 break;
6408 case SECCAT_TDATA:
6409 sname = ".tdata";
6410 break;
6411 case SECCAT_BSS:
6412 if (bss_section)
6413 return bss_section;
6414 sname = ".bss";
6415 break;
6416 case SECCAT_SBSS:
6417 sname = ".sbss";
6418 break;
6419 case SECCAT_TBSS:
6420 sname = ".tbss";
6421 break;
6422 default:
6423 gcc_unreachable ();
6424 }
6425
6426 return get_named_section (decl, sname, reloc);
6427 }
6428
6429 /* Construct a unique section name based on the decl name and the
6430 categorization performed above. */
6431
6432 void
6433 default_unique_section (tree decl, int reloc)
6434 {
6435 /* We only need to use .gnu.linkonce if we don't have COMDAT groups. */
6436 bool one_only = DECL_ONE_ONLY (decl) && !HAVE_COMDAT_GROUP;
6437 const char *prefix, *name, *linkonce;
6438 char *string;
6439
6440 switch (categorize_decl_for_section (decl, reloc))
6441 {
6442 case SECCAT_TEXT:
6443 prefix = one_only ? ".t" : ".text";
6444 break;
6445 case SECCAT_RODATA:
6446 case SECCAT_RODATA_MERGE_STR:
6447 case SECCAT_RODATA_MERGE_STR_INIT:
6448 case SECCAT_RODATA_MERGE_CONST:
6449 prefix = one_only ? ".r" : ".rodata";
6450 break;
6451 case SECCAT_SRODATA:
6452 prefix = one_only ? ".s2" : ".sdata2";
6453 break;
6454 case SECCAT_DATA:
6455 prefix = one_only ? ".d" : ".data";
6456 break;
6457 case SECCAT_DATA_REL:
6458 prefix = one_only ? ".d.rel" : ".data.rel";
6459 break;
6460 case SECCAT_DATA_REL_LOCAL:
6461 prefix = one_only ? ".d.rel.local" : ".data.rel.local";
6462 break;
6463 case SECCAT_DATA_REL_RO:
6464 prefix = one_only ? ".d.rel.ro" : ".data.rel.ro";
6465 break;
6466 case SECCAT_DATA_REL_RO_LOCAL:
6467 prefix = one_only ? ".d.rel.ro.local" : ".data.rel.ro.local";
6468 break;
6469 case SECCAT_SDATA:
6470 prefix = one_only ? ".s" : ".sdata";
6471 break;
6472 case SECCAT_BSS:
6473 prefix = one_only ? ".b" : ".bss";
6474 break;
6475 case SECCAT_SBSS:
6476 prefix = one_only ? ".sb" : ".sbss";
6477 break;
6478 case SECCAT_TDATA:
6479 prefix = one_only ? ".td" : ".tdata";
6480 break;
6481 case SECCAT_TBSS:
6482 prefix = one_only ? ".tb" : ".tbss";
6483 break;
6484 default:
6485 gcc_unreachable ();
6486 }
6487
6488 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
6489 name = targetm.strip_name_encoding (name);
6490
6491 /* If we're using one_only, then there needs to be a .gnu.linkonce
6492 prefix to the section name. */
6493 linkonce = one_only ? ".gnu.linkonce" : "";
6494
6495 string = ACONCAT ((linkonce, prefix, ".", name, NULL));
6496
6497 DECL_SECTION_NAME (decl) = build_string (strlen (string), string);
6498 }
6499
6500 /* Like compute_reloc_for_constant, except for an RTX. The return value
6501 is a mask for which bit 1 indicates a global relocation, and bit 0
6502 indicates a local relocation. */
6503
6504 static int
6505 compute_reloc_for_rtx_1 (rtx *xp, void *data)
6506 {
6507 int *preloc = (int *) data;
6508 rtx x = *xp;
6509
6510 switch (GET_CODE (x))
6511 {
6512 case SYMBOL_REF:
6513 *preloc |= SYMBOL_REF_LOCAL_P (x) ? 1 : 2;
6514 break;
6515 case LABEL_REF:
6516 *preloc |= 1;
6517 break;
6518 default:
6519 break;
6520 }
6521
6522 return 0;
6523 }
6524
6525 static int
6526 compute_reloc_for_rtx (rtx x)
6527 {
6528 int reloc;
6529
6530 switch (GET_CODE (x))
6531 {
6532 case CONST:
6533 case SYMBOL_REF:
6534 case LABEL_REF:
6535 reloc = 0;
6536 for_each_rtx (&x, compute_reloc_for_rtx_1, &reloc);
6537 return reloc;
6538
6539 default:
6540 return 0;
6541 }
6542 }
6543
6544 section *
6545 default_select_rtx_section (enum machine_mode mode ATTRIBUTE_UNUSED,
6546 rtx x,
6547 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
6548 {
6549 if (compute_reloc_for_rtx (x) & targetm.asm_out.reloc_rw_mask ())
6550 return data_section;
6551 else
6552 return readonly_data_section;
6553 }
6554
6555 section *
6556 default_elf_select_rtx_section (enum machine_mode mode, rtx x,
6557 unsigned HOST_WIDE_INT align)
6558 {
6559 int reloc = compute_reloc_for_rtx (x);
6560
6561 /* ??? Handle small data here somehow. */
6562
6563 if (reloc & targetm.asm_out.reloc_rw_mask ())
6564 {
6565 if (reloc == 1)
6566 return get_named_section (NULL, ".data.rel.ro.local", 1);
6567 else
6568 return get_named_section (NULL, ".data.rel.ro", 3);
6569 }
6570
6571 return mergeable_constant_section (mode, align, 0);
6572 }
6573
6574 /* Set the generally applicable flags on the SYMBOL_REF for EXP. */
6575
6576 void
6577 default_encode_section_info (tree decl, rtx rtl, int first ATTRIBUTE_UNUSED)
6578 {
6579 rtx symbol;
6580 int flags;
6581
6582 /* Careful not to prod global register variables. */
6583 if (!MEM_P (rtl))
6584 return;
6585 symbol = XEXP (rtl, 0);
6586 if (GET_CODE (symbol) != SYMBOL_REF)
6587 return;
6588
6589 flags = SYMBOL_REF_FLAGS (symbol) & SYMBOL_FLAG_HAS_BLOCK_INFO;
6590 if (TREE_CODE (decl) == FUNCTION_DECL)
6591 flags |= SYMBOL_FLAG_FUNCTION;
6592 if (targetm.binds_local_p (decl))
6593 flags |= SYMBOL_FLAG_LOCAL;
6594 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl))
6595 flags |= DECL_TLS_MODEL (decl) << SYMBOL_FLAG_TLS_SHIFT;
6596 else if (targetm.in_small_data_p (decl))
6597 flags |= SYMBOL_FLAG_SMALL;
6598 /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names? Without
6599 being PUBLIC, the thing *must* be defined in this translation unit.
6600 Prevent this buglet from being propagated into rtl code as well. */
6601 if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
6602 flags |= SYMBOL_FLAG_EXTERNAL;
6603
6604 SYMBOL_REF_FLAGS (symbol) = flags;
6605 }
6606
6607 /* By default, we do nothing for encode_section_info, so we need not
6608 do anything but discard the '*' marker. */
6609
6610 const char *
6611 default_strip_name_encoding (const char *str)
6612 {
6613 return str + (*str == '*');
6614 }
6615
6616 #ifdef ASM_OUTPUT_DEF
6617 /* The default implementation of TARGET_ASM_OUTPUT_ANCHOR. Define the
6618 anchor relative to ".", the current section position. */
6619
6620 void
6621 default_asm_output_anchor (rtx symbol)
6622 {
6623 char buffer[100];
6624
6625 sprintf (buffer, "*. + " HOST_WIDE_INT_PRINT_DEC,
6626 SYMBOL_REF_BLOCK_OFFSET (symbol));
6627 ASM_OUTPUT_DEF (asm_out_file, XSTR (symbol, 0), buffer);
6628 }
6629 #endif
6630
6631 /* The default implementation of TARGET_USE_ANCHORS_FOR_SYMBOL_P. */
6632
6633 bool
6634 default_use_anchors_for_symbol_p (const_rtx symbol)
6635 {
6636 section *sect;
6637 tree decl;
6638
6639 /* Don't use anchors for mergeable sections. The linker might move
6640 the objects around. */
6641 sect = SYMBOL_REF_BLOCK (symbol)->sect;
6642 if (sect->common.flags & SECTION_MERGE)
6643 return false;
6644
6645 /* Don't use anchors for small data sections. The small data register
6646 acts as an anchor for such sections. */
6647 if (sect->common.flags & SECTION_SMALL)
6648 return false;
6649
6650 decl = SYMBOL_REF_DECL (symbol);
6651 if (decl && DECL_P (decl))
6652 {
6653 /* Don't use section anchors for decls that might be defined or
6654 usurped by other modules. */
6655 if (TREE_PUBLIC (decl) && !decl_binds_to_current_def_p (decl))
6656 return false;
6657
6658 /* Don't use section anchors for decls that will be placed in a
6659 small data section. */
6660 /* ??? Ideally, this check would be redundant with the SECTION_SMALL
6661 one above. The problem is that we only use SECTION_SMALL for
6662 sections that should be marked as small in the section directive. */
6663 if (targetm.in_small_data_p (decl))
6664 return false;
6665 }
6666 return true;
6667 }
6668
6669 /* Return true when RESOLUTION indicate that symbol will be bound to the
6670 definition provided by current .o file. */
6671
6672 static bool
6673 resolution_to_local_definition_p (enum ld_plugin_symbol_resolution resolution)
6674 {
6675 return (resolution == LDPR_PREVAILING_DEF
6676 || resolution == LDPR_PREVAILING_DEF_IRONLY_EXP
6677 || resolution == LDPR_PREVAILING_DEF_IRONLY);
6678 }
6679
6680 /* Return true when RESOLUTION indicate that symbol will be bound locally
6681 within current executable or DSO. */
6682
6683 static bool
6684 resolution_local_p (enum ld_plugin_symbol_resolution resolution)
6685 {
6686 return (resolution == LDPR_PREVAILING_DEF
6687 || resolution == LDPR_PREVAILING_DEF_IRONLY
6688 || resolution == LDPR_PREVAILING_DEF_IRONLY_EXP
6689 || resolution == LDPR_PREEMPTED_REG
6690 || resolution == LDPR_PREEMPTED_IR
6691 || resolution == LDPR_RESOLVED_IR
6692 || resolution == LDPR_RESOLVED_EXEC);
6693 }
6694
6695 /* Assume ELF-ish defaults, since that's pretty much the most liberal
6696 wrt cross-module name binding. */
6697
6698 bool
6699 default_binds_local_p (const_tree exp)
6700 {
6701 return default_binds_local_p_1 (exp, flag_shlib);
6702 }
6703
6704 bool
6705 default_binds_local_p_1 (const_tree exp, int shlib)
6706 {
6707 bool local_p;
6708 bool resolved_locally = false;
6709 bool resolved_to_local_def = false;
6710
6711 /* With resolution file in hands, take look into resolutions.
6712 We can't just return true for resolved_locally symbols,
6713 because dynamic linking might overwrite symbols
6714 in shared libraries. */
6715 if (TREE_CODE (exp) == VAR_DECL && TREE_PUBLIC (exp)
6716 && (TREE_STATIC (exp) || DECL_EXTERNAL (exp)))
6717 {
6718 struct varpool_node *vnode = varpool_get_node (exp);
6719 if (vnode && resolution_local_p (vnode->resolution))
6720 resolved_locally = true;
6721 if (vnode
6722 && resolution_to_local_definition_p (vnode->resolution))
6723 resolved_to_local_def = true;
6724 }
6725 else if (TREE_CODE (exp) == FUNCTION_DECL && TREE_PUBLIC (exp))
6726 {
6727 struct cgraph_node *node = cgraph_get_node (exp);
6728 if (node
6729 && resolution_local_p (node->resolution))
6730 resolved_locally = true;
6731 if (node
6732 && resolution_to_local_definition_p (node->resolution))
6733 resolved_to_local_def = true;
6734 }
6735
6736 /* A non-decl is an entry in the constant pool. */
6737 if (!DECL_P (exp))
6738 local_p = true;
6739 /* Weakrefs may not bind locally, even though the weakref itself is always
6740 static and therefore local. Similarly, the resolver for ifunc functions
6741 might resolve to a non-local function.
6742 FIXME: We can resolve the weakref case more curefuly by looking at the
6743 weakref alias. */
6744 else if (lookup_attribute ("weakref", DECL_ATTRIBUTES (exp))
6745 || (TREE_CODE (exp) == FUNCTION_DECL
6746 && lookup_attribute ("ifunc", DECL_ATTRIBUTES (exp))))
6747 local_p = false;
6748 /* Static variables are always local. */
6749 else if (! TREE_PUBLIC (exp))
6750 local_p = true;
6751 /* A variable is local if the user has said explicitly that it will
6752 be. */
6753 else if ((DECL_VISIBILITY_SPECIFIED (exp)
6754 || resolved_to_local_def)
6755 && DECL_VISIBILITY (exp) != VISIBILITY_DEFAULT)
6756 local_p = true;
6757 /* Variables defined outside this object might not be local. */
6758 else if (DECL_EXTERNAL (exp) && !resolved_locally)
6759 local_p = false;
6760 /* If defined in this object and visibility is not default, must be
6761 local. */
6762 else if (DECL_VISIBILITY (exp) != VISIBILITY_DEFAULT)
6763 local_p = true;
6764 /* Default visibility weak data can be overridden by a strong symbol
6765 in another module and so are not local. */
6766 else if (DECL_WEAK (exp)
6767 && !resolved_locally)
6768 local_p = false;
6769 /* If PIC, then assume that any global name can be overridden by
6770 symbols resolved from other modules. */
6771 else if (shlib)
6772 local_p = false;
6773 /* Uninitialized COMMON variable may be unified with symbols
6774 resolved from other modules. */
6775 else if (DECL_COMMON (exp)
6776 && !resolved_locally
6777 && (DECL_INITIAL (exp) == NULL
6778 || DECL_INITIAL (exp) == error_mark_node))
6779 local_p = false;
6780 /* Otherwise we're left with initialized (or non-common) global data
6781 which is of necessity defined locally. */
6782 else
6783 local_p = true;
6784
6785 return local_p;
6786 }
6787
6788 /* Return true when references to DECL must bind to current definition in
6789 final executable.
6790
6791 The condition is usually equivalent to whether the function binds to the
6792 current module (shared library or executable), that is to binds_local_p.
6793 We use this fact to avoid need for another target hook and implement
6794 the logic using binds_local_p and just special cases where
6795 decl_binds_to_current_def_p is stronger than binds_local_p. In particular
6796 the weak definitions (that can be overwritten at linktime by other
6797 definition from different object file) and when resolution info is available
6798 we simply use the knowledge passed to us by linker plugin. */
6799 bool
6800 decl_binds_to_current_def_p (tree decl)
6801 {
6802 gcc_assert (DECL_P (decl));
6803 if (!targetm.binds_local_p (decl))
6804 return false;
6805 if (!TREE_PUBLIC (decl))
6806 return true;
6807 /* When resolution is available, just use it. */
6808 if (TREE_CODE (decl) == VAR_DECL
6809 && (TREE_STATIC (decl) || DECL_EXTERNAL (decl)))
6810 {
6811 struct varpool_node *vnode = varpool_get_node (decl);
6812 if (vnode
6813 && vnode->resolution != LDPR_UNKNOWN)
6814 return resolution_to_local_definition_p (vnode->resolution);
6815 }
6816 else if (TREE_CODE (decl) == FUNCTION_DECL)
6817 {
6818 struct cgraph_node *node = cgraph_get_node (decl);
6819 if (node
6820 && node->resolution != LDPR_UNKNOWN)
6821 return resolution_to_local_definition_p (node->resolution);
6822 }
6823 /* Otherwise we have to assume the worst for DECL_WEAK (hidden weaks
6824 binds locally but still can be overwritten), DECL_COMMON (can be merged
6825 with a non-common definition somewhere in the same module) or
6826 DECL_EXTERNAL.
6827 This rely on fact that binds_local_p behave as decl_replaceable_p
6828 for all other declaration types. */
6829 if (DECL_WEAK (decl))
6830 return false;
6831 if (DECL_COMMON (decl)
6832 && (DECL_INITIAL (decl) == NULL
6833 || DECL_INITIAL (decl) == error_mark_node))
6834 return false;
6835 if (DECL_EXTERNAL (decl))
6836 return false;
6837 return true;
6838 }
6839
6840 /* A replaceable function or variable is one which may be replaced
6841 at link-time with an entirely different definition, provided that the
6842 replacement has the same type. For example, functions declared
6843 with __attribute__((weak)) on most systems are replaceable.
6844
6845 COMDAT functions are not replaceable, since all definitions of the
6846 function must be equivalent. It is important that COMDAT functions
6847 not be treated as replaceable so that use of C++ template
6848 instantiations is not penalized. */
6849
6850 bool
6851 decl_replaceable_p (tree decl)
6852 {
6853 gcc_assert (DECL_P (decl));
6854 if (!TREE_PUBLIC (decl) || DECL_COMDAT (decl))
6855 return false;
6856 return !decl_binds_to_current_def_p (decl);
6857 }
6858
6859 /* Default function to output code that will globalize a label. A
6860 target must define GLOBAL_ASM_OP or provide its own function to
6861 globalize a label. */
6862 #ifdef GLOBAL_ASM_OP
6863 void
6864 default_globalize_label (FILE * stream, const char *name)
6865 {
6866 fputs (GLOBAL_ASM_OP, stream);
6867 assemble_name (stream, name);
6868 putc ('\n', stream);
6869 }
6870 #endif /* GLOBAL_ASM_OP */
6871
6872 /* Default function to output code that will globalize a declaration. */
6873 void
6874 default_globalize_decl_name (FILE * stream, tree decl)
6875 {
6876 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
6877 targetm.asm_out.globalize_label (stream, name);
6878 }
6879
6880 /* Default function to output a label for unwind information. The
6881 default is to do nothing. A target that needs nonlocal labels for
6882 unwind information must provide its own function to do this. */
6883 void
6884 default_emit_unwind_label (FILE * stream ATTRIBUTE_UNUSED,
6885 tree decl ATTRIBUTE_UNUSED,
6886 int for_eh ATTRIBUTE_UNUSED,
6887 int empty ATTRIBUTE_UNUSED)
6888 {
6889 }
6890
6891 /* Default function to output a label to divide up the exception table.
6892 The default is to do nothing. A target that needs/wants to divide
6893 up the table must provide it's own function to do this. */
6894 void
6895 default_emit_except_table_label (FILE * stream ATTRIBUTE_UNUSED)
6896 {
6897 }
6898
6899 /* This is how to output an internal numbered label where PREFIX is
6900 the class of label and LABELNO is the number within the class. */
6901
6902 void
6903 default_generate_internal_label (char *buf, const char *prefix,
6904 unsigned long labelno)
6905 {
6906 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, labelno);
6907 }
6908
6909 /* This is how to output an internal numbered label where PREFIX is
6910 the class of label and LABELNO is the number within the class. */
6911
6912 void
6913 default_internal_label (FILE *stream, const char *prefix,
6914 unsigned long labelno)
6915 {
6916 char *const buf = (char *) alloca (40 + strlen (prefix));
6917 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, labelno);
6918 ASM_OUTPUT_INTERNAL_LABEL (stream, buf);
6919 }
6920
6921
6922 /* The default implementation of ASM_DECLARE_CONSTANT_NAME. */
6923
6924 void
6925 default_asm_declare_constant_name (FILE *file, const char *name,
6926 const_tree exp ATTRIBUTE_UNUSED,
6927 HOST_WIDE_INT size ATTRIBUTE_UNUSED)
6928 {
6929 assemble_label (file, name);
6930 }
6931
6932 /* This is the default behavior at the beginning of a file. It's
6933 controlled by two other target-hook toggles. */
6934 void
6935 default_file_start (void)
6936 {
6937 if (targetm.asm_file_start_app_off
6938 && !(flag_verbose_asm || flag_debug_asm || flag_dump_rtl_in_asm))
6939 fputs (ASM_APP_OFF, asm_out_file);
6940
6941 if (targetm.asm_file_start_file_directive)
6942 output_file_directive (asm_out_file, main_input_filename);
6943 }
6944
6945 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
6946 which emits a special section directive used to indicate whether or
6947 not this object file needs an executable stack. This is primarily
6948 a GNU extension to ELF but could be used on other targets. */
6949
6950 int trampolines_created;
6951
6952 void
6953 file_end_indicate_exec_stack (void)
6954 {
6955 unsigned int flags = SECTION_DEBUG;
6956 if (trampolines_created)
6957 flags |= SECTION_CODE;
6958
6959 switch_to_section (get_section (".note.GNU-stack", flags, NULL));
6960 }
6961
6962 /* Emit a special section directive to indicate that this object file
6963 was compiled with -fsplit-stack. This is used to let the linker
6964 detect calls between split-stack code and non-split-stack code, so
6965 that it can modify the split-stack code to allocate a sufficiently
6966 large stack. We emit another special section if there are any
6967 functions in this file which have the no_split_stack attribute, to
6968 prevent the linker from warning about being unable to convert the
6969 functions if they call non-split-stack code. */
6970
6971 void
6972 file_end_indicate_split_stack (void)
6973 {
6974 if (flag_split_stack)
6975 {
6976 switch_to_section (get_section (".note.GNU-split-stack", SECTION_DEBUG,
6977 NULL));
6978 if (saw_no_split_stack)
6979 switch_to_section (get_section (".note.GNU-no-split-stack",
6980 SECTION_DEBUG, NULL));
6981 }
6982 }
6983
6984 /* Output DIRECTIVE (a C string) followed by a newline. This is used as
6985 a get_unnamed_section callback. */
6986
6987 void
6988 output_section_asm_op (const void *directive)
6989 {
6990 fprintf (asm_out_file, "%s\n", (const char *) directive);
6991 }
6992
6993 /* Emit assembly code to switch to section NEW_SECTION. Do nothing if
6994 the current section is NEW_SECTION. */
6995
6996 void
6997 switch_to_section (section *new_section)
6998 {
6999 if (in_section == new_section)
7000 return;
7001
7002 if (new_section->common.flags & SECTION_FORGET)
7003 in_section = NULL;
7004 else
7005 in_section = new_section;
7006
7007 switch (SECTION_STYLE (new_section))
7008 {
7009 case SECTION_NAMED:
7010 targetm.asm_out.named_section (new_section->named.name,
7011 new_section->named.common.flags,
7012 new_section->named.decl);
7013 break;
7014
7015 case SECTION_UNNAMED:
7016 new_section->unnamed.callback (new_section->unnamed.data);
7017 break;
7018
7019 case SECTION_NOSWITCH:
7020 gcc_unreachable ();
7021 break;
7022 }
7023
7024 new_section->common.flags |= SECTION_DECLARED;
7025 }
7026
7027 /* If block symbol SYMBOL has not yet been assigned an offset, place
7028 it at the end of its block. */
7029
7030 void
7031 place_block_symbol (rtx symbol)
7032 {
7033 unsigned HOST_WIDE_INT size, mask, offset;
7034 struct constant_descriptor_rtx *desc;
7035 unsigned int alignment;
7036 struct object_block *block;
7037 tree decl;
7038
7039 gcc_assert (SYMBOL_REF_BLOCK (symbol));
7040 if (SYMBOL_REF_BLOCK_OFFSET (symbol) >= 0)
7041 return;
7042
7043 /* Work out the symbol's size and alignment. */
7044 if (CONSTANT_POOL_ADDRESS_P (symbol))
7045 {
7046 desc = SYMBOL_REF_CONSTANT (symbol);
7047 alignment = desc->align;
7048 size = GET_MODE_SIZE (desc->mode);
7049 }
7050 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
7051 {
7052 decl = SYMBOL_REF_DECL (symbol);
7053 alignment = DECL_ALIGN (decl);
7054 size = get_constant_size (DECL_INITIAL (decl));
7055 if ((flag_sanitize & SANITIZE_ADDRESS)
7056 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
7057 && asan_protect_global (DECL_INITIAL (decl)))
7058 size += asan_red_zone_size (size);
7059 }
7060 else
7061 {
7062 decl = SYMBOL_REF_DECL (symbol);
7063 alignment = get_variable_align (decl);
7064 size = tree_to_uhwi (DECL_SIZE_UNIT (decl));
7065 if ((flag_sanitize & SANITIZE_ADDRESS)
7066 && asan_protect_global (decl))
7067 {
7068 size += asan_red_zone_size (size);
7069 alignment = MAX (alignment,
7070 ASAN_RED_ZONE_SIZE * BITS_PER_UNIT);
7071 }
7072 }
7073
7074 /* Calculate the object's offset from the start of the block. */
7075 block = SYMBOL_REF_BLOCK (symbol);
7076 mask = alignment / BITS_PER_UNIT - 1;
7077 offset = (block->size + mask) & ~mask;
7078 SYMBOL_REF_BLOCK_OFFSET (symbol) = offset;
7079
7080 /* Record the block's new alignment and size. */
7081 block->alignment = MAX (block->alignment, alignment);
7082 block->size = offset + size;
7083
7084 vec_safe_push (block->objects, symbol);
7085 }
7086
7087 /* Return the anchor that should be used to address byte offset OFFSET
7088 from the first object in BLOCK. MODEL is the TLS model used
7089 to access it. */
7090
7091 rtx
7092 get_section_anchor (struct object_block *block, HOST_WIDE_INT offset,
7093 enum tls_model model)
7094 {
7095 char label[100];
7096 unsigned int begin, middle, end;
7097 unsigned HOST_WIDE_INT min_offset, max_offset, range, bias, delta;
7098 rtx anchor;
7099
7100 /* Work out the anchor's offset. Use an offset of 0 for the first
7101 anchor so that we don't pessimize the case where we take the address
7102 of a variable at the beginning of the block. This is particularly
7103 useful when a block has only one variable assigned to it.
7104
7105 We try to place anchors RANGE bytes apart, so there can then be
7106 anchors at +/-RANGE, +/-2 * RANGE, and so on, up to the limits of
7107 a ptr_mode offset. With some target settings, the lowest such
7108 anchor might be out of range for the lowest ptr_mode offset;
7109 likewise the highest anchor for the highest offset. Use anchors
7110 at the extreme ends of the ptr_mode range in such cases.
7111
7112 All arithmetic uses unsigned integers in order to avoid
7113 signed overflow. */
7114 max_offset = (unsigned HOST_WIDE_INT) targetm.max_anchor_offset;
7115 min_offset = (unsigned HOST_WIDE_INT) targetm.min_anchor_offset;
7116 range = max_offset - min_offset + 1;
7117 if (range == 0)
7118 offset = 0;
7119 else
7120 {
7121 bias = 1 << (GET_MODE_BITSIZE (ptr_mode) - 1);
7122 if (offset < 0)
7123 {
7124 delta = -(unsigned HOST_WIDE_INT) offset + max_offset;
7125 delta -= delta % range;
7126 if (delta > bias)
7127 delta = bias;
7128 offset = (HOST_WIDE_INT) (-delta);
7129 }
7130 else
7131 {
7132 delta = (unsigned HOST_WIDE_INT) offset - min_offset;
7133 delta -= delta % range;
7134 if (delta > bias - 1)
7135 delta = bias - 1;
7136 offset = (HOST_WIDE_INT) delta;
7137 }
7138 }
7139
7140 /* Do a binary search to see if there's already an anchor we can use.
7141 Set BEGIN to the new anchor's index if not. */
7142 begin = 0;
7143 end = vec_safe_length (block->anchors);
7144 while (begin != end)
7145 {
7146 middle = (end + begin) / 2;
7147 anchor = (*block->anchors)[middle];
7148 if (SYMBOL_REF_BLOCK_OFFSET (anchor) > offset)
7149 end = middle;
7150 else if (SYMBOL_REF_BLOCK_OFFSET (anchor) < offset)
7151 begin = middle + 1;
7152 else if (SYMBOL_REF_TLS_MODEL (anchor) > model)
7153 end = middle;
7154 else if (SYMBOL_REF_TLS_MODEL (anchor) < model)
7155 begin = middle + 1;
7156 else
7157 return anchor;
7158 }
7159
7160 /* Create a new anchor with a unique label. */
7161 ASM_GENERATE_INTERNAL_LABEL (label, "LANCHOR", anchor_labelno++);
7162 anchor = create_block_symbol (ggc_strdup (label), block, offset);
7163 SYMBOL_REF_FLAGS (anchor) |= SYMBOL_FLAG_LOCAL | SYMBOL_FLAG_ANCHOR;
7164 SYMBOL_REF_FLAGS (anchor) |= model << SYMBOL_FLAG_TLS_SHIFT;
7165
7166 /* Insert it at index BEGIN. */
7167 vec_safe_insert (block->anchors, begin, anchor);
7168 return anchor;
7169 }
7170
7171 /* Output the objects in BLOCK. */
7172
7173 static void
7174 output_object_block (struct object_block *block)
7175 {
7176 struct constant_descriptor_rtx *desc;
7177 unsigned int i;
7178 HOST_WIDE_INT offset;
7179 tree decl;
7180 rtx symbol;
7181
7182 if (!block->objects)
7183 return;
7184
7185 /* Switch to the section and make sure that the first byte is
7186 suitably aligned. */
7187 switch_to_section (block->sect);
7188 assemble_align (block->alignment);
7189
7190 /* Define the values of all anchors relative to the current section
7191 position. */
7192 FOR_EACH_VEC_SAFE_ELT (block->anchors, i, symbol)
7193 targetm.asm_out.output_anchor (symbol);
7194
7195 /* Output the objects themselves. */
7196 offset = 0;
7197 FOR_EACH_VEC_ELT (*block->objects, i, symbol)
7198 {
7199 /* Move to the object's offset, padding with zeros if necessary. */
7200 assemble_zeros (SYMBOL_REF_BLOCK_OFFSET (symbol) - offset);
7201 offset = SYMBOL_REF_BLOCK_OFFSET (symbol);
7202 if (CONSTANT_POOL_ADDRESS_P (symbol))
7203 {
7204 desc = SYMBOL_REF_CONSTANT (symbol);
7205 output_constant_pool_1 (desc, 1);
7206 offset += GET_MODE_SIZE (desc->mode);
7207 }
7208 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
7209 {
7210 HOST_WIDE_INT size;
7211 decl = SYMBOL_REF_DECL (symbol);
7212 assemble_constant_contents (DECL_INITIAL (decl), XSTR (symbol, 0),
7213 DECL_ALIGN (decl));
7214 size = get_constant_size (DECL_INITIAL (decl));
7215 offset += size;
7216 if ((flag_sanitize & SANITIZE_ADDRESS)
7217 && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
7218 && asan_protect_global (DECL_INITIAL (decl)))
7219 {
7220 size = asan_red_zone_size (size);
7221 assemble_zeros (size);
7222 offset += size;
7223 }
7224 }
7225 else
7226 {
7227 HOST_WIDE_INT size;
7228 decl = SYMBOL_REF_DECL (symbol);
7229 assemble_variable_contents (decl, XSTR (symbol, 0), false);
7230 size = tree_to_uhwi (DECL_SIZE_UNIT (decl));
7231 offset += size;
7232 if ((flag_sanitize & SANITIZE_ADDRESS)
7233 && asan_protect_global (decl))
7234 {
7235 size = asan_red_zone_size (size);
7236 assemble_zeros (size);
7237 offset += size;
7238 }
7239 }
7240 }
7241 }
7242
7243 /* A htab_traverse callback used to call output_object_block for
7244 each member of object_block_htab. */
7245
7246 static int
7247 output_object_block_htab (void **slot, void *data ATTRIBUTE_UNUSED)
7248 {
7249 output_object_block ((struct object_block *) (*slot));
7250 return 1;
7251 }
7252
7253 /* Output the definitions of all object_blocks. */
7254
7255 void
7256 output_object_blocks (void)
7257 {
7258 htab_traverse (object_block_htab, output_object_block_htab, NULL);
7259 }
7260
7261 /* This function provides a possible implementation of the
7262 TARGET_ASM_RECORD_GCC_SWITCHES target hook for ELF targets. When triggered
7263 by -frecord-gcc-switches it creates a new mergeable, string section in the
7264 assembler output file called TARGET_ASM_RECORD_GCC_SWITCHES_SECTION which
7265 contains the switches in ASCII format.
7266
7267 FIXME: This code does not correctly handle double quote characters
7268 that appear inside strings, (it strips them rather than preserving them).
7269 FIXME: ASM_OUTPUT_ASCII, as defined in config/elfos.h will not emit NUL
7270 characters - instead it treats them as sub-string separators. Since
7271 we want to emit NUL strings terminators into the object file we have to use
7272 ASM_OUTPUT_SKIP. */
7273
7274 int
7275 elf_record_gcc_switches (print_switch_type type, const char * name)
7276 {
7277 switch (type)
7278 {
7279 case SWITCH_TYPE_PASSED:
7280 ASM_OUTPUT_ASCII (asm_out_file, name, strlen (name));
7281 ASM_OUTPUT_SKIP (asm_out_file, (unsigned HOST_WIDE_INT) 1);
7282 break;
7283
7284 case SWITCH_TYPE_DESCRIPTIVE:
7285 if (name == NULL)
7286 {
7287 /* Distinguish between invocations where name is NULL. */
7288 static bool started = false;
7289
7290 if (!started)
7291 {
7292 section * sec;
7293
7294 sec = get_section (targetm.asm_out.record_gcc_switches_section,
7295 SECTION_DEBUG
7296 | SECTION_MERGE
7297 | SECTION_STRINGS
7298 | (SECTION_ENTSIZE & 1),
7299 NULL);
7300 switch_to_section (sec);
7301 started = true;
7302 }
7303 }
7304
7305 default:
7306 break;
7307 }
7308
7309 /* The return value is currently ignored by the caller, but must be 0.
7310 For -fverbose-asm the return value would be the number of characters
7311 emitted into the assembler file. */
7312 return 0;
7313 }
7314
7315 /* Emit text to declare externally defined symbols. It is needed to
7316 properly support non-default visibility. */
7317 void
7318 default_elf_asm_output_external (FILE *file ATTRIBUTE_UNUSED,
7319 tree decl,
7320 const char *name ATTRIBUTE_UNUSED)
7321 {
7322 /* We output the name if and only if TREE_SYMBOL_REFERENCED is
7323 set in order to avoid putting out names that are never really
7324 used. */
7325 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))
7326 && targetm.binds_local_p (decl))
7327 maybe_assemble_visibility (decl);
7328 }
7329
7330 /* The default hook for TARGET_ASM_OUTPUT_SOURCE_FILENAME. */
7331
7332 void
7333 default_asm_output_source_filename (FILE *file, const char *name)
7334 {
7335 #ifdef ASM_OUTPUT_SOURCE_FILENAME
7336 ASM_OUTPUT_SOURCE_FILENAME (file, name);
7337 #else
7338 fprintf (file, "\t.file\t");
7339 output_quoted_string (file, name);
7340 putc ('\n', file);
7341 #endif
7342 }
7343
7344 /* Output a file name in the form wanted by System V. */
7345
7346 void
7347 output_file_directive (FILE *asm_file, const char *input_name)
7348 {
7349 int len;
7350 const char *na;
7351
7352 if (input_name == NULL)
7353 input_name = "<stdin>";
7354 else
7355 input_name = remap_debug_filename (input_name);
7356
7357 len = strlen (input_name);
7358 na = input_name + len;
7359
7360 /* NA gets INPUT_NAME sans directory names. */
7361 while (na > input_name)
7362 {
7363 if (IS_DIR_SEPARATOR (na[-1]))
7364 break;
7365 na--;
7366 }
7367
7368 targetm.asm_out.output_source_filename (asm_file, na);
7369 }
7370
7371 /* Create a DEBUG_EXPR_DECL / DEBUG_EXPR pair from RTL expression
7372 EXP. */
7373 rtx
7374 make_debug_expr_from_rtl (const_rtx exp)
7375 {
7376 tree ddecl = make_node (DEBUG_EXPR_DECL), type;
7377 enum machine_mode mode = GET_MODE (exp);
7378 rtx dval;
7379
7380 DECL_ARTIFICIAL (ddecl) = 1;
7381 if (REG_P (exp) && REG_EXPR (exp))
7382 type = TREE_TYPE (REG_EXPR (exp));
7383 else if (MEM_P (exp) && MEM_EXPR (exp))
7384 type = TREE_TYPE (MEM_EXPR (exp));
7385 else
7386 type = NULL_TREE;
7387 if (type && TYPE_MODE (type) == mode)
7388 TREE_TYPE (ddecl) = type;
7389 else
7390 TREE_TYPE (ddecl) = lang_hooks.types.type_for_mode (mode, 1);
7391 DECL_MODE (ddecl) = mode;
7392 dval = gen_rtx_DEBUG_EXPR (mode);
7393 DEBUG_EXPR_TREE_DECL (dval) = ddecl;
7394 SET_DECL_RTL (ddecl, dval);
7395 return dval;
7396 }
7397
7398 #ifdef ELF_ASCII_ESCAPES
7399 /* Default ASM_OUTPUT_LIMITED_STRING for ELF targets. */
7400
7401 void
7402 default_elf_asm_output_limited_string (FILE *f, const char *s)
7403 {
7404 int escape;
7405 unsigned char c;
7406
7407 fputs (STRING_ASM_OP, f);
7408 putc ('"', f);
7409 while (*s != '\0')
7410 {
7411 c = *s;
7412 escape = ELF_ASCII_ESCAPES[c];
7413 switch (escape)
7414 {
7415 case 0:
7416 putc (c, f);
7417 break;
7418 case 1:
7419 /* TODO: Print in hex with fast function, important for -flto. */
7420 fprintf (f, "\\%03o", c);
7421 break;
7422 default:
7423 putc ('\\', f);
7424 putc (escape, f);
7425 break;
7426 }
7427 s++;
7428 }
7429 putc ('\"', f);
7430 putc ('\n', f);
7431 }
7432
7433 /* Default ASM_OUTPUT_ASCII for ELF targets. */
7434
7435 void
7436 default_elf_asm_output_ascii (FILE *f, const char *s, unsigned int len)
7437 {
7438 const char *limit = s + len;
7439 const char *last_null = NULL;
7440 unsigned bytes_in_chunk = 0;
7441 unsigned char c;
7442 int escape;
7443
7444 for (; s < limit; s++)
7445 {
7446 const char *p;
7447
7448 if (bytes_in_chunk >= 60)
7449 {
7450 putc ('\"', f);
7451 putc ('\n', f);
7452 bytes_in_chunk = 0;
7453 }
7454
7455 if (s > last_null)
7456 {
7457 for (p = s; p < limit && *p != '\0'; p++)
7458 continue;
7459 last_null = p;
7460 }
7461 else
7462 p = last_null;
7463
7464 if (p < limit && (p - s) <= (long) ELF_STRING_LIMIT)
7465 {
7466 if (bytes_in_chunk > 0)
7467 {
7468 putc ('\"', f);
7469 putc ('\n', f);
7470 bytes_in_chunk = 0;
7471 }
7472
7473 default_elf_asm_output_limited_string (f, s);
7474 s = p;
7475 }
7476 else
7477 {
7478 if (bytes_in_chunk == 0)
7479 fputs (ASCII_DATA_ASM_OP "\"", f);
7480
7481 c = *s;
7482 escape = ELF_ASCII_ESCAPES[c];
7483 switch (escape)
7484 {
7485 case 0:
7486 putc (c, f);
7487 bytes_in_chunk++;
7488 break;
7489 case 1:
7490 /* TODO: Print in hex with fast function, important for -flto. */
7491 fprintf (f, "\\%03o", c);
7492 bytes_in_chunk += 4;
7493 break;
7494 default:
7495 putc ('\\', f);
7496 putc (escape, f);
7497 bytes_in_chunk += 2;
7498 break;
7499 }
7500
7501 }
7502 }
7503
7504 if (bytes_in_chunk > 0)
7505 {
7506 putc ('\"', f);
7507 putc ('\n', f);
7508 }
7509 }
7510 #endif
7511
7512 static GTY(()) section *elf_init_array_section;
7513 static GTY(()) section *elf_fini_array_section;
7514
7515 static section *
7516 get_elf_initfini_array_priority_section (int priority,
7517 bool constructor_p)
7518 {
7519 section *sec;
7520 if (priority != DEFAULT_INIT_PRIORITY)
7521 {
7522 char buf[18];
7523 sprintf (buf, "%s.%.5u",
7524 constructor_p ? ".init_array" : ".fini_array",
7525 priority);
7526 sec = get_section (buf, SECTION_WRITE | SECTION_NOTYPE, NULL_TREE);
7527 }
7528 else
7529 {
7530 if (constructor_p)
7531 {
7532 if (elf_init_array_section == NULL)
7533 elf_init_array_section
7534 = get_section (".init_array",
7535 SECTION_WRITE | SECTION_NOTYPE, NULL_TREE);
7536 sec = elf_init_array_section;
7537 }
7538 else
7539 {
7540 if (elf_fini_array_section == NULL)
7541 elf_fini_array_section
7542 = get_section (".fini_array",
7543 SECTION_WRITE | SECTION_NOTYPE, NULL_TREE);
7544 sec = elf_fini_array_section;
7545 }
7546 }
7547 return sec;
7548 }
7549
7550 /* Use .init_array section for constructors. */
7551
7552 void
7553 default_elf_init_array_asm_out_constructor (rtx symbol, int priority)
7554 {
7555 section *sec = get_elf_initfini_array_priority_section (priority,
7556 true);
7557 assemble_addr_to_section (symbol, sec);
7558 }
7559
7560 /* Use .fini_array section for destructors. */
7561
7562 void
7563 default_elf_fini_array_asm_out_destructor (rtx symbol, int priority)
7564 {
7565 section *sec = get_elf_initfini_array_priority_section (priority,
7566 false);
7567 assemble_addr_to_section (symbol, sec);
7568 }
7569
7570 /* Default TARGET_ASM_OUTPUT_IDENT hook.
7571
7572 This is a bit of a cheat. The real default is a no-op, but this
7573 hook is the default for all targets with a .ident directive. */
7574
7575 void
7576 default_asm_output_ident_directive (const char *ident_str)
7577 {
7578 const char *ident_asm_op = "\t.ident\t";
7579
7580 /* If we are still in the front end, do not write out the string
7581 to asm_out_file. Instead, add a fake top-level asm statement.
7582 This allows the front ends to use this hook without actually
7583 writing to asm_out_file, to handle #ident or Pragma Ident. */
7584 if (cgraph_state == CGRAPH_STATE_PARSING)
7585 {
7586 char *buf = ACONCAT ((ident_asm_op, "\"", ident_str, "\"\n", NULL));
7587 add_asm_node (build_string (strlen (buf), buf));
7588 }
7589 else
7590 fprintf (asm_out_file, "%s\"%s\"\n", ident_asm_op, ident_str);
7591 }
7592
7593 #include "gt-varasm.h"