* cgraphunit.c, config/arm/arm.c, config/m68k/m68k.c,
[official-gcc.git] / gcc / varasm.c
blob48055cf65fd645fea77efe76e126cb94d4b386be
1 /* Output variables, constants and external declarations, for GNU compiler.
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to the Free
20 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
21 02110-1301, USA. */
24 /* This file handles generation of all the assembler code
25 *except* the instructions of a function.
26 This includes declarations of variables and their initial values.
28 We also output the assembler code for constants stored in memory
29 and are responsible for combining constants with the same value. */
31 #include "config.h"
32 #include "system.h"
33 #include "coretypes.h"
34 #include "tm.h"
35 #include "rtl.h"
36 #include "tree.h"
37 #include "flags.h"
38 #include "function.h"
39 #include "expr.h"
40 #include "hard-reg-set.h"
41 #include "regs.h"
42 #include "real.h"
43 #include "output.h"
44 #include "toplev.h"
45 #include "hashtab.h"
46 #include "c-pragma.h"
47 #include "ggc.h"
48 #include "langhooks.h"
49 #include "tm_p.h"
50 #include "debug.h"
51 #include "target.h"
52 #include "tree-mudflap.h"
53 #include "cgraph.h"
54 #include "cfglayout.h"
55 #include "basic-block.h"
57 #ifdef XCOFF_DEBUGGING_INFO
58 #include "xcoffout.h" /* Needed for external data
59 declarations for e.g. AIX 4.x. */
60 #endif
62 /* The (assembler) name of the first globally-visible object output. */
63 extern GTY(()) const char *first_global_object_name;
64 extern GTY(()) const char *weak_global_object_name;
66 const char *first_global_object_name;
67 const char *weak_global_object_name;
69 struct addr_const;
70 struct constant_descriptor_rtx;
71 struct rtx_constant_pool;
73 struct varasm_status GTY(())
75 /* If we're using a per-function constant pool, this is it. */
76 struct rtx_constant_pool *pool;
78 /* Number of tree-constants deferred during the expansion of this
79 function. */
80 unsigned int deferred_constants;
83 #define n_deferred_constants (cfun->varasm->deferred_constants)
85 /* Number for making the label on the next
86 constant that is stored in memory. */
88 static GTY(()) int const_labelno;
90 /* Carry information from ASM_DECLARE_OBJECT_NAME
91 to ASM_FINISH_DECLARE_OBJECT. */
93 int size_directive_output;
95 /* The last decl for which assemble_variable was called,
96 if it did ASM_DECLARE_OBJECT_NAME.
97 If the last call to assemble_variable didn't do that,
98 this holds 0. */
100 tree last_assemble_variable_decl;
102 /* The following global variable indicates if the first basic block
103 in a function belongs to the cold partition or not. */
105 bool first_function_block_is_cold;
107 /* We give all constants their own alias set. Perhaps redundant with
108 MEM_READONLY_P, but pre-dates it. */
110 static HOST_WIDE_INT const_alias_set;
112 static const char *strip_reg_name (const char *);
113 static int contains_pointers_p (tree);
114 #ifdef ASM_OUTPUT_EXTERNAL
115 static bool incorporeal_function_p (tree);
116 #endif
117 static void decode_addr_const (tree, struct addr_const *);
118 static hashval_t const_desc_hash (const void *);
119 static int const_desc_eq (const void *, const void *);
120 static hashval_t const_hash_1 (const tree);
121 static int compare_constant (const tree, const tree);
122 static tree copy_constant (tree);
123 static void output_constant_def_contents (rtx);
124 static void output_addressed_constants (tree);
125 static unsigned HOST_WIDE_INT array_size_for_constructor (tree);
126 static unsigned min_align (unsigned, unsigned);
127 static void output_constructor (tree, unsigned HOST_WIDE_INT, unsigned int);
128 static void globalize_decl (tree);
129 #ifdef BSS_SECTION_ASM_OP
130 #ifdef ASM_OUTPUT_BSS
131 static void asm_output_bss (FILE *, tree, const char *,
132 unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT);
133 #endif
134 #ifdef ASM_OUTPUT_ALIGNED_BSS
135 static void asm_output_aligned_bss (FILE *, tree, const char *,
136 unsigned HOST_WIDE_INT, int)
137 ATTRIBUTE_UNUSED;
138 #endif
139 #endif /* BSS_SECTION_ASM_OP */
140 static void mark_weak (tree);
141 static void output_constant_pool (const char *, tree);
143 /* Well-known sections, each one associated with some sort of *_ASM_OP. */
144 section *text_section;
145 section *data_section;
146 section *readonly_data_section;
147 section *sdata_section;
148 section *ctors_section;
149 section *dtors_section;
150 section *bss_section;
151 section *sbss_section;
153 /* Various forms of common section. All are guaranteed to be nonnull. */
154 section *tls_comm_section;
155 section *comm_section;
156 section *lcomm_section;
158 /* A SECTION_NOSWITCH section used for declaring global BSS variables.
159 May be null. */
160 section *bss_noswitch_section;
162 /* The section that holds the main exception table, when known. The section
163 is set either by the target's init_sections hook or by the first call to
164 switch_to_exception_section. */
165 section *exception_section;
167 /* The section that holds the DWARF2 frame unwind information, when known.
168 The section is set either by the target's init_sections hook or by the
169 first call to switch_to_eh_frame_section. */
170 section *eh_frame_section;
172 /* asm_out_file's current section. This is NULL if no section has yet
173 been selected or if we lose track of what the current section is. */
174 section *in_section;
176 /* True if code for the current function is currently being directed
177 at the cold section. */
178 bool in_cold_section_p;
180 /* A linked list of all the unnamed sections. */
181 static GTY(()) section *unnamed_sections;
183 /* Return a nonzero value if DECL has a section attribute. */
184 #ifndef IN_NAMED_SECTION
185 #define IN_NAMED_SECTION(DECL) \
186 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
187 && DECL_SECTION_NAME (DECL) != NULL_TREE)
188 #endif
190 /* Hash table of named sections. */
191 static GTY((param_is (section))) htab_t section_htab;
193 /* A table of object_blocks, indexed by section. */
194 static GTY((param_is (struct object_block))) htab_t object_block_htab;
196 /* The next number to use for internal anchor labels. */
197 static GTY(()) int anchor_labelno;
199 /* A pool of constants that can be shared between functions. */
200 static GTY(()) struct rtx_constant_pool *shared_constant_pool;
202 /* Helper routines for maintaining section_htab. */
204 static int
205 section_entry_eq (const void *p1, const void *p2)
207 const section *old = p1;
208 const char *new = p2;
210 return strcmp (old->named.name, new) == 0;
213 static hashval_t
214 section_entry_hash (const void *p)
216 const section *old = p;
217 return htab_hash_string (old->named.name);
220 /* Return a hash value for section SECT. */
222 static hashval_t
223 hash_section (section *sect)
225 if (sect->common.flags & SECTION_NAMED)
226 return htab_hash_string (sect->named.name);
227 return sect->common.flags;
230 /* Helper routines for maintaining object_block_htab. */
232 static int
233 object_block_entry_eq (const void *p1, const void *p2)
235 const struct object_block *old = p1;
236 const section *new = p2;
238 return old->sect == new;
241 static hashval_t
242 object_block_entry_hash (const void *p)
244 const struct object_block *old = p;
245 return hash_section (old->sect);
248 /* Return a new unnamed section with the given fields. */
250 section *
251 get_unnamed_section (unsigned int flags, void (*callback) (const void *),
252 const void *data)
254 section *sect;
256 sect = ggc_alloc (sizeof (struct unnamed_section));
257 sect->unnamed.common.flags = flags | SECTION_UNNAMED;
258 sect->unnamed.callback = callback;
259 sect->unnamed.data = data;
260 sect->unnamed.next = unnamed_sections;
262 unnamed_sections = sect;
263 return sect;
266 /* Return a SECTION_NOSWITCH section with the given fields. */
268 static section *
269 get_noswitch_section (unsigned int flags, noswitch_section_callback callback)
271 section *sect;
273 sect = ggc_alloc (sizeof (struct unnamed_section));
274 sect->noswitch.common.flags = flags | SECTION_NOSWITCH;
275 sect->noswitch.callback = callback;
277 return sect;
280 /* Return the named section structure associated with NAME. Create
281 a new section with the given fields if no such structure exists. */
283 section *
284 get_section (const char *name, unsigned int flags, tree decl)
286 section *sect, **slot;
288 slot = (section **)
289 htab_find_slot_with_hash (section_htab, name,
290 htab_hash_string (name), INSERT);
291 flags |= SECTION_NAMED;
292 if (*slot == NULL)
294 sect = ggc_alloc (sizeof (struct named_section));
295 sect->named.common.flags = flags;
296 sect->named.name = ggc_strdup (name);
297 sect->named.decl = decl;
298 *slot = sect;
300 else
302 sect = *slot;
303 if ((sect->common.flags & ~SECTION_DECLARED) != flags
304 && ((sect->common.flags | flags) & SECTION_OVERRIDE) == 0)
306 /* Sanity check user variables for flag changes. */
307 if (decl == 0)
308 decl = sect->named.decl;
309 gcc_assert (decl);
310 error ("%+D causes a section type conflict", decl);
313 return sect;
316 /* Return true if the current compilation mode benefits from having
317 objects grouped into blocks. */
319 static bool
320 use_object_blocks_p (void)
322 return flag_section_anchors;
325 /* Return the object_block structure for section SECT. Create a new
326 structure if we haven't created one already. Return null if SECT
327 itself is null. */
329 static struct object_block *
330 get_block_for_section (section *sect)
332 struct object_block *block;
333 void **slot;
335 if (sect == NULL)
336 return NULL;
338 slot = htab_find_slot_with_hash (object_block_htab, sect,
339 hash_section (sect), INSERT);
340 block = (struct object_block *) *slot;
341 if (block == NULL)
343 block = (struct object_block *)
344 ggc_alloc_cleared (sizeof (struct object_block));
345 block->sect = sect;
346 *slot = block;
348 return block;
351 /* Create a symbol with label LABEL and place it at byte offset
352 OFFSET in BLOCK. OFFSET can be negative if the symbol's offset
353 is not yet known. LABEL must be a garbage-collected string. */
355 static rtx
356 create_block_symbol (const char *label, struct object_block *block,
357 HOST_WIDE_INT offset)
359 rtx symbol;
360 unsigned int size;
362 /* Create the extended SYMBOL_REF. */
363 size = RTX_HDR_SIZE + sizeof (struct block_symbol);
364 symbol = ggc_alloc_zone (size, &rtl_zone);
366 /* Initialize the normal SYMBOL_REF fields. */
367 memset (symbol, 0, size);
368 PUT_CODE (symbol, SYMBOL_REF);
369 PUT_MODE (symbol, Pmode);
370 XSTR (symbol, 0) = label;
371 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_HAS_BLOCK_INFO;
373 /* Initialize the block_symbol stuff. */
374 SYMBOL_REF_BLOCK (symbol) = block;
375 SYMBOL_REF_BLOCK_OFFSET (symbol) = offset;
377 return symbol;
380 static void
381 initialize_cold_section_name (void)
383 const char *stripped_name;
384 char *name, *buffer;
385 tree dsn;
387 gcc_assert (cfun && current_function_decl);
388 if (cfun->unlikely_text_section_name)
389 return;
391 dsn = DECL_SECTION_NAME (current_function_decl);
392 if (flag_function_sections && dsn)
394 name = alloca (TREE_STRING_LENGTH (dsn) + 1);
395 memcpy (name, TREE_STRING_POINTER (dsn), TREE_STRING_LENGTH (dsn) + 1);
397 stripped_name = targetm.strip_name_encoding (name);
399 buffer = ACONCAT ((stripped_name, "_unlikely", NULL));
400 cfun->unlikely_text_section_name = ggc_strdup (buffer);
402 else
403 cfun->unlikely_text_section_name = UNLIKELY_EXECUTED_TEXT_SECTION_NAME;
406 /* Tell assembler to switch to unlikely-to-be-executed text section. */
408 section *
409 unlikely_text_section (void)
411 if (cfun)
413 if (!cfun->unlikely_text_section_name)
414 initialize_cold_section_name ();
416 return get_named_section (NULL, cfun->unlikely_text_section_name, 0);
418 else
419 return get_named_section (NULL, UNLIKELY_EXECUTED_TEXT_SECTION_NAME, 0);
422 /* When called within a function context, return true if the function
423 has been assigned a cold text section and if SECT is that section.
424 When called outside a function context, return true if SECT is the
425 default cold section. */
427 bool
428 unlikely_text_section_p (section *sect)
430 const char *name;
432 if (cfun)
433 name = cfun->unlikely_text_section_name;
434 else
435 name = UNLIKELY_EXECUTED_TEXT_SECTION_NAME;
437 return (name
438 && sect
439 && SECTION_STYLE (sect) == SECTION_NAMED
440 && strcmp (name, sect->named.name) == 0);
443 /* Return a section with a particular name and with whatever SECTION_*
444 flags section_type_flags deems appropriate. The name of the section
445 is taken from NAME if nonnull, otherwise it is taken from DECL's
446 DECL_SECTION_NAME. DECL is the decl associated with the section
447 (see the section comment for details) and RELOC is as for
448 section_type_flags. */
450 section *
451 get_named_section (tree decl, const char *name, int reloc)
453 unsigned int flags;
455 gcc_assert (!decl || DECL_P (decl));
456 if (name == NULL)
457 name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
459 flags = targetm.section_type_flags (decl, name, reloc);
461 return get_section (name, flags, decl);
464 /* If required, set DECL_SECTION_NAME to a unique name. */
466 void
467 resolve_unique_section (tree decl, int reloc ATTRIBUTE_UNUSED,
468 int flag_function_or_data_sections)
470 if (DECL_SECTION_NAME (decl) == NULL_TREE
471 && targetm.have_named_sections
472 && (flag_function_or_data_sections
473 || DECL_ONE_ONLY (decl)))
474 targetm.asm_out.unique_section (decl, reloc);
477 #ifdef BSS_SECTION_ASM_OP
479 #ifdef ASM_OUTPUT_BSS
481 /* Utility function for ASM_OUTPUT_BSS for targets to use if
482 they don't support alignments in .bss.
483 ??? It is believed that this function will work in most cases so such
484 support is localized here. */
486 static void
487 asm_output_bss (FILE *file, tree decl ATTRIBUTE_UNUSED,
488 const char *name,
489 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
490 unsigned HOST_WIDE_INT rounded)
492 gcc_assert (strcmp (XSTR (XEXP (DECL_RTL (decl), 0), 0), name) == 0);
493 targetm.asm_out.globalize_decl_name (file, decl);
494 switch_to_section (bss_section);
495 #ifdef ASM_DECLARE_OBJECT_NAME
496 last_assemble_variable_decl = decl;
497 ASM_DECLARE_OBJECT_NAME (file, name, decl);
498 #else
499 /* Standard thing is just output label for the object. */
500 ASM_OUTPUT_LABEL (file, name);
501 #endif /* ASM_DECLARE_OBJECT_NAME */
502 ASM_OUTPUT_SKIP (file, rounded ? rounded : 1);
505 #endif
507 #ifdef ASM_OUTPUT_ALIGNED_BSS
509 /* Utility function for targets to use in implementing
510 ASM_OUTPUT_ALIGNED_BSS.
511 ??? It is believed that this function will work in most cases so such
512 support is localized here. */
514 static void
515 asm_output_aligned_bss (FILE *file, tree decl ATTRIBUTE_UNUSED,
516 const char *name, unsigned HOST_WIDE_INT size,
517 int align)
519 switch_to_section (bss_section);
520 ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
521 #ifdef ASM_DECLARE_OBJECT_NAME
522 last_assemble_variable_decl = decl;
523 ASM_DECLARE_OBJECT_NAME (file, name, decl);
524 #else
525 /* Standard thing is just output label for the object. */
526 ASM_OUTPUT_LABEL (file, name);
527 #endif /* ASM_DECLARE_OBJECT_NAME */
528 ASM_OUTPUT_SKIP (file, size ? size : 1);
531 #endif
533 #endif /* BSS_SECTION_ASM_OP */
535 #ifndef USE_SELECT_SECTION_FOR_FUNCTIONS
536 /* Return the hot section for function DECL. Return text_section for
537 null DECLs. */
539 static section *
540 hot_function_section (tree decl)
542 if (decl != NULL_TREE
543 && DECL_SECTION_NAME (decl) != NULL_TREE
544 && targetm.have_named_sections)
545 return get_named_section (decl, NULL, 0);
546 else
547 return text_section;
549 #endif
551 /* Return the section for function DECL.
553 If DECL is NULL_TREE, return the text section. We can be passed
554 NULL_TREE under some circumstances by dbxout.c at least. */
556 section *
557 function_section (tree decl)
559 int reloc = 0;
561 if (first_function_block_is_cold)
562 reloc = 1;
564 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
565 if (decl != NULL_TREE
566 && DECL_SECTION_NAME (decl) != NULL_TREE)
567 return reloc ? unlikely_text_section ()
568 : get_named_section (decl, NULL, 0);
569 else
570 return targetm.asm_out.select_section (decl, reloc, DECL_ALIGN (decl));
571 #else
572 return reloc ? unlikely_text_section () : hot_function_section (decl);
573 #endif
576 section *
577 current_function_section (void)
579 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
580 if (current_function_decl != NULL_TREE
581 && DECL_SECTION_NAME (current_function_decl) != NULL_TREE)
582 return in_cold_section_p ? unlikely_text_section ()
583 : get_named_section (current_function_decl,
584 NULL, 0);
585 else
586 return targetm.asm_out.select_section (current_function_decl,
587 in_cold_section_p,
588 DECL_ALIGN (current_function_decl));
589 #else
590 return (in_cold_section_p
591 ? unlikely_text_section ()
592 : hot_function_section (current_function_decl));
593 #endif
596 /* Return the read-only data section associated with function DECL. */
598 section *
599 default_function_rodata_section (tree decl)
601 if (decl != NULL_TREE && DECL_SECTION_NAME (decl))
603 const char *name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
605 if (DECL_ONE_ONLY (decl) && HAVE_COMDAT_GROUP)
607 size_t len = strlen (name) + 3;
608 char* rname = alloca (len);
610 strcpy (rname, ".rodata");
611 strcat (rname, name + 5);
612 return get_section (rname, SECTION_LINKONCE, decl);
614 /* For .gnu.linkonce.t.foo we want to use .gnu.linkonce.r.foo. */
615 else if (DECL_ONE_ONLY (decl)
616 && strncmp (name, ".gnu.linkonce.t.", 16) == 0)
618 size_t len = strlen (name) + 1;
619 char *rname = alloca (len);
621 memcpy (rname, name, len);
622 rname[14] = 'r';
623 return get_section (rname, SECTION_LINKONCE, decl);
625 /* For .text.foo we want to use .rodata.foo. */
626 else if (flag_function_sections && flag_data_sections
627 && strncmp (name, ".text.", 6) == 0)
629 size_t len = strlen (name) + 1;
630 char *rname = alloca (len + 2);
632 memcpy (rname, ".rodata", 7);
633 memcpy (rname + 7, name + 5, len - 5);
634 return get_section (rname, 0, decl);
638 return readonly_data_section;
641 /* Return the read-only data section associated with function DECL
642 for targets where that section should be always the single
643 readonly data section. */
645 section *
646 default_no_function_rodata_section (tree decl ATTRIBUTE_UNUSED)
648 return readonly_data_section;
651 /* Return the section to use for string merging. */
653 static section *
654 mergeable_string_section (tree decl ATTRIBUTE_UNUSED,
655 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
656 unsigned int flags ATTRIBUTE_UNUSED)
658 HOST_WIDE_INT len;
660 if (HAVE_GAS_SHF_MERGE && flag_merge_constants
661 && TREE_CODE (decl) == STRING_CST
662 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
663 && align <= 256
664 && (len = int_size_in_bytes (TREE_TYPE (decl))) > 0
665 && TREE_STRING_LENGTH (decl) >= len)
667 enum machine_mode mode;
668 unsigned int modesize;
669 const char *str;
670 HOST_WIDE_INT i;
671 int j, unit;
672 char name[30];
674 mode = TYPE_MODE (TREE_TYPE (TREE_TYPE (decl)));
675 modesize = GET_MODE_BITSIZE (mode);
676 if (modesize >= 8 && modesize <= 256
677 && (modesize & (modesize - 1)) == 0)
679 if (align < modesize)
680 align = modesize;
682 str = TREE_STRING_POINTER (decl);
683 unit = GET_MODE_SIZE (mode);
685 /* Check for embedded NUL characters. */
686 for (i = 0; i < len; i += unit)
688 for (j = 0; j < unit; j++)
689 if (str[i + j] != '\0')
690 break;
691 if (j == unit)
692 break;
694 if (i == len - unit)
696 sprintf (name, ".rodata.str%d.%d", modesize / 8,
697 (int) (align / 8));
698 flags |= (modesize / 8) | SECTION_MERGE | SECTION_STRINGS;
699 return get_section (name, flags, NULL);
704 return readonly_data_section;
707 /* Return the section to use for constant merging. */
709 section *
710 mergeable_constant_section (enum machine_mode mode ATTRIBUTE_UNUSED,
711 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
712 unsigned int flags ATTRIBUTE_UNUSED)
714 unsigned int modesize = GET_MODE_BITSIZE (mode);
716 if (HAVE_GAS_SHF_MERGE && flag_merge_constants
717 && mode != VOIDmode
718 && mode != BLKmode
719 && modesize <= align
720 && align >= 8
721 && align <= 256
722 && (align & (align - 1)) == 0)
724 char name[24];
726 sprintf (name, ".rodata.cst%d", (int) (align / 8));
727 flags |= (align / 8) | SECTION_MERGE;
728 return get_section (name, flags, NULL);
730 return readonly_data_section;
733 /* Given NAME, a putative register name, discard any customary prefixes. */
735 static const char *
736 strip_reg_name (const char *name)
738 #ifdef REGISTER_PREFIX
739 if (!strncmp (name, REGISTER_PREFIX, strlen (REGISTER_PREFIX)))
740 name += strlen (REGISTER_PREFIX);
741 #endif
742 if (name[0] == '%' || name[0] == '#')
743 name++;
744 return name;
747 /* The user has asked for a DECL to have a particular name. Set (or
748 change) it in such a way that we don't prefix an underscore to
749 it. */
750 void
751 set_user_assembler_name (tree decl, const char *name)
753 char *starred = alloca (strlen (name) + 2);
754 starred[0] = '*';
755 strcpy (starred + 1, name);
756 change_decl_assembler_name (decl, get_identifier (starred));
757 SET_DECL_RTL (decl, NULL_RTX);
760 /* Decode an `asm' spec for a declaration as a register name.
761 Return the register number, or -1 if nothing specified,
762 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
763 or -3 if ASMSPEC is `cc' and is not recognized,
764 or -4 if ASMSPEC is `memory' and is not recognized.
765 Accept an exact spelling or a decimal number.
766 Prefixes such as % are optional. */
769 decode_reg_name (const char *asmspec)
771 if (asmspec != 0)
773 int i;
775 /* Get rid of confusing prefixes. */
776 asmspec = strip_reg_name (asmspec);
778 /* Allow a decimal number as a "register name". */
779 for (i = strlen (asmspec) - 1; i >= 0; i--)
780 if (! ISDIGIT (asmspec[i]))
781 break;
782 if (asmspec[0] != 0 && i < 0)
784 i = atoi (asmspec);
785 if (i < FIRST_PSEUDO_REGISTER && i >= 0)
786 return i;
787 else
788 return -2;
791 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
792 if (reg_names[i][0]
793 && ! strcmp (asmspec, strip_reg_name (reg_names[i])))
794 return i;
796 #ifdef ADDITIONAL_REGISTER_NAMES
798 static const struct { const char *const name; const int number; } table[]
799 = ADDITIONAL_REGISTER_NAMES;
801 for (i = 0; i < (int) ARRAY_SIZE (table); i++)
802 if (table[i].name[0]
803 && ! strcmp (asmspec, table[i].name))
804 return table[i].number;
806 #endif /* ADDITIONAL_REGISTER_NAMES */
808 if (!strcmp (asmspec, "memory"))
809 return -4;
811 if (!strcmp (asmspec, "cc"))
812 return -3;
814 return -2;
817 return -1;
820 /* Return true if DECL's initializer is suitable for a BSS section. */
822 static bool
823 bss_initializer_p (tree decl)
825 return (DECL_INITIAL (decl) == NULL
826 || DECL_INITIAL (decl) == error_mark_node
827 || (flag_zero_initialized_in_bss
828 /* Leave constant zeroes in .rodata so they
829 can be shared. */
830 && !TREE_READONLY (decl)
831 && initializer_zerop (DECL_INITIAL (decl))));
834 /* Compute the alignment of variable specified by DECL.
835 DONT_OUTPUT_DATA is from assemble_variable. */
837 void
838 align_variable (tree decl, bool dont_output_data)
840 unsigned int align = DECL_ALIGN (decl);
842 /* In the case for initialing an array whose length isn't specified,
843 where we have not yet been able to do the layout,
844 figure out the proper alignment now. */
845 if (dont_output_data && DECL_SIZE (decl) == 0
846 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
847 align = MAX (align, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
849 /* Some object file formats have a maximum alignment which they support.
850 In particular, a.out format supports a maximum alignment of 4. */
851 if (align > MAX_OFILE_ALIGNMENT)
853 warning (0, "alignment of %q+D is greater than maximum object "
854 "file alignment. Using %d", decl,
855 MAX_OFILE_ALIGNMENT/BITS_PER_UNIT);
856 align = MAX_OFILE_ALIGNMENT;
859 /* On some machines, it is good to increase alignment sometimes. */
860 if (! DECL_USER_ALIGN (decl))
862 #ifdef DATA_ALIGNMENT
863 align = DATA_ALIGNMENT (TREE_TYPE (decl), align);
864 #endif
865 #ifdef CONSTANT_ALIGNMENT
866 if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
867 align = CONSTANT_ALIGNMENT (DECL_INITIAL (decl), align);
868 #endif
871 /* Reset the alignment in case we have made it tighter, so we can benefit
872 from it in get_pointer_alignment. */
873 DECL_ALIGN (decl) = align;
876 /* Return the section into which the given VAR_DECL or CONST_DECL
877 should be placed. PREFER_NOSWITCH_P is true if a noswitch
878 section should be used wherever possible. */
880 static section *
881 get_variable_section (tree decl, bool prefer_noswitch_p)
883 int reloc;
885 /* If the decl has been given an explicit section name, then it
886 isn't common, and shouldn't be handled as such. */
887 if (DECL_COMMON (decl) && DECL_SECTION_NAME (decl) == NULL)
889 if (DECL_THREAD_LOCAL_P (decl))
890 return tls_comm_section;
891 if (TREE_PUBLIC (decl) && bss_initializer_p (decl))
892 return comm_section;
895 if (DECL_INITIAL (decl) == error_mark_node)
896 reloc = contains_pointers_p (TREE_TYPE (decl)) ? 3 : 0;
897 else if (DECL_INITIAL (decl))
898 reloc = compute_reloc_for_constant (DECL_INITIAL (decl));
899 else
900 reloc = 0;
902 resolve_unique_section (decl, reloc, flag_data_sections);
903 if (IN_NAMED_SECTION (decl))
904 return get_named_section (decl, NULL, reloc);
906 if (!DECL_THREAD_LOCAL_P (decl)
907 && !(prefer_noswitch_p && targetm.have_switchable_bss_sections)
908 && bss_initializer_p (decl))
910 if (!TREE_PUBLIC (decl))
911 return lcomm_section;
912 if (bss_noswitch_section)
913 return bss_noswitch_section;
916 return targetm.asm_out.select_section (decl, reloc, DECL_ALIGN (decl));
919 /* Return the block into which object_block DECL should be placed. */
921 static struct object_block *
922 get_block_for_decl (tree decl)
924 section *sect;
926 if (TREE_CODE (decl) == VAR_DECL)
928 /* The object must be defined in this translation unit. */
929 if (DECL_EXTERNAL (decl))
930 return NULL;
932 /* There's no point using object blocks for something that is
933 isolated by definition. */
934 if (DECL_ONE_ONLY (decl))
935 return NULL;
938 /* We can only calculate block offsets if the decl has a known
939 constant size. */
940 if (DECL_SIZE_UNIT (decl) == NULL)
941 return NULL;
942 if (!host_integerp (DECL_SIZE_UNIT (decl), 1))
943 return NULL;
945 /* Find out which section should contain DECL. We cannot put it into
946 an object block if it requires a standalone definition. */
947 if (TREE_CODE (decl) == VAR_DECL)
948 align_variable (decl, 0);
949 sect = get_variable_section (decl, true);
950 if (SECTION_STYLE (sect) == SECTION_NOSWITCH)
951 return NULL;
953 return get_block_for_section (sect);
956 /* Make sure block symbol SYMBOL is in block BLOCK. */
958 static void
959 change_symbol_block (rtx symbol, struct object_block *block)
961 if (block != SYMBOL_REF_BLOCK (symbol))
963 gcc_assert (SYMBOL_REF_BLOCK_OFFSET (symbol) < 0);
964 SYMBOL_REF_BLOCK (symbol) = block;
968 /* Return true if it is possible to put DECL in an object_block. */
970 static bool
971 use_blocks_for_decl_p (tree decl)
973 /* Only data DECLs can be placed into object blocks. */
974 if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != CONST_DECL)
975 return false;
977 /* Detect decls created by dw2_force_const_mem. Such decls are
978 special because DECL_INITIAL doesn't specify the decl's true value.
979 dw2_output_indirect_constants will instead call assemble_variable
980 with dont_output_data set to 1 and then print the contents itself. */
981 if (DECL_INITIAL (decl) == decl)
982 return false;
984 return true;
987 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
988 have static storage duration. In other words, it should not be an
989 automatic variable, including PARM_DECLs.
991 There is, however, one exception: this function handles variables
992 explicitly placed in a particular register by the user.
994 This is never called for PARM_DECL nodes. */
996 void
997 make_decl_rtl (tree decl)
999 const char *name = 0;
1000 int reg_number;
1001 rtx x;
1003 /* Check that we are not being given an automatic variable. */
1004 gcc_assert (TREE_CODE (decl) != PARM_DECL
1005 && TREE_CODE (decl) != RESULT_DECL);
1007 /* A weak alias has TREE_PUBLIC set but not the other bits. */
1008 gcc_assert (TREE_CODE (decl) != VAR_DECL
1009 || TREE_STATIC (decl)
1010 || TREE_PUBLIC (decl)
1011 || DECL_EXTERNAL (decl)
1012 || DECL_REGISTER (decl));
1014 /* And that we were not given a type or a label. */
1015 gcc_assert (TREE_CODE (decl) != TYPE_DECL
1016 && TREE_CODE (decl) != LABEL_DECL);
1018 /* For a duplicate declaration, we can be called twice on the
1019 same DECL node. Don't discard the RTL already made. */
1020 if (DECL_RTL_SET_P (decl))
1022 /* If the old RTL had the wrong mode, fix the mode. */
1023 x = DECL_RTL (decl);
1024 if (GET_MODE (x) != DECL_MODE (decl))
1025 SET_DECL_RTL (decl, adjust_address_nv (x, DECL_MODE (decl), 0));
1027 if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
1028 return;
1030 /* ??? Another way to do this would be to maintain a hashed
1031 table of such critters. Instead of adding stuff to a DECL
1032 to give certain attributes to it, we could use an external
1033 hash map from DECL to set of attributes. */
1035 /* Let the target reassign the RTL if it wants.
1036 This is necessary, for example, when one machine specific
1037 decl attribute overrides another. */
1038 targetm.encode_section_info (decl, DECL_RTL (decl), false);
1040 /* If the symbol has a SYMBOL_REF_BLOCK field, update it based
1041 on the new decl information. */
1042 if (MEM_P (x)
1043 && GET_CODE (XEXP (x, 0)) == SYMBOL_REF
1044 && SYMBOL_REF_HAS_BLOCK_INFO_P (XEXP (x, 0)))
1045 change_symbol_block (XEXP (x, 0), get_block_for_decl (decl));
1047 /* Make this function static known to the mudflap runtime. */
1048 if (flag_mudflap && TREE_CODE (decl) == VAR_DECL)
1049 mudflap_enqueue_decl (decl);
1051 return;
1054 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
1056 if (name[0] != '*' && TREE_CODE (decl) != FUNCTION_DECL
1057 && DECL_REGISTER (decl))
1059 error ("register name not specified for %q+D", decl);
1061 else if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
1063 const char *asmspec = name+1;
1064 reg_number = decode_reg_name (asmspec);
1065 /* First detect errors in declaring global registers. */
1066 if (reg_number == -1)
1067 error ("register name not specified for %q+D", decl);
1068 else if (reg_number < 0)
1069 error ("invalid register name for %q+D", decl);
1070 else if (TYPE_MODE (TREE_TYPE (decl)) == BLKmode)
1071 error ("data type of %q+D isn%'t suitable for a register",
1072 decl);
1073 else if (! HARD_REGNO_MODE_OK (reg_number, TYPE_MODE (TREE_TYPE (decl))))
1074 error ("register specified for %q+D isn%'t suitable for data type",
1075 decl);
1076 /* Now handle properly declared static register variables. */
1077 else
1079 int nregs;
1081 if (DECL_INITIAL (decl) != 0 && TREE_STATIC (decl))
1083 DECL_INITIAL (decl) = 0;
1084 error ("global register variable has initial value");
1086 if (TREE_THIS_VOLATILE (decl))
1087 warning (OPT_Wvolatile_register_var,
1088 "optimization may eliminate reads and/or "
1089 "writes to register variables");
1091 /* If the user specified one of the eliminables registers here,
1092 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
1093 confused with that register and be eliminated. This usage is
1094 somewhat suspect... */
1096 SET_DECL_RTL (decl, gen_rtx_raw_REG (DECL_MODE (decl), reg_number));
1097 ORIGINAL_REGNO (DECL_RTL (decl)) = reg_number;
1098 REG_USERVAR_P (DECL_RTL (decl)) = 1;
1100 if (TREE_STATIC (decl))
1102 /* Make this register global, so not usable for anything
1103 else. */
1104 #ifdef ASM_DECLARE_REGISTER_GLOBAL
1105 name = IDENTIFIER_POINTER (DECL_NAME (decl));
1106 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file, decl, reg_number, name);
1107 #endif
1108 nregs = hard_regno_nregs[reg_number][DECL_MODE (decl)];
1109 while (nregs > 0)
1110 globalize_reg (reg_number + --nregs);
1113 /* As a register variable, it has no section. */
1114 return;
1117 /* Now handle ordinary static variables and functions (in memory).
1118 Also handle vars declared register invalidly. */
1119 else if (name[0] == '*')
1121 #ifdef REGISTER_PREFIX
1122 if (strlen (REGISTER_PREFIX) != 0)
1124 reg_number = decode_reg_name (name);
1125 if (reg_number >= 0 || reg_number == -3)
1126 error ("register name given for non-register variable %q+D", decl);
1128 #endif
1131 /* Specifying a section attribute on a variable forces it into a
1132 non-.bss section, and thus it cannot be common. */
1133 if (TREE_CODE (decl) == VAR_DECL
1134 && DECL_SECTION_NAME (decl) != NULL_TREE
1135 && DECL_INITIAL (decl) == NULL_TREE
1136 && DECL_COMMON (decl))
1137 DECL_COMMON (decl) = 0;
1139 /* Variables can't be both common and weak. */
1140 if (TREE_CODE (decl) == VAR_DECL && DECL_WEAK (decl))
1141 DECL_COMMON (decl) = 0;
1143 if (use_object_blocks_p () && use_blocks_for_decl_p (decl))
1144 x = create_block_symbol (name, get_block_for_decl (decl), -1);
1145 else
1146 x = gen_rtx_SYMBOL_REF (Pmode, name);
1147 SYMBOL_REF_WEAK (x) = DECL_WEAK (decl);
1148 SET_SYMBOL_REF_DECL (x, decl);
1150 x = gen_rtx_MEM (DECL_MODE (decl), x);
1151 if (TREE_CODE (decl) != FUNCTION_DECL)
1152 set_mem_attributes (x, decl, 1);
1153 SET_DECL_RTL (decl, x);
1155 /* Optionally set flags or add text to the name to record information
1156 such as that it is a function name.
1157 If the name is changed, the macro ASM_OUTPUT_LABELREF
1158 will have to know how to strip this information. */
1159 targetm.encode_section_info (decl, DECL_RTL (decl), true);
1161 /* Make this function static known to the mudflap runtime. */
1162 if (flag_mudflap && TREE_CODE (decl) == VAR_DECL)
1163 mudflap_enqueue_decl (decl);
1166 /* Make the rtl for variable VAR be volatile.
1167 Use this only for static variables. */
1169 void
1170 make_var_volatile (tree var)
1172 gcc_assert (MEM_P (DECL_RTL (var)));
1174 MEM_VOLATILE_P (DECL_RTL (var)) = 1;
1177 /* Output a string of literal assembler code
1178 for an `asm' keyword used between functions. */
1180 void
1181 assemble_asm (tree string)
1183 app_enable ();
1185 if (TREE_CODE (string) == ADDR_EXPR)
1186 string = TREE_OPERAND (string, 0);
1188 fprintf (asm_out_file, "\t%s\n", TREE_STRING_POINTER (string));
1191 /* Record an element in the table of global destructors. SYMBOL is
1192 a SYMBOL_REF of the function to be called; PRIORITY is a number
1193 between 0 and MAX_INIT_PRIORITY. */
1195 void
1196 default_stabs_asm_out_destructor (rtx symbol ATTRIBUTE_UNUSED,
1197 int priority ATTRIBUTE_UNUSED)
1199 #if defined DBX_DEBUGGING_INFO || defined XCOFF_DEBUGGING_INFO
1200 /* Tell GNU LD that this is part of the static destructor set.
1201 This will work for any system that uses stabs, most usefully
1202 aout systems. */
1203 dbxout_begin_simple_stabs ("___DTOR_LIST__", 22 /* N_SETT */);
1204 dbxout_stab_value_label (XSTR (symbol, 0));
1205 #else
1206 sorry ("global destructors not supported on this target");
1207 #endif
1210 void
1211 default_named_section_asm_out_destructor (rtx symbol, int priority)
1213 const char *section = ".dtors";
1214 char buf[16];
1216 /* ??? This only works reliably with the GNU linker. */
1217 if (priority != DEFAULT_INIT_PRIORITY)
1219 sprintf (buf, ".dtors.%.5u",
1220 /* Invert the numbering so the linker puts us in the proper
1221 order; constructors are run from right to left, and the
1222 linker sorts in increasing order. */
1223 MAX_INIT_PRIORITY - priority);
1224 section = buf;
1227 switch_to_section (get_section (section, SECTION_WRITE, NULL));
1228 assemble_align (POINTER_SIZE);
1229 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1232 #ifdef DTORS_SECTION_ASM_OP
1233 void
1234 default_dtor_section_asm_out_destructor (rtx symbol,
1235 int priority ATTRIBUTE_UNUSED)
1237 switch_to_section (dtors_section);
1238 assemble_align (POINTER_SIZE);
1239 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1241 #endif
1243 /* Likewise for global constructors. */
1245 void
1246 default_stabs_asm_out_constructor (rtx symbol ATTRIBUTE_UNUSED,
1247 int priority ATTRIBUTE_UNUSED)
1249 #if defined DBX_DEBUGGING_INFO || defined XCOFF_DEBUGGING_INFO
1250 /* Tell GNU LD that this is part of the static destructor set.
1251 This will work for any system that uses stabs, most usefully
1252 aout systems. */
1253 dbxout_begin_simple_stabs ("___CTOR_LIST__", 22 /* N_SETT */);
1254 dbxout_stab_value_label (XSTR (symbol, 0));
1255 #else
1256 sorry ("global constructors not supported on this target");
1257 #endif
1260 void
1261 default_named_section_asm_out_constructor (rtx symbol, int priority)
1263 const char *section = ".ctors";
1264 char buf[16];
1266 /* ??? This only works reliably with the GNU linker. */
1267 if (priority != DEFAULT_INIT_PRIORITY)
1269 sprintf (buf, ".ctors.%.5u",
1270 /* Invert the numbering so the linker puts us in the proper
1271 order; constructors are run from right to left, and the
1272 linker sorts in increasing order. */
1273 MAX_INIT_PRIORITY - priority);
1274 section = buf;
1277 switch_to_section (get_section (section, SECTION_WRITE, NULL));
1278 assemble_align (POINTER_SIZE);
1279 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1282 #ifdef CTORS_SECTION_ASM_OP
1283 void
1284 default_ctor_section_asm_out_constructor (rtx symbol,
1285 int priority ATTRIBUTE_UNUSED)
1287 switch_to_section (ctors_section);
1288 assemble_align (POINTER_SIZE);
1289 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1291 #endif
1293 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1294 a nonzero value if the constant pool should be output before the
1295 start of the function, or a zero value if the pool should output
1296 after the end of the function. The default is to put it before the
1297 start. */
1299 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1300 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1301 #endif
1303 /* DECL is an object (either VAR_DECL or FUNCTION_DECL) which is going
1304 to be output to assembler.
1305 Set first_global_object_name and weak_global_object_name as appropriate. */
1307 void
1308 notice_global_symbol (tree decl)
1310 const char **type = &first_global_object_name;
1312 if (first_global_object_name
1313 || !TREE_PUBLIC (decl)
1314 || DECL_EXTERNAL (decl)
1315 || !DECL_NAME (decl)
1316 || (TREE_CODE (decl) != FUNCTION_DECL
1317 && (TREE_CODE (decl) != VAR_DECL
1318 || (DECL_COMMON (decl)
1319 && (DECL_INITIAL (decl) == 0
1320 || DECL_INITIAL (decl) == error_mark_node))))
1321 || !MEM_P (DECL_RTL (decl)))
1322 return;
1324 /* We win when global object is found, but it is useful to know about weak
1325 symbol as well so we can produce nicer unique names. */
1326 if (DECL_WEAK (decl) || DECL_ONE_ONLY (decl))
1327 type = &weak_global_object_name;
1329 if (!*type)
1331 const char *p;
1332 const char *name;
1333 rtx decl_rtl = DECL_RTL (decl);
1335 p = targetm.strip_name_encoding (XSTR (XEXP (decl_rtl, 0), 0));
1336 name = ggc_strdup (p);
1338 *type = name;
1342 /* Output assembler code for the constant pool of a function and associated
1343 with defining the name of the function. DECL describes the function.
1344 NAME is the function's name. For the constant pool, we use the current
1345 constant pool data. */
1347 void
1348 assemble_start_function (tree decl, const char *fnname)
1350 int align;
1351 char tmp_label[100];
1352 bool hot_label_written = false;
1354 cfun->unlikely_text_section_name = NULL;
1356 first_function_block_is_cold = false;
1357 if (flag_reorder_blocks_and_partition)
1359 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LHOTB", const_labelno);
1360 cfun->hot_section_label = ggc_strdup (tmp_label);
1361 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LCOLDB", const_labelno);
1362 cfun->cold_section_label = ggc_strdup (tmp_label);
1363 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LHOTE", const_labelno);
1364 cfun->hot_section_end_label = ggc_strdup (tmp_label);
1365 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LCOLDE", const_labelno);
1366 cfun->cold_section_end_label = ggc_strdup (tmp_label);
1367 const_labelno++;
1369 else
1371 cfun->hot_section_label = NULL;
1372 cfun->cold_section_label = NULL;
1373 cfun->hot_section_end_label = NULL;
1374 cfun->cold_section_end_label = NULL;
1377 /* The following code does not need preprocessing in the assembler. */
1379 app_disable ();
1381 if (CONSTANT_POOL_BEFORE_FUNCTION)
1382 output_constant_pool (fnname, decl);
1384 resolve_unique_section (decl, 0, flag_function_sections);
1386 /* Make sure the not and cold text (code) sections are properly
1387 aligned. This is necessary here in the case where the function
1388 has both hot and cold sections, because we don't want to re-set
1389 the alignment when the section switch happens mid-function. */
1391 if (flag_reorder_blocks_and_partition)
1393 switch_to_section (unlikely_text_section ());
1394 assemble_align (FUNCTION_BOUNDARY);
1395 ASM_OUTPUT_LABEL (asm_out_file, cfun->cold_section_label);
1397 /* When the function starts with a cold section, we need to explicitly
1398 align the hot section and write out the hot section label.
1399 But if the current function is a thunk, we do not have a CFG. */
1400 if (!current_function_is_thunk
1401 && BB_PARTITION (ENTRY_BLOCK_PTR->next_bb) == BB_COLD_PARTITION)
1403 switch_to_section (text_section);
1404 assemble_align (FUNCTION_BOUNDARY);
1405 ASM_OUTPUT_LABEL (asm_out_file, cfun->hot_section_label);
1406 hot_label_written = true;
1407 first_function_block_is_cold = true;
1410 else if (DECL_SECTION_NAME (decl))
1412 /* Calls to function_section rely on first_function_block_is_cold
1413 being accurate. The first block may be cold even if we aren't
1414 doing partitioning, if the entire function was decided by
1415 choose_function_section (predict.c) to be cold. */
1417 initialize_cold_section_name ();
1419 if (cfun->unlikely_text_section_name
1420 && strcmp (TREE_STRING_POINTER (DECL_SECTION_NAME (decl)),
1421 cfun->unlikely_text_section_name) == 0)
1422 first_function_block_is_cold = true;
1425 in_cold_section_p = first_function_block_is_cold;
1427 /* Switch to the correct text section for the start of the function. */
1429 switch_to_section (function_section (decl));
1430 if (flag_reorder_blocks_and_partition
1431 && !hot_label_written)
1432 ASM_OUTPUT_LABEL (asm_out_file, cfun->hot_section_label);
1434 /* Tell assembler to move to target machine's alignment for functions. */
1435 align = floor_log2 (FUNCTION_BOUNDARY / BITS_PER_UNIT);
1436 if (align < force_align_functions_log)
1437 align = force_align_functions_log;
1438 if (align > 0)
1440 ASM_OUTPUT_ALIGN (asm_out_file, align);
1443 /* Handle a user-specified function alignment.
1444 Note that we still need to align to FUNCTION_BOUNDARY, as above,
1445 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1446 if (align_functions_log > align
1447 && cfun->function_frequency != FUNCTION_FREQUENCY_UNLIKELY_EXECUTED)
1449 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1450 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file,
1451 align_functions_log, align_functions - 1);
1452 #else
1453 ASM_OUTPUT_ALIGN (asm_out_file, align_functions_log);
1454 #endif
1457 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1458 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file, fnname);
1459 #endif
1461 (*debug_hooks->begin_function) (decl);
1463 /* Make function name accessible from other files, if appropriate. */
1465 if (TREE_PUBLIC (decl))
1467 notice_global_symbol (decl);
1469 globalize_decl (decl);
1471 maybe_assemble_visibility (decl);
1474 if (DECL_PRESERVE_P (decl))
1475 targetm.asm_out.mark_decl_preserved (fnname);
1477 /* Do any machine/system dependent processing of the function name. */
1478 #ifdef ASM_DECLARE_FUNCTION_NAME
1479 ASM_DECLARE_FUNCTION_NAME (asm_out_file, fnname, current_function_decl);
1480 #else
1481 /* Standard thing is just output label for the function. */
1482 ASM_OUTPUT_LABEL (asm_out_file, fnname);
1483 #endif /* ASM_DECLARE_FUNCTION_NAME */
1486 /* Output assembler code associated with defining the size of the
1487 function. DECL describes the function. NAME is the function's name. */
1489 void
1490 assemble_end_function (tree decl, const char *fnname ATTRIBUTE_UNUSED)
1492 #ifdef ASM_DECLARE_FUNCTION_SIZE
1493 /* We could have switched section in the middle of the function. */
1494 if (flag_reorder_blocks_and_partition)
1495 switch_to_section (function_section (decl));
1496 ASM_DECLARE_FUNCTION_SIZE (asm_out_file, fnname, decl);
1497 #endif
1498 if (! CONSTANT_POOL_BEFORE_FUNCTION)
1500 output_constant_pool (fnname, decl);
1501 switch_to_section (function_section (decl)); /* need to switch back */
1503 /* Output labels for end of hot/cold text sections (to be used by
1504 debug info.) */
1505 if (flag_reorder_blocks_and_partition)
1507 section *save_text_section;
1509 save_text_section = in_section;
1510 switch_to_section (unlikely_text_section ());
1511 ASM_OUTPUT_LABEL (asm_out_file, cfun->cold_section_end_label);
1512 if (first_function_block_is_cold)
1513 switch_to_section (text_section);
1514 else
1515 switch_to_section (function_section (decl));
1516 ASM_OUTPUT_LABEL (asm_out_file, cfun->hot_section_end_label);
1517 switch_to_section (save_text_section);
1521 /* Assemble code to leave SIZE bytes of zeros. */
1523 void
1524 assemble_zeros (unsigned HOST_WIDE_INT size)
1526 /* Do no output if -fsyntax-only. */
1527 if (flag_syntax_only)
1528 return;
1530 #ifdef ASM_NO_SKIP_IN_TEXT
1531 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1532 so we must output 0s explicitly in the text section. */
1533 if (ASM_NO_SKIP_IN_TEXT && (in_section->common.flags & SECTION_CODE) != 0)
1535 unsigned HOST_WIDE_INT i;
1536 for (i = 0; i < size; i++)
1537 assemble_integer (const0_rtx, 1, BITS_PER_UNIT, 1);
1539 else
1540 #endif
1541 if (size > 0)
1542 ASM_OUTPUT_SKIP (asm_out_file, size);
1545 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1547 void
1548 assemble_align (int align)
1550 if (align > BITS_PER_UNIT)
1552 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
1556 /* Assemble a string constant with the specified C string as contents. */
1558 void
1559 assemble_string (const char *p, int size)
1561 int pos = 0;
1562 int maximum = 2000;
1564 /* If the string is very long, split it up. */
1566 while (pos < size)
1568 int thissize = size - pos;
1569 if (thissize > maximum)
1570 thissize = maximum;
1572 ASM_OUTPUT_ASCII (asm_out_file, p, thissize);
1574 pos += thissize;
1575 p += thissize;
1580 /* A noswitch_section_callback for lcomm_section. */
1582 static bool
1583 emit_local (tree decl ATTRIBUTE_UNUSED,
1584 const char *name ATTRIBUTE_UNUSED,
1585 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1586 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1588 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1589 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name,
1590 size, DECL_ALIGN (decl));
1591 return true;
1592 #elif defined ASM_OUTPUT_ALIGNED_LOCAL
1593 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, DECL_ALIGN (decl));
1594 return true;
1595 #else
1596 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
1597 return false;
1598 #endif
1601 /* A noswitch_section_callback for bss_noswitch_section. */
1603 #if defined ASM_OUTPUT_ALIGNED_BSS || defined ASM_OUTPUT_BSS
1604 static bool
1605 emit_bss (tree decl ATTRIBUTE_UNUSED,
1606 const char *name ATTRIBUTE_UNUSED,
1607 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1608 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1610 #if defined ASM_OUTPUT_ALIGNED_BSS
1611 ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size, DECL_ALIGN (decl));
1612 return true;
1613 #else
1614 ASM_OUTPUT_BSS (asm_out_file, decl, name, size, rounded);
1615 return false;
1616 #endif
1618 #endif
1620 /* A noswitch_section_callback for comm_section. */
1622 static bool
1623 emit_common (tree decl ATTRIBUTE_UNUSED,
1624 const char *name ATTRIBUTE_UNUSED,
1625 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1626 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1628 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1629 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name,
1630 size, DECL_ALIGN (decl));
1631 return true;
1632 #elif defined ASM_OUTPUT_ALIGNED_COMMON
1633 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size, DECL_ALIGN (decl));
1634 return true;
1635 #else
1636 ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded);
1637 return false;
1638 #endif
1641 /* A noswitch_section_callback for tls_comm_section. */
1643 static bool
1644 emit_tls_common (tree decl ATTRIBUTE_UNUSED,
1645 const char *name ATTRIBUTE_UNUSED,
1646 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1647 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1649 #ifdef ASM_OUTPUT_TLS_COMMON
1650 ASM_OUTPUT_TLS_COMMON (asm_out_file, decl, name, size);
1651 return true;
1652 #else
1653 sorry ("thread-local COMMON data not implemented");
1654 return true;
1655 #endif
1658 /* Assemble DECL given that it belongs in SECTION_NOSWITCH section SECT.
1659 NAME is the name of DECL's SYMBOL_REF. */
1661 static void
1662 assemble_noswitch_variable (tree decl, const char *name, section *sect)
1664 unsigned HOST_WIDE_INT size, rounded;
1666 size = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
1667 rounded = size;
1669 /* Don't allocate zero bytes of common,
1670 since that means "undefined external" in the linker. */
1671 if (size == 0)
1672 rounded = 1;
1674 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1675 so that each uninitialized object starts on such a boundary. */
1676 rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
1677 rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1678 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1680 if (!sect->noswitch.callback (decl, name, size, rounded)
1681 && (unsigned HOST_WIDE_INT) DECL_ALIGN_UNIT (decl) > rounded)
1682 warning (0, "requested alignment for %q+D is greater than "
1683 "implemented alignment of %wu", decl, rounded);
1686 /* A subroutine of assemble_variable. Output the label and contents of
1687 DECL, whose address is a SYMBOL_REF with name NAME. DONT_OUTPUT_DATA
1688 is as for assemble_variable. */
1690 static void
1691 assemble_variable_contents (tree decl, const char *name,
1692 bool dont_output_data)
1694 /* Do any machine/system dependent processing of the object. */
1695 #ifdef ASM_DECLARE_OBJECT_NAME
1696 last_assemble_variable_decl = decl;
1697 ASM_DECLARE_OBJECT_NAME (asm_out_file, name, decl);
1698 #else
1699 /* Standard thing is just output label for the object. */
1700 ASM_OUTPUT_LABEL (asm_out_file, name);
1701 #endif /* ASM_DECLARE_OBJECT_NAME */
1703 if (!dont_output_data)
1705 if (DECL_INITIAL (decl)
1706 && DECL_INITIAL (decl) != error_mark_node
1707 && !initializer_zerop (DECL_INITIAL (decl)))
1708 /* Output the actual data. */
1709 output_constant (DECL_INITIAL (decl),
1710 tree_low_cst (DECL_SIZE_UNIT (decl), 1),
1711 DECL_ALIGN (decl));
1712 else
1713 /* Leave space for it. */
1714 assemble_zeros (tree_low_cst (DECL_SIZE_UNIT (decl), 1));
1718 /* Assemble everything that is needed for a variable or function declaration.
1719 Not used for automatic variables, and not used for function definitions.
1720 Should not be called for variables of incomplete structure type.
1722 TOP_LEVEL is nonzero if this variable has file scope.
1723 AT_END is nonzero if this is the special handling, at end of compilation,
1724 to define things that have had only tentative definitions.
1725 DONT_OUTPUT_DATA if nonzero means don't actually output the
1726 initial value (that will be done by the caller). */
1728 void
1729 assemble_variable (tree decl, int top_level ATTRIBUTE_UNUSED,
1730 int at_end ATTRIBUTE_UNUSED, int dont_output_data)
1732 const char *name;
1733 rtx decl_rtl, symbol;
1734 section *sect;
1736 if (lang_hooks.decls.prepare_assemble_variable)
1737 lang_hooks.decls.prepare_assemble_variable (decl);
1739 last_assemble_variable_decl = 0;
1741 /* Normally no need to say anything here for external references,
1742 since assemble_external is called by the language-specific code
1743 when a declaration is first seen. */
1745 if (DECL_EXTERNAL (decl))
1746 return;
1748 /* Output no assembler code for a function declaration.
1749 Only definitions of functions output anything. */
1751 if (TREE_CODE (decl) == FUNCTION_DECL)
1752 return;
1754 /* Do nothing for global register variables. */
1755 if (DECL_RTL_SET_P (decl) && REG_P (DECL_RTL (decl)))
1757 TREE_ASM_WRITTEN (decl) = 1;
1758 return;
1761 /* If type was incomplete when the variable was declared,
1762 see if it is complete now. */
1764 if (DECL_SIZE (decl) == 0)
1765 layout_decl (decl, 0);
1767 /* Still incomplete => don't allocate it; treat the tentative defn
1768 (which is what it must have been) as an `extern' reference. */
1770 if (!dont_output_data && DECL_SIZE (decl) == 0)
1772 error ("storage size of %q+D isn%'t known", decl);
1773 TREE_ASM_WRITTEN (decl) = 1;
1774 return;
1777 /* The first declaration of a variable that comes through this function
1778 decides whether it is global (in C, has external linkage)
1779 or local (in C, has internal linkage). So do nothing more
1780 if this function has already run. */
1782 if (TREE_ASM_WRITTEN (decl))
1783 return;
1785 /* Make sure targetm.encode_section_info is invoked before we set
1786 ASM_WRITTEN. */
1787 decl_rtl = DECL_RTL (decl);
1789 TREE_ASM_WRITTEN (decl) = 1;
1791 /* Do no output if -fsyntax-only. */
1792 if (flag_syntax_only)
1793 return;
1795 app_disable ();
1797 if (! dont_output_data
1798 && ! host_integerp (DECL_SIZE_UNIT (decl), 1))
1800 error ("size of variable %q+D is too large", decl);
1801 return;
1804 gcc_assert (MEM_P (decl_rtl));
1805 gcc_assert (GET_CODE (XEXP (decl_rtl, 0)) == SYMBOL_REF);
1806 symbol = XEXP (decl_rtl, 0);
1807 name = XSTR (symbol, 0);
1808 if (TREE_PUBLIC (decl) && DECL_NAME (decl))
1809 notice_global_symbol (decl);
1811 /* Compute the alignment of this data. */
1813 align_variable (decl, dont_output_data);
1814 set_mem_align (decl_rtl, DECL_ALIGN (decl));
1816 if (TREE_PUBLIC (decl))
1817 maybe_assemble_visibility (decl);
1819 if (DECL_PRESERVE_P (decl))
1820 targetm.asm_out.mark_decl_preserved (name);
1822 /* First make the assembler name(s) global if appropriate. */
1823 sect = get_variable_section (decl, false);
1824 if (TREE_PUBLIC (decl)
1825 && DECL_NAME (decl)
1826 && (sect->common.flags & SECTION_COMMON) == 0)
1827 globalize_decl (decl);
1829 /* Output any data that we will need to use the address of. */
1830 if (DECL_INITIAL (decl) && DECL_INITIAL (decl) != error_mark_node)
1831 output_addressed_constants (DECL_INITIAL (decl));
1833 /* dbxout.c needs to know this. */
1834 if (sect && (sect->common.flags & SECTION_CODE) != 0)
1835 DECL_IN_TEXT_SECTION (decl) = 1;
1837 /* If the decl is part of an object_block, make sure that the decl
1838 has been positioned within its block, but do not write out its
1839 definition yet. output_object_blocks will do that later. */
1840 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol) && SYMBOL_REF_BLOCK (symbol))
1842 gcc_assert (!dont_output_data);
1843 place_block_symbol (symbol);
1845 else if (SECTION_STYLE (sect) == SECTION_NOSWITCH)
1846 assemble_noswitch_variable (decl, name, sect);
1847 else
1849 switch_to_section (sect);
1850 if (DECL_ALIGN (decl) > BITS_PER_UNIT)
1851 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (DECL_ALIGN_UNIT (decl)));
1852 assemble_variable_contents (decl, name, dont_output_data);
1856 /* Return 1 if type TYPE contains any pointers. */
1858 static int
1859 contains_pointers_p (tree type)
1861 switch (TREE_CODE (type))
1863 case POINTER_TYPE:
1864 case REFERENCE_TYPE:
1865 /* I'm not sure whether OFFSET_TYPE needs this treatment,
1866 so I'll play safe and return 1. */
1867 case OFFSET_TYPE:
1868 return 1;
1870 case RECORD_TYPE:
1871 case UNION_TYPE:
1872 case QUAL_UNION_TYPE:
1874 tree fields;
1875 /* For a type that has fields, see if the fields have pointers. */
1876 for (fields = TYPE_FIELDS (type); fields; fields = TREE_CHAIN (fields))
1877 if (TREE_CODE (fields) == FIELD_DECL
1878 && contains_pointers_p (TREE_TYPE (fields)))
1879 return 1;
1880 return 0;
1883 case ARRAY_TYPE:
1884 /* An array type contains pointers if its element type does. */
1885 return contains_pointers_p (TREE_TYPE (type));
1887 default:
1888 return 0;
1892 /* In unit-at-a-time mode, we delay assemble_external processing until
1893 the compilation unit is finalized. This is the best we can do for
1894 right now (i.e. stage 3 of GCC 4.0) - the right thing is to delay
1895 it all the way to final. See PR 17982 for further discussion. */
1896 static GTY(()) tree pending_assemble_externals;
1898 #ifdef ASM_OUTPUT_EXTERNAL
1899 /* True if DECL is a function decl for which no out-of-line copy exists.
1900 It is assumed that DECL's assembler name has been set. */
1902 static bool
1903 incorporeal_function_p (tree decl)
1905 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
1907 const char *name;
1909 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
1910 && DECL_FUNCTION_CODE (decl) == BUILT_IN_ALLOCA)
1911 return true;
1913 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
1914 if (strncmp (name, "__builtin_", strlen ("__builtin_")) == 0)
1915 return true;
1917 return false;
1920 /* Actually do the tests to determine if this is necessary, and invoke
1921 ASM_OUTPUT_EXTERNAL. */
1922 static void
1923 assemble_external_real (tree decl)
1925 rtx rtl = DECL_RTL (decl);
1927 if (MEM_P (rtl) && GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF
1928 && !SYMBOL_REF_USED (XEXP (rtl, 0))
1929 && !incorporeal_function_p (decl))
1931 /* Some systems do require some output. */
1932 SYMBOL_REF_USED (XEXP (rtl, 0)) = 1;
1933 ASM_OUTPUT_EXTERNAL (asm_out_file, decl, XSTR (XEXP (rtl, 0), 0));
1936 #endif
1938 void
1939 process_pending_assemble_externals (void)
1941 #ifdef ASM_OUTPUT_EXTERNAL
1942 tree list;
1943 for (list = pending_assemble_externals; list; list = TREE_CHAIN (list))
1944 assemble_external_real (TREE_VALUE (list));
1946 pending_assemble_externals = 0;
1947 #endif
1950 /* Output something to declare an external symbol to the assembler.
1951 (Most assemblers don't need this, so we normally output nothing.)
1952 Do nothing if DECL is not external. */
1954 void
1955 assemble_external (tree decl ATTRIBUTE_UNUSED)
1957 /* Because most platforms do not define ASM_OUTPUT_EXTERNAL, the
1958 main body of this code is only rarely exercised. To provide some
1959 testing, on all platforms, we make sure that the ASM_OUT_FILE is
1960 open. If it's not, we should not be calling this function. */
1961 gcc_assert (asm_out_file);
1963 #ifdef ASM_OUTPUT_EXTERNAL
1964 if (!DECL_P (decl) || !DECL_EXTERNAL (decl) || !TREE_PUBLIC (decl))
1965 return;
1967 /* We want to output external symbols at very last to check if they
1968 are references or not. */
1969 pending_assemble_externals = tree_cons (0, decl,
1970 pending_assemble_externals);
1971 #endif
1974 /* Similar, for calling a library function FUN. */
1976 void
1977 assemble_external_libcall (rtx fun)
1979 /* Declare library function name external when first used, if nec. */
1980 if (! SYMBOL_REF_USED (fun))
1982 SYMBOL_REF_USED (fun) = 1;
1983 targetm.asm_out.external_libcall (fun);
1987 /* Assemble a label named NAME. */
1989 void
1990 assemble_label (const char *name)
1992 ASM_OUTPUT_LABEL (asm_out_file, name);
1995 /* Set the symbol_referenced flag for ID. */
1996 void
1997 mark_referenced (tree id)
1999 TREE_SYMBOL_REFERENCED (id) = 1;
2002 /* Set the symbol_referenced flag for DECL and notify callgraph. */
2003 void
2004 mark_decl_referenced (tree decl)
2006 if (TREE_CODE (decl) == FUNCTION_DECL)
2008 /* Extern inline functions don't become needed when referenced.
2009 If we know a method will be emitted in other TU and no new
2010 functions can be marked reachable, just use the external
2011 definition. */
2012 struct cgraph_node *node = cgraph_node (decl);
2013 if (!DECL_EXTERNAL (decl)
2014 && (!node->local.vtable_method || !cgraph_global_info_ready
2015 || !node->local.finalized))
2016 cgraph_mark_needed_node (node);
2018 else if (TREE_CODE (decl) == VAR_DECL)
2020 struct varpool_node *node = varpool_node (decl);
2021 varpool_mark_needed_node (node);
2022 /* C++ frontend use mark_decl_references to force COMDAT variables
2023 to be output that might appear dead otherwise. */
2024 node->force_output = true;
2026 /* else do nothing - we can get various sorts of CST nodes here,
2027 which do not need to be marked. */
2031 /* Follow the IDENTIFIER_TRANSPARENT_ALIAS chain starting at *ALIAS
2032 until we find an identifier that is not itself a transparent alias.
2033 Modify the alias passed to it by reference (and all aliases on the
2034 way to the ultimate target), such that they do not have to be
2035 followed again, and return the ultimate target of the alias
2036 chain. */
2038 static inline tree
2039 ultimate_transparent_alias_target (tree *alias)
2041 tree target = *alias;
2043 if (IDENTIFIER_TRANSPARENT_ALIAS (target))
2045 gcc_assert (TREE_CHAIN (target));
2046 target = ultimate_transparent_alias_target (&TREE_CHAIN (target));
2047 gcc_assert (! IDENTIFIER_TRANSPARENT_ALIAS (target)
2048 && ! TREE_CHAIN (target));
2049 *alias = target;
2052 return target;
2055 /* Output to FILE (an assembly file) a reference to NAME. If NAME
2056 starts with a *, the rest of NAME is output verbatim. Otherwise
2057 NAME is transformed in a target-specific way (usually by the
2058 addition of an underscore). */
2060 void
2061 assemble_name_raw (FILE *file, const char *name)
2063 if (name[0] == '*')
2064 fputs (&name[1], file);
2065 else
2066 ASM_OUTPUT_LABELREF (file, name);
2069 /* Like assemble_name_raw, but should be used when NAME might refer to
2070 an entity that is also represented as a tree (like a function or
2071 variable). If NAME does refer to such an entity, that entity will
2072 be marked as referenced. */
2074 void
2075 assemble_name (FILE *file, const char *name)
2077 const char *real_name;
2078 tree id;
2080 real_name = targetm.strip_name_encoding (name);
2082 id = maybe_get_identifier (real_name);
2083 if (id)
2085 tree id_orig = id;
2087 mark_referenced (id);
2088 ultimate_transparent_alias_target (&id);
2089 if (id != id_orig)
2090 name = IDENTIFIER_POINTER (id);
2091 gcc_assert (! TREE_CHAIN (id));
2094 assemble_name_raw (file, name);
2097 /* Allocate SIZE bytes writable static space with a gensym name
2098 and return an RTX to refer to its address. */
2101 assemble_static_space (unsigned HOST_WIDE_INT size)
2103 char name[12];
2104 const char *namestring;
2105 rtx x;
2107 ASM_GENERATE_INTERNAL_LABEL (name, "LF", const_labelno);
2108 ++const_labelno;
2109 namestring = ggc_strdup (name);
2111 x = gen_rtx_SYMBOL_REF (Pmode, namestring);
2112 SYMBOL_REF_FLAGS (x) = SYMBOL_FLAG_LOCAL;
2114 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
2115 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name, size,
2116 BIGGEST_ALIGNMENT);
2117 #else
2118 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
2119 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, BIGGEST_ALIGNMENT);
2120 #else
2122 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2123 so that each uninitialized object starts on such a boundary. */
2124 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
2125 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
2126 = ((size + (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1)
2127 / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
2128 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
2129 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
2131 #endif
2132 #endif
2133 return x;
2136 /* Assemble the static constant template for function entry trampolines.
2137 This is done at most once per compilation.
2138 Returns an RTX for the address of the template. */
2140 static GTY(()) rtx initial_trampoline;
2142 #ifdef TRAMPOLINE_TEMPLATE
2144 assemble_trampoline_template (void)
2146 char label[256];
2147 const char *name;
2148 int align;
2149 rtx symbol;
2151 if (initial_trampoline)
2152 return initial_trampoline;
2154 /* By default, put trampoline templates in read-only data section. */
2156 #ifdef TRAMPOLINE_SECTION
2157 switch_to_section (TRAMPOLINE_SECTION);
2158 #else
2159 switch_to_section (readonly_data_section);
2160 #endif
2162 /* Write the assembler code to define one. */
2163 align = floor_log2 (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT);
2164 if (align > 0)
2166 ASM_OUTPUT_ALIGN (asm_out_file, align);
2169 targetm.asm_out.internal_label (asm_out_file, "LTRAMP", 0);
2170 TRAMPOLINE_TEMPLATE (asm_out_file);
2172 /* Record the rtl to refer to it. */
2173 ASM_GENERATE_INTERNAL_LABEL (label, "LTRAMP", 0);
2174 name = ggc_strdup (label);
2175 symbol = gen_rtx_SYMBOL_REF (Pmode, name);
2176 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
2178 initial_trampoline = gen_rtx_MEM (BLKmode, symbol);
2179 set_mem_align (initial_trampoline, TRAMPOLINE_ALIGNMENT);
2181 return initial_trampoline;
2183 #endif
2185 /* A and B are either alignments or offsets. Return the minimum alignment
2186 that may be assumed after adding the two together. */
2188 static inline unsigned
2189 min_align (unsigned int a, unsigned int b)
2191 return (a | b) & -(a | b);
2194 /* Return the assembler directive for creating a given kind of integer
2195 object. SIZE is the number of bytes in the object and ALIGNED_P
2196 indicates whether it is known to be aligned. Return NULL if the
2197 assembly dialect has no such directive.
2199 The returned string should be printed at the start of a new line and
2200 be followed immediately by the object's initial value. */
2202 const char *
2203 integer_asm_op (int size, int aligned_p)
2205 struct asm_int_op *ops;
2207 if (aligned_p)
2208 ops = &targetm.asm_out.aligned_op;
2209 else
2210 ops = &targetm.asm_out.unaligned_op;
2212 switch (size)
2214 case 1:
2215 return targetm.asm_out.byte_op;
2216 case 2:
2217 return ops->hi;
2218 case 4:
2219 return ops->si;
2220 case 8:
2221 return ops->di;
2222 case 16:
2223 return ops->ti;
2224 default:
2225 return NULL;
2229 /* Use directive OP to assemble an integer object X. Print OP at the
2230 start of the line, followed immediately by the value of X. */
2232 void
2233 assemble_integer_with_op (const char *op, rtx x)
2235 fputs (op, asm_out_file);
2236 output_addr_const (asm_out_file, x);
2237 fputc ('\n', asm_out_file);
2240 /* The default implementation of the asm_out.integer target hook. */
2242 bool
2243 default_assemble_integer (rtx x ATTRIBUTE_UNUSED,
2244 unsigned int size ATTRIBUTE_UNUSED,
2245 int aligned_p ATTRIBUTE_UNUSED)
2247 const char *op = integer_asm_op (size, aligned_p);
2248 /* Avoid GAS bugs for large values. Specifically negative values whose
2249 absolute value fits in a bfd_vma, but not in a bfd_signed_vma. */
2250 if (size > UNITS_PER_WORD && size > POINTER_SIZE / BITS_PER_UNIT)
2251 return false;
2252 return op && (assemble_integer_with_op (op, x), true);
2255 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
2256 the alignment of the integer in bits. Return 1 if we were able to output
2257 the constant, otherwise 0. We must be able to output the constant,
2258 if FORCE is nonzero. */
2260 bool
2261 assemble_integer (rtx x, unsigned int size, unsigned int align, int force)
2263 int aligned_p;
2265 aligned_p = (align >= MIN (size * BITS_PER_UNIT, BIGGEST_ALIGNMENT));
2267 /* See if the target hook can handle this kind of object. */
2268 if (targetm.asm_out.integer (x, size, aligned_p))
2269 return true;
2271 /* If the object is a multi-byte one, try splitting it up. Split
2272 it into words it if is multi-word, otherwise split it into bytes. */
2273 if (size > 1)
2275 enum machine_mode omode, imode;
2276 unsigned int subalign;
2277 unsigned int subsize, i;
2279 subsize = size > UNITS_PER_WORD? UNITS_PER_WORD : 1;
2280 subalign = MIN (align, subsize * BITS_PER_UNIT);
2281 omode = mode_for_size (subsize * BITS_PER_UNIT, MODE_INT, 0);
2282 imode = mode_for_size (size * BITS_PER_UNIT, MODE_INT, 0);
2284 for (i = 0; i < size; i += subsize)
2286 rtx partial = simplify_subreg (omode, x, imode, i);
2287 if (!partial || !assemble_integer (partial, subsize, subalign, 0))
2288 break;
2290 if (i == size)
2291 return true;
2293 /* If we've printed some of it, but not all of it, there's no going
2294 back now. */
2295 gcc_assert (!i);
2298 gcc_assert (!force);
2300 return false;
2303 void
2304 assemble_real (REAL_VALUE_TYPE d, enum machine_mode mode, unsigned int align)
2306 long data[4] = {0, 0, 0, 0};
2307 int i;
2308 int bitsize, nelts, nunits, units_per;
2310 /* This is hairy. We have a quantity of known size. real_to_target
2311 will put it into an array of *host* longs, 32 bits per element
2312 (even if long is more than 32 bits). We need to determine the
2313 number of array elements that are occupied (nelts) and the number
2314 of *target* min-addressable units that will be occupied in the
2315 object file (nunits). We cannot assume that 32 divides the
2316 mode's bitsize (size * BITS_PER_UNIT) evenly.
2318 size * BITS_PER_UNIT is used here to make sure that padding bits
2319 (which might appear at either end of the value; real_to_target
2320 will include the padding bits in its output array) are included. */
2322 nunits = GET_MODE_SIZE (mode);
2323 bitsize = nunits * BITS_PER_UNIT;
2324 nelts = CEIL (bitsize, 32);
2325 units_per = 32 / BITS_PER_UNIT;
2327 real_to_target (data, &d, mode);
2329 /* Put out the first word with the specified alignment. */
2330 assemble_integer (GEN_INT (data[0]), MIN (nunits, units_per), align, 1);
2331 nunits -= units_per;
2333 /* Subsequent words need only 32-bit alignment. */
2334 align = min_align (align, 32);
2336 for (i = 1; i < nelts; i++)
2338 assemble_integer (GEN_INT (data[i]), MIN (nunits, units_per), align, 1);
2339 nunits -= units_per;
2343 /* Given an expression EXP with a constant value,
2344 reduce it to the sum of an assembler symbol and an integer.
2345 Store them both in the structure *VALUE.
2346 EXP must be reducible. */
2348 struct addr_const GTY(())
2350 rtx base;
2351 HOST_WIDE_INT offset;
2354 static void
2355 decode_addr_const (tree exp, struct addr_const *value)
2357 tree target = TREE_OPERAND (exp, 0);
2358 int offset = 0;
2359 rtx x;
2361 while (1)
2363 if (TREE_CODE (target) == COMPONENT_REF
2364 && host_integerp (byte_position (TREE_OPERAND (target, 1)), 0))
2367 offset += int_byte_position (TREE_OPERAND (target, 1));
2368 target = TREE_OPERAND (target, 0);
2370 else if (TREE_CODE (target) == ARRAY_REF
2371 || TREE_CODE (target) == ARRAY_RANGE_REF)
2373 offset += (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (target)), 1)
2374 * tree_low_cst (TREE_OPERAND (target, 1), 0));
2375 target = TREE_OPERAND (target, 0);
2377 else
2378 break;
2381 switch (TREE_CODE (target))
2383 case VAR_DECL:
2384 case FUNCTION_DECL:
2385 x = DECL_RTL (target);
2386 break;
2388 case LABEL_DECL:
2389 x = gen_rtx_MEM (FUNCTION_MODE,
2390 gen_rtx_LABEL_REF (Pmode, force_label_rtx (target)));
2391 break;
2393 case REAL_CST:
2394 case STRING_CST:
2395 case COMPLEX_CST:
2396 case CONSTRUCTOR:
2397 case INTEGER_CST:
2398 x = output_constant_def (target, 1);
2399 break;
2401 default:
2402 gcc_unreachable ();
2405 gcc_assert (MEM_P (x));
2406 x = XEXP (x, 0);
2408 value->base = x;
2409 value->offset = offset;
2412 /* Uniquize all constants that appear in memory.
2413 Each constant in memory thus far output is recorded
2414 in `const_desc_table'. */
2416 struct constant_descriptor_tree GTY(())
2418 /* A MEM for the constant. */
2419 rtx rtl;
2421 /* The value of the constant. */
2422 tree value;
2424 /* Hash of value. Computing the hash from value each time
2425 hashfn is called can't work properly, as that means recursive
2426 use of the hash table during hash table expansion. */
2427 hashval_t hash;
2430 static GTY((param_is (struct constant_descriptor_tree)))
2431 htab_t const_desc_htab;
2433 static struct constant_descriptor_tree * build_constant_desc (tree);
2434 static void maybe_output_constant_def_contents (struct constant_descriptor_tree *, int);
2436 /* Compute a hash code for a constant expression. */
2438 static hashval_t
2439 const_desc_hash (const void *ptr)
2441 return ((struct constant_descriptor_tree *)ptr)->hash;
2444 static hashval_t
2445 const_hash_1 (const tree exp)
2447 const char *p;
2448 hashval_t hi;
2449 int len, i;
2450 enum tree_code code = TREE_CODE (exp);
2452 /* Either set P and LEN to the address and len of something to hash and
2453 exit the switch or return a value. */
2455 switch (code)
2457 case INTEGER_CST:
2458 p = (char *) &TREE_INT_CST (exp);
2459 len = sizeof TREE_INT_CST (exp);
2460 break;
2462 case REAL_CST:
2463 return real_hash (TREE_REAL_CST_PTR (exp));
2465 case STRING_CST:
2466 p = TREE_STRING_POINTER (exp);
2467 len = TREE_STRING_LENGTH (exp);
2468 break;
2470 case COMPLEX_CST:
2471 return (const_hash_1 (TREE_REALPART (exp)) * 5
2472 + const_hash_1 (TREE_IMAGPART (exp)));
2474 case CONSTRUCTOR:
2476 unsigned HOST_WIDE_INT idx;
2477 tree value;
2479 hi = 5 + int_size_in_bytes (TREE_TYPE (exp));
2481 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, value)
2482 if (value)
2483 hi = hi * 603 + const_hash_1 (value);
2485 return hi;
2488 case ADDR_EXPR:
2489 case FDESC_EXPR:
2491 struct addr_const value;
2493 decode_addr_const (exp, &value);
2494 switch (GET_CODE (value.base))
2496 case SYMBOL_REF:
2497 /* Don't hash the address of the SYMBOL_REF;
2498 only use the offset and the symbol name. */
2499 hi = value.offset;
2500 p = XSTR (value.base, 0);
2501 for (i = 0; p[i] != 0; i++)
2502 hi = ((hi * 613) + (unsigned) (p[i]));
2503 break;
2505 case LABEL_REF:
2506 hi = value.offset + CODE_LABEL_NUMBER (XEXP (value.base, 0)) * 13;
2507 break;
2509 default:
2510 gcc_unreachable ();
2513 return hi;
2515 case PLUS_EXPR:
2516 case MINUS_EXPR:
2517 return (const_hash_1 (TREE_OPERAND (exp, 0)) * 9
2518 + const_hash_1 (TREE_OPERAND (exp, 1)));
2520 case NOP_EXPR:
2521 case CONVERT_EXPR:
2522 case NON_LVALUE_EXPR:
2523 return const_hash_1 (TREE_OPERAND (exp, 0)) * 7 + 2;
2525 default:
2526 /* A language specific constant. Just hash the code. */
2527 return code;
2530 /* Compute hashing function. */
2531 hi = len;
2532 for (i = 0; i < len; i++)
2533 hi = ((hi * 613) + (unsigned) (p[i]));
2535 return hi;
2538 /* Wrapper of compare_constant, for the htab interface. */
2539 static int
2540 const_desc_eq (const void *p1, const void *p2)
2542 const struct constant_descriptor_tree *c1 = p1;
2543 const struct constant_descriptor_tree *c2 = p2;
2544 if (c1->hash != c2->hash)
2545 return 0;
2546 return compare_constant (c1->value, c2->value);
2549 /* Compare t1 and t2, and return 1 only if they are known to result in
2550 the same bit pattern on output. */
2552 static int
2553 compare_constant (const tree t1, const tree t2)
2555 enum tree_code typecode;
2557 if (t1 == NULL_TREE)
2558 return t2 == NULL_TREE;
2559 if (t2 == NULL_TREE)
2560 return 0;
2562 if (TREE_CODE (t1) != TREE_CODE (t2))
2563 return 0;
2565 switch (TREE_CODE (t1))
2567 case INTEGER_CST:
2568 /* Integer constants are the same only if the same width of type. */
2569 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2570 return 0;
2571 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
2572 return 0;
2573 return tree_int_cst_equal (t1, t2);
2575 case REAL_CST:
2576 /* Real constants are the same only if the same width of type. */
2577 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2578 return 0;
2580 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
2582 case STRING_CST:
2583 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
2584 return 0;
2586 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
2587 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
2588 TREE_STRING_LENGTH (t1)));
2590 case COMPLEX_CST:
2591 return (compare_constant (TREE_REALPART (t1), TREE_REALPART (t2))
2592 && compare_constant (TREE_IMAGPART (t1), TREE_IMAGPART (t2)));
2594 case CONSTRUCTOR:
2596 VEC(constructor_elt, gc) *v1, *v2;
2597 unsigned HOST_WIDE_INT idx;
2599 typecode = TREE_CODE (TREE_TYPE (t1));
2600 if (typecode != TREE_CODE (TREE_TYPE (t2)))
2601 return 0;
2603 if (typecode == ARRAY_TYPE)
2605 HOST_WIDE_INT size_1 = int_size_in_bytes (TREE_TYPE (t1));
2606 /* For arrays, check that the sizes all match. */
2607 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2))
2608 || size_1 == -1
2609 || size_1 != int_size_in_bytes (TREE_TYPE (t2)))
2610 return 0;
2612 else
2614 /* For record and union constructors, require exact type
2615 equality. */
2616 if (TREE_TYPE (t1) != TREE_TYPE (t2))
2617 return 0;
2620 v1 = CONSTRUCTOR_ELTS (t1);
2621 v2 = CONSTRUCTOR_ELTS (t2);
2622 if (VEC_length (constructor_elt, v1)
2623 != VEC_length (constructor_elt, v2))
2624 return 0;
2626 for (idx = 0; idx < VEC_length (constructor_elt, v1); ++idx)
2628 constructor_elt *c1 = VEC_index (constructor_elt, v1, idx);
2629 constructor_elt *c2 = VEC_index (constructor_elt, v2, idx);
2631 /* Check that each value is the same... */
2632 if (!compare_constant (c1->value, c2->value))
2633 return 0;
2634 /* ... and that they apply to the same fields! */
2635 if (typecode == ARRAY_TYPE)
2637 if (!compare_constant (c1->index, c2->index))
2638 return 0;
2640 else
2642 if (c1->index != c2->index)
2643 return 0;
2647 return 1;
2650 case ADDR_EXPR:
2651 case FDESC_EXPR:
2653 struct addr_const value1, value2;
2655 decode_addr_const (t1, &value1);
2656 decode_addr_const (t2, &value2);
2657 return (value1.offset == value2.offset
2658 && strcmp (XSTR (value1.base, 0), XSTR (value2.base, 0)) == 0);
2661 case PLUS_EXPR:
2662 case MINUS_EXPR:
2663 case RANGE_EXPR:
2664 return (compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0))
2665 && compare_constant(TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)));
2667 case NOP_EXPR:
2668 case CONVERT_EXPR:
2669 case NON_LVALUE_EXPR:
2670 case VIEW_CONVERT_EXPR:
2671 return compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
2673 default:
2675 tree nt1, nt2;
2676 nt1 = lang_hooks.expand_constant (t1);
2677 nt2 = lang_hooks.expand_constant (t2);
2678 if (nt1 != t1 || nt2 != t2)
2679 return compare_constant (nt1, nt2);
2680 else
2681 return 0;
2685 gcc_unreachable ();
2688 /* Make a copy of the whole tree structure for a constant. This
2689 handles the same types of nodes that compare_constant handles. */
2691 static tree
2692 copy_constant (tree exp)
2694 switch (TREE_CODE (exp))
2696 case ADDR_EXPR:
2697 /* For ADDR_EXPR, we do not want to copy the decl whose address
2698 is requested. We do want to copy constants though. */
2699 if (CONSTANT_CLASS_P (TREE_OPERAND (exp, 0)))
2700 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2701 copy_constant (TREE_OPERAND (exp, 0)));
2702 else
2703 return copy_node (exp);
2705 case INTEGER_CST:
2706 case REAL_CST:
2707 case STRING_CST:
2708 return copy_node (exp);
2710 case COMPLEX_CST:
2711 return build_complex (TREE_TYPE (exp),
2712 copy_constant (TREE_REALPART (exp)),
2713 copy_constant (TREE_IMAGPART (exp)));
2715 case PLUS_EXPR:
2716 case MINUS_EXPR:
2717 return build2 (TREE_CODE (exp), TREE_TYPE (exp),
2718 copy_constant (TREE_OPERAND (exp, 0)),
2719 copy_constant (TREE_OPERAND (exp, 1)));
2721 case NOP_EXPR:
2722 case CONVERT_EXPR:
2723 case NON_LVALUE_EXPR:
2724 case VIEW_CONVERT_EXPR:
2725 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2726 copy_constant (TREE_OPERAND (exp, 0)));
2728 case CONSTRUCTOR:
2730 tree copy = copy_node (exp);
2731 VEC(constructor_elt, gc) *v;
2732 unsigned HOST_WIDE_INT idx;
2733 tree purpose, value;
2735 v = VEC_alloc(constructor_elt, gc, VEC_length(constructor_elt,
2736 CONSTRUCTOR_ELTS (exp)));
2737 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp), idx, purpose, value)
2739 constructor_elt *ce = VEC_quick_push (constructor_elt, v, NULL);
2740 ce->index = purpose;
2741 ce->value = copy_constant (value);
2743 CONSTRUCTOR_ELTS (copy) = v;
2744 return copy;
2747 default:
2749 tree t = lang_hooks.expand_constant (exp);
2751 gcc_assert (t != exp);
2752 return copy_constant (t);
2757 /* Return the alignment of constant EXP in bits. */
2759 static unsigned int
2760 get_constant_alignment (tree exp)
2762 unsigned int align;
2764 align = TYPE_ALIGN (TREE_TYPE (exp));
2765 #ifdef CONSTANT_ALIGNMENT
2766 align = CONSTANT_ALIGNMENT (exp, align);
2767 #endif
2768 return align;
2771 /* Return the section into which constant EXP should be placed. */
2773 static section *
2774 get_constant_section (tree exp)
2776 if (IN_NAMED_SECTION (exp))
2777 return get_named_section (exp, NULL, compute_reloc_for_constant (exp));
2778 else
2779 return targetm.asm_out.select_section (exp,
2780 compute_reloc_for_constant (exp),
2781 get_constant_alignment (exp));
2784 /* Return the size of constant EXP in bytes. */
2786 static HOST_WIDE_INT
2787 get_constant_size (tree exp)
2789 HOST_WIDE_INT size;
2791 size = int_size_in_bytes (TREE_TYPE (exp));
2792 if (TREE_CODE (exp) == STRING_CST)
2793 size = MAX (TREE_STRING_LENGTH (exp), size);
2794 return size;
2797 /* Subroutine of output_constant_def:
2798 No constant equal to EXP is known to have been output.
2799 Make a constant descriptor to enter EXP in the hash table.
2800 Assign the label number and construct RTL to refer to the
2801 constant's location in memory.
2802 Caller is responsible for updating the hash table. */
2804 static struct constant_descriptor_tree *
2805 build_constant_desc (tree exp)
2807 rtx symbol;
2808 rtx rtl;
2809 char label[256];
2810 int labelno;
2811 struct constant_descriptor_tree *desc;
2813 desc = ggc_alloc (sizeof (*desc));
2814 desc->value = copy_constant (exp);
2816 /* Propagate marked-ness to copied constant. */
2817 if (flag_mudflap && mf_marked_p (exp))
2818 mf_mark (desc->value);
2820 /* Create a string containing the label name, in LABEL. */
2821 labelno = const_labelno++;
2822 ASM_GENERATE_INTERNAL_LABEL (label, "LC", labelno);
2824 /* We have a symbol name; construct the SYMBOL_REF and the MEM. */
2825 if (use_object_blocks_p ())
2827 section *sect = get_constant_section (exp);
2828 symbol = create_block_symbol (ggc_strdup (label),
2829 get_block_for_section (sect), -1);
2831 else
2832 symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
2833 SYMBOL_REF_FLAGS (symbol) |= SYMBOL_FLAG_LOCAL;
2834 SET_SYMBOL_REF_DECL (symbol, desc->value);
2835 TREE_CONSTANT_POOL_ADDRESS_P (symbol) = 1;
2837 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp)), symbol);
2838 set_mem_attributes (rtl, exp, 1);
2839 set_mem_alias_set (rtl, 0);
2840 set_mem_alias_set (rtl, const_alias_set);
2842 /* Set flags or add text to the name to record information, such as
2843 that it is a local symbol. If the name is changed, the macro
2844 ASM_OUTPUT_LABELREF will have to know how to strip this
2845 information. This call might invalidate our local variable
2846 SYMBOL; we can't use it afterward. */
2848 targetm.encode_section_info (exp, rtl, true);
2850 desc->rtl = rtl;
2852 return desc;
2855 /* Return an rtx representing a reference to constant data in memory
2856 for the constant expression EXP.
2858 If assembler code for such a constant has already been output,
2859 return an rtx to refer to it.
2860 Otherwise, output such a constant in memory
2861 and generate an rtx for it.
2863 If DEFER is nonzero, this constant can be deferred and output only
2864 if referenced in the function after all optimizations.
2866 `const_desc_table' records which constants already have label strings. */
2869 output_constant_def (tree exp, int defer)
2871 struct constant_descriptor_tree *desc;
2872 struct constant_descriptor_tree key;
2873 void **loc;
2875 /* Look up EXP in the table of constant descriptors. If we didn't find
2876 it, create a new one. */
2877 key.value = exp;
2878 key.hash = const_hash_1 (exp);
2879 loc = htab_find_slot_with_hash (const_desc_htab, &key, key.hash, INSERT);
2881 desc = *loc;
2882 if (desc == 0)
2884 desc = build_constant_desc (exp);
2885 desc->hash = key.hash;
2886 *loc = desc;
2889 maybe_output_constant_def_contents (desc, defer);
2890 return desc->rtl;
2893 /* Subroutine of output_constant_def: Decide whether or not we need to
2894 output the constant DESC now, and if so, do it. */
2895 static void
2896 maybe_output_constant_def_contents (struct constant_descriptor_tree *desc,
2897 int defer)
2899 rtx symbol = XEXP (desc->rtl, 0);
2900 tree exp = desc->value;
2902 if (flag_syntax_only)
2903 return;
2905 if (TREE_ASM_WRITTEN (exp))
2906 /* Already output; don't do it again. */
2907 return;
2909 /* We can always defer constants as long as the context allows
2910 doing so. */
2911 if (defer)
2913 /* Increment n_deferred_constants if it exists. It needs to be at
2914 least as large as the number of constants actually referred to
2915 by the function. If it's too small we'll stop looking too early
2916 and fail to emit constants; if it's too large we'll only look
2917 through the entire function when we could have stopped earlier. */
2918 if (cfun)
2919 n_deferred_constants++;
2920 return;
2923 output_constant_def_contents (symbol);
2926 /* Subroutine of output_constant_def_contents. Output the definition
2927 of constant EXP, which is pointed to by label LABEL. ALIGN is the
2928 constant's alignment in bits. */
2930 static void
2931 assemble_constant_contents (tree exp, const char *label, unsigned int align)
2933 HOST_WIDE_INT size;
2935 size = get_constant_size (exp);
2937 /* Do any machine/system dependent processing of the constant. */
2938 #ifdef ASM_DECLARE_CONSTANT_NAME
2939 ASM_DECLARE_CONSTANT_NAME (asm_out_file, label, exp, size);
2940 #else
2941 /* Standard thing is just output label for the constant. */
2942 ASM_OUTPUT_LABEL (asm_out_file, label);
2943 #endif /* ASM_DECLARE_CONSTANT_NAME */
2945 /* Output the value of EXP. */
2946 output_constant (exp, size, align);
2949 /* We must output the constant data referred to by SYMBOL; do so. */
2951 static void
2952 output_constant_def_contents (rtx symbol)
2954 tree exp = SYMBOL_REF_DECL (symbol);
2955 unsigned int align;
2957 /* Make sure any other constants whose addresses appear in EXP
2958 are assigned label numbers. */
2959 output_addressed_constants (exp);
2961 /* We are no longer deferring this constant. */
2962 TREE_ASM_WRITTEN (exp) = 1;
2964 /* If the constant is part of an object block, make sure that the
2965 decl has been positioned within its block, but do not write out
2966 its definition yet. output_object_blocks will do that later. */
2967 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol) && SYMBOL_REF_BLOCK (symbol))
2968 place_block_symbol (symbol);
2969 else
2971 switch_to_section (get_constant_section (exp));
2972 align = get_constant_alignment (exp);
2973 if (align > BITS_PER_UNIT)
2974 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
2975 assemble_constant_contents (exp, XSTR (symbol, 0), align);
2977 if (flag_mudflap)
2978 mudflap_enqueue_constant (exp);
2981 /* Look up EXP in the table of constant descriptors. Return the rtl
2982 if it has been emitted, else null. */
2985 lookup_constant_def (tree exp)
2987 struct constant_descriptor_tree *desc;
2988 struct constant_descriptor_tree key;
2990 key.value = exp;
2991 key.hash = const_hash_1 (exp);
2992 desc = htab_find_with_hash (const_desc_htab, &key, key.hash);
2994 return (desc ? desc->rtl : NULL_RTX);
2997 /* Used in the hash tables to avoid outputting the same constant
2998 twice. Unlike 'struct constant_descriptor_tree', RTX constants
2999 are output once per function, not once per file. */
3000 /* ??? Only a few targets need per-function constant pools. Most
3001 can use one per-file pool. Should add a targetm bit to tell the
3002 difference. */
3004 struct rtx_constant_pool GTY(())
3006 /* Pointers to first and last constant in pool, as ordered by offset. */
3007 struct constant_descriptor_rtx *first;
3008 struct constant_descriptor_rtx *last;
3010 /* Hash facility for making memory-constants from constant rtl-expressions.
3011 It is used on RISC machines where immediate integer arguments and
3012 constant addresses are restricted so that such constants must be stored
3013 in memory. */
3014 htab_t GTY((param_is (struct constant_descriptor_rtx))) const_rtx_htab;
3016 /* Current offset in constant pool (does not include any
3017 machine-specific header). */
3018 HOST_WIDE_INT offset;
3021 struct constant_descriptor_rtx GTY((chain_next ("%h.next")))
3023 struct constant_descriptor_rtx *next;
3024 rtx mem;
3025 rtx sym;
3026 rtx constant;
3027 HOST_WIDE_INT offset;
3028 hashval_t hash;
3029 enum machine_mode mode;
3030 unsigned int align;
3031 int labelno;
3032 int mark;
3035 /* Hash and compare functions for const_rtx_htab. */
3037 static hashval_t
3038 const_desc_rtx_hash (const void *ptr)
3040 const struct constant_descriptor_rtx *desc = ptr;
3041 return desc->hash;
3044 static int
3045 const_desc_rtx_eq (const void *a, const void *b)
3047 const struct constant_descriptor_rtx *x = a;
3048 const struct constant_descriptor_rtx *y = b;
3050 if (x->mode != y->mode)
3051 return 0;
3052 return rtx_equal_p (x->constant, y->constant);
3055 /* This is the worker function for const_rtx_hash, called via for_each_rtx. */
3057 static int
3058 const_rtx_hash_1 (rtx *xp, void *data)
3060 unsigned HOST_WIDE_INT hwi;
3061 enum machine_mode mode;
3062 enum rtx_code code;
3063 hashval_t h, *hp;
3064 rtx x;
3066 x = *xp;
3067 code = GET_CODE (x);
3068 mode = GET_MODE (x);
3069 h = (hashval_t) code * 1048573 + mode;
3071 switch (code)
3073 case CONST_INT:
3074 hwi = INTVAL (x);
3075 fold_hwi:
3077 const int shift = sizeof (hashval_t) * CHAR_BIT;
3078 const int n = sizeof (HOST_WIDE_INT) / sizeof (hashval_t);
3079 int i;
3081 h ^= (hashval_t) hwi;
3082 for (i = 1; i < n; ++i)
3084 hwi >>= shift;
3085 h ^= (hashval_t) hwi;
3088 break;
3090 case CONST_DOUBLE:
3091 if (mode == VOIDmode)
3093 hwi = CONST_DOUBLE_LOW (x) ^ CONST_DOUBLE_HIGH (x);
3094 goto fold_hwi;
3096 else
3097 h ^= real_hash (CONST_DOUBLE_REAL_VALUE (x));
3098 break;
3100 case CONST_VECTOR:
3102 int i;
3103 for (i = XVECLEN (x, 0); i-- > 0; )
3104 h = h * 251 + const_rtx_hash_1 (&XVECEXP (x, 0, i), data);
3106 break;
3108 case SYMBOL_REF:
3109 h ^= htab_hash_string (XSTR (x, 0));
3110 break;
3112 case LABEL_REF:
3113 h = h * 251 + CODE_LABEL_NUMBER (XEXP (x, 0));
3114 break;
3116 case UNSPEC:
3117 case UNSPEC_VOLATILE:
3118 h = h * 251 + XINT (x, 1);
3119 break;
3121 default:
3122 break;
3125 hp = data;
3126 *hp = *hp * 509 + h;
3127 return 0;
3130 /* Compute a hash value for X, which should be a constant. */
3132 static hashval_t
3133 const_rtx_hash (rtx x)
3135 hashval_t h = 0;
3136 for_each_rtx (&x, const_rtx_hash_1, &h);
3137 return h;
3141 /* Create and return a new rtx constant pool. */
3143 static struct rtx_constant_pool *
3144 create_constant_pool (void)
3146 struct rtx_constant_pool *pool;
3148 pool = ggc_alloc (sizeof (struct rtx_constant_pool));
3149 pool->const_rtx_htab = htab_create_ggc (31, const_desc_rtx_hash,
3150 const_desc_rtx_eq, NULL);
3151 pool->first = NULL;
3152 pool->last = NULL;
3153 pool->offset = 0;
3154 return pool;
3157 /* Initialize constant pool hashing for a new function. */
3159 void
3160 init_varasm_status (struct function *f)
3162 struct varasm_status *p;
3164 p = ggc_alloc (sizeof (struct varasm_status));
3165 f->varasm = p;
3167 p->pool = create_constant_pool ();
3168 p->deferred_constants = 0;
3171 /* Given a MINUS expression, simplify it if both sides
3172 include the same symbol. */
3175 simplify_subtraction (rtx x)
3177 rtx r = simplify_rtx (x);
3178 return r ? r : x;
3181 /* Given a constant rtx X, make (or find) a memory constant for its value
3182 and return a MEM rtx to refer to it in memory. */
3185 force_const_mem (enum machine_mode mode, rtx x)
3187 struct constant_descriptor_rtx *desc, tmp;
3188 struct rtx_constant_pool *pool;
3189 char label[256];
3190 rtx def, symbol;
3191 hashval_t hash;
3192 unsigned int align;
3193 void **slot;
3195 /* If we're not allowed to drop X into the constant pool, don't. */
3196 if (targetm.cannot_force_const_mem (x))
3197 return NULL_RTX;
3199 /* Record that this function has used a constant pool entry. */
3200 current_function_uses_const_pool = 1;
3202 /* Decide which pool to use. */
3203 pool = (targetm.use_blocks_for_constant_p (mode, x)
3204 ? shared_constant_pool
3205 : cfun->varasm->pool);
3207 /* Lookup the value in the hashtable. */
3208 tmp.constant = x;
3209 tmp.mode = mode;
3210 hash = const_rtx_hash (x);
3211 slot = htab_find_slot_with_hash (pool->const_rtx_htab, &tmp, hash, INSERT);
3212 desc = *slot;
3214 /* If the constant was already present, return its memory. */
3215 if (desc)
3216 return copy_rtx (desc->mem);
3218 /* Otherwise, create a new descriptor. */
3219 desc = ggc_alloc (sizeof (*desc));
3220 *slot = desc;
3222 /* Align the location counter as required by EXP's data type. */
3223 align = GET_MODE_ALIGNMENT (mode == VOIDmode ? word_mode : mode);
3224 #ifdef CONSTANT_ALIGNMENT
3226 tree type = lang_hooks.types.type_for_mode (mode, 0);
3227 if (type != NULL_TREE)
3228 align = CONSTANT_ALIGNMENT (make_tree (type, x), align);
3230 #endif
3232 pool->offset += (align / BITS_PER_UNIT) - 1;
3233 pool->offset &= ~ ((align / BITS_PER_UNIT) - 1);
3235 desc->next = NULL;
3236 desc->constant = tmp.constant;
3237 desc->offset = pool->offset;
3238 desc->hash = hash;
3239 desc->mode = mode;
3240 desc->align = align;
3241 desc->labelno = const_labelno;
3242 desc->mark = 0;
3244 pool->offset += GET_MODE_SIZE (mode);
3245 if (pool->last)
3246 pool->last->next = desc;
3247 else
3248 pool->first = pool->last = desc;
3249 pool->last = desc;
3251 /* Create a string containing the label name, in LABEL. */
3252 ASM_GENERATE_INTERNAL_LABEL (label, "LC", const_labelno);
3253 ++const_labelno;
3255 /* Construct the SYMBOL_REF. Make sure to mark it as belonging to
3256 the constants pool. */
3257 if (use_object_blocks_p () && targetm.use_blocks_for_constant_p (mode, x))
3259 section *sect = targetm.asm_out.select_rtx_section (mode, x, align);
3260 symbol = create_block_symbol (ggc_strdup (label),
3261 get_block_for_section (sect), -1);
3263 else
3264 symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
3265 desc->sym = symbol;
3266 SYMBOL_REF_FLAGS (symbol) |= SYMBOL_FLAG_LOCAL;
3267 CONSTANT_POOL_ADDRESS_P (symbol) = 1;
3268 SET_SYMBOL_REF_CONSTANT (symbol, desc);
3270 /* Construct the MEM. */
3271 desc->mem = def = gen_const_mem (mode, symbol);
3272 set_mem_attributes (def, lang_hooks.types.type_for_mode (mode, 0), 1);
3273 set_mem_align (def, align);
3275 /* If we're dropping a label to the constant pool, make sure we
3276 don't delete it. */
3277 if (GET_CODE (x) == LABEL_REF)
3278 LABEL_PRESERVE_P (XEXP (x, 0)) = 1;
3280 return copy_rtx (def);
3283 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3286 get_pool_constant (rtx addr)
3288 return SYMBOL_REF_CONSTANT (addr)->constant;
3291 /* Given a constant pool SYMBOL_REF, return the corresponding constant
3292 and whether it has been output or not. */
3295 get_pool_constant_mark (rtx addr, bool *pmarked)
3297 struct constant_descriptor_rtx *desc;
3299 desc = SYMBOL_REF_CONSTANT (addr);
3300 *pmarked = (desc->mark != 0);
3301 return desc->constant;
3304 /* Similar, return the mode. */
3306 enum machine_mode
3307 get_pool_mode (rtx addr)
3309 return SYMBOL_REF_CONSTANT (addr)->mode;
3312 /* Return the size of the constant pool. */
3315 get_pool_size (void)
3317 return cfun->varasm->pool->offset;
3320 /* Worker function for output_constant_pool_1. Emit assembly for X
3321 in MODE with known alignment ALIGN. */
3323 static void
3324 output_constant_pool_2 (enum machine_mode mode, rtx x, unsigned int align)
3326 switch (GET_MODE_CLASS (mode))
3328 case MODE_FLOAT:
3329 case MODE_DECIMAL_FLOAT:
3331 REAL_VALUE_TYPE r;
3333 gcc_assert (GET_CODE (x) == CONST_DOUBLE);
3334 REAL_VALUE_FROM_CONST_DOUBLE (r, x);
3335 assemble_real (r, mode, align);
3336 break;
3339 case MODE_INT:
3340 case MODE_PARTIAL_INT:
3341 assemble_integer (x, GET_MODE_SIZE (mode), align, 1);
3342 break;
3344 case MODE_VECTOR_FLOAT:
3345 case MODE_VECTOR_INT:
3347 int i, units;
3348 enum machine_mode submode = GET_MODE_INNER (mode);
3349 unsigned int subalign = MIN (align, GET_MODE_BITSIZE (submode));
3351 gcc_assert (GET_CODE (x) == CONST_VECTOR);
3352 units = CONST_VECTOR_NUNITS (x);
3354 for (i = 0; i < units; i++)
3356 rtx elt = CONST_VECTOR_ELT (x, i);
3357 output_constant_pool_2 (submode, elt, i ? subalign : align);
3360 break;
3362 default:
3363 gcc_unreachable ();
3367 /* Worker function for output_constant_pool. Emit constant DESC,
3368 giving it ALIGN bits of alignment. */
3370 static void
3371 output_constant_pool_1 (struct constant_descriptor_rtx *desc,
3372 unsigned int align)
3374 rtx x, tmp;
3376 x = desc->constant;
3378 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3379 whose CODE_LABEL has been deleted. This can occur if a jump table
3380 is eliminated by optimization. If so, write a constant of zero
3381 instead. Note that this can also happen by turning the
3382 CODE_LABEL into a NOTE. */
3383 /* ??? This seems completely and utterly wrong. Certainly it's
3384 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3385 functioning even with INSN_DELETED_P and friends. */
3387 tmp = x;
3388 switch (GET_CODE (x))
3390 case CONST:
3391 if (GET_CODE (XEXP (x, 0)) != PLUS
3392 || GET_CODE (XEXP (XEXP (x, 0), 0)) != LABEL_REF)
3393 break;
3394 tmp = XEXP (XEXP (x, 0), 0);
3395 /* FALLTHRU */
3397 case LABEL_REF:
3398 tmp = XEXP (x, 0);
3399 gcc_assert (!INSN_DELETED_P (tmp));
3400 gcc_assert (!NOTE_P (tmp)
3401 || NOTE_LINE_NUMBER (tmp) != NOTE_INSN_DELETED);
3402 break;
3404 default:
3405 break;
3408 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3409 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file, x, desc->mode,
3410 align, desc->labelno, done);
3411 #endif
3413 assemble_align (align);
3415 /* Output the label. */
3416 targetm.asm_out.internal_label (asm_out_file, "LC", desc->labelno);
3418 /* Output the data. */
3419 output_constant_pool_2 (desc->mode, x, align);
3421 /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
3422 sections have proper size. */
3423 if (align > GET_MODE_BITSIZE (desc->mode)
3424 && in_section
3425 && (in_section->common.flags & SECTION_MERGE))
3426 assemble_align (align);
3428 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3429 done:
3430 #endif
3431 return;
3434 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3435 to as used. Emit referenced deferred strings. This function can
3436 be used with for_each_rtx to mark all SYMBOL_REFs in an rtx. */
3438 static int
3439 mark_constant (rtx *current_rtx, void *data ATTRIBUTE_UNUSED)
3441 rtx x = *current_rtx;
3443 if (x == NULL_RTX || GET_CODE (x) != SYMBOL_REF)
3444 return 0;
3446 if (CONSTANT_POOL_ADDRESS_P (x))
3448 struct constant_descriptor_rtx *desc = SYMBOL_REF_CONSTANT (x);
3449 if (desc->mark == 0)
3451 desc->mark = 1;
3452 for_each_rtx (&desc->constant, mark_constant, NULL);
3455 else if (TREE_CONSTANT_POOL_ADDRESS_P (x))
3457 tree exp = SYMBOL_REF_DECL (x);
3458 if (!TREE_ASM_WRITTEN (exp))
3460 n_deferred_constants--;
3461 output_constant_def_contents (x);
3465 return -1;
3468 /* Look through appropriate parts of INSN, marking all entries in the
3469 constant pool which are actually being used. Entries that are only
3470 referenced by other constants are also marked as used. Emit
3471 deferred strings that are used. */
3473 static void
3474 mark_constants (rtx insn)
3476 if (!INSN_P (insn))
3477 return;
3479 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3480 insns, not any notes that may be attached. We don't want to mark
3481 a constant just because it happens to appear in a REG_EQUIV note. */
3482 if (GET_CODE (PATTERN (insn)) == SEQUENCE)
3484 rtx seq = PATTERN (insn);
3485 int i, n = XVECLEN (seq, 0);
3486 for (i = 0; i < n; ++i)
3488 rtx subinsn = XVECEXP (seq, 0, i);
3489 if (INSN_P (subinsn))
3490 for_each_rtx (&PATTERN (subinsn), mark_constant, NULL);
3493 else
3494 for_each_rtx (&PATTERN (insn), mark_constant, NULL);
3497 /* Look through the instructions for this function, and mark all the
3498 entries in POOL which are actually being used. Emit deferred constants
3499 which have indeed been used. */
3501 static void
3502 mark_constant_pool (void)
3504 rtx insn, link;
3506 if (!current_function_uses_const_pool && n_deferred_constants == 0)
3507 return;
3509 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3510 mark_constants (insn);
3512 for (link = current_function_epilogue_delay_list;
3513 link;
3514 link = XEXP (link, 1))
3515 mark_constants (XEXP (link, 0));
3518 /* Write all the constants in POOL. */
3520 static void
3521 output_constant_pool_contents (struct rtx_constant_pool *pool)
3523 struct constant_descriptor_rtx *desc;
3525 for (desc = pool->first; desc ; desc = desc->next)
3526 if (desc->mark)
3528 /* If the constant is part of an object_block, make sure that
3529 the constant has been positioned within its block, but do not
3530 write out its definition yet. output_object_blocks will do
3531 that later. */
3532 if (SYMBOL_REF_HAS_BLOCK_INFO_P (desc->sym)
3533 && SYMBOL_REF_BLOCK (desc->sym))
3534 place_block_symbol (desc->sym);
3535 else
3537 switch_to_section (targetm.asm_out.select_rtx_section
3538 (desc->mode, desc->constant, desc->align));
3539 output_constant_pool_1 (desc, desc->align);
3544 /* Mark all constants that are used in the current function, then write
3545 out the function's private constant pool. */
3547 static void
3548 output_constant_pool (const char *fnname ATTRIBUTE_UNUSED,
3549 tree fndecl ATTRIBUTE_UNUSED)
3551 struct rtx_constant_pool *pool = cfun->varasm->pool;
3553 /* It is possible for gcc to call force_const_mem and then to later
3554 discard the instructions which refer to the constant. In such a
3555 case we do not need to output the constant. */
3556 mark_constant_pool ();
3558 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3559 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file, fnname, fndecl, pool->offset);
3560 #endif
3562 output_constant_pool_contents (pool);
3564 #ifdef ASM_OUTPUT_POOL_EPILOGUE
3565 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file, fnname, fndecl, pool->offset);
3566 #endif
3569 /* Write the contents of the shared constant pool. */
3571 void
3572 output_shared_constant_pool (void)
3574 output_constant_pool_contents (shared_constant_pool);
3577 /* Determine what kind of relocations EXP may need. */
3580 compute_reloc_for_constant (tree exp)
3582 int reloc = 0, reloc2;
3583 tree tem;
3585 /* Give the front-end a chance to convert VALUE to something that
3586 looks more like a constant to the back-end. */
3587 exp = lang_hooks.expand_constant (exp);
3589 switch (TREE_CODE (exp))
3591 case ADDR_EXPR:
3592 case FDESC_EXPR:
3593 /* Go inside any operations that get_inner_reference can handle and see
3594 if what's inside is a constant: no need to do anything here for
3595 addresses of variables or functions. */
3596 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
3597 tem = TREE_OPERAND (tem, 0))
3600 if (TREE_PUBLIC (tem))
3601 reloc |= 2;
3602 else
3603 reloc |= 1;
3604 break;
3606 case PLUS_EXPR:
3607 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3608 reloc |= compute_reloc_for_constant (TREE_OPERAND (exp, 1));
3609 break;
3611 case MINUS_EXPR:
3612 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3613 reloc2 = compute_reloc_for_constant (TREE_OPERAND (exp, 1));
3614 /* The difference of two local labels is computable at link time. */
3615 if (reloc == 1 && reloc2 == 1)
3616 reloc = 0;
3617 else
3618 reloc |= reloc2;
3619 break;
3621 case NOP_EXPR:
3622 case CONVERT_EXPR:
3623 case NON_LVALUE_EXPR:
3624 case VIEW_CONVERT_EXPR:
3625 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3626 break;
3628 case CONSTRUCTOR:
3630 unsigned HOST_WIDE_INT idx;
3631 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, tem)
3632 if (tem != 0)
3633 reloc |= compute_reloc_for_constant (tem);
3635 break;
3637 default:
3638 break;
3640 return reloc;
3643 /* Find all the constants whose addresses are referenced inside of EXP,
3644 and make sure assembler code with a label has been output for each one.
3645 Indicate whether an ADDR_EXPR has been encountered. */
3647 static void
3648 output_addressed_constants (tree exp)
3650 tree tem;
3652 /* Give the front-end a chance to convert VALUE to something that
3653 looks more like a constant to the back-end. */
3654 exp = lang_hooks.expand_constant (exp);
3656 switch (TREE_CODE (exp))
3658 case ADDR_EXPR:
3659 case FDESC_EXPR:
3660 /* Go inside any operations that get_inner_reference can handle and see
3661 if what's inside is a constant: no need to do anything here for
3662 addresses of variables or functions. */
3663 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
3664 tem = TREE_OPERAND (tem, 0))
3667 /* If we have an initialized CONST_DECL, retrieve the initializer. */
3668 if (TREE_CODE (tem) == CONST_DECL && DECL_INITIAL (tem))
3669 tem = DECL_INITIAL (tem);
3671 if (CONSTANT_CLASS_P (tem) || TREE_CODE (tem) == CONSTRUCTOR)
3672 output_constant_def (tem, 0);
3673 break;
3675 case PLUS_EXPR:
3676 case MINUS_EXPR:
3677 output_addressed_constants (TREE_OPERAND (exp, 1));
3678 /* Fall through. */
3680 case NOP_EXPR:
3681 case CONVERT_EXPR:
3682 case NON_LVALUE_EXPR:
3683 case VIEW_CONVERT_EXPR:
3684 output_addressed_constants (TREE_OPERAND (exp, 0));
3685 break;
3687 case CONSTRUCTOR:
3689 unsigned HOST_WIDE_INT idx;
3690 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, tem)
3691 if (tem != 0)
3692 output_addressed_constants (tem);
3694 break;
3696 default:
3697 break;
3701 /* Whether a constructor CTOR is a valid static constant initializer if all
3702 its elements are. This used to be internal to initializer_constant_valid_p
3703 and has been exposed to let other functions like categorize_ctor_elements
3704 evaluate the property while walking a constructor for other purposes. */
3706 bool
3707 constructor_static_from_elts_p (tree ctor)
3709 return (TREE_CONSTANT (ctor)
3710 && (TREE_CODE (TREE_TYPE (ctor)) == UNION_TYPE
3711 || TREE_CODE (TREE_TYPE (ctor)) == RECORD_TYPE)
3712 && !VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (ctor)));
3715 /* Return nonzero if VALUE is a valid constant-valued expression
3716 for use in initializing a static variable; one that can be an
3717 element of a "constant" initializer.
3719 Return null_pointer_node if the value is absolute;
3720 if it is relocatable, return the variable that determines the relocation.
3721 We assume that VALUE has been folded as much as possible;
3722 therefore, we do not need to check for such things as
3723 arithmetic-combinations of integers. */
3725 tree
3726 initializer_constant_valid_p (tree value, tree endtype)
3728 /* Give the front-end a chance to convert VALUE to something that
3729 looks more like a constant to the back-end. */
3730 value = lang_hooks.expand_constant (value);
3732 switch (TREE_CODE (value))
3734 case CONSTRUCTOR:
3735 if (constructor_static_from_elts_p (value))
3737 unsigned HOST_WIDE_INT idx;
3738 tree elt;
3739 bool absolute = true;
3741 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value), idx, elt)
3743 tree reloc;
3744 reloc = initializer_constant_valid_p (elt, TREE_TYPE (elt));
3745 if (!reloc)
3746 return NULL_TREE;
3747 if (reloc != null_pointer_node)
3748 absolute = false;
3750 /* For a non-absolute relocation, there is no single
3751 variable that can be "the variable that determines the
3752 relocation." */
3753 return absolute ? null_pointer_node : error_mark_node;
3756 return TREE_STATIC (value) ? null_pointer_node : NULL_TREE;
3758 case INTEGER_CST:
3759 case VECTOR_CST:
3760 case REAL_CST:
3761 case STRING_CST:
3762 case COMPLEX_CST:
3763 return null_pointer_node;
3765 case ADDR_EXPR:
3766 case FDESC_EXPR:
3767 value = staticp (TREE_OPERAND (value, 0));
3768 if (value)
3770 /* "&(*a).f" is like unto pointer arithmetic. If "a" turns out to
3771 be a constant, this is old-skool offsetof-like nonsense. */
3772 if (TREE_CODE (value) == INDIRECT_REF
3773 && TREE_CONSTANT (TREE_OPERAND (value, 0)))
3774 return null_pointer_node;
3775 /* Taking the address of a nested function involves a trampoline. */
3776 if (TREE_CODE (value) == FUNCTION_DECL
3777 && ((decl_function_context (value)
3778 && !DECL_NO_STATIC_CHAIN (value))
3779 || DECL_DLLIMPORT_P (value)))
3780 return NULL_TREE;
3781 /* "&{...}" requires a temporary to hold the constructed
3782 object. */
3783 if (TREE_CODE (value) == CONSTRUCTOR)
3784 return NULL_TREE;
3786 return value;
3788 case VIEW_CONVERT_EXPR:
3789 case NON_LVALUE_EXPR:
3790 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3792 case CONVERT_EXPR:
3793 case NOP_EXPR:
3795 tree src;
3796 tree src_type;
3797 tree dest_type;
3799 src = TREE_OPERAND (value, 0);
3800 src_type = TREE_TYPE (src);
3801 dest_type = TREE_TYPE (value);
3803 /* Allow conversions between pointer types, floating-point
3804 types, and offset types. */
3805 if ((POINTER_TYPE_P (dest_type) && POINTER_TYPE_P (src_type))
3806 || (FLOAT_TYPE_P (dest_type) && FLOAT_TYPE_P (src_type))
3807 || (TREE_CODE (dest_type) == OFFSET_TYPE
3808 && TREE_CODE (src_type) == OFFSET_TYPE))
3809 return initializer_constant_valid_p (src, endtype);
3811 /* Allow length-preserving conversions between integer types. */
3812 if (INTEGRAL_TYPE_P (dest_type) && INTEGRAL_TYPE_P (src_type)
3813 && (TYPE_PRECISION (dest_type) == TYPE_PRECISION (src_type)))
3814 return initializer_constant_valid_p (src, endtype);
3816 /* Allow conversions between other integer types only if
3817 explicit value. */
3818 if (INTEGRAL_TYPE_P (dest_type) && INTEGRAL_TYPE_P (src_type))
3820 tree inner = initializer_constant_valid_p (src, endtype);
3821 if (inner == null_pointer_node)
3822 return null_pointer_node;
3823 break;
3826 /* Allow (int) &foo provided int is as wide as a pointer. */
3827 if (INTEGRAL_TYPE_P (dest_type) && POINTER_TYPE_P (src_type)
3828 && (TYPE_PRECISION (dest_type) >= TYPE_PRECISION (src_type)))
3829 return initializer_constant_valid_p (src, endtype);
3831 /* Likewise conversions from int to pointers, but also allow
3832 conversions from 0. */
3833 if ((POINTER_TYPE_P (dest_type)
3834 || TREE_CODE (dest_type) == OFFSET_TYPE)
3835 && INTEGRAL_TYPE_P (src_type))
3837 if (TREE_CODE (src) == INTEGER_CST
3838 && TYPE_PRECISION (dest_type) >= TYPE_PRECISION (src_type))
3839 return null_pointer_node;
3840 if (integer_zerop (src))
3841 return null_pointer_node;
3842 else if (TYPE_PRECISION (dest_type) <= TYPE_PRECISION (src_type))
3843 return initializer_constant_valid_p (src, endtype);
3846 /* Allow conversions to struct or union types if the value
3847 inside is okay. */
3848 if (TREE_CODE (dest_type) == RECORD_TYPE
3849 || TREE_CODE (dest_type) == UNION_TYPE)
3850 return initializer_constant_valid_p (src, endtype);
3852 break;
3854 case PLUS_EXPR:
3855 if (! INTEGRAL_TYPE_P (endtype)
3856 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
3858 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
3859 endtype);
3860 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
3861 endtype);
3862 /* If either term is absolute, use the other terms relocation. */
3863 if (valid0 == null_pointer_node)
3864 return valid1;
3865 if (valid1 == null_pointer_node)
3866 return valid0;
3868 break;
3870 case MINUS_EXPR:
3871 if (! INTEGRAL_TYPE_P (endtype)
3872 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
3874 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
3875 endtype);
3876 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
3877 endtype);
3878 /* Win if second argument is absolute. */
3879 if (valid1 == null_pointer_node)
3880 return valid0;
3881 /* Win if both arguments have the same relocation.
3882 Then the value is absolute. */
3883 if (valid0 == valid1 && valid0 != 0)
3884 return null_pointer_node;
3886 /* Since GCC guarantees that string constants are unique in the
3887 generated code, a subtraction between two copies of the same
3888 constant string is absolute. */
3889 if (valid0 && TREE_CODE (valid0) == STRING_CST
3890 && valid1 && TREE_CODE (valid1) == STRING_CST
3891 && operand_equal_p (valid0, valid1, 1))
3892 return null_pointer_node;
3895 /* Support narrowing differences. */
3896 if (INTEGRAL_TYPE_P (endtype))
3898 tree op0, op1;
3900 op0 = TREE_OPERAND (value, 0);
3901 op1 = TREE_OPERAND (value, 1);
3903 /* Like STRIP_NOPS except allow the operand mode to widen.
3904 This works around a feature of fold that simplifies
3905 (int)(p1 - p2) to ((int)p1 - (int)p2) under the theory
3906 that the narrower operation is cheaper. */
3908 while (TREE_CODE (op0) == NOP_EXPR
3909 || TREE_CODE (op0) == CONVERT_EXPR
3910 || TREE_CODE (op0) == NON_LVALUE_EXPR)
3912 tree inner = TREE_OPERAND (op0, 0);
3913 if (inner == error_mark_node
3914 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
3915 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0)))
3916 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
3917 break;
3918 op0 = inner;
3921 while (TREE_CODE (op1) == NOP_EXPR
3922 || TREE_CODE (op1) == CONVERT_EXPR
3923 || TREE_CODE (op1) == NON_LVALUE_EXPR)
3925 tree inner = TREE_OPERAND (op1, 0);
3926 if (inner == error_mark_node
3927 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
3928 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op1)))
3929 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
3930 break;
3931 op1 = inner;
3934 op0 = initializer_constant_valid_p (op0, endtype);
3935 op1 = initializer_constant_valid_p (op1, endtype);
3937 /* Both initializers must be known. */
3938 if (op0 && op1)
3940 if (op0 == op1)
3941 return null_pointer_node;
3943 /* Support differences between labels. */
3944 if (TREE_CODE (op0) == LABEL_DECL
3945 && TREE_CODE (op1) == LABEL_DECL)
3946 return null_pointer_node;
3948 if (TREE_CODE (op0) == STRING_CST
3949 && TREE_CODE (op1) == STRING_CST
3950 && operand_equal_p (op0, op1, 1))
3951 return null_pointer_node;
3954 break;
3956 default:
3957 break;
3960 return 0;
3963 /* Output assembler code for constant EXP to FILE, with no label.
3964 This includes the pseudo-op such as ".int" or ".byte", and a newline.
3965 Assumes output_addressed_constants has been done on EXP already.
3967 Generate exactly SIZE bytes of assembler data, padding at the end
3968 with zeros if necessary. SIZE must always be specified.
3970 SIZE is important for structure constructors,
3971 since trailing members may have been omitted from the constructor.
3972 It is also important for initialization of arrays from string constants
3973 since the full length of the string constant might not be wanted.
3974 It is also needed for initialization of unions, where the initializer's
3975 type is just one member, and that may not be as long as the union.
3977 There a case in which we would fail to output exactly SIZE bytes:
3978 for a structure constructor that wants to produce more than SIZE bytes.
3979 But such constructors will never be generated for any possible input.
3981 ALIGN is the alignment of the data in bits. */
3983 void
3984 output_constant (tree exp, unsigned HOST_WIDE_INT size, unsigned int align)
3986 enum tree_code code;
3987 unsigned HOST_WIDE_INT thissize;
3989 /* Some front-ends use constants other than the standard language-independent
3990 varieties, but which may still be output directly. Give the front-end a
3991 chance to convert EXP to a language-independent representation. */
3992 exp = lang_hooks.expand_constant (exp);
3994 if (size == 0 || flag_syntax_only)
3995 return;
3997 /* See if we're trying to initialize a pointer in a non-default mode
3998 to the address of some declaration somewhere. If the target says
3999 the mode is valid for pointers, assume the target has a way of
4000 resolving it. */
4001 if (TREE_CODE (exp) == NOP_EXPR
4002 && POINTER_TYPE_P (TREE_TYPE (exp))
4003 && targetm.valid_pointer_mode (TYPE_MODE (TREE_TYPE (exp))))
4005 tree saved_type = TREE_TYPE (exp);
4007 /* Peel off any intermediate conversions-to-pointer for valid
4008 pointer modes. */
4009 while (TREE_CODE (exp) == NOP_EXPR
4010 && POINTER_TYPE_P (TREE_TYPE (exp))
4011 && targetm.valid_pointer_mode (TYPE_MODE (TREE_TYPE (exp))))
4012 exp = TREE_OPERAND (exp, 0);
4014 /* If what we're left with is the address of something, we can
4015 convert the address to the final type and output it that
4016 way. */
4017 if (TREE_CODE (exp) == ADDR_EXPR)
4018 exp = build1 (ADDR_EXPR, saved_type, TREE_OPERAND (exp, 0));
4019 /* Likewise for constant ints. */
4020 else if (TREE_CODE (exp) == INTEGER_CST)
4021 exp = build_int_cst_wide (saved_type, TREE_INT_CST_LOW (exp),
4022 TREE_INT_CST_HIGH (exp));
4026 /* Eliminate any conversions since we'll be outputting the underlying
4027 constant. */
4028 while (TREE_CODE (exp) == NOP_EXPR || TREE_CODE (exp) == CONVERT_EXPR
4029 || TREE_CODE (exp) == NON_LVALUE_EXPR
4030 || TREE_CODE (exp) == VIEW_CONVERT_EXPR)
4032 HOST_WIDE_INT type_size = int_size_in_bytes (TREE_TYPE (exp));
4033 HOST_WIDE_INT op_size = int_size_in_bytes (TREE_TYPE (TREE_OPERAND (exp, 0)));
4035 /* Make sure eliminating the conversion is really a no-op, except with
4036 VIEW_CONVERT_EXPRs to allow for wild Ada unchecked conversions and
4037 union types to allow for Ada unchecked unions. */
4038 if (type_size > op_size
4039 && TREE_CODE (exp) != VIEW_CONVERT_EXPR
4040 && TREE_CODE (TREE_TYPE (exp)) != UNION_TYPE)
4041 /* Keep the conversion. */
4042 break;
4043 else
4044 exp = TREE_OPERAND (exp, 0);
4047 code = TREE_CODE (TREE_TYPE (exp));
4048 thissize = int_size_in_bytes (TREE_TYPE (exp));
4050 /* Give the front end another chance to expand constants. */
4051 exp = lang_hooks.expand_constant (exp);
4053 /* Allow a constructor with no elements for any data type.
4054 This means to fill the space with zeros. */
4055 if (TREE_CODE (exp) == CONSTRUCTOR
4056 && VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (exp)))
4058 assemble_zeros (size);
4059 return;
4062 if (TREE_CODE (exp) == FDESC_EXPR)
4064 #ifdef ASM_OUTPUT_FDESC
4065 HOST_WIDE_INT part = tree_low_cst (TREE_OPERAND (exp, 1), 0);
4066 tree decl = TREE_OPERAND (exp, 0);
4067 ASM_OUTPUT_FDESC (asm_out_file, decl, part);
4068 #else
4069 gcc_unreachable ();
4070 #endif
4071 return;
4074 /* Now output the underlying data. If we've handling the padding, return.
4075 Otherwise, break and ensure SIZE is the size written. */
4076 switch (code)
4078 case BOOLEAN_TYPE:
4079 case INTEGER_TYPE:
4080 case ENUMERAL_TYPE:
4081 case POINTER_TYPE:
4082 case REFERENCE_TYPE:
4083 case OFFSET_TYPE:
4084 if (! assemble_integer (expand_expr (exp, NULL_RTX, VOIDmode,
4085 EXPAND_INITIALIZER),
4086 MIN (size, thissize), align, 0))
4087 error ("initializer for integer value is too complicated");
4088 break;
4090 case REAL_TYPE:
4091 if (TREE_CODE (exp) != REAL_CST)
4092 error ("initializer for floating value is not a floating constant");
4094 assemble_real (TREE_REAL_CST (exp), TYPE_MODE (TREE_TYPE (exp)), align);
4095 break;
4097 case COMPLEX_TYPE:
4098 output_constant (TREE_REALPART (exp), thissize / 2, align);
4099 output_constant (TREE_IMAGPART (exp), thissize / 2,
4100 min_align (align, BITS_PER_UNIT * (thissize / 2)));
4101 break;
4103 case ARRAY_TYPE:
4104 case VECTOR_TYPE:
4105 switch (TREE_CODE (exp))
4107 case CONSTRUCTOR:
4108 output_constructor (exp, size, align);
4109 return;
4110 case STRING_CST:
4111 thissize = MIN ((unsigned HOST_WIDE_INT)TREE_STRING_LENGTH (exp),
4112 size);
4113 assemble_string (TREE_STRING_POINTER (exp), thissize);
4114 break;
4116 case VECTOR_CST:
4118 int elt_size;
4119 tree link;
4120 unsigned int nalign;
4121 enum machine_mode inner;
4123 inner = TYPE_MODE (TREE_TYPE (TREE_TYPE (exp)));
4124 nalign = MIN (align, GET_MODE_ALIGNMENT (inner));
4126 elt_size = GET_MODE_SIZE (inner);
4128 link = TREE_VECTOR_CST_ELTS (exp);
4129 output_constant (TREE_VALUE (link), elt_size, align);
4130 thissize = elt_size;
4131 while ((link = TREE_CHAIN (link)) != NULL)
4133 output_constant (TREE_VALUE (link), elt_size, nalign);
4134 thissize += elt_size;
4136 break;
4138 default:
4139 gcc_unreachable ();
4141 break;
4143 case RECORD_TYPE:
4144 case UNION_TYPE:
4145 gcc_assert (TREE_CODE (exp) == CONSTRUCTOR);
4146 output_constructor (exp, size, align);
4147 return;
4149 case ERROR_MARK:
4150 return;
4152 default:
4153 gcc_unreachable ();
4156 if (size > thissize)
4157 assemble_zeros (size - thissize);
4161 /* Subroutine of output_constructor, used for computing the size of
4162 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
4163 type with an unspecified upper bound. */
4165 static unsigned HOST_WIDE_INT
4166 array_size_for_constructor (tree val)
4168 tree max_index, i;
4169 unsigned HOST_WIDE_INT cnt;
4170 tree index, value, tmp;
4172 /* This code used to attempt to handle string constants that are not
4173 arrays of single-bytes, but nothing else does, so there's no point in
4174 doing it here. */
4175 if (TREE_CODE (val) == STRING_CST)
4176 return TREE_STRING_LENGTH (val);
4178 max_index = NULL_TREE;
4179 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (val), cnt, index, value)
4181 if (TREE_CODE (index) == RANGE_EXPR)
4182 index = TREE_OPERAND (index, 1);
4183 if (max_index == NULL_TREE || tree_int_cst_lt (max_index, index))
4184 max_index = index;
4187 if (max_index == NULL_TREE)
4188 return 0;
4190 /* Compute the total number of array elements. */
4191 tmp = TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val)));
4192 i = size_binop (MINUS_EXPR, fold_convert (sizetype, max_index),
4193 fold_convert (sizetype, tmp));
4194 i = size_binop (PLUS_EXPR, i, build_int_cst (sizetype, 1));
4196 /* Multiply by the array element unit size to find number of bytes. */
4197 i = size_binop (MULT_EXPR, i, TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val))));
4199 return tree_low_cst (i, 1);
4202 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
4203 Generate at least SIZE bytes, padding if necessary. */
4205 static void
4206 output_constructor (tree exp, unsigned HOST_WIDE_INT size,
4207 unsigned int align)
4209 tree type = TREE_TYPE (exp);
4210 tree field = 0;
4211 tree min_index = 0;
4212 /* Number of bytes output or skipped so far.
4213 In other words, current position within the constructor. */
4214 HOST_WIDE_INT total_bytes = 0;
4215 /* Nonzero means BYTE contains part of a byte, to be output. */
4216 int byte_buffer_in_use = 0;
4217 int byte = 0;
4218 unsigned HOST_WIDE_INT cnt;
4219 constructor_elt *ce;
4221 gcc_assert (HOST_BITS_PER_WIDE_INT >= BITS_PER_UNIT);
4223 if (TREE_CODE (type) == RECORD_TYPE)
4224 field = TYPE_FIELDS (type);
4226 if (TREE_CODE (type) == ARRAY_TYPE
4227 && TYPE_DOMAIN (type) != 0)
4228 min_index = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
4230 /* As LINK goes through the elements of the constant,
4231 FIELD goes through the structure fields, if the constant is a structure.
4232 if the constant is a union, then we override this,
4233 by getting the field from the TREE_LIST element.
4234 But the constant could also be an array. Then FIELD is zero.
4236 There is always a maximum of one element in the chain LINK for unions
4237 (even if the initializer in a source program incorrectly contains
4238 more one). */
4239 for (cnt = 0;
4240 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (exp), cnt, ce);
4241 cnt++, field = field ? TREE_CHAIN (field) : 0)
4243 tree val = ce->value;
4244 tree index = 0;
4246 /* The element in a union constructor specifies the proper field
4247 or index. */
4248 if ((TREE_CODE (type) == RECORD_TYPE || TREE_CODE (type) == UNION_TYPE
4249 || TREE_CODE (type) == QUAL_UNION_TYPE)
4250 && ce->index != 0)
4251 field = ce->index;
4253 else if (TREE_CODE (type) == ARRAY_TYPE)
4254 index = ce->index;
4256 #ifdef ASM_COMMENT_START
4257 if (field && flag_verbose_asm)
4258 fprintf (asm_out_file, "%s %s:\n",
4259 ASM_COMMENT_START,
4260 DECL_NAME (field)
4261 ? IDENTIFIER_POINTER (DECL_NAME (field))
4262 : "<anonymous>");
4263 #endif
4265 /* Eliminate the marker that makes a cast not be an lvalue. */
4266 if (val != 0)
4267 STRIP_NOPS (val);
4269 if (index && TREE_CODE (index) == RANGE_EXPR)
4271 unsigned HOST_WIDE_INT fieldsize
4272 = int_size_in_bytes (TREE_TYPE (type));
4273 HOST_WIDE_INT lo_index = tree_low_cst (TREE_OPERAND (index, 0), 0);
4274 HOST_WIDE_INT hi_index = tree_low_cst (TREE_OPERAND (index, 1), 0);
4275 HOST_WIDE_INT index;
4276 unsigned int align2 = min_align (align, fieldsize * BITS_PER_UNIT);
4278 for (index = lo_index; index <= hi_index; index++)
4280 /* Output the element's initial value. */
4281 if (val == 0)
4282 assemble_zeros (fieldsize);
4283 else
4284 output_constant (val, fieldsize, align2);
4286 /* Count its size. */
4287 total_bytes += fieldsize;
4290 else if (field == 0 || !DECL_BIT_FIELD (field))
4292 /* An element that is not a bit-field. */
4294 unsigned HOST_WIDE_INT fieldsize;
4295 /* Since this structure is static,
4296 we know the positions are constant. */
4297 HOST_WIDE_INT pos = field ? int_byte_position (field) : 0;
4298 unsigned int align2;
4300 if (index != 0)
4301 pos = (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (val)), 1)
4302 * (tree_low_cst (index, 0) - tree_low_cst (min_index, 0)));
4304 /* Output any buffered-up bit-fields preceding this element. */
4305 if (byte_buffer_in_use)
4307 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4308 total_bytes++;
4309 byte_buffer_in_use = 0;
4312 /* Advance to offset of this element.
4313 Note no alignment needed in an array, since that is guaranteed
4314 if each element has the proper size. */
4315 if ((field != 0 || index != 0) && pos != total_bytes)
4317 gcc_assert (pos >= total_bytes);
4318 assemble_zeros (pos - total_bytes);
4319 total_bytes = pos;
4322 /* Find the alignment of this element. */
4323 align2 = min_align (align, BITS_PER_UNIT * pos);
4325 /* Determine size this element should occupy. */
4326 if (field)
4328 fieldsize = 0;
4330 /* If this is an array with an unspecified upper bound,
4331 the initializer determines the size. */
4332 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4333 but we cannot do this until the deprecated support for
4334 initializing zero-length array members is removed. */
4335 if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
4336 && TYPE_DOMAIN (TREE_TYPE (field))
4337 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field))))
4339 fieldsize = array_size_for_constructor (val);
4340 /* Given a non-empty initialization, this field had
4341 better be last. */
4342 gcc_assert (!fieldsize || !TREE_CHAIN (field));
4344 else if (DECL_SIZE_UNIT (field))
4346 /* ??? This can't be right. If the decl size overflows
4347 a host integer we will silently emit no data. */
4348 if (host_integerp (DECL_SIZE_UNIT (field), 1))
4349 fieldsize = tree_low_cst (DECL_SIZE_UNIT (field), 1);
4352 else
4353 fieldsize = int_size_in_bytes (TREE_TYPE (type));
4355 /* Output the element's initial value. */
4356 if (val == 0)
4357 assemble_zeros (fieldsize);
4358 else
4359 output_constant (val, fieldsize, align2);
4361 /* Count its size. */
4362 total_bytes += fieldsize;
4364 else if (val != 0 && TREE_CODE (val) != INTEGER_CST)
4365 error ("invalid initial value for member %qs",
4366 IDENTIFIER_POINTER (DECL_NAME (field)));
4367 else
4369 /* Element that is a bit-field. */
4371 HOST_WIDE_INT next_offset = int_bit_position (field);
4372 HOST_WIDE_INT end_offset
4373 = (next_offset + tree_low_cst (DECL_SIZE (field), 1));
4375 if (val == 0)
4376 val = integer_zero_node;
4378 /* If this field does not start in this (or, next) byte,
4379 skip some bytes. */
4380 if (next_offset / BITS_PER_UNIT != total_bytes)
4382 /* Output remnant of any bit field in previous bytes. */
4383 if (byte_buffer_in_use)
4385 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4386 total_bytes++;
4387 byte_buffer_in_use = 0;
4390 /* If still not at proper byte, advance to there. */
4391 if (next_offset / BITS_PER_UNIT != total_bytes)
4393 gcc_assert (next_offset / BITS_PER_UNIT >= total_bytes);
4394 assemble_zeros (next_offset / BITS_PER_UNIT - total_bytes);
4395 total_bytes = next_offset / BITS_PER_UNIT;
4399 if (! byte_buffer_in_use)
4400 byte = 0;
4402 /* We must split the element into pieces that fall within
4403 separate bytes, and combine each byte with previous or
4404 following bit-fields. */
4406 /* next_offset is the offset n fbits from the beginning of
4407 the structure to the next bit of this element to be processed.
4408 end_offset is the offset of the first bit past the end of
4409 this element. */
4410 while (next_offset < end_offset)
4412 int this_time;
4413 int shift;
4414 HOST_WIDE_INT value;
4415 HOST_WIDE_INT next_byte = next_offset / BITS_PER_UNIT;
4416 HOST_WIDE_INT next_bit = next_offset % BITS_PER_UNIT;
4418 /* Advance from byte to byte
4419 within this element when necessary. */
4420 while (next_byte != total_bytes)
4422 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4423 total_bytes++;
4424 byte = 0;
4427 /* Number of bits we can process at once
4428 (all part of the same byte). */
4429 this_time = MIN (end_offset - next_offset,
4430 BITS_PER_UNIT - next_bit);
4431 if (BYTES_BIG_ENDIAN)
4433 /* On big-endian machine, take the most significant bits
4434 first (of the bits that are significant)
4435 and put them into bytes from the most significant end. */
4436 shift = end_offset - next_offset - this_time;
4438 /* Don't try to take a bunch of bits that cross
4439 the word boundary in the INTEGER_CST. We can
4440 only select bits from the LOW or HIGH part
4441 not from both. */
4442 if (shift < HOST_BITS_PER_WIDE_INT
4443 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4445 this_time = shift + this_time - HOST_BITS_PER_WIDE_INT;
4446 shift = HOST_BITS_PER_WIDE_INT;
4449 /* Now get the bits from the appropriate constant word. */
4450 if (shift < HOST_BITS_PER_WIDE_INT)
4451 value = TREE_INT_CST_LOW (val);
4452 else
4454 gcc_assert (shift < 2 * HOST_BITS_PER_WIDE_INT);
4455 value = TREE_INT_CST_HIGH (val);
4456 shift -= HOST_BITS_PER_WIDE_INT;
4459 /* Get the result. This works only when:
4460 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4461 byte |= (((value >> shift)
4462 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4463 << (BITS_PER_UNIT - this_time - next_bit));
4465 else
4467 /* On little-endian machines,
4468 take first the least significant bits of the value
4469 and pack them starting at the least significant
4470 bits of the bytes. */
4471 shift = next_offset - int_bit_position (field);
4473 /* Don't try to take a bunch of bits that cross
4474 the word boundary in the INTEGER_CST. We can
4475 only select bits from the LOW or HIGH part
4476 not from both. */
4477 if (shift < HOST_BITS_PER_WIDE_INT
4478 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4479 this_time = (HOST_BITS_PER_WIDE_INT - shift);
4481 /* Now get the bits from the appropriate constant word. */
4482 if (shift < HOST_BITS_PER_WIDE_INT)
4483 value = TREE_INT_CST_LOW (val);
4484 else
4486 gcc_assert (shift < 2 * HOST_BITS_PER_WIDE_INT);
4487 value = TREE_INT_CST_HIGH (val);
4488 shift -= HOST_BITS_PER_WIDE_INT;
4491 /* Get the result. This works only when:
4492 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4493 byte |= (((value >> shift)
4494 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4495 << next_bit);
4498 next_offset += this_time;
4499 byte_buffer_in_use = 1;
4504 if (byte_buffer_in_use)
4506 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4507 total_bytes++;
4510 if ((unsigned HOST_WIDE_INT)total_bytes < size)
4511 assemble_zeros (size - total_bytes);
4514 /* This TREE_LIST contains any weak symbol declarations waiting
4515 to be emitted. */
4516 static GTY(()) tree weak_decls;
4518 /* Mark DECL as weak. */
4520 static void
4521 mark_weak (tree decl)
4523 DECL_WEAK (decl) = 1;
4525 if (DECL_RTL_SET_P (decl)
4526 && MEM_P (DECL_RTL (decl))
4527 && XEXP (DECL_RTL (decl), 0)
4528 && GET_CODE (XEXP (DECL_RTL (decl), 0)) == SYMBOL_REF)
4529 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl), 0)) = 1;
4532 /* Merge weak status between NEWDECL and OLDDECL. */
4534 void
4535 merge_weak (tree newdecl, tree olddecl)
4537 if (DECL_WEAK (newdecl) == DECL_WEAK (olddecl))
4539 if (DECL_WEAK (newdecl) && SUPPORTS_WEAK)
4541 tree *pwd;
4542 /* We put the NEWDECL on the weak_decls list at some point
4543 and OLDDECL as well. Keep just OLDDECL on the list. */
4544 for (pwd = &weak_decls; *pwd; pwd = &TREE_CHAIN (*pwd))
4545 if (TREE_VALUE (*pwd) == newdecl)
4547 *pwd = TREE_CHAIN (*pwd);
4548 break;
4551 return;
4554 if (DECL_WEAK (newdecl))
4556 tree wd;
4558 /* NEWDECL is weak, but OLDDECL is not. */
4560 /* If we already output the OLDDECL, we're in trouble; we can't
4561 go back and make it weak. This error cannot caught in
4562 declare_weak because the NEWDECL and OLDDECL was not yet
4563 been merged; therefore, TREE_ASM_WRITTEN was not set. */
4564 if (TREE_ASM_WRITTEN (olddecl))
4565 error ("weak declaration of %q+D must precede definition",
4566 newdecl);
4568 /* If we've already generated rtl referencing OLDDECL, we may
4569 have done so in a way that will not function properly with
4570 a weak symbol. */
4571 else if (TREE_USED (olddecl)
4572 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl)))
4573 warning (0, "weak declaration of %q+D after first use results "
4574 "in unspecified behavior", newdecl);
4576 if (SUPPORTS_WEAK)
4578 /* We put the NEWDECL on the weak_decls list at some point.
4579 Replace it with the OLDDECL. */
4580 for (wd = weak_decls; wd; wd = TREE_CHAIN (wd))
4581 if (TREE_VALUE (wd) == newdecl)
4583 TREE_VALUE (wd) = olddecl;
4584 break;
4586 /* We may not find the entry on the list. If NEWDECL is a
4587 weak alias, then we will have already called
4588 globalize_decl to remove the entry; in that case, we do
4589 not need to do anything. */
4592 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
4593 mark_weak (olddecl);
4595 else
4596 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
4597 weak. Just update NEWDECL to indicate that it's weak too. */
4598 mark_weak (newdecl);
4601 /* Declare DECL to be a weak symbol. */
4603 void
4604 declare_weak (tree decl)
4606 if (! TREE_PUBLIC (decl))
4607 error ("weak declaration of %q+D must be public", decl);
4608 else if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
4609 error ("weak declaration of %q+D must precede definition", decl);
4610 else if (SUPPORTS_WEAK)
4612 if (! DECL_WEAK (decl))
4613 weak_decls = tree_cons (NULL, decl, weak_decls);
4615 else
4616 warning (0, "weak declaration of %q+D not supported", decl);
4618 mark_weak (decl);
4621 static void
4622 weak_finish_1 (tree decl)
4624 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
4625 const char *const name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
4626 #endif
4628 if (! TREE_USED (decl))
4629 return;
4631 #ifdef ASM_WEAKEN_DECL
4632 ASM_WEAKEN_DECL (asm_out_file, decl, name, NULL);
4633 #else
4634 #ifdef ASM_WEAKEN_LABEL
4635 ASM_WEAKEN_LABEL (asm_out_file, name);
4636 #else
4637 #ifdef ASM_OUTPUT_WEAK_ALIAS
4639 static bool warn_once = 0;
4640 if (! warn_once)
4642 warning (0, "only weak aliases are supported in this configuration");
4643 warn_once = 1;
4645 return;
4647 #endif
4648 #endif
4649 #endif
4652 /* This TREE_LIST contains weakref targets. */
4654 static GTY(()) tree weakref_targets;
4656 /* Forward declaration. */
4657 static tree find_decl_and_mark_needed (tree decl, tree target);
4659 /* Emit any pending weak declarations. */
4661 void
4662 weak_finish (void)
4664 tree t;
4666 for (t = weakref_targets; t; t = TREE_CHAIN (t))
4668 tree alias_decl = TREE_PURPOSE (t);
4669 tree target = ultimate_transparent_alias_target (&TREE_VALUE (t));
4671 if (! TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (alias_decl)))
4672 /* Remove alias_decl from the weak list, but leave entries for
4673 the target alone. */
4674 target = NULL_TREE;
4675 #ifndef ASM_OUTPUT_WEAKREF
4676 else if (! TREE_SYMBOL_REFERENCED (target))
4678 /* Use ASM_WEAKEN_LABEL only if ASM_WEAKEN_DECL is not
4679 defined, otherwise we and weak_finish_1 would use a
4680 different macros. */
4681 # if defined ASM_WEAKEN_LABEL && ! defined ASM_WEAKEN_DECL
4682 ASM_WEAKEN_LABEL (asm_out_file, IDENTIFIER_POINTER (target));
4683 # else
4684 tree decl = find_decl_and_mark_needed (alias_decl, target);
4686 if (! decl)
4688 decl = build_decl (TREE_CODE (alias_decl), target,
4689 TREE_TYPE (alias_decl));
4691 DECL_EXTERNAL (decl) = 1;
4692 TREE_PUBLIC (decl) = 1;
4693 DECL_ARTIFICIAL (decl) = 1;
4694 TREE_NOTHROW (decl) = TREE_NOTHROW (alias_decl);
4695 TREE_USED (decl) = 1;
4698 weak_finish_1 (decl);
4699 # endif
4701 #endif
4704 tree *p;
4705 tree t2;
4707 /* Remove the alias and the target from the pending weak list
4708 so that we do not emit any .weak directives for the former,
4709 nor multiple .weak directives for the latter. */
4710 for (p = &weak_decls; (t2 = *p) ; )
4712 if (TREE_VALUE (t2) == alias_decl
4713 || target == DECL_ASSEMBLER_NAME (TREE_VALUE (t2)))
4714 *p = TREE_CHAIN (t2);
4715 else
4716 p = &TREE_CHAIN (t2);
4719 /* Remove other weakrefs to the same target, to speed things up. */
4720 for (p = &TREE_CHAIN (t); (t2 = *p) ; )
4722 if (target == ultimate_transparent_alias_target (&TREE_VALUE (t2)))
4723 *p = TREE_CHAIN (t2);
4724 else
4725 p = &TREE_CHAIN (t2);
4730 for (t = weak_decls; t; t = TREE_CHAIN (t))
4732 tree decl = TREE_VALUE (t);
4734 weak_finish_1 (decl);
4738 /* Emit the assembly bits to indicate that DECL is globally visible. */
4740 static void
4741 globalize_decl (tree decl)
4744 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
4745 if (DECL_WEAK (decl))
4747 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
4748 tree *p, t;
4750 #ifdef ASM_WEAKEN_DECL
4751 ASM_WEAKEN_DECL (asm_out_file, decl, name, 0);
4752 #else
4753 ASM_WEAKEN_LABEL (asm_out_file, name);
4754 #endif
4756 /* Remove this function from the pending weak list so that
4757 we do not emit multiple .weak directives for it. */
4758 for (p = &weak_decls; (t = *p) ; )
4760 if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
4761 *p = TREE_CHAIN (t);
4762 else
4763 p = &TREE_CHAIN (t);
4766 /* Remove weakrefs to the same target from the pending weakref
4767 list, for the same reason. */
4768 for (p = &weakref_targets; (t = *p) ; )
4770 if (DECL_ASSEMBLER_NAME (decl)
4771 == ultimate_transparent_alias_target (&TREE_VALUE (t)))
4772 *p = TREE_CHAIN (t);
4773 else
4774 p = &TREE_CHAIN (t);
4777 return;
4779 #endif
4781 targetm.asm_out.globalize_decl_name (asm_out_file, decl);
4784 /* We have to be able to tell cgraph about the needed-ness of the target
4785 of an alias. This requires that the decl have been defined. Aliases
4786 that precede their definition have to be queued for later processing. */
4788 typedef struct alias_pair GTY(())
4790 tree decl;
4791 tree target;
4792 } alias_pair;
4794 /* Define gc'd vector type. */
4795 DEF_VEC_O(alias_pair);
4796 DEF_VEC_ALLOC_O(alias_pair,gc);
4798 static GTY(()) VEC(alias_pair,gc) *alias_pairs;
4800 /* Given an assembly name, find the decl it is associated with. At the
4801 same time, mark it needed for cgraph. */
4803 static tree
4804 find_decl_and_mark_needed (tree decl, tree target)
4806 struct cgraph_node *fnode = NULL;
4807 struct varpool_node *vnode = NULL;
4809 if (TREE_CODE (decl) == FUNCTION_DECL)
4811 fnode = cgraph_node_for_asm (target);
4812 if (fnode == NULL)
4813 vnode = varpool_node_for_asm (target);
4815 else
4817 vnode = varpool_node_for_asm (target);
4818 if (vnode == NULL)
4819 fnode = cgraph_node_for_asm (target);
4822 if (fnode)
4824 /* We can't mark function nodes as used after cgraph global info
4825 is finished. This wouldn't generally be necessary, but C++
4826 virtual table thunks are introduced late in the game and
4827 might seem like they need marking, although in fact they
4828 don't. */
4829 if (! cgraph_global_info_ready)
4830 cgraph_mark_needed_node (fnode);
4831 return fnode->decl;
4833 else if (vnode)
4835 varpool_mark_needed_node (vnode);
4836 return vnode->decl;
4838 else
4839 return NULL_TREE;
4842 /* Output the assembler code for a define (equate) using ASM_OUTPUT_DEF
4843 or ASM_OUTPUT_DEF_FROM_DECLS. The function defines the symbol whose
4844 tree node is DECL to have the value of the tree node TARGET. */
4846 static void
4847 do_assemble_alias (tree decl, tree target)
4849 if (TREE_ASM_WRITTEN (decl))
4850 return;
4852 TREE_ASM_WRITTEN (decl) = 1;
4853 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl)) = 1;
4855 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl)))
4857 ultimate_transparent_alias_target (&target);
4859 if (!TREE_SYMBOL_REFERENCED (target))
4860 weakref_targets = tree_cons (decl, target, weakref_targets);
4862 #ifdef ASM_OUTPUT_WEAKREF
4863 ASM_OUTPUT_WEAKREF (asm_out_file, decl,
4864 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)),
4865 IDENTIFIER_POINTER (target));
4866 #else
4867 if (!SUPPORTS_WEAK)
4869 error ("%Jweakref is not supported in this configuration", decl);
4870 return;
4872 #endif
4873 return;
4876 #ifdef ASM_OUTPUT_DEF
4877 /* Make name accessible from other files, if appropriate. */
4879 if (TREE_PUBLIC (decl))
4881 globalize_decl (decl);
4882 maybe_assemble_visibility (decl);
4885 # ifdef ASM_OUTPUT_DEF_FROM_DECLS
4886 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file, decl, target);
4887 # else
4888 ASM_OUTPUT_DEF (asm_out_file,
4889 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)),
4890 IDENTIFIER_POINTER (target));
4891 # endif
4892 #elif defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
4894 const char *name;
4895 tree *p, t;
4897 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
4898 # ifdef ASM_WEAKEN_DECL
4899 ASM_WEAKEN_DECL (asm_out_file, decl, name, IDENTIFIER_POINTER (target));
4900 # else
4901 ASM_OUTPUT_WEAK_ALIAS (asm_out_file, name, IDENTIFIER_POINTER (target));
4902 # endif
4903 /* Remove this function from the pending weak list so that
4904 we do not emit multiple .weak directives for it. */
4905 for (p = &weak_decls; (t = *p) ; )
4906 if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
4907 *p = TREE_CHAIN (t);
4908 else
4909 p = &TREE_CHAIN (t);
4911 /* Remove weakrefs to the same target from the pending weakref
4912 list, for the same reason. */
4913 for (p = &weakref_targets; (t = *p) ; )
4915 if (DECL_ASSEMBLER_NAME (decl)
4916 == ultimate_transparent_alias_target (&TREE_VALUE (t)))
4917 *p = TREE_CHAIN (t);
4918 else
4919 p = &TREE_CHAIN (t);
4922 #endif
4925 /* First pass of completing pending aliases. Make sure that cgraph knows
4926 which symbols will be required. */
4928 void
4929 finish_aliases_1 (void)
4931 unsigned i;
4932 alias_pair *p;
4934 for (i = 0; VEC_iterate (alias_pair, alias_pairs, i, p); i++)
4936 tree target_decl;
4938 target_decl = find_decl_and_mark_needed (p->decl, p->target);
4939 if (target_decl == NULL)
4941 if (! lookup_attribute ("weakref", DECL_ATTRIBUTES (p->decl)))
4942 error ("%q+D aliased to undefined symbol %qs",
4943 p->decl, IDENTIFIER_POINTER (p->target));
4945 else if (DECL_EXTERNAL (target_decl)
4946 && ! lookup_attribute ("weakref", DECL_ATTRIBUTES (p->decl)))
4947 error ("%q+D aliased to external symbol %qs",
4948 p->decl, IDENTIFIER_POINTER (p->target));
4952 /* Second pass of completing pending aliases. Emit the actual assembly.
4953 This happens at the end of compilation and thus it is assured that the
4954 target symbol has been emitted. */
4956 void
4957 finish_aliases_2 (void)
4959 unsigned i;
4960 alias_pair *p;
4962 for (i = 0; VEC_iterate (alias_pair, alias_pairs, i, p); i++)
4963 do_assemble_alias (p->decl, p->target);
4965 VEC_truncate (alias_pair, alias_pairs, 0);
4968 /* Emit an assembler directive to make the symbol for DECL an alias to
4969 the symbol for TARGET. */
4971 void
4972 assemble_alias (tree decl, tree target)
4974 tree target_decl;
4975 bool is_weakref = false;
4977 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl)))
4979 tree alias = DECL_ASSEMBLER_NAME (decl);
4981 is_weakref = true;
4983 ultimate_transparent_alias_target (&target);
4985 if (alias == target)
4986 error ("weakref %q+D ultimately targets itself", decl);
4987 else
4989 #ifndef ASM_OUTPUT_WEAKREF
4990 IDENTIFIER_TRANSPARENT_ALIAS (alias) = 1;
4991 TREE_CHAIN (alias) = target;
4992 #endif
4994 if (TREE_PUBLIC (decl))
4995 error ("weakref %q+D must have static linkage", decl);
4997 else
4999 #if !defined (ASM_OUTPUT_DEF)
5000 # if !defined(ASM_OUTPUT_WEAK_ALIAS) && !defined (ASM_WEAKEN_DECL)
5001 error ("%Jalias definitions not supported in this configuration", decl);
5002 return;
5003 # else
5004 if (!DECL_WEAK (decl))
5006 error ("%Jonly weak aliases are supported in this configuration", decl);
5007 return;
5009 # endif
5010 #endif
5013 /* We must force creation of DECL_RTL for debug info generation, even though
5014 we don't use it here. */
5015 make_decl_rtl (decl);
5016 TREE_USED (decl) = 1;
5018 /* A quirk of the initial implementation of aliases required that the user
5019 add "extern" to all of them. Which is silly, but now historical. Do
5020 note that the symbol is in fact locally defined. */
5021 if (! is_weakref)
5022 DECL_EXTERNAL (decl) = 0;
5024 /* Allow aliases to aliases. */
5025 if (TREE_CODE (decl) == FUNCTION_DECL)
5026 cgraph_node (decl)->alias = true;
5027 else
5028 varpool_node (decl)->alias = true;
5030 /* If the target has already been emitted, we don't have to queue the
5031 alias. This saves a tad o memory. */
5032 target_decl = find_decl_and_mark_needed (decl, target);
5033 if (target_decl && TREE_ASM_WRITTEN (target_decl))
5034 do_assemble_alias (decl, target);
5035 else
5037 alias_pair *p = VEC_safe_push (alias_pair, gc, alias_pairs, NULL);
5038 p->decl = decl;
5039 p->target = target;
5043 /* Emit an assembler directive to set symbol for DECL visibility to
5044 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
5046 void
5047 default_assemble_visibility (tree decl, int vis)
5049 static const char * const visibility_types[] = {
5050 NULL, "protected", "hidden", "internal"
5053 const char *name, *type;
5055 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5056 type = visibility_types[vis];
5058 #ifdef HAVE_GAS_HIDDEN
5059 fprintf (asm_out_file, "\t.%s\t", type);
5060 assemble_name (asm_out_file, name);
5061 fprintf (asm_out_file, "\n");
5062 #else
5063 warning (OPT_Wattributes, "visibility attribute not supported "
5064 "in this configuration; ignored");
5065 #endif
5068 /* A helper function to call assemble_visibility when needed for a decl. */
5071 maybe_assemble_visibility (tree decl)
5073 enum symbol_visibility vis = DECL_VISIBILITY (decl);
5075 if (vis != VISIBILITY_DEFAULT)
5077 targetm.asm_out.visibility (decl, vis);
5078 return 1;
5080 else
5081 return 0;
5084 /* Returns 1 if the target configuration supports defining public symbols
5085 so that one of them will be chosen at link time instead of generating a
5086 multiply-defined symbol error, whether through the use of weak symbols or
5087 a target-specific mechanism for having duplicates discarded. */
5090 supports_one_only (void)
5092 if (SUPPORTS_ONE_ONLY)
5093 return 1;
5094 return SUPPORTS_WEAK;
5097 /* Set up DECL as a public symbol that can be defined in multiple
5098 translation units without generating a linker error. */
5100 void
5101 make_decl_one_only (tree decl)
5103 gcc_assert (TREE_CODE (decl) == VAR_DECL
5104 || TREE_CODE (decl) == FUNCTION_DECL);
5106 TREE_PUBLIC (decl) = 1;
5108 if (SUPPORTS_ONE_ONLY)
5110 #ifdef MAKE_DECL_ONE_ONLY
5111 MAKE_DECL_ONE_ONLY (decl);
5112 #endif
5113 DECL_ONE_ONLY (decl) = 1;
5115 else if (TREE_CODE (decl) == VAR_DECL
5116 && (DECL_INITIAL (decl) == 0 || DECL_INITIAL (decl) == error_mark_node))
5117 DECL_COMMON (decl) = 1;
5118 else
5120 gcc_assert (SUPPORTS_WEAK);
5121 DECL_WEAK (decl) = 1;
5125 void
5126 init_varasm_once (void)
5128 section_htab = htab_create_ggc (31, section_entry_hash,
5129 section_entry_eq, NULL);
5130 object_block_htab = htab_create_ggc (31, object_block_entry_hash,
5131 object_block_entry_eq, NULL);
5132 const_desc_htab = htab_create_ggc (1009, const_desc_hash,
5133 const_desc_eq, NULL);
5135 const_alias_set = new_alias_set ();
5136 shared_constant_pool = create_constant_pool ();
5138 #ifdef TEXT_SECTION_ASM_OP
5139 text_section = get_unnamed_section (SECTION_CODE, output_section_asm_op,
5140 TEXT_SECTION_ASM_OP);
5141 #endif
5143 #ifdef DATA_SECTION_ASM_OP
5144 data_section = get_unnamed_section (SECTION_WRITE, output_section_asm_op,
5145 DATA_SECTION_ASM_OP);
5146 #endif
5148 #ifdef SDATA_SECTION_ASM_OP
5149 sdata_section = get_unnamed_section (SECTION_WRITE, output_section_asm_op,
5150 SDATA_SECTION_ASM_OP);
5151 #endif
5153 #ifdef READONLY_DATA_SECTION_ASM_OP
5154 readonly_data_section = get_unnamed_section (0, output_section_asm_op,
5155 READONLY_DATA_SECTION_ASM_OP);
5156 #endif
5158 #ifdef CTORS_SECTION_ASM_OP
5159 ctors_section = get_unnamed_section (0, output_section_asm_op,
5160 CTORS_SECTION_ASM_OP);
5161 #endif
5163 #ifdef DTORS_SECTION_ASM_OP
5164 dtors_section = get_unnamed_section (0, output_section_asm_op,
5165 DTORS_SECTION_ASM_OP);
5166 #endif
5168 #ifdef BSS_SECTION_ASM_OP
5169 bss_section = get_unnamed_section (SECTION_WRITE | SECTION_BSS,
5170 output_section_asm_op,
5171 BSS_SECTION_ASM_OP);
5172 #endif
5174 #ifdef SBSS_SECTION_ASM_OP
5175 sbss_section = get_unnamed_section (SECTION_WRITE | SECTION_BSS,
5176 output_section_asm_op,
5177 SBSS_SECTION_ASM_OP);
5178 #endif
5180 tls_comm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
5181 | SECTION_COMMON, emit_tls_common);
5182 lcomm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
5183 | SECTION_COMMON, emit_local);
5184 comm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
5185 | SECTION_COMMON, emit_common);
5187 #if defined ASM_OUTPUT_ALIGNED_BSS || defined ASM_OUTPUT_BSS
5188 bss_noswitch_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS,
5189 emit_bss);
5190 #endif
5192 targetm.asm_out.init_sections ();
5194 if (readonly_data_section == NULL)
5195 readonly_data_section = text_section;
5198 enum tls_model
5199 decl_default_tls_model (tree decl)
5201 enum tls_model kind;
5202 bool is_local;
5204 is_local = targetm.binds_local_p (decl);
5205 if (!flag_shlib)
5207 if (is_local)
5208 kind = TLS_MODEL_LOCAL_EXEC;
5209 else
5210 kind = TLS_MODEL_INITIAL_EXEC;
5213 /* Local dynamic is inefficient when we're not combining the
5214 parts of the address. */
5215 else if (optimize && is_local)
5216 kind = TLS_MODEL_LOCAL_DYNAMIC;
5217 else
5218 kind = TLS_MODEL_GLOBAL_DYNAMIC;
5219 if (kind < flag_tls_default)
5220 kind = flag_tls_default;
5222 return kind;
5225 /* Select a set of attributes for section NAME based on the properties
5226 of DECL and whether or not RELOC indicates that DECL's initializer
5227 might contain runtime relocations.
5229 We make the section read-only and executable for a function decl,
5230 read-only for a const data decl, and writable for a non-const data decl. */
5232 unsigned int
5233 default_section_type_flags (tree decl, const char *name, int reloc)
5235 return default_section_type_flags_1 (decl, name, reloc, flag_pic);
5238 unsigned int
5239 default_section_type_flags_1 (tree decl, const char *name, int reloc,
5240 int shlib)
5242 unsigned int flags;
5244 if (decl && TREE_CODE (decl) == FUNCTION_DECL)
5245 flags = SECTION_CODE;
5246 else if (decl && decl_readonly_section_1 (decl, reloc, shlib))
5247 flags = 0;
5248 else if (current_function_decl
5249 && cfun
5250 && cfun->unlikely_text_section_name
5251 && strcmp (name, cfun->unlikely_text_section_name) == 0)
5252 flags = SECTION_CODE;
5253 else if (!decl
5254 && (!current_function_decl || !cfun)
5255 && strcmp (name, UNLIKELY_EXECUTED_TEXT_SECTION_NAME) == 0)
5256 flags = SECTION_CODE;
5257 else
5258 flags = SECTION_WRITE;
5260 if (decl && DECL_ONE_ONLY (decl))
5261 flags |= SECTION_LINKONCE;
5263 if (decl && TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl))
5264 flags |= SECTION_TLS | SECTION_WRITE;
5266 if (strcmp (name, ".bss") == 0
5267 || strncmp (name, ".bss.", 5) == 0
5268 || strncmp (name, ".gnu.linkonce.b.", 16) == 0
5269 || strcmp (name, ".sbss") == 0
5270 || strncmp (name, ".sbss.", 6) == 0
5271 || strncmp (name, ".gnu.linkonce.sb.", 17) == 0)
5272 flags |= SECTION_BSS;
5274 if (strcmp (name, ".tdata") == 0
5275 || strncmp (name, ".tdata.", 7) == 0
5276 || strncmp (name, ".gnu.linkonce.td.", 17) == 0)
5277 flags |= SECTION_TLS;
5279 if (strcmp (name, ".tbss") == 0
5280 || strncmp (name, ".tbss.", 6) == 0
5281 || strncmp (name, ".gnu.linkonce.tb.", 17) == 0)
5282 flags |= SECTION_TLS | SECTION_BSS;
5284 /* These three sections have special ELF types. They are neither
5285 SHT_PROGBITS nor SHT_NOBITS, so when changing sections we don't
5286 want to print a section type (@progbits or @nobits). If someone
5287 is silly enough to emit code or TLS variables to one of these
5288 sections, then don't handle them specially. */
5289 if (!(flags & (SECTION_CODE | SECTION_BSS | SECTION_TLS))
5290 && (strcmp (name, ".init_array") == 0
5291 || strcmp (name, ".fini_array") == 0
5292 || strcmp (name, ".preinit_array") == 0))
5293 flags |= SECTION_NOTYPE;
5295 return flags;
5298 /* Return true if the target supports some form of global BSS,
5299 either through bss_noswitch_section, or by selecting a BSS
5300 section in TARGET_ASM_SELECT_SECTION. */
5302 bool
5303 have_global_bss_p (void)
5305 return bss_noswitch_section || targetm.have_switchable_bss_sections;
5308 /* Output assembly to switch to section NAME with attribute FLAGS.
5309 Four variants for common object file formats. */
5311 void
5312 default_no_named_section (const char *name ATTRIBUTE_UNUSED,
5313 unsigned int flags ATTRIBUTE_UNUSED,
5314 tree decl ATTRIBUTE_UNUSED)
5316 /* Some object formats don't support named sections at all. The
5317 front-end should already have flagged this as an error. */
5318 gcc_unreachable ();
5321 void
5322 default_elf_asm_named_section (const char *name, unsigned int flags,
5323 tree decl ATTRIBUTE_UNUSED)
5325 char flagchars[10], *f = flagchars;
5327 /* If we have already declared this section, we can use an
5328 abbreviated form to switch back to it -- unless this section is
5329 part of a COMDAT groups, in which case GAS requires the full
5330 declaration every time. */
5331 if (!(HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
5332 && (flags & SECTION_DECLARED))
5334 fprintf (asm_out_file, "\t.section\t%s\n", name);
5335 return;
5338 if (!(flags & SECTION_DEBUG))
5339 *f++ = 'a';
5340 if (flags & SECTION_WRITE)
5341 *f++ = 'w';
5342 if (flags & SECTION_CODE)
5343 *f++ = 'x';
5344 if (flags & SECTION_SMALL)
5345 *f++ = 's';
5346 if (flags & SECTION_MERGE)
5347 *f++ = 'M';
5348 if (flags & SECTION_STRINGS)
5349 *f++ = 'S';
5350 if (flags & SECTION_TLS)
5351 *f++ = 'T';
5352 if (HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
5353 *f++ = 'G';
5354 *f = '\0';
5356 fprintf (asm_out_file, "\t.section\t%s,\"%s\"", name, flagchars);
5358 if (!(flags & SECTION_NOTYPE))
5360 const char *type;
5361 const char *format;
5363 if (flags & SECTION_BSS)
5364 type = "nobits";
5365 else
5366 type = "progbits";
5368 format = ",@%s";
5369 #ifdef ASM_COMMENT_START
5370 /* On platforms that use "@" as the assembly comment character,
5371 use "%" instead. */
5372 if (strcmp (ASM_COMMENT_START, "@") == 0)
5373 format = ",%%%s";
5374 #endif
5375 fprintf (asm_out_file, format, type);
5377 if (flags & SECTION_ENTSIZE)
5378 fprintf (asm_out_file, ",%d", flags & SECTION_ENTSIZE);
5379 if (HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
5380 fprintf (asm_out_file, ",%s,comdat",
5381 lang_hooks.decls.comdat_group (decl));
5384 putc ('\n', asm_out_file);
5387 void
5388 default_coff_asm_named_section (const char *name, unsigned int flags,
5389 tree decl ATTRIBUTE_UNUSED)
5391 char flagchars[8], *f = flagchars;
5393 if (flags & SECTION_WRITE)
5394 *f++ = 'w';
5395 if (flags & SECTION_CODE)
5396 *f++ = 'x';
5397 *f = '\0';
5399 fprintf (asm_out_file, "\t.section\t%s,\"%s\"\n", name, flagchars);
5402 void
5403 default_pe_asm_named_section (const char *name, unsigned int flags,
5404 tree decl)
5406 default_coff_asm_named_section (name, flags, decl);
5408 if (flags & SECTION_LINKONCE)
5410 /* Functions may have been compiled at various levels of
5411 optimization so we can't use `same_size' here.
5412 Instead, have the linker pick one. */
5413 fprintf (asm_out_file, "\t.linkonce %s\n",
5414 (flags & SECTION_CODE ? "discard" : "same_size"));
5418 /* The lame default section selector. */
5420 section *
5421 default_select_section (tree decl, int reloc,
5422 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
5424 if (DECL_P (decl))
5426 if (decl_readonly_section (decl, reloc))
5427 return readonly_data_section;
5429 else if (TREE_CODE (decl) == CONSTRUCTOR)
5431 if (! ((flag_pic && reloc)
5432 || !TREE_READONLY (decl)
5433 || TREE_SIDE_EFFECTS (decl)
5434 || !TREE_CONSTANT (decl)))
5435 return readonly_data_section;
5437 else if (TREE_CODE (decl) == STRING_CST)
5438 return readonly_data_section;
5439 else if (! (flag_pic && reloc))
5440 return readonly_data_section;
5442 return data_section;
5445 enum section_category
5446 categorize_decl_for_section (tree decl, int reloc, int shlib)
5448 enum section_category ret;
5450 if (TREE_CODE (decl) == FUNCTION_DECL)
5451 return SECCAT_TEXT;
5452 else if (TREE_CODE (decl) == STRING_CST)
5454 if (flag_mudflap) /* or !flag_merge_constants */
5455 return SECCAT_RODATA;
5456 else
5457 return SECCAT_RODATA_MERGE_STR;
5459 else if (TREE_CODE (decl) == VAR_DECL)
5461 if (bss_initializer_p (decl))
5462 ret = SECCAT_BSS;
5463 else if (! TREE_READONLY (decl)
5464 || TREE_SIDE_EFFECTS (decl)
5465 || ! TREE_CONSTANT (DECL_INITIAL (decl)))
5467 if (shlib && (reloc & 2))
5468 ret = SECCAT_DATA_REL;
5469 else if (shlib && reloc)
5470 ret = SECCAT_DATA_REL_LOCAL;
5471 else
5472 ret = SECCAT_DATA;
5474 else if (shlib && (reloc & 2))
5475 ret = SECCAT_DATA_REL_RO;
5476 else if (shlib && reloc)
5477 ret = SECCAT_DATA_REL_RO_LOCAL;
5478 else if (reloc || flag_merge_constants < 2)
5479 /* C and C++ don't allow different variables to share the same
5480 location. -fmerge-all-constants allows even that (at the
5481 expense of not conforming). */
5482 ret = SECCAT_RODATA;
5483 else if (TREE_CODE (DECL_INITIAL (decl)) == STRING_CST)
5484 ret = SECCAT_RODATA_MERGE_STR_INIT;
5485 else
5486 ret = SECCAT_RODATA_MERGE_CONST;
5488 else if (TREE_CODE (decl) == CONSTRUCTOR)
5490 if ((shlib && reloc)
5491 || TREE_SIDE_EFFECTS (decl)
5492 || ! TREE_CONSTANT (decl))
5493 ret = SECCAT_DATA;
5494 else
5495 ret = SECCAT_RODATA;
5497 else
5498 ret = SECCAT_RODATA;
5500 /* There are no read-only thread-local sections. */
5501 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl))
5503 /* Note that this would be *just* SECCAT_BSS, except that there's
5504 no concept of a read-only thread-local-data section. */
5505 if (ret == SECCAT_BSS
5506 || (flag_zero_initialized_in_bss
5507 && initializer_zerop (DECL_INITIAL (decl))))
5508 ret = SECCAT_TBSS;
5509 else
5510 ret = SECCAT_TDATA;
5513 /* If the target uses small data sections, select it. */
5514 else if (targetm.in_small_data_p (decl))
5516 if (ret == SECCAT_BSS)
5517 ret = SECCAT_SBSS;
5518 else if (targetm.have_srodata_section && ret == SECCAT_RODATA)
5519 ret = SECCAT_SRODATA;
5520 else
5521 ret = SECCAT_SDATA;
5524 return ret;
5527 bool
5528 decl_readonly_section (tree decl, int reloc)
5530 return decl_readonly_section_1 (decl, reloc, flag_pic);
5533 bool
5534 decl_readonly_section_1 (tree decl, int reloc, int shlib)
5536 switch (categorize_decl_for_section (decl, reloc, shlib))
5538 case SECCAT_RODATA:
5539 case SECCAT_RODATA_MERGE_STR:
5540 case SECCAT_RODATA_MERGE_STR_INIT:
5541 case SECCAT_RODATA_MERGE_CONST:
5542 case SECCAT_SRODATA:
5543 return true;
5544 break;
5545 default:
5546 return false;
5547 break;
5551 /* Select a section based on the above categorization. */
5553 section *
5554 default_elf_select_section (tree decl, int reloc,
5555 unsigned HOST_WIDE_INT align)
5557 return default_elf_select_section_1 (decl, reloc, align, flag_pic);
5560 section *
5561 default_elf_select_section_1 (tree decl, int reloc,
5562 unsigned HOST_WIDE_INT align, int shlib)
5564 const char *sname;
5565 switch (categorize_decl_for_section (decl, reloc, shlib))
5567 case SECCAT_TEXT:
5568 /* We're not supposed to be called on FUNCTION_DECLs. */
5569 gcc_unreachable ();
5570 case SECCAT_RODATA:
5571 return readonly_data_section;
5572 case SECCAT_RODATA_MERGE_STR:
5573 return mergeable_string_section (decl, align, 0);
5574 case SECCAT_RODATA_MERGE_STR_INIT:
5575 return mergeable_string_section (DECL_INITIAL (decl), align, 0);
5576 case SECCAT_RODATA_MERGE_CONST:
5577 return mergeable_constant_section (DECL_MODE (decl), align, 0);
5578 case SECCAT_SRODATA:
5579 sname = ".sdata2";
5580 break;
5581 case SECCAT_DATA:
5582 return data_section;
5583 case SECCAT_DATA_REL:
5584 sname = ".data.rel";
5585 break;
5586 case SECCAT_DATA_REL_LOCAL:
5587 sname = ".data.rel.local";
5588 break;
5589 case SECCAT_DATA_REL_RO:
5590 sname = ".data.rel.ro";
5591 break;
5592 case SECCAT_DATA_REL_RO_LOCAL:
5593 sname = ".data.rel.ro.local";
5594 break;
5595 case SECCAT_SDATA:
5596 sname = ".sdata";
5597 break;
5598 case SECCAT_TDATA:
5599 sname = ".tdata";
5600 break;
5601 case SECCAT_BSS:
5602 if (bss_section)
5603 return bss_section;
5604 sname = ".bss";
5605 break;
5606 case SECCAT_SBSS:
5607 sname = ".sbss";
5608 break;
5609 case SECCAT_TBSS:
5610 sname = ".tbss";
5611 break;
5612 default:
5613 gcc_unreachable ();
5616 if (!DECL_P (decl))
5617 decl = NULL_TREE;
5618 return get_named_section (decl, sname, reloc);
5621 /* Construct a unique section name based on the decl name and the
5622 categorization performed above. */
5624 void
5625 default_unique_section (tree decl, int reloc)
5627 default_unique_section_1 (decl, reloc, flag_pic);
5630 void
5631 default_unique_section_1 (tree decl, int reloc, int shlib)
5633 /* We only need to use .gnu.linkonce if we don't have COMDAT groups. */
5634 bool one_only = DECL_ONE_ONLY (decl) && !HAVE_COMDAT_GROUP;
5635 const char *prefix, *name;
5636 size_t nlen, plen;
5637 char *string;
5639 switch (categorize_decl_for_section (decl, reloc, shlib))
5641 case SECCAT_TEXT:
5642 prefix = one_only ? ".gnu.linkonce.t." : ".text.";
5643 break;
5644 case SECCAT_RODATA:
5645 case SECCAT_RODATA_MERGE_STR:
5646 case SECCAT_RODATA_MERGE_STR_INIT:
5647 case SECCAT_RODATA_MERGE_CONST:
5648 prefix = one_only ? ".gnu.linkonce.r." : ".rodata.";
5649 break;
5650 case SECCAT_SRODATA:
5651 prefix = one_only ? ".gnu.linkonce.s2." : ".sdata2.";
5652 break;
5653 case SECCAT_DATA:
5654 prefix = one_only ? ".gnu.linkonce.d." : ".data.";
5655 break;
5656 case SECCAT_DATA_REL:
5657 prefix = one_only ? ".gnu.linkonce.d.rel." : ".data.rel.";
5658 break;
5659 case SECCAT_DATA_REL_LOCAL:
5660 prefix = one_only ? ".gnu.linkonce.d.rel.local." : ".data.rel.local.";
5661 break;
5662 case SECCAT_DATA_REL_RO:
5663 prefix = one_only ? ".gnu.linkonce.d.rel.ro." : ".data.rel.ro.";
5664 break;
5665 case SECCAT_DATA_REL_RO_LOCAL:
5666 prefix = one_only ? ".gnu.linkonce.d.rel.ro.local."
5667 : ".data.rel.ro.local.";
5668 break;
5669 case SECCAT_SDATA:
5670 prefix = one_only ? ".gnu.linkonce.s." : ".sdata.";
5671 break;
5672 case SECCAT_BSS:
5673 prefix = one_only ? ".gnu.linkonce.b." : ".bss.";
5674 break;
5675 case SECCAT_SBSS:
5676 prefix = one_only ? ".gnu.linkonce.sb." : ".sbss.";
5677 break;
5678 case SECCAT_TDATA:
5679 prefix = one_only ? ".gnu.linkonce.td." : ".tdata.";
5680 break;
5681 case SECCAT_TBSS:
5682 prefix = one_only ? ".gnu.linkonce.tb." : ".tbss.";
5683 break;
5684 default:
5685 gcc_unreachable ();
5687 plen = strlen (prefix);
5689 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5690 name = targetm.strip_name_encoding (name);
5691 nlen = strlen (name);
5693 string = alloca (nlen + plen + 1);
5694 memcpy (string, prefix, plen);
5695 memcpy (string + plen, name, nlen + 1);
5697 DECL_SECTION_NAME (decl) = build_string (nlen + plen, string);
5700 section *
5701 default_select_rtx_section (enum machine_mode mode ATTRIBUTE_UNUSED,
5702 rtx x,
5703 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
5705 if (flag_pic)
5706 switch (GET_CODE (x))
5708 case CONST:
5709 case SYMBOL_REF:
5710 case LABEL_REF:
5711 return data_section;
5713 default:
5714 break;
5717 return readonly_data_section;
5720 section *
5721 default_elf_select_rtx_section (enum machine_mode mode, rtx x,
5722 unsigned HOST_WIDE_INT align)
5724 /* ??? Handle small data here somehow. */
5726 if (flag_pic)
5727 switch (GET_CODE (x))
5729 case CONST:
5730 case SYMBOL_REF:
5731 return get_named_section (NULL, ".data.rel.ro", 3);
5733 case LABEL_REF:
5734 return get_named_section (NULL, ".data.rel.ro.local", 1);
5736 default:
5737 break;
5740 return mergeable_constant_section (mode, align, 0);
5743 /* Set the generally applicable flags on the SYMBOL_REF for EXP. */
5745 void
5746 default_encode_section_info (tree decl, rtx rtl, int first ATTRIBUTE_UNUSED)
5748 rtx symbol;
5749 int flags;
5751 /* Careful not to prod global register variables. */
5752 if (!MEM_P (rtl))
5753 return;
5754 symbol = XEXP (rtl, 0);
5755 if (GET_CODE (symbol) != SYMBOL_REF)
5756 return;
5758 flags = SYMBOL_REF_FLAGS (symbol) & SYMBOL_FLAG_HAS_BLOCK_INFO;
5759 if (TREE_CODE (decl) == FUNCTION_DECL)
5760 flags |= SYMBOL_FLAG_FUNCTION;
5761 if (targetm.binds_local_p (decl))
5762 flags |= SYMBOL_FLAG_LOCAL;
5763 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl))
5764 flags |= DECL_TLS_MODEL (decl) << SYMBOL_FLAG_TLS_SHIFT;
5765 else if (targetm.in_small_data_p (decl))
5766 flags |= SYMBOL_FLAG_SMALL;
5767 /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names? Without
5768 being PUBLIC, the thing *must* be defined in this translation unit.
5769 Prevent this buglet from being propagated into rtl code as well. */
5770 if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
5771 flags |= SYMBOL_FLAG_EXTERNAL;
5773 SYMBOL_REF_FLAGS (symbol) = flags;
5776 /* By default, we do nothing for encode_section_info, so we need not
5777 do anything but discard the '*' marker. */
5779 const char *
5780 default_strip_name_encoding (const char *str)
5782 return str + (*str == '*');
5785 #ifdef ASM_OUTPUT_DEF
5786 /* The default implementation of TARGET_ASM_OUTPUT_ANCHOR. Define the
5787 anchor relative to ".", the current section position. */
5789 void
5790 default_asm_output_anchor (rtx symbol)
5792 char buffer[100];
5794 sprintf (buffer, ". + " HOST_WIDE_INT_PRINT_DEC,
5795 SYMBOL_REF_BLOCK_OFFSET (symbol));
5796 ASM_OUTPUT_DEF (asm_out_file, XSTR (symbol, 0), buffer);
5798 #endif
5800 /* The default implementation of TARGET_USE_ANCHORS_FOR_SYMBOL_P. */
5802 bool
5803 default_use_anchors_for_symbol_p (rtx symbol)
5805 section *sect;
5806 tree decl;
5808 /* Don't use anchors for mergeable sections. The linker might move
5809 the objects around. */
5810 sect = SYMBOL_REF_BLOCK (symbol)->sect;
5811 if (sect->common.flags & SECTION_MERGE)
5812 return false;
5814 /* Don't use anchors for small data sections. The small data register
5815 acts as an anchor for such sections. */
5816 if (sect->common.flags & SECTION_SMALL)
5817 return false;
5819 decl = SYMBOL_REF_DECL (symbol);
5820 if (decl && DECL_P (decl))
5822 /* Don't use section anchors for decls that might be defined by
5823 other modules. */
5824 if (!targetm.binds_local_p (decl))
5825 return false;
5827 /* Don't use section anchors for decls that will be placed in a
5828 small data section. */
5829 /* ??? Ideally, this check would be redundant with the SECTION_SMALL
5830 one above. The problem is that we only use SECTION_SMALL for
5831 sections that should be marked as small in the section directive. */
5832 if (targetm.in_small_data_p (decl))
5833 return false;
5835 return true;
5838 /* Assume ELF-ish defaults, since that's pretty much the most liberal
5839 wrt cross-module name binding. */
5841 bool
5842 default_binds_local_p (tree exp)
5844 return default_binds_local_p_1 (exp, flag_shlib);
5847 bool
5848 default_binds_local_p_1 (tree exp, int shlib)
5850 bool local_p;
5852 /* A non-decl is an entry in the constant pool. */
5853 if (!DECL_P (exp))
5854 local_p = true;
5855 /* Weakrefs may not bind locally, even though the weakref itself is
5856 always static and therefore local. */
5857 else if (lookup_attribute ("weakref", DECL_ATTRIBUTES (exp)))
5858 local_p = false;
5859 /* Static variables are always local. */
5860 else if (! TREE_PUBLIC (exp))
5861 local_p = true;
5862 /* A variable is local if the user has said explicitly that it will
5863 be. */
5864 else if (DECL_VISIBILITY_SPECIFIED (exp)
5865 && DECL_VISIBILITY (exp) != VISIBILITY_DEFAULT)
5866 local_p = true;
5867 /* Variables defined outside this object might not be local. */
5868 else if (DECL_EXTERNAL (exp))
5869 local_p = false;
5870 /* If defined in this object and visibility is not default, must be
5871 local. */
5872 else if (DECL_VISIBILITY (exp) != VISIBILITY_DEFAULT)
5873 local_p = true;
5874 /* Default visibility weak data can be overridden by a strong symbol
5875 in another module and so are not local. */
5876 else if (DECL_WEAK (exp))
5877 local_p = false;
5878 /* If PIC, then assume that any global name can be overridden by
5879 symbols resolved from other modules. */
5880 else if (shlib)
5881 local_p = false;
5882 /* Uninitialized COMMON variable may be unified with symbols
5883 resolved from other modules. */
5884 else if (DECL_COMMON (exp)
5885 && (DECL_INITIAL (exp) == NULL
5886 || DECL_INITIAL (exp) == error_mark_node))
5887 local_p = false;
5888 /* Otherwise we're left with initialized (or non-common) global data
5889 which is of necessity defined locally. */
5890 else
5891 local_p = true;
5893 return local_p;
5896 /* Determine whether or not a pointer mode is valid. Assume defaults
5897 of ptr_mode or Pmode - can be overridden. */
5898 bool
5899 default_valid_pointer_mode (enum machine_mode mode)
5901 return (mode == ptr_mode || mode == Pmode);
5904 /* Default function to output code that will globalize a label. A
5905 target must define GLOBAL_ASM_OP or provide its own function to
5906 globalize a label. */
5907 #ifdef GLOBAL_ASM_OP
5908 void
5909 default_globalize_label (FILE * stream, const char *name)
5911 fputs (GLOBAL_ASM_OP, stream);
5912 assemble_name (stream, name);
5913 putc ('\n', stream);
5915 #endif /* GLOBAL_ASM_OP */
5917 /* Default function to output code that will globalize a declaration. */
5918 void
5919 default_globalize_decl_name (FILE * stream, tree decl)
5921 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
5922 targetm.asm_out.globalize_label (stream, name);
5925 /* Default function to output a label for unwind information. The
5926 default is to do nothing. A target that needs nonlocal labels for
5927 unwind information must provide its own function to do this. */
5928 void
5929 default_emit_unwind_label (FILE * stream ATTRIBUTE_UNUSED,
5930 tree decl ATTRIBUTE_UNUSED,
5931 int for_eh ATTRIBUTE_UNUSED,
5932 int empty ATTRIBUTE_UNUSED)
5936 /* Default function to output a label to divide up the exception table.
5937 The default is to do nothing. A target that needs/wants to divide
5938 up the table must provide it's own function to do this. */
5939 void
5940 default_emit_except_table_label (FILE * stream ATTRIBUTE_UNUSED)
5944 /* This is how to output an internal numbered label where PREFIX is
5945 the class of label and LABELNO is the number within the class. */
5947 void
5948 default_internal_label (FILE *stream, const char *prefix,
5949 unsigned long labelno)
5951 char *const buf = alloca (40 + strlen (prefix));
5952 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, labelno);
5953 ASM_OUTPUT_INTERNAL_LABEL (stream, buf);
5956 /* This is the default behavior at the beginning of a file. It's
5957 controlled by two other target-hook toggles. */
5958 void
5959 default_file_start (void)
5961 if (targetm.file_start_app_off && !flag_verbose_asm)
5962 fputs (ASM_APP_OFF, asm_out_file);
5964 if (targetm.file_start_file_directive)
5965 output_file_directive (asm_out_file, main_input_filename);
5968 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
5969 which emits a special section directive used to indicate whether or
5970 not this object file needs an executable stack. This is primarily
5971 a GNU extension to ELF but could be used on other targets. */
5973 int trampolines_created;
5975 void
5976 file_end_indicate_exec_stack (void)
5978 unsigned int flags = SECTION_DEBUG;
5979 if (trampolines_created)
5980 flags |= SECTION_CODE;
5982 switch_to_section (get_section (".note.GNU-stack", flags, NULL));
5985 /* Output DIRECTIVE (a C string) followed by a newline. This is used as
5986 a get_unnamed_section callback. */
5988 void
5989 output_section_asm_op (const void *directive)
5991 fprintf (asm_out_file, "%s\n", (const char *) directive);
5994 /* Emit assembly code to switch to section NEW_SECTION. Do nothing if
5995 the current section is NEW_SECTION. */
5997 void
5998 switch_to_section (section *new_section)
6000 if (in_section == new_section)
6001 return;
6003 if (new_section->common.flags & SECTION_FORGET)
6004 in_section = NULL;
6005 else
6006 in_section = new_section;
6008 switch (SECTION_STYLE (new_section))
6010 case SECTION_NAMED:
6011 if (cfun
6012 && !cfun->unlikely_text_section_name
6013 && strcmp (new_section->named.name,
6014 UNLIKELY_EXECUTED_TEXT_SECTION_NAME) == 0)
6015 cfun->unlikely_text_section_name = UNLIKELY_EXECUTED_TEXT_SECTION_NAME;
6017 targetm.asm_out.named_section (new_section->named.name,
6018 new_section->named.common.flags,
6019 new_section->named.decl);
6020 break;
6022 case SECTION_UNNAMED:
6023 new_section->unnamed.callback (new_section->unnamed.data);
6024 break;
6026 case SECTION_NOSWITCH:
6027 gcc_unreachable ();
6028 break;
6031 new_section->common.flags |= SECTION_DECLARED;
6034 /* If block symbol SYMBOL has not yet been assigned an offset, place
6035 it at the end of its block. */
6037 void
6038 place_block_symbol (rtx symbol)
6040 unsigned HOST_WIDE_INT size, mask, offset;
6041 struct constant_descriptor_rtx *desc;
6042 unsigned int alignment;
6043 struct object_block *block;
6044 tree decl;
6046 gcc_assert (SYMBOL_REF_BLOCK (symbol));
6047 if (SYMBOL_REF_BLOCK_OFFSET (symbol) >= 0)
6048 return;
6050 /* Work out the symbol's size and alignment. */
6051 if (CONSTANT_POOL_ADDRESS_P (symbol))
6053 desc = SYMBOL_REF_CONSTANT (symbol);
6054 alignment = desc->align;
6055 size = GET_MODE_SIZE (desc->mode);
6057 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
6059 decl = SYMBOL_REF_DECL (symbol);
6060 alignment = get_constant_alignment (decl);
6061 size = get_constant_size (decl);
6063 else
6065 decl = SYMBOL_REF_DECL (symbol);
6066 alignment = DECL_ALIGN (decl);
6067 size = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
6070 /* Calculate the object's offset from the start of the block. */
6071 block = SYMBOL_REF_BLOCK (symbol);
6072 mask = alignment / BITS_PER_UNIT - 1;
6073 offset = (block->size + mask) & ~mask;
6074 SYMBOL_REF_BLOCK_OFFSET (symbol) = offset;
6076 /* Record the block's new alignment and size. */
6077 block->alignment = MAX (block->alignment, alignment);
6078 block->size = offset + size;
6080 VEC_safe_push (rtx, gc, block->objects, symbol);
6083 /* Return the anchor that should be used to address byte offset OFFSET
6084 from the first object in BLOCK. MODEL is the TLS model used
6085 to access it. */
6088 get_section_anchor (struct object_block *block, HOST_WIDE_INT offset,
6089 enum tls_model model)
6091 char label[100];
6092 unsigned int begin, middle, end;
6093 unsigned HOST_WIDE_INT min_offset, max_offset, range, bias, delta;
6094 rtx anchor;
6096 /* Work out the anchor's offset. Use an offset of 0 for the first
6097 anchor so that we don't pessimize the case where we take the address
6098 of a variable at the beginning of the block. This is particularly
6099 useful when a block has only one variable assigned to it.
6101 We try to place anchors RANGE bytes apart, so there can then be
6102 anchors at +/-RANGE, +/-2 * RANGE, and so on, up to the limits of
6103 a ptr_mode offset. With some target settings, the lowest such
6104 anchor might be out of range for the lowest ptr_mode offset;
6105 likewise the highest anchor for the highest offset. Use anchors
6106 at the extreme ends of the ptr_mode range in such cases.
6108 All arithmetic uses unsigned integers in order to avoid
6109 signed overflow. */
6110 max_offset = (unsigned HOST_WIDE_INT) targetm.max_anchor_offset;
6111 min_offset = (unsigned HOST_WIDE_INT) targetm.min_anchor_offset;
6112 range = max_offset - min_offset + 1;
6113 if (range == 0)
6114 offset = 0;
6115 else
6117 bias = 1 << (GET_MODE_BITSIZE (ptr_mode) - 1);
6118 if (offset < 0)
6120 delta = -(unsigned HOST_WIDE_INT) offset + max_offset;
6121 delta -= delta % range;
6122 if (delta > bias)
6123 delta = bias;
6124 offset = (HOST_WIDE_INT) (-delta);
6126 else
6128 delta = (unsigned HOST_WIDE_INT) offset - min_offset;
6129 delta -= delta % range;
6130 if (delta > bias - 1)
6131 delta = bias - 1;
6132 offset = (HOST_WIDE_INT) delta;
6136 /* Do a binary search to see if there's already an anchor we can use.
6137 Set BEGIN to the new anchor's index if not. */
6138 begin = 0;
6139 end = VEC_length (rtx, block->anchors);
6140 while (begin != end)
6142 middle = (end + begin) / 2;
6143 anchor = VEC_index (rtx, block->anchors, middle);
6144 if (SYMBOL_REF_BLOCK_OFFSET (anchor) > offset)
6145 end = middle;
6146 else if (SYMBOL_REF_BLOCK_OFFSET (anchor) < offset)
6147 begin = middle + 1;
6148 else if (SYMBOL_REF_TLS_MODEL (anchor) > model)
6149 end = middle;
6150 else if (SYMBOL_REF_TLS_MODEL (anchor) < model)
6151 begin = middle + 1;
6152 else
6153 return anchor;
6156 /* Create a new anchor with a unique label. */
6157 ASM_GENERATE_INTERNAL_LABEL (label, "LANCHOR", anchor_labelno++);
6158 anchor = create_block_symbol (ggc_strdup (label), block, offset);
6159 SYMBOL_REF_FLAGS (anchor) |= SYMBOL_FLAG_LOCAL | SYMBOL_FLAG_ANCHOR;
6160 SYMBOL_REF_FLAGS (anchor) |= model << SYMBOL_FLAG_TLS_SHIFT;
6162 /* Insert it at index BEGIN. */
6163 VEC_safe_insert (rtx, gc, block->anchors, begin, anchor);
6164 return anchor;
6167 /* Output the objects in BLOCK. */
6169 static void
6170 output_object_block (struct object_block *block)
6172 struct constant_descriptor_rtx *desc;
6173 unsigned int i;
6174 HOST_WIDE_INT offset;
6175 tree decl;
6176 rtx symbol;
6178 if (block->objects == NULL)
6179 return;
6181 /* Switch to the section and make sure that the first byte is
6182 suitably aligned. */
6183 switch_to_section (block->sect);
6184 assemble_align (block->alignment);
6186 /* Define the values of all anchors relative to the current section
6187 position. */
6188 for (i = 0; VEC_iterate (rtx, block->anchors, i, symbol); i++)
6189 targetm.asm_out.output_anchor (symbol);
6191 /* Output the objects themselves. */
6192 offset = 0;
6193 for (i = 0; VEC_iterate (rtx, block->objects, i, symbol); i++)
6195 /* Move to the object's offset, padding with zeros if necessary. */
6196 assemble_zeros (SYMBOL_REF_BLOCK_OFFSET (symbol) - offset);
6197 offset = SYMBOL_REF_BLOCK_OFFSET (symbol);
6198 if (CONSTANT_POOL_ADDRESS_P (symbol))
6200 desc = SYMBOL_REF_CONSTANT (symbol);
6201 output_constant_pool_1 (desc, 1);
6202 offset += GET_MODE_SIZE (desc->mode);
6204 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
6206 decl = SYMBOL_REF_DECL (symbol);
6207 assemble_constant_contents (decl, XSTR (symbol, 0),
6208 get_constant_alignment (decl));
6209 offset += get_constant_size (decl);
6211 else
6213 decl = SYMBOL_REF_DECL (symbol);
6214 assemble_variable_contents (decl, XSTR (symbol, 0), false);
6215 offset += tree_low_cst (DECL_SIZE_UNIT (decl), 1);
6220 /* A htab_traverse callback used to call output_object_block for
6221 each member of object_block_htab. */
6223 static int
6224 output_object_block_htab (void **slot, void *data ATTRIBUTE_UNUSED)
6226 output_object_block ((struct object_block *) (*slot));
6227 return 1;
6230 /* Output the definitions of all object_blocks. */
6232 void
6233 output_object_blocks (void)
6235 htab_traverse (object_block_htab, output_object_block_htab, NULL);
6238 /* This function provides a possible implementation of the
6239 TARGET_ASM_RECORD_GCC_SWITCHES target hook for ELF targets. When triggered
6240 by -frecord-gcc-switches it creates a new mergeable, string section in the
6241 assembler output file called TARGET_ASM_RECORD_GCC_SWITCHES_SECTION which
6242 contains the switches in ASCII format.
6244 FIXME: This code does not correctly handle double quote characters
6245 that appear inside strings, (it strips them rather than preserving them).
6246 FIXME: ASM_OUTPUT_ASCII, as defined in config/elfos.h will not emit NUL
6247 characters - instead it treats them as sub-string separators. Since
6248 we want to emit NUL strings terminators into the object file we have to use
6249 ASM_OUTPUT_SKIP. */
6252 elf_record_gcc_switches (print_switch_type type, const char * name)
6254 static char buffer[1024];
6256 /* This variable is used as part of a simplistic heuristic to detect
6257 command line switches which take an argument:
6259 "If a command line option does not start with a dash then
6260 it is an argument for the previous command line option."
6262 This fails in the case of the command line option which is the name
6263 of the file to compile, but otherwise it is pretty reasonable. */
6264 static bool previous_name_held_back = FALSE;
6266 switch (type)
6268 case SWITCH_TYPE_PASSED:
6269 if (* name != '-')
6271 if (previous_name_held_back)
6273 unsigned int len = strlen (buffer);
6275 snprintf (buffer + len, sizeof buffer - len, " %s", name);
6276 ASM_OUTPUT_ASCII (asm_out_file, buffer, strlen (buffer));
6277 ASM_OUTPUT_SKIP (asm_out_file, (unsigned HOST_WIDE_INT) 1);
6278 previous_name_held_back = FALSE;
6280 else
6282 strncpy (buffer, name, sizeof buffer);
6283 ASM_OUTPUT_ASCII (asm_out_file, buffer, strlen (buffer));
6284 ASM_OUTPUT_SKIP (asm_out_file, (unsigned HOST_WIDE_INT) 1);
6287 else
6289 if (previous_name_held_back)
6291 ASM_OUTPUT_ASCII (asm_out_file, buffer, strlen (buffer));
6292 ASM_OUTPUT_SKIP (asm_out_file, (unsigned HOST_WIDE_INT) 1);
6295 strncpy (buffer, name, sizeof buffer);
6296 previous_name_held_back = TRUE;
6298 break;
6300 case SWITCH_TYPE_DESCRIPTIVE:
6301 if (name == NULL)
6303 /* Distinguish between invocations where name is NULL. */
6304 static bool started = false;
6306 if (started)
6308 if (previous_name_held_back)
6310 ASM_OUTPUT_ASCII (asm_out_file, buffer, strlen (buffer));
6311 ASM_OUTPUT_SKIP (asm_out_file, (unsigned HOST_WIDE_INT) 1);
6314 else
6316 section * sec;
6318 sec = get_section (targetm.asm_out.record_gcc_switches_section,
6319 SECTION_DEBUG
6320 | SECTION_MERGE
6321 | SECTION_STRINGS
6322 | (SECTION_ENTSIZE & 1),
6323 NULL);
6324 switch_to_section (sec);
6325 started = true;
6329 default:
6330 break;
6333 /* The return value is currently ignored by the caller, but must be 0.
6334 For -fverbose-asm the return value would be the number of characters
6335 emitted into the assembler file. */
6336 return 0;
6339 /* Emit text to declare externally defined symbols. It is needed to
6340 properly support non-default visibility. */
6341 void
6342 default_elf_asm_output_external (FILE *file ATTRIBUTE_UNUSED,
6343 tree decl,
6344 const char *name ATTRIBUTE_UNUSED)
6346 /* We output the name if and only if TREE_SYMBOL_REFERENCED is
6347 set in order to avoid putting out names that are never really
6348 used. */
6349 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))
6350 && targetm.binds_local_p (decl))
6351 maybe_assemble_visibility (decl);
6354 #include "gt-varasm.h"