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