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