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