Add x prefix to v850e case for handling --with-cpu=v850e.
[official-gcc.git] / gcc / varasm.c
blob702cf82446d794c5246d61ca0f9432170fce7f60
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 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 "rtl.h"
33 #include "tree.h"
34 #include "flags.h"
35 #include "function.h"
36 #include "expr.h"
37 #include "hard-reg-set.h"
38 #include "regs.h"
39 #include "real.h"
40 #include "output.h"
41 #include "toplev.h"
42 #include "hashtab.h"
43 #include "c-pragma.h"
44 #include "c-tree.h"
45 #include "ggc.h"
46 #include "langhooks.h"
47 #include "tm_p.h"
48 #include "debug.h"
49 #include "target.h"
51 #ifdef XCOFF_DEBUGGING_INFO
52 #include "xcoffout.h" /* Needed for external data
53 declarations for e.g. AIX 4.x. */
54 #endif
56 #ifndef TRAMPOLINE_ALIGNMENT
57 #define TRAMPOLINE_ALIGNMENT FUNCTION_BOUNDARY
58 #endif
60 #ifndef ASM_STABS_OP
61 #define ASM_STABS_OP "\t.stabs\t"
62 #endif
64 /* The (assembler) name of the first globally-visible object output. */
65 const char *first_global_object_name;
66 const char *weak_global_object_name;
68 struct addr_const;
69 struct constant_descriptor_rtx;
70 struct rtx_const;
71 struct pool_constant;
73 #define MAX_RTX_HASH_TABLE 61
75 struct varasm_status GTY(())
77 /* Hash facility for making memory-constants
78 from constant rtl-expressions. It is used on RISC machines
79 where immediate integer arguments and constant addresses are restricted
80 so that such constants must be stored in memory.
82 This pool of constants is reinitialized for each function
83 so each function gets its own constants-pool that comes right before
84 it. */
85 struct constant_descriptor_rtx ** GTY ((length ("MAX_RTX_HASH_TABLE")))
86 x_const_rtx_hash_table;
87 struct pool_constant ** GTY ((length ("MAX_RTX_HASH_TABLE")))
88 x_const_rtx_sym_hash_table;
90 /* Pointers to first and last constant in pool. */
91 struct pool_constant *x_first_pool;
92 struct pool_constant *x_last_pool;
94 /* Current offset in constant pool (does not include any machine-specific
95 header). */
96 HOST_WIDE_INT x_pool_offset;
99 #define const_rtx_hash_table (cfun->varasm->x_const_rtx_hash_table)
100 #define const_rtx_sym_hash_table (cfun->varasm->x_const_rtx_sym_hash_table)
101 #define first_pool (cfun->varasm->x_first_pool)
102 #define last_pool (cfun->varasm->x_last_pool)
103 #define pool_offset (cfun->varasm->x_pool_offset)
105 /* Number for making the label on the next
106 constant that is stored in memory. */
108 int const_labelno;
110 /* Number for making the label on the next
111 static variable internal to a function. */
113 int var_labelno;
115 /* Carry information from ASM_DECLARE_OBJECT_NAME
116 to ASM_FINISH_DECLARE_OBJECT. */
118 int size_directive_output;
120 /* The last decl for which assemble_variable was called,
121 if it did ASM_DECLARE_OBJECT_NAME.
122 If the last call to assemble_variable didn't do that,
123 this holds 0. */
125 tree last_assemble_variable_decl;
127 /* RTX_UNCHANGING_P in a MEM can mean it is stored into, for initialization.
128 So giving constant the alias set for the type will allow such
129 initializations to appear to conflict with the load of the constant. We
130 avoid this by giving all constants an alias set for just constants.
131 Since there will be no stores to that alias set, nothing will ever
132 conflict with them. */
134 static HOST_WIDE_INT const_alias_set;
136 static const char *strip_reg_name PARAMS ((const char *));
137 static int contains_pointers_p PARAMS ((tree));
138 static void decode_addr_const PARAMS ((tree, struct addr_const *));
139 static unsigned int const_hash PARAMS ((tree));
140 static unsigned int const_hash_1 PARAMS ((tree));
141 static int compare_constant PARAMS ((tree, tree));
142 static tree copy_constant PARAMS ((tree));
143 static void output_constant_def_contents PARAMS ((tree, int, int));
144 static void decode_rtx_const PARAMS ((enum machine_mode, rtx,
145 struct rtx_const *));
146 static unsigned int const_hash_rtx PARAMS ((enum machine_mode, rtx));
147 static int compare_constant_rtx
148 PARAMS ((enum machine_mode, rtx, struct constant_descriptor_rtx *));
149 static struct constant_descriptor_rtx * record_constant_rtx
150 PARAMS ((enum machine_mode, rtx));
151 static struct pool_constant *find_pool_constant PARAMS ((struct function *, rtx));
152 static void mark_constant_pool PARAMS ((void));
153 static void mark_constants PARAMS ((rtx));
154 static int mark_constant PARAMS ((rtx *current_rtx, void *data));
155 static int output_addressed_constants PARAMS ((tree));
156 static void output_after_function_constants PARAMS ((void));
157 static unsigned HOST_WIDE_INT array_size_for_constructor PARAMS ((tree));
158 static unsigned min_align PARAMS ((unsigned, unsigned));
159 static void output_constructor PARAMS ((tree, HOST_WIDE_INT,
160 unsigned int));
161 static void globalize_decl PARAMS ((tree));
162 static void maybe_assemble_visibility PARAMS ((tree));
163 static int in_named_entry_eq PARAMS ((const PTR, const PTR));
164 static hashval_t in_named_entry_hash PARAMS ((const PTR));
165 #ifdef ASM_OUTPUT_BSS
166 static void asm_output_bss PARAMS ((FILE *, tree, const char *, int, int));
167 #endif
168 #ifdef BSS_SECTION_ASM_OP
169 #ifdef ASM_OUTPUT_ALIGNED_BSS
170 static void asm_output_aligned_bss PARAMS ((FILE *, tree, const char *,
171 int, int));
172 #endif
173 #endif /* BSS_SECTION_ASM_OP */
174 static hashval_t const_str_htab_hash PARAMS ((const void *x));
175 static int const_str_htab_eq PARAMS ((const void *x, const void *y));
176 static bool asm_emit_uninitialised PARAMS ((tree, const char*, int, int));
177 static void resolve_unique_section PARAMS ((tree, int, int));
178 static void mark_weak PARAMS ((tree));
180 static enum in_section { no_section, in_text, in_data, in_named
181 #ifdef BSS_SECTION_ASM_OP
182 , in_bss
183 #endif
184 #ifdef CTORS_SECTION_ASM_OP
185 , in_ctors
186 #endif
187 #ifdef DTORS_SECTION_ASM_OP
188 , in_dtors
189 #endif
190 #ifdef READONLY_DATA_SECTION_ASM_OP
191 , in_readonly_data
192 #endif
193 #ifdef EXTRA_SECTIONS
194 , EXTRA_SECTIONS
195 #endif
196 } in_section = no_section;
198 /* Return a non-zero value if DECL has a section attribute. */
199 #ifndef IN_NAMED_SECTION
200 #define IN_NAMED_SECTION(DECL) \
201 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
202 && DECL_SECTION_NAME (DECL) != NULL_TREE)
203 #endif
205 /* Text of section name when in_section == in_named. */
206 static const char *in_named_name;
208 /* Hash table of flags that have been used for a particular named section. */
210 struct in_named_entry
212 const char *name;
213 unsigned int flags;
214 bool declared;
217 static htab_t in_named_htab;
219 /* Define functions like text_section for any extra sections. */
220 #ifdef EXTRA_SECTION_FUNCTIONS
221 EXTRA_SECTION_FUNCTIONS
222 #endif
224 /* Tell assembler to switch to text section. */
226 void
227 text_section ()
229 if (in_section != in_text)
231 in_section = in_text;
232 #ifdef TEXT_SECTION
233 TEXT_SECTION ();
234 #else
235 fprintf (asm_out_file, "%s\n", TEXT_SECTION_ASM_OP);
236 #endif
240 /* Tell assembler to switch to data section. */
242 void
243 data_section ()
245 if (in_section != in_data)
247 in_section = in_data;
248 if (flag_shared_data)
250 #ifdef SHARED_SECTION_ASM_OP
251 fprintf (asm_out_file, "%s\n", SHARED_SECTION_ASM_OP);
252 #else
253 fprintf (asm_out_file, "%s\n", DATA_SECTION_ASM_OP);
254 #endif
256 else
257 fprintf (asm_out_file, "%s\n", DATA_SECTION_ASM_OP);
261 /* Tell assembler to ALWAYS switch to data section, in case
262 it's not sure where it is. */
264 void
265 force_data_section ()
267 in_section = no_section;
268 data_section ();
271 /* Tell assembler to switch to read-only data section. This is normally
272 the text section. */
274 void
275 readonly_data_section ()
277 #ifdef READONLY_DATA_SECTION
278 READONLY_DATA_SECTION (); /* Note this can call data_section. */
279 #else
280 #ifdef READONLY_DATA_SECTION_ASM_OP
281 if (in_section != in_readonly_data)
283 in_section = in_readonly_data;
284 fputs (READONLY_DATA_SECTION_ASM_OP, asm_out_file);
285 fputc ('\n', asm_out_file);
287 #else
288 text_section ();
289 #endif
290 #endif
293 /* Determine if we're in the text section. */
296 in_text_section ()
298 return in_section == in_text;
301 /* Determine if we're in the data section. */
304 in_data_section ()
306 return in_section == in_data;
309 /* Helper routines for maintaining in_named_htab. */
311 static int
312 in_named_entry_eq (p1, p2)
313 const PTR p1;
314 const PTR p2;
316 const struct in_named_entry *old = p1;
317 const char *new = p2;
319 return strcmp (old->name, new) == 0;
322 static hashval_t
323 in_named_entry_hash (p)
324 const PTR p;
326 const struct in_named_entry *old = p;
327 return htab_hash_string (old->name);
330 /* If SECTION has been seen before as a named section, return the flags
331 that were used. Otherwise, return 0. Note, that 0 is a perfectly valid
332 set of flags for a section to have, so 0 does not mean that the section
333 has not been seen. */
335 unsigned int
336 get_named_section_flags (section)
337 const char *section;
339 struct in_named_entry **slot;
341 slot = (struct in_named_entry **)
342 htab_find_slot_with_hash (in_named_htab, section,
343 htab_hash_string (section), NO_INSERT);
345 return slot ? (*slot)->flags : 0;
348 /* Returns true if the section has been declared before. Sets internal
349 flag on this section in in_named_hash so subsequent calls on this
350 section will return false. */
352 bool
353 named_section_first_declaration (name)
354 const char *name;
356 struct in_named_entry **slot;
358 slot = (struct in_named_entry **)
359 htab_find_slot_with_hash (in_named_htab, name,
360 htab_hash_string (name), NO_INSERT);
361 if (! (*slot)->declared)
363 (*slot)->declared = true;
364 return true;
366 else
368 return false;
373 /* Record FLAGS for SECTION. If SECTION was previously recorded with a
374 different set of flags, return false. */
376 bool
377 set_named_section_flags (section, flags)
378 const char *section;
379 unsigned int flags;
381 struct in_named_entry **slot, *entry;
383 slot = (struct in_named_entry **)
384 htab_find_slot_with_hash (in_named_htab, section,
385 htab_hash_string (section), INSERT);
386 entry = *slot;
388 if (!entry)
390 entry = (struct in_named_entry *) xmalloc (sizeof (*entry));
391 *slot = entry;
392 entry->name = ggc_strdup (section);
393 entry->flags = flags;
394 entry->declared = false;
396 else if (entry->flags != flags)
397 return false;
399 return true;
402 /* Tell assembler to change to section NAME with attributes FLAGS. */
404 void
405 named_section_flags (name, flags)
406 const char *name;
407 unsigned int flags;
409 if (in_section != in_named || strcmp (name, in_named_name) != 0)
411 if (! set_named_section_flags (name, flags))
412 abort ();
414 (*targetm.asm_out.named_section) (name, flags);
416 if (flags & SECTION_FORGET)
417 in_section = no_section;
418 else
420 in_named_name = ggc_strdup (name);
421 in_section = in_named;
426 /* Tell assembler to change to section NAME for DECL.
427 If DECL is NULL, just switch to section NAME.
428 If NAME is NULL, get the name from DECL.
429 If RELOC is 1, the initializer for DECL contains relocs. */
431 void
432 named_section (decl, name, reloc)
433 tree decl;
434 const char *name;
435 int reloc;
437 unsigned int flags;
439 if (decl != NULL_TREE && !DECL_P (decl))
440 abort ();
441 if (name == NULL)
442 name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
444 flags = (* targetm.section_type_flags) (decl, name, reloc);
446 /* Sanity check user variables for flag changes. Non-user
447 section flag changes will abort in named_section_flags.
448 However, don't complain if SECTION_OVERRIDE is set.
449 We trust that the setter knows that it is safe to ignore
450 the default flags for this decl. */
451 if (decl && ! set_named_section_flags (name, flags))
453 flags = get_named_section_flags (name);
454 if ((flags & SECTION_OVERRIDE) == 0)
455 error_with_decl (decl, "%s causes a section type conflict");
458 named_section_flags (name, flags);
461 /* If required, set DECL_SECTION_NAME to a unique name. */
463 static void
464 resolve_unique_section (decl, reloc, flag_function_or_data_sections)
465 tree decl;
466 int reloc ATTRIBUTE_UNUSED;
467 int flag_function_or_data_sections;
469 if (DECL_SECTION_NAME (decl) == NULL_TREE
470 && targetm.have_named_sections
471 && (flag_function_or_data_sections
472 || DECL_ONE_ONLY (decl)))
473 (*targetm.asm_out.unique_section) (decl, reloc);
476 #ifdef BSS_SECTION_ASM_OP
478 /* Tell the assembler to switch to the bss section. */
480 void
481 bss_section ()
483 if (in_section != in_bss)
485 #ifdef SHARED_BSS_SECTION_ASM_OP
486 if (flag_shared_data)
487 fprintf (asm_out_file, "%s\n", SHARED_BSS_SECTION_ASM_OP);
488 else
489 #endif
490 fprintf (asm_out_file, "%s\n", BSS_SECTION_ASM_OP);
492 in_section = in_bss;
496 #ifdef ASM_OUTPUT_BSS
498 /* Utility function for ASM_OUTPUT_BSS for targets to use if
499 they don't support alignments in .bss.
500 ??? It is believed that this function will work in most cases so such
501 support is localized here. */
503 static void
504 asm_output_bss (file, decl, name, size, rounded)
505 FILE *file;
506 tree decl ATTRIBUTE_UNUSED;
507 const char *name;
508 int size ATTRIBUTE_UNUSED, rounded;
510 (*targetm.asm_out.globalize_label) (file, name);
511 bss_section ();
512 #ifdef ASM_DECLARE_OBJECT_NAME
513 last_assemble_variable_decl = decl;
514 ASM_DECLARE_OBJECT_NAME (file, name, decl);
515 #else
516 /* Standard thing is just output label for the object. */
517 ASM_OUTPUT_LABEL (file, name);
518 #endif /* ASM_DECLARE_OBJECT_NAME */
519 ASM_OUTPUT_SKIP (file, rounded ? rounded : 1);
522 #endif
524 #ifdef ASM_OUTPUT_ALIGNED_BSS
526 /* Utility function for targets to use in implementing
527 ASM_OUTPUT_ALIGNED_BSS.
528 ??? It is believed that this function will work in most cases so such
529 support is localized here. */
531 static void
532 asm_output_aligned_bss (file, decl, name, size, align)
533 FILE *file;
534 tree decl ATTRIBUTE_UNUSED;
535 const char *name;
536 int size, align;
538 (*targetm.asm_out.globalize_label) (file, name);
539 bss_section ();
540 ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
541 #ifdef ASM_DECLARE_OBJECT_NAME
542 last_assemble_variable_decl = decl;
543 ASM_DECLARE_OBJECT_NAME (file, name, decl);
544 #else
545 /* Standard thing is just output label for the object. */
546 ASM_OUTPUT_LABEL (file, name);
547 #endif /* ASM_DECLARE_OBJECT_NAME */
548 ASM_OUTPUT_SKIP (file, size ? size : 1);
551 #endif
553 #endif /* BSS_SECTION_ASM_OP */
555 /* Switch to the section for function DECL.
557 If DECL is NULL_TREE, switch to the text section.
558 ??? It's not clear that we will ever be passed NULL_TREE, but it's
559 safer to handle it. */
561 void
562 function_section (decl)
563 tree decl;
565 if (decl != NULL_TREE
566 && DECL_SECTION_NAME (decl) != NULL_TREE)
567 named_section (decl, (char *) 0, 0);
568 else
569 text_section ();
572 /* Switch to section for variable DECL. RELOC is the same as the
573 argument to SELECT_SECTION. */
575 void
576 variable_section (decl, reloc)
577 tree decl;
578 int reloc;
580 if (IN_NAMED_SECTION (decl))
581 named_section (decl, NULL, reloc);
582 else
583 (*targetm.asm_out.select_section) (decl, reloc, DECL_ALIGN (decl));
586 /* Tell assembler to switch to the section for the exception handling
587 table. */
589 void
590 default_exception_section ()
592 if (targetm.have_named_sections)
593 named_section (NULL_TREE, ".gcc_except_table", 0);
594 else if (flag_pic)
595 data_section ();
596 else
597 readonly_data_section ();
600 /* Tell assembler to switch to the section for string merging. */
602 void
603 mergeable_string_section (decl, align, flags)
604 tree decl ATTRIBUTE_UNUSED;
605 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED;
606 unsigned int flags ATTRIBUTE_UNUSED;
608 #ifdef HAVE_GAS_SHF_MERGE
609 if (flag_merge_constants
610 && TREE_CODE (decl) == STRING_CST
611 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
612 && align <= 256
613 && TREE_STRING_LENGTH (decl) >= int_size_in_bytes (TREE_TYPE (decl)))
615 enum machine_mode mode;
616 unsigned int modesize;
617 const char *str;
618 int i, j, len, unit;
619 char name[30];
621 mode = TYPE_MODE (TREE_TYPE (TREE_TYPE (decl)));
622 modesize = GET_MODE_BITSIZE (mode);
623 if (modesize >= 8 && modesize <= 256
624 && (modesize & (modesize - 1)) == 0)
626 if (align < modesize)
627 align = modesize;
629 str = TREE_STRING_POINTER (decl);
630 len = TREE_STRING_LENGTH (decl);
631 unit = GET_MODE_SIZE (mode);
633 /* Check for embedded NUL characters. */
634 for (i = 0; i < len; i += unit)
636 for (j = 0; j < unit; j++)
637 if (str[i + j] != '\0')
638 break;
639 if (j == unit)
640 break;
642 if (i == len - unit)
644 sprintf (name, ".rodata.str%d.%d", modesize / 8,
645 (int) (align / 8));
646 flags |= (modesize / 8) | SECTION_MERGE | SECTION_STRINGS;
647 if (!i && modesize < align)
649 /* A "" string with requested alignment greater than
650 character size might cause a problem:
651 if some other string required even bigger
652 alignment than "", then linker might think the
653 "" is just part of padding after some other string
654 and not put it into the hash table initially.
655 But this means "" could have smaller alignment
656 than requested. */
657 #ifdef ASM_OUTPUT_SECTION_START
658 named_section_flags (name, flags);
659 ASM_OUTPUT_SECTION_START (asm_out_file);
660 #else
661 readonly_data_section ();
662 #endif
663 return;
666 named_section_flags (name, flags);
667 return;
671 #endif
672 readonly_data_section ();
675 /* Tell assembler to switch to the section for constant merging. */
677 void
678 mergeable_constant_section (mode, align, flags)
679 enum machine_mode mode ATTRIBUTE_UNUSED;
680 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED;
681 unsigned int flags ATTRIBUTE_UNUSED;
683 #ifdef HAVE_GAS_SHF_MERGE
684 unsigned int modesize = GET_MODE_BITSIZE (mode);
686 if (flag_merge_constants
687 && mode != VOIDmode
688 && mode != BLKmode
689 && modesize <= align
690 && align >= 8
691 && align <= 256
692 && (align & (align - 1)) == 0)
694 char name[24];
696 sprintf (name, ".rodata.cst%d", (int) (align / 8));
697 flags |= (align / 8) | SECTION_MERGE;
698 named_section_flags (name, flags);
699 return;
701 #endif
702 readonly_data_section ();
705 /* Given NAME, a putative register name, discard any customary prefixes. */
707 static const char *
708 strip_reg_name (name)
709 const char *name;
711 #ifdef REGISTER_PREFIX
712 if (!strncmp (name, REGISTER_PREFIX, strlen (REGISTER_PREFIX)))
713 name += strlen (REGISTER_PREFIX);
714 #endif
715 if (name[0] == '%' || name[0] == '#')
716 name++;
717 return name;
720 /* Decode an `asm' spec for a declaration as a register name.
721 Return the register number, or -1 if nothing specified,
722 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
723 or -3 if ASMSPEC is `cc' and is not recognized,
724 or -4 if ASMSPEC is `memory' and is not recognized.
725 Accept an exact spelling or a decimal number.
726 Prefixes such as % are optional. */
729 decode_reg_name (asmspec)
730 const char *asmspec;
732 if (asmspec != 0)
734 int i;
736 /* Get rid of confusing prefixes. */
737 asmspec = strip_reg_name (asmspec);
739 /* Allow a decimal number as a "register name". */
740 for (i = strlen (asmspec) - 1; i >= 0; i--)
741 if (! ISDIGIT (asmspec[i]))
742 break;
743 if (asmspec[0] != 0 && i < 0)
745 i = atoi (asmspec);
746 if (i < FIRST_PSEUDO_REGISTER && i >= 0)
747 return i;
748 else
749 return -2;
752 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
753 if (reg_names[i][0]
754 && ! strcmp (asmspec, strip_reg_name (reg_names[i])))
755 return i;
757 #ifdef ADDITIONAL_REGISTER_NAMES
759 static const struct { const char *const name; const int number; } table[]
760 = ADDITIONAL_REGISTER_NAMES;
762 for (i = 0; i < (int) ARRAY_SIZE (table); i++)
763 if (! strcmp (asmspec, table[i].name))
764 return table[i].number;
766 #endif /* ADDITIONAL_REGISTER_NAMES */
768 if (!strcmp (asmspec, "memory"))
769 return -4;
771 if (!strcmp (asmspec, "cc"))
772 return -3;
774 return -2;
777 return -1;
780 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
781 have static storage duration. In other words, it should not be an
782 automatic variable, including PARM_DECLs.
784 There is, however, one exception: this function handles variables
785 explicitly placed in a particular register by the user.
787 ASMSPEC, if not 0, is the string which the user specified as the
788 assembler symbol name.
790 This is never called for PARM_DECL nodes. */
792 void
793 make_decl_rtl (decl, asmspec)
794 tree decl;
795 const char *asmspec;
797 int top_level = (DECL_CONTEXT (decl) == NULL_TREE);
798 const char *name = 0;
799 const char *new_name = 0;
800 int reg_number;
801 rtx x;
803 /* Check that we are not being given an automatic variable. */
804 /* A weak alias has TREE_PUBLIC set but not the other bits. */
805 if (TREE_CODE (decl) == PARM_DECL
806 || TREE_CODE (decl) == RESULT_DECL
807 || (TREE_CODE (decl) == VAR_DECL
808 && !TREE_STATIC (decl)
809 && !TREE_PUBLIC (decl)
810 && !DECL_EXTERNAL (decl)
811 && !DECL_REGISTER (decl)))
812 abort ();
813 /* And that we were not given a type or a label. */
814 else if (TREE_CODE (decl) == TYPE_DECL
815 || TREE_CODE (decl) == LABEL_DECL)
816 abort ();
818 /* For a duplicate declaration, we can be called twice on the
819 same DECL node. Don't discard the RTL already made. */
820 if (DECL_RTL_SET_P (decl))
822 /* If the old RTL had the wrong mode, fix the mode. */
823 if (GET_MODE (DECL_RTL (decl)) != DECL_MODE (decl))
824 SET_DECL_RTL (decl, adjust_address_nv (DECL_RTL (decl),
825 DECL_MODE (decl), 0));
827 /* ??? Another way to do this would be to maintain a hashed
828 table of such critters. Instead of adding stuff to a DECL
829 to give certain attributes to it, we could use an external
830 hash map from DECL to set of attributes. */
832 /* Let the target reassign the RTL if it wants.
833 This is necessary, for example, when one machine specific
834 decl attribute overrides another. */
835 (* targetm.encode_section_info) (decl, false);
836 return;
839 new_name = name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
841 reg_number = decode_reg_name (asmspec);
842 if (reg_number == -2)
844 /* ASMSPEC is given, and not the name of a register. Mark the
845 name with a star so assemble_name won't munge it. */
846 char *starred = alloca (strlen (asmspec) + 2);
847 starred[0] = '*';
848 strcpy (starred + 1, asmspec);
849 new_name = starred;
852 if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
854 /* First detect errors in declaring global registers. */
855 if (reg_number == -1)
856 error_with_decl (decl, "register name not specified for `%s'");
857 else if (reg_number < 0)
858 error_with_decl (decl, "invalid register name for `%s'");
859 else if (TYPE_MODE (TREE_TYPE (decl)) == BLKmode)
860 error_with_decl (decl,
861 "data type of `%s' isn't suitable for a register");
862 else if (! HARD_REGNO_MODE_OK (reg_number, TYPE_MODE (TREE_TYPE (decl))))
863 error_with_decl (decl,
864 "register specified for `%s' isn't suitable for data type");
865 /* Now handle properly declared static register variables. */
866 else
868 int nregs;
870 if (DECL_INITIAL (decl) != 0 && TREE_STATIC (decl))
872 DECL_INITIAL (decl) = 0;
873 error ("global register variable has initial value");
875 if (TREE_THIS_VOLATILE (decl))
876 warning ("volatile register variables don't work as you might wish");
878 /* If the user specified one of the eliminables registers here,
879 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
880 confused with that register and be eliminated. This usage is
881 somewhat suspect... */
883 SET_DECL_RTL (decl, gen_rtx_raw_REG (DECL_MODE (decl), reg_number));
884 ORIGINAL_REGNO (DECL_RTL (decl)) = reg_number;
885 REG_USERVAR_P (DECL_RTL (decl)) = 1;
887 if (TREE_STATIC (decl))
889 /* Make this register global, so not usable for anything
890 else. */
891 #ifdef ASM_DECLARE_REGISTER_GLOBAL
892 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file, decl, reg_number, name);
893 #endif
894 nregs = HARD_REGNO_NREGS (reg_number, DECL_MODE (decl));
895 while (nregs > 0)
896 globalize_reg (reg_number + --nregs);
899 /* As a register variable, it has no section. */
900 return;
904 /* Now handle ordinary static variables and functions (in memory).
905 Also handle vars declared register invalidly. */
907 if (reg_number >= 0 || reg_number == -3)
908 error_with_decl (decl,
909 "register name given for non-register variable `%s'");
911 /* Specifying a section attribute on a variable forces it into a
912 non-.bss section, and thus it cannot be common. */
913 if (TREE_CODE (decl) == VAR_DECL
914 && DECL_SECTION_NAME (decl) != NULL_TREE
915 && DECL_INITIAL (decl) == NULL_TREE
916 && DECL_COMMON (decl))
917 DECL_COMMON (decl) = 0;
919 /* Variables can't be both common and weak. */
920 if (TREE_CODE (decl) == VAR_DECL && DECL_WEAK (decl))
921 DECL_COMMON (decl) = 0;
923 /* Can't use just the variable's own name for a variable
924 whose scope is less than the whole file, unless it's a member
925 of a local class (which will already be unambiguous).
926 Concatenate a distinguishing number. */
927 if (!top_level && !TREE_PUBLIC (decl)
928 && ! (DECL_CONTEXT (decl) && TYPE_P (DECL_CONTEXT (decl)))
929 && asmspec == 0
930 && name == IDENTIFIER_POINTER (DECL_NAME (decl)))
932 char *label;
934 ASM_FORMAT_PRIVATE_NAME (label, name, var_labelno);
935 var_labelno++;
936 new_name = label;
939 if (name != new_name)
941 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (new_name));
942 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
945 /* If this variable is to be treated as volatile, show its
946 tree node has side effects. */
947 if ((flag_volatile_global && TREE_CODE (decl) == VAR_DECL
948 && TREE_PUBLIC (decl))
949 || ((flag_volatile_static && TREE_CODE (decl) == VAR_DECL
950 && (TREE_PUBLIC (decl) || TREE_STATIC (decl)))))
951 TREE_SIDE_EFFECTS (decl) = 1;
953 x = gen_rtx_MEM (DECL_MODE (decl), gen_rtx_SYMBOL_REF (Pmode, name));
954 SYMBOL_REF_WEAK (XEXP (x, 0)) = DECL_WEAK (decl);
955 if (TREE_CODE (decl) != FUNCTION_DECL)
956 set_mem_attributes (x, decl, 1);
957 SET_DECL_RTL (decl, x);
959 /* Optionally set flags or add text to the name to record information
960 such as that it is a function name.
961 If the name is changed, the macro ASM_OUTPUT_LABELREF
962 will have to know how to strip this information. */
963 (* targetm.encode_section_info) (decl, true);
966 /* Make the rtl for variable VAR be volatile.
967 Use this only for static variables. */
969 void
970 make_var_volatile (var)
971 tree var;
973 if (GET_CODE (DECL_RTL (var)) != MEM)
974 abort ();
976 MEM_VOLATILE_P (DECL_RTL (var)) = 1;
979 /* Output alignment directive to align for constant expression EXP. */
981 void
982 assemble_constant_align (exp)
983 tree exp;
985 int align;
987 /* Align the location counter as required by EXP's data type. */
988 align = TYPE_ALIGN (TREE_TYPE (exp));
989 #ifdef CONSTANT_ALIGNMENT
990 align = CONSTANT_ALIGNMENT (exp, align);
991 #endif
993 if (align > BITS_PER_UNIT)
995 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
999 /* Output a string of literal assembler code
1000 for an `asm' keyword used between functions. */
1002 void
1003 assemble_asm (string)
1004 tree string;
1006 app_enable ();
1008 if (TREE_CODE (string) == ADDR_EXPR)
1009 string = TREE_OPERAND (string, 0);
1011 fprintf (asm_out_file, "\t%s\n", TREE_STRING_POINTER (string));
1014 /* Record an element in the table of global destructors. SYMBOL is
1015 a SYMBOL_REF of the function to be called; PRIORITY is a number
1016 between 0 and MAX_INIT_PRIORITY. */
1018 void
1019 default_stabs_asm_out_destructor (symbol, priority)
1020 rtx symbol;
1021 int priority ATTRIBUTE_UNUSED;
1023 /* Tell GNU LD that this is part of the static destructor set.
1024 This will work for any system that uses stabs, most usefully
1025 aout systems. */
1026 fprintf (asm_out_file, "%s\"___DTOR_LIST__\",22,0,0,", ASM_STABS_OP);
1027 assemble_name (asm_out_file, XSTR (symbol, 0));
1028 fputc ('\n', asm_out_file);
1031 void
1032 default_named_section_asm_out_destructor (symbol, priority)
1033 rtx symbol;
1034 int priority;
1036 const char *section = ".dtors";
1037 char buf[16];
1039 /* ??? This only works reliably with the GNU linker. */
1040 if (priority != DEFAULT_INIT_PRIORITY)
1042 sprintf (buf, ".dtors.%.5u",
1043 /* Invert the numbering so the linker puts us in the proper
1044 order; constructors are run from right to left, and the
1045 linker sorts in increasing order. */
1046 MAX_INIT_PRIORITY - priority);
1047 section = buf;
1050 named_section_flags (section, SECTION_WRITE);
1051 assemble_align (POINTER_SIZE);
1052 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1055 #ifdef DTORS_SECTION_ASM_OP
1056 void
1057 dtors_section ()
1059 if (in_section != in_dtors)
1061 in_section = in_dtors;
1062 fputs (DTORS_SECTION_ASM_OP, asm_out_file);
1063 fputc ('\n', asm_out_file);
1067 void
1068 default_dtor_section_asm_out_destructor (symbol, priority)
1069 rtx symbol;
1070 int priority ATTRIBUTE_UNUSED;
1072 dtors_section ();
1073 assemble_align (POINTER_SIZE);
1074 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1076 #endif
1078 /* Likewise for global constructors. */
1080 void
1081 default_stabs_asm_out_constructor (symbol, priority)
1082 rtx symbol;
1083 int priority ATTRIBUTE_UNUSED;
1085 /* Tell GNU LD that this is part of the static destructor set.
1086 This will work for any system that uses stabs, most usefully
1087 aout systems. */
1088 fprintf (asm_out_file, "%s\"___CTOR_LIST__\",22,0,0,", ASM_STABS_OP);
1089 assemble_name (asm_out_file, XSTR (symbol, 0));
1090 fputc ('\n', asm_out_file);
1093 void
1094 default_named_section_asm_out_constructor (symbol, priority)
1095 rtx symbol;
1096 int priority;
1098 const char *section = ".ctors";
1099 char buf[16];
1101 /* ??? This only works reliably with the GNU linker. */
1102 if (priority != DEFAULT_INIT_PRIORITY)
1104 sprintf (buf, ".ctors.%.5u",
1105 /* Invert the numbering so the linker puts us in the proper
1106 order; constructors are run from right to left, and the
1107 linker sorts in increasing order. */
1108 MAX_INIT_PRIORITY - priority);
1109 section = buf;
1112 named_section_flags (section, SECTION_WRITE);
1113 assemble_align (POINTER_SIZE);
1114 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1117 #ifdef CTORS_SECTION_ASM_OP
1118 void
1119 ctors_section ()
1121 if (in_section != in_ctors)
1123 in_section = in_ctors;
1124 fputs (CTORS_SECTION_ASM_OP, asm_out_file);
1125 fputc ('\n', asm_out_file);
1129 void
1130 default_ctor_section_asm_out_constructor (symbol, priority)
1131 rtx symbol;
1132 int priority ATTRIBUTE_UNUSED;
1134 ctors_section ();
1135 assemble_align (POINTER_SIZE);
1136 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1138 #endif
1140 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1141 a non-zero value if the constant pool should be output before the
1142 start of the function, or a zero value if the pool should output
1143 after the end of the function. The default is to put it before the
1144 start. */
1146 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1147 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1148 #endif
1150 /* Output assembler code for the constant pool of a function and associated
1151 with defining the name of the function. DECL describes the function.
1152 NAME is the function's name. For the constant pool, we use the current
1153 constant pool data. */
1155 void
1156 assemble_start_function (decl, fnname)
1157 tree decl;
1158 const char *fnname;
1160 int align;
1162 /* The following code does not need preprocessing in the assembler. */
1164 app_disable ();
1166 if (CONSTANT_POOL_BEFORE_FUNCTION)
1167 output_constant_pool (fnname, decl);
1169 resolve_unique_section (decl, 0, flag_function_sections);
1170 function_section (decl);
1172 /* Tell assembler to move to target machine's alignment for functions. */
1173 align = floor_log2 (FUNCTION_BOUNDARY / BITS_PER_UNIT);
1174 if (align > 0)
1176 ASM_OUTPUT_ALIGN (asm_out_file, align);
1179 /* Handle a user-specified function alignment.
1180 Note that we still need to align to FUNCTION_BOUNDARY, as above,
1181 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1182 if (align_functions_log > align
1183 && cfun->function_frequency != FUNCTION_FREQUENCY_UNLIKELY_EXECUTED)
1185 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1186 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file,
1187 align_functions_log, align_functions - 1);
1188 #else
1189 ASM_OUTPUT_ALIGN (asm_out_file, align_functions_log);
1190 #endif
1193 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1194 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file, fnname);
1195 #endif
1197 (*debug_hooks->begin_function) (decl);
1199 /* Make function name accessible from other files, if appropriate. */
1201 if (TREE_PUBLIC (decl))
1203 if (! first_global_object_name)
1205 const char *p;
1206 char *name;
1208 p = (* targetm.strip_name_encoding) (fnname);
1209 name = xstrdup (p);
1211 if (! DECL_WEAK (decl) && ! DECL_ONE_ONLY (decl))
1212 first_global_object_name = name;
1213 else
1214 weak_global_object_name = name;
1217 globalize_decl (decl);
1219 maybe_assemble_visibility (decl);
1222 /* Do any machine/system dependent processing of the function name */
1223 #ifdef ASM_DECLARE_FUNCTION_NAME
1224 ASM_DECLARE_FUNCTION_NAME (asm_out_file, fnname, current_function_decl);
1225 #else
1226 /* Standard thing is just output label for the function. */
1227 ASM_OUTPUT_LABEL (asm_out_file, fnname);
1228 #endif /* ASM_DECLARE_FUNCTION_NAME */
1231 /* Output assembler code associated with defining the size of the
1232 function. DECL describes the function. NAME is the function's name. */
1234 void
1235 assemble_end_function (decl, fnname)
1236 tree decl;
1237 const char *fnname;
1239 #ifdef ASM_DECLARE_FUNCTION_SIZE
1240 ASM_DECLARE_FUNCTION_SIZE (asm_out_file, fnname, decl);
1241 #endif
1242 if (! CONSTANT_POOL_BEFORE_FUNCTION)
1244 output_constant_pool (fnname, decl);
1245 function_section (decl); /* need to switch back */
1248 /* Output any constants which should appear after the function. */
1249 output_after_function_constants ();
1252 /* Assemble code to leave SIZE bytes of zeros. */
1254 void
1255 assemble_zeros (size)
1256 int size;
1258 /* Do no output if -fsyntax-only. */
1259 if (flag_syntax_only)
1260 return;
1262 #ifdef ASM_NO_SKIP_IN_TEXT
1263 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1264 so we must output 0s explicitly in the text section. */
1265 if (ASM_NO_SKIP_IN_TEXT && in_text_section ())
1267 int i;
1268 for (i = 0; i < size; i++)
1269 assemble_integer (const0_rtx, 1, BITS_PER_UNIT, 1);
1271 else
1272 #endif
1273 if (size > 0)
1274 ASM_OUTPUT_SKIP (asm_out_file, size);
1277 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1279 void
1280 assemble_align (align)
1281 int align;
1283 if (align > BITS_PER_UNIT)
1285 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
1289 /* Assemble a string constant with the specified C string as contents. */
1291 void
1292 assemble_string (p, size)
1293 const char *p;
1294 int size;
1296 int pos = 0;
1297 int maximum = 2000;
1299 /* If the string is very long, split it up. */
1301 while (pos < size)
1303 int thissize = size - pos;
1304 if (thissize > maximum)
1305 thissize = maximum;
1307 ASM_OUTPUT_ASCII (asm_out_file, p, thissize);
1309 pos += thissize;
1310 p += thissize;
1315 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1316 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1317 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1318 #else
1319 #if defined ASM_OUTPUT_ALIGNED_LOCAL
1320 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1321 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, DECL_ALIGN (decl))
1322 #else
1323 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1324 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded)
1325 #endif
1326 #endif
1328 #if defined ASM_OUTPUT_ALIGNED_BSS
1329 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1330 ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1331 #else
1332 #if defined ASM_OUTPUT_BSS
1333 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1334 ASM_OUTPUT_BSS (asm_out_file, decl, name, size, rounded)
1335 #else
1336 #undef ASM_EMIT_BSS
1337 #endif
1338 #endif
1340 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1341 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1342 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1343 #else
1344 #if defined ASM_OUTPUT_ALIGNED_COMMON
1345 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1346 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size, DECL_ALIGN (decl))
1347 #else
1348 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1349 ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded)
1350 #endif
1351 #endif
1353 static bool
1354 asm_emit_uninitialised (decl, name, size, rounded)
1355 tree decl;
1356 const char *name;
1357 int size ATTRIBUTE_UNUSED;
1358 int rounded ATTRIBUTE_UNUSED;
1360 enum
1362 asm_dest_common,
1363 asm_dest_bss,
1364 asm_dest_local
1366 destination = asm_dest_local;
1368 /* ??? We should handle .bss via select_section mechanisms rather than
1369 via special target hooks. That would eliminate this special case. */
1370 if (TREE_PUBLIC (decl))
1372 if (!DECL_COMMON (decl))
1373 #ifdef ASM_EMIT_BSS
1374 destination = asm_dest_bss;
1375 #else
1376 return false;
1377 #endif
1378 else
1379 destination = asm_dest_common;
1382 if (destination == asm_dest_bss)
1383 globalize_decl (decl);
1384 resolve_unique_section (decl, 0, flag_data_sections);
1386 if (flag_shared_data)
1388 switch (destination)
1390 #ifdef ASM_OUTPUT_SHARED_BSS
1391 case asm_dest_bss:
1392 ASM_OUTPUT_SHARED_BSS (asm_out_file, decl, name, size, rounded);
1393 return;
1394 #endif
1395 #ifdef ASM_OUTPUT_SHARED_COMMON
1396 case asm_dest_common:
1397 ASM_OUTPUT_SHARED_COMMON (asm_out_file, name, size, rounded);
1398 return;
1399 #endif
1400 #ifdef ASM_OUTPUT_SHARED_LOCAL
1401 case asm_dest_local:
1402 ASM_OUTPUT_SHARED_LOCAL (asm_out_file, name, size, rounded);
1403 return;
1404 #endif
1405 default:
1406 break;
1410 switch (destination)
1412 #ifdef ASM_EMIT_BSS
1413 case asm_dest_bss:
1414 ASM_EMIT_BSS (decl, name, size, rounded);
1415 break;
1416 #endif
1417 case asm_dest_common:
1418 ASM_EMIT_COMMON (decl, name, size, rounded);
1419 break;
1420 case asm_dest_local:
1421 ASM_EMIT_LOCAL (decl, name, size, rounded);
1422 break;
1423 default:
1424 abort ();
1427 return true;
1430 /* Assemble everything that is needed for a variable or function declaration.
1431 Not used for automatic variables, and not used for function definitions.
1432 Should not be called for variables of incomplete structure type.
1434 TOP_LEVEL is nonzero if this variable has file scope.
1435 AT_END is nonzero if this is the special handling, at end of compilation,
1436 to define things that have had only tentative definitions.
1437 DONT_OUTPUT_DATA if nonzero means don't actually output the
1438 initial value (that will be done by the caller). */
1440 void
1441 assemble_variable (decl, top_level, at_end, dont_output_data)
1442 tree decl;
1443 int top_level ATTRIBUTE_UNUSED;
1444 int at_end ATTRIBUTE_UNUSED;
1445 int dont_output_data;
1447 const char *name;
1448 unsigned int align;
1449 int reloc = 0;
1450 rtx decl_rtl;
1452 last_assemble_variable_decl = 0;
1454 /* Normally no need to say anything here for external references,
1455 since assemble_external is called by the language-specific code
1456 when a declaration is first seen. */
1458 if (DECL_EXTERNAL (decl))
1459 return;
1461 /* Output no assembler code for a function declaration.
1462 Only definitions of functions output anything. */
1464 if (TREE_CODE (decl) == FUNCTION_DECL)
1465 return;
1467 /* Do nothing for global register variables. */
1468 if (DECL_RTL_SET_P (decl) && GET_CODE (DECL_RTL (decl)) == REG)
1470 TREE_ASM_WRITTEN (decl) = 1;
1471 return;
1474 /* If type was incomplete when the variable was declared,
1475 see if it is complete now. */
1477 if (DECL_SIZE (decl) == 0)
1478 layout_decl (decl, 0);
1480 /* Still incomplete => don't allocate it; treat the tentative defn
1481 (which is what it must have been) as an `extern' reference. */
1483 if (!dont_output_data && DECL_SIZE (decl) == 0)
1485 error_with_file_and_line (DECL_SOURCE_FILE (decl),
1486 DECL_SOURCE_LINE (decl),
1487 "storage size of `%s' isn't known",
1488 IDENTIFIER_POINTER (DECL_NAME (decl)));
1489 TREE_ASM_WRITTEN (decl) = 1;
1490 return;
1493 /* The first declaration of a variable that comes through this function
1494 decides whether it is global (in C, has external linkage)
1495 or local (in C, has internal linkage). So do nothing more
1496 if this function has already run. */
1498 if (TREE_ASM_WRITTEN (decl))
1499 return;
1501 /* Make sure targetm.encode_section_info is invoked before we set
1502 ASM_WRITTEN. */
1503 decl_rtl = DECL_RTL (decl);
1505 TREE_ASM_WRITTEN (decl) = 1;
1507 /* Do no output if -fsyntax-only. */
1508 if (flag_syntax_only)
1509 return;
1511 app_disable ();
1513 if (! dont_output_data
1514 && ! host_integerp (DECL_SIZE_UNIT (decl), 1))
1516 error_with_decl (decl, "size of variable `%s' is too large");
1517 return;
1520 name = XSTR (XEXP (decl_rtl, 0), 0);
1521 if (TREE_PUBLIC (decl) && DECL_NAME (decl)
1522 && ! first_global_object_name
1523 && ! (DECL_COMMON (decl) && (DECL_INITIAL (decl) == 0
1524 || DECL_INITIAL (decl) == error_mark_node))
1525 && ! DECL_WEAK (decl)
1526 && ! DECL_ONE_ONLY (decl))
1528 const char *p;
1529 char *xname;
1531 p = (* targetm.strip_name_encoding) (name);
1532 xname = xstrdup (p);
1533 first_global_object_name = xname;
1536 /* Compute the alignment of this data. */
1538 align = DECL_ALIGN (decl);
1540 /* In the case for initialing an array whose length isn't specified,
1541 where we have not yet been able to do the layout,
1542 figure out the proper alignment now. */
1543 if (dont_output_data && DECL_SIZE (decl) == 0
1544 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
1545 align = MAX (align, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
1547 /* Some object file formats have a maximum alignment which they support.
1548 In particular, a.out format supports a maximum alignment of 4. */
1549 #ifndef MAX_OFILE_ALIGNMENT
1550 #define MAX_OFILE_ALIGNMENT BIGGEST_ALIGNMENT
1551 #endif
1552 if (align > MAX_OFILE_ALIGNMENT)
1554 warning_with_decl (decl,
1555 "alignment of `%s' is greater than maximum object file alignment. Using %d",
1556 MAX_OFILE_ALIGNMENT/BITS_PER_UNIT);
1557 align = MAX_OFILE_ALIGNMENT;
1560 /* On some machines, it is good to increase alignment sometimes. */
1561 if (! DECL_USER_ALIGN (decl))
1563 #ifdef DATA_ALIGNMENT
1564 align = DATA_ALIGNMENT (TREE_TYPE (decl), align);
1565 #endif
1566 #ifdef CONSTANT_ALIGNMENT
1567 if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
1568 align = CONSTANT_ALIGNMENT (DECL_INITIAL (decl), align);
1569 #endif
1572 /* Reset the alignment in case we have made it tighter, so we can benefit
1573 from it in get_pointer_alignment. */
1574 DECL_ALIGN (decl) = align;
1575 set_mem_align (decl_rtl, align);
1577 if (TREE_PUBLIC (decl))
1578 maybe_assemble_visibility (decl);
1580 /* Output any data that we will need to use the address of. */
1581 if (DECL_INITIAL (decl) == error_mark_node)
1582 reloc = contains_pointers_p (TREE_TYPE (decl)) ? 3 : 0;
1583 else if (DECL_INITIAL (decl))
1584 reloc = output_addressed_constants (DECL_INITIAL (decl));
1585 resolve_unique_section (decl, reloc, flag_data_sections);
1587 /* Handle uninitialized definitions. */
1589 /* If the decl has been given an explicit section name, then it
1590 isn't common, and shouldn't be handled as such. */
1591 if (DECL_SECTION_NAME (decl) || dont_output_data)
1593 /* We don't implement common thread-local data at present. */
1594 else if (DECL_THREAD_LOCAL (decl))
1596 if (DECL_COMMON (decl))
1597 sorry ("thread-local COMMON data not implemented");
1599 else if (DECL_INITIAL (decl) == 0
1600 || DECL_INITIAL (decl) == error_mark_node
1601 || (flag_zero_initialized_in_bss
1602 && initializer_zerop (DECL_INITIAL (decl))))
1604 unsigned HOST_WIDE_INT size = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
1605 unsigned HOST_WIDE_INT rounded = size;
1607 /* Don't allocate zero bytes of common,
1608 since that means "undefined external" in the linker. */
1609 if (size == 0)
1610 rounded = 1;
1612 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1613 so that each uninitialized object starts on such a boundary. */
1614 rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
1615 rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1616 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1618 #if !defined(ASM_OUTPUT_ALIGNED_COMMON) && !defined(ASM_OUTPUT_ALIGNED_DECL_COMMON) && !defined(ASM_OUTPUT_ALIGNED_BSS)
1619 if ((unsigned HOST_WIDE_INT) DECL_ALIGN (decl) / BITS_PER_UNIT > rounded)
1620 warning_with_decl
1621 (decl, "requested alignment for %s is greater than implemented alignment of %d",rounded);
1622 #endif
1624 /* If the target cannot output uninitialized but not common global data
1625 in .bss, then we have to use .data, so fall through. */
1626 if (asm_emit_uninitialised (decl, name, size, rounded))
1627 return;
1630 /* Handle initialized definitions.
1631 Also handle uninitialized global definitions if -fno-common and the
1632 target doesn't support ASM_OUTPUT_BSS. */
1634 /* First make the assembler name(s) global if appropriate. */
1635 if (TREE_PUBLIC (decl) && DECL_NAME (decl))
1636 globalize_decl (decl);
1638 /* Switch to the appropriate section. */
1639 variable_section (decl, reloc);
1641 /* dbxout.c needs to know this. */
1642 if (in_text_section ())
1643 DECL_IN_TEXT_SECTION (decl) = 1;
1645 /* Output the alignment of this data. */
1646 if (align > BITS_PER_UNIT)
1648 ASM_OUTPUT_ALIGN (asm_out_file,
1649 floor_log2 (DECL_ALIGN (decl) / BITS_PER_UNIT));
1652 /* Do any machine/system dependent processing of the object. */
1653 #ifdef ASM_DECLARE_OBJECT_NAME
1654 last_assemble_variable_decl = decl;
1655 ASM_DECLARE_OBJECT_NAME (asm_out_file, name, decl);
1656 #else
1657 /* Standard thing is just output label for the object. */
1658 ASM_OUTPUT_LABEL (asm_out_file, name);
1659 #endif /* ASM_DECLARE_OBJECT_NAME */
1661 if (!dont_output_data)
1663 if (DECL_INITIAL (decl) && DECL_INITIAL (decl) != error_mark_node)
1664 /* Output the actual data. */
1665 output_constant (DECL_INITIAL (decl),
1666 tree_low_cst (DECL_SIZE_UNIT (decl), 1),
1667 align);
1668 else
1669 /* Leave space for it. */
1670 assemble_zeros (tree_low_cst (DECL_SIZE_UNIT (decl), 1));
1674 /* Return 1 if type TYPE contains any pointers. */
1676 static int
1677 contains_pointers_p (type)
1678 tree type;
1680 switch (TREE_CODE (type))
1682 case POINTER_TYPE:
1683 case REFERENCE_TYPE:
1684 /* I'm not sure whether OFFSET_TYPE needs this treatment,
1685 so I'll play safe and return 1. */
1686 case OFFSET_TYPE:
1687 return 1;
1689 case RECORD_TYPE:
1690 case UNION_TYPE:
1691 case QUAL_UNION_TYPE:
1693 tree fields;
1694 /* For a type that has fields, see if the fields have pointers. */
1695 for (fields = TYPE_FIELDS (type); fields; fields = TREE_CHAIN (fields))
1696 if (TREE_CODE (fields) == FIELD_DECL
1697 && contains_pointers_p (TREE_TYPE (fields)))
1698 return 1;
1699 return 0;
1702 case ARRAY_TYPE:
1703 /* An array type contains pointers if its element type does. */
1704 return contains_pointers_p (TREE_TYPE (type));
1706 default:
1707 return 0;
1711 /* Output something to declare an external symbol to the assembler.
1712 (Most assemblers don't need this, so we normally output nothing.)
1713 Do nothing if DECL is not external. */
1715 void
1716 assemble_external (decl)
1717 tree decl ATTRIBUTE_UNUSED;
1719 /* Because most platforms do not define ASM_OUTPUT_EXTERNAL, the
1720 main body of this code is only rarely exercised. To provide some
1721 testing, on all platforms, we make sure that the ASM_OUT_FILE is
1722 open. If it's not, we should not be calling this function. */
1723 if (!asm_out_file)
1724 abort ();
1726 #ifdef ASM_OUTPUT_EXTERNAL
1727 if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
1729 rtx rtl = DECL_RTL (decl);
1731 if (GET_CODE (rtl) == MEM && GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF
1732 && ! SYMBOL_REF_USED (XEXP (rtl, 0)))
1734 /* Some systems do require some output. */
1735 SYMBOL_REF_USED (XEXP (rtl, 0)) = 1;
1736 ASM_OUTPUT_EXTERNAL (asm_out_file, decl, XSTR (XEXP (rtl, 0), 0));
1739 #endif
1742 /* Similar, for calling a library function FUN. */
1744 void
1745 assemble_external_libcall (fun)
1746 rtx fun ATTRIBUTE_UNUSED;
1748 #ifdef ASM_OUTPUT_EXTERNAL_LIBCALL
1749 /* Declare library function name external when first used, if nec. */
1750 if (! SYMBOL_REF_USED (fun))
1752 SYMBOL_REF_USED (fun) = 1;
1753 ASM_OUTPUT_EXTERNAL_LIBCALL (asm_out_file, fun);
1755 #endif
1758 /* Assemble a label named NAME. */
1760 void
1761 assemble_label (name)
1762 const char *name;
1764 ASM_OUTPUT_LABEL (asm_out_file, name);
1767 /* Output to FILE a reference to the assembler name of a C-level name NAME.
1768 If NAME starts with a *, the rest of NAME is output verbatim.
1769 Otherwise NAME is transformed in an implementation-defined way
1770 (usually by the addition of an underscore).
1771 Many macros in the tm file are defined to call this function. */
1773 void
1774 assemble_name (file, name)
1775 FILE *file;
1776 const char *name;
1778 const char *real_name;
1779 tree id;
1781 real_name = (* targetm.strip_name_encoding) (name);
1783 id = maybe_get_identifier (real_name);
1784 if (id)
1785 TREE_SYMBOL_REFERENCED (id) = 1;
1787 if (name[0] == '*')
1788 fputs (&name[1], file);
1789 else
1790 ASM_OUTPUT_LABELREF (file, name);
1793 /* Allocate SIZE bytes writable static space with a gensym name
1794 and return an RTX to refer to its address. */
1797 assemble_static_space (size)
1798 int size;
1800 char name[12];
1801 const char *namestring;
1802 rtx x;
1804 #if 0
1805 if (flag_shared_data)
1806 data_section ();
1807 #endif
1809 ASM_GENERATE_INTERNAL_LABEL (name, "LF", const_labelno);
1810 ++const_labelno;
1811 namestring = ggc_strdup (name);
1813 x = gen_rtx_SYMBOL_REF (Pmode, namestring);
1815 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
1816 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name, size,
1817 BIGGEST_ALIGNMENT);
1818 #else
1819 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
1820 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, BIGGEST_ALIGNMENT);
1821 #else
1823 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1824 so that each uninitialized object starts on such a boundary. */
1825 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
1826 int rounded ATTRIBUTE_UNUSED
1827 = ((size + (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1)
1828 / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1829 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1830 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
1832 #endif
1833 #endif
1834 return x;
1837 /* Assemble the static constant template for function entry trampolines.
1838 This is done at most once per compilation.
1839 Returns an RTX for the address of the template. */
1841 #ifdef TRAMPOLINE_TEMPLATE
1843 assemble_trampoline_template ()
1845 char label[256];
1846 const char *name;
1847 int align;
1849 /* By default, put trampoline templates in read-only data section. */
1851 #ifdef TRAMPOLINE_SECTION
1852 TRAMPOLINE_SECTION ();
1853 #else
1854 readonly_data_section ();
1855 #endif
1857 /* Write the assembler code to define one. */
1858 align = floor_log2 (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT);
1859 if (align > 0)
1861 ASM_OUTPUT_ALIGN (asm_out_file, align);
1864 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LTRAMP", 0);
1865 TRAMPOLINE_TEMPLATE (asm_out_file);
1867 /* Record the rtl to refer to it. */
1868 ASM_GENERATE_INTERNAL_LABEL (label, "LTRAMP", 0);
1869 name = ggc_strdup (label);
1870 return gen_rtx_SYMBOL_REF (Pmode, name);
1872 #endif
1874 /* A and B are either alignments or offsets. Return the minimum alignment
1875 that may be assumed after adding the two together. */
1877 static inline unsigned
1878 min_align (a, b)
1879 unsigned int a, b;
1881 return (a | b) & -(a | b);
1884 /* Return the assembler directive for creating a given kind of integer
1885 object. SIZE is the number of bytes in the object and ALIGNED_P
1886 indicates whether it is known to be aligned. Return NULL if the
1887 assembly dialect has no such directive.
1889 The returned string should be printed at the start of a new line and
1890 be followed immediately by the object's initial value. */
1892 const char *
1893 integer_asm_op (size, aligned_p)
1894 int size;
1895 int aligned_p;
1897 struct asm_int_op *ops;
1899 if (aligned_p)
1900 ops = &targetm.asm_out.aligned_op;
1901 else
1902 ops = &targetm.asm_out.unaligned_op;
1904 switch (size)
1906 case 1:
1907 return targetm.asm_out.byte_op;
1908 case 2:
1909 return ops->hi;
1910 case 4:
1911 return ops->si;
1912 case 8:
1913 return ops->di;
1914 case 16:
1915 return ops->ti;
1916 default:
1917 return NULL;
1921 /* Use directive OP to assemble an integer object X. Print OP at the
1922 start of the line, followed immediately by the value of X. */
1924 void
1925 assemble_integer_with_op (op, x)
1926 const char *op;
1927 rtx x;
1929 fputs (op, asm_out_file);
1930 output_addr_const (asm_out_file, x);
1931 fputc ('\n', asm_out_file);
1934 /* The default implementation of the asm_out.integer target hook. */
1936 bool
1937 default_assemble_integer (x, size, aligned_p)
1938 rtx x ATTRIBUTE_UNUSED;
1939 unsigned int size ATTRIBUTE_UNUSED;
1940 int aligned_p ATTRIBUTE_UNUSED;
1942 const char *op = integer_asm_op (size, aligned_p);
1943 return op && (assemble_integer_with_op (op, x), true);
1946 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
1947 the alignment of the integer in bits. Return 1 if we were able to output
1948 the constant, otherwise 0. If FORCE is non-zero, abort if we can't output
1949 the constant. */
1951 bool
1952 assemble_integer (x, size, align, force)
1953 rtx x;
1954 unsigned int size;
1955 unsigned int align;
1956 int force;
1958 int aligned_p;
1960 aligned_p = (align >= MIN (size * BITS_PER_UNIT, BIGGEST_ALIGNMENT));
1962 /* See if the target hook can handle this kind of object. */
1963 if ((*targetm.asm_out.integer) (x, size, aligned_p))
1964 return true;
1966 /* If the object is a multi-byte one, try splitting it up. Split
1967 it into words it if is multi-word, otherwise split it into bytes. */
1968 if (size > 1)
1970 enum machine_mode omode, imode;
1971 unsigned int subalign;
1972 unsigned int subsize, i;
1974 subsize = size > UNITS_PER_WORD? UNITS_PER_WORD : 1;
1975 subalign = MIN (align, subsize * BITS_PER_UNIT);
1976 omode = mode_for_size (subsize * BITS_PER_UNIT, MODE_INT, 0);
1977 imode = mode_for_size (size * BITS_PER_UNIT, MODE_INT, 0);
1979 for (i = 0; i < size; i += subsize)
1981 rtx partial = simplify_subreg (omode, x, imode, i);
1982 if (!partial || !assemble_integer (partial, subsize, subalign, 0))
1983 break;
1985 if (i == size)
1986 return true;
1988 /* If we've printed some of it, but not all of it, there's no going
1989 back now. */
1990 if (i > 0)
1991 abort ();
1994 if (force)
1995 abort ();
1997 return false;
2000 void
2001 assemble_real (d, mode, align)
2002 REAL_VALUE_TYPE d;
2003 enum machine_mode mode;
2004 unsigned int align;
2006 long data[4];
2007 long l;
2008 unsigned int nalign = min_align (align, 32);
2010 switch (BITS_PER_UNIT)
2012 case 8:
2013 switch (mode)
2015 case SFmode:
2016 REAL_VALUE_TO_TARGET_SINGLE (d, l);
2017 assemble_integer (GEN_INT (l), 4, align, 1);
2018 break;
2019 case DFmode:
2020 REAL_VALUE_TO_TARGET_DOUBLE (d, data);
2021 assemble_integer (GEN_INT (data[0]), 4, align, 1);
2022 assemble_integer (GEN_INT (data[1]), 4, nalign, 1);
2023 break;
2024 case XFmode:
2025 REAL_VALUE_TO_TARGET_LONG_DOUBLE (d, data);
2026 assemble_integer (GEN_INT (data[0]), 4, align, 1);
2027 assemble_integer (GEN_INT (data[1]), 4, nalign, 1);
2028 assemble_integer (GEN_INT (data[2]), 4, nalign, 1);
2029 break;
2030 case TFmode:
2031 REAL_VALUE_TO_TARGET_LONG_DOUBLE (d, data);
2032 assemble_integer (GEN_INT (data[0]), 4, align, 1);
2033 assemble_integer (GEN_INT (data[1]), 4, nalign, 1);
2034 assemble_integer (GEN_INT (data[2]), 4, nalign, 1);
2035 assemble_integer (GEN_INT (data[3]), 4, nalign, 1);
2036 break;
2037 default:
2038 abort ();
2040 break;
2042 case 16:
2043 switch (mode)
2045 case HFmode:
2046 REAL_VALUE_TO_TARGET_SINGLE (d, l);
2047 assemble_integer (GEN_INT (l), 2, align, 1);
2048 break;
2049 case TQFmode:
2050 REAL_VALUE_TO_TARGET_DOUBLE (d, data);
2051 assemble_integer (GEN_INT (data[0]), 2, align, 1);
2052 assemble_integer (GEN_INT (data[1]), 1, nalign, 1);
2053 break;
2054 default:
2055 abort ();
2057 break;
2059 case 32:
2060 switch (mode)
2062 case QFmode:
2063 REAL_VALUE_TO_TARGET_SINGLE (d, l);
2064 assemble_integer (GEN_INT (l), 1, align, 1);
2065 break;
2066 case HFmode:
2067 REAL_VALUE_TO_TARGET_DOUBLE (d, data);
2068 assemble_integer (GEN_INT (data[0]), 1, align, 1);
2069 assemble_integer (GEN_INT (data[1]), 1, nalign, 1);
2070 break;
2071 default:
2072 abort ();
2074 break;
2076 default:
2077 abort ();
2081 /* Given an expression EXP with a constant value,
2082 reduce it to the sum of an assembler symbol and an integer.
2083 Store them both in the structure *VALUE.
2084 Abort if EXP does not reduce. */
2086 struct addr_const GTY(())
2088 rtx base;
2089 HOST_WIDE_INT offset;
2092 static void
2093 decode_addr_const (exp, value)
2094 tree exp;
2095 struct addr_const *value;
2097 tree target = TREE_OPERAND (exp, 0);
2098 int offset = 0;
2099 rtx x;
2101 while (1)
2103 if (TREE_CODE (target) == COMPONENT_REF
2104 && host_integerp (byte_position (TREE_OPERAND (target, 1)), 0))
2107 offset += int_byte_position (TREE_OPERAND (target, 1));
2108 target = TREE_OPERAND (target, 0);
2110 else if (TREE_CODE (target) == ARRAY_REF
2111 || TREE_CODE (target) == ARRAY_RANGE_REF)
2113 offset += (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (target)), 1)
2114 * tree_low_cst (TREE_OPERAND (target, 1), 0));
2115 target = TREE_OPERAND (target, 0);
2117 else
2118 break;
2121 switch (TREE_CODE (target))
2123 case VAR_DECL:
2124 case FUNCTION_DECL:
2125 x = DECL_RTL (target);
2126 break;
2128 case LABEL_DECL:
2129 x = gen_rtx_MEM (FUNCTION_MODE,
2130 gen_rtx_LABEL_REF (VOIDmode,
2131 label_rtx (TREE_OPERAND (exp, 0))));
2132 break;
2134 case REAL_CST:
2135 case STRING_CST:
2136 case COMPLEX_CST:
2137 case CONSTRUCTOR:
2138 case INTEGER_CST:
2139 /* This constant should have been output already, but we can't simply
2140 use TREE_CST_RTL since INTEGER_CST doesn't have one. */
2141 x = output_constant_def (target, 1);
2142 break;
2144 default:
2145 abort ();
2148 if (GET_CODE (x) != MEM)
2149 abort ();
2150 x = XEXP (x, 0);
2152 value->base = x;
2153 value->offset = offset;
2156 /* We do RTX_UNSPEC + XINT (blah), so nothing can go after RTX_UNSPEC. */
2157 enum kind { RTX_UNKNOWN, RTX_DOUBLE, RTX_VECTOR, RTX_INT, RTX_UNSPEC };
2158 struct rtx_const GTY(())
2160 ENUM_BITFIELD(kind) kind : 16;
2161 ENUM_BITFIELD(machine_mode) mode : 16;
2162 union rtx_const_un {
2163 REAL_VALUE_TYPE du;
2164 struct addr_const GTY ((tag ("1"))) addr;
2165 struct rtx_const_u_di {
2166 HOST_WIDE_INT high;
2167 HOST_WIDE_INT low;
2168 } GTY ((tag ("0"))) di;
2170 /* The max vector size we have is 8 wide; two variants for
2171 integral and floating point vectors. */
2172 struct rtx_const_int_vec {
2173 HOST_WIDE_INT high;
2174 HOST_WIDE_INT low;
2175 } GTY ((tag ("2"))) int_vec[8];
2177 REAL_VALUE_TYPE GTY ((tag ("3"))) fp_vec[8];
2179 } GTY ((desc ("%1.kind >= RTX_INT"), descbits ("1"))) un;
2182 /* Uniquize all constants that appear in memory.
2183 Each constant in memory thus far output is recorded
2184 in `const_hash_table'. */
2186 struct constant_descriptor_tree GTY(())
2188 /* More constant_descriptors with the same hash code. */
2189 struct constant_descriptor_tree *next;
2191 /* The label of the constant. */
2192 const char *label;
2194 /* A MEM for the constant. */
2195 rtx rtl;
2197 /* The value of the constant. */
2198 tree value;
2201 #define MAX_HASH_TABLE 1009
2202 static GTY(()) struct constant_descriptor_tree *
2203 const_hash_table[MAX_HASH_TABLE];
2205 /* We maintain a hash table of STRING_CST values. Unless we are asked to force
2206 out a string constant, we defer output of the constants until we know
2207 they are actually used. This will be if something takes its address or if
2208 there is a usage of the string in the RTL of a function. */
2210 #define STRHASH(x) ((hashval_t) ((long) (x) >> 3))
2212 struct deferred_string GTY(())
2214 const char *label;
2215 tree exp;
2216 int labelno;
2219 static GTY ((param_is (struct deferred_string))) htab_t const_str_htab;
2221 /* Returns a hash code for X (which is a really a
2222 struct deferred_string *). */
2224 static hashval_t
2225 const_str_htab_hash (x)
2226 const void *x;
2228 return STRHASH (((const struct deferred_string *) x)->label);
2231 /* Returns non-zero if the value represented by X (which is really a
2232 struct deferred_string *) is the same as that given by Y
2233 (which is really a char *). */
2235 static int
2236 const_str_htab_eq (x, y)
2237 const void *x;
2238 const void *y;
2240 return (((const struct deferred_string *) x)->label == (const char *) y);
2243 /* Compute a hash code for a constant expression. */
2245 static unsigned int
2246 const_hash (exp)
2247 tree exp;
2249 return const_hash_1 (exp) % MAX_HASH_TABLE;
2252 static unsigned int
2253 const_hash_1 (exp)
2254 tree exp;
2256 const char *p;
2257 unsigned int hi;
2258 int len, i;
2259 enum tree_code code = TREE_CODE (exp);
2261 /* Either set P and LEN to the address and len of something to hash and
2262 exit the switch or return a value. */
2264 switch (code)
2266 case INTEGER_CST:
2267 p = (char *) &TREE_INT_CST (exp);
2268 len = sizeof TREE_INT_CST (exp);
2269 break;
2271 case REAL_CST:
2272 return real_hash (TREE_REAL_CST_PTR (exp));
2274 case STRING_CST:
2275 p = TREE_STRING_POINTER (exp);
2276 len = TREE_STRING_LENGTH (exp);
2277 break;
2279 case COMPLEX_CST:
2280 return (const_hash_1 (TREE_REALPART (exp)) * 5
2281 + const_hash_1 (TREE_IMAGPART (exp)));
2283 case CONSTRUCTOR:
2284 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2286 char *tmp;
2288 len = int_size_in_bytes (TREE_TYPE (exp));
2289 tmp = (char *) alloca (len);
2290 get_set_constructor_bytes (exp, (unsigned char *) tmp, len);
2291 p = tmp;
2292 break;
2294 else
2296 tree link;
2298 hi = 5 + int_size_in_bytes (TREE_TYPE (exp));
2300 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2301 if (TREE_VALUE (link))
2302 hi = hi * 603 + const_hash_1 (TREE_VALUE (link));
2304 return hi;
2307 case ADDR_EXPR:
2308 case FDESC_EXPR:
2310 struct addr_const value;
2312 decode_addr_const (exp, &value);
2313 if (GET_CODE (value.base) == SYMBOL_REF)
2315 /* Don't hash the address of the SYMBOL_REF;
2316 only use the offset and the symbol name. */
2317 hi = value.offset;
2318 p = XSTR (value.base, 0);
2319 for (i = 0; p[i] != 0; i++)
2320 hi = ((hi * 613) + (unsigned) (p[i]));
2322 else if (GET_CODE (value.base) == LABEL_REF)
2323 hi = value.offset + CODE_LABEL_NUMBER (XEXP (value.base, 0)) * 13;
2324 else
2325 abort ();
2327 return hi;
2329 case PLUS_EXPR:
2330 case MINUS_EXPR:
2331 return (const_hash_1 (TREE_OPERAND (exp, 0)) * 9
2332 + const_hash_1 (TREE_OPERAND (exp, 1)));
2334 case NOP_EXPR:
2335 case CONVERT_EXPR:
2336 case NON_LVALUE_EXPR:
2337 return const_hash_1 (TREE_OPERAND (exp, 0)) * 7 + 2;
2339 default:
2340 /* A language specific constant. Just hash the code. */
2341 return code;
2344 /* Compute hashing function */
2345 hi = len;
2346 for (i = 0; i < len; i++)
2347 hi = ((hi * 613) + (unsigned) (p[i]));
2349 return hi;
2352 /* Compare t1 and t2, and return 1 only if they are known to result in
2353 the same bit pattern on output. */
2355 static int
2356 compare_constant (t1, t2)
2357 tree t1;
2358 tree t2;
2360 enum tree_code typecode;
2362 if (t1 == NULL_TREE)
2363 return t2 == NULL_TREE;
2364 if (t2 == NULL_TREE)
2365 return 0;
2367 if (TREE_CODE (t1) != TREE_CODE (t2))
2368 return 0;
2370 switch (TREE_CODE (t1))
2372 case INTEGER_CST:
2373 /* Integer constants are the same only if the same width of type. */
2374 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2375 return 0;
2376 return tree_int_cst_equal (t1, t2);
2378 case REAL_CST:
2379 /* Real constants are the same only if the same width of type. */
2380 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2381 return 0;
2383 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
2385 case STRING_CST:
2386 if (flag_writable_strings)
2387 return 0;
2389 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
2390 return 0;
2392 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
2393 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
2394 TREE_STRING_LENGTH (t1)));
2396 case COMPLEX_CST:
2397 return (compare_constant (TREE_REALPART (t1), TREE_REALPART (t2))
2398 && compare_constant (TREE_IMAGPART (t1), TREE_IMAGPART (t2)));
2400 case CONSTRUCTOR:
2401 typecode = TREE_CODE (TREE_TYPE (t1));
2402 if (typecode != TREE_CODE (TREE_TYPE (t2)))
2403 return 0;
2405 if (typecode == SET_TYPE)
2407 int len = int_size_in_bytes (TREE_TYPE (t2));
2408 unsigned char *tmp1, *tmp2;
2410 if (int_size_in_bytes (TREE_TYPE (t1)) != len)
2411 return 0;
2413 tmp1 = (unsigned char *) alloca (len);
2414 tmp2 = (unsigned char *) alloca (len);
2416 if (get_set_constructor_bytes (t1, tmp1, len) != NULL_TREE)
2417 return 0;
2418 if (get_set_constructor_bytes (t2, tmp2, len) != NULL_TREE)
2419 return 0;
2421 return memcmp (tmp1, tmp2, len) != 0;
2423 else
2425 tree l1, l2;
2427 if (typecode == ARRAY_TYPE)
2429 HOST_WIDE_INT size_1 = int_size_in_bytes (TREE_TYPE (t1));
2430 /* For arrays, check that the sizes all match. */
2431 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2))
2432 || size_1 == -1
2433 || size_1 != int_size_in_bytes (TREE_TYPE (t2)))
2434 return 0;
2436 else
2438 /* For record and union constructors, require exact type
2439 equality. */
2440 if (TREE_TYPE (t1) != TREE_TYPE (t2))
2441 return 0;
2444 for (l1 = CONSTRUCTOR_ELTS (t1), l2 = CONSTRUCTOR_ELTS (t2);
2445 l1 && l2;
2446 l1 = TREE_CHAIN (l1), l2 = TREE_CHAIN (l2))
2448 /* Check that each value is the same... */
2449 if (! compare_constant (TREE_VALUE (l1), TREE_VALUE (l2)))
2450 return 0;
2451 /* ... and that they apply to the same fields! */
2452 if (typecode == ARRAY_TYPE)
2454 if (! compare_constant (TREE_PURPOSE (l1),
2455 TREE_PURPOSE (l2)))
2456 return 0;
2458 else
2460 if (TREE_PURPOSE (l1) != TREE_PURPOSE (l2))
2461 return 0;
2465 return l1 == NULL_TREE && l2 == NULL_TREE;
2468 case ADDR_EXPR:
2469 case FDESC_EXPR:
2471 struct addr_const value1, value2;
2473 decode_addr_const (t1, &value1);
2474 decode_addr_const (t2, &value2);
2475 return (value1.offset == value2.offset
2476 && strcmp (XSTR (value1.base, 0), XSTR (value2.base, 0)) == 0);
2479 case PLUS_EXPR:
2480 case MINUS_EXPR:
2481 case RANGE_EXPR:
2482 return (compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0))
2483 && compare_constant(TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)));
2485 case NOP_EXPR:
2486 case CONVERT_EXPR:
2487 case NON_LVALUE_EXPR:
2488 return compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
2490 default:
2492 tree nt1, nt2;
2493 nt1 = (*lang_hooks.expand_constant) (t1);
2494 nt2 = (*lang_hooks.expand_constant) (t2);
2495 if (nt1 != t1 || nt2 != t2)
2496 return compare_constant (nt1, nt2);
2497 else
2498 return 0;
2502 /* Should not get here. */
2503 abort ();
2506 /* Record a list of constant expressions that were passed to
2507 output_constant_def but that could not be output right away. */
2509 struct deferred_constant
2511 struct deferred_constant *next;
2512 tree exp;
2513 int reloc;
2514 int labelno;
2517 static struct deferred_constant *deferred_constants;
2519 /* Another list of constants which should be output after the
2520 function. */
2521 static struct deferred_constant *after_function_constants;
2523 /* Nonzero means defer output of addressed subconstants
2524 (i.e., those for which output_constant_def is called.) */
2525 static int defer_addressed_constants_flag;
2527 /* Start deferring output of subconstants. */
2529 void
2530 defer_addressed_constants ()
2532 defer_addressed_constants_flag++;
2535 /* Stop deferring output of subconstants,
2536 and output now all those that have been deferred. */
2538 void
2539 output_deferred_addressed_constants ()
2541 struct deferred_constant *p, *next;
2543 defer_addressed_constants_flag--;
2545 if (defer_addressed_constants_flag > 0)
2546 return;
2548 for (p = deferred_constants; p; p = next)
2550 output_constant_def_contents (p->exp, p->reloc, p->labelno);
2551 next = p->next;
2552 free (p);
2555 deferred_constants = 0;
2558 /* Output any constants which should appear after a function. */
2560 static void
2561 output_after_function_constants ()
2563 struct deferred_constant *p, *next;
2565 for (p = after_function_constants; p; p = next)
2567 output_constant_def_contents (p->exp, p->reloc, p->labelno);
2568 next = p->next;
2569 free (p);
2572 after_function_constants = 0;
2575 /* Make a copy of the whole tree structure for a constant. This
2576 handles the same types of nodes that compare_constant handles. */
2578 static tree
2579 copy_constant (exp)
2580 tree exp;
2582 switch (TREE_CODE (exp))
2584 case ADDR_EXPR:
2585 /* For ADDR_EXPR, we do not want to copy the decl whose address
2586 is requested. We do want to copy constants though. */
2587 if (TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (exp, 0))) == 'c')
2588 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2589 copy_constant (TREE_OPERAND (exp, 0)));
2590 else
2591 return copy_node (exp);
2593 case INTEGER_CST:
2594 case REAL_CST:
2595 case STRING_CST:
2596 return copy_node (exp);
2598 case COMPLEX_CST:
2599 return build_complex (TREE_TYPE (exp),
2600 copy_constant (TREE_REALPART (exp)),
2601 copy_constant (TREE_IMAGPART (exp)));
2603 case PLUS_EXPR:
2604 case MINUS_EXPR:
2605 return build (TREE_CODE (exp), TREE_TYPE (exp),
2606 copy_constant (TREE_OPERAND (exp, 0)),
2607 copy_constant (TREE_OPERAND (exp, 1)));
2609 case NOP_EXPR:
2610 case CONVERT_EXPR:
2611 case NON_LVALUE_EXPR:
2612 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2613 copy_constant (TREE_OPERAND (exp, 0)));
2615 case CONSTRUCTOR:
2617 tree copy = copy_node (exp);
2618 tree list = copy_list (CONSTRUCTOR_ELTS (exp));
2619 tree tail;
2621 CONSTRUCTOR_ELTS (copy) = list;
2622 for (tail = list; tail; tail = TREE_CHAIN (tail))
2623 TREE_VALUE (tail) = copy_constant (TREE_VALUE (tail));
2624 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2625 for (tail = list; tail; tail = TREE_CHAIN (tail))
2626 TREE_PURPOSE (tail) = copy_constant (TREE_PURPOSE (tail));
2628 return copy;
2631 default:
2633 tree t;
2634 t = (*lang_hooks.expand_constant) (exp);
2635 if (t != exp)
2636 return copy_constant (t);
2637 else
2638 abort ();
2643 /* Return an rtx representing a reference to constant data in memory
2644 for the constant expression EXP.
2646 If assembler code for such a constant has already been output,
2647 return an rtx to refer to it.
2648 Otherwise, output such a constant in memory (or defer it for later)
2649 and generate an rtx for it.
2651 If DEFER is non-zero, the output of string constants can be deferred
2652 and output only if referenced in the function after all optimizations.
2654 The TREE_CST_RTL of EXP is set up to point to that rtx.
2655 The const_hash_table records which constants already have label strings. */
2658 output_constant_def (exp, defer)
2659 tree exp;
2660 int defer;
2662 int hash;
2663 struct constant_descriptor_tree *desc;
2664 struct deferred_string **defstr;
2665 char label[256];
2666 int reloc;
2667 int found = 1;
2668 int after_function = 0;
2669 int labelno = -1;
2670 rtx rtl;
2672 /* We can't just use the saved RTL if this is a deferred string constant
2673 and we are not to defer anymore. */
2674 if (TREE_CODE (exp) != INTEGER_CST && TREE_CST_RTL (exp)
2675 && (defer || !STRING_POOL_ADDRESS_P (XEXP (TREE_CST_RTL (exp), 0))))
2676 return TREE_CST_RTL (exp);
2678 /* Make sure any other constants whose addresses appear in EXP
2679 are assigned label numbers. */
2681 reloc = output_addressed_constants (exp);
2683 /* Compute hash code of EXP. Search the descriptors for that hash code
2684 to see if any of them describes EXP. If yes, the descriptor records
2685 the label number already assigned. */
2687 hash = const_hash (exp);
2689 for (desc = const_hash_table[hash]; desc; desc = desc->next)
2690 if (compare_constant (exp, desc->value))
2691 break;
2693 if (desc == 0)
2695 /* No constant equal to EXP is known to have been output.
2696 Make a constant descriptor to enter EXP in the hash table.
2697 Assign the label number and record it in the descriptor for
2698 future calls to this function to find. */
2700 /* Create a string containing the label name, in LABEL. */
2701 labelno = const_labelno++;
2702 ASM_GENERATE_INTERNAL_LABEL (label, "LC", labelno);
2704 desc = ggc_alloc (sizeof (*desc));
2705 desc->next = const_hash_table[hash];
2706 desc->label = ggc_strdup (label);
2707 desc->value = copy_constant (exp);
2708 const_hash_table[hash] = desc;
2710 /* We have a symbol name; construct the SYMBOL_REF and the MEM. */
2711 rtl = desc->rtl
2712 = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp)),
2713 gen_rtx_SYMBOL_REF (Pmode, desc->label));
2715 set_mem_attributes (rtl, exp, 1);
2716 set_mem_alias_set (rtl, 0);
2717 set_mem_alias_set (rtl, const_alias_set);
2719 found = 0;
2721 else
2722 rtl = desc->rtl;
2724 if (TREE_CODE (exp) != INTEGER_CST)
2725 TREE_CST_RTL (exp) = rtl;
2727 /* Optionally set flags or add text to the name to record information
2728 such as that it is a function name. If the name is changed, the macro
2729 ASM_OUTPUT_LABELREF will have to know how to strip this information. */
2730 /* A previously-processed constant would already have section info
2731 encoded in it. */
2732 if (! found)
2734 /* Take care not to invoke targetm.encode_section_info for
2735 constants which don't have a TREE_CST_RTL. */
2736 if (TREE_CODE (exp) != INTEGER_CST)
2737 (*targetm.encode_section_info) (exp, true);
2739 desc->rtl = rtl;
2740 desc->label = XSTR (XEXP (desc->rtl, 0), 0);
2743 #ifdef CONSTANT_AFTER_FUNCTION_P
2744 if (current_function_decl != 0
2745 && CONSTANT_AFTER_FUNCTION_P (exp))
2746 after_function = 1;
2747 #endif
2749 if (found
2750 && STRING_POOL_ADDRESS_P (XEXP (rtl, 0))
2751 && (!defer || defer_addressed_constants_flag || after_function))
2753 defstr = (struct deferred_string **)
2754 htab_find_slot_with_hash (const_str_htab, desc->label,
2755 STRHASH (desc->label), NO_INSERT);
2756 if (defstr)
2758 /* If the string is currently deferred but we need to output it now,
2759 remove it from deferred string hash table. */
2760 found = 0;
2761 labelno = (*defstr)->labelno;
2762 STRING_POOL_ADDRESS_P (XEXP (rtl, 0)) = 0;
2763 htab_clear_slot (const_str_htab, (void **) defstr);
2767 /* If this is the first time we've seen this particular constant,
2768 output it (or defer its output for later). */
2769 if (! found)
2771 if (defer_addressed_constants_flag || after_function)
2773 struct deferred_constant *p
2774 = (struct deferred_constant *)
2775 xmalloc (sizeof (struct deferred_constant));
2777 p->exp = desc->value;
2778 p->reloc = reloc;
2779 p->labelno = labelno;
2780 if (after_function)
2782 p->next = after_function_constants;
2783 after_function_constants = p;
2785 else
2787 p->next = deferred_constants;
2788 deferred_constants = p;
2791 else
2793 /* Do no output if -fsyntax-only. */
2794 if (! flag_syntax_only)
2796 if (TREE_CODE (exp) != STRING_CST
2797 || !defer
2798 || flag_writable_strings
2799 || (defstr = (struct deferred_string **)
2800 htab_find_slot_with_hash (const_str_htab,
2801 desc->label,
2802 STRHASH (desc->label),
2803 INSERT)) == NULL)
2804 output_constant_def_contents (exp, reloc, labelno);
2805 else
2807 struct deferred_string *p;
2809 p = (struct deferred_string *)
2810 ggc_alloc (sizeof (struct deferred_string));
2812 p->exp = desc->value;
2813 p->label = desc->label;
2814 p->labelno = labelno;
2815 *defstr = p;
2816 STRING_POOL_ADDRESS_P (XEXP (rtl, 0)) = 1;
2822 return rtl;
2825 /* Now output assembler code to define the label for EXP,
2826 and follow it with the data of EXP. */
2828 static void
2829 output_constant_def_contents (exp, reloc, labelno)
2830 tree exp;
2831 int reloc;
2832 int labelno;
2834 int align;
2836 /* Align the location counter as required by EXP's data type. */
2837 align = TYPE_ALIGN (TREE_TYPE (exp));
2838 #ifdef CONSTANT_ALIGNMENT
2839 align = CONSTANT_ALIGNMENT (exp, align);
2840 #endif
2842 if (IN_NAMED_SECTION (exp))
2843 named_section (exp, NULL, reloc);
2844 else
2845 (*targetm.asm_out.select_section) (exp, reloc, align);
2847 if (align > BITS_PER_UNIT)
2849 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
2852 /* Output the label itself. */
2853 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LC", labelno);
2855 /* Output the value of EXP. */
2856 output_constant (exp,
2857 (TREE_CODE (exp) == STRING_CST
2858 ? MAX (TREE_STRING_LENGTH (exp),
2859 int_size_in_bytes (TREE_TYPE (exp)))
2860 : int_size_in_bytes (TREE_TYPE (exp))),
2861 align);
2865 /* Used in the hash tables to avoid outputting the same constant
2866 twice. Unlike 'struct constant_descriptor_tree', RTX constants
2867 are output once per function, not once per file; there seems
2868 to be no reason for the difference. */
2870 struct constant_descriptor_rtx GTY(())
2872 /* More constant_descriptors with the same hash code. */
2873 struct constant_descriptor_rtx *next;
2875 /* The label of the constant. */
2876 const char *label;
2878 /* A MEM for the constant. */
2879 rtx rtl;
2881 /* The value of the constant. */
2882 struct rtx_const value;
2885 /* Structure to represent sufficient information about a constant so that
2886 it can be output when the constant pool is output, so that function
2887 integration can be done, and to simplify handling on machines that reference
2888 constant pool as base+displacement. */
2890 struct pool_constant GTY(())
2892 struct constant_descriptor_rtx *desc;
2893 struct pool_constant *next;
2894 struct pool_constant *next_sym;
2895 rtx constant;
2896 enum machine_mode mode;
2897 int labelno;
2898 unsigned int align;
2899 HOST_WIDE_INT offset;
2900 int mark;
2903 /* Hash code for a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true.
2904 The argument is XSTR (... , 0) */
2906 #define SYMHASH(LABEL) (((unsigned long) (LABEL)) % MAX_RTX_HASH_TABLE)
2908 /* Initialize constant pool hashing for a new function. */
2910 void
2911 init_varasm_status (f)
2912 struct function *f;
2914 struct varasm_status *p;
2915 p = (struct varasm_status *) ggc_alloc (sizeof (struct varasm_status));
2916 f->varasm = p;
2917 p->x_const_rtx_hash_table
2918 = ((struct constant_descriptor_rtx **)
2919 ggc_alloc_cleared (MAX_RTX_HASH_TABLE
2920 * sizeof (struct constant_descriptor_rtx *)));
2921 p->x_const_rtx_sym_hash_table
2922 = ((struct pool_constant **)
2923 ggc_alloc_cleared (MAX_RTX_HASH_TABLE
2924 * sizeof (struct pool_constant *)));
2926 p->x_first_pool = p->x_last_pool = 0;
2927 p->x_pool_offset = 0;
2931 /* Express an rtx for a constant integer (perhaps symbolic)
2932 as the sum of a symbol or label plus an explicit integer.
2933 They are stored into VALUE. */
2935 static void
2936 decode_rtx_const (mode, x, value)
2937 enum machine_mode mode;
2938 rtx x;
2939 struct rtx_const *value;
2941 /* Clear the whole structure, including any gaps. */
2942 memset (value, 0, sizeof (struct rtx_const));
2944 value->kind = RTX_INT; /* Most usual kind. */
2945 value->mode = mode;
2947 switch (GET_CODE (x))
2949 case CONST_DOUBLE:
2950 value->kind = RTX_DOUBLE;
2951 if (GET_MODE (x) != VOIDmode)
2953 const REAL_VALUE_TYPE *r = CONST_DOUBLE_REAL_VALUE (x);
2955 value->mode = GET_MODE (x);
2957 /* Copy the REAL_VALUE_TYPE by members so that we don't
2958 copy garbage from the original structure into our
2959 carefully cleaned hashing structure. */
2960 value->un.du.class = r->class;
2961 value->un.du.sign = r->sign;
2962 switch (r->class)
2964 case rvc_zero:
2965 case rvc_inf:
2966 break;
2967 case rvc_normal:
2968 value->un.du.exp = r->exp;
2969 /* FALLTHRU */
2970 case rvc_nan:
2971 memcpy (value->un.du.sig, r->sig, sizeof (r->sig));
2972 break;
2973 default:
2974 abort ();
2977 else
2979 value->un.di.low = CONST_DOUBLE_LOW (x);
2980 value->un.di.high = CONST_DOUBLE_HIGH (x);
2982 break;
2984 case CONST_VECTOR:
2986 int units, i;
2988 units = CONST_VECTOR_NUNITS (x);
2989 value->kind = RTX_VECTOR;
2990 value->mode = mode;
2992 if (GET_MODE_CLASS (mode) == MODE_VECTOR_INT)
2994 for (i = 0; i < units; ++i)
2996 rtx elt = CONST_VECTOR_ELT (x, i);
2997 if (GET_CODE (elt) == CONST_INT)
2999 value->un.int_vec[i].low = INTVAL (elt);
3000 value->un.int_vec[i].high = 0;
3002 else
3004 value->un.int_vec[i].low = CONST_DOUBLE_LOW (elt);
3005 value->un.int_vec[i].high = CONST_DOUBLE_HIGH (elt);
3009 else if (GET_MODE_CLASS (mode) == MODE_VECTOR_FLOAT)
3011 for (i = 0; i < units; ++i)
3013 const REAL_VALUE_TYPE *r
3014 = CONST_DOUBLE_REAL_VALUE (CONST_VECTOR_ELT (x, i));
3015 REAL_VALUE_TYPE *d = &value->un.fp_vec[i];
3017 /* Copy the REAL_VALUE_TYPE by members so that we don't
3018 copy garbage from the original structure into our
3019 carefully cleaned hashing structure. */
3020 d->class = r->class;
3021 d->sign = r->sign;
3022 switch (r->class)
3024 case rvc_zero:
3025 case rvc_inf:
3026 break;
3027 case rvc_normal:
3028 d->exp = r->exp;
3029 /* FALLTHRU */
3030 case rvc_nan:
3031 memcpy (d->sig, r->sig, sizeof (r->sig));
3032 break;
3033 default:
3034 abort ();
3038 else
3039 abort ();
3041 break;
3043 case CONST_INT:
3044 value->un.addr.offset = INTVAL (x);
3045 break;
3047 case SYMBOL_REF:
3048 case LABEL_REF:
3049 case PC:
3050 value->un.addr.base = x;
3051 break;
3053 case CONST:
3054 x = XEXP (x, 0);
3055 if (GET_CODE (x) == PLUS && GET_CODE (XEXP (x, 1)) == CONST_INT)
3057 value->un.addr.base = XEXP (x, 0);
3058 value->un.addr.offset = INTVAL (XEXP (x, 1));
3060 else if (GET_CODE (x) == MINUS && GET_CODE (XEXP (x, 1)) == CONST_INT)
3062 value->un.addr.base = XEXP (x, 0);
3063 value->un.addr.offset = - INTVAL (XEXP (x, 1));
3065 else
3067 value->un.addr.base = x;
3068 value->un.addr.offset = 0;
3070 break;
3072 default:
3073 value->kind = RTX_UNKNOWN;
3074 break;
3077 if (value->kind == RTX_INT && value->un.addr.base != 0
3078 && GET_CODE (value->un.addr.base) == UNSPEC)
3080 /* For a simple UNSPEC, the base is set to the
3081 operand, the kind field is set to the index of
3082 the unspec expression.
3083 Together with the code below, in case that
3084 the operand is a SYMBOL_REF or LABEL_REF,
3085 the address of the string or the code_label
3086 is taken as base. */
3087 if (XVECLEN (value->un.addr.base, 0) == 1)
3089 value->kind = RTX_UNSPEC + XINT (value->un.addr.base, 1);
3090 value->un.addr.base = XVECEXP (value->un.addr.base, 0, 0);
3094 if (value->kind >= RTX_INT && value->un.addr.base != 0)
3095 switch (GET_CODE (value->un.addr.base))
3097 #if 0
3098 case SYMBOL_REF:
3099 /* Use the string's address, not the SYMBOL_REF's address,
3100 for the sake of addresses of library routines. */
3101 value->un.addr.base = (rtx) XSTR (value->un.addr.base, 0);
3102 break;
3103 #endif
3105 case LABEL_REF:
3106 /* For a LABEL_REF, compare labels. */
3107 value->un.addr.base = XEXP (value->un.addr.base, 0);
3109 default:
3110 break;
3114 /* Given a MINUS expression, simplify it if both sides
3115 include the same symbol. */
3118 simplify_subtraction (x)
3119 rtx x;
3121 struct rtx_const val0, val1;
3123 decode_rtx_const (GET_MODE (x), XEXP (x, 0), &val0);
3124 decode_rtx_const (GET_MODE (x), XEXP (x, 1), &val1);
3126 if (val0.kind >= RTX_INT
3127 && val0.kind == val1.kind
3128 && val0.un.addr.base == val1.un.addr.base)
3129 return GEN_INT (val0.un.addr.offset - val1.un.addr.offset);
3131 return x;
3134 /* Compute a hash code for a constant RTL expression. */
3136 static unsigned int
3137 const_hash_rtx (mode, x)
3138 enum machine_mode mode;
3139 rtx x;
3141 union {
3142 struct rtx_const value;
3143 unsigned int data[sizeof(struct rtx_const) / sizeof (unsigned int)];
3144 } u;
3146 unsigned int hi;
3147 size_t i;
3149 decode_rtx_const (mode, x, &u.value);
3151 /* Compute hashing function */
3152 hi = 0;
3153 for (i = 0; i < ARRAY_SIZE (u.data); i++)
3154 hi = hi * 613 + u.data[i];
3156 return hi % MAX_RTX_HASH_TABLE;
3159 /* Compare a constant rtl object X with a constant-descriptor DESC.
3160 Return 1 if DESC describes a constant with the same value as X. */
3162 static int
3163 compare_constant_rtx (mode, x, desc)
3164 enum machine_mode mode;
3165 rtx x;
3166 struct constant_descriptor_rtx *desc;
3168 struct rtx_const value;
3170 decode_rtx_const (mode, x, &value);
3172 /* Compare constant contents. */
3173 return memcmp (&value, &desc->value, sizeof (struct rtx_const)) == 0;
3176 /* Construct a constant descriptor for the rtl-expression X.
3177 It is up to the caller to enter the descriptor in the hash table. */
3179 static struct constant_descriptor_rtx *
3180 record_constant_rtx (mode, x)
3181 enum machine_mode mode;
3182 rtx x;
3184 struct constant_descriptor_rtx *ptr;
3186 ptr = (struct constant_descriptor_rtx *) ggc_alloc (sizeof (*ptr));
3187 decode_rtx_const (mode, x, &ptr->value);
3189 return ptr;
3192 /* Given a constant rtx X, return a MEM for the location in memory at which
3193 this constant has been placed. Return 0 if it not has been placed yet. */
3196 mem_for_const_double (x)
3197 rtx x;
3199 enum machine_mode mode = GET_MODE (x);
3200 struct constant_descriptor_rtx *desc;
3202 for (desc = const_rtx_hash_table[const_hash_rtx (mode, x)]; desc;
3203 desc = desc->next)
3204 if (compare_constant_rtx (mode, x, desc))
3205 return desc->rtl;
3207 return 0;
3210 /* Given a constant rtx X, make (or find) a memory constant for its value
3211 and return a MEM rtx to refer to it in memory. */
3214 force_const_mem (mode, x)
3215 enum machine_mode mode;
3216 rtx x;
3218 int hash;
3219 struct constant_descriptor_rtx *desc;
3220 char label[256];
3221 rtx def;
3222 struct pool_constant *pool;
3223 unsigned int align;
3225 /* Compute hash code of X. Search the descriptors for that hash code
3226 to see if any of them describes X. If yes, we have an rtx to use. */
3227 hash = const_hash_rtx (mode, x);
3228 for (desc = const_rtx_hash_table[hash]; desc; desc = desc->next)
3229 if (compare_constant_rtx (mode, x, desc))
3230 return desc->rtl;
3232 /* No constant equal to X is known to have been output.
3233 Make a constant descriptor to enter X in the hash table
3234 and make a MEM for it. */
3235 desc = record_constant_rtx (mode, x);
3236 desc->next = const_rtx_hash_table[hash];
3237 const_rtx_hash_table[hash] = desc;
3239 /* Align the location counter as required by EXP's data type. */
3240 align = GET_MODE_ALIGNMENT (mode == VOIDmode ? word_mode : mode);
3241 #ifdef CONSTANT_ALIGNMENT
3242 align = CONSTANT_ALIGNMENT (make_tree ((*lang_hooks.types.type_for_mode)
3243 (mode, 0), x), align);
3244 #endif
3246 pool_offset += (align / BITS_PER_UNIT) - 1;
3247 pool_offset &= ~ ((align / BITS_PER_UNIT) - 1);
3249 if (GET_CODE (x) == LABEL_REF)
3250 LABEL_PRESERVE_P (XEXP (x, 0)) = 1;
3252 /* Allocate a pool constant descriptor, fill it in, and chain it in. */
3253 pool = (struct pool_constant *) ggc_alloc (sizeof (struct pool_constant));
3254 pool->desc = desc;
3255 pool->constant = x;
3256 pool->mode = mode;
3257 pool->labelno = const_labelno;
3258 pool->align = align;
3259 pool->offset = pool_offset;
3260 pool->mark = 1;
3261 pool->next = 0;
3263 if (last_pool == 0)
3264 first_pool = pool;
3265 else
3266 last_pool->next = pool;
3268 last_pool = pool;
3269 pool_offset += GET_MODE_SIZE (mode);
3271 /* Create a string containing the label name, in LABEL. */
3272 ASM_GENERATE_INTERNAL_LABEL (label, "LC", const_labelno);
3274 ++const_labelno;
3276 /* Construct the SYMBOL_REF and the MEM. */
3278 pool->desc->rtl = def
3279 = gen_rtx_MEM (mode, gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label)));
3280 set_mem_alias_set (def, const_alias_set);
3281 set_mem_attributes (def, (*lang_hooks.types.type_for_mode) (mode, 0), 1);
3282 RTX_UNCHANGING_P (def) = 1;
3284 /* Add label to symbol hash table. */
3285 hash = SYMHASH (XSTR (XEXP (def, 0), 0));
3286 pool->next_sym = const_rtx_sym_hash_table[hash];
3287 const_rtx_sym_hash_table[hash] = pool;
3289 /* Mark the symbol_ref as belonging to this constants pool. */
3290 CONSTANT_POOL_ADDRESS_P (XEXP (def, 0)) = 1;
3291 current_function_uses_const_pool = 1;
3293 return def;
3296 /* Given a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true, return a pointer to
3297 the corresponding pool_constant structure. */
3299 static struct pool_constant *
3300 find_pool_constant (f, addr)
3301 struct function *f;
3302 rtx addr;
3304 struct pool_constant *pool;
3305 const char *label = XSTR (addr, 0);
3307 for (pool = f->varasm->x_const_rtx_sym_hash_table[SYMHASH (label)]; pool;
3308 pool = pool->next_sym)
3309 if (XSTR (XEXP (pool->desc->rtl, 0), 0) == label)
3310 return pool;
3312 abort ();
3315 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3318 get_pool_constant (addr)
3319 rtx addr;
3321 return (find_pool_constant (cfun, addr))->constant;
3324 /* Given a constant pool SYMBOL_REF, return the corresponding constant
3325 and whether it has been output or not. */
3328 get_pool_constant_mark (addr, pmarked)
3329 rtx addr;
3330 bool *pmarked;
3332 struct pool_constant *pool = find_pool_constant (cfun, addr);
3333 *pmarked = (pool->mark != 0);
3334 return pool->constant;
3337 /* Likewise, but for the constant pool of a specific function. */
3340 get_pool_constant_for_function (f, addr)
3341 struct function *f;
3342 rtx addr;
3344 return (find_pool_constant (f, addr))->constant;
3347 /* Similar, return the mode. */
3349 enum machine_mode
3350 get_pool_mode (addr)
3351 rtx addr;
3353 return (find_pool_constant (cfun, addr))->mode;
3356 enum machine_mode
3357 get_pool_mode_for_function (f, addr)
3358 struct function *f;
3359 rtx addr;
3361 return (find_pool_constant (f, addr))->mode;
3364 /* Similar, return the offset in the constant pool. */
3367 get_pool_offset (addr)
3368 rtx addr;
3370 return (find_pool_constant (cfun, addr))->offset;
3373 /* Return the size of the constant pool. */
3376 get_pool_size ()
3378 return pool_offset;
3381 /* Write all the constants in the constant pool. */
3383 void
3384 output_constant_pool (fnname, fndecl)
3385 const char *fnname ATTRIBUTE_UNUSED;
3386 tree fndecl ATTRIBUTE_UNUSED;
3388 struct pool_constant *pool;
3389 rtx x;
3390 REAL_VALUE_TYPE r;
3392 /* It is possible for gcc to call force_const_mem and then to later
3393 discard the instructions which refer to the constant. In such a
3394 case we do not need to output the constant. */
3395 mark_constant_pool ();
3397 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3398 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file, fnname, fndecl, pool_offset);
3399 #endif
3401 for (pool = first_pool; pool; pool = pool->next)
3403 rtx tmp;
3405 x = pool->constant;
3407 if (! pool->mark)
3408 continue;
3410 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3411 whose CODE_LABEL has been deleted. This can occur if a jump table
3412 is eliminated by optimization. If so, write a constant of zero
3413 instead. Note that this can also happen by turning the
3414 CODE_LABEL into a NOTE. */
3415 /* ??? This seems completely and utterly wrong. Certainly it's
3416 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3417 functioning even with INSN_DELETED_P and friends. */
3419 tmp = x;
3420 switch (GET_CODE (x))
3422 case CONST:
3423 if (GET_CODE (XEXP (x, 0)) != PLUS
3424 || GET_CODE (XEXP (XEXP (x, 0), 0)) != LABEL_REF)
3425 break;
3426 tmp = XEXP (XEXP (x, 0), 0);
3427 /* FALLTHRU */
3429 case LABEL_REF:
3430 tmp = XEXP (x, 0);
3431 if (INSN_DELETED_P (tmp)
3432 || (GET_CODE (tmp) == NOTE
3433 && NOTE_LINE_NUMBER (tmp) == NOTE_INSN_DELETED))
3435 abort ();
3436 x = const0_rtx;
3438 break;
3440 default:
3441 break;
3444 /* First switch to correct section. */
3445 (*targetm.asm_out.select_rtx_section) (pool->mode, x, pool->align);
3447 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3448 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file, x, pool->mode,
3449 pool->align, pool->labelno, done);
3450 #endif
3452 assemble_align (pool->align);
3454 /* Output the label. */
3455 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LC", pool->labelno);
3457 /* Output the value of the constant itself. */
3458 switch (GET_MODE_CLASS (pool->mode))
3460 case MODE_FLOAT:
3461 if (GET_CODE (x) != CONST_DOUBLE)
3462 abort ();
3464 REAL_VALUE_FROM_CONST_DOUBLE (r, x);
3465 assemble_real (r, pool->mode, pool->align);
3466 break;
3468 case MODE_INT:
3469 case MODE_PARTIAL_INT:
3470 assemble_integer (x, GET_MODE_SIZE (pool->mode), pool->align, 1);
3471 break;
3473 case MODE_VECTOR_FLOAT:
3475 int i, units;
3476 rtx elt;
3478 if (GET_CODE (x) != CONST_VECTOR)
3479 abort ();
3481 units = CONST_VECTOR_NUNITS (x);
3483 for (i = 0; i < units; i++)
3485 elt = CONST_VECTOR_ELT (x, i);
3486 REAL_VALUE_FROM_CONST_DOUBLE (r, elt);
3487 assemble_real (r, GET_MODE_INNER (pool->mode), pool->align);
3490 break;
3492 case MODE_VECTOR_INT:
3494 int i, units;
3495 rtx elt;
3497 if (GET_CODE (x) != CONST_VECTOR)
3498 abort ();
3500 units = CONST_VECTOR_NUNITS (x);
3502 for (i = 0; i < units; i++)
3504 elt = CONST_VECTOR_ELT (x, i);
3505 assemble_integer (elt, GET_MODE_UNIT_SIZE (pool->mode),
3506 pool->align, 1);
3509 break;
3511 default:
3512 abort ();
3515 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3516 done: ;
3517 #endif
3520 #ifdef ASM_OUTPUT_POOL_EPILOGUE
3521 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file, fnname, fndecl, pool_offset);
3522 #endif
3524 /* Done with this pool. */
3525 first_pool = last_pool = 0;
3528 /* Look through the instructions for this function, and mark all the
3529 entries in the constant pool which are actually being used.
3530 Emit used deferred strings. */
3532 static void
3533 mark_constant_pool ()
3535 rtx insn;
3536 rtx link;
3537 struct pool_constant *pool;
3539 if (first_pool == 0 && htab_elements (const_str_htab) == 0)
3540 return;
3542 for (pool = first_pool; pool; pool = pool->next)
3543 pool->mark = 0;
3545 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3546 if (INSN_P (insn))
3547 mark_constants (PATTERN (insn));
3549 for (link = current_function_epilogue_delay_list;
3550 link;
3551 link = XEXP (link, 1))
3553 insn = XEXP (link, 0);
3555 if (INSN_P (insn))
3556 mark_constants (PATTERN (insn));
3560 /* Look through appropriate parts of X, marking all entries in the
3561 constant pool which are actually being used. Entries that are only
3562 referenced by other constants are also marked as used. Emit
3563 deferred strings that are used. */
3565 static void
3566 mark_constants (x)
3567 rtx x;
3569 int i;
3570 const char *format_ptr;
3572 if (x == 0)
3573 return;
3575 if (GET_CODE (x) == SYMBOL_REF)
3577 mark_constant (&x, NULL);
3578 return;
3581 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3582 insns, not any notes that may be attached. We don't want to mark
3583 a constant just because it happens to appear in a REG_EQUIV note. */
3584 if (INSN_P (x))
3586 mark_constants (PATTERN (x));
3587 return;
3590 format_ptr = GET_RTX_FORMAT (GET_CODE (x));
3592 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (x)); i++)
3594 switch (*format_ptr++)
3596 case 'e':
3597 mark_constants (XEXP (x, i));
3598 break;
3600 case 'E':
3601 if (XVEC (x, i) != 0)
3603 int j;
3605 for (j = 0; j < XVECLEN (x, i); j++)
3606 mark_constants (XVECEXP (x, i, j));
3608 break;
3610 case 'S':
3611 case 's':
3612 case '0':
3613 case 'i':
3614 case 'w':
3615 case 'n':
3616 case 'u':
3617 case 'B':
3618 break;
3620 default:
3621 abort ();
3626 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3627 to as used. Emit referenced deferred strings. This function can
3628 be used with for_each_rtx to mark all SYMBOL_REFs in an rtx. */
3630 static int
3631 mark_constant (current_rtx, data)
3632 rtx *current_rtx;
3633 void *data ATTRIBUTE_UNUSED;
3635 rtx x = *current_rtx;
3637 if (x == NULL_RTX)
3638 return 0;
3640 else if (GET_CODE (x) == SYMBOL_REF)
3642 if (CONSTANT_POOL_ADDRESS_P (x))
3644 struct pool_constant *pool = find_pool_constant (cfun, x);
3645 if (pool->mark == 0)
3647 pool->mark = 1;
3648 for_each_rtx (&(pool->constant), &mark_constant, NULL);
3650 else
3651 return -1;
3653 else if (STRING_POOL_ADDRESS_P (x))
3655 struct deferred_string **defstr;
3657 defstr = (struct deferred_string **)
3658 htab_find_slot_with_hash (const_str_htab, XSTR (x, 0),
3659 STRHASH (XSTR (x, 0)), NO_INSERT);
3660 if (defstr)
3662 struct deferred_string *p = *defstr;
3664 STRING_POOL_ADDRESS_P (x) = 0;
3665 output_constant_def_contents (p->exp, 0, p->labelno);
3666 htab_clear_slot (const_str_htab, (void **) defstr);
3670 return 0;
3673 /* Find all the constants whose addresses are referenced inside of EXP,
3674 and make sure assembler code with a label has been output for each one.
3675 Indicate whether an ADDR_EXPR has been encountered. */
3677 static int
3678 output_addressed_constants (exp)
3679 tree exp;
3681 int reloc = 0;
3682 tree tem;
3684 /* Give the front-end a chance to convert VALUE to something that
3685 looks more like a constant to the back-end. */
3686 exp = (*lang_hooks.expand_constant) (exp);
3688 switch (TREE_CODE (exp))
3690 case ADDR_EXPR:
3691 case FDESC_EXPR:
3692 /* Go inside any operations that get_inner_reference can handle and see
3693 if what's inside is a constant: no need to do anything here for
3694 addresses of variables or functions. */
3695 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
3696 tem = TREE_OPERAND (tem, 0))
3699 if (TREE_CODE_CLASS (TREE_CODE (tem)) == 'c'
3700 || TREE_CODE (tem) == CONSTRUCTOR)
3701 output_constant_def (tem, 0);
3703 if (TREE_PUBLIC (tem))
3704 reloc |= 2;
3705 else
3706 reloc |= 1;
3707 break;
3709 case PLUS_EXPR:
3710 case MINUS_EXPR:
3711 reloc = output_addressed_constants (TREE_OPERAND (exp, 0));
3712 reloc |= output_addressed_constants (TREE_OPERAND (exp, 1));
3713 break;
3715 case NOP_EXPR:
3716 case CONVERT_EXPR:
3717 case NON_LVALUE_EXPR:
3718 reloc = output_addressed_constants (TREE_OPERAND (exp, 0));
3719 break;
3721 case CONSTRUCTOR:
3722 for (tem = CONSTRUCTOR_ELTS (exp); tem; tem = TREE_CHAIN (tem))
3723 if (TREE_VALUE (tem) != 0)
3724 reloc |= output_addressed_constants (TREE_VALUE (tem));
3726 break;
3728 default:
3729 break;
3731 return reloc;
3734 /* Return nonzero if VALUE is a valid constant-valued expression
3735 for use in initializing a static variable; one that can be an
3736 element of a "constant" initializer.
3738 Return null_pointer_node if the value is absolute;
3739 if it is relocatable, return the variable that determines the relocation.
3740 We assume that VALUE has been folded as much as possible;
3741 therefore, we do not need to check for such things as
3742 arithmetic-combinations of integers. */
3744 tree
3745 initializer_constant_valid_p (value, endtype)
3746 tree value;
3747 tree endtype;
3749 /* Give the front-end a chance to convert VALUE to something that
3750 looks more like a constant to the back-end. */
3751 value = (*lang_hooks.expand_constant) (value);
3753 switch (TREE_CODE (value))
3755 case CONSTRUCTOR:
3756 if ((TREE_CODE (TREE_TYPE (value)) == UNION_TYPE
3757 || TREE_CODE (TREE_TYPE (value)) == RECORD_TYPE)
3758 && TREE_CONSTANT (value)
3759 && CONSTRUCTOR_ELTS (value))
3760 return
3761 initializer_constant_valid_p (TREE_VALUE (CONSTRUCTOR_ELTS (value)),
3762 endtype);
3764 return TREE_STATIC (value) ? null_pointer_node : 0;
3766 case INTEGER_CST:
3767 case VECTOR_CST:
3768 case REAL_CST:
3769 case STRING_CST:
3770 case COMPLEX_CST:
3771 return null_pointer_node;
3773 case ADDR_EXPR:
3774 case FDESC_EXPR:
3775 return staticp (TREE_OPERAND (value, 0)) ? TREE_OPERAND (value, 0) : 0;
3777 case VIEW_CONVERT_EXPR:
3778 case NON_LVALUE_EXPR:
3779 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3781 case CONVERT_EXPR:
3782 case NOP_EXPR:
3783 /* Allow conversions between pointer types. */
3784 if (POINTER_TYPE_P (TREE_TYPE (value))
3785 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3786 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3788 /* Allow conversions between real types. */
3789 if (FLOAT_TYPE_P (TREE_TYPE (value))
3790 && FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3791 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3793 /* Allow length-preserving conversions between integer types. */
3794 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
3795 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0)))
3796 && (TYPE_PRECISION (TREE_TYPE (value))
3797 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0)))))
3798 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3800 /* Allow conversions between other integer types only if
3801 explicit value. */
3802 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
3803 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3805 tree inner = initializer_constant_valid_p (TREE_OPERAND (value, 0),
3806 endtype);
3807 if (inner == null_pointer_node)
3808 return null_pointer_node;
3809 break;
3812 /* Allow (int) &foo provided int is as wide as a pointer. */
3813 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
3814 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0)))
3815 && (TYPE_PRECISION (TREE_TYPE (value))
3816 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0)))))
3817 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
3818 endtype);
3820 /* Likewise conversions from int to pointers, but also allow
3821 conversions from 0. */
3822 if (POINTER_TYPE_P (TREE_TYPE (value))
3823 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3825 if (integer_zerop (TREE_OPERAND (value, 0)))
3826 return null_pointer_node;
3827 else if (TYPE_PRECISION (TREE_TYPE (value))
3828 <= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0))))
3829 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
3830 endtype);
3833 /* Allow conversions to union types if the value inside is okay. */
3834 if (TREE_CODE (TREE_TYPE (value)) == UNION_TYPE)
3835 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
3836 endtype);
3837 break;
3839 case PLUS_EXPR:
3840 if (! INTEGRAL_TYPE_P (endtype)
3841 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
3843 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
3844 endtype);
3845 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
3846 endtype);
3847 /* If either term is absolute, use the other terms relocation. */
3848 if (valid0 == null_pointer_node)
3849 return valid1;
3850 if (valid1 == null_pointer_node)
3851 return valid0;
3853 break;
3855 case MINUS_EXPR:
3856 if (! INTEGRAL_TYPE_P (endtype)
3857 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
3859 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
3860 endtype);
3861 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
3862 endtype);
3863 /* Win if second argument is absolute. */
3864 if (valid1 == null_pointer_node)
3865 return valid0;
3866 /* Win if both arguments have the same relocation.
3867 Then the value is absolute. */
3868 if (valid0 == valid1 && valid0 != 0)
3869 return null_pointer_node;
3871 /* Since GCC guarantees that string constants are unique in the
3872 generated code, a subtraction between two copies of the same
3873 constant string is absolute. */
3874 if (valid0 && TREE_CODE (valid0) == STRING_CST &&
3875 valid1 && TREE_CODE (valid1) == STRING_CST &&
3876 TREE_STRING_POINTER (valid0) == TREE_STRING_POINTER (valid1))
3877 return null_pointer_node;
3880 /* Support differences between labels. */
3881 if (INTEGRAL_TYPE_P (endtype))
3883 tree op0, op1;
3884 op0 = TREE_OPERAND (value, 0);
3885 op1 = TREE_OPERAND (value, 1);
3887 /* Like STRIP_NOPS except allow the operand mode to widen.
3888 This works around a feature of fold that simplfies
3889 (int)(p1 - p2) to ((int)p1 - (int)p2) under the theory
3890 that the narrower operation is cheaper. */
3892 while (TREE_CODE (op0) == NOP_EXPR
3893 || TREE_CODE (op0) == CONVERT_EXPR
3894 || TREE_CODE (op0) == NON_LVALUE_EXPR)
3896 tree inner = TREE_OPERAND (op0, 0);
3897 if (inner == error_mark_node
3898 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
3899 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0)))
3900 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
3901 break;
3902 op0 = inner;
3905 while (TREE_CODE (op1) == NOP_EXPR
3906 || TREE_CODE (op1) == CONVERT_EXPR
3907 || TREE_CODE (op1) == NON_LVALUE_EXPR)
3909 tree inner = TREE_OPERAND (op1, 0);
3910 if (inner == error_mark_node
3911 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
3912 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op1)))
3913 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
3914 break;
3915 op1 = inner;
3918 if (TREE_CODE (op0) == ADDR_EXPR
3919 && TREE_CODE (TREE_OPERAND (op0, 0)) == LABEL_DECL
3920 && TREE_CODE (op1) == ADDR_EXPR
3921 && TREE_CODE (TREE_OPERAND (op1, 0)) == LABEL_DECL)
3922 return null_pointer_node;
3924 break;
3926 default:
3927 break;
3930 return 0;
3933 /* Output assembler code for constant EXP to FILE, with no label.
3934 This includes the pseudo-op such as ".int" or ".byte", and a newline.
3935 Assumes output_addressed_constants has been done on EXP already.
3937 Generate exactly SIZE bytes of assembler data, padding at the end
3938 with zeros if necessary. SIZE must always be specified.
3940 SIZE is important for structure constructors,
3941 since trailing members may have been omitted from the constructor.
3942 It is also important for initialization of arrays from string constants
3943 since the full length of the string constant might not be wanted.
3944 It is also needed for initialization of unions, where the initializer's
3945 type is just one member, and that may not be as long as the union.
3947 There a case in which we would fail to output exactly SIZE bytes:
3948 for a structure constructor that wants to produce more than SIZE bytes.
3949 But such constructors will never be generated for any possible input.
3951 ALIGN is the alignment of the data in bits. */
3953 void
3954 output_constant (exp, size, align)
3955 tree exp;
3956 HOST_WIDE_INT size;
3957 unsigned int align;
3959 enum tree_code code;
3960 HOST_WIDE_INT thissize;
3962 /* Some front-ends use constants other than the standard language-indepdent
3963 varieties, but which may still be output directly. Give the front-end a
3964 chance to convert EXP to a language-independent representation. */
3965 exp = (*lang_hooks.expand_constant) (exp);
3967 if (size == 0 || flag_syntax_only)
3968 return;
3970 /* Eliminate any conversions since we'll be outputting the underlying
3971 constant. */
3972 while (TREE_CODE (exp) == NOP_EXPR || TREE_CODE (exp) == CONVERT_EXPR
3973 || TREE_CODE (exp) == NON_LVALUE_EXPR
3974 || TREE_CODE (exp) == VIEW_CONVERT_EXPR)
3975 exp = TREE_OPERAND (exp, 0);
3977 code = TREE_CODE (TREE_TYPE (exp));
3978 thissize = int_size_in_bytes (TREE_TYPE (exp));
3980 /* Allow a constructor with no elements for any data type.
3981 This means to fill the space with zeros. */
3982 if (TREE_CODE (exp) == CONSTRUCTOR && CONSTRUCTOR_ELTS (exp) == 0)
3984 assemble_zeros (size);
3985 return;
3988 if (TREE_CODE (exp) == FDESC_EXPR)
3990 #ifdef ASM_OUTPUT_FDESC
3991 HOST_WIDE_INT part = tree_low_cst (TREE_OPERAND (exp, 1), 0);
3992 tree decl = TREE_OPERAND (exp, 0);
3993 ASM_OUTPUT_FDESC (asm_out_file, decl, part);
3994 #else
3995 abort ();
3996 #endif
3997 return;
4000 /* Now output the underlying data. If we've handling the padding, return.
4001 Otherwise, break and ensure THISSIZE is the size written. */
4002 switch (code)
4004 case CHAR_TYPE:
4005 case BOOLEAN_TYPE:
4006 case INTEGER_TYPE:
4007 case ENUMERAL_TYPE:
4008 case POINTER_TYPE:
4009 case REFERENCE_TYPE:
4010 if (! assemble_integer (expand_expr (exp, NULL_RTX, VOIDmode,
4011 EXPAND_INITIALIZER),
4012 size, align, 0))
4013 error ("initializer for integer value is too complicated");
4014 break;
4016 case REAL_TYPE:
4017 if (TREE_CODE (exp) != REAL_CST)
4018 error ("initializer for floating value is not a floating constant");
4020 assemble_real (TREE_REAL_CST (exp),
4021 mode_for_size (size * BITS_PER_UNIT, MODE_FLOAT, 0),
4022 align);
4023 break;
4025 case COMPLEX_TYPE:
4026 output_constant (TREE_REALPART (exp), thissize / 2, align);
4027 output_constant (TREE_IMAGPART (exp), thissize / 2,
4028 min_align (align, BITS_PER_UNIT * (thissize / 2)));
4029 break;
4031 case ARRAY_TYPE:
4032 case VECTOR_TYPE:
4033 if (TREE_CODE (exp) == CONSTRUCTOR)
4035 output_constructor (exp, size, align);
4036 return;
4038 else if (TREE_CODE (exp) == STRING_CST)
4040 thissize = MIN (TREE_STRING_LENGTH (exp), size);
4041 assemble_string (TREE_STRING_POINTER (exp), thissize);
4043 else
4044 abort ();
4045 break;
4047 case RECORD_TYPE:
4048 case UNION_TYPE:
4049 if (TREE_CODE (exp) == CONSTRUCTOR)
4050 output_constructor (exp, size, align);
4051 else
4052 abort ();
4053 return;
4055 case SET_TYPE:
4056 if (TREE_CODE (exp) == INTEGER_CST)
4057 assemble_integer (expand_expr (exp, NULL_RTX,
4058 VOIDmode, EXPAND_INITIALIZER),
4059 thissize, align, 1);
4060 else if (TREE_CODE (exp) == CONSTRUCTOR)
4062 unsigned char *buffer = (unsigned char *) alloca (thissize);
4063 if (get_set_constructor_bytes (exp, buffer, thissize))
4064 abort ();
4065 assemble_string ((char *) buffer, thissize);
4067 else
4068 error ("unknown set constructor type");
4069 return;
4071 case ERROR_MARK:
4072 return;
4074 default:
4075 abort ();
4078 size -= thissize;
4079 if (size > 0)
4080 assemble_zeros (size);
4084 /* Subroutine of output_constructor, used for computing the size of
4085 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
4086 type with an unspecified upper bound. */
4088 static unsigned HOST_WIDE_INT
4089 array_size_for_constructor (val)
4090 tree val;
4092 tree max_index, i;
4094 /* This code used to attempt to handle string constants that are not
4095 arrays of single-bytes, but nothing else does, so there's no point in
4096 doing it here. */
4097 if (TREE_CODE (val) == STRING_CST)
4098 return TREE_STRING_LENGTH (val);
4100 max_index = NULL_TREE;
4101 for (i = CONSTRUCTOR_ELTS (val); i; i = TREE_CHAIN (i))
4103 tree index = TREE_PURPOSE (i);
4105 if (TREE_CODE (index) == RANGE_EXPR)
4106 index = TREE_OPERAND (index, 1);
4107 if (max_index == NULL_TREE || tree_int_cst_lt (max_index, index))
4108 max_index = index;
4111 if (max_index == NULL_TREE)
4112 return 0;
4114 /* Compute the total number of array elements. */
4115 i = size_binop (MINUS_EXPR, convert (sizetype, max_index),
4116 convert (sizetype,
4117 TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val)))));
4118 i = size_binop (PLUS_EXPR, i, convert (sizetype, integer_one_node));
4120 /* Multiply by the array element unit size to find number of bytes. */
4121 i = size_binop (MULT_EXPR, i, TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val))));
4123 return tree_low_cst (i, 1);
4126 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
4127 Generate at least SIZE bytes, padding if necessary. */
4129 static void
4130 output_constructor (exp, size, align)
4131 tree exp;
4132 HOST_WIDE_INT size;
4133 unsigned int align;
4135 tree type = TREE_TYPE (exp);
4136 tree link, field = 0;
4137 tree min_index = 0;
4138 /* Number of bytes output or skipped so far.
4139 In other words, current position within the constructor. */
4140 HOST_WIDE_INT total_bytes = 0;
4141 /* Non-zero means BYTE contains part of a byte, to be output. */
4142 int byte_buffer_in_use = 0;
4143 int byte = 0;
4145 if (HOST_BITS_PER_WIDE_INT < BITS_PER_UNIT)
4146 abort ();
4148 if (TREE_CODE (type) == RECORD_TYPE)
4149 field = TYPE_FIELDS (type);
4151 if (TREE_CODE (type) == ARRAY_TYPE
4152 && TYPE_DOMAIN (type) != 0)
4153 min_index = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
4155 /* As LINK goes through the elements of the constant,
4156 FIELD goes through the structure fields, if the constant is a structure.
4157 if the constant is a union, then we override this,
4158 by getting the field from the TREE_LIST element.
4159 But the constant could also be an array. Then FIELD is zero.
4161 There is always a maximum of one element in the chain LINK for unions
4162 (even if the initializer in a source program incorrectly contains
4163 more one). */
4164 for (link = CONSTRUCTOR_ELTS (exp);
4165 link;
4166 link = TREE_CHAIN (link),
4167 field = field ? TREE_CHAIN (field) : 0)
4169 tree val = TREE_VALUE (link);
4170 tree index = 0;
4172 /* The element in a union constructor specifies the proper field
4173 or index. */
4174 if ((TREE_CODE (type) == RECORD_TYPE || TREE_CODE (type) == UNION_TYPE
4175 || TREE_CODE (type) == QUAL_UNION_TYPE)
4176 && TREE_PURPOSE (link) != 0)
4177 field = TREE_PURPOSE (link);
4179 else if (TREE_CODE (type) == ARRAY_TYPE)
4180 index = TREE_PURPOSE (link);
4182 /* Eliminate the marker that makes a cast not be an lvalue. */
4183 if (val != 0)
4184 STRIP_NOPS (val);
4186 if (index && TREE_CODE (index) == RANGE_EXPR)
4188 unsigned HOST_WIDE_INT fieldsize
4189 = int_size_in_bytes (TREE_TYPE (type));
4190 HOST_WIDE_INT lo_index = tree_low_cst (TREE_OPERAND (index, 0), 0);
4191 HOST_WIDE_INT hi_index = tree_low_cst (TREE_OPERAND (index, 1), 0);
4192 HOST_WIDE_INT index;
4193 unsigned int align2 = min_align (align, fieldsize * BITS_PER_UNIT);
4195 for (index = lo_index; index <= hi_index; index++)
4197 /* Output the element's initial value. */
4198 if (val == 0)
4199 assemble_zeros (fieldsize);
4200 else
4201 output_constant (val, fieldsize, align2);
4203 /* Count its size. */
4204 total_bytes += fieldsize;
4207 else if (field == 0 || !DECL_BIT_FIELD (field))
4209 /* An element that is not a bit-field. */
4211 unsigned HOST_WIDE_INT fieldsize;
4212 /* Since this structure is static,
4213 we know the positions are constant. */
4214 HOST_WIDE_INT pos = field ? int_byte_position (field) : 0;
4215 unsigned int align2;
4217 if (index != 0)
4218 pos = (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (val)), 1)
4219 * (tree_low_cst (index, 0) - tree_low_cst (min_index, 0)));
4221 /* Output any buffered-up bit-fields preceding this element. */
4222 if (byte_buffer_in_use)
4224 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4225 total_bytes++;
4226 byte_buffer_in_use = 0;
4229 /* Advance to offset of this element.
4230 Note no alignment needed in an array, since that is guaranteed
4231 if each element has the proper size. */
4232 if ((field != 0 || index != 0) && pos != total_bytes)
4234 assemble_zeros (pos - total_bytes);
4235 total_bytes = pos;
4238 /* Find the alignment of this element. */
4239 align2 = min_align (align, BITS_PER_UNIT * pos);
4241 /* Determine size this element should occupy. */
4242 if (field)
4244 fieldsize = 0;
4246 /* If this is an array with an unspecified upper bound,
4247 the initializer determines the size. */
4248 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4249 but we cannot do this until the deprecated support for
4250 initializing zero-length array members is removed. */
4251 if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
4252 && TYPE_DOMAIN (TREE_TYPE (field))
4253 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field))))
4255 fieldsize = array_size_for_constructor (val);
4256 /* Given a non-empty initialization, this field had
4257 better be last. */
4258 if (fieldsize != 0 && TREE_CHAIN (field) != NULL_TREE)
4259 abort ();
4261 else if (DECL_SIZE_UNIT (field))
4263 /* ??? This can't be right. If the decl size overflows
4264 a host integer we will silently emit no data. */
4265 if (host_integerp (DECL_SIZE_UNIT (field), 1))
4266 fieldsize = tree_low_cst (DECL_SIZE_UNIT (field), 1);
4269 else
4270 fieldsize = int_size_in_bytes (TREE_TYPE (type));
4272 /* Output the element's initial value. */
4273 if (val == 0)
4274 assemble_zeros (fieldsize);
4275 else
4276 output_constant (val, fieldsize, align2);
4278 /* Count its size. */
4279 total_bytes += fieldsize;
4281 else if (val != 0 && TREE_CODE (val) != INTEGER_CST)
4282 error ("invalid initial value for member `%s'",
4283 IDENTIFIER_POINTER (DECL_NAME (field)));
4284 else
4286 /* Element that is a bit-field. */
4288 HOST_WIDE_INT next_offset = int_bit_position (field);
4289 HOST_WIDE_INT end_offset
4290 = (next_offset + tree_low_cst (DECL_SIZE (field), 1));
4292 if (val == 0)
4293 val = integer_zero_node;
4295 /* If this field does not start in this (or, next) byte,
4296 skip some bytes. */
4297 if (next_offset / BITS_PER_UNIT != total_bytes)
4299 /* Output remnant of any bit field in previous bytes. */
4300 if (byte_buffer_in_use)
4302 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4303 total_bytes++;
4304 byte_buffer_in_use = 0;
4307 /* If still not at proper byte, advance to there. */
4308 if (next_offset / BITS_PER_UNIT != total_bytes)
4310 assemble_zeros (next_offset / BITS_PER_UNIT - total_bytes);
4311 total_bytes = next_offset / BITS_PER_UNIT;
4315 if (! byte_buffer_in_use)
4316 byte = 0;
4318 /* We must split the element into pieces that fall within
4319 separate bytes, and combine each byte with previous or
4320 following bit-fields. */
4322 /* next_offset is the offset n fbits from the beginning of
4323 the structure to the next bit of this element to be processed.
4324 end_offset is the offset of the first bit past the end of
4325 this element. */
4326 while (next_offset < end_offset)
4328 int this_time;
4329 int shift;
4330 HOST_WIDE_INT value;
4331 HOST_WIDE_INT next_byte = next_offset / BITS_PER_UNIT;
4332 HOST_WIDE_INT next_bit = next_offset % BITS_PER_UNIT;
4334 /* Advance from byte to byte
4335 within this element when necessary. */
4336 while (next_byte != total_bytes)
4338 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4339 total_bytes++;
4340 byte = 0;
4343 /* Number of bits we can process at once
4344 (all part of the same byte). */
4345 this_time = MIN (end_offset - next_offset,
4346 BITS_PER_UNIT - next_bit);
4347 if (BYTES_BIG_ENDIAN)
4349 /* On big-endian machine, take the most significant bits
4350 first (of the bits that are significant)
4351 and put them into bytes from the most significant end. */
4352 shift = end_offset - next_offset - this_time;
4354 /* Don't try to take a bunch of bits that cross
4355 the word boundary in the INTEGER_CST. We can
4356 only select bits from the LOW or HIGH part
4357 not from both. */
4358 if (shift < HOST_BITS_PER_WIDE_INT
4359 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4361 this_time = shift + this_time - HOST_BITS_PER_WIDE_INT;
4362 shift = HOST_BITS_PER_WIDE_INT;
4365 /* Now get the bits from the appropriate constant word. */
4366 if (shift < HOST_BITS_PER_WIDE_INT)
4367 value = TREE_INT_CST_LOW (val);
4368 else if (shift < 2 * HOST_BITS_PER_WIDE_INT)
4370 value = TREE_INT_CST_HIGH (val);
4371 shift -= HOST_BITS_PER_WIDE_INT;
4373 else
4374 abort ();
4376 /* Get the result. This works only when:
4377 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4378 byte |= (((value >> shift)
4379 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4380 << (BITS_PER_UNIT - this_time - next_bit));
4382 else
4384 /* On little-endian machines,
4385 take first the least significant bits of the value
4386 and pack them starting at the least significant
4387 bits of the bytes. */
4388 shift = next_offset - int_bit_position (field);
4390 /* Don't try to take a bunch of bits that cross
4391 the word boundary in the INTEGER_CST. We can
4392 only select bits from the LOW or HIGH part
4393 not from both. */
4394 if (shift < HOST_BITS_PER_WIDE_INT
4395 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4396 this_time = (HOST_BITS_PER_WIDE_INT - shift);
4398 /* Now get the bits from the appropriate constant word. */
4399 if (shift < HOST_BITS_PER_WIDE_INT)
4400 value = TREE_INT_CST_LOW (val);
4401 else if (shift < 2 * HOST_BITS_PER_WIDE_INT)
4403 value = TREE_INT_CST_HIGH (val);
4404 shift -= HOST_BITS_PER_WIDE_INT;
4406 else
4407 abort ();
4409 /* Get the result. This works only when:
4410 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4411 byte |= (((value >> shift)
4412 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4413 << next_bit);
4416 next_offset += this_time;
4417 byte_buffer_in_use = 1;
4422 if (byte_buffer_in_use)
4424 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4425 total_bytes++;
4428 if (total_bytes < size)
4429 assemble_zeros (size - total_bytes);
4432 /* This TREE_LIST contains any weak symbol declarations waiting
4433 to be emitted. */
4434 static GTY(()) tree weak_decls;
4436 /* Mark DECL as weak. */
4438 static void
4439 mark_weak (decl)
4440 tree decl;
4442 DECL_WEAK (decl) = 1;
4444 if (DECL_RTL_SET_P (decl)
4445 && GET_CODE (DECL_RTL (decl)) == MEM
4446 && XEXP (DECL_RTL (decl), 0)
4447 && GET_CODE (XEXP (DECL_RTL (decl), 0)) == SYMBOL_REF)
4448 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl), 0)) = 1;
4451 /* Merge weak status between NEWDECL and OLDDECL. */
4453 void
4454 merge_weak (newdecl, olddecl)
4455 tree newdecl;
4456 tree olddecl;
4458 if (DECL_WEAK (newdecl) == DECL_WEAK (olddecl))
4459 return;
4461 if (DECL_WEAK (newdecl))
4463 tree wd;
4465 /* NEWDECL is weak, but OLDDECL is not. */
4467 /* If we already output the OLDDECL, we're in trouble; we can't
4468 go back and make it weak. This error cannot caught in
4469 declare_weak because the NEWDECL and OLDDECL was not yet
4470 been merged; therefore, TREE_ASM_WRITTEN was not set. */
4471 if (TREE_ASM_WRITTEN (olddecl))
4472 error_with_decl (newdecl,
4473 "weak declaration of `%s' must precede definition");
4475 /* If we've already generated rtl referencing OLDDECL, we may
4476 have done so in a way that will not function properly with
4477 a weak symbol. */
4478 else if (TREE_USED (olddecl)
4479 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl)))
4480 warning_with_decl (newdecl, "weak declaration of `%s' after first use results in unspecified behavior");
4482 if (SUPPORTS_WEAK)
4484 /* We put the NEWDECL on the weak_decls list at some point.
4485 Replace it with the OLDDECL. */
4486 for (wd = weak_decls; wd; wd = TREE_CHAIN (wd))
4487 if (TREE_VALUE (wd) == newdecl)
4489 TREE_VALUE (wd) = olddecl;
4490 break;
4492 /* We may not find the entry on the list. If NEWDECL is a
4493 weak alias, then we will have already called
4494 globalize_decl to remove the entry; in that case, we do
4495 not need to do anything. */
4498 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
4499 mark_weak (olddecl);
4501 else
4502 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
4503 weak. Just update NEWDECL to indicate that it's weak too. */
4504 mark_weak (newdecl);
4507 /* Declare DECL to be a weak symbol. */
4509 void
4510 declare_weak (decl)
4511 tree decl;
4513 if (! TREE_PUBLIC (decl))
4514 error_with_decl (decl, "weak declaration of `%s' must be public");
4515 else if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
4516 error_with_decl (decl, "weak declaration of `%s' must precede definition");
4517 else if (SUPPORTS_WEAK)
4519 if (! DECL_WEAK (decl))
4520 weak_decls = tree_cons (NULL, decl, weak_decls);
4522 else
4523 warning_with_decl (decl, "weak declaration of `%s' not supported");
4525 mark_weak (decl);
4528 /* Emit any pending weak declarations. */
4530 void
4531 weak_finish ()
4533 tree t;
4535 for (t = weak_decls; t; t = TREE_CHAIN (t))
4537 tree decl = TREE_VALUE (t);
4538 const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
4540 if (! TREE_USED (decl))
4541 continue;
4543 #ifdef ASM_WEAKEN_DECL
4544 ASM_WEAKEN_DECL (asm_out_file, decl, name, NULL);
4545 #else
4546 #ifdef ASM_WEAKEN_LABEL
4547 ASM_WEAKEN_LABEL (asm_out_file, name);
4548 #else
4549 #ifdef ASM_OUTPUT_WEAK_ALIAS
4550 warning ("only weak aliases are supported in this configuration");
4551 return;
4552 #endif
4553 #endif
4554 #endif
4558 /* Emit the assembly bits to indicate that DECL is globally visible. */
4560 static void
4561 globalize_decl (decl)
4562 tree decl;
4564 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
4566 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
4567 if (DECL_WEAK (decl))
4569 tree *p, t;
4571 #ifdef ASM_WEAKEN_DECL
4572 ASM_WEAKEN_DECL (asm_out_file, decl, name, 0);
4573 #else
4574 ASM_WEAKEN_LABEL (asm_out_file, name);
4575 #endif
4577 /* Remove this function from the pending weak list so that
4578 we do not emit multiple .weak directives for it. */
4579 for (p = &weak_decls; (t = *p) ; )
4581 if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
4582 *p = TREE_CHAIN (t);
4583 else
4584 p = &TREE_CHAIN (t);
4586 return;
4588 #endif
4590 (*targetm.asm_out.globalize_label) (asm_out_file, name);
4593 /* Emit an assembler directive to make the symbol for DECL an alias to
4594 the symbol for TARGET. */
4596 void
4597 assemble_alias (decl, target)
4598 tree decl, target ATTRIBUTE_UNUSED;
4600 const char *name;
4602 /* We must force creation of DECL_RTL for debug info generation, even though
4603 we don't use it here. */
4604 make_decl_rtl (decl, NULL);
4606 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
4608 #ifdef ASM_OUTPUT_DEF
4609 /* Make name accessible from other files, if appropriate. */
4611 if (TREE_PUBLIC (decl))
4613 globalize_decl (decl);
4614 maybe_assemble_visibility (decl);
4617 #ifdef ASM_OUTPUT_DEF_FROM_DECLS
4618 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file, decl, target);
4619 #else
4620 ASM_OUTPUT_DEF (asm_out_file, name, IDENTIFIER_POINTER (target));
4621 #endif
4622 #else /* !ASM_OUTPUT_DEF */
4623 #if defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
4624 if (! DECL_WEAK (decl))
4625 warning ("only weak aliases are supported in this configuration");
4627 #ifdef ASM_WEAKEN_DECL
4628 ASM_WEAKEN_DECL (asm_out_file, decl, name, IDENTIFIER_POINTER (target));
4629 #else
4630 ASM_OUTPUT_WEAK_ALIAS (asm_out_file, name, IDENTIFIER_POINTER (target));
4631 #endif
4632 #else
4633 warning ("alias definitions not supported in this configuration; ignored");
4634 #endif
4635 #endif
4637 TREE_USED (decl) = 1;
4638 TREE_ASM_WRITTEN (decl) = 1;
4639 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl)) = 1;
4642 /* Emit an assembler directive to set symbol for DECL visibility to
4643 VISIBILITY_TYPE. */
4645 void
4646 default_assemble_visibility (decl, visibility_type)
4647 tree decl;
4648 const char *visibility_type ATTRIBUTE_UNUSED;
4650 const char *name;
4652 name = (* targetm.strip_name_encoding)
4653 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
4655 #ifdef HAVE_GAS_HIDDEN
4656 fprintf (asm_out_file, "\t.%s\t%s\n", visibility_type, name);
4657 #else
4658 warning ("visibility attribute not supported in this configuration; ignored");
4659 #endif
4662 /* A helper function to call assemble_visibility when needed for a decl. */
4664 static void
4665 maybe_assemble_visibility (decl)
4666 tree decl;
4668 tree visibility = lookup_attribute ("visibility", DECL_ATTRIBUTES (decl));
4669 if (visibility)
4671 const char *type
4672 = TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (visibility)));
4673 (* targetm.asm_out.visibility) (decl, type);
4677 /* Returns 1 if the target configuration supports defining public symbols
4678 so that one of them will be chosen at link time instead of generating a
4679 multiply-defined symbol error, whether through the use of weak symbols or
4680 a target-specific mechanism for having duplicates discarded. */
4683 supports_one_only ()
4685 if (SUPPORTS_ONE_ONLY)
4686 return 1;
4687 return SUPPORTS_WEAK;
4690 /* Set up DECL as a public symbol that can be defined in multiple
4691 translation units without generating a linker error. */
4693 void
4694 make_decl_one_only (decl)
4695 tree decl;
4697 if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != FUNCTION_DECL)
4698 abort ();
4700 TREE_PUBLIC (decl) = 1;
4702 if (TREE_CODE (decl) == VAR_DECL
4703 && (DECL_INITIAL (decl) == 0 || DECL_INITIAL (decl) == error_mark_node))
4704 DECL_COMMON (decl) = 1;
4705 else if (SUPPORTS_ONE_ONLY)
4707 #ifdef MAKE_DECL_ONE_ONLY
4708 MAKE_DECL_ONE_ONLY (decl);
4709 #endif
4710 DECL_ONE_ONLY (decl) = 1;
4712 else if (SUPPORTS_WEAK)
4713 DECL_WEAK (decl) = 1;
4714 else
4715 abort ();
4718 void
4719 init_varasm_once ()
4721 const_str_htab = htab_create_ggc (128, const_str_htab_hash,
4722 const_str_htab_eq, NULL);
4723 in_named_htab = htab_create (31, in_named_entry_hash,
4724 in_named_entry_eq, NULL);
4726 const_alias_set = new_alias_set ();
4729 /* Select a set of attributes for section NAME based on the properties
4730 of DECL and whether or not RELOC indicates that DECL's initializer
4731 might contain runtime relocations.
4733 We make the section read-only and executable for a function decl,
4734 read-only for a const data decl, and writable for a non-const data decl. */
4736 unsigned int
4737 default_section_type_flags (decl, name, reloc)
4738 tree decl;
4739 const char *name;
4740 int reloc;
4742 return default_section_type_flags_1 (decl, name, reloc, flag_pic);
4745 unsigned int
4746 default_section_type_flags_1 (decl, name, reloc, shlib)
4747 tree decl;
4748 const char *name;
4749 int reloc;
4750 int shlib;
4752 unsigned int flags;
4754 if (decl && TREE_CODE (decl) == FUNCTION_DECL)
4755 flags = SECTION_CODE;
4756 else if (decl && decl_readonly_section_1 (decl, reloc, shlib))
4757 flags = 0;
4758 else
4759 flags = SECTION_WRITE;
4761 if (decl && DECL_ONE_ONLY (decl))
4762 flags |= SECTION_LINKONCE;
4764 if (decl && TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL (decl))
4765 flags |= SECTION_TLS | SECTION_WRITE;
4767 if (strcmp (name, ".bss") == 0
4768 || strncmp (name, ".bss.", 5) == 0
4769 || strncmp (name, ".gnu.linkonce.b.", 16) == 0
4770 || strcmp (name, ".sbss") == 0
4771 || strncmp (name, ".sbss.", 6) == 0
4772 || strncmp (name, ".gnu.linkonce.sb.", 17) == 0
4773 || strcmp (name, ".tbss") == 0
4774 || strncmp (name, ".gnu.linkonce.tb.", 17) == 0)
4775 flags |= SECTION_BSS;
4777 if (strcmp (name, ".tdata") == 0
4778 || strcmp (name, ".tbss") == 0
4779 || strncmp (name, ".gnu.linkonce.td.", 17) == 0
4780 || strncmp (name, ".gnu.linkonce.tb.", 17) == 0)
4781 flags |= SECTION_TLS;
4783 return flags;
4786 /* Output assembly to switch to section NAME with attribute FLAGS.
4787 Four variants for common object file formats. */
4789 void
4790 default_no_named_section (name, flags)
4791 const char *name ATTRIBUTE_UNUSED;
4792 unsigned int flags ATTRIBUTE_UNUSED;
4794 /* Some object formats don't support named sections at all. The
4795 front-end should already have flagged this as an error. */
4796 abort ();
4799 void
4800 default_elf_asm_named_section (name, flags)
4801 const char *name;
4802 unsigned int flags;
4804 char flagchars[10], *f = flagchars;
4805 const char *type;
4807 if (! named_section_first_declaration (name))
4809 fprintf (asm_out_file, "\t.section\t%s\n", name);
4810 return;
4813 if (!(flags & SECTION_DEBUG))
4814 *f++ = 'a';
4815 if (flags & SECTION_WRITE)
4816 *f++ = 'w';
4817 if (flags & SECTION_CODE)
4818 *f++ = 'x';
4819 if (flags & SECTION_SMALL)
4820 *f++ = 's';
4821 if (flags & SECTION_MERGE)
4822 *f++ = 'M';
4823 if (flags & SECTION_STRINGS)
4824 *f++ = 'S';
4825 if (flags & SECTION_TLS)
4826 *f++ = 'T';
4827 *f = '\0';
4829 if (flags & SECTION_BSS)
4830 type = "nobits";
4831 else
4832 type = "progbits";
4834 if (flags & SECTION_ENTSIZE)
4835 fprintf (asm_out_file, "\t.section\t%s,\"%s\",@%s,%d\n",
4836 name, flagchars, type, flags & SECTION_ENTSIZE);
4837 else
4838 fprintf (asm_out_file, "\t.section\t%s,\"%s\",@%s\n",
4839 name, flagchars, type);
4842 void
4843 default_coff_asm_named_section (name, flags)
4844 const char *name;
4845 unsigned int flags;
4847 char flagchars[8], *f = flagchars;
4849 if (flags & SECTION_WRITE)
4850 *f++ = 'w';
4851 if (flags & SECTION_CODE)
4852 *f++ = 'x';
4853 *f = '\0';
4855 fprintf (asm_out_file, "\t.section\t%s,\"%s\"\n", name, flagchars);
4858 void
4859 default_pe_asm_named_section (name, flags)
4860 const char *name;
4861 unsigned int flags;
4863 default_coff_asm_named_section (name, flags);
4865 if (flags & SECTION_LINKONCE)
4867 /* Functions may have been compiled at various levels of
4868 optimization so we can't use `same_size' here.
4869 Instead, have the linker pick one. */
4870 fprintf (asm_out_file, "\t.linkonce %s\n",
4871 (flags & SECTION_CODE ? "discard" : "same_size"));
4875 /* Used for vtable gc in GNU binutils. Record that the pointer at OFFSET
4876 from SYMBOL is used in all classes derived from SYMBOL. */
4878 void
4879 assemble_vtable_entry (symbol, offset)
4880 rtx symbol;
4881 HOST_WIDE_INT offset;
4883 fputs ("\t.vtable_entry ", asm_out_file);
4884 output_addr_const (asm_out_file, symbol);
4885 fputs (", ", asm_out_file);
4886 fprintf (asm_out_file, HOST_WIDE_INT_PRINT_DEC, offset);
4887 fputc ('\n', asm_out_file);
4890 /* Used for vtable gc in GNU binutils. Record the class hierarchy by noting
4891 that the vtable symbol CHILD is derived from the vtable symbol PARENT. */
4893 void
4894 assemble_vtable_inherit (child, parent)
4895 rtx child, parent;
4897 fputs ("\t.vtable_inherit ", asm_out_file);
4898 output_addr_const (asm_out_file, child);
4899 fputs (", ", asm_out_file);
4900 output_addr_const (asm_out_file, parent);
4901 fputc ('\n', asm_out_file);
4904 /* The lame default section selector. */
4906 void
4907 default_select_section (decl, reloc, align)
4908 tree decl;
4909 int reloc;
4910 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED;
4912 bool readonly = false;
4914 if (DECL_P (decl))
4916 if (decl_readonly_section (decl, reloc))
4917 readonly = true;
4919 else if (TREE_CODE (decl) == CONSTRUCTOR)
4921 if (! ((flag_pic && reloc)
4922 || !TREE_READONLY (decl)
4923 || TREE_SIDE_EFFECTS (decl)
4924 || !TREE_CONSTANT (decl)))
4925 readonly = true;
4927 else if (TREE_CODE (decl) == STRING_CST)
4928 readonly = !flag_writable_strings;
4929 else if (! (flag_pic && reloc))
4930 readonly = true;
4932 if (readonly)
4933 readonly_data_section ();
4934 else
4935 data_section ();
4938 /* A helper function for default_elf_select_section and
4939 default_elf_unique_section. Categorizes the DECL. */
4941 enum section_category
4943 SECCAT_TEXT,
4945 SECCAT_RODATA,
4946 SECCAT_RODATA_MERGE_STR,
4947 SECCAT_RODATA_MERGE_STR_INIT,
4948 SECCAT_RODATA_MERGE_CONST,
4949 SECCAT_SRODATA,
4951 SECCAT_DATA,
4953 /* To optimize loading of shared programs, define following subsections
4954 of data section:
4955 _REL Contains data that has relocations, so they get grouped
4956 together and dynamic linker will visit fewer pages in memory.
4957 _RO Contains data that is otherwise read-only. This is useful
4958 with prelinking as most relocations won't be dynamically
4959 linked and thus stay read only.
4960 _LOCAL Marks data containing relocations only to local objects.
4961 These relocations will get fully resolved by prelinking. */
4962 SECCAT_DATA_REL,
4963 SECCAT_DATA_REL_LOCAL,
4964 SECCAT_DATA_REL_RO,
4965 SECCAT_DATA_REL_RO_LOCAL,
4967 SECCAT_SDATA,
4968 SECCAT_TDATA,
4970 SECCAT_BSS,
4971 SECCAT_SBSS,
4972 SECCAT_TBSS
4975 static enum section_category
4976 categorize_decl_for_section PARAMS ((tree, int, int));
4978 static enum section_category
4979 categorize_decl_for_section (decl, reloc, shlib)
4980 tree decl;
4981 int reloc;
4982 int shlib;
4984 enum section_category ret;
4986 if (TREE_CODE (decl) == FUNCTION_DECL)
4987 return SECCAT_TEXT;
4988 else if (TREE_CODE (decl) == STRING_CST)
4990 if (flag_writable_strings)
4991 return SECCAT_DATA;
4992 else
4993 return SECCAT_RODATA_MERGE_STR;
4995 else if (TREE_CODE (decl) == VAR_DECL)
4997 if (DECL_INITIAL (decl) == NULL
4998 || DECL_INITIAL (decl) == error_mark_node)
4999 ret = SECCAT_BSS;
5000 else if (! TREE_READONLY (decl)
5001 || TREE_SIDE_EFFECTS (decl)
5002 || ! TREE_CONSTANT (DECL_INITIAL (decl)))
5004 if (shlib && (reloc & 2))
5005 ret = SECCAT_DATA_REL;
5006 else if (shlib && reloc)
5007 ret = SECCAT_DATA_REL_LOCAL;
5008 else
5009 ret = SECCAT_DATA;
5011 else if (shlib && (reloc & 2))
5012 ret = SECCAT_DATA_REL_RO;
5013 else if (shlib && reloc)
5014 ret = SECCAT_DATA_REL_RO_LOCAL;
5015 else if (flag_merge_constants < 2)
5016 /* C and C++ don't allow different variables to share the same
5017 location. -fmerge-all-constants allows even that (at the
5018 expense of not conforming). */
5019 ret = SECCAT_RODATA;
5020 else if (TREE_CODE (DECL_INITIAL (decl)) == STRING_CST)
5021 ret = SECCAT_RODATA_MERGE_STR_INIT;
5022 else
5023 ret = SECCAT_RODATA_MERGE_CONST;
5025 else if (TREE_CODE (decl) == CONSTRUCTOR)
5027 if ((shlib && reloc)
5028 || TREE_SIDE_EFFECTS (decl)
5029 || ! TREE_CONSTANT (decl))
5030 ret = SECCAT_DATA;
5031 else
5032 ret = SECCAT_RODATA;
5034 else
5035 ret = SECCAT_RODATA;
5037 /* There are no read-only thread-local sections. */
5038 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL (decl))
5040 if (ret == SECCAT_BSS)
5041 ret = SECCAT_TBSS;
5042 else
5043 ret = SECCAT_TDATA;
5046 /* If the target uses small data sections, select it. */
5047 else if ((*targetm.in_small_data_p) (decl))
5049 if (ret == SECCAT_BSS)
5050 ret = SECCAT_SBSS;
5051 else if (targetm.have_srodata_section && ret == SECCAT_RODATA)
5052 ret = SECCAT_SRODATA;
5053 else
5054 ret = SECCAT_SDATA;
5057 return ret;
5060 bool
5061 decl_readonly_section (decl, reloc)
5062 tree decl;
5063 int reloc;
5065 return decl_readonly_section_1 (decl, reloc, flag_pic);
5068 bool
5069 decl_readonly_section_1 (decl, reloc, shlib)
5070 tree decl;
5071 int reloc;
5072 int shlib;
5074 switch (categorize_decl_for_section (decl, reloc, shlib))
5076 case SECCAT_RODATA:
5077 case SECCAT_RODATA_MERGE_STR:
5078 case SECCAT_RODATA_MERGE_STR_INIT:
5079 case SECCAT_RODATA_MERGE_CONST:
5080 case SECCAT_SRODATA:
5081 return true;
5082 break;
5083 default:
5084 return false;
5085 break;
5089 /* Select a section based on the above categorization. */
5091 void
5092 default_elf_select_section (decl, reloc, align)
5093 tree decl;
5094 int reloc;
5095 unsigned HOST_WIDE_INT align;
5097 default_elf_select_section_1 (decl, reloc, align, flag_pic);
5100 void
5101 default_elf_select_section_1 (decl, reloc, align, shlib)
5102 tree decl;
5103 int reloc;
5104 unsigned HOST_WIDE_INT align;
5105 int shlib;
5107 switch (categorize_decl_for_section (decl, reloc, shlib))
5109 case SECCAT_TEXT:
5110 /* We're not supposed to be called on FUNCTION_DECLs. */
5111 abort ();
5112 case SECCAT_RODATA:
5113 readonly_data_section ();
5114 break;
5115 case SECCAT_RODATA_MERGE_STR:
5116 mergeable_string_section (decl, align, 0);
5117 break;
5118 case SECCAT_RODATA_MERGE_STR_INIT:
5119 mergeable_string_section (DECL_INITIAL (decl), align, 0);
5120 break;
5121 case SECCAT_RODATA_MERGE_CONST:
5122 mergeable_constant_section (DECL_MODE (decl), align, 0);
5123 break;
5124 case SECCAT_SRODATA:
5125 named_section (NULL_TREE, ".sdata2", reloc);
5126 break;
5127 case SECCAT_DATA:
5128 data_section ();
5129 break;
5130 case SECCAT_DATA_REL:
5131 named_section (NULL_TREE, ".data.rel", reloc);
5132 break;
5133 case SECCAT_DATA_REL_LOCAL:
5134 named_section (NULL_TREE, ".data.rel.local", reloc);
5135 break;
5136 case SECCAT_DATA_REL_RO:
5137 named_section (NULL_TREE, ".data.rel.ro", reloc);
5138 break;
5139 case SECCAT_DATA_REL_RO_LOCAL:
5140 named_section (NULL_TREE, ".data.rel.ro.local", reloc);
5141 break;
5142 case SECCAT_SDATA:
5143 named_section (NULL_TREE, ".sdata", reloc);
5144 break;
5145 case SECCAT_TDATA:
5146 named_section (NULL_TREE, ".tdata", reloc);
5147 break;
5148 case SECCAT_BSS:
5149 #ifdef BSS_SECTION_ASM_OP
5150 bss_section ();
5151 #else
5152 named_section (NULL_TREE, ".bss", reloc);
5153 #endif
5154 break;
5155 case SECCAT_SBSS:
5156 named_section (NULL_TREE, ".sbss", reloc);
5157 break;
5158 case SECCAT_TBSS:
5159 named_section (NULL_TREE, ".tbss", reloc);
5160 break;
5161 default:
5162 abort ();
5166 /* Construct a unique section name based on the decl name and the
5167 categorization performed above. */
5169 void
5170 default_unique_section (decl, reloc)
5171 tree decl;
5172 int reloc;
5174 default_unique_section_1 (decl, reloc, flag_pic);
5177 void
5178 default_unique_section_1 (decl, reloc, shlib)
5179 tree decl;
5180 int reloc;
5181 int shlib;
5183 bool one_only = DECL_ONE_ONLY (decl);
5184 const char *prefix, *name;
5185 size_t nlen, plen;
5186 char *string;
5188 switch (categorize_decl_for_section (decl, reloc, shlib))
5190 case SECCAT_TEXT:
5191 prefix = one_only ? ".gnu.linkonce.t." : ".text.";
5192 break;
5193 case SECCAT_RODATA:
5194 case SECCAT_RODATA_MERGE_STR:
5195 case SECCAT_RODATA_MERGE_STR_INIT:
5196 case SECCAT_RODATA_MERGE_CONST:
5197 prefix = one_only ? ".gnu.linkonce.r." : ".rodata.";
5198 break;
5199 case SECCAT_SRODATA:
5200 prefix = one_only ? ".gnu.linkonce.s2." : ".sdata2.";
5201 break;
5202 case SECCAT_DATA:
5203 case SECCAT_DATA_REL:
5204 case SECCAT_DATA_REL_LOCAL:
5205 case SECCAT_DATA_REL_RO:
5206 case SECCAT_DATA_REL_RO_LOCAL:
5207 prefix = one_only ? ".gnu.linkonce.d." : ".data.";
5208 break;
5209 case SECCAT_SDATA:
5210 prefix = one_only ? ".gnu.linkonce.s." : ".sdata.";
5211 break;
5212 case SECCAT_BSS:
5213 prefix = one_only ? ".gnu.linkonce.b." : ".bss.";
5214 break;
5215 case SECCAT_SBSS:
5216 prefix = one_only ? ".gnu.linkonce.sb." : ".sbss.";
5217 break;
5218 case SECCAT_TDATA:
5219 prefix = one_only ? ".gnu.linkonce.td." : ".tdata.";
5220 break;
5221 case SECCAT_TBSS:
5222 prefix = one_only ? ".gnu.linkonce.tb." : ".tbss.";
5223 break;
5224 default:
5225 abort ();
5227 plen = strlen (prefix);
5229 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5230 name = (* targetm.strip_name_encoding) (name);
5231 nlen = strlen (name);
5233 string = alloca (nlen + plen + 1);
5234 memcpy (string, prefix, plen);
5235 memcpy (string + plen, name, nlen + 1);
5237 DECL_SECTION_NAME (decl) = build_string (nlen + plen, string);
5240 void
5241 default_select_rtx_section (mode, x, align)
5242 enum machine_mode mode ATTRIBUTE_UNUSED;
5243 rtx x;
5244 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED;
5246 if (flag_pic)
5247 switch (GET_CODE (x))
5249 case CONST:
5250 case SYMBOL_REF:
5251 case LABEL_REF:
5252 data_section ();
5253 return;
5255 default:
5256 break;
5259 readonly_data_section ();
5262 void
5263 default_elf_select_rtx_section (mode, x, align)
5264 enum machine_mode mode;
5265 rtx x;
5266 unsigned HOST_WIDE_INT align;
5268 /* ??? Handle small data here somehow. */
5270 if (flag_pic)
5271 switch (GET_CODE (x))
5273 case CONST:
5274 case SYMBOL_REF:
5275 named_section (NULL_TREE, ".data.rel.ro", 3);
5276 return;
5278 case LABEL_REF:
5279 named_section (NULL_TREE, ".data.rel.ro.local", 1);
5280 return;
5282 default:
5283 break;
5286 mergeable_constant_section (mode, align, 0);
5289 /* By default, we do nothing for encode_section_info, so we need not
5290 do anything but discard the '*' marker. */
5292 const char *
5293 default_strip_name_encoding (str)
5294 const char *str;
5296 return str + (*str == '*');
5299 /* Assume ELF-ish defaults, since that's pretty much the most liberal
5300 wrt cross-module name binding. */
5302 bool
5303 default_binds_local_p (exp)
5304 tree exp;
5306 return default_binds_local_p_1 (exp, flag_pic);
5309 bool
5310 default_binds_local_p_1 (exp, shlib)
5311 tree exp;
5312 int shlib;
5314 bool local_p;
5316 /* A non-decl is an entry in the constant pool. */
5317 if (!DECL_P (exp))
5318 local_p = true;
5319 /* Static variables are always local. */
5320 else if (! TREE_PUBLIC (exp))
5321 local_p = true;
5322 /* A variable is local if the user tells us so. */
5323 else if (MODULE_LOCAL_P (exp))
5324 local_p = true;
5325 /* Otherwise, variables defined outside this object may not be local. */
5326 else if (DECL_EXTERNAL (exp))
5327 local_p = false;
5328 /* Linkonce and weak data are never local. */
5329 else if (DECL_ONE_ONLY (exp) || DECL_WEAK (exp))
5330 local_p = false;
5331 /* If PIC, then assume that any global name can be overridden by
5332 symbols resolved from other modules. */
5333 else if (shlib)
5334 local_p = false;
5335 /* Uninitialized COMMON variable may be unified with symbols
5336 resolved from other modules. */
5337 else if (DECL_COMMON (exp)
5338 && (DECL_INITIAL (exp) == NULL
5339 || DECL_INITIAL (exp) == error_mark_node))
5340 local_p = false;
5341 /* Otherwise we're left with initialized (or non-common) global data
5342 which is of necessity defined locally. */
5343 else
5344 local_p = true;
5346 return local_p;
5349 /* Default function to output code that will globalize a label. A
5350 target must define GLOBAL_ASM_OP or provide it's own function to
5351 globalize a label. */
5352 #ifdef GLOBAL_ASM_OP
5353 void
5354 default_globalize_label (stream, name)
5355 FILE * stream;
5356 const char *name;
5358 fputs (GLOBAL_ASM_OP, stream);
5359 assemble_name (stream, name);
5360 putc ('\n', stream);
5362 #endif /* GLOBAL_ASM_OP */
5364 #include "gt-varasm.h"