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