Fix a problem with setting CR when splitting into rotlsi3.
[official-gcc.git] / gcc / varasm.c
blob4c96e9f2737b6f6a0729670b824d7aa6df3df32f
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 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
23 /* This file handles generation of all the assembler code
24 *except* the instructions of a function.
25 This includes declarations of variables and their initial values.
27 We also output the assembler code for constants stored in memory
28 and are responsible for combining constants with the same value. */
30 #include "config.h"
31 #include "system.h"
32 #include "coretypes.h"
33 #include "tm.h"
34 #include "rtl.h"
35 #include "tree.h"
36 #include "flags.h"
37 #include "function.h"
38 #include "expr.h"
39 #include "hard-reg-set.h"
40 #include "regs.h"
41 #include "real.h"
42 #include "output.h"
43 #include "toplev.h"
44 #include "hashtab.h"
45 #include "c-pragma.h"
46 #include "ggc.h"
47 #include "langhooks.h"
48 #include "tm_p.h"
49 #include "debug.h"
50 #include "target.h"
51 #include "tree-mudflap.h"
52 #include "cgraph.h"
53 #include "cfglayout.h"
55 #ifdef XCOFF_DEBUGGING_INFO
56 #include "xcoffout.h" /* Needed for external data
57 declarations for e.g. AIX 4.x. */
58 #endif
60 #ifndef ASM_STABS_OP
61 #define ASM_STABS_OP "\t.stabs\t"
62 #endif
64 /* The (assembler) name of the first globally-visible object output. */
65 const char *first_global_object_name;
66 const char *weak_global_object_name;
68 struct addr_const;
69 struct constant_descriptor_rtx;
70 struct rtx_constant_pool;
72 struct varasm_status GTY(())
74 /* If we're using a per-function constant pool, this is it. */
75 struct rtx_constant_pool *pool;
77 /* Number of tree-constants deferred during the expansion of this
78 function. */
79 unsigned int deferred_constants;
82 #define n_deferred_constants (cfun->varasm->deferred_constants)
84 /* Number for making the label on the next
85 constant that is stored in memory. */
87 static GTY(()) int const_labelno;
89 /* Carry information from ASM_DECLARE_OBJECT_NAME
90 to ASM_FINISH_DECLARE_OBJECT. */
92 int size_directive_output;
94 /* The last decl for which assemble_variable was called,
95 if it did ASM_DECLARE_OBJECT_NAME.
96 If the last call to assemble_variable didn't do that,
97 this holds 0. */
99 tree last_assemble_variable_decl;
101 /* The following global variable indicates if the section label for the
102 "cold" section of code has been output yet to the assembler. The
103 label is useful when running gdb. This is part of the optimization that
104 partitions hot and cold basic blocks into separate sections of the .o
105 file. */
107 static bool unlikely_section_label_printed = false;
109 /* The following global variable indicates the label name to be put at
110 the start of the first cold section within each function, when
111 partitioning basic blocks into hot and cold sections. */
113 static char *unlikely_section_label = NULL;
115 /* The following global variable indicates the section name to be used
116 for the current cold section, when partitioning hot and cold basic
117 blocks into separate sections. */
119 static char *unlikely_text_section_name = NULL;
121 /* We give all constants their own alias set. Perhaps redundant with
122 MEM_READONLY_P, but pre-dates it. */
124 static HOST_WIDE_INT const_alias_set;
126 static const char *strip_reg_name (const char *);
127 static int contains_pointers_p (tree);
128 #ifdef ASM_OUTPUT_EXTERNAL
129 static bool incorporeal_function_p (tree);
130 #endif
131 static void decode_addr_const (tree, struct addr_const *);
132 static hashval_t const_desc_hash (const void *);
133 static int const_desc_eq (const void *, const void *);
134 static hashval_t const_hash_1 (const tree);
135 static int compare_constant (const tree, const tree);
136 static tree copy_constant (tree);
137 static void output_constant_def_contents (rtx);
138 static void output_addressed_constants (tree);
139 static unsigned HOST_WIDE_INT array_size_for_constructor (tree);
140 static unsigned min_align (unsigned, unsigned);
141 static void output_constructor (tree, unsigned HOST_WIDE_INT, unsigned int);
142 static void globalize_decl (tree);
143 static void maybe_assemble_visibility (tree);
144 static int in_named_entry_eq (const void *, const void *);
145 static hashval_t in_named_entry_hash (const void *);
146 #ifdef BSS_SECTION_ASM_OP
147 #ifdef ASM_OUTPUT_BSS
148 static void asm_output_bss (FILE *, tree, const char *,
149 unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT);
150 #endif
151 #ifdef ASM_OUTPUT_ALIGNED_BSS
152 static void asm_output_aligned_bss (FILE *, tree, const char *,
153 unsigned HOST_WIDE_INT, int)
154 ATTRIBUTE_UNUSED;
155 #endif
156 #endif /* BSS_SECTION_ASM_OP */
157 static bool asm_emit_uninitialised (tree, const char*,
158 unsigned HOST_WIDE_INT,
159 unsigned HOST_WIDE_INT);
160 static void mark_weak (tree);
162 enum in_section { no_section, in_text, in_unlikely_executed_text, in_data,
163 in_named
164 #ifdef BSS_SECTION_ASM_OP
165 , in_bss
166 #endif
167 #ifdef CTORS_SECTION_ASM_OP
168 , in_ctors
169 #endif
170 #ifdef DTORS_SECTION_ASM_OP
171 , in_dtors
172 #endif
173 #ifdef READONLY_DATA_SECTION_ASM_OP
174 , in_readonly_data
175 #endif
176 #ifdef EXTRA_SECTIONS
177 , EXTRA_SECTIONS
178 #endif
180 static GTY(()) enum in_section in_section = no_section;
182 /* Return a nonzero value if DECL has a section attribute. */
183 #ifndef IN_NAMED_SECTION
184 #define IN_NAMED_SECTION(DECL) \
185 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
186 && DECL_SECTION_NAME (DECL) != NULL_TREE)
187 #endif
189 /* Text of section name when in_section == in_named. */
190 static GTY(()) const char *in_named_name;
192 /* Hash table of flags that have been used for a particular named section. */
194 struct in_named_entry GTY(())
196 const char *name;
197 unsigned int flags;
198 bool declared;
201 static GTY((param_is (struct in_named_entry))) htab_t in_named_htab;
203 /* Define functions like text_section for any extra sections. */
204 #ifdef EXTRA_SECTION_FUNCTIONS
205 EXTRA_SECTION_FUNCTIONS
206 #endif
208 /* Tell assembler to switch to text section. */
210 void
211 text_section (void)
213 if (in_section != in_text)
215 in_section = in_text;
216 fprintf (asm_out_file, "%s\n", TEXT_SECTION_ASM_OP);
220 /* Tell assembler to switch to unlikely-to-be-executed text section. */
222 void
223 unlikely_text_section (void)
225 const char *name;
226 int len;
228 if (! unlikely_text_section_name)
230 if (DECL_SECTION_NAME (current_function_decl)
231 && (strcmp (TREE_STRING_POINTER (DECL_SECTION_NAME
232 (current_function_decl)),
233 HOT_TEXT_SECTION_NAME) != 0)
234 && (strcmp (TREE_STRING_POINTER (DECL_SECTION_NAME
235 (current_function_decl)),
236 UNLIKELY_EXECUTED_TEXT_SECTION_NAME) != 0))
238 name = TREE_STRING_POINTER (DECL_SECTION_NAME
239 (current_function_decl));
240 len = strlen (name);
241 unlikely_text_section_name = xmalloc ((len + 10) * sizeof (char));
242 strcpy (unlikely_text_section_name, name);
243 strcat (unlikely_text_section_name, "_unlikely");
245 else
247 len = strlen (UNLIKELY_EXECUTED_TEXT_SECTION_NAME);
248 unlikely_text_section_name = xmalloc (len+1 * sizeof (char));
249 strcpy (unlikely_text_section_name,
250 UNLIKELY_EXECUTED_TEXT_SECTION_NAME);
254 if ((in_section != in_unlikely_executed_text)
255 && (in_section != in_named
256 || strcmp (in_named_name, unlikely_text_section_name) != 0))
258 named_section (NULL_TREE, unlikely_text_section_name, 0);
259 in_section = in_unlikely_executed_text;
261 if (!unlikely_section_label_printed)
263 ASM_OUTPUT_LABEL (asm_out_file, unlikely_section_label);
264 unlikely_section_label_printed = true;
269 /* Tell assembler to switch to data section. */
271 void
272 data_section (void)
274 if (in_section != in_data)
276 in_section = in_data;
277 fprintf (asm_out_file, "%s\n", DATA_SECTION_ASM_OP);
281 /* Tell assembler to switch to read-only data section. This is normally
282 the text section. */
284 void
285 readonly_data_section (void)
287 #ifdef READONLY_DATA_SECTION
288 READONLY_DATA_SECTION (); /* Note this can call data_section. */
289 #else
290 #ifdef READONLY_DATA_SECTION_ASM_OP
291 if (in_section != in_readonly_data)
293 in_section = in_readonly_data;
294 fputs (READONLY_DATA_SECTION_ASM_OP, asm_out_file);
295 fputc ('\n', asm_out_file);
297 #else
298 text_section ();
299 #endif
300 #endif
303 /* Determine if we're in the text section. */
306 in_text_section (void)
308 return in_section == in_text;
311 /* Determine if we're in the unlikely-to-be-executed text section. */
314 in_unlikely_text_section (void)
316 bool ret_val;
318 ret_val = ((in_section == in_unlikely_executed_text)
319 || (in_section == in_named
320 && unlikely_text_section_name
321 && strcmp (in_named_name, unlikely_text_section_name) == 0));
323 return ret_val;
326 /* Determine if we're in the data section. */
329 in_data_section (void)
331 return in_section == in_data;
334 /* Helper routines for maintaining in_named_htab. */
336 static int
337 in_named_entry_eq (const void *p1, const void *p2)
339 const struct in_named_entry *old = p1;
340 const char *new = p2;
342 return strcmp (old->name, new) == 0;
345 static hashval_t
346 in_named_entry_hash (const void *p)
348 const struct in_named_entry *old = p;
349 return htab_hash_string (old->name);
352 /* If SECTION has been seen before as a named section, return the flags
353 that were used. Otherwise, return 0. Note, that 0 is a perfectly valid
354 set of flags for a section to have, so 0 does not mean that the section
355 has not been seen. */
357 unsigned int
358 get_named_section_flags (const char *section)
360 struct in_named_entry **slot;
362 slot = (struct in_named_entry **)
363 htab_find_slot_with_hash (in_named_htab, section,
364 htab_hash_string (section), NO_INSERT);
366 return slot ? (*slot)->flags : 0;
369 /* Returns true if the section has been declared before. Sets internal
370 flag on this section in in_named_hash so subsequent calls on this
371 section will return false. */
373 bool
374 named_section_first_declaration (const char *name)
376 struct in_named_entry **slot;
378 slot = (struct in_named_entry **)
379 htab_find_slot_with_hash (in_named_htab, name,
380 htab_hash_string (name), NO_INSERT);
381 if (! (*slot)->declared)
383 (*slot)->declared = true;
384 return true;
386 else
388 return false;
393 /* Record FLAGS for SECTION. If SECTION was previously recorded with a
394 different set of flags, return false. */
396 bool
397 set_named_section_flags (const char *section, unsigned int flags)
399 struct in_named_entry **slot, *entry;
401 slot = (struct in_named_entry **)
402 htab_find_slot_with_hash (in_named_htab, section,
403 htab_hash_string (section), INSERT);
404 entry = *slot;
406 if (!entry)
408 entry = ggc_alloc (sizeof (*entry));
409 *slot = entry;
410 entry->name = ggc_strdup (section);
411 entry->flags = flags;
412 entry->declared = false;
414 else if (entry->flags != flags)
415 return false;
417 return true;
420 /* Tell assembler to change to section NAME with attributes FLAGS. If
421 DECL is non-NULL, it is the VAR_DECL or FUNCTION_DECL with which
422 this section is associated. */
424 void
425 named_section_real (const char *name, unsigned int flags, tree decl)
427 if (in_section != in_named || strcmp (name, in_named_name) != 0)
429 if (! set_named_section_flags (name, flags))
430 abort ();
432 targetm.asm_out.named_section (name, flags, decl);
434 if (flags & SECTION_FORGET)
435 in_section = no_section;
436 else
438 in_named_name = ggc_strdup (name);
439 in_section = in_named;
444 /* Tell assembler to change to section NAME for DECL.
445 If DECL is NULL, just switch to section NAME.
446 If NAME is NULL, get the name from DECL.
447 If RELOC is 1, the initializer for DECL contains relocs. */
449 void
450 named_section (tree decl, const char *name, int reloc)
452 unsigned int flags;
454 if (decl != NULL_TREE && !DECL_P (decl))
455 abort ();
456 if (name == NULL)
457 name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
459 if (strcmp (name, UNLIKELY_EXECUTED_TEXT_SECTION_NAME) == 0
460 && !unlikely_text_section_name)
462 unlikely_text_section_name = xmalloc
463 (strlen (UNLIKELY_EXECUTED_TEXT_SECTION_NAME) + 1
464 * sizeof (char));
465 strcpy (unlikely_text_section_name,
466 UNLIKELY_EXECUTED_TEXT_SECTION_NAME);
469 flags = targetm.section_type_flags (decl, name, reloc);
471 /* Sanity check user variables for flag changes. Non-user
472 section flag changes will abort in named_section_flags.
473 However, don't complain if SECTION_OVERRIDE is set.
474 We trust that the setter knows that it is safe to ignore
475 the default flags for this decl. */
476 if (decl && ! set_named_section_flags (name, flags))
478 flags = get_named_section_flags (name);
479 if ((flags & SECTION_OVERRIDE) == 0)
480 error ("%J%D causes a section type conflict", decl, decl);
483 named_section_real (name, flags, decl);
486 /* If required, set DECL_SECTION_NAME to a unique name. */
488 void
489 resolve_unique_section (tree decl, int reloc ATTRIBUTE_UNUSED,
490 int flag_function_or_data_sections)
492 if (DECL_SECTION_NAME (decl) == NULL_TREE
493 && targetm.have_named_sections
494 && (flag_function_or_data_sections
495 || DECL_ONE_ONLY (decl)))
496 targetm.asm_out.unique_section (decl, reloc);
499 #ifdef BSS_SECTION_ASM_OP
501 /* Tell the assembler to switch to the bss section. */
503 void
504 bss_section (void)
506 if (in_section != in_bss)
508 fprintf (asm_out_file, "%s\n", BSS_SECTION_ASM_OP);
509 in_section = in_bss;
513 #ifdef ASM_OUTPUT_BSS
515 /* Utility function for ASM_OUTPUT_BSS for targets to use if
516 they don't support alignments in .bss.
517 ??? It is believed that this function will work in most cases so such
518 support is localized here. */
520 static void
521 asm_output_bss (FILE *file, tree decl ATTRIBUTE_UNUSED,
522 const char *name,
523 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
524 unsigned HOST_WIDE_INT rounded)
526 targetm.asm_out.globalize_label (file, name);
527 bss_section ();
528 #ifdef ASM_DECLARE_OBJECT_NAME
529 last_assemble_variable_decl = decl;
530 ASM_DECLARE_OBJECT_NAME (file, name, decl);
531 #else
532 /* Standard thing is just output label for the object. */
533 ASM_OUTPUT_LABEL (file, name);
534 #endif /* ASM_DECLARE_OBJECT_NAME */
535 ASM_OUTPUT_SKIP (file, rounded ? rounded : 1);
538 #endif
540 #ifdef ASM_OUTPUT_ALIGNED_BSS
542 /* Utility function for targets to use in implementing
543 ASM_OUTPUT_ALIGNED_BSS.
544 ??? It is believed that this function will work in most cases so such
545 support is localized here. */
547 static void
548 asm_output_aligned_bss (FILE *file, tree decl ATTRIBUTE_UNUSED,
549 const char *name, unsigned HOST_WIDE_INT size,
550 int align)
552 bss_section ();
553 ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
554 #ifdef ASM_DECLARE_OBJECT_NAME
555 last_assemble_variable_decl = decl;
556 ASM_DECLARE_OBJECT_NAME (file, name, decl);
557 #else
558 /* Standard thing is just output label for the object. */
559 ASM_OUTPUT_LABEL (file, name);
560 #endif /* ASM_DECLARE_OBJECT_NAME */
561 ASM_OUTPUT_SKIP (file, size ? size : 1);
564 #endif
566 #endif /* BSS_SECTION_ASM_OP */
568 /* Switch to the section for function DECL.
570 If DECL is NULL_TREE, switch to the text section.
571 ??? It's not clear that we will ever be passed NULL_TREE, but it's
572 safer to handle it. */
574 void
575 function_section (tree decl)
577 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
578 bool unlikely = scan_ahead_for_unlikely_executed_note (get_insns());
580 targetm.asm_out.select_section (decl, unlikely, DECL_ALIGN (decl));
581 #else
582 if (scan_ahead_for_unlikely_executed_note (get_insns()))
583 unlikely_text_section ();
584 else if (decl != NULL_TREE
585 && DECL_SECTION_NAME (decl) != NULL_TREE)
586 named_section (decl, (char *) 0, 0);
587 else
588 text_section ();
589 #endif
592 /* Switch to read-only data section associated with function DECL. */
594 void
595 default_function_rodata_section (tree decl)
597 if (decl != NULL_TREE && DECL_SECTION_NAME (decl))
599 const char *name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
601 /* For .gnu.linkonce.t.foo we want to use .gnu.linkonce.r.foo. */
602 if (DECL_ONE_ONLY (decl) && strncmp (name, ".gnu.linkonce.t.", 16) == 0)
604 size_t len = strlen (name) + 1;
605 char *rname = alloca (len);
607 memcpy (rname, name, len);
608 rname[14] = 'r';
609 named_section_real (rname, SECTION_LINKONCE, decl);
610 return;
612 /* For .text.foo we want to use .rodata.foo. */
613 else if (flag_function_sections && flag_data_sections
614 && strncmp (name, ".text.", 6) == 0)
616 size_t len = strlen (name) + 1;
617 char *rname = alloca (len + 2);
619 memcpy (rname, ".rodata", 7);
620 memcpy (rname + 7, name + 5, len - 5);
621 named_section_flags (rname, 0);
622 return;
626 readonly_data_section ();
629 /* Switch to read-only data section associated with function DECL
630 for targets where that section should be always the single
631 readonly data section. */
633 void
634 default_no_function_rodata_section (tree decl ATTRIBUTE_UNUSED)
636 readonly_data_section ();
639 /* Switch to section for variable DECL. RELOC is the same as the
640 argument to SELECT_SECTION. */
642 void
643 variable_section (tree decl, int reloc)
645 if (IN_NAMED_SECTION (decl))
646 named_section (decl, NULL, reloc);
647 else
648 targetm.asm_out.select_section (decl, reloc, DECL_ALIGN (decl));
651 /* Tell assembler to switch to the section for string merging. */
653 void
654 mergeable_string_section (tree decl ATTRIBUTE_UNUSED,
655 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
656 unsigned int flags ATTRIBUTE_UNUSED)
658 if (HAVE_GAS_SHF_MERGE && flag_merge_constants
659 && TREE_CODE (decl) == STRING_CST
660 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
661 && align <= 256
662 && TREE_STRING_LENGTH (decl) >= int_size_in_bytes (TREE_TYPE (decl)))
664 enum machine_mode mode;
665 unsigned int modesize;
666 const char *str;
667 int i, j, len, unit;
668 char name[30];
670 mode = TYPE_MODE (TREE_TYPE (TREE_TYPE (decl)));
671 modesize = GET_MODE_BITSIZE (mode);
672 if (modesize >= 8 && modesize <= 256
673 && (modesize & (modesize - 1)) == 0)
675 if (align < modesize)
676 align = modesize;
678 str = TREE_STRING_POINTER (decl);
679 len = TREE_STRING_LENGTH (decl);
680 unit = GET_MODE_SIZE (mode);
682 /* Check for embedded NUL characters. */
683 for (i = 0; i < len; i += unit)
685 for (j = 0; j < unit; j++)
686 if (str[i + j] != '\0')
687 break;
688 if (j == unit)
689 break;
691 if (i == len - unit)
693 sprintf (name, ".rodata.str%d.%d", modesize / 8,
694 (int) (align / 8));
695 flags |= (modesize / 8) | SECTION_MERGE | SECTION_STRINGS;
696 if (!i && modesize < align)
698 /* A "" string with requested alignment greater than
699 character size might cause a problem:
700 if some other string required even bigger
701 alignment than "", then linker might think the
702 "" is just part of padding after some other string
703 and not put it into the hash table initially.
704 But this means "" could have smaller alignment
705 than requested. */
706 #ifdef ASM_OUTPUT_SECTION_START
707 named_section_flags (name, flags);
708 ASM_OUTPUT_SECTION_START (asm_out_file);
709 #else
710 readonly_data_section ();
711 #endif
712 return;
715 named_section_flags (name, flags);
716 return;
721 readonly_data_section ();
724 /* Tell assembler to switch to the section for constant merging. */
726 void
727 mergeable_constant_section (enum machine_mode mode ATTRIBUTE_UNUSED,
728 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
729 unsigned int flags ATTRIBUTE_UNUSED)
731 unsigned int modesize = GET_MODE_BITSIZE (mode);
733 if (HAVE_GAS_SHF_MERGE && flag_merge_constants
734 && mode != VOIDmode
735 && mode != BLKmode
736 && modesize <= align
737 && align >= 8
738 && align <= 256
739 && (align & (align - 1)) == 0)
741 char name[24];
743 sprintf (name, ".rodata.cst%d", (int) (align / 8));
744 flags |= (align / 8) | SECTION_MERGE;
745 named_section_flags (name, flags);
746 return;
749 readonly_data_section ();
752 /* Given NAME, a putative register name, discard any customary prefixes. */
754 static const char *
755 strip_reg_name (const char *name)
757 #ifdef REGISTER_PREFIX
758 if (!strncmp (name, REGISTER_PREFIX, strlen (REGISTER_PREFIX)))
759 name += strlen (REGISTER_PREFIX);
760 #endif
761 if (name[0] == '%' || name[0] == '#')
762 name++;
763 return name;
766 /* The user has asked for a DECL to have a particular name. Set (or
767 change) it in such a way that we don't prefix an underscore to
768 it. */
769 void
770 set_user_assembler_name (tree decl, const char *name)
772 char *starred = alloca (strlen (name) + 2);
773 starred[0] = '*';
774 strcpy (starred + 1, name);
775 change_decl_assembler_name (decl, get_identifier (starred));
776 SET_DECL_RTL (decl, NULL_RTX);
779 /* Decode an `asm' spec for a declaration as a register name.
780 Return the register number, or -1 if nothing specified,
781 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
782 or -3 if ASMSPEC is `cc' and is not recognized,
783 or -4 if ASMSPEC is `memory' and is not recognized.
784 Accept an exact spelling or a decimal number.
785 Prefixes such as % are optional. */
788 decode_reg_name (const char *asmspec)
790 if (asmspec != 0 && strlen (asmspec) != 0)
792 int i;
794 /* Get rid of confusing prefixes. */
795 asmspec = strip_reg_name (asmspec);
797 /* Allow a decimal number as a "register name". */
798 for (i = strlen (asmspec) - 1; i >= 0; i--)
799 if (! ISDIGIT (asmspec[i]))
800 break;
801 if (asmspec[0] != 0 && i < 0)
803 i = atoi (asmspec);
804 if (i < FIRST_PSEUDO_REGISTER && i >= 0)
805 return i;
806 else
807 return -2;
810 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
811 if (reg_names[i][0]
812 && ! strcmp (asmspec, strip_reg_name (reg_names[i])))
813 return i;
815 #ifdef ADDITIONAL_REGISTER_NAMES
817 static const struct { const char *const name; const int number; } table[]
818 = ADDITIONAL_REGISTER_NAMES;
820 for (i = 0; i < (int) ARRAY_SIZE (table); i++)
821 if (! strcmp (asmspec, table[i].name))
822 return table[i].number;
824 #endif /* ADDITIONAL_REGISTER_NAMES */
826 if (!strcmp (asmspec, "memory"))
827 return -4;
829 if (!strcmp (asmspec, "cc"))
830 return -3;
832 return -2;
835 return -1;
838 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
839 have static storage duration. In other words, it should not be an
840 automatic variable, including PARM_DECLs.
842 There is, however, one exception: this function handles variables
843 explicitly placed in a particular register by the user.
845 This is never called for PARM_DECL nodes. */
847 void
848 make_decl_rtl (tree decl)
850 const char *name = 0;
851 int reg_number;
852 rtx x;
854 /* Check that we are not being given an automatic variable. */
855 /* A weak alias has TREE_PUBLIC set but not the other bits. */
856 if (TREE_CODE (decl) == PARM_DECL
857 || TREE_CODE (decl) == RESULT_DECL
858 || (TREE_CODE (decl) == VAR_DECL
859 && !TREE_STATIC (decl)
860 && !TREE_PUBLIC (decl)
861 && !DECL_EXTERNAL (decl)
862 && !DECL_REGISTER (decl)))
863 abort ();
864 /* And that we were not given a type or a label. */
865 else if (TREE_CODE (decl) == TYPE_DECL
866 || TREE_CODE (decl) == LABEL_DECL)
867 abort ();
869 /* For a duplicate declaration, we can be called twice on the
870 same DECL node. Don't discard the RTL already made. */
871 if (DECL_RTL_SET_P (decl))
873 /* If the old RTL had the wrong mode, fix the mode. */
874 if (GET_MODE (DECL_RTL (decl)) != DECL_MODE (decl))
875 SET_DECL_RTL (decl, adjust_address_nv (DECL_RTL (decl),
876 DECL_MODE (decl), 0));
878 if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
879 return;
881 /* ??? Another way to do this would be to maintain a hashed
882 table of such critters. Instead of adding stuff to a DECL
883 to give certain attributes to it, we could use an external
884 hash map from DECL to set of attributes. */
886 /* Let the target reassign the RTL if it wants.
887 This is necessary, for example, when one machine specific
888 decl attribute overrides another. */
889 targetm.encode_section_info (decl, DECL_RTL (decl), false);
891 /* Make this function static known to the mudflap runtime. */
892 if (flag_mudflap && TREE_CODE (decl) == VAR_DECL)
893 mudflap_enqueue_decl (decl);
895 return;
898 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
900 reg_number = decode_reg_name (name);
902 if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
904 /* First detect errors in declaring global registers. */
905 if (reg_number == -1)
906 error ("%Jregister name not specified for %qD", decl, decl);
907 else if (reg_number < 0)
908 error ("%Jinvalid register name for %qD", decl, decl);
909 else if (TYPE_MODE (TREE_TYPE (decl)) == BLKmode)
910 error ("%Jdata type of %qD isn%'t suitable for a register",
911 decl, decl);
912 else if (! HARD_REGNO_MODE_OK (reg_number, TYPE_MODE (TREE_TYPE (decl))))
913 error ("%Jregister specified for %qD isn%'t suitable for data type",
914 decl, decl);
915 /* Now handle properly declared static register variables. */
916 else
918 int nregs;
920 if (DECL_INITIAL (decl) != 0 && TREE_STATIC (decl))
922 DECL_INITIAL (decl) = 0;
923 error ("global register variable has initial value");
925 if (TREE_THIS_VOLATILE (decl))
926 warning ("volatile register variables don%'t "
927 "work as you might wish");
929 /* If the user specified one of the eliminables registers here,
930 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
931 confused with that register and be eliminated. This usage is
932 somewhat suspect... */
934 SET_DECL_RTL (decl, gen_rtx_raw_REG (DECL_MODE (decl), reg_number));
935 ORIGINAL_REGNO (DECL_RTL (decl)) = reg_number;
936 REG_USERVAR_P (DECL_RTL (decl)) = 1;
938 if (TREE_STATIC (decl))
940 /* Make this register global, so not usable for anything
941 else. */
942 #ifdef ASM_DECLARE_REGISTER_GLOBAL
943 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file, decl, reg_number, name);
944 #endif
945 nregs = hard_regno_nregs[reg_number][DECL_MODE (decl)];
946 while (nregs > 0)
947 globalize_reg (reg_number + --nregs);
950 /* As a register variable, it has no section. */
951 return;
955 /* Now handle ordinary static variables and functions (in memory).
956 Also handle vars declared register invalidly. */
958 if (name[0] == '*' && (reg_number >= 0 || reg_number == -3))
959 error ("%Jregister name given for non-register variable %qD", decl, decl);
961 /* Specifying a section attribute on a variable forces it into a
962 non-.bss section, and thus it cannot be common. */
963 if (TREE_CODE (decl) == VAR_DECL
964 && DECL_SECTION_NAME (decl) != NULL_TREE
965 && DECL_INITIAL (decl) == NULL_TREE
966 && DECL_COMMON (decl))
967 DECL_COMMON (decl) = 0;
969 /* Variables can't be both common and weak. */
970 if (TREE_CODE (decl) == VAR_DECL && DECL_WEAK (decl))
971 DECL_COMMON (decl) = 0;
973 x = gen_rtx_SYMBOL_REF (Pmode, name);
974 SYMBOL_REF_WEAK (x) = DECL_WEAK (decl);
975 SYMBOL_REF_DECL (x) = decl;
977 x = gen_rtx_MEM (DECL_MODE (decl), x);
978 if (TREE_CODE (decl) != FUNCTION_DECL)
979 set_mem_attributes (x, decl, 1);
980 SET_DECL_RTL (decl, x);
982 /* Optionally set flags or add text to the name to record information
983 such as that it is a function name.
984 If the name is changed, the macro ASM_OUTPUT_LABELREF
985 will have to know how to strip this information. */
986 targetm.encode_section_info (decl, DECL_RTL (decl), true);
988 /* Make this function static known to the mudflap runtime. */
989 if (flag_mudflap && TREE_CODE (decl) == VAR_DECL)
990 mudflap_enqueue_decl (decl);
993 /* Make the rtl for variable VAR be volatile.
994 Use this only for static variables. */
996 void
997 make_var_volatile (tree var)
999 if (!MEM_P (DECL_RTL (var)))
1000 abort ();
1002 MEM_VOLATILE_P (DECL_RTL (var)) = 1;
1005 /* Output a string of literal assembler code
1006 for an `asm' keyword used between functions. */
1008 void
1009 assemble_asm (tree string)
1011 app_enable ();
1013 if (TREE_CODE (string) == ADDR_EXPR)
1014 string = TREE_OPERAND (string, 0);
1016 fprintf (asm_out_file, "\t%s\n", TREE_STRING_POINTER (string));
1019 /* Record an element in the table of global destructors. SYMBOL is
1020 a SYMBOL_REF of the function to be called; PRIORITY is a number
1021 between 0 and MAX_INIT_PRIORITY. */
1023 void
1024 default_stabs_asm_out_destructor (rtx symbol, int priority ATTRIBUTE_UNUSED)
1026 /* Tell GNU LD that this is part of the static destructor set.
1027 This will work for any system that uses stabs, most usefully
1028 aout systems. */
1029 fprintf (asm_out_file, "%s\"___DTOR_LIST__\",22,0,0,", ASM_STABS_OP);
1030 assemble_name (asm_out_file, XSTR (symbol, 0));
1031 fputc ('\n', asm_out_file);
1034 void
1035 default_named_section_asm_out_destructor (rtx symbol, int priority)
1037 const char *section = ".dtors";
1038 char buf[16];
1040 /* ??? This only works reliably with the GNU linker. */
1041 if (priority != DEFAULT_INIT_PRIORITY)
1043 sprintf (buf, ".dtors.%.5u",
1044 /* Invert the numbering so the linker puts us in the proper
1045 order; constructors are run from right to left, and the
1046 linker sorts in increasing order. */
1047 MAX_INIT_PRIORITY - priority);
1048 section = buf;
1051 named_section_flags (section, SECTION_WRITE);
1052 assemble_align (POINTER_SIZE);
1053 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1056 #ifdef DTORS_SECTION_ASM_OP
1057 void
1058 dtors_section (void)
1060 if (in_section != in_dtors)
1062 in_section = in_dtors;
1063 fputs (DTORS_SECTION_ASM_OP, asm_out_file);
1064 fputc ('\n', asm_out_file);
1068 void
1069 default_dtor_section_asm_out_destructor (rtx symbol,
1070 int priority ATTRIBUTE_UNUSED)
1072 dtors_section ();
1073 assemble_align (POINTER_SIZE);
1074 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1076 #endif
1078 /* Likewise for global constructors. */
1080 void
1081 default_stabs_asm_out_constructor (rtx symbol, int priority ATTRIBUTE_UNUSED)
1083 /* Tell GNU LD that this is part of the static destructor set.
1084 This will work for any system that uses stabs, most usefully
1085 aout systems. */
1086 fprintf (asm_out_file, "%s\"___CTOR_LIST__\",22,0,0,", ASM_STABS_OP);
1087 assemble_name (asm_out_file, XSTR (symbol, 0));
1088 fputc ('\n', asm_out_file);
1091 void
1092 default_named_section_asm_out_constructor (rtx symbol, int priority)
1094 const char *section = ".ctors";
1095 char buf[16];
1097 /* ??? This only works reliably with the GNU linker. */
1098 if (priority != DEFAULT_INIT_PRIORITY)
1100 sprintf (buf, ".ctors.%.5u",
1101 /* Invert the numbering so the linker puts us in the proper
1102 order; constructors are run from right to left, and the
1103 linker sorts in increasing order. */
1104 MAX_INIT_PRIORITY - priority);
1105 section = buf;
1108 named_section_flags (section, SECTION_WRITE);
1109 assemble_align (POINTER_SIZE);
1110 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1113 #ifdef CTORS_SECTION_ASM_OP
1114 void
1115 ctors_section (void)
1117 if (in_section != in_ctors)
1119 in_section = in_ctors;
1120 fputs (CTORS_SECTION_ASM_OP, asm_out_file);
1121 fputc ('\n', asm_out_file);
1125 void
1126 default_ctor_section_asm_out_constructor (rtx symbol,
1127 int priority ATTRIBUTE_UNUSED)
1129 ctors_section ();
1130 assemble_align (POINTER_SIZE);
1131 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1133 #endif
1135 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1136 a nonzero value if the constant pool should be output before the
1137 start of the function, or a zero value if the pool should output
1138 after the end of the function. The default is to put it before the
1139 start. */
1141 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1142 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1143 #endif
1145 /* DECL is an object (either VAR_DECL or FUNCTION_DECL) which is going
1146 to be output to assembler.
1147 Set first_global_object_name and weak_global_object_name as appropriate. */
1149 void
1150 notice_global_symbol (tree decl)
1152 const char **type = &first_global_object_name;
1154 if (first_global_object_name
1155 || !TREE_PUBLIC (decl) || DECL_EXTERNAL (decl)
1156 || !DECL_NAME (decl)
1157 || (TREE_CODE (decl) != FUNCTION_DECL
1158 && (TREE_CODE (decl) != VAR_DECL
1159 || (DECL_COMMON (decl)
1160 && (DECL_INITIAL (decl) == 0
1161 || DECL_INITIAL (decl) == error_mark_node))))
1162 || !MEM_P (DECL_RTL (decl)))
1163 return;
1165 /* We win when global object is found, but it is useful to know about weak
1166 symbol as well so we can produce nicer unique names. */
1167 if (DECL_WEAK (decl) || DECL_ONE_ONLY (decl))
1168 type = &weak_global_object_name;
1170 if (!*type)
1172 const char *p;
1173 char *name;
1174 rtx decl_rtl = DECL_RTL (decl);
1176 p = targetm.strip_name_encoding (XSTR (XEXP (decl_rtl, 0), 0));
1177 name = xstrdup (p);
1179 *type = name;
1183 /* Output assembler code for the constant pool of a function and associated
1184 with defining the name of the function. DECL describes the function.
1185 NAME is the function's name. For the constant pool, we use the current
1186 constant pool data. */
1188 void
1189 assemble_start_function (tree decl, const char *fnname)
1191 int align;
1193 if (unlikely_text_section_name)
1194 free (unlikely_text_section_name);
1196 unlikely_section_label_printed = false;
1197 unlikely_text_section_name = NULL;
1199 unlikely_section_label = reconcat (unlikely_section_label,
1200 fnname, ".unlikely_section", NULL);
1202 /* The following code does not need preprocessing in the assembler. */
1204 app_disable ();
1206 if (CONSTANT_POOL_BEFORE_FUNCTION)
1207 output_constant_pool (fnname, decl);
1209 /* Make sure the cold text (code) section is properly aligned. This
1210 is necessary here in the case where the function has both hot and
1211 cold sections, because we don't want to re-set the alignment when the
1212 section switch happens mid-function. We don't need to set the hot
1213 section alignment here, because code further down in this function
1214 sets the alignment for whichever section comes first, and if there
1215 is a hot section it is guaranteed to be first. */
1217 if (flag_reorder_blocks_and_partition)
1219 unlikely_text_section ();
1220 assemble_align (FUNCTION_BOUNDARY);
1223 resolve_unique_section (decl, 0, flag_function_sections);
1224 function_section (decl);
1226 /* Tell assembler to move to target machine's alignment for functions. */
1227 align = floor_log2 (FUNCTION_BOUNDARY / BITS_PER_UNIT);
1228 if (align < force_align_functions_log)
1229 align = force_align_functions_log;
1230 if (align > 0)
1232 ASM_OUTPUT_ALIGN (asm_out_file, align);
1235 /* Handle a user-specified function alignment.
1236 Note that we still need to align to FUNCTION_BOUNDARY, as above,
1237 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1238 if (align_functions_log > align
1239 && cfun->function_frequency != FUNCTION_FREQUENCY_UNLIKELY_EXECUTED)
1241 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1242 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file,
1243 align_functions_log, align_functions - 1);
1244 #else
1245 ASM_OUTPUT_ALIGN (asm_out_file, align_functions_log);
1246 #endif
1249 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1250 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file, fnname);
1251 #endif
1253 (*debug_hooks->begin_function) (decl);
1255 /* Make function name accessible from other files, if appropriate. */
1257 if (TREE_PUBLIC (decl))
1259 notice_global_symbol (decl);
1261 globalize_decl (decl);
1263 maybe_assemble_visibility (decl);
1266 if (DECL_PRESERVE_P (decl))
1267 targetm.asm_out.mark_decl_preserved (fnname);
1269 /* Do any machine/system dependent processing of the function name. */
1270 #ifdef ASM_DECLARE_FUNCTION_NAME
1271 ASM_DECLARE_FUNCTION_NAME (asm_out_file, fnname, current_function_decl);
1272 #else
1273 /* Standard thing is just output label for the function. */
1274 ASM_OUTPUT_LABEL (asm_out_file, fnname);
1275 #endif /* ASM_DECLARE_FUNCTION_NAME */
1277 if (in_unlikely_text_section ()
1278 && !unlikely_section_label_printed)
1280 ASM_OUTPUT_LABEL (asm_out_file, unlikely_section_label);
1281 unlikely_section_label_printed = true;
1285 /* Output assembler code associated with defining the size of the
1286 function. DECL describes the function. NAME is the function's name. */
1288 void
1289 assemble_end_function (tree decl, const char *fnname)
1291 #ifdef ASM_DECLARE_FUNCTION_SIZE
1292 ASM_DECLARE_FUNCTION_SIZE (asm_out_file, fnname, decl);
1293 #endif
1294 if (! CONSTANT_POOL_BEFORE_FUNCTION)
1296 output_constant_pool (fnname, decl);
1297 function_section (decl); /* need to switch back */
1301 /* Assemble code to leave SIZE bytes of zeros. */
1303 void
1304 assemble_zeros (unsigned HOST_WIDE_INT size)
1306 /* Do no output if -fsyntax-only. */
1307 if (flag_syntax_only)
1308 return;
1310 #ifdef ASM_NO_SKIP_IN_TEXT
1311 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1312 so we must output 0s explicitly in the text section. */
1313 if ((ASM_NO_SKIP_IN_TEXT && in_text_section ())
1314 || (ASM_NO_SKIP_IN_TEXT && in_unlikely_text_section ()))
1316 unsigned HOST_WIDE_INT i;
1317 for (i = 0; i < size; i++)
1318 assemble_integer (const0_rtx, 1, BITS_PER_UNIT, 1);
1320 else
1321 #endif
1322 if (size > 0)
1323 ASM_OUTPUT_SKIP (asm_out_file, size);
1326 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1328 void
1329 assemble_align (int align)
1331 if (align > BITS_PER_UNIT)
1333 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
1337 /* Assemble a string constant with the specified C string as contents. */
1339 void
1340 assemble_string (const char *p, int size)
1342 int pos = 0;
1343 int maximum = 2000;
1345 /* If the string is very long, split it up. */
1347 while (pos < size)
1349 int thissize = size - pos;
1350 if (thissize > maximum)
1351 thissize = maximum;
1353 ASM_OUTPUT_ASCII (asm_out_file, p, thissize);
1355 pos += thissize;
1356 p += thissize;
1361 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1362 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1363 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1364 #else
1365 #if defined ASM_OUTPUT_ALIGNED_LOCAL
1366 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1367 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, DECL_ALIGN (decl))
1368 #else
1369 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1370 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded)
1371 #endif
1372 #endif
1374 #if defined ASM_OUTPUT_ALIGNED_BSS
1375 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1376 ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1377 #else
1378 #if defined ASM_OUTPUT_BSS
1379 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1380 ASM_OUTPUT_BSS (asm_out_file, decl, name, size, rounded)
1381 #else
1382 #undef ASM_EMIT_BSS
1383 #endif
1384 #endif
1386 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1387 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1388 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1389 #else
1390 #if defined ASM_OUTPUT_ALIGNED_COMMON
1391 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1392 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size, DECL_ALIGN (decl))
1393 #else
1394 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1395 ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded)
1396 #endif
1397 #endif
1399 static bool
1400 asm_emit_uninitialised (tree decl, const char *name,
1401 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1402 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1404 enum
1406 asm_dest_common,
1407 asm_dest_bss,
1408 asm_dest_local
1410 destination = asm_dest_local;
1412 /* ??? We should handle .bss via select_section mechanisms rather than
1413 via special target hooks. That would eliminate this special case. */
1414 if (TREE_PUBLIC (decl))
1416 if (!DECL_COMMON (decl))
1417 #ifdef ASM_EMIT_BSS
1418 destination = asm_dest_bss;
1419 #else
1420 return false;
1421 #endif
1422 else
1423 destination = asm_dest_common;
1426 if (destination == asm_dest_bss)
1427 globalize_decl (decl);
1428 resolve_unique_section (decl, 0, flag_data_sections);
1430 if (flag_shared_data)
1432 switch (destination)
1434 #ifdef ASM_OUTPUT_SHARED_BSS
1435 case asm_dest_bss:
1436 ASM_OUTPUT_SHARED_BSS (asm_out_file, decl, name, size, rounded);
1437 return;
1438 #endif
1439 #ifdef ASM_OUTPUT_SHARED_COMMON
1440 case asm_dest_common:
1441 ASM_OUTPUT_SHARED_COMMON (asm_out_file, name, size, rounded);
1442 return;
1443 #endif
1444 #ifdef ASM_OUTPUT_SHARED_LOCAL
1445 case asm_dest_local:
1446 ASM_OUTPUT_SHARED_LOCAL (asm_out_file, name, size, rounded);
1447 return;
1448 #endif
1449 default:
1450 break;
1454 switch (destination)
1456 #ifdef ASM_EMIT_BSS
1457 case asm_dest_bss:
1458 ASM_EMIT_BSS (decl, name, size, rounded);
1459 break;
1460 #endif
1461 case asm_dest_common:
1462 ASM_EMIT_COMMON (decl, name, size, rounded);
1463 break;
1464 case asm_dest_local:
1465 ASM_EMIT_LOCAL (decl, name, size, rounded);
1466 break;
1467 default:
1468 abort ();
1471 return true;
1474 /* Assemble everything that is needed for a variable or function declaration.
1475 Not used for automatic variables, and not used for function definitions.
1476 Should not be called for variables of incomplete structure type.
1478 TOP_LEVEL is nonzero if this variable has file scope.
1479 AT_END is nonzero if this is the special handling, at end of compilation,
1480 to define things that have had only tentative definitions.
1481 DONT_OUTPUT_DATA if nonzero means don't actually output the
1482 initial value (that will be done by the caller). */
1484 void
1485 assemble_variable (tree decl, int top_level ATTRIBUTE_UNUSED,
1486 int at_end ATTRIBUTE_UNUSED, int dont_output_data)
1488 const char *name;
1489 unsigned int align;
1490 int reloc = 0;
1491 rtx decl_rtl;
1493 if (lang_hooks.decls.prepare_assemble_variable)
1494 lang_hooks.decls.prepare_assemble_variable (decl);
1496 last_assemble_variable_decl = 0;
1498 /* Normally no need to say anything here for external references,
1499 since assemble_external is called by the language-specific code
1500 when a declaration is first seen. */
1502 if (DECL_EXTERNAL (decl))
1503 return;
1505 /* Output no assembler code for a function declaration.
1506 Only definitions of functions output anything. */
1508 if (TREE_CODE (decl) == FUNCTION_DECL)
1509 return;
1511 /* Do nothing for global register variables. */
1512 if (DECL_RTL_SET_P (decl) && REG_P (DECL_RTL (decl)))
1514 TREE_ASM_WRITTEN (decl) = 1;
1515 return;
1518 /* If type was incomplete when the variable was declared,
1519 see if it is complete now. */
1521 if (DECL_SIZE (decl) == 0)
1522 layout_decl (decl, 0);
1524 /* Still incomplete => don't allocate it; treat the tentative defn
1525 (which is what it must have been) as an `extern' reference. */
1527 if (!dont_output_data && DECL_SIZE (decl) == 0)
1529 error ("%Jstorage size of %qD isn%'t known", decl, decl);
1530 TREE_ASM_WRITTEN (decl) = 1;
1531 return;
1534 /* The first declaration of a variable that comes through this function
1535 decides whether it is global (in C, has external linkage)
1536 or local (in C, has internal linkage). So do nothing more
1537 if this function has already run. */
1539 if (TREE_ASM_WRITTEN (decl))
1540 return;
1542 /* Make sure targetm.encode_section_info is invoked before we set
1543 ASM_WRITTEN. */
1544 decl_rtl = DECL_RTL (decl);
1546 TREE_ASM_WRITTEN (decl) = 1;
1548 /* Do no output if -fsyntax-only. */
1549 if (flag_syntax_only)
1550 return;
1552 app_disable ();
1554 if (! dont_output_data
1555 && ! host_integerp (DECL_SIZE_UNIT (decl), 1))
1557 error ("%Jsize of variable %qD is too large", decl, decl);
1558 return;
1561 name = XSTR (XEXP (decl_rtl, 0), 0);
1562 if (TREE_PUBLIC (decl) && DECL_NAME (decl))
1563 notice_global_symbol (decl);
1565 /* Compute the alignment of this data. */
1567 align = DECL_ALIGN (decl);
1569 /* In the case for initialing an array whose length isn't specified,
1570 where we have not yet been able to do the layout,
1571 figure out the proper alignment now. */
1572 if (dont_output_data && DECL_SIZE (decl) == 0
1573 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
1574 align = MAX (align, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
1576 /* Some object file formats have a maximum alignment which they support.
1577 In particular, a.out format supports a maximum alignment of 4. */
1578 if (align > MAX_OFILE_ALIGNMENT)
1580 warning ("%Jalignment of %qD is greater than maximum object "
1581 "file alignment. Using %d", decl, decl,
1582 MAX_OFILE_ALIGNMENT/BITS_PER_UNIT);
1583 align = MAX_OFILE_ALIGNMENT;
1586 /* On some machines, it is good to increase alignment sometimes. */
1587 if (! DECL_USER_ALIGN (decl))
1589 #ifdef DATA_ALIGNMENT
1590 align = DATA_ALIGNMENT (TREE_TYPE (decl), align);
1591 #endif
1592 #ifdef CONSTANT_ALIGNMENT
1593 if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
1594 align = CONSTANT_ALIGNMENT (DECL_INITIAL (decl), align);
1595 #endif
1598 /* Reset the alignment in case we have made it tighter, so we can benefit
1599 from it in get_pointer_alignment. */
1600 DECL_ALIGN (decl) = align;
1601 set_mem_align (decl_rtl, align);
1603 if (TREE_PUBLIC (decl))
1604 maybe_assemble_visibility (decl);
1606 if (DECL_PRESERVE_P (decl))
1607 targetm.asm_out.mark_decl_preserved (name);
1609 /* Output any data that we will need to use the address of. */
1610 if (DECL_INITIAL (decl) == error_mark_node)
1611 reloc = contains_pointers_p (TREE_TYPE (decl)) ? 3 : 0;
1612 else if (DECL_INITIAL (decl))
1614 reloc = compute_reloc_for_constant (DECL_INITIAL (decl));
1615 output_addressed_constants (DECL_INITIAL (decl));
1617 resolve_unique_section (decl, reloc, flag_data_sections);
1619 /* Handle uninitialized definitions. */
1621 /* If the decl has been given an explicit section name, then it
1622 isn't common, and shouldn't be handled as such. */
1623 if (DECL_SECTION_NAME (decl) || dont_output_data)
1625 /* We don't implement common thread-local data at present. */
1626 else if (DECL_THREAD_LOCAL (decl))
1628 if (DECL_COMMON (decl))
1629 sorry ("thread-local COMMON data not implemented");
1631 else if (DECL_INITIAL (decl) == 0
1632 || DECL_INITIAL (decl) == error_mark_node
1633 || (flag_zero_initialized_in_bss
1634 /* Leave constant zeroes in .rodata so they can be shared. */
1635 && !TREE_READONLY (decl)
1636 && initializer_zerop (DECL_INITIAL (decl))))
1638 unsigned HOST_WIDE_INT size = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
1639 unsigned HOST_WIDE_INT rounded = size;
1641 /* Don't allocate zero bytes of common,
1642 since that means "undefined external" in the linker. */
1643 if (size == 0)
1644 rounded = 1;
1646 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1647 so that each uninitialized object starts on such a boundary. */
1648 rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
1649 rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1650 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1652 #if !defined(ASM_OUTPUT_ALIGNED_COMMON) && !defined(ASM_OUTPUT_ALIGNED_DECL_COMMON) && !defined(ASM_OUTPUT_ALIGNED_BSS)
1653 if ((unsigned HOST_WIDE_INT) DECL_ALIGN_UNIT (decl) > rounded)
1654 warning ("%Jrequested alignment for %qD is greater than "
1655 "implemented alignment of %d", decl, decl, rounded);
1656 #endif
1658 /* If the target cannot output uninitialized but not common global data
1659 in .bss, then we have to use .data, so fall through. */
1660 if (asm_emit_uninitialised (decl, name, size, rounded))
1661 return;
1664 /* Handle initialized definitions.
1665 Also handle uninitialized global definitions if -fno-common and the
1666 target doesn't support ASM_OUTPUT_BSS. */
1668 /* First make the assembler name(s) global if appropriate. */
1669 if (TREE_PUBLIC (decl) && DECL_NAME (decl))
1670 globalize_decl (decl);
1672 /* Switch to the appropriate section. */
1673 variable_section (decl, reloc);
1675 /* dbxout.c needs to know this. */
1676 if (in_text_section () || in_unlikely_text_section ())
1677 DECL_IN_TEXT_SECTION (decl) = 1;
1679 /* Output the alignment of this data. */
1680 if (align > BITS_PER_UNIT)
1681 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (DECL_ALIGN_UNIT (decl)));
1683 /* Do any machine/system dependent processing of the object. */
1684 #ifdef ASM_DECLARE_OBJECT_NAME
1685 last_assemble_variable_decl = decl;
1686 ASM_DECLARE_OBJECT_NAME (asm_out_file, name, decl);
1687 #else
1688 /* Standard thing is just output label for the object. */
1689 ASM_OUTPUT_LABEL (asm_out_file, name);
1690 #endif /* ASM_DECLARE_OBJECT_NAME */
1692 if (!dont_output_data)
1694 if (DECL_INITIAL (decl)
1695 && DECL_INITIAL (decl) != error_mark_node
1696 && !initializer_zerop (DECL_INITIAL (decl)))
1697 /* Output the actual data. */
1698 output_constant (DECL_INITIAL (decl),
1699 tree_low_cst (DECL_SIZE_UNIT (decl), 1),
1700 align);
1701 else
1702 /* Leave space for it. */
1703 assemble_zeros (tree_low_cst (DECL_SIZE_UNIT (decl), 1));
1707 /* Return 1 if type TYPE contains any pointers. */
1709 static int
1710 contains_pointers_p (tree type)
1712 switch (TREE_CODE (type))
1714 case POINTER_TYPE:
1715 case REFERENCE_TYPE:
1716 /* I'm not sure whether OFFSET_TYPE needs this treatment,
1717 so I'll play safe and return 1. */
1718 case OFFSET_TYPE:
1719 return 1;
1721 case RECORD_TYPE:
1722 case UNION_TYPE:
1723 case QUAL_UNION_TYPE:
1725 tree fields;
1726 /* For a type that has fields, see if the fields have pointers. */
1727 for (fields = TYPE_FIELDS (type); fields; fields = TREE_CHAIN (fields))
1728 if (TREE_CODE (fields) == FIELD_DECL
1729 && contains_pointers_p (TREE_TYPE (fields)))
1730 return 1;
1731 return 0;
1734 case ARRAY_TYPE:
1735 /* An array type contains pointers if its element type does. */
1736 return contains_pointers_p (TREE_TYPE (type));
1738 default:
1739 return 0;
1743 #ifdef ASM_OUTPUT_EXTERNAL
1744 /* True if DECL is a function decl for which no out-of-line copy exists.
1745 It is assumed that DECL's assembler name has been set. */
1747 static bool
1748 incorporeal_function_p (tree decl)
1750 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
1752 const char *name;
1754 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
1755 && DECL_FUNCTION_CODE (decl) == BUILT_IN_ALLOCA)
1756 return true;
1758 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
1759 if (strncmp (name, "__builtin_", strlen ("__builtin_")) == 0)
1760 return true;
1762 return false;
1764 #endif
1766 /* Output something to declare an external symbol to the assembler.
1767 (Most assemblers don't need this, so we normally output nothing.)
1768 Do nothing if DECL is not external. */
1770 void
1771 assemble_external (tree decl ATTRIBUTE_UNUSED)
1773 /* Because most platforms do not define ASM_OUTPUT_EXTERNAL, the
1774 main body of this code is only rarely exercised. To provide some
1775 testing, on all platforms, we make sure that the ASM_OUT_FILE is
1776 open. If it's not, we should not be calling this function. */
1777 if (!asm_out_file)
1778 abort ();
1780 #ifdef ASM_OUTPUT_EXTERNAL
1781 if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
1783 rtx rtl = DECL_RTL (decl);
1785 if (MEM_P (rtl) && GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF
1786 && !SYMBOL_REF_USED (XEXP (rtl, 0))
1787 && !incorporeal_function_p (decl))
1789 /* Some systems do require some output. */
1790 SYMBOL_REF_USED (XEXP (rtl, 0)) = 1;
1791 ASM_OUTPUT_EXTERNAL (asm_out_file, decl, XSTR (XEXP (rtl, 0), 0));
1794 #endif
1797 /* Similar, for calling a library function FUN. */
1799 void
1800 assemble_external_libcall (rtx fun)
1802 /* Declare library function name external when first used, if nec. */
1803 if (! SYMBOL_REF_USED (fun))
1805 SYMBOL_REF_USED (fun) = 1;
1806 targetm.asm_out.external_libcall (fun);
1810 /* Assemble a label named NAME. */
1812 void
1813 assemble_label (const char *name)
1815 ASM_OUTPUT_LABEL (asm_out_file, name);
1818 /* Set the symbol_referenced flag for ID. */
1819 void
1820 mark_referenced (tree id)
1822 TREE_SYMBOL_REFERENCED (id) = 1;
1825 /* Set the symbol_referenced flag for DECL and notify callgraph. */
1826 void
1827 mark_decl_referenced (tree decl)
1829 if (TREE_CODE (decl) == FUNCTION_DECL)
1830 cgraph_mark_needed_node (cgraph_node (decl));
1831 else if (TREE_CODE (decl) == VAR_DECL)
1832 cgraph_varpool_mark_needed_node (cgraph_varpool_node (decl));
1833 /* else do nothing - we can get various sorts of CST nodes here,
1834 which do not need to be marked. */
1837 /* Output to FILE a reference to the assembler name of a C-level name NAME.
1838 If NAME starts with a *, the rest of NAME is output verbatim.
1839 Otherwise NAME is transformed in an implementation-defined way
1840 (usually by the addition of an underscore).
1841 Many macros in the tm file are defined to call this function. */
1843 void
1844 assemble_name (FILE *file, const char *name)
1846 const char *real_name;
1847 tree id;
1849 real_name = targetm.strip_name_encoding (name);
1851 id = maybe_get_identifier (real_name);
1852 if (id)
1853 mark_referenced (id);
1855 if (name[0] == '*')
1856 fputs (&name[1], file);
1857 else
1858 ASM_OUTPUT_LABELREF (file, name);
1861 /* Allocate SIZE bytes writable static space with a gensym name
1862 and return an RTX to refer to its address. */
1865 assemble_static_space (unsigned HOST_WIDE_INT size)
1867 char name[12];
1868 const char *namestring;
1869 rtx x;
1871 #if 0
1872 if (flag_shared_data)
1873 data_section ();
1874 #endif
1876 ASM_GENERATE_INTERNAL_LABEL (name, "LF", const_labelno);
1877 ++const_labelno;
1878 namestring = ggc_strdup (name);
1880 x = gen_rtx_SYMBOL_REF (Pmode, namestring);
1881 SYMBOL_REF_FLAGS (x) = SYMBOL_FLAG_LOCAL;
1883 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
1884 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name, size,
1885 BIGGEST_ALIGNMENT);
1886 #else
1887 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
1888 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, BIGGEST_ALIGNMENT);
1889 #else
1891 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1892 so that each uninitialized object starts on such a boundary. */
1893 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
1894 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
1895 = ((size + (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1)
1896 / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1897 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1898 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
1900 #endif
1901 #endif
1902 return x;
1905 /* Assemble the static constant template for function entry trampolines.
1906 This is done at most once per compilation.
1907 Returns an RTX for the address of the template. */
1909 static GTY(()) rtx initial_trampoline;
1911 #ifdef TRAMPOLINE_TEMPLATE
1913 assemble_trampoline_template (void)
1915 char label[256];
1916 const char *name;
1917 int align;
1918 rtx symbol;
1920 if (initial_trampoline)
1921 return initial_trampoline;
1923 /* By default, put trampoline templates in read-only data section. */
1925 #ifdef TRAMPOLINE_SECTION
1926 TRAMPOLINE_SECTION ();
1927 #else
1928 readonly_data_section ();
1929 #endif
1931 /* Write the assembler code to define one. */
1932 align = floor_log2 (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT);
1933 if (align > 0)
1935 ASM_OUTPUT_ALIGN (asm_out_file, align);
1938 targetm.asm_out.internal_label (asm_out_file, "LTRAMP", 0);
1939 TRAMPOLINE_TEMPLATE (asm_out_file);
1941 /* Record the rtl to refer to it. */
1942 ASM_GENERATE_INTERNAL_LABEL (label, "LTRAMP", 0);
1943 name = ggc_strdup (label);
1944 symbol = gen_rtx_SYMBOL_REF (Pmode, name);
1945 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
1947 initial_trampoline = gen_rtx_MEM (BLKmode, symbol);
1948 set_mem_align (initial_trampoline, TRAMPOLINE_ALIGNMENT);
1950 return initial_trampoline;
1952 #endif
1954 /* A and B are either alignments or offsets. Return the minimum alignment
1955 that may be assumed after adding the two together. */
1957 static inline unsigned
1958 min_align (unsigned int a, unsigned int b)
1960 return (a | b) & -(a | b);
1963 /* Return the assembler directive for creating a given kind of integer
1964 object. SIZE is the number of bytes in the object and ALIGNED_P
1965 indicates whether it is known to be aligned. Return NULL if the
1966 assembly dialect has no such directive.
1968 The returned string should be printed at the start of a new line and
1969 be followed immediately by the object's initial value. */
1971 const char *
1972 integer_asm_op (int size, int aligned_p)
1974 struct asm_int_op *ops;
1976 if (aligned_p)
1977 ops = &targetm.asm_out.aligned_op;
1978 else
1979 ops = &targetm.asm_out.unaligned_op;
1981 switch (size)
1983 case 1:
1984 return targetm.asm_out.byte_op;
1985 case 2:
1986 return ops->hi;
1987 case 4:
1988 return ops->si;
1989 case 8:
1990 return ops->di;
1991 case 16:
1992 return ops->ti;
1993 default:
1994 return NULL;
1998 /* Use directive OP to assemble an integer object X. Print OP at the
1999 start of the line, followed immediately by the value of X. */
2001 void
2002 assemble_integer_with_op (const char *op, rtx x)
2004 fputs (op, asm_out_file);
2005 output_addr_const (asm_out_file, x);
2006 fputc ('\n', asm_out_file);
2009 /* The default implementation of the asm_out.integer target hook. */
2011 bool
2012 default_assemble_integer (rtx x ATTRIBUTE_UNUSED,
2013 unsigned int size ATTRIBUTE_UNUSED,
2014 int aligned_p ATTRIBUTE_UNUSED)
2016 const char *op = integer_asm_op (size, aligned_p);
2017 /* Avoid GAS bugs for values > word size. */
2018 if (size > UNITS_PER_WORD)
2019 return false;
2020 return op && (assemble_integer_with_op (op, x), true);
2023 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
2024 the alignment of the integer in bits. Return 1 if we were able to output
2025 the constant, otherwise 0. If FORCE is nonzero, abort if we can't output
2026 the constant. */
2028 bool
2029 assemble_integer (rtx x, unsigned int size, unsigned int align, int force)
2031 int aligned_p;
2033 aligned_p = (align >= MIN (size * BITS_PER_UNIT, BIGGEST_ALIGNMENT));
2035 /* See if the target hook can handle this kind of object. */
2036 if (targetm.asm_out.integer (x, size, aligned_p))
2037 return true;
2039 /* If the object is a multi-byte one, try splitting it up. Split
2040 it into words it if is multi-word, otherwise split it into bytes. */
2041 if (size > 1)
2043 enum machine_mode omode, imode;
2044 unsigned int subalign;
2045 unsigned int subsize, i;
2047 subsize = size > UNITS_PER_WORD? UNITS_PER_WORD : 1;
2048 subalign = MIN (align, subsize * BITS_PER_UNIT);
2049 omode = mode_for_size (subsize * BITS_PER_UNIT, MODE_INT, 0);
2050 imode = mode_for_size (size * BITS_PER_UNIT, MODE_INT, 0);
2052 for (i = 0; i < size; i += subsize)
2054 rtx partial = simplify_subreg (omode, x, imode, i);
2055 if (!partial || !assemble_integer (partial, subsize, subalign, 0))
2056 break;
2058 if (i == size)
2059 return true;
2061 /* If we've printed some of it, but not all of it, there's no going
2062 back now. */
2063 if (i > 0)
2064 abort ();
2067 if (force)
2068 abort ();
2070 return false;
2073 void
2074 assemble_real (REAL_VALUE_TYPE d, enum machine_mode mode, unsigned int align)
2076 long data[4];
2077 int i;
2078 int bitsize, nelts, nunits, units_per;
2080 /* This is hairy. We have a quantity of known size. real_to_target
2081 will put it into an array of *host* longs, 32 bits per element
2082 (even if long is more than 32 bits). We need to determine the
2083 number of array elements that are occupied (nelts) and the number
2084 of *target* min-addressable units that will be occupied in the
2085 object file (nunits). We cannot assume that 32 divides the
2086 mode's bitsize (size * BITS_PER_UNIT) evenly.
2088 size * BITS_PER_UNIT is used here to make sure that padding bits
2089 (which might appear at either end of the value; real_to_target
2090 will include the padding bits in its output array) are included. */
2092 nunits = GET_MODE_SIZE (mode);
2093 bitsize = nunits * BITS_PER_UNIT;
2094 nelts = CEIL (bitsize, 32);
2095 units_per = 32 / BITS_PER_UNIT;
2097 real_to_target (data, &d, mode);
2099 /* Put out the first word with the specified alignment. */
2100 assemble_integer (GEN_INT (data[0]), MIN (nunits, units_per), align, 1);
2101 nunits -= units_per;
2103 /* Subsequent words need only 32-bit alignment. */
2104 align = min_align (align, 32);
2106 for (i = 1; i < nelts; i++)
2108 assemble_integer (GEN_INT (data[i]), MIN (nunits, units_per), align, 1);
2109 nunits -= units_per;
2113 /* Given an expression EXP with a constant value,
2114 reduce it to the sum of an assembler symbol and an integer.
2115 Store them both in the structure *VALUE.
2116 Abort if EXP does not reduce. */
2118 struct addr_const GTY(())
2120 rtx base;
2121 HOST_WIDE_INT offset;
2124 static void
2125 decode_addr_const (tree exp, struct addr_const *value)
2127 tree target = TREE_OPERAND (exp, 0);
2128 int offset = 0;
2129 rtx x;
2131 while (1)
2133 if (TREE_CODE (target) == COMPONENT_REF
2134 && host_integerp (byte_position (TREE_OPERAND (target, 1)), 0))
2137 offset += int_byte_position (TREE_OPERAND (target, 1));
2138 target = TREE_OPERAND (target, 0);
2140 else if (TREE_CODE (target) == ARRAY_REF
2141 || TREE_CODE (target) == ARRAY_RANGE_REF)
2143 offset += (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (target)), 1)
2144 * tree_low_cst (TREE_OPERAND (target, 1), 0));
2145 target = TREE_OPERAND (target, 0);
2147 else
2148 break;
2151 switch (TREE_CODE (target))
2153 case VAR_DECL:
2154 case FUNCTION_DECL:
2155 x = DECL_RTL (target);
2156 break;
2158 case LABEL_DECL:
2159 x = gen_rtx_MEM (FUNCTION_MODE,
2160 gen_rtx_LABEL_REF (VOIDmode, force_label_rtx (target)));
2161 break;
2163 case REAL_CST:
2164 case STRING_CST:
2165 case COMPLEX_CST:
2166 case CONSTRUCTOR:
2167 case INTEGER_CST:
2168 x = output_constant_def (target, 1);
2169 break;
2171 default:
2172 abort ();
2175 if (!MEM_P (x))
2176 abort ();
2177 x = XEXP (x, 0);
2179 value->base = x;
2180 value->offset = offset;
2183 /* Uniquize all constants that appear in memory.
2184 Each constant in memory thus far output is recorded
2185 in `const_desc_table'. */
2187 struct constant_descriptor_tree GTY(())
2189 /* A MEM for the constant. */
2190 rtx rtl;
2192 /* The value of the constant. */
2193 tree value;
2196 static GTY((param_is (struct constant_descriptor_tree)))
2197 htab_t const_desc_htab;
2199 static struct constant_descriptor_tree * build_constant_desc (tree);
2200 static void maybe_output_constant_def_contents (struct constant_descriptor_tree *, int);
2202 /* Compute a hash code for a constant expression. */
2204 static hashval_t
2205 const_desc_hash (const void *ptr)
2207 return const_hash_1 (((struct constant_descriptor_tree *)ptr)->value);
2210 static hashval_t
2211 const_hash_1 (const tree exp)
2213 const char *p;
2214 hashval_t hi;
2215 int len, i;
2216 enum tree_code code = TREE_CODE (exp);
2218 /* Either set P and LEN to the address and len of something to hash and
2219 exit the switch or return a value. */
2221 switch (code)
2223 case INTEGER_CST:
2224 p = (char *) &TREE_INT_CST (exp);
2225 len = sizeof TREE_INT_CST (exp);
2226 break;
2228 case REAL_CST:
2229 return real_hash (TREE_REAL_CST_PTR (exp));
2231 case STRING_CST:
2232 p = TREE_STRING_POINTER (exp);
2233 len = TREE_STRING_LENGTH (exp);
2234 break;
2236 case COMPLEX_CST:
2237 return (const_hash_1 (TREE_REALPART (exp)) * 5
2238 + const_hash_1 (TREE_IMAGPART (exp)));
2240 case CONSTRUCTOR:
2241 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2243 char *tmp;
2245 len = int_size_in_bytes (TREE_TYPE (exp));
2246 tmp = alloca (len);
2247 get_set_constructor_bytes (exp, (unsigned char *) tmp, len);
2248 p = tmp;
2249 break;
2251 else
2253 tree link;
2255 hi = 5 + int_size_in_bytes (TREE_TYPE (exp));
2257 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2258 if (TREE_VALUE (link))
2259 hi = hi * 603 + const_hash_1 (TREE_VALUE (link));
2261 return hi;
2264 case ADDR_EXPR:
2265 case FDESC_EXPR:
2267 struct addr_const value;
2269 decode_addr_const (exp, &value);
2270 if (GET_CODE (value.base) == SYMBOL_REF)
2272 /* Don't hash the address of the SYMBOL_REF;
2273 only use the offset and the symbol name. */
2274 hi = value.offset;
2275 p = XSTR (value.base, 0);
2276 for (i = 0; p[i] != 0; i++)
2277 hi = ((hi * 613) + (unsigned) (p[i]));
2279 else if (GET_CODE (value.base) == LABEL_REF)
2280 hi = value.offset + CODE_LABEL_NUMBER (XEXP (value.base, 0)) * 13;
2281 else
2282 abort ();
2284 return hi;
2286 case PLUS_EXPR:
2287 case MINUS_EXPR:
2288 return (const_hash_1 (TREE_OPERAND (exp, 0)) * 9
2289 + const_hash_1 (TREE_OPERAND (exp, 1)));
2291 case NOP_EXPR:
2292 case CONVERT_EXPR:
2293 case NON_LVALUE_EXPR:
2294 return const_hash_1 (TREE_OPERAND (exp, 0)) * 7 + 2;
2296 default:
2297 /* A language specific constant. Just hash the code. */
2298 return code;
2301 /* Compute hashing function. */
2302 hi = len;
2303 for (i = 0; i < len; i++)
2304 hi = ((hi * 613) + (unsigned) (p[i]));
2306 return hi;
2309 /* Wrapper of compare_constant, for the htab interface. */
2310 static int
2311 const_desc_eq (const void *p1, const void *p2)
2313 return compare_constant (((struct constant_descriptor_tree *)p1)->value,
2314 ((struct constant_descriptor_tree *)p2)->value);
2317 /* Compare t1 and t2, and return 1 only if they are known to result in
2318 the same bit pattern on output. */
2320 static int
2321 compare_constant (const tree t1, const tree t2)
2323 enum tree_code typecode;
2325 if (t1 == NULL_TREE)
2326 return t2 == NULL_TREE;
2327 if (t2 == NULL_TREE)
2328 return 0;
2330 if (TREE_CODE (t1) != TREE_CODE (t2))
2331 return 0;
2333 switch (TREE_CODE (t1))
2335 case INTEGER_CST:
2336 /* Integer constants are the same only if the same width of type. */
2337 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2338 return 0;
2339 return tree_int_cst_equal (t1, t2);
2341 case REAL_CST:
2342 /* Real constants are the same only if the same width of type. */
2343 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2344 return 0;
2346 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
2348 case STRING_CST:
2349 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
2350 return 0;
2352 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
2353 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
2354 TREE_STRING_LENGTH (t1)));
2356 case COMPLEX_CST:
2357 return (compare_constant (TREE_REALPART (t1), TREE_REALPART (t2))
2358 && compare_constant (TREE_IMAGPART (t1), TREE_IMAGPART (t2)));
2360 case CONSTRUCTOR:
2361 typecode = TREE_CODE (TREE_TYPE (t1));
2362 if (typecode != TREE_CODE (TREE_TYPE (t2)))
2363 return 0;
2365 if (typecode == SET_TYPE)
2367 int len = int_size_in_bytes (TREE_TYPE (t2));
2368 unsigned char *tmp1, *tmp2;
2370 if (int_size_in_bytes (TREE_TYPE (t1)) != len)
2371 return 0;
2373 tmp1 = alloca (len);
2374 tmp2 = alloca (len);
2376 if (get_set_constructor_bytes (t1, tmp1, len) != NULL_TREE)
2377 return 0;
2378 if (get_set_constructor_bytes (t2, tmp2, len) != NULL_TREE)
2379 return 0;
2381 return memcmp (tmp1, tmp2, len) == 0;
2383 else
2385 tree l1, l2;
2387 if (typecode == ARRAY_TYPE)
2389 HOST_WIDE_INT size_1 = int_size_in_bytes (TREE_TYPE (t1));
2390 /* For arrays, check that the sizes all match. */
2391 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2))
2392 || size_1 == -1
2393 || size_1 != int_size_in_bytes (TREE_TYPE (t2)))
2394 return 0;
2396 else
2398 /* For record and union constructors, require exact type
2399 equality. */
2400 if (TREE_TYPE (t1) != TREE_TYPE (t2))
2401 return 0;
2404 for (l1 = CONSTRUCTOR_ELTS (t1), l2 = CONSTRUCTOR_ELTS (t2);
2405 l1 && l2;
2406 l1 = TREE_CHAIN (l1), l2 = TREE_CHAIN (l2))
2408 /* Check that each value is the same... */
2409 if (! compare_constant (TREE_VALUE (l1), TREE_VALUE (l2)))
2410 return 0;
2411 /* ... and that they apply to the same fields! */
2412 if (typecode == ARRAY_TYPE)
2414 if (! compare_constant (TREE_PURPOSE (l1),
2415 TREE_PURPOSE (l2)))
2416 return 0;
2418 else
2420 if (TREE_PURPOSE (l1) != TREE_PURPOSE (l2))
2421 return 0;
2425 return l1 == NULL_TREE && l2 == NULL_TREE;
2428 case ADDR_EXPR:
2429 case FDESC_EXPR:
2431 struct addr_const value1, value2;
2433 decode_addr_const (t1, &value1);
2434 decode_addr_const (t2, &value2);
2435 return (value1.offset == value2.offset
2436 && strcmp (XSTR (value1.base, 0), XSTR (value2.base, 0)) == 0);
2439 case PLUS_EXPR:
2440 case MINUS_EXPR:
2441 case RANGE_EXPR:
2442 return (compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0))
2443 && compare_constant(TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)));
2445 case NOP_EXPR:
2446 case CONVERT_EXPR:
2447 case NON_LVALUE_EXPR:
2448 case VIEW_CONVERT_EXPR:
2449 return compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
2451 default:
2453 tree nt1, nt2;
2454 nt1 = lang_hooks.expand_constant (t1);
2455 nt2 = lang_hooks.expand_constant (t2);
2456 if (nt1 != t1 || nt2 != t2)
2457 return compare_constant (nt1, nt2);
2458 else
2459 return 0;
2463 /* Should not get here. */
2464 abort ();
2467 /* Make a copy of the whole tree structure for a constant. This
2468 handles the same types of nodes that compare_constant handles. */
2470 static tree
2471 copy_constant (tree exp)
2473 switch (TREE_CODE (exp))
2475 case ADDR_EXPR:
2476 /* For ADDR_EXPR, we do not want to copy the decl whose address
2477 is requested. We do want to copy constants though. */
2478 if (CONSTANT_CLASS_P (TREE_OPERAND (exp, 0)))
2479 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2480 copy_constant (TREE_OPERAND (exp, 0)));
2481 else
2482 return copy_node (exp);
2484 case INTEGER_CST:
2485 case REAL_CST:
2486 case STRING_CST:
2487 return copy_node (exp);
2489 case COMPLEX_CST:
2490 return build_complex (TREE_TYPE (exp),
2491 copy_constant (TREE_REALPART (exp)),
2492 copy_constant (TREE_IMAGPART (exp)));
2494 case PLUS_EXPR:
2495 case MINUS_EXPR:
2496 return build2 (TREE_CODE (exp), TREE_TYPE (exp),
2497 copy_constant (TREE_OPERAND (exp, 0)),
2498 copy_constant (TREE_OPERAND (exp, 1)));
2500 case NOP_EXPR:
2501 case CONVERT_EXPR:
2502 case NON_LVALUE_EXPR:
2503 case VIEW_CONVERT_EXPR:
2504 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2505 copy_constant (TREE_OPERAND (exp, 0)));
2507 case CONSTRUCTOR:
2509 tree copy = copy_node (exp);
2510 tree list = copy_list (CONSTRUCTOR_ELTS (exp));
2511 tree tail;
2513 CONSTRUCTOR_ELTS (copy) = list;
2514 for (tail = list; tail; tail = TREE_CHAIN (tail))
2515 TREE_VALUE (tail) = copy_constant (TREE_VALUE (tail));
2516 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2517 for (tail = list; tail; tail = TREE_CHAIN (tail))
2518 TREE_PURPOSE (tail) = copy_constant (TREE_PURPOSE (tail));
2520 return copy;
2523 default:
2525 tree t;
2526 t = lang_hooks.expand_constant (exp);
2527 if (t != exp)
2528 return copy_constant (t);
2529 else
2530 abort ();
2535 /* Subroutine of output_constant_def:
2536 No constant equal to EXP is known to have been output.
2537 Make a constant descriptor to enter EXP in the hash table.
2538 Assign the label number and construct RTL to refer to the
2539 constant's location in memory.
2540 Caller is responsible for updating the hash table. */
2542 static struct constant_descriptor_tree *
2543 build_constant_desc (tree exp)
2545 rtx symbol;
2546 rtx rtl;
2547 char label[256];
2548 int labelno;
2549 struct constant_descriptor_tree *desc;
2551 desc = ggc_alloc (sizeof (*desc));
2552 desc->value = copy_constant (exp);
2554 /* Propagate marked-ness to copied constant. */
2555 if (flag_mudflap && mf_marked_p (exp))
2556 mf_mark (desc->value);
2558 /* Create a string containing the label name, in LABEL. */
2559 labelno = const_labelno++;
2560 ASM_GENERATE_INTERNAL_LABEL (label, "LC", labelno);
2562 /* We have a symbol name; construct the SYMBOL_REF and the MEM. */
2563 symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
2564 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
2565 SYMBOL_REF_DECL (symbol) = desc->value;
2566 TREE_CONSTANT_POOL_ADDRESS_P (symbol) = 1;
2568 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp)), symbol);
2569 set_mem_attributes (rtl, exp, 1);
2570 set_mem_alias_set (rtl, 0);
2571 set_mem_alias_set (rtl, const_alias_set);
2573 /* Set flags or add text to the name to record information, such as
2574 that it is a local symbol. If the name is changed, the macro
2575 ASM_OUTPUT_LABELREF will have to know how to strip this
2576 information. This call might invalidate our local variable
2577 SYMBOL; we can't use it afterward. */
2579 targetm.encode_section_info (exp, rtl, true);
2581 desc->rtl = rtl;
2583 return desc;
2586 /* Return an rtx representing a reference to constant data in memory
2587 for the constant expression EXP.
2589 If assembler code for such a constant has already been output,
2590 return an rtx to refer to it.
2591 Otherwise, output such a constant in memory
2592 and generate an rtx for it.
2594 If DEFER is nonzero, this constant can be deferred and output only
2595 if referenced in the function after all optimizations.
2597 `const_desc_table' records which constants already have label strings. */
2600 output_constant_def (tree exp, int defer)
2602 struct constant_descriptor_tree *desc;
2603 struct constant_descriptor_tree key;
2604 void **loc;
2606 /* Look up EXP in the table of constant descriptors. If we didn't find
2607 it, create a new one. */
2608 key.value = exp;
2609 loc = htab_find_slot (const_desc_htab, &key, INSERT);
2611 desc = *loc;
2612 if (desc == 0)
2614 desc = build_constant_desc (exp);
2615 *loc = desc;
2618 maybe_output_constant_def_contents (desc, defer);
2619 return desc->rtl;
2622 /* Subroutine of output_constant_def: Decide whether or not we need to
2623 output the constant DESC now, and if so, do it. */
2624 static void
2625 maybe_output_constant_def_contents (struct constant_descriptor_tree *desc,
2626 int defer)
2628 rtx symbol = XEXP (desc->rtl, 0);
2629 tree exp = desc->value;
2631 if (flag_syntax_only)
2632 return;
2634 if (TREE_ASM_WRITTEN (exp))
2635 /* Already output; don't do it again. */
2636 return;
2638 /* We can always defer constants as long as the context allows
2639 doing so. */
2640 if (defer)
2642 /* Increment n_deferred_constants if it exists. It needs to be at
2643 least as large as the number of constants actually referred to
2644 by the function. If it's too small we'll stop looking too early
2645 and fail to emit constants; if it's too large we'll only look
2646 through the entire function when we could have stopped earlier. */
2647 if (cfun)
2648 n_deferred_constants++;
2649 return;
2652 output_constant_def_contents (symbol);
2655 /* We must output the constant data referred to by SYMBOL; do so. */
2657 static void
2658 output_constant_def_contents (rtx symbol)
2660 tree exp = SYMBOL_REF_DECL (symbol);
2661 const char *label = XSTR (symbol, 0);
2662 HOST_WIDE_INT size;
2664 /* Make sure any other constants whose addresses appear in EXP
2665 are assigned label numbers. */
2666 int reloc = compute_reloc_for_constant (exp);
2668 /* Align the location counter as required by EXP's data type. */
2669 unsigned int align = TYPE_ALIGN (TREE_TYPE (exp));
2670 #ifdef CONSTANT_ALIGNMENT
2671 align = CONSTANT_ALIGNMENT (exp, align);
2672 #endif
2674 output_addressed_constants (exp);
2676 /* We are no longer deferring this constant. */
2677 TREE_ASM_WRITTEN (exp) = 1;
2679 if (IN_NAMED_SECTION (exp))
2680 named_section (exp, NULL, reloc);
2681 else
2682 targetm.asm_out.select_section (exp, reloc, align);
2684 if (align > BITS_PER_UNIT)
2686 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
2689 size = int_size_in_bytes (TREE_TYPE (exp));
2690 if (TREE_CODE (exp) == STRING_CST)
2691 size = MAX (TREE_STRING_LENGTH (exp), size);
2693 /* Do any machine/system dependent processing of the constant. */
2694 #ifdef ASM_DECLARE_CONSTANT_NAME
2695 ASM_DECLARE_CONSTANT_NAME (asm_out_file, label, exp, size);
2696 #else
2697 /* Standard thing is just output label for the constant. */
2698 ASM_OUTPUT_LABEL (asm_out_file, label);
2699 #endif /* ASM_DECLARE_CONSTANT_NAME */
2701 /* Output the value of EXP. */
2702 output_constant (exp, size, align);
2703 if (flag_mudflap)
2704 mudflap_enqueue_constant (exp);
2707 /* Look up EXP in the table of constant descriptors. Return the rtl
2708 if it has been emitted, else null. */
2711 lookup_constant_def (tree exp)
2713 struct constant_descriptor_tree *desc;
2714 struct constant_descriptor_tree key;
2716 key.value = exp;
2717 desc = htab_find (const_desc_htab, &key);
2719 return (desc ? desc->rtl : NULL_RTX);
2722 /* Used in the hash tables to avoid outputting the same constant
2723 twice. Unlike 'struct constant_descriptor_tree', RTX constants
2724 are output once per function, not once per file. */
2725 /* ??? Only a few targets need per-function constant pools. Most
2726 can use one per-file pool. Should add a targetm bit to tell the
2727 difference. */
2729 struct rtx_constant_pool GTY(())
2731 /* Pointers to first and last constant in pool, as ordered by offset. */
2732 struct constant_descriptor_rtx *first;
2733 struct constant_descriptor_rtx *last;
2735 /* Hash facility for making memory-constants from constant rtl-expressions.
2736 It is used on RISC machines where immediate integer arguments and
2737 constant addresses are restricted so that such constants must be stored
2738 in memory. */
2739 htab_t GTY((param_is (struct constant_descriptor_rtx))) const_rtx_htab;
2740 htab_t GTY((param_is (struct constant_descriptor_rtx))) const_rtx_sym_htab;
2742 /* Current offset in constant pool (does not include any
2743 machine-specific header). */
2744 HOST_WIDE_INT offset;
2747 struct constant_descriptor_rtx GTY((chain_next ("%h.next")))
2749 struct constant_descriptor_rtx *next;
2750 rtx mem;
2751 rtx sym;
2752 rtx constant;
2753 HOST_WIDE_INT offset;
2754 hashval_t hash;
2755 enum machine_mode mode;
2756 unsigned int align;
2757 int labelno;
2758 int mark;
2761 /* Hash and compare functions for const_rtx_htab. */
2763 static hashval_t
2764 const_desc_rtx_hash (const void *ptr)
2766 const struct constant_descriptor_rtx *desc = ptr;
2767 return desc->hash;
2770 static int
2771 const_desc_rtx_eq (const void *a, const void *b)
2773 const struct constant_descriptor_rtx *x = a;
2774 const struct constant_descriptor_rtx *y = b;
2776 if (x->mode != y->mode)
2777 return 0;
2778 return rtx_equal_p (x->constant, y->constant);
2781 /* Hash and compare functions for const_rtx_sym_htab. */
2783 static hashval_t
2784 const_desc_rtx_sym_hash (const void *ptr)
2786 const struct constant_descriptor_rtx *desc = ptr;
2787 return htab_hash_string (XSTR (desc->sym, 0));
2790 static int
2791 const_desc_rtx_sym_eq (const void *a, const void *b)
2793 const struct constant_descriptor_rtx *x = a;
2794 const struct constant_descriptor_rtx *y = b;
2795 return XSTR (x->sym, 0) == XSTR (y->sym, 0);
2798 /* This is the worker function for const_rtx_hash, called via for_each_rtx. */
2800 static int
2801 const_rtx_hash_1 (rtx *xp, void *data)
2803 unsigned HOST_WIDE_INT hwi;
2804 enum machine_mode mode;
2805 enum rtx_code code;
2806 hashval_t h, *hp;
2807 rtx x;
2809 x = *xp;
2810 code = GET_CODE (x);
2811 mode = GET_MODE (x);
2812 h = (hashval_t) code * 1048573 + mode;
2814 switch (code)
2816 case CONST_INT:
2817 hwi = INTVAL (x);
2818 fold_hwi:
2820 const int shift = sizeof (hashval_t) * CHAR_BIT;
2821 const int n = sizeof (HOST_WIDE_INT) / sizeof (hashval_t);
2822 int i;
2824 h ^= (hashval_t) hwi;
2825 for (i = 1; i < n; ++i)
2827 hwi >>= shift;
2828 h ^= (hashval_t) hwi;
2831 break;
2833 case CONST_DOUBLE:
2834 if (mode == VOIDmode)
2836 hwi = CONST_DOUBLE_LOW (x) ^ CONST_DOUBLE_HIGH (x);
2837 goto fold_hwi;
2839 else
2840 h ^= real_hash (CONST_DOUBLE_REAL_VALUE (x));
2841 break;
2843 case SYMBOL_REF:
2844 h ^= htab_hash_string (XSTR (x, 0));
2845 break;
2847 case LABEL_REF:
2848 h = h * 251 + CODE_LABEL_NUMBER (XEXP (x, 0));
2849 break;
2851 case UNSPEC:
2852 case UNSPEC_VOLATILE:
2853 h = h * 251 + XINT (x, 1);
2854 break;
2856 default:
2857 break;
2860 hp = data;
2861 *hp = *hp * 509 + h;
2862 return 0;
2865 /* Compute a hash value for X, which should be a constant. */
2867 static hashval_t
2868 const_rtx_hash (rtx x)
2870 hashval_t h = 0;
2871 for_each_rtx (&x, const_rtx_hash_1, &h);
2872 return h;
2876 /* Initialize constant pool hashing for a new function. */
2878 void
2879 init_varasm_status (struct function *f)
2881 struct varasm_status *p;
2882 struct rtx_constant_pool *pool;
2884 p = ggc_alloc (sizeof (struct varasm_status));
2885 f->varasm = p;
2887 pool = ggc_alloc (sizeof (struct rtx_constant_pool));
2888 p->pool = pool;
2889 p->deferred_constants = 0;
2891 pool->const_rtx_htab = htab_create_ggc (31, const_desc_rtx_hash,
2892 const_desc_rtx_eq, NULL);
2893 pool->const_rtx_sym_htab = htab_create_ggc (31, const_desc_rtx_sym_hash,
2894 const_desc_rtx_sym_eq, NULL);
2895 pool->first = pool->last = NULL;
2896 pool->offset = 0;
2899 /* Given a MINUS expression, simplify it if both sides
2900 include the same symbol. */
2903 simplify_subtraction (rtx x)
2905 rtx r = simplify_rtx (x);
2906 return r ? r : x;
2909 /* Given a constant rtx X, make (or find) a memory constant for its value
2910 and return a MEM rtx to refer to it in memory. */
2913 force_const_mem (enum machine_mode mode, rtx x)
2915 struct constant_descriptor_rtx *desc, tmp;
2916 struct rtx_constant_pool *pool = cfun->varasm->pool;
2917 char label[256];
2918 rtx def, symbol;
2919 hashval_t hash;
2920 unsigned int align;
2921 void **slot;
2923 /* If we're not allowed to drop X into the constant pool, don't. */
2924 if (targetm.cannot_force_const_mem (x))
2925 return NULL_RTX;
2927 /* Lookup the value in the hashtable. */
2928 tmp.constant = x;
2929 tmp.mode = mode;
2930 hash = const_rtx_hash (x);
2931 slot = htab_find_slot_with_hash (pool->const_rtx_htab, &tmp, hash, INSERT);
2932 desc = *slot;
2934 /* If the constant was already present, return its memory. */
2935 if (desc)
2936 return copy_rtx (desc->mem);
2938 /* Otherwise, create a new descriptor. */
2939 desc = ggc_alloc (sizeof (*desc));
2940 *slot = desc;
2942 /* Align the location counter as required by EXP's data type. */
2943 align = GET_MODE_ALIGNMENT (mode == VOIDmode ? word_mode : mode);
2944 #ifdef CONSTANT_ALIGNMENT
2946 tree type = lang_hooks.types.type_for_mode (mode, 0);
2947 if (type != NULL_TREE)
2948 align = CONSTANT_ALIGNMENT (make_tree (type, x), align);
2950 #endif
2952 pool->offset += (align / BITS_PER_UNIT) - 1;
2953 pool->offset &= ~ ((align / BITS_PER_UNIT) - 1);
2955 desc->next = NULL;
2956 desc->constant = tmp.constant;
2957 desc->offset = pool->offset;
2958 desc->hash = hash;
2959 desc->mode = mode;
2960 desc->align = align;
2961 desc->labelno = const_labelno;
2962 desc->mark = 0;
2964 pool->offset += GET_MODE_SIZE (mode);
2965 if (pool->last)
2966 pool->last->next = desc;
2967 else
2968 pool->first = pool->last = desc;
2969 pool->last = desc;
2971 /* Create a string containing the label name, in LABEL. */
2972 ASM_GENERATE_INTERNAL_LABEL (label, "LC", const_labelno);
2973 ++const_labelno;
2975 /* Construct the SYMBOL_REF. Make sure to mark it as belonging to
2976 the constants pool. */
2977 desc->sym = symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
2978 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
2979 CONSTANT_POOL_ADDRESS_P (symbol) = 1;
2980 current_function_uses_const_pool = 1;
2982 /* Insert the descriptor into the symbol cross-reference table too. */
2983 slot = htab_find_slot (pool->const_rtx_sym_htab, desc, INSERT);
2984 if (*slot)
2985 abort ();
2986 *slot = desc;
2988 /* Construct the MEM. */
2989 desc->mem = def = gen_const_mem (mode, symbol);
2990 set_mem_attributes (def, lang_hooks.types.type_for_mode (mode, 0), 1);
2992 /* If we're dropping a label to the constant pool, make sure we
2993 don't delete it. */
2994 if (GET_CODE (x) == LABEL_REF)
2995 LABEL_PRESERVE_P (XEXP (x, 0)) = 1;
2997 return copy_rtx (def);
3000 /* Given a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true, return a pointer to
3001 the corresponding constant_descriptor_rtx structure. */
3003 static struct constant_descriptor_rtx *
3004 find_pool_constant (struct rtx_constant_pool *pool, rtx sym)
3006 struct constant_descriptor_rtx tmp;
3007 tmp.sym = sym;
3008 return htab_find (pool->const_rtx_sym_htab, &tmp);
3011 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3014 get_pool_constant (rtx addr)
3016 return find_pool_constant (cfun->varasm->pool, addr)->constant;
3019 /* Given a constant pool SYMBOL_REF, return the corresponding constant
3020 and whether it has been output or not. */
3023 get_pool_constant_mark (rtx addr, bool *pmarked)
3025 struct constant_descriptor_rtx *desc;
3027 desc = find_pool_constant (cfun->varasm->pool, addr);
3028 *pmarked = (desc->mark != 0);
3029 return desc->constant;
3032 /* Likewise, but for the constant pool of a specific function. */
3035 get_pool_constant_for_function (struct function *f, rtx addr)
3037 return find_pool_constant (f->varasm->pool, addr)->constant;
3040 /* Similar, return the mode. */
3042 enum machine_mode
3043 get_pool_mode (rtx addr)
3045 return find_pool_constant (cfun->varasm->pool, addr)->mode;
3048 /* Return the size of the constant pool. */
3051 get_pool_size (void)
3053 return cfun->varasm->pool->offset;
3056 /* Worker function for output_constant_pool_1. Emit assembly for X
3057 in MODE with known alignment ALIGN. */
3059 static void
3060 output_constant_pool_2 (enum machine_mode mode, rtx x, unsigned int align)
3062 switch (GET_MODE_CLASS (mode))
3064 case MODE_FLOAT:
3065 if (GET_CODE (x) != CONST_DOUBLE)
3066 abort ();
3067 else
3069 REAL_VALUE_TYPE r;
3070 REAL_VALUE_FROM_CONST_DOUBLE (r, x);
3071 assemble_real (r, mode, align);
3073 break;
3075 case MODE_INT:
3076 case MODE_PARTIAL_INT:
3077 assemble_integer (x, GET_MODE_SIZE (mode), align, 1);
3078 break;
3080 case MODE_VECTOR_FLOAT:
3081 case MODE_VECTOR_INT:
3083 int i, units;
3084 enum machine_mode submode = GET_MODE_INNER (mode);
3085 unsigned int subalign = MIN (align, GET_MODE_BITSIZE (submode));
3087 if (GET_CODE (x) != CONST_VECTOR)
3088 abort ();
3089 units = CONST_VECTOR_NUNITS (x);
3091 for (i = 0; i < units; i++)
3093 rtx elt = CONST_VECTOR_ELT (x, i);
3094 output_constant_pool_2 (submode, elt, i ? subalign : align);
3097 break;
3099 default:
3100 abort ();
3104 /* Worker function for output_constant_pool. Emit POOL. */
3106 static void
3107 output_constant_pool_1 (struct constant_descriptor_rtx *desc)
3109 rtx x, tmp;
3111 if (!desc->mark)
3112 return;
3113 x = desc->constant;
3115 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3116 whose CODE_LABEL has been deleted. This can occur if a jump table
3117 is eliminated by optimization. If so, write a constant of zero
3118 instead. Note that this can also happen by turning the
3119 CODE_LABEL into a NOTE. */
3120 /* ??? This seems completely and utterly wrong. Certainly it's
3121 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3122 functioning even with INSN_DELETED_P and friends. */
3124 tmp = x;
3125 switch (GET_CODE (x))
3127 case CONST:
3128 if (GET_CODE (XEXP (x, 0)) != PLUS
3129 || GET_CODE (XEXP (XEXP (x, 0), 0)) != LABEL_REF)
3130 break;
3131 tmp = XEXP (XEXP (x, 0), 0);
3132 /* FALLTHRU */
3134 case LABEL_REF:
3135 tmp = XEXP (x, 0);
3136 if (INSN_DELETED_P (tmp)
3137 || (NOTE_P (tmp)
3138 && NOTE_LINE_NUMBER (tmp) == NOTE_INSN_DELETED))
3140 abort ();
3141 x = const0_rtx;
3143 break;
3145 default:
3146 break;
3149 /* First switch to correct section. */
3150 targetm.asm_out.select_rtx_section (desc->mode, x, desc->align);
3152 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3153 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file, x, desc->mode,
3154 desc->align, desc->labelno, done);
3155 #endif
3157 assemble_align (desc->align);
3159 /* Output the label. */
3160 targetm.asm_out.internal_label (asm_out_file, "LC", desc->labelno);
3162 /* Output the data. */
3163 output_constant_pool_2 (desc->mode, x, desc->align);
3165 /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
3166 sections have proper size. */
3167 if (desc->align > GET_MODE_BITSIZE (desc->mode)
3168 && in_section == in_named
3169 && get_named_section_flags (in_named_name) & SECTION_MERGE)
3170 assemble_align (desc->align);
3172 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3173 done:
3174 #endif
3175 return;
3178 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3179 to as used. Emit referenced deferred strings. This function can
3180 be used with for_each_rtx to mark all SYMBOL_REFs in an rtx. */
3182 static int
3183 mark_constant (rtx *current_rtx, void *data)
3185 struct rtx_constant_pool *pool = data;
3186 rtx x = *current_rtx;
3188 if (x == NULL_RTX || GET_CODE (x) != SYMBOL_REF)
3189 return 0;
3191 if (CONSTANT_POOL_ADDRESS_P (x))
3193 struct constant_descriptor_rtx *desc = find_pool_constant (pool, x);
3194 if (desc->mark == 0)
3196 desc->mark = 1;
3197 for_each_rtx (&desc->constant, mark_constant, pool);
3200 else if (TREE_CONSTANT_POOL_ADDRESS_P (x))
3202 tree exp = SYMBOL_REF_DECL (x);
3203 if (!TREE_ASM_WRITTEN (exp))
3205 n_deferred_constants--;
3206 output_constant_def_contents (x);
3210 return -1;
3213 /* Look through appropriate parts of INSN, marking all entries in the
3214 constant pool which are actually being used. Entries that are only
3215 referenced by other constants are also marked as used. Emit
3216 deferred strings that are used. */
3218 static void
3219 mark_constants (struct rtx_constant_pool *pool, rtx insn)
3221 if (!INSN_P (insn))
3222 return;
3224 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3225 insns, not any notes that may be attached. We don't want to mark
3226 a constant just because it happens to appear in a REG_EQUIV note. */
3227 if (GET_CODE (PATTERN (insn)) == SEQUENCE)
3229 rtx seq = PATTERN (insn);
3230 int i, n = XVECLEN (seq, 0);
3231 for (i = 0; i < n; ++i)
3233 rtx subinsn = XVECEXP (seq, 0, i);
3234 if (INSN_P (subinsn))
3235 for_each_rtx (&PATTERN (subinsn), mark_constant, pool);
3238 else
3239 for_each_rtx (&PATTERN (insn), mark_constant, pool);
3242 /* Look through the instructions for this function, and mark all the
3243 entries in POOL which are actually being used. Emit deferred constants
3244 which have indeed been used. */
3246 static void
3247 mark_constant_pool (struct rtx_constant_pool *pool)
3249 rtx insn, link;
3251 if (pool->first == 0 && n_deferred_constants == 0)
3252 return;
3254 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3255 mark_constants (pool, insn);
3257 for (link = current_function_epilogue_delay_list;
3258 link;
3259 link = XEXP (link, 1))
3260 mark_constants (pool, XEXP (link, 0));
3263 /* Write all the constants in the constant pool. */
3265 void
3266 output_constant_pool (const char *fnname ATTRIBUTE_UNUSED,
3267 tree fndecl ATTRIBUTE_UNUSED)
3269 struct rtx_constant_pool *pool = cfun->varasm->pool;
3270 struct constant_descriptor_rtx *desc;
3272 /* It is possible for gcc to call force_const_mem and then to later
3273 discard the instructions which refer to the constant. In such a
3274 case we do not need to output the constant. */
3275 mark_constant_pool (pool);
3277 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3278 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file, fnname, fndecl, pool->offset);
3279 #endif
3281 for (desc = pool->first; desc ; desc = desc->next)
3282 output_constant_pool_1 (desc);
3284 #ifdef ASM_OUTPUT_POOL_EPILOGUE
3285 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file, fnname, fndecl, pool->offset);
3286 #endif
3289 /* Determine what kind of relocations EXP may need. */
3292 compute_reloc_for_constant (tree exp)
3294 int reloc = 0, reloc2;
3295 tree tem;
3297 /* Give the front-end a chance to convert VALUE to something that
3298 looks more like a constant to the back-end. */
3299 exp = lang_hooks.expand_constant (exp);
3301 switch (TREE_CODE (exp))
3303 case ADDR_EXPR:
3304 case FDESC_EXPR:
3305 /* Go inside any operations that get_inner_reference can handle and see
3306 if what's inside is a constant: no need to do anything here for
3307 addresses of variables or functions. */
3308 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
3309 tem = TREE_OPERAND (tem, 0))
3312 if (TREE_PUBLIC (tem))
3313 reloc |= 2;
3314 else
3315 reloc |= 1;
3316 break;
3318 case PLUS_EXPR:
3319 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3320 reloc |= compute_reloc_for_constant (TREE_OPERAND (exp, 1));
3321 break;
3323 case MINUS_EXPR:
3324 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3325 reloc2 = compute_reloc_for_constant (TREE_OPERAND (exp, 1));
3326 /* The difference of two local labels is computable at link time. */
3327 if (reloc == 1 && reloc2 == 1)
3328 reloc = 0;
3329 else
3330 reloc |= reloc2;
3331 break;
3333 case NOP_EXPR:
3334 case CONVERT_EXPR:
3335 case NON_LVALUE_EXPR:
3336 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3337 break;
3339 case CONSTRUCTOR:
3340 for (tem = CONSTRUCTOR_ELTS (exp); tem; tem = TREE_CHAIN (tem))
3341 if (TREE_VALUE (tem) != 0)
3342 reloc |= compute_reloc_for_constant (TREE_VALUE (tem));
3344 break;
3346 default:
3347 break;
3349 return reloc;
3352 /* Find all the constants whose addresses are referenced inside of EXP,
3353 and make sure assembler code with a label has been output for each one.
3354 Indicate whether an ADDR_EXPR has been encountered. */
3356 static void
3357 output_addressed_constants (tree exp)
3359 tree tem;
3361 /* Give the front-end a chance to convert VALUE to something that
3362 looks more like a constant to the back-end. */
3363 exp = lang_hooks.expand_constant (exp);
3365 switch (TREE_CODE (exp))
3367 case ADDR_EXPR:
3368 case FDESC_EXPR:
3369 /* Go inside any operations that get_inner_reference can handle and see
3370 if what's inside is a constant: no need to do anything here for
3371 addresses of variables or functions. */
3372 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
3373 tem = TREE_OPERAND (tem, 0))
3376 if (CONSTANT_CLASS_P (tem) || TREE_CODE (tem) == CONSTRUCTOR)
3377 output_constant_def (tem, 0);
3378 break;
3380 case PLUS_EXPR:
3381 case MINUS_EXPR:
3382 output_addressed_constants (TREE_OPERAND (exp, 1));
3383 /* Fall through. */
3385 case NOP_EXPR:
3386 case CONVERT_EXPR:
3387 case NON_LVALUE_EXPR:
3388 output_addressed_constants (TREE_OPERAND (exp, 0));
3389 break;
3391 case CONSTRUCTOR:
3392 for (tem = CONSTRUCTOR_ELTS (exp); tem; tem = TREE_CHAIN (tem))
3393 if (TREE_VALUE (tem) != 0)
3394 output_addressed_constants (TREE_VALUE (tem));
3396 break;
3398 default:
3399 break;
3403 /* Return nonzero if VALUE is a valid constant-valued expression
3404 for use in initializing a static variable; one that can be an
3405 element of a "constant" initializer.
3407 Return null_pointer_node if the value is absolute;
3408 if it is relocatable, return the variable that determines the relocation.
3409 We assume that VALUE has been folded as much as possible;
3410 therefore, we do not need to check for such things as
3411 arithmetic-combinations of integers. */
3413 tree
3414 initializer_constant_valid_p (tree value, tree endtype)
3416 /* Give the front-end a chance to convert VALUE to something that
3417 looks more like a constant to the back-end. */
3418 value = lang_hooks.expand_constant (value);
3420 switch (TREE_CODE (value))
3422 case CONSTRUCTOR:
3423 if ((TREE_CODE (TREE_TYPE (value)) == UNION_TYPE
3424 || TREE_CODE (TREE_TYPE (value)) == RECORD_TYPE)
3425 && TREE_CONSTANT (value)
3426 && CONSTRUCTOR_ELTS (value))
3428 tree elt;
3429 bool absolute = true;
3431 for (elt = CONSTRUCTOR_ELTS (value); elt; elt = TREE_CHAIN (elt))
3433 tree reloc;
3434 value = TREE_VALUE (elt);
3435 reloc = initializer_constant_valid_p (value, TREE_TYPE (value));
3436 if (!reloc)
3437 return NULL_TREE;
3438 if (reloc != null_pointer_node)
3439 absolute = false;
3441 /* For a non-absolute relocation, there is no single
3442 variable that can be "the variable that determines the
3443 relocation." */
3444 return absolute ? null_pointer_node : error_mark_node;
3447 return TREE_STATIC (value) ? null_pointer_node : NULL_TREE;
3449 case INTEGER_CST:
3450 case VECTOR_CST:
3451 case REAL_CST:
3452 case STRING_CST:
3453 case COMPLEX_CST:
3454 return null_pointer_node;
3456 case ADDR_EXPR:
3457 case FDESC_EXPR:
3458 value = staticp (TREE_OPERAND (value, 0));
3459 /* "&(*a).f" is like unto pointer arithmetic. If "a" turns out to
3460 be a constant, this is old-skool offsetof-like nonsense. */
3461 if (value
3462 && TREE_CODE (value) == INDIRECT_REF
3463 && TREE_CONSTANT (TREE_OPERAND (value, 0)))
3464 return null_pointer_node;
3465 return value;
3467 case VIEW_CONVERT_EXPR:
3468 case NON_LVALUE_EXPR:
3469 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3471 case CONVERT_EXPR:
3472 case NOP_EXPR:
3473 /* Allow conversions between pointer types. */
3474 if (POINTER_TYPE_P (TREE_TYPE (value))
3475 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3476 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3478 /* Allow conversions between real types. */
3479 if (FLOAT_TYPE_P (TREE_TYPE (value))
3480 && FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3481 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3483 /* Allow length-preserving conversions between integer types. */
3484 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
3485 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0)))
3486 && (TYPE_PRECISION (TREE_TYPE (value))
3487 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0)))))
3488 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3490 /* Allow conversions between other integer types only if
3491 explicit value. */
3492 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
3493 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3495 tree inner = initializer_constant_valid_p (TREE_OPERAND (value, 0),
3496 endtype);
3497 if (inner == null_pointer_node)
3498 return null_pointer_node;
3499 break;
3502 /* Allow (int) &foo provided int is as wide as a pointer. */
3503 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
3504 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0)))
3505 && (TYPE_PRECISION (TREE_TYPE (value))
3506 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0)))))
3507 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
3508 endtype);
3510 /* Likewise conversions from int to pointers, but also allow
3511 conversions from 0. */
3512 if ((POINTER_TYPE_P (TREE_TYPE (value))
3513 || TREE_CODE (TREE_TYPE (value)) == OFFSET_TYPE)
3514 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3516 if (integer_zerop (TREE_OPERAND (value, 0)))
3517 return null_pointer_node;
3518 else if (TYPE_PRECISION (TREE_TYPE (value))
3519 <= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0))))
3520 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
3521 endtype);
3524 /* Allow conversions to struct or union types if the value
3525 inside is okay. */
3526 if (TREE_CODE (TREE_TYPE (value)) == RECORD_TYPE
3527 || TREE_CODE (TREE_TYPE (value)) == UNION_TYPE)
3528 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
3529 endtype);
3530 break;
3532 case PLUS_EXPR:
3533 if (! INTEGRAL_TYPE_P (endtype)
3534 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
3536 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
3537 endtype);
3538 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
3539 endtype);
3540 /* If either term is absolute, use the other terms relocation. */
3541 if (valid0 == null_pointer_node)
3542 return valid1;
3543 if (valid1 == null_pointer_node)
3544 return valid0;
3546 break;
3548 case MINUS_EXPR:
3549 if (! INTEGRAL_TYPE_P (endtype)
3550 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
3552 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
3553 endtype);
3554 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
3555 endtype);
3556 /* Win if second argument is absolute. */
3557 if (valid1 == null_pointer_node)
3558 return valid0;
3559 /* Win if both arguments have the same relocation.
3560 Then the value is absolute. */
3561 if (valid0 == valid1 && valid0 != 0)
3562 return null_pointer_node;
3564 /* Since GCC guarantees that string constants are unique in the
3565 generated code, a subtraction between two copies of the same
3566 constant string is absolute. */
3567 if (valid0 && TREE_CODE (valid0) == STRING_CST
3568 && valid1 && TREE_CODE (valid1) == STRING_CST
3569 && operand_equal_p (valid0, valid1, 1))
3570 return null_pointer_node;
3573 /* Support narrowing differences. */
3574 if (INTEGRAL_TYPE_P (endtype))
3576 tree op0, op1;
3578 op0 = TREE_OPERAND (value, 0);
3579 op1 = TREE_OPERAND (value, 1);
3581 /* Like STRIP_NOPS except allow the operand mode to widen.
3582 This works around a feature of fold that simplifies
3583 (int)(p1 - p2) to ((int)p1 - (int)p2) under the theory
3584 that the narrower operation is cheaper. */
3586 while (TREE_CODE (op0) == NOP_EXPR
3587 || TREE_CODE (op0) == CONVERT_EXPR
3588 || TREE_CODE (op0) == NON_LVALUE_EXPR)
3590 tree inner = TREE_OPERAND (op0, 0);
3591 if (inner == error_mark_node
3592 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
3593 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0)))
3594 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
3595 break;
3596 op0 = inner;
3599 while (TREE_CODE (op1) == NOP_EXPR
3600 || TREE_CODE (op1) == CONVERT_EXPR
3601 || TREE_CODE (op1) == NON_LVALUE_EXPR)
3603 tree inner = TREE_OPERAND (op1, 0);
3604 if (inner == error_mark_node
3605 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
3606 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op1)))
3607 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
3608 break;
3609 op1 = inner;
3612 op0 = initializer_constant_valid_p (op0, endtype);
3613 op1 = initializer_constant_valid_p (op1, endtype);
3615 /* Both initializers must be known. */
3616 if (op0 && op1)
3618 if (op0 == op1)
3619 return null_pointer_node;
3621 /* Support differences between labels. */
3622 if (TREE_CODE (op0) == LABEL_DECL
3623 && TREE_CODE (op1) == LABEL_DECL)
3624 return null_pointer_node;
3626 if (TREE_CODE (op0) == STRING_CST
3627 && TREE_CODE (op1) == STRING_CST
3628 && operand_equal_p (op0, op1, 1))
3629 return null_pointer_node;
3632 break;
3634 default:
3635 break;
3638 return 0;
3641 /* Output assembler code for constant EXP to FILE, with no label.
3642 This includes the pseudo-op such as ".int" or ".byte", and a newline.
3643 Assumes output_addressed_constants has been done on EXP already.
3645 Generate exactly SIZE bytes of assembler data, padding at the end
3646 with zeros if necessary. SIZE must always be specified.
3648 SIZE is important for structure constructors,
3649 since trailing members may have been omitted from the constructor.
3650 It is also important for initialization of arrays from string constants
3651 since the full length of the string constant might not be wanted.
3652 It is also needed for initialization of unions, where the initializer's
3653 type is just one member, and that may not be as long as the union.
3655 There a case in which we would fail to output exactly SIZE bytes:
3656 for a structure constructor that wants to produce more than SIZE bytes.
3657 But such constructors will never be generated for any possible input.
3659 ALIGN is the alignment of the data in bits. */
3661 void
3662 output_constant (tree exp, unsigned HOST_WIDE_INT size, unsigned int align)
3664 enum tree_code code;
3665 unsigned HOST_WIDE_INT thissize;
3667 /* Some front-ends use constants other than the standard language-independent
3668 varieties, but which may still be output directly. Give the front-end a
3669 chance to convert EXP to a language-independent representation. */
3670 exp = lang_hooks.expand_constant (exp);
3672 if (size == 0 || flag_syntax_only)
3673 return;
3675 /* Eliminate any conversions since we'll be outputting the underlying
3676 constant. */
3677 while (TREE_CODE (exp) == NOP_EXPR || TREE_CODE (exp) == CONVERT_EXPR
3678 || TREE_CODE (exp) == NON_LVALUE_EXPR
3679 || TREE_CODE (exp) == VIEW_CONVERT_EXPR)
3680 exp = TREE_OPERAND (exp, 0);
3682 code = TREE_CODE (TREE_TYPE (exp));
3683 thissize = int_size_in_bytes (TREE_TYPE (exp));
3685 /* Allow a constructor with no elements for any data type.
3686 This means to fill the space with zeros. */
3687 if (TREE_CODE (exp) == CONSTRUCTOR && CONSTRUCTOR_ELTS (exp) == 0)
3689 assemble_zeros (size);
3690 return;
3693 if (TREE_CODE (exp) == FDESC_EXPR)
3695 #ifdef ASM_OUTPUT_FDESC
3696 HOST_WIDE_INT part = tree_low_cst (TREE_OPERAND (exp, 1), 0);
3697 tree decl = TREE_OPERAND (exp, 0);
3698 ASM_OUTPUT_FDESC (asm_out_file, decl, part);
3699 #else
3700 abort ();
3701 #endif
3702 return;
3705 /* Now output the underlying data. If we've handling the padding, return.
3706 Otherwise, break and ensure SIZE is the size written. */
3707 switch (code)
3709 case CHAR_TYPE:
3710 case BOOLEAN_TYPE:
3711 case INTEGER_TYPE:
3712 case ENUMERAL_TYPE:
3713 case POINTER_TYPE:
3714 case REFERENCE_TYPE:
3715 case OFFSET_TYPE:
3716 if (! assemble_integer (expand_expr (exp, NULL_RTX, VOIDmode,
3717 EXPAND_INITIALIZER),
3718 MIN (size, thissize), align, 0))
3719 error ("initializer for integer value is too complicated");
3720 break;
3722 case REAL_TYPE:
3723 if (TREE_CODE (exp) != REAL_CST)
3724 error ("initializer for floating value is not a floating constant");
3726 assemble_real (TREE_REAL_CST (exp), TYPE_MODE (TREE_TYPE (exp)), align);
3727 break;
3729 case COMPLEX_TYPE:
3730 output_constant (TREE_REALPART (exp), thissize / 2, align);
3731 output_constant (TREE_IMAGPART (exp), thissize / 2,
3732 min_align (align, BITS_PER_UNIT * (thissize / 2)));
3733 break;
3735 case ARRAY_TYPE:
3736 case VECTOR_TYPE:
3737 if (TREE_CODE (exp) == CONSTRUCTOR)
3739 output_constructor (exp, size, align);
3740 return;
3742 else if (TREE_CODE (exp) == STRING_CST)
3744 thissize = MIN ((unsigned HOST_WIDE_INT)TREE_STRING_LENGTH (exp),
3745 size);
3746 assemble_string (TREE_STRING_POINTER (exp), thissize);
3748 else if (TREE_CODE (exp) == VECTOR_CST)
3750 int elt_size;
3751 tree link;
3752 unsigned int nalign;
3753 enum machine_mode inner;
3755 inner = TYPE_MODE (TREE_TYPE (TREE_TYPE (exp)));
3756 nalign = MIN (align, GET_MODE_ALIGNMENT (inner));
3758 elt_size = GET_MODE_SIZE (inner);
3760 link = TREE_VECTOR_CST_ELTS (exp);
3761 output_constant (TREE_VALUE (link), elt_size, align);
3762 while ((link = TREE_CHAIN (link)) != NULL)
3763 output_constant (TREE_VALUE (link), elt_size, nalign);
3765 else
3766 abort ();
3767 break;
3769 case RECORD_TYPE:
3770 case UNION_TYPE:
3771 if (TREE_CODE (exp) == CONSTRUCTOR)
3772 output_constructor (exp, size, align);
3773 else
3774 abort ();
3775 return;
3777 case SET_TYPE:
3778 if (TREE_CODE (exp) == INTEGER_CST)
3779 assemble_integer (expand_expr (exp, NULL_RTX,
3780 VOIDmode, EXPAND_INITIALIZER),
3781 thissize, align, 1);
3782 else if (TREE_CODE (exp) == CONSTRUCTOR)
3784 unsigned char *buffer = alloca (thissize);
3785 if (get_set_constructor_bytes (exp, buffer, thissize))
3786 abort ();
3787 assemble_string ((char *) buffer, thissize);
3789 else
3790 error ("unknown set constructor type");
3791 return;
3793 case ERROR_MARK:
3794 return;
3796 default:
3797 abort ();
3800 if (size > thissize)
3801 assemble_zeros (size - thissize);
3805 /* Subroutine of output_constructor, used for computing the size of
3806 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
3807 type with an unspecified upper bound. */
3809 static unsigned HOST_WIDE_INT
3810 array_size_for_constructor (tree val)
3812 tree max_index, i;
3814 /* This code used to attempt to handle string constants that are not
3815 arrays of single-bytes, but nothing else does, so there's no point in
3816 doing it here. */
3817 if (TREE_CODE (val) == STRING_CST)
3818 return TREE_STRING_LENGTH (val);
3820 max_index = NULL_TREE;
3821 for (i = CONSTRUCTOR_ELTS (val); i; i = TREE_CHAIN (i))
3823 tree index = TREE_PURPOSE (i);
3825 if (TREE_CODE (index) == RANGE_EXPR)
3826 index = TREE_OPERAND (index, 1);
3827 if (max_index == NULL_TREE || tree_int_cst_lt (max_index, index))
3828 max_index = index;
3831 if (max_index == NULL_TREE)
3832 return 0;
3834 /* Compute the total number of array elements. */
3835 i = size_binop (MINUS_EXPR, convert (sizetype, max_index),
3836 convert (sizetype,
3837 TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val)))));
3838 i = size_binop (PLUS_EXPR, i, convert (sizetype, integer_one_node));
3840 /* Multiply by the array element unit size to find number of bytes. */
3841 i = size_binop (MULT_EXPR, i, TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val))));
3843 return tree_low_cst (i, 1);
3846 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
3847 Generate at least SIZE bytes, padding if necessary. */
3849 static void
3850 output_constructor (tree exp, unsigned HOST_WIDE_INT size,
3851 unsigned int align)
3853 tree type = TREE_TYPE (exp);
3854 tree link, field = 0;
3855 tree min_index = 0;
3856 /* Number of bytes output or skipped so far.
3857 In other words, current position within the constructor. */
3858 HOST_WIDE_INT total_bytes = 0;
3859 /* Nonzero means BYTE contains part of a byte, to be output. */
3860 int byte_buffer_in_use = 0;
3861 int byte = 0;
3863 if (HOST_BITS_PER_WIDE_INT < BITS_PER_UNIT)
3864 abort ();
3866 if (TREE_CODE (type) == RECORD_TYPE)
3867 field = TYPE_FIELDS (type);
3869 if (TREE_CODE (type) == ARRAY_TYPE
3870 && TYPE_DOMAIN (type) != 0)
3871 min_index = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
3873 /* As LINK goes through the elements of the constant,
3874 FIELD goes through the structure fields, if the constant is a structure.
3875 if the constant is a union, then we override this,
3876 by getting the field from the TREE_LIST element.
3877 But the constant could also be an array. Then FIELD is zero.
3879 There is always a maximum of one element in the chain LINK for unions
3880 (even if the initializer in a source program incorrectly contains
3881 more one). */
3882 for (link = CONSTRUCTOR_ELTS (exp);
3883 link;
3884 link = TREE_CHAIN (link),
3885 field = field ? TREE_CHAIN (field) : 0)
3887 tree val = TREE_VALUE (link);
3888 tree index = 0;
3890 /* The element in a union constructor specifies the proper field
3891 or index. */
3892 if ((TREE_CODE (type) == RECORD_TYPE || TREE_CODE (type) == UNION_TYPE
3893 || TREE_CODE (type) == QUAL_UNION_TYPE)
3894 && TREE_PURPOSE (link) != 0)
3895 field = TREE_PURPOSE (link);
3897 else if (TREE_CODE (type) == ARRAY_TYPE)
3898 index = TREE_PURPOSE (link);
3900 #ifdef ASM_COMMENT_START
3901 if (field && flag_verbose_asm)
3902 fprintf (asm_out_file, "%s %s:\n",
3903 ASM_COMMENT_START,
3904 DECL_NAME (field)
3905 ? IDENTIFIER_POINTER (DECL_NAME (field))
3906 : "<anonymous>");
3907 #endif
3909 /* Eliminate the marker that makes a cast not be an lvalue. */
3910 if (val != 0)
3911 STRIP_NOPS (val);
3913 if (index && TREE_CODE (index) == RANGE_EXPR)
3915 unsigned HOST_WIDE_INT fieldsize
3916 = int_size_in_bytes (TREE_TYPE (type));
3917 HOST_WIDE_INT lo_index = tree_low_cst (TREE_OPERAND (index, 0), 0);
3918 HOST_WIDE_INT hi_index = tree_low_cst (TREE_OPERAND (index, 1), 0);
3919 HOST_WIDE_INT index;
3920 unsigned int align2 = min_align (align, fieldsize * BITS_PER_UNIT);
3922 for (index = lo_index; index <= hi_index; index++)
3924 /* Output the element's initial value. */
3925 if (val == 0)
3926 assemble_zeros (fieldsize);
3927 else
3928 output_constant (val, fieldsize, align2);
3930 /* Count its size. */
3931 total_bytes += fieldsize;
3934 else if (field == 0 || !DECL_BIT_FIELD (field))
3936 /* An element that is not a bit-field. */
3938 unsigned HOST_WIDE_INT fieldsize;
3939 /* Since this structure is static,
3940 we know the positions are constant. */
3941 HOST_WIDE_INT pos = field ? int_byte_position (field) : 0;
3942 unsigned int align2;
3944 if (index != 0)
3945 pos = (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (val)), 1)
3946 * (tree_low_cst (index, 0) - tree_low_cst (min_index, 0)));
3948 /* Output any buffered-up bit-fields preceding this element. */
3949 if (byte_buffer_in_use)
3951 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
3952 total_bytes++;
3953 byte_buffer_in_use = 0;
3956 /* Advance to offset of this element.
3957 Note no alignment needed in an array, since that is guaranteed
3958 if each element has the proper size. */
3959 if ((field != 0 || index != 0) && pos != total_bytes)
3961 assemble_zeros (pos - total_bytes);
3962 total_bytes = pos;
3965 /* Find the alignment of this element. */
3966 align2 = min_align (align, BITS_PER_UNIT * pos);
3968 /* Determine size this element should occupy. */
3969 if (field)
3971 fieldsize = 0;
3973 /* If this is an array with an unspecified upper bound,
3974 the initializer determines the size. */
3975 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
3976 but we cannot do this until the deprecated support for
3977 initializing zero-length array members is removed. */
3978 if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
3979 && TYPE_DOMAIN (TREE_TYPE (field))
3980 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field))))
3982 fieldsize = array_size_for_constructor (val);
3983 /* Given a non-empty initialization, this field had
3984 better be last. */
3985 if (fieldsize != 0 && TREE_CHAIN (field) != NULL_TREE)
3986 abort ();
3988 else if (DECL_SIZE_UNIT (field))
3990 /* ??? This can't be right. If the decl size overflows
3991 a host integer we will silently emit no data. */
3992 if (host_integerp (DECL_SIZE_UNIT (field), 1))
3993 fieldsize = tree_low_cst (DECL_SIZE_UNIT (field), 1);
3996 else
3997 fieldsize = int_size_in_bytes (TREE_TYPE (type));
3999 /* Output the element's initial value. */
4000 if (val == 0)
4001 assemble_zeros (fieldsize);
4002 else
4003 output_constant (val, fieldsize, align2);
4005 /* Count its size. */
4006 total_bytes += fieldsize;
4008 else if (val != 0 && TREE_CODE (val) != INTEGER_CST)
4009 error ("invalid initial value for member %qs",
4010 IDENTIFIER_POINTER (DECL_NAME (field)));
4011 else
4013 /* Element that is a bit-field. */
4015 HOST_WIDE_INT next_offset = int_bit_position (field);
4016 HOST_WIDE_INT end_offset
4017 = (next_offset + tree_low_cst (DECL_SIZE (field), 1));
4019 if (val == 0)
4020 val = integer_zero_node;
4022 /* If this field does not start in this (or, next) byte,
4023 skip some bytes. */
4024 if (next_offset / BITS_PER_UNIT != total_bytes)
4026 /* Output remnant of any bit field in previous bytes. */
4027 if (byte_buffer_in_use)
4029 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4030 total_bytes++;
4031 byte_buffer_in_use = 0;
4034 /* If still not at proper byte, advance to there. */
4035 if (next_offset / BITS_PER_UNIT != total_bytes)
4037 assemble_zeros (next_offset / BITS_PER_UNIT - total_bytes);
4038 total_bytes = next_offset / BITS_PER_UNIT;
4042 if (! byte_buffer_in_use)
4043 byte = 0;
4045 /* We must split the element into pieces that fall within
4046 separate bytes, and combine each byte with previous or
4047 following bit-fields. */
4049 /* next_offset is the offset n fbits from the beginning of
4050 the structure to the next bit of this element to be processed.
4051 end_offset is the offset of the first bit past the end of
4052 this element. */
4053 while (next_offset < end_offset)
4055 int this_time;
4056 int shift;
4057 HOST_WIDE_INT value;
4058 HOST_WIDE_INT next_byte = next_offset / BITS_PER_UNIT;
4059 HOST_WIDE_INT next_bit = next_offset % BITS_PER_UNIT;
4061 /* Advance from byte to byte
4062 within this element when necessary. */
4063 while (next_byte != total_bytes)
4065 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4066 total_bytes++;
4067 byte = 0;
4070 /* Number of bits we can process at once
4071 (all part of the same byte). */
4072 this_time = MIN (end_offset - next_offset,
4073 BITS_PER_UNIT - next_bit);
4074 if (BYTES_BIG_ENDIAN)
4076 /* On big-endian machine, take the most significant bits
4077 first (of the bits that are significant)
4078 and put them into bytes from the most significant end. */
4079 shift = end_offset - next_offset - this_time;
4081 /* Don't try to take a bunch of bits that cross
4082 the word boundary in the INTEGER_CST. We can
4083 only select bits from the LOW or HIGH part
4084 not from both. */
4085 if (shift < HOST_BITS_PER_WIDE_INT
4086 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4088 this_time = shift + this_time - HOST_BITS_PER_WIDE_INT;
4089 shift = HOST_BITS_PER_WIDE_INT;
4092 /* Now get the bits from the appropriate constant word. */
4093 if (shift < HOST_BITS_PER_WIDE_INT)
4094 value = TREE_INT_CST_LOW (val);
4095 else if (shift < 2 * HOST_BITS_PER_WIDE_INT)
4097 value = TREE_INT_CST_HIGH (val);
4098 shift -= HOST_BITS_PER_WIDE_INT;
4100 else
4101 abort ();
4103 /* Get the result. This works only when:
4104 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4105 byte |= (((value >> shift)
4106 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4107 << (BITS_PER_UNIT - this_time - next_bit));
4109 else
4111 /* On little-endian machines,
4112 take first the least significant bits of the value
4113 and pack them starting at the least significant
4114 bits of the bytes. */
4115 shift = next_offset - int_bit_position (field);
4117 /* Don't try to take a bunch of bits that cross
4118 the word boundary in the INTEGER_CST. We can
4119 only select bits from the LOW or HIGH part
4120 not from both. */
4121 if (shift < HOST_BITS_PER_WIDE_INT
4122 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4123 this_time = (HOST_BITS_PER_WIDE_INT - shift);
4125 /* Now get the bits from the appropriate constant word. */
4126 if (shift < HOST_BITS_PER_WIDE_INT)
4127 value = TREE_INT_CST_LOW (val);
4128 else if (shift < 2 * HOST_BITS_PER_WIDE_INT)
4130 value = TREE_INT_CST_HIGH (val);
4131 shift -= HOST_BITS_PER_WIDE_INT;
4133 else
4134 abort ();
4136 /* Get the result. This works only when:
4137 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4138 byte |= (((value >> shift)
4139 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4140 << next_bit);
4143 next_offset += this_time;
4144 byte_buffer_in_use = 1;
4149 if (byte_buffer_in_use)
4151 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4152 total_bytes++;
4155 if ((unsigned HOST_WIDE_INT)total_bytes < size)
4156 assemble_zeros (size - total_bytes);
4159 /* This TREE_LIST contains any weak symbol declarations waiting
4160 to be emitted. */
4161 static GTY(()) tree weak_decls;
4163 /* Mark DECL as weak. */
4165 static void
4166 mark_weak (tree decl)
4168 DECL_WEAK (decl) = 1;
4170 if (DECL_RTL_SET_P (decl)
4171 && MEM_P (DECL_RTL (decl))
4172 && XEXP (DECL_RTL (decl), 0)
4173 && GET_CODE (XEXP (DECL_RTL (decl), 0)) == SYMBOL_REF)
4174 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl), 0)) = 1;
4177 /* Merge weak status between NEWDECL and OLDDECL. */
4179 void
4180 merge_weak (tree newdecl, tree olddecl)
4182 if (DECL_WEAK (newdecl) == DECL_WEAK (olddecl))
4183 return;
4185 if (DECL_WEAK (newdecl))
4187 tree wd;
4189 /* NEWDECL is weak, but OLDDECL is not. */
4191 /* If we already output the OLDDECL, we're in trouble; we can't
4192 go back and make it weak. This error cannot caught in
4193 declare_weak because the NEWDECL and OLDDECL was not yet
4194 been merged; therefore, TREE_ASM_WRITTEN was not set. */
4195 if (TREE_ASM_WRITTEN (olddecl))
4196 error ("%Jweak declaration of %qD must precede definition",
4197 newdecl, newdecl);
4199 /* If we've already generated rtl referencing OLDDECL, we may
4200 have done so in a way that will not function properly with
4201 a weak symbol. */
4202 else if (TREE_USED (olddecl)
4203 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl)))
4204 warning ("%Jweak declaration of %qD after first use results "
4205 "in unspecified behavior", newdecl, newdecl);
4207 if (SUPPORTS_WEAK)
4209 /* We put the NEWDECL on the weak_decls list at some point.
4210 Replace it with the OLDDECL. */
4211 for (wd = weak_decls; wd; wd = TREE_CHAIN (wd))
4212 if (TREE_VALUE (wd) == newdecl)
4214 TREE_VALUE (wd) = olddecl;
4215 break;
4217 /* We may not find the entry on the list. If NEWDECL is a
4218 weak alias, then we will have already called
4219 globalize_decl to remove the entry; in that case, we do
4220 not need to do anything. */
4223 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
4224 mark_weak (olddecl);
4226 else
4227 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
4228 weak. Just update NEWDECL to indicate that it's weak too. */
4229 mark_weak (newdecl);
4232 /* Declare DECL to be a weak symbol. */
4234 void
4235 declare_weak (tree decl)
4237 if (! TREE_PUBLIC (decl))
4238 error ("%Jweak declaration of %qD must be public", decl, decl);
4239 else if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
4240 error ("%Jweak declaration of %qD must precede definition", decl, decl);
4241 else if (SUPPORTS_WEAK)
4243 if (! DECL_WEAK (decl))
4244 weak_decls = tree_cons (NULL, decl, weak_decls);
4246 else
4247 warning ("%Jweak declaration of %qD not supported", decl, decl);
4249 mark_weak (decl);
4252 /* Emit any pending weak declarations. */
4254 void
4255 weak_finish (void)
4257 tree t;
4259 for (t = weak_decls; t; t = TREE_CHAIN (t))
4261 tree decl = TREE_VALUE (t);
4262 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
4263 const char *const name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
4264 #endif
4266 if (! TREE_USED (decl))
4267 continue;
4269 #ifdef ASM_WEAKEN_DECL
4270 ASM_WEAKEN_DECL (asm_out_file, decl, name, NULL);
4271 #else
4272 #ifdef ASM_WEAKEN_LABEL
4273 ASM_WEAKEN_LABEL (asm_out_file, name);
4274 #else
4275 #ifdef ASM_OUTPUT_WEAK_ALIAS
4276 warning ("only weak aliases are supported in this configuration");
4277 return;
4278 #endif
4279 #endif
4280 #endif
4284 /* Emit the assembly bits to indicate that DECL is globally visible. */
4286 static void
4287 globalize_decl (tree decl)
4289 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
4291 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
4292 if (DECL_WEAK (decl))
4294 tree *p, t;
4296 #ifdef ASM_WEAKEN_DECL
4297 ASM_WEAKEN_DECL (asm_out_file, decl, name, 0);
4298 #else
4299 ASM_WEAKEN_LABEL (asm_out_file, name);
4300 #endif
4302 /* Remove this function from the pending weak list so that
4303 we do not emit multiple .weak directives for it. */
4304 for (p = &weak_decls; (t = *p) ; )
4306 if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
4307 *p = TREE_CHAIN (t);
4308 else
4309 p = &TREE_CHAIN (t);
4311 return;
4313 #elif defined(ASM_MAKE_LABEL_LINKONCE)
4314 if (DECL_ONE_ONLY (decl))
4315 ASM_MAKE_LABEL_LINKONCE (asm_out_file, name);
4316 #endif
4318 targetm.asm_out.globalize_label (asm_out_file, name);
4321 /* Emit an assembler directive to make the symbol for DECL an alias to
4322 the symbol for TARGET. */
4324 void
4325 assemble_alias (tree decl, tree target ATTRIBUTE_UNUSED)
4327 const char *name;
4329 /* We must force creation of DECL_RTL for debug info generation, even though
4330 we don't use it here. */
4331 make_decl_rtl (decl);
4333 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
4335 #ifdef ASM_OUTPUT_DEF
4336 /* Make name accessible from other files, if appropriate. */
4338 if (TREE_PUBLIC (decl))
4340 globalize_decl (decl);
4341 maybe_assemble_visibility (decl);
4344 #ifdef ASM_OUTPUT_DEF_FROM_DECLS
4345 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file, decl, target);
4346 #else
4347 ASM_OUTPUT_DEF (asm_out_file, name, IDENTIFIER_POINTER (target));
4348 #endif
4349 #else /* !ASM_OUTPUT_DEF */
4350 #if defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
4351 if (DECL_WEAK (decl))
4353 tree *p, t;
4354 #ifdef ASM_WEAKEN_DECL
4355 ASM_WEAKEN_DECL (asm_out_file, decl, name, IDENTIFIER_POINTER (target));
4356 #else
4357 ASM_OUTPUT_WEAK_ALIAS (asm_out_file, name, IDENTIFIER_POINTER (target));
4358 #endif
4359 /* Remove this function from the pending weak list so that
4360 we do not emit multiple .weak directives for it. */
4361 for (p = &weak_decls; (t = *p) ; )
4362 if (DECL_ASSEMBLER_NAME (decl)
4363 == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
4364 *p = TREE_CHAIN (t);
4365 else
4366 p = &TREE_CHAIN (t);
4368 else
4369 warning ("only weak aliases are supported in this configuration");
4371 #else
4372 warning ("alias definitions not supported in this configuration; ignored");
4373 #endif
4374 #endif
4376 TREE_USED (decl) = 1;
4377 TREE_ASM_WRITTEN (decl) = 1;
4378 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl)) = 1;
4381 /* Emit an assembler directive to set symbol for DECL visibility to
4382 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
4384 void
4385 default_assemble_visibility (tree decl, int vis)
4387 static const char * const visibility_types[] = {
4388 NULL, "internal", "hidden", "protected"
4391 const char *name, *type;
4393 name = (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
4394 type = visibility_types[vis];
4396 #ifdef HAVE_GAS_HIDDEN
4397 fprintf (asm_out_file, "\t.%s\t", type);
4398 assemble_name (asm_out_file, name);
4399 fprintf (asm_out_file, "\n");
4400 #else
4401 warning ("visibility attribute not supported in this configuration; ignored");
4402 #endif
4405 /* A helper function to call assemble_visibility when needed for a decl. */
4407 static void
4408 maybe_assemble_visibility (tree decl)
4410 enum symbol_visibility vis = DECL_VISIBILITY (decl);
4412 if (vis != VISIBILITY_DEFAULT)
4413 targetm.asm_out.visibility (decl, vis);
4416 /* Returns 1 if the target configuration supports defining public symbols
4417 so that one of them will be chosen at link time instead of generating a
4418 multiply-defined symbol error, whether through the use of weak symbols or
4419 a target-specific mechanism for having duplicates discarded. */
4422 supports_one_only (void)
4424 if (SUPPORTS_ONE_ONLY)
4425 return 1;
4426 return SUPPORTS_WEAK;
4429 /* Set up DECL as a public symbol that can be defined in multiple
4430 translation units without generating a linker error. */
4432 void
4433 make_decl_one_only (tree decl)
4435 if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != FUNCTION_DECL)
4436 abort ();
4438 TREE_PUBLIC (decl) = 1;
4440 if (SUPPORTS_ONE_ONLY)
4442 #ifdef MAKE_DECL_ONE_ONLY
4443 MAKE_DECL_ONE_ONLY (decl);
4444 #endif
4445 DECL_ONE_ONLY (decl) = 1;
4447 else if (TREE_CODE (decl) == VAR_DECL
4448 && (DECL_INITIAL (decl) == 0 || DECL_INITIAL (decl) == error_mark_node))
4449 DECL_COMMON (decl) = 1;
4450 else if (SUPPORTS_WEAK)
4451 DECL_WEAK (decl) = 1;
4452 else
4453 abort ();
4456 void
4457 init_varasm_once (void)
4459 in_named_htab = htab_create_ggc (31, in_named_entry_hash,
4460 in_named_entry_eq, NULL);
4461 const_desc_htab = htab_create_ggc (1009, const_desc_hash,
4462 const_desc_eq, NULL);
4464 const_alias_set = new_alias_set ();
4467 enum tls_model
4468 decl_tls_model (tree decl)
4470 enum tls_model kind;
4471 tree attr = lookup_attribute ("tls_model", DECL_ATTRIBUTES (decl));
4472 bool is_local;
4474 if (attr)
4476 attr = TREE_VALUE (TREE_VALUE (attr));
4477 if (TREE_CODE (attr) != STRING_CST)
4478 abort ();
4479 if (!strcmp (TREE_STRING_POINTER (attr), "local-exec"))
4480 kind = TLS_MODEL_LOCAL_EXEC;
4481 else if (!strcmp (TREE_STRING_POINTER (attr), "initial-exec"))
4482 kind = TLS_MODEL_INITIAL_EXEC;
4483 else if (!strcmp (TREE_STRING_POINTER (attr), "local-dynamic"))
4484 kind = optimize ? TLS_MODEL_LOCAL_DYNAMIC : TLS_MODEL_GLOBAL_DYNAMIC;
4485 else if (!strcmp (TREE_STRING_POINTER (attr), "global-dynamic"))
4486 kind = TLS_MODEL_GLOBAL_DYNAMIC;
4487 else
4488 abort ();
4489 return kind;
4492 is_local = targetm.binds_local_p (decl);
4493 if (!flag_pic)
4495 if (is_local)
4496 kind = TLS_MODEL_LOCAL_EXEC;
4497 else
4498 kind = TLS_MODEL_INITIAL_EXEC;
4500 /* Local dynamic is inefficient when we're not combining the
4501 parts of the address. */
4502 else if (optimize && is_local)
4503 kind = TLS_MODEL_LOCAL_DYNAMIC;
4504 else
4505 kind = TLS_MODEL_GLOBAL_DYNAMIC;
4506 if (kind < flag_tls_default)
4507 kind = flag_tls_default;
4509 return kind;
4512 /* Select a set of attributes for section NAME based on the properties
4513 of DECL and whether or not RELOC indicates that DECL's initializer
4514 might contain runtime relocations.
4516 We make the section read-only and executable for a function decl,
4517 read-only for a const data decl, and writable for a non-const data decl. */
4519 unsigned int
4520 default_section_type_flags (tree decl, const char *name, int reloc)
4522 return default_section_type_flags_1 (decl, name, reloc, flag_pic);
4525 unsigned int
4526 default_section_type_flags_1 (tree decl, const char *name, int reloc,
4527 int shlib)
4529 unsigned int flags;
4531 if (decl && TREE_CODE (decl) == FUNCTION_DECL)
4532 flags = SECTION_CODE;
4533 else if (decl && decl_readonly_section_1 (decl, reloc, shlib))
4534 flags = 0;
4535 else if (unlikely_text_section_name
4536 && strcmp (name, unlikely_text_section_name) == 0)
4537 flags = SECTION_CODE;
4538 else
4539 flags = SECTION_WRITE;
4541 if (decl && DECL_ONE_ONLY (decl))
4542 flags |= SECTION_LINKONCE;
4544 if (decl && TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL (decl))
4545 flags |= SECTION_TLS | SECTION_WRITE;
4547 if (strcmp (name, ".bss") == 0
4548 || strncmp (name, ".bss.", 5) == 0
4549 || strncmp (name, ".gnu.linkonce.b.", 16) == 0
4550 || strcmp (name, ".sbss") == 0
4551 || strncmp (name, ".sbss.", 6) == 0
4552 || strncmp (name, ".gnu.linkonce.sb.", 17) == 0
4553 || strcmp (name, ".tbss") == 0
4554 || strncmp (name, ".gnu.linkonce.tb.", 17) == 0)
4555 flags |= SECTION_BSS;
4557 if (strcmp (name, ".tdata") == 0
4558 || strcmp (name, ".tbss") == 0
4559 || strncmp (name, ".gnu.linkonce.td.", 17) == 0
4560 || strncmp (name, ".gnu.linkonce.tb.", 17) == 0)
4561 flags |= SECTION_TLS;
4563 /* These three sections have special ELF types. They are neither
4564 SHT_PROGBITS nor SHT_NOBITS, so when changing sections we don't
4565 want to print a section type (@progbits or @nobits). If someone
4566 is silly enough to emit code or TLS variables to one of these
4567 sections, then don't handle them specially. */
4568 if (!(flags & (SECTION_CODE | SECTION_BSS | SECTION_TLS))
4569 && (strcmp (name, ".init_array") == 0
4570 || strcmp (name, ".fini_array") == 0
4571 || strcmp (name, ".preinit_array") == 0))
4572 flags |= SECTION_NOTYPE;
4574 return flags;
4577 /* Output assembly to switch to section NAME with attribute FLAGS.
4578 Four variants for common object file formats. */
4580 void
4581 default_no_named_section (const char *name ATTRIBUTE_UNUSED,
4582 unsigned int flags ATTRIBUTE_UNUSED,
4583 tree decl ATTRIBUTE_UNUSED)
4585 /* Some object formats don't support named sections at all. The
4586 front-end should already have flagged this as an error. */
4587 abort ();
4590 void
4591 default_elf_asm_named_section (const char *name, unsigned int flags,
4592 tree decl ATTRIBUTE_UNUSED)
4594 char flagchars[10], *f = flagchars;
4596 /* If we have already declared this section, we can use an
4597 abbreviated form to switch back to it -- unless this section is
4598 part of a COMDAT groups, in which case GAS requires the full
4599 declaration every time. */
4600 if (!(HAVE_GAS_COMDAT_GROUP && (flags & SECTION_LINKONCE))
4601 && ! named_section_first_declaration (name))
4603 fprintf (asm_out_file, "\t.section\t%s\n", name);
4604 return;
4607 if (!(flags & SECTION_DEBUG))
4608 *f++ = 'a';
4609 if (flags & SECTION_WRITE)
4610 *f++ = 'w';
4611 if (flags & SECTION_CODE)
4612 *f++ = 'x';
4613 if (flags & SECTION_SMALL)
4614 *f++ = 's';
4615 if (flags & SECTION_MERGE)
4616 *f++ = 'M';
4617 if (flags & SECTION_STRINGS)
4618 *f++ = 'S';
4619 if (flags & SECTION_TLS)
4620 *f++ = 'T';
4621 if (HAVE_GAS_COMDAT_GROUP && (flags & SECTION_LINKONCE))
4622 *f++ = 'G';
4623 *f = '\0';
4625 fprintf (asm_out_file, "\t.section\t%s,\"%s\"", name, flagchars);
4627 if (!(flags & SECTION_NOTYPE))
4629 const char *type;
4630 const char *format;
4632 if (flags & SECTION_BSS)
4633 type = "nobits";
4634 else
4635 type = "progbits";
4637 format = ",@%s";
4638 #ifdef ASM_COMMENT_START
4639 /* On platforms that use "@" as the assembly comment character,
4640 use "%" instead. */
4641 if (strcmp (ASM_COMMENT_START, "@") == 0)
4642 format = ",%%%s";
4643 #endif
4644 fprintf (asm_out_file, format, type);
4646 if (flags & SECTION_ENTSIZE)
4647 fprintf (asm_out_file, ",%d", flags & SECTION_ENTSIZE);
4648 if (HAVE_GAS_COMDAT_GROUP && (flags & SECTION_LINKONCE))
4649 fprintf (asm_out_file, ",%s,comdat",
4650 lang_hooks.decls.comdat_group (decl));
4653 putc ('\n', asm_out_file);
4656 void
4657 default_coff_asm_named_section (const char *name, unsigned int flags,
4658 tree decl ATTRIBUTE_UNUSED)
4660 char flagchars[8], *f = flagchars;
4662 if (flags & SECTION_WRITE)
4663 *f++ = 'w';
4664 if (flags & SECTION_CODE)
4665 *f++ = 'x';
4666 *f = '\0';
4668 fprintf (asm_out_file, "\t.section\t%s,\"%s\"\n", name, flagchars);
4671 void
4672 default_pe_asm_named_section (const char *name, unsigned int flags,
4673 tree decl)
4675 default_coff_asm_named_section (name, flags, decl);
4677 if (flags & SECTION_LINKONCE)
4679 /* Functions may have been compiled at various levels of
4680 optimization so we can't use `same_size' here.
4681 Instead, have the linker pick one. */
4682 fprintf (asm_out_file, "\t.linkonce %s\n",
4683 (flags & SECTION_CODE ? "discard" : "same_size"));
4687 /* The lame default section selector. */
4689 void
4690 default_select_section (tree decl, int reloc,
4691 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
4693 bool readonly = false;
4695 if (DECL_P (decl))
4697 if (decl_readonly_section (decl, reloc))
4698 readonly = true;
4700 else if (TREE_CODE (decl) == CONSTRUCTOR)
4702 if (! ((flag_pic && reloc)
4703 || !TREE_READONLY (decl)
4704 || TREE_SIDE_EFFECTS (decl)
4705 || !TREE_CONSTANT (decl)))
4706 readonly = true;
4708 else if (TREE_CODE (decl) == STRING_CST)
4709 readonly = true;
4710 else if (! (flag_pic && reloc))
4711 readonly = true;
4713 if (readonly)
4714 readonly_data_section ();
4715 else
4716 data_section ();
4719 /* A helper function for default_elf_select_section and
4720 default_elf_unique_section. Categorizes the DECL. */
4722 enum section_category
4724 SECCAT_TEXT,
4726 SECCAT_RODATA,
4727 SECCAT_RODATA_MERGE_STR,
4728 SECCAT_RODATA_MERGE_STR_INIT,
4729 SECCAT_RODATA_MERGE_CONST,
4730 SECCAT_SRODATA,
4732 SECCAT_DATA,
4734 /* To optimize loading of shared programs, define following subsections
4735 of data section:
4736 _REL Contains data that has relocations, so they get grouped
4737 together and dynamic linker will visit fewer pages in memory.
4738 _RO Contains data that is otherwise read-only. This is useful
4739 with prelinking as most relocations won't be dynamically
4740 linked and thus stay read only.
4741 _LOCAL Marks data containing relocations only to local objects.
4742 These relocations will get fully resolved by prelinking. */
4743 SECCAT_DATA_REL,
4744 SECCAT_DATA_REL_LOCAL,
4745 SECCAT_DATA_REL_RO,
4746 SECCAT_DATA_REL_RO_LOCAL,
4748 SECCAT_SDATA,
4749 SECCAT_TDATA,
4751 SECCAT_BSS,
4752 SECCAT_SBSS,
4753 SECCAT_TBSS
4756 static enum section_category
4757 categorize_decl_for_section (tree, int, int);
4759 static enum section_category
4760 categorize_decl_for_section (tree decl, int reloc, int shlib)
4762 enum section_category ret;
4764 if (TREE_CODE (decl) == FUNCTION_DECL)
4765 return SECCAT_TEXT;
4766 else if (TREE_CODE (decl) == STRING_CST)
4768 if (flag_mudflap) /* or !flag_merge_constants */
4769 return SECCAT_RODATA;
4770 else
4771 return SECCAT_RODATA_MERGE_STR;
4773 else if (TREE_CODE (decl) == VAR_DECL)
4775 if (DECL_INITIAL (decl) == NULL
4776 || DECL_INITIAL (decl) == error_mark_node
4777 || (flag_zero_initialized_in_bss
4778 /* Leave constant zeroes in .rodata so they can be shared. */
4779 && !TREE_READONLY (decl)
4780 && initializer_zerop (DECL_INITIAL (decl))))
4781 ret = SECCAT_BSS;
4782 else if (! TREE_READONLY (decl)
4783 || TREE_SIDE_EFFECTS (decl)
4784 || ! TREE_CONSTANT (DECL_INITIAL (decl)))
4786 if (shlib && (reloc & 2))
4787 ret = SECCAT_DATA_REL;
4788 else if (shlib && reloc)
4789 ret = SECCAT_DATA_REL_LOCAL;
4790 else
4791 ret = SECCAT_DATA;
4793 else if (shlib && (reloc & 2))
4794 ret = SECCAT_DATA_REL_RO;
4795 else if (shlib && reloc)
4796 ret = SECCAT_DATA_REL_RO_LOCAL;
4797 else if (reloc || flag_merge_constants < 2)
4798 /* C and C++ don't allow different variables to share the same
4799 location. -fmerge-all-constants allows even that (at the
4800 expense of not conforming). */
4801 ret = SECCAT_RODATA;
4802 else if (TREE_CODE (DECL_INITIAL (decl)) == STRING_CST)
4803 ret = SECCAT_RODATA_MERGE_STR_INIT;
4804 else
4805 ret = SECCAT_RODATA_MERGE_CONST;
4807 else if (TREE_CODE (decl) == CONSTRUCTOR)
4809 if ((shlib && reloc)
4810 || TREE_SIDE_EFFECTS (decl)
4811 || ! TREE_CONSTANT (decl))
4812 ret = SECCAT_DATA;
4813 else
4814 ret = SECCAT_RODATA;
4816 else
4817 ret = SECCAT_RODATA;
4819 /* There are no read-only thread-local sections. */
4820 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL (decl))
4822 /* Note that this would be *just* SECCAT_BSS, except that there's
4823 no concept of a read-only thread-local-data section. */
4824 if (ret == SECCAT_BSS
4825 || (flag_zero_initialized_in_bss
4826 && initializer_zerop (DECL_INITIAL (decl))))
4827 ret = SECCAT_TBSS;
4828 else
4829 ret = SECCAT_TDATA;
4832 /* If the target uses small data sections, select it. */
4833 else if (targetm.in_small_data_p (decl))
4835 if (ret == SECCAT_BSS)
4836 ret = SECCAT_SBSS;
4837 else if (targetm.have_srodata_section && ret == SECCAT_RODATA)
4838 ret = SECCAT_SRODATA;
4839 else
4840 ret = SECCAT_SDATA;
4843 return ret;
4846 bool
4847 decl_readonly_section (tree decl, int reloc)
4849 return decl_readonly_section_1 (decl, reloc, flag_pic);
4852 bool
4853 decl_readonly_section_1 (tree decl, int reloc, int shlib)
4855 switch (categorize_decl_for_section (decl, reloc, shlib))
4857 case SECCAT_RODATA:
4858 case SECCAT_RODATA_MERGE_STR:
4859 case SECCAT_RODATA_MERGE_STR_INIT:
4860 case SECCAT_RODATA_MERGE_CONST:
4861 case SECCAT_SRODATA:
4862 return true;
4863 break;
4864 default:
4865 return false;
4866 break;
4870 /* Select a section based on the above categorization. */
4872 void
4873 default_elf_select_section (tree decl, int reloc,
4874 unsigned HOST_WIDE_INT align)
4876 default_elf_select_section_1 (decl, reloc, align, flag_pic);
4879 void
4880 default_elf_select_section_1 (tree decl, int reloc,
4881 unsigned HOST_WIDE_INT align, int shlib)
4883 switch (categorize_decl_for_section (decl, reloc, shlib))
4885 case SECCAT_TEXT:
4886 /* We're not supposed to be called on FUNCTION_DECLs. */
4887 abort ();
4888 case SECCAT_RODATA:
4889 readonly_data_section ();
4890 break;
4891 case SECCAT_RODATA_MERGE_STR:
4892 mergeable_string_section (decl, align, 0);
4893 break;
4894 case SECCAT_RODATA_MERGE_STR_INIT:
4895 mergeable_string_section (DECL_INITIAL (decl), align, 0);
4896 break;
4897 case SECCAT_RODATA_MERGE_CONST:
4898 mergeable_constant_section (DECL_MODE (decl), align, 0);
4899 break;
4900 case SECCAT_SRODATA:
4901 named_section (NULL_TREE, ".sdata2", reloc);
4902 break;
4903 case SECCAT_DATA:
4904 data_section ();
4905 break;
4906 case SECCAT_DATA_REL:
4907 named_section (NULL_TREE, ".data.rel", reloc);
4908 break;
4909 case SECCAT_DATA_REL_LOCAL:
4910 named_section (NULL_TREE, ".data.rel.local", reloc);
4911 break;
4912 case SECCAT_DATA_REL_RO:
4913 named_section (NULL_TREE, ".data.rel.ro", reloc);
4914 break;
4915 case SECCAT_DATA_REL_RO_LOCAL:
4916 named_section (NULL_TREE, ".data.rel.ro.local", reloc);
4917 break;
4918 case SECCAT_SDATA:
4919 named_section (NULL_TREE, ".sdata", reloc);
4920 break;
4921 case SECCAT_TDATA:
4922 named_section (NULL_TREE, ".tdata", reloc);
4923 break;
4924 case SECCAT_BSS:
4925 #ifdef BSS_SECTION_ASM_OP
4926 bss_section ();
4927 #else
4928 named_section (NULL_TREE, ".bss", reloc);
4929 #endif
4930 break;
4931 case SECCAT_SBSS:
4932 named_section (NULL_TREE, ".sbss", reloc);
4933 break;
4934 case SECCAT_TBSS:
4935 named_section (NULL_TREE, ".tbss", reloc);
4936 break;
4937 default:
4938 abort ();
4942 /* Construct a unique section name based on the decl name and the
4943 categorization performed above. */
4945 void
4946 default_unique_section (tree decl, int reloc)
4948 default_unique_section_1 (decl, reloc, flag_pic);
4951 void
4952 default_unique_section_1 (tree decl, int reloc, int shlib)
4954 bool one_only = DECL_ONE_ONLY (decl);
4955 const char *prefix, *name;
4956 size_t nlen, plen;
4957 char *string;
4959 switch (categorize_decl_for_section (decl, reloc, shlib))
4961 case SECCAT_TEXT:
4962 prefix = one_only ? ".gnu.linkonce.t." : ".text.";
4963 break;
4964 case SECCAT_RODATA:
4965 case SECCAT_RODATA_MERGE_STR:
4966 case SECCAT_RODATA_MERGE_STR_INIT:
4967 case SECCAT_RODATA_MERGE_CONST:
4968 prefix = one_only ? ".gnu.linkonce.r." : ".rodata.";
4969 break;
4970 case SECCAT_SRODATA:
4971 prefix = one_only ? ".gnu.linkonce.s2." : ".sdata2.";
4972 break;
4973 case SECCAT_DATA:
4974 case SECCAT_DATA_REL:
4975 case SECCAT_DATA_REL_LOCAL:
4976 case SECCAT_DATA_REL_RO:
4977 case SECCAT_DATA_REL_RO_LOCAL:
4978 prefix = one_only ? ".gnu.linkonce.d." : ".data.";
4979 break;
4980 case SECCAT_SDATA:
4981 prefix = one_only ? ".gnu.linkonce.s." : ".sdata.";
4982 break;
4983 case SECCAT_BSS:
4984 prefix = one_only ? ".gnu.linkonce.b." : ".bss.";
4985 break;
4986 case SECCAT_SBSS:
4987 prefix = one_only ? ".gnu.linkonce.sb." : ".sbss.";
4988 break;
4989 case SECCAT_TDATA:
4990 prefix = one_only ? ".gnu.linkonce.td." : ".tdata.";
4991 break;
4992 case SECCAT_TBSS:
4993 prefix = one_only ? ".gnu.linkonce.tb." : ".tbss.";
4994 break;
4995 default:
4996 abort ();
4998 plen = strlen (prefix);
5000 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5001 name = targetm.strip_name_encoding (name);
5002 nlen = strlen (name);
5004 string = alloca (nlen + plen + 1);
5005 memcpy (string, prefix, plen);
5006 memcpy (string + plen, name, nlen + 1);
5008 DECL_SECTION_NAME (decl) = build_string (nlen + plen, string);
5011 void
5012 default_select_rtx_section (enum machine_mode mode ATTRIBUTE_UNUSED,
5013 rtx x,
5014 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
5016 if (flag_pic)
5017 switch (GET_CODE (x))
5019 case CONST:
5020 case SYMBOL_REF:
5021 case LABEL_REF:
5022 data_section ();
5023 return;
5025 default:
5026 break;
5029 readonly_data_section ();
5032 void
5033 default_elf_select_rtx_section (enum machine_mode mode, rtx x,
5034 unsigned HOST_WIDE_INT align)
5036 /* ??? Handle small data here somehow. */
5038 if (flag_pic)
5039 switch (GET_CODE (x))
5041 case CONST:
5042 case SYMBOL_REF:
5043 named_section (NULL_TREE, ".data.rel.ro", 3);
5044 return;
5046 case LABEL_REF:
5047 named_section (NULL_TREE, ".data.rel.ro.local", 1);
5048 return;
5050 default:
5051 break;
5054 mergeable_constant_section (mode, align, 0);
5057 /* Set the generally applicable flags on the SYMBOL_REF for EXP. */
5059 void
5060 default_encode_section_info (tree decl, rtx rtl, int first ATTRIBUTE_UNUSED)
5062 rtx symbol;
5063 int flags;
5065 /* Careful not to prod global register variables. */
5066 if (!MEM_P (rtl))
5067 return;
5068 symbol = XEXP (rtl, 0);
5069 if (GET_CODE (symbol) != SYMBOL_REF)
5070 return;
5072 flags = 0;
5073 if (TREE_CODE (decl) == FUNCTION_DECL)
5074 flags |= SYMBOL_FLAG_FUNCTION;
5075 if (targetm.binds_local_p (decl))
5076 flags |= SYMBOL_FLAG_LOCAL;
5077 if (targetm.in_small_data_p (decl))
5078 flags |= SYMBOL_FLAG_SMALL;
5079 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL (decl))
5080 flags |= decl_tls_model (decl) << SYMBOL_FLAG_TLS_SHIFT;
5081 /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names? Without
5082 being PUBLIC, the thing *must* be defined in this translation unit.
5083 Prevent this buglet from being propagated into rtl code as well. */
5084 if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
5085 flags |= SYMBOL_FLAG_EXTERNAL;
5087 SYMBOL_REF_FLAGS (symbol) = flags;
5090 /* By default, we do nothing for encode_section_info, so we need not
5091 do anything but discard the '*' marker. */
5093 const char *
5094 default_strip_name_encoding (const char *str)
5096 return str + (*str == '*');
5099 /* Assume ELF-ish defaults, since that's pretty much the most liberal
5100 wrt cross-module name binding. */
5102 bool
5103 default_binds_local_p (tree exp)
5105 return default_binds_local_p_1 (exp, flag_shlib);
5108 bool
5109 default_binds_local_p_1 (tree exp, int shlib)
5111 bool local_p;
5113 /* A non-decl is an entry in the constant pool. */
5114 if (!DECL_P (exp))
5115 local_p = true;
5116 /* Static variables are always local. */
5117 else if (! TREE_PUBLIC (exp))
5118 local_p = true;
5119 /* A variable is local if the user explicitly tells us so. */
5120 else if (DECL_VISIBILITY_SPECIFIED (exp) && DECL_VISIBILITY (exp) != VISIBILITY_DEFAULT)
5121 local_p = true;
5122 /* Otherwise, variables defined outside this object may not be local. */
5123 else if (DECL_EXTERNAL (exp))
5124 local_p = false;
5125 /* Linkonce and weak data are never local. */
5126 else if (DECL_ONE_ONLY (exp) || DECL_WEAK (exp))
5127 local_p = false;
5128 /* If none of the above and visibility is not default, make local. */
5129 else if (DECL_VISIBILITY (exp) != VISIBILITY_DEFAULT)
5130 local_p = true;
5131 /* If PIC, then assume that any global name can be overridden by
5132 symbols resolved from other modules. */
5133 else if (shlib)
5134 local_p = false;
5135 /* Uninitialized COMMON variable may be unified with symbols
5136 resolved from other modules. */
5137 else if (DECL_COMMON (exp)
5138 && (DECL_INITIAL (exp) == NULL
5139 || DECL_INITIAL (exp) == error_mark_node))
5140 local_p = false;
5141 /* Otherwise we're left with initialized (or non-common) global data
5142 which is of necessity defined locally. */
5143 else
5144 local_p = true;
5146 return local_p;
5149 /* Determine whether or not a pointer mode is valid. Assume defaults
5150 of ptr_mode or Pmode - can be overridden. */
5151 bool
5152 default_valid_pointer_mode (enum machine_mode mode)
5154 return (mode == ptr_mode || mode == Pmode);
5157 /* Default function to output code that will globalize a label. A
5158 target must define GLOBAL_ASM_OP or provide it's own function to
5159 globalize a label. */
5160 #ifdef GLOBAL_ASM_OP
5161 void
5162 default_globalize_label (FILE * stream, const char *name)
5164 fputs (GLOBAL_ASM_OP, stream);
5165 assemble_name (stream, name);
5166 putc ('\n', stream);
5168 #endif /* GLOBAL_ASM_OP */
5170 /* Default function to output a label for unwind information. The
5171 default is to do nothing. A target that needs nonlocal labels for
5172 unwind information must provide its own function to do this. */
5173 void
5174 default_emit_unwind_label (FILE * stream ATTRIBUTE_UNUSED,
5175 tree decl ATTRIBUTE_UNUSED,
5176 int for_eh ATTRIBUTE_UNUSED,
5177 int empty ATTRIBUTE_UNUSED)
5181 /* This is how to output an internal numbered label where PREFIX is
5182 the class of label and LABELNO is the number within the class. */
5184 void
5185 default_internal_label (FILE *stream, const char *prefix,
5186 unsigned long labelno)
5188 char *const buf = alloca (40 + strlen (prefix));
5189 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, labelno);
5190 ASM_OUTPUT_LABEL (stream, buf);
5193 /* This is the default behavior at the beginning of a file. It's
5194 controlled by two other target-hook toggles. */
5195 void
5196 default_file_start (void)
5198 if (targetm.file_start_app_off && !flag_verbose_asm)
5199 fputs (ASM_APP_OFF, asm_out_file);
5201 if (targetm.file_start_file_directive)
5202 output_file_directive (asm_out_file, main_input_filename);
5205 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
5206 which emits a special section directive used to indicate whether or
5207 not this object file needs an executable stack. This is primarily
5208 a GNU extension to ELF but could be used on other targets. */
5210 int trampolines_created;
5212 void
5213 file_end_indicate_exec_stack (void)
5215 unsigned int flags = SECTION_DEBUG;
5216 if (trampolines_created)
5217 flags |= SECTION_CODE;
5219 named_section_flags (".note.GNU-stack", flags);
5222 #include "gt-varasm.h"