re PR c++/20961 (ICE on pragma weak/__attribute__((weak)))
[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
4 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 2, 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 COPYING. If not, write to the Free
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
21 02111-1307, USA. */
22
23
24 /* This file handles generation of all the assembler code
25 *except* the instructions of a function.
26 This includes declarations of variables and their initial values.
27
28 We also output the assembler code for constants stored in memory
29 and are responsible for combining constants with the same value. */
30
31 #include "config.h"
32 #include "system.h"
33 #include "coretypes.h"
34 #include "tm.h"
35 #include "rtl.h"
36 #include "tree.h"
37 #include "flags.h"
38 #include "function.h"
39 #include "expr.h"
40 #include "hard-reg-set.h"
41 #include "regs.h"
42 #include "real.h"
43 #include "output.h"
44 #include "toplev.h"
45 #include "hashtab.h"
46 #include "c-pragma.h"
47 #include "ggc.h"
48 #include "langhooks.h"
49 #include "tm_p.h"
50 #include "debug.h"
51 #include "target.h"
52 #include "tree-mudflap.h"
53 #include "cgraph.h"
54 #include "cfglayout.h"
55 #include "basic-block.h"
56
57 #ifdef XCOFF_DEBUGGING_INFO
58 #include "xcoffout.h" /* Needed for external data
59 declarations for e.g. AIX 4.x. */
60 #endif
61
62 /* The (assembler) name of the first globally-visible object output. */
63 const char *first_global_object_name;
64 const char *weak_global_object_name;
65
66 struct addr_const;
67 struct constant_descriptor_rtx;
68 struct rtx_constant_pool;
69
70 struct varasm_status GTY(())
71 {
72 /* If we're using a per-function constant pool, this is it. */
73 struct rtx_constant_pool *pool;
74
75 /* Number of tree-constants deferred during the expansion of this
76 function. */
77 unsigned int deferred_constants;
78 };
79
80 #define n_deferred_constants (cfun->varasm->deferred_constants)
81
82 /* Number for making the label on the next
83 constant that is stored in memory. */
84
85 static GTY(()) int const_labelno;
86
87 /* Carry information from ASM_DECLARE_OBJECT_NAME
88 to ASM_FINISH_DECLARE_OBJECT. */
89
90 int size_directive_output;
91
92 /* The last decl for which assemble_variable was called,
93 if it did ASM_DECLARE_OBJECT_NAME.
94 If the last call to assemble_variable didn't do that,
95 this holds 0. */
96
97 tree last_assemble_variable_decl;
98
99 /* The following global variable indicates if the first basic block
100 in a function belongs to the cold partition or not. */
101
102 bool first_function_block_is_cold;
103
104 /* We give all constants their own alias set. Perhaps redundant with
105 MEM_READONLY_P, but pre-dates it. */
106
107 static HOST_WIDE_INT const_alias_set;
108
109 static const char *strip_reg_name (const char *);
110 static int contains_pointers_p (tree);
111 #ifdef ASM_OUTPUT_EXTERNAL
112 static bool incorporeal_function_p (tree);
113 #endif
114 static void decode_addr_const (tree, struct addr_const *);
115 static hashval_t const_desc_hash (const void *);
116 static int const_desc_eq (const void *, const void *);
117 static hashval_t const_hash_1 (const tree);
118 static int compare_constant (const tree, const tree);
119 static tree copy_constant (tree);
120 static void output_constant_def_contents (rtx);
121 static void output_addressed_constants (tree);
122 static unsigned HOST_WIDE_INT array_size_for_constructor (tree);
123 static unsigned min_align (unsigned, unsigned);
124 static void output_constructor (tree, unsigned HOST_WIDE_INT, unsigned int);
125 static void globalize_decl (tree);
126 static void maybe_assemble_visibility (tree);
127 static int in_named_entry_eq (const void *, const void *);
128 static hashval_t in_named_entry_hash (const void *);
129 static void initialize_cold_section_name (void);
130 #ifdef BSS_SECTION_ASM_OP
131 #ifdef ASM_OUTPUT_BSS
132 static void asm_output_bss (FILE *, tree, const char *,
133 unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT);
134 #endif
135 #ifdef ASM_OUTPUT_ALIGNED_BSS
136 static void asm_output_aligned_bss (FILE *, tree, const char *,
137 unsigned HOST_WIDE_INT, int)
138 ATTRIBUTE_UNUSED;
139 #endif
140 #endif /* BSS_SECTION_ASM_OP */
141 static bool asm_emit_uninitialised (tree, const char*,
142 unsigned HOST_WIDE_INT,
143 unsigned HOST_WIDE_INT);
144 static void mark_weak (tree);
145 \f
146 static GTY(()) enum in_section in_section = no_section;
147 enum in_section last_text_section;
148
149 /* Return a nonzero value if DECL has a section attribute. */
150 #ifndef IN_NAMED_SECTION
151 #define IN_NAMED_SECTION(DECL) \
152 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
153 && DECL_SECTION_NAME (DECL) != NULL_TREE)
154 #endif
155
156 /* Text of section name when in_section == in_named. */
157 static GTY(()) const char *in_named_name;
158 const char *last_text_section_name;
159
160 /* Hash table of flags that have been used for a particular named section. */
161
162 struct in_named_entry GTY(())
163 {
164 const char *name;
165 unsigned int flags;
166 bool declared;
167 };
168
169 static GTY((param_is (struct in_named_entry))) htab_t in_named_htab;
170
171 /* Define functions like text_section for any extra sections. */
172 #ifdef EXTRA_SECTION_FUNCTIONS
173 EXTRA_SECTION_FUNCTIONS
174 #endif
175
176 static void
177 initialize_cold_section_name (void)
178 {
179 const char *name;
180 const char *stripped_name;
181 char *buffer;
182 int len;
183
184 if (cfun
185 && current_function_decl)
186 {
187 if (!cfun->unlikely_text_section_name)
188 {
189 if (flag_function_sections
190 && DECL_SECTION_NAME (current_function_decl))
191 {
192 name = xstrdup (TREE_STRING_POINTER (DECL_SECTION_NAME
193 (current_function_decl)));
194 stripped_name = targetm.strip_name_encoding (name);
195 len = strlen (stripped_name);
196 buffer = (char *) xmalloc (len + 10);
197 sprintf (buffer, "%s%s", stripped_name, "_unlikely");
198 cfun->unlikely_text_section_name = ggc_strdup (buffer);
199 free (buffer);
200 free ((char *) name);
201 }
202 else
203 cfun->unlikely_text_section_name =
204 UNLIKELY_EXECUTED_TEXT_SECTION_NAME;
205 }
206 }
207 else
208 internal_error
209 ("initialize_cold_section_name called without valid current_function_decl.");
210 }
211
212 /* Tell assembler to switch to text section. */
213
214 void
215 text_section (void)
216 {
217 if (in_section != in_text)
218 {
219 in_section = in_text;
220 last_text_section = in_text;
221 fprintf (asm_out_file, "%s\n", TEXT_SECTION_ASM_OP);
222 }
223 }
224
225 /* Tell assembler to switch to unlikely-to-be-executed text section. */
226
227 void
228 unlikely_text_section (void)
229 {
230 if (cfun)
231 {
232 if (!cfun->unlikely_text_section_name)
233 initialize_cold_section_name ();
234
235 if ((in_section != in_unlikely_executed_text)
236 && (in_section != in_named
237 || strcmp (in_named_name, cfun->unlikely_text_section_name) != 0))
238 {
239 named_section (NULL_TREE, cfun->unlikely_text_section_name, 0);
240 in_section = in_unlikely_executed_text;
241 last_text_section = in_unlikely_executed_text;
242 }
243 }
244 else
245 {
246 named_section (NULL_TREE, UNLIKELY_EXECUTED_TEXT_SECTION_NAME, 0);
247 in_section = in_unlikely_executed_text;
248 last_text_section = in_unlikely_executed_text;
249 }
250 }
251
252 /* Tell assembler to switch to data section. */
253
254 void
255 data_section (void)
256 {
257 if (in_section != in_data)
258 {
259 in_section = in_data;
260 fprintf (asm_out_file, "%s\n", DATA_SECTION_ASM_OP);
261 }
262 }
263
264 /* Tell assembler to switch to read-only data section. This is normally
265 the text section. */
266
267 void
268 readonly_data_section (void)
269 {
270 #ifdef READONLY_DATA_SECTION
271 READONLY_DATA_SECTION (); /* Note this can call data_section. */
272 #else
273 #ifdef READONLY_DATA_SECTION_ASM_OP
274 if (in_section != in_readonly_data)
275 {
276 in_section = in_readonly_data;
277 fputs (READONLY_DATA_SECTION_ASM_OP, asm_out_file);
278 fputc ('\n', asm_out_file);
279 }
280 #else
281 text_section ();
282 #endif
283 #endif
284 }
285
286 /* Determine if we're in the text section. */
287
288 int
289 in_text_section (void)
290 {
291 return in_section == in_text;
292 }
293
294 /* Determine if we're in the unlikely-to-be-executed text section. */
295
296 int
297 in_unlikely_text_section (void)
298 {
299 bool ret_val;
300
301 if (cfun)
302 {
303 ret_val = ((in_section == in_unlikely_executed_text)
304 || (in_section == in_named
305 && cfun->unlikely_text_section_name
306 && strcmp (in_named_name,
307 cfun->unlikely_text_section_name) == 0));
308 }
309 else
310 {
311 ret_val = ((in_section == in_unlikely_executed_text)
312 || (in_section == in_named
313 && strcmp (in_named_name,
314 UNLIKELY_EXECUTED_TEXT_SECTION_NAME) == 0));
315 }
316
317 return ret_val;
318 }
319
320 /* Determine if we're in the data section. */
321
322 int
323 in_data_section (void)
324 {
325 return in_section == in_data;
326 }
327
328 /* Helper routines for maintaining in_named_htab. */
329
330 static int
331 in_named_entry_eq (const void *p1, const void *p2)
332 {
333 const struct in_named_entry *old = p1;
334 const char *new = p2;
335
336 return strcmp (old->name, new) == 0;
337 }
338
339 static hashval_t
340 in_named_entry_hash (const void *p)
341 {
342 const struct in_named_entry *old = p;
343 return htab_hash_string (old->name);
344 }
345
346 /* If SECTION has been seen before as a named section, return the flags
347 that were used. Otherwise, return 0. Note, that 0 is a perfectly valid
348 set of flags for a section to have, so 0 does not mean that the section
349 has not been seen. */
350
351 static unsigned int
352 get_named_section_flags (const char *section)
353 {
354 struct in_named_entry **slot;
355
356 slot = (struct in_named_entry **)
357 htab_find_slot_with_hash (in_named_htab, section,
358 htab_hash_string (section), NO_INSERT);
359
360 return slot ? (*slot)->flags : 0;
361 }
362
363 /* Returns true if the section has been declared before. Sets internal
364 flag on this section in in_named_hash so subsequent calls on this
365 section will return false. */
366
367 bool
368 named_section_first_declaration (const char *name)
369 {
370 struct in_named_entry **slot;
371
372 slot = (struct in_named_entry **)
373 htab_find_slot_with_hash (in_named_htab, name,
374 htab_hash_string (name), NO_INSERT);
375 if (! (*slot)->declared)
376 {
377 (*slot)->declared = true;
378 return true;
379 }
380 else
381 {
382 return false;
383 }
384 }
385
386
387 /* Record FLAGS for SECTION. If SECTION was previously recorded with a
388 different set of flags, return false. */
389
390 bool
391 set_named_section_flags (const char *section, unsigned int flags)
392 {
393 struct in_named_entry **slot, *entry;
394
395 slot = (struct in_named_entry **)
396 htab_find_slot_with_hash (in_named_htab, section,
397 htab_hash_string (section), INSERT);
398 entry = *slot;
399
400 if (!entry)
401 {
402 entry = ggc_alloc (sizeof (*entry));
403 *slot = entry;
404 entry->name = ggc_strdup (section);
405 entry->flags = flags;
406 entry->declared = false;
407 }
408 else if (entry->flags != flags)
409 return false;
410
411 return true;
412 }
413
414 /* Tell assembler to change to section NAME with attributes FLAGS. If
415 DECL is non-NULL, it is the VAR_DECL or FUNCTION_DECL with which
416 this section is associated. */
417
418 void
419 named_section_real (const char *name, unsigned int flags, tree decl)
420 {
421 if (in_section != in_named || strcmp (name, in_named_name) != 0)
422 {
423 bool unchanged = set_named_section_flags (name, flags);
424
425 gcc_assert (unchanged);
426
427 targetm.asm_out.named_section (name, flags, decl);
428
429 if (flags & SECTION_FORGET)
430 in_section = no_section;
431 else
432 {
433 in_named_name = ggc_strdup (name);
434 in_section = in_named;
435 }
436 }
437
438 if (in_text_section () || in_unlikely_text_section ())
439 {
440 last_text_section = in_section;
441 last_text_section_name = name;
442 }
443 }
444
445 /* Tell assembler to change to section NAME for DECL.
446 If DECL is NULL, just switch to section NAME.
447 If NAME is NULL, get the name from DECL.
448 If RELOC is 1, the initializer for DECL contains relocs. */
449
450 void
451 named_section (tree decl, const char *name, int reloc)
452 {
453 unsigned int flags;
454
455 gcc_assert (!decl || DECL_P (decl));
456 if (name == NULL)
457 name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
458
459 if (strcmp (name, UNLIKELY_EXECUTED_TEXT_SECTION_NAME) == 0
460 && cfun
461 && ! cfun->unlikely_text_section_name)
462 cfun->unlikely_text_section_name = UNLIKELY_EXECUTED_TEXT_SECTION_NAME;
463
464 flags = targetm.section_type_flags (decl, name, reloc);
465
466 /* Sanity check user variables for flag changes. Non-user
467 section flag changes will die in named_section_flags.
468 However, don't complain if SECTION_OVERRIDE is set.
469 We trust that the setter knows that it is safe to ignore
470 the default flags for this decl. */
471 if (decl && ! set_named_section_flags (name, flags))
472 {
473 flags = get_named_section_flags (name);
474 if ((flags & SECTION_OVERRIDE) == 0)
475 error ("%J%D causes a section type conflict", decl, decl);
476 }
477
478 named_section_real (name, flags, decl);
479 }
480
481 /* If required, set DECL_SECTION_NAME to a unique name. */
482
483 void
484 resolve_unique_section (tree decl, int reloc ATTRIBUTE_UNUSED,
485 int flag_function_or_data_sections)
486 {
487 if (DECL_SECTION_NAME (decl) == NULL_TREE
488 && targetm.have_named_sections
489 && (flag_function_or_data_sections
490 || DECL_ONE_ONLY (decl)))
491 targetm.asm_out.unique_section (decl, reloc);
492 }
493
494 #ifdef BSS_SECTION_ASM_OP
495
496 /* Tell the assembler to switch to the bss section. */
497
498 void
499 bss_section (void)
500 {
501 if (in_section != in_bss)
502 {
503 fprintf (asm_out_file, "%s\n", BSS_SECTION_ASM_OP);
504 in_section = in_bss;
505 }
506 }
507
508 #ifdef ASM_OUTPUT_BSS
509
510 /* Utility function for ASM_OUTPUT_BSS for targets to use if
511 they don't support alignments in .bss.
512 ??? It is believed that this function will work in most cases so such
513 support is localized here. */
514
515 static void
516 asm_output_bss (FILE *file, tree decl ATTRIBUTE_UNUSED,
517 const char *name,
518 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
519 unsigned HOST_WIDE_INT rounded)
520 {
521 targetm.asm_out.globalize_label (file, name);
522 bss_section ();
523 #ifdef ASM_DECLARE_OBJECT_NAME
524 last_assemble_variable_decl = decl;
525 ASM_DECLARE_OBJECT_NAME (file, name, decl);
526 #else
527 /* Standard thing is just output label for the object. */
528 ASM_OUTPUT_LABEL (file, name);
529 #endif /* ASM_DECLARE_OBJECT_NAME */
530 ASM_OUTPUT_SKIP (file, rounded ? rounded : 1);
531 }
532
533 #endif
534
535 #ifdef ASM_OUTPUT_ALIGNED_BSS
536
537 /* Utility function for targets to use in implementing
538 ASM_OUTPUT_ALIGNED_BSS.
539 ??? It is believed that this function will work in most cases so such
540 support is localized here. */
541
542 static void
543 asm_output_aligned_bss (FILE *file, tree decl ATTRIBUTE_UNUSED,
544 const char *name, unsigned HOST_WIDE_INT size,
545 int align)
546 {
547 bss_section ();
548 ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
549 #ifdef ASM_DECLARE_OBJECT_NAME
550 last_assemble_variable_decl = decl;
551 ASM_DECLARE_OBJECT_NAME (file, name, decl);
552 #else
553 /* Standard thing is just output label for the object. */
554 ASM_OUTPUT_LABEL (file, name);
555 #endif /* ASM_DECLARE_OBJECT_NAME */
556 ASM_OUTPUT_SKIP (file, size ? size : 1);
557 }
558
559 #endif
560
561 #endif /* BSS_SECTION_ASM_OP */
562
563 /* Switch to the section for function DECL.
564
565 If DECL is NULL_TREE, switch to the text section. We can be passed
566 NULL_TREE under some circumstances by dbxout.c at least. */
567
568 void
569 function_section (tree decl)
570 {
571 int reloc = 0;
572
573 if (first_function_block_is_cold)
574 reloc = 1;
575
576 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
577 targetm.asm_out.select_section (decl, reloc, DECL_ALIGN (decl));
578 #else
579 if (decl != NULL_TREE
580 && DECL_SECTION_NAME (decl) != NULL_TREE
581 && targetm.have_named_sections)
582 named_section (decl, (char *) 0, 0);
583 else
584 text_section ();
585 #endif
586 }
587
588 void
589 current_function_section (tree decl)
590 {
591 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
592 int reloc = 0;
593
594 if (in_unlikely_text_section ()
595 || last_text_section == in_unlikely_executed_text)
596 reloc = 1;
597
598 targetm.asm_out.select_section (decl, reloc, DECL_ALIGN (decl));
599 #else
600 if (last_text_section == in_unlikely_executed_text)
601 unlikely_text_section ();
602 else if (last_text_section == in_text)
603 text_section ();
604 else if (last_text_section == in_named
605 && targetm.have_named_sections)
606 named_section (NULL_TREE, last_text_section_name, 0);
607 else
608 function_section (decl);
609 #endif
610 }
611
612 /* Switch to read-only data section associated with function DECL. */
613
614 void
615 default_function_rodata_section (tree decl)
616 {
617 if (decl != NULL_TREE && DECL_SECTION_NAME (decl))
618 {
619 const char *name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
620
621 /* For .gnu.linkonce.t.foo we want to use .gnu.linkonce.r.foo. */
622 if (DECL_ONE_ONLY (decl) && strncmp (name, ".gnu.linkonce.t.", 16) == 0)
623 {
624 size_t len = strlen (name) + 1;
625 char *rname = alloca (len);
626
627 memcpy (rname, name, len);
628 rname[14] = 'r';
629 named_section_real (rname, SECTION_LINKONCE, decl);
630 return;
631 }
632 /* For .text.foo we want to use .rodata.foo. */
633 else if (flag_function_sections && flag_data_sections
634 && strncmp (name, ".text.", 6) == 0)
635 {
636 size_t len = strlen (name) + 1;
637 char *rname = alloca (len + 2);
638
639 memcpy (rname, ".rodata", 7);
640 memcpy (rname + 7, name + 5, len - 5);
641 named_section_flags (rname, 0);
642 return;
643 }
644 }
645
646 readonly_data_section ();
647 }
648
649 /* Switch to read-only data section associated with function DECL
650 for targets where that section should be always the single
651 readonly data section. */
652
653 void
654 default_no_function_rodata_section (tree decl ATTRIBUTE_UNUSED)
655 {
656 readonly_data_section ();
657 }
658
659 /* Switch to section for variable DECL. RELOC is the same as the
660 argument to SELECT_SECTION. */
661
662 void
663 variable_section (tree decl, int reloc)
664 {
665 if (IN_NAMED_SECTION (decl))
666 named_section (decl, NULL, reloc);
667 else
668 targetm.asm_out.select_section (decl, reloc, DECL_ALIGN (decl));
669 }
670
671 /* Tell assembler to switch to the section for string merging. */
672
673 void
674 mergeable_string_section (tree decl ATTRIBUTE_UNUSED,
675 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
676 unsigned int flags ATTRIBUTE_UNUSED)
677 {
678 if (HAVE_GAS_SHF_MERGE && flag_merge_constants
679 && TREE_CODE (decl) == STRING_CST
680 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
681 && align <= 256
682 && TREE_STRING_LENGTH (decl) >= int_size_in_bytes (TREE_TYPE (decl)))
683 {
684 enum machine_mode mode;
685 unsigned int modesize;
686 const char *str;
687 int i, j, len, unit;
688 char name[30];
689
690 mode = TYPE_MODE (TREE_TYPE (TREE_TYPE (decl)));
691 modesize = GET_MODE_BITSIZE (mode);
692 if (modesize >= 8 && modesize <= 256
693 && (modesize & (modesize - 1)) == 0)
694 {
695 if (align < modesize)
696 align = modesize;
697
698 str = TREE_STRING_POINTER (decl);
699 len = TREE_STRING_LENGTH (decl);
700 unit = GET_MODE_SIZE (mode);
701
702 /* Check for embedded NUL characters. */
703 for (i = 0; i < len; i += unit)
704 {
705 for (j = 0; j < unit; j++)
706 if (str[i + j] != '\0')
707 break;
708 if (j == unit)
709 break;
710 }
711 if (i == len - unit)
712 {
713 sprintf (name, ".rodata.str%d.%d", modesize / 8,
714 (int) (align / 8));
715 flags |= (modesize / 8) | SECTION_MERGE | SECTION_STRINGS;
716 if (!i && modesize < align)
717 {
718 /* A "" string with requested alignment greater than
719 character size might cause a problem:
720 if some other string required even bigger
721 alignment than "", then linker might think the
722 "" is just part of padding after some other string
723 and not put it into the hash table initially.
724 But this means "" could have smaller alignment
725 than requested. */
726 #ifdef ASM_OUTPUT_SECTION_START
727 named_section_flags (name, flags);
728 ASM_OUTPUT_SECTION_START (asm_out_file);
729 #else
730 readonly_data_section ();
731 #endif
732 return;
733 }
734
735 named_section_flags (name, flags);
736 return;
737 }
738 }
739 }
740
741 readonly_data_section ();
742 }
743
744 /* Tell assembler to switch to the section for constant merging. */
745
746 void
747 mergeable_constant_section (enum machine_mode mode ATTRIBUTE_UNUSED,
748 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
749 unsigned int flags ATTRIBUTE_UNUSED)
750 {
751 unsigned int modesize = GET_MODE_BITSIZE (mode);
752
753 if (HAVE_GAS_SHF_MERGE && flag_merge_constants
754 && mode != VOIDmode
755 && mode != BLKmode
756 && modesize <= align
757 && align >= 8
758 && align <= 256
759 && (align & (align - 1)) == 0)
760 {
761 char name[24];
762
763 sprintf (name, ".rodata.cst%d", (int) (align / 8));
764 flags |= (align / 8) | SECTION_MERGE;
765 named_section_flags (name, flags);
766 return;
767 }
768
769 readonly_data_section ();
770 }
771 \f
772 /* Given NAME, a putative register name, discard any customary prefixes. */
773
774 static const char *
775 strip_reg_name (const char *name)
776 {
777 #ifdef REGISTER_PREFIX
778 if (!strncmp (name, REGISTER_PREFIX, strlen (REGISTER_PREFIX)))
779 name += strlen (REGISTER_PREFIX);
780 #endif
781 if (name[0] == '%' || name[0] == '#')
782 name++;
783 return name;
784 }
785 \f
786 /* The user has asked for a DECL to have a particular name. Set (or
787 change) it in such a way that we don't prefix an underscore to
788 it. */
789 void
790 set_user_assembler_name (tree decl, const char *name)
791 {
792 char *starred = alloca (strlen (name) + 2);
793 starred[0] = '*';
794 strcpy (starred + 1, name);
795 change_decl_assembler_name (decl, get_identifier (starred));
796 SET_DECL_RTL (decl, NULL_RTX);
797 }
798 \f
799 /* Decode an `asm' spec for a declaration as a register name.
800 Return the register number, or -1 if nothing specified,
801 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
802 or -3 if ASMSPEC is `cc' and is not recognized,
803 or -4 if ASMSPEC is `memory' and is not recognized.
804 Accept an exact spelling or a decimal number.
805 Prefixes such as % are optional. */
806
807 int
808 decode_reg_name (const char *asmspec)
809 {
810 if (asmspec != 0)
811 {
812 int i;
813
814 /* Get rid of confusing prefixes. */
815 asmspec = strip_reg_name (asmspec);
816
817 /* Allow a decimal number as a "register name". */
818 for (i = strlen (asmspec) - 1; i >= 0; i--)
819 if (! ISDIGIT (asmspec[i]))
820 break;
821 if (asmspec[0] != 0 && i < 0)
822 {
823 i = atoi (asmspec);
824 if (i < FIRST_PSEUDO_REGISTER && i >= 0)
825 return i;
826 else
827 return -2;
828 }
829
830 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
831 if (reg_names[i][0]
832 && ! strcmp (asmspec, strip_reg_name (reg_names[i])))
833 return i;
834
835 #ifdef ADDITIONAL_REGISTER_NAMES
836 {
837 static const struct { const char *const name; const int number; } table[]
838 = ADDITIONAL_REGISTER_NAMES;
839
840 for (i = 0; i < (int) ARRAY_SIZE (table); i++)
841 if (! strcmp (asmspec, table[i].name))
842 return table[i].number;
843 }
844 #endif /* ADDITIONAL_REGISTER_NAMES */
845
846 if (!strcmp (asmspec, "memory"))
847 return -4;
848
849 if (!strcmp (asmspec, "cc"))
850 return -3;
851
852 return -2;
853 }
854
855 return -1;
856 }
857 \f
858 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
859 have static storage duration. In other words, it should not be an
860 automatic variable, including PARM_DECLs.
861
862 There is, however, one exception: this function handles variables
863 explicitly placed in a particular register by the user.
864
865 This is never called for PARM_DECL nodes. */
866
867 void
868 make_decl_rtl (tree decl)
869 {
870 const char *name = 0;
871 int reg_number;
872 rtx x;
873
874 /* Check that we are not being given an automatic variable. */
875 gcc_assert (TREE_CODE (decl) != PARM_DECL
876 && TREE_CODE (decl) != RESULT_DECL);
877
878 /* A weak alias has TREE_PUBLIC set but not the other bits. */
879 gcc_assert (TREE_CODE (decl) != VAR_DECL
880 || TREE_STATIC (decl)
881 || TREE_PUBLIC (decl)
882 || DECL_EXTERNAL (decl)
883 || DECL_REGISTER (decl));
884
885 /* And that we were not given a type or a label. */
886 gcc_assert (TREE_CODE (decl) != TYPE_DECL
887 && TREE_CODE (decl) != LABEL_DECL);
888
889 /* For a duplicate declaration, we can be called twice on the
890 same DECL node. Don't discard the RTL already made. */
891 if (DECL_RTL_SET_P (decl))
892 {
893 /* If the old RTL had the wrong mode, fix the mode. */
894 if (GET_MODE (DECL_RTL (decl)) != DECL_MODE (decl))
895 SET_DECL_RTL (decl, adjust_address_nv (DECL_RTL (decl),
896 DECL_MODE (decl), 0));
897
898 if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
899 return;
900
901 /* ??? Another way to do this would be to maintain a hashed
902 table of such critters. Instead of adding stuff to a DECL
903 to give certain attributes to it, we could use an external
904 hash map from DECL to set of attributes. */
905
906 /* Let the target reassign the RTL if it wants.
907 This is necessary, for example, when one machine specific
908 decl attribute overrides another. */
909 targetm.encode_section_info (decl, DECL_RTL (decl), false);
910
911 /* Make this function static known to the mudflap runtime. */
912 if (flag_mudflap && TREE_CODE (decl) == VAR_DECL)
913 mudflap_enqueue_decl (decl);
914
915 return;
916 }
917
918 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
919
920 if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
921 {
922 reg_number = decode_reg_name (name);
923 /* First detect errors in declaring global registers. */
924 if (reg_number == -1)
925 error ("%Jregister name not specified for %qD", decl, decl);
926 else if (reg_number < 0)
927 error ("%Jinvalid register name for %qD", decl, decl);
928 else if (TYPE_MODE (TREE_TYPE (decl)) == BLKmode)
929 error ("%Jdata type of %qD isn%'t suitable for a register",
930 decl, decl);
931 else if (! HARD_REGNO_MODE_OK (reg_number, TYPE_MODE (TREE_TYPE (decl))))
932 error ("%Jregister specified for %qD isn%'t suitable for data type",
933 decl, decl);
934 /* Now handle properly declared static register variables. */
935 else
936 {
937 int nregs;
938
939 if (DECL_INITIAL (decl) != 0 && TREE_STATIC (decl))
940 {
941 DECL_INITIAL (decl) = 0;
942 error ("global register variable has initial value");
943 }
944 if (TREE_THIS_VOLATILE (decl))
945 warning (0, "volatile register variables don%'t "
946 "work as you might wish");
947
948 /* If the user specified one of the eliminables registers here,
949 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
950 confused with that register and be eliminated. This usage is
951 somewhat suspect... */
952
953 SET_DECL_RTL (decl, gen_rtx_raw_REG (DECL_MODE (decl), reg_number));
954 ORIGINAL_REGNO (DECL_RTL (decl)) = reg_number;
955 REG_USERVAR_P (DECL_RTL (decl)) = 1;
956
957 if (TREE_STATIC (decl))
958 {
959 /* Make this register global, so not usable for anything
960 else. */
961 #ifdef ASM_DECLARE_REGISTER_GLOBAL
962 name = IDENTIFIER_POINTER (DECL_NAME (decl));
963 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file, decl, reg_number, name);
964 #endif
965 nregs = hard_regno_nregs[reg_number][DECL_MODE (decl)];
966 while (nregs > 0)
967 globalize_reg (reg_number + --nregs);
968 }
969
970 /* As a register variable, it has no section. */
971 return;
972 }
973 }
974 /* Now handle ordinary static variables and functions (in memory).
975 Also handle vars declared register invalidly. */
976 else if (name[0] == '*')
977 {
978 #ifdef REGISTER_PREFIX
979 if (strlen (REGISTER_PREFIX) != 0)
980 {
981 reg_number = decode_reg_name (name);
982 if (reg_number >= 0 || reg_number == -3)
983 error ("%Jregister name given for non-register variable %qD", decl, decl);
984 }
985 #endif
986 }
987
988 /* Specifying a section attribute on a variable forces it into a
989 non-.bss section, and thus it cannot be common. */
990 if (TREE_CODE (decl) == VAR_DECL
991 && DECL_SECTION_NAME (decl) != NULL_TREE
992 && DECL_INITIAL (decl) == NULL_TREE
993 && DECL_COMMON (decl))
994 DECL_COMMON (decl) = 0;
995
996 /* Variables can't be both common and weak. */
997 if (TREE_CODE (decl) == VAR_DECL && DECL_WEAK (decl))
998 DECL_COMMON (decl) = 0;
999
1000 x = gen_rtx_SYMBOL_REF (Pmode, name);
1001 SYMBOL_REF_WEAK (x) = DECL_WEAK (decl);
1002 SYMBOL_REF_DECL (x) = decl;
1003
1004 x = gen_rtx_MEM (DECL_MODE (decl), x);
1005 if (TREE_CODE (decl) != FUNCTION_DECL)
1006 set_mem_attributes (x, decl, 1);
1007 SET_DECL_RTL (decl, x);
1008
1009 /* Optionally set flags or add text to the name to record information
1010 such as that it is a function name.
1011 If the name is changed, the macro ASM_OUTPUT_LABELREF
1012 will have to know how to strip this information. */
1013 targetm.encode_section_info (decl, DECL_RTL (decl), true);
1014
1015 /* Make this function static known to the mudflap runtime. */
1016 if (flag_mudflap && TREE_CODE (decl) == VAR_DECL)
1017 mudflap_enqueue_decl (decl);
1018 }
1019
1020 /* Make the rtl for variable VAR be volatile.
1021 Use this only for static variables. */
1022
1023 void
1024 make_var_volatile (tree var)
1025 {
1026 gcc_assert (MEM_P (DECL_RTL (var)));
1027
1028 MEM_VOLATILE_P (DECL_RTL (var)) = 1;
1029 }
1030 \f
1031 /* Output a string of literal assembler code
1032 for an `asm' keyword used between functions. */
1033
1034 void
1035 assemble_asm (tree string)
1036 {
1037 app_enable ();
1038
1039 if (TREE_CODE (string) == ADDR_EXPR)
1040 string = TREE_OPERAND (string, 0);
1041
1042 fprintf (asm_out_file, "\t%s\n", TREE_STRING_POINTER (string));
1043 }
1044
1045 /* Record an element in the table of global destructors. SYMBOL is
1046 a SYMBOL_REF of the function to be called; PRIORITY is a number
1047 between 0 and MAX_INIT_PRIORITY. */
1048
1049 void
1050 default_stabs_asm_out_destructor (rtx symbol ATTRIBUTE_UNUSED,
1051 int priority ATTRIBUTE_UNUSED)
1052 {
1053 #if defined DBX_DEBUGGING_INFO || defined XCOFF_DEBUGGING_INFO
1054 /* Tell GNU LD that this is part of the static destructor set.
1055 This will work for any system that uses stabs, most usefully
1056 aout systems. */
1057 dbxout_begin_simple_stabs ("___DTOR_LIST__", 22 /* N_SETT */);
1058 dbxout_stab_value_label (XSTR (symbol, 0));
1059 #else
1060 sorry ("global destructors not supported on this target");
1061 #endif
1062 }
1063
1064 void
1065 default_named_section_asm_out_destructor (rtx symbol, int priority)
1066 {
1067 const char *section = ".dtors";
1068 char buf[16];
1069
1070 /* ??? This only works reliably with the GNU linker. */
1071 if (priority != DEFAULT_INIT_PRIORITY)
1072 {
1073 sprintf (buf, ".dtors.%.5u",
1074 /* Invert the numbering so the linker puts us in the proper
1075 order; constructors are run from right to left, and the
1076 linker sorts in increasing order. */
1077 MAX_INIT_PRIORITY - priority);
1078 section = buf;
1079 }
1080
1081 named_section_flags (section, SECTION_WRITE);
1082 assemble_align (POINTER_SIZE);
1083 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1084 }
1085
1086 #ifdef DTORS_SECTION_ASM_OP
1087 void
1088 dtors_section (void)
1089 {
1090 if (in_section != in_dtors)
1091 {
1092 in_section = in_dtors;
1093 fputs (DTORS_SECTION_ASM_OP, asm_out_file);
1094 fputc ('\n', asm_out_file);
1095 }
1096 }
1097
1098 void
1099 default_dtor_section_asm_out_destructor (rtx symbol,
1100 int priority ATTRIBUTE_UNUSED)
1101 {
1102 dtors_section ();
1103 assemble_align (POINTER_SIZE);
1104 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1105 }
1106 #endif
1107
1108 /* Likewise for global constructors. */
1109
1110 void
1111 default_stabs_asm_out_constructor (rtx symbol ATTRIBUTE_UNUSED,
1112 int priority ATTRIBUTE_UNUSED)
1113 {
1114 #if defined DBX_DEBUGGING_INFO || defined XCOFF_DEBUGGING_INFO
1115 /* Tell GNU LD that this is part of the static destructor set.
1116 This will work for any system that uses stabs, most usefully
1117 aout systems. */
1118 dbxout_begin_simple_stabs ("___CTOR_LIST__", 22 /* N_SETT */);
1119 dbxout_stab_value_label (XSTR (symbol, 0));
1120 #else
1121 sorry ("global constructors not supported on this target");
1122 #endif
1123 }
1124
1125 void
1126 default_named_section_asm_out_constructor (rtx symbol, int priority)
1127 {
1128 const char *section = ".ctors";
1129 char buf[16];
1130
1131 /* ??? This only works reliably with the GNU linker. */
1132 if (priority != DEFAULT_INIT_PRIORITY)
1133 {
1134 sprintf (buf, ".ctors.%.5u",
1135 /* Invert the numbering so the linker puts us in the proper
1136 order; constructors are run from right to left, and the
1137 linker sorts in increasing order. */
1138 MAX_INIT_PRIORITY - priority);
1139 section = buf;
1140 }
1141
1142 named_section_flags (section, SECTION_WRITE);
1143 assemble_align (POINTER_SIZE);
1144 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1145 }
1146
1147 #ifdef CTORS_SECTION_ASM_OP
1148 void
1149 ctors_section (void)
1150 {
1151 if (in_section != in_ctors)
1152 {
1153 in_section = in_ctors;
1154 fputs (CTORS_SECTION_ASM_OP, asm_out_file);
1155 fputc ('\n', asm_out_file);
1156 }
1157 }
1158
1159 void
1160 default_ctor_section_asm_out_constructor (rtx symbol,
1161 int priority ATTRIBUTE_UNUSED)
1162 {
1163 ctors_section ();
1164 assemble_align (POINTER_SIZE);
1165 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1166 }
1167 #endif
1168 \f
1169 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1170 a nonzero value if the constant pool should be output before the
1171 start of the function, or a zero value if the pool should output
1172 after the end of the function. The default is to put it before the
1173 start. */
1174
1175 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1176 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1177 #endif
1178
1179 /* DECL is an object (either VAR_DECL or FUNCTION_DECL) which is going
1180 to be output to assembler.
1181 Set first_global_object_name and weak_global_object_name as appropriate. */
1182
1183 void
1184 notice_global_symbol (tree decl)
1185 {
1186 const char **type = &first_global_object_name;
1187
1188 if (first_global_object_name
1189 || !TREE_PUBLIC (decl) || DECL_EXTERNAL (decl)
1190 || !DECL_NAME (decl)
1191 || (TREE_CODE (decl) != FUNCTION_DECL
1192 && (TREE_CODE (decl) != VAR_DECL
1193 || (DECL_COMMON (decl)
1194 && (DECL_INITIAL (decl) == 0
1195 || DECL_INITIAL (decl) == error_mark_node))))
1196 || !MEM_P (DECL_RTL (decl)))
1197 return;
1198
1199 /* We win when global object is found, but it is useful to know about weak
1200 symbol as well so we can produce nicer unique names. */
1201 if (DECL_WEAK (decl) || DECL_ONE_ONLY (decl))
1202 type = &weak_global_object_name;
1203
1204 if (!*type)
1205 {
1206 const char *p;
1207 char *name;
1208 rtx decl_rtl = DECL_RTL (decl);
1209
1210 p = targetm.strip_name_encoding (XSTR (XEXP (decl_rtl, 0), 0));
1211 name = xstrdup (p);
1212
1213 *type = name;
1214 }
1215 }
1216
1217 /* Output assembler code for the constant pool of a function and associated
1218 with defining the name of the function. DECL describes the function.
1219 NAME is the function's name. For the constant pool, we use the current
1220 constant pool data. */
1221
1222 void
1223 assemble_start_function (tree decl, const char *fnname)
1224 {
1225 int align;
1226 char tmp_label[100];
1227 bool hot_label_written = false;
1228
1229 cfun->unlikely_text_section_name = NULL;
1230
1231 first_function_block_is_cold = false;
1232 if (flag_reorder_blocks_and_partition)
1233 {
1234 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "HOTB", const_labelno);
1235 cfun->hot_section_label = ggc_strdup (tmp_label);
1236 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "COLDB", const_labelno);
1237 cfun->cold_section_label = ggc_strdup (tmp_label);
1238 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "HOTE", const_labelno);
1239 cfun->hot_section_end_label = ggc_strdup (tmp_label);
1240 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "COLDE", const_labelno);
1241 cfun->cold_section_end_label = ggc_strdup (tmp_label);
1242 const_labelno++;
1243 }
1244 else
1245 {
1246 cfun->hot_section_label = NULL;
1247 cfun->cold_section_label = NULL;
1248 cfun->hot_section_end_label = NULL;
1249 cfun->cold_section_end_label = NULL;
1250 }
1251
1252 /* The following code does not need preprocessing in the assembler. */
1253
1254 app_disable ();
1255
1256 if (CONSTANT_POOL_BEFORE_FUNCTION)
1257 output_constant_pool (fnname, decl);
1258
1259 /* Make sure the not and cold text (code) sections are properly
1260 aligned. This is necessary here in the case where the function
1261 has both hot and cold sections, because we don't want to re-set
1262 the alignment when the section switch happens mid-function. */
1263
1264 if (flag_reorder_blocks_and_partition)
1265 {
1266 unlikely_text_section ();
1267 assemble_align (FUNCTION_BOUNDARY);
1268 ASM_OUTPUT_LABEL (asm_out_file, cfun->cold_section_label);
1269 if (BB_PARTITION (ENTRY_BLOCK_PTR->next_bb) == BB_COLD_PARTITION)
1270 {
1271 /* Since the function starts with a cold section, we need to
1272 explicitly align the hot section and write out the hot
1273 section label. */
1274 text_section ();
1275 assemble_align (FUNCTION_BOUNDARY);
1276 ASM_OUTPUT_LABEL (asm_out_file, cfun->hot_section_label);
1277 hot_label_written = true;
1278 first_function_block_is_cold = true;
1279 }
1280 }
1281 else if (DECL_SECTION_NAME (decl))
1282 {
1283 /* Calls to function_section rely on first_function_block_is_cold
1284 being accurate. The first block may be cold even if we aren't
1285 doing partitioning, if the entire function was decided by
1286 choose_function_section (predict.c) to be cold. */
1287
1288 int i;
1289 int len;
1290 char *s;
1291
1292 initialize_cold_section_name ();
1293
1294 /* The following is necessary, because 'strcmp
1295 (TREE_STRING_POINTER (DECL_SECTION_NAME (decl)), blah)' always
1296 fails, presumably because TREE_STRING_POINTER is declared to
1297 be an array of size 1 of char. */
1298
1299 len = TREE_STRING_LENGTH (DECL_SECTION_NAME (decl));
1300 s = (char *) xmalloc (len + 1);
1301
1302 for (i = 0; i < len; i ++)
1303 s[i] = (TREE_STRING_POINTER (DECL_SECTION_NAME (decl)))[i];
1304 s[len] = '\0';
1305
1306 if (cfun->unlikely_text_section_name
1307 && (strcmp (s, cfun->unlikely_text_section_name) == 0))
1308 first_function_block_is_cold = true;
1309 }
1310
1311 last_text_section = no_section;
1312 resolve_unique_section (decl, 0, flag_function_sections);
1313
1314 /* Switch to the correct text section for the start of the function. */
1315
1316 function_section (decl);
1317 if (flag_reorder_blocks_and_partition
1318 && !hot_label_written)
1319 ASM_OUTPUT_LABEL (asm_out_file, cfun->hot_section_label);
1320
1321 /* Tell assembler to move to target machine's alignment for functions. */
1322 align = floor_log2 (FUNCTION_BOUNDARY / BITS_PER_UNIT);
1323 if (align < force_align_functions_log)
1324 align = force_align_functions_log;
1325 if (align > 0)
1326 {
1327 ASM_OUTPUT_ALIGN (asm_out_file, align);
1328 }
1329
1330 /* Handle a user-specified function alignment.
1331 Note that we still need to align to FUNCTION_BOUNDARY, as above,
1332 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1333 if (align_functions_log > align
1334 && cfun->function_frequency != FUNCTION_FREQUENCY_UNLIKELY_EXECUTED)
1335 {
1336 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1337 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file,
1338 align_functions_log, align_functions - 1);
1339 #else
1340 ASM_OUTPUT_ALIGN (asm_out_file, align_functions_log);
1341 #endif
1342 }
1343
1344 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1345 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file, fnname);
1346 #endif
1347
1348 (*debug_hooks->begin_function) (decl);
1349
1350 /* Make function name accessible from other files, if appropriate. */
1351
1352 if (TREE_PUBLIC (decl))
1353 {
1354 notice_global_symbol (decl);
1355
1356 globalize_decl (decl);
1357
1358 maybe_assemble_visibility (decl);
1359 }
1360
1361 if (DECL_PRESERVE_P (decl))
1362 targetm.asm_out.mark_decl_preserved (fnname);
1363
1364 /* Do any machine/system dependent processing of the function name. */
1365 #ifdef ASM_DECLARE_FUNCTION_NAME
1366 ASM_DECLARE_FUNCTION_NAME (asm_out_file, fnname, current_function_decl);
1367 #else
1368 /* Standard thing is just output label for the function. */
1369 ASM_OUTPUT_LABEL (asm_out_file, fnname);
1370 #endif /* ASM_DECLARE_FUNCTION_NAME */
1371
1372 insert_section_boundary_note ();
1373 }
1374
1375 /* Output assembler code associated with defining the size of the
1376 function. DECL describes the function. NAME is the function's name. */
1377
1378 void
1379 assemble_end_function (tree decl, const char *fnname)
1380 {
1381 #ifdef ASM_DECLARE_FUNCTION_SIZE
1382 ASM_DECLARE_FUNCTION_SIZE (asm_out_file, fnname, decl);
1383 #endif
1384 if (! CONSTANT_POOL_BEFORE_FUNCTION)
1385 {
1386 output_constant_pool (fnname, decl);
1387 function_section (decl); /* need to switch back */
1388 }
1389 /* Output labels for end of hot/cold text sections (to be used by
1390 debug info.) */
1391 if (flag_reorder_blocks_and_partition)
1392 {
1393 enum in_section save_text_section;
1394
1395 save_text_section = in_section;
1396 unlikely_text_section ();
1397 ASM_OUTPUT_LABEL (asm_out_file, cfun->cold_section_end_label);
1398 text_section ();
1399 ASM_OUTPUT_LABEL (asm_out_file, cfun->hot_section_end_label);
1400 if (save_text_section == in_unlikely_executed_text)
1401 unlikely_text_section ();
1402 }
1403 }
1404 \f
1405 /* Assemble code to leave SIZE bytes of zeros. */
1406
1407 void
1408 assemble_zeros (unsigned HOST_WIDE_INT size)
1409 {
1410 /* Do no output if -fsyntax-only. */
1411 if (flag_syntax_only)
1412 return;
1413
1414 #ifdef ASM_NO_SKIP_IN_TEXT
1415 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1416 so we must output 0s explicitly in the text section. */
1417 if ((ASM_NO_SKIP_IN_TEXT && in_text_section ())
1418 || (ASM_NO_SKIP_IN_TEXT && in_unlikely_text_section ()))
1419 {
1420 unsigned HOST_WIDE_INT i;
1421 for (i = 0; i < size; i++)
1422 assemble_integer (const0_rtx, 1, BITS_PER_UNIT, 1);
1423 }
1424 else
1425 #endif
1426 if (size > 0)
1427 ASM_OUTPUT_SKIP (asm_out_file, size);
1428 }
1429
1430 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1431
1432 void
1433 assemble_align (int align)
1434 {
1435 if (align > BITS_PER_UNIT)
1436 {
1437 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
1438 }
1439 }
1440
1441 /* Assemble a string constant with the specified C string as contents. */
1442
1443 void
1444 assemble_string (const char *p, int size)
1445 {
1446 int pos = 0;
1447 int maximum = 2000;
1448
1449 /* If the string is very long, split it up. */
1450
1451 while (pos < size)
1452 {
1453 int thissize = size - pos;
1454 if (thissize > maximum)
1455 thissize = maximum;
1456
1457 ASM_OUTPUT_ASCII (asm_out_file, p, thissize);
1458
1459 pos += thissize;
1460 p += thissize;
1461 }
1462 }
1463
1464 \f
1465 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1466 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1467 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1468 #else
1469 #if defined ASM_OUTPUT_ALIGNED_LOCAL
1470 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1471 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, DECL_ALIGN (decl))
1472 #else
1473 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1474 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded)
1475 #endif
1476 #endif
1477
1478 #if defined ASM_OUTPUT_ALIGNED_BSS
1479 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1480 ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1481 #else
1482 #if defined ASM_OUTPUT_BSS
1483 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1484 ASM_OUTPUT_BSS (asm_out_file, decl, name, size, rounded)
1485 #else
1486 #undef ASM_EMIT_BSS
1487 #endif
1488 #endif
1489
1490 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1491 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1492 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1493 #else
1494 #if defined ASM_OUTPUT_ALIGNED_COMMON
1495 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1496 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size, DECL_ALIGN (decl))
1497 #else
1498 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1499 ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded)
1500 #endif
1501 #endif
1502
1503 static bool
1504 asm_emit_uninitialised (tree decl, const char *name,
1505 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1506 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1507 {
1508 enum
1509 {
1510 asm_dest_common,
1511 asm_dest_bss,
1512 asm_dest_local
1513 }
1514 destination = asm_dest_local;
1515
1516 /* ??? We should handle .bss via select_section mechanisms rather than
1517 via special target hooks. That would eliminate this special case. */
1518 if (TREE_PUBLIC (decl))
1519 {
1520 if (!DECL_COMMON (decl))
1521 #ifdef ASM_EMIT_BSS
1522 destination = asm_dest_bss;
1523 #else
1524 return false;
1525 #endif
1526 else
1527 destination = asm_dest_common;
1528 }
1529
1530 if (destination != asm_dest_common)
1531 {
1532 resolve_unique_section (decl, 0, flag_data_sections);
1533 /* Custom sections don't belong here. */
1534 if (DECL_SECTION_NAME (decl))
1535 return false;
1536 }
1537
1538 if (destination == asm_dest_bss)
1539 globalize_decl (decl);
1540
1541 if (flag_shared_data)
1542 {
1543 switch (destination)
1544 {
1545 #ifdef ASM_OUTPUT_SHARED_BSS
1546 case asm_dest_bss:
1547 ASM_OUTPUT_SHARED_BSS (asm_out_file, decl, name, size, rounded);
1548 return;
1549 #endif
1550 #ifdef ASM_OUTPUT_SHARED_COMMON
1551 case asm_dest_common:
1552 ASM_OUTPUT_SHARED_COMMON (asm_out_file, name, size, rounded);
1553 return;
1554 #endif
1555 #ifdef ASM_OUTPUT_SHARED_LOCAL
1556 case asm_dest_local:
1557 ASM_OUTPUT_SHARED_LOCAL (asm_out_file, name, size, rounded);
1558 return;
1559 #endif
1560 default:
1561 break;
1562 }
1563 }
1564
1565 switch (destination)
1566 {
1567 #ifdef ASM_EMIT_BSS
1568 case asm_dest_bss:
1569 ASM_EMIT_BSS (decl, name, size, rounded);
1570 break;
1571 #endif
1572 case asm_dest_common:
1573 ASM_EMIT_COMMON (decl, name, size, rounded);
1574 break;
1575 case asm_dest_local:
1576 ASM_EMIT_LOCAL (decl, name, size, rounded);
1577 break;
1578 default:
1579 gcc_unreachable ();
1580 }
1581
1582 return true;
1583 }
1584
1585 /* Assemble everything that is needed for a variable or function declaration.
1586 Not used for automatic variables, and not used for function definitions.
1587 Should not be called for variables of incomplete structure type.
1588
1589 TOP_LEVEL is nonzero if this variable has file scope.
1590 AT_END is nonzero if this is the special handling, at end of compilation,
1591 to define things that have had only tentative definitions.
1592 DONT_OUTPUT_DATA if nonzero means don't actually output the
1593 initial value (that will be done by the caller). */
1594
1595 void
1596 assemble_variable (tree decl, int top_level ATTRIBUTE_UNUSED,
1597 int at_end ATTRIBUTE_UNUSED, int dont_output_data)
1598 {
1599 const char *name;
1600 unsigned int align;
1601 int reloc = 0;
1602 rtx decl_rtl;
1603
1604 if (lang_hooks.decls.prepare_assemble_variable)
1605 lang_hooks.decls.prepare_assemble_variable (decl);
1606
1607 last_assemble_variable_decl = 0;
1608
1609 /* Normally no need to say anything here for external references,
1610 since assemble_external is called by the language-specific code
1611 when a declaration is first seen. */
1612
1613 if (DECL_EXTERNAL (decl))
1614 return;
1615
1616 /* Output no assembler code for a function declaration.
1617 Only definitions of functions output anything. */
1618
1619 if (TREE_CODE (decl) == FUNCTION_DECL)
1620 return;
1621
1622 /* Do nothing for global register variables. */
1623 if (DECL_RTL_SET_P (decl) && REG_P (DECL_RTL (decl)))
1624 {
1625 TREE_ASM_WRITTEN (decl) = 1;
1626 return;
1627 }
1628
1629 /* If type was incomplete when the variable was declared,
1630 see if it is complete now. */
1631
1632 if (DECL_SIZE (decl) == 0)
1633 layout_decl (decl, 0);
1634
1635 /* Still incomplete => don't allocate it; treat the tentative defn
1636 (which is what it must have been) as an `extern' reference. */
1637
1638 if (!dont_output_data && DECL_SIZE (decl) == 0)
1639 {
1640 error ("%Jstorage size of %qD isn%'t known", decl, decl);
1641 TREE_ASM_WRITTEN (decl) = 1;
1642 return;
1643 }
1644
1645 /* The first declaration of a variable that comes through this function
1646 decides whether it is global (in C, has external linkage)
1647 or local (in C, has internal linkage). So do nothing more
1648 if this function has already run. */
1649
1650 if (TREE_ASM_WRITTEN (decl))
1651 return;
1652
1653 /* Make sure targetm.encode_section_info is invoked before we set
1654 ASM_WRITTEN. */
1655 decl_rtl = DECL_RTL (decl);
1656
1657 TREE_ASM_WRITTEN (decl) = 1;
1658
1659 /* Do no output if -fsyntax-only. */
1660 if (flag_syntax_only)
1661 return;
1662
1663 app_disable ();
1664
1665 if (! dont_output_data
1666 && ! host_integerp (DECL_SIZE_UNIT (decl), 1))
1667 {
1668 error ("%Jsize of variable %qD is too large", decl, decl);
1669 return;
1670 }
1671
1672 name = XSTR (XEXP (decl_rtl, 0), 0);
1673 if (TREE_PUBLIC (decl) && DECL_NAME (decl))
1674 notice_global_symbol (decl);
1675
1676 /* Compute the alignment of this data. */
1677
1678 align = DECL_ALIGN (decl);
1679
1680 /* In the case for initialing an array whose length isn't specified,
1681 where we have not yet been able to do the layout,
1682 figure out the proper alignment now. */
1683 if (dont_output_data && DECL_SIZE (decl) == 0
1684 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
1685 align = MAX (align, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
1686
1687 /* Some object file formats have a maximum alignment which they support.
1688 In particular, a.out format supports a maximum alignment of 4. */
1689 if (align > MAX_OFILE_ALIGNMENT)
1690 {
1691 warning (0, "%Jalignment of %qD is greater than maximum object "
1692 "file alignment. Using %d", decl, decl,
1693 MAX_OFILE_ALIGNMENT/BITS_PER_UNIT);
1694 align = MAX_OFILE_ALIGNMENT;
1695 }
1696
1697 /* On some machines, it is good to increase alignment sometimes. */
1698 if (! DECL_USER_ALIGN (decl))
1699 {
1700 #ifdef DATA_ALIGNMENT
1701 align = DATA_ALIGNMENT (TREE_TYPE (decl), align);
1702 #endif
1703 #ifdef CONSTANT_ALIGNMENT
1704 if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
1705 align = CONSTANT_ALIGNMENT (DECL_INITIAL (decl), align);
1706 #endif
1707 }
1708
1709 /* Reset the alignment in case we have made it tighter, so we can benefit
1710 from it in get_pointer_alignment. */
1711 DECL_ALIGN (decl) = align;
1712 set_mem_align (decl_rtl, align);
1713
1714 if (TREE_PUBLIC (decl))
1715 maybe_assemble_visibility (decl);
1716
1717 if (DECL_PRESERVE_P (decl))
1718 targetm.asm_out.mark_decl_preserved (name);
1719
1720 /* Handle uninitialized definitions. */
1721
1722 /* If the decl has been given an explicit section name, then it
1723 isn't common, and shouldn't be handled as such. */
1724 if (DECL_SECTION_NAME (decl) || dont_output_data)
1725 ;
1726 /* We don't implement common thread-local data at present. */
1727 else if (DECL_THREAD_LOCAL (decl))
1728 {
1729 if (DECL_COMMON (decl))
1730 sorry ("thread-local COMMON data not implemented");
1731 }
1732 else if (DECL_INITIAL (decl) == 0
1733 || DECL_INITIAL (decl) == error_mark_node
1734 || (flag_zero_initialized_in_bss
1735 /* Leave constant zeroes in .rodata so they can be shared. */
1736 && !TREE_READONLY (decl)
1737 && initializer_zerop (DECL_INITIAL (decl))))
1738 {
1739 unsigned HOST_WIDE_INT size = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
1740 unsigned HOST_WIDE_INT rounded = size;
1741
1742 /* Don't allocate zero bytes of common,
1743 since that means "undefined external" in the linker. */
1744 if (size == 0)
1745 rounded = 1;
1746
1747 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1748 so that each uninitialized object starts on such a boundary. */
1749 rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
1750 rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1751 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1752
1753 #if !defined(ASM_OUTPUT_ALIGNED_COMMON) && !defined(ASM_OUTPUT_ALIGNED_DECL_COMMON) && !defined(ASM_OUTPUT_ALIGNED_BSS)
1754 if ((unsigned HOST_WIDE_INT) DECL_ALIGN_UNIT (decl) > rounded)
1755 warning (0, "%Jrequested alignment for %qD is greater than "
1756 "implemented alignment of %d", decl, decl, rounded);
1757 #endif
1758
1759 /* If the target cannot output uninitialized but not common global data
1760 in .bss, then we have to use .data, so fall through. */
1761 if (asm_emit_uninitialised (decl, name, size, rounded))
1762 return;
1763 }
1764
1765 /* Handle initialized definitions.
1766 Also handle uninitialized global definitions if -fno-common and the
1767 target doesn't support ASM_OUTPUT_BSS. */
1768
1769 /* First make the assembler name(s) global if appropriate. */
1770 if (TREE_PUBLIC (decl) && DECL_NAME (decl))
1771 globalize_decl (decl);
1772
1773 /* Output any data that we will need to use the address of. */
1774 if (DECL_INITIAL (decl) == error_mark_node)
1775 reloc = contains_pointers_p (TREE_TYPE (decl)) ? 3 : 0;
1776 else if (DECL_INITIAL (decl))
1777 {
1778 reloc = compute_reloc_for_constant (DECL_INITIAL (decl));
1779 output_addressed_constants (DECL_INITIAL (decl));
1780 }
1781
1782 /* Switch to the appropriate section. */
1783 resolve_unique_section (decl, reloc, flag_data_sections);
1784 variable_section (decl, reloc);
1785
1786 /* dbxout.c needs to know this. */
1787 if (in_text_section () || in_unlikely_text_section ())
1788 DECL_IN_TEXT_SECTION (decl) = 1;
1789
1790 /* Output the alignment of this data. */
1791 if (align > BITS_PER_UNIT)
1792 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (DECL_ALIGN_UNIT (decl)));
1793
1794 /* Do any machine/system dependent processing of the object. */
1795 #ifdef ASM_DECLARE_OBJECT_NAME
1796 last_assemble_variable_decl = decl;
1797 ASM_DECLARE_OBJECT_NAME (asm_out_file, name, decl);
1798 #else
1799 /* Standard thing is just output label for the object. */
1800 ASM_OUTPUT_LABEL (asm_out_file, name);
1801 #endif /* ASM_DECLARE_OBJECT_NAME */
1802
1803 if (!dont_output_data)
1804 {
1805 if (DECL_INITIAL (decl)
1806 && DECL_INITIAL (decl) != error_mark_node
1807 && !initializer_zerop (DECL_INITIAL (decl)))
1808 /* Output the actual data. */
1809 output_constant (DECL_INITIAL (decl),
1810 tree_low_cst (DECL_SIZE_UNIT (decl), 1),
1811 align);
1812 else
1813 /* Leave space for it. */
1814 assemble_zeros (tree_low_cst (DECL_SIZE_UNIT (decl), 1));
1815 }
1816 }
1817
1818 /* Return 1 if type TYPE contains any pointers. */
1819
1820 static int
1821 contains_pointers_p (tree type)
1822 {
1823 switch (TREE_CODE (type))
1824 {
1825 case POINTER_TYPE:
1826 case REFERENCE_TYPE:
1827 /* I'm not sure whether OFFSET_TYPE needs this treatment,
1828 so I'll play safe and return 1. */
1829 case OFFSET_TYPE:
1830 return 1;
1831
1832 case RECORD_TYPE:
1833 case UNION_TYPE:
1834 case QUAL_UNION_TYPE:
1835 {
1836 tree fields;
1837 /* For a type that has fields, see if the fields have pointers. */
1838 for (fields = TYPE_FIELDS (type); fields; fields = TREE_CHAIN (fields))
1839 if (TREE_CODE (fields) == FIELD_DECL
1840 && contains_pointers_p (TREE_TYPE (fields)))
1841 return 1;
1842 return 0;
1843 }
1844
1845 case ARRAY_TYPE:
1846 /* An array type contains pointers if its element type does. */
1847 return contains_pointers_p (TREE_TYPE (type));
1848
1849 default:
1850 return 0;
1851 }
1852 }
1853
1854 /* In unit-at-a-time mode, we delay assemble_external processing until
1855 the compilation unit is finalized. This is the best we can do for
1856 right now (i.e. stage 3 of GCC 4.0) - the right thing is to delay
1857 it all the way to final. See PR 17982 for further discussion. */
1858 static GTY(()) tree pending_assemble_externals;
1859
1860 #ifdef ASM_OUTPUT_EXTERNAL
1861 /* True if DECL is a function decl for which no out-of-line copy exists.
1862 It is assumed that DECL's assembler name has been set. */
1863
1864 static bool
1865 incorporeal_function_p (tree decl)
1866 {
1867 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
1868 {
1869 const char *name;
1870
1871 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
1872 && DECL_FUNCTION_CODE (decl) == BUILT_IN_ALLOCA)
1873 return true;
1874
1875 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
1876 if (strncmp (name, "__builtin_", strlen ("__builtin_")) == 0)
1877 return true;
1878 }
1879 return false;
1880 }
1881
1882 /* Actually do the tests to determine if this is necessary, and invoke
1883 ASM_OUTPUT_EXTERNAL. */
1884 static void
1885 assemble_external_real (tree decl)
1886 {
1887 rtx rtl = DECL_RTL (decl);
1888
1889 if (MEM_P (rtl) && GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF
1890 && !SYMBOL_REF_USED (XEXP (rtl, 0))
1891 && !incorporeal_function_p (decl))
1892 {
1893 /* Some systems do require some output. */
1894 SYMBOL_REF_USED (XEXP (rtl, 0)) = 1;
1895 ASM_OUTPUT_EXTERNAL (asm_out_file, decl, XSTR (XEXP (rtl, 0), 0));
1896 }
1897 }
1898 #endif
1899
1900 void
1901 process_pending_assemble_externals (void)
1902 {
1903 #ifdef ASM_OUTPUT_EXTERNAL
1904 tree list;
1905 for (list = pending_assemble_externals; list; list = TREE_CHAIN (list))
1906 assemble_external_real (TREE_VALUE (list));
1907
1908 pending_assemble_externals = 0;
1909 #endif
1910 }
1911
1912 /* Output something to declare an external symbol to the assembler.
1913 (Most assemblers don't need this, so we normally output nothing.)
1914 Do nothing if DECL is not external. */
1915
1916 void
1917 assemble_external (tree decl ATTRIBUTE_UNUSED)
1918 {
1919 /* Because most platforms do not define ASM_OUTPUT_EXTERNAL, the
1920 main body of this code is only rarely exercised. To provide some
1921 testing, on all platforms, we make sure that the ASM_OUT_FILE is
1922 open. If it's not, we should not be calling this function. */
1923 gcc_assert (asm_out_file);
1924
1925 #ifdef ASM_OUTPUT_EXTERNAL
1926 if (!DECL_P (decl) || !DECL_EXTERNAL (decl) || !TREE_PUBLIC (decl))
1927 return;
1928
1929 if (flag_unit_at_a_time)
1930 pending_assemble_externals = tree_cons (0, decl,
1931 pending_assemble_externals);
1932 else
1933 assemble_external_real (decl);
1934 #endif
1935 }
1936
1937 /* Similar, for calling a library function FUN. */
1938
1939 void
1940 assemble_external_libcall (rtx fun)
1941 {
1942 /* Declare library function name external when first used, if nec. */
1943 if (! SYMBOL_REF_USED (fun))
1944 {
1945 SYMBOL_REF_USED (fun) = 1;
1946 targetm.asm_out.external_libcall (fun);
1947 }
1948 }
1949
1950 /* Assemble a label named NAME. */
1951
1952 void
1953 assemble_label (const char *name)
1954 {
1955 ASM_OUTPUT_LABEL (asm_out_file, name);
1956 }
1957
1958 /* Set the symbol_referenced flag for ID. */
1959 void
1960 mark_referenced (tree id)
1961 {
1962 TREE_SYMBOL_REFERENCED (id) = 1;
1963 }
1964
1965 /* Set the symbol_referenced flag for DECL and notify callgraph. */
1966 void
1967 mark_decl_referenced (tree decl)
1968 {
1969 if (TREE_CODE (decl) == FUNCTION_DECL)
1970 {
1971 /* Extern inline functions don't become needed when referenced.
1972 If we know a method will be emitted in other TU and no new
1973 functions can be marked reachable, just use the external
1974 definition. */
1975 struct cgraph_node *node = cgraph_node (decl);
1976 if (!DECL_EXTERNAL (decl)
1977 && (!node->local.vtable_method || !cgraph_global_info_ready
1978 || !node->local.finalized))
1979 cgraph_mark_needed_node (node);
1980 }
1981 else if (TREE_CODE (decl) == VAR_DECL)
1982 {
1983 struct cgraph_varpool_node *node = cgraph_varpool_node (decl);
1984 cgraph_varpool_mark_needed_node (node);
1985 /* C++ frontend use mark_decl_references to force COMDAT variables
1986 to be output that might appear dead otherwise. */
1987 node->force_output = true;
1988 }
1989 /* else do nothing - we can get various sorts of CST nodes here,
1990 which do not need to be marked. */
1991 }
1992
1993 /* Output to FILE (an assembly file) a reference to NAME. If NAME
1994 starts with a *, the rest of NAME is output verbatim. Otherwise
1995 NAME is transformed in a target-specific way (usually by the
1996 addition of an underscore). */
1997
1998 void
1999 assemble_name_raw (FILE *file, const char *name)
2000 {
2001 if (name[0] == '*')
2002 fputs (&name[1], file);
2003 else
2004 ASM_OUTPUT_LABELREF (file, name);
2005 }
2006
2007 /* Like assemble_name_raw, but should be used when NAME might refer to
2008 an entity that is also represented as a tree (like a function or
2009 variable). If NAME does refer to such an entity, that entity will
2010 be marked as referenced. */
2011
2012 void
2013 assemble_name (FILE *file, const char *name)
2014 {
2015 const char *real_name;
2016 tree id;
2017
2018 real_name = targetm.strip_name_encoding (name);
2019
2020 id = maybe_get_identifier (real_name);
2021 if (id)
2022 mark_referenced (id);
2023
2024 assemble_name_raw (file, name);
2025 }
2026
2027 /* Allocate SIZE bytes writable static space with a gensym name
2028 and return an RTX to refer to its address. */
2029
2030 rtx
2031 assemble_static_space (unsigned HOST_WIDE_INT size)
2032 {
2033 char name[12];
2034 const char *namestring;
2035 rtx x;
2036
2037 #if 0
2038 if (flag_shared_data)
2039 data_section ();
2040 #endif
2041
2042 ASM_GENERATE_INTERNAL_LABEL (name, "LF", const_labelno);
2043 ++const_labelno;
2044 namestring = ggc_strdup (name);
2045
2046 x = gen_rtx_SYMBOL_REF (Pmode, namestring);
2047 SYMBOL_REF_FLAGS (x) = SYMBOL_FLAG_LOCAL;
2048
2049 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
2050 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name, size,
2051 BIGGEST_ALIGNMENT);
2052 #else
2053 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
2054 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, BIGGEST_ALIGNMENT);
2055 #else
2056 {
2057 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2058 so that each uninitialized object starts on such a boundary. */
2059 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
2060 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
2061 = ((size + (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1)
2062 / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
2063 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
2064 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
2065 }
2066 #endif
2067 #endif
2068 return x;
2069 }
2070
2071 /* Assemble the static constant template for function entry trampolines.
2072 This is done at most once per compilation.
2073 Returns an RTX for the address of the template. */
2074
2075 static GTY(()) rtx initial_trampoline;
2076
2077 #ifdef TRAMPOLINE_TEMPLATE
2078 rtx
2079 assemble_trampoline_template (void)
2080 {
2081 char label[256];
2082 const char *name;
2083 int align;
2084 rtx symbol;
2085
2086 if (initial_trampoline)
2087 return initial_trampoline;
2088
2089 /* By default, put trampoline templates in read-only data section. */
2090
2091 #ifdef TRAMPOLINE_SECTION
2092 TRAMPOLINE_SECTION ();
2093 #else
2094 readonly_data_section ();
2095 #endif
2096
2097 /* Write the assembler code to define one. */
2098 align = floor_log2 (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT);
2099 if (align > 0)
2100 {
2101 ASM_OUTPUT_ALIGN (asm_out_file, align);
2102 }
2103
2104 targetm.asm_out.internal_label (asm_out_file, "LTRAMP", 0);
2105 TRAMPOLINE_TEMPLATE (asm_out_file);
2106
2107 /* Record the rtl to refer to it. */
2108 ASM_GENERATE_INTERNAL_LABEL (label, "LTRAMP", 0);
2109 name = ggc_strdup (label);
2110 symbol = gen_rtx_SYMBOL_REF (Pmode, name);
2111 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
2112
2113 initial_trampoline = gen_rtx_MEM (BLKmode, symbol);
2114 set_mem_align (initial_trampoline, TRAMPOLINE_ALIGNMENT);
2115
2116 return initial_trampoline;
2117 }
2118 #endif
2119 \f
2120 /* A and B are either alignments or offsets. Return the minimum alignment
2121 that may be assumed after adding the two together. */
2122
2123 static inline unsigned
2124 min_align (unsigned int a, unsigned int b)
2125 {
2126 return (a | b) & -(a | b);
2127 }
2128
2129 /* Return the assembler directive for creating a given kind of integer
2130 object. SIZE is the number of bytes in the object and ALIGNED_P
2131 indicates whether it is known to be aligned. Return NULL if the
2132 assembly dialect has no such directive.
2133
2134 The returned string should be printed at the start of a new line and
2135 be followed immediately by the object's initial value. */
2136
2137 const char *
2138 integer_asm_op (int size, int aligned_p)
2139 {
2140 struct asm_int_op *ops;
2141
2142 if (aligned_p)
2143 ops = &targetm.asm_out.aligned_op;
2144 else
2145 ops = &targetm.asm_out.unaligned_op;
2146
2147 switch (size)
2148 {
2149 case 1:
2150 return targetm.asm_out.byte_op;
2151 case 2:
2152 return ops->hi;
2153 case 4:
2154 return ops->si;
2155 case 8:
2156 return ops->di;
2157 case 16:
2158 return ops->ti;
2159 default:
2160 return NULL;
2161 }
2162 }
2163
2164 /* Use directive OP to assemble an integer object X. Print OP at the
2165 start of the line, followed immediately by the value of X. */
2166
2167 void
2168 assemble_integer_with_op (const char *op, rtx x)
2169 {
2170 fputs (op, asm_out_file);
2171 output_addr_const (asm_out_file, x);
2172 fputc ('\n', asm_out_file);
2173 }
2174
2175 /* The default implementation of the asm_out.integer target hook. */
2176
2177 bool
2178 default_assemble_integer (rtx x ATTRIBUTE_UNUSED,
2179 unsigned int size ATTRIBUTE_UNUSED,
2180 int aligned_p ATTRIBUTE_UNUSED)
2181 {
2182 const char *op = integer_asm_op (size, aligned_p);
2183 /* Avoid GAS bugs for large values. Specifically negative values whose
2184 absolute value fits in a bfd_vma, but not in a bfd_signed_vma. */
2185 if (size > UNITS_PER_WORD && size > POINTER_SIZE / BITS_PER_UNIT)
2186 return false;
2187 return op && (assemble_integer_with_op (op, x), true);
2188 }
2189
2190 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
2191 the alignment of the integer in bits. Return 1 if we were able to output
2192 the constant, otherwise 0. We must be able to output the constant,
2193 if FORCE is nonzero. */
2194
2195 bool
2196 assemble_integer (rtx x, unsigned int size, unsigned int align, int force)
2197 {
2198 int aligned_p;
2199
2200 aligned_p = (align >= MIN (size * BITS_PER_UNIT, BIGGEST_ALIGNMENT));
2201
2202 /* See if the target hook can handle this kind of object. */
2203 if (targetm.asm_out.integer (x, size, aligned_p))
2204 return true;
2205
2206 /* If the object is a multi-byte one, try splitting it up. Split
2207 it into words it if is multi-word, otherwise split it into bytes. */
2208 if (size > 1)
2209 {
2210 enum machine_mode omode, imode;
2211 unsigned int subalign;
2212 unsigned int subsize, i;
2213
2214 subsize = size > UNITS_PER_WORD? UNITS_PER_WORD : 1;
2215 subalign = MIN (align, subsize * BITS_PER_UNIT);
2216 omode = mode_for_size (subsize * BITS_PER_UNIT, MODE_INT, 0);
2217 imode = mode_for_size (size * BITS_PER_UNIT, MODE_INT, 0);
2218
2219 for (i = 0; i < size; i += subsize)
2220 {
2221 rtx partial = simplify_subreg (omode, x, imode, i);
2222 if (!partial || !assemble_integer (partial, subsize, subalign, 0))
2223 break;
2224 }
2225 if (i == size)
2226 return true;
2227
2228 /* If we've printed some of it, but not all of it, there's no going
2229 back now. */
2230 gcc_assert (!i);
2231 }
2232
2233 gcc_assert (!force);
2234
2235 return false;
2236 }
2237 \f
2238 void
2239 assemble_real (REAL_VALUE_TYPE d, enum machine_mode mode, unsigned int align)
2240 {
2241 long data[4];
2242 int i;
2243 int bitsize, nelts, nunits, units_per;
2244
2245 /* This is hairy. We have a quantity of known size. real_to_target
2246 will put it into an array of *host* longs, 32 bits per element
2247 (even if long is more than 32 bits). We need to determine the
2248 number of array elements that are occupied (nelts) and the number
2249 of *target* min-addressable units that will be occupied in the
2250 object file (nunits). We cannot assume that 32 divides the
2251 mode's bitsize (size * BITS_PER_UNIT) evenly.
2252
2253 size * BITS_PER_UNIT is used here to make sure that padding bits
2254 (which might appear at either end of the value; real_to_target
2255 will include the padding bits in its output array) are included. */
2256
2257 nunits = GET_MODE_SIZE (mode);
2258 bitsize = nunits * BITS_PER_UNIT;
2259 nelts = CEIL (bitsize, 32);
2260 units_per = 32 / BITS_PER_UNIT;
2261
2262 real_to_target (data, &d, mode);
2263
2264 /* Put out the first word with the specified alignment. */
2265 assemble_integer (GEN_INT (data[0]), MIN (nunits, units_per), align, 1);
2266 nunits -= units_per;
2267
2268 /* Subsequent words need only 32-bit alignment. */
2269 align = min_align (align, 32);
2270
2271 for (i = 1; i < nelts; i++)
2272 {
2273 assemble_integer (GEN_INT (data[i]), MIN (nunits, units_per), align, 1);
2274 nunits -= units_per;
2275 }
2276 }
2277 \f
2278 /* Given an expression EXP with a constant value,
2279 reduce it to the sum of an assembler symbol and an integer.
2280 Store them both in the structure *VALUE.
2281 EXP must be reducible. */
2282
2283 struct addr_const GTY(())
2284 {
2285 rtx base;
2286 HOST_WIDE_INT offset;
2287 };
2288
2289 static void
2290 decode_addr_const (tree exp, struct addr_const *value)
2291 {
2292 tree target = TREE_OPERAND (exp, 0);
2293 int offset = 0;
2294 rtx x;
2295
2296 while (1)
2297 {
2298 if (TREE_CODE (target) == COMPONENT_REF
2299 && host_integerp (byte_position (TREE_OPERAND (target, 1)), 0))
2300
2301 {
2302 offset += int_byte_position (TREE_OPERAND (target, 1));
2303 target = TREE_OPERAND (target, 0);
2304 }
2305 else if (TREE_CODE (target) == ARRAY_REF
2306 || TREE_CODE (target) == ARRAY_RANGE_REF)
2307 {
2308 offset += (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (target)), 1)
2309 * tree_low_cst (TREE_OPERAND (target, 1), 0));
2310 target = TREE_OPERAND (target, 0);
2311 }
2312 else
2313 break;
2314 }
2315
2316 switch (TREE_CODE (target))
2317 {
2318 case VAR_DECL:
2319 case FUNCTION_DECL:
2320 x = DECL_RTL (target);
2321 break;
2322
2323 case LABEL_DECL:
2324 x = gen_rtx_MEM (FUNCTION_MODE,
2325 gen_rtx_LABEL_REF (Pmode, force_label_rtx (target)));
2326 break;
2327
2328 case REAL_CST:
2329 case STRING_CST:
2330 case COMPLEX_CST:
2331 case CONSTRUCTOR:
2332 case INTEGER_CST:
2333 x = output_constant_def (target, 1);
2334 break;
2335
2336 default:
2337 gcc_unreachable ();
2338 }
2339
2340 gcc_assert (MEM_P (x));
2341 x = XEXP (x, 0);
2342
2343 value->base = x;
2344 value->offset = offset;
2345 }
2346 \f
2347 /* Uniquize all constants that appear in memory.
2348 Each constant in memory thus far output is recorded
2349 in `const_desc_table'. */
2350
2351 struct constant_descriptor_tree GTY(())
2352 {
2353 /* A MEM for the constant. */
2354 rtx rtl;
2355
2356 /* The value of the constant. */
2357 tree value;
2358 };
2359
2360 static GTY((param_is (struct constant_descriptor_tree)))
2361 htab_t const_desc_htab;
2362
2363 static struct constant_descriptor_tree * build_constant_desc (tree);
2364 static void maybe_output_constant_def_contents (struct constant_descriptor_tree *, int);
2365
2366 /* Compute a hash code for a constant expression. */
2367
2368 static hashval_t
2369 const_desc_hash (const void *ptr)
2370 {
2371 return const_hash_1 (((struct constant_descriptor_tree *)ptr)->value);
2372 }
2373
2374 static hashval_t
2375 const_hash_1 (const tree exp)
2376 {
2377 const char *p;
2378 hashval_t hi;
2379 int len, i;
2380 enum tree_code code = TREE_CODE (exp);
2381
2382 /* Either set P and LEN to the address and len of something to hash and
2383 exit the switch or return a value. */
2384
2385 switch (code)
2386 {
2387 case INTEGER_CST:
2388 p = (char *) &TREE_INT_CST (exp);
2389 len = sizeof TREE_INT_CST (exp);
2390 break;
2391
2392 case REAL_CST:
2393 return real_hash (TREE_REAL_CST_PTR (exp));
2394
2395 case STRING_CST:
2396 p = TREE_STRING_POINTER (exp);
2397 len = TREE_STRING_LENGTH (exp);
2398 break;
2399
2400 case COMPLEX_CST:
2401 return (const_hash_1 (TREE_REALPART (exp)) * 5
2402 + const_hash_1 (TREE_IMAGPART (exp)));
2403
2404 case CONSTRUCTOR:
2405 {
2406 tree link;
2407
2408 hi = 5 + int_size_in_bytes (TREE_TYPE (exp));
2409
2410 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2411 if (TREE_VALUE (link))
2412 hi = hi * 603 + const_hash_1 (TREE_VALUE (link));
2413
2414 return hi;
2415 }
2416
2417 case ADDR_EXPR:
2418 case FDESC_EXPR:
2419 {
2420 struct addr_const value;
2421
2422 decode_addr_const (exp, &value);
2423 switch (GET_CODE (value.base))
2424 {
2425 case SYMBOL_REF:
2426 /* Don't hash the address of the SYMBOL_REF;
2427 only use the offset and the symbol name. */
2428 hi = value.offset;
2429 p = XSTR (value.base, 0);
2430 for (i = 0; p[i] != 0; i++)
2431 hi = ((hi * 613) + (unsigned) (p[i]));
2432 break;
2433
2434 case LABEL_REF:
2435 hi = value.offset + CODE_LABEL_NUMBER (XEXP (value.base, 0)) * 13;
2436 break;
2437
2438 default:
2439 gcc_unreachable ();
2440 }
2441 }
2442 return hi;
2443
2444 case PLUS_EXPR:
2445 case MINUS_EXPR:
2446 return (const_hash_1 (TREE_OPERAND (exp, 0)) * 9
2447 + const_hash_1 (TREE_OPERAND (exp, 1)));
2448
2449 case NOP_EXPR:
2450 case CONVERT_EXPR:
2451 case NON_LVALUE_EXPR:
2452 return const_hash_1 (TREE_OPERAND (exp, 0)) * 7 + 2;
2453
2454 default:
2455 /* A language specific constant. Just hash the code. */
2456 return code;
2457 }
2458
2459 /* Compute hashing function. */
2460 hi = len;
2461 for (i = 0; i < len; i++)
2462 hi = ((hi * 613) + (unsigned) (p[i]));
2463
2464 return hi;
2465 }
2466
2467 /* Wrapper of compare_constant, for the htab interface. */
2468 static int
2469 const_desc_eq (const void *p1, const void *p2)
2470 {
2471 return compare_constant (((struct constant_descriptor_tree *)p1)->value,
2472 ((struct constant_descriptor_tree *)p2)->value);
2473 }
2474
2475 /* Compare t1 and t2, and return 1 only if they are known to result in
2476 the same bit pattern on output. */
2477
2478 static int
2479 compare_constant (const tree t1, const tree t2)
2480 {
2481 enum tree_code typecode;
2482
2483 if (t1 == NULL_TREE)
2484 return t2 == NULL_TREE;
2485 if (t2 == NULL_TREE)
2486 return 0;
2487
2488 if (TREE_CODE (t1) != TREE_CODE (t2))
2489 return 0;
2490
2491 switch (TREE_CODE (t1))
2492 {
2493 case INTEGER_CST:
2494 /* Integer constants are the same only if the same width of type. */
2495 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2496 return 0;
2497 return tree_int_cst_equal (t1, t2);
2498
2499 case REAL_CST:
2500 /* Real constants are the same only if the same width of type. */
2501 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2502 return 0;
2503
2504 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
2505
2506 case STRING_CST:
2507 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
2508 return 0;
2509
2510 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
2511 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
2512 TREE_STRING_LENGTH (t1)));
2513
2514 case COMPLEX_CST:
2515 return (compare_constant (TREE_REALPART (t1), TREE_REALPART (t2))
2516 && compare_constant (TREE_IMAGPART (t1), TREE_IMAGPART (t2)));
2517
2518 case CONSTRUCTOR:
2519 {
2520 tree l1, l2;
2521
2522 typecode = TREE_CODE (TREE_TYPE (t1));
2523 if (typecode != TREE_CODE (TREE_TYPE (t2)))
2524 return 0;
2525
2526 if (typecode == ARRAY_TYPE)
2527 {
2528 HOST_WIDE_INT size_1 = int_size_in_bytes (TREE_TYPE (t1));
2529 /* For arrays, check that the sizes all match. */
2530 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2))
2531 || size_1 == -1
2532 || size_1 != int_size_in_bytes (TREE_TYPE (t2)))
2533 return 0;
2534 }
2535 else
2536 {
2537 /* For record and union constructors, require exact type
2538 equality. */
2539 if (TREE_TYPE (t1) != TREE_TYPE (t2))
2540 return 0;
2541 }
2542
2543 for (l1 = CONSTRUCTOR_ELTS (t1), l2 = CONSTRUCTOR_ELTS (t2);
2544 l1 && l2;
2545 l1 = TREE_CHAIN (l1), l2 = TREE_CHAIN (l2))
2546 {
2547 /* Check that each value is the same... */
2548 if (! compare_constant (TREE_VALUE (l1), TREE_VALUE (l2)))
2549 return 0;
2550 /* ... and that they apply to the same fields! */
2551 if (typecode == ARRAY_TYPE)
2552 {
2553 if (! compare_constant (TREE_PURPOSE (l1),
2554 TREE_PURPOSE (l2)))
2555 return 0;
2556 }
2557 else
2558 {
2559 if (TREE_PURPOSE (l1) != TREE_PURPOSE (l2))
2560 return 0;
2561 }
2562 }
2563
2564 return l1 == NULL_TREE && l2 == NULL_TREE;
2565 }
2566
2567 case ADDR_EXPR:
2568 case FDESC_EXPR:
2569 {
2570 struct addr_const value1, value2;
2571
2572 decode_addr_const (t1, &value1);
2573 decode_addr_const (t2, &value2);
2574 return (value1.offset == value2.offset
2575 && strcmp (XSTR (value1.base, 0), XSTR (value2.base, 0)) == 0);
2576 }
2577
2578 case PLUS_EXPR:
2579 case MINUS_EXPR:
2580 case RANGE_EXPR:
2581 return (compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0))
2582 && compare_constant(TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)));
2583
2584 case NOP_EXPR:
2585 case CONVERT_EXPR:
2586 case NON_LVALUE_EXPR:
2587 case VIEW_CONVERT_EXPR:
2588 return compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
2589
2590 default:
2591 {
2592 tree nt1, nt2;
2593 nt1 = lang_hooks.expand_constant (t1);
2594 nt2 = lang_hooks.expand_constant (t2);
2595 if (nt1 != t1 || nt2 != t2)
2596 return compare_constant (nt1, nt2);
2597 else
2598 return 0;
2599 }
2600 }
2601
2602 gcc_unreachable ();
2603 }
2604 \f
2605 /* Make a copy of the whole tree structure for a constant. This
2606 handles the same types of nodes that compare_constant handles. */
2607
2608 static tree
2609 copy_constant (tree exp)
2610 {
2611 switch (TREE_CODE (exp))
2612 {
2613 case ADDR_EXPR:
2614 /* For ADDR_EXPR, we do not want to copy the decl whose address
2615 is requested. We do want to copy constants though. */
2616 if (CONSTANT_CLASS_P (TREE_OPERAND (exp, 0)))
2617 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2618 copy_constant (TREE_OPERAND (exp, 0)));
2619 else
2620 return copy_node (exp);
2621
2622 case INTEGER_CST:
2623 case REAL_CST:
2624 case STRING_CST:
2625 return copy_node (exp);
2626
2627 case COMPLEX_CST:
2628 return build_complex (TREE_TYPE (exp),
2629 copy_constant (TREE_REALPART (exp)),
2630 copy_constant (TREE_IMAGPART (exp)));
2631
2632 case PLUS_EXPR:
2633 case MINUS_EXPR:
2634 return build2 (TREE_CODE (exp), TREE_TYPE (exp),
2635 copy_constant (TREE_OPERAND (exp, 0)),
2636 copy_constant (TREE_OPERAND (exp, 1)));
2637
2638 case NOP_EXPR:
2639 case CONVERT_EXPR:
2640 case NON_LVALUE_EXPR:
2641 case VIEW_CONVERT_EXPR:
2642 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2643 copy_constant (TREE_OPERAND (exp, 0)));
2644
2645 case CONSTRUCTOR:
2646 {
2647 tree copy = copy_node (exp);
2648 tree list = copy_list (CONSTRUCTOR_ELTS (exp));
2649 tree tail;
2650
2651 CONSTRUCTOR_ELTS (copy) = list;
2652 for (tail = list; tail; tail = TREE_CHAIN (tail))
2653 TREE_VALUE (tail) = copy_constant (TREE_VALUE (tail));
2654
2655 return copy;
2656 }
2657
2658 default:
2659 {
2660 tree t = lang_hooks.expand_constant (exp);
2661
2662 gcc_assert (t == exp);
2663 return copy_constant (t);
2664 }
2665 }
2666 }
2667 \f
2668 /* Subroutine of output_constant_def:
2669 No constant equal to EXP is known to have been output.
2670 Make a constant descriptor to enter EXP in the hash table.
2671 Assign the label number and construct RTL to refer to the
2672 constant's location in memory.
2673 Caller is responsible for updating the hash table. */
2674
2675 static struct constant_descriptor_tree *
2676 build_constant_desc (tree exp)
2677 {
2678 rtx symbol;
2679 rtx rtl;
2680 char label[256];
2681 int labelno;
2682 struct constant_descriptor_tree *desc;
2683
2684 desc = ggc_alloc (sizeof (*desc));
2685 desc->value = copy_constant (exp);
2686
2687 /* Propagate marked-ness to copied constant. */
2688 if (flag_mudflap && mf_marked_p (exp))
2689 mf_mark (desc->value);
2690
2691 /* Create a string containing the label name, in LABEL. */
2692 labelno = const_labelno++;
2693 ASM_GENERATE_INTERNAL_LABEL (label, "LC", labelno);
2694
2695 /* We have a symbol name; construct the SYMBOL_REF and the MEM. */
2696 symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
2697 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
2698 SYMBOL_REF_DECL (symbol) = desc->value;
2699 TREE_CONSTANT_POOL_ADDRESS_P (symbol) = 1;
2700
2701 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp)), symbol);
2702 set_mem_attributes (rtl, exp, 1);
2703 set_mem_alias_set (rtl, 0);
2704 set_mem_alias_set (rtl, const_alias_set);
2705
2706 /* Set flags or add text to the name to record information, such as
2707 that it is a local symbol. If the name is changed, the macro
2708 ASM_OUTPUT_LABELREF will have to know how to strip this
2709 information. This call might invalidate our local variable
2710 SYMBOL; we can't use it afterward. */
2711
2712 targetm.encode_section_info (exp, rtl, true);
2713
2714 desc->rtl = rtl;
2715
2716 return desc;
2717 }
2718
2719 /* Return an rtx representing a reference to constant data in memory
2720 for the constant expression EXP.
2721
2722 If assembler code for such a constant has already been output,
2723 return an rtx to refer to it.
2724 Otherwise, output such a constant in memory
2725 and generate an rtx for it.
2726
2727 If DEFER is nonzero, this constant can be deferred and output only
2728 if referenced in the function after all optimizations.
2729
2730 `const_desc_table' records which constants already have label strings. */
2731
2732 rtx
2733 output_constant_def (tree exp, int defer)
2734 {
2735 struct constant_descriptor_tree *desc;
2736 struct constant_descriptor_tree key;
2737 void **loc;
2738
2739 /* Look up EXP in the table of constant descriptors. If we didn't find
2740 it, create a new one. */
2741 key.value = exp;
2742 loc = htab_find_slot (const_desc_htab, &key, INSERT);
2743
2744 desc = *loc;
2745 if (desc == 0)
2746 {
2747 desc = build_constant_desc (exp);
2748 *loc = desc;
2749 }
2750
2751 maybe_output_constant_def_contents (desc, defer);
2752 return desc->rtl;
2753 }
2754
2755 /* Subroutine of output_constant_def: Decide whether or not we need to
2756 output the constant DESC now, and if so, do it. */
2757 static void
2758 maybe_output_constant_def_contents (struct constant_descriptor_tree *desc,
2759 int defer)
2760 {
2761 rtx symbol = XEXP (desc->rtl, 0);
2762 tree exp = desc->value;
2763
2764 if (flag_syntax_only)
2765 return;
2766
2767 if (TREE_ASM_WRITTEN (exp))
2768 /* Already output; don't do it again. */
2769 return;
2770
2771 /* We can always defer constants as long as the context allows
2772 doing so. */
2773 if (defer)
2774 {
2775 /* Increment n_deferred_constants if it exists. It needs to be at
2776 least as large as the number of constants actually referred to
2777 by the function. If it's too small we'll stop looking too early
2778 and fail to emit constants; if it's too large we'll only look
2779 through the entire function when we could have stopped earlier. */
2780 if (cfun)
2781 n_deferred_constants++;
2782 return;
2783 }
2784
2785 output_constant_def_contents (symbol);
2786 }
2787
2788 /* We must output the constant data referred to by SYMBOL; do so. */
2789
2790 static void
2791 output_constant_def_contents (rtx symbol)
2792 {
2793 tree exp = SYMBOL_REF_DECL (symbol);
2794 const char *label = XSTR (symbol, 0);
2795 HOST_WIDE_INT size;
2796
2797 /* Make sure any other constants whose addresses appear in EXP
2798 are assigned label numbers. */
2799 int reloc = compute_reloc_for_constant (exp);
2800
2801 /* Align the location counter as required by EXP's data type. */
2802 unsigned int align = TYPE_ALIGN (TREE_TYPE (exp));
2803 #ifdef CONSTANT_ALIGNMENT
2804 align = CONSTANT_ALIGNMENT (exp, align);
2805 #endif
2806
2807 output_addressed_constants (exp);
2808
2809 /* We are no longer deferring this constant. */
2810 TREE_ASM_WRITTEN (exp) = 1;
2811
2812 if (IN_NAMED_SECTION (exp))
2813 named_section (exp, NULL, reloc);
2814 else
2815 targetm.asm_out.select_section (exp, reloc, align);
2816
2817 if (align > BITS_PER_UNIT)
2818 {
2819 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
2820 }
2821
2822 size = int_size_in_bytes (TREE_TYPE (exp));
2823 if (TREE_CODE (exp) == STRING_CST)
2824 size = MAX (TREE_STRING_LENGTH (exp), size);
2825
2826 /* Do any machine/system dependent processing of the constant. */
2827 #ifdef ASM_DECLARE_CONSTANT_NAME
2828 ASM_DECLARE_CONSTANT_NAME (asm_out_file, label, exp, size);
2829 #else
2830 /* Standard thing is just output label for the constant. */
2831 ASM_OUTPUT_LABEL (asm_out_file, label);
2832 #endif /* ASM_DECLARE_CONSTANT_NAME */
2833
2834 /* Output the value of EXP. */
2835 output_constant (exp, size, align);
2836 if (flag_mudflap)
2837 mudflap_enqueue_constant (exp);
2838 }
2839
2840 /* Look up EXP in the table of constant descriptors. Return the rtl
2841 if it has been emitted, else null. */
2842
2843 rtx
2844 lookup_constant_def (tree exp)
2845 {
2846 struct constant_descriptor_tree *desc;
2847 struct constant_descriptor_tree key;
2848
2849 key.value = exp;
2850 desc = htab_find (const_desc_htab, &key);
2851
2852 return (desc ? desc->rtl : NULL_RTX);
2853 }
2854 \f
2855 /* Used in the hash tables to avoid outputting the same constant
2856 twice. Unlike 'struct constant_descriptor_tree', RTX constants
2857 are output once per function, not once per file. */
2858 /* ??? Only a few targets need per-function constant pools. Most
2859 can use one per-file pool. Should add a targetm bit to tell the
2860 difference. */
2861
2862 struct rtx_constant_pool GTY(())
2863 {
2864 /* Pointers to first and last constant in pool, as ordered by offset. */
2865 struct constant_descriptor_rtx *first;
2866 struct constant_descriptor_rtx *last;
2867
2868 /* Hash facility for making memory-constants from constant rtl-expressions.
2869 It is used on RISC machines where immediate integer arguments and
2870 constant addresses are restricted so that such constants must be stored
2871 in memory. */
2872 htab_t GTY((param_is (struct constant_descriptor_rtx))) const_rtx_htab;
2873 htab_t GTY((param_is (struct constant_descriptor_rtx))) const_rtx_sym_htab;
2874
2875 /* Current offset in constant pool (does not include any
2876 machine-specific header). */
2877 HOST_WIDE_INT offset;
2878 };
2879
2880 struct constant_descriptor_rtx GTY((chain_next ("%h.next")))
2881 {
2882 struct constant_descriptor_rtx *next;
2883 rtx mem;
2884 rtx sym;
2885 rtx constant;
2886 HOST_WIDE_INT offset;
2887 hashval_t hash;
2888 enum machine_mode mode;
2889 unsigned int align;
2890 int labelno;
2891 int mark;
2892 };
2893
2894 /* Hash and compare functions for const_rtx_htab. */
2895
2896 static hashval_t
2897 const_desc_rtx_hash (const void *ptr)
2898 {
2899 const struct constant_descriptor_rtx *desc = ptr;
2900 return desc->hash;
2901 }
2902
2903 static int
2904 const_desc_rtx_eq (const void *a, const void *b)
2905 {
2906 const struct constant_descriptor_rtx *x = a;
2907 const struct constant_descriptor_rtx *y = b;
2908
2909 if (x->mode != y->mode)
2910 return 0;
2911 return rtx_equal_p (x->constant, y->constant);
2912 }
2913
2914 /* Hash and compare functions for const_rtx_sym_htab. */
2915
2916 static hashval_t
2917 const_desc_rtx_sym_hash (const void *ptr)
2918 {
2919 const struct constant_descriptor_rtx *desc = ptr;
2920 return htab_hash_string (XSTR (desc->sym, 0));
2921 }
2922
2923 static int
2924 const_desc_rtx_sym_eq (const void *a, const void *b)
2925 {
2926 const struct constant_descriptor_rtx *x = a;
2927 const struct constant_descriptor_rtx *y = b;
2928 return XSTR (x->sym, 0) == XSTR (y->sym, 0);
2929 }
2930
2931 /* This is the worker function for const_rtx_hash, called via for_each_rtx. */
2932
2933 static int
2934 const_rtx_hash_1 (rtx *xp, void *data)
2935 {
2936 unsigned HOST_WIDE_INT hwi;
2937 enum machine_mode mode;
2938 enum rtx_code code;
2939 hashval_t h, *hp;
2940 rtx x;
2941
2942 x = *xp;
2943 code = GET_CODE (x);
2944 mode = GET_MODE (x);
2945 h = (hashval_t) code * 1048573 + mode;
2946
2947 switch (code)
2948 {
2949 case CONST_INT:
2950 hwi = INTVAL (x);
2951 fold_hwi:
2952 {
2953 const int shift = sizeof (hashval_t) * CHAR_BIT;
2954 const int n = sizeof (HOST_WIDE_INT) / sizeof (hashval_t);
2955 int i;
2956
2957 h ^= (hashval_t) hwi;
2958 for (i = 1; i < n; ++i)
2959 {
2960 hwi >>= shift;
2961 h ^= (hashval_t) hwi;
2962 }
2963 }
2964 break;
2965
2966 case CONST_DOUBLE:
2967 if (mode == VOIDmode)
2968 {
2969 hwi = CONST_DOUBLE_LOW (x) ^ CONST_DOUBLE_HIGH (x);
2970 goto fold_hwi;
2971 }
2972 else
2973 h ^= real_hash (CONST_DOUBLE_REAL_VALUE (x));
2974 break;
2975
2976 case CONST_VECTOR:
2977 {
2978 int i;
2979 for (i = XVECLEN (x, 0); i-- > 0; )
2980 h = h * 251 + const_rtx_hash_1 (&XVECEXP (x, 0, i), data);
2981 }
2982 break;
2983
2984 case SYMBOL_REF:
2985 h ^= htab_hash_string (XSTR (x, 0));
2986 break;
2987
2988 case LABEL_REF:
2989 h = h * 251 + CODE_LABEL_NUMBER (XEXP (x, 0));
2990 break;
2991
2992 case UNSPEC:
2993 case UNSPEC_VOLATILE:
2994 h = h * 251 + XINT (x, 1);
2995 break;
2996
2997 default:
2998 break;
2999 }
3000
3001 hp = data;
3002 *hp = *hp * 509 + h;
3003 return 0;
3004 }
3005
3006 /* Compute a hash value for X, which should be a constant. */
3007
3008 static hashval_t
3009 const_rtx_hash (rtx x)
3010 {
3011 hashval_t h = 0;
3012 for_each_rtx (&x, const_rtx_hash_1, &h);
3013 return h;
3014 }
3015
3016 \f
3017 /* Initialize constant pool hashing for a new function. */
3018
3019 void
3020 init_varasm_status (struct function *f)
3021 {
3022 struct varasm_status *p;
3023 struct rtx_constant_pool *pool;
3024
3025 p = ggc_alloc (sizeof (struct varasm_status));
3026 f->varasm = p;
3027
3028 pool = ggc_alloc (sizeof (struct rtx_constant_pool));
3029 p->pool = pool;
3030 p->deferred_constants = 0;
3031
3032 pool->const_rtx_htab = htab_create_ggc (31, const_desc_rtx_hash,
3033 const_desc_rtx_eq, NULL);
3034 pool->const_rtx_sym_htab = htab_create_ggc (31, const_desc_rtx_sym_hash,
3035 const_desc_rtx_sym_eq, NULL);
3036 pool->first = pool->last = NULL;
3037 pool->offset = 0;
3038 }
3039 \f
3040 /* Given a MINUS expression, simplify it if both sides
3041 include the same symbol. */
3042
3043 rtx
3044 simplify_subtraction (rtx x)
3045 {
3046 rtx r = simplify_rtx (x);
3047 return r ? r : x;
3048 }
3049 \f
3050 /* Given a constant rtx X, make (or find) a memory constant for its value
3051 and return a MEM rtx to refer to it in memory. */
3052
3053 rtx
3054 force_const_mem (enum machine_mode mode, rtx x)
3055 {
3056 struct constant_descriptor_rtx *desc, tmp;
3057 struct rtx_constant_pool *pool = cfun->varasm->pool;
3058 char label[256];
3059 rtx def, symbol;
3060 hashval_t hash;
3061 unsigned int align;
3062 void **slot;
3063
3064 /* If we're not allowed to drop X into the constant pool, don't. */
3065 if (targetm.cannot_force_const_mem (x))
3066 return NULL_RTX;
3067
3068 /* Lookup the value in the hashtable. */
3069 tmp.constant = x;
3070 tmp.mode = mode;
3071 hash = const_rtx_hash (x);
3072 slot = htab_find_slot_with_hash (pool->const_rtx_htab, &tmp, hash, INSERT);
3073 desc = *slot;
3074
3075 /* If the constant was already present, return its memory. */
3076 if (desc)
3077 return copy_rtx (desc->mem);
3078
3079 /* Otherwise, create a new descriptor. */
3080 desc = ggc_alloc (sizeof (*desc));
3081 *slot = desc;
3082
3083 /* Align the location counter as required by EXP's data type. */
3084 align = GET_MODE_ALIGNMENT (mode == VOIDmode ? word_mode : mode);
3085 #ifdef CONSTANT_ALIGNMENT
3086 {
3087 tree type = lang_hooks.types.type_for_mode (mode, 0);
3088 if (type != NULL_TREE)
3089 align = CONSTANT_ALIGNMENT (make_tree (type, x), align);
3090 }
3091 #endif
3092
3093 pool->offset += (align / BITS_PER_UNIT) - 1;
3094 pool->offset &= ~ ((align / BITS_PER_UNIT) - 1);
3095
3096 desc->next = NULL;
3097 desc->constant = tmp.constant;
3098 desc->offset = pool->offset;
3099 desc->hash = hash;
3100 desc->mode = mode;
3101 desc->align = align;
3102 desc->labelno = const_labelno;
3103 desc->mark = 0;
3104
3105 pool->offset += GET_MODE_SIZE (mode);
3106 if (pool->last)
3107 pool->last->next = desc;
3108 else
3109 pool->first = pool->last = desc;
3110 pool->last = desc;
3111
3112 /* Create a string containing the label name, in LABEL. */
3113 ASM_GENERATE_INTERNAL_LABEL (label, "LC", const_labelno);
3114 ++const_labelno;
3115
3116 /* Construct the SYMBOL_REF. Make sure to mark it as belonging to
3117 the constants pool. */
3118 desc->sym = symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
3119 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
3120 CONSTANT_POOL_ADDRESS_P (symbol) = 1;
3121 current_function_uses_const_pool = 1;
3122
3123 /* Insert the descriptor into the symbol cross-reference table too. */
3124 slot = htab_find_slot (pool->const_rtx_sym_htab, desc, INSERT);
3125 gcc_assert (!*slot);
3126 *slot = desc;
3127
3128 /* Construct the MEM. */
3129 desc->mem = def = gen_const_mem (mode, symbol);
3130 set_mem_attributes (def, lang_hooks.types.type_for_mode (mode, 0), 1);
3131 set_mem_align (def, align);
3132
3133 /* If we're dropping a label to the constant pool, make sure we
3134 don't delete it. */
3135 if (GET_CODE (x) == LABEL_REF)
3136 LABEL_PRESERVE_P (XEXP (x, 0)) = 1;
3137
3138 return copy_rtx (def);
3139 }
3140 \f
3141 /* Given a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true, return a pointer to
3142 the corresponding constant_descriptor_rtx structure. */
3143
3144 static struct constant_descriptor_rtx *
3145 find_pool_constant (struct rtx_constant_pool *pool, rtx sym)
3146 {
3147 struct constant_descriptor_rtx tmp;
3148 tmp.sym = sym;
3149 return htab_find (pool->const_rtx_sym_htab, &tmp);
3150 }
3151
3152 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3153
3154 rtx
3155 get_pool_constant (rtx addr)
3156 {
3157 return find_pool_constant (cfun->varasm->pool, addr)->constant;
3158 }
3159
3160 /* Given a constant pool SYMBOL_REF, return the corresponding constant
3161 and whether it has been output or not. */
3162
3163 rtx
3164 get_pool_constant_mark (rtx addr, bool *pmarked)
3165 {
3166 struct constant_descriptor_rtx *desc;
3167
3168 desc = find_pool_constant (cfun->varasm->pool, addr);
3169 *pmarked = (desc->mark != 0);
3170 return desc->constant;
3171 }
3172
3173 /* Likewise, but for the constant pool of a specific function. */
3174
3175 rtx
3176 get_pool_constant_for_function (struct function *f, rtx addr)
3177 {
3178 return find_pool_constant (f->varasm->pool, addr)->constant;
3179 }
3180
3181 /* Similar, return the mode. */
3182
3183 enum machine_mode
3184 get_pool_mode (rtx addr)
3185 {
3186 return find_pool_constant (cfun->varasm->pool, addr)->mode;
3187 }
3188
3189 /* Return the size of the constant pool. */
3190
3191 int
3192 get_pool_size (void)
3193 {
3194 return cfun->varasm->pool->offset;
3195 }
3196 \f
3197 /* Worker function for output_constant_pool_1. Emit assembly for X
3198 in MODE with known alignment ALIGN. */
3199
3200 static void
3201 output_constant_pool_2 (enum machine_mode mode, rtx x, unsigned int align)
3202 {
3203 switch (GET_MODE_CLASS (mode))
3204 {
3205 case MODE_FLOAT:
3206 {
3207 REAL_VALUE_TYPE r;
3208
3209 gcc_assert (GET_CODE (x) == CONST_DOUBLE);
3210 REAL_VALUE_FROM_CONST_DOUBLE (r, x);
3211 assemble_real (r, mode, align);
3212 break;
3213 }
3214
3215 case MODE_INT:
3216 case MODE_PARTIAL_INT:
3217 assemble_integer (x, GET_MODE_SIZE (mode), align, 1);
3218 break;
3219
3220 case MODE_VECTOR_FLOAT:
3221 case MODE_VECTOR_INT:
3222 {
3223 int i, units;
3224 enum machine_mode submode = GET_MODE_INNER (mode);
3225 unsigned int subalign = MIN (align, GET_MODE_BITSIZE (submode));
3226
3227 gcc_assert (GET_CODE (x) == CONST_VECTOR);
3228 units = CONST_VECTOR_NUNITS (x);
3229
3230 for (i = 0; i < units; i++)
3231 {
3232 rtx elt = CONST_VECTOR_ELT (x, i);
3233 output_constant_pool_2 (submode, elt, i ? subalign : align);
3234 }
3235 }
3236 break;
3237
3238 default:
3239 gcc_unreachable ();
3240 }
3241 }
3242
3243 /* Worker function for output_constant_pool. Emit POOL. */
3244
3245 static void
3246 output_constant_pool_1 (struct constant_descriptor_rtx *desc)
3247 {
3248 rtx x, tmp;
3249
3250 if (!desc->mark)
3251 return;
3252 x = desc->constant;
3253
3254 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3255 whose CODE_LABEL has been deleted. This can occur if a jump table
3256 is eliminated by optimization. If so, write a constant of zero
3257 instead. Note that this can also happen by turning the
3258 CODE_LABEL into a NOTE. */
3259 /* ??? This seems completely and utterly wrong. Certainly it's
3260 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3261 functioning even with INSN_DELETED_P and friends. */
3262
3263 tmp = x;
3264 switch (GET_CODE (x))
3265 {
3266 case CONST:
3267 if (GET_CODE (XEXP (x, 0)) != PLUS
3268 || GET_CODE (XEXP (XEXP (x, 0), 0)) != LABEL_REF)
3269 break;
3270 tmp = XEXP (XEXP (x, 0), 0);
3271 /* FALLTHRU */
3272
3273 case LABEL_REF:
3274 tmp = XEXP (x, 0);
3275 gcc_assert (!INSN_DELETED_P (tmp));
3276 gcc_assert (!NOTE_P (tmp)
3277 || NOTE_LINE_NUMBER (tmp) != NOTE_INSN_DELETED);
3278 break;
3279
3280 default:
3281 break;
3282 }
3283
3284 /* First switch to correct section. */
3285 targetm.asm_out.select_rtx_section (desc->mode, x, desc->align);
3286
3287 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3288 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file, x, desc->mode,
3289 desc->align, desc->labelno, done);
3290 #endif
3291
3292 assemble_align (desc->align);
3293
3294 /* Output the label. */
3295 targetm.asm_out.internal_label (asm_out_file, "LC", desc->labelno);
3296
3297 /* Output the data. */
3298 output_constant_pool_2 (desc->mode, x, desc->align);
3299
3300 /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
3301 sections have proper size. */
3302 if (desc->align > GET_MODE_BITSIZE (desc->mode)
3303 && in_section == in_named
3304 && get_named_section_flags (in_named_name) & SECTION_MERGE)
3305 assemble_align (desc->align);
3306
3307 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3308 done:
3309 #endif
3310 return;
3311 }
3312
3313 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3314 to as used. Emit referenced deferred strings. This function can
3315 be used with for_each_rtx to mark all SYMBOL_REFs in an rtx. */
3316
3317 static int
3318 mark_constant (rtx *current_rtx, void *data)
3319 {
3320 struct rtx_constant_pool *pool = data;
3321 rtx x = *current_rtx;
3322
3323 if (x == NULL_RTX || GET_CODE (x) != SYMBOL_REF)
3324 return 0;
3325
3326 if (CONSTANT_POOL_ADDRESS_P (x))
3327 {
3328 struct constant_descriptor_rtx *desc = find_pool_constant (pool, x);
3329 if (desc->mark == 0)
3330 {
3331 desc->mark = 1;
3332 for_each_rtx (&desc->constant, mark_constant, pool);
3333 }
3334 }
3335 else if (TREE_CONSTANT_POOL_ADDRESS_P (x))
3336 {
3337 tree exp = SYMBOL_REF_DECL (x);
3338 if (!TREE_ASM_WRITTEN (exp))
3339 {
3340 n_deferred_constants--;
3341 output_constant_def_contents (x);
3342 }
3343 }
3344
3345 return -1;
3346 }
3347
3348 /* Look through appropriate parts of INSN, marking all entries in the
3349 constant pool which are actually being used. Entries that are only
3350 referenced by other constants are also marked as used. Emit
3351 deferred strings that are used. */
3352
3353 static void
3354 mark_constants (struct rtx_constant_pool *pool, rtx insn)
3355 {
3356 if (!INSN_P (insn))
3357 return;
3358
3359 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3360 insns, not any notes that may be attached. We don't want to mark
3361 a constant just because it happens to appear in a REG_EQUIV note. */
3362 if (GET_CODE (PATTERN (insn)) == SEQUENCE)
3363 {
3364 rtx seq = PATTERN (insn);
3365 int i, n = XVECLEN (seq, 0);
3366 for (i = 0; i < n; ++i)
3367 {
3368 rtx subinsn = XVECEXP (seq, 0, i);
3369 if (INSN_P (subinsn))
3370 for_each_rtx (&PATTERN (subinsn), mark_constant, pool);
3371 }
3372 }
3373 else
3374 for_each_rtx (&PATTERN (insn), mark_constant, pool);
3375 }
3376
3377 /* Look through the instructions for this function, and mark all the
3378 entries in POOL which are actually being used. Emit deferred constants
3379 which have indeed been used. */
3380
3381 static void
3382 mark_constant_pool (struct rtx_constant_pool *pool)
3383 {
3384 rtx insn, link;
3385
3386 if (pool->first == 0 && n_deferred_constants == 0)
3387 return;
3388
3389 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3390 mark_constants (pool, insn);
3391
3392 for (link = current_function_epilogue_delay_list;
3393 link;
3394 link = XEXP (link, 1))
3395 mark_constants (pool, XEXP (link, 0));
3396 }
3397
3398 /* Write all the constants in the constant pool. */
3399
3400 void
3401 output_constant_pool (const char *fnname ATTRIBUTE_UNUSED,
3402 tree fndecl ATTRIBUTE_UNUSED)
3403 {
3404 struct rtx_constant_pool *pool = cfun->varasm->pool;
3405 struct constant_descriptor_rtx *desc;
3406
3407 /* It is possible for gcc to call force_const_mem and then to later
3408 discard the instructions which refer to the constant. In such a
3409 case we do not need to output the constant. */
3410 mark_constant_pool (pool);
3411
3412 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3413 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file, fnname, fndecl, pool->offset);
3414 #endif
3415
3416 for (desc = pool->first; desc ; desc = desc->next)
3417 output_constant_pool_1 (desc);
3418
3419 #ifdef ASM_OUTPUT_POOL_EPILOGUE
3420 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file, fnname, fndecl, pool->offset);
3421 #endif
3422 }
3423 \f
3424 /* Determine what kind of relocations EXP may need. */
3425
3426 int
3427 compute_reloc_for_constant (tree exp)
3428 {
3429 int reloc = 0, reloc2;
3430 tree tem;
3431
3432 /* Give the front-end a chance to convert VALUE to something that
3433 looks more like a constant to the back-end. */
3434 exp = lang_hooks.expand_constant (exp);
3435
3436 switch (TREE_CODE (exp))
3437 {
3438 case ADDR_EXPR:
3439 case FDESC_EXPR:
3440 /* Go inside any operations that get_inner_reference can handle and see
3441 if what's inside is a constant: no need to do anything here for
3442 addresses of variables or functions. */
3443 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
3444 tem = TREE_OPERAND (tem, 0))
3445 ;
3446
3447 if (TREE_PUBLIC (tem))
3448 reloc |= 2;
3449 else
3450 reloc |= 1;
3451 break;
3452
3453 case PLUS_EXPR:
3454 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3455 reloc |= compute_reloc_for_constant (TREE_OPERAND (exp, 1));
3456 break;
3457
3458 case MINUS_EXPR:
3459 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3460 reloc2 = compute_reloc_for_constant (TREE_OPERAND (exp, 1));
3461 /* The difference of two local labels is computable at link time. */
3462 if (reloc == 1 && reloc2 == 1)
3463 reloc = 0;
3464 else
3465 reloc |= reloc2;
3466 break;
3467
3468 case NOP_EXPR:
3469 case CONVERT_EXPR:
3470 case NON_LVALUE_EXPR:
3471 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3472 break;
3473
3474 case CONSTRUCTOR:
3475 for (tem = CONSTRUCTOR_ELTS (exp); tem; tem = TREE_CHAIN (tem))
3476 if (TREE_VALUE (tem) != 0)
3477 reloc |= compute_reloc_for_constant (TREE_VALUE (tem));
3478
3479 break;
3480
3481 default:
3482 break;
3483 }
3484 return reloc;
3485 }
3486
3487 /* Find all the constants whose addresses are referenced inside of EXP,
3488 and make sure assembler code with a label has been output for each one.
3489 Indicate whether an ADDR_EXPR has been encountered. */
3490
3491 static void
3492 output_addressed_constants (tree exp)
3493 {
3494 tree tem;
3495
3496 /* Give the front-end a chance to convert VALUE to something that
3497 looks more like a constant to the back-end. */
3498 exp = lang_hooks.expand_constant (exp);
3499
3500 switch (TREE_CODE (exp))
3501 {
3502 case ADDR_EXPR:
3503 case FDESC_EXPR:
3504 /* Go inside any operations that get_inner_reference can handle and see
3505 if what's inside is a constant: no need to do anything here for
3506 addresses of variables or functions. */
3507 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
3508 tem = TREE_OPERAND (tem, 0))
3509 ;
3510
3511 /* If we have an initialized CONST_DECL, retrieve the initializer. */
3512 if (TREE_CODE (tem) == CONST_DECL && DECL_INITIAL (tem))
3513 tem = DECL_INITIAL (tem);
3514
3515 if (CONSTANT_CLASS_P (tem) || TREE_CODE (tem) == CONSTRUCTOR)
3516 output_constant_def (tem, 0);
3517 break;
3518
3519 case PLUS_EXPR:
3520 case MINUS_EXPR:
3521 output_addressed_constants (TREE_OPERAND (exp, 1));
3522 /* Fall through. */
3523
3524 case NOP_EXPR:
3525 case CONVERT_EXPR:
3526 case NON_LVALUE_EXPR:
3527 output_addressed_constants (TREE_OPERAND (exp, 0));
3528 break;
3529
3530 case CONSTRUCTOR:
3531 for (tem = CONSTRUCTOR_ELTS (exp); tem; tem = TREE_CHAIN (tem))
3532 if (TREE_VALUE (tem) != 0)
3533 output_addressed_constants (TREE_VALUE (tem));
3534
3535 break;
3536
3537 default:
3538 break;
3539 }
3540 }
3541 \f
3542 /* Return nonzero if VALUE is a valid constant-valued expression
3543 for use in initializing a static variable; one that can be an
3544 element of a "constant" initializer.
3545
3546 Return null_pointer_node if the value is absolute;
3547 if it is relocatable, return the variable that determines the relocation.
3548 We assume that VALUE has been folded as much as possible;
3549 therefore, we do not need to check for such things as
3550 arithmetic-combinations of integers. */
3551
3552 tree
3553 initializer_constant_valid_p (tree value, tree endtype)
3554 {
3555 /* Give the front-end a chance to convert VALUE to something that
3556 looks more like a constant to the back-end. */
3557 value = lang_hooks.expand_constant (value);
3558
3559 switch (TREE_CODE (value))
3560 {
3561 case CONSTRUCTOR:
3562 if ((TREE_CODE (TREE_TYPE (value)) == UNION_TYPE
3563 || TREE_CODE (TREE_TYPE (value)) == RECORD_TYPE)
3564 && TREE_CONSTANT (value)
3565 && CONSTRUCTOR_ELTS (value))
3566 {
3567 tree elt;
3568 bool absolute = true;
3569
3570 for (elt = CONSTRUCTOR_ELTS (value); elt; elt = TREE_CHAIN (elt))
3571 {
3572 tree reloc;
3573 value = TREE_VALUE (elt);
3574 reloc = initializer_constant_valid_p (value, TREE_TYPE (value));
3575 if (!reloc)
3576 return NULL_TREE;
3577 if (reloc != null_pointer_node)
3578 absolute = false;
3579 }
3580 /* For a non-absolute relocation, there is no single
3581 variable that can be "the variable that determines the
3582 relocation." */
3583 return absolute ? null_pointer_node : error_mark_node;
3584 }
3585
3586 return TREE_STATIC (value) ? null_pointer_node : NULL_TREE;
3587
3588 case INTEGER_CST:
3589 case VECTOR_CST:
3590 case REAL_CST:
3591 case STRING_CST:
3592 case COMPLEX_CST:
3593 return null_pointer_node;
3594
3595 case ADDR_EXPR:
3596 case FDESC_EXPR:
3597 value = staticp (TREE_OPERAND (value, 0));
3598 /* "&(*a).f" is like unto pointer arithmetic. If "a" turns out to
3599 be a constant, this is old-skool offsetof-like nonsense. */
3600 if (value
3601 && TREE_CODE (value) == INDIRECT_REF
3602 && TREE_CONSTANT (TREE_OPERAND (value, 0)))
3603 return null_pointer_node;
3604 /* Taking the address of a nested function involves a trampoline. */
3605 if (value
3606 && TREE_CODE (value) == FUNCTION_DECL
3607 && ((decl_function_context (value) && !DECL_NO_STATIC_CHAIN (value))
3608 || DECL_NON_ADDR_CONST_P (value)))
3609 return NULL_TREE;
3610 return value;
3611
3612 case VIEW_CONVERT_EXPR:
3613 case NON_LVALUE_EXPR:
3614 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3615
3616 case CONVERT_EXPR:
3617 case NOP_EXPR:
3618 {
3619 tree src;
3620 tree src_type;
3621 tree dest_type;
3622
3623 src = TREE_OPERAND (value, 0);
3624 src_type = TREE_TYPE (src);
3625 dest_type = TREE_TYPE (value);
3626
3627 /* Allow conversions between pointer types, floating-point
3628 types, and offset types. */
3629 if ((POINTER_TYPE_P (dest_type) && POINTER_TYPE_P (src_type))
3630 || (FLOAT_TYPE_P (dest_type) && FLOAT_TYPE_P (src_type))
3631 || (TREE_CODE (dest_type) == OFFSET_TYPE
3632 && TREE_CODE (src_type) == OFFSET_TYPE))
3633 return initializer_constant_valid_p (src, endtype);
3634
3635 /* Allow length-preserving conversions between integer types. */
3636 if (INTEGRAL_TYPE_P (dest_type) && INTEGRAL_TYPE_P (src_type)
3637 && (TYPE_PRECISION (dest_type) == TYPE_PRECISION (src_type)))
3638 return initializer_constant_valid_p (src, endtype);
3639
3640 /* Allow conversions between other integer types only if
3641 explicit value. */
3642 if (INTEGRAL_TYPE_P (dest_type) && INTEGRAL_TYPE_P (src_type))
3643 {
3644 tree inner = initializer_constant_valid_p (src, endtype);
3645 if (inner == null_pointer_node)
3646 return null_pointer_node;
3647 break;
3648 }
3649
3650 /* Allow (int) &foo provided int is as wide as a pointer. */
3651 if (INTEGRAL_TYPE_P (dest_type) && POINTER_TYPE_P (src_type)
3652 && (TYPE_PRECISION (dest_type) >= TYPE_PRECISION (src_type)))
3653 return initializer_constant_valid_p (src, endtype);
3654
3655 /* Likewise conversions from int to pointers, but also allow
3656 conversions from 0. */
3657 if ((POINTER_TYPE_P (dest_type)
3658 || TREE_CODE (dest_type) == OFFSET_TYPE)
3659 && INTEGRAL_TYPE_P (src_type))
3660 {
3661 if (integer_zerop (src))
3662 return null_pointer_node;
3663 else if (TYPE_PRECISION (dest_type) <= TYPE_PRECISION (src_type))
3664 return initializer_constant_valid_p (src, endtype);
3665 }
3666
3667 /* Allow conversions to struct or union types if the value
3668 inside is okay. */
3669 if (TREE_CODE (dest_type) == RECORD_TYPE
3670 || TREE_CODE (dest_type) == UNION_TYPE)
3671 return initializer_constant_valid_p (src, endtype);
3672 }
3673 break;
3674
3675 case PLUS_EXPR:
3676 if (! INTEGRAL_TYPE_P (endtype)
3677 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
3678 {
3679 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
3680 endtype);
3681 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
3682 endtype);
3683 /* If either term is absolute, use the other terms relocation. */
3684 if (valid0 == null_pointer_node)
3685 return valid1;
3686 if (valid1 == null_pointer_node)
3687 return valid0;
3688 }
3689 break;
3690
3691 case MINUS_EXPR:
3692 if (! INTEGRAL_TYPE_P (endtype)
3693 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
3694 {
3695 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
3696 endtype);
3697 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
3698 endtype);
3699 /* Win if second argument is absolute. */
3700 if (valid1 == null_pointer_node)
3701 return valid0;
3702 /* Win if both arguments have the same relocation.
3703 Then the value is absolute. */
3704 if (valid0 == valid1 && valid0 != 0)
3705 return null_pointer_node;
3706
3707 /* Since GCC guarantees that string constants are unique in the
3708 generated code, a subtraction between two copies of the same
3709 constant string is absolute. */
3710 if (valid0 && TREE_CODE (valid0) == STRING_CST
3711 && valid1 && TREE_CODE (valid1) == STRING_CST
3712 && operand_equal_p (valid0, valid1, 1))
3713 return null_pointer_node;
3714 }
3715
3716 /* Support narrowing differences. */
3717 if (INTEGRAL_TYPE_P (endtype))
3718 {
3719 tree op0, op1;
3720
3721 op0 = TREE_OPERAND (value, 0);
3722 op1 = TREE_OPERAND (value, 1);
3723
3724 /* Like STRIP_NOPS except allow the operand mode to widen.
3725 This works around a feature of fold that simplifies
3726 (int)(p1 - p2) to ((int)p1 - (int)p2) under the theory
3727 that the narrower operation is cheaper. */
3728
3729 while (TREE_CODE (op0) == NOP_EXPR
3730 || TREE_CODE (op0) == CONVERT_EXPR
3731 || TREE_CODE (op0) == NON_LVALUE_EXPR)
3732 {
3733 tree inner = TREE_OPERAND (op0, 0);
3734 if (inner == error_mark_node
3735 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
3736 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0)))
3737 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
3738 break;
3739 op0 = inner;
3740 }
3741
3742 while (TREE_CODE (op1) == NOP_EXPR
3743 || TREE_CODE (op1) == CONVERT_EXPR
3744 || TREE_CODE (op1) == NON_LVALUE_EXPR)
3745 {
3746 tree inner = TREE_OPERAND (op1, 0);
3747 if (inner == error_mark_node
3748 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
3749 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op1)))
3750 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
3751 break;
3752 op1 = inner;
3753 }
3754
3755 op0 = initializer_constant_valid_p (op0, endtype);
3756 op1 = initializer_constant_valid_p (op1, endtype);
3757
3758 /* Both initializers must be known. */
3759 if (op0 && op1)
3760 {
3761 if (op0 == op1)
3762 return null_pointer_node;
3763
3764 /* Support differences between labels. */
3765 if (TREE_CODE (op0) == LABEL_DECL
3766 && TREE_CODE (op1) == LABEL_DECL)
3767 return null_pointer_node;
3768
3769 if (TREE_CODE (op0) == STRING_CST
3770 && TREE_CODE (op1) == STRING_CST
3771 && operand_equal_p (op0, op1, 1))
3772 return null_pointer_node;
3773 }
3774 }
3775 break;
3776
3777 default:
3778 break;
3779 }
3780
3781 return 0;
3782 }
3783 \f
3784 /* Output assembler code for constant EXP to FILE, with no label.
3785 This includes the pseudo-op such as ".int" or ".byte", and a newline.
3786 Assumes output_addressed_constants has been done on EXP already.
3787
3788 Generate exactly SIZE bytes of assembler data, padding at the end
3789 with zeros if necessary. SIZE must always be specified.
3790
3791 SIZE is important for structure constructors,
3792 since trailing members may have been omitted from the constructor.
3793 It is also important for initialization of arrays from string constants
3794 since the full length of the string constant might not be wanted.
3795 It is also needed for initialization of unions, where the initializer's
3796 type is just one member, and that may not be as long as the union.
3797
3798 There a case in which we would fail to output exactly SIZE bytes:
3799 for a structure constructor that wants to produce more than SIZE bytes.
3800 But such constructors will never be generated for any possible input.
3801
3802 ALIGN is the alignment of the data in bits. */
3803
3804 void
3805 output_constant (tree exp, unsigned HOST_WIDE_INT size, unsigned int align)
3806 {
3807 enum tree_code code;
3808 unsigned HOST_WIDE_INT thissize;
3809
3810 /* Some front-ends use constants other than the standard language-independent
3811 varieties, but which may still be output directly. Give the front-end a
3812 chance to convert EXP to a language-independent representation. */
3813 exp = lang_hooks.expand_constant (exp);
3814
3815 if (size == 0 || flag_syntax_only)
3816 return;
3817
3818 /* Eliminate any conversions since we'll be outputting the underlying
3819 constant. */
3820 while (TREE_CODE (exp) == NOP_EXPR || TREE_CODE (exp) == CONVERT_EXPR
3821 || TREE_CODE (exp) == NON_LVALUE_EXPR
3822 || TREE_CODE (exp) == VIEW_CONVERT_EXPR)
3823 exp = TREE_OPERAND (exp, 0);
3824
3825 code = TREE_CODE (TREE_TYPE (exp));
3826 thissize = int_size_in_bytes (TREE_TYPE (exp));
3827
3828 /* Allow a constructor with no elements for any data type.
3829 This means to fill the space with zeros. */
3830 if (TREE_CODE (exp) == CONSTRUCTOR && CONSTRUCTOR_ELTS (exp) == 0)
3831 {
3832 assemble_zeros (size);
3833 return;
3834 }
3835
3836 if (TREE_CODE (exp) == FDESC_EXPR)
3837 {
3838 #ifdef ASM_OUTPUT_FDESC
3839 HOST_WIDE_INT part = tree_low_cst (TREE_OPERAND (exp, 1), 0);
3840 tree decl = TREE_OPERAND (exp, 0);
3841 ASM_OUTPUT_FDESC (asm_out_file, decl, part);
3842 #else
3843 gcc_unreachable ();
3844 #endif
3845 return;
3846 }
3847
3848 /* Now output the underlying data. If we've handling the padding, return.
3849 Otherwise, break and ensure SIZE is the size written. */
3850 switch (code)
3851 {
3852 case CHAR_TYPE:
3853 case BOOLEAN_TYPE:
3854 case INTEGER_TYPE:
3855 case ENUMERAL_TYPE:
3856 case POINTER_TYPE:
3857 case REFERENCE_TYPE:
3858 case OFFSET_TYPE:
3859 if (! assemble_integer (expand_expr (exp, NULL_RTX, VOIDmode,
3860 EXPAND_INITIALIZER),
3861 MIN (size, thissize), align, 0))
3862 error ("initializer for integer value is too complicated");
3863 break;
3864
3865 case REAL_TYPE:
3866 if (TREE_CODE (exp) != REAL_CST)
3867 error ("initializer for floating value is not a floating constant");
3868
3869 assemble_real (TREE_REAL_CST (exp), TYPE_MODE (TREE_TYPE (exp)), align);
3870 break;
3871
3872 case COMPLEX_TYPE:
3873 output_constant (TREE_REALPART (exp), thissize / 2, align);
3874 output_constant (TREE_IMAGPART (exp), thissize / 2,
3875 min_align (align, BITS_PER_UNIT * (thissize / 2)));
3876 break;
3877
3878 case ARRAY_TYPE:
3879 case VECTOR_TYPE:
3880 switch (TREE_CODE (exp))
3881 {
3882 case CONSTRUCTOR:
3883 output_constructor (exp, size, align);
3884 return;
3885 case STRING_CST:
3886 thissize = MIN ((unsigned HOST_WIDE_INT)TREE_STRING_LENGTH (exp),
3887 size);
3888 assemble_string (TREE_STRING_POINTER (exp), thissize);
3889 break;
3890
3891 case VECTOR_CST:
3892 {
3893 int elt_size;
3894 tree link;
3895 unsigned int nalign;
3896 enum machine_mode inner;
3897
3898 inner = TYPE_MODE (TREE_TYPE (TREE_TYPE (exp)));
3899 nalign = MIN (align, GET_MODE_ALIGNMENT (inner));
3900
3901 elt_size = GET_MODE_SIZE (inner);
3902
3903 link = TREE_VECTOR_CST_ELTS (exp);
3904 output_constant (TREE_VALUE (link), elt_size, align);
3905 while ((link = TREE_CHAIN (link)) != NULL)
3906 output_constant (TREE_VALUE (link), elt_size, nalign);
3907 break;
3908 }
3909 default:
3910 gcc_unreachable ();
3911 }
3912 break;
3913
3914 case RECORD_TYPE:
3915 case UNION_TYPE:
3916 gcc_assert (TREE_CODE (exp) == CONSTRUCTOR);
3917 output_constructor (exp, size, align);
3918 return;
3919
3920 case ERROR_MARK:
3921 return;
3922
3923 default:
3924 gcc_unreachable ();
3925 }
3926
3927 if (size > thissize)
3928 assemble_zeros (size - thissize);
3929 }
3930
3931 \f
3932 /* Subroutine of output_constructor, used for computing the size of
3933 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
3934 type with an unspecified upper bound. */
3935
3936 static unsigned HOST_WIDE_INT
3937 array_size_for_constructor (tree val)
3938 {
3939 tree max_index, i;
3940
3941 /* This code used to attempt to handle string constants that are not
3942 arrays of single-bytes, but nothing else does, so there's no point in
3943 doing it here. */
3944 if (TREE_CODE (val) == STRING_CST)
3945 return TREE_STRING_LENGTH (val);
3946
3947 max_index = NULL_TREE;
3948 for (i = CONSTRUCTOR_ELTS (val); i; i = TREE_CHAIN (i))
3949 {
3950 tree index = TREE_PURPOSE (i);
3951
3952 if (TREE_CODE (index) == RANGE_EXPR)
3953 index = TREE_OPERAND (index, 1);
3954 if (max_index == NULL_TREE || tree_int_cst_lt (max_index, index))
3955 max_index = index;
3956 }
3957
3958 if (max_index == NULL_TREE)
3959 return 0;
3960
3961 /* Compute the total number of array elements. */
3962 i = size_binop (MINUS_EXPR, convert (sizetype, max_index),
3963 convert (sizetype,
3964 TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val)))));
3965 i = size_binop (PLUS_EXPR, i, convert (sizetype, integer_one_node));
3966
3967 /* Multiply by the array element unit size to find number of bytes. */
3968 i = size_binop (MULT_EXPR, i, TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val))));
3969
3970 return tree_low_cst (i, 1);
3971 }
3972
3973 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
3974 Generate at least SIZE bytes, padding if necessary. */
3975
3976 static void
3977 output_constructor (tree exp, unsigned HOST_WIDE_INT size,
3978 unsigned int align)
3979 {
3980 tree type = TREE_TYPE (exp);
3981 tree link, field = 0;
3982 tree min_index = 0;
3983 /* Number of bytes output or skipped so far.
3984 In other words, current position within the constructor. */
3985 HOST_WIDE_INT total_bytes = 0;
3986 /* Nonzero means BYTE contains part of a byte, to be output. */
3987 int byte_buffer_in_use = 0;
3988 int byte = 0;
3989
3990 gcc_assert (HOST_BITS_PER_WIDE_INT >= BITS_PER_UNIT);
3991
3992 if (TREE_CODE (type) == RECORD_TYPE)
3993 field = TYPE_FIELDS (type);
3994
3995 if (TREE_CODE (type) == ARRAY_TYPE
3996 && TYPE_DOMAIN (type) != 0)
3997 min_index = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
3998
3999 /* As LINK goes through the elements of the constant,
4000 FIELD goes through the structure fields, if the constant is a structure.
4001 if the constant is a union, then we override this,
4002 by getting the field from the TREE_LIST element.
4003 But the constant could also be an array. Then FIELD is zero.
4004
4005 There is always a maximum of one element in the chain LINK for unions
4006 (even if the initializer in a source program incorrectly contains
4007 more one). */
4008 for (link = CONSTRUCTOR_ELTS (exp);
4009 link;
4010 link = TREE_CHAIN (link),
4011 field = field ? TREE_CHAIN (field) : 0)
4012 {
4013 tree val = TREE_VALUE (link);
4014 tree index = 0;
4015
4016 /* The element in a union constructor specifies the proper field
4017 or index. */
4018 if ((TREE_CODE (type) == RECORD_TYPE || TREE_CODE (type) == UNION_TYPE
4019 || TREE_CODE (type) == QUAL_UNION_TYPE)
4020 && TREE_PURPOSE (link) != 0)
4021 field = TREE_PURPOSE (link);
4022
4023 else if (TREE_CODE (type) == ARRAY_TYPE)
4024 index = TREE_PURPOSE (link);
4025
4026 #ifdef ASM_COMMENT_START
4027 if (field && flag_verbose_asm)
4028 fprintf (asm_out_file, "%s %s:\n",
4029 ASM_COMMENT_START,
4030 DECL_NAME (field)
4031 ? IDENTIFIER_POINTER (DECL_NAME (field))
4032 : "<anonymous>");
4033 #endif
4034
4035 /* Eliminate the marker that makes a cast not be an lvalue. */
4036 if (val != 0)
4037 STRIP_NOPS (val);
4038
4039 if (index && TREE_CODE (index) == RANGE_EXPR)
4040 {
4041 unsigned HOST_WIDE_INT fieldsize
4042 = int_size_in_bytes (TREE_TYPE (type));
4043 HOST_WIDE_INT lo_index = tree_low_cst (TREE_OPERAND (index, 0), 0);
4044 HOST_WIDE_INT hi_index = tree_low_cst (TREE_OPERAND (index, 1), 0);
4045 HOST_WIDE_INT index;
4046 unsigned int align2 = min_align (align, fieldsize * BITS_PER_UNIT);
4047
4048 for (index = lo_index; index <= hi_index; index++)
4049 {
4050 /* Output the element's initial value. */
4051 if (val == 0)
4052 assemble_zeros (fieldsize);
4053 else
4054 output_constant (val, fieldsize, align2);
4055
4056 /* Count its size. */
4057 total_bytes += fieldsize;
4058 }
4059 }
4060 else if (field == 0 || !DECL_BIT_FIELD (field))
4061 {
4062 /* An element that is not a bit-field. */
4063
4064 unsigned HOST_WIDE_INT fieldsize;
4065 /* Since this structure is static,
4066 we know the positions are constant. */
4067 HOST_WIDE_INT pos = field ? int_byte_position (field) : 0;
4068 unsigned int align2;
4069
4070 if (index != 0)
4071 pos = (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (val)), 1)
4072 * (tree_low_cst (index, 0) - tree_low_cst (min_index, 0)));
4073
4074 /* Output any buffered-up bit-fields preceding this element. */
4075 if (byte_buffer_in_use)
4076 {
4077 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4078 total_bytes++;
4079 byte_buffer_in_use = 0;
4080 }
4081
4082 /* Advance to offset of this element.
4083 Note no alignment needed in an array, since that is guaranteed
4084 if each element has the proper size. */
4085 if ((field != 0 || index != 0) && pos != total_bytes)
4086 {
4087 assemble_zeros (pos - total_bytes);
4088 total_bytes = pos;
4089 }
4090
4091 /* Find the alignment of this element. */
4092 align2 = min_align (align, BITS_PER_UNIT * pos);
4093
4094 /* Determine size this element should occupy. */
4095 if (field)
4096 {
4097 fieldsize = 0;
4098
4099 /* If this is an array with an unspecified upper bound,
4100 the initializer determines the size. */
4101 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4102 but we cannot do this until the deprecated support for
4103 initializing zero-length array members is removed. */
4104 if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
4105 && TYPE_DOMAIN (TREE_TYPE (field))
4106 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field))))
4107 {
4108 fieldsize = array_size_for_constructor (val);
4109 /* Given a non-empty initialization, this field had
4110 better be last. */
4111 gcc_assert (!fieldsize || !TREE_CHAIN (field));
4112 }
4113 else if (DECL_SIZE_UNIT (field))
4114 {
4115 /* ??? This can't be right. If the decl size overflows
4116 a host integer we will silently emit no data. */
4117 if (host_integerp (DECL_SIZE_UNIT (field), 1))
4118 fieldsize = tree_low_cst (DECL_SIZE_UNIT (field), 1);
4119 }
4120 }
4121 else
4122 fieldsize = int_size_in_bytes (TREE_TYPE (type));
4123
4124 /* Output the element's initial value. */
4125 if (val == 0)
4126 assemble_zeros (fieldsize);
4127 else
4128 output_constant (val, fieldsize, align2);
4129
4130 /* Count its size. */
4131 total_bytes += fieldsize;
4132 }
4133 else if (val != 0 && TREE_CODE (val) != INTEGER_CST)
4134 error ("invalid initial value for member %qs",
4135 IDENTIFIER_POINTER (DECL_NAME (field)));
4136 else
4137 {
4138 /* Element that is a bit-field. */
4139
4140 HOST_WIDE_INT next_offset = int_bit_position (field);
4141 HOST_WIDE_INT end_offset
4142 = (next_offset + tree_low_cst (DECL_SIZE (field), 1));
4143
4144 if (val == 0)
4145 val = integer_zero_node;
4146
4147 /* If this field does not start in this (or, next) byte,
4148 skip some bytes. */
4149 if (next_offset / BITS_PER_UNIT != total_bytes)
4150 {
4151 /* Output remnant of any bit field in previous bytes. */
4152 if (byte_buffer_in_use)
4153 {
4154 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4155 total_bytes++;
4156 byte_buffer_in_use = 0;
4157 }
4158
4159 /* If still not at proper byte, advance to there. */
4160 if (next_offset / BITS_PER_UNIT != total_bytes)
4161 {
4162 assemble_zeros (next_offset / BITS_PER_UNIT - total_bytes);
4163 total_bytes = next_offset / BITS_PER_UNIT;
4164 }
4165 }
4166
4167 if (! byte_buffer_in_use)
4168 byte = 0;
4169
4170 /* We must split the element into pieces that fall within
4171 separate bytes, and combine each byte with previous or
4172 following bit-fields. */
4173
4174 /* next_offset is the offset n fbits from the beginning of
4175 the structure to the next bit of this element to be processed.
4176 end_offset is the offset of the first bit past the end of
4177 this element. */
4178 while (next_offset < end_offset)
4179 {
4180 int this_time;
4181 int shift;
4182 HOST_WIDE_INT value;
4183 HOST_WIDE_INT next_byte = next_offset / BITS_PER_UNIT;
4184 HOST_WIDE_INT next_bit = next_offset % BITS_PER_UNIT;
4185
4186 /* Advance from byte to byte
4187 within this element when necessary. */
4188 while (next_byte != total_bytes)
4189 {
4190 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4191 total_bytes++;
4192 byte = 0;
4193 }
4194
4195 /* Number of bits we can process at once
4196 (all part of the same byte). */
4197 this_time = MIN (end_offset - next_offset,
4198 BITS_PER_UNIT - next_bit);
4199 if (BYTES_BIG_ENDIAN)
4200 {
4201 /* On big-endian machine, take the most significant bits
4202 first (of the bits that are significant)
4203 and put them into bytes from the most significant end. */
4204 shift = end_offset - next_offset - this_time;
4205
4206 /* Don't try to take a bunch of bits that cross
4207 the word boundary in the INTEGER_CST. We can
4208 only select bits from the LOW or HIGH part
4209 not from both. */
4210 if (shift < HOST_BITS_PER_WIDE_INT
4211 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4212 {
4213 this_time = shift + this_time - HOST_BITS_PER_WIDE_INT;
4214 shift = HOST_BITS_PER_WIDE_INT;
4215 }
4216
4217 /* Now get the bits from the appropriate constant word. */
4218 if (shift < HOST_BITS_PER_WIDE_INT)
4219 value = TREE_INT_CST_LOW (val);
4220 else
4221 {
4222 gcc_assert (shift < 2 * HOST_BITS_PER_WIDE_INT);
4223 value = TREE_INT_CST_HIGH (val);
4224 shift -= HOST_BITS_PER_WIDE_INT;
4225 }
4226
4227 /* Get the result. This works only when:
4228 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4229 byte |= (((value >> shift)
4230 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4231 << (BITS_PER_UNIT - this_time - next_bit));
4232 }
4233 else
4234 {
4235 /* On little-endian machines,
4236 take first the least significant bits of the value
4237 and pack them starting at the least significant
4238 bits of the bytes. */
4239 shift = next_offset - int_bit_position (field);
4240
4241 /* Don't try to take a bunch of bits that cross
4242 the word boundary in the INTEGER_CST. We can
4243 only select bits from the LOW or HIGH part
4244 not from both. */
4245 if (shift < HOST_BITS_PER_WIDE_INT
4246 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4247 this_time = (HOST_BITS_PER_WIDE_INT - shift);
4248
4249 /* Now get the bits from the appropriate constant word. */
4250 if (shift < HOST_BITS_PER_WIDE_INT)
4251 value = TREE_INT_CST_LOW (val);
4252 else
4253 {
4254 gcc_assert (shift < 2 * HOST_BITS_PER_WIDE_INT);
4255 value = TREE_INT_CST_HIGH (val);
4256 shift -= HOST_BITS_PER_WIDE_INT;
4257 }
4258
4259 /* Get the result. This works only when:
4260 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4261 byte |= (((value >> shift)
4262 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4263 << next_bit);
4264 }
4265
4266 next_offset += this_time;
4267 byte_buffer_in_use = 1;
4268 }
4269 }
4270 }
4271
4272 if (byte_buffer_in_use)
4273 {
4274 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4275 total_bytes++;
4276 }
4277
4278 if ((unsigned HOST_WIDE_INT)total_bytes < size)
4279 assemble_zeros (size - total_bytes);
4280 }
4281
4282 /* This TREE_LIST contains any weak symbol declarations waiting
4283 to be emitted. */
4284 static GTY(()) tree weak_decls;
4285
4286 /* Mark DECL as weak. */
4287
4288 static void
4289 mark_weak (tree decl)
4290 {
4291 DECL_WEAK (decl) = 1;
4292
4293 if (DECL_RTL_SET_P (decl)
4294 && MEM_P (DECL_RTL (decl))
4295 && XEXP (DECL_RTL (decl), 0)
4296 && GET_CODE (XEXP (DECL_RTL (decl), 0)) == SYMBOL_REF)
4297 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl), 0)) = 1;
4298 }
4299
4300 /* Merge weak status between NEWDECL and OLDDECL. */
4301
4302 void
4303 merge_weak (tree newdecl, tree olddecl)
4304 {
4305 if (DECL_WEAK (newdecl) == DECL_WEAK (olddecl))
4306 {
4307 if (DECL_WEAK (newdecl) && SUPPORTS_WEAK)
4308 {
4309 tree *pwd;
4310 /* We put the NEWDECL on the weak_decls list at some point
4311 and OLDDECL as well. Keep just OLDDECL on the list. */
4312 for (pwd = &weak_decls; *pwd; pwd = &TREE_CHAIN (*pwd))
4313 if (TREE_VALUE (*pwd) == newdecl)
4314 {
4315 *pwd = TREE_CHAIN (*pwd);
4316 break;
4317 }
4318 }
4319 return;
4320 }
4321
4322 if (DECL_WEAK (newdecl))
4323 {
4324 tree wd;
4325
4326 /* NEWDECL is weak, but OLDDECL is not. */
4327
4328 /* If we already output the OLDDECL, we're in trouble; we can't
4329 go back and make it weak. This error cannot caught in
4330 declare_weak because the NEWDECL and OLDDECL was not yet
4331 been merged; therefore, TREE_ASM_WRITTEN was not set. */
4332 if (TREE_ASM_WRITTEN (olddecl))
4333 error ("%Jweak declaration of %qD must precede definition",
4334 newdecl, newdecl);
4335
4336 /* If we've already generated rtl referencing OLDDECL, we may
4337 have done so in a way that will not function properly with
4338 a weak symbol. */
4339 else if (TREE_USED (olddecl)
4340 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl)))
4341 warning (0, "%Jweak declaration of %qD after first use results "
4342 "in unspecified behavior", newdecl, newdecl);
4343
4344 if (SUPPORTS_WEAK)
4345 {
4346 /* We put the NEWDECL on the weak_decls list at some point.
4347 Replace it with the OLDDECL. */
4348 for (wd = weak_decls; wd; wd = TREE_CHAIN (wd))
4349 if (TREE_VALUE (wd) == newdecl)
4350 {
4351 TREE_VALUE (wd) = olddecl;
4352 break;
4353 }
4354 /* We may not find the entry on the list. If NEWDECL is a
4355 weak alias, then we will have already called
4356 globalize_decl to remove the entry; in that case, we do
4357 not need to do anything. */
4358 }
4359
4360 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
4361 mark_weak (olddecl);
4362 }
4363 else
4364 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
4365 weak. Just update NEWDECL to indicate that it's weak too. */
4366 mark_weak (newdecl);
4367 }
4368
4369 /* Declare DECL to be a weak symbol. */
4370
4371 void
4372 declare_weak (tree decl)
4373 {
4374 if (! TREE_PUBLIC (decl))
4375 error ("%Jweak declaration of %qD must be public", decl, decl);
4376 else if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
4377 error ("%Jweak declaration of %qD must precede definition", decl, decl);
4378 else if (SUPPORTS_WEAK)
4379 {
4380 if (! DECL_WEAK (decl))
4381 weak_decls = tree_cons (NULL, decl, weak_decls);
4382 }
4383 else
4384 warning (0, "%Jweak declaration of %qD not supported", decl, decl);
4385
4386 mark_weak (decl);
4387 }
4388
4389 /* Emit any pending weak declarations. */
4390
4391 void
4392 weak_finish (void)
4393 {
4394 tree t;
4395
4396 for (t = weak_decls; t; t = TREE_CHAIN (t))
4397 {
4398 tree decl = TREE_VALUE (t);
4399 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
4400 const char *const name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
4401 #endif
4402
4403 if (! TREE_USED (decl))
4404 continue;
4405
4406 #ifdef ASM_WEAKEN_DECL
4407 ASM_WEAKEN_DECL (asm_out_file, decl, name, NULL);
4408 #else
4409 #ifdef ASM_WEAKEN_LABEL
4410 ASM_WEAKEN_LABEL (asm_out_file, name);
4411 #else
4412 #ifdef ASM_OUTPUT_WEAK_ALIAS
4413 warning (0, "only weak aliases are supported in this configuration");
4414 return;
4415 #endif
4416 #endif
4417 #endif
4418 }
4419 }
4420
4421 /* Emit the assembly bits to indicate that DECL is globally visible. */
4422
4423 static void
4424 globalize_decl (tree decl)
4425 {
4426 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
4427
4428 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
4429 if (DECL_WEAK (decl))
4430 {
4431 tree *p, t;
4432
4433 #ifdef ASM_WEAKEN_DECL
4434 ASM_WEAKEN_DECL (asm_out_file, decl, name, 0);
4435 #else
4436 ASM_WEAKEN_LABEL (asm_out_file, name);
4437 #endif
4438
4439 /* Remove this function from the pending weak list so that
4440 we do not emit multiple .weak directives for it. */
4441 for (p = &weak_decls; (t = *p) ; )
4442 {
4443 if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
4444 *p = TREE_CHAIN (t);
4445 else
4446 p = &TREE_CHAIN (t);
4447 }
4448 return;
4449 }
4450 #elif defined(ASM_MAKE_LABEL_LINKONCE)
4451 if (DECL_ONE_ONLY (decl))
4452 ASM_MAKE_LABEL_LINKONCE (asm_out_file, name);
4453 #endif
4454
4455 targetm.asm_out.globalize_label (asm_out_file, name);
4456 }
4457
4458 /* We have to be able to tell cgraph about the needed-ness of the target
4459 of an alias. This requires that the decl have been defined. Aliases
4460 that precede their definition have to be queued for later processing. */
4461
4462 typedef struct alias_pair GTY(())
4463 {
4464 tree decl;
4465 tree target;
4466 } alias_pair;
4467
4468 /* Define gc'd vector type. */
4469 DEF_VEC_O(alias_pair);
4470 DEF_VEC_ALLOC_O(alias_pair,gc);
4471
4472 static GTY(()) VEC(alias_pair,gc) *alias_pairs;
4473
4474 /* Given an assembly name, find the decl it is associated with. At the
4475 same time, mark it needed for cgraph. */
4476
4477 static tree
4478 find_decl_and_mark_needed (tree decl, tree target)
4479 {
4480 struct cgraph_node *fnode = NULL;
4481 struct cgraph_varpool_node *vnode = NULL;
4482
4483 /* C++ thunk emitting code produces aliases late in the game.
4484 Avoid confusing cgraph code in that case. */
4485 if (!cgraph_global_info_ready)
4486 {
4487 if (TREE_CODE (decl) == FUNCTION_DECL)
4488 {
4489 fnode = cgraph_node_for_asm (target);
4490 if (fnode == NULL)
4491 vnode = cgraph_varpool_node_for_asm (target);
4492 }
4493 else
4494 {
4495 vnode = cgraph_varpool_node_for_asm (target);
4496 if (vnode == NULL)
4497 fnode = cgraph_node_for_asm (target);
4498 }
4499 }
4500
4501 if (fnode)
4502 {
4503 cgraph_mark_needed_node (fnode);
4504 return fnode->decl;
4505 }
4506 else if (vnode)
4507 {
4508 cgraph_varpool_mark_needed_node (vnode);
4509 return vnode->decl;
4510 }
4511 else
4512 return NULL_TREE;
4513 }
4514
4515 /* Output the assembler code for a define (equate) using ASM_OUTPUT_DEF
4516 or ASM_OUTPUT_DEF_FROM_DECLS. The function defines the symbol whose
4517 tree node is DECL to have the value of the tree node TARGET. */
4518
4519 static void
4520 do_assemble_alias (tree decl, tree target ATTRIBUTE_UNUSED)
4521 {
4522 if (TREE_ASM_WRITTEN (decl))
4523 return;
4524
4525 TREE_ASM_WRITTEN (decl) = 1;
4526 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl)) = 1;
4527
4528 #ifdef ASM_OUTPUT_DEF
4529 /* Make name accessible from other files, if appropriate. */
4530
4531 if (TREE_PUBLIC (decl))
4532 {
4533 globalize_decl (decl);
4534 maybe_assemble_visibility (decl);
4535 }
4536
4537 # ifdef ASM_OUTPUT_DEF_FROM_DECLS
4538 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file, decl, target);
4539 # else
4540 ASM_OUTPUT_DEF (asm_out_file,
4541 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)),
4542 IDENTIFIER_POINTER (target));
4543 # endif
4544 #elif defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
4545 {
4546 const char *name;
4547 tree *p, t;
4548
4549 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
4550 # ifdef ASM_WEAKEN_DECL
4551 ASM_WEAKEN_DECL (asm_out_file, decl, name, IDENTIFIER_POINTER (target));
4552 # else
4553 ASM_OUTPUT_WEAK_ALIAS (asm_out_file, name, IDENTIFIER_POINTER (target));
4554 # endif
4555 /* Remove this function from the pending weak list so that
4556 we do not emit multiple .weak directives for it. */
4557 for (p = &weak_decls; (t = *p) ; )
4558 if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
4559 *p = TREE_CHAIN (t);
4560 else
4561 p = &TREE_CHAIN (t);
4562 }
4563 #endif
4564 }
4565
4566 /* First pass of completing pending aliases. Make sure that cgraph knows
4567 which symbols will be required. */
4568
4569 void
4570 finish_aliases_1 (void)
4571 {
4572 unsigned i;
4573 alias_pair *p;
4574
4575 for (i = 0; VEC_iterate (alias_pair, alias_pairs, i, p); i++)
4576 {
4577 tree target_decl;
4578
4579 target_decl = find_decl_and_mark_needed (p->decl, p->target);
4580 if (target_decl == NULL)
4581 error ("%J%qD aliased to undefined symbol %qE",
4582 p->decl, p->decl, p->target);
4583 else if (DECL_EXTERNAL (target_decl))
4584 error ("%J%qD aliased to external symbol %qE",
4585 p->decl, p->decl, p->target);
4586 }
4587 }
4588
4589 /* Second pass of completing pending aliases. Emit the actual assembly.
4590 This happens at the end of compilation and thus it is assured that the
4591 target symbol has been emitted. */
4592
4593 void
4594 finish_aliases_2 (void)
4595 {
4596 unsigned i;
4597 alias_pair *p;
4598
4599 for (i = 0; VEC_iterate (alias_pair, alias_pairs, i, p); i++)
4600 do_assemble_alias (p->decl, p->target);
4601
4602 VEC_truncate (alias_pair, alias_pairs, 0);
4603 }
4604
4605 /* Emit an assembler directive to make the symbol for DECL an alias to
4606 the symbol for TARGET. */
4607
4608 void
4609 assemble_alias (tree decl, tree target)
4610 {
4611 tree target_decl;
4612
4613 #if !defined (ASM_OUTPUT_DEF)
4614 # if !defined(ASM_OUTPUT_WEAK_ALIAS) && !defined (ASM_WEAKEN_DECL)
4615 error ("%Jalias definitions not supported in this configuration", decl);
4616 return;
4617 # else
4618 if (!DECL_WEAK (decl))
4619 {
4620 error ("%Jonly weak aliases are supported in this configuration", decl);
4621 return;
4622 }
4623 # endif
4624 #endif
4625
4626 /* We must force creation of DECL_RTL for debug info generation, even though
4627 we don't use it here. */
4628 make_decl_rtl (decl);
4629 TREE_USED (decl) = 1;
4630
4631 /* A quirk of the initial implementation of aliases required that the user
4632 add "extern" to all of them. Which is silly, but now historical. Do
4633 note that the symbol is in fact locally defined. */
4634 DECL_EXTERNAL (decl) = 0;
4635
4636 /* Allow aliases to aliases. */
4637 if (TREE_CODE (decl) == FUNCTION_DECL)
4638 cgraph_node (decl)->alias = true;
4639 else
4640 cgraph_varpool_node (decl)->alias = true;
4641
4642 /* If the target has already been emitted, we don't have to queue the
4643 alias. This saves a tad o memory. */
4644 target_decl = find_decl_and_mark_needed (decl, target);
4645 if (target_decl && TREE_ASM_WRITTEN (target_decl))
4646 do_assemble_alias (decl, target);
4647 else
4648 {
4649 alias_pair *p = VEC_safe_push (alias_pair, gc, alias_pairs, NULL);
4650 p->decl = decl;
4651 p->target = target;
4652 }
4653 }
4654
4655 /* Emit an assembler directive to set symbol for DECL visibility to
4656 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
4657
4658 void
4659 default_assemble_visibility (tree decl, int vis)
4660 {
4661 static const char * const visibility_types[] = {
4662 NULL, "internal", "hidden", "protected"
4663 };
4664
4665 const char *name, *type;
4666
4667 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
4668 type = visibility_types[vis];
4669
4670 #ifdef HAVE_GAS_HIDDEN
4671 fprintf (asm_out_file, "\t.%s\t", type);
4672 assemble_name (asm_out_file, name);
4673 fprintf (asm_out_file, "\n");
4674 #else
4675 warning (0, "visibility attribute not supported in this configuration; ignored");
4676 #endif
4677 }
4678
4679 /* A helper function to call assemble_visibility when needed for a decl. */
4680
4681 static void
4682 maybe_assemble_visibility (tree decl)
4683 {
4684 enum symbol_visibility vis = DECL_VISIBILITY (decl);
4685
4686 if (vis != VISIBILITY_DEFAULT)
4687 targetm.asm_out.visibility (decl, vis);
4688 }
4689
4690 /* Returns 1 if the target configuration supports defining public symbols
4691 so that one of them will be chosen at link time instead of generating a
4692 multiply-defined symbol error, whether through the use of weak symbols or
4693 a target-specific mechanism for having duplicates discarded. */
4694
4695 int
4696 supports_one_only (void)
4697 {
4698 if (SUPPORTS_ONE_ONLY)
4699 return 1;
4700 return SUPPORTS_WEAK;
4701 }
4702
4703 /* Set up DECL as a public symbol that can be defined in multiple
4704 translation units without generating a linker error. */
4705
4706 void
4707 make_decl_one_only (tree decl)
4708 {
4709 gcc_assert (TREE_CODE (decl) == VAR_DECL
4710 || TREE_CODE (decl) == FUNCTION_DECL);
4711
4712 TREE_PUBLIC (decl) = 1;
4713
4714 if (SUPPORTS_ONE_ONLY)
4715 {
4716 #ifdef MAKE_DECL_ONE_ONLY
4717 MAKE_DECL_ONE_ONLY (decl);
4718 #endif
4719 DECL_ONE_ONLY (decl) = 1;
4720 }
4721 else if (TREE_CODE (decl) == VAR_DECL
4722 && (DECL_INITIAL (decl) == 0 || DECL_INITIAL (decl) == error_mark_node))
4723 DECL_COMMON (decl) = 1;
4724 else
4725 {
4726 gcc_assert (SUPPORTS_WEAK);
4727 DECL_WEAK (decl) = 1;
4728 }
4729 }
4730
4731 void
4732 init_varasm_once (void)
4733 {
4734 in_named_htab = htab_create_ggc (31, in_named_entry_hash,
4735 in_named_entry_eq, NULL);
4736 const_desc_htab = htab_create_ggc (1009, const_desc_hash,
4737 const_desc_eq, NULL);
4738
4739 const_alias_set = new_alias_set ();
4740 }
4741
4742 static enum tls_model
4743 decl_tls_model (tree decl)
4744 {
4745 enum tls_model kind;
4746 tree attr = lookup_attribute ("tls_model", DECL_ATTRIBUTES (decl));
4747 bool is_local;
4748
4749 if (attr)
4750 {
4751 attr = TREE_VALUE (TREE_VALUE (attr));
4752 gcc_assert (TREE_CODE (attr) == STRING_CST);
4753
4754 if (!strcmp (TREE_STRING_POINTER (attr), "local-exec"))
4755 kind = TLS_MODEL_LOCAL_EXEC;
4756 else if (!strcmp (TREE_STRING_POINTER (attr), "initial-exec"))
4757 kind = TLS_MODEL_INITIAL_EXEC;
4758 else if (!strcmp (TREE_STRING_POINTER (attr), "local-dynamic"))
4759 kind = optimize ? TLS_MODEL_LOCAL_DYNAMIC : TLS_MODEL_GLOBAL_DYNAMIC;
4760 else if (!strcmp (TREE_STRING_POINTER (attr), "global-dynamic"))
4761 kind = TLS_MODEL_GLOBAL_DYNAMIC;
4762 else
4763 gcc_unreachable ();
4764 return kind;
4765 }
4766
4767 is_local = targetm.binds_local_p (decl);
4768 if (!flag_shlib)
4769 {
4770 if (is_local)
4771 kind = TLS_MODEL_LOCAL_EXEC;
4772 else
4773 kind = TLS_MODEL_INITIAL_EXEC;
4774 }
4775 /* Local dynamic is inefficient when we're not combining the
4776 parts of the address. */
4777 else if (optimize && is_local)
4778 kind = TLS_MODEL_LOCAL_DYNAMIC;
4779 else
4780 kind = TLS_MODEL_GLOBAL_DYNAMIC;
4781 if (kind < flag_tls_default)
4782 kind = flag_tls_default;
4783
4784 return kind;
4785 }
4786
4787 /* Select a set of attributes for section NAME based on the properties
4788 of DECL and whether or not RELOC indicates that DECL's initializer
4789 might contain runtime relocations.
4790
4791 We make the section read-only and executable for a function decl,
4792 read-only for a const data decl, and writable for a non-const data decl. */
4793
4794 unsigned int
4795 default_section_type_flags (tree decl, const char *name, int reloc)
4796 {
4797 return default_section_type_flags_1 (decl, name, reloc, flag_pic);
4798 }
4799
4800 unsigned int
4801 default_section_type_flags_1 (tree decl, const char *name, int reloc,
4802 int shlib)
4803 {
4804 unsigned int flags;
4805
4806 if (decl && TREE_CODE (decl) == FUNCTION_DECL)
4807 flags = SECTION_CODE;
4808 else if (decl && decl_readonly_section_1 (decl, reloc, shlib))
4809 flags = 0;
4810 else if (current_function_decl
4811 && cfun
4812 && cfun->unlikely_text_section_name
4813 && strcmp (name, cfun->unlikely_text_section_name) == 0)
4814 flags = SECTION_CODE;
4815 else if (!decl
4816 && (!current_function_decl || !cfun)
4817 && strcmp (name, UNLIKELY_EXECUTED_TEXT_SECTION_NAME) == 0)
4818 flags = SECTION_CODE;
4819 else
4820 flags = SECTION_WRITE;
4821
4822 if (decl && DECL_ONE_ONLY (decl))
4823 flags |= SECTION_LINKONCE;
4824
4825 if (decl && TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL (decl))
4826 flags |= SECTION_TLS | SECTION_WRITE;
4827
4828 if (strcmp (name, ".bss") == 0
4829 || strncmp (name, ".bss.", 5) == 0
4830 || strncmp (name, ".gnu.linkonce.b.", 16) == 0
4831 || strcmp (name, ".sbss") == 0
4832 || strncmp (name, ".sbss.", 6) == 0
4833 || strncmp (name, ".gnu.linkonce.sb.", 17) == 0)
4834 flags |= SECTION_BSS;
4835
4836 if (strcmp (name, ".tdata") == 0
4837 || strncmp (name, ".tdata.", 7) == 0
4838 || strncmp (name, ".gnu.linkonce.td.", 17) == 0)
4839 flags |= SECTION_TLS;
4840
4841 if (strcmp (name, ".tbss") == 0
4842 || strncmp (name, ".tbss.", 6) == 0
4843 || strncmp (name, ".gnu.linkonce.tb.", 17) == 0)
4844 flags |= SECTION_TLS | SECTION_BSS;
4845
4846 /* These three sections have special ELF types. They are neither
4847 SHT_PROGBITS nor SHT_NOBITS, so when changing sections we don't
4848 want to print a section type (@progbits or @nobits). If someone
4849 is silly enough to emit code or TLS variables to one of these
4850 sections, then don't handle them specially. */
4851 if (!(flags & (SECTION_CODE | SECTION_BSS | SECTION_TLS))
4852 && (strcmp (name, ".init_array") == 0
4853 || strcmp (name, ".fini_array") == 0
4854 || strcmp (name, ".preinit_array") == 0))
4855 flags |= SECTION_NOTYPE;
4856
4857 return flags;
4858 }
4859
4860 /* Output assembly to switch to section NAME with attribute FLAGS.
4861 Four variants for common object file formats. */
4862
4863 void
4864 default_no_named_section (const char *name ATTRIBUTE_UNUSED,
4865 unsigned int flags ATTRIBUTE_UNUSED,
4866 tree decl ATTRIBUTE_UNUSED)
4867 {
4868 /* Some object formats don't support named sections at all. The
4869 front-end should already have flagged this as an error. */
4870 gcc_unreachable ();
4871 }
4872
4873 void
4874 default_elf_asm_named_section (const char *name, unsigned int flags,
4875 tree decl ATTRIBUTE_UNUSED)
4876 {
4877 char flagchars[10], *f = flagchars;
4878
4879 /* If we have already declared this section, we can use an
4880 abbreviated form to switch back to it -- unless this section is
4881 part of a COMDAT groups, in which case GAS requires the full
4882 declaration every time. */
4883 if (!(HAVE_GAS_COMDAT_GROUP && (flags & SECTION_LINKONCE))
4884 && ! named_section_first_declaration (name))
4885 {
4886 fprintf (asm_out_file, "\t.section\t%s\n", name);
4887 return;
4888 }
4889
4890 if (!(flags & SECTION_DEBUG))
4891 *f++ = 'a';
4892 if (flags & SECTION_WRITE)
4893 *f++ = 'w';
4894 if (flags & SECTION_CODE)
4895 *f++ = 'x';
4896 if (flags & SECTION_SMALL)
4897 *f++ = 's';
4898 if (flags & SECTION_MERGE)
4899 *f++ = 'M';
4900 if (flags & SECTION_STRINGS)
4901 *f++ = 'S';
4902 if (flags & SECTION_TLS)
4903 *f++ = 'T';
4904 if (HAVE_GAS_COMDAT_GROUP && (flags & SECTION_LINKONCE))
4905 *f++ = 'G';
4906 *f = '\0';
4907
4908 fprintf (asm_out_file, "\t.section\t%s,\"%s\"", name, flagchars);
4909
4910 if (!(flags & SECTION_NOTYPE))
4911 {
4912 const char *type;
4913 const char *format;
4914
4915 if (flags & SECTION_BSS)
4916 type = "nobits";
4917 else
4918 type = "progbits";
4919
4920 format = ",@%s";
4921 #ifdef ASM_COMMENT_START
4922 /* On platforms that use "@" as the assembly comment character,
4923 use "%" instead. */
4924 if (strcmp (ASM_COMMENT_START, "@") == 0)
4925 format = ",%%%s";
4926 #endif
4927 fprintf (asm_out_file, format, type);
4928
4929 if (flags & SECTION_ENTSIZE)
4930 fprintf (asm_out_file, ",%d", flags & SECTION_ENTSIZE);
4931 if (HAVE_GAS_COMDAT_GROUP && (flags & SECTION_LINKONCE))
4932 fprintf (asm_out_file, ",%s,comdat",
4933 lang_hooks.decls.comdat_group (decl));
4934 }
4935
4936 putc ('\n', asm_out_file);
4937 }
4938
4939 void
4940 default_coff_asm_named_section (const char *name, unsigned int flags,
4941 tree decl ATTRIBUTE_UNUSED)
4942 {
4943 char flagchars[8], *f = flagchars;
4944
4945 if (flags & SECTION_WRITE)
4946 *f++ = 'w';
4947 if (flags & SECTION_CODE)
4948 *f++ = 'x';
4949 *f = '\0';
4950
4951 fprintf (asm_out_file, "\t.section\t%s,\"%s\"\n", name, flagchars);
4952 }
4953
4954 void
4955 default_pe_asm_named_section (const char *name, unsigned int flags,
4956 tree decl)
4957 {
4958 default_coff_asm_named_section (name, flags, decl);
4959
4960 if (flags & SECTION_LINKONCE)
4961 {
4962 /* Functions may have been compiled at various levels of
4963 optimization so we can't use `same_size' here.
4964 Instead, have the linker pick one. */
4965 fprintf (asm_out_file, "\t.linkonce %s\n",
4966 (flags & SECTION_CODE ? "discard" : "same_size"));
4967 }
4968 }
4969 \f
4970 /* The lame default section selector. */
4971
4972 void
4973 default_select_section (tree decl, int reloc,
4974 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
4975 {
4976 bool readonly = false;
4977
4978 if (DECL_P (decl))
4979 {
4980 if (decl_readonly_section (decl, reloc))
4981 readonly = true;
4982 }
4983 else if (TREE_CODE (decl) == CONSTRUCTOR)
4984 {
4985 if (! ((flag_pic && reloc)
4986 || !TREE_READONLY (decl)
4987 || TREE_SIDE_EFFECTS (decl)
4988 || !TREE_CONSTANT (decl)))
4989 readonly = true;
4990 }
4991 else if (TREE_CODE (decl) == STRING_CST)
4992 readonly = true;
4993 else if (! (flag_pic && reloc))
4994 readonly = true;
4995
4996 if (readonly)
4997 readonly_data_section ();
4998 else
4999 data_section ();
5000 }
5001
5002 /* A helper function for default_elf_select_section and
5003 default_elf_unique_section. Categorizes the DECL. */
5004
5005 enum section_category
5006 {
5007 SECCAT_TEXT,
5008
5009 SECCAT_RODATA,
5010 SECCAT_RODATA_MERGE_STR,
5011 SECCAT_RODATA_MERGE_STR_INIT,
5012 SECCAT_RODATA_MERGE_CONST,
5013 SECCAT_SRODATA,
5014
5015 SECCAT_DATA,
5016
5017 /* To optimize loading of shared programs, define following subsections
5018 of data section:
5019 _REL Contains data that has relocations, so they get grouped
5020 together and dynamic linker will visit fewer pages in memory.
5021 _RO Contains data that is otherwise read-only. This is useful
5022 with prelinking as most relocations won't be dynamically
5023 linked and thus stay read only.
5024 _LOCAL Marks data containing relocations only to local objects.
5025 These relocations will get fully resolved by prelinking. */
5026 SECCAT_DATA_REL,
5027 SECCAT_DATA_REL_LOCAL,
5028 SECCAT_DATA_REL_RO,
5029 SECCAT_DATA_REL_RO_LOCAL,
5030
5031 SECCAT_SDATA,
5032 SECCAT_TDATA,
5033
5034 SECCAT_BSS,
5035 SECCAT_SBSS,
5036 SECCAT_TBSS
5037 };
5038
5039 static enum section_category
5040 categorize_decl_for_section (tree, int, int);
5041
5042 static enum section_category
5043 categorize_decl_for_section (tree decl, int reloc, int shlib)
5044 {
5045 enum section_category ret;
5046
5047 if (TREE_CODE (decl) == FUNCTION_DECL)
5048 return SECCAT_TEXT;
5049 else if (TREE_CODE (decl) == STRING_CST)
5050 {
5051 if (flag_mudflap) /* or !flag_merge_constants */
5052 return SECCAT_RODATA;
5053 else
5054 return SECCAT_RODATA_MERGE_STR;
5055 }
5056 else if (TREE_CODE (decl) == VAR_DECL)
5057 {
5058 if (DECL_INITIAL (decl) == NULL
5059 || DECL_INITIAL (decl) == error_mark_node
5060 || (flag_zero_initialized_in_bss
5061 /* Leave constant zeroes in .rodata so they can be shared. */
5062 && !TREE_READONLY (decl)
5063 && initializer_zerop (DECL_INITIAL (decl))))
5064 ret = SECCAT_BSS;
5065 else if (! TREE_READONLY (decl)
5066 || TREE_SIDE_EFFECTS (decl)
5067 || ! TREE_CONSTANT (DECL_INITIAL (decl)))
5068 {
5069 if (shlib && (reloc & 2))
5070 ret = SECCAT_DATA_REL;
5071 else if (shlib && reloc)
5072 ret = SECCAT_DATA_REL_LOCAL;
5073 else
5074 ret = SECCAT_DATA;
5075 }
5076 else if (shlib && (reloc & 2))
5077 ret = SECCAT_DATA_REL_RO;
5078 else if (shlib && reloc)
5079 ret = SECCAT_DATA_REL_RO_LOCAL;
5080 else if (reloc || flag_merge_constants < 2)
5081 /* C and C++ don't allow different variables to share the same
5082 location. -fmerge-all-constants allows even that (at the
5083 expense of not conforming). */
5084 ret = SECCAT_RODATA;
5085 else if (TREE_CODE (DECL_INITIAL (decl)) == STRING_CST)
5086 ret = SECCAT_RODATA_MERGE_STR_INIT;
5087 else
5088 ret = SECCAT_RODATA_MERGE_CONST;
5089 }
5090 else if (TREE_CODE (decl) == CONSTRUCTOR)
5091 {
5092 if ((shlib && reloc)
5093 || TREE_SIDE_EFFECTS (decl)
5094 || ! TREE_CONSTANT (decl))
5095 ret = SECCAT_DATA;
5096 else
5097 ret = SECCAT_RODATA;
5098 }
5099 else
5100 ret = SECCAT_RODATA;
5101
5102 /* There are no read-only thread-local sections. */
5103 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL (decl))
5104 {
5105 /* Note that this would be *just* SECCAT_BSS, except that there's
5106 no concept of a read-only thread-local-data section. */
5107 if (ret == SECCAT_BSS
5108 || (flag_zero_initialized_in_bss
5109 && initializer_zerop (DECL_INITIAL (decl))))
5110 ret = SECCAT_TBSS;
5111 else
5112 ret = SECCAT_TDATA;
5113 }
5114
5115 /* If the target uses small data sections, select it. */
5116 else if (targetm.in_small_data_p (decl))
5117 {
5118 if (ret == SECCAT_BSS)
5119 ret = SECCAT_SBSS;
5120 else if (targetm.have_srodata_section && ret == SECCAT_RODATA)
5121 ret = SECCAT_SRODATA;
5122 else
5123 ret = SECCAT_SDATA;
5124 }
5125
5126 return ret;
5127 }
5128
5129 bool
5130 decl_readonly_section (tree decl, int reloc)
5131 {
5132 return decl_readonly_section_1 (decl, reloc, flag_pic);
5133 }
5134
5135 bool
5136 decl_readonly_section_1 (tree decl, int reloc, int shlib)
5137 {
5138 switch (categorize_decl_for_section (decl, reloc, shlib))
5139 {
5140 case SECCAT_RODATA:
5141 case SECCAT_RODATA_MERGE_STR:
5142 case SECCAT_RODATA_MERGE_STR_INIT:
5143 case SECCAT_RODATA_MERGE_CONST:
5144 case SECCAT_SRODATA:
5145 return true;
5146 break;
5147 default:
5148 return false;
5149 break;
5150 }
5151 }
5152
5153 /* Select a section based on the above categorization. */
5154
5155 void
5156 default_elf_select_section (tree decl, int reloc,
5157 unsigned HOST_WIDE_INT align)
5158 {
5159 default_elf_select_section_1 (decl, reloc, align, flag_pic);
5160 }
5161
5162 void
5163 default_elf_select_section_1 (tree decl, int reloc,
5164 unsigned HOST_WIDE_INT align, int shlib)
5165 {
5166 const char *sname;
5167 switch (categorize_decl_for_section (decl, reloc, shlib))
5168 {
5169 case SECCAT_TEXT:
5170 /* We're not supposed to be called on FUNCTION_DECLs. */
5171 gcc_unreachable ();
5172 case SECCAT_RODATA:
5173 readonly_data_section ();
5174 return;
5175 case SECCAT_RODATA_MERGE_STR:
5176 mergeable_string_section (decl, align, 0);
5177 return;
5178 case SECCAT_RODATA_MERGE_STR_INIT:
5179 mergeable_string_section (DECL_INITIAL (decl), align, 0);
5180 return;
5181 case SECCAT_RODATA_MERGE_CONST:
5182 mergeable_constant_section (DECL_MODE (decl), align, 0);
5183 return;
5184 case SECCAT_SRODATA:
5185 sname = ".sdata2";
5186 break;
5187 case SECCAT_DATA:
5188 data_section ();
5189 return;
5190 case SECCAT_DATA_REL:
5191 sname = ".data.rel";
5192 break;
5193 case SECCAT_DATA_REL_LOCAL:
5194 sname = ".data.rel.local";
5195 break;
5196 case SECCAT_DATA_REL_RO:
5197 sname = ".data.rel.ro";
5198 break;
5199 case SECCAT_DATA_REL_RO_LOCAL:
5200 sname = ".data.rel.ro.local";
5201 break;
5202 case SECCAT_SDATA:
5203 sname = ".sdata";
5204 break;
5205 case SECCAT_TDATA:
5206 sname = ".tdata";
5207 break;
5208 case SECCAT_BSS:
5209 #ifdef BSS_SECTION_ASM_OP
5210 bss_section ();
5211 return;
5212 #else
5213 sname = ".bss";
5214 break;
5215 #endif
5216 case SECCAT_SBSS:
5217 sname = ".sbss";
5218 break;
5219 case SECCAT_TBSS:
5220 sname = ".tbss";
5221 break;
5222 default:
5223 gcc_unreachable ();
5224 }
5225
5226 if (!DECL_P (decl))
5227 decl = NULL_TREE;
5228 named_section (decl, sname, reloc);
5229 }
5230
5231 /* Construct a unique section name based on the decl name and the
5232 categorization performed above. */
5233
5234 void
5235 default_unique_section (tree decl, int reloc)
5236 {
5237 default_unique_section_1 (decl, reloc, flag_pic);
5238 }
5239
5240 void
5241 default_unique_section_1 (tree decl, int reloc, int shlib)
5242 {
5243 bool one_only = DECL_ONE_ONLY (decl);
5244 const char *prefix, *name;
5245 size_t nlen, plen;
5246 char *string;
5247
5248 switch (categorize_decl_for_section (decl, reloc, shlib))
5249 {
5250 case SECCAT_TEXT:
5251 prefix = one_only ? ".gnu.linkonce.t." : ".text.";
5252 break;
5253 case SECCAT_RODATA:
5254 case SECCAT_RODATA_MERGE_STR:
5255 case SECCAT_RODATA_MERGE_STR_INIT:
5256 case SECCAT_RODATA_MERGE_CONST:
5257 prefix = one_only ? ".gnu.linkonce.r." : ".rodata.";
5258 break;
5259 case SECCAT_SRODATA:
5260 prefix = one_only ? ".gnu.linkonce.s2." : ".sdata2.";
5261 break;
5262 case SECCAT_DATA:
5263 case SECCAT_DATA_REL:
5264 case SECCAT_DATA_REL_LOCAL:
5265 case SECCAT_DATA_REL_RO:
5266 case SECCAT_DATA_REL_RO_LOCAL:
5267 prefix = one_only ? ".gnu.linkonce.d." : ".data.";
5268 break;
5269 case SECCAT_SDATA:
5270 prefix = one_only ? ".gnu.linkonce.s." : ".sdata.";
5271 break;
5272 case SECCAT_BSS:
5273 prefix = one_only ? ".gnu.linkonce.b." : ".bss.";
5274 break;
5275 case SECCAT_SBSS:
5276 prefix = one_only ? ".gnu.linkonce.sb." : ".sbss.";
5277 break;
5278 case SECCAT_TDATA:
5279 prefix = one_only ? ".gnu.linkonce.td." : ".tdata.";
5280 break;
5281 case SECCAT_TBSS:
5282 prefix = one_only ? ".gnu.linkonce.tb." : ".tbss.";
5283 break;
5284 default:
5285 gcc_unreachable ();
5286 }
5287 plen = strlen (prefix);
5288
5289 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5290 name = targetm.strip_name_encoding (name);
5291 nlen = strlen (name);
5292
5293 string = alloca (nlen + plen + 1);
5294 memcpy (string, prefix, plen);
5295 memcpy (string + plen, name, nlen + 1);
5296
5297 DECL_SECTION_NAME (decl) = build_string (nlen + plen, string);
5298 }
5299
5300 void
5301 default_select_rtx_section (enum machine_mode mode ATTRIBUTE_UNUSED,
5302 rtx x,
5303 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
5304 {
5305 if (flag_pic)
5306 switch (GET_CODE (x))
5307 {
5308 case CONST:
5309 case SYMBOL_REF:
5310 case LABEL_REF:
5311 data_section ();
5312 return;
5313
5314 default:
5315 break;
5316 }
5317
5318 readonly_data_section ();
5319 }
5320
5321 void
5322 default_elf_select_rtx_section (enum machine_mode mode, rtx x,
5323 unsigned HOST_WIDE_INT align)
5324 {
5325 /* ??? Handle small data here somehow. */
5326
5327 if (flag_pic)
5328 switch (GET_CODE (x))
5329 {
5330 case CONST:
5331 case SYMBOL_REF:
5332 named_section (NULL_TREE, ".data.rel.ro", 3);
5333 return;
5334
5335 case LABEL_REF:
5336 named_section (NULL_TREE, ".data.rel.ro.local", 1);
5337 return;
5338
5339 default:
5340 break;
5341 }
5342
5343 mergeable_constant_section (mode, align, 0);
5344 }
5345
5346 /* Set the generally applicable flags on the SYMBOL_REF for EXP. */
5347
5348 void
5349 default_encode_section_info (tree decl, rtx rtl, int first ATTRIBUTE_UNUSED)
5350 {
5351 rtx symbol;
5352 int flags;
5353
5354 /* Careful not to prod global register variables. */
5355 if (!MEM_P (rtl))
5356 return;
5357 symbol = XEXP (rtl, 0);
5358 if (GET_CODE (symbol) != SYMBOL_REF)
5359 return;
5360
5361 flags = 0;
5362 if (TREE_CODE (decl) == FUNCTION_DECL)
5363 flags |= SYMBOL_FLAG_FUNCTION;
5364 if (targetm.binds_local_p (decl))
5365 flags |= SYMBOL_FLAG_LOCAL;
5366 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL (decl))
5367 flags |= decl_tls_model (decl) << SYMBOL_FLAG_TLS_SHIFT;
5368 else if (targetm.in_small_data_p (decl))
5369 flags |= SYMBOL_FLAG_SMALL;
5370 /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names? Without
5371 being PUBLIC, the thing *must* be defined in this translation unit.
5372 Prevent this buglet from being propagated into rtl code as well. */
5373 if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
5374 flags |= SYMBOL_FLAG_EXTERNAL;
5375
5376 SYMBOL_REF_FLAGS (symbol) = flags;
5377 }
5378
5379 /* By default, we do nothing for encode_section_info, so we need not
5380 do anything but discard the '*' marker. */
5381
5382 const char *
5383 default_strip_name_encoding (const char *str)
5384 {
5385 return str + (*str == '*');
5386 }
5387
5388 /* Assume ELF-ish defaults, since that's pretty much the most liberal
5389 wrt cross-module name binding. */
5390
5391 bool
5392 default_binds_local_p (tree exp)
5393 {
5394 return default_binds_local_p_1 (exp, flag_shlib);
5395 }
5396
5397 bool
5398 default_binds_local_p_1 (tree exp, int shlib)
5399 {
5400 bool local_p;
5401
5402 /* A non-decl is an entry in the constant pool. */
5403 if (!DECL_P (exp))
5404 local_p = true;
5405 /* Static variables are always local. */
5406 else if (! TREE_PUBLIC (exp))
5407 local_p = true;
5408 /* A variable is local if the user explicitly tells us so. */
5409 else if (DECL_VISIBILITY_SPECIFIED (exp) && DECL_VISIBILITY (exp) != VISIBILITY_DEFAULT)
5410 local_p = true;
5411 /* Otherwise, variables defined outside this object may not be local. */
5412 else if (DECL_EXTERNAL (exp))
5413 local_p = false;
5414 /* Linkonce and weak data are never local. */
5415 else if (DECL_ONE_ONLY (exp) || DECL_WEAK (exp))
5416 local_p = false;
5417 /* If none of the above and visibility is not default, make local. */
5418 else if (DECL_VISIBILITY (exp) != VISIBILITY_DEFAULT)
5419 local_p = true;
5420 /* If PIC, then assume that any global name can be overridden by
5421 symbols resolved from other modules. */
5422 else if (shlib)
5423 local_p = false;
5424 /* Uninitialized COMMON variable may be unified with symbols
5425 resolved from other modules. */
5426 else if (DECL_COMMON (exp)
5427 && (DECL_INITIAL (exp) == NULL
5428 || DECL_INITIAL (exp) == error_mark_node))
5429 local_p = false;
5430 /* Otherwise we're left with initialized (or non-common) global data
5431 which is of necessity defined locally. */
5432 else
5433 local_p = true;
5434
5435 return local_p;
5436 }
5437
5438 /* Determine whether or not a pointer mode is valid. Assume defaults
5439 of ptr_mode or Pmode - can be overridden. */
5440 bool
5441 default_valid_pointer_mode (enum machine_mode mode)
5442 {
5443 return (mode == ptr_mode || mode == Pmode);
5444 }
5445
5446 /* Default function to output code that will globalize a label. A
5447 target must define GLOBAL_ASM_OP or provide its own function to
5448 globalize a label. */
5449 #ifdef GLOBAL_ASM_OP
5450 void
5451 default_globalize_label (FILE * stream, const char *name)
5452 {
5453 fputs (GLOBAL_ASM_OP, stream);
5454 assemble_name (stream, name);
5455 putc ('\n', stream);
5456 }
5457 #endif /* GLOBAL_ASM_OP */
5458
5459 /* Default function to output a label for unwind information. The
5460 default is to do nothing. A target that needs nonlocal labels for
5461 unwind information must provide its own function to do this. */
5462 void
5463 default_emit_unwind_label (FILE * stream ATTRIBUTE_UNUSED,
5464 tree decl ATTRIBUTE_UNUSED,
5465 int for_eh ATTRIBUTE_UNUSED,
5466 int empty ATTRIBUTE_UNUSED)
5467 {
5468 }
5469
5470 /* This is how to output an internal numbered label where PREFIX is
5471 the class of label and LABELNO is the number within the class. */
5472
5473 void
5474 default_internal_label (FILE *stream, const char *prefix,
5475 unsigned long labelno)
5476 {
5477 char *const buf = alloca (40 + strlen (prefix));
5478 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, labelno);
5479 ASM_OUTPUT_INTERNAL_LABEL (stream, buf);
5480 }
5481
5482 /* This is the default behavior at the beginning of a file. It's
5483 controlled by two other target-hook toggles. */
5484 void
5485 default_file_start (void)
5486 {
5487 if (targetm.file_start_app_off && !flag_verbose_asm)
5488 fputs (ASM_APP_OFF, asm_out_file);
5489
5490 if (targetm.file_start_file_directive)
5491 output_file_directive (asm_out_file, main_input_filename);
5492 }
5493
5494 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
5495 which emits a special section directive used to indicate whether or
5496 not this object file needs an executable stack. This is primarily
5497 a GNU extension to ELF but could be used on other targets. */
5498
5499 int trampolines_created;
5500
5501 void
5502 file_end_indicate_exec_stack (void)
5503 {
5504 unsigned int flags = SECTION_DEBUG;
5505 if (trampolines_created)
5506 flags |= SECTION_CODE;
5507
5508 named_section_flags (".note.GNU-stack", flags);
5509 }
5510
5511 #include "gt-varasm.h"