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