PR C++/689
[official-gcc.git] / gcc / varasm.c
blobec8d60149a62d31e94f47028f7fbcb873bc30279
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 "c-tree.h"
47 #include "ggc.h"
48 #include "langhooks.h"
49 #include "tm_p.h"
50 #include "debug.h"
51 #include "target.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 /* Number for making the label on the next
118 static variable internal to a function. */
120 static GTY(()) int var_labelno;
122 /* Carry information from ASM_DECLARE_OBJECT_NAME
123 to ASM_FINISH_DECLARE_OBJECT. */
125 int size_directive_output;
127 /* The last decl for which assemble_variable was called,
128 if it did ASM_DECLARE_OBJECT_NAME.
129 If the last call to assemble_variable didn't do that,
130 this holds 0. */
132 tree last_assemble_variable_decl;
134 /* RTX_UNCHANGING_P in a MEM can mean it is stored into, for initialization.
135 So giving constant the alias set for the type will allow such
136 initializations to appear to conflict with the load of the constant. We
137 avoid this by giving all constants an alias set for just constants.
138 Since there will be no stores to that alias set, nothing will ever
139 conflict with them. */
141 static HOST_WIDE_INT const_alias_set;
143 static const char *strip_reg_name PARAMS ((const char *));
144 static int contains_pointers_p PARAMS ((tree));
145 static void decode_addr_const PARAMS ((tree, struct addr_const *));
146 static hashval_t const_desc_hash PARAMS ((const void *));
147 static int const_desc_eq PARAMS ((const void *, const void *));
148 static hashval_t const_hash_1 PARAMS ((const tree));
149 static int compare_constant PARAMS ((const tree, const tree));
150 static tree copy_constant PARAMS ((tree));
151 static void output_constant_def_contents PARAMS ((rtx));
152 static void decode_rtx_const PARAMS ((enum machine_mode, rtx,
153 struct rtx_const *));
154 static unsigned int const_hash_rtx PARAMS ((enum machine_mode, rtx));
155 static int compare_constant_rtx
156 PARAMS ((enum machine_mode, rtx, struct constant_descriptor_rtx *));
157 static struct constant_descriptor_rtx * record_constant_rtx
158 PARAMS ((enum machine_mode, rtx));
159 static struct pool_constant *find_pool_constant PARAMS ((struct function *, rtx));
160 static void mark_constant_pool PARAMS ((void));
161 static void mark_constants PARAMS ((rtx));
162 static int mark_constant PARAMS ((rtx *current_rtx, void *data));
163 static int output_addressed_constants PARAMS ((tree));
164 static unsigned HOST_WIDE_INT array_size_for_constructor PARAMS ((tree));
165 static unsigned min_align PARAMS ((unsigned, unsigned));
166 static void output_constructor PARAMS ((tree, HOST_WIDE_INT,
167 unsigned int));
168 static void globalize_decl PARAMS ((tree));
169 static void maybe_assemble_visibility PARAMS ((tree));
170 static int in_named_entry_eq PARAMS ((const PTR, const PTR));
171 static hashval_t in_named_entry_hash PARAMS ((const PTR));
172 #ifdef ASM_OUTPUT_BSS
173 static void asm_output_bss PARAMS ((FILE *, tree, const char *, int, int));
174 #endif
175 #ifdef BSS_SECTION_ASM_OP
176 #ifdef ASM_OUTPUT_ALIGNED_BSS
177 static void asm_output_aligned_bss
178 PARAMS ((FILE *, tree, const char *, int, int)) ATTRIBUTE_UNUSED;
179 #endif
180 #endif /* BSS_SECTION_ASM_OP */
181 static bool asm_emit_uninitialised PARAMS ((tree, const char*, int, int));
182 static void resolve_unique_section PARAMS ((tree, int, int));
183 static void mark_weak PARAMS ((tree));
185 enum in_section { no_section, in_text, in_data, in_named
186 #ifdef BSS_SECTION_ASM_OP
187 , in_bss
188 #endif
189 #ifdef CTORS_SECTION_ASM_OP
190 , in_ctors
191 #endif
192 #ifdef DTORS_SECTION_ASM_OP
193 , in_dtors
194 #endif
195 #ifdef READONLY_DATA_SECTION_ASM_OP
196 , in_readonly_data
197 #endif
198 #ifdef EXTRA_SECTIONS
199 , EXTRA_SECTIONS
200 #endif
202 static GTY(()) enum in_section in_section = no_section;
204 /* Return a nonzero value if DECL has a section attribute. */
205 #ifndef IN_NAMED_SECTION
206 #define IN_NAMED_SECTION(DECL) \
207 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
208 && DECL_SECTION_NAME (DECL) != NULL_TREE)
209 #endif
211 /* Text of section name when in_section == in_named. */
212 static GTY(()) const char *in_named_name;
214 /* Hash table of flags that have been used for a particular named section. */
216 struct in_named_entry GTY(())
218 const char *name;
219 unsigned int flags;
220 bool declared;
223 static GTY((param_is (struct in_named_entry))) htab_t in_named_htab;
225 /* Define functions like text_section for any extra sections. */
226 #ifdef EXTRA_SECTION_FUNCTIONS
227 EXTRA_SECTION_FUNCTIONS
228 #endif
230 /* Tell assembler to switch to text section. */
232 void
233 text_section ()
235 if (in_section != in_text)
237 in_section = in_text;
238 #ifdef TEXT_SECTION
239 TEXT_SECTION ();
240 #else
241 fprintf (asm_out_file, "%s\n", TEXT_SECTION_ASM_OP);
242 #endif
246 /* Tell assembler to switch to data section. */
248 void
249 data_section ()
251 if (in_section != in_data)
253 in_section = in_data;
254 if (flag_shared_data)
256 #ifdef SHARED_SECTION_ASM_OP
257 fprintf (asm_out_file, "%s\n", SHARED_SECTION_ASM_OP);
258 #else
259 fprintf (asm_out_file, "%s\n", DATA_SECTION_ASM_OP);
260 #endif
262 else
263 fprintf (asm_out_file, "%s\n", DATA_SECTION_ASM_OP);
267 /* Tell assembler to switch to read-only data section. This is normally
268 the text section. */
270 void
271 readonly_data_section ()
273 #ifdef READONLY_DATA_SECTION
274 READONLY_DATA_SECTION (); /* Note this can call data_section. */
275 #else
276 #ifdef READONLY_DATA_SECTION_ASM_OP
277 if (in_section != in_readonly_data)
279 in_section = in_readonly_data;
280 fputs (READONLY_DATA_SECTION_ASM_OP, asm_out_file);
281 fputc ('\n', asm_out_file);
283 #else
284 text_section ();
285 #endif
286 #endif
289 /* Determine if we're in the text section. */
292 in_text_section ()
294 return in_section == in_text;
297 /* Determine if we're in the data section. */
300 in_data_section ()
302 return in_section == in_data;
305 /* Helper routines for maintaining in_named_htab. */
307 static int
308 in_named_entry_eq (p1, p2)
309 const PTR p1;
310 const PTR p2;
312 const struct in_named_entry *old = p1;
313 const char *new = p2;
315 return strcmp (old->name, new) == 0;
318 static hashval_t
319 in_named_entry_hash (p)
320 const PTR p;
322 const struct in_named_entry *old = p;
323 return htab_hash_string (old->name);
326 /* If SECTION has been seen before as a named section, return the flags
327 that were used. Otherwise, return 0. Note, that 0 is a perfectly valid
328 set of flags for a section to have, so 0 does not mean that the section
329 has not been seen. */
331 unsigned int
332 get_named_section_flags (section)
333 const char *section;
335 struct in_named_entry **slot;
337 slot = (struct in_named_entry **)
338 htab_find_slot_with_hash (in_named_htab, section,
339 htab_hash_string (section), NO_INSERT);
341 return slot ? (*slot)->flags : 0;
344 /* Returns true if the section has been declared before. Sets internal
345 flag on this section in in_named_hash so subsequent calls on this
346 section will return false. */
348 bool
349 named_section_first_declaration (name)
350 const char *name;
352 struct in_named_entry **slot;
354 slot = (struct in_named_entry **)
355 htab_find_slot_with_hash (in_named_htab, name,
356 htab_hash_string (name), NO_INSERT);
357 if (! (*slot)->declared)
359 (*slot)->declared = true;
360 return true;
362 else
364 return false;
369 /* Record FLAGS for SECTION. If SECTION was previously recorded with a
370 different set of flags, return false. */
372 bool
373 set_named_section_flags (section, flags)
374 const char *section;
375 unsigned int flags;
377 struct in_named_entry **slot, *entry;
379 slot = (struct in_named_entry **)
380 htab_find_slot_with_hash (in_named_htab, section,
381 htab_hash_string (section), INSERT);
382 entry = *slot;
384 if (!entry)
386 entry = (struct in_named_entry *) ggc_alloc (sizeof (*entry));
387 *slot = entry;
388 entry->name = ggc_strdup (section);
389 entry->flags = flags;
390 entry->declared = false;
392 else if (entry->flags != flags)
393 return false;
395 return true;
398 /* Tell assembler to change to section NAME with attributes FLAGS. */
400 void
401 named_section_flags (name, flags)
402 const char *name;
403 unsigned int flags;
405 if (in_section != in_named || strcmp (name, in_named_name) != 0)
407 if (! set_named_section_flags (name, flags))
408 abort ();
410 (*targetm.asm_out.named_section) (name, flags);
412 if (flags & SECTION_FORGET)
413 in_section = no_section;
414 else
416 in_named_name = ggc_strdup (name);
417 in_section = in_named;
422 /* Tell assembler to change to section NAME for DECL.
423 If DECL is NULL, just switch to section NAME.
424 If NAME is NULL, get the name from DECL.
425 If RELOC is 1, the initializer for DECL contains relocs. */
427 void
428 named_section (decl, name, reloc)
429 tree decl;
430 const char *name;
431 int reloc;
433 unsigned int flags;
435 if (decl != NULL_TREE && !DECL_P (decl))
436 abort ();
437 if (name == NULL)
438 name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
440 flags = (* targetm.section_type_flags) (decl, name, reloc);
442 /* Sanity check user variables for flag changes. Non-user
443 section flag changes will abort in named_section_flags.
444 However, don't complain if SECTION_OVERRIDE is set.
445 We trust that the setter knows that it is safe to ignore
446 the default flags for this decl. */
447 if (decl && ! set_named_section_flags (name, flags))
449 flags = get_named_section_flags (name);
450 if ((flags & SECTION_OVERRIDE) == 0)
451 error_with_decl (decl, "%s causes a section type conflict");
454 named_section_flags (name, flags);
457 /* If required, set DECL_SECTION_NAME to a unique name. */
459 static void
460 resolve_unique_section (decl, reloc, flag_function_or_data_sections)
461 tree decl;
462 int reloc ATTRIBUTE_UNUSED;
463 int flag_function_or_data_sections;
465 if (DECL_SECTION_NAME (decl) == NULL_TREE
466 && targetm.have_named_sections
467 && (flag_function_or_data_sections
468 || DECL_ONE_ONLY (decl)))
469 (*targetm.asm_out.unique_section) (decl, reloc);
472 #ifdef BSS_SECTION_ASM_OP
474 /* Tell the assembler to switch to the bss section. */
476 void
477 bss_section ()
479 if (in_section != in_bss)
481 #ifdef SHARED_BSS_SECTION_ASM_OP
482 if (flag_shared_data)
483 fprintf (asm_out_file, "%s\n", SHARED_BSS_SECTION_ASM_OP);
484 else
485 #endif
486 fprintf (asm_out_file, "%s\n", BSS_SECTION_ASM_OP);
488 in_section = in_bss;
492 #ifdef ASM_OUTPUT_BSS
494 /* Utility function for ASM_OUTPUT_BSS for targets to use if
495 they don't support alignments in .bss.
496 ??? It is believed that this function will work in most cases so such
497 support is localized here. */
499 static void
500 asm_output_bss (file, decl, name, size, rounded)
501 FILE *file;
502 tree decl ATTRIBUTE_UNUSED;
503 const char *name;
504 int size ATTRIBUTE_UNUSED, rounded;
506 (*targetm.asm_out.globalize_label) (file, name);
507 bss_section ();
508 #ifdef ASM_DECLARE_OBJECT_NAME
509 last_assemble_variable_decl = decl;
510 ASM_DECLARE_OBJECT_NAME (file, name, decl);
511 #else
512 /* Standard thing is just output label for the object. */
513 ASM_OUTPUT_LABEL (file, name);
514 #endif /* ASM_DECLARE_OBJECT_NAME */
515 ASM_OUTPUT_SKIP (file, rounded ? rounded : 1);
518 #endif
520 #ifdef ASM_OUTPUT_ALIGNED_BSS
522 /* Utility function for targets to use in implementing
523 ASM_OUTPUT_ALIGNED_BSS.
524 ??? It is believed that this function will work in most cases so such
525 support is localized here. */
527 static void
528 asm_output_aligned_bss (file, decl, name, size, align)
529 FILE *file;
530 tree decl ATTRIBUTE_UNUSED;
531 const char *name;
532 int size, align;
534 bss_section ();
535 ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
536 #ifdef ASM_DECLARE_OBJECT_NAME
537 last_assemble_variable_decl = decl;
538 ASM_DECLARE_OBJECT_NAME (file, name, decl);
539 #else
540 /* Standard thing is just output label for the object. */
541 ASM_OUTPUT_LABEL (file, name);
542 #endif /* ASM_DECLARE_OBJECT_NAME */
543 ASM_OUTPUT_SKIP (file, size ? size : 1);
546 #endif
548 #endif /* BSS_SECTION_ASM_OP */
550 /* Switch to the section for function DECL.
552 If DECL is NULL_TREE, switch to the text section.
553 ??? It's not clear that we will ever be passed NULL_TREE, but it's
554 safer to handle it. */
556 void
557 function_section (decl)
558 tree decl;
560 if (decl != NULL_TREE
561 && DECL_SECTION_NAME (decl) != NULL_TREE)
562 named_section (decl, (char *) 0, 0);
563 else
564 text_section ();
567 /* Switch to section for variable DECL. RELOC is the same as the
568 argument to SELECT_SECTION. */
570 void
571 variable_section (decl, reloc)
572 tree decl;
573 int reloc;
575 if (IN_NAMED_SECTION (decl))
576 named_section (decl, NULL, reloc);
577 else
578 (*targetm.asm_out.select_section) (decl, reloc, DECL_ALIGN (decl));
581 /* Tell assembler to switch to the section for string merging. */
583 void
584 mergeable_string_section (decl, align, flags)
585 tree decl ATTRIBUTE_UNUSED;
586 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED;
587 unsigned int flags ATTRIBUTE_UNUSED;
589 #ifdef HAVE_GAS_SHF_MERGE
590 if (flag_merge_constants
591 && TREE_CODE (decl) == STRING_CST
592 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
593 && align <= 256
594 && TREE_STRING_LENGTH (decl) >= int_size_in_bytes (TREE_TYPE (decl)))
596 enum machine_mode mode;
597 unsigned int modesize;
598 const char *str;
599 int i, j, len, unit;
600 char name[30];
602 mode = TYPE_MODE (TREE_TYPE (TREE_TYPE (decl)));
603 modesize = GET_MODE_BITSIZE (mode);
604 if (modesize >= 8 && modesize <= 256
605 && (modesize & (modesize - 1)) == 0)
607 if (align < modesize)
608 align = modesize;
610 str = TREE_STRING_POINTER (decl);
611 len = TREE_STRING_LENGTH (decl);
612 unit = GET_MODE_SIZE (mode);
614 /* Check for embedded NUL characters. */
615 for (i = 0; i < len; i += unit)
617 for (j = 0; j < unit; j++)
618 if (str[i + j] != '\0')
619 break;
620 if (j == unit)
621 break;
623 if (i == len - unit)
625 sprintf (name, ".rodata.str%d.%d", modesize / 8,
626 (int) (align / 8));
627 flags |= (modesize / 8) | SECTION_MERGE | SECTION_STRINGS;
628 if (!i && modesize < align)
630 /* A "" string with requested alignment greater than
631 character size might cause a problem:
632 if some other string required even bigger
633 alignment than "", then linker might think the
634 "" is just part of padding after some other string
635 and not put it into the hash table initially.
636 But this means "" could have smaller alignment
637 than requested. */
638 #ifdef ASM_OUTPUT_SECTION_START
639 named_section_flags (name, flags);
640 ASM_OUTPUT_SECTION_START (asm_out_file);
641 #else
642 readonly_data_section ();
643 #endif
644 return;
647 named_section_flags (name, flags);
648 return;
652 #endif
653 readonly_data_section ();
656 /* Tell assembler to switch to the section for constant merging. */
658 void
659 mergeable_constant_section (mode, align, flags)
660 enum machine_mode mode ATTRIBUTE_UNUSED;
661 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED;
662 unsigned int flags ATTRIBUTE_UNUSED;
664 #ifdef HAVE_GAS_SHF_MERGE
665 unsigned int modesize = GET_MODE_BITSIZE (mode);
667 if (flag_merge_constants
668 && mode != VOIDmode
669 && mode != BLKmode
670 && modesize <= align
671 && align >= 8
672 && align <= 256
673 && (align & (align - 1)) == 0)
675 char name[24];
677 sprintf (name, ".rodata.cst%d", (int) (align / 8));
678 flags |= (align / 8) | SECTION_MERGE;
679 named_section_flags (name, flags);
680 return;
682 #endif
683 readonly_data_section ();
686 /* Given NAME, a putative register name, discard any customary prefixes. */
688 static const char *
689 strip_reg_name (name)
690 const char *name;
692 #ifdef REGISTER_PREFIX
693 if (!strncmp (name, REGISTER_PREFIX, strlen (REGISTER_PREFIX)))
694 name += strlen (REGISTER_PREFIX);
695 #endif
696 if (name[0] == '%' || name[0] == '#')
697 name++;
698 return name;
701 /* Decode an `asm' spec for a declaration as a register name.
702 Return the register number, or -1 if nothing specified,
703 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
704 or -3 if ASMSPEC is `cc' and is not recognized,
705 or -4 if ASMSPEC is `memory' and is not recognized.
706 Accept an exact spelling or a decimal number.
707 Prefixes such as % are optional. */
710 decode_reg_name (asmspec)
711 const char *asmspec;
713 if (asmspec != 0)
715 int i;
717 /* Get rid of confusing prefixes. */
718 asmspec = strip_reg_name (asmspec);
720 /* Allow a decimal number as a "register name". */
721 for (i = strlen (asmspec) - 1; i >= 0; i--)
722 if (! ISDIGIT (asmspec[i]))
723 break;
724 if (asmspec[0] != 0 && i < 0)
726 i = atoi (asmspec);
727 if (i < FIRST_PSEUDO_REGISTER && i >= 0)
728 return i;
729 else
730 return -2;
733 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
734 if (reg_names[i][0]
735 && ! strcmp (asmspec, strip_reg_name (reg_names[i])))
736 return i;
738 #ifdef ADDITIONAL_REGISTER_NAMES
740 static const struct { const char *const name; const int number; } table[]
741 = ADDITIONAL_REGISTER_NAMES;
743 for (i = 0; i < (int) ARRAY_SIZE (table); i++)
744 if (! strcmp (asmspec, table[i].name))
745 return table[i].number;
747 #endif /* ADDITIONAL_REGISTER_NAMES */
749 if (!strcmp (asmspec, "memory"))
750 return -4;
752 if (!strcmp (asmspec, "cc"))
753 return -3;
755 return -2;
758 return -1;
761 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
762 have static storage duration. In other words, it should not be an
763 automatic variable, including PARM_DECLs.
765 There is, however, one exception: this function handles variables
766 explicitly placed in a particular register by the user.
768 ASMSPEC, if not 0, is the string which the user specified as the
769 assembler symbol name.
771 This is never called for PARM_DECL nodes. */
773 void
774 make_decl_rtl (decl, asmspec)
775 tree decl;
776 const char *asmspec;
778 int top_level = (DECL_CONTEXT (decl) == NULL_TREE);
779 const char *name = 0;
780 const char *new_name = 0;
781 int reg_number;
782 rtx x;
784 /* Check that we are not being given an automatic variable. */
785 /* A weak alias has TREE_PUBLIC set but not the other bits. */
786 if (TREE_CODE (decl) == PARM_DECL
787 || TREE_CODE (decl) == RESULT_DECL
788 || (TREE_CODE (decl) == VAR_DECL
789 && !TREE_STATIC (decl)
790 && !TREE_PUBLIC (decl)
791 && !DECL_EXTERNAL (decl)
792 && !DECL_REGISTER (decl)))
793 abort ();
794 /* And that we were not given a type or a label. */
795 else if (TREE_CODE (decl) == TYPE_DECL
796 || TREE_CODE (decl) == LABEL_DECL)
797 abort ();
799 /* For a duplicate declaration, we can be called twice on the
800 same DECL node. Don't discard the RTL already made. */
801 if (DECL_RTL_SET_P (decl))
803 /* If the old RTL had the wrong mode, fix the mode. */
804 if (GET_MODE (DECL_RTL (decl)) != DECL_MODE (decl))
805 SET_DECL_RTL (decl, adjust_address_nv (DECL_RTL (decl),
806 DECL_MODE (decl), 0));
808 /* ??? Another way to do this would be to maintain a hashed
809 table of such critters. Instead of adding stuff to a DECL
810 to give certain attributes to it, we could use an external
811 hash map from DECL to set of attributes. */
813 /* Let the target reassign the RTL if it wants.
814 This is necessary, for example, when one machine specific
815 decl attribute overrides another. */
816 (* targetm.encode_section_info) (decl, DECL_RTL (decl), false);
817 return;
820 new_name = name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
822 reg_number = decode_reg_name (asmspec);
823 if (reg_number == -2)
825 /* ASMSPEC is given, and not the name of a register. Mark the
826 name with a star so assemble_name won't munge it. */
827 char *starred = alloca (strlen (asmspec) + 2);
828 starred[0] = '*';
829 strcpy (starred + 1, asmspec);
830 new_name = starred;
833 if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
835 /* First detect errors in declaring global registers. */
836 if (reg_number == -1)
837 error_with_decl (decl, "register name not specified for `%s'");
838 else if (reg_number < 0)
839 error_with_decl (decl, "invalid register name for `%s'");
840 else if (TYPE_MODE (TREE_TYPE (decl)) == BLKmode)
841 error_with_decl (decl,
842 "data type of `%s' isn't suitable for a register");
843 else if (! HARD_REGNO_MODE_OK (reg_number, TYPE_MODE (TREE_TYPE (decl))))
844 error_with_decl (decl,
845 "register specified for `%s' isn't suitable for data type");
846 /* Now handle properly declared static register variables. */
847 else
849 int nregs;
851 if (DECL_INITIAL (decl) != 0 && TREE_STATIC (decl))
853 DECL_INITIAL (decl) = 0;
854 error ("global register variable has initial value");
856 if (TREE_THIS_VOLATILE (decl))
857 warning ("volatile register variables don't work as you might wish");
859 /* If the user specified one of the eliminables registers here,
860 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
861 confused with that register and be eliminated. This usage is
862 somewhat suspect... */
864 SET_DECL_RTL (decl, gen_rtx_raw_REG (DECL_MODE (decl), reg_number));
865 ORIGINAL_REGNO (DECL_RTL (decl)) = reg_number;
866 REG_USERVAR_P (DECL_RTL (decl)) = 1;
868 if (TREE_STATIC (decl))
870 /* Make this register global, so not usable for anything
871 else. */
872 #ifdef ASM_DECLARE_REGISTER_GLOBAL
873 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file, decl, reg_number, name);
874 #endif
875 nregs = HARD_REGNO_NREGS (reg_number, DECL_MODE (decl));
876 while (nregs > 0)
877 globalize_reg (reg_number + --nregs);
880 /* As a register variable, it has no section. */
881 return;
885 /* Now handle ordinary static variables and functions (in memory).
886 Also handle vars declared register invalidly. */
888 if (reg_number >= 0 || reg_number == -3)
889 error_with_decl (decl,
890 "register name given for non-register variable `%s'");
892 /* Specifying a section attribute on a variable forces it into a
893 non-.bss section, and thus it cannot be common. */
894 if (TREE_CODE (decl) == VAR_DECL
895 && DECL_SECTION_NAME (decl) != NULL_TREE
896 && DECL_INITIAL (decl) == NULL_TREE
897 && DECL_COMMON (decl))
898 DECL_COMMON (decl) = 0;
900 /* Variables can't be both common and weak. */
901 if (TREE_CODE (decl) == VAR_DECL && DECL_WEAK (decl))
902 DECL_COMMON (decl) = 0;
904 /* Can't use just the variable's own name for a variable
905 whose scope is less than the whole file, unless it's a member
906 of a local class (which will already be unambiguous).
907 Concatenate a distinguishing number. */
908 if (!top_level && !TREE_PUBLIC (decl)
909 && ! (DECL_CONTEXT (decl) && TYPE_P (DECL_CONTEXT (decl)))
910 && asmspec == 0
911 && name == IDENTIFIER_POINTER (DECL_NAME (decl)))
913 char *label;
915 ASM_FORMAT_PRIVATE_NAME (label, name, var_labelno);
916 var_labelno++;
917 new_name = label;
920 if (name != new_name)
922 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (new_name));
923 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
926 x = gen_rtx_SYMBOL_REF (Pmode, name);
927 SYMBOL_REF_WEAK (x) = DECL_WEAK (decl);
928 SYMBOL_REF_DECL (x) = decl;
930 x = gen_rtx_MEM (DECL_MODE (decl), x);
931 if (TREE_CODE (decl) != FUNCTION_DECL)
932 set_mem_attributes (x, decl, 1);
933 SET_DECL_RTL (decl, x);
935 /* Optionally set flags or add text to the name to record information
936 such as that it is a function name.
937 If the name is changed, the macro ASM_OUTPUT_LABELREF
938 will have to know how to strip this information. */
939 (* targetm.encode_section_info) (decl, DECL_RTL (decl), true);
942 /* Make the rtl for variable VAR be volatile.
943 Use this only for static variables. */
945 void
946 make_var_volatile (var)
947 tree var;
949 if (GET_CODE (DECL_RTL (var)) != MEM)
950 abort ();
952 MEM_VOLATILE_P (DECL_RTL (var)) = 1;
955 /* Output a string of literal assembler code
956 for an `asm' keyword used between functions. */
958 void
959 assemble_asm (string)
960 tree string;
962 app_enable ();
964 if (TREE_CODE (string) == ADDR_EXPR)
965 string = TREE_OPERAND (string, 0);
967 fprintf (asm_out_file, "\t%s\n", TREE_STRING_POINTER (string));
970 /* Record an element in the table of global destructors. SYMBOL is
971 a SYMBOL_REF of the function to be called; PRIORITY is a number
972 between 0 and MAX_INIT_PRIORITY. */
974 void
975 default_stabs_asm_out_destructor (symbol, priority)
976 rtx symbol;
977 int priority ATTRIBUTE_UNUSED;
979 /* Tell GNU LD that this is part of the static destructor set.
980 This will work for any system that uses stabs, most usefully
981 aout systems. */
982 fprintf (asm_out_file, "%s\"___DTOR_LIST__\",22,0,0,", ASM_STABS_OP);
983 assemble_name (asm_out_file, XSTR (symbol, 0));
984 fputc ('\n', asm_out_file);
987 void
988 default_named_section_asm_out_destructor (symbol, priority)
989 rtx symbol;
990 int priority;
992 const char *section = ".dtors";
993 char buf[16];
995 /* ??? This only works reliably with the GNU linker. */
996 if (priority != DEFAULT_INIT_PRIORITY)
998 sprintf (buf, ".dtors.%.5u",
999 /* Invert the numbering so the linker puts us in the proper
1000 order; constructors are run from right to left, and the
1001 linker sorts in increasing order. */
1002 MAX_INIT_PRIORITY - priority);
1003 section = buf;
1006 named_section_flags (section, SECTION_WRITE);
1007 assemble_align (POINTER_SIZE);
1008 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1011 #ifdef DTORS_SECTION_ASM_OP
1012 void
1013 dtors_section ()
1015 if (in_section != in_dtors)
1017 in_section = in_dtors;
1018 fputs (DTORS_SECTION_ASM_OP, asm_out_file);
1019 fputc ('\n', asm_out_file);
1023 void
1024 default_dtor_section_asm_out_destructor (symbol, priority)
1025 rtx symbol;
1026 int priority ATTRIBUTE_UNUSED;
1028 dtors_section ();
1029 assemble_align (POINTER_SIZE);
1030 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1032 #endif
1034 /* Likewise for global constructors. */
1036 void
1037 default_stabs_asm_out_constructor (symbol, priority)
1038 rtx symbol;
1039 int priority ATTRIBUTE_UNUSED;
1041 /* Tell GNU LD that this is part of the static destructor set.
1042 This will work for any system that uses stabs, most usefully
1043 aout systems. */
1044 fprintf (asm_out_file, "%s\"___CTOR_LIST__\",22,0,0,", ASM_STABS_OP);
1045 assemble_name (asm_out_file, XSTR (symbol, 0));
1046 fputc ('\n', asm_out_file);
1049 void
1050 default_named_section_asm_out_constructor (symbol, priority)
1051 rtx symbol;
1052 int priority;
1054 const char *section = ".ctors";
1055 char buf[16];
1057 /* ??? This only works reliably with the GNU linker. */
1058 if (priority != DEFAULT_INIT_PRIORITY)
1060 sprintf (buf, ".ctors.%.5u",
1061 /* Invert the numbering so the linker puts us in the proper
1062 order; constructors are run from right to left, and the
1063 linker sorts in increasing order. */
1064 MAX_INIT_PRIORITY - priority);
1065 section = buf;
1068 named_section_flags (section, SECTION_WRITE);
1069 assemble_align (POINTER_SIZE);
1070 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1073 #ifdef CTORS_SECTION_ASM_OP
1074 void
1075 ctors_section ()
1077 if (in_section != in_ctors)
1079 in_section = in_ctors;
1080 fputs (CTORS_SECTION_ASM_OP, asm_out_file);
1081 fputc ('\n', asm_out_file);
1085 void
1086 default_ctor_section_asm_out_constructor (symbol, priority)
1087 rtx symbol;
1088 int priority ATTRIBUTE_UNUSED;
1090 ctors_section ();
1091 assemble_align (POINTER_SIZE);
1092 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1094 #endif
1096 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1097 a nonzero value if the constant pool should be output before the
1098 start of the function, or a zero value if the pool should output
1099 after the end of the function. The default is to put it before the
1100 start. */
1102 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1103 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1104 #endif
1106 /* Output assembler code for the constant pool of a function and associated
1107 with defining the name of the function. DECL describes the function.
1108 NAME is the function's name. For the constant pool, we use the current
1109 constant pool data. */
1111 void
1112 assemble_start_function (decl, fnname)
1113 tree decl;
1114 const char *fnname;
1116 int align;
1118 /* The following code does not need preprocessing in the assembler. */
1120 app_disable ();
1122 if (CONSTANT_POOL_BEFORE_FUNCTION)
1123 output_constant_pool (fnname, decl);
1125 resolve_unique_section (decl, 0, flag_function_sections);
1126 function_section (decl);
1128 /* Tell assembler to move to target machine's alignment for functions. */
1129 align = floor_log2 (FUNCTION_BOUNDARY / BITS_PER_UNIT);
1130 if (align < force_align_functions_log)
1131 align = force_align_functions_log;
1132 if (align > 0)
1134 ASM_OUTPUT_ALIGN (asm_out_file, align);
1137 /* Handle a user-specified function alignment.
1138 Note that we still need to align to FUNCTION_BOUNDARY, as above,
1139 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1140 if (align_functions_log > align
1141 && cfun->function_frequency != FUNCTION_FREQUENCY_UNLIKELY_EXECUTED)
1143 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1144 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file,
1145 align_functions_log, align_functions - 1);
1146 #else
1147 ASM_OUTPUT_ALIGN (asm_out_file, align_functions_log);
1148 #endif
1151 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1152 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file, fnname);
1153 #endif
1155 (*debug_hooks->begin_function) (decl);
1157 /* Make function name accessible from other files, if appropriate. */
1159 if (TREE_PUBLIC (decl))
1161 if (! first_global_object_name)
1163 const char *p;
1164 char *name;
1166 p = (* targetm.strip_name_encoding) (fnname);
1167 name = xstrdup (p);
1169 if (! DECL_WEAK (decl) && ! DECL_ONE_ONLY (decl))
1170 first_global_object_name = name;
1171 else
1172 weak_global_object_name = name;
1175 globalize_decl (decl);
1177 maybe_assemble_visibility (decl);
1180 /* Do any machine/system dependent processing of the function name */
1181 #ifdef ASM_DECLARE_FUNCTION_NAME
1182 ASM_DECLARE_FUNCTION_NAME (asm_out_file, fnname, current_function_decl);
1183 #else
1184 /* Standard thing is just output label for the function. */
1185 ASM_OUTPUT_LABEL (asm_out_file, fnname);
1186 #endif /* ASM_DECLARE_FUNCTION_NAME */
1189 /* Output assembler code associated with defining the size of the
1190 function. DECL describes the function. NAME is the function's name. */
1192 void
1193 assemble_end_function (decl, fnname)
1194 tree decl;
1195 const char *fnname;
1197 #ifdef ASM_DECLARE_FUNCTION_SIZE
1198 ASM_DECLARE_FUNCTION_SIZE (asm_out_file, fnname, decl);
1199 #endif
1200 if (! CONSTANT_POOL_BEFORE_FUNCTION)
1202 output_constant_pool (fnname, decl);
1203 function_section (decl); /* need to switch back */
1207 /* Assemble code to leave SIZE bytes of zeros. */
1209 void
1210 assemble_zeros (size)
1211 int size;
1213 /* Do no output if -fsyntax-only. */
1214 if (flag_syntax_only)
1215 return;
1217 #ifdef ASM_NO_SKIP_IN_TEXT
1218 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1219 so we must output 0s explicitly in the text section. */
1220 if (ASM_NO_SKIP_IN_TEXT && in_text_section ())
1222 int i;
1223 for (i = 0; i < size; i++)
1224 assemble_integer (const0_rtx, 1, BITS_PER_UNIT, 1);
1226 else
1227 #endif
1228 if (size > 0)
1229 ASM_OUTPUT_SKIP (asm_out_file, size);
1232 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1234 void
1235 assemble_align (align)
1236 int align;
1238 if (align > BITS_PER_UNIT)
1240 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
1244 /* Assemble a string constant with the specified C string as contents. */
1246 void
1247 assemble_string (p, size)
1248 const char *p;
1249 int size;
1251 int pos = 0;
1252 int maximum = 2000;
1254 /* If the string is very long, split it up. */
1256 while (pos < size)
1258 int thissize = size - pos;
1259 if (thissize > maximum)
1260 thissize = maximum;
1262 ASM_OUTPUT_ASCII (asm_out_file, p, thissize);
1264 pos += thissize;
1265 p += thissize;
1270 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1271 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1272 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1273 #else
1274 #if defined ASM_OUTPUT_ALIGNED_LOCAL
1275 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1276 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, DECL_ALIGN (decl))
1277 #else
1278 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1279 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded)
1280 #endif
1281 #endif
1283 #if defined ASM_OUTPUT_ALIGNED_BSS
1284 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1285 ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1286 #else
1287 #if defined ASM_OUTPUT_BSS
1288 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1289 ASM_OUTPUT_BSS (asm_out_file, decl, name, size, rounded)
1290 #else
1291 #undef ASM_EMIT_BSS
1292 #endif
1293 #endif
1295 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1296 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1297 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1298 #else
1299 #if defined ASM_OUTPUT_ALIGNED_COMMON
1300 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1301 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size, DECL_ALIGN (decl))
1302 #else
1303 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1304 ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded)
1305 #endif
1306 #endif
1308 static bool
1309 asm_emit_uninitialised (decl, name, size, rounded)
1310 tree decl;
1311 const char *name;
1312 int size ATTRIBUTE_UNUSED;
1313 int rounded ATTRIBUTE_UNUSED;
1315 enum
1317 asm_dest_common,
1318 asm_dest_bss,
1319 asm_dest_local
1321 destination = asm_dest_local;
1323 /* ??? We should handle .bss via select_section mechanisms rather than
1324 via special target hooks. That would eliminate this special case. */
1325 if (TREE_PUBLIC (decl))
1327 if (!DECL_COMMON (decl))
1328 #ifdef ASM_EMIT_BSS
1329 destination = asm_dest_bss;
1330 #else
1331 return false;
1332 #endif
1333 else
1334 destination = asm_dest_common;
1337 if (destination == asm_dest_bss)
1338 globalize_decl (decl);
1339 resolve_unique_section (decl, 0, flag_data_sections);
1341 if (flag_shared_data)
1343 switch (destination)
1345 #ifdef ASM_OUTPUT_SHARED_BSS
1346 case asm_dest_bss:
1347 ASM_OUTPUT_SHARED_BSS (asm_out_file, decl, name, size, rounded);
1348 return;
1349 #endif
1350 #ifdef ASM_OUTPUT_SHARED_COMMON
1351 case asm_dest_common:
1352 ASM_OUTPUT_SHARED_COMMON (asm_out_file, name, size, rounded);
1353 return;
1354 #endif
1355 #ifdef ASM_OUTPUT_SHARED_LOCAL
1356 case asm_dest_local:
1357 ASM_OUTPUT_SHARED_LOCAL (asm_out_file, name, size, rounded);
1358 return;
1359 #endif
1360 default:
1361 break;
1365 switch (destination)
1367 #ifdef ASM_EMIT_BSS
1368 case asm_dest_bss:
1369 ASM_EMIT_BSS (decl, name, size, rounded);
1370 break;
1371 #endif
1372 case asm_dest_common:
1373 ASM_EMIT_COMMON (decl, name, size, rounded);
1374 break;
1375 case asm_dest_local:
1376 ASM_EMIT_LOCAL (decl, name, size, rounded);
1377 break;
1378 default:
1379 abort ();
1382 return true;
1385 /* Assemble everything that is needed for a variable or function declaration.
1386 Not used for automatic variables, and not used for function definitions.
1387 Should not be called for variables of incomplete structure type.
1389 TOP_LEVEL is nonzero if this variable has file scope.
1390 AT_END is nonzero if this is the special handling, at end of compilation,
1391 to define things that have had only tentative definitions.
1392 DONT_OUTPUT_DATA if nonzero means don't actually output the
1393 initial value (that will be done by the caller). */
1395 void
1396 assemble_variable (decl, top_level, at_end, dont_output_data)
1397 tree decl;
1398 int top_level ATTRIBUTE_UNUSED;
1399 int at_end ATTRIBUTE_UNUSED;
1400 int dont_output_data;
1402 const char *name;
1403 unsigned int align;
1404 int reloc = 0;
1405 rtx decl_rtl;
1407 last_assemble_variable_decl = 0;
1409 /* Normally no need to say anything here for external references,
1410 since assemble_external is called by the language-specific code
1411 when a declaration is first seen. */
1413 if (DECL_EXTERNAL (decl))
1414 return;
1416 /* Output no assembler code for a function declaration.
1417 Only definitions of functions output anything. */
1419 if (TREE_CODE (decl) == FUNCTION_DECL)
1420 return;
1422 /* Do nothing for global register variables. */
1423 if (DECL_RTL_SET_P (decl) && GET_CODE (DECL_RTL (decl)) == REG)
1425 TREE_ASM_WRITTEN (decl) = 1;
1426 return;
1429 /* If type was incomplete when the variable was declared,
1430 see if it is complete now. */
1432 if (DECL_SIZE (decl) == 0)
1433 layout_decl (decl, 0);
1435 /* Still incomplete => don't allocate it; treat the tentative defn
1436 (which is what it must have been) as an `extern' reference. */
1438 if (!dont_output_data && DECL_SIZE (decl) == 0)
1440 error ("%Hstorage size of `%s' isn't known",
1441 &DECL_SOURCE_LOCATION (decl),
1442 IDENTIFIER_POINTER (DECL_NAME (decl)));
1443 TREE_ASM_WRITTEN (decl) = 1;
1444 return;
1447 /* The first declaration of a variable that comes through this function
1448 decides whether it is global (in C, has external linkage)
1449 or local (in C, has internal linkage). So do nothing more
1450 if this function has already run. */
1452 if (TREE_ASM_WRITTEN (decl))
1453 return;
1455 /* Make sure targetm.encode_section_info is invoked before we set
1456 ASM_WRITTEN. */
1457 decl_rtl = DECL_RTL (decl);
1459 TREE_ASM_WRITTEN (decl) = 1;
1461 /* Do no output if -fsyntax-only. */
1462 if (flag_syntax_only)
1463 return;
1465 app_disable ();
1467 if (! dont_output_data
1468 && ! host_integerp (DECL_SIZE_UNIT (decl), 1))
1470 error_with_decl (decl, "size of variable `%s' is too large");
1471 return;
1474 name = XSTR (XEXP (decl_rtl, 0), 0);
1475 if (TREE_PUBLIC (decl) && DECL_NAME (decl)
1476 && ! first_global_object_name
1477 && ! (DECL_COMMON (decl) && (DECL_INITIAL (decl) == 0
1478 || DECL_INITIAL (decl) == error_mark_node))
1479 && ! DECL_WEAK (decl)
1480 && ! DECL_ONE_ONLY (decl))
1482 const char *p;
1483 char *xname;
1485 p = (* targetm.strip_name_encoding) (name);
1486 xname = xstrdup (p);
1487 first_global_object_name = xname;
1490 /* Compute the alignment of this data. */
1492 align = DECL_ALIGN (decl);
1494 /* In the case for initialing an array whose length isn't specified,
1495 where we have not yet been able to do the layout,
1496 figure out the proper alignment now. */
1497 if (dont_output_data && DECL_SIZE (decl) == 0
1498 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
1499 align = MAX (align, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
1501 /* Some object file formats have a maximum alignment which they support.
1502 In particular, a.out format supports a maximum alignment of 4. */
1503 #ifndef MAX_OFILE_ALIGNMENT
1504 #define MAX_OFILE_ALIGNMENT BIGGEST_ALIGNMENT
1505 #endif
1506 if (align > MAX_OFILE_ALIGNMENT)
1508 warning_with_decl (decl,
1509 "alignment of `%s' is greater than maximum object file alignment. Using %d",
1510 MAX_OFILE_ALIGNMENT/BITS_PER_UNIT);
1511 align = MAX_OFILE_ALIGNMENT;
1514 /* On some machines, it is good to increase alignment sometimes. */
1515 if (! DECL_USER_ALIGN (decl))
1517 #ifdef DATA_ALIGNMENT
1518 align = DATA_ALIGNMENT (TREE_TYPE (decl), align);
1519 #endif
1520 #ifdef CONSTANT_ALIGNMENT
1521 if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
1522 align = CONSTANT_ALIGNMENT (DECL_INITIAL (decl), align);
1523 #endif
1526 /* Reset the alignment in case we have made it tighter, so we can benefit
1527 from it in get_pointer_alignment. */
1528 DECL_ALIGN (decl) = align;
1529 set_mem_align (decl_rtl, align);
1531 if (TREE_PUBLIC (decl))
1532 maybe_assemble_visibility (decl);
1534 /* Output any data that we will need to use the address of. */
1535 if (DECL_INITIAL (decl) == error_mark_node)
1536 reloc = contains_pointers_p (TREE_TYPE (decl)) ? 3 : 0;
1537 else if (DECL_INITIAL (decl))
1538 reloc = output_addressed_constants (DECL_INITIAL (decl));
1539 resolve_unique_section (decl, reloc, flag_data_sections);
1541 /* Handle uninitialized definitions. */
1543 /* If the decl has been given an explicit section name, then it
1544 isn't common, and shouldn't be handled as such. */
1545 if (DECL_SECTION_NAME (decl) || dont_output_data)
1547 /* We don't implement common thread-local data at present. */
1548 else if (DECL_THREAD_LOCAL (decl))
1550 if (DECL_COMMON (decl))
1551 sorry ("thread-local COMMON data not implemented");
1553 else if (DECL_INITIAL (decl) == 0
1554 || DECL_INITIAL (decl) == error_mark_node
1555 || (flag_zero_initialized_in_bss
1556 /* Leave constant zeroes in .rodata so they can be shared. */
1557 && !TREE_READONLY (decl)
1558 && initializer_zerop (DECL_INITIAL (decl))))
1560 unsigned HOST_WIDE_INT size = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
1561 unsigned HOST_WIDE_INT rounded = size;
1563 /* Don't allocate zero bytes of common,
1564 since that means "undefined external" in the linker. */
1565 if (size == 0)
1566 rounded = 1;
1568 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1569 so that each uninitialized object starts on such a boundary. */
1570 rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
1571 rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1572 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1574 #if !defined(ASM_OUTPUT_ALIGNED_COMMON) && !defined(ASM_OUTPUT_ALIGNED_DECL_COMMON) && !defined(ASM_OUTPUT_ALIGNED_BSS)
1575 if ((unsigned HOST_WIDE_INT) DECL_ALIGN (decl) / BITS_PER_UNIT > rounded)
1576 warning_with_decl
1577 (decl, "requested alignment for %s is greater than implemented alignment of %d",rounded);
1578 #endif
1580 /* If the target cannot output uninitialized but not common global data
1581 in .bss, then we have to use .data, so fall through. */
1582 if (asm_emit_uninitialised (decl, name, size, rounded))
1583 return;
1586 /* Handle initialized definitions.
1587 Also handle uninitialized global definitions if -fno-common and the
1588 target doesn't support ASM_OUTPUT_BSS. */
1590 /* First make the assembler name(s) global if appropriate. */
1591 if (TREE_PUBLIC (decl) && DECL_NAME (decl))
1592 globalize_decl (decl);
1594 /* Switch to the appropriate section. */
1595 variable_section (decl, reloc);
1597 /* dbxout.c needs to know this. */
1598 if (in_text_section ())
1599 DECL_IN_TEXT_SECTION (decl) = 1;
1601 /* Output the alignment of this data. */
1602 if (align > BITS_PER_UNIT)
1604 ASM_OUTPUT_ALIGN (asm_out_file,
1605 floor_log2 (DECL_ALIGN (decl) / BITS_PER_UNIT));
1608 /* Do any machine/system dependent processing of the object. */
1609 #ifdef ASM_DECLARE_OBJECT_NAME
1610 last_assemble_variable_decl = decl;
1611 ASM_DECLARE_OBJECT_NAME (asm_out_file, name, decl);
1612 #else
1613 /* Standard thing is just output label for the object. */
1614 ASM_OUTPUT_LABEL (asm_out_file, name);
1615 #endif /* ASM_DECLARE_OBJECT_NAME */
1617 if (!dont_output_data)
1619 if (DECL_INITIAL (decl) && DECL_INITIAL (decl) != error_mark_node)
1620 /* Output the actual data. */
1621 output_constant (DECL_INITIAL (decl),
1622 tree_low_cst (DECL_SIZE_UNIT (decl), 1),
1623 align);
1624 else
1625 /* Leave space for it. */
1626 assemble_zeros (tree_low_cst (DECL_SIZE_UNIT (decl), 1));
1630 /* Return 1 if type TYPE contains any pointers. */
1632 static int
1633 contains_pointers_p (type)
1634 tree type;
1636 switch (TREE_CODE (type))
1638 case POINTER_TYPE:
1639 case REFERENCE_TYPE:
1640 /* I'm not sure whether OFFSET_TYPE needs this treatment,
1641 so I'll play safe and return 1. */
1642 case OFFSET_TYPE:
1643 return 1;
1645 case RECORD_TYPE:
1646 case UNION_TYPE:
1647 case QUAL_UNION_TYPE:
1649 tree fields;
1650 /* For a type that has fields, see if the fields have pointers. */
1651 for (fields = TYPE_FIELDS (type); fields; fields = TREE_CHAIN (fields))
1652 if (TREE_CODE (fields) == FIELD_DECL
1653 && contains_pointers_p (TREE_TYPE (fields)))
1654 return 1;
1655 return 0;
1658 case ARRAY_TYPE:
1659 /* An array type contains pointers if its element type does. */
1660 return contains_pointers_p (TREE_TYPE (type));
1662 default:
1663 return 0;
1667 /* Output something to declare an external symbol to the assembler.
1668 (Most assemblers don't need this, so we normally output nothing.)
1669 Do nothing if DECL is not external. */
1671 void
1672 assemble_external (decl)
1673 tree decl ATTRIBUTE_UNUSED;
1675 /* Because most platforms do not define ASM_OUTPUT_EXTERNAL, the
1676 main body of this code is only rarely exercised. To provide some
1677 testing, on all platforms, we make sure that the ASM_OUT_FILE is
1678 open. If it's not, we should not be calling this function. */
1679 if (!asm_out_file)
1680 abort ();
1682 #ifdef ASM_OUTPUT_EXTERNAL
1683 if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
1685 rtx rtl = DECL_RTL (decl);
1687 if (GET_CODE (rtl) == MEM && GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF
1688 && ! SYMBOL_REF_USED (XEXP (rtl, 0)))
1690 /* Some systems do require some output. */
1691 SYMBOL_REF_USED (XEXP (rtl, 0)) = 1;
1692 ASM_OUTPUT_EXTERNAL (asm_out_file, decl, XSTR (XEXP (rtl, 0), 0));
1695 #endif
1698 /* Similar, for calling a library function FUN. */
1700 void
1701 assemble_external_libcall (fun)
1702 rtx fun ATTRIBUTE_UNUSED;
1704 #ifdef ASM_OUTPUT_EXTERNAL_LIBCALL
1705 /* Declare library function name external when first used, if nec. */
1706 if (! SYMBOL_REF_USED (fun))
1708 SYMBOL_REF_USED (fun) = 1;
1709 ASM_OUTPUT_EXTERNAL_LIBCALL (asm_out_file, fun);
1711 #endif
1714 /* Assemble a label named NAME. */
1716 void
1717 assemble_label (name)
1718 const char *name;
1720 ASM_OUTPUT_LABEL (asm_out_file, name);
1723 /* Output to FILE a reference to the assembler name of a C-level name NAME.
1724 If NAME starts with a *, the rest of NAME is output verbatim.
1725 Otherwise NAME is transformed in an implementation-defined way
1726 (usually by the addition of an underscore).
1727 Many macros in the tm file are defined to call this function. */
1729 void
1730 assemble_name (file, name)
1731 FILE *file;
1732 const char *name;
1734 const char *real_name;
1735 tree id;
1737 real_name = (* targetm.strip_name_encoding) (name);
1739 id = maybe_get_identifier (real_name);
1740 if (id)
1741 TREE_SYMBOL_REFERENCED (id) = 1;
1743 if (name[0] == '*')
1744 fputs (&name[1], file);
1745 else
1746 ASM_OUTPUT_LABELREF (file, name);
1749 /* Allocate SIZE bytes writable static space with a gensym name
1750 and return an RTX to refer to its address. */
1753 assemble_static_space (size)
1754 int size;
1756 char name[12];
1757 const char *namestring;
1758 rtx x;
1760 #if 0
1761 if (flag_shared_data)
1762 data_section ();
1763 #endif
1765 ASM_GENERATE_INTERNAL_LABEL (name, "LF", const_labelno);
1766 ++const_labelno;
1767 namestring = ggc_strdup (name);
1769 x = gen_rtx_SYMBOL_REF (Pmode, namestring);
1770 SYMBOL_REF_FLAGS (x) = SYMBOL_FLAG_LOCAL;
1772 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
1773 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name, size,
1774 BIGGEST_ALIGNMENT);
1775 #else
1776 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
1777 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, BIGGEST_ALIGNMENT);
1778 #else
1780 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1781 so that each uninitialized object starts on such a boundary. */
1782 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
1783 int rounded ATTRIBUTE_UNUSED
1784 = ((size + (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1)
1785 / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1786 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1787 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
1789 #endif
1790 #endif
1791 return x;
1794 /* Assemble the static constant template for function entry trampolines.
1795 This is done at most once per compilation.
1796 Returns an RTX for the address of the template. */
1798 #ifdef TRAMPOLINE_TEMPLATE
1800 assemble_trampoline_template ()
1802 char label[256];
1803 const char *name;
1804 int align;
1805 rtx symbol;
1807 /* By default, put trampoline templates in read-only data section. */
1809 #ifdef TRAMPOLINE_SECTION
1810 TRAMPOLINE_SECTION ();
1811 #else
1812 readonly_data_section ();
1813 #endif
1815 /* Write the assembler code to define one. */
1816 align = floor_log2 (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT);
1817 if (align > 0)
1819 ASM_OUTPUT_ALIGN (asm_out_file, align);
1822 (*targetm.asm_out.internal_label) (asm_out_file, "LTRAMP", 0);
1823 TRAMPOLINE_TEMPLATE (asm_out_file);
1825 /* Record the rtl to refer to it. */
1826 ASM_GENERATE_INTERNAL_LABEL (label, "LTRAMP", 0);
1827 name = ggc_strdup (label);
1828 symbol = gen_rtx_SYMBOL_REF (Pmode, name);
1829 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
1831 return symbol;
1833 #endif
1835 /* A and B are either alignments or offsets. Return the minimum alignment
1836 that may be assumed after adding the two together. */
1838 static inline unsigned
1839 min_align (a, b)
1840 unsigned int a, b;
1842 return (a | b) & -(a | b);
1845 /* Return the assembler directive for creating a given kind of integer
1846 object. SIZE is the number of bytes in the object and ALIGNED_P
1847 indicates whether it is known to be aligned. Return NULL if the
1848 assembly dialect has no such directive.
1850 The returned string should be printed at the start of a new line and
1851 be followed immediately by the object's initial value. */
1853 const char *
1854 integer_asm_op (size, aligned_p)
1855 int size;
1856 int aligned_p;
1858 struct asm_int_op *ops;
1860 if (aligned_p)
1861 ops = &targetm.asm_out.aligned_op;
1862 else
1863 ops = &targetm.asm_out.unaligned_op;
1865 switch (size)
1867 case 1:
1868 return targetm.asm_out.byte_op;
1869 case 2:
1870 return ops->hi;
1871 case 4:
1872 return ops->si;
1873 case 8:
1874 return ops->di;
1875 case 16:
1876 return ops->ti;
1877 default:
1878 return NULL;
1882 /* Use directive OP to assemble an integer object X. Print OP at the
1883 start of the line, followed immediately by the value of X. */
1885 void
1886 assemble_integer_with_op (op, x)
1887 const char *op;
1888 rtx x;
1890 fputs (op, asm_out_file);
1891 output_addr_const (asm_out_file, x);
1892 fputc ('\n', asm_out_file);
1895 /* The default implementation of the asm_out.integer target hook. */
1897 bool
1898 default_assemble_integer (x, size, aligned_p)
1899 rtx x ATTRIBUTE_UNUSED;
1900 unsigned int size ATTRIBUTE_UNUSED;
1901 int aligned_p ATTRIBUTE_UNUSED;
1903 const char *op = integer_asm_op (size, aligned_p);
1904 return op && (assemble_integer_with_op (op, x), true);
1907 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
1908 the alignment of the integer in bits. Return 1 if we were able to output
1909 the constant, otherwise 0. If FORCE is nonzero, abort if we can't output
1910 the constant. */
1912 bool
1913 assemble_integer (x, size, align, force)
1914 rtx x;
1915 unsigned int size;
1916 unsigned int align;
1917 int force;
1919 int aligned_p;
1921 aligned_p = (align >= MIN (size * BITS_PER_UNIT, BIGGEST_ALIGNMENT));
1923 /* See if the target hook can handle this kind of object. */
1924 if ((*targetm.asm_out.integer) (x, size, aligned_p))
1925 return true;
1927 /* If the object is a multi-byte one, try splitting it up. Split
1928 it into words it if is multi-word, otherwise split it into bytes. */
1929 if (size > 1)
1931 enum machine_mode omode, imode;
1932 unsigned int subalign;
1933 unsigned int subsize, i;
1935 subsize = size > UNITS_PER_WORD? UNITS_PER_WORD : 1;
1936 subalign = MIN (align, subsize * BITS_PER_UNIT);
1937 omode = mode_for_size (subsize * BITS_PER_UNIT, MODE_INT, 0);
1938 imode = mode_for_size (size * BITS_PER_UNIT, MODE_INT, 0);
1940 for (i = 0; i < size; i += subsize)
1942 rtx partial = simplify_subreg (omode, x, imode, i);
1943 if (!partial || !assemble_integer (partial, subsize, subalign, 0))
1944 break;
1946 if (i == size)
1947 return true;
1949 /* If we've printed some of it, but not all of it, there's no going
1950 back now. */
1951 if (i > 0)
1952 abort ();
1955 if (force)
1956 abort ();
1958 return false;
1961 void
1962 assemble_real (d, mode, align)
1963 REAL_VALUE_TYPE d;
1964 enum machine_mode mode;
1965 unsigned int align;
1967 long data[4];
1968 long l;
1969 unsigned int nalign = min_align (align, 32);
1971 switch (BITS_PER_UNIT)
1973 case 8:
1974 switch (mode)
1976 case SFmode:
1977 REAL_VALUE_TO_TARGET_SINGLE (d, l);
1978 assemble_integer (GEN_INT (l), 4, align, 1);
1979 break;
1980 case DFmode:
1981 REAL_VALUE_TO_TARGET_DOUBLE (d, data);
1982 assemble_integer (GEN_INT (data[0]), 4, align, 1);
1983 assemble_integer (GEN_INT (data[1]), 4, nalign, 1);
1984 break;
1985 case XFmode:
1986 REAL_VALUE_TO_TARGET_LONG_DOUBLE (d, data);
1987 assemble_integer (GEN_INT (data[0]), 4, align, 1);
1988 assemble_integer (GEN_INT (data[1]), 4, nalign, 1);
1989 assemble_integer (GEN_INT (data[2]), 4, nalign, 1);
1990 break;
1991 case TFmode:
1992 REAL_VALUE_TO_TARGET_LONG_DOUBLE (d, data);
1993 assemble_integer (GEN_INT (data[0]), 4, align, 1);
1994 assemble_integer (GEN_INT (data[1]), 4, nalign, 1);
1995 assemble_integer (GEN_INT (data[2]), 4, nalign, 1);
1996 assemble_integer (GEN_INT (data[3]), 4, nalign, 1);
1997 break;
1998 default:
1999 abort ();
2001 break;
2003 case 16:
2004 switch (mode)
2006 case HFmode:
2007 REAL_VALUE_TO_TARGET_SINGLE (d, l);
2008 assemble_integer (GEN_INT (l), 2, align, 1);
2009 break;
2010 case TQFmode:
2011 REAL_VALUE_TO_TARGET_DOUBLE (d, data);
2012 assemble_integer (GEN_INT (data[0]), 2, align, 1);
2013 assemble_integer (GEN_INT (data[1]), 1, nalign, 1);
2014 break;
2015 default:
2016 abort ();
2018 break;
2020 case 32:
2021 switch (mode)
2023 case QFmode:
2024 REAL_VALUE_TO_TARGET_SINGLE (d, l);
2025 assemble_integer (GEN_INT (l), 1, align, 1);
2026 break;
2027 case HFmode:
2028 REAL_VALUE_TO_TARGET_DOUBLE (d, data);
2029 assemble_integer (GEN_INT (data[0]), 1, align, 1);
2030 assemble_integer (GEN_INT (data[1]), 1, nalign, 1);
2031 break;
2032 default:
2033 abort ();
2035 break;
2037 default:
2038 abort ();
2042 /* Given an expression EXP with a constant value,
2043 reduce it to the sum of an assembler symbol and an integer.
2044 Store them both in the structure *VALUE.
2045 Abort if EXP does not reduce. */
2047 struct addr_const GTY(())
2049 rtx base;
2050 HOST_WIDE_INT offset;
2053 static void
2054 decode_addr_const (exp, value)
2055 tree exp;
2056 struct addr_const *value;
2058 tree target = TREE_OPERAND (exp, 0);
2059 int offset = 0;
2060 rtx x;
2062 while (1)
2064 if (TREE_CODE (target) == COMPONENT_REF
2065 && host_integerp (byte_position (TREE_OPERAND (target, 1)), 0))
2068 offset += int_byte_position (TREE_OPERAND (target, 1));
2069 target = TREE_OPERAND (target, 0);
2071 else if (TREE_CODE (target) == ARRAY_REF
2072 || TREE_CODE (target) == ARRAY_RANGE_REF)
2074 offset += (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (target)), 1)
2075 * tree_low_cst (TREE_OPERAND (target, 1), 0));
2076 target = TREE_OPERAND (target, 0);
2078 else
2079 break;
2082 switch (TREE_CODE (target))
2084 case VAR_DECL:
2085 case FUNCTION_DECL:
2086 x = DECL_RTL (target);
2087 break;
2089 case LABEL_DECL:
2090 x = gen_rtx_MEM (FUNCTION_MODE,
2091 gen_rtx_LABEL_REF (VOIDmode, force_label_rtx (target)));
2092 break;
2094 case REAL_CST:
2095 case STRING_CST:
2096 case COMPLEX_CST:
2097 case CONSTRUCTOR:
2098 case INTEGER_CST:
2099 x = output_constant_def (target, 1);
2100 break;
2102 default:
2103 abort ();
2106 if (GET_CODE (x) != MEM)
2107 abort ();
2108 x = XEXP (x, 0);
2110 value->base = x;
2111 value->offset = offset;
2114 /* We do RTX_UNSPEC + XINT (blah), so nothing can go after RTX_UNSPEC. */
2115 enum kind { RTX_UNKNOWN, RTX_DOUBLE, RTX_VECTOR, RTX_INT, RTX_UNSPEC };
2116 struct rtx_const GTY(())
2118 ENUM_BITFIELD(kind) kind : 16;
2119 ENUM_BITFIELD(machine_mode) mode : 16;
2120 union rtx_const_un {
2121 REAL_VALUE_TYPE GTY ((tag ("4"))) du;
2122 struct rtx_const_u_addr {
2123 rtx base;
2124 const char *symbol;
2125 HOST_WIDE_INT offset;
2126 } GTY ((tag ("1"))) addr;
2127 struct rtx_const_u_di {
2128 HOST_WIDE_INT high;
2129 HOST_WIDE_INT low;
2130 } GTY ((tag ("0"))) di;
2132 /* The max vector size we have is 16 wide; two variants for
2133 integral and floating point vectors. */
2134 struct rtx_const_int_vec {
2135 HOST_WIDE_INT high;
2136 HOST_WIDE_INT low;
2137 } GTY ((tag ("2"))) int_vec[16];
2139 REAL_VALUE_TYPE GTY ((tag ("3"))) fp_vec[8];
2141 } GTY ((desc ("%1.kind >= RTX_INT"), descbits ("1"))) un;
2144 /* Uniquize all constants that appear in memory.
2145 Each constant in memory thus far output is recorded
2146 in `const_hash_table'. */
2148 struct constant_descriptor_tree GTY(())
2150 /* A MEM for the constant. */
2151 rtx rtl;
2153 /* The value of the constant. */
2154 tree value;
2157 static GTY((param_is (struct constant_descriptor_tree)))
2158 htab_t const_desc_htab;
2160 static struct constant_descriptor_tree * build_constant_desc PARAMS ((tree));
2161 static void maybe_output_constant_def_contents
2162 PARAMS ((struct constant_descriptor_tree *, int));
2164 /* Compute a hash code for a constant expression. */
2166 static hashval_t
2167 const_desc_hash (ptr)
2168 const void *ptr;
2170 return const_hash_1 (((struct constant_descriptor_tree *)ptr)->value);
2173 static hashval_t
2174 const_hash_1 (exp)
2175 const tree exp;
2177 const char *p;
2178 hashval_t hi;
2179 int len, i;
2180 enum tree_code code = TREE_CODE (exp);
2182 /* Either set P and LEN to the address and len of something to hash and
2183 exit the switch or return a value. */
2185 switch (code)
2187 case INTEGER_CST:
2188 p = (char *) &TREE_INT_CST (exp);
2189 len = sizeof TREE_INT_CST (exp);
2190 break;
2192 case REAL_CST:
2193 return real_hash (TREE_REAL_CST_PTR (exp));
2195 case STRING_CST:
2196 p = TREE_STRING_POINTER (exp);
2197 len = TREE_STRING_LENGTH (exp);
2198 break;
2199 case COMPLEX_CST:
2200 return (const_hash_1 (TREE_REALPART (exp)) * 5
2201 + const_hash_1 (TREE_IMAGPART (exp)));
2203 case CONSTRUCTOR:
2204 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2206 char *tmp;
2208 len = int_size_in_bytes (TREE_TYPE (exp));
2209 tmp = (char *) alloca (len);
2210 get_set_constructor_bytes (exp, (unsigned char *) tmp, len);
2211 p = tmp;
2212 break;
2214 else
2216 tree link;
2218 hi = 5 + int_size_in_bytes (TREE_TYPE (exp));
2220 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2221 if (TREE_VALUE (link))
2222 hi = hi * 603 + const_hash_1 (TREE_VALUE (link));
2224 return hi;
2227 case ADDR_EXPR:
2228 case FDESC_EXPR:
2230 struct addr_const value;
2232 decode_addr_const (exp, &value);
2233 if (GET_CODE (value.base) == SYMBOL_REF)
2235 /* Don't hash the address of the SYMBOL_REF;
2236 only use the offset and the symbol name. */
2237 hi = value.offset;
2238 p = XSTR (value.base, 0);
2239 for (i = 0; p[i] != 0; i++)
2240 hi = ((hi * 613) + (unsigned) (p[i]));
2242 else if (GET_CODE (value.base) == LABEL_REF)
2243 hi = value.offset + CODE_LABEL_NUMBER (XEXP (value.base, 0)) * 13;
2244 else
2245 abort ();
2247 return hi;
2249 case PLUS_EXPR:
2250 case MINUS_EXPR:
2251 return (const_hash_1 (TREE_OPERAND (exp, 0)) * 9
2252 + const_hash_1 (TREE_OPERAND (exp, 1)));
2254 case NOP_EXPR:
2255 case CONVERT_EXPR:
2256 case NON_LVALUE_EXPR:
2257 return const_hash_1 (TREE_OPERAND (exp, 0)) * 7 + 2;
2259 default:
2260 /* A language specific constant. Just hash the code. */
2261 return code;
2264 /* Compute hashing function */
2265 hi = len;
2266 for (i = 0; i < len; i++)
2267 hi = ((hi * 613) + (unsigned) (p[i]));
2269 return hi;
2272 /* Wrapper of compare_constant, for the htab interface. */
2273 static int
2274 const_desc_eq (p1, p2)
2275 const void *p1;
2276 const void *p2;
2278 return compare_constant (((struct constant_descriptor_tree *)p1)->value,
2279 ((struct constant_descriptor_tree *)p2)->value);
2282 /* Compare t1 and t2, and return 1 only if they are known to result in
2283 the same bit pattern on output. */
2285 static int
2286 compare_constant (t1, t2)
2287 const tree t1;
2288 const tree t2;
2290 enum tree_code typecode;
2292 if (t1 == NULL_TREE)
2293 return t2 == NULL_TREE;
2294 if (t2 == NULL_TREE)
2295 return 0;
2297 if (TREE_CODE (t1) != TREE_CODE (t2))
2298 return 0;
2300 switch (TREE_CODE (t1))
2302 case INTEGER_CST:
2303 /* Integer constants are the same only if the same width of type. */
2304 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2305 return 0;
2306 return tree_int_cst_equal (t1, t2);
2308 case REAL_CST:
2309 /* Real constants are the same only if the same width of type. */
2310 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2311 return 0;
2313 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
2315 case STRING_CST:
2316 if (flag_writable_strings)
2317 return 0;
2319 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
2320 return 0;
2322 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
2323 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
2324 TREE_STRING_LENGTH (t1)));
2326 case COMPLEX_CST:
2327 return (compare_constant (TREE_REALPART (t1), TREE_REALPART (t2))
2328 && compare_constant (TREE_IMAGPART (t1), TREE_IMAGPART (t2)));
2330 case CONSTRUCTOR:
2331 typecode = TREE_CODE (TREE_TYPE (t1));
2332 if (typecode != TREE_CODE (TREE_TYPE (t2)))
2333 return 0;
2335 if (typecode == SET_TYPE)
2337 int len = int_size_in_bytes (TREE_TYPE (t2));
2338 unsigned char *tmp1, *tmp2;
2340 if (int_size_in_bytes (TREE_TYPE (t1)) != len)
2341 return 0;
2343 tmp1 = (unsigned char *) alloca (len);
2344 tmp2 = (unsigned char *) alloca (len);
2346 if (get_set_constructor_bytes (t1, tmp1, len) != NULL_TREE)
2347 return 0;
2348 if (get_set_constructor_bytes (t2, tmp2, len) != NULL_TREE)
2349 return 0;
2351 return memcmp (tmp1, tmp2, len) != 0;
2353 else
2355 tree l1, l2;
2357 if (typecode == ARRAY_TYPE)
2359 HOST_WIDE_INT size_1 = int_size_in_bytes (TREE_TYPE (t1));
2360 /* For arrays, check that the sizes all match. */
2361 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2))
2362 || size_1 == -1
2363 || size_1 != int_size_in_bytes (TREE_TYPE (t2)))
2364 return 0;
2366 else
2368 /* For record and union constructors, require exact type
2369 equality. */
2370 if (TREE_TYPE (t1) != TREE_TYPE (t2))
2371 return 0;
2374 for (l1 = CONSTRUCTOR_ELTS (t1), l2 = CONSTRUCTOR_ELTS (t2);
2375 l1 && l2;
2376 l1 = TREE_CHAIN (l1), l2 = TREE_CHAIN (l2))
2378 /* Check that each value is the same... */
2379 if (! compare_constant (TREE_VALUE (l1), TREE_VALUE (l2)))
2380 return 0;
2381 /* ... and that they apply to the same fields! */
2382 if (typecode == ARRAY_TYPE)
2384 if (! compare_constant (TREE_PURPOSE (l1),
2385 TREE_PURPOSE (l2)))
2386 return 0;
2388 else
2390 if (TREE_PURPOSE (l1) != TREE_PURPOSE (l2))
2391 return 0;
2395 return l1 == NULL_TREE && l2 == NULL_TREE;
2398 case ADDR_EXPR:
2399 case FDESC_EXPR:
2401 struct addr_const value1, value2;
2403 decode_addr_const (t1, &value1);
2404 decode_addr_const (t2, &value2);
2405 return (value1.offset == value2.offset
2406 && strcmp (XSTR (value1.base, 0), XSTR (value2.base, 0)) == 0);
2409 case PLUS_EXPR:
2410 case MINUS_EXPR:
2411 case RANGE_EXPR:
2412 return (compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0))
2413 && compare_constant(TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)));
2415 case NOP_EXPR:
2416 case CONVERT_EXPR:
2417 case NON_LVALUE_EXPR:
2418 return compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
2420 default:
2422 tree nt1, nt2;
2423 nt1 = (*lang_hooks.expand_constant) (t1);
2424 nt2 = (*lang_hooks.expand_constant) (t2);
2425 if (nt1 != t1 || nt2 != t2)
2426 return compare_constant (nt1, nt2);
2427 else
2428 return 0;
2432 /* Should not get here. */
2433 abort ();
2436 /* Make a copy of the whole tree structure for a constant. This
2437 handles the same types of nodes that compare_constant handles. */
2439 static tree
2440 copy_constant (exp)
2441 tree exp;
2443 switch (TREE_CODE (exp))
2445 case ADDR_EXPR:
2446 /* For ADDR_EXPR, we do not want to copy the decl whose address
2447 is requested. We do want to copy constants though. */
2448 if (TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (exp, 0))) == 'c')
2449 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2450 copy_constant (TREE_OPERAND (exp, 0)));
2451 else
2452 return copy_node (exp);
2454 case INTEGER_CST:
2455 case REAL_CST:
2456 case STRING_CST:
2457 return copy_node (exp);
2459 case COMPLEX_CST:
2460 return build_complex (TREE_TYPE (exp),
2461 copy_constant (TREE_REALPART (exp)),
2462 copy_constant (TREE_IMAGPART (exp)));
2464 case PLUS_EXPR:
2465 case MINUS_EXPR:
2466 return build (TREE_CODE (exp), TREE_TYPE (exp),
2467 copy_constant (TREE_OPERAND (exp, 0)),
2468 copy_constant (TREE_OPERAND (exp, 1)));
2470 case NOP_EXPR:
2471 case CONVERT_EXPR:
2472 case NON_LVALUE_EXPR:
2473 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2474 copy_constant (TREE_OPERAND (exp, 0)));
2476 case CONSTRUCTOR:
2478 tree copy = copy_node (exp);
2479 tree list = copy_list (CONSTRUCTOR_ELTS (exp));
2480 tree tail;
2482 CONSTRUCTOR_ELTS (copy) = list;
2483 for (tail = list; tail; tail = TREE_CHAIN (tail))
2484 TREE_VALUE (tail) = copy_constant (TREE_VALUE (tail));
2485 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2486 for (tail = list; tail; tail = TREE_CHAIN (tail))
2487 TREE_PURPOSE (tail) = copy_constant (TREE_PURPOSE (tail));
2489 return copy;
2492 default:
2494 tree t;
2495 t = (*lang_hooks.expand_constant) (exp);
2496 if (t != exp)
2497 return copy_constant (t);
2498 else
2499 abort ();
2504 /* Subroutine of output_constant_def:
2505 No constant equal to EXP is known to have been output.
2506 Make a constant descriptor to enter EXP in the hash table.
2507 Assign the label number and construct RTL to refer to the
2508 constant's location in memory.
2509 Caller is responsible for updating the hash table. */
2511 static struct constant_descriptor_tree *
2512 build_constant_desc (exp)
2513 tree exp;
2515 rtx symbol;
2516 rtx rtl;
2517 char label[256];
2518 int labelno;
2519 struct constant_descriptor_tree *desc;
2521 desc = ggc_alloc (sizeof (*desc));
2522 desc->value = copy_constant (exp);
2524 /* Create a string containing the label name, in LABEL. */
2525 labelno = const_labelno++;
2526 ASM_GENERATE_INTERNAL_LABEL (label, "LC", labelno);
2528 /* We have a symbol name; construct the SYMBOL_REF and the MEM. */
2529 symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
2530 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
2531 SYMBOL_REF_DECL (symbol) = exp;
2533 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp)), symbol);
2534 set_mem_attributes (rtl, exp, 1);
2535 set_mem_alias_set (rtl, 0);
2536 set_mem_alias_set (rtl, const_alias_set);
2538 /* Set flags or add text to the name to record information, such as
2539 that it is a local symbol. If the name is changed, the macro
2540 ASM_OUTPUT_LABELREF will have to know how to strip this
2541 information. This call might invalidate our local variable
2542 SYMBOL; we can't use it afterward. */
2544 (*targetm.encode_section_info) (exp, rtl, true);
2546 /* Descriptors start out deferred; this simplifies the logic in
2547 maybe_output_constant_def_contents. However, we do not bump
2548 n_deferred_constants here, because we don't know if we're inside
2549 a function and have an n_deferred_constants to bump. */
2550 DEFERRED_CONSTANT_P (XEXP (rtl, 0)) = 1;
2552 desc->rtl = rtl;
2554 return desc;
2557 /* Return an rtx representing a reference to constant data in memory
2558 for the constant expression EXP.
2560 If assembler code for such a constant has already been output,
2561 return an rtx to refer to it.
2562 Otherwise, output such a constant in memory
2563 and generate an rtx for it.
2565 If DEFER is nonzero, this constant can be deferred and output only
2566 if referenced in the function after all optimizations.
2568 The const_hash_table records which constants already have label strings. */
2571 output_constant_def (exp, defer)
2572 tree exp;
2573 int defer;
2575 struct constant_descriptor_tree *desc;
2576 struct constant_descriptor_tree key;
2577 void **loc;
2579 /* Look up EXP in the table of constant descriptors. If we didn't find
2580 it, create a new one. */
2581 key.value = exp;
2582 loc = htab_find_slot (const_desc_htab, &key, INSERT);
2584 desc = *loc;
2585 if (desc == 0)
2587 desc = build_constant_desc (exp);
2588 *loc = desc;
2591 maybe_output_constant_def_contents (desc, defer);
2592 return desc->rtl;
2595 /* Subroutine of output_constant_def: Decide whether or not we need to
2596 output the constant DESC now, and if so, do it. */
2597 static void
2598 maybe_output_constant_def_contents (desc, defer)
2599 struct constant_descriptor_tree *desc;
2600 int defer;
2602 rtx symbol = XEXP (desc->rtl, 0);
2604 if (flag_syntax_only)
2605 return;
2607 if (!DEFERRED_CONSTANT_P (symbol))
2608 /* Already output; don't do it again. */
2609 return;
2611 /* The only constants that cannot safely be deferred, assuming the
2612 context allows it, are strings under flag_writable_strings. */
2613 if (defer && (TREE_CODE (desc->value) != STRING_CST
2614 || !flag_writable_strings))
2616 if (cfun)
2617 n_deferred_constants++;
2618 return;
2621 output_constant_def_contents (symbol);
2624 /* We must output the constant data referred to by SYMBOL; do so. */
2626 static void
2627 output_constant_def_contents (symbol)
2628 rtx symbol;
2630 tree exp = SYMBOL_REF_DECL (symbol);
2631 const char *label = XSTR (symbol, 0);
2633 /* Make sure any other constants whose addresses appear in EXP
2634 are assigned label numbers. */
2635 int reloc = output_addressed_constants (exp);
2637 /* Align the location counter as required by EXP's data type. */
2638 int align = TYPE_ALIGN (TREE_TYPE (exp));
2639 #ifdef CONSTANT_ALIGNMENT
2640 align = CONSTANT_ALIGNMENT (exp, align);
2641 #endif
2643 /* We are no longer deferring this constant. */
2644 DEFERRED_CONSTANT_P (symbol) = 0;
2646 if (IN_NAMED_SECTION (exp))
2647 named_section (exp, NULL, reloc);
2648 else
2649 (*targetm.asm_out.select_section) (exp, reloc, align);
2651 if (align > BITS_PER_UNIT)
2653 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
2656 /* Output the label itself. */
2657 ASM_OUTPUT_LABEL (asm_out_file, label);
2659 /* Output the value of EXP. */
2660 output_constant (exp,
2661 (TREE_CODE (exp) == STRING_CST
2662 ? MAX (TREE_STRING_LENGTH (exp),
2663 int_size_in_bytes (TREE_TYPE (exp)))
2664 : int_size_in_bytes (TREE_TYPE (exp))),
2665 align);
2669 /* Used in the hash tables to avoid outputting the same constant
2670 twice. Unlike 'struct constant_descriptor_tree', RTX constants
2671 are output once per function, not once per file; there seems
2672 to be no reason for the difference. */
2674 struct constant_descriptor_rtx GTY(())
2676 /* More constant_descriptors with the same hash code. */
2677 struct constant_descriptor_rtx *next;
2679 /* A MEM for the constant. */
2680 rtx rtl;
2682 /* The value of the constant. */
2683 struct rtx_const value;
2686 /* Structure to represent sufficient information about a constant so that
2687 it can be output when the constant pool is output, so that function
2688 integration can be done, and to simplify handling on machines that reference
2689 constant pool as base+displacement. */
2691 struct pool_constant GTY(())
2693 struct constant_descriptor_rtx *desc;
2694 struct pool_constant *next;
2695 struct pool_constant *next_sym;
2696 rtx constant;
2697 enum machine_mode mode;
2698 int labelno;
2699 unsigned int align;
2700 HOST_WIDE_INT offset;
2701 int mark;
2704 /* Hash code for a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true.
2705 The argument is XSTR (... , 0) */
2707 #define SYMHASH(LABEL) (((unsigned long) (LABEL)) % MAX_RTX_HASH_TABLE)
2709 /* Initialize constant pool hashing for a new function. */
2711 void
2712 init_varasm_status (f)
2713 struct function *f;
2715 struct varasm_status *p;
2716 p = (struct varasm_status *) ggc_alloc (sizeof (struct varasm_status));
2717 f->varasm = p;
2718 p->x_const_rtx_hash_table
2719 = ((struct constant_descriptor_rtx **)
2720 ggc_alloc_cleared (MAX_RTX_HASH_TABLE
2721 * sizeof (struct constant_descriptor_rtx *)));
2722 p->x_const_rtx_sym_hash_table
2723 = ((struct pool_constant **)
2724 ggc_alloc_cleared (MAX_RTX_HASH_TABLE
2725 * sizeof (struct pool_constant *)));
2727 p->x_first_pool = p->x_last_pool = 0;
2728 p->x_pool_offset = 0;
2729 p->deferred_constants = 0;
2733 /* Express an rtx for a constant integer (perhaps symbolic)
2734 as the sum of a symbol or label plus an explicit integer.
2735 They are stored into VALUE. */
2737 static void
2738 decode_rtx_const (mode, x, value)
2739 enum machine_mode mode;
2740 rtx x;
2741 struct rtx_const *value;
2743 /* Clear the whole structure, including any gaps. */
2744 memset (value, 0, sizeof (struct rtx_const));
2746 value->kind = RTX_INT; /* Most usual kind. */
2747 value->mode = mode;
2749 switch (GET_CODE (x))
2751 case CONST_DOUBLE:
2752 value->kind = RTX_DOUBLE;
2753 if (GET_MODE (x) != VOIDmode)
2755 const REAL_VALUE_TYPE *r = CONST_DOUBLE_REAL_VALUE (x);
2757 value->mode = GET_MODE (x);
2759 /* Copy the REAL_VALUE_TYPE by members so that we don't
2760 copy garbage from the original structure into our
2761 carefully cleaned hashing structure. */
2762 value->un.du.class = r->class;
2763 value->un.du.sign = r->sign;
2764 switch (r->class)
2766 case rvc_zero:
2767 case rvc_inf:
2768 break;
2769 case rvc_normal:
2770 value->un.du.exp = r->exp;
2771 /* FALLTHRU */
2772 case rvc_nan:
2773 memcpy (value->un.du.sig, r->sig, sizeof (r->sig));
2774 break;
2775 default:
2776 abort ();
2779 else
2781 value->un.di.low = CONST_DOUBLE_LOW (x);
2782 value->un.di.high = CONST_DOUBLE_HIGH (x);
2784 break;
2786 case CONST_VECTOR:
2788 int units, i;
2790 units = CONST_VECTOR_NUNITS (x);
2791 value->kind = RTX_VECTOR;
2792 value->mode = mode;
2794 if (GET_MODE_CLASS (mode) == MODE_VECTOR_INT)
2796 for (i = 0; i < units; ++i)
2798 rtx elt = CONST_VECTOR_ELT (x, i);
2799 if (GET_CODE (elt) == CONST_INT)
2801 value->un.int_vec[i].low = INTVAL (elt);
2802 value->un.int_vec[i].high = 0;
2804 else
2806 value->un.int_vec[i].low = CONST_DOUBLE_LOW (elt);
2807 value->un.int_vec[i].high = CONST_DOUBLE_HIGH (elt);
2811 else if (GET_MODE_CLASS (mode) == MODE_VECTOR_FLOAT)
2813 for (i = 0; i < units; ++i)
2815 const REAL_VALUE_TYPE *r
2816 = CONST_DOUBLE_REAL_VALUE (CONST_VECTOR_ELT (x, i));
2817 REAL_VALUE_TYPE *d = &value->un.fp_vec[i];
2819 /* Copy the REAL_VALUE_TYPE by members so that we don't
2820 copy garbage from the original structure into our
2821 carefully cleaned hashing structure. */
2822 d->class = r->class;
2823 d->sign = r->sign;
2824 switch (r->class)
2826 case rvc_zero:
2827 case rvc_inf:
2828 break;
2829 case rvc_normal:
2830 d->exp = r->exp;
2831 /* FALLTHRU */
2832 case rvc_nan:
2833 memcpy (d->sig, r->sig, sizeof (r->sig));
2834 break;
2835 default:
2836 abort ();
2840 else
2841 abort ();
2843 break;
2845 case CONST_INT:
2846 value->un.addr.offset = INTVAL (x);
2847 break;
2849 case SYMBOL_REF:
2850 case LABEL_REF:
2851 case PC:
2852 value->un.addr.base = x;
2853 break;
2855 case CONST:
2856 x = XEXP (x, 0);
2857 if (GET_CODE (x) == PLUS && GET_CODE (XEXP (x, 1)) == CONST_INT)
2859 value->un.addr.base = XEXP (x, 0);
2860 value->un.addr.offset = INTVAL (XEXP (x, 1));
2862 else if (GET_CODE (x) == MINUS && GET_CODE (XEXP (x, 1)) == CONST_INT)
2864 value->un.addr.base = XEXP (x, 0);
2865 value->un.addr.offset = - INTVAL (XEXP (x, 1));
2867 else
2869 value->un.addr.base = x;
2870 value->un.addr.offset = 0;
2872 break;
2874 default:
2875 value->kind = RTX_UNKNOWN;
2876 break;
2879 if (value->kind == RTX_INT && value->un.addr.base != 0
2880 && GET_CODE (value->un.addr.base) == UNSPEC)
2882 /* For a simple UNSPEC, the base is set to the
2883 operand, the kind field is set to the index of
2884 the unspec expression.
2885 Together with the code below, in case that
2886 the operand is a SYMBOL_REF or LABEL_REF,
2887 the address of the string or the code_label
2888 is taken as base. */
2889 if (XVECLEN (value->un.addr.base, 0) == 1)
2891 value->kind = RTX_UNSPEC + XINT (value->un.addr.base, 1);
2892 value->un.addr.base = XVECEXP (value->un.addr.base, 0, 0);
2896 if (value->kind >= RTX_INT && value->un.addr.base != 0)
2897 switch (GET_CODE (value->un.addr.base))
2899 case SYMBOL_REF:
2900 /* Use the string's address, not the SYMBOL_REF's address,
2901 for the sake of addresses of library routines. */
2902 value->un.addr.symbol = XSTR (value->un.addr.base, 0);
2903 value->un.addr.base = NULL_RTX;
2904 break;
2906 case LABEL_REF:
2907 /* For a LABEL_REF, compare labels. */
2908 value->un.addr.base = XEXP (value->un.addr.base, 0);
2910 default:
2911 break;
2915 /* Given a MINUS expression, simplify it if both sides
2916 include the same symbol. */
2919 simplify_subtraction (x)
2920 rtx x;
2922 struct rtx_const val0, val1;
2924 decode_rtx_const (GET_MODE (x), XEXP (x, 0), &val0);
2925 decode_rtx_const (GET_MODE (x), XEXP (x, 1), &val1);
2927 if (val0.kind >= RTX_INT
2928 && val0.kind == val1.kind
2929 && val0.un.addr.base == val1.un.addr.base
2930 && val0.un.addr.symbol == val1.un.addr.symbol)
2931 return GEN_INT (val0.un.addr.offset - val1.un.addr.offset);
2933 return x;
2936 /* Compute a hash code for a constant RTL expression. */
2938 static unsigned int
2939 const_hash_rtx (mode, x)
2940 enum machine_mode mode;
2941 rtx x;
2943 union {
2944 struct rtx_const value;
2945 unsigned int data[sizeof(struct rtx_const) / sizeof (unsigned int)];
2946 } u;
2948 unsigned int hi;
2949 size_t i;
2951 decode_rtx_const (mode, x, &u.value);
2953 /* Compute hashing function */
2954 hi = 0;
2955 for (i = 0; i < ARRAY_SIZE (u.data); i++)
2956 hi = hi * 613 + u.data[i];
2958 return hi % MAX_RTX_HASH_TABLE;
2961 /* Compare a constant rtl object X with a constant-descriptor DESC.
2962 Return 1 if DESC describes a constant with the same value as X. */
2964 static int
2965 compare_constant_rtx (mode, x, desc)
2966 enum machine_mode mode;
2967 rtx x;
2968 struct constant_descriptor_rtx *desc;
2970 struct rtx_const value;
2972 decode_rtx_const (mode, x, &value);
2974 /* Compare constant contents. */
2975 return memcmp (&value, &desc->value, sizeof (struct rtx_const)) == 0;
2978 /* Construct a constant descriptor for the rtl-expression X.
2979 It is up to the caller to enter the descriptor in the hash table. */
2981 static struct constant_descriptor_rtx *
2982 record_constant_rtx (mode, x)
2983 enum machine_mode mode;
2984 rtx x;
2986 struct constant_descriptor_rtx *ptr;
2988 ptr = (struct constant_descriptor_rtx *) ggc_alloc (sizeof (*ptr));
2989 decode_rtx_const (mode, x, &ptr->value);
2991 return ptr;
2994 /* Given a constant rtx X, return a MEM for the location in memory at which
2995 this constant has been placed. Return 0 if it not has been placed yet. */
2998 mem_for_const_double (x)
2999 rtx x;
3001 enum machine_mode mode = GET_MODE (x);
3002 struct constant_descriptor_rtx *desc;
3004 for (desc = const_rtx_hash_table[const_hash_rtx (mode, x)]; desc;
3005 desc = desc->next)
3006 if (compare_constant_rtx (mode, x, desc))
3007 return desc->rtl;
3009 return 0;
3012 /* Given a constant rtx X, make (or find) a memory constant for its value
3013 and return a MEM rtx to refer to it in memory. */
3016 force_const_mem (mode, x)
3017 enum machine_mode mode;
3018 rtx x;
3020 int hash;
3021 struct constant_descriptor_rtx *desc;
3022 char label[256];
3023 rtx def, symbol;
3024 struct pool_constant *pool;
3025 unsigned int align;
3027 /* If we're not allowed to drop X into the constant pool, don't. */
3028 if ((*targetm.cannot_force_const_mem) (x))
3029 return NULL_RTX;
3031 /* Compute hash code of X. Search the descriptors for that hash code
3032 to see if any of them describes X. If yes, we have an rtx to use. */
3033 hash = const_hash_rtx (mode, x);
3034 for (desc = const_rtx_hash_table[hash]; desc; desc = desc->next)
3035 if (compare_constant_rtx (mode, x, desc))
3036 return desc->rtl;
3038 /* No constant equal to X is known to have been output.
3039 Make a constant descriptor to enter X in the hash table
3040 and make a MEM for it. */
3041 desc = record_constant_rtx (mode, x);
3042 desc->next = const_rtx_hash_table[hash];
3043 const_rtx_hash_table[hash] = desc;
3045 /* Align the location counter as required by EXP's data type. */
3046 align = GET_MODE_ALIGNMENT (mode == VOIDmode ? word_mode : mode);
3047 #ifdef CONSTANT_ALIGNMENT
3048 align = CONSTANT_ALIGNMENT (make_tree ((*lang_hooks.types.type_for_mode)
3049 (mode, 0), x), align);
3050 #endif
3052 pool_offset += (align / BITS_PER_UNIT) - 1;
3053 pool_offset &= ~ ((align / BITS_PER_UNIT) - 1);
3055 if (GET_CODE (x) == LABEL_REF)
3056 LABEL_PRESERVE_P (XEXP (x, 0)) = 1;
3058 /* Allocate a pool constant descriptor, fill it in, and chain it in. */
3059 pool = (struct pool_constant *) ggc_alloc (sizeof (struct pool_constant));
3060 pool->desc = desc;
3061 pool->constant = x;
3062 pool->mode = mode;
3063 pool->labelno = const_labelno;
3064 pool->align = align;
3065 pool->offset = pool_offset;
3066 pool->mark = 1;
3067 pool->next = 0;
3069 if (last_pool == 0)
3070 first_pool = pool;
3071 else
3072 last_pool->next = pool;
3074 last_pool = pool;
3075 pool_offset += GET_MODE_SIZE (mode);
3077 /* Create a string containing the label name, in LABEL. */
3078 ASM_GENERATE_INTERNAL_LABEL (label, "LC", const_labelno);
3080 ++const_labelno;
3082 /* Construct the SYMBOL_REF and the MEM. */
3084 symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
3085 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
3087 pool->desc->rtl = def = gen_rtx_MEM (mode, symbol);
3088 set_mem_attributes (def, (*lang_hooks.types.type_for_mode) (mode, 0), 1);
3089 RTX_UNCHANGING_P (def) = 1;
3091 /* Add label to symbol hash table. */
3092 hash = SYMHASH (XSTR (symbol, 0));
3093 pool->next_sym = const_rtx_sym_hash_table[hash];
3094 const_rtx_sym_hash_table[hash] = pool;
3096 /* Mark the symbol_ref as belonging to this constants pool. */
3097 CONSTANT_POOL_ADDRESS_P (symbol) = 1;
3098 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
3099 current_function_uses_const_pool = 1;
3101 return def;
3104 /* Given a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true, return a pointer to
3105 the corresponding pool_constant structure. */
3107 static struct pool_constant *
3108 find_pool_constant (f, addr)
3109 struct function *f;
3110 rtx addr;
3112 struct pool_constant *pool;
3113 const char *label = XSTR (addr, 0);
3115 for (pool = f->varasm->x_const_rtx_sym_hash_table[SYMHASH (label)]; pool;
3116 pool = pool->next_sym)
3117 if (XSTR (XEXP (pool->desc->rtl, 0), 0) == label)
3118 return pool;
3120 abort ();
3123 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3126 get_pool_constant (addr)
3127 rtx addr;
3129 return (find_pool_constant (cfun, addr))->constant;
3132 /* Given a constant pool SYMBOL_REF, return the corresponding constant
3133 and whether it has been output or not. */
3136 get_pool_constant_mark (addr, pmarked)
3137 rtx addr;
3138 bool *pmarked;
3140 struct pool_constant *pool = find_pool_constant (cfun, addr);
3141 *pmarked = (pool->mark != 0);
3142 return pool->constant;
3145 /* Likewise, but for the constant pool of a specific function. */
3148 get_pool_constant_for_function (f, addr)
3149 struct function *f;
3150 rtx addr;
3152 return (find_pool_constant (f, addr))->constant;
3155 /* Similar, return the mode. */
3157 enum machine_mode
3158 get_pool_mode (addr)
3159 rtx addr;
3161 return (find_pool_constant (cfun, addr))->mode;
3164 enum machine_mode
3165 get_pool_mode_for_function (f, addr)
3166 struct function *f;
3167 rtx addr;
3169 return (find_pool_constant (f, addr))->mode;
3172 /* Similar, return the offset in the constant pool. */
3175 get_pool_offset (addr)
3176 rtx addr;
3178 return (find_pool_constant (cfun, addr))->offset;
3181 /* Return the size of the constant pool. */
3184 get_pool_size ()
3186 return pool_offset;
3189 /* Write all the constants in the constant pool. */
3191 void
3192 output_constant_pool (fnname, fndecl)
3193 const char *fnname ATTRIBUTE_UNUSED;
3194 tree fndecl ATTRIBUTE_UNUSED;
3196 struct pool_constant *pool;
3197 rtx x;
3198 REAL_VALUE_TYPE r;
3200 /* It is possible for gcc to call force_const_mem and then to later
3201 discard the instructions which refer to the constant. In such a
3202 case we do not need to output the constant. */
3203 mark_constant_pool ();
3205 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3206 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file, fnname, fndecl, pool_offset);
3207 #endif
3209 for (pool = first_pool; pool; pool = pool->next)
3211 rtx tmp;
3213 x = pool->constant;
3215 if (! pool->mark)
3216 continue;
3218 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3219 whose CODE_LABEL has been deleted. This can occur if a jump table
3220 is eliminated by optimization. If so, write a constant of zero
3221 instead. Note that this can also happen by turning the
3222 CODE_LABEL into a NOTE. */
3223 /* ??? This seems completely and utterly wrong. Certainly it's
3224 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3225 functioning even with INSN_DELETED_P and friends. */
3227 tmp = x;
3228 switch (GET_CODE (x))
3230 case CONST:
3231 if (GET_CODE (XEXP (x, 0)) != PLUS
3232 || GET_CODE (XEXP (XEXP (x, 0), 0)) != LABEL_REF)
3233 break;
3234 tmp = XEXP (XEXP (x, 0), 0);
3235 /* FALLTHRU */
3237 case LABEL_REF:
3238 tmp = XEXP (x, 0);
3239 if (INSN_DELETED_P (tmp)
3240 || (GET_CODE (tmp) == NOTE
3241 && NOTE_LINE_NUMBER (tmp) == NOTE_INSN_DELETED))
3243 abort ();
3244 x = const0_rtx;
3246 break;
3248 default:
3249 break;
3252 /* First switch to correct section. */
3253 (*targetm.asm_out.select_rtx_section) (pool->mode, x, pool->align);
3255 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3256 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file, x, pool->mode,
3257 pool->align, pool->labelno, done);
3258 #endif
3260 assemble_align (pool->align);
3262 /* Output the label. */
3263 (*targetm.asm_out.internal_label) (asm_out_file, "LC", pool->labelno);
3265 /* Output the value of the constant itself. */
3266 switch (GET_MODE_CLASS (pool->mode))
3268 case MODE_FLOAT:
3269 if (GET_CODE (x) != CONST_DOUBLE)
3270 abort ();
3272 REAL_VALUE_FROM_CONST_DOUBLE (r, x);
3273 assemble_real (r, pool->mode, pool->align);
3274 break;
3276 case MODE_INT:
3277 case MODE_PARTIAL_INT:
3278 assemble_integer (x, GET_MODE_SIZE (pool->mode), pool->align, 1);
3279 break;
3281 case MODE_VECTOR_FLOAT:
3283 int i, units;
3284 rtx elt;
3286 if (GET_CODE (x) != CONST_VECTOR)
3287 abort ();
3289 units = CONST_VECTOR_NUNITS (x);
3291 for (i = 0; i < units; i++)
3293 elt = CONST_VECTOR_ELT (x, i);
3294 REAL_VALUE_FROM_CONST_DOUBLE (r, elt);
3295 assemble_real (r, GET_MODE_INNER (pool->mode), pool->align);
3298 break;
3300 case MODE_VECTOR_INT:
3302 int i, units;
3303 rtx elt;
3305 if (GET_CODE (x) != CONST_VECTOR)
3306 abort ();
3308 units = CONST_VECTOR_NUNITS (x);
3310 for (i = 0; i < units; i++)
3312 elt = CONST_VECTOR_ELT (x, i);
3313 assemble_integer (elt, GET_MODE_UNIT_SIZE (pool->mode),
3314 pool->align, 1);
3317 break;
3319 default:
3320 abort ();
3323 /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
3324 sections have proper size. */
3325 if (pool->align > GET_MODE_BITSIZE (pool->mode)
3326 && in_section == in_named
3327 && get_named_section_flags (in_named_name) & SECTION_MERGE)
3328 assemble_align (pool->align);
3330 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3331 done: ;
3332 #endif
3335 #ifdef ASM_OUTPUT_POOL_EPILOGUE
3336 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file, fnname, fndecl, pool_offset);
3337 #endif
3339 /* Done with this pool. */
3340 first_pool = last_pool = 0;
3343 /* Look through the instructions for this function, and mark all the
3344 entries in the constant pool which are actually being used. Emit
3345 deferred constants which have indeed been used. */
3347 static void
3348 mark_constant_pool ()
3350 rtx insn;
3351 rtx link;
3352 struct pool_constant *pool;
3354 if (first_pool == 0 && n_deferred_constants == 0)
3355 return;
3357 for (pool = first_pool; pool; pool = pool->next)
3358 pool->mark = 0;
3360 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3361 if (INSN_P (insn))
3362 mark_constants (PATTERN (insn));
3364 for (link = current_function_epilogue_delay_list;
3365 link;
3366 link = XEXP (link, 1))
3368 insn = XEXP (link, 0);
3370 if (INSN_P (insn))
3371 mark_constants (PATTERN (insn));
3375 /* Look through appropriate parts of X, marking all entries in the
3376 constant pool which are actually being used. Entries that are only
3377 referenced by other constants are also marked as used. Emit
3378 deferred strings that are used. */
3380 static void
3381 mark_constants (x)
3382 rtx x;
3384 int i;
3385 const char *format_ptr;
3387 if (x == 0)
3388 return;
3390 if (GET_CODE (x) == SYMBOL_REF)
3392 mark_constant (&x, NULL);
3393 return;
3396 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3397 insns, not any notes that may be attached. We don't want to mark
3398 a constant just because it happens to appear in a REG_EQUIV note. */
3399 if (INSN_P (x))
3401 mark_constants (PATTERN (x));
3402 return;
3405 format_ptr = GET_RTX_FORMAT (GET_CODE (x));
3407 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (x)); i++)
3409 switch (*format_ptr++)
3411 case 'e':
3412 mark_constants (XEXP (x, i));
3413 break;
3415 case 'E':
3416 if (XVEC (x, i) != 0)
3418 int j;
3420 for (j = 0; j < XVECLEN (x, i); j++)
3421 mark_constants (XVECEXP (x, i, j));
3423 break;
3425 case 'S':
3426 case 's':
3427 case '0':
3428 case 'i':
3429 case 'w':
3430 case 'n':
3431 case 'u':
3432 case 'B':
3433 break;
3435 default:
3436 abort ();
3441 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3442 to as used. Emit referenced deferred strings. This function can
3443 be used with for_each_rtx to mark all SYMBOL_REFs in an rtx. */
3445 static int
3446 mark_constant (current_rtx, data)
3447 rtx *current_rtx;
3448 void *data ATTRIBUTE_UNUSED;
3450 rtx x = *current_rtx;
3452 if (x == NULL_RTX)
3453 return 0;
3455 else if (GET_CODE (x) == SYMBOL_REF)
3457 if (CONSTANT_POOL_ADDRESS_P (x))
3459 struct pool_constant *pool = find_pool_constant (cfun, x);
3460 if (pool->mark == 0)
3462 pool->mark = 1;
3463 for_each_rtx (&(pool->constant), &mark_constant, NULL);
3465 else
3466 return -1;
3468 else if (DEFERRED_CONSTANT_P (x))
3470 n_deferred_constants--;
3471 output_constant_def_contents (x);
3474 return 0;
3477 /* Find all the constants whose addresses are referenced inside of EXP,
3478 and make sure assembler code with a label has been output for each one.
3479 Indicate whether an ADDR_EXPR has been encountered. */
3481 static int
3482 output_addressed_constants (exp)
3483 tree exp;
3485 int reloc = 0, reloc2;
3486 tree tem;
3488 /* Give the front-end a chance to convert VALUE to something that
3489 looks more like a constant to the back-end. */
3490 exp = (*lang_hooks.expand_constant) (exp);
3492 switch (TREE_CODE (exp))
3494 case ADDR_EXPR:
3495 case FDESC_EXPR:
3496 /* Go inside any operations that get_inner_reference can handle and see
3497 if what's inside is a constant: no need to do anything here for
3498 addresses of variables or functions. */
3499 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
3500 tem = TREE_OPERAND (tem, 0))
3503 if (TREE_CODE_CLASS (TREE_CODE (tem)) == 'c'
3504 || TREE_CODE (tem) == CONSTRUCTOR)
3505 output_constant_def (tem, 0);
3507 if (TREE_PUBLIC (tem))
3508 reloc |= 2;
3509 else
3510 reloc |= 1;
3511 break;
3513 case PLUS_EXPR:
3514 reloc = output_addressed_constants (TREE_OPERAND (exp, 0));
3515 reloc |= output_addressed_constants (TREE_OPERAND (exp, 1));
3516 break;
3518 case MINUS_EXPR:
3519 reloc = output_addressed_constants (TREE_OPERAND (exp, 0));
3520 reloc2 = output_addressed_constants (TREE_OPERAND (exp, 1));
3521 /* The difference of two local labels is computable at link time. */
3522 if (reloc == 1 && reloc2 == 1)
3523 reloc = 0;
3524 else
3525 reloc |= reloc2;
3526 break;
3528 case NOP_EXPR:
3529 case CONVERT_EXPR:
3530 case NON_LVALUE_EXPR:
3531 reloc = output_addressed_constants (TREE_OPERAND (exp, 0));
3532 break;
3534 case CONSTRUCTOR:
3535 for (tem = CONSTRUCTOR_ELTS (exp); tem; tem = TREE_CHAIN (tem))
3536 if (TREE_VALUE (tem) != 0)
3537 reloc |= output_addressed_constants (TREE_VALUE (tem));
3539 break;
3541 default:
3542 break;
3544 return reloc;
3547 /* Return nonzero if VALUE is a valid constant-valued expression
3548 for use in initializing a static variable; one that can be an
3549 element of a "constant" initializer.
3551 Return null_pointer_node if the value is absolute;
3552 if it is relocatable, return the variable that determines the relocation.
3553 We assume that VALUE has been folded as much as possible;
3554 therefore, we do not need to check for such things as
3555 arithmetic-combinations of integers. */
3557 tree
3558 initializer_constant_valid_p (value, endtype)
3559 tree value;
3560 tree endtype;
3562 /* Give the front-end a chance to convert VALUE to something that
3563 looks more like a constant to the back-end. */
3564 value = (*lang_hooks.expand_constant) (value);
3566 switch (TREE_CODE (value))
3568 case CONSTRUCTOR:
3569 if ((TREE_CODE (TREE_TYPE (value)) == UNION_TYPE
3570 || TREE_CODE (TREE_TYPE (value)) == RECORD_TYPE)
3571 && TREE_CONSTANT (value)
3572 && CONSTRUCTOR_ELTS (value))
3573 return
3574 initializer_constant_valid_p (TREE_VALUE (CONSTRUCTOR_ELTS (value)),
3575 endtype);
3577 return TREE_STATIC (value) ? null_pointer_node : 0;
3579 case INTEGER_CST:
3580 case VECTOR_CST:
3581 case REAL_CST:
3582 case STRING_CST:
3583 case COMPLEX_CST:
3584 return null_pointer_node;
3586 case ADDR_EXPR:
3587 case FDESC_EXPR:
3588 return staticp (TREE_OPERAND (value, 0)) ? TREE_OPERAND (value, 0) : 0;
3590 case VIEW_CONVERT_EXPR:
3591 case NON_LVALUE_EXPR:
3592 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3594 case CONVERT_EXPR:
3595 case NOP_EXPR:
3596 /* Allow conversions between pointer types. */
3597 if (POINTER_TYPE_P (TREE_TYPE (value))
3598 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3599 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3601 /* Allow conversions between real types. */
3602 if (FLOAT_TYPE_P (TREE_TYPE (value))
3603 && FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3604 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3606 /* Allow length-preserving conversions between integer types. */
3607 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
3608 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0)))
3609 && (TYPE_PRECISION (TREE_TYPE (value))
3610 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0)))))
3611 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3613 /* Allow conversions between other integer types only if
3614 explicit value. */
3615 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
3616 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3618 tree inner = initializer_constant_valid_p (TREE_OPERAND (value, 0),
3619 endtype);
3620 if (inner == null_pointer_node)
3621 return null_pointer_node;
3622 break;
3625 /* Allow (int) &foo provided int is as wide as a pointer. */
3626 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
3627 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0)))
3628 && (TYPE_PRECISION (TREE_TYPE (value))
3629 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0)))))
3630 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
3631 endtype);
3633 /* Likewise conversions from int to pointers, but also allow
3634 conversions from 0. */
3635 if (POINTER_TYPE_P (TREE_TYPE (value))
3636 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3638 if (integer_zerop (TREE_OPERAND (value, 0)))
3639 return null_pointer_node;
3640 else if (TYPE_PRECISION (TREE_TYPE (value))
3641 <= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0))))
3642 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
3643 endtype);
3646 /* Allow conversions to union types if the value inside is okay. */
3647 if (TREE_CODE (TREE_TYPE (value)) == UNION_TYPE)
3648 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
3649 endtype);
3650 break;
3652 case PLUS_EXPR:
3653 if (! INTEGRAL_TYPE_P (endtype)
3654 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
3656 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
3657 endtype);
3658 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
3659 endtype);
3660 /* If either term is absolute, use the other terms relocation. */
3661 if (valid0 == null_pointer_node)
3662 return valid1;
3663 if (valid1 == null_pointer_node)
3664 return valid0;
3666 break;
3668 case MINUS_EXPR:
3669 if (! INTEGRAL_TYPE_P (endtype)
3670 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
3672 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
3673 endtype);
3674 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
3675 endtype);
3676 /* Win if second argument is absolute. */
3677 if (valid1 == null_pointer_node)
3678 return valid0;
3679 /* Win if both arguments have the same relocation.
3680 Then the value is absolute. */
3681 if (valid0 == valid1 && valid0 != 0)
3682 return null_pointer_node;
3684 /* Since GCC guarantees that string constants are unique in the
3685 generated code, a subtraction between two copies of the same
3686 constant string is absolute. */
3687 if (valid0 && TREE_CODE (valid0) == STRING_CST &&
3688 valid1 && TREE_CODE (valid1) == STRING_CST &&
3689 TREE_STRING_POINTER (valid0) == TREE_STRING_POINTER (valid1))
3690 return null_pointer_node;
3693 /* Support differences between labels. */
3694 if (INTEGRAL_TYPE_P (endtype))
3696 tree op0, op1;
3697 op0 = TREE_OPERAND (value, 0);
3698 op1 = TREE_OPERAND (value, 1);
3700 /* Like STRIP_NOPS except allow the operand mode to widen.
3701 This works around a feature of fold that simplifies
3702 (int)(p1 - p2) to ((int)p1 - (int)p2) under the theory
3703 that the narrower operation is cheaper. */
3705 while (TREE_CODE (op0) == NOP_EXPR
3706 || TREE_CODE (op0) == CONVERT_EXPR
3707 || TREE_CODE (op0) == NON_LVALUE_EXPR)
3709 tree inner = TREE_OPERAND (op0, 0);
3710 if (inner == error_mark_node
3711 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
3712 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0)))
3713 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
3714 break;
3715 op0 = inner;
3718 while (TREE_CODE (op1) == NOP_EXPR
3719 || TREE_CODE (op1) == CONVERT_EXPR
3720 || TREE_CODE (op1) == NON_LVALUE_EXPR)
3722 tree inner = TREE_OPERAND (op1, 0);
3723 if (inner == error_mark_node
3724 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
3725 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op1)))
3726 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
3727 break;
3728 op1 = inner;
3731 if (TREE_CODE (op0) == ADDR_EXPR
3732 && TREE_CODE (TREE_OPERAND (op0, 0)) == LABEL_DECL
3733 && TREE_CODE (op1) == ADDR_EXPR
3734 && TREE_CODE (TREE_OPERAND (op1, 0)) == LABEL_DECL)
3735 return null_pointer_node;
3737 break;
3739 default:
3740 break;
3743 return 0;
3746 /* Output assembler code for constant EXP to FILE, with no label.
3747 This includes the pseudo-op such as ".int" or ".byte", and a newline.
3748 Assumes output_addressed_constants has been done on EXP already.
3750 Generate exactly SIZE bytes of assembler data, padding at the end
3751 with zeros if necessary. SIZE must always be specified.
3753 SIZE is important for structure constructors,
3754 since trailing members may have been omitted from the constructor.
3755 It is also important for initialization of arrays from string constants
3756 since the full length of the string constant might not be wanted.
3757 It is also needed for initialization of unions, where the initializer's
3758 type is just one member, and that may not be as long as the union.
3760 There a case in which we would fail to output exactly SIZE bytes:
3761 for a structure constructor that wants to produce more than SIZE bytes.
3762 But such constructors will never be generated for any possible input.
3764 ALIGN is the alignment of the data in bits. */
3766 void
3767 output_constant (exp, size, align)
3768 tree exp;
3769 HOST_WIDE_INT size;
3770 unsigned int align;
3772 enum tree_code code;
3773 HOST_WIDE_INT thissize;
3775 /* Some front-ends use constants other than the standard language-independent
3776 varieties, but which may still be output directly. Give the front-end a
3777 chance to convert EXP to a language-independent representation. */
3778 exp = (*lang_hooks.expand_constant) (exp);
3780 if (size == 0 || flag_syntax_only)
3781 return;
3783 /* Eliminate any conversions since we'll be outputting the underlying
3784 constant. */
3785 while (TREE_CODE (exp) == NOP_EXPR || TREE_CODE (exp) == CONVERT_EXPR
3786 || TREE_CODE (exp) == NON_LVALUE_EXPR
3787 || TREE_CODE (exp) == VIEW_CONVERT_EXPR)
3788 exp = TREE_OPERAND (exp, 0);
3790 code = TREE_CODE (TREE_TYPE (exp));
3791 thissize = int_size_in_bytes (TREE_TYPE (exp));
3793 /* Allow a constructor with no elements for any data type.
3794 This means to fill the space with zeros. */
3795 if (TREE_CODE (exp) == CONSTRUCTOR && CONSTRUCTOR_ELTS (exp) == 0)
3797 assemble_zeros (size);
3798 return;
3801 if (TREE_CODE (exp) == FDESC_EXPR)
3803 #ifdef ASM_OUTPUT_FDESC
3804 HOST_WIDE_INT part = tree_low_cst (TREE_OPERAND (exp, 1), 0);
3805 tree decl = TREE_OPERAND (exp, 0);
3806 ASM_OUTPUT_FDESC (asm_out_file, decl, part);
3807 #else
3808 abort ();
3809 #endif
3810 return;
3813 /* Now output the underlying data. If we've handling the padding, return.
3814 Otherwise, break and ensure THISSIZE is the size written. */
3815 switch (code)
3817 case CHAR_TYPE:
3818 case BOOLEAN_TYPE:
3819 case INTEGER_TYPE:
3820 case ENUMERAL_TYPE:
3821 case POINTER_TYPE:
3822 case REFERENCE_TYPE:
3823 if (! assemble_integer (expand_expr (exp, NULL_RTX, VOIDmode,
3824 EXPAND_INITIALIZER),
3825 size, align, 0))
3826 error ("initializer for integer value is too complicated");
3827 break;
3829 case REAL_TYPE:
3830 if (TREE_CODE (exp) != REAL_CST)
3831 error ("initializer for floating value is not a floating constant");
3833 assemble_real (TREE_REAL_CST (exp),
3834 mode_for_size (size * BITS_PER_UNIT, MODE_FLOAT, 0),
3835 align);
3836 break;
3838 case COMPLEX_TYPE:
3839 output_constant (TREE_REALPART (exp), thissize / 2, align);
3840 output_constant (TREE_IMAGPART (exp), thissize / 2,
3841 min_align (align, BITS_PER_UNIT * (thissize / 2)));
3842 break;
3844 case ARRAY_TYPE:
3845 case VECTOR_TYPE:
3846 if (TREE_CODE (exp) == CONSTRUCTOR)
3848 output_constructor (exp, size, align);
3849 return;
3851 else if (TREE_CODE (exp) == STRING_CST)
3853 thissize = MIN (TREE_STRING_LENGTH (exp), size);
3854 assemble_string (TREE_STRING_POINTER (exp), thissize);
3856 else if (TREE_CODE (exp) == VECTOR_CST)
3858 int elt_size;
3859 tree link;
3860 unsigned int nalign;
3861 enum machine_mode inner;
3863 inner = GET_MODE_INNER (TYPE_MODE (TREE_TYPE (exp)));
3864 nalign = MIN (align, GET_MODE_ALIGNMENT (inner));
3866 elt_size = GET_MODE_UNIT_SIZE (TYPE_MODE (TREE_TYPE (exp)));
3868 link = TREE_VECTOR_CST_ELTS (exp);
3869 output_constant (TREE_VALUE (link), elt_size, align);
3870 while ((link = TREE_CHAIN (link)) != NULL)
3871 output_constant (TREE_VALUE (link), elt_size, nalign);
3873 else
3874 abort ();
3875 break;
3877 case RECORD_TYPE:
3878 case UNION_TYPE:
3879 if (TREE_CODE (exp) == CONSTRUCTOR)
3880 output_constructor (exp, size, align);
3881 else
3882 abort ();
3883 return;
3885 case SET_TYPE:
3886 if (TREE_CODE (exp) == INTEGER_CST)
3887 assemble_integer (expand_expr (exp, NULL_RTX,
3888 VOIDmode, EXPAND_INITIALIZER),
3889 thissize, align, 1);
3890 else if (TREE_CODE (exp) == CONSTRUCTOR)
3892 unsigned char *buffer = (unsigned char *) alloca (thissize);
3893 if (get_set_constructor_bytes (exp, buffer, thissize))
3894 abort ();
3895 assemble_string ((char *) buffer, thissize);
3897 else
3898 error ("unknown set constructor type");
3899 return;
3901 case ERROR_MARK:
3902 return;
3904 default:
3905 abort ();
3908 size -= thissize;
3909 if (size > 0)
3910 assemble_zeros (size);
3914 /* Subroutine of output_constructor, used for computing the size of
3915 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
3916 type with an unspecified upper bound. */
3918 static unsigned HOST_WIDE_INT
3919 array_size_for_constructor (val)
3920 tree val;
3922 tree max_index, i;
3924 /* This code used to attempt to handle string constants that are not
3925 arrays of single-bytes, but nothing else does, so there's no point in
3926 doing it here. */
3927 if (TREE_CODE (val) == STRING_CST)
3928 return TREE_STRING_LENGTH (val);
3930 max_index = NULL_TREE;
3931 for (i = CONSTRUCTOR_ELTS (val); i; i = TREE_CHAIN (i))
3933 tree index = TREE_PURPOSE (i);
3935 if (TREE_CODE (index) == RANGE_EXPR)
3936 index = TREE_OPERAND (index, 1);
3937 if (max_index == NULL_TREE || tree_int_cst_lt (max_index, index))
3938 max_index = index;
3941 if (max_index == NULL_TREE)
3942 return 0;
3944 /* Compute the total number of array elements. */
3945 i = size_binop (MINUS_EXPR, convert (sizetype, max_index),
3946 convert (sizetype,
3947 TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val)))));
3948 i = size_binop (PLUS_EXPR, i, convert (sizetype, integer_one_node));
3950 /* Multiply by the array element unit size to find number of bytes. */
3951 i = size_binop (MULT_EXPR, i, TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val))));
3953 return tree_low_cst (i, 1);
3956 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
3957 Generate at least SIZE bytes, padding if necessary. */
3959 static void
3960 output_constructor (exp, size, align)
3961 tree exp;
3962 HOST_WIDE_INT size;
3963 unsigned int align;
3965 tree type = TREE_TYPE (exp);
3966 tree link, field = 0;
3967 tree min_index = 0;
3968 /* Number of bytes output or skipped so far.
3969 In other words, current position within the constructor. */
3970 HOST_WIDE_INT total_bytes = 0;
3971 /* Nonzero means BYTE contains part of a byte, to be output. */
3972 int byte_buffer_in_use = 0;
3973 int byte = 0;
3975 if (HOST_BITS_PER_WIDE_INT < BITS_PER_UNIT)
3976 abort ();
3978 if (TREE_CODE (type) == RECORD_TYPE)
3979 field = TYPE_FIELDS (type);
3981 if (TREE_CODE (type) == ARRAY_TYPE
3982 && TYPE_DOMAIN (type) != 0)
3983 min_index = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
3985 /* As LINK goes through the elements of the constant,
3986 FIELD goes through the structure fields, if the constant is a structure.
3987 if the constant is a union, then we override this,
3988 by getting the field from the TREE_LIST element.
3989 But the constant could also be an array. Then FIELD is zero.
3991 There is always a maximum of one element in the chain LINK for unions
3992 (even if the initializer in a source program incorrectly contains
3993 more one). */
3994 for (link = CONSTRUCTOR_ELTS (exp);
3995 link;
3996 link = TREE_CHAIN (link),
3997 field = field ? TREE_CHAIN (field) : 0)
3999 tree val = TREE_VALUE (link);
4000 tree index = 0;
4002 /* The element in a union constructor specifies the proper field
4003 or index. */
4004 if ((TREE_CODE (type) == RECORD_TYPE || TREE_CODE (type) == UNION_TYPE
4005 || TREE_CODE (type) == QUAL_UNION_TYPE)
4006 && TREE_PURPOSE (link) != 0)
4007 field = TREE_PURPOSE (link);
4009 else if (TREE_CODE (type) == ARRAY_TYPE)
4010 index = TREE_PURPOSE (link);
4012 /* Eliminate the marker that makes a cast not be an lvalue. */
4013 if (val != 0)
4014 STRIP_NOPS (val);
4016 if (index && TREE_CODE (index) == RANGE_EXPR)
4018 unsigned HOST_WIDE_INT fieldsize
4019 = int_size_in_bytes (TREE_TYPE (type));
4020 HOST_WIDE_INT lo_index = tree_low_cst (TREE_OPERAND (index, 0), 0);
4021 HOST_WIDE_INT hi_index = tree_low_cst (TREE_OPERAND (index, 1), 0);
4022 HOST_WIDE_INT index;
4023 unsigned int align2 = min_align (align, fieldsize * BITS_PER_UNIT);
4025 for (index = lo_index; index <= hi_index; index++)
4027 /* Output the element's initial value. */
4028 if (val == 0)
4029 assemble_zeros (fieldsize);
4030 else
4031 output_constant (val, fieldsize, align2);
4033 /* Count its size. */
4034 total_bytes += fieldsize;
4037 else if (field == 0 || !DECL_BIT_FIELD (field))
4039 /* An element that is not a bit-field. */
4041 unsigned HOST_WIDE_INT fieldsize;
4042 /* Since this structure is static,
4043 we know the positions are constant. */
4044 HOST_WIDE_INT pos = field ? int_byte_position (field) : 0;
4045 unsigned int align2;
4047 if (index != 0)
4048 pos = (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (val)), 1)
4049 * (tree_low_cst (index, 0) - tree_low_cst (min_index, 0)));
4051 /* Output any buffered-up bit-fields preceding this element. */
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 /* Advance to offset of this element.
4060 Note no alignment needed in an array, since that is guaranteed
4061 if each element has the proper size. */
4062 if ((field != 0 || index != 0) && pos != total_bytes)
4064 assemble_zeros (pos - total_bytes);
4065 total_bytes = pos;
4068 /* Find the alignment of this element. */
4069 align2 = min_align (align, BITS_PER_UNIT * pos);
4071 /* Determine size this element should occupy. */
4072 if (field)
4074 fieldsize = 0;
4076 /* If this is an array with an unspecified upper bound,
4077 the initializer determines the size. */
4078 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4079 but we cannot do this until the deprecated support for
4080 initializing zero-length array members is removed. */
4081 if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
4082 && TYPE_DOMAIN (TREE_TYPE (field))
4083 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field))))
4085 fieldsize = array_size_for_constructor (val);
4086 /* Given a non-empty initialization, this field had
4087 better be last. */
4088 if (fieldsize != 0 && TREE_CHAIN (field) != NULL_TREE)
4089 abort ();
4091 else if (DECL_SIZE_UNIT (field))
4093 /* ??? This can't be right. If the decl size overflows
4094 a host integer we will silently emit no data. */
4095 if (host_integerp (DECL_SIZE_UNIT (field), 1))
4096 fieldsize = tree_low_cst (DECL_SIZE_UNIT (field), 1);
4099 else
4100 fieldsize = int_size_in_bytes (TREE_TYPE (type));
4102 /* Output the element's initial value. */
4103 if (val == 0)
4104 assemble_zeros (fieldsize);
4105 else
4106 output_constant (val, fieldsize, align2);
4108 /* Count its size. */
4109 total_bytes += fieldsize;
4111 else if (val != 0 && TREE_CODE (val) != INTEGER_CST)
4112 error ("invalid initial value for member `%s'",
4113 IDENTIFIER_POINTER (DECL_NAME (field)));
4114 else
4116 /* Element that is a bit-field. */
4118 HOST_WIDE_INT next_offset = int_bit_position (field);
4119 HOST_WIDE_INT end_offset
4120 = (next_offset + tree_low_cst (DECL_SIZE (field), 1));
4122 if (val == 0)
4123 val = integer_zero_node;
4125 /* If this field does not start in this (or, next) byte,
4126 skip some bytes. */
4127 if (next_offset / BITS_PER_UNIT != total_bytes)
4129 /* Output remnant of any bit field in previous bytes. */
4130 if (byte_buffer_in_use)
4132 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4133 total_bytes++;
4134 byte_buffer_in_use = 0;
4137 /* If still not at proper byte, advance to there. */
4138 if (next_offset / BITS_PER_UNIT != total_bytes)
4140 assemble_zeros (next_offset / BITS_PER_UNIT - total_bytes);
4141 total_bytes = next_offset / BITS_PER_UNIT;
4145 if (! byte_buffer_in_use)
4146 byte = 0;
4148 /* We must split the element into pieces that fall within
4149 separate bytes, and combine each byte with previous or
4150 following bit-fields. */
4152 /* next_offset is the offset n fbits from the beginning of
4153 the structure to the next bit of this element to be processed.
4154 end_offset is the offset of the first bit past the end of
4155 this element. */
4156 while (next_offset < end_offset)
4158 int this_time;
4159 int shift;
4160 HOST_WIDE_INT value;
4161 HOST_WIDE_INT next_byte = next_offset / BITS_PER_UNIT;
4162 HOST_WIDE_INT next_bit = next_offset % BITS_PER_UNIT;
4164 /* Advance from byte to byte
4165 within this element when necessary. */
4166 while (next_byte != total_bytes)
4168 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4169 total_bytes++;
4170 byte = 0;
4173 /* Number of bits we can process at once
4174 (all part of the same byte). */
4175 this_time = MIN (end_offset - next_offset,
4176 BITS_PER_UNIT - next_bit);
4177 if (BYTES_BIG_ENDIAN)
4179 /* On big-endian machine, take the most significant bits
4180 first (of the bits that are significant)
4181 and put them into bytes from the most significant end. */
4182 shift = end_offset - next_offset - this_time;
4184 /* Don't try to take a bunch of bits that cross
4185 the word boundary in the INTEGER_CST. We can
4186 only select bits from the LOW or HIGH part
4187 not from both. */
4188 if (shift < HOST_BITS_PER_WIDE_INT
4189 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4191 this_time = shift + this_time - HOST_BITS_PER_WIDE_INT;
4192 shift = HOST_BITS_PER_WIDE_INT;
4195 /* Now get the bits from the appropriate constant word. */
4196 if (shift < HOST_BITS_PER_WIDE_INT)
4197 value = TREE_INT_CST_LOW (val);
4198 else if (shift < 2 * HOST_BITS_PER_WIDE_INT)
4200 value = TREE_INT_CST_HIGH (val);
4201 shift -= HOST_BITS_PER_WIDE_INT;
4203 else
4204 abort ();
4206 /* Get the result. This works only when:
4207 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4208 byte |= (((value >> shift)
4209 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4210 << (BITS_PER_UNIT - this_time - next_bit));
4212 else
4214 /* On little-endian machines,
4215 take first the least significant bits of the value
4216 and pack them starting at the least significant
4217 bits of the bytes. */
4218 shift = next_offset - int_bit_position (field);
4220 /* Don't try to take a bunch of bits that cross
4221 the word boundary in the INTEGER_CST. We can
4222 only select bits from the LOW or HIGH part
4223 not from both. */
4224 if (shift < HOST_BITS_PER_WIDE_INT
4225 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4226 this_time = (HOST_BITS_PER_WIDE_INT - shift);
4228 /* Now get the bits from the appropriate constant word. */
4229 if (shift < HOST_BITS_PER_WIDE_INT)
4230 value = TREE_INT_CST_LOW (val);
4231 else if (shift < 2 * HOST_BITS_PER_WIDE_INT)
4233 value = TREE_INT_CST_HIGH (val);
4234 shift -= HOST_BITS_PER_WIDE_INT;
4236 else
4237 abort ();
4239 /* Get the result. This works only when:
4240 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4241 byte |= (((value >> shift)
4242 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4243 << next_bit);
4246 next_offset += this_time;
4247 byte_buffer_in_use = 1;
4252 if (byte_buffer_in_use)
4254 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4255 total_bytes++;
4258 if (total_bytes < size)
4259 assemble_zeros (size - total_bytes);
4262 /* This TREE_LIST contains any weak symbol declarations waiting
4263 to be emitted. */
4264 static GTY(()) tree weak_decls;
4266 /* Mark DECL as weak. */
4268 static void
4269 mark_weak (decl)
4270 tree decl;
4272 DECL_WEAK (decl) = 1;
4274 if (DECL_RTL_SET_P (decl)
4275 && GET_CODE (DECL_RTL (decl)) == MEM
4276 && XEXP (DECL_RTL (decl), 0)
4277 && GET_CODE (XEXP (DECL_RTL (decl), 0)) == SYMBOL_REF)
4278 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl), 0)) = 1;
4281 /* Merge weak status between NEWDECL and OLDDECL. */
4283 void
4284 merge_weak (newdecl, olddecl)
4285 tree newdecl;
4286 tree olddecl;
4288 if (DECL_WEAK (newdecl) == DECL_WEAK (olddecl))
4289 return;
4291 if (DECL_WEAK (newdecl))
4293 tree wd;
4295 /* NEWDECL is weak, but OLDDECL is not. */
4297 /* If we already output the OLDDECL, we're in trouble; we can't
4298 go back and make it weak. This error cannot caught in
4299 declare_weak because the NEWDECL and OLDDECL was not yet
4300 been merged; therefore, TREE_ASM_WRITTEN was not set. */
4301 if (TREE_ASM_WRITTEN (olddecl))
4302 error_with_decl (newdecl,
4303 "weak declaration of `%s' must precede definition");
4305 /* If we've already generated rtl referencing OLDDECL, we may
4306 have done so in a way that will not function properly with
4307 a weak symbol. */
4308 else if (TREE_USED (olddecl)
4309 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl)))
4310 warning_with_decl (newdecl, "weak declaration of `%s' after first use results in unspecified behavior");
4312 if (SUPPORTS_WEAK)
4314 /* We put the NEWDECL on the weak_decls list at some point.
4315 Replace it with the OLDDECL. */
4316 for (wd = weak_decls; wd; wd = TREE_CHAIN (wd))
4317 if (TREE_VALUE (wd) == newdecl)
4319 TREE_VALUE (wd) = olddecl;
4320 break;
4322 /* We may not find the entry on the list. If NEWDECL is a
4323 weak alias, then we will have already called
4324 globalize_decl to remove the entry; in that case, we do
4325 not need to do anything. */
4328 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
4329 mark_weak (olddecl);
4331 else
4332 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
4333 weak. Just update NEWDECL to indicate that it's weak too. */
4334 mark_weak (newdecl);
4337 /* Declare DECL to be a weak symbol. */
4339 void
4340 declare_weak (decl)
4341 tree decl;
4343 if (! TREE_PUBLIC (decl))
4344 error_with_decl (decl, "weak declaration of `%s' must be public");
4345 else if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
4346 error_with_decl (decl, "weak declaration of `%s' must precede definition");
4347 else if (SUPPORTS_WEAK)
4349 if (! DECL_WEAK (decl))
4350 weak_decls = tree_cons (NULL, decl, weak_decls);
4352 else
4353 warning_with_decl (decl, "weak declaration of `%s' not supported");
4355 mark_weak (decl);
4358 /* Emit any pending weak declarations. */
4360 void
4361 weak_finish ()
4363 tree t;
4365 for (t = weak_decls; t; t = TREE_CHAIN (t))
4367 tree decl = TREE_VALUE (t);
4368 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
4369 const char *const name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
4370 #endif
4372 if (! TREE_USED (decl))
4373 continue;
4375 #ifdef ASM_WEAKEN_DECL
4376 ASM_WEAKEN_DECL (asm_out_file, decl, name, NULL);
4377 #else
4378 #ifdef ASM_WEAKEN_LABEL
4379 ASM_WEAKEN_LABEL (asm_out_file, name);
4380 #else
4381 #ifdef ASM_OUTPUT_WEAK_ALIAS
4382 warning ("only weak aliases are supported in this configuration");
4383 return;
4384 #endif
4385 #endif
4386 #endif
4390 /* Emit the assembly bits to indicate that DECL is globally visible. */
4392 static void
4393 globalize_decl (decl)
4394 tree decl;
4396 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
4398 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
4399 if (DECL_WEAK (decl))
4401 tree *p, t;
4403 #ifdef ASM_WEAKEN_DECL
4404 ASM_WEAKEN_DECL (asm_out_file, decl, name, 0);
4405 #else
4406 ASM_WEAKEN_LABEL (asm_out_file, name);
4407 #endif
4409 /* Remove this function from the pending weak list so that
4410 we do not emit multiple .weak directives for it. */
4411 for (p = &weak_decls; (t = *p) ; )
4413 if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
4414 *p = TREE_CHAIN (t);
4415 else
4416 p = &TREE_CHAIN (t);
4418 return;
4420 #endif
4422 (*targetm.asm_out.globalize_label) (asm_out_file, name);
4425 /* Emit an assembler directive to make the symbol for DECL an alias to
4426 the symbol for TARGET. */
4428 void
4429 assemble_alias (decl, target)
4430 tree decl, target ATTRIBUTE_UNUSED;
4432 const char *name;
4434 /* We must force creation of DECL_RTL for debug info generation, even though
4435 we don't use it here. */
4436 make_decl_rtl (decl, NULL);
4438 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
4440 #ifdef ASM_OUTPUT_DEF
4441 /* Make name accessible from other files, if appropriate. */
4443 if (TREE_PUBLIC (decl))
4445 globalize_decl (decl);
4446 maybe_assemble_visibility (decl);
4449 #ifdef ASM_OUTPUT_DEF_FROM_DECLS
4450 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file, decl, target);
4451 #else
4452 ASM_OUTPUT_DEF (asm_out_file, name, IDENTIFIER_POINTER (target));
4453 #endif
4454 #else /* !ASM_OUTPUT_DEF */
4455 #if defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
4456 if (! DECL_WEAK (decl))
4457 warning ("only weak aliases are supported in this configuration");
4459 #ifdef ASM_WEAKEN_DECL
4460 ASM_WEAKEN_DECL (asm_out_file, decl, name, IDENTIFIER_POINTER (target));
4461 #else
4462 ASM_OUTPUT_WEAK_ALIAS (asm_out_file, name, IDENTIFIER_POINTER (target));
4463 #endif
4464 #else
4465 warning ("alias definitions not supported in this configuration; ignored");
4466 #endif
4467 #endif
4469 TREE_USED (decl) = 1;
4470 TREE_ASM_WRITTEN (decl) = 1;
4471 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl)) = 1;
4474 /* Emit an assembler directive to set symbol for DECL visibility to
4475 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
4477 void
4478 default_assemble_visibility (decl, vis)
4479 tree decl;
4480 int vis;
4482 static const char * const visibility_types[] = {
4483 NULL, "internal", "hidden", "protected"
4486 const char *name, *type;
4488 name = (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
4489 type = visibility_types[vis];
4491 #ifdef HAVE_GAS_HIDDEN
4492 fprintf (asm_out_file, "\t.%s\t", type);
4493 assemble_name (asm_out_file, name);
4494 fprintf (asm_out_file, "\n");
4495 #else
4496 warning ("visibility attribute not supported in this configuration; ignored");
4497 #endif
4500 /* A helper function to call assemble_visibility when needed for a decl. */
4502 static void
4503 maybe_assemble_visibility (decl)
4504 tree decl;
4506 enum symbol_visibility vis = decl_visibility (decl);
4508 if (vis != VISIBILITY_DEFAULT)
4509 (* targetm.asm_out.visibility) (decl, vis);
4512 /* Returns 1 if the target configuration supports defining public symbols
4513 so that one of them will be chosen at link time instead of generating a
4514 multiply-defined symbol error, whether through the use of weak symbols or
4515 a target-specific mechanism for having duplicates discarded. */
4518 supports_one_only ()
4520 if (SUPPORTS_ONE_ONLY)
4521 return 1;
4522 return SUPPORTS_WEAK;
4525 /* Set up DECL as a public symbol that can be defined in multiple
4526 translation units without generating a linker error. */
4528 void
4529 make_decl_one_only (decl)
4530 tree decl;
4532 if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != FUNCTION_DECL)
4533 abort ();
4535 TREE_PUBLIC (decl) = 1;
4537 if (TREE_CODE (decl) == VAR_DECL
4538 && (DECL_INITIAL (decl) == 0 || DECL_INITIAL (decl) == error_mark_node))
4539 DECL_COMMON (decl) = 1;
4540 else if (SUPPORTS_ONE_ONLY)
4542 #ifdef MAKE_DECL_ONE_ONLY
4543 MAKE_DECL_ONE_ONLY (decl);
4544 #endif
4545 DECL_ONE_ONLY (decl) = 1;
4547 else if (SUPPORTS_WEAK)
4548 DECL_WEAK (decl) = 1;
4549 else
4550 abort ();
4553 void
4554 init_varasm_once ()
4556 in_named_htab = htab_create_ggc (31, in_named_entry_hash,
4557 in_named_entry_eq, NULL);
4558 const_desc_htab = htab_create_ggc (1009, const_desc_hash,
4559 const_desc_eq, NULL);
4561 const_alias_set = new_alias_set ();
4564 enum tls_model
4565 decl_tls_model (decl)
4566 tree decl;
4568 enum tls_model kind;
4569 tree attr = lookup_attribute ("tls_model", DECL_ATTRIBUTES (decl));
4570 bool is_local;
4572 if (attr)
4574 attr = TREE_VALUE (TREE_VALUE (attr));
4575 if (TREE_CODE (attr) != STRING_CST)
4576 abort ();
4577 if (!strcmp (TREE_STRING_POINTER (attr), "local-exec"))
4578 kind = TLS_MODEL_LOCAL_EXEC;
4579 else if (!strcmp (TREE_STRING_POINTER (attr), "initial-exec"))
4580 kind = TLS_MODEL_INITIAL_EXEC;
4581 else if (!strcmp (TREE_STRING_POINTER (attr), "local-dynamic"))
4582 kind = optimize ? TLS_MODEL_LOCAL_DYNAMIC : TLS_MODEL_GLOBAL_DYNAMIC;
4583 else if (!strcmp (TREE_STRING_POINTER (attr), "global-dynamic"))
4584 kind = TLS_MODEL_GLOBAL_DYNAMIC;
4585 else
4586 abort ();
4587 return kind;
4590 is_local = (*targetm.binds_local_p) (decl);
4591 if (!flag_pic)
4593 if (is_local)
4594 kind = TLS_MODEL_LOCAL_EXEC;
4595 else
4596 kind = TLS_MODEL_INITIAL_EXEC;
4598 /* Local dynamic is inefficient when we're not combining the
4599 parts of the address. */
4600 else if (optimize && is_local)
4601 kind = TLS_MODEL_LOCAL_DYNAMIC;
4602 else
4603 kind = TLS_MODEL_GLOBAL_DYNAMIC;
4604 if (kind < flag_tls_default)
4605 kind = flag_tls_default;
4607 return kind;
4610 enum symbol_visibility
4611 decl_visibility (decl)
4612 tree decl;
4614 tree attr = lookup_attribute ("visibility", DECL_ATTRIBUTES (decl));
4616 if (attr)
4618 const char *which = TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr)));
4620 if (strcmp (which, "default") == 0)
4621 return VISIBILITY_DEFAULT;
4622 if (strcmp (which, "internal") == 0)
4623 return VISIBILITY_INTERNAL;
4624 if (strcmp (which, "hidden") == 0)
4625 return VISIBILITY_HIDDEN;
4626 if (strcmp (which, "protected") == 0)
4627 return VISIBILITY_PROTECTED;
4629 abort ();
4632 return VISIBILITY_DEFAULT;
4635 /* Select a set of attributes for section NAME based on the properties
4636 of DECL and whether or not RELOC indicates that DECL's initializer
4637 might contain runtime relocations.
4639 We make the section read-only and executable for a function decl,
4640 read-only for a const data decl, and writable for a non-const data decl. */
4642 unsigned int
4643 default_section_type_flags (decl, name, reloc)
4644 tree decl;
4645 const char *name;
4646 int reloc;
4648 return default_section_type_flags_1 (decl, name, reloc, flag_pic);
4651 unsigned int
4652 default_section_type_flags_1 (decl, name, reloc, shlib)
4653 tree decl;
4654 const char *name;
4655 int reloc;
4656 int shlib;
4658 unsigned int flags;
4660 if (decl && TREE_CODE (decl) == FUNCTION_DECL)
4661 flags = SECTION_CODE;
4662 else if (decl && decl_readonly_section_1 (decl, reloc, shlib))
4663 flags = 0;
4664 else
4665 flags = SECTION_WRITE;
4667 if (decl && DECL_ONE_ONLY (decl))
4668 flags |= SECTION_LINKONCE;
4670 if (decl && TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL (decl))
4671 flags |= SECTION_TLS | SECTION_WRITE;
4673 if (strcmp (name, ".bss") == 0
4674 || strncmp (name, ".bss.", 5) == 0
4675 || strncmp (name, ".gnu.linkonce.b.", 16) == 0
4676 || strcmp (name, ".sbss") == 0
4677 || strncmp (name, ".sbss.", 6) == 0
4678 || strncmp (name, ".gnu.linkonce.sb.", 17) == 0
4679 || strcmp (name, ".tbss") == 0
4680 || strncmp (name, ".gnu.linkonce.tb.", 17) == 0)
4681 flags |= SECTION_BSS;
4683 if (strcmp (name, ".tdata") == 0
4684 || strcmp (name, ".tbss") == 0
4685 || strncmp (name, ".gnu.linkonce.td.", 17) == 0
4686 || strncmp (name, ".gnu.linkonce.tb.", 17) == 0)
4687 flags |= SECTION_TLS;
4689 /* These three sections have special ELF types. They are neither
4690 SHT_PROGBITS nor SHT_NOBITS, so when changing sections we don't
4691 want to print a section type (@progbits or @nobits). If someone
4692 is silly enough to emit code or TLS variables to one of these
4693 sections, then don't handle them specially. */
4694 if (!(flags & (SECTION_CODE | SECTION_BSS | SECTION_TLS))
4695 && (strcmp (name, ".init_array") == 0
4696 || strcmp (name, ".fini_array") == 0
4697 || strcmp (name, ".preinit_array") == 0))
4698 flags |= SECTION_NOTYPE;
4700 return flags;
4703 /* Output assembly to switch to section NAME with attribute FLAGS.
4704 Four variants for common object file formats. */
4706 void
4707 default_no_named_section (name, flags)
4708 const char *name ATTRIBUTE_UNUSED;
4709 unsigned int flags ATTRIBUTE_UNUSED;
4711 /* Some object formats don't support named sections at all. The
4712 front-end should already have flagged this as an error. */
4713 abort ();
4716 void
4717 default_elf_asm_named_section (name, flags)
4718 const char *name;
4719 unsigned int flags;
4721 char flagchars[10], *f = flagchars;
4723 if (! named_section_first_declaration (name))
4725 fprintf (asm_out_file, "\t.section\t%s\n", name);
4726 return;
4729 if (!(flags & SECTION_DEBUG))
4730 *f++ = 'a';
4731 if (flags & SECTION_WRITE)
4732 *f++ = 'w';
4733 if (flags & SECTION_CODE)
4734 *f++ = 'x';
4735 if (flags & SECTION_SMALL)
4736 *f++ = 's';
4737 if (flags & SECTION_MERGE)
4738 *f++ = 'M';
4739 if (flags & SECTION_STRINGS)
4740 *f++ = 'S';
4741 if (flags & SECTION_TLS)
4742 *f++ = 'T';
4743 *f = '\0';
4745 fprintf (asm_out_file, "\t.section\t%s,\"%s\"", name, flagchars);
4747 if (!(flags & SECTION_NOTYPE))
4749 const char *type;
4751 if (flags & SECTION_BSS)
4752 type = "nobits";
4753 else
4754 type = "progbits";
4756 fprintf (asm_out_file, ",@%s", type);
4758 if (flags & SECTION_ENTSIZE)
4759 fprintf (asm_out_file, ",%d", flags & SECTION_ENTSIZE);
4762 putc ('\n', asm_out_file);
4765 void
4766 default_coff_asm_named_section (name, flags)
4767 const char *name;
4768 unsigned int flags;
4770 char flagchars[8], *f = flagchars;
4772 if (flags & SECTION_WRITE)
4773 *f++ = 'w';
4774 if (flags & SECTION_CODE)
4775 *f++ = 'x';
4776 *f = '\0';
4778 fprintf (asm_out_file, "\t.section\t%s,\"%s\"\n", name, flagchars);
4781 void
4782 default_pe_asm_named_section (name, flags)
4783 const char *name;
4784 unsigned int flags;
4786 default_coff_asm_named_section (name, flags);
4788 if (flags & SECTION_LINKONCE)
4790 /* Functions may have been compiled at various levels of
4791 optimization so we can't use `same_size' here.
4792 Instead, have the linker pick one. */
4793 fprintf (asm_out_file, "\t.linkonce %s\n",
4794 (flags & SECTION_CODE ? "discard" : "same_size"));
4798 /* Used for vtable gc in GNU binutils. Record that the pointer at OFFSET
4799 from SYMBOL is used in all classes derived from SYMBOL. */
4801 void
4802 assemble_vtable_entry (symbol, offset)
4803 rtx symbol;
4804 HOST_WIDE_INT offset;
4806 fputs ("\t.vtable_entry ", asm_out_file);
4807 output_addr_const (asm_out_file, symbol);
4808 fputs (", ", asm_out_file);
4809 fprintf (asm_out_file, HOST_WIDE_INT_PRINT_DEC, offset);
4810 fputc ('\n', asm_out_file);
4813 /* Used for vtable gc in GNU binutils. Record the class hierarchy by noting
4814 that the vtable symbol CHILD is derived from the vtable symbol PARENT. */
4816 void
4817 assemble_vtable_inherit (child, parent)
4818 rtx child, parent;
4820 fputs ("\t.vtable_inherit ", asm_out_file);
4821 output_addr_const (asm_out_file, child);
4822 fputs (", ", asm_out_file);
4823 output_addr_const (asm_out_file, parent);
4824 fputc ('\n', asm_out_file);
4827 /* The lame default section selector. */
4829 void
4830 default_select_section (decl, reloc, align)
4831 tree decl;
4832 int reloc;
4833 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED;
4835 bool readonly = false;
4837 if (DECL_P (decl))
4839 if (decl_readonly_section (decl, reloc))
4840 readonly = true;
4842 else if (TREE_CODE (decl) == CONSTRUCTOR)
4844 if (! ((flag_pic && reloc)
4845 || !TREE_READONLY (decl)
4846 || TREE_SIDE_EFFECTS (decl)
4847 || !TREE_CONSTANT (decl)))
4848 readonly = true;
4850 else if (TREE_CODE (decl) == STRING_CST)
4851 readonly = !flag_writable_strings;
4852 else if (! (flag_pic && reloc))
4853 readonly = true;
4855 if (readonly)
4856 readonly_data_section ();
4857 else
4858 data_section ();
4861 /* A helper function for default_elf_select_section and
4862 default_elf_unique_section. Categorizes the DECL. */
4864 enum section_category
4866 SECCAT_TEXT,
4868 SECCAT_RODATA,
4869 SECCAT_RODATA_MERGE_STR,
4870 SECCAT_RODATA_MERGE_STR_INIT,
4871 SECCAT_RODATA_MERGE_CONST,
4872 SECCAT_SRODATA,
4874 SECCAT_DATA,
4876 /* To optimize loading of shared programs, define following subsections
4877 of data section:
4878 _REL Contains data that has relocations, so they get grouped
4879 together and dynamic linker will visit fewer pages in memory.
4880 _RO Contains data that is otherwise read-only. This is useful
4881 with prelinking as most relocations won't be dynamically
4882 linked and thus stay read only.
4883 _LOCAL Marks data containing relocations only to local objects.
4884 These relocations will get fully resolved by prelinking. */
4885 SECCAT_DATA_REL,
4886 SECCAT_DATA_REL_LOCAL,
4887 SECCAT_DATA_REL_RO,
4888 SECCAT_DATA_REL_RO_LOCAL,
4890 SECCAT_SDATA,
4891 SECCAT_TDATA,
4893 SECCAT_BSS,
4894 SECCAT_SBSS,
4895 SECCAT_TBSS
4898 static enum section_category
4899 categorize_decl_for_section PARAMS ((tree, int, int));
4901 static enum section_category
4902 categorize_decl_for_section (decl, reloc, shlib)
4903 tree decl;
4904 int reloc;
4905 int shlib;
4907 enum section_category ret;
4909 if (TREE_CODE (decl) == FUNCTION_DECL)
4910 return SECCAT_TEXT;
4911 else if (TREE_CODE (decl) == STRING_CST)
4913 if (flag_writable_strings)
4914 return SECCAT_DATA;
4915 else
4916 return SECCAT_RODATA_MERGE_STR;
4918 else if (TREE_CODE (decl) == VAR_DECL)
4920 if (DECL_INITIAL (decl) == NULL
4921 || DECL_INITIAL (decl) == error_mark_node)
4922 ret = SECCAT_BSS;
4923 else if (! TREE_READONLY (decl)
4924 || TREE_SIDE_EFFECTS (decl)
4925 || ! TREE_CONSTANT (DECL_INITIAL (decl)))
4927 if (shlib && (reloc & 2))
4928 ret = SECCAT_DATA_REL;
4929 else if (shlib && reloc)
4930 ret = SECCAT_DATA_REL_LOCAL;
4931 else
4932 ret = SECCAT_DATA;
4934 else if (shlib && (reloc & 2))
4935 ret = SECCAT_DATA_REL_RO;
4936 else if (shlib && reloc)
4937 ret = SECCAT_DATA_REL_RO_LOCAL;
4938 else if (reloc || flag_merge_constants < 2)
4939 /* C and C++ don't allow different variables to share the same
4940 location. -fmerge-all-constants allows even that (at the
4941 expense of not conforming). */
4942 ret = SECCAT_RODATA;
4943 else if (TREE_CODE (DECL_INITIAL (decl)) == STRING_CST)
4944 ret = SECCAT_RODATA_MERGE_STR_INIT;
4945 else
4946 ret = SECCAT_RODATA_MERGE_CONST;
4948 else if (TREE_CODE (decl) == CONSTRUCTOR)
4950 if ((shlib && reloc)
4951 || TREE_SIDE_EFFECTS (decl)
4952 || ! TREE_CONSTANT (decl))
4953 ret = SECCAT_DATA;
4954 else
4955 ret = SECCAT_RODATA;
4957 else
4958 ret = SECCAT_RODATA;
4960 /* There are no read-only thread-local sections. */
4961 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL (decl))
4963 if (ret == SECCAT_BSS)
4964 ret = SECCAT_TBSS;
4965 else
4966 ret = SECCAT_TDATA;
4969 /* If the target uses small data sections, select it. */
4970 else if ((*targetm.in_small_data_p) (decl))
4972 if (ret == SECCAT_BSS)
4973 ret = SECCAT_SBSS;
4974 else if (targetm.have_srodata_section && ret == SECCAT_RODATA)
4975 ret = SECCAT_SRODATA;
4976 else
4977 ret = SECCAT_SDATA;
4980 return ret;
4983 bool
4984 decl_readonly_section (decl, reloc)
4985 tree decl;
4986 int reloc;
4988 return decl_readonly_section_1 (decl, reloc, flag_pic);
4991 bool
4992 decl_readonly_section_1 (decl, reloc, shlib)
4993 tree decl;
4994 int reloc;
4995 int shlib;
4997 switch (categorize_decl_for_section (decl, reloc, shlib))
4999 case SECCAT_RODATA:
5000 case SECCAT_RODATA_MERGE_STR:
5001 case SECCAT_RODATA_MERGE_STR_INIT:
5002 case SECCAT_RODATA_MERGE_CONST:
5003 case SECCAT_SRODATA:
5004 return true;
5005 break;
5006 default:
5007 return false;
5008 break;
5012 /* Select a section based on the above categorization. */
5014 void
5015 default_elf_select_section (decl, reloc, align)
5016 tree decl;
5017 int reloc;
5018 unsigned HOST_WIDE_INT align;
5020 default_elf_select_section_1 (decl, reloc, align, flag_pic);
5023 void
5024 default_elf_select_section_1 (decl, reloc, align, shlib)
5025 tree decl;
5026 int reloc;
5027 unsigned HOST_WIDE_INT align;
5028 int shlib;
5030 switch (categorize_decl_for_section (decl, reloc, shlib))
5032 case SECCAT_TEXT:
5033 /* We're not supposed to be called on FUNCTION_DECLs. */
5034 abort ();
5035 case SECCAT_RODATA:
5036 readonly_data_section ();
5037 break;
5038 case SECCAT_RODATA_MERGE_STR:
5039 mergeable_string_section (decl, align, 0);
5040 break;
5041 case SECCAT_RODATA_MERGE_STR_INIT:
5042 mergeable_string_section (DECL_INITIAL (decl), align, 0);
5043 break;
5044 case SECCAT_RODATA_MERGE_CONST:
5045 mergeable_constant_section (DECL_MODE (decl), align, 0);
5046 break;
5047 case SECCAT_SRODATA:
5048 named_section (NULL_TREE, ".sdata2", reloc);
5049 break;
5050 case SECCAT_DATA:
5051 data_section ();
5052 break;
5053 case SECCAT_DATA_REL:
5054 named_section (NULL_TREE, ".data.rel", reloc);
5055 break;
5056 case SECCAT_DATA_REL_LOCAL:
5057 named_section (NULL_TREE, ".data.rel.local", reloc);
5058 break;
5059 case SECCAT_DATA_REL_RO:
5060 named_section (NULL_TREE, ".data.rel.ro", reloc);
5061 break;
5062 case SECCAT_DATA_REL_RO_LOCAL:
5063 named_section (NULL_TREE, ".data.rel.ro.local", reloc);
5064 break;
5065 case SECCAT_SDATA:
5066 named_section (NULL_TREE, ".sdata", reloc);
5067 break;
5068 case SECCAT_TDATA:
5069 named_section (NULL_TREE, ".tdata", reloc);
5070 break;
5071 case SECCAT_BSS:
5072 #ifdef BSS_SECTION_ASM_OP
5073 bss_section ();
5074 #else
5075 named_section (NULL_TREE, ".bss", reloc);
5076 #endif
5077 break;
5078 case SECCAT_SBSS:
5079 named_section (NULL_TREE, ".sbss", reloc);
5080 break;
5081 case SECCAT_TBSS:
5082 named_section (NULL_TREE, ".tbss", reloc);
5083 break;
5084 default:
5085 abort ();
5089 /* Construct a unique section name based on the decl name and the
5090 categorization performed above. */
5092 void
5093 default_unique_section (decl, reloc)
5094 tree decl;
5095 int reloc;
5097 default_unique_section_1 (decl, reloc, flag_pic);
5100 void
5101 default_unique_section_1 (decl, reloc, shlib)
5102 tree decl;
5103 int reloc;
5104 int shlib;
5106 bool one_only = DECL_ONE_ONLY (decl);
5107 const char *prefix, *name;
5108 size_t nlen, plen;
5109 char *string;
5111 switch (categorize_decl_for_section (decl, reloc, shlib))
5113 case SECCAT_TEXT:
5114 prefix = one_only ? ".gnu.linkonce.t." : ".text.";
5115 break;
5116 case SECCAT_RODATA:
5117 case SECCAT_RODATA_MERGE_STR:
5118 case SECCAT_RODATA_MERGE_STR_INIT:
5119 case SECCAT_RODATA_MERGE_CONST:
5120 prefix = one_only ? ".gnu.linkonce.r." : ".rodata.";
5121 break;
5122 case SECCAT_SRODATA:
5123 prefix = one_only ? ".gnu.linkonce.s2." : ".sdata2.";
5124 break;
5125 case SECCAT_DATA:
5126 case SECCAT_DATA_REL:
5127 case SECCAT_DATA_REL_LOCAL:
5128 case SECCAT_DATA_REL_RO:
5129 case SECCAT_DATA_REL_RO_LOCAL:
5130 prefix = one_only ? ".gnu.linkonce.d." : ".data.";
5131 break;
5132 case SECCAT_SDATA:
5133 prefix = one_only ? ".gnu.linkonce.s." : ".sdata.";
5134 break;
5135 case SECCAT_BSS:
5136 prefix = one_only ? ".gnu.linkonce.b." : ".bss.";
5137 break;
5138 case SECCAT_SBSS:
5139 prefix = one_only ? ".gnu.linkonce.sb." : ".sbss.";
5140 break;
5141 case SECCAT_TDATA:
5142 prefix = one_only ? ".gnu.linkonce.td." : ".tdata.";
5143 break;
5144 case SECCAT_TBSS:
5145 prefix = one_only ? ".gnu.linkonce.tb." : ".tbss.";
5146 break;
5147 default:
5148 abort ();
5150 plen = strlen (prefix);
5152 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5153 name = (* targetm.strip_name_encoding) (name);
5154 nlen = strlen (name);
5156 string = alloca (nlen + plen + 1);
5157 memcpy (string, prefix, plen);
5158 memcpy (string + plen, name, nlen + 1);
5160 DECL_SECTION_NAME (decl) = build_string (nlen + plen, string);
5163 void
5164 default_select_rtx_section (mode, x, align)
5165 enum machine_mode mode ATTRIBUTE_UNUSED;
5166 rtx x;
5167 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED;
5169 if (flag_pic)
5170 switch (GET_CODE (x))
5172 case CONST:
5173 case SYMBOL_REF:
5174 case LABEL_REF:
5175 data_section ();
5176 return;
5178 default:
5179 break;
5182 readonly_data_section ();
5185 void
5186 default_elf_select_rtx_section (mode, x, align)
5187 enum machine_mode mode;
5188 rtx x;
5189 unsigned HOST_WIDE_INT align;
5191 /* ??? Handle small data here somehow. */
5193 if (flag_pic)
5194 switch (GET_CODE (x))
5196 case CONST:
5197 case SYMBOL_REF:
5198 named_section (NULL_TREE, ".data.rel.ro", 3);
5199 return;
5201 case LABEL_REF:
5202 named_section (NULL_TREE, ".data.rel.ro.local", 1);
5203 return;
5205 default:
5206 break;
5209 mergeable_constant_section (mode, align, 0);
5212 /* Set the generally applicable flags on the SYMBOL_REF for EXP. */
5214 void
5215 default_encode_section_info (decl, rtl, first)
5216 tree decl;
5217 rtx rtl;
5218 int first ATTRIBUTE_UNUSED;
5220 rtx symbol;
5221 int flags;
5223 /* Careful not to prod global register variables. */
5224 if (GET_CODE (rtl) != MEM)
5225 return;
5226 symbol = XEXP (rtl, 0);
5227 if (GET_CODE (symbol) != SYMBOL_REF)
5228 return;
5230 flags = 0;
5231 if (TREE_CODE (decl) == FUNCTION_DECL)
5232 flags |= SYMBOL_FLAG_FUNCTION;
5233 if ((*targetm.binds_local_p) (decl))
5234 flags |= SYMBOL_FLAG_LOCAL;
5235 if ((*targetm.in_small_data_p) (decl))
5236 flags |= SYMBOL_FLAG_SMALL;
5237 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL (decl))
5238 flags |= decl_tls_model (decl) << SYMBOL_FLAG_TLS_SHIFT;
5239 /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names? Without
5240 being PUBLIC, the thing *must* be defined in this translation unit.
5241 Prevent this buglet from being propagated into rtl code as well. */
5242 if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
5243 flags |= SYMBOL_FLAG_EXTERNAL;
5245 SYMBOL_REF_FLAGS (symbol) = flags;
5248 /* By default, we do nothing for encode_section_info, so we need not
5249 do anything but discard the '*' marker. */
5251 const char *
5252 default_strip_name_encoding (str)
5253 const char *str;
5255 return str + (*str == '*');
5258 /* Assume ELF-ish defaults, since that's pretty much the most liberal
5259 wrt cross-module name binding. */
5261 bool
5262 default_binds_local_p (exp)
5263 tree exp;
5265 return default_binds_local_p_1 (exp, flag_pic);
5268 bool
5269 default_binds_local_p_1 (exp, shlib)
5270 tree exp;
5271 int shlib;
5273 bool local_p;
5275 /* A non-decl is an entry in the constant pool. */
5276 if (!DECL_P (exp))
5277 local_p = true;
5278 /* Static variables are always local. */
5279 else if (! TREE_PUBLIC (exp))
5280 local_p = true;
5281 /* A variable is local if the user tells us so. */
5282 else if (decl_visibility (exp) != VISIBILITY_DEFAULT)
5283 local_p = true;
5284 /* Otherwise, variables defined outside this object may not be local. */
5285 else if (DECL_EXTERNAL (exp))
5286 local_p = false;
5287 /* Linkonce and weak data are never local. */
5288 else if (DECL_ONE_ONLY (exp) || DECL_WEAK (exp))
5289 local_p = false;
5290 /* If PIC, then assume that any global name can be overridden by
5291 symbols resolved from other modules. */
5292 else if (shlib)
5293 local_p = false;
5294 /* Uninitialized COMMON variable may be unified with symbols
5295 resolved from other modules. */
5296 else if (DECL_COMMON (exp)
5297 && (DECL_INITIAL (exp) == NULL
5298 || DECL_INITIAL (exp) == error_mark_node))
5299 local_p = false;
5300 /* Otherwise we're left with initialized (or non-common) global data
5301 which is of necessity defined locally. */
5302 else
5303 local_p = true;
5305 return local_p;
5308 /* Determine whether or not a pointer mode is valid. Assume defaults
5309 of ptr_mode or Pmode - can be overridden. */
5310 bool
5311 default_valid_pointer_mode (mode)
5312 enum machine_mode mode;
5314 return (mode == ptr_mode || mode == Pmode);
5317 /* Default function to output code that will globalize a label. A
5318 target must define GLOBAL_ASM_OP or provide it's own function to
5319 globalize a label. */
5320 #ifdef GLOBAL_ASM_OP
5321 void
5322 default_globalize_label (stream, name)
5323 FILE * stream;
5324 const char *name;
5326 fputs (GLOBAL_ASM_OP, stream);
5327 assemble_name (stream, name);
5328 putc ('\n', stream);
5330 #endif /* GLOBAL_ASM_OP */
5332 /* This is how to output an internal numbered label where PREFIX is
5333 the class of label and LABELNO is the number within the class. */
5335 void
5336 default_internal_label (stream, prefix, labelno)
5337 FILE *stream;
5338 const char *prefix;
5339 unsigned long labelno;
5341 char *const buf = alloca (40 + strlen (prefix));
5342 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, labelno);
5343 ASM_OUTPUT_LABEL (stream, buf);
5346 #include "gt-varasm.h"