* final.c (final_scan_insn): Run FINAL_PRESCAN_INSNS on asm insns
[official-gcc.git] / gcc / varasm.c
blob561dc4ace229efd97b636f3d2ee963d5938c71c4
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 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 "cgraph.h"
53 #ifdef XCOFF_DEBUGGING_INFO
54 #include "xcoffout.h" /* Needed for external data
55 declarations for e.g. AIX 4.x. */
56 #endif
58 #ifndef TRAMPOLINE_ALIGNMENT
59 #define TRAMPOLINE_ALIGNMENT FUNCTION_BOUNDARY
60 #endif
62 #ifndef ASM_STABS_OP
63 #define ASM_STABS_OP "\t.stabs\t"
64 #endif
66 /* The (assembler) name of the first globally-visible object output. */
67 const char *first_global_object_name;
68 const char *weak_global_object_name;
70 struct addr_const;
71 struct constant_descriptor_rtx;
72 struct rtx_const;
73 struct pool_constant;
75 #define MAX_RTX_HASH_TABLE 61
77 struct varasm_status GTY(())
79 /* Hash facility for making memory-constants
80 from constant rtl-expressions. It is used on RISC machines
81 where immediate integer arguments and constant addresses are restricted
82 so that such constants must be stored in memory.
84 This pool of constants is reinitialized for each function
85 so each function gets its own constants-pool that comes right before
86 it. */
87 struct constant_descriptor_rtx ** GTY ((length ("MAX_RTX_HASH_TABLE")))
88 x_const_rtx_hash_table;
89 struct pool_constant ** GTY ((length ("MAX_RTX_HASH_TABLE")))
90 x_const_rtx_sym_hash_table;
92 /* Pointers to first and last constant in pool. */
93 struct pool_constant *x_first_pool;
94 struct pool_constant *x_last_pool;
96 /* Current offset in constant pool (does not include any machine-specific
97 header). */
98 HOST_WIDE_INT x_pool_offset;
100 /* Number of tree-constants deferred during the expansion of this
101 function. */
102 unsigned int deferred_constants;
105 #define const_rtx_hash_table (cfun->varasm->x_const_rtx_hash_table)
106 #define const_rtx_sym_hash_table (cfun->varasm->x_const_rtx_sym_hash_table)
107 #define first_pool (cfun->varasm->x_first_pool)
108 #define last_pool (cfun->varasm->x_last_pool)
109 #define pool_offset (cfun->varasm->x_pool_offset)
110 #define n_deferred_constants (cfun->varasm->deferred_constants)
112 /* Number for making the label on the next
113 constant that is stored in memory. */
115 static GTY(()) int const_labelno;
117 /* Carry information from ASM_DECLARE_OBJECT_NAME
118 to ASM_FINISH_DECLARE_OBJECT. */
120 int size_directive_output;
122 /* The last decl for which assemble_variable was called,
123 if it did ASM_DECLARE_OBJECT_NAME.
124 If the last call to assemble_variable didn't do that,
125 this holds 0. */
127 tree last_assemble_variable_decl;
129 /* RTX_UNCHANGING_P in a MEM can mean it is stored into, for initialization.
130 So giving constant the alias set for the type will allow such
131 initializations to appear to conflict with the load of the constant. We
132 avoid this by giving all constants an alias set for just constants.
133 Since there will be no stores to that alias set, nothing will ever
134 conflict with them. */
136 static HOST_WIDE_INT const_alias_set;
138 static const char *strip_reg_name (const char *);
139 static int contains_pointers_p (tree);
140 static void decode_addr_const (tree, struct addr_const *);
141 static hashval_t const_desc_hash (const void *);
142 static int const_desc_eq (const void *, const void *);
143 static hashval_t const_hash_1 (const tree);
144 static int compare_constant (const tree, const tree);
145 static tree copy_constant (tree);
146 static void output_constant_def_contents (rtx);
147 static void decode_rtx_const (enum machine_mode, rtx, struct rtx_const *);
148 static unsigned int const_hash_rtx (enum machine_mode, rtx);
149 static int compare_constant_rtx (enum machine_mode, rtx,
150 struct constant_descriptor_rtx *);
151 static struct constant_descriptor_rtx * record_constant_rtx
152 (enum machine_mode, rtx);
153 static struct pool_constant *find_pool_constant (struct function *, rtx);
154 static void mark_constant_pool (void);
155 static void mark_constants (rtx);
156 static int mark_constant (rtx *current_rtx, void *data);
157 static void output_addressed_constants (tree);
158 static unsigned HOST_WIDE_INT array_size_for_constructor (tree);
159 static unsigned min_align (unsigned, unsigned);
160 static void output_constructor (tree, unsigned HOST_WIDE_INT, unsigned int);
161 static void globalize_decl (tree);
162 static void maybe_assemble_visibility (tree);
163 static int in_named_entry_eq (const void *, const void *);
164 static hashval_t in_named_entry_hash (const void *);
165 #ifdef ASM_OUTPUT_BSS
166 static void asm_output_bss (FILE *, tree, const char *,
167 unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT);
168 #endif
169 #ifdef BSS_SECTION_ASM_OP
170 #ifdef ASM_OUTPUT_ALIGNED_BSS
171 static void asm_output_aligned_bss (FILE *, tree, const char *,
172 unsigned HOST_WIDE_INT, int)
173 ATTRIBUTE_UNUSED;
174 #endif
175 #endif /* BSS_SECTION_ASM_OP */
176 static bool asm_emit_uninitialised (tree, const char*,
177 unsigned HOST_WIDE_INT,
178 unsigned HOST_WIDE_INT);
179 static void mark_weak (tree);
181 enum in_section { no_section, in_text, in_data, in_named
182 #ifdef BSS_SECTION_ASM_OP
183 , in_bss
184 #endif
185 #ifdef CTORS_SECTION_ASM_OP
186 , in_ctors
187 #endif
188 #ifdef DTORS_SECTION_ASM_OP
189 , in_dtors
190 #endif
191 #ifdef READONLY_DATA_SECTION_ASM_OP
192 , in_readonly_data
193 #endif
194 #ifdef EXTRA_SECTIONS
195 , EXTRA_SECTIONS
196 #endif
198 static GTY(()) enum in_section in_section = no_section;
200 /* Return a nonzero value if DECL has a section attribute. */
201 #ifndef IN_NAMED_SECTION
202 #define IN_NAMED_SECTION(DECL) \
203 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
204 && DECL_SECTION_NAME (DECL) != NULL_TREE)
205 #endif
207 /* Text of section name when in_section == in_named. */
208 static GTY(()) const char *in_named_name;
210 /* Hash table of flags that have been used for a particular named section. */
212 struct in_named_entry GTY(())
214 const char *name;
215 unsigned int flags;
216 bool declared;
219 static GTY((param_is (struct in_named_entry))) htab_t in_named_htab;
221 /* Define functions like text_section for any extra sections. */
222 #ifdef EXTRA_SECTION_FUNCTIONS
223 EXTRA_SECTION_FUNCTIONS
224 #endif
226 /* Tell assembler to switch to text section. */
228 void
229 text_section (void)
231 if (in_section != in_text)
233 in_section = in_text;
234 #ifdef TEXT_SECTION
235 TEXT_SECTION ();
236 #else
237 fprintf (asm_out_file, "%s\n", TEXT_SECTION_ASM_OP);
238 #endif
242 /* Tell assembler to switch to data section. */
244 void
245 data_section (void)
247 if (in_section != in_data)
249 in_section = in_data;
250 if (flag_shared_data)
252 #ifdef SHARED_SECTION_ASM_OP
253 fprintf (asm_out_file, "%s\n", SHARED_SECTION_ASM_OP);
254 #else
255 fprintf (asm_out_file, "%s\n", DATA_SECTION_ASM_OP);
256 #endif
258 else
259 fprintf (asm_out_file, "%s\n", DATA_SECTION_ASM_OP);
263 /* Tell assembler to switch to read-only data section. This is normally
264 the text section. */
266 void
267 readonly_data_section (void)
269 #ifdef READONLY_DATA_SECTION
270 READONLY_DATA_SECTION (); /* Note this can call data_section. */
271 #else
272 #ifdef READONLY_DATA_SECTION_ASM_OP
273 if (in_section != in_readonly_data)
275 in_section = in_readonly_data;
276 fputs (READONLY_DATA_SECTION_ASM_OP, asm_out_file);
277 fputc ('\n', asm_out_file);
279 #else
280 text_section ();
281 #endif
282 #endif
285 /* Determine if we're in the text section. */
288 in_text_section (void)
290 return in_section == in_text;
293 /* Determine if we're in the data section. */
296 in_data_section (void)
298 return in_section == in_data;
301 /* Helper routines for maintaining in_named_htab. */
303 static int
304 in_named_entry_eq (const void *p1, const void *p2)
306 const struct in_named_entry *old = p1;
307 const char *new = p2;
309 return strcmp (old->name, new) == 0;
312 static hashval_t
313 in_named_entry_hash (const void *p)
315 const struct in_named_entry *old = p;
316 return htab_hash_string (old->name);
319 /* If SECTION has been seen before as a named section, return the flags
320 that were used. Otherwise, return 0. Note, that 0 is a perfectly valid
321 set of flags for a section to have, so 0 does not mean that the section
322 has not been seen. */
324 unsigned int
325 get_named_section_flags (const char *section)
327 struct in_named_entry **slot;
329 slot = (struct in_named_entry **)
330 htab_find_slot_with_hash (in_named_htab, section,
331 htab_hash_string (section), NO_INSERT);
333 return slot ? (*slot)->flags : 0;
336 /* Returns true if the section has been declared before. Sets internal
337 flag on this section in in_named_hash so subsequent calls on this
338 section will return false. */
340 bool
341 named_section_first_declaration (const char *name)
343 struct in_named_entry **slot;
345 slot = (struct in_named_entry **)
346 htab_find_slot_with_hash (in_named_htab, name,
347 htab_hash_string (name), NO_INSERT);
348 if (! (*slot)->declared)
350 (*slot)->declared = true;
351 return true;
353 else
355 return false;
360 /* Record FLAGS for SECTION. If SECTION was previously recorded with a
361 different set of flags, return false. */
363 bool
364 set_named_section_flags (const char *section, unsigned int flags)
366 struct in_named_entry **slot, *entry;
368 slot = (struct in_named_entry **)
369 htab_find_slot_with_hash (in_named_htab, section,
370 htab_hash_string (section), INSERT);
371 entry = *slot;
373 if (!entry)
375 entry = ggc_alloc (sizeof (*entry));
376 *slot = entry;
377 entry->name = ggc_strdup (section);
378 entry->flags = flags;
379 entry->declared = false;
381 else if (entry->flags != flags)
382 return false;
384 return true;
387 /* Tell assembler to change to section NAME with attributes FLAGS. */
389 void
390 named_section_flags (const char *name, unsigned int flags)
392 if (in_section != in_named || strcmp (name, in_named_name) != 0)
394 if (! set_named_section_flags (name, flags))
395 abort ();
397 (*targetm.asm_out.named_section) (name, flags);
399 if (flags & SECTION_FORGET)
400 in_section = no_section;
401 else
403 in_named_name = ggc_strdup (name);
404 in_section = in_named;
409 /* Tell assembler to change to section NAME for DECL.
410 If DECL is NULL, just switch to section NAME.
411 If NAME is NULL, get the name from DECL.
412 If RELOC is 1, the initializer for DECL contains relocs. */
414 void
415 named_section (tree decl, const char *name, int reloc)
417 unsigned int flags;
419 if (decl != NULL_TREE && !DECL_P (decl))
420 abort ();
421 if (name == NULL)
422 name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
424 flags = (* targetm.section_type_flags) (decl, name, reloc);
426 /* Sanity check user variables for flag changes. Non-user
427 section flag changes will abort in named_section_flags.
428 However, don't complain if SECTION_OVERRIDE is set.
429 We trust that the setter knows that it is safe to ignore
430 the default flags for this decl. */
431 if (decl && ! set_named_section_flags (name, flags))
433 flags = get_named_section_flags (name);
434 if ((flags & SECTION_OVERRIDE) == 0)
435 error ("%J%D causes a section type conflict", decl, decl);
438 named_section_flags (name, flags);
441 /* If required, set DECL_SECTION_NAME to a unique name. */
443 void
444 resolve_unique_section (tree decl, int reloc ATTRIBUTE_UNUSED,
445 int flag_function_or_data_sections)
447 if (DECL_SECTION_NAME (decl) == NULL_TREE
448 && targetm.have_named_sections
449 && (flag_function_or_data_sections
450 || DECL_ONE_ONLY (decl)))
451 (*targetm.asm_out.unique_section) (decl, reloc);
454 #ifdef BSS_SECTION_ASM_OP
456 /* Tell the assembler to switch to the bss section. */
458 void
459 bss_section (void)
461 if (in_section != in_bss)
463 #ifdef SHARED_BSS_SECTION_ASM_OP
464 if (flag_shared_data)
465 fprintf (asm_out_file, "%s\n", SHARED_BSS_SECTION_ASM_OP);
466 else
467 #endif
468 fprintf (asm_out_file, "%s\n", BSS_SECTION_ASM_OP);
470 in_section = in_bss;
474 #ifdef ASM_OUTPUT_BSS
476 /* Utility function for ASM_OUTPUT_BSS for targets to use if
477 they don't support alignments in .bss.
478 ??? It is believed that this function will work in most cases so such
479 support is localized here. */
481 static void
482 asm_output_bss (FILE *file, tree decl ATTRIBUTE_UNUSED,
483 const char *name,
484 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
485 unsigned HOST_WIDE_INT rounded)
487 (*targetm.asm_out.globalize_label) (file, name);
488 bss_section ();
489 #ifdef ASM_DECLARE_OBJECT_NAME
490 last_assemble_variable_decl = decl;
491 ASM_DECLARE_OBJECT_NAME (file, name, decl);
492 #else
493 /* Standard thing is just output label for the object. */
494 ASM_OUTPUT_LABEL (file, name);
495 #endif /* ASM_DECLARE_OBJECT_NAME */
496 ASM_OUTPUT_SKIP (file, rounded ? rounded : 1);
499 #endif
501 #ifdef ASM_OUTPUT_ALIGNED_BSS
503 /* Utility function for targets to use in implementing
504 ASM_OUTPUT_ALIGNED_BSS.
505 ??? It is believed that this function will work in most cases so such
506 support is localized here. */
508 static void
509 asm_output_aligned_bss (FILE *file, tree decl ATTRIBUTE_UNUSED,
510 const char *name, unsigned HOST_WIDE_INT size,
511 int align)
513 bss_section ();
514 ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
515 #ifdef ASM_DECLARE_OBJECT_NAME
516 last_assemble_variable_decl = decl;
517 ASM_DECLARE_OBJECT_NAME (file, name, decl);
518 #else
519 /* Standard thing is just output label for the object. */
520 ASM_OUTPUT_LABEL (file, name);
521 #endif /* ASM_DECLARE_OBJECT_NAME */
522 ASM_OUTPUT_SKIP (file, size ? size : 1);
525 #endif
527 #endif /* BSS_SECTION_ASM_OP */
529 /* Switch to the section for function DECL.
531 If DECL is NULL_TREE, switch to the text section.
532 ??? It's not clear that we will ever be passed NULL_TREE, but it's
533 safer to handle it. */
535 void
536 function_section (tree decl)
538 if (decl != NULL_TREE
539 && DECL_SECTION_NAME (decl) != NULL_TREE)
540 named_section (decl, (char *) 0, 0);
541 else
542 text_section ();
545 /* Switch to section for variable DECL. RELOC is the same as the
546 argument to SELECT_SECTION. */
548 void
549 variable_section (tree decl, int reloc)
551 if (IN_NAMED_SECTION (decl))
552 named_section (decl, NULL, reloc);
553 else
554 (*targetm.asm_out.select_section) (decl, reloc, DECL_ALIGN (decl));
557 /* Tell assembler to switch to the section for string merging. */
559 void
560 mergeable_string_section (tree decl ATTRIBUTE_UNUSED,
561 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
562 unsigned int flags ATTRIBUTE_UNUSED)
564 if (HAVE_GAS_SHF_MERGE && flag_merge_constants
565 && TREE_CODE (decl) == STRING_CST
566 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
567 && align <= 256
568 && TREE_STRING_LENGTH (decl) >= int_size_in_bytes (TREE_TYPE (decl)))
570 enum machine_mode mode;
571 unsigned int modesize;
572 const char *str;
573 int i, j, len, unit;
574 char name[30];
576 mode = TYPE_MODE (TREE_TYPE (TREE_TYPE (decl)));
577 modesize = GET_MODE_BITSIZE (mode);
578 if (modesize >= 8 && modesize <= 256
579 && (modesize & (modesize - 1)) == 0)
581 if (align < modesize)
582 align = modesize;
584 str = TREE_STRING_POINTER (decl);
585 len = TREE_STRING_LENGTH (decl);
586 unit = GET_MODE_SIZE (mode);
588 /* Check for embedded NUL characters. */
589 for (i = 0; i < len; i += unit)
591 for (j = 0; j < unit; j++)
592 if (str[i + j] != '\0')
593 break;
594 if (j == unit)
595 break;
597 if (i == len - unit)
599 sprintf (name, ".rodata.str%d.%d", modesize / 8,
600 (int) (align / 8));
601 flags |= (modesize / 8) | SECTION_MERGE | SECTION_STRINGS;
602 if (!i && modesize < align)
604 /* A "" string with requested alignment greater than
605 character size might cause a problem:
606 if some other string required even bigger
607 alignment than "", then linker might think the
608 "" is just part of padding after some other string
609 and not put it into the hash table initially.
610 But this means "" could have smaller alignment
611 than requested. */
612 #ifdef ASM_OUTPUT_SECTION_START
613 named_section_flags (name, flags);
614 ASM_OUTPUT_SECTION_START (asm_out_file);
615 #else
616 readonly_data_section ();
617 #endif
618 return;
621 named_section_flags (name, flags);
622 return;
627 readonly_data_section ();
630 /* Tell assembler to switch to the section for constant merging. */
632 void
633 mergeable_constant_section (enum machine_mode mode ATTRIBUTE_UNUSED,
634 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
635 unsigned int flags ATTRIBUTE_UNUSED)
637 unsigned int modesize = GET_MODE_BITSIZE (mode);
639 if (HAVE_GAS_SHF_MERGE && flag_merge_constants
640 && mode != VOIDmode
641 && mode != BLKmode
642 && modesize <= align
643 && align >= 8
644 && align <= 256
645 && (align & (align - 1)) == 0)
647 char name[24];
649 sprintf (name, ".rodata.cst%d", (int) (align / 8));
650 flags |= (align / 8) | SECTION_MERGE;
651 named_section_flags (name, flags);
652 return;
655 readonly_data_section ();
658 /* Given NAME, a putative register name, discard any customary prefixes. */
660 static const char *
661 strip_reg_name (const char *name)
663 #ifdef REGISTER_PREFIX
664 if (!strncmp (name, REGISTER_PREFIX, strlen (REGISTER_PREFIX)))
665 name += strlen (REGISTER_PREFIX);
666 #endif
667 if (name[0] == '%' || name[0] == '#')
668 name++;
669 return name;
672 /* Decode an `asm' spec for a declaration as a register name.
673 Return the register number, or -1 if nothing specified,
674 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
675 or -3 if ASMSPEC is `cc' and is not recognized,
676 or -4 if ASMSPEC is `memory' and is not recognized.
677 Accept an exact spelling or a decimal number.
678 Prefixes such as % are optional. */
681 decode_reg_name (const char *asmspec)
683 if (asmspec != 0)
685 int i;
687 /* Get rid of confusing prefixes. */
688 asmspec = strip_reg_name (asmspec);
690 /* Allow a decimal number as a "register name". */
691 for (i = strlen (asmspec) - 1; i >= 0; i--)
692 if (! ISDIGIT (asmspec[i]))
693 break;
694 if (asmspec[0] != 0 && i < 0)
696 i = atoi (asmspec);
697 if (i < FIRST_PSEUDO_REGISTER && i >= 0)
698 return i;
699 else
700 return -2;
703 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
704 if (reg_names[i][0]
705 && ! strcmp (asmspec, strip_reg_name (reg_names[i])))
706 return i;
708 #ifdef ADDITIONAL_REGISTER_NAMES
710 static const struct { const char *const name; const int number; } table[]
711 = ADDITIONAL_REGISTER_NAMES;
713 for (i = 0; i < (int) ARRAY_SIZE (table); i++)
714 if (! strcmp (asmspec, table[i].name))
715 return table[i].number;
717 #endif /* ADDITIONAL_REGISTER_NAMES */
719 if (!strcmp (asmspec, "memory"))
720 return -4;
722 if (!strcmp (asmspec, "cc"))
723 return -3;
725 return -2;
728 return -1;
731 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
732 have static storage duration. In other words, it should not be an
733 automatic variable, including PARM_DECLs.
735 There is, however, one exception: this function handles variables
736 explicitly placed in a particular register by the user.
738 ASMSPEC, if not 0, is the string which the user specified as the
739 assembler symbol name.
741 This is never called for PARM_DECL nodes. */
743 void
744 make_decl_rtl (tree decl, const char *asmspec)
746 const char *name = 0;
747 int reg_number;
748 rtx x;
750 /* Check that we are not being given an automatic variable. */
751 /* A weak alias has TREE_PUBLIC set but not the other bits. */
752 if (TREE_CODE (decl) == PARM_DECL
753 || TREE_CODE (decl) == RESULT_DECL
754 || (TREE_CODE (decl) == VAR_DECL
755 && !TREE_STATIC (decl)
756 && !TREE_PUBLIC (decl)
757 && !DECL_EXTERNAL (decl)
758 && !DECL_REGISTER (decl)))
759 abort ();
760 /* And that we were not given a type or a label. */
761 else if (TREE_CODE (decl) == TYPE_DECL
762 || TREE_CODE (decl) == LABEL_DECL)
763 abort ();
765 /* For a duplicate declaration, we can be called twice on the
766 same DECL node. Don't discard the RTL already made. */
767 if (DECL_RTL_SET_P (decl))
769 /* If the old RTL had the wrong mode, fix the mode. */
770 if (GET_MODE (DECL_RTL (decl)) != DECL_MODE (decl))
771 SET_DECL_RTL (decl, adjust_address_nv (DECL_RTL (decl),
772 DECL_MODE (decl), 0));
774 /* ??? Another way to do this would be to maintain a hashed
775 table of such critters. Instead of adding stuff to a DECL
776 to give certain attributes to it, we could use an external
777 hash map from DECL to set of attributes. */
779 /* Let the target reassign the RTL if it wants.
780 This is necessary, for example, when one machine specific
781 decl attribute overrides another. */
782 (* targetm.encode_section_info) (decl, DECL_RTL (decl), false);
783 return;
786 reg_number = decode_reg_name (asmspec);
787 if (reg_number == -2)
789 /* ASMSPEC is given, and not the name of a register. Mark the
790 name with a star so assemble_name won't munge it. */
791 char *starred = alloca (strlen (asmspec) + 2);
792 starred[0] = '*';
793 strcpy (starred + 1, asmspec);
794 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (starred));
797 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
799 if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
801 /* First detect errors in declaring global registers. */
802 if (reg_number == -1)
803 error ("%Jregister name not specified for '%D'", decl, decl);
804 else if (reg_number < 0)
805 error ("%Jinvalid register name for '%D'", decl, decl);
806 else if (TYPE_MODE (TREE_TYPE (decl)) == BLKmode)
807 error ("%Jdata type of '%D' isn't suitable for a register",
808 decl, decl);
809 else if (! HARD_REGNO_MODE_OK (reg_number, TYPE_MODE (TREE_TYPE (decl))))
810 error ("%Jregister specified for '%D' isn't suitable for data type",
811 decl, decl);
812 /* Now handle properly declared static register variables. */
813 else
815 int nregs;
817 if (DECL_INITIAL (decl) != 0 && TREE_STATIC (decl))
819 DECL_INITIAL (decl) = 0;
820 error ("global register variable has initial value");
822 if (TREE_THIS_VOLATILE (decl))
823 warning ("volatile register variables don't work as you might wish");
825 /* If the user specified one of the eliminables registers here,
826 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
827 confused with that register and be eliminated. This usage is
828 somewhat suspect... */
830 SET_DECL_RTL (decl, gen_rtx_raw_REG (DECL_MODE (decl), reg_number));
831 ORIGINAL_REGNO (DECL_RTL (decl)) = reg_number;
832 REG_USERVAR_P (DECL_RTL (decl)) = 1;
834 if (TREE_STATIC (decl))
836 /* Make this register global, so not usable for anything
837 else. */
838 #ifdef ASM_DECLARE_REGISTER_GLOBAL
839 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file, decl, reg_number, name);
840 #endif
841 nregs = HARD_REGNO_NREGS (reg_number, DECL_MODE (decl));
842 while (nregs > 0)
843 globalize_reg (reg_number + --nregs);
846 /* As a register variable, it has no section. */
847 return;
851 /* Now handle ordinary static variables and functions (in memory).
852 Also handle vars declared register invalidly. */
854 if (reg_number >= 0 || reg_number == -3)
855 error ("%Jregister name given for non-register variable '%D'", decl, decl);
857 /* Specifying a section attribute on a variable forces it into a
858 non-.bss section, and thus it cannot be common. */
859 if (TREE_CODE (decl) == VAR_DECL
860 && DECL_SECTION_NAME (decl) != NULL_TREE
861 && DECL_INITIAL (decl) == NULL_TREE
862 && DECL_COMMON (decl))
863 DECL_COMMON (decl) = 0;
865 /* Variables can't be both common and weak. */
866 if (TREE_CODE (decl) == VAR_DECL && DECL_WEAK (decl))
867 DECL_COMMON (decl) = 0;
869 x = gen_rtx_SYMBOL_REF (Pmode, name);
870 SYMBOL_REF_WEAK (x) = DECL_WEAK (decl);
871 SYMBOL_REF_DECL (x) = decl;
873 x = gen_rtx_MEM (DECL_MODE (decl), x);
874 if (TREE_CODE (decl) != FUNCTION_DECL)
875 set_mem_attributes (x, decl, 1);
876 SET_DECL_RTL (decl, x);
878 /* Optionally set flags or add text to the name to record information
879 such as that it is a function name.
880 If the name is changed, the macro ASM_OUTPUT_LABELREF
881 will have to know how to strip this information. */
882 (* targetm.encode_section_info) (decl, DECL_RTL (decl), true);
885 /* Make the rtl for variable VAR be volatile.
886 Use this only for static variables. */
888 void
889 make_var_volatile (tree var)
891 if (GET_CODE (DECL_RTL (var)) != MEM)
892 abort ();
894 MEM_VOLATILE_P (DECL_RTL (var)) = 1;
897 /* Output a string of literal assembler code
898 for an `asm' keyword used between functions. */
900 void
901 assemble_asm (tree string)
903 app_enable ();
905 if (TREE_CODE (string) == ADDR_EXPR)
906 string = TREE_OPERAND (string, 0);
908 fprintf (asm_out_file, "\t%s\n", TREE_STRING_POINTER (string));
911 /* Record an element in the table of global destructors. SYMBOL is
912 a SYMBOL_REF of the function to be called; PRIORITY is a number
913 between 0 and MAX_INIT_PRIORITY. */
915 void
916 default_stabs_asm_out_destructor (rtx symbol, int priority ATTRIBUTE_UNUSED)
918 /* Tell GNU LD that this is part of the static destructor set.
919 This will work for any system that uses stabs, most usefully
920 aout systems. */
921 fprintf (asm_out_file, "%s\"___DTOR_LIST__\",22,0,0,", ASM_STABS_OP);
922 assemble_name (asm_out_file, XSTR (symbol, 0));
923 fputc ('\n', asm_out_file);
926 void
927 default_named_section_asm_out_destructor (rtx symbol, int priority)
929 const char *section = ".dtors";
930 char buf[16];
932 /* ??? This only works reliably with the GNU linker. */
933 if (priority != DEFAULT_INIT_PRIORITY)
935 sprintf (buf, ".dtors.%.5u",
936 /* Invert the numbering so the linker puts us in the proper
937 order; constructors are run from right to left, and the
938 linker sorts in increasing order. */
939 MAX_INIT_PRIORITY - priority);
940 section = buf;
943 named_section_flags (section, SECTION_WRITE);
944 assemble_align (POINTER_SIZE);
945 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
948 #ifdef DTORS_SECTION_ASM_OP
949 void
950 dtors_section (void)
952 if (in_section != in_dtors)
954 in_section = in_dtors;
955 fputs (DTORS_SECTION_ASM_OP, asm_out_file);
956 fputc ('\n', asm_out_file);
960 void
961 default_dtor_section_asm_out_destructor (rtx symbol,
962 int priority ATTRIBUTE_UNUSED)
964 dtors_section ();
965 assemble_align (POINTER_SIZE);
966 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
968 #endif
970 /* Likewise for global constructors. */
972 void
973 default_stabs_asm_out_constructor (rtx symbol, int priority ATTRIBUTE_UNUSED)
975 /* Tell GNU LD that this is part of the static destructor set.
976 This will work for any system that uses stabs, most usefully
977 aout systems. */
978 fprintf (asm_out_file, "%s\"___CTOR_LIST__\",22,0,0,", ASM_STABS_OP);
979 assemble_name (asm_out_file, XSTR (symbol, 0));
980 fputc ('\n', asm_out_file);
983 void
984 default_named_section_asm_out_constructor (rtx symbol, int priority)
986 const char *section = ".ctors";
987 char buf[16];
989 /* ??? This only works reliably with the GNU linker. */
990 if (priority != DEFAULT_INIT_PRIORITY)
992 sprintf (buf, ".ctors.%.5u",
993 /* Invert the numbering so the linker puts us in the proper
994 order; constructors are run from right to left, and the
995 linker sorts in increasing order. */
996 MAX_INIT_PRIORITY - priority);
997 section = buf;
1000 named_section_flags (section, SECTION_WRITE);
1001 assemble_align (POINTER_SIZE);
1002 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1005 #ifdef CTORS_SECTION_ASM_OP
1006 void
1007 ctors_section (void)
1009 if (in_section != in_ctors)
1011 in_section = in_ctors;
1012 fputs (CTORS_SECTION_ASM_OP, asm_out_file);
1013 fputc ('\n', asm_out_file);
1017 void
1018 default_ctor_section_asm_out_constructor (rtx symbol,
1019 int priority ATTRIBUTE_UNUSED)
1021 ctors_section ();
1022 assemble_align (POINTER_SIZE);
1023 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1025 #endif
1027 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1028 a nonzero value if the constant pool should be output before the
1029 start of the function, or a zero value if the pool should output
1030 after the end of the function. The default is to put it before the
1031 start. */
1033 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1034 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1035 #endif
1037 /* DECL is an object (either VAR_DECL or FUNCTION_DECL) which is going
1038 to be output to assembler.
1039 Set first_global_object_name and weak_global_object_name as appropriate. */
1041 void
1042 notice_global_symbol (tree decl)
1044 const char **type = &first_global_object_name;
1046 if (first_global_object_name
1047 || !TREE_PUBLIC (decl) || DECL_EXTERNAL (decl)
1048 || !DECL_NAME (decl)
1049 || (TREE_CODE (decl) != FUNCTION_DECL
1050 && (TREE_CODE (decl) != VAR_DECL
1051 || (DECL_COMMON (decl)
1052 && (DECL_INITIAL (decl) == 0
1053 || DECL_INITIAL (decl) == error_mark_node)))))
1054 return;
1056 /* We win when global object is found, but it is usefull to know about weak
1057 symbol as well so we can produce nicer unique names. */
1058 if (DECL_WEAK (decl) || DECL_ONE_ONLY (decl))
1059 type = &weak_global_object_name;
1061 if (!*type)
1063 const char *p;
1064 char *name;
1065 rtx decl_rtl = DECL_RTL (decl);
1067 p = (* targetm.strip_name_encoding) (XSTR (XEXP (decl_rtl, 0), 0));
1068 name = xstrdup (p);
1070 *type = name;
1074 /* Output assembler code for the constant pool of a function and associated
1075 with defining the name of the function. DECL describes the function.
1076 NAME is the function's name. For the constant pool, we use the current
1077 constant pool data. */
1079 void
1080 assemble_start_function (tree decl, const char *fnname)
1082 int align;
1084 /* The following code does not need preprocessing in the assembler. */
1086 app_disable ();
1088 if (CONSTANT_POOL_BEFORE_FUNCTION)
1089 output_constant_pool (fnname, decl);
1091 resolve_unique_section (decl, 0, flag_function_sections);
1092 function_section (decl);
1094 /* Tell assembler to move to target machine's alignment for functions. */
1095 align = floor_log2 (FUNCTION_BOUNDARY / BITS_PER_UNIT);
1096 if (align < force_align_functions_log)
1097 align = force_align_functions_log;
1098 if (align > 0)
1100 ASM_OUTPUT_ALIGN (asm_out_file, align);
1103 /* Handle a user-specified function alignment.
1104 Note that we still need to align to FUNCTION_BOUNDARY, as above,
1105 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1106 if (align_functions_log > align
1107 && cfun->function_frequency != FUNCTION_FREQUENCY_UNLIKELY_EXECUTED)
1109 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1110 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file,
1111 align_functions_log, align_functions - 1);
1112 #else
1113 ASM_OUTPUT_ALIGN (asm_out_file, align_functions_log);
1114 #endif
1117 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1118 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file, fnname);
1119 #endif
1121 (*debug_hooks->begin_function) (decl);
1123 /* Make function name accessible from other files, if appropriate. */
1125 if (TREE_PUBLIC (decl))
1127 notice_global_symbol (decl);
1129 globalize_decl (decl);
1131 maybe_assemble_visibility (decl);
1134 /* Do any machine/system dependent processing of the function name */
1135 #ifdef ASM_DECLARE_FUNCTION_NAME
1136 ASM_DECLARE_FUNCTION_NAME (asm_out_file, fnname, current_function_decl);
1137 #else
1138 /* Standard thing is just output label for the function. */
1139 ASM_OUTPUT_LABEL (asm_out_file, fnname);
1140 #endif /* ASM_DECLARE_FUNCTION_NAME */
1143 /* Output assembler code associated with defining the size of the
1144 function. DECL describes the function. NAME is the function's name. */
1146 void
1147 assemble_end_function (tree decl, const char *fnname)
1149 #ifdef ASM_DECLARE_FUNCTION_SIZE
1150 ASM_DECLARE_FUNCTION_SIZE (asm_out_file, fnname, decl);
1151 #endif
1152 if (! CONSTANT_POOL_BEFORE_FUNCTION)
1154 output_constant_pool (fnname, decl);
1155 function_section (decl); /* need to switch back */
1159 /* Assemble code to leave SIZE bytes of zeros. */
1161 void
1162 assemble_zeros (unsigned HOST_WIDE_INT size)
1164 /* Do no output if -fsyntax-only. */
1165 if (flag_syntax_only)
1166 return;
1168 #ifdef ASM_NO_SKIP_IN_TEXT
1169 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1170 so we must output 0s explicitly in the text section. */
1171 if (ASM_NO_SKIP_IN_TEXT && in_text_section ())
1173 unsigned HOST_WIDE_INT i;
1174 for (i = 0; i < size; i++)
1175 assemble_integer (const0_rtx, 1, BITS_PER_UNIT, 1);
1177 else
1178 #endif
1179 if (size > 0)
1180 ASM_OUTPUT_SKIP (asm_out_file, size);
1183 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1185 void
1186 assemble_align (int align)
1188 if (align > BITS_PER_UNIT)
1190 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
1194 /* Assemble a string constant with the specified C string as contents. */
1196 void
1197 assemble_string (const char *p, int size)
1199 int pos = 0;
1200 int maximum = 2000;
1202 /* If the string is very long, split it up. */
1204 while (pos < size)
1206 int thissize = size - pos;
1207 if (thissize > maximum)
1208 thissize = maximum;
1210 ASM_OUTPUT_ASCII (asm_out_file, p, thissize);
1212 pos += thissize;
1213 p += thissize;
1218 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1219 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1220 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1221 #else
1222 #if defined ASM_OUTPUT_ALIGNED_LOCAL
1223 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1224 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, DECL_ALIGN (decl))
1225 #else
1226 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1227 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded)
1228 #endif
1229 #endif
1231 #if defined ASM_OUTPUT_ALIGNED_BSS
1232 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1233 ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1234 #else
1235 #if defined ASM_OUTPUT_BSS
1236 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1237 ASM_OUTPUT_BSS (asm_out_file, decl, name, size, rounded)
1238 #else
1239 #undef ASM_EMIT_BSS
1240 #endif
1241 #endif
1243 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1244 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1245 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1246 #else
1247 #if defined ASM_OUTPUT_ALIGNED_COMMON
1248 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1249 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size, DECL_ALIGN (decl))
1250 #else
1251 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1252 ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded)
1253 #endif
1254 #endif
1256 static bool
1257 asm_emit_uninitialised (tree decl, const char *name,
1258 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1259 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1261 enum
1263 asm_dest_common,
1264 asm_dest_bss,
1265 asm_dest_local
1267 destination = asm_dest_local;
1269 /* ??? We should handle .bss via select_section mechanisms rather than
1270 via special target hooks. That would eliminate this special case. */
1271 if (TREE_PUBLIC (decl))
1273 if (!DECL_COMMON (decl))
1274 #ifdef ASM_EMIT_BSS
1275 destination = asm_dest_bss;
1276 #else
1277 return false;
1278 #endif
1279 else
1280 destination = asm_dest_common;
1283 if (destination == asm_dest_bss)
1284 globalize_decl (decl);
1285 resolve_unique_section (decl, 0, flag_data_sections);
1287 if (flag_shared_data)
1289 switch (destination)
1291 #ifdef ASM_OUTPUT_SHARED_BSS
1292 case asm_dest_bss:
1293 ASM_OUTPUT_SHARED_BSS (asm_out_file, decl, name, size, rounded);
1294 return;
1295 #endif
1296 #ifdef ASM_OUTPUT_SHARED_COMMON
1297 case asm_dest_common:
1298 ASM_OUTPUT_SHARED_COMMON (asm_out_file, name, size, rounded);
1299 return;
1300 #endif
1301 #ifdef ASM_OUTPUT_SHARED_LOCAL
1302 case asm_dest_local:
1303 ASM_OUTPUT_SHARED_LOCAL (asm_out_file, name, size, rounded);
1304 return;
1305 #endif
1306 default:
1307 break;
1311 switch (destination)
1313 #ifdef ASM_EMIT_BSS
1314 case asm_dest_bss:
1315 ASM_EMIT_BSS (decl, name, size, rounded);
1316 break;
1317 #endif
1318 case asm_dest_common:
1319 ASM_EMIT_COMMON (decl, name, size, rounded);
1320 break;
1321 case asm_dest_local:
1322 ASM_EMIT_LOCAL (decl, name, size, rounded);
1323 break;
1324 default:
1325 abort ();
1328 return true;
1331 /* Assemble everything that is needed for a variable or function declaration.
1332 Not used for automatic variables, and not used for function definitions.
1333 Should not be called for variables of incomplete structure type.
1335 TOP_LEVEL is nonzero if this variable has file scope.
1336 AT_END is nonzero if this is the special handling, at end of compilation,
1337 to define things that have had only tentative definitions.
1338 DONT_OUTPUT_DATA if nonzero means don't actually output the
1339 initial value (that will be done by the caller). */
1341 void
1342 assemble_variable (tree decl, int top_level ATTRIBUTE_UNUSED,
1343 int at_end ATTRIBUTE_UNUSED, int dont_output_data)
1345 const char *name;
1346 unsigned int align;
1347 int reloc = 0;
1348 rtx decl_rtl;
1350 if (lang_hooks.decls.prepare_assemble_variable)
1351 (*lang_hooks.decls.prepare_assemble_variable) (decl);
1353 last_assemble_variable_decl = 0;
1355 /* Normally no need to say anything here for external references,
1356 since assemble_external is called by the language-specific code
1357 when a declaration is first seen. */
1359 if (DECL_EXTERNAL (decl))
1360 return;
1362 /* Output no assembler code for a function declaration.
1363 Only definitions of functions output anything. */
1365 if (TREE_CODE (decl) == FUNCTION_DECL)
1366 return;
1368 /* Do nothing for global register variables. */
1369 if (DECL_RTL_SET_P (decl) && GET_CODE (DECL_RTL (decl)) == REG)
1371 TREE_ASM_WRITTEN (decl) = 1;
1372 return;
1375 /* If type was incomplete when the variable was declared,
1376 see if it is complete now. */
1378 if (DECL_SIZE (decl) == 0)
1379 layout_decl (decl, 0);
1381 /* Still incomplete => don't allocate it; treat the tentative defn
1382 (which is what it must have been) as an `extern' reference. */
1384 if (!dont_output_data && DECL_SIZE (decl) == 0)
1386 error ("%Jstorage size of `%D' isn't known", decl, decl);
1387 TREE_ASM_WRITTEN (decl) = 1;
1388 return;
1391 /* The first declaration of a variable that comes through this function
1392 decides whether it is global (in C, has external linkage)
1393 or local (in C, has internal linkage). So do nothing more
1394 if this function has already run. */
1396 if (TREE_ASM_WRITTEN (decl))
1397 return;
1399 /* Make sure targetm.encode_section_info is invoked before we set
1400 ASM_WRITTEN. */
1401 decl_rtl = DECL_RTL (decl);
1403 TREE_ASM_WRITTEN (decl) = 1;
1405 /* Do no output if -fsyntax-only. */
1406 if (flag_syntax_only)
1407 return;
1409 app_disable ();
1411 if (! dont_output_data
1412 && ! host_integerp (DECL_SIZE_UNIT (decl), 1))
1414 error ("%Jsize of variable '%D' is too large", decl, decl);
1415 return;
1418 name = XSTR (XEXP (decl_rtl, 0), 0);
1419 if (TREE_PUBLIC (decl) && DECL_NAME (decl))
1420 notice_global_symbol (decl);
1422 /* Compute the alignment of this data. */
1424 align = DECL_ALIGN (decl);
1426 /* In the case for initialing an array whose length isn't specified,
1427 where we have not yet been able to do the layout,
1428 figure out the proper alignment now. */
1429 if (dont_output_data && DECL_SIZE (decl) == 0
1430 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
1431 align = MAX (align, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
1433 /* Some object file formats have a maximum alignment which they support.
1434 In particular, a.out format supports a maximum alignment of 4. */
1435 #ifndef MAX_OFILE_ALIGNMENT
1436 #define MAX_OFILE_ALIGNMENT BIGGEST_ALIGNMENT
1437 #endif
1438 if (align > MAX_OFILE_ALIGNMENT)
1440 warning ("%Jalignment of '%D' is greater than maximum object "
1441 "file alignment. Using %d", decl, decl,
1442 MAX_OFILE_ALIGNMENT/BITS_PER_UNIT);
1443 align = MAX_OFILE_ALIGNMENT;
1446 /* On some machines, it is good to increase alignment sometimes. */
1447 if (! DECL_USER_ALIGN (decl))
1449 #ifdef DATA_ALIGNMENT
1450 align = DATA_ALIGNMENT (TREE_TYPE (decl), align);
1451 #endif
1452 #ifdef CONSTANT_ALIGNMENT
1453 if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
1454 align = CONSTANT_ALIGNMENT (DECL_INITIAL (decl), align);
1455 #endif
1458 /* Reset the alignment in case we have made it tighter, so we can benefit
1459 from it in get_pointer_alignment. */
1460 DECL_ALIGN (decl) = align;
1461 set_mem_align (decl_rtl, align);
1463 if (TREE_PUBLIC (decl))
1464 maybe_assemble_visibility (decl);
1466 /* Output any data that we will need to use the address of. */
1467 if (DECL_INITIAL (decl) == error_mark_node)
1468 reloc = contains_pointers_p (TREE_TYPE (decl)) ? 3 : 0;
1469 else if (DECL_INITIAL (decl))
1471 reloc = compute_reloc_for_constant (DECL_INITIAL (decl));
1472 output_addressed_constants (DECL_INITIAL (decl));
1474 resolve_unique_section (decl, reloc, flag_data_sections);
1476 /* Handle uninitialized definitions. */
1478 /* If the decl has been given an explicit section name, then it
1479 isn't common, and shouldn't be handled as such. */
1480 if (DECL_SECTION_NAME (decl) || dont_output_data)
1482 /* We don't implement common thread-local data at present. */
1483 else if (DECL_THREAD_LOCAL (decl))
1485 if (DECL_COMMON (decl))
1486 sorry ("thread-local COMMON data not implemented");
1488 else if (DECL_INITIAL (decl) == 0
1489 || DECL_INITIAL (decl) == error_mark_node
1490 || (flag_zero_initialized_in_bss
1491 /* Leave constant zeroes in .rodata so they can be shared. */
1492 && !TREE_READONLY (decl)
1493 && initializer_zerop (DECL_INITIAL (decl))))
1495 unsigned HOST_WIDE_INT size = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
1496 unsigned HOST_WIDE_INT rounded = size;
1498 /* Don't allocate zero bytes of common,
1499 since that means "undefined external" in the linker. */
1500 if (size == 0)
1501 rounded = 1;
1503 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1504 so that each uninitialized object starts on such a boundary. */
1505 rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
1506 rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1507 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1509 #if !defined(ASM_OUTPUT_ALIGNED_COMMON) && !defined(ASM_OUTPUT_ALIGNED_DECL_COMMON) && !defined(ASM_OUTPUT_ALIGNED_BSS)
1510 if ((unsigned HOST_WIDE_INT) DECL_ALIGN (decl) / BITS_PER_UNIT > rounded)
1511 warning ("%Jrequested alignment for '%D' is greater than "
1512 "implemented alignment of %d", decl, decl, rounded);
1513 #endif
1515 /* If the target cannot output uninitialized but not common global data
1516 in .bss, then we have to use .data, so fall through. */
1517 if (asm_emit_uninitialised (decl, name, size, rounded))
1518 return;
1521 /* Handle initialized definitions.
1522 Also handle uninitialized global definitions if -fno-common and the
1523 target doesn't support ASM_OUTPUT_BSS. */
1525 /* First make the assembler name(s) global if appropriate. */
1526 if (TREE_PUBLIC (decl) && DECL_NAME (decl))
1527 globalize_decl (decl);
1529 /* Switch to the appropriate section. */
1530 variable_section (decl, reloc);
1532 /* dbxout.c needs to know this. */
1533 if (in_text_section ())
1534 DECL_IN_TEXT_SECTION (decl) = 1;
1536 /* Output the alignment of this data. */
1537 if (align > BITS_PER_UNIT)
1539 ASM_OUTPUT_ALIGN (asm_out_file,
1540 floor_log2 (DECL_ALIGN (decl) / BITS_PER_UNIT));
1543 /* Do any machine/system dependent processing of the object. */
1544 #ifdef ASM_DECLARE_OBJECT_NAME
1545 last_assemble_variable_decl = decl;
1546 ASM_DECLARE_OBJECT_NAME (asm_out_file, name, decl);
1547 #else
1548 /* Standard thing is just output label for the object. */
1549 ASM_OUTPUT_LABEL (asm_out_file, name);
1550 #endif /* ASM_DECLARE_OBJECT_NAME */
1552 if (!dont_output_data)
1554 if (DECL_INITIAL (decl) && DECL_INITIAL (decl) != error_mark_node)
1555 /* Output the actual data. */
1556 output_constant (DECL_INITIAL (decl),
1557 tree_low_cst (DECL_SIZE_UNIT (decl), 1),
1558 align);
1559 else
1560 /* Leave space for it. */
1561 assemble_zeros (tree_low_cst (DECL_SIZE_UNIT (decl), 1));
1565 /* Return 1 if type TYPE contains any pointers. */
1567 static int
1568 contains_pointers_p (tree type)
1570 switch (TREE_CODE (type))
1572 case POINTER_TYPE:
1573 case REFERENCE_TYPE:
1574 /* I'm not sure whether OFFSET_TYPE needs this treatment,
1575 so I'll play safe and return 1. */
1576 case OFFSET_TYPE:
1577 return 1;
1579 case RECORD_TYPE:
1580 case UNION_TYPE:
1581 case QUAL_UNION_TYPE:
1583 tree fields;
1584 /* For a type that has fields, see if the fields have pointers. */
1585 for (fields = TYPE_FIELDS (type); fields; fields = TREE_CHAIN (fields))
1586 if (TREE_CODE (fields) == FIELD_DECL
1587 && contains_pointers_p (TREE_TYPE (fields)))
1588 return 1;
1589 return 0;
1592 case ARRAY_TYPE:
1593 /* An array type contains pointers if its element type does. */
1594 return contains_pointers_p (TREE_TYPE (type));
1596 default:
1597 return 0;
1601 /* Output something to declare an external symbol to the assembler.
1602 (Most assemblers don't need this, so we normally output nothing.)
1603 Do nothing if DECL is not external. */
1605 void
1606 assemble_external (tree decl ATTRIBUTE_UNUSED)
1608 /* Because most platforms do not define ASM_OUTPUT_EXTERNAL, the
1609 main body of this code is only rarely exercised. To provide some
1610 testing, on all platforms, we make sure that the ASM_OUT_FILE is
1611 open. If it's not, we should not be calling this function. */
1612 if (!asm_out_file)
1613 abort ();
1615 #ifdef ASM_OUTPUT_EXTERNAL
1616 if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
1618 rtx rtl = DECL_RTL (decl);
1620 if (GET_CODE (rtl) == MEM && GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF
1621 && ! SYMBOL_REF_USED (XEXP (rtl, 0)))
1623 /* Some systems do require some output. */
1624 SYMBOL_REF_USED (XEXP (rtl, 0)) = 1;
1625 ASM_OUTPUT_EXTERNAL (asm_out_file, decl, XSTR (XEXP (rtl, 0), 0));
1628 #endif
1631 /* Similar, for calling a library function FUN. */
1633 void
1634 assemble_external_libcall (rtx fun)
1636 /* Declare library function name external when first used, if nec. */
1637 if (! SYMBOL_REF_USED (fun))
1639 SYMBOL_REF_USED (fun) = 1;
1640 (*targetm.asm_out.external_libcall) (fun);
1644 /* Assemble a label named NAME. */
1646 void
1647 assemble_label (const char *name)
1649 ASM_OUTPUT_LABEL (asm_out_file, name);
1652 /* Set the symbol_referenced flag for ID and notify callgraph code. */
1653 void
1654 mark_referenced (tree id)
1656 if (!TREE_SYMBOL_REFERENCED (id))
1658 struct cgraph_node *node;
1659 struct cgraph_varpool_node *vnode;
1661 if (!cgraph_global_info_ready)
1663 node = cgraph_node_for_identifier (id);
1664 if (node)
1665 cgraph_mark_needed_node (node);
1668 vnode = cgraph_varpool_node_for_identifier (id);
1669 if (vnode)
1670 cgraph_varpool_mark_needed_node (vnode);
1672 TREE_SYMBOL_REFERENCED (id) = 1;
1675 /* Output to FILE a reference to the assembler name of a C-level name NAME.
1676 If NAME starts with a *, the rest of NAME is output verbatim.
1677 Otherwise NAME is transformed in an implementation-defined way
1678 (usually by the addition of an underscore).
1679 Many macros in the tm file are defined to call this function. */
1681 void
1682 assemble_name (FILE *file, const char *name)
1684 const char *real_name;
1685 tree id;
1687 real_name = (* targetm.strip_name_encoding) (name);
1689 id = maybe_get_identifier (real_name);
1690 if (id)
1691 mark_referenced (id);
1693 if (name[0] == '*')
1694 fputs (&name[1], file);
1695 else
1696 ASM_OUTPUT_LABELREF (file, name);
1699 /* Allocate SIZE bytes writable static space with a gensym name
1700 and return an RTX to refer to its address. */
1703 assemble_static_space (unsigned HOST_WIDE_INT size)
1705 char name[12];
1706 const char *namestring;
1707 rtx x;
1709 #if 0
1710 if (flag_shared_data)
1711 data_section ();
1712 #endif
1714 ASM_GENERATE_INTERNAL_LABEL (name, "LF", const_labelno);
1715 ++const_labelno;
1716 namestring = ggc_strdup (name);
1718 x = gen_rtx_SYMBOL_REF (Pmode, namestring);
1719 SYMBOL_REF_FLAGS (x) = SYMBOL_FLAG_LOCAL;
1721 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
1722 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name, size,
1723 BIGGEST_ALIGNMENT);
1724 #else
1725 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
1726 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, BIGGEST_ALIGNMENT);
1727 #else
1729 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1730 so that each uninitialized object starts on such a boundary. */
1731 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
1732 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
1733 = ((size + (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1)
1734 / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1735 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1736 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
1738 #endif
1739 #endif
1740 return x;
1743 /* Assemble the static constant template for function entry trampolines.
1744 This is done at most once per compilation.
1745 Returns an RTX for the address of the template. */
1747 #ifdef TRAMPOLINE_TEMPLATE
1749 assemble_trampoline_template (void)
1751 char label[256];
1752 const char *name;
1753 int align;
1754 rtx symbol;
1756 /* By default, put trampoline templates in read-only data section. */
1758 #ifdef TRAMPOLINE_SECTION
1759 TRAMPOLINE_SECTION ();
1760 #else
1761 readonly_data_section ();
1762 #endif
1764 /* Write the assembler code to define one. */
1765 align = floor_log2 (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT);
1766 if (align > 0)
1768 ASM_OUTPUT_ALIGN (asm_out_file, align);
1771 (*targetm.asm_out.internal_label) (asm_out_file, "LTRAMP", 0);
1772 TRAMPOLINE_TEMPLATE (asm_out_file);
1774 /* Record the rtl to refer to it. */
1775 ASM_GENERATE_INTERNAL_LABEL (label, "LTRAMP", 0);
1776 name = ggc_strdup (label);
1777 symbol = gen_rtx_SYMBOL_REF (Pmode, name);
1778 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
1780 return symbol;
1782 #endif
1784 /* A and B are either alignments or offsets. Return the minimum alignment
1785 that may be assumed after adding the two together. */
1787 static inline unsigned
1788 min_align (unsigned int a, unsigned int b)
1790 return (a | b) & -(a | b);
1793 /* Return the assembler directive for creating a given kind of integer
1794 object. SIZE is the number of bytes in the object and ALIGNED_P
1795 indicates whether it is known to be aligned. Return NULL if the
1796 assembly dialect has no such directive.
1798 The returned string should be printed at the start of a new line and
1799 be followed immediately by the object's initial value. */
1801 const char *
1802 integer_asm_op (int size, int aligned_p)
1804 struct asm_int_op *ops;
1806 if (aligned_p)
1807 ops = &targetm.asm_out.aligned_op;
1808 else
1809 ops = &targetm.asm_out.unaligned_op;
1811 switch (size)
1813 case 1:
1814 return targetm.asm_out.byte_op;
1815 case 2:
1816 return ops->hi;
1817 case 4:
1818 return ops->si;
1819 case 8:
1820 return ops->di;
1821 case 16:
1822 return ops->ti;
1823 default:
1824 return NULL;
1828 /* Use directive OP to assemble an integer object X. Print OP at the
1829 start of the line, followed immediately by the value of X. */
1831 void
1832 assemble_integer_with_op (const char *op, rtx x)
1834 fputs (op, asm_out_file);
1835 output_addr_const (asm_out_file, x);
1836 fputc ('\n', asm_out_file);
1839 /* The default implementation of the asm_out.integer target hook. */
1841 bool
1842 default_assemble_integer (rtx x ATTRIBUTE_UNUSED,
1843 unsigned int size ATTRIBUTE_UNUSED,
1844 int aligned_p ATTRIBUTE_UNUSED)
1846 const char *op = integer_asm_op (size, aligned_p);
1847 return op && (assemble_integer_with_op (op, x), true);
1850 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
1851 the alignment of the integer in bits. Return 1 if we were able to output
1852 the constant, otherwise 0. If FORCE is nonzero, abort if we can't output
1853 the constant. */
1855 bool
1856 assemble_integer (rtx x, unsigned int size, unsigned int align, int force)
1858 int aligned_p;
1860 aligned_p = (align >= MIN (size * BITS_PER_UNIT, BIGGEST_ALIGNMENT));
1862 /* See if the target hook can handle this kind of object. */
1863 if ((*targetm.asm_out.integer) (x, size, aligned_p))
1864 return true;
1866 /* If the object is a multi-byte one, try splitting it up. Split
1867 it into words it if is multi-word, otherwise split it into bytes. */
1868 if (size > 1)
1870 enum machine_mode omode, imode;
1871 unsigned int subalign;
1872 unsigned int subsize, i;
1874 subsize = size > UNITS_PER_WORD? UNITS_PER_WORD : 1;
1875 subalign = MIN (align, subsize * BITS_PER_UNIT);
1876 omode = mode_for_size (subsize * BITS_PER_UNIT, MODE_INT, 0);
1877 imode = mode_for_size (size * BITS_PER_UNIT, MODE_INT, 0);
1879 for (i = 0; i < size; i += subsize)
1881 rtx partial = simplify_subreg (omode, x, imode, i);
1882 if (!partial || !assemble_integer (partial, subsize, subalign, 0))
1883 break;
1885 if (i == size)
1886 return true;
1888 /* If we've printed some of it, but not all of it, there's no going
1889 back now. */
1890 if (i > 0)
1891 abort ();
1894 if (force)
1895 abort ();
1897 return false;
1900 void
1901 assemble_real (REAL_VALUE_TYPE d, enum machine_mode mode, unsigned int align)
1903 long data[4];
1904 int i;
1905 int bitsize, nelts, nunits, units_per;
1907 /* This is hairy. We have a quantity of known bitsize. real_to_target
1908 will put it into an array of *host* longs, 32 bits per element
1909 (even if long is more than 32 bits). We need to determine the
1910 number of array elements that are occupied (nelts) and the number
1911 of *target* min-addressable units that will be occupied in the
1912 object file (nunits). We can assume that BITS_PER_UNIT divides
1913 the mode's bitsize evenly, but we can not assume that 32 does. */
1914 bitsize = GET_MODE_BITSIZE (mode);
1915 nunits = bitsize / BITS_PER_UNIT;
1916 nelts = CEIL (bitsize, 32);
1917 units_per = 32 / BITS_PER_UNIT;
1919 real_to_target (data, &d, mode);
1921 /* Put out the first word with the specified alignment. */
1922 assemble_integer (GEN_INT (data[0]), MIN (nunits, units_per), align, 1);
1923 nunits -= units_per;
1925 /* Subsequent words need only 32-bit alignment. */
1926 align = min_align (align, 32);
1928 for (i = 1; i < nelts; i++)
1930 assemble_integer (GEN_INT (data[i]), MIN (nunits, units_per), align, 1);
1931 nunits -= units_per;
1935 /* Given an expression EXP with a constant value,
1936 reduce it to the sum of an assembler symbol and an integer.
1937 Store them both in the structure *VALUE.
1938 Abort if EXP does not reduce. */
1940 struct addr_const GTY(())
1942 rtx base;
1943 HOST_WIDE_INT offset;
1946 static void
1947 decode_addr_const (tree exp, struct addr_const *value)
1949 tree target = TREE_OPERAND (exp, 0);
1950 int offset = 0;
1951 rtx x;
1953 while (1)
1955 if (TREE_CODE (target) == COMPONENT_REF
1956 && host_integerp (byte_position (TREE_OPERAND (target, 1)), 0))
1959 offset += int_byte_position (TREE_OPERAND (target, 1));
1960 target = TREE_OPERAND (target, 0);
1962 else if (TREE_CODE (target) == ARRAY_REF
1963 || TREE_CODE (target) == ARRAY_RANGE_REF)
1965 offset += (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (target)), 1)
1966 * tree_low_cst (TREE_OPERAND (target, 1), 0));
1967 target = TREE_OPERAND (target, 0);
1969 else
1970 break;
1973 switch (TREE_CODE (target))
1975 case VAR_DECL:
1976 case FUNCTION_DECL:
1977 x = DECL_RTL (target);
1978 break;
1980 case LABEL_DECL:
1981 x = gen_rtx_MEM (FUNCTION_MODE,
1982 gen_rtx_LABEL_REF (VOIDmode, force_label_rtx (target)));
1983 break;
1985 case REAL_CST:
1986 case STRING_CST:
1987 case COMPLEX_CST:
1988 case CONSTRUCTOR:
1989 case INTEGER_CST:
1990 x = output_constant_def (target, 1);
1991 break;
1993 default:
1994 abort ();
1997 if (GET_CODE (x) != MEM)
1998 abort ();
1999 x = XEXP (x, 0);
2001 value->base = x;
2002 value->offset = offset;
2005 /* We do RTX_UNSPEC + XINT (blah), so nothing can go after RTX_UNSPEC. */
2006 enum kind { RTX_UNKNOWN, RTX_DOUBLE, RTX_VECTOR, RTX_INT, RTX_UNSPEC };
2007 struct rtx_const GTY(())
2009 ENUM_BITFIELD(kind) kind : 16;
2010 ENUM_BITFIELD(machine_mode) mode : 16;
2011 union rtx_const_un {
2012 REAL_VALUE_TYPE GTY ((tag ("4"))) du;
2013 struct rtx_const_u_addr {
2014 rtx base;
2015 const char *symbol;
2016 HOST_WIDE_INT offset;
2017 } GTY ((tag ("1"))) addr;
2018 struct rtx_const_u_di {
2019 HOST_WIDE_INT high;
2020 HOST_WIDE_INT low;
2021 } GTY ((tag ("0"))) di;
2023 /* The max vector size we have is 16 wide; two variants for
2024 integral and floating point vectors. */
2025 struct rtx_const_int_vec {
2026 HOST_WIDE_INT high;
2027 HOST_WIDE_INT low;
2028 } GTY ((tag ("2"))) int_vec[16];
2030 REAL_VALUE_TYPE GTY ((tag ("3"))) fp_vec[8];
2032 } GTY ((desc ("%1.kind >= RTX_INT"), descbits ("1"))) un;
2035 /* Uniquize all constants that appear in memory.
2036 Each constant in memory thus far output is recorded
2037 in `const_hash_table'. */
2039 struct constant_descriptor_tree GTY(())
2041 /* A MEM for the constant. */
2042 rtx rtl;
2044 /* The value of the constant. */
2045 tree value;
2048 static GTY((param_is (struct constant_descriptor_tree)))
2049 htab_t const_desc_htab;
2051 static struct constant_descriptor_tree * build_constant_desc (tree);
2052 static void maybe_output_constant_def_contents (struct constant_descriptor_tree *, int);
2054 /* Compute a hash code for a constant expression. */
2056 static hashval_t
2057 const_desc_hash (const void *ptr)
2059 return const_hash_1 (((struct constant_descriptor_tree *)ptr)->value);
2062 static hashval_t
2063 const_hash_1 (const tree exp)
2065 const char *p;
2066 hashval_t hi;
2067 int len, i;
2068 enum tree_code code = TREE_CODE (exp);
2070 /* Either set P and LEN to the address and len of something to hash and
2071 exit the switch or return a value. */
2073 switch (code)
2075 case INTEGER_CST:
2076 p = (char *) &TREE_INT_CST (exp);
2077 len = sizeof TREE_INT_CST (exp);
2078 break;
2080 case REAL_CST:
2081 return real_hash (TREE_REAL_CST_PTR (exp));
2083 case STRING_CST:
2084 p = TREE_STRING_POINTER (exp);
2085 len = TREE_STRING_LENGTH (exp);
2086 break;
2087 case COMPLEX_CST:
2088 return (const_hash_1 (TREE_REALPART (exp)) * 5
2089 + const_hash_1 (TREE_IMAGPART (exp)));
2091 case CONSTRUCTOR:
2092 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2094 char *tmp;
2096 len = int_size_in_bytes (TREE_TYPE (exp));
2097 tmp = alloca (len);
2098 get_set_constructor_bytes (exp, (unsigned char *) tmp, len);
2099 p = tmp;
2100 break;
2102 else
2104 tree link;
2106 hi = 5 + int_size_in_bytes (TREE_TYPE (exp));
2108 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2109 if (TREE_VALUE (link))
2110 hi = hi * 603 + const_hash_1 (TREE_VALUE (link));
2112 return hi;
2115 case ADDR_EXPR:
2116 case FDESC_EXPR:
2118 struct addr_const value;
2120 decode_addr_const (exp, &value);
2121 if (GET_CODE (value.base) == SYMBOL_REF)
2123 /* Don't hash the address of the SYMBOL_REF;
2124 only use the offset and the symbol name. */
2125 hi = value.offset;
2126 p = XSTR (value.base, 0);
2127 for (i = 0; p[i] != 0; i++)
2128 hi = ((hi * 613) + (unsigned) (p[i]));
2130 else if (GET_CODE (value.base) == LABEL_REF)
2131 hi = value.offset + CODE_LABEL_NUMBER (XEXP (value.base, 0)) * 13;
2132 else
2133 abort ();
2135 return hi;
2137 case PLUS_EXPR:
2138 case MINUS_EXPR:
2139 return (const_hash_1 (TREE_OPERAND (exp, 0)) * 9
2140 + const_hash_1 (TREE_OPERAND (exp, 1)));
2142 case NOP_EXPR:
2143 case CONVERT_EXPR:
2144 case NON_LVALUE_EXPR:
2145 return const_hash_1 (TREE_OPERAND (exp, 0)) * 7 + 2;
2147 default:
2148 /* A language specific constant. Just hash the code. */
2149 return code;
2152 /* Compute hashing function. */
2153 hi = len;
2154 for (i = 0; i < len; i++)
2155 hi = ((hi * 613) + (unsigned) (p[i]));
2157 return hi;
2160 /* Wrapper of compare_constant, for the htab interface. */
2161 static int
2162 const_desc_eq (const void *p1, const void *p2)
2164 return compare_constant (((struct constant_descriptor_tree *)p1)->value,
2165 ((struct constant_descriptor_tree *)p2)->value);
2168 /* Compare t1 and t2, and return 1 only if they are known to result in
2169 the same bit pattern on output. */
2171 static int
2172 compare_constant (const tree t1, const tree t2)
2174 enum tree_code typecode;
2176 if (t1 == NULL_TREE)
2177 return t2 == NULL_TREE;
2178 if (t2 == NULL_TREE)
2179 return 0;
2181 if (TREE_CODE (t1) != TREE_CODE (t2))
2182 return 0;
2184 switch (TREE_CODE (t1))
2186 case INTEGER_CST:
2187 /* Integer constants are the same only if the same width of type. */
2188 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2189 return 0;
2190 return tree_int_cst_equal (t1, t2);
2192 case REAL_CST:
2193 /* Real constants are the same only if the same width of type. */
2194 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2195 return 0;
2197 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
2199 case STRING_CST:
2200 if (flag_writable_strings)
2201 return 0;
2203 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
2204 return 0;
2206 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
2207 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
2208 TREE_STRING_LENGTH (t1)));
2210 case COMPLEX_CST:
2211 return (compare_constant (TREE_REALPART (t1), TREE_REALPART (t2))
2212 && compare_constant (TREE_IMAGPART (t1), TREE_IMAGPART (t2)));
2214 case CONSTRUCTOR:
2215 typecode = TREE_CODE (TREE_TYPE (t1));
2216 if (typecode != TREE_CODE (TREE_TYPE (t2)))
2217 return 0;
2219 if (typecode == SET_TYPE)
2221 int len = int_size_in_bytes (TREE_TYPE (t2));
2222 unsigned char *tmp1, *tmp2;
2224 if (int_size_in_bytes (TREE_TYPE (t1)) != len)
2225 return 0;
2227 tmp1 = alloca (len);
2228 tmp2 = alloca (len);
2230 if (get_set_constructor_bytes (t1, tmp1, len) != NULL_TREE)
2231 return 0;
2232 if (get_set_constructor_bytes (t2, tmp2, len) != NULL_TREE)
2233 return 0;
2235 return memcmp (tmp1, tmp2, len) == 0;
2237 else
2239 tree l1, l2;
2241 if (typecode == ARRAY_TYPE)
2243 HOST_WIDE_INT size_1 = int_size_in_bytes (TREE_TYPE (t1));
2244 /* For arrays, check that the sizes all match. */
2245 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2))
2246 || size_1 == -1
2247 || size_1 != int_size_in_bytes (TREE_TYPE (t2)))
2248 return 0;
2250 else
2252 /* For record and union constructors, require exact type
2253 equality. */
2254 if (TREE_TYPE (t1) != TREE_TYPE (t2))
2255 return 0;
2258 for (l1 = CONSTRUCTOR_ELTS (t1), l2 = CONSTRUCTOR_ELTS (t2);
2259 l1 && l2;
2260 l1 = TREE_CHAIN (l1), l2 = TREE_CHAIN (l2))
2262 /* Check that each value is the same... */
2263 if (! compare_constant (TREE_VALUE (l1), TREE_VALUE (l2)))
2264 return 0;
2265 /* ... and that they apply to the same fields! */
2266 if (typecode == ARRAY_TYPE)
2268 if (! compare_constant (TREE_PURPOSE (l1),
2269 TREE_PURPOSE (l2)))
2270 return 0;
2272 else
2274 if (TREE_PURPOSE (l1) != TREE_PURPOSE (l2))
2275 return 0;
2279 return l1 == NULL_TREE && l2 == NULL_TREE;
2282 case ADDR_EXPR:
2283 case FDESC_EXPR:
2285 struct addr_const value1, value2;
2287 decode_addr_const (t1, &value1);
2288 decode_addr_const (t2, &value2);
2289 return (value1.offset == value2.offset
2290 && strcmp (XSTR (value1.base, 0), XSTR (value2.base, 0)) == 0);
2293 case PLUS_EXPR:
2294 case MINUS_EXPR:
2295 case RANGE_EXPR:
2296 return (compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0))
2297 && compare_constant(TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)));
2299 case NOP_EXPR:
2300 case CONVERT_EXPR:
2301 case NON_LVALUE_EXPR:
2302 return compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
2304 default:
2306 tree nt1, nt2;
2307 nt1 = (*lang_hooks.expand_constant) (t1);
2308 nt2 = (*lang_hooks.expand_constant) (t2);
2309 if (nt1 != t1 || nt2 != t2)
2310 return compare_constant (nt1, nt2);
2311 else
2312 return 0;
2316 /* Should not get here. */
2317 abort ();
2320 /* Make a copy of the whole tree structure for a constant. This
2321 handles the same types of nodes that compare_constant handles. */
2323 static tree
2324 copy_constant (tree exp)
2326 switch (TREE_CODE (exp))
2328 case ADDR_EXPR:
2329 /* For ADDR_EXPR, we do not want to copy the decl whose address
2330 is requested. We do want to copy constants though. */
2331 if (TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (exp, 0))) == 'c')
2332 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2333 copy_constant (TREE_OPERAND (exp, 0)));
2334 else
2335 return copy_node (exp);
2337 case INTEGER_CST:
2338 case REAL_CST:
2339 case STRING_CST:
2340 return copy_node (exp);
2342 case COMPLEX_CST:
2343 return build_complex (TREE_TYPE (exp),
2344 copy_constant (TREE_REALPART (exp)),
2345 copy_constant (TREE_IMAGPART (exp)));
2347 case PLUS_EXPR:
2348 case MINUS_EXPR:
2349 return build (TREE_CODE (exp), TREE_TYPE (exp),
2350 copy_constant (TREE_OPERAND (exp, 0)),
2351 copy_constant (TREE_OPERAND (exp, 1)));
2353 case NOP_EXPR:
2354 case CONVERT_EXPR:
2355 case NON_LVALUE_EXPR:
2356 case VIEW_CONVERT_EXPR:
2357 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2358 copy_constant (TREE_OPERAND (exp, 0)));
2360 case CONSTRUCTOR:
2362 tree copy = copy_node (exp);
2363 tree list = copy_list (CONSTRUCTOR_ELTS (exp));
2364 tree tail;
2366 CONSTRUCTOR_ELTS (copy) = list;
2367 for (tail = list; tail; tail = TREE_CHAIN (tail))
2368 TREE_VALUE (tail) = copy_constant (TREE_VALUE (tail));
2369 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2370 for (tail = list; tail; tail = TREE_CHAIN (tail))
2371 TREE_PURPOSE (tail) = copy_constant (TREE_PURPOSE (tail));
2373 return copy;
2376 default:
2378 tree t;
2379 t = (*lang_hooks.expand_constant) (exp);
2380 if (t != exp)
2381 return copy_constant (t);
2382 else
2383 abort ();
2388 /* Subroutine of output_constant_def:
2389 No constant equal to EXP is known to have been output.
2390 Make a constant descriptor to enter EXP in the hash table.
2391 Assign the label number and construct RTL to refer to the
2392 constant's location in memory.
2393 Caller is responsible for updating the hash table. */
2395 static struct constant_descriptor_tree *
2396 build_constant_desc (tree exp)
2398 rtx symbol;
2399 rtx rtl;
2400 char label[256];
2401 int labelno;
2402 struct constant_descriptor_tree *desc;
2404 desc = ggc_alloc (sizeof (*desc));
2405 desc->value = copy_constant (exp);
2407 /* Create a string containing the label name, in LABEL. */
2408 labelno = const_labelno++;
2409 ASM_GENERATE_INTERNAL_LABEL (label, "LC", labelno);
2411 /* We have a symbol name; construct the SYMBOL_REF and the MEM. */
2412 symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
2413 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
2414 SYMBOL_REF_DECL (symbol) = desc->value;
2415 TREE_CONSTANT_POOL_ADDRESS_P (symbol) = 1;
2417 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp)), symbol);
2418 set_mem_attributes (rtl, exp, 1);
2419 set_mem_alias_set (rtl, 0);
2420 set_mem_alias_set (rtl, const_alias_set);
2422 /* Set flags or add text to the name to record information, such as
2423 that it is a local symbol. If the name is changed, the macro
2424 ASM_OUTPUT_LABELREF will have to know how to strip this
2425 information. This call might invalidate our local variable
2426 SYMBOL; we can't use it afterward. */
2428 (*targetm.encode_section_info) (exp, rtl, true);
2430 desc->rtl = rtl;
2432 return desc;
2435 /* Return an rtx representing a reference to constant data in memory
2436 for the constant expression EXP.
2438 If assembler code for such a constant has already been output,
2439 return an rtx to refer to it.
2440 Otherwise, output such a constant in memory
2441 and generate an rtx for it.
2443 If DEFER is nonzero, this constant can be deferred and output only
2444 if referenced in the function after all optimizations.
2446 The const_hash_table records which constants already have label strings. */
2449 output_constant_def (tree exp, int defer)
2451 struct constant_descriptor_tree *desc;
2452 struct constant_descriptor_tree key;
2453 void **loc;
2455 /* Look up EXP in the table of constant descriptors. If we didn't find
2456 it, create a new one. */
2457 key.value = exp;
2458 loc = htab_find_slot (const_desc_htab, &key, INSERT);
2460 desc = *loc;
2461 if (desc == 0)
2463 desc = build_constant_desc (exp);
2464 *loc = desc;
2467 maybe_output_constant_def_contents (desc, defer);
2468 return desc->rtl;
2471 /* Subroutine of output_constant_def: Decide whether or not we need to
2472 output the constant DESC now, and if so, do it. */
2473 static void
2474 maybe_output_constant_def_contents (struct constant_descriptor_tree *desc,
2475 int defer)
2477 rtx symbol = XEXP (desc->rtl, 0);
2478 tree exp = desc->value;
2480 if (flag_syntax_only)
2481 return;
2483 if (TREE_ASM_WRITTEN (exp))
2484 /* Already output; don't do it again. */
2485 return;
2487 /* The only constants that cannot safely be deferred, assuming the
2488 context allows it, are strings under flag_writable_strings. */
2489 if (defer && (TREE_CODE (exp) != STRING_CST || !flag_writable_strings))
2491 /* Increment n_deferred_constants if it exists. It needs to be at
2492 least as large as the number of constants actually referred to
2493 by the function. If it's too small we'll stop looking too early
2494 and fail to emit constants; if it's too large we'll only look
2495 through the entire function when we could have stopped earlier. */
2496 if (cfun)
2497 n_deferred_constants++;
2498 return;
2501 output_constant_def_contents (symbol);
2504 /* We must output the constant data referred to by SYMBOL; do so. */
2506 static void
2507 output_constant_def_contents (rtx symbol)
2509 tree exp = SYMBOL_REF_DECL (symbol);
2510 const char *label = XSTR (symbol, 0);
2511 HOST_WIDE_INT size;
2513 /* Make sure any other constants whose addresses appear in EXP
2514 are assigned label numbers. */
2515 int reloc = compute_reloc_for_constant (exp);
2517 /* Align the location counter as required by EXP's data type. */
2518 int align = TYPE_ALIGN (TREE_TYPE (exp));
2519 #ifdef CONSTANT_ALIGNMENT
2520 align = CONSTANT_ALIGNMENT (exp, align);
2521 #endif
2523 output_addressed_constants (exp);
2525 /* We are no longer deferring this constant. */
2526 TREE_ASM_WRITTEN (exp) = 1;
2528 if (IN_NAMED_SECTION (exp))
2529 named_section (exp, NULL, reloc);
2530 else
2531 (*targetm.asm_out.select_section) (exp, reloc, align);
2533 if (align > BITS_PER_UNIT)
2535 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
2538 size = int_size_in_bytes (TREE_TYPE (exp));
2539 if (TREE_CODE (exp) == STRING_CST)
2540 size = MAX (TREE_STRING_LENGTH (exp), size);
2542 /* Do any machine/system dependent processing of the constant. */
2543 #ifdef ASM_DECLARE_CONSTANT_NAME
2544 ASM_DECLARE_CONSTANT_NAME (asm_out_file, label, exp, size);
2545 #else
2546 /* Standard thing is just output label for the constant. */
2547 ASM_OUTPUT_LABEL (asm_out_file, label);
2548 #endif /* ASM_DECLARE_CONSTANT_NAME */
2550 /* Output the value of EXP. */
2551 output_constant (exp, size, align);
2554 /* A constant which was deferred in its original location has been
2555 inserted by the RTL inliner into a different function. The
2556 current function's deferred constant count must be incremented. */
2557 void
2558 notice_rtl_inlining_of_deferred_constant (void)
2560 n_deferred_constants++;
2563 /* Look up EXP in the table of constant descriptors. Return the rtl
2564 if it has been emitted, else null. */
2567 lookup_constant_def (tree exp)
2569 struct constant_descriptor_tree *desc;
2570 struct constant_descriptor_tree key;
2572 key.value = exp;
2573 desc = htab_find (const_desc_htab, &key);
2575 return (desc ? desc->rtl : NULL_RTX);
2578 /* Used in the hash tables to avoid outputting the same constant
2579 twice. Unlike 'struct constant_descriptor_tree', RTX constants
2580 are output once per function, not once per file; there seems
2581 to be no reason for the difference. */
2583 struct constant_descriptor_rtx GTY(())
2585 /* More constant_descriptors with the same hash code. */
2586 struct constant_descriptor_rtx *next;
2588 /* A MEM for the constant. */
2589 rtx rtl;
2591 /* The value of the constant. */
2592 struct rtx_const value;
2595 /* Structure to represent sufficient information about a constant so that
2596 it can be output when the constant pool is output, so that function
2597 integration can be done, and to simplify handling on machines that reference
2598 constant pool as base+displacement. */
2600 struct pool_constant GTY(())
2602 struct constant_descriptor_rtx *desc;
2603 struct pool_constant *next;
2604 struct pool_constant *next_sym;
2605 rtx constant;
2606 enum machine_mode mode;
2607 int labelno;
2608 unsigned int align;
2609 HOST_WIDE_INT offset;
2610 int mark;
2613 /* Hash code for a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true.
2614 The argument is XSTR (... , 0) */
2616 #define SYMHASH(LABEL) (((unsigned long) (LABEL)) % MAX_RTX_HASH_TABLE)
2618 /* Initialize constant pool hashing for a new function. */
2620 void
2621 init_varasm_status (struct function *f)
2623 struct varasm_status *p;
2624 p = ggc_alloc (sizeof (struct varasm_status));
2625 f->varasm = p;
2626 p->x_const_rtx_hash_table
2627 = ggc_alloc_cleared (MAX_RTX_HASH_TABLE
2628 * sizeof (struct constant_descriptor_rtx *));
2629 p->x_const_rtx_sym_hash_table
2630 = ggc_alloc_cleared (MAX_RTX_HASH_TABLE
2631 * sizeof (struct pool_constant *));
2633 p->x_first_pool = p->x_last_pool = 0;
2634 p->x_pool_offset = 0;
2635 p->deferred_constants = 0;
2639 /* Express an rtx for a constant integer (perhaps symbolic)
2640 as the sum of a symbol or label plus an explicit integer.
2641 They are stored into VALUE. */
2643 static void
2644 decode_rtx_const (enum machine_mode mode, rtx x, struct rtx_const *value)
2646 /* Clear the whole structure, including any gaps. */
2647 memset (value, 0, sizeof (struct rtx_const));
2649 value->kind = RTX_INT; /* Most usual kind. */
2650 value->mode = mode;
2652 switch (GET_CODE (x))
2654 case CONST_DOUBLE:
2655 value->kind = RTX_DOUBLE;
2656 if (GET_MODE (x) != VOIDmode)
2658 const REAL_VALUE_TYPE *r = CONST_DOUBLE_REAL_VALUE (x);
2660 value->mode = GET_MODE (x);
2662 /* Copy the REAL_VALUE_TYPE by members so that we don't
2663 copy garbage from the original structure into our
2664 carefully cleaned hashing structure. */
2665 value->un.du.class = r->class;
2666 value->un.du.sign = r->sign;
2667 switch (r->class)
2669 case rvc_zero:
2670 case rvc_inf:
2671 break;
2672 case rvc_normal:
2673 value->un.du.exp = r->exp;
2674 /* FALLTHRU */
2675 case rvc_nan:
2676 memcpy (value->un.du.sig, r->sig, sizeof (r->sig));
2677 break;
2678 default:
2679 abort ();
2682 else
2684 value->un.di.low = CONST_DOUBLE_LOW (x);
2685 value->un.di.high = CONST_DOUBLE_HIGH (x);
2687 break;
2689 case CONST_VECTOR:
2691 int units, i;
2693 units = CONST_VECTOR_NUNITS (x);
2694 value->kind = RTX_VECTOR;
2695 value->mode = mode;
2697 if (GET_MODE_CLASS (mode) == MODE_VECTOR_INT)
2699 for (i = 0; i < units; ++i)
2701 rtx elt = CONST_VECTOR_ELT (x, i);
2702 if (GET_CODE (elt) == CONST_INT)
2704 value->un.int_vec[i].low = INTVAL (elt);
2705 value->un.int_vec[i].high = 0;
2707 else
2709 value->un.int_vec[i].low = CONST_DOUBLE_LOW (elt);
2710 value->un.int_vec[i].high = CONST_DOUBLE_HIGH (elt);
2714 else if (GET_MODE_CLASS (mode) == MODE_VECTOR_FLOAT)
2716 for (i = 0; i < units; ++i)
2718 const REAL_VALUE_TYPE *r
2719 = CONST_DOUBLE_REAL_VALUE (CONST_VECTOR_ELT (x, i));
2720 REAL_VALUE_TYPE *d = &value->un.fp_vec[i];
2722 /* Copy the REAL_VALUE_TYPE by members so that we don't
2723 copy garbage from the original structure into our
2724 carefully cleaned hashing structure. */
2725 d->class = r->class;
2726 d->sign = r->sign;
2727 switch (r->class)
2729 case rvc_zero:
2730 case rvc_inf:
2731 break;
2732 case rvc_normal:
2733 d->exp = r->exp;
2734 /* FALLTHRU */
2735 case rvc_nan:
2736 memcpy (d->sig, r->sig, sizeof (r->sig));
2737 break;
2738 default:
2739 abort ();
2743 else
2744 abort ();
2746 break;
2748 case CONST_INT:
2749 value->un.addr.offset = INTVAL (x);
2750 break;
2752 case SYMBOL_REF:
2753 case LABEL_REF:
2754 case PC:
2755 value->un.addr.base = x;
2756 break;
2758 case CONST:
2759 x = XEXP (x, 0);
2760 if (GET_CODE (x) == PLUS && GET_CODE (XEXP (x, 1)) == CONST_INT)
2762 value->un.addr.base = XEXP (x, 0);
2763 value->un.addr.offset = INTVAL (XEXP (x, 1));
2765 else if (GET_CODE (x) == MINUS && GET_CODE (XEXP (x, 1)) == CONST_INT)
2767 value->un.addr.base = XEXP (x, 0);
2768 value->un.addr.offset = - INTVAL (XEXP (x, 1));
2770 else
2772 value->un.addr.base = x;
2773 value->un.addr.offset = 0;
2775 break;
2777 default:
2778 value->kind = RTX_UNKNOWN;
2779 break;
2782 if (value->kind == RTX_INT && value->un.addr.base != 0
2783 && GET_CODE (value->un.addr.base) == UNSPEC)
2785 /* For a simple UNSPEC, the base is set to the
2786 operand, the kind field is set to the index of
2787 the unspec expression.
2788 Together with the code below, in case that
2789 the operand is a SYMBOL_REF or LABEL_REF,
2790 the address of the string or the code_label
2791 is taken as base. */
2792 if (XVECLEN (value->un.addr.base, 0) == 1)
2794 value->kind = RTX_UNSPEC + XINT (value->un.addr.base, 1);
2795 value->un.addr.base = XVECEXP (value->un.addr.base, 0, 0);
2799 if (value->kind >= RTX_INT && value->un.addr.base != 0)
2800 switch (GET_CODE (value->un.addr.base))
2802 case SYMBOL_REF:
2803 /* Use the string's address, not the SYMBOL_REF's address,
2804 for the sake of addresses of library routines. */
2805 value->un.addr.symbol = XSTR (value->un.addr.base, 0);
2806 value->un.addr.base = NULL_RTX;
2807 break;
2809 case LABEL_REF:
2810 /* For a LABEL_REF, compare labels. */
2811 value->un.addr.base = XEXP (value->un.addr.base, 0);
2813 default:
2814 break;
2818 /* Given a MINUS expression, simplify it if both sides
2819 include the same symbol. */
2822 simplify_subtraction (rtx x)
2824 struct rtx_const val0, val1;
2826 decode_rtx_const (GET_MODE (x), XEXP (x, 0), &val0);
2827 decode_rtx_const (GET_MODE (x), XEXP (x, 1), &val1);
2829 if (val0.kind >= RTX_INT
2830 && val0.kind == val1.kind
2831 && val0.un.addr.base == val1.un.addr.base
2832 && val0.un.addr.symbol == val1.un.addr.symbol)
2833 return GEN_INT (val0.un.addr.offset - val1.un.addr.offset);
2835 return x;
2838 /* Compute a hash code for a constant RTL expression. */
2840 static unsigned int
2841 const_hash_rtx (enum machine_mode mode, rtx x)
2843 union {
2844 struct rtx_const value;
2845 unsigned int data[sizeof(struct rtx_const) / sizeof (unsigned int)];
2846 } u;
2848 unsigned int hi;
2849 size_t i;
2851 decode_rtx_const (mode, x, &u.value);
2853 /* Compute hashing function. */
2854 hi = 0;
2855 for (i = 0; i < ARRAY_SIZE (u.data); i++)
2856 hi = hi * 613 + u.data[i];
2858 return hi % MAX_RTX_HASH_TABLE;
2861 /* Compare a constant rtl object X with a constant-descriptor DESC.
2862 Return 1 if DESC describes a constant with the same value as X. */
2864 static int
2865 compare_constant_rtx (enum machine_mode mode, rtx x,
2866 struct constant_descriptor_rtx *desc)
2868 struct rtx_const value;
2870 decode_rtx_const (mode, x, &value);
2872 /* Compare constant contents. */
2873 return memcmp (&value, &desc->value, sizeof (struct rtx_const)) == 0;
2876 /* Construct a constant descriptor for the rtl-expression X.
2877 It is up to the caller to enter the descriptor in the hash table. */
2879 static struct constant_descriptor_rtx *
2880 record_constant_rtx (enum machine_mode mode, rtx x)
2882 struct constant_descriptor_rtx *ptr;
2884 ptr = ggc_alloc (sizeof (*ptr));
2885 decode_rtx_const (mode, x, &ptr->value);
2887 return ptr;
2890 /* Given a constant rtx X, make (or find) a memory constant for its value
2891 and return a MEM rtx to refer to it in memory. */
2894 force_const_mem (enum machine_mode mode, rtx x)
2896 int hash;
2897 struct constant_descriptor_rtx *desc;
2898 char label[256];
2899 rtx def, symbol;
2900 struct pool_constant *pool;
2901 unsigned int align;
2903 /* If we're not allowed to drop X into the constant pool, don't. */
2904 if ((*targetm.cannot_force_const_mem) (x))
2905 return NULL_RTX;
2907 /* Compute hash code of X. Search the descriptors for that hash code
2908 to see if any of them describes X. If yes, we have an rtx to use. */
2909 hash = const_hash_rtx (mode, x);
2910 for (desc = const_rtx_hash_table[hash]; desc; desc = desc->next)
2911 if (compare_constant_rtx (mode, x, desc))
2912 return desc->rtl;
2914 /* No constant equal to X is known to have been output.
2915 Make a constant descriptor to enter X in the hash table
2916 and make a MEM for it. */
2917 desc = record_constant_rtx (mode, x);
2918 desc->next = const_rtx_hash_table[hash];
2919 const_rtx_hash_table[hash] = desc;
2921 /* Align the location counter as required by EXP's data type. */
2922 align = GET_MODE_ALIGNMENT (mode == VOIDmode ? word_mode : mode);
2923 #ifdef CONSTANT_ALIGNMENT
2925 tree type = (*lang_hooks.types.type_for_mode) (mode, 0);
2926 if (type != NULL_TREE)
2927 align = CONSTANT_ALIGNMENT (make_tree (type, x), align);
2929 #endif
2931 pool_offset += (align / BITS_PER_UNIT) - 1;
2932 pool_offset &= ~ ((align / BITS_PER_UNIT) - 1);
2934 if (GET_CODE (x) == LABEL_REF)
2935 LABEL_PRESERVE_P (XEXP (x, 0)) = 1;
2937 /* Allocate a pool constant descriptor, fill it in, and chain it in. */
2938 pool = ggc_alloc (sizeof (struct pool_constant));
2939 pool->desc = desc;
2940 pool->constant = x;
2941 pool->mode = mode;
2942 pool->labelno = const_labelno;
2943 pool->align = align;
2944 pool->offset = pool_offset;
2945 pool->mark = 1;
2946 pool->next = 0;
2948 if (last_pool == 0)
2949 first_pool = pool;
2950 else
2951 last_pool->next = pool;
2953 last_pool = pool;
2954 pool_offset += GET_MODE_SIZE (mode);
2956 /* Create a string containing the label name, in LABEL. */
2957 ASM_GENERATE_INTERNAL_LABEL (label, "LC", const_labelno);
2959 ++const_labelno;
2961 /* Construct the SYMBOL_REF and the MEM. */
2963 symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
2964 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
2966 pool->desc->rtl = def = gen_rtx_MEM (mode, symbol);
2967 set_mem_attributes (def, (*lang_hooks.types.type_for_mode) (mode, 0), 1);
2968 RTX_UNCHANGING_P (def) = 1;
2970 /* Add label to symbol hash table. */
2971 hash = SYMHASH (XSTR (symbol, 0));
2972 pool->next_sym = const_rtx_sym_hash_table[hash];
2973 const_rtx_sym_hash_table[hash] = pool;
2975 /* Mark the symbol_ref as belonging to this constants pool. */
2976 CONSTANT_POOL_ADDRESS_P (symbol) = 1;
2977 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
2978 current_function_uses_const_pool = 1;
2980 return def;
2983 /* Given a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true, return a pointer to
2984 the corresponding pool_constant structure. */
2986 static struct pool_constant *
2987 find_pool_constant (struct function *f, rtx addr)
2989 struct pool_constant *pool;
2990 const char *label = XSTR (addr, 0);
2992 for (pool = f->varasm->x_const_rtx_sym_hash_table[SYMHASH (label)]; pool;
2993 pool = pool->next_sym)
2994 if (XSTR (XEXP (pool->desc->rtl, 0), 0) == label)
2995 return pool;
2997 abort ();
3000 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3003 get_pool_constant (rtx addr)
3005 return (find_pool_constant (cfun, addr))->constant;
3008 /* Given a constant pool SYMBOL_REF, return the corresponding constant
3009 and whether it has been output or not. */
3012 get_pool_constant_mark (rtx addr, bool *pmarked)
3014 struct pool_constant *pool = find_pool_constant (cfun, addr);
3015 *pmarked = (pool->mark != 0);
3016 return pool->constant;
3019 /* Likewise, but for the constant pool of a specific function. */
3022 get_pool_constant_for_function (struct function *f, rtx addr)
3024 return (find_pool_constant (f, addr))->constant;
3027 /* Similar, return the mode. */
3029 enum machine_mode
3030 get_pool_mode (rtx addr)
3032 return (find_pool_constant (cfun, addr))->mode;
3035 enum machine_mode
3036 get_pool_mode_for_function (struct function *f, rtx addr)
3038 return (find_pool_constant (f, addr))->mode;
3041 /* Similar, return the offset in the constant pool. */
3044 get_pool_offset (rtx addr)
3046 return (find_pool_constant (cfun, addr))->offset;
3049 /* Return the size of the constant pool. */
3052 get_pool_size (void)
3054 return pool_offset;
3057 /* Write all the constants in the constant pool. */
3059 void
3060 output_constant_pool (const char *fnname ATTRIBUTE_UNUSED,
3061 tree fndecl ATTRIBUTE_UNUSED)
3063 struct pool_constant *pool;
3064 rtx x;
3065 REAL_VALUE_TYPE r;
3067 /* It is possible for gcc to call force_const_mem and then to later
3068 discard the instructions which refer to the constant. In such a
3069 case we do not need to output the constant. */
3070 mark_constant_pool ();
3072 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3073 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file, fnname, fndecl, pool_offset);
3074 #endif
3076 for (pool = first_pool; pool; pool = pool->next)
3078 rtx tmp;
3080 x = pool->constant;
3082 if (! pool->mark)
3083 continue;
3085 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3086 whose CODE_LABEL has been deleted. This can occur if a jump table
3087 is eliminated by optimization. If so, write a constant of zero
3088 instead. Note that this can also happen by turning the
3089 CODE_LABEL into a NOTE. */
3090 /* ??? This seems completely and utterly wrong. Certainly it's
3091 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3092 functioning even with INSN_DELETED_P and friends. */
3094 tmp = x;
3095 switch (GET_CODE (x))
3097 case CONST:
3098 if (GET_CODE (XEXP (x, 0)) != PLUS
3099 || GET_CODE (XEXP (XEXP (x, 0), 0)) != LABEL_REF)
3100 break;
3101 tmp = XEXP (XEXP (x, 0), 0);
3102 /* FALLTHRU */
3104 case LABEL_REF:
3105 tmp = XEXP (x, 0);
3106 if (INSN_DELETED_P (tmp)
3107 || (GET_CODE (tmp) == NOTE
3108 && NOTE_LINE_NUMBER (tmp) == NOTE_INSN_DELETED))
3110 abort ();
3111 x = const0_rtx;
3113 break;
3115 default:
3116 break;
3119 /* First switch to correct section. */
3120 (*targetm.asm_out.select_rtx_section) (pool->mode, x, pool->align);
3122 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3123 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file, x, pool->mode,
3124 pool->align, pool->labelno, done);
3125 #endif
3127 assemble_align (pool->align);
3129 /* Output the label. */
3130 (*targetm.asm_out.internal_label) (asm_out_file, "LC", pool->labelno);
3132 /* Output the value of the constant itself. */
3133 switch (GET_MODE_CLASS (pool->mode))
3135 case MODE_FLOAT:
3136 if (GET_CODE (x) != CONST_DOUBLE)
3137 abort ();
3139 REAL_VALUE_FROM_CONST_DOUBLE (r, x);
3140 assemble_real (r, pool->mode, pool->align);
3141 break;
3143 case MODE_INT:
3144 case MODE_PARTIAL_INT:
3145 assemble_integer (x, GET_MODE_SIZE (pool->mode), pool->align, 1);
3146 break;
3148 case MODE_VECTOR_FLOAT:
3150 int i, units;
3151 rtx elt;
3153 if (GET_CODE (x) != CONST_VECTOR)
3154 abort ();
3156 units = CONST_VECTOR_NUNITS (x);
3158 for (i = 0; i < units; i++)
3160 elt = CONST_VECTOR_ELT (x, i);
3161 REAL_VALUE_FROM_CONST_DOUBLE (r, elt);
3162 assemble_real (r, GET_MODE_INNER (pool->mode), pool->align);
3165 break;
3167 case MODE_VECTOR_INT:
3169 int i, units;
3170 rtx elt;
3172 if (GET_CODE (x) != CONST_VECTOR)
3173 abort ();
3175 units = CONST_VECTOR_NUNITS (x);
3177 for (i = 0; i < units; i++)
3179 elt = CONST_VECTOR_ELT (x, i);
3180 assemble_integer (elt, GET_MODE_UNIT_SIZE (pool->mode),
3181 pool->align, 1);
3184 break;
3186 default:
3187 abort ();
3190 /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
3191 sections have proper size. */
3192 if (pool->align > GET_MODE_BITSIZE (pool->mode)
3193 && in_section == in_named
3194 && get_named_section_flags (in_named_name) & SECTION_MERGE)
3195 assemble_align (pool->align);
3197 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3198 done: ;
3199 #endif
3202 #ifdef ASM_OUTPUT_POOL_EPILOGUE
3203 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file, fnname, fndecl, pool_offset);
3204 #endif
3206 /* Done with this pool. */
3207 first_pool = last_pool = 0;
3210 /* Look through the instructions for this function, and mark all the
3211 entries in the constant pool which are actually being used. Emit
3212 deferred constants which have indeed been used. */
3214 static void
3215 mark_constant_pool (void)
3217 rtx insn;
3218 rtx link;
3219 struct pool_constant *pool;
3221 if (first_pool == 0 && n_deferred_constants == 0)
3222 return;
3224 for (pool = first_pool; pool; pool = pool->next)
3225 pool->mark = 0;
3227 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3228 if (INSN_P (insn))
3229 mark_constants (PATTERN (insn));
3231 for (link = current_function_epilogue_delay_list;
3232 link;
3233 link = XEXP (link, 1))
3235 insn = XEXP (link, 0);
3237 if (INSN_P (insn))
3238 mark_constants (PATTERN (insn));
3242 /* Look through appropriate parts of X, marking all entries in the
3243 constant pool which are actually being used. Entries that are only
3244 referenced by other constants are also marked as used. Emit
3245 deferred strings that are used. */
3247 static void
3248 mark_constants (rtx x)
3250 int i;
3251 const char *format_ptr;
3253 if (x == 0)
3254 return;
3256 if (GET_CODE (x) == SYMBOL_REF)
3258 mark_constant (&x, NULL);
3259 return;
3262 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3263 insns, not any notes that may be attached. We don't want to mark
3264 a constant just because it happens to appear in a REG_EQUIV note. */
3265 if (INSN_P (x))
3267 mark_constants (PATTERN (x));
3268 return;
3271 format_ptr = GET_RTX_FORMAT (GET_CODE (x));
3273 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (x)); i++)
3275 switch (*format_ptr++)
3277 case 'e':
3278 mark_constants (XEXP (x, i));
3279 break;
3281 case 'E':
3282 if (XVEC (x, i) != 0)
3284 int j;
3286 for (j = 0; j < XVECLEN (x, i); j++)
3287 mark_constants (XVECEXP (x, i, j));
3289 break;
3291 case 'S':
3292 case 's':
3293 case '0':
3294 case 'i':
3295 case 'w':
3296 case 'n':
3297 case 'u':
3298 case 'B':
3299 break;
3301 default:
3302 abort ();
3307 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3308 to as used. Emit referenced deferred strings. This function can
3309 be used with for_each_rtx to mark all SYMBOL_REFs in an rtx. */
3311 static int
3312 mark_constant (rtx *current_rtx, void *data ATTRIBUTE_UNUSED)
3314 rtx x = *current_rtx;
3316 if (x == NULL_RTX)
3317 return 0;
3319 else if (GET_CODE (x) == SYMBOL_REF)
3321 if (CONSTANT_POOL_ADDRESS_P (x))
3323 struct pool_constant *pool = find_pool_constant (cfun, x);
3324 if (pool->mark == 0)
3326 pool->mark = 1;
3327 for_each_rtx (&(pool->constant), &mark_constant, NULL);
3329 else
3330 return -1;
3332 else if (TREE_CONSTANT_POOL_ADDRESS_P (x))
3334 tree exp = SYMBOL_REF_DECL (x);
3335 if (!TREE_ASM_WRITTEN (exp))
3337 n_deferred_constants--;
3338 output_constant_def_contents (x);
3342 return 0;
3345 /* Determine what kind of relocations EXP may need. */
3348 compute_reloc_for_constant (tree exp)
3350 int reloc = 0, reloc2;
3351 tree tem;
3353 /* Give the front-end a chance to convert VALUE to something that
3354 looks more like a constant to the back-end. */
3355 exp = (*lang_hooks.expand_constant) (exp);
3357 switch (TREE_CODE (exp))
3359 case ADDR_EXPR:
3360 case FDESC_EXPR:
3361 /* Go inside any operations that get_inner_reference can handle and see
3362 if what's inside is a constant: no need to do anything here for
3363 addresses of variables or functions. */
3364 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
3365 tem = TREE_OPERAND (tem, 0))
3368 if (TREE_PUBLIC (tem))
3369 reloc |= 2;
3370 else
3371 reloc |= 1;
3372 break;
3374 case PLUS_EXPR:
3375 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3376 reloc |= compute_reloc_for_constant (TREE_OPERAND (exp, 1));
3377 break;
3379 case MINUS_EXPR:
3380 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3381 reloc2 = compute_reloc_for_constant (TREE_OPERAND (exp, 1));
3382 /* The difference of two local labels is computable at link time. */
3383 if (reloc == 1 && reloc2 == 1)
3384 reloc = 0;
3385 else
3386 reloc |= reloc2;
3387 break;
3389 case NOP_EXPR:
3390 case CONVERT_EXPR:
3391 case NON_LVALUE_EXPR:
3392 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3393 break;
3395 case CONSTRUCTOR:
3396 for (tem = CONSTRUCTOR_ELTS (exp); tem; tem = TREE_CHAIN (tem))
3397 if (TREE_VALUE (tem) != 0)
3398 reloc |= compute_reloc_for_constant (TREE_VALUE (tem));
3400 break;
3402 default:
3403 break;
3405 return reloc;
3408 /* Find all the constants whose addresses are referenced inside of EXP,
3409 and make sure assembler code with a label has been output for each one.
3410 Indicate whether an ADDR_EXPR has been encountered. */
3412 static void
3413 output_addressed_constants (tree exp)
3415 tree tem;
3417 /* Give the front-end a chance to convert VALUE to something that
3418 looks more like a constant to the back-end. */
3419 exp = (*lang_hooks.expand_constant) (exp);
3421 switch (TREE_CODE (exp))
3423 case ADDR_EXPR:
3424 case FDESC_EXPR:
3425 /* Go inside any operations that get_inner_reference can handle and see
3426 if what's inside is a constant: no need to do anything here for
3427 addresses of variables or functions. */
3428 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
3429 tem = TREE_OPERAND (tem, 0))
3432 if (TREE_CODE_CLASS (TREE_CODE (tem)) == 'c'
3433 || TREE_CODE (tem) == CONSTRUCTOR)
3434 output_constant_def (tem, 0);
3435 break;
3437 case PLUS_EXPR:
3438 case MINUS_EXPR:
3439 output_addressed_constants (TREE_OPERAND (exp, 1));
3440 /* Fall through. */
3442 case NOP_EXPR:
3443 case CONVERT_EXPR:
3444 case NON_LVALUE_EXPR:
3445 output_addressed_constants (TREE_OPERAND (exp, 0));
3446 break;
3448 case CONSTRUCTOR:
3449 for (tem = CONSTRUCTOR_ELTS (exp); tem; tem = TREE_CHAIN (tem))
3450 if (TREE_VALUE (tem) != 0)
3451 output_addressed_constants (TREE_VALUE (tem));
3453 break;
3455 default:
3456 break;
3460 /* Return nonzero if VALUE is a valid constant-valued expression
3461 for use in initializing a static variable; one that can be an
3462 element of a "constant" initializer.
3464 Return null_pointer_node if the value is absolute;
3465 if it is relocatable, return the variable that determines the relocation.
3466 We assume that VALUE has been folded as much as possible;
3467 therefore, we do not need to check for such things as
3468 arithmetic-combinations of integers. */
3470 tree
3471 initializer_constant_valid_p (tree value, tree endtype)
3473 /* Give the front-end a chance to convert VALUE to something that
3474 looks more like a constant to the back-end. */
3475 value = (*lang_hooks.expand_constant) (value);
3477 switch (TREE_CODE (value))
3479 case CONSTRUCTOR:
3480 if ((TREE_CODE (TREE_TYPE (value)) == UNION_TYPE
3481 || TREE_CODE (TREE_TYPE (value)) == RECORD_TYPE)
3482 && TREE_CONSTANT (value)
3483 && CONSTRUCTOR_ELTS (value))
3485 tree elt;
3486 bool absolute = true;
3488 for (elt = CONSTRUCTOR_ELTS (value); elt; elt = TREE_CHAIN (elt))
3490 tree reloc;
3491 value = TREE_VALUE (elt);
3492 reloc = initializer_constant_valid_p (value, TREE_TYPE (value));
3493 if (!reloc)
3494 return NULL_TREE;
3495 if (reloc != null_pointer_node)
3496 absolute = false;
3498 /* For a non-absolute relocation, there is no single
3499 variable that can be "the variable that determines the
3500 relocation." */
3501 return absolute ? null_pointer_node : error_mark_node;
3504 return TREE_STATIC (value) ? null_pointer_node : NULL_TREE;
3506 case INTEGER_CST:
3507 case VECTOR_CST:
3508 case REAL_CST:
3509 case STRING_CST:
3510 case COMPLEX_CST:
3511 return null_pointer_node;
3513 case ADDR_EXPR:
3514 case FDESC_EXPR:
3515 return staticp (TREE_OPERAND (value, 0)) ? TREE_OPERAND (value, 0) : 0;
3517 case VIEW_CONVERT_EXPR:
3518 case NON_LVALUE_EXPR:
3519 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3521 case CONVERT_EXPR:
3522 case NOP_EXPR:
3523 /* Allow conversions between pointer types. */
3524 if (POINTER_TYPE_P (TREE_TYPE (value))
3525 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3526 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3528 /* Allow conversions between real types. */
3529 if (FLOAT_TYPE_P (TREE_TYPE (value))
3530 && FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3531 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3533 /* Allow length-preserving conversions between integer types. */
3534 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
3535 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0)))
3536 && (TYPE_PRECISION (TREE_TYPE (value))
3537 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0)))))
3538 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3540 /* Allow conversions between other integer types only if
3541 explicit value. */
3542 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
3543 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3545 tree inner = initializer_constant_valid_p (TREE_OPERAND (value, 0),
3546 endtype);
3547 if (inner == null_pointer_node)
3548 return null_pointer_node;
3549 break;
3552 /* Allow (int) &foo provided int is as wide as a pointer. */
3553 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
3554 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0)))
3555 && (TYPE_PRECISION (TREE_TYPE (value))
3556 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0)))))
3557 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
3558 endtype);
3560 /* Likewise conversions from int to pointers, but also allow
3561 conversions from 0. */
3562 if (POINTER_TYPE_P (TREE_TYPE (value))
3563 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3565 if (integer_zerop (TREE_OPERAND (value, 0)))
3566 return null_pointer_node;
3567 else if (TYPE_PRECISION (TREE_TYPE (value))
3568 <= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0))))
3569 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
3570 endtype);
3573 /* Allow conversions to union types if the value inside is okay. */
3574 if (TREE_CODE (TREE_TYPE (value)) == UNION_TYPE)
3575 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
3576 endtype);
3577 break;
3579 case PLUS_EXPR:
3580 if (! INTEGRAL_TYPE_P (endtype)
3581 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
3583 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
3584 endtype);
3585 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
3586 endtype);
3587 /* If either term is absolute, use the other terms relocation. */
3588 if (valid0 == null_pointer_node)
3589 return valid1;
3590 if (valid1 == null_pointer_node)
3591 return valid0;
3593 break;
3595 case MINUS_EXPR:
3596 if (! INTEGRAL_TYPE_P (endtype)
3597 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
3599 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
3600 endtype);
3601 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
3602 endtype);
3603 /* Win if second argument is absolute. */
3604 if (valid1 == null_pointer_node)
3605 return valid0;
3606 /* Win if both arguments have the same relocation.
3607 Then the value is absolute. */
3608 if (valid0 == valid1 && valid0 != 0)
3609 return null_pointer_node;
3611 /* Since GCC guarantees that string constants are unique in the
3612 generated code, a subtraction between two copies of the same
3613 constant string is absolute. */
3614 if (valid0 && TREE_CODE (valid0) == STRING_CST &&
3615 valid1 && TREE_CODE (valid1) == STRING_CST &&
3616 TREE_STRING_POINTER (valid0) == TREE_STRING_POINTER (valid1))
3617 return null_pointer_node;
3620 /* Support differences between labels. */
3621 if (INTEGRAL_TYPE_P (endtype))
3623 tree op0, op1;
3624 op0 = TREE_OPERAND (value, 0);
3625 op1 = TREE_OPERAND (value, 1);
3627 /* Like STRIP_NOPS except allow the operand mode to widen.
3628 This works around a feature of fold that simplifies
3629 (int)(p1 - p2) to ((int)p1 - (int)p2) under the theory
3630 that the narrower operation is cheaper. */
3632 while (TREE_CODE (op0) == NOP_EXPR
3633 || TREE_CODE (op0) == CONVERT_EXPR
3634 || TREE_CODE (op0) == NON_LVALUE_EXPR)
3636 tree inner = TREE_OPERAND (op0, 0);
3637 if (inner == error_mark_node
3638 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
3639 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0)))
3640 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
3641 break;
3642 op0 = inner;
3645 while (TREE_CODE (op1) == NOP_EXPR
3646 || TREE_CODE (op1) == CONVERT_EXPR
3647 || TREE_CODE (op1) == NON_LVALUE_EXPR)
3649 tree inner = TREE_OPERAND (op1, 0);
3650 if (inner == error_mark_node
3651 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
3652 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op1)))
3653 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
3654 break;
3655 op1 = inner;
3658 if (TREE_CODE (op0) == ADDR_EXPR
3659 && TREE_CODE (TREE_OPERAND (op0, 0)) == LABEL_DECL
3660 && TREE_CODE (op1) == ADDR_EXPR
3661 && TREE_CODE (TREE_OPERAND (op1, 0)) == LABEL_DECL)
3662 return null_pointer_node;
3664 break;
3666 default:
3667 break;
3670 return 0;
3673 /* Output assembler code for constant EXP to FILE, with no label.
3674 This includes the pseudo-op such as ".int" or ".byte", and a newline.
3675 Assumes output_addressed_constants has been done on EXP already.
3677 Generate exactly SIZE bytes of assembler data, padding at the end
3678 with zeros if necessary. SIZE must always be specified.
3680 SIZE is important for structure constructors,
3681 since trailing members may have been omitted from the constructor.
3682 It is also important for initialization of arrays from string constants
3683 since the full length of the string constant might not be wanted.
3684 It is also needed for initialization of unions, where the initializer's
3685 type is just one member, and that may not be as long as the union.
3687 There a case in which we would fail to output exactly SIZE bytes:
3688 for a structure constructor that wants to produce more than SIZE bytes.
3689 But such constructors will never be generated for any possible input.
3691 ALIGN is the alignment of the data in bits. */
3693 void
3694 output_constant (tree exp, unsigned HOST_WIDE_INT size, unsigned int align)
3696 enum tree_code code;
3697 unsigned HOST_WIDE_INT thissize;
3699 /* Some front-ends use constants other than the standard language-independent
3700 varieties, but which may still be output directly. Give the front-end a
3701 chance to convert EXP to a language-independent representation. */
3702 exp = (*lang_hooks.expand_constant) (exp);
3704 if (size == 0 || flag_syntax_only)
3705 return;
3707 /* Eliminate any conversions since we'll be outputting the underlying
3708 constant. */
3709 while (TREE_CODE (exp) == NOP_EXPR || TREE_CODE (exp) == CONVERT_EXPR
3710 || TREE_CODE (exp) == NON_LVALUE_EXPR
3711 || TREE_CODE (exp) == VIEW_CONVERT_EXPR)
3712 exp = TREE_OPERAND (exp, 0);
3714 code = TREE_CODE (TREE_TYPE (exp));
3715 thissize = int_size_in_bytes (TREE_TYPE (exp));
3717 /* Allow a constructor with no elements for any data type.
3718 This means to fill the space with zeros. */
3719 if (TREE_CODE (exp) == CONSTRUCTOR && CONSTRUCTOR_ELTS (exp) == 0)
3721 assemble_zeros (size);
3722 return;
3725 if (TREE_CODE (exp) == FDESC_EXPR)
3727 #ifdef ASM_OUTPUT_FDESC
3728 HOST_WIDE_INT part = tree_low_cst (TREE_OPERAND (exp, 1), 0);
3729 tree decl = TREE_OPERAND (exp, 0);
3730 ASM_OUTPUT_FDESC (asm_out_file, decl, part);
3731 #else
3732 abort ();
3733 #endif
3734 return;
3737 /* Now output the underlying data. If we've handling the padding, return.
3738 Otherwise, break and ensure THISSIZE is the size written. */
3739 switch (code)
3741 case CHAR_TYPE:
3742 case BOOLEAN_TYPE:
3743 case INTEGER_TYPE:
3744 case ENUMERAL_TYPE:
3745 case POINTER_TYPE:
3746 case REFERENCE_TYPE:
3747 case OFFSET_TYPE:
3748 if (! assemble_integer (expand_expr (exp, NULL_RTX, VOIDmode,
3749 EXPAND_INITIALIZER),
3750 size, align, 0))
3751 error ("initializer for integer value is too complicated");
3752 break;
3754 case REAL_TYPE:
3755 if (TREE_CODE (exp) != REAL_CST)
3756 error ("initializer for floating value is not a floating constant");
3758 assemble_real (TREE_REAL_CST (exp),
3759 mode_for_size (size * BITS_PER_UNIT, MODE_FLOAT, 0),
3760 align);
3761 break;
3763 case COMPLEX_TYPE:
3764 output_constant (TREE_REALPART (exp), thissize / 2, align);
3765 output_constant (TREE_IMAGPART (exp), thissize / 2,
3766 min_align (align, BITS_PER_UNIT * (thissize / 2)));
3767 break;
3769 case ARRAY_TYPE:
3770 case VECTOR_TYPE:
3771 if (TREE_CODE (exp) == CONSTRUCTOR)
3773 output_constructor (exp, size, align);
3774 return;
3776 else if (TREE_CODE (exp) == STRING_CST)
3778 thissize = MIN ((unsigned HOST_WIDE_INT)TREE_STRING_LENGTH (exp),
3779 size);
3780 assemble_string (TREE_STRING_POINTER (exp), thissize);
3782 else if (TREE_CODE (exp) == VECTOR_CST)
3784 int elt_size;
3785 tree link;
3786 unsigned int nalign;
3787 enum machine_mode inner;
3789 inner = GET_MODE_INNER (TYPE_MODE (TREE_TYPE (exp)));
3790 nalign = MIN (align, GET_MODE_ALIGNMENT (inner));
3792 elt_size = GET_MODE_UNIT_SIZE (TYPE_MODE (TREE_TYPE (exp)));
3794 link = TREE_VECTOR_CST_ELTS (exp);
3795 output_constant (TREE_VALUE (link), elt_size, align);
3796 while ((link = TREE_CHAIN (link)) != NULL)
3797 output_constant (TREE_VALUE (link), elt_size, nalign);
3799 else
3800 abort ();
3801 break;
3803 case RECORD_TYPE:
3804 case UNION_TYPE:
3805 if (TREE_CODE (exp) == CONSTRUCTOR)
3806 output_constructor (exp, size, align);
3807 else
3808 abort ();
3809 return;
3811 case SET_TYPE:
3812 if (TREE_CODE (exp) == INTEGER_CST)
3813 assemble_integer (expand_expr (exp, NULL_RTX,
3814 VOIDmode, EXPAND_INITIALIZER),
3815 thissize, align, 1);
3816 else if (TREE_CODE (exp) == CONSTRUCTOR)
3818 unsigned char *buffer = alloca (thissize);
3819 if (get_set_constructor_bytes (exp, buffer, thissize))
3820 abort ();
3821 assemble_string ((char *) buffer, thissize);
3823 else
3824 error ("unknown set constructor type");
3825 return;
3827 case ERROR_MARK:
3828 return;
3830 default:
3831 abort ();
3834 if (size > thissize)
3835 assemble_zeros (size - thissize);
3839 /* Subroutine of output_constructor, used for computing the size of
3840 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
3841 type with an unspecified upper bound. */
3843 static unsigned HOST_WIDE_INT
3844 array_size_for_constructor (tree val)
3846 tree max_index, i;
3848 /* This code used to attempt to handle string constants that are not
3849 arrays of single-bytes, but nothing else does, so there's no point in
3850 doing it here. */
3851 if (TREE_CODE (val) == STRING_CST)
3852 return TREE_STRING_LENGTH (val);
3854 max_index = NULL_TREE;
3855 for (i = CONSTRUCTOR_ELTS (val); i; i = TREE_CHAIN (i))
3857 tree index = TREE_PURPOSE (i);
3859 if (TREE_CODE (index) == RANGE_EXPR)
3860 index = TREE_OPERAND (index, 1);
3861 if (max_index == NULL_TREE || tree_int_cst_lt (max_index, index))
3862 max_index = index;
3865 if (max_index == NULL_TREE)
3866 return 0;
3868 /* Compute the total number of array elements. */
3869 i = size_binop (MINUS_EXPR, convert (sizetype, max_index),
3870 convert (sizetype,
3871 TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val)))));
3872 i = size_binop (PLUS_EXPR, i, convert (sizetype, integer_one_node));
3874 /* Multiply by the array element unit size to find number of bytes. */
3875 i = size_binop (MULT_EXPR, i, TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val))));
3877 return tree_low_cst (i, 1);
3880 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
3881 Generate at least SIZE bytes, padding if necessary. */
3883 static void
3884 output_constructor (tree exp, unsigned HOST_WIDE_INT size,
3885 unsigned int align)
3887 tree type = TREE_TYPE (exp);
3888 tree link, field = 0;
3889 tree min_index = 0;
3890 /* Number of bytes output or skipped so far.
3891 In other words, current position within the constructor. */
3892 HOST_WIDE_INT total_bytes = 0;
3893 /* Nonzero means BYTE contains part of a byte, to be output. */
3894 int byte_buffer_in_use = 0;
3895 int byte = 0;
3897 if (HOST_BITS_PER_WIDE_INT < BITS_PER_UNIT)
3898 abort ();
3900 if (TREE_CODE (type) == RECORD_TYPE)
3901 field = TYPE_FIELDS (type);
3903 if (TREE_CODE (type) == ARRAY_TYPE
3904 && TYPE_DOMAIN (type) != 0)
3905 min_index = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
3907 /* As LINK goes through the elements of the constant,
3908 FIELD goes through the structure fields, if the constant is a structure.
3909 if the constant is a union, then we override this,
3910 by getting the field from the TREE_LIST element.
3911 But the constant could also be an array. Then FIELD is zero.
3913 There is always a maximum of one element in the chain LINK for unions
3914 (even if the initializer in a source program incorrectly contains
3915 more one). */
3916 for (link = CONSTRUCTOR_ELTS (exp);
3917 link;
3918 link = TREE_CHAIN (link),
3919 field = field ? TREE_CHAIN (field) : 0)
3921 tree val = TREE_VALUE (link);
3922 tree index = 0;
3924 /* The element in a union constructor specifies the proper field
3925 or index. */
3926 if ((TREE_CODE (type) == RECORD_TYPE || TREE_CODE (type) == UNION_TYPE
3927 || TREE_CODE (type) == QUAL_UNION_TYPE)
3928 && TREE_PURPOSE (link) != 0)
3929 field = TREE_PURPOSE (link);
3931 else if (TREE_CODE (type) == ARRAY_TYPE)
3932 index = TREE_PURPOSE (link);
3934 /* Eliminate the marker that makes a cast not be an lvalue. */
3935 if (val != 0)
3936 STRIP_NOPS (val);
3938 if (index && TREE_CODE (index) == RANGE_EXPR)
3940 unsigned HOST_WIDE_INT fieldsize
3941 = int_size_in_bytes (TREE_TYPE (type));
3942 HOST_WIDE_INT lo_index = tree_low_cst (TREE_OPERAND (index, 0), 0);
3943 HOST_WIDE_INT hi_index = tree_low_cst (TREE_OPERAND (index, 1), 0);
3944 HOST_WIDE_INT index;
3945 unsigned int align2 = min_align (align, fieldsize * BITS_PER_UNIT);
3947 for (index = lo_index; index <= hi_index; index++)
3949 /* Output the element's initial value. */
3950 if (val == 0)
3951 assemble_zeros (fieldsize);
3952 else
3953 output_constant (val, fieldsize, align2);
3955 /* Count its size. */
3956 total_bytes += fieldsize;
3959 else if (field == 0 || !DECL_BIT_FIELD (field))
3961 /* An element that is not a bit-field. */
3963 unsigned HOST_WIDE_INT fieldsize;
3964 /* Since this structure is static,
3965 we know the positions are constant. */
3966 HOST_WIDE_INT pos = field ? int_byte_position (field) : 0;
3967 unsigned int align2;
3969 if (index != 0)
3970 pos = (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (val)), 1)
3971 * (tree_low_cst (index, 0) - tree_low_cst (min_index, 0)));
3973 /* Output any buffered-up bit-fields preceding this element. */
3974 if (byte_buffer_in_use)
3976 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
3977 total_bytes++;
3978 byte_buffer_in_use = 0;
3981 /* Advance to offset of this element.
3982 Note no alignment needed in an array, since that is guaranteed
3983 if each element has the proper size. */
3984 if ((field != 0 || index != 0) && pos != total_bytes)
3986 assemble_zeros (pos - total_bytes);
3987 total_bytes = pos;
3990 /* Find the alignment of this element. */
3991 align2 = min_align (align, BITS_PER_UNIT * pos);
3993 /* Determine size this element should occupy. */
3994 if (field)
3996 fieldsize = 0;
3998 /* If this is an array with an unspecified upper bound,
3999 the initializer determines the size. */
4000 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4001 but we cannot do this until the deprecated support for
4002 initializing zero-length array members is removed. */
4003 if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
4004 && TYPE_DOMAIN (TREE_TYPE (field))
4005 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field))))
4007 fieldsize = array_size_for_constructor (val);
4008 /* Given a non-empty initialization, this field had
4009 better be last. */
4010 if (fieldsize != 0 && TREE_CHAIN (field) != NULL_TREE)
4011 abort ();
4013 else if (DECL_SIZE_UNIT (field))
4015 /* ??? This can't be right. If the decl size overflows
4016 a host integer we will silently emit no data. */
4017 if (host_integerp (DECL_SIZE_UNIT (field), 1))
4018 fieldsize = tree_low_cst (DECL_SIZE_UNIT (field), 1);
4021 else
4022 fieldsize = int_size_in_bytes (TREE_TYPE (type));
4024 /* Output the element's initial value. */
4025 if (val == 0)
4026 assemble_zeros (fieldsize);
4027 else
4028 output_constant (val, fieldsize, align2);
4030 /* Count its size. */
4031 total_bytes += fieldsize;
4033 else if (val != 0 && TREE_CODE (val) != INTEGER_CST)
4034 error ("invalid initial value for member `%s'",
4035 IDENTIFIER_POINTER (DECL_NAME (field)));
4036 else
4038 /* Element that is a bit-field. */
4040 HOST_WIDE_INT next_offset = int_bit_position (field);
4041 HOST_WIDE_INT end_offset
4042 = (next_offset + tree_low_cst (DECL_SIZE (field), 1));
4044 if (val == 0)
4045 val = integer_zero_node;
4047 /* If this field does not start in this (or, next) byte,
4048 skip some bytes. */
4049 if (next_offset / BITS_PER_UNIT != total_bytes)
4051 /* Output remnant of any bit field in previous bytes. */
4052 if (byte_buffer_in_use)
4054 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4055 total_bytes++;
4056 byte_buffer_in_use = 0;
4059 /* If still not at proper byte, advance to there. */
4060 if (next_offset / BITS_PER_UNIT != total_bytes)
4062 assemble_zeros (next_offset / BITS_PER_UNIT - total_bytes);
4063 total_bytes = next_offset / BITS_PER_UNIT;
4067 if (! byte_buffer_in_use)
4068 byte = 0;
4070 /* We must split the element into pieces that fall within
4071 separate bytes, and combine each byte with previous or
4072 following bit-fields. */
4074 /* next_offset is the offset n fbits from the beginning of
4075 the structure to the next bit of this element to be processed.
4076 end_offset is the offset of the first bit past the end of
4077 this element. */
4078 while (next_offset < end_offset)
4080 int this_time;
4081 int shift;
4082 HOST_WIDE_INT value;
4083 HOST_WIDE_INT next_byte = next_offset / BITS_PER_UNIT;
4084 HOST_WIDE_INT next_bit = next_offset % BITS_PER_UNIT;
4086 /* Advance from byte to byte
4087 within this element when necessary. */
4088 while (next_byte != total_bytes)
4090 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4091 total_bytes++;
4092 byte = 0;
4095 /* Number of bits we can process at once
4096 (all part of the same byte). */
4097 this_time = MIN (end_offset - next_offset,
4098 BITS_PER_UNIT - next_bit);
4099 if (BYTES_BIG_ENDIAN)
4101 /* On big-endian machine, take the most significant bits
4102 first (of the bits that are significant)
4103 and put them into bytes from the most significant end. */
4104 shift = end_offset - next_offset - this_time;
4106 /* Don't try to take a bunch of bits that cross
4107 the word boundary in the INTEGER_CST. We can
4108 only select bits from the LOW or HIGH part
4109 not from both. */
4110 if (shift < HOST_BITS_PER_WIDE_INT
4111 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4113 this_time = shift + this_time - HOST_BITS_PER_WIDE_INT;
4114 shift = HOST_BITS_PER_WIDE_INT;
4117 /* Now get the bits from the appropriate constant word. */
4118 if (shift < HOST_BITS_PER_WIDE_INT)
4119 value = TREE_INT_CST_LOW (val);
4120 else if (shift < 2 * HOST_BITS_PER_WIDE_INT)
4122 value = TREE_INT_CST_HIGH (val);
4123 shift -= HOST_BITS_PER_WIDE_INT;
4125 else
4126 abort ();
4128 /* Get the result. This works only when:
4129 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4130 byte |= (((value >> shift)
4131 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4132 << (BITS_PER_UNIT - this_time - next_bit));
4134 else
4136 /* On little-endian machines,
4137 take first the least significant bits of the value
4138 and pack them starting at the least significant
4139 bits of the bytes. */
4140 shift = next_offset - int_bit_position (field);
4142 /* Don't try to take a bunch of bits that cross
4143 the word boundary in the INTEGER_CST. We can
4144 only select bits from the LOW or HIGH part
4145 not from both. */
4146 if (shift < HOST_BITS_PER_WIDE_INT
4147 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4148 this_time = (HOST_BITS_PER_WIDE_INT - shift);
4150 /* Now get the bits from the appropriate constant word. */
4151 if (shift < HOST_BITS_PER_WIDE_INT)
4152 value = TREE_INT_CST_LOW (val);
4153 else if (shift < 2 * HOST_BITS_PER_WIDE_INT)
4155 value = TREE_INT_CST_HIGH (val);
4156 shift -= HOST_BITS_PER_WIDE_INT;
4158 else
4159 abort ();
4161 /* Get the result. This works only when:
4162 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4163 byte |= (((value >> shift)
4164 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4165 << next_bit);
4168 next_offset += this_time;
4169 byte_buffer_in_use = 1;
4174 if (byte_buffer_in_use)
4176 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4177 total_bytes++;
4180 if ((unsigned HOST_WIDE_INT)total_bytes < size)
4181 assemble_zeros (size - total_bytes);
4184 /* This TREE_LIST contains any weak symbol declarations waiting
4185 to be emitted. */
4186 static GTY(()) tree weak_decls;
4188 /* Mark DECL as weak. */
4190 static void
4191 mark_weak (tree decl)
4193 DECL_WEAK (decl) = 1;
4195 if (DECL_RTL_SET_P (decl)
4196 && GET_CODE (DECL_RTL (decl)) == MEM
4197 && XEXP (DECL_RTL (decl), 0)
4198 && GET_CODE (XEXP (DECL_RTL (decl), 0)) == SYMBOL_REF)
4199 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl), 0)) = 1;
4202 /* Merge weak status between NEWDECL and OLDDECL. */
4204 void
4205 merge_weak (tree newdecl, tree olddecl)
4207 if (DECL_WEAK (newdecl) == DECL_WEAK (olddecl))
4208 return;
4210 if (DECL_WEAK (newdecl))
4212 tree wd;
4214 /* NEWDECL is weak, but OLDDECL is not. */
4216 /* If we already output the OLDDECL, we're in trouble; we can't
4217 go back and make it weak. This error cannot caught in
4218 declare_weak because the NEWDECL and OLDDECL was not yet
4219 been merged; therefore, TREE_ASM_WRITTEN was not set. */
4220 if (TREE_ASM_WRITTEN (olddecl))
4221 error ("%Jweak declaration of '%D' must precede definition",
4222 newdecl, newdecl);
4224 /* If we've already generated rtl referencing OLDDECL, we may
4225 have done so in a way that will not function properly with
4226 a weak symbol. */
4227 else if (TREE_USED (olddecl)
4228 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl)))
4229 warning ("%Jweak declaration of '%D' after first use results "
4230 "in unspecified behavior", newdecl, newdecl);
4232 if (SUPPORTS_WEAK)
4234 /* We put the NEWDECL on the weak_decls list at some point.
4235 Replace it with the OLDDECL. */
4236 for (wd = weak_decls; wd; wd = TREE_CHAIN (wd))
4237 if (TREE_VALUE (wd) == newdecl)
4239 TREE_VALUE (wd) = olddecl;
4240 break;
4242 /* We may not find the entry on the list. If NEWDECL is a
4243 weak alias, then we will have already called
4244 globalize_decl to remove the entry; in that case, we do
4245 not need to do anything. */
4248 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
4249 mark_weak (olddecl);
4251 else
4252 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
4253 weak. Just update NEWDECL to indicate that it's weak too. */
4254 mark_weak (newdecl);
4257 /* Declare DECL to be a weak symbol. */
4259 void
4260 declare_weak (tree decl)
4262 if (! TREE_PUBLIC (decl))
4263 error ("%Jweak declaration of '%D' must be public", decl, decl);
4264 else if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
4265 error ("%Jweak declaration of '%D' must precede definition", decl, decl);
4266 else if (SUPPORTS_WEAK)
4268 if (! DECL_WEAK (decl))
4269 weak_decls = tree_cons (NULL, decl, weak_decls);
4271 else
4272 warning ("%Jweak declaration of '%D' not supported", decl, decl);
4274 mark_weak (decl);
4277 /* Emit any pending weak declarations. */
4279 void
4280 weak_finish (void)
4282 tree t;
4284 for (t = weak_decls; t; t = TREE_CHAIN (t))
4286 tree decl = TREE_VALUE (t);
4287 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
4288 const char *const name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
4289 #endif
4291 if (! TREE_USED (decl))
4292 continue;
4294 #ifdef ASM_WEAKEN_DECL
4295 ASM_WEAKEN_DECL (asm_out_file, decl, name, NULL);
4296 #else
4297 #ifdef ASM_WEAKEN_LABEL
4298 ASM_WEAKEN_LABEL (asm_out_file, name);
4299 #else
4300 #ifdef ASM_OUTPUT_WEAK_ALIAS
4301 warning ("only weak aliases are supported in this configuration");
4302 return;
4303 #endif
4304 #endif
4305 #endif
4309 /* Emit the assembly bits to indicate that DECL is globally visible. */
4311 static void
4312 globalize_decl (tree decl)
4314 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
4316 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
4317 if (DECL_WEAK (decl))
4319 tree *p, t;
4321 #ifdef ASM_WEAKEN_DECL
4322 ASM_WEAKEN_DECL (asm_out_file, decl, name, 0);
4323 #else
4324 ASM_WEAKEN_LABEL (asm_out_file, name);
4325 #endif
4327 /* Remove this function from the pending weak list so that
4328 we do not emit multiple .weak directives for it. */
4329 for (p = &weak_decls; (t = *p) ; )
4331 if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
4332 *p = TREE_CHAIN (t);
4333 else
4334 p = &TREE_CHAIN (t);
4336 return;
4338 #endif
4340 (*targetm.asm_out.globalize_label) (asm_out_file, name);
4343 /* Emit an assembler directive to make the symbol for DECL an alias to
4344 the symbol for TARGET. */
4346 void
4347 assemble_alias (tree decl, tree target ATTRIBUTE_UNUSED)
4349 const char *name;
4351 /* We must force creation of DECL_RTL for debug info generation, even though
4352 we don't use it here. */
4353 make_decl_rtl (decl, NULL);
4355 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
4357 #ifdef ASM_OUTPUT_DEF
4358 /* Make name accessible from other files, if appropriate. */
4360 if (TREE_PUBLIC (decl))
4362 globalize_decl (decl);
4363 maybe_assemble_visibility (decl);
4366 #ifdef ASM_OUTPUT_DEF_FROM_DECLS
4367 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file, decl, target);
4368 #else
4369 ASM_OUTPUT_DEF (asm_out_file, name, IDENTIFIER_POINTER (target));
4370 #endif
4371 #else /* !ASM_OUTPUT_DEF */
4372 #if defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
4373 if (! DECL_WEAK (decl))
4374 warning ("only weak aliases are supported in this configuration");
4376 #ifdef ASM_WEAKEN_DECL
4377 ASM_WEAKEN_DECL (asm_out_file, decl, name, IDENTIFIER_POINTER (target));
4378 #else
4379 ASM_OUTPUT_WEAK_ALIAS (asm_out_file, name, IDENTIFIER_POINTER (target));
4380 #endif
4381 #else
4382 warning ("alias definitions not supported in this configuration; ignored");
4383 #endif
4384 #endif
4386 TREE_USED (decl) = 1;
4387 TREE_ASM_WRITTEN (decl) = 1;
4388 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl)) = 1;
4391 /* Emit an assembler directive to set symbol for DECL visibility to
4392 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
4394 void
4395 default_assemble_visibility (tree decl, int vis)
4397 static const char * const visibility_types[] = {
4398 NULL, "internal", "hidden", "protected"
4401 const char *name, *type;
4403 name = (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
4404 type = visibility_types[vis];
4406 #ifdef HAVE_GAS_HIDDEN
4407 fprintf (asm_out_file, "\t.%s\t", type);
4408 assemble_name (asm_out_file, name);
4409 fprintf (asm_out_file, "\n");
4410 #else
4411 warning ("visibility attribute not supported in this configuration; ignored");
4412 #endif
4415 /* A helper function to call assemble_visibility when needed for a decl. */
4417 static void
4418 maybe_assemble_visibility (tree decl)
4420 enum symbol_visibility vis = decl_visibility (decl);
4422 if (vis != VISIBILITY_DEFAULT)
4423 (* targetm.asm_out.visibility) (decl, vis);
4426 /* Returns 1 if the target configuration supports defining public symbols
4427 so that one of them will be chosen at link time instead of generating a
4428 multiply-defined symbol error, whether through the use of weak symbols or
4429 a target-specific mechanism for having duplicates discarded. */
4432 supports_one_only (void)
4434 if (SUPPORTS_ONE_ONLY)
4435 return 1;
4436 return SUPPORTS_WEAK;
4439 /* Set up DECL as a public symbol that can be defined in multiple
4440 translation units without generating a linker error. */
4442 void
4443 make_decl_one_only (tree decl)
4445 if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != FUNCTION_DECL)
4446 abort ();
4448 TREE_PUBLIC (decl) = 1;
4450 if (TREE_CODE (decl) == VAR_DECL
4451 && (DECL_INITIAL (decl) == 0 || DECL_INITIAL (decl) == error_mark_node))
4452 DECL_COMMON (decl) = 1;
4453 else if (SUPPORTS_ONE_ONLY)
4455 #ifdef MAKE_DECL_ONE_ONLY
4456 MAKE_DECL_ONE_ONLY (decl);
4457 #endif
4458 DECL_ONE_ONLY (decl) = 1;
4460 else if (SUPPORTS_WEAK)
4461 DECL_WEAK (decl) = 1;
4462 else
4463 abort ();
4466 void
4467 init_varasm_once (void)
4469 in_named_htab = htab_create_ggc (31, in_named_entry_hash,
4470 in_named_entry_eq, NULL);
4471 const_desc_htab = htab_create_ggc (1009, const_desc_hash,
4472 const_desc_eq, NULL);
4474 const_alias_set = new_alias_set ();
4477 enum tls_model
4478 decl_tls_model (tree decl)
4480 enum tls_model kind;
4481 tree attr = lookup_attribute ("tls_model", DECL_ATTRIBUTES (decl));
4482 bool is_local;
4484 if (attr)
4486 attr = TREE_VALUE (TREE_VALUE (attr));
4487 if (TREE_CODE (attr) != STRING_CST)
4488 abort ();
4489 if (!strcmp (TREE_STRING_POINTER (attr), "local-exec"))
4490 kind = TLS_MODEL_LOCAL_EXEC;
4491 else if (!strcmp (TREE_STRING_POINTER (attr), "initial-exec"))
4492 kind = TLS_MODEL_INITIAL_EXEC;
4493 else if (!strcmp (TREE_STRING_POINTER (attr), "local-dynamic"))
4494 kind = optimize ? TLS_MODEL_LOCAL_DYNAMIC : TLS_MODEL_GLOBAL_DYNAMIC;
4495 else if (!strcmp (TREE_STRING_POINTER (attr), "global-dynamic"))
4496 kind = TLS_MODEL_GLOBAL_DYNAMIC;
4497 else
4498 abort ();
4499 return kind;
4502 is_local = (*targetm.binds_local_p) (decl);
4503 if (!flag_pic)
4505 if (is_local)
4506 kind = TLS_MODEL_LOCAL_EXEC;
4507 else
4508 kind = TLS_MODEL_INITIAL_EXEC;
4510 /* Local dynamic is inefficient when we're not combining the
4511 parts of the address. */
4512 else if (optimize && is_local)
4513 kind = TLS_MODEL_LOCAL_DYNAMIC;
4514 else
4515 kind = TLS_MODEL_GLOBAL_DYNAMIC;
4516 if (kind < flag_tls_default)
4517 kind = flag_tls_default;
4519 return kind;
4522 enum symbol_visibility
4523 decl_visibility (tree decl)
4525 tree attr = lookup_attribute ("visibility", DECL_ATTRIBUTES (decl));
4527 if (attr)
4529 const char *which = TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr)));
4531 if (strcmp (which, "default") == 0)
4532 return VISIBILITY_DEFAULT;
4533 if (strcmp (which, "internal") == 0)
4534 return VISIBILITY_INTERNAL;
4535 if (strcmp (which, "hidden") == 0)
4536 return VISIBILITY_HIDDEN;
4537 if (strcmp (which, "protected") == 0)
4538 return VISIBILITY_PROTECTED;
4540 abort ();
4543 return VISIBILITY_DEFAULT;
4546 /* Select a set of attributes for section NAME based on the properties
4547 of DECL and whether or not RELOC indicates that DECL's initializer
4548 might contain runtime relocations.
4550 We make the section read-only and executable for a function decl,
4551 read-only for a const data decl, and writable for a non-const data decl. */
4553 unsigned int
4554 default_section_type_flags (tree decl, const char *name, int reloc)
4556 return default_section_type_flags_1 (decl, name, reloc, flag_pic);
4559 unsigned int
4560 default_section_type_flags_1 (tree decl, const char *name, int reloc,
4561 int shlib)
4563 unsigned int flags;
4565 if (decl && TREE_CODE (decl) == FUNCTION_DECL)
4566 flags = SECTION_CODE;
4567 else if (decl && decl_readonly_section_1 (decl, reloc, shlib))
4568 flags = 0;
4569 else
4570 flags = SECTION_WRITE;
4572 if (decl && DECL_ONE_ONLY (decl))
4573 flags |= SECTION_LINKONCE;
4575 if (decl && TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL (decl))
4576 flags |= SECTION_TLS | SECTION_WRITE;
4578 if (strcmp (name, ".bss") == 0
4579 || strncmp (name, ".bss.", 5) == 0
4580 || strncmp (name, ".gnu.linkonce.b.", 16) == 0
4581 || strcmp (name, ".sbss") == 0
4582 || strncmp (name, ".sbss.", 6) == 0
4583 || strncmp (name, ".gnu.linkonce.sb.", 17) == 0
4584 || strcmp (name, ".tbss") == 0
4585 || strncmp (name, ".gnu.linkonce.tb.", 17) == 0)
4586 flags |= SECTION_BSS;
4588 if (strcmp (name, ".tdata") == 0
4589 || strcmp (name, ".tbss") == 0
4590 || strncmp (name, ".gnu.linkonce.td.", 17) == 0
4591 || strncmp (name, ".gnu.linkonce.tb.", 17) == 0)
4592 flags |= SECTION_TLS;
4594 /* These three sections have special ELF types. They are neither
4595 SHT_PROGBITS nor SHT_NOBITS, so when changing sections we don't
4596 want to print a section type (@progbits or @nobits). If someone
4597 is silly enough to emit code or TLS variables to one of these
4598 sections, then don't handle them specially. */
4599 if (!(flags & (SECTION_CODE | SECTION_BSS | SECTION_TLS))
4600 && (strcmp (name, ".init_array") == 0
4601 || strcmp (name, ".fini_array") == 0
4602 || strcmp (name, ".preinit_array") == 0))
4603 flags |= SECTION_NOTYPE;
4605 return flags;
4608 /* Output assembly to switch to section NAME with attribute FLAGS.
4609 Four variants for common object file formats. */
4611 void
4612 default_no_named_section (const char *name ATTRIBUTE_UNUSED,
4613 unsigned int flags ATTRIBUTE_UNUSED)
4615 /* Some object formats don't support named sections at all. The
4616 front-end should already have flagged this as an error. */
4617 abort ();
4620 void
4621 default_elf_asm_named_section (const char *name, unsigned int flags)
4623 char flagchars[10], *f = flagchars;
4625 if (! named_section_first_declaration (name))
4627 fprintf (asm_out_file, "\t.section\t%s\n", name);
4628 return;
4631 if (!(flags & SECTION_DEBUG))
4632 *f++ = 'a';
4633 if (flags & SECTION_WRITE)
4634 *f++ = 'w';
4635 if (flags & SECTION_CODE)
4636 *f++ = 'x';
4637 if (flags & SECTION_SMALL)
4638 *f++ = 's';
4639 if (flags & SECTION_MERGE)
4640 *f++ = 'M';
4641 if (flags & SECTION_STRINGS)
4642 *f++ = 'S';
4643 if (flags & SECTION_TLS)
4644 *f++ = 'T';
4645 *f = '\0';
4647 fprintf (asm_out_file, "\t.section\t%s,\"%s\"", name, flagchars);
4649 if (!(flags & SECTION_NOTYPE))
4651 const char *type;
4653 if (flags & SECTION_BSS)
4654 type = "nobits";
4655 else
4656 type = "progbits";
4658 fprintf (asm_out_file, ",@%s", type);
4660 if (flags & SECTION_ENTSIZE)
4661 fprintf (asm_out_file, ",%d", flags & SECTION_ENTSIZE);
4664 putc ('\n', asm_out_file);
4667 void
4668 default_coff_asm_named_section (const char *name, unsigned int flags)
4670 char flagchars[8], *f = flagchars;
4672 if (flags & SECTION_WRITE)
4673 *f++ = 'w';
4674 if (flags & SECTION_CODE)
4675 *f++ = 'x';
4676 *f = '\0';
4678 fprintf (asm_out_file, "\t.section\t%s,\"%s\"\n", name, flagchars);
4681 void
4682 default_pe_asm_named_section (const char *name, unsigned int flags)
4684 default_coff_asm_named_section (name, flags);
4686 if (flags & SECTION_LINKONCE)
4688 /* Functions may have been compiled at various levels of
4689 optimization so we can't use `same_size' here.
4690 Instead, have the linker pick one. */
4691 fprintf (asm_out_file, "\t.linkonce %s\n",
4692 (flags & SECTION_CODE ? "discard" : "same_size"));
4696 /* The lame default section selector. */
4698 void
4699 default_select_section (tree decl, int reloc,
4700 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
4702 bool readonly = false;
4704 if (DECL_P (decl))
4706 if (decl_readonly_section (decl, reloc))
4707 readonly = true;
4709 else if (TREE_CODE (decl) == CONSTRUCTOR)
4711 if (! ((flag_pic && reloc)
4712 || !TREE_READONLY (decl)
4713 || TREE_SIDE_EFFECTS (decl)
4714 || !TREE_CONSTANT (decl)))
4715 readonly = true;
4717 else if (TREE_CODE (decl) == STRING_CST)
4718 readonly = !flag_writable_strings;
4719 else if (! (flag_pic && reloc))
4720 readonly = true;
4722 if (readonly)
4723 readonly_data_section ();
4724 else
4725 data_section ();
4728 /* A helper function for default_elf_select_section and
4729 default_elf_unique_section. Categorizes the DECL. */
4731 enum section_category
4733 SECCAT_TEXT,
4735 SECCAT_RODATA,
4736 SECCAT_RODATA_MERGE_STR,
4737 SECCAT_RODATA_MERGE_STR_INIT,
4738 SECCAT_RODATA_MERGE_CONST,
4739 SECCAT_SRODATA,
4741 SECCAT_DATA,
4743 /* To optimize loading of shared programs, define following subsections
4744 of data section:
4745 _REL Contains data that has relocations, so they get grouped
4746 together and dynamic linker will visit fewer pages in memory.
4747 _RO Contains data that is otherwise read-only. This is useful
4748 with prelinking as most relocations won't be dynamically
4749 linked and thus stay read only.
4750 _LOCAL Marks data containing relocations only to local objects.
4751 These relocations will get fully resolved by prelinking. */
4752 SECCAT_DATA_REL,
4753 SECCAT_DATA_REL_LOCAL,
4754 SECCAT_DATA_REL_RO,
4755 SECCAT_DATA_REL_RO_LOCAL,
4757 SECCAT_SDATA,
4758 SECCAT_TDATA,
4760 SECCAT_BSS,
4761 SECCAT_SBSS,
4762 SECCAT_TBSS
4765 static enum section_category
4766 categorize_decl_for_section (tree, int, int);
4768 static enum section_category
4769 categorize_decl_for_section (tree decl, int reloc, int shlib)
4771 enum section_category ret;
4773 if (TREE_CODE (decl) == FUNCTION_DECL)
4774 return SECCAT_TEXT;
4775 else if (TREE_CODE (decl) == STRING_CST)
4777 if (flag_writable_strings)
4778 return SECCAT_DATA;
4779 else
4780 return SECCAT_RODATA_MERGE_STR;
4782 else if (TREE_CODE (decl) == VAR_DECL)
4784 if (DECL_INITIAL (decl) == NULL
4785 || DECL_INITIAL (decl) == error_mark_node)
4786 ret = SECCAT_BSS;
4787 else if (! TREE_READONLY (decl)
4788 || TREE_SIDE_EFFECTS (decl)
4789 || ! TREE_CONSTANT (DECL_INITIAL (decl)))
4791 if (shlib && (reloc & 2))
4792 ret = SECCAT_DATA_REL;
4793 else if (shlib && reloc)
4794 ret = SECCAT_DATA_REL_LOCAL;
4795 else
4796 ret = SECCAT_DATA;
4798 else if (shlib && (reloc & 2))
4799 ret = SECCAT_DATA_REL_RO;
4800 else if (shlib && reloc)
4801 ret = SECCAT_DATA_REL_RO_LOCAL;
4802 else if (reloc || flag_merge_constants < 2)
4803 /* C and C++ don't allow different variables to share the same
4804 location. -fmerge-all-constants allows even that (at the
4805 expense of not conforming). */
4806 ret = SECCAT_RODATA;
4807 else if (TREE_CODE (DECL_INITIAL (decl)) == STRING_CST)
4808 ret = SECCAT_RODATA_MERGE_STR_INIT;
4809 else
4810 ret = SECCAT_RODATA_MERGE_CONST;
4812 else if (TREE_CODE (decl) == CONSTRUCTOR)
4814 if ((shlib && reloc)
4815 || TREE_SIDE_EFFECTS (decl)
4816 || ! TREE_CONSTANT (decl))
4817 ret = SECCAT_DATA;
4818 else
4819 ret = SECCAT_RODATA;
4821 else
4822 ret = SECCAT_RODATA;
4824 /* There are no read-only thread-local sections. */
4825 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL (decl))
4827 if (ret == SECCAT_BSS)
4828 ret = SECCAT_TBSS;
4829 else
4830 ret = SECCAT_TDATA;
4833 /* If the target uses small data sections, select it. */
4834 else if ((*targetm.in_small_data_p) (decl))
4836 if (ret == SECCAT_BSS)
4837 ret = SECCAT_SBSS;
4838 else if (targetm.have_srodata_section && ret == SECCAT_RODATA)
4839 ret = SECCAT_SRODATA;
4840 else
4841 ret = SECCAT_SDATA;
4844 return ret;
4847 bool
4848 decl_readonly_section (tree decl, int reloc)
4850 return decl_readonly_section_1 (decl, reloc, flag_pic);
4853 bool
4854 decl_readonly_section_1 (tree decl, int reloc, int shlib)
4856 switch (categorize_decl_for_section (decl, reloc, shlib))
4858 case SECCAT_RODATA:
4859 case SECCAT_RODATA_MERGE_STR:
4860 case SECCAT_RODATA_MERGE_STR_INIT:
4861 case SECCAT_RODATA_MERGE_CONST:
4862 case SECCAT_SRODATA:
4863 return true;
4864 break;
4865 default:
4866 return false;
4867 break;
4871 /* Select a section based on the above categorization. */
4873 void
4874 default_elf_select_section (tree decl, int reloc,
4875 unsigned HOST_WIDE_INT align)
4877 default_elf_select_section_1 (decl, reloc, align, flag_pic);
4880 void
4881 default_elf_select_section_1 (tree decl, int reloc,
4882 unsigned HOST_WIDE_INT align, int shlib)
4884 switch (categorize_decl_for_section (decl, reloc, shlib))
4886 case SECCAT_TEXT:
4887 /* We're not supposed to be called on FUNCTION_DECLs. */
4888 abort ();
4889 case SECCAT_RODATA:
4890 readonly_data_section ();
4891 break;
4892 case SECCAT_RODATA_MERGE_STR:
4893 mergeable_string_section (decl, align, 0);
4894 break;
4895 case SECCAT_RODATA_MERGE_STR_INIT:
4896 mergeable_string_section (DECL_INITIAL (decl), align, 0);
4897 break;
4898 case SECCAT_RODATA_MERGE_CONST:
4899 mergeable_constant_section (DECL_MODE (decl), align, 0);
4900 break;
4901 case SECCAT_SRODATA:
4902 named_section (NULL_TREE, ".sdata2", reloc);
4903 break;
4904 case SECCAT_DATA:
4905 data_section ();
4906 break;
4907 case SECCAT_DATA_REL:
4908 named_section (NULL_TREE, ".data.rel", reloc);
4909 break;
4910 case SECCAT_DATA_REL_LOCAL:
4911 named_section (NULL_TREE, ".data.rel.local", reloc);
4912 break;
4913 case SECCAT_DATA_REL_RO:
4914 named_section (NULL_TREE, ".data.rel.ro", reloc);
4915 break;
4916 case SECCAT_DATA_REL_RO_LOCAL:
4917 named_section (NULL_TREE, ".data.rel.ro.local", reloc);
4918 break;
4919 case SECCAT_SDATA:
4920 named_section (NULL_TREE, ".sdata", reloc);
4921 break;
4922 case SECCAT_TDATA:
4923 named_section (NULL_TREE, ".tdata", reloc);
4924 break;
4925 case SECCAT_BSS:
4926 #ifdef BSS_SECTION_ASM_OP
4927 bss_section ();
4928 #else
4929 named_section (NULL_TREE, ".bss", reloc);
4930 #endif
4931 break;
4932 case SECCAT_SBSS:
4933 named_section (NULL_TREE, ".sbss", reloc);
4934 break;
4935 case SECCAT_TBSS:
4936 named_section (NULL_TREE, ".tbss", reloc);
4937 break;
4938 default:
4939 abort ();
4943 /* Construct a unique section name based on the decl name and the
4944 categorization performed above. */
4946 void
4947 default_unique_section (tree decl, int reloc)
4949 default_unique_section_1 (decl, reloc, flag_pic);
4952 void
4953 default_unique_section_1 (tree decl, int reloc, int shlib)
4955 bool one_only = DECL_ONE_ONLY (decl);
4956 const char *prefix, *name;
4957 size_t nlen, plen;
4958 char *string;
4960 switch (categorize_decl_for_section (decl, reloc, shlib))
4962 case SECCAT_TEXT:
4963 prefix = one_only ? ".gnu.linkonce.t." : ".text.";
4964 break;
4965 case SECCAT_RODATA:
4966 case SECCAT_RODATA_MERGE_STR:
4967 case SECCAT_RODATA_MERGE_STR_INIT:
4968 case SECCAT_RODATA_MERGE_CONST:
4969 prefix = one_only ? ".gnu.linkonce.r." : ".rodata.";
4970 break;
4971 case SECCAT_SRODATA:
4972 prefix = one_only ? ".gnu.linkonce.s2." : ".sdata2.";
4973 break;
4974 case SECCAT_DATA:
4975 case SECCAT_DATA_REL:
4976 case SECCAT_DATA_REL_LOCAL:
4977 case SECCAT_DATA_REL_RO:
4978 case SECCAT_DATA_REL_RO_LOCAL:
4979 prefix = one_only ? ".gnu.linkonce.d." : ".data.";
4980 break;
4981 case SECCAT_SDATA:
4982 prefix = one_only ? ".gnu.linkonce.s." : ".sdata.";
4983 break;
4984 case SECCAT_BSS:
4985 prefix = one_only ? ".gnu.linkonce.b." : ".bss.";
4986 break;
4987 case SECCAT_SBSS:
4988 prefix = one_only ? ".gnu.linkonce.sb." : ".sbss.";
4989 break;
4990 case SECCAT_TDATA:
4991 prefix = one_only ? ".gnu.linkonce.td." : ".tdata.";
4992 break;
4993 case SECCAT_TBSS:
4994 prefix = one_only ? ".gnu.linkonce.tb." : ".tbss.";
4995 break;
4996 default:
4997 abort ();
4999 plen = strlen (prefix);
5001 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5002 name = (* targetm.strip_name_encoding) (name);
5003 nlen = strlen (name);
5005 string = alloca (nlen + plen + 1);
5006 memcpy (string, prefix, plen);
5007 memcpy (string + plen, name, nlen + 1);
5009 DECL_SECTION_NAME (decl) = build_string (nlen + plen, string);
5012 void
5013 default_select_rtx_section (enum machine_mode mode ATTRIBUTE_UNUSED,
5014 rtx x,
5015 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
5017 if (flag_pic)
5018 switch (GET_CODE (x))
5020 case CONST:
5021 case SYMBOL_REF:
5022 case LABEL_REF:
5023 data_section ();
5024 return;
5026 default:
5027 break;
5030 readonly_data_section ();
5033 void
5034 default_elf_select_rtx_section (enum machine_mode mode, rtx x,
5035 unsigned HOST_WIDE_INT align)
5037 /* ??? Handle small data here somehow. */
5039 if (flag_pic)
5040 switch (GET_CODE (x))
5042 case CONST:
5043 case SYMBOL_REF:
5044 named_section (NULL_TREE, ".data.rel.ro", 3);
5045 return;
5047 case LABEL_REF:
5048 named_section (NULL_TREE, ".data.rel.ro.local", 1);
5049 return;
5051 default:
5052 break;
5055 mergeable_constant_section (mode, align, 0);
5058 /* Set the generally applicable flags on the SYMBOL_REF for EXP. */
5060 void
5061 default_encode_section_info (tree decl, rtx rtl, int first ATTRIBUTE_UNUSED)
5063 rtx symbol;
5064 int flags;
5066 /* Careful not to prod global register variables. */
5067 if (GET_CODE (rtl) != MEM)
5068 return;
5069 symbol = XEXP (rtl, 0);
5070 if (GET_CODE (symbol) != SYMBOL_REF)
5071 return;
5073 flags = 0;
5074 if (TREE_CODE (decl) == FUNCTION_DECL)
5075 flags |= SYMBOL_FLAG_FUNCTION;
5076 if ((*targetm.binds_local_p) (decl))
5077 flags |= SYMBOL_FLAG_LOCAL;
5078 if ((*targetm.in_small_data_p) (decl))
5079 flags |= SYMBOL_FLAG_SMALL;
5080 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL (decl))
5081 flags |= decl_tls_model (decl) << SYMBOL_FLAG_TLS_SHIFT;
5082 /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names? Without
5083 being PUBLIC, the thing *must* be defined in this translation unit.
5084 Prevent this buglet from being propagated into rtl code as well. */
5085 if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
5086 flags |= SYMBOL_FLAG_EXTERNAL;
5088 SYMBOL_REF_FLAGS (symbol) = flags;
5091 /* By default, we do nothing for encode_section_info, so we need not
5092 do anything but discard the '*' marker. */
5094 const char *
5095 default_strip_name_encoding (const char *str)
5097 return str + (*str == '*');
5100 /* Assume ELF-ish defaults, since that's pretty much the most liberal
5101 wrt cross-module name binding. */
5103 bool
5104 default_binds_local_p (tree exp)
5106 return default_binds_local_p_1 (exp, flag_shlib);
5109 bool
5110 default_binds_local_p_1 (tree exp, int shlib)
5112 bool local_p;
5114 /* A non-decl is an entry in the constant pool. */
5115 if (!DECL_P (exp))
5116 local_p = true;
5117 /* Static variables are always local. */
5118 else if (! TREE_PUBLIC (exp))
5119 local_p = true;
5120 /* A variable is local if the user tells us so. */
5121 else if (decl_visibility (exp) != VISIBILITY_DEFAULT)
5122 local_p = true;
5123 /* Otherwise, variables defined outside this object may not be local. */
5124 else if (DECL_EXTERNAL (exp))
5125 local_p = false;
5126 /* Linkonce and weak data are never local. */
5127 else if (DECL_ONE_ONLY (exp) || DECL_WEAK (exp))
5128 local_p = false;
5129 /* If PIC, then assume that any global name can be overridden by
5130 symbols resolved from other modules. */
5131 else if (shlib)
5132 local_p = false;
5133 /* Uninitialized COMMON variable may be unified with symbols
5134 resolved from other modules. */
5135 else if (DECL_COMMON (exp)
5136 && (DECL_INITIAL (exp) == NULL
5137 || DECL_INITIAL (exp) == error_mark_node))
5138 local_p = false;
5139 /* Otherwise we're left with initialized (or non-common) global data
5140 which is of necessity defined locally. */
5141 else
5142 local_p = true;
5144 return local_p;
5147 /* Determine whether or not a pointer mode is valid. Assume defaults
5148 of ptr_mode or Pmode - can be overridden. */
5149 bool
5150 default_valid_pointer_mode (enum machine_mode mode)
5152 return (mode == ptr_mode || mode == Pmode);
5155 /* Default function to output code that will globalize a label. A
5156 target must define GLOBAL_ASM_OP or provide it's own function to
5157 globalize a label. */
5158 #ifdef GLOBAL_ASM_OP
5159 void
5160 default_globalize_label (FILE * stream, const char *name)
5162 fputs (GLOBAL_ASM_OP, stream);
5163 assemble_name (stream, name);
5164 putc ('\n', stream);
5166 #endif /* GLOBAL_ASM_OP */
5168 /* This is how to output an internal numbered label where PREFIX is
5169 the class of label and LABELNO is the number within the class. */
5171 void
5172 default_internal_label (FILE *stream, const char *prefix,
5173 unsigned long labelno)
5175 char *const buf = alloca (40 + strlen (prefix));
5176 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, labelno);
5177 ASM_OUTPUT_LABEL (stream, buf);
5180 /* This is the default behavior at the beginning of a file. It's
5181 controlled by two other target-hook toggles. */
5182 void
5183 default_file_start (void)
5185 if (targetm.file_start_app_off && !flag_verbose_asm)
5186 fputs (ASM_APP_OFF, asm_out_file);
5188 if (targetm.file_start_file_directive)
5189 output_file_directive (asm_out_file, main_input_filename);
5192 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
5193 which emits a special section directive used to indicate whether or
5194 not this object file needs an executable stack. This is primarily
5195 a GNU extension to ELF but could be used on other targets. */
5196 void
5197 file_end_indicate_exec_stack (void)
5199 unsigned int flags = SECTION_DEBUG;
5200 if (trampolines_created)
5201 flags |= SECTION_CODE;
5203 named_section_flags (".note.GNU-stack", flags);
5206 #include "gt-varasm.h"