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