Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / varasm.c
blobfc996f1f8cd0f93835d5e5d28dfd9ed28e1da03b
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, 2007, 2008, 2009,
4 2010 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 3, 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 COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
23 /* This file handles generation of all the assembler code
24 *except* the instructions of a function.
25 This includes declarations of variables and their initial values.
27 We also output the assembler code for constants stored in memory
28 and are responsible for combining constants with the same value. */
30 #include "config.h"
31 #include "system.h"
32 #include "coretypes.h"
33 #include "tm.h"
34 #include "rtl.h"
35 #include "tree.h"
36 #include "flags.h"
37 #include "function.h"
38 #include "expr.h"
39 #include "hard-reg-set.h"
40 #include "regs.h"
41 #include "output.h"
42 #include "diagnostic-core.h"
43 #include "toplev.h"
44 #include "hashtab.h"
45 #include "ggc.h"
46 #include "langhooks.h"
47 #include "tm_p.h"
48 #include "debug.h"
49 #include "target.h"
50 #include "targhooks.h"
51 #include "tree-mudflap.h"
52 #include "cgraph.h"
53 #include "cfglayout.h"
54 #include "basic-block.h"
55 #include "tree-iterator.h"
56 #include "pointer-set.h"
58 #ifdef XCOFF_DEBUGGING_INFO
59 #include "xcoffout.h" /* Needed for external data
60 declarations for e.g. AIX 4.x. */
61 #endif
63 /* The (assembler) name of the first globally-visible object output. */
64 extern GTY(()) const char *first_global_object_name;
65 extern GTY(()) const char *weak_global_object_name;
67 const char *first_global_object_name;
68 const char *weak_global_object_name;
70 struct addr_const;
71 struct constant_descriptor_rtx;
72 struct rtx_constant_pool;
74 #define n_deferred_constants (crtl->varasm.deferred_constants)
76 /* Number for making the label on the next
77 constant that is stored in memory. */
79 static GTY(()) int const_labelno;
81 /* Carry information from ASM_DECLARE_OBJECT_NAME
82 to ASM_FINISH_DECLARE_OBJECT. */
84 int size_directive_output;
86 /* The last decl for which assemble_variable was called,
87 if it did ASM_DECLARE_OBJECT_NAME.
88 If the last call to assemble_variable didn't do that,
89 this holds 0. */
91 tree last_assemble_variable_decl;
93 /* The following global variable indicates if the first basic block
94 in a function belongs to the cold partition or not. */
96 bool first_function_block_is_cold;
98 /* We give all constants their own alias set. Perhaps redundant with
99 MEM_READONLY_P, but pre-dates it. */
101 static alias_set_type const_alias_set;
103 /* Whether we saw any functions with no_split_stack. */
105 static bool saw_no_split_stack;
107 static const char *strip_reg_name (const char *);
108 static int contains_pointers_p (tree);
109 #ifdef ASM_OUTPUT_EXTERNAL
110 static bool incorporeal_function_p (tree);
111 #endif
112 static void decode_addr_const (tree, struct addr_const *);
113 static hashval_t const_desc_hash (const void *);
114 static int const_desc_eq (const void *, const void *);
115 static hashval_t const_hash_1 (const tree);
116 static int compare_constant (const tree, const tree);
117 static tree copy_constant (tree);
118 static void output_constant_def_contents (rtx);
119 static void output_addressed_constants (tree);
120 static unsigned HOST_WIDE_INT array_size_for_constructor (tree);
121 static unsigned min_align (unsigned, unsigned);
122 static void globalize_decl (tree);
123 #ifdef BSS_SECTION_ASM_OP
124 #ifdef ASM_OUTPUT_BSS
125 static void asm_output_bss (FILE *, tree, const char *,
126 unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT);
127 #endif
128 #ifdef ASM_OUTPUT_ALIGNED_BSS
129 static void asm_output_aligned_bss (FILE *, tree, const char *,
130 unsigned HOST_WIDE_INT, int)
131 ATTRIBUTE_UNUSED;
132 #endif
133 #endif /* BSS_SECTION_ASM_OP */
134 static void mark_weak (tree);
135 static void output_constant_pool (const char *, tree);
137 /* Well-known sections, each one associated with some sort of *_ASM_OP. */
138 section *text_section;
139 section *data_section;
140 section *readonly_data_section;
141 section *sdata_section;
142 section *ctors_section;
143 section *dtors_section;
144 section *bss_section;
145 section *sbss_section;
147 /* Various forms of common section. All are guaranteed to be nonnull. */
148 section *tls_comm_section;
149 section *comm_section;
150 section *lcomm_section;
152 /* A SECTION_NOSWITCH section used for declaring global BSS variables.
153 May be null. */
154 section *bss_noswitch_section;
156 /* The section that holds the main exception table, when known. The section
157 is set either by the target's init_sections hook or by the first call to
158 switch_to_exception_section. */
159 section *exception_section;
161 /* The section that holds the DWARF2 frame unwind information, when known.
162 The section is set either by the target's init_sections hook or by the
163 first call to switch_to_eh_frame_section. */
164 section *eh_frame_section;
166 /* asm_out_file's current section. This is NULL if no section has yet
167 been selected or if we lose track of what the current section is. */
168 section *in_section;
170 /* True if code for the current function is currently being directed
171 at the cold section. */
172 bool in_cold_section_p;
174 /* A linked list of all the unnamed sections. */
175 static GTY(()) section *unnamed_sections;
177 /* Return a nonzero value if DECL has a section attribute. */
178 #define IN_NAMED_SECTION(DECL) \
179 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
180 && DECL_SECTION_NAME (DECL) != NULL_TREE)
182 /* Hash table of named sections. */
183 static GTY((param_is (section))) htab_t section_htab;
185 /* A table of object_blocks, indexed by section. */
186 static GTY((param_is (struct object_block))) htab_t object_block_htab;
188 /* The next number to use for internal anchor labels. */
189 static GTY(()) int anchor_labelno;
191 /* A pool of constants that can be shared between functions. */
192 static GTY(()) struct rtx_constant_pool *shared_constant_pool;
194 /* Helper routines for maintaining section_htab. */
196 static int
197 section_entry_eq (const void *p1, const void *p2)
199 const section *old = (const section *) p1;
200 const char *new_name = (const char *) p2;
202 return strcmp (old->named.name, new_name) == 0;
205 static hashval_t
206 section_entry_hash (const void *p)
208 const section *old = (const section *) p;
209 return htab_hash_string (old->named.name);
212 /* Return a hash value for section SECT. */
214 static hashval_t
215 hash_section (section *sect)
217 if (sect->common.flags & SECTION_NAMED)
218 return htab_hash_string (sect->named.name);
219 return sect->common.flags;
222 /* Helper routines for maintaining object_block_htab. */
224 static int
225 object_block_entry_eq (const void *p1, const void *p2)
227 const struct object_block *old = (const struct object_block *) p1;
228 const section *new_section = (const section *) p2;
230 return old->sect == new_section;
233 static hashval_t
234 object_block_entry_hash (const void *p)
236 const struct object_block *old = (const struct object_block *) p;
237 return hash_section (old->sect);
240 /* Return a new unnamed section with the given fields. */
242 section *
243 get_unnamed_section (unsigned int flags, void (*callback) (const void *),
244 const void *data)
246 section *sect;
248 sect = ggc_alloc_section ();
249 sect->unnamed.common.flags = flags | SECTION_UNNAMED;
250 sect->unnamed.callback = callback;
251 sect->unnamed.data = data;
252 sect->unnamed.next = unnamed_sections;
254 unnamed_sections = sect;
255 return sect;
258 /* Return a SECTION_NOSWITCH section with the given fields. */
260 static section *
261 get_noswitch_section (unsigned int flags, noswitch_section_callback callback)
263 section *sect;
265 sect = ggc_alloc_section ();
266 sect->noswitch.common.flags = flags | SECTION_NOSWITCH;
267 sect->noswitch.callback = callback;
269 return sect;
272 /* Return the named section structure associated with NAME. Create
273 a new section with the given fields if no such structure exists. */
275 section *
276 get_section (const char *name, unsigned int flags, tree decl)
278 section *sect, **slot;
280 slot = (section **)
281 htab_find_slot_with_hash (section_htab, name,
282 htab_hash_string (name), INSERT);
283 flags |= SECTION_NAMED;
284 if (*slot == NULL)
286 sect = ggc_alloc_section ();
287 sect->named.common.flags = flags;
288 sect->named.name = ggc_strdup (name);
289 sect->named.decl = decl;
290 *slot = sect;
292 else
294 sect = *slot;
295 if ((sect->common.flags & ~SECTION_DECLARED) != flags
296 && ((sect->common.flags | flags) & SECTION_OVERRIDE) == 0)
298 /* Sanity check user variables for flag changes. */
299 if (decl == 0)
300 decl = sect->named.decl;
301 gcc_assert (decl);
302 error ("%+D causes a section type conflict", decl);
305 return sect;
308 /* Return true if the current compilation mode benefits from having
309 objects grouped into blocks. */
311 static bool
312 use_object_blocks_p (void)
314 return flag_section_anchors;
317 /* Return the object_block structure for section SECT. Create a new
318 structure if we haven't created one already. Return null if SECT
319 itself is null. */
321 static struct object_block *
322 get_block_for_section (section *sect)
324 struct object_block *block;
325 void **slot;
327 if (sect == NULL)
328 return NULL;
330 slot = htab_find_slot_with_hash (object_block_htab, sect,
331 hash_section (sect), INSERT);
332 block = (struct object_block *) *slot;
333 if (block == NULL)
335 block = ggc_alloc_cleared_object_block ();
336 block->sect = sect;
337 *slot = block;
339 return block;
342 /* Create a symbol with label LABEL and place it at byte offset
343 OFFSET in BLOCK. OFFSET can be negative if the symbol's offset
344 is not yet known. LABEL must be a garbage-collected string. */
346 static rtx
347 create_block_symbol (const char *label, struct object_block *block,
348 HOST_WIDE_INT offset)
350 rtx symbol;
351 unsigned int size;
353 /* Create the extended SYMBOL_REF. */
354 size = RTX_HDR_SIZE + sizeof (struct block_symbol);
355 symbol = ggc_alloc_zone_rtx_def (size, &rtl_zone);
357 /* Initialize the normal SYMBOL_REF fields. */
358 memset (symbol, 0, size);
359 PUT_CODE (symbol, SYMBOL_REF);
360 PUT_MODE (symbol, Pmode);
361 XSTR (symbol, 0) = label;
362 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_HAS_BLOCK_INFO;
364 /* Initialize the block_symbol stuff. */
365 SYMBOL_REF_BLOCK (symbol) = block;
366 SYMBOL_REF_BLOCK_OFFSET (symbol) = offset;
368 return symbol;
371 /* Return a section with a particular name and with whatever SECTION_*
372 flags section_type_flags deems appropriate. The name of the section
373 is taken from NAME if nonnull, otherwise it is taken from DECL's
374 DECL_SECTION_NAME. DECL is the decl associated with the section
375 (see the section comment for details) and RELOC is as for
376 section_type_flags. */
378 section *
379 get_named_section (tree decl, const char *name, int reloc)
381 unsigned int flags;
383 gcc_assert (!decl || DECL_P (decl));
384 if (name == NULL)
385 name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
387 flags = targetm.section_type_flags (decl, name, reloc);
389 return get_section (name, flags, decl);
392 /* If required, set DECL_SECTION_NAME to a unique name. */
394 void
395 resolve_unique_section (tree decl, int reloc ATTRIBUTE_UNUSED,
396 int flag_function_or_data_sections)
398 if (DECL_SECTION_NAME (decl) == NULL_TREE
399 && targetm.have_named_sections
400 && (flag_function_or_data_sections
401 || DECL_ONE_ONLY (decl)))
403 targetm.asm_out.unique_section (decl, reloc);
404 DECL_HAS_IMPLICIT_SECTION_NAME_P (decl) = true;
408 #ifdef BSS_SECTION_ASM_OP
410 #ifdef ASM_OUTPUT_BSS
412 /* Utility function for ASM_OUTPUT_BSS for targets to use if
413 they don't support alignments in .bss.
414 ??? It is believed that this function will work in most cases so such
415 support is localized here. */
417 static void ATTRIBUTE_UNUSED
418 asm_output_bss (FILE *file, tree decl ATTRIBUTE_UNUSED,
419 const char *name,
420 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
421 unsigned HOST_WIDE_INT rounded)
423 gcc_assert (strcmp (XSTR (XEXP (DECL_RTL (decl), 0), 0), name) == 0);
424 targetm.asm_out.globalize_decl_name (file, decl);
425 switch_to_section (bss_section);
426 #ifdef ASM_DECLARE_OBJECT_NAME
427 last_assemble_variable_decl = decl;
428 ASM_DECLARE_OBJECT_NAME (file, name, decl);
429 #else
430 /* Standard thing is just output label for the object. */
431 ASM_OUTPUT_LABEL (file, name);
432 #endif /* ASM_DECLARE_OBJECT_NAME */
433 ASM_OUTPUT_SKIP (file, rounded ? rounded : 1);
436 #endif
438 #ifdef ASM_OUTPUT_ALIGNED_BSS
440 /* Utility function for targets to use in implementing
441 ASM_OUTPUT_ALIGNED_BSS.
442 ??? It is believed that this function will work in most cases so such
443 support is localized here. */
445 static void
446 asm_output_aligned_bss (FILE *file, tree decl ATTRIBUTE_UNUSED,
447 const char *name, unsigned HOST_WIDE_INT size,
448 int align)
450 switch_to_section (bss_section);
451 ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
452 #ifdef ASM_DECLARE_OBJECT_NAME
453 last_assemble_variable_decl = decl;
454 ASM_DECLARE_OBJECT_NAME (file, name, decl);
455 #else
456 /* Standard thing is just output label for the object. */
457 ASM_OUTPUT_LABEL (file, name);
458 #endif /* ASM_DECLARE_OBJECT_NAME */
459 ASM_OUTPUT_SKIP (file, size ? size : 1);
462 #endif
464 #endif /* BSS_SECTION_ASM_OP */
466 #ifndef USE_SELECT_SECTION_FOR_FUNCTIONS
467 /* Return the hot section for function DECL. Return text_section for
468 null DECLs. */
470 static section *
471 hot_function_section (tree decl)
473 if (decl != NULL_TREE
474 && DECL_SECTION_NAME (decl) != NULL_TREE
475 && targetm.have_named_sections)
476 return get_named_section (decl, NULL, 0);
477 else
478 return text_section;
480 #endif
482 /* Return section for TEXT_SECTION_NAME if DECL or DECL_SECTION_NAME (DECL)
483 is NULL.
485 When DECL_SECTION_NAME is non-NULL and it is implicit section and
486 NAMED_SECTION_SUFFIX is non-NULL, then produce section called
487 concatenate the name with NAMED_SECTION_SUFFIX.
488 Otherwise produce "TEXT_SECTION_NAME.IMPLICIT_NAME". */
490 section *
491 get_named_text_section (tree decl,
492 const char *text_section_name,
493 const char *named_section_suffix)
495 if (decl && DECL_SECTION_NAME (decl))
497 if (named_section_suffix)
499 tree dsn = DECL_SECTION_NAME (decl);
500 const char *stripped_name;
501 char *name, *buffer;
503 name = (char *) alloca (TREE_STRING_LENGTH (dsn) + 1);
504 memcpy (name, TREE_STRING_POINTER (dsn),
505 TREE_STRING_LENGTH (dsn) + 1);
507 stripped_name = targetm.strip_name_encoding (name);
509 buffer = ACONCAT ((stripped_name, named_section_suffix, NULL));
510 return get_named_section (decl, buffer, 0);
512 else if (DECL_HAS_IMPLICIT_SECTION_NAME_P (decl))
514 const char *name;
516 /* Do not try to split gnu_linkonce functions. This gets somewhat
517 slipperly. */
518 if (DECL_ONE_ONLY (decl) && !HAVE_COMDAT_GROUP)
519 return NULL;
520 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
521 name = targetm.strip_name_encoding (name);
522 return get_named_section (decl, ACONCAT ((text_section_name, ".",
523 name, NULL)), 0);
525 else
526 return NULL;
528 return get_named_section (decl, text_section_name, 0);
531 /* Choose named function section based on its frequency. */
533 section *
534 default_function_section (tree decl, enum node_frequency freq,
535 bool startup, bool exit)
537 /* Startup code should go to startup subsection unless it is
538 unlikely executed (this happens especially with function splitting
539 where we can split away unnecesary parts of static constructors. */
540 if (startup && freq != NODE_FREQUENCY_UNLIKELY_EXECUTED)
541 return get_named_text_section (decl, ".text.startup", NULL);
543 /* Similarly for exit. */
544 if (exit && freq != NODE_FREQUENCY_UNLIKELY_EXECUTED)
545 return get_named_text_section (decl, ".text.exit", NULL);
547 /* Group cold functions together, similarly for hot code. */
548 switch (freq)
550 case NODE_FREQUENCY_UNLIKELY_EXECUTED:
551 return get_named_text_section (decl, ".text.unlikely", NULL);
552 case NODE_FREQUENCY_HOT:
553 return get_named_text_section (decl, ".text.hot", NULL);
554 default:
555 return NULL;
559 /* Return the section for function DECL.
561 If DECL is NULL_TREE, return the text section. We can be passed
562 NULL_TREE under some circumstances by dbxout.c at least.
564 If FORCE_COLD is true, return cold function section ignoring
565 the frequency info of cgraph_node. */
567 static section *
568 function_section_1 (tree decl, bool force_cold)
570 section *section = NULL;
571 enum node_frequency freq = NODE_FREQUENCY_NORMAL;
572 bool startup = false, exit = false;
574 if (decl)
576 struct cgraph_node *node = cgraph_node (decl);
578 freq = node->frequency;
579 startup = node->only_called_at_startup;
580 exit = node->only_called_at_exit;
582 if (force_cold)
583 freq = NODE_FREQUENCY_UNLIKELY_EXECUTED;
585 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
586 if (decl != NULL_TREE
587 && DECL_SECTION_NAME (decl) != NULL_TREE)
589 if (targetm.asm_out.function_section)
590 section = targetm.asm_out.function_section (decl, freq,
591 startup, exit);
592 if (section)
593 return section;
594 return get_named_section (decl, NULL, 0);
596 else
597 return targetm.asm_out.select_section
598 (decl, freq == NODE_FREQUENCY_UNLIKELY_EXECUTED,
599 DECL_ALIGN (decl));
600 #else
601 if (targetm.asm_out.function_section)
602 section = targetm.asm_out.function_section (decl, freq, startup, exit);
603 if (section)
604 return section;
605 return hot_function_section (decl);
606 #endif
609 /* Return the section for function DECL.
611 If DECL is NULL_TREE, return the text section. We can be passed
612 NULL_TREE under some circumstances by dbxout.c at least. */
614 section *
615 function_section (tree decl)
617 /* Handle cases where function splitting code decides
618 to put function entry point into unlikely executed section
619 despite the fact that the function itself is not cold
620 (i.e. it is called rarely but contains a hot loop that is
621 better to live in hot subsection for the code locality). */
622 return function_section_1 (decl,
623 first_function_block_is_cold);
626 /* Return the section for the current function, take IN_COLD_SECTION_P
627 into account. */
629 section *
630 current_function_section (void)
632 return function_section_1 (current_function_decl, in_cold_section_p);
635 /* Tell assembler to switch to unlikely-to-be-executed text section. */
637 section *
638 unlikely_text_section (void)
640 return function_section_1 (current_function_decl, true);
643 /* When called within a function context, return true if the function
644 has been assigned a cold text section and if SECT is that section.
645 When called outside a function context, return true if SECT is the
646 default cold section. */
648 bool
649 unlikely_text_section_p (section *sect)
651 return sect == function_section_1 (current_function_decl, true);
654 /* Return the read-only data section associated with function DECL. */
656 section *
657 default_function_rodata_section (tree decl)
659 if (decl != NULL_TREE && DECL_SECTION_NAME (decl))
661 const char *name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
663 if (DECL_ONE_ONLY (decl) && HAVE_COMDAT_GROUP)
665 const char *dot;
666 size_t len;
667 char* rname;
669 dot = strchr (name + 1, '.');
670 if (!dot)
671 dot = name;
672 len = strlen (dot) + 8;
673 rname = (char *) alloca (len);
675 strcpy (rname, ".rodata");
676 strcat (rname, dot);
677 return get_section (rname, SECTION_LINKONCE, decl);
679 /* For .gnu.linkonce.t.foo we want to use .gnu.linkonce.r.foo. */
680 else if (DECL_ONE_ONLY (decl)
681 && strncmp (name, ".gnu.linkonce.t.", 16) == 0)
683 size_t len = strlen (name) + 1;
684 char *rname = (char *) alloca (len);
686 memcpy (rname, name, len);
687 rname[14] = 'r';
688 return get_section (rname, SECTION_LINKONCE, decl);
690 /* For .text.foo we want to use .rodata.foo. */
691 else if (flag_function_sections && flag_data_sections
692 && strncmp (name, ".text.", 6) == 0)
694 size_t len = strlen (name) + 1;
695 char *rname = (char *) alloca (len + 2);
697 memcpy (rname, ".rodata", 7);
698 memcpy (rname + 7, name + 5, len - 5);
699 return get_section (rname, 0, decl);
703 return readonly_data_section;
706 /* Return the read-only data section associated with function DECL
707 for targets where that section should be always the single
708 readonly data section. */
710 section *
711 default_no_function_rodata_section (tree decl ATTRIBUTE_UNUSED)
713 return readonly_data_section;
716 /* Return the section to use for string merging. */
718 static section *
719 mergeable_string_section (tree decl ATTRIBUTE_UNUSED,
720 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
721 unsigned int flags ATTRIBUTE_UNUSED)
723 HOST_WIDE_INT len;
725 if (HAVE_GAS_SHF_MERGE && flag_merge_constants
726 && TREE_CODE (decl) == STRING_CST
727 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
728 && align <= 256
729 && (len = int_size_in_bytes (TREE_TYPE (decl))) > 0
730 && TREE_STRING_LENGTH (decl) >= len)
732 enum machine_mode mode;
733 unsigned int modesize;
734 const char *str;
735 HOST_WIDE_INT i;
736 int j, unit;
737 char name[30];
739 mode = TYPE_MODE (TREE_TYPE (TREE_TYPE (decl)));
740 modesize = GET_MODE_BITSIZE (mode);
741 if (modesize >= 8 && modesize <= 256
742 && (modesize & (modesize - 1)) == 0)
744 if (align < modesize)
745 align = modesize;
747 str = TREE_STRING_POINTER (decl);
748 unit = GET_MODE_SIZE (mode);
750 /* Check for embedded NUL characters. */
751 for (i = 0; i < len; i += unit)
753 for (j = 0; j < unit; j++)
754 if (str[i + j] != '\0')
755 break;
756 if (j == unit)
757 break;
759 if (i == len - unit)
761 sprintf (name, ".rodata.str%d.%d", modesize / 8,
762 (int) (align / 8));
763 flags |= (modesize / 8) | SECTION_MERGE | SECTION_STRINGS;
764 return get_section (name, flags, NULL);
769 return readonly_data_section;
772 /* Return the section to use for constant merging. */
774 section *
775 mergeable_constant_section (enum machine_mode mode ATTRIBUTE_UNUSED,
776 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
777 unsigned int flags ATTRIBUTE_UNUSED)
779 unsigned int modesize = GET_MODE_BITSIZE (mode);
781 if (HAVE_GAS_SHF_MERGE && flag_merge_constants
782 && mode != VOIDmode
783 && mode != BLKmode
784 && modesize <= align
785 && align >= 8
786 && align <= 256
787 && (align & (align - 1)) == 0)
789 char name[24];
791 sprintf (name, ".rodata.cst%d", (int) (align / 8));
792 flags |= (align / 8) | SECTION_MERGE;
793 return get_section (name, flags, NULL);
795 return readonly_data_section;
798 /* Given NAME, a putative register name, discard any customary prefixes. */
800 static const char *
801 strip_reg_name (const char *name)
803 #ifdef REGISTER_PREFIX
804 if (!strncmp (name, REGISTER_PREFIX, strlen (REGISTER_PREFIX)))
805 name += strlen (REGISTER_PREFIX);
806 #endif
807 if (name[0] == '%' || name[0] == '#')
808 name++;
809 return name;
812 /* The user has asked for a DECL to have a particular name. Set (or
813 change) it in such a way that we don't prefix an underscore to
814 it. */
815 void
816 set_user_assembler_name (tree decl, const char *name)
818 char *starred = (char *) alloca (strlen (name) + 2);
819 starred[0] = '*';
820 strcpy (starred + 1, name);
821 change_decl_assembler_name (decl, get_identifier (starred));
822 SET_DECL_RTL (decl, NULL_RTX);
825 /* Decode an `asm' spec for a declaration as a register name.
826 Return the register number, or -1 if nothing specified,
827 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
828 or -3 if ASMSPEC is `cc' and is not recognized,
829 or -4 if ASMSPEC is `memory' and is not recognized.
830 Accept an exact spelling or a decimal number.
831 Prefixes such as % are optional. */
834 decode_reg_name_and_count (const char *asmspec, int *pnregs)
836 /* Presume just one register is clobbered. */
837 *pnregs = 1;
839 if (asmspec != 0)
841 int i;
843 /* Get rid of confusing prefixes. */
844 asmspec = strip_reg_name (asmspec);
846 /* Allow a decimal number as a "register name". */
847 for (i = strlen (asmspec) - 1; i >= 0; i--)
848 if (! ISDIGIT (asmspec[i]))
849 break;
850 if (asmspec[0] != 0 && i < 0)
852 i = atoi (asmspec);
853 if (i < FIRST_PSEUDO_REGISTER && i >= 0)
854 return i;
855 else
856 return -2;
859 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
860 if (reg_names[i][0]
861 && ! strcmp (asmspec, strip_reg_name (reg_names[i])))
862 return i;
864 #ifdef OVERLAPPING_REGISTER_NAMES
866 static const struct
868 const char *const name;
869 const int number;
870 const int nregs;
871 } table[] = OVERLAPPING_REGISTER_NAMES;
873 for (i = 0; i < (int) ARRAY_SIZE (table); i++)
874 if (table[i].name[0]
875 && ! strcmp (asmspec, table[i].name))
877 *pnregs = table[i].nregs;
878 return table[i].number;
881 #endif /* OVERLAPPING_REGISTER_NAMES */
883 #ifdef ADDITIONAL_REGISTER_NAMES
885 static const struct { const char *const name; const int number; } table[]
886 = ADDITIONAL_REGISTER_NAMES;
888 for (i = 0; i < (int) ARRAY_SIZE (table); i++)
889 if (table[i].name[0]
890 && ! strcmp (asmspec, table[i].name))
891 return table[i].number;
893 #endif /* ADDITIONAL_REGISTER_NAMES */
895 if (!strcmp (asmspec, "memory"))
896 return -4;
898 if (!strcmp (asmspec, "cc"))
899 return -3;
901 return -2;
904 return -1;
908 decode_reg_name (const char *name)
910 int count;
911 return decode_reg_name_and_count (name, &count);
915 /* Return true if DECL's initializer is suitable for a BSS section. */
917 static bool
918 bss_initializer_p (const_tree decl)
920 return (DECL_INITIAL (decl) == NULL
921 || DECL_INITIAL (decl) == error_mark_node
922 || (flag_zero_initialized_in_bss
923 /* Leave constant zeroes in .rodata so they
924 can be shared. */
925 && !TREE_READONLY (decl)
926 && initializer_zerop (DECL_INITIAL (decl))));
929 /* Compute the alignment of variable specified by DECL.
930 DONT_OUTPUT_DATA is from assemble_variable. */
932 void
933 align_variable (tree decl, bool dont_output_data)
935 unsigned int align = DECL_ALIGN (decl);
937 /* In the case for initialing an array whose length isn't specified,
938 where we have not yet been able to do the layout,
939 figure out the proper alignment now. */
940 if (dont_output_data && DECL_SIZE (decl) == 0
941 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
942 align = MAX (align, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
944 /* Some object file formats have a maximum alignment which they support.
945 In particular, a.out format supports a maximum alignment of 4. */
946 if (align > MAX_OFILE_ALIGNMENT)
948 warning (0, "alignment of %q+D is greater than maximum object "
949 "file alignment. Using %d", decl,
950 MAX_OFILE_ALIGNMENT/BITS_PER_UNIT);
951 align = MAX_OFILE_ALIGNMENT;
954 /* On some machines, it is good to increase alignment sometimes. */
955 if (! DECL_USER_ALIGN (decl))
957 #ifdef DATA_ALIGNMENT
958 unsigned int data_align = DATA_ALIGNMENT (TREE_TYPE (decl), align);
959 /* Don't increase alignment too much for TLS variables - TLS space
960 is too precious. */
961 if (! DECL_THREAD_LOCAL_P (decl) || data_align <= BITS_PER_WORD)
962 align = data_align;
963 #endif
964 #ifdef CONSTANT_ALIGNMENT
965 if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
967 unsigned int const_align = CONSTANT_ALIGNMENT (DECL_INITIAL (decl),
968 align);
969 /* Don't increase alignment too much for TLS variables - TLS space
970 is too precious. */
971 if (! DECL_THREAD_LOCAL_P (decl) || const_align <= BITS_PER_WORD)
972 align = const_align;
974 #endif
977 /* Reset the alignment in case we have made it tighter, so we can benefit
978 from it in get_pointer_alignment. */
979 DECL_ALIGN (decl) = align;
982 /* Return the section into which the given VAR_DECL or CONST_DECL
983 should be placed. PREFER_NOSWITCH_P is true if a noswitch
984 section should be used wherever possible. */
986 static section *
987 get_variable_section (tree decl, bool prefer_noswitch_p)
989 addr_space_t as = ADDR_SPACE_GENERIC;
990 int reloc;
992 if (TREE_TYPE (decl) != error_mark_node)
993 as = TYPE_ADDR_SPACE (TREE_TYPE (decl));
995 if (DECL_COMMON (decl))
997 /* If the decl has been given an explicit section name, or it resides
998 in a non-generic address space, then it isn't common, and shouldn't
999 be handled as such. */
1000 gcc_assert (DECL_SECTION_NAME (decl) == NULL
1001 && ADDR_SPACE_GENERIC_P (as));
1002 if (DECL_THREAD_LOCAL_P (decl))
1003 return tls_comm_section;
1004 else if (TREE_PUBLIC (decl) && bss_initializer_p (decl))
1005 return comm_section;
1008 if (DECL_INITIAL (decl) == error_mark_node)
1009 reloc = contains_pointers_p (TREE_TYPE (decl)) ? 3 : 0;
1010 else if (DECL_INITIAL (decl))
1011 reloc = compute_reloc_for_constant (DECL_INITIAL (decl));
1012 else
1013 reloc = 0;
1015 resolve_unique_section (decl, reloc, flag_data_sections);
1016 if (IN_NAMED_SECTION (decl))
1017 return get_named_section (decl, NULL, reloc);
1019 if (ADDR_SPACE_GENERIC_P (as)
1020 && !DECL_THREAD_LOCAL_P (decl)
1021 && !(prefer_noswitch_p && targetm.have_switchable_bss_sections)
1022 && bss_initializer_p (decl))
1024 if (!TREE_PUBLIC (decl))
1025 return lcomm_section;
1026 if (bss_noswitch_section)
1027 return bss_noswitch_section;
1030 return targetm.asm_out.select_section (decl, reloc, DECL_ALIGN (decl));
1033 /* Return the block into which object_block DECL should be placed. */
1035 static struct object_block *
1036 get_block_for_decl (tree decl)
1038 section *sect;
1040 if (TREE_CODE (decl) == VAR_DECL)
1042 /* The object must be defined in this translation unit. */
1043 if (DECL_EXTERNAL (decl))
1044 return NULL;
1046 /* There's no point using object blocks for something that is
1047 isolated by definition. */
1048 if (DECL_ONE_ONLY (decl))
1049 return NULL;
1052 /* We can only calculate block offsets if the decl has a known
1053 constant size. */
1054 if (DECL_SIZE_UNIT (decl) == NULL)
1055 return NULL;
1056 if (!host_integerp (DECL_SIZE_UNIT (decl), 1))
1057 return NULL;
1059 /* Find out which section should contain DECL. We cannot put it into
1060 an object block if it requires a standalone definition. */
1061 if (TREE_CODE (decl) == VAR_DECL)
1062 align_variable (decl, 0);
1063 sect = get_variable_section (decl, true);
1064 if (SECTION_STYLE (sect) == SECTION_NOSWITCH)
1065 return NULL;
1067 return get_block_for_section (sect);
1070 /* Make sure block symbol SYMBOL is in block BLOCK. */
1072 static void
1073 change_symbol_block (rtx symbol, struct object_block *block)
1075 if (block != SYMBOL_REF_BLOCK (symbol))
1077 gcc_assert (SYMBOL_REF_BLOCK_OFFSET (symbol) < 0);
1078 SYMBOL_REF_BLOCK (symbol) = block;
1082 /* Return true if it is possible to put DECL in an object_block. */
1084 static bool
1085 use_blocks_for_decl_p (tree decl)
1087 /* Only data DECLs can be placed into object blocks. */
1088 if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != CONST_DECL)
1089 return false;
1091 /* Detect decls created by dw2_force_const_mem. Such decls are
1092 special because DECL_INITIAL doesn't specify the decl's true value.
1093 dw2_output_indirect_constants will instead call assemble_variable
1094 with dont_output_data set to 1 and then print the contents itself. */
1095 if (DECL_INITIAL (decl) == decl)
1096 return false;
1098 /* If this decl is an alias, then we don't want to emit a
1099 definition. */
1100 if (lookup_attribute ("alias", DECL_ATTRIBUTES (decl)))
1101 return false;
1103 return true;
1106 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
1107 have static storage duration. In other words, it should not be an
1108 automatic variable, including PARM_DECLs.
1110 There is, however, one exception: this function handles variables
1111 explicitly placed in a particular register by the user.
1113 This is never called for PARM_DECL nodes. */
1115 void
1116 make_decl_rtl (tree decl)
1118 const char *name = 0;
1119 int reg_number;
1120 rtx x;
1122 /* Check that we are not being given an automatic variable. */
1123 gcc_assert (TREE_CODE (decl) != PARM_DECL
1124 && TREE_CODE (decl) != RESULT_DECL);
1126 /* A weak alias has TREE_PUBLIC set but not the other bits. */
1127 gcc_assert (TREE_CODE (decl) != VAR_DECL
1128 || TREE_STATIC (decl)
1129 || TREE_PUBLIC (decl)
1130 || DECL_EXTERNAL (decl)
1131 || DECL_REGISTER (decl));
1133 /* And that we were not given a type or a label. */
1134 gcc_assert (TREE_CODE (decl) != TYPE_DECL
1135 && TREE_CODE (decl) != LABEL_DECL);
1137 /* For a duplicate declaration, we can be called twice on the
1138 same DECL node. Don't discard the RTL already made. */
1139 if (DECL_RTL_SET_P (decl))
1141 /* If the old RTL had the wrong mode, fix the mode. */
1142 x = DECL_RTL (decl);
1143 if (GET_MODE (x) != DECL_MODE (decl))
1144 SET_DECL_RTL (decl, adjust_address_nv (x, DECL_MODE (decl), 0));
1146 if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
1147 return;
1149 /* ??? Another way to do this would be to maintain a hashed
1150 table of such critters. Instead of adding stuff to a DECL
1151 to give certain attributes to it, we could use an external
1152 hash map from DECL to set of attributes. */
1154 /* Let the target reassign the RTL if it wants.
1155 This is necessary, for example, when one machine specific
1156 decl attribute overrides another. */
1157 targetm.encode_section_info (decl, DECL_RTL (decl), false);
1159 /* If the symbol has a SYMBOL_REF_BLOCK field, update it based
1160 on the new decl information. */
1161 if (MEM_P (x)
1162 && GET_CODE (XEXP (x, 0)) == SYMBOL_REF
1163 && SYMBOL_REF_HAS_BLOCK_INFO_P (XEXP (x, 0)))
1164 change_symbol_block (XEXP (x, 0), get_block_for_decl (decl));
1166 /* Make this function static known to the mudflap runtime. */
1167 if (flag_mudflap && TREE_CODE (decl) == VAR_DECL)
1168 mudflap_enqueue_decl (decl);
1170 return;
1173 /* If this variable belongs to the global constant pool, retrieve the
1174 pre-computed RTL or recompute it in LTO mode. */
1175 if (TREE_CODE (decl) == VAR_DECL && DECL_IN_CONSTANT_POOL (decl))
1177 SET_DECL_RTL (decl, output_constant_def (DECL_INITIAL (decl), 1));
1178 return;
1181 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
1183 if (name[0] != '*' && TREE_CODE (decl) != FUNCTION_DECL
1184 && DECL_REGISTER (decl))
1186 error ("register name not specified for %q+D", decl);
1188 else if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
1190 const char *asmspec = name+1;
1191 reg_number = decode_reg_name (asmspec);
1192 /* First detect errors in declaring global registers. */
1193 if (reg_number == -1)
1194 error ("register name not specified for %q+D", decl);
1195 else if (reg_number < 0)
1196 error ("invalid register name for %q+D", decl);
1197 else if (TYPE_MODE (TREE_TYPE (decl)) == BLKmode)
1198 error ("data type of %q+D isn%'t suitable for a register",
1199 decl);
1200 else if (! HARD_REGNO_MODE_OK (reg_number, TYPE_MODE (TREE_TYPE (decl))))
1201 error ("register specified for %q+D isn%'t suitable for data type",
1202 decl);
1203 /* Now handle properly declared static register variables. */
1204 else
1206 int nregs;
1208 if (DECL_INITIAL (decl) != 0 && TREE_STATIC (decl))
1210 DECL_INITIAL (decl) = 0;
1211 error ("global register variable has initial value");
1213 if (TREE_THIS_VOLATILE (decl))
1214 warning (OPT_Wvolatile_register_var,
1215 "optimization may eliminate reads and/or "
1216 "writes to register variables");
1218 /* If the user specified one of the eliminables registers here,
1219 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
1220 confused with that register and be eliminated. This usage is
1221 somewhat suspect... */
1223 SET_DECL_RTL (decl, gen_rtx_raw_REG (DECL_MODE (decl), reg_number));
1224 ORIGINAL_REGNO (DECL_RTL (decl)) = reg_number;
1225 REG_USERVAR_P (DECL_RTL (decl)) = 1;
1227 if (TREE_STATIC (decl))
1229 /* Make this register global, so not usable for anything
1230 else. */
1231 #ifdef ASM_DECLARE_REGISTER_GLOBAL
1232 name = IDENTIFIER_POINTER (DECL_NAME (decl));
1233 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file, decl, reg_number, name);
1234 #endif
1235 nregs = hard_regno_nregs[reg_number][DECL_MODE (decl)];
1236 while (nregs > 0)
1237 globalize_reg (reg_number + --nregs);
1240 /* As a register variable, it has no section. */
1241 return;
1244 /* Now handle ordinary static variables and functions (in memory).
1245 Also handle vars declared register invalidly. */
1246 else if (name[0] == '*')
1248 #ifdef REGISTER_PREFIX
1249 if (strlen (REGISTER_PREFIX) != 0)
1251 reg_number = decode_reg_name (name);
1252 if (reg_number >= 0 || reg_number == -3)
1253 error ("register name given for non-register variable %q+D", decl);
1255 #endif
1258 /* Specifying a section attribute on a variable forces it into a
1259 non-.bss section, and thus it cannot be common. */
1260 /* FIXME: In general this code should not be necessary because
1261 visibility pass is doing the same work. But notice_global_symbol
1262 is called early and it needs to make DECL_RTL to get the name.
1263 we take care of recomputing the DECL_RTL after visibility is changed. */
1264 if (TREE_CODE (decl) == VAR_DECL
1265 && DECL_SECTION_NAME (decl) != NULL_TREE
1266 && DECL_INITIAL (decl) == NULL_TREE
1267 && DECL_COMMON (decl))
1268 DECL_COMMON (decl) = 0;
1270 /* Variables can't be both common and weak. */
1271 if (TREE_CODE (decl) == VAR_DECL && DECL_WEAK (decl))
1272 DECL_COMMON (decl) = 0;
1274 if (use_object_blocks_p () && use_blocks_for_decl_p (decl))
1275 x = create_block_symbol (name, get_block_for_decl (decl), -1);
1276 else
1278 enum machine_mode address_mode = Pmode;
1279 if (TREE_TYPE (decl) != error_mark_node)
1281 addr_space_t as = TYPE_ADDR_SPACE (TREE_TYPE (decl));
1282 address_mode = targetm.addr_space.address_mode (as);
1284 x = gen_rtx_SYMBOL_REF (address_mode, name);
1286 SYMBOL_REF_WEAK (x) = DECL_WEAK (decl);
1287 SET_SYMBOL_REF_DECL (x, decl);
1289 x = gen_rtx_MEM (DECL_MODE (decl), x);
1290 if (TREE_CODE (decl) != FUNCTION_DECL)
1291 set_mem_attributes (x, decl, 1);
1292 SET_DECL_RTL (decl, x);
1294 /* Optionally set flags or add text to the name to record information
1295 such as that it is a function name.
1296 If the name is changed, the macro ASM_OUTPUT_LABELREF
1297 will have to know how to strip this information. */
1298 targetm.encode_section_info (decl, DECL_RTL (decl), true);
1300 /* Make this function static known to the mudflap runtime. */
1301 if (flag_mudflap && TREE_CODE (decl) == VAR_DECL)
1302 mudflap_enqueue_decl (decl);
1305 /* Like make_decl_rtl, but inhibit creation of new alias sets when
1306 calling make_decl_rtl. Also, reset DECL_RTL before returning the
1307 rtl. */
1310 make_decl_rtl_for_debug (tree decl)
1312 unsigned int save_aliasing_flag, save_mudflap_flag;
1313 rtx rtl;
1315 if (DECL_RTL_SET_P (decl))
1316 return DECL_RTL (decl);
1318 /* Kludge alert! Somewhere down the call chain, make_decl_rtl will
1319 call new_alias_set. If running with -fcompare-debug, sometimes
1320 we do not want to create alias sets that will throw the alias
1321 numbers off in the comparison dumps. So... clearing
1322 flag_strict_aliasing will keep new_alias_set() from creating a
1323 new set. It is undesirable to register decl with mudflap
1324 in this case as well. */
1325 save_aliasing_flag = flag_strict_aliasing;
1326 flag_strict_aliasing = 0;
1327 save_mudflap_flag = flag_mudflap;
1328 flag_mudflap = 0;
1330 rtl = DECL_RTL (decl);
1331 /* Reset DECL_RTL back, as various parts of the compiler expects
1332 DECL_RTL set meaning it is actually going to be output. */
1333 SET_DECL_RTL (decl, NULL);
1335 flag_strict_aliasing = save_aliasing_flag;
1336 flag_mudflap = save_mudflap_flag;
1338 return rtl;
1341 /* Output a string of literal assembler code
1342 for an `asm' keyword used between functions. */
1344 void
1345 assemble_asm (tree string)
1347 app_enable ();
1349 if (TREE_CODE (string) == ADDR_EXPR)
1350 string = TREE_OPERAND (string, 0);
1352 fprintf (asm_out_file, "\t%s\n", TREE_STRING_POINTER (string));
1355 /* Record an element in the table of global destructors. SYMBOL is
1356 a SYMBOL_REF of the function to be called; PRIORITY is a number
1357 between 0 and MAX_INIT_PRIORITY. */
1359 void
1360 default_stabs_asm_out_destructor (rtx symbol ATTRIBUTE_UNUSED,
1361 int priority ATTRIBUTE_UNUSED)
1363 #if defined DBX_DEBUGGING_INFO || defined XCOFF_DEBUGGING_INFO
1364 /* Tell GNU LD that this is part of the static destructor set.
1365 This will work for any system that uses stabs, most usefully
1366 aout systems. */
1367 dbxout_begin_simple_stabs ("___DTOR_LIST__", 22 /* N_SETT */);
1368 dbxout_stab_value_label (XSTR (symbol, 0));
1369 #else
1370 sorry ("global destructors not supported on this target");
1371 #endif
1374 /* Write the address of the entity given by SYMBOL to SEC. */
1375 void
1376 assemble_addr_to_section (rtx symbol, section *sec)
1378 switch_to_section (sec);
1379 assemble_align (POINTER_SIZE);
1380 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1383 /* Return the numbered .ctors.N (if CONSTRUCTOR_P) or .dtors.N (if
1384 not) section for PRIORITY. */
1385 section *
1386 get_cdtor_priority_section (int priority, bool constructor_p)
1388 char buf[16];
1390 /* ??? This only works reliably with the GNU linker. */
1391 sprintf (buf, "%s.%.5u",
1392 constructor_p ? ".ctors" : ".dtors",
1393 /* Invert the numbering so the linker puts us in the proper
1394 order; constructors are run from right to left, and the
1395 linker sorts in increasing order. */
1396 MAX_INIT_PRIORITY - priority);
1397 return get_section (buf, SECTION_WRITE, NULL);
1400 void
1401 default_named_section_asm_out_destructor (rtx symbol, int priority)
1403 section *sec;
1405 if (priority != DEFAULT_INIT_PRIORITY)
1406 sec = get_cdtor_priority_section (priority,
1407 /*constructor_p=*/false);
1408 else
1409 sec = get_section (".dtors", SECTION_WRITE, NULL);
1411 assemble_addr_to_section (symbol, sec);
1414 #ifdef DTORS_SECTION_ASM_OP
1415 void
1416 default_dtor_section_asm_out_destructor (rtx symbol,
1417 int priority ATTRIBUTE_UNUSED)
1419 assemble_addr_to_section (symbol, dtors_section);
1421 #endif
1423 /* Likewise for global constructors. */
1425 void
1426 default_stabs_asm_out_constructor (rtx symbol ATTRIBUTE_UNUSED,
1427 int priority ATTRIBUTE_UNUSED)
1429 #if defined DBX_DEBUGGING_INFO || defined XCOFF_DEBUGGING_INFO
1430 /* Tell GNU LD that this is part of the static destructor set.
1431 This will work for any system that uses stabs, most usefully
1432 aout systems. */
1433 dbxout_begin_simple_stabs ("___CTOR_LIST__", 22 /* N_SETT */);
1434 dbxout_stab_value_label (XSTR (symbol, 0));
1435 #else
1436 sorry ("global constructors not supported on this target");
1437 #endif
1440 void
1441 default_named_section_asm_out_constructor (rtx symbol, int priority)
1443 section *sec;
1445 if (priority != DEFAULT_INIT_PRIORITY)
1446 sec = get_cdtor_priority_section (priority,
1447 /*constructor_p=*/true);
1448 else
1449 sec = get_section (".ctors", SECTION_WRITE, NULL);
1451 assemble_addr_to_section (symbol, sec);
1454 #ifdef CTORS_SECTION_ASM_OP
1455 void
1456 default_ctor_section_asm_out_constructor (rtx symbol,
1457 int priority ATTRIBUTE_UNUSED)
1459 assemble_addr_to_section (symbol, ctors_section);
1461 #endif
1463 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1464 a nonzero value if the constant pool should be output before the
1465 start of the function, or a zero value if the pool should output
1466 after the end of the function. The default is to put it before the
1467 start. */
1469 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1470 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1471 #endif
1473 /* DECL is an object (either VAR_DECL or FUNCTION_DECL) which is going
1474 to be output to assembler.
1475 Set first_global_object_name and weak_global_object_name as appropriate. */
1477 void
1478 notice_global_symbol (tree decl)
1480 const char **type = &first_global_object_name;
1482 if (first_global_object_name
1483 || !TREE_PUBLIC (decl)
1484 || DECL_EXTERNAL (decl)
1485 || !DECL_NAME (decl)
1486 || (TREE_CODE (decl) != FUNCTION_DECL
1487 && (TREE_CODE (decl) != VAR_DECL
1488 || (DECL_COMMON (decl)
1489 && (DECL_INITIAL (decl) == 0
1490 || DECL_INITIAL (decl) == error_mark_node))))
1491 || !MEM_P (DECL_RTL (decl)))
1492 return;
1494 /* We win when global object is found, but it is useful to know about weak
1495 symbol as well so we can produce nicer unique names. */
1496 if (DECL_WEAK (decl) || DECL_ONE_ONLY (decl) || flag_shlib)
1497 type = &weak_global_object_name;
1499 if (!*type)
1501 const char *p;
1502 const char *name;
1503 rtx decl_rtl = DECL_RTL (decl);
1505 p = targetm.strip_name_encoding (XSTR (XEXP (decl_rtl, 0), 0));
1506 name = ggc_strdup (p);
1508 *type = name;
1512 /* Output assembler code for the constant pool of a function and associated
1513 with defining the name of the function. DECL describes the function.
1514 NAME is the function's name. For the constant pool, we use the current
1515 constant pool data. */
1517 void
1518 assemble_start_function (tree decl, const char *fnname)
1520 int align;
1521 char tmp_label[100];
1522 bool hot_label_written = false;
1524 first_function_block_is_cold = false;
1525 if (flag_reorder_blocks_and_partition)
1527 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LHOTB", const_labelno);
1528 crtl->subsections.hot_section_label = ggc_strdup (tmp_label);
1529 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LCOLDB", const_labelno);
1530 crtl->subsections.cold_section_label = ggc_strdup (tmp_label);
1531 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LHOTE", const_labelno);
1532 crtl->subsections.hot_section_end_label = ggc_strdup (tmp_label);
1533 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LCOLDE", const_labelno);
1534 crtl->subsections.cold_section_end_label = ggc_strdup (tmp_label);
1535 const_labelno++;
1537 else
1539 crtl->subsections.hot_section_label = NULL;
1540 crtl->subsections.cold_section_label = NULL;
1541 crtl->subsections.hot_section_end_label = NULL;
1542 crtl->subsections.cold_section_end_label = NULL;
1545 /* The following code does not need preprocessing in the assembler. */
1547 app_disable ();
1549 if (CONSTANT_POOL_BEFORE_FUNCTION)
1550 output_constant_pool (fnname, decl);
1552 resolve_unique_section (decl, 0, flag_function_sections);
1554 /* Make sure the not and cold text (code) sections are properly
1555 aligned. This is necessary here in the case where the function
1556 has both hot and cold sections, because we don't want to re-set
1557 the alignment when the section switch happens mid-function. */
1559 if (flag_reorder_blocks_and_partition)
1561 switch_to_section (unlikely_text_section ());
1562 assemble_align (DECL_ALIGN (decl));
1563 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.cold_section_label);
1565 /* When the function starts with a cold section, we need to explicitly
1566 align the hot section and write out the hot section label.
1567 But if the current function is a thunk, we do not have a CFG. */
1568 if (!cfun->is_thunk
1569 && BB_PARTITION (ENTRY_BLOCK_PTR->next_bb) == BB_COLD_PARTITION)
1571 switch_to_section (text_section);
1572 assemble_align (DECL_ALIGN (decl));
1573 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.hot_section_label);
1574 hot_label_written = true;
1575 first_function_block_is_cold = true;
1578 else if (DECL_SECTION_NAME (decl))
1580 /* Calls to function_section rely on first_function_block_is_cold
1581 being accurate. */
1582 first_function_block_is_cold
1583 = (cgraph_node (current_function_decl)->frequency
1584 == NODE_FREQUENCY_UNLIKELY_EXECUTED);
1587 in_cold_section_p = first_function_block_is_cold;
1589 /* Switch to the correct text section for the start of the function. */
1591 switch_to_section (function_section (decl));
1592 if (flag_reorder_blocks_and_partition
1593 && !hot_label_written)
1594 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.hot_section_label);
1596 /* Tell assembler to move to target machine's alignment for functions. */
1597 align = floor_log2 (DECL_ALIGN (decl) / BITS_PER_UNIT);
1598 if (align > 0)
1600 ASM_OUTPUT_ALIGN (asm_out_file, align);
1603 /* Handle a user-specified function alignment.
1604 Note that we still need to align to DECL_ALIGN, as above,
1605 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1606 if (! DECL_USER_ALIGN (decl)
1607 && align_functions_log > align
1608 && optimize_function_for_speed_p (cfun))
1610 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1611 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file,
1612 align_functions_log, align_functions - 1);
1613 #else
1614 ASM_OUTPUT_ALIGN (asm_out_file, align_functions_log);
1615 #endif
1618 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1619 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file, fnname);
1620 #endif
1622 if (!DECL_IGNORED_P (decl))
1623 (*debug_hooks->begin_function) (decl);
1625 /* Make function name accessible from other files, if appropriate. */
1627 if (TREE_PUBLIC (decl))
1629 notice_global_symbol (decl);
1631 globalize_decl (decl);
1633 maybe_assemble_visibility (decl);
1636 if (DECL_PRESERVE_P (decl))
1637 targetm.asm_out.mark_decl_preserved (fnname);
1639 /* Do any machine/system dependent processing of the function name. */
1640 #ifdef ASM_DECLARE_FUNCTION_NAME
1641 ASM_DECLARE_FUNCTION_NAME (asm_out_file, fnname, current_function_decl);
1642 #else
1643 /* Standard thing is just output label for the function. */
1644 ASM_OUTPUT_FUNCTION_LABEL (asm_out_file, fnname, current_function_decl);
1645 #endif /* ASM_DECLARE_FUNCTION_NAME */
1647 if (lookup_attribute ("no_split_stack", DECL_ATTRIBUTES (decl)))
1648 saw_no_split_stack = true;
1651 /* Output assembler code associated with defining the size of the
1652 function. DECL describes the function. NAME is the function's name. */
1654 void
1655 assemble_end_function (tree decl, const char *fnname ATTRIBUTE_UNUSED)
1657 #ifdef ASM_DECLARE_FUNCTION_SIZE
1658 /* We could have switched section in the middle of the function. */
1659 if (flag_reorder_blocks_and_partition)
1660 switch_to_section (function_section (decl));
1661 ASM_DECLARE_FUNCTION_SIZE (asm_out_file, fnname, decl);
1662 #endif
1663 if (! CONSTANT_POOL_BEFORE_FUNCTION)
1665 output_constant_pool (fnname, decl);
1666 switch_to_section (function_section (decl)); /* need to switch back */
1668 /* Output labels for end of hot/cold text sections (to be used by
1669 debug info.) */
1670 if (flag_reorder_blocks_and_partition)
1672 section *save_text_section;
1674 save_text_section = in_section;
1675 switch_to_section (unlikely_text_section ());
1676 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.cold_section_end_label);
1677 if (first_function_block_is_cold)
1678 switch_to_section (text_section);
1679 else
1680 switch_to_section (function_section (decl));
1681 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.hot_section_end_label);
1682 switch_to_section (save_text_section);
1686 /* Assemble code to leave SIZE bytes of zeros. */
1688 void
1689 assemble_zeros (unsigned HOST_WIDE_INT size)
1691 /* Do no output if -fsyntax-only. */
1692 if (flag_syntax_only)
1693 return;
1695 #ifdef ASM_NO_SKIP_IN_TEXT
1696 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1697 so we must output 0s explicitly in the text section. */
1698 if (ASM_NO_SKIP_IN_TEXT && (in_section->common.flags & SECTION_CODE) != 0)
1700 unsigned HOST_WIDE_INT i;
1701 for (i = 0; i < size; i++)
1702 assemble_integer (const0_rtx, 1, BITS_PER_UNIT, 1);
1704 else
1705 #endif
1706 if (size > 0)
1707 ASM_OUTPUT_SKIP (asm_out_file, size);
1710 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1712 void
1713 assemble_align (int align)
1715 if (align > BITS_PER_UNIT)
1717 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
1721 /* Assemble a string constant with the specified C string as contents. */
1723 void
1724 assemble_string (const char *p, int size)
1726 int pos = 0;
1727 int maximum = 2000;
1729 /* If the string is very long, split it up. */
1731 while (pos < size)
1733 int thissize = size - pos;
1734 if (thissize > maximum)
1735 thissize = maximum;
1737 ASM_OUTPUT_ASCII (asm_out_file, p, thissize);
1739 pos += thissize;
1740 p += thissize;
1745 /* A noswitch_section_callback for lcomm_section. */
1747 static bool
1748 emit_local (tree decl ATTRIBUTE_UNUSED,
1749 const char *name ATTRIBUTE_UNUSED,
1750 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1751 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1753 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1754 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name,
1755 size, DECL_ALIGN (decl));
1756 return true;
1757 #elif defined ASM_OUTPUT_ALIGNED_LOCAL
1758 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, DECL_ALIGN (decl));
1759 return true;
1760 #else
1761 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
1762 return false;
1763 #endif
1766 /* A noswitch_section_callback for bss_noswitch_section. */
1768 #if defined ASM_OUTPUT_ALIGNED_BSS || defined ASM_OUTPUT_BSS
1769 static bool
1770 emit_bss (tree decl ATTRIBUTE_UNUSED,
1771 const char *name ATTRIBUTE_UNUSED,
1772 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1773 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1775 #if defined ASM_OUTPUT_ALIGNED_BSS
1776 ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size, DECL_ALIGN (decl));
1777 return true;
1778 #else
1779 ASM_OUTPUT_BSS (asm_out_file, decl, name, size, rounded);
1780 return false;
1781 #endif
1783 #endif
1785 /* A noswitch_section_callback for comm_section. */
1787 static bool
1788 emit_common (tree decl ATTRIBUTE_UNUSED,
1789 const char *name ATTRIBUTE_UNUSED,
1790 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1791 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1793 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1794 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name,
1795 size, DECL_ALIGN (decl));
1796 return true;
1797 #elif defined ASM_OUTPUT_ALIGNED_COMMON
1798 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size, DECL_ALIGN (decl));
1799 return true;
1800 #else
1801 ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded);
1802 return false;
1803 #endif
1806 /* A noswitch_section_callback for tls_comm_section. */
1808 static bool
1809 emit_tls_common (tree decl ATTRIBUTE_UNUSED,
1810 const char *name ATTRIBUTE_UNUSED,
1811 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1812 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1814 #ifdef ASM_OUTPUT_TLS_COMMON
1815 ASM_OUTPUT_TLS_COMMON (asm_out_file, decl, name, size);
1816 return true;
1817 #else
1818 sorry ("thread-local COMMON data not implemented");
1819 return true;
1820 #endif
1823 /* Assemble DECL given that it belongs in SECTION_NOSWITCH section SECT.
1824 NAME is the name of DECL's SYMBOL_REF. */
1826 static void
1827 assemble_noswitch_variable (tree decl, const char *name, section *sect)
1829 unsigned HOST_WIDE_INT size, rounded;
1831 size = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
1832 rounded = size;
1834 /* Don't allocate zero bytes of common,
1835 since that means "undefined external" in the linker. */
1836 if (size == 0)
1837 rounded = 1;
1839 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1840 so that each uninitialized object starts on such a boundary. */
1841 rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
1842 rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1843 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1845 if (!sect->noswitch.callback (decl, name, size, rounded)
1846 && (unsigned HOST_WIDE_INT) DECL_ALIGN_UNIT (decl) > rounded)
1847 warning (0, "requested alignment for %q+D is greater than "
1848 "implemented alignment of %wu", decl, rounded);
1851 /* A subroutine of assemble_variable. Output the label and contents of
1852 DECL, whose address is a SYMBOL_REF with name NAME. DONT_OUTPUT_DATA
1853 is as for assemble_variable. */
1855 static void
1856 assemble_variable_contents (tree decl, const char *name,
1857 bool dont_output_data)
1859 /* Do any machine/system dependent processing of the object. */
1860 #ifdef ASM_DECLARE_OBJECT_NAME
1861 last_assemble_variable_decl = decl;
1862 ASM_DECLARE_OBJECT_NAME (asm_out_file, name, decl);
1863 #else
1864 /* Standard thing is just output label for the object. */
1865 ASM_OUTPUT_LABEL (asm_out_file, name);
1866 #endif /* ASM_DECLARE_OBJECT_NAME */
1868 if (!dont_output_data)
1870 if (DECL_INITIAL (decl)
1871 && DECL_INITIAL (decl) != error_mark_node
1872 && !initializer_zerop (DECL_INITIAL (decl)))
1873 /* Output the actual data. */
1874 output_constant (DECL_INITIAL (decl),
1875 tree_low_cst (DECL_SIZE_UNIT (decl), 1),
1876 DECL_ALIGN (decl));
1877 else
1878 /* Leave space for it. */
1879 assemble_zeros (tree_low_cst (DECL_SIZE_UNIT (decl), 1));
1883 /* Assemble everything that is needed for a variable or function declaration.
1884 Not used for automatic variables, and not used for function definitions.
1885 Should not be called for variables of incomplete structure type.
1887 TOP_LEVEL is nonzero if this variable has file scope.
1888 AT_END is nonzero if this is the special handling, at end of compilation,
1889 to define things that have had only tentative definitions.
1890 DONT_OUTPUT_DATA if nonzero means don't actually output the
1891 initial value (that will be done by the caller). */
1893 void
1894 assemble_variable (tree decl, int top_level ATTRIBUTE_UNUSED,
1895 int at_end ATTRIBUTE_UNUSED, int dont_output_data)
1897 const char *name;
1898 rtx decl_rtl, symbol;
1899 section *sect;
1901 /* This function is supposed to handle VARIABLES. Ensure we have one. */
1902 gcc_assert (TREE_CODE (decl) == VAR_DECL);
1904 /* Emulated TLS had better not get this far. */
1905 gcc_checking_assert (targetm.have_tls || !DECL_THREAD_LOCAL_P (decl));
1907 last_assemble_variable_decl = 0;
1909 /* Normally no need to say anything here for external references,
1910 since assemble_external is called by the language-specific code
1911 when a declaration is first seen. */
1913 if (DECL_EXTERNAL (decl))
1914 return;
1916 /* Do nothing for global register variables. */
1917 if (DECL_RTL_SET_P (decl) && REG_P (DECL_RTL (decl)))
1919 TREE_ASM_WRITTEN (decl) = 1;
1920 return;
1923 /* If type was incomplete when the variable was declared,
1924 see if it is complete now. */
1926 if (DECL_SIZE (decl) == 0)
1927 layout_decl (decl, 0);
1929 /* Still incomplete => don't allocate it; treat the tentative defn
1930 (which is what it must have been) as an `extern' reference. */
1932 if (!dont_output_data && DECL_SIZE (decl) == 0)
1934 error ("storage size of %q+D isn%'t known", decl);
1935 TREE_ASM_WRITTEN (decl) = 1;
1936 return;
1939 /* The first declaration of a variable that comes through this function
1940 decides whether it is global (in C, has external linkage)
1941 or local (in C, has internal linkage). So do nothing more
1942 if this function has already run. */
1944 if (TREE_ASM_WRITTEN (decl))
1945 return;
1947 /* Make sure targetm.encode_section_info is invoked before we set
1948 ASM_WRITTEN. */
1949 decl_rtl = DECL_RTL (decl);
1951 TREE_ASM_WRITTEN (decl) = 1;
1953 /* Do no output if -fsyntax-only. */
1954 if (flag_syntax_only)
1955 return;
1957 if (! dont_output_data
1958 && ! host_integerp (DECL_SIZE_UNIT (decl), 1))
1960 error ("size of variable %q+D is too large", decl);
1961 return;
1964 gcc_assert (MEM_P (decl_rtl));
1965 gcc_assert (GET_CODE (XEXP (decl_rtl, 0)) == SYMBOL_REF);
1966 symbol = XEXP (decl_rtl, 0);
1968 /* If this symbol belongs to the tree constant pool, output the constant
1969 if it hasn't already been written. */
1970 if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
1972 tree decl = SYMBOL_REF_DECL (symbol);
1973 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl)))
1974 output_constant_def_contents (symbol);
1975 return;
1978 app_disable ();
1980 name = XSTR (symbol, 0);
1981 if (TREE_PUBLIC (decl) && DECL_NAME (decl))
1982 notice_global_symbol (decl);
1984 /* Compute the alignment of this data. */
1986 align_variable (decl, dont_output_data);
1987 set_mem_align (decl_rtl, DECL_ALIGN (decl));
1989 if (TREE_PUBLIC (decl))
1990 maybe_assemble_visibility (decl);
1992 if (DECL_PRESERVE_P (decl))
1993 targetm.asm_out.mark_decl_preserved (name);
1995 /* First make the assembler name(s) global if appropriate. */
1996 sect = get_variable_section (decl, false);
1997 if (TREE_PUBLIC (decl)
1998 && (sect->common.flags & SECTION_COMMON) == 0)
1999 globalize_decl (decl);
2001 /* Output any data that we will need to use the address of. */
2002 if (DECL_INITIAL (decl) && DECL_INITIAL (decl) != error_mark_node)
2003 output_addressed_constants (DECL_INITIAL (decl));
2005 /* dbxout.c needs to know this. */
2006 if (sect && (sect->common.flags & SECTION_CODE) != 0)
2007 DECL_IN_TEXT_SECTION (decl) = 1;
2009 /* If the decl is part of an object_block, make sure that the decl
2010 has been positioned within its block, but do not write out its
2011 definition yet. output_object_blocks will do that later. */
2012 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol) && SYMBOL_REF_BLOCK (symbol))
2014 gcc_assert (!dont_output_data);
2015 place_block_symbol (symbol);
2017 else if (SECTION_STYLE (sect) == SECTION_NOSWITCH)
2018 assemble_noswitch_variable (decl, name, sect);
2019 else
2021 switch_to_section (sect);
2022 if (DECL_ALIGN (decl) > BITS_PER_UNIT)
2023 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (DECL_ALIGN_UNIT (decl)));
2024 assemble_variable_contents (decl, name, dont_output_data);
2028 /* Return 1 if type TYPE contains any pointers. */
2030 static int
2031 contains_pointers_p (tree type)
2033 switch (TREE_CODE (type))
2035 case POINTER_TYPE:
2036 case REFERENCE_TYPE:
2037 /* I'm not sure whether OFFSET_TYPE needs this treatment,
2038 so I'll play safe and return 1. */
2039 case OFFSET_TYPE:
2040 return 1;
2042 case RECORD_TYPE:
2043 case UNION_TYPE:
2044 case QUAL_UNION_TYPE:
2046 tree fields;
2047 /* For a type that has fields, see if the fields have pointers. */
2048 for (fields = TYPE_FIELDS (type); fields; fields = DECL_CHAIN (fields))
2049 if (TREE_CODE (fields) == FIELD_DECL
2050 && contains_pointers_p (TREE_TYPE (fields)))
2051 return 1;
2052 return 0;
2055 case ARRAY_TYPE:
2056 /* An array type contains pointers if its element type does. */
2057 return contains_pointers_p (TREE_TYPE (type));
2059 default:
2060 return 0;
2064 /* We delay assemble_external processing until
2065 the compilation unit is finalized. This is the best we can do for
2066 right now (i.e. stage 3 of GCC 4.0) - the right thing is to delay
2067 it all the way to final. See PR 17982 for further discussion. */
2068 static GTY(()) tree pending_assemble_externals;
2070 #ifdef ASM_OUTPUT_EXTERNAL
2071 /* True if DECL is a function decl for which no out-of-line copy exists.
2072 It is assumed that DECL's assembler name has been set. */
2074 static bool
2075 incorporeal_function_p (tree decl)
2077 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
2079 const char *name;
2081 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
2082 && DECL_FUNCTION_CODE (decl) == BUILT_IN_ALLOCA)
2083 return true;
2085 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2086 if (is_builtin_name (name))
2087 return true;
2089 return false;
2092 /* Actually do the tests to determine if this is necessary, and invoke
2093 ASM_OUTPUT_EXTERNAL. */
2094 static void
2095 assemble_external_real (tree decl)
2097 rtx rtl = DECL_RTL (decl);
2099 if (MEM_P (rtl) && GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF
2100 && !SYMBOL_REF_USED (XEXP (rtl, 0))
2101 && !incorporeal_function_p (decl))
2103 /* Some systems do require some output. */
2104 SYMBOL_REF_USED (XEXP (rtl, 0)) = 1;
2105 ASM_OUTPUT_EXTERNAL (asm_out_file, decl, XSTR (XEXP (rtl, 0), 0));
2108 #endif
2110 void
2111 process_pending_assemble_externals (void)
2113 #ifdef ASM_OUTPUT_EXTERNAL
2114 tree list;
2115 for (list = pending_assemble_externals; list; list = TREE_CHAIN (list))
2116 assemble_external_real (TREE_VALUE (list));
2118 pending_assemble_externals = 0;
2119 #endif
2122 /* This TREE_LIST contains any weak symbol declarations waiting
2123 to be emitted. */
2124 static GTY(()) tree weak_decls;
2126 /* Output something to declare an external symbol to the assembler,
2127 and qualifiers such as weakness. (Most assemblers don't need
2128 extern declaration, so we normally output nothing.) Do nothing if
2129 DECL is not external. */
2131 void
2132 assemble_external (tree decl ATTRIBUTE_UNUSED)
2134 /* Because most platforms do not define ASM_OUTPUT_EXTERNAL, the
2135 main body of this code is only rarely exercised. To provide some
2136 testing, on all platforms, we make sure that the ASM_OUT_FILE is
2137 open. If it's not, we should not be calling this function. */
2138 gcc_assert (asm_out_file);
2140 if (!DECL_P (decl) || !DECL_EXTERNAL (decl) || !TREE_PUBLIC (decl))
2141 return;
2143 /* We want to output annotation for weak and external symbols at
2144 very last to check if they are references or not. */
2146 if (TARGET_SUPPORTS_WEAK
2147 && DECL_WEAK (decl)
2148 /* TREE_STATIC is a weird and abused creature which is not
2149 generally the right test for whether an entity has been
2150 locally emitted, inlined or otherwise not-really-extern, but
2151 for declarations that can be weak, it happens to be
2152 match. */
2153 && !TREE_STATIC (decl)
2154 && lookup_attribute ("weak", DECL_ATTRIBUTES (decl))
2155 && value_member (decl, weak_decls) == NULL_TREE)
2156 weak_decls = tree_cons (NULL, decl, weak_decls);
2158 #ifdef ASM_OUTPUT_EXTERNAL
2159 if (value_member (decl, pending_assemble_externals) == NULL_TREE)
2160 pending_assemble_externals = tree_cons (NULL, decl,
2161 pending_assemble_externals);
2162 #endif
2165 /* Similar, for calling a library function FUN. */
2167 void
2168 assemble_external_libcall (rtx fun)
2170 /* Declare library function name external when first used, if nec. */
2171 if (! SYMBOL_REF_USED (fun))
2173 SYMBOL_REF_USED (fun) = 1;
2174 targetm.asm_out.external_libcall (fun);
2178 /* Assemble a label named NAME. */
2180 void
2181 assemble_label (FILE *file, const char *name)
2183 ASM_OUTPUT_LABEL (file, name);
2186 /* Set the symbol_referenced flag for ID. */
2187 void
2188 mark_referenced (tree id)
2190 TREE_SYMBOL_REFERENCED (id) = 1;
2193 /* Set the symbol_referenced flag for DECL and notify callgraph. */
2194 void
2195 mark_decl_referenced (tree decl)
2197 if (TREE_CODE (decl) == FUNCTION_DECL)
2199 /* Extern inline functions don't become needed when referenced.
2200 If we know a method will be emitted in other TU and no new
2201 functions can be marked reachable, just use the external
2202 definition. */
2203 struct cgraph_node *node = cgraph_node (decl);
2204 if (!DECL_EXTERNAL (decl)
2205 && (!node->local.vtable_method || !cgraph_global_info_ready
2206 || !node->local.finalized))
2207 cgraph_mark_needed_node (node);
2209 else if (TREE_CODE (decl) == VAR_DECL)
2211 struct varpool_node *node = varpool_node (decl);
2212 varpool_mark_needed_node (node);
2213 /* C++ frontend use mark_decl_references to force COMDAT variables
2214 to be output that might appear dead otherwise. */
2215 node->force_output = true;
2217 /* else do nothing - we can get various sorts of CST nodes here,
2218 which do not need to be marked. */
2222 /* Follow the IDENTIFIER_TRANSPARENT_ALIAS chain starting at *ALIAS
2223 until we find an identifier that is not itself a transparent alias.
2224 Modify the alias passed to it by reference (and all aliases on the
2225 way to the ultimate target), such that they do not have to be
2226 followed again, and return the ultimate target of the alias
2227 chain. */
2229 static inline tree
2230 ultimate_transparent_alias_target (tree *alias)
2232 tree target = *alias;
2234 if (IDENTIFIER_TRANSPARENT_ALIAS (target))
2236 gcc_assert (TREE_CHAIN (target));
2237 target = ultimate_transparent_alias_target (&TREE_CHAIN (target));
2238 gcc_assert (! IDENTIFIER_TRANSPARENT_ALIAS (target)
2239 && ! TREE_CHAIN (target));
2240 *alias = target;
2243 return target;
2246 /* Output to FILE (an assembly file) a reference to NAME. If NAME
2247 starts with a *, the rest of NAME is output verbatim. Otherwise
2248 NAME is transformed in a target-specific way (usually by the
2249 addition of an underscore). */
2251 void
2252 assemble_name_raw (FILE *file, const char *name)
2254 if (name[0] == '*')
2255 fputs (&name[1], file);
2256 else
2257 ASM_OUTPUT_LABELREF (file, name);
2260 /* Like assemble_name_raw, but should be used when NAME might refer to
2261 an entity that is also represented as a tree (like a function or
2262 variable). If NAME does refer to such an entity, that entity will
2263 be marked as referenced. */
2265 void
2266 assemble_name (FILE *file, const char *name)
2268 const char *real_name;
2269 tree id;
2271 real_name = targetm.strip_name_encoding (name);
2273 id = maybe_get_identifier (real_name);
2274 if (id)
2276 tree id_orig = id;
2278 mark_referenced (id);
2279 ultimate_transparent_alias_target (&id);
2280 if (id != id_orig)
2281 name = IDENTIFIER_POINTER (id);
2282 gcc_assert (! TREE_CHAIN (id));
2285 assemble_name_raw (file, name);
2288 /* Allocate SIZE bytes writable static space with a gensym name
2289 and return an RTX to refer to its address. */
2292 assemble_static_space (unsigned HOST_WIDE_INT size)
2294 char name[12];
2295 const char *namestring;
2296 rtx x;
2298 ASM_GENERATE_INTERNAL_LABEL (name, "LF", const_labelno);
2299 ++const_labelno;
2300 namestring = ggc_strdup (name);
2302 x = gen_rtx_SYMBOL_REF (Pmode, namestring);
2303 SYMBOL_REF_FLAGS (x) = SYMBOL_FLAG_LOCAL;
2305 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
2306 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name, size,
2307 BIGGEST_ALIGNMENT);
2308 #else
2309 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
2310 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, BIGGEST_ALIGNMENT);
2311 #else
2313 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2314 so that each uninitialized object starts on such a boundary. */
2315 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
2316 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
2317 = ((size + (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1)
2318 / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
2319 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
2320 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
2322 #endif
2323 #endif
2324 return x;
2327 /* Assemble the static constant template for function entry trampolines.
2328 This is done at most once per compilation.
2329 Returns an RTX for the address of the template. */
2331 static GTY(()) rtx initial_trampoline;
2334 assemble_trampoline_template (void)
2336 char label[256];
2337 const char *name;
2338 int align;
2339 rtx symbol;
2341 gcc_assert (targetm.asm_out.trampoline_template != NULL);
2343 if (initial_trampoline)
2344 return initial_trampoline;
2346 /* By default, put trampoline templates in read-only data section. */
2348 #ifdef TRAMPOLINE_SECTION
2349 switch_to_section (TRAMPOLINE_SECTION);
2350 #else
2351 switch_to_section (readonly_data_section);
2352 #endif
2354 /* Write the assembler code to define one. */
2355 align = floor_log2 (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT);
2356 if (align > 0)
2357 ASM_OUTPUT_ALIGN (asm_out_file, align);
2359 targetm.asm_out.internal_label (asm_out_file, "LTRAMP", 0);
2360 targetm.asm_out.trampoline_template (asm_out_file);
2362 /* Record the rtl to refer to it. */
2363 ASM_GENERATE_INTERNAL_LABEL (label, "LTRAMP", 0);
2364 name = ggc_strdup (label);
2365 symbol = gen_rtx_SYMBOL_REF (Pmode, name);
2366 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
2368 initial_trampoline = gen_const_mem (BLKmode, symbol);
2369 set_mem_align (initial_trampoline, TRAMPOLINE_ALIGNMENT);
2370 set_mem_size (initial_trampoline, GEN_INT (TRAMPOLINE_SIZE));
2372 return initial_trampoline;
2375 /* A and B are either alignments or offsets. Return the minimum alignment
2376 that may be assumed after adding the two together. */
2378 static inline unsigned
2379 min_align (unsigned int a, unsigned int b)
2381 return (a | b) & -(a | b);
2384 /* Return the assembler directive for creating a given kind of integer
2385 object. SIZE is the number of bytes in the object and ALIGNED_P
2386 indicates whether it is known to be aligned. Return NULL if the
2387 assembly dialect has no such directive.
2389 The returned string should be printed at the start of a new line and
2390 be followed immediately by the object's initial value. */
2392 const char *
2393 integer_asm_op (int size, int aligned_p)
2395 struct asm_int_op *ops;
2397 if (aligned_p)
2398 ops = &targetm.asm_out.aligned_op;
2399 else
2400 ops = &targetm.asm_out.unaligned_op;
2402 switch (size)
2404 case 1:
2405 return targetm.asm_out.byte_op;
2406 case 2:
2407 return ops->hi;
2408 case 4:
2409 return ops->si;
2410 case 8:
2411 return ops->di;
2412 case 16:
2413 return ops->ti;
2414 default:
2415 return NULL;
2419 /* Use directive OP to assemble an integer object X. Print OP at the
2420 start of the line, followed immediately by the value of X. */
2422 void
2423 assemble_integer_with_op (const char *op, rtx x)
2425 fputs (op, asm_out_file);
2426 output_addr_const (asm_out_file, x);
2427 fputc ('\n', asm_out_file);
2430 /* The default implementation of the asm_out.integer target hook. */
2432 bool
2433 default_assemble_integer (rtx x ATTRIBUTE_UNUSED,
2434 unsigned int size ATTRIBUTE_UNUSED,
2435 int aligned_p ATTRIBUTE_UNUSED)
2437 const char *op = integer_asm_op (size, aligned_p);
2438 /* Avoid GAS bugs for large values. Specifically negative values whose
2439 absolute value fits in a bfd_vma, but not in a bfd_signed_vma. */
2440 if (size > UNITS_PER_WORD && size > POINTER_SIZE / BITS_PER_UNIT)
2441 return false;
2442 return op && (assemble_integer_with_op (op, x), true);
2445 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
2446 the alignment of the integer in bits. Return 1 if we were able to output
2447 the constant, otherwise 0. We must be able to output the constant,
2448 if FORCE is nonzero. */
2450 bool
2451 assemble_integer (rtx x, unsigned int size, unsigned int align, int force)
2453 int aligned_p;
2455 aligned_p = (align >= MIN (size * BITS_PER_UNIT, BIGGEST_ALIGNMENT));
2457 /* See if the target hook can handle this kind of object. */
2458 if (targetm.asm_out.integer (x, size, aligned_p))
2459 return true;
2461 /* If the object is a multi-byte one, try splitting it up. Split
2462 it into words it if is multi-word, otherwise split it into bytes. */
2463 if (size > 1)
2465 enum machine_mode omode, imode;
2466 unsigned int subalign;
2467 unsigned int subsize, i;
2468 enum mode_class mclass;
2470 subsize = size > UNITS_PER_WORD? UNITS_PER_WORD : 1;
2471 subalign = MIN (align, subsize * BITS_PER_UNIT);
2472 if (GET_CODE (x) == CONST_FIXED)
2473 mclass = GET_MODE_CLASS (GET_MODE (x));
2474 else
2475 mclass = MODE_INT;
2477 omode = mode_for_size (subsize * BITS_PER_UNIT, mclass, 0);
2478 imode = mode_for_size (size * BITS_PER_UNIT, mclass, 0);
2480 for (i = 0; i < size; i += subsize)
2482 rtx partial = simplify_subreg (omode, x, imode, i);
2483 if (!partial || !assemble_integer (partial, subsize, subalign, 0))
2484 break;
2486 if (i == size)
2487 return true;
2489 /* If we've printed some of it, but not all of it, there's no going
2490 back now. */
2491 gcc_assert (!i);
2494 gcc_assert (!force);
2496 return false;
2499 void
2500 assemble_real (REAL_VALUE_TYPE d, enum machine_mode mode, unsigned int align)
2502 long data[4] = {0, 0, 0, 0};
2503 int i;
2504 int bitsize, nelts, nunits, units_per;
2506 /* This is hairy. We have a quantity of known size. real_to_target
2507 will put it into an array of *host* longs, 32 bits per element
2508 (even if long is more than 32 bits). We need to determine the
2509 number of array elements that are occupied (nelts) and the number
2510 of *target* min-addressable units that will be occupied in the
2511 object file (nunits). We cannot assume that 32 divides the
2512 mode's bitsize (size * BITS_PER_UNIT) evenly.
2514 size * BITS_PER_UNIT is used here to make sure that padding bits
2515 (which might appear at either end of the value; real_to_target
2516 will include the padding bits in its output array) are included. */
2518 nunits = GET_MODE_SIZE (mode);
2519 bitsize = nunits * BITS_PER_UNIT;
2520 nelts = CEIL (bitsize, 32);
2521 units_per = 32 / BITS_PER_UNIT;
2523 real_to_target (data, &d, mode);
2525 /* Put out the first word with the specified alignment. */
2526 assemble_integer (GEN_INT (data[0]), MIN (nunits, units_per), align, 1);
2527 nunits -= units_per;
2529 /* Subsequent words need only 32-bit alignment. */
2530 align = min_align (align, 32);
2532 for (i = 1; i < nelts; i++)
2534 assemble_integer (GEN_INT (data[i]), MIN (nunits, units_per), align, 1);
2535 nunits -= units_per;
2539 /* Given an expression EXP with a constant value,
2540 reduce it to the sum of an assembler symbol and an integer.
2541 Store them both in the structure *VALUE.
2542 EXP must be reducible. */
2544 struct GTY(()) addr_const {
2545 rtx base;
2546 HOST_WIDE_INT offset;
2549 static void
2550 decode_addr_const (tree exp, struct addr_const *value)
2552 tree target = TREE_OPERAND (exp, 0);
2553 int offset = 0;
2554 rtx x;
2556 while (1)
2558 if (TREE_CODE (target) == COMPONENT_REF
2559 && host_integerp (byte_position (TREE_OPERAND (target, 1)), 0))
2561 offset += int_byte_position (TREE_OPERAND (target, 1));
2562 target = TREE_OPERAND (target, 0);
2564 else if (TREE_CODE (target) == ARRAY_REF
2565 || TREE_CODE (target) == ARRAY_RANGE_REF)
2567 offset += (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (target)), 1)
2568 * tree_low_cst (TREE_OPERAND (target, 1), 0));
2569 target = TREE_OPERAND (target, 0);
2571 else if (TREE_CODE (target) == INDIRECT_REF
2572 && TREE_CODE (TREE_OPERAND (target, 0)) == NOP_EXPR
2573 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (target, 0), 0))
2574 == ADDR_EXPR)
2575 target = TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (target, 0), 0), 0);
2576 else
2577 break;
2580 switch (TREE_CODE (target))
2582 case VAR_DECL:
2583 case FUNCTION_DECL:
2584 x = DECL_RTL (target);
2585 break;
2587 case LABEL_DECL:
2588 x = gen_rtx_MEM (FUNCTION_MODE,
2589 gen_rtx_LABEL_REF (Pmode, force_label_rtx (target)));
2590 break;
2592 case REAL_CST:
2593 case FIXED_CST:
2594 case STRING_CST:
2595 case COMPLEX_CST:
2596 case CONSTRUCTOR:
2597 case INTEGER_CST:
2598 x = output_constant_def (target, 1);
2599 break;
2601 default:
2602 gcc_unreachable ();
2605 gcc_assert (MEM_P (x));
2606 x = XEXP (x, 0);
2608 value->base = x;
2609 value->offset = offset;
2613 static GTY((param_is (struct constant_descriptor_tree)))
2614 htab_t const_desc_htab;
2616 static void maybe_output_constant_def_contents (struct constant_descriptor_tree *, int);
2618 /* Constant pool accessor function. */
2620 htab_t
2621 constant_pool_htab (void)
2623 return const_desc_htab;
2626 /* Compute a hash code for a constant expression. */
2628 static hashval_t
2629 const_desc_hash (const void *ptr)
2631 return ((const struct constant_descriptor_tree *)ptr)->hash;
2634 static hashval_t
2635 const_hash_1 (const tree exp)
2637 const char *p;
2638 hashval_t hi;
2639 int len, i;
2640 enum tree_code code = TREE_CODE (exp);
2642 /* Either set P and LEN to the address and len of something to hash and
2643 exit the switch or return a value. */
2645 switch (code)
2647 case INTEGER_CST:
2648 p = (char *) &TREE_INT_CST (exp);
2649 len = sizeof TREE_INT_CST (exp);
2650 break;
2652 case REAL_CST:
2653 return real_hash (TREE_REAL_CST_PTR (exp));
2655 case FIXED_CST:
2656 return fixed_hash (TREE_FIXED_CST_PTR (exp));
2658 case STRING_CST:
2659 p = TREE_STRING_POINTER (exp);
2660 len = TREE_STRING_LENGTH (exp);
2661 break;
2663 case COMPLEX_CST:
2664 return (const_hash_1 (TREE_REALPART (exp)) * 5
2665 + const_hash_1 (TREE_IMAGPART (exp)));
2667 case VECTOR_CST:
2669 tree link;
2671 hi = 7 + TYPE_VECTOR_SUBPARTS (TREE_TYPE (exp));
2673 for (link = TREE_VECTOR_CST_ELTS (exp); link; link = TREE_CHAIN (link))
2674 hi = hi * 563 + const_hash_1 (TREE_VALUE (link));
2676 return hi;
2679 case CONSTRUCTOR:
2681 unsigned HOST_WIDE_INT idx;
2682 tree value;
2684 hi = 5 + int_size_in_bytes (TREE_TYPE (exp));
2686 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, value)
2687 if (value)
2688 hi = hi * 603 + const_hash_1 (value);
2690 return hi;
2693 case ADDR_EXPR:
2694 case FDESC_EXPR:
2696 struct addr_const value;
2698 decode_addr_const (exp, &value);
2699 switch (GET_CODE (value.base))
2701 case SYMBOL_REF:
2702 /* Don't hash the address of the SYMBOL_REF;
2703 only use the offset and the symbol name. */
2704 hi = value.offset;
2705 p = XSTR (value.base, 0);
2706 for (i = 0; p[i] != 0; i++)
2707 hi = ((hi * 613) + (unsigned) (p[i]));
2708 break;
2710 case LABEL_REF:
2711 hi = value.offset + CODE_LABEL_NUMBER (XEXP (value.base, 0)) * 13;
2712 break;
2714 default:
2715 gcc_unreachable ();
2718 return hi;
2720 case PLUS_EXPR:
2721 case POINTER_PLUS_EXPR:
2722 case MINUS_EXPR:
2723 return (const_hash_1 (TREE_OPERAND (exp, 0)) * 9
2724 + const_hash_1 (TREE_OPERAND (exp, 1)));
2726 CASE_CONVERT:
2727 return const_hash_1 (TREE_OPERAND (exp, 0)) * 7 + 2;
2729 default:
2730 /* A language specific constant. Just hash the code. */
2731 return code;
2734 /* Compute hashing function. */
2735 hi = len;
2736 for (i = 0; i < len; i++)
2737 hi = ((hi * 613) + (unsigned) (p[i]));
2739 return hi;
2742 /* Wrapper of compare_constant, for the htab interface. */
2743 static int
2744 const_desc_eq (const void *p1, const void *p2)
2746 const struct constant_descriptor_tree *const c1
2747 = (const struct constant_descriptor_tree *) p1;
2748 const struct constant_descriptor_tree *const c2
2749 = (const struct constant_descriptor_tree *) p2;
2750 if (c1->hash != c2->hash)
2751 return 0;
2752 return compare_constant (c1->value, c2->value);
2755 /* Compare t1 and t2, and return 1 only if they are known to result in
2756 the same bit pattern on output. */
2758 static int
2759 compare_constant (const tree t1, const tree t2)
2761 enum tree_code typecode;
2763 if (t1 == NULL_TREE)
2764 return t2 == NULL_TREE;
2765 if (t2 == NULL_TREE)
2766 return 0;
2768 if (TREE_CODE (t1) != TREE_CODE (t2))
2769 return 0;
2771 switch (TREE_CODE (t1))
2773 case INTEGER_CST:
2774 /* Integer constants are the same only if the same width of type. */
2775 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2776 return 0;
2777 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
2778 return 0;
2779 return tree_int_cst_equal (t1, t2);
2781 case REAL_CST:
2782 /* Real constants are the same only if the same width of type. */
2783 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2784 return 0;
2786 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
2788 case FIXED_CST:
2789 /* Fixed constants are the same only if the same width of type. */
2790 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2791 return 0;
2793 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
2795 case STRING_CST:
2796 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
2797 return 0;
2799 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
2800 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
2801 TREE_STRING_LENGTH (t1)));
2803 case COMPLEX_CST:
2804 return (compare_constant (TREE_REALPART (t1), TREE_REALPART (t2))
2805 && compare_constant (TREE_IMAGPART (t1), TREE_IMAGPART (t2)));
2807 case VECTOR_CST:
2809 tree link1, link2;
2811 if (TYPE_VECTOR_SUBPARTS (TREE_TYPE (t1))
2812 != TYPE_VECTOR_SUBPARTS (TREE_TYPE (t2)))
2813 return 0;
2815 link2 = TREE_VECTOR_CST_ELTS (t2);
2816 for (link1 = TREE_VECTOR_CST_ELTS (t1);
2817 link1;
2818 link1 = TREE_CHAIN (link1))
2820 if (!compare_constant (TREE_VALUE (link1), TREE_VALUE (link2)))
2821 return 0;
2822 link2 = TREE_CHAIN (link2);
2825 return 1;
2828 case CONSTRUCTOR:
2830 VEC(constructor_elt, gc) *v1, *v2;
2831 unsigned HOST_WIDE_INT idx;
2833 typecode = TREE_CODE (TREE_TYPE (t1));
2834 if (typecode != TREE_CODE (TREE_TYPE (t2)))
2835 return 0;
2837 if (typecode == ARRAY_TYPE)
2839 HOST_WIDE_INT size_1 = int_size_in_bytes (TREE_TYPE (t1));
2840 /* For arrays, check that the sizes all match. */
2841 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2))
2842 || size_1 == -1
2843 || size_1 != int_size_in_bytes (TREE_TYPE (t2)))
2844 return 0;
2846 else
2848 /* For record and union constructors, require exact type
2849 equality. */
2850 if (TREE_TYPE (t1) != TREE_TYPE (t2))
2851 return 0;
2854 v1 = CONSTRUCTOR_ELTS (t1);
2855 v2 = CONSTRUCTOR_ELTS (t2);
2856 if (VEC_length (constructor_elt, v1)
2857 != VEC_length (constructor_elt, v2))
2858 return 0;
2860 for (idx = 0; idx < VEC_length (constructor_elt, v1); ++idx)
2862 constructor_elt *c1 = VEC_index (constructor_elt, v1, idx);
2863 constructor_elt *c2 = VEC_index (constructor_elt, v2, idx);
2865 /* Check that each value is the same... */
2866 if (!compare_constant (c1->value, c2->value))
2867 return 0;
2868 /* ... and that they apply to the same fields! */
2869 if (typecode == ARRAY_TYPE)
2871 if (!compare_constant (c1->index, c2->index))
2872 return 0;
2874 else
2876 if (c1->index != c2->index)
2877 return 0;
2881 return 1;
2884 case ADDR_EXPR:
2885 case FDESC_EXPR:
2887 struct addr_const value1, value2;
2888 enum rtx_code code;
2889 int ret;
2891 decode_addr_const (t1, &value1);
2892 decode_addr_const (t2, &value2);
2894 if (value1.offset != value2.offset)
2895 return 0;
2897 code = GET_CODE (value1.base);
2898 if (code != GET_CODE (value2.base))
2899 return 0;
2901 switch (code)
2903 case SYMBOL_REF:
2904 ret = (strcmp (XSTR (value1.base, 0), XSTR (value2.base, 0)) == 0);
2905 break;
2907 case LABEL_REF:
2908 ret = (CODE_LABEL_NUMBER (XEXP (value1.base, 0))
2909 == CODE_LABEL_NUMBER (XEXP (value2.base, 0)));
2910 break;
2912 default:
2913 gcc_unreachable ();
2915 return ret;
2918 case PLUS_EXPR:
2919 case POINTER_PLUS_EXPR:
2920 case MINUS_EXPR:
2921 case RANGE_EXPR:
2922 return (compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0))
2923 && compare_constant(TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)));
2925 CASE_CONVERT:
2926 case VIEW_CONVERT_EXPR:
2927 return compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
2929 default:
2930 return 0;
2933 gcc_unreachable ();
2936 /* Make a copy of the whole tree structure for a constant. This
2937 handles the same types of nodes that compare_constant handles. */
2939 static tree
2940 copy_constant (tree exp)
2942 switch (TREE_CODE (exp))
2944 case ADDR_EXPR:
2945 /* For ADDR_EXPR, we do not want to copy the decl whose address
2946 is requested. We do want to copy constants though. */
2947 if (CONSTANT_CLASS_P (TREE_OPERAND (exp, 0)))
2948 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2949 copy_constant (TREE_OPERAND (exp, 0)));
2950 else
2951 return copy_node (exp);
2953 case INTEGER_CST:
2954 case REAL_CST:
2955 case FIXED_CST:
2956 case STRING_CST:
2957 return copy_node (exp);
2959 case COMPLEX_CST:
2960 return build_complex (TREE_TYPE (exp),
2961 copy_constant (TREE_REALPART (exp)),
2962 copy_constant (TREE_IMAGPART (exp)));
2964 case PLUS_EXPR:
2965 case POINTER_PLUS_EXPR:
2966 case MINUS_EXPR:
2967 return build2 (TREE_CODE (exp), TREE_TYPE (exp),
2968 copy_constant (TREE_OPERAND (exp, 0)),
2969 copy_constant (TREE_OPERAND (exp, 1)));
2971 CASE_CONVERT:
2972 case VIEW_CONVERT_EXPR:
2973 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2974 copy_constant (TREE_OPERAND (exp, 0)));
2976 case VECTOR_CST:
2977 return build_vector (TREE_TYPE (exp),
2978 copy_list (TREE_VECTOR_CST_ELTS (exp)));
2980 case CONSTRUCTOR:
2982 tree copy = copy_node (exp);
2983 VEC(constructor_elt, gc) *v;
2984 unsigned HOST_WIDE_INT idx;
2985 tree purpose, value;
2987 v = VEC_alloc(constructor_elt, gc, VEC_length(constructor_elt,
2988 CONSTRUCTOR_ELTS (exp)));
2989 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp), idx, purpose, value)
2991 constructor_elt *ce = VEC_quick_push (constructor_elt, v, NULL);
2992 ce->index = purpose;
2993 ce->value = copy_constant (value);
2995 CONSTRUCTOR_ELTS (copy) = v;
2996 return copy;
2999 default:
3000 gcc_unreachable ();
3004 /* Return the section into which constant EXP should be placed. */
3006 static section *
3007 get_constant_section (tree exp, unsigned int align)
3009 return targetm.asm_out.select_section (exp,
3010 compute_reloc_for_constant (exp),
3011 align);
3014 /* Return the size of constant EXP in bytes. */
3016 static HOST_WIDE_INT
3017 get_constant_size (tree exp)
3019 HOST_WIDE_INT size;
3021 size = int_size_in_bytes (TREE_TYPE (exp));
3022 if (TREE_CODE (exp) == STRING_CST)
3023 size = MAX (TREE_STRING_LENGTH (exp), size);
3024 return size;
3027 /* Subroutine of output_constant_def:
3028 No constant equal to EXP is known to have been output.
3029 Make a constant descriptor to enter EXP in the hash table.
3030 Assign the label number and construct RTL to refer to the
3031 constant's location in memory.
3032 Caller is responsible for updating the hash table. */
3034 static struct constant_descriptor_tree *
3035 build_constant_desc (tree exp)
3037 struct constant_descriptor_tree *desc;
3038 rtx symbol, rtl;
3039 char label[256];
3040 int labelno;
3041 tree decl;
3043 desc = ggc_alloc_constant_descriptor_tree ();
3044 desc->value = copy_constant (exp);
3046 /* Propagate marked-ness to copied constant. */
3047 if (flag_mudflap && mf_marked_p (exp))
3048 mf_mark (desc->value);
3050 /* Create a string containing the label name, in LABEL. */
3051 labelno = const_labelno++;
3052 ASM_GENERATE_INTERNAL_LABEL (label, "LC", labelno);
3054 /* Construct the VAR_DECL associated with the constant. */
3055 decl = build_decl (UNKNOWN_LOCATION, VAR_DECL, get_identifier (label),
3056 TREE_TYPE (exp));
3057 DECL_ARTIFICIAL (decl) = 1;
3058 DECL_IGNORED_P (decl) = 1;
3059 TREE_READONLY (decl) = 1;
3060 TREE_STATIC (decl) = 1;
3061 TREE_ADDRESSABLE (decl) = 1;
3062 /* We don't set the RTL yet as this would cause varpool to assume that the
3063 variable is referenced. Moreover, it would just be dropped in LTO mode.
3064 Instead we set the flag that will be recognized in make_decl_rtl. */
3065 DECL_IN_CONSTANT_POOL (decl) = 1;
3066 DECL_INITIAL (decl) = desc->value;
3067 /* ??? CONSTANT_ALIGNMENT hasn't been updated for vector types on most
3068 architectures so use DATA_ALIGNMENT as well, except for strings. */
3069 if (TREE_CODE (exp) == STRING_CST)
3071 #ifdef CONSTANT_ALIGNMENT
3072 DECL_ALIGN (decl) = CONSTANT_ALIGNMENT (exp, DECL_ALIGN (decl));
3073 #endif
3075 else
3076 align_variable (decl, 0);
3078 /* Now construct the SYMBOL_REF and the MEM. */
3079 if (use_object_blocks_p ())
3081 section *sect = get_constant_section (exp, DECL_ALIGN (decl));
3082 symbol = create_block_symbol (ggc_strdup (label),
3083 get_block_for_section (sect), -1);
3085 else
3086 symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
3087 SYMBOL_REF_FLAGS (symbol) |= SYMBOL_FLAG_LOCAL;
3088 SET_SYMBOL_REF_DECL (symbol, decl);
3089 TREE_CONSTANT_POOL_ADDRESS_P (symbol) = 1;
3091 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp)), symbol);
3092 set_mem_attributes (rtl, exp, 1);
3093 set_mem_alias_set (rtl, 0);
3094 set_mem_alias_set (rtl, const_alias_set);
3096 /* We cannot share RTX'es in pool entries.
3097 Mark this piece of RTL as required for unsharing. */
3098 RTX_FLAG (rtl, used) = 1;
3100 /* Set flags or add text to the name to record information, such as
3101 that it is a local symbol. If the name is changed, the macro
3102 ASM_OUTPUT_LABELREF will have to know how to strip this
3103 information. This call might invalidate our local variable
3104 SYMBOL; we can't use it afterward. */
3105 targetm.encode_section_info (exp, rtl, true);
3107 desc->rtl = rtl;
3109 return desc;
3112 /* Return an rtx representing a reference to constant data in memory
3113 for the constant expression EXP.
3115 If assembler code for such a constant has already been output,
3116 return an rtx to refer to it.
3117 Otherwise, output such a constant in memory
3118 and generate an rtx for it.
3120 If DEFER is nonzero, this constant can be deferred and output only
3121 if referenced in the function after all optimizations.
3123 `const_desc_table' records which constants already have label strings. */
3126 output_constant_def (tree exp, int defer)
3128 struct constant_descriptor_tree *desc;
3129 struct constant_descriptor_tree key;
3130 void **loc;
3132 /* Look up EXP in the table of constant descriptors. If we didn't find
3133 it, create a new one. */
3134 key.value = exp;
3135 key.hash = const_hash_1 (exp);
3136 loc = htab_find_slot_with_hash (const_desc_htab, &key, key.hash, INSERT);
3138 desc = (struct constant_descriptor_tree *) *loc;
3139 if (desc == 0)
3141 desc = build_constant_desc (exp);
3142 desc->hash = key.hash;
3143 *loc = desc;
3146 maybe_output_constant_def_contents (desc, defer);
3147 return desc->rtl;
3150 /* Subroutine of output_constant_def: Decide whether or not we need to
3151 output the constant DESC now, and if so, do it. */
3152 static void
3153 maybe_output_constant_def_contents (struct constant_descriptor_tree *desc,
3154 int defer)
3156 rtx symbol = XEXP (desc->rtl, 0);
3157 tree exp = desc->value;
3159 if (flag_syntax_only)
3160 return;
3162 if (TREE_ASM_WRITTEN (exp))
3163 /* Already output; don't do it again. */
3164 return;
3166 /* We can always defer constants as long as the context allows
3167 doing so. */
3168 if (defer)
3170 /* Increment n_deferred_constants if it exists. It needs to be at
3171 least as large as the number of constants actually referred to
3172 by the function. If it's too small we'll stop looking too early
3173 and fail to emit constants; if it's too large we'll only look
3174 through the entire function when we could have stopped earlier. */
3175 if (cfun)
3176 n_deferred_constants++;
3177 return;
3180 output_constant_def_contents (symbol);
3183 /* Subroutine of output_constant_def_contents. Output the definition
3184 of constant EXP, which is pointed to by label LABEL. ALIGN is the
3185 constant's alignment in bits. */
3187 static void
3188 assemble_constant_contents (tree exp, const char *label, unsigned int align)
3190 HOST_WIDE_INT size;
3192 size = get_constant_size (exp);
3194 /* Do any machine/system dependent processing of the constant. */
3195 targetm.asm_out.declare_constant_name (asm_out_file, label, exp, size);
3197 /* Output the value of EXP. */
3198 output_constant (exp, size, align);
3201 /* We must output the constant data referred to by SYMBOL; do so. */
3203 static void
3204 output_constant_def_contents (rtx symbol)
3206 tree decl = SYMBOL_REF_DECL (symbol);
3207 tree exp = DECL_INITIAL (decl);
3208 unsigned int align;
3210 /* Make sure any other constants whose addresses appear in EXP
3211 are assigned label numbers. */
3212 output_addressed_constants (exp);
3214 /* We are no longer deferring this constant. */
3215 TREE_ASM_WRITTEN (decl) = TREE_ASM_WRITTEN (exp) = 1;
3217 /* If the constant is part of an object block, make sure that the
3218 decl has been positioned within its block, but do not write out
3219 its definition yet. output_object_blocks will do that later. */
3220 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol) && SYMBOL_REF_BLOCK (symbol))
3221 place_block_symbol (symbol);
3222 else
3224 align = DECL_ALIGN (decl);
3225 switch_to_section (get_constant_section (exp, align));
3226 if (align > BITS_PER_UNIT)
3227 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
3228 assemble_constant_contents (exp, XSTR (symbol, 0), align);
3230 if (flag_mudflap)
3231 mudflap_enqueue_constant (exp);
3234 /* Look up EXP in the table of constant descriptors. Return the rtl
3235 if it has been emitted, else null. */
3238 lookup_constant_def (tree exp)
3240 struct constant_descriptor_tree *desc;
3241 struct constant_descriptor_tree key;
3243 key.value = exp;
3244 key.hash = const_hash_1 (exp);
3245 desc = (struct constant_descriptor_tree *)
3246 htab_find_with_hash (const_desc_htab, &key, key.hash);
3248 return (desc ? desc->rtl : NULL_RTX);
3251 /* Return a tree representing a reference to constant data in memory
3252 for the constant expression EXP.
3254 This is the counterpart of output_constant_def at the Tree level. */
3256 tree
3257 tree_output_constant_def (tree exp)
3259 struct constant_descriptor_tree *desc, key;
3260 void **loc;
3261 tree decl;
3263 /* Look up EXP in the table of constant descriptors. If we didn't find
3264 it, create a new one. */
3265 key.value = exp;
3266 key.hash = const_hash_1 (exp);
3267 loc = htab_find_slot_with_hash (const_desc_htab, &key, key.hash, INSERT);
3269 desc = (struct constant_descriptor_tree *) *loc;
3270 if (desc == 0)
3272 desc = build_constant_desc (exp);
3273 desc->hash = key.hash;
3274 *loc = desc;
3277 decl = SYMBOL_REF_DECL (XEXP (desc->rtl, 0));
3278 varpool_finalize_decl (decl);
3279 return decl;
3282 /* Used in the hash tables to avoid outputting the same constant
3283 twice. Unlike 'struct constant_descriptor_tree', RTX constants
3284 are output once per function, not once per file. */
3285 /* ??? Only a few targets need per-function constant pools. Most
3286 can use one per-file pool. Should add a targetm bit to tell the
3287 difference. */
3289 struct GTY(()) rtx_constant_pool {
3290 /* Pointers to first and last constant in pool, as ordered by offset. */
3291 struct constant_descriptor_rtx *first;
3292 struct constant_descriptor_rtx *last;
3294 /* Hash facility for making memory-constants from constant rtl-expressions.
3295 It is used on RISC machines where immediate integer arguments and
3296 constant addresses are restricted so that such constants must be stored
3297 in memory. */
3298 htab_t GTY((param_is (struct constant_descriptor_rtx))) const_rtx_htab;
3300 /* Current offset in constant pool (does not include any
3301 machine-specific header). */
3302 HOST_WIDE_INT offset;
3305 struct GTY((chain_next ("%h.next"))) constant_descriptor_rtx {
3306 struct constant_descriptor_rtx *next;
3307 rtx mem;
3308 rtx sym;
3309 rtx constant;
3310 HOST_WIDE_INT offset;
3311 hashval_t hash;
3312 enum machine_mode mode;
3313 unsigned int align;
3314 int labelno;
3315 int mark;
3318 /* Hash and compare functions for const_rtx_htab. */
3320 static hashval_t
3321 const_desc_rtx_hash (const void *ptr)
3323 const struct constant_descriptor_rtx *const desc
3324 = (const struct constant_descriptor_rtx *) ptr;
3325 return desc->hash;
3328 static int
3329 const_desc_rtx_eq (const void *a, const void *b)
3331 const struct constant_descriptor_rtx *const x
3332 = (const struct constant_descriptor_rtx *) a;
3333 const struct constant_descriptor_rtx *const y
3334 = (const struct constant_descriptor_rtx *) b;
3336 if (x->mode != y->mode)
3337 return 0;
3338 return rtx_equal_p (x->constant, y->constant);
3341 /* This is the worker function for const_rtx_hash, called via for_each_rtx. */
3343 static int
3344 const_rtx_hash_1 (rtx *xp, void *data)
3346 unsigned HOST_WIDE_INT hwi;
3347 enum machine_mode mode;
3348 enum rtx_code code;
3349 hashval_t h, *hp;
3350 rtx x;
3352 x = *xp;
3353 code = GET_CODE (x);
3354 mode = GET_MODE (x);
3355 h = (hashval_t) code * 1048573 + mode;
3357 switch (code)
3359 case CONST_INT:
3360 hwi = INTVAL (x);
3361 fold_hwi:
3363 int shift = sizeof (hashval_t) * CHAR_BIT;
3364 const int n = sizeof (HOST_WIDE_INT) / sizeof (hashval_t);
3365 int i;
3367 h ^= (hashval_t) hwi;
3368 for (i = 1; i < n; ++i)
3370 hwi >>= shift;
3371 h ^= (hashval_t) hwi;
3374 break;
3376 case CONST_DOUBLE:
3377 if (mode == VOIDmode)
3379 hwi = CONST_DOUBLE_LOW (x) ^ CONST_DOUBLE_HIGH (x);
3380 goto fold_hwi;
3382 else
3383 h ^= real_hash (CONST_DOUBLE_REAL_VALUE (x));
3384 break;
3386 case CONST_FIXED:
3387 h ^= fixed_hash (CONST_FIXED_VALUE (x));
3388 break;
3390 case CONST_VECTOR:
3392 int i;
3393 for (i = XVECLEN (x, 0); i-- > 0; )
3394 h = h * 251 + const_rtx_hash_1 (&XVECEXP (x, 0, i), data);
3396 break;
3398 case SYMBOL_REF:
3399 h ^= htab_hash_string (XSTR (x, 0));
3400 break;
3402 case LABEL_REF:
3403 h = h * 251 + CODE_LABEL_NUMBER (XEXP (x, 0));
3404 break;
3406 case UNSPEC:
3407 case UNSPEC_VOLATILE:
3408 h = h * 251 + XINT (x, 1);
3409 break;
3411 default:
3412 break;
3415 hp = (hashval_t *) data;
3416 *hp = *hp * 509 + h;
3417 return 0;
3420 /* Compute a hash value for X, which should be a constant. */
3422 static hashval_t
3423 const_rtx_hash (rtx x)
3425 hashval_t h = 0;
3426 for_each_rtx (&x, const_rtx_hash_1, &h);
3427 return h;
3431 /* Create and return a new rtx constant pool. */
3433 static struct rtx_constant_pool *
3434 create_constant_pool (void)
3436 struct rtx_constant_pool *pool;
3438 pool = ggc_alloc_rtx_constant_pool ();
3439 pool->const_rtx_htab = htab_create_ggc (31, const_desc_rtx_hash,
3440 const_desc_rtx_eq, NULL);
3441 pool->first = NULL;
3442 pool->last = NULL;
3443 pool->offset = 0;
3444 return pool;
3447 /* Initialize constant pool hashing for a new function. */
3449 void
3450 init_varasm_status (void)
3452 crtl->varasm.pool = create_constant_pool ();
3453 crtl->varasm.deferred_constants = 0;
3456 /* Given a MINUS expression, simplify it if both sides
3457 include the same symbol. */
3460 simplify_subtraction (rtx x)
3462 rtx r = simplify_rtx (x);
3463 return r ? r : x;
3466 /* Given a constant rtx X, make (or find) a memory constant for its value
3467 and return a MEM rtx to refer to it in memory. */
3470 force_const_mem (enum machine_mode mode, rtx x)
3472 struct constant_descriptor_rtx *desc, tmp;
3473 struct rtx_constant_pool *pool;
3474 char label[256];
3475 rtx def, symbol;
3476 hashval_t hash;
3477 unsigned int align;
3478 void **slot;
3480 /* If we're not allowed to drop X into the constant pool, don't. */
3481 if (targetm.cannot_force_const_mem (x))
3482 return NULL_RTX;
3484 /* Record that this function has used a constant pool entry. */
3485 crtl->uses_const_pool = 1;
3487 /* Decide which pool to use. */
3488 pool = (targetm.use_blocks_for_constant_p (mode, x)
3489 ? shared_constant_pool
3490 : crtl->varasm.pool);
3492 /* Lookup the value in the hashtable. */
3493 tmp.constant = x;
3494 tmp.mode = mode;
3495 hash = const_rtx_hash (x);
3496 slot = htab_find_slot_with_hash (pool->const_rtx_htab, &tmp, hash, INSERT);
3497 desc = (struct constant_descriptor_rtx *) *slot;
3499 /* If the constant was already present, return its memory. */
3500 if (desc)
3501 return copy_rtx (desc->mem);
3503 /* Otherwise, create a new descriptor. */
3504 desc = ggc_alloc_constant_descriptor_rtx ();
3505 *slot = desc;
3507 /* Align the location counter as required by EXP's data type. */
3508 align = GET_MODE_ALIGNMENT (mode == VOIDmode ? word_mode : mode);
3509 #ifdef CONSTANT_ALIGNMENT
3511 tree type = lang_hooks.types.type_for_mode (mode, 0);
3512 if (type != NULL_TREE)
3513 align = CONSTANT_ALIGNMENT (make_tree (type, x), align);
3515 #endif
3517 pool->offset += (align / BITS_PER_UNIT) - 1;
3518 pool->offset &= ~ ((align / BITS_PER_UNIT) - 1);
3520 desc->next = NULL;
3521 desc->constant = tmp.constant;
3522 desc->offset = pool->offset;
3523 desc->hash = hash;
3524 desc->mode = mode;
3525 desc->align = align;
3526 desc->labelno = const_labelno;
3527 desc->mark = 0;
3529 pool->offset += GET_MODE_SIZE (mode);
3530 if (pool->last)
3531 pool->last->next = desc;
3532 else
3533 pool->first = pool->last = desc;
3534 pool->last = desc;
3536 /* Create a string containing the label name, in LABEL. */
3537 ASM_GENERATE_INTERNAL_LABEL (label, "LC", const_labelno);
3538 ++const_labelno;
3540 /* Construct the SYMBOL_REF. Make sure to mark it as belonging to
3541 the constants pool. */
3542 if (use_object_blocks_p () && targetm.use_blocks_for_constant_p (mode, x))
3544 section *sect = targetm.asm_out.select_rtx_section (mode, x, align);
3545 symbol = create_block_symbol (ggc_strdup (label),
3546 get_block_for_section (sect), -1);
3548 else
3549 symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
3550 desc->sym = symbol;
3551 SYMBOL_REF_FLAGS (symbol) |= SYMBOL_FLAG_LOCAL;
3552 CONSTANT_POOL_ADDRESS_P (symbol) = 1;
3553 SET_SYMBOL_REF_CONSTANT (symbol, desc);
3555 /* Construct the MEM. */
3556 desc->mem = def = gen_const_mem (mode, symbol);
3557 set_mem_attributes (def, lang_hooks.types.type_for_mode (mode, 0), 1);
3558 set_mem_align (def, align);
3560 /* If we're dropping a label to the constant pool, make sure we
3561 don't delete it. */
3562 if (GET_CODE (x) == LABEL_REF)
3563 LABEL_PRESERVE_P (XEXP (x, 0)) = 1;
3565 return copy_rtx (def);
3568 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3571 get_pool_constant (rtx addr)
3573 return SYMBOL_REF_CONSTANT (addr)->constant;
3576 /* Given a constant pool SYMBOL_REF, return the corresponding constant
3577 and whether it has been output or not. */
3580 get_pool_constant_mark (rtx addr, bool *pmarked)
3582 struct constant_descriptor_rtx *desc;
3584 desc = SYMBOL_REF_CONSTANT (addr);
3585 *pmarked = (desc->mark != 0);
3586 return desc->constant;
3589 /* Similar, return the mode. */
3591 enum machine_mode
3592 get_pool_mode (const_rtx addr)
3594 return SYMBOL_REF_CONSTANT (addr)->mode;
3597 /* Return the size of the constant pool. */
3600 get_pool_size (void)
3602 return crtl->varasm.pool->offset;
3605 /* Worker function for output_constant_pool_1. Emit assembly for X
3606 in MODE with known alignment ALIGN. */
3608 static void
3609 output_constant_pool_2 (enum machine_mode mode, rtx x, unsigned int align)
3611 switch (GET_MODE_CLASS (mode))
3613 case MODE_FLOAT:
3614 case MODE_DECIMAL_FLOAT:
3616 REAL_VALUE_TYPE r;
3618 gcc_assert (GET_CODE (x) == CONST_DOUBLE);
3619 REAL_VALUE_FROM_CONST_DOUBLE (r, x);
3620 assemble_real (r, mode, align);
3621 break;
3624 case MODE_INT:
3625 case MODE_PARTIAL_INT:
3626 case MODE_FRACT:
3627 case MODE_UFRACT:
3628 case MODE_ACCUM:
3629 case MODE_UACCUM:
3630 assemble_integer (x, GET_MODE_SIZE (mode), align, 1);
3631 break;
3633 case MODE_VECTOR_FLOAT:
3634 case MODE_VECTOR_INT:
3635 case MODE_VECTOR_FRACT:
3636 case MODE_VECTOR_UFRACT:
3637 case MODE_VECTOR_ACCUM:
3638 case MODE_VECTOR_UACCUM:
3640 int i, units;
3641 enum machine_mode submode = GET_MODE_INNER (mode);
3642 unsigned int subalign = MIN (align, GET_MODE_BITSIZE (submode));
3644 gcc_assert (GET_CODE (x) == CONST_VECTOR);
3645 units = CONST_VECTOR_NUNITS (x);
3647 for (i = 0; i < units; i++)
3649 rtx elt = CONST_VECTOR_ELT (x, i);
3650 output_constant_pool_2 (submode, elt, i ? subalign : align);
3653 break;
3655 default:
3656 gcc_unreachable ();
3660 /* Worker function for output_constant_pool. Emit constant DESC,
3661 giving it ALIGN bits of alignment. */
3663 static void
3664 output_constant_pool_1 (struct constant_descriptor_rtx *desc,
3665 unsigned int align)
3667 rtx x, tmp;
3669 x = desc->constant;
3671 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3672 whose CODE_LABEL has been deleted. This can occur if a jump table
3673 is eliminated by optimization. If so, write a constant of zero
3674 instead. Note that this can also happen by turning the
3675 CODE_LABEL into a NOTE. */
3676 /* ??? This seems completely and utterly wrong. Certainly it's
3677 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3678 functioning even with INSN_DELETED_P and friends. */
3680 tmp = x;
3681 switch (GET_CODE (tmp))
3683 case CONST:
3684 if (GET_CODE (XEXP (tmp, 0)) != PLUS
3685 || GET_CODE (XEXP (XEXP (tmp, 0), 0)) != LABEL_REF)
3686 break;
3687 tmp = XEXP (XEXP (tmp, 0), 0);
3688 /* FALLTHRU */
3690 case LABEL_REF:
3691 tmp = XEXP (tmp, 0);
3692 gcc_assert (!INSN_DELETED_P (tmp));
3693 gcc_assert (!NOTE_P (tmp)
3694 || NOTE_KIND (tmp) != NOTE_INSN_DELETED);
3695 break;
3697 default:
3698 break;
3701 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3702 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file, x, desc->mode,
3703 align, desc->labelno, done);
3704 #endif
3706 assemble_align (align);
3708 /* Output the label. */
3709 targetm.asm_out.internal_label (asm_out_file, "LC", desc->labelno);
3711 /* Output the data. */
3712 output_constant_pool_2 (desc->mode, x, align);
3714 /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
3715 sections have proper size. */
3716 if (align > GET_MODE_BITSIZE (desc->mode)
3717 && in_section
3718 && (in_section->common.flags & SECTION_MERGE))
3719 assemble_align (align);
3721 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3722 done:
3723 #endif
3724 return;
3727 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3728 to as used. Emit referenced deferred strings. This function can
3729 be used with for_each_rtx to mark all SYMBOL_REFs in an rtx. */
3731 static int
3732 mark_constant (rtx *current_rtx, void *data ATTRIBUTE_UNUSED)
3734 rtx x = *current_rtx;
3736 if (x == NULL_RTX || GET_CODE (x) != SYMBOL_REF)
3737 return 0;
3739 if (CONSTANT_POOL_ADDRESS_P (x))
3741 struct constant_descriptor_rtx *desc = SYMBOL_REF_CONSTANT (x);
3742 if (desc->mark == 0)
3744 desc->mark = 1;
3745 for_each_rtx (&desc->constant, mark_constant, NULL);
3748 else if (TREE_CONSTANT_POOL_ADDRESS_P (x))
3750 tree decl = SYMBOL_REF_DECL (x);
3751 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl)))
3753 n_deferred_constants--;
3754 output_constant_def_contents (x);
3758 return -1;
3761 /* Look through appropriate parts of INSN, marking all entries in the
3762 constant pool which are actually being used. Entries that are only
3763 referenced by other constants are also marked as used. Emit
3764 deferred strings that are used. */
3766 static void
3767 mark_constants (rtx insn)
3769 if (!INSN_P (insn))
3770 return;
3772 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3773 insns, not any notes that may be attached. We don't want to mark
3774 a constant just because it happens to appear in a REG_EQUIV note. */
3775 if (GET_CODE (PATTERN (insn)) == SEQUENCE)
3777 rtx seq = PATTERN (insn);
3778 int i, n = XVECLEN (seq, 0);
3779 for (i = 0; i < n; ++i)
3781 rtx subinsn = XVECEXP (seq, 0, i);
3782 if (INSN_P (subinsn))
3783 for_each_rtx (&PATTERN (subinsn), mark_constant, NULL);
3786 else
3787 for_each_rtx (&PATTERN (insn), mark_constant, NULL);
3790 /* Look through the instructions for this function, and mark all the
3791 entries in POOL which are actually being used. Emit deferred constants
3792 which have indeed been used. */
3794 static void
3795 mark_constant_pool (void)
3797 rtx insn, link;
3799 if (!crtl->uses_const_pool && n_deferred_constants == 0)
3800 return;
3802 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3803 mark_constants (insn);
3805 for (link = crtl->epilogue_delay_list;
3806 link;
3807 link = XEXP (link, 1))
3808 mark_constants (XEXP (link, 0));
3811 /* Write all the constants in POOL. */
3813 static void
3814 output_constant_pool_contents (struct rtx_constant_pool *pool)
3816 struct constant_descriptor_rtx *desc;
3818 for (desc = pool->first; desc ; desc = desc->next)
3819 if (desc->mark)
3821 /* If the constant is part of an object_block, make sure that
3822 the constant has been positioned within its block, but do not
3823 write out its definition yet. output_object_blocks will do
3824 that later. */
3825 if (SYMBOL_REF_HAS_BLOCK_INFO_P (desc->sym)
3826 && SYMBOL_REF_BLOCK (desc->sym))
3827 place_block_symbol (desc->sym);
3828 else
3830 switch_to_section (targetm.asm_out.select_rtx_section
3831 (desc->mode, desc->constant, desc->align));
3832 output_constant_pool_1 (desc, desc->align);
3837 /* Mark all constants that are used in the current function, then write
3838 out the function's private constant pool. */
3840 static void
3841 output_constant_pool (const char *fnname ATTRIBUTE_UNUSED,
3842 tree fndecl ATTRIBUTE_UNUSED)
3844 struct rtx_constant_pool *pool = crtl->varasm.pool;
3846 /* It is possible for gcc to call force_const_mem and then to later
3847 discard the instructions which refer to the constant. In such a
3848 case we do not need to output the constant. */
3849 mark_constant_pool ();
3851 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3852 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file, fnname, fndecl, pool->offset);
3853 #endif
3855 output_constant_pool_contents (pool);
3857 #ifdef ASM_OUTPUT_POOL_EPILOGUE
3858 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file, fnname, fndecl, pool->offset);
3859 #endif
3862 /* Write the contents of the shared constant pool. */
3864 void
3865 output_shared_constant_pool (void)
3867 output_constant_pool_contents (shared_constant_pool);
3870 /* Determine what kind of relocations EXP may need. */
3873 compute_reloc_for_constant (tree exp)
3875 int reloc = 0, reloc2;
3876 tree tem;
3878 switch (TREE_CODE (exp))
3880 case ADDR_EXPR:
3881 case FDESC_EXPR:
3882 /* Go inside any operations that get_inner_reference can handle and see
3883 if what's inside is a constant: no need to do anything here for
3884 addresses of variables or functions. */
3885 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
3886 tem = TREE_OPERAND (tem, 0))
3889 if (TREE_PUBLIC (tem))
3890 reloc |= 2;
3891 else
3892 reloc |= 1;
3893 break;
3895 case PLUS_EXPR:
3896 case POINTER_PLUS_EXPR:
3897 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3898 reloc |= compute_reloc_for_constant (TREE_OPERAND (exp, 1));
3899 break;
3901 case MINUS_EXPR:
3902 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3903 reloc2 = compute_reloc_for_constant (TREE_OPERAND (exp, 1));
3904 /* The difference of two local labels is computable at link time. */
3905 if (reloc == 1 && reloc2 == 1)
3906 reloc = 0;
3907 else
3908 reloc |= reloc2;
3909 break;
3911 CASE_CONVERT:
3912 case VIEW_CONVERT_EXPR:
3913 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3914 break;
3916 case CONSTRUCTOR:
3918 unsigned HOST_WIDE_INT idx;
3919 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, tem)
3920 if (tem != 0)
3921 reloc |= compute_reloc_for_constant (tem);
3923 break;
3925 default:
3926 break;
3928 return reloc;
3931 /* Find all the constants whose addresses are referenced inside of EXP,
3932 and make sure assembler code with a label has been output for each one.
3933 Indicate whether an ADDR_EXPR has been encountered. */
3935 static void
3936 output_addressed_constants (tree exp)
3938 tree tem;
3940 switch (TREE_CODE (exp))
3942 case ADDR_EXPR:
3943 case FDESC_EXPR:
3944 /* Go inside any operations that get_inner_reference can handle and see
3945 if what's inside is a constant: no need to do anything here for
3946 addresses of variables or functions. */
3947 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
3948 tem = TREE_OPERAND (tem, 0))
3951 /* If we have an initialized CONST_DECL, retrieve the initializer. */
3952 if (TREE_CODE (tem) == CONST_DECL && DECL_INITIAL (tem))
3953 tem = DECL_INITIAL (tem);
3955 if (CONSTANT_CLASS_P (tem) || TREE_CODE (tem) == CONSTRUCTOR)
3956 output_constant_def (tem, 0);
3957 break;
3959 case PLUS_EXPR:
3960 case POINTER_PLUS_EXPR:
3961 case MINUS_EXPR:
3962 output_addressed_constants (TREE_OPERAND (exp, 1));
3963 /* Fall through. */
3965 CASE_CONVERT:
3966 case VIEW_CONVERT_EXPR:
3967 output_addressed_constants (TREE_OPERAND (exp, 0));
3968 break;
3970 case CONSTRUCTOR:
3972 unsigned HOST_WIDE_INT idx;
3973 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, tem)
3974 if (tem != 0)
3975 output_addressed_constants (tem);
3977 break;
3979 default:
3980 break;
3984 /* Whether a constructor CTOR is a valid static constant initializer if all
3985 its elements are. This used to be internal to initializer_constant_valid_p
3986 and has been exposed to let other functions like categorize_ctor_elements
3987 evaluate the property while walking a constructor for other purposes. */
3989 bool
3990 constructor_static_from_elts_p (const_tree ctor)
3992 return (TREE_CONSTANT (ctor)
3993 && (TREE_CODE (TREE_TYPE (ctor)) == UNION_TYPE
3994 || TREE_CODE (TREE_TYPE (ctor)) == RECORD_TYPE
3995 || TREE_CODE (TREE_TYPE (ctor)) == ARRAY_TYPE));
3998 static tree initializer_constant_valid_p_1 (tree value, tree endtype,
3999 tree *cache);
4001 /* A subroutine of initializer_constant_valid_p. VALUE is a MINUS_EXPR,
4002 PLUS_EXPR or POINTER_PLUS_EXPR. This looks for cases of VALUE
4003 which are valid when ENDTYPE is an integer of any size; in
4004 particular, this does not accept a pointer minus a constant. This
4005 returns null_pointer_node if the VALUE is an absolute constant
4006 which can be used to initialize a static variable. Otherwise it
4007 returns NULL. */
4009 static tree
4010 narrowing_initializer_constant_valid_p (tree value, tree endtype, tree *cache)
4012 tree op0, op1;
4014 if (!INTEGRAL_TYPE_P (endtype))
4015 return NULL_TREE;
4017 op0 = TREE_OPERAND (value, 0);
4018 op1 = TREE_OPERAND (value, 1);
4020 /* Like STRIP_NOPS except allow the operand mode to widen. This
4021 works around a feature of fold that simplifies (int)(p1 - p2) to
4022 ((int)p1 - (int)p2) under the theory that the narrower operation
4023 is cheaper. */
4025 while (CONVERT_EXPR_P (op0)
4026 || TREE_CODE (op0) == NON_LVALUE_EXPR)
4028 tree inner = TREE_OPERAND (op0, 0);
4029 if (inner == error_mark_node
4030 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
4031 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0)))
4032 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
4033 break;
4034 op0 = inner;
4037 while (CONVERT_EXPR_P (op1)
4038 || TREE_CODE (op1) == NON_LVALUE_EXPR)
4040 tree inner = TREE_OPERAND (op1, 0);
4041 if (inner == error_mark_node
4042 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
4043 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op1)))
4044 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
4045 break;
4046 op1 = inner;
4049 op0 = initializer_constant_valid_p_1 (op0, endtype, cache);
4050 if (!op0)
4051 return NULL_TREE;
4053 op1 = initializer_constant_valid_p_1 (op1, endtype,
4054 cache ? cache + 2 : NULL);
4055 /* Both initializers must be known. */
4056 if (op1)
4058 if (op0 == op1
4059 && (op0 == null_pointer_node
4060 || TREE_CODE (value) == MINUS_EXPR))
4061 return null_pointer_node;
4063 /* Support differences between labels. */
4064 if (TREE_CODE (op0) == LABEL_DECL
4065 && TREE_CODE (op1) == LABEL_DECL)
4066 return null_pointer_node;
4068 if (TREE_CODE (op0) == STRING_CST
4069 && TREE_CODE (op1) == STRING_CST
4070 && operand_equal_p (op0, op1, 1))
4071 return null_pointer_node;
4074 return NULL_TREE;
4077 /* Helper function of initializer_constant_valid_p.
4078 Return nonzero if VALUE is a valid constant-valued expression
4079 for use in initializing a static variable; one that can be an
4080 element of a "constant" initializer.
4082 Return null_pointer_node if the value is absolute;
4083 if it is relocatable, return the variable that determines the relocation.
4084 We assume that VALUE has been folded as much as possible;
4085 therefore, we do not need to check for such things as
4086 arithmetic-combinations of integers.
4088 Use CACHE (pointer to 2 tree values) for caching if non-NULL. */
4090 static tree
4091 initializer_constant_valid_p_1 (tree value, tree endtype, tree *cache)
4093 tree ret;
4095 switch (TREE_CODE (value))
4097 case CONSTRUCTOR:
4098 if (constructor_static_from_elts_p (value))
4100 unsigned HOST_WIDE_INT idx;
4101 tree elt;
4102 bool absolute = true;
4104 if (cache && cache[0] == value)
4105 return cache[1];
4106 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value), idx, elt)
4108 tree reloc;
4109 reloc = initializer_constant_valid_p_1 (elt, TREE_TYPE (elt),
4110 NULL);
4111 if (!reloc)
4113 if (cache)
4115 cache[0] = value;
4116 cache[1] = NULL_TREE;
4118 return NULL_TREE;
4120 if (reloc != null_pointer_node)
4121 absolute = false;
4123 /* For a non-absolute relocation, there is no single
4124 variable that can be "the variable that determines the
4125 relocation." */
4126 if (cache)
4128 cache[0] = value;
4129 cache[1] = absolute ? null_pointer_node : error_mark_node;
4131 return absolute ? null_pointer_node : error_mark_node;
4134 return TREE_STATIC (value) ? null_pointer_node : NULL_TREE;
4136 case INTEGER_CST:
4137 case VECTOR_CST:
4138 case REAL_CST:
4139 case FIXED_CST:
4140 case STRING_CST:
4141 case COMPLEX_CST:
4142 return null_pointer_node;
4144 case ADDR_EXPR:
4145 case FDESC_EXPR:
4147 tree op0 = staticp (TREE_OPERAND (value, 0));
4148 if (op0)
4150 /* "&(*a).f" is like unto pointer arithmetic. If "a" turns out
4151 to be a constant, this is old-skool offsetof-like nonsense. */
4152 if (TREE_CODE (op0) == INDIRECT_REF
4153 && TREE_CONSTANT (TREE_OPERAND (op0, 0)))
4154 return null_pointer_node;
4155 /* Taking the address of a nested function involves a trampoline,
4156 unless we don't need or want one. */
4157 if (TREE_CODE (op0) == FUNCTION_DECL
4158 && DECL_STATIC_CHAIN (op0)
4159 && !TREE_NO_TRAMPOLINE (value))
4160 return NULL_TREE;
4161 /* "&{...}" requires a temporary to hold the constructed
4162 object. */
4163 if (TREE_CODE (op0) == CONSTRUCTOR)
4164 return NULL_TREE;
4166 return op0;
4169 case NON_LVALUE_EXPR:
4170 return initializer_constant_valid_p_1 (TREE_OPERAND (value, 0),
4171 endtype, cache);
4173 case VIEW_CONVERT_EXPR:
4175 tree src = TREE_OPERAND (value, 0);
4176 tree src_type = TREE_TYPE (src);
4177 tree dest_type = TREE_TYPE (value);
4179 /* Allow view-conversions from aggregate to non-aggregate type only
4180 if the bit pattern is fully preserved afterwards; otherwise, the
4181 RTL expander won't be able to apply a subsequent transformation
4182 to the underlying constructor. */
4183 if (AGGREGATE_TYPE_P (src_type) && !AGGREGATE_TYPE_P (dest_type))
4185 if (TYPE_MODE (endtype) == TYPE_MODE (dest_type))
4186 return initializer_constant_valid_p_1 (src, endtype, cache);
4187 else
4188 return NULL_TREE;
4191 /* Allow all other kinds of view-conversion. */
4192 return initializer_constant_valid_p_1 (src, endtype, cache);
4195 CASE_CONVERT:
4197 tree src = TREE_OPERAND (value, 0);
4198 tree src_type = TREE_TYPE (src);
4199 tree dest_type = TREE_TYPE (value);
4201 /* Allow conversions between pointer types, floating-point
4202 types, and offset types. */
4203 if ((POINTER_TYPE_P (dest_type) && POINTER_TYPE_P (src_type))
4204 || (FLOAT_TYPE_P (dest_type) && FLOAT_TYPE_P (src_type))
4205 || (TREE_CODE (dest_type) == OFFSET_TYPE
4206 && TREE_CODE (src_type) == OFFSET_TYPE))
4207 return initializer_constant_valid_p_1 (src, endtype, cache);
4209 /* Allow length-preserving conversions between integer types. */
4210 if (INTEGRAL_TYPE_P (dest_type) && INTEGRAL_TYPE_P (src_type)
4211 && (TYPE_PRECISION (dest_type) == TYPE_PRECISION (src_type)))
4212 return initializer_constant_valid_p_1 (src, endtype, cache);
4214 /* Allow conversions between other integer types only if
4215 explicit value. */
4216 if (INTEGRAL_TYPE_P (dest_type) && INTEGRAL_TYPE_P (src_type))
4218 tree inner = initializer_constant_valid_p_1 (src, endtype, cache);
4219 if (inner == null_pointer_node)
4220 return null_pointer_node;
4221 break;
4224 /* Allow (int) &foo provided int is as wide as a pointer. */
4225 if (INTEGRAL_TYPE_P (dest_type) && POINTER_TYPE_P (src_type)
4226 && (TYPE_PRECISION (dest_type) >= TYPE_PRECISION (src_type)))
4227 return initializer_constant_valid_p_1 (src, endtype, cache);
4229 /* Likewise conversions from int to pointers, but also allow
4230 conversions from 0. */
4231 if ((POINTER_TYPE_P (dest_type)
4232 || TREE_CODE (dest_type) == OFFSET_TYPE)
4233 && INTEGRAL_TYPE_P (src_type))
4235 if (TREE_CODE (src) == INTEGER_CST
4236 && TYPE_PRECISION (dest_type) >= TYPE_PRECISION (src_type))
4237 return null_pointer_node;
4238 if (integer_zerop (src))
4239 return null_pointer_node;
4240 else if (TYPE_PRECISION (dest_type) <= TYPE_PRECISION (src_type))
4241 return initializer_constant_valid_p_1 (src, endtype, cache);
4244 /* Allow conversions to struct or union types if the value
4245 inside is okay. */
4246 if (TREE_CODE (dest_type) == RECORD_TYPE
4247 || TREE_CODE (dest_type) == UNION_TYPE)
4248 return initializer_constant_valid_p_1 (src, endtype, cache);
4250 break;
4252 case POINTER_PLUS_EXPR:
4253 case PLUS_EXPR:
4254 /* Any valid floating-point constants will have been folded by now;
4255 with -frounding-math we hit this with addition of two constants. */
4256 if (TREE_CODE (endtype) == REAL_TYPE)
4257 return NULL_TREE;
4258 if (cache && cache[0] == value)
4259 return cache[1];
4260 if (! INTEGRAL_TYPE_P (endtype)
4261 || TYPE_PRECISION (endtype) >= TYPE_PRECISION (TREE_TYPE (value)))
4263 tree ncache[4] = { NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE };
4264 tree valid0
4265 = initializer_constant_valid_p_1 (TREE_OPERAND (value, 0),
4266 endtype, ncache);
4267 tree valid1
4268 = initializer_constant_valid_p_1 (TREE_OPERAND (value, 1),
4269 endtype, ncache + 2);
4270 /* If either term is absolute, use the other term's relocation. */
4271 if (valid0 == null_pointer_node)
4272 ret = valid1;
4273 else if (valid1 == null_pointer_node)
4274 ret = valid0;
4275 /* Support narrowing pointer differences. */
4276 else
4277 ret = narrowing_initializer_constant_valid_p (value, endtype,
4278 ncache);
4280 else
4281 /* Support narrowing pointer differences. */
4282 ret = narrowing_initializer_constant_valid_p (value, endtype, NULL);
4283 if (cache)
4285 cache[0] = value;
4286 cache[1] = ret;
4288 return ret;
4290 case MINUS_EXPR:
4291 if (TREE_CODE (endtype) == REAL_TYPE)
4292 return NULL_TREE;
4293 if (cache && cache[0] == value)
4294 return cache[1];
4295 if (! INTEGRAL_TYPE_P (endtype)
4296 || TYPE_PRECISION (endtype) >= TYPE_PRECISION (TREE_TYPE (value)))
4298 tree ncache[4] = { NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE };
4299 tree valid0
4300 = initializer_constant_valid_p_1 (TREE_OPERAND (value, 0),
4301 endtype, ncache);
4302 tree valid1
4303 = initializer_constant_valid_p_1 (TREE_OPERAND (value, 1),
4304 endtype, ncache + 2);
4305 /* Win if second argument is absolute. */
4306 if (valid1 == null_pointer_node)
4307 ret = valid0;
4308 /* Win if both arguments have the same relocation.
4309 Then the value is absolute. */
4310 else if (valid0 == valid1 && valid0 != 0)
4311 ret = null_pointer_node;
4312 /* Since GCC guarantees that string constants are unique in the
4313 generated code, a subtraction between two copies of the same
4314 constant string is absolute. */
4315 else if (valid0 && TREE_CODE (valid0) == STRING_CST
4316 && valid1 && TREE_CODE (valid1) == STRING_CST
4317 && operand_equal_p (valid0, valid1, 1))
4318 ret = null_pointer_node;
4319 /* Support narrowing differences. */
4320 else
4321 ret = narrowing_initializer_constant_valid_p (value, endtype,
4322 ncache);
4324 else
4325 /* Support narrowing differences. */
4326 ret = narrowing_initializer_constant_valid_p (value, endtype, NULL);
4327 if (cache)
4329 cache[0] = value;
4330 cache[1] = ret;
4332 return ret;
4334 default:
4335 break;
4338 return NULL_TREE;
4341 /* Return nonzero if VALUE is a valid constant-valued expression
4342 for use in initializing a static variable; one that can be an
4343 element of a "constant" initializer.
4345 Return null_pointer_node if the value is absolute;
4346 if it is relocatable, return the variable that determines the relocation.
4347 We assume that VALUE has been folded as much as possible;
4348 therefore, we do not need to check for such things as
4349 arithmetic-combinations of integers. */
4350 tree
4351 initializer_constant_valid_p (tree value, tree endtype)
4353 return initializer_constant_valid_p_1 (value, endtype, NULL);
4356 /* Return true if VALUE is a valid constant-valued expression
4357 for use in initializing a static bit-field; one that can be
4358 an element of a "constant" initializer. */
4360 bool
4361 initializer_constant_valid_for_bitfield_p (tree value)
4363 /* For bitfields we support integer constants or possibly nested aggregates
4364 of such. */
4365 switch (TREE_CODE (value))
4367 case CONSTRUCTOR:
4369 unsigned HOST_WIDE_INT idx;
4370 tree elt;
4372 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value), idx, elt)
4373 if (!initializer_constant_valid_for_bitfield_p (elt))
4374 return false;
4375 return true;
4378 case INTEGER_CST:
4379 return true;
4381 case VIEW_CONVERT_EXPR:
4382 case NON_LVALUE_EXPR:
4383 return
4384 initializer_constant_valid_for_bitfield_p (TREE_OPERAND (value, 0));
4386 default:
4387 break;
4390 return false;
4393 /* output_constructor outer state of relevance in recursive calls, typically
4394 for nested aggregate bitfields. */
4396 typedef struct {
4397 unsigned int bit_offset; /* current position in ... */
4398 int byte; /* ... the outer byte buffer. */
4399 } oc_outer_state;
4401 static unsigned HOST_WIDE_INT
4402 output_constructor (tree, unsigned HOST_WIDE_INT, unsigned int,
4403 oc_outer_state *);
4405 /* Output assembler code for constant EXP to FILE, with no label.
4406 This includes the pseudo-op such as ".int" or ".byte", and a newline.
4407 Assumes output_addressed_constants has been done on EXP already.
4409 Generate exactly SIZE bytes of assembler data, padding at the end
4410 with zeros if necessary. SIZE must always be specified.
4412 SIZE is important for structure constructors,
4413 since trailing members may have been omitted from the constructor.
4414 It is also important for initialization of arrays from string constants
4415 since the full length of the string constant might not be wanted.
4416 It is also needed for initialization of unions, where the initializer's
4417 type is just one member, and that may not be as long as the union.
4419 There a case in which we would fail to output exactly SIZE bytes:
4420 for a structure constructor that wants to produce more than SIZE bytes.
4421 But such constructors will never be generated for any possible input.
4423 ALIGN is the alignment of the data in bits. */
4425 void
4426 output_constant (tree exp, unsigned HOST_WIDE_INT size, unsigned int align)
4428 enum tree_code code;
4429 unsigned HOST_WIDE_INT thissize;
4431 if (size == 0 || flag_syntax_only)
4432 return;
4434 /* See if we're trying to initialize a pointer in a non-default mode
4435 to the address of some declaration somewhere. If the target says
4436 the mode is valid for pointers, assume the target has a way of
4437 resolving it. */
4438 if (TREE_CODE (exp) == NOP_EXPR
4439 && POINTER_TYPE_P (TREE_TYPE (exp))
4440 && targetm.addr_space.valid_pointer_mode
4441 (TYPE_MODE (TREE_TYPE (exp)),
4442 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp)))))
4444 tree saved_type = TREE_TYPE (exp);
4446 /* Peel off any intermediate conversions-to-pointer for valid
4447 pointer modes. */
4448 while (TREE_CODE (exp) == NOP_EXPR
4449 && POINTER_TYPE_P (TREE_TYPE (exp))
4450 && targetm.addr_space.valid_pointer_mode
4451 (TYPE_MODE (TREE_TYPE (exp)),
4452 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp)))))
4453 exp = TREE_OPERAND (exp, 0);
4455 /* If what we're left with is the address of something, we can
4456 convert the address to the final type and output it that
4457 way. */
4458 if (TREE_CODE (exp) == ADDR_EXPR)
4459 exp = build1 (ADDR_EXPR, saved_type, TREE_OPERAND (exp, 0));
4460 /* Likewise for constant ints. */
4461 else if (TREE_CODE (exp) == INTEGER_CST)
4462 exp = build_int_cst_wide (saved_type, TREE_INT_CST_LOW (exp),
4463 TREE_INT_CST_HIGH (exp));
4467 /* Eliminate any conversions since we'll be outputting the underlying
4468 constant. */
4469 while (CONVERT_EXPR_P (exp)
4470 || TREE_CODE (exp) == NON_LVALUE_EXPR
4471 || TREE_CODE (exp) == VIEW_CONVERT_EXPR)
4473 HOST_WIDE_INT type_size = int_size_in_bytes (TREE_TYPE (exp));
4474 HOST_WIDE_INT op_size = int_size_in_bytes (TREE_TYPE (TREE_OPERAND (exp, 0)));
4476 /* Make sure eliminating the conversion is really a no-op, except with
4477 VIEW_CONVERT_EXPRs to allow for wild Ada unchecked conversions and
4478 union types to allow for Ada unchecked unions. */
4479 if (type_size > op_size
4480 && TREE_CODE (exp) != VIEW_CONVERT_EXPR
4481 && TREE_CODE (TREE_TYPE (exp)) != UNION_TYPE)
4482 /* Keep the conversion. */
4483 break;
4484 else
4485 exp = TREE_OPERAND (exp, 0);
4488 code = TREE_CODE (TREE_TYPE (exp));
4489 thissize = int_size_in_bytes (TREE_TYPE (exp));
4491 /* Allow a constructor with no elements for any data type.
4492 This means to fill the space with zeros. */
4493 if (TREE_CODE (exp) == CONSTRUCTOR
4494 && VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (exp)))
4496 assemble_zeros (size);
4497 return;
4500 if (TREE_CODE (exp) == FDESC_EXPR)
4502 #ifdef ASM_OUTPUT_FDESC
4503 HOST_WIDE_INT part = tree_low_cst (TREE_OPERAND (exp, 1), 0);
4504 tree decl = TREE_OPERAND (exp, 0);
4505 ASM_OUTPUT_FDESC (asm_out_file, decl, part);
4506 #else
4507 gcc_unreachable ();
4508 #endif
4509 return;
4512 /* Now output the underlying data. If we've handling the padding, return.
4513 Otherwise, break and ensure SIZE is the size written. */
4514 switch (code)
4516 case BOOLEAN_TYPE:
4517 case INTEGER_TYPE:
4518 case ENUMERAL_TYPE:
4519 case POINTER_TYPE:
4520 case REFERENCE_TYPE:
4521 case OFFSET_TYPE:
4522 case FIXED_POINT_TYPE:
4523 if (! assemble_integer (expand_expr (exp, NULL_RTX, VOIDmode,
4524 EXPAND_INITIALIZER),
4525 MIN (size, thissize), align, 0))
4526 error ("initializer for integer/fixed-point value is too complicated");
4527 break;
4529 case REAL_TYPE:
4530 if (TREE_CODE (exp) != REAL_CST)
4531 error ("initializer for floating value is not a floating constant");
4532 else
4533 assemble_real (TREE_REAL_CST (exp), TYPE_MODE (TREE_TYPE (exp)), align);
4534 break;
4536 case COMPLEX_TYPE:
4537 output_constant (TREE_REALPART (exp), thissize / 2, align);
4538 output_constant (TREE_IMAGPART (exp), thissize / 2,
4539 min_align (align, BITS_PER_UNIT * (thissize / 2)));
4540 break;
4542 case ARRAY_TYPE:
4543 case VECTOR_TYPE:
4544 switch (TREE_CODE (exp))
4546 case CONSTRUCTOR:
4547 output_constructor (exp, size, align, NULL);
4548 return;
4549 case STRING_CST:
4550 thissize = MIN ((unsigned HOST_WIDE_INT)TREE_STRING_LENGTH (exp),
4551 size);
4552 assemble_string (TREE_STRING_POINTER (exp), thissize);
4553 break;
4555 case VECTOR_CST:
4557 int elt_size;
4558 tree link;
4559 unsigned int nalign;
4560 enum machine_mode inner;
4562 inner = TYPE_MODE (TREE_TYPE (TREE_TYPE (exp)));
4563 nalign = MIN (align, GET_MODE_ALIGNMENT (inner));
4565 elt_size = GET_MODE_SIZE (inner);
4567 link = TREE_VECTOR_CST_ELTS (exp);
4568 output_constant (TREE_VALUE (link), elt_size, align);
4569 thissize = elt_size;
4570 while ((link = TREE_CHAIN (link)) != NULL)
4572 output_constant (TREE_VALUE (link), elt_size, nalign);
4573 thissize += elt_size;
4575 break;
4577 default:
4578 gcc_unreachable ();
4580 break;
4582 case RECORD_TYPE:
4583 case UNION_TYPE:
4584 gcc_assert (TREE_CODE (exp) == CONSTRUCTOR);
4585 output_constructor (exp, size, align, NULL);
4586 return;
4588 case ERROR_MARK:
4589 return;
4591 default:
4592 gcc_unreachable ();
4595 if (size > thissize)
4596 assemble_zeros (size - thissize);
4600 /* Subroutine of output_constructor, used for computing the size of
4601 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
4602 type with an unspecified upper bound. */
4604 static unsigned HOST_WIDE_INT
4605 array_size_for_constructor (tree val)
4607 tree max_index, i;
4608 unsigned HOST_WIDE_INT cnt;
4609 tree index, value, tmp;
4611 /* This code used to attempt to handle string constants that are not
4612 arrays of single-bytes, but nothing else does, so there's no point in
4613 doing it here. */
4614 if (TREE_CODE (val) == STRING_CST)
4615 return TREE_STRING_LENGTH (val);
4617 max_index = NULL_TREE;
4618 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (val), cnt, index, value)
4620 if (TREE_CODE (index) == RANGE_EXPR)
4621 index = TREE_OPERAND (index, 1);
4622 if (max_index == NULL_TREE || tree_int_cst_lt (max_index, index))
4623 max_index = index;
4626 if (max_index == NULL_TREE)
4627 return 0;
4629 /* Compute the total number of array elements. */
4630 tmp = TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val)));
4631 i = size_binop (MINUS_EXPR, fold_convert (sizetype, max_index),
4632 fold_convert (sizetype, tmp));
4633 i = size_binop (PLUS_EXPR, i, size_one_node);
4635 /* Multiply by the array element unit size to find number of bytes. */
4636 i = size_binop (MULT_EXPR, i, TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val))));
4638 return tree_low_cst (i, 1);
4641 /* Other datastructures + helpers for output_constructor. */
4643 /* output_constructor local state to support interaction with helpers. */
4645 typedef struct {
4647 /* Received arguments. */
4648 tree exp; /* Constructor expression. */
4649 unsigned HOST_WIDE_INT size; /* # bytes to output - pad if necessary. */
4650 unsigned int align; /* Known initial alignment. */
4652 /* Constructor expression data. */
4653 tree type; /* Expression type. */
4654 tree field; /* Current field decl in a record. */
4655 tree min_index; /* Lower bound if specified for an array. */
4657 /* Output processing state. */
4658 HOST_WIDE_INT total_bytes; /* # bytes output so far / current position. */
4659 bool byte_buffer_in_use; /* Whether byte ... */
4660 int byte; /* ... contains part of a bitfield byte yet to
4661 be output. */
4663 int last_relative_index; /* Implicit or explicit index of the last
4664 array element output within a bitfield. */
4665 /* Current element. */
4666 tree val; /* Current element value. */
4667 tree index; /* Current element index. */
4669 } oc_local_state;
4671 /* Helper for output_constructor. From the current LOCAL state, output a
4672 RANGE_EXPR element. */
4674 static void
4675 output_constructor_array_range (oc_local_state *local)
4677 unsigned HOST_WIDE_INT fieldsize
4678 = int_size_in_bytes (TREE_TYPE (local->type));
4680 HOST_WIDE_INT lo_index
4681 = tree_low_cst (TREE_OPERAND (local->index, 0), 0);
4682 HOST_WIDE_INT hi_index
4683 = tree_low_cst (TREE_OPERAND (local->index, 1), 0);
4684 HOST_WIDE_INT index;
4686 unsigned int align2
4687 = min_align (local->align, fieldsize * BITS_PER_UNIT);
4689 for (index = lo_index; index <= hi_index; index++)
4691 /* Output the element's initial value. */
4692 if (local->val == NULL_TREE)
4693 assemble_zeros (fieldsize);
4694 else
4695 output_constant (local->val, fieldsize, align2);
4697 /* Count its size. */
4698 local->total_bytes += fieldsize;
4702 /* Helper for output_constructor. From the current LOCAL state, output a
4703 field element that is not true bitfield or part of an outer one. */
4705 static void
4706 output_constructor_regular_field (oc_local_state *local)
4708 /* Field size and position. Since this structure is static, we know the
4709 positions are constant. */
4710 unsigned HOST_WIDE_INT fieldsize;
4711 HOST_WIDE_INT fieldpos;
4713 unsigned int align2;
4715 if (local->index != NULL_TREE)
4716 fieldpos = (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (local->val)), 1)
4717 * ((tree_low_cst (local->index, 0)
4718 - tree_low_cst (local->min_index, 0))));
4719 else if (local->field != NULL_TREE)
4720 fieldpos = int_byte_position (local->field);
4721 else
4722 fieldpos = 0;
4724 /* Output any buffered-up bit-fields preceding this element. */
4725 if (local->byte_buffer_in_use)
4727 assemble_integer (GEN_INT (local->byte), 1, BITS_PER_UNIT, 1);
4728 local->total_bytes++;
4729 local->byte_buffer_in_use = false;
4732 /* Advance to offset of this element.
4733 Note no alignment needed in an array, since that is guaranteed
4734 if each element has the proper size. */
4735 if ((local->field != NULL_TREE || local->index != NULL_TREE)
4736 && fieldpos != local->total_bytes)
4738 gcc_assert (fieldpos >= local->total_bytes);
4739 assemble_zeros (fieldpos - local->total_bytes);
4740 local->total_bytes = fieldpos;
4743 /* Find the alignment of this element. */
4744 align2 = min_align (local->align, BITS_PER_UNIT * fieldpos);
4746 /* Determine size this element should occupy. */
4747 if (local->field)
4749 fieldsize = 0;
4751 /* If this is an array with an unspecified upper bound,
4752 the initializer determines the size. */
4753 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4754 but we cannot do this until the deprecated support for
4755 initializing zero-length array members is removed. */
4756 if (TREE_CODE (TREE_TYPE (local->field)) == ARRAY_TYPE
4757 && TYPE_DOMAIN (TREE_TYPE (local->field))
4758 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (local->field))))
4760 fieldsize = array_size_for_constructor (local->val);
4761 /* Given a non-empty initialization, this field had
4762 better be last. */
4763 gcc_assert (!fieldsize || !DECL_CHAIN (local->field));
4765 else if (DECL_SIZE_UNIT (local->field))
4767 /* ??? This can't be right. If the decl size overflows
4768 a host integer we will silently emit no data. */
4769 if (host_integerp (DECL_SIZE_UNIT (local->field), 1))
4770 fieldsize = tree_low_cst (DECL_SIZE_UNIT (local->field), 1);
4773 else
4774 fieldsize = int_size_in_bytes (TREE_TYPE (local->type));
4776 /* Output the element's initial value. */
4777 if (local->val == NULL_TREE)
4778 assemble_zeros (fieldsize);
4779 else
4780 output_constant (local->val, fieldsize, align2);
4782 /* Count its size. */
4783 local->total_bytes += fieldsize;
4786 /* Helper for output_constructor. From the current LOCAL and OUTER states,
4787 output an element that is a true bitfield or part of an outer one. */
4789 static void
4790 output_constructor_bitfield (oc_local_state *local, oc_outer_state *outer)
4792 /* Bit size of this element. */
4793 HOST_WIDE_INT ebitsize
4794 = (local->field
4795 ? tree_low_cst (DECL_SIZE (local->field), 1)
4796 : tree_low_cst (TYPE_SIZE (TREE_TYPE (local->type)), 1));
4798 /* Relative index of this element if this is an array component. */
4799 HOST_WIDE_INT relative_index
4800 = (!local->field
4801 ? (local->index
4802 ? (tree_low_cst (local->index, 0)
4803 - tree_low_cst (local->min_index, 0))
4804 : local->last_relative_index + 1)
4805 : 0);
4807 /* Bit position of this element from the start of the containing
4808 constructor. */
4809 HOST_WIDE_INT constructor_relative_ebitpos
4810 = (local->field
4811 ? int_bit_position (local->field)
4812 : ebitsize * relative_index);
4814 /* Bit position of this element from the start of a possibly ongoing
4815 outer byte buffer. */
4816 HOST_WIDE_INT byte_relative_ebitpos
4817 = ((outer ? outer->bit_offset : 0) + constructor_relative_ebitpos);
4819 /* From the start of a possibly ongoing outer byte buffer, offsets to
4820 the first bit of this element and to the first bit past the end of
4821 this element. */
4822 HOST_WIDE_INT next_offset = byte_relative_ebitpos;
4823 HOST_WIDE_INT end_offset = byte_relative_ebitpos + ebitsize;
4825 local->last_relative_index = relative_index;
4827 if (local->val == NULL_TREE)
4828 local->val = integer_zero_node;
4830 while (TREE_CODE (local->val) == VIEW_CONVERT_EXPR
4831 || TREE_CODE (local->val) == NON_LVALUE_EXPR)
4832 local->val = TREE_OPERAND (local->val, 0);
4834 if (TREE_CODE (local->val) != INTEGER_CST
4835 && TREE_CODE (local->val) != CONSTRUCTOR)
4837 error ("invalid initial value for member %qE", DECL_NAME (local->field));
4838 return;
4841 /* If this field does not start in this (or, next) byte,
4842 skip some bytes. */
4843 if (next_offset / BITS_PER_UNIT != local->total_bytes)
4845 /* Output remnant of any bit field in previous bytes. */
4846 if (local->byte_buffer_in_use)
4848 assemble_integer (GEN_INT (local->byte), 1, BITS_PER_UNIT, 1);
4849 local->total_bytes++;
4850 local->byte_buffer_in_use = false;
4853 /* If still not at proper byte, advance to there. */
4854 if (next_offset / BITS_PER_UNIT != local->total_bytes)
4856 gcc_assert (next_offset / BITS_PER_UNIT >= local->total_bytes);
4857 assemble_zeros (next_offset / BITS_PER_UNIT - local->total_bytes);
4858 local->total_bytes = next_offset / BITS_PER_UNIT;
4862 /* Set up the buffer if necessary. */
4863 if (!local->byte_buffer_in_use)
4865 local->byte = 0;
4866 if (ebitsize > 0)
4867 local->byte_buffer_in_use = true;
4870 /* If this is nested constructor, recurse passing the bit offset and the
4871 pending data, then retrieve the new pending data afterwards. */
4872 if (TREE_CODE (local->val) == CONSTRUCTOR)
4874 oc_outer_state output_state;
4876 output_state.bit_offset = next_offset % BITS_PER_UNIT;
4877 output_state.byte = local->byte;
4878 local->total_bytes
4879 += output_constructor (local->val, 0, 0, &output_state);
4880 local->byte = output_state.byte;
4881 return;
4884 /* Otherwise, we must split the element into pieces that fall within
4885 separate bytes, and combine each byte with previous or following
4886 bit-fields. */
4887 while (next_offset < end_offset)
4889 int this_time;
4890 int shift;
4891 HOST_WIDE_INT value;
4892 HOST_WIDE_INT next_byte = next_offset / BITS_PER_UNIT;
4893 HOST_WIDE_INT next_bit = next_offset % BITS_PER_UNIT;
4895 /* Advance from byte to byte
4896 within this element when necessary. */
4897 while (next_byte != local->total_bytes)
4899 assemble_integer (GEN_INT (local->byte), 1, BITS_PER_UNIT, 1);
4900 local->total_bytes++;
4901 local->byte = 0;
4904 /* Number of bits we can process at once
4905 (all part of the same byte). */
4906 this_time = MIN (end_offset - next_offset,
4907 BITS_PER_UNIT - next_bit);
4908 if (BYTES_BIG_ENDIAN)
4910 /* On big-endian machine, take the most significant bits
4911 first (of the bits that are significant)
4912 and put them into bytes from the most significant end. */
4913 shift = end_offset - next_offset - this_time;
4915 /* Don't try to take a bunch of bits that cross
4916 the word boundary in the INTEGER_CST. We can
4917 only select bits from the LOW or HIGH part
4918 not from both. */
4919 if (shift < HOST_BITS_PER_WIDE_INT
4920 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4922 this_time = shift + this_time - HOST_BITS_PER_WIDE_INT;
4923 shift = HOST_BITS_PER_WIDE_INT;
4926 /* Now get the bits from the appropriate constant word. */
4927 if (shift < HOST_BITS_PER_WIDE_INT)
4928 value = TREE_INT_CST_LOW (local->val);
4929 else
4931 gcc_assert (shift < 2 * HOST_BITS_PER_WIDE_INT);
4932 value = TREE_INT_CST_HIGH (local->val);
4933 shift -= HOST_BITS_PER_WIDE_INT;
4936 /* Get the result. This works only when:
4937 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4938 local->byte |= (((value >> shift)
4939 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4940 << (BITS_PER_UNIT - this_time - next_bit));
4942 else
4944 /* On little-endian machines,
4945 take first the least significant bits of the value
4946 and pack them starting at the least significant
4947 bits of the bytes. */
4948 shift = next_offset - byte_relative_ebitpos;
4950 /* Don't try to take a bunch of bits that cross
4951 the word boundary in the INTEGER_CST. We can
4952 only select bits from the LOW or HIGH part
4953 not from both. */
4954 if (shift < HOST_BITS_PER_WIDE_INT
4955 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4956 this_time = (HOST_BITS_PER_WIDE_INT - shift);
4958 /* Now get the bits from the appropriate constant word. */
4959 if (shift < HOST_BITS_PER_WIDE_INT)
4960 value = TREE_INT_CST_LOW (local->val);
4961 else
4963 gcc_assert (shift < 2 * HOST_BITS_PER_WIDE_INT);
4964 value = TREE_INT_CST_HIGH (local->val);
4965 shift -= HOST_BITS_PER_WIDE_INT;
4968 /* Get the result. This works only when:
4969 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4970 local->byte |= (((value >> shift)
4971 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4972 << next_bit);
4975 next_offset += this_time;
4976 local->byte_buffer_in_use = true;
4980 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
4981 Generate at least SIZE bytes, padding if necessary. OUTER designates the
4982 caller output state of relevance in recursive invocations. */
4984 static unsigned HOST_WIDE_INT
4985 output_constructor (tree exp, unsigned HOST_WIDE_INT size,
4986 unsigned int align, oc_outer_state * outer)
4988 unsigned HOST_WIDE_INT cnt;
4989 constructor_elt *ce;
4991 oc_local_state local;
4993 /* Setup our local state to communicate with helpers. */
4994 local.exp = exp;
4995 local.size = size;
4996 local.align = align;
4998 local.total_bytes = 0;
4999 local.byte_buffer_in_use = outer != NULL;
5000 local.byte = outer ? outer->byte : 0;
5002 local.type = TREE_TYPE (exp);
5004 local.last_relative_index = -1;
5006 local.min_index = NULL_TREE;
5007 if (TREE_CODE (local.type) == ARRAY_TYPE
5008 && TYPE_DOMAIN (local.type) != NULL_TREE)
5009 local.min_index = TYPE_MIN_VALUE (TYPE_DOMAIN (local.type));
5011 gcc_assert (HOST_BITS_PER_WIDE_INT >= BITS_PER_UNIT);
5013 /* As CE goes through the elements of the constant, FIELD goes through the
5014 structure fields if the constant is a structure. If the constant is a
5015 union, we override this by getting the field from the TREE_LIST element.
5016 But the constant could also be an array. Then FIELD is zero.
5018 There is always a maximum of one element in the chain LINK for unions
5019 (even if the initializer in a source program incorrectly contains
5020 more one). */
5022 local.field = NULL_TREE;
5023 if (TREE_CODE (local.type) == RECORD_TYPE)
5024 local.field = TYPE_FIELDS (local.type);
5026 for (cnt = 0;
5027 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (exp), cnt, ce);
5028 cnt++, local.field = local.field ? DECL_CHAIN (local.field) : 0)
5030 local.val = ce->value;
5031 local.index = NULL_TREE;
5033 /* The element in a union constructor specifies the proper field
5034 or index. */
5035 if ((TREE_CODE (local.type) == RECORD_TYPE
5036 || TREE_CODE (local.type) == UNION_TYPE
5037 || TREE_CODE (local.type) == QUAL_UNION_TYPE)
5038 && ce->index != NULL_TREE)
5039 local.field = ce->index;
5041 else if (TREE_CODE (local.type) == ARRAY_TYPE)
5042 local.index = ce->index;
5044 #ifdef ASM_COMMENT_START
5045 if (local.field && flag_verbose_asm)
5046 fprintf (asm_out_file, "%s %s:\n",
5047 ASM_COMMENT_START,
5048 DECL_NAME (local.field)
5049 ? IDENTIFIER_POINTER (DECL_NAME (local.field))
5050 : "<anonymous>");
5051 #endif
5053 /* Eliminate the marker that makes a cast not be an lvalue. */
5054 if (local.val != NULL_TREE)
5055 STRIP_NOPS (local.val);
5057 /* Output the current element, using the appropriate helper ... */
5059 /* For an array slice not part of an outer bitfield. */
5060 if (!outer
5061 && local.index != NULL_TREE
5062 && TREE_CODE (local.index) == RANGE_EXPR)
5063 output_constructor_array_range (&local);
5065 /* For a field that is neither a true bitfield nor part of an outer one,
5066 known to be at least byte aligned and multiple-of-bytes long. */
5067 else if (!outer
5068 && (local.field == NULL_TREE
5069 || !CONSTRUCTOR_BITFIELD_P (local.field)))
5070 output_constructor_regular_field (&local);
5072 /* For a true bitfield or part of an outer one. */
5073 else
5074 output_constructor_bitfield (&local, outer);
5077 /* If we are not at toplevel, save the pending data for our caller.
5078 Otherwise output the pending data and padding zeros as needed. */
5079 if (outer)
5080 outer->byte = local.byte;
5081 else
5083 if (local.byte_buffer_in_use)
5085 assemble_integer (GEN_INT (local.byte), 1, BITS_PER_UNIT, 1);
5086 local.total_bytes++;
5089 if ((unsigned HOST_WIDE_INT)local.total_bytes < local.size)
5091 assemble_zeros (local.size - local.total_bytes);
5092 local.total_bytes = local.size;
5096 return local.total_bytes;
5099 /* Mark DECL as weak. */
5101 static void
5102 mark_weak (tree decl)
5104 DECL_WEAK (decl) = 1;
5106 if (DECL_RTL_SET_P (decl)
5107 && MEM_P (DECL_RTL (decl))
5108 && XEXP (DECL_RTL (decl), 0)
5109 && GET_CODE (XEXP (DECL_RTL (decl), 0)) == SYMBOL_REF)
5110 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl), 0)) = 1;
5113 /* Merge weak status between NEWDECL and OLDDECL. */
5115 void
5116 merge_weak (tree newdecl, tree olddecl)
5118 if (DECL_WEAK (newdecl) == DECL_WEAK (olddecl))
5120 if (DECL_WEAK (newdecl) && TARGET_SUPPORTS_WEAK)
5122 tree *pwd;
5123 /* We put the NEWDECL on the weak_decls list at some point
5124 and OLDDECL as well. Keep just OLDDECL on the list. */
5125 for (pwd = &weak_decls; *pwd; pwd = &TREE_CHAIN (*pwd))
5126 if (TREE_VALUE (*pwd) == newdecl)
5128 *pwd = TREE_CHAIN (*pwd);
5129 break;
5132 return;
5135 if (DECL_WEAK (newdecl))
5137 tree wd;
5139 /* NEWDECL is weak, but OLDDECL is not. */
5141 /* If we already output the OLDDECL, we're in trouble; we can't
5142 go back and make it weak. This error cannot be caught in
5143 declare_weak because the NEWDECL and OLDDECL was not yet
5144 been merged; therefore, TREE_ASM_WRITTEN was not set. */
5145 if (TREE_ASM_WRITTEN (olddecl))
5146 error ("weak declaration of %q+D must precede definition",
5147 newdecl);
5149 /* If we've already generated rtl referencing OLDDECL, we may
5150 have done so in a way that will not function properly with
5151 a weak symbol. */
5152 else if (TREE_USED (olddecl)
5153 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl)))
5154 warning (0, "weak declaration of %q+D after first use results "
5155 "in unspecified behavior", newdecl);
5157 if (TARGET_SUPPORTS_WEAK)
5159 /* We put the NEWDECL on the weak_decls list at some point.
5160 Replace it with the OLDDECL. */
5161 for (wd = weak_decls; wd; wd = TREE_CHAIN (wd))
5162 if (TREE_VALUE (wd) == newdecl)
5164 TREE_VALUE (wd) = olddecl;
5165 break;
5167 /* We may not find the entry on the list. If NEWDECL is a
5168 weak alias, then we will have already called
5169 globalize_decl to remove the entry; in that case, we do
5170 not need to do anything. */
5173 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
5174 mark_weak (olddecl);
5176 else
5177 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
5178 weak. Just update NEWDECL to indicate that it's weak too. */
5179 mark_weak (newdecl);
5182 /* Declare DECL to be a weak symbol. */
5184 void
5185 declare_weak (tree decl)
5187 if (! TREE_PUBLIC (decl))
5188 error ("weak declaration of %q+D must be public", decl);
5189 else if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
5190 error ("weak declaration of %q+D must precede definition", decl);
5191 else if (!TARGET_SUPPORTS_WEAK)
5192 warning (0, "weak declaration of %q+D not supported", decl);
5194 mark_weak (decl);
5195 if (!lookup_attribute ("weak", DECL_ATTRIBUTES (decl)))
5196 DECL_ATTRIBUTES (decl)
5197 = tree_cons (get_identifier ("weak"), NULL, DECL_ATTRIBUTES (decl));
5200 static void
5201 weak_finish_1 (tree decl)
5203 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
5204 const char *const name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5205 #endif
5207 if (! TREE_USED (decl))
5208 return;
5210 #ifdef ASM_WEAKEN_DECL
5211 ASM_WEAKEN_DECL (asm_out_file, decl, name, NULL);
5212 #else
5213 #ifdef ASM_WEAKEN_LABEL
5214 ASM_WEAKEN_LABEL (asm_out_file, name);
5215 #else
5216 #ifdef ASM_OUTPUT_WEAK_ALIAS
5218 static bool warn_once = 0;
5219 if (! warn_once)
5221 warning (0, "only weak aliases are supported in this configuration");
5222 warn_once = 1;
5224 return;
5226 #endif
5227 #endif
5228 #endif
5231 /* This TREE_LIST contains weakref targets. */
5233 static GTY(()) tree weakref_targets;
5235 /* Forward declaration. */
5236 static tree find_decl_and_mark_needed (tree decl, tree target);
5238 /* Emit any pending weak declarations. */
5240 void
5241 weak_finish (void)
5243 tree t;
5245 for (t = weakref_targets; t; t = TREE_CHAIN (t))
5247 tree alias_decl = TREE_PURPOSE (t);
5248 tree target = ultimate_transparent_alias_target (&TREE_VALUE (t));
5250 if (! TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (alias_decl)))
5251 /* Remove alias_decl from the weak list, but leave entries for
5252 the target alone. */
5253 target = NULL_TREE;
5254 #ifndef ASM_OUTPUT_WEAKREF
5255 else if (! TREE_SYMBOL_REFERENCED (target))
5257 /* Use ASM_WEAKEN_LABEL only if ASM_WEAKEN_DECL is not
5258 defined, otherwise we and weak_finish_1 would use
5259 different macros. */
5260 # if defined ASM_WEAKEN_LABEL && ! defined ASM_WEAKEN_DECL
5261 ASM_WEAKEN_LABEL (asm_out_file, IDENTIFIER_POINTER (target));
5262 # else
5263 tree decl = find_decl_and_mark_needed (alias_decl, target);
5265 if (! decl)
5267 decl = build_decl (DECL_SOURCE_LOCATION (alias_decl),
5268 TREE_CODE (alias_decl), target,
5269 TREE_TYPE (alias_decl));
5271 DECL_EXTERNAL (decl) = 1;
5272 TREE_PUBLIC (decl) = 1;
5273 DECL_ARTIFICIAL (decl) = 1;
5274 TREE_NOTHROW (decl) = TREE_NOTHROW (alias_decl);
5275 TREE_USED (decl) = 1;
5278 weak_finish_1 (decl);
5279 # endif
5281 #endif
5284 tree *p;
5285 tree t2;
5287 /* Remove the alias and the target from the pending weak list
5288 so that we do not emit any .weak directives for the former,
5289 nor multiple .weak directives for the latter. */
5290 for (p = &weak_decls; (t2 = *p) ; )
5292 if (TREE_VALUE (t2) == alias_decl
5293 || target == DECL_ASSEMBLER_NAME (TREE_VALUE (t2)))
5294 *p = TREE_CHAIN (t2);
5295 else
5296 p = &TREE_CHAIN (t2);
5299 /* Remove other weakrefs to the same target, to speed things up. */
5300 for (p = &TREE_CHAIN (t); (t2 = *p) ; )
5302 if (target == ultimate_transparent_alias_target (&TREE_VALUE (t2)))
5303 *p = TREE_CHAIN (t2);
5304 else
5305 p = &TREE_CHAIN (t2);
5310 for (t = weak_decls; t; t = TREE_CHAIN (t))
5312 tree decl = TREE_VALUE (t);
5314 weak_finish_1 (decl);
5318 /* Emit the assembly bits to indicate that DECL is globally visible. */
5320 static void
5321 globalize_decl (tree decl)
5324 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
5325 if (DECL_WEAK (decl))
5327 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
5328 tree *p, t;
5330 #ifdef ASM_WEAKEN_DECL
5331 ASM_WEAKEN_DECL (asm_out_file, decl, name, 0);
5332 #else
5333 ASM_WEAKEN_LABEL (asm_out_file, name);
5334 #endif
5336 /* Remove this function from the pending weak list so that
5337 we do not emit multiple .weak directives for it. */
5338 for (p = &weak_decls; (t = *p) ; )
5340 if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
5341 *p = TREE_CHAIN (t);
5342 else
5343 p = &TREE_CHAIN (t);
5346 /* Remove weakrefs to the same target from the pending weakref
5347 list, for the same reason. */
5348 for (p = &weakref_targets; (t = *p) ; )
5350 if (DECL_ASSEMBLER_NAME (decl)
5351 == ultimate_transparent_alias_target (&TREE_VALUE (t)))
5352 *p = TREE_CHAIN (t);
5353 else
5354 p = &TREE_CHAIN (t);
5357 return;
5359 #endif
5361 targetm.asm_out.globalize_decl_name (asm_out_file, decl);
5364 VEC(alias_pair,gc) *alias_pairs;
5366 /* Given an assembly name, find the decl it is associated with. At the
5367 same time, mark it needed for cgraph. */
5369 static tree
5370 find_decl_and_mark_needed (tree decl, tree target)
5372 struct cgraph_node *fnode = NULL;
5373 struct varpool_node *vnode = NULL;
5375 if (TREE_CODE (decl) == FUNCTION_DECL)
5377 fnode = cgraph_node_for_asm (target);
5378 if (fnode == NULL)
5379 vnode = varpool_node_for_asm (target);
5381 else
5383 vnode = varpool_node_for_asm (target);
5384 if (vnode == NULL)
5385 fnode = cgraph_node_for_asm (target);
5388 if (fnode)
5390 cgraph_mark_needed_node (fnode);
5391 return fnode->decl;
5393 else if (vnode)
5395 varpool_mark_needed_node (vnode);
5396 vnode->force_output = 1;
5397 return vnode->decl;
5399 else
5400 return NULL_TREE;
5403 /* Output the assembler code for a define (equate) using ASM_OUTPUT_DEF
5404 or ASM_OUTPUT_DEF_FROM_DECLS. The function defines the symbol whose
5405 tree node is DECL to have the value of the tree node TARGET. */
5407 static void
5408 do_assemble_alias (tree decl, tree target)
5410 /* Emulated TLS had better not get this var. */
5411 gcc_assert(!(!targetm.have_tls
5412 && TREE_CODE (decl) == VAR_DECL
5413 && DECL_THREAD_LOCAL_P (decl)));
5415 if (TREE_ASM_WRITTEN (decl))
5416 return;
5418 /* We must force creation of DECL_RTL for debug info generation, even though
5419 we don't use it here. */
5420 make_decl_rtl (decl);
5422 TREE_ASM_WRITTEN (decl) = 1;
5423 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl)) = 1;
5425 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl)))
5427 ultimate_transparent_alias_target (&target);
5429 if (!TREE_SYMBOL_REFERENCED (target))
5430 weakref_targets = tree_cons (decl, target, weakref_targets);
5432 #ifdef ASM_OUTPUT_WEAKREF
5433 ASM_OUTPUT_WEAKREF (asm_out_file, decl,
5434 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)),
5435 IDENTIFIER_POINTER (target));
5436 #else
5437 if (!TARGET_SUPPORTS_WEAK)
5439 error_at (DECL_SOURCE_LOCATION (decl),
5440 "weakref is not supported in this configuration");
5441 return;
5443 #endif
5444 return;
5447 #ifdef ASM_OUTPUT_DEF
5448 /* Make name accessible from other files, if appropriate. */
5450 if (TREE_PUBLIC (decl))
5452 globalize_decl (decl);
5453 maybe_assemble_visibility (decl);
5455 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl)))
5457 #if defined (ASM_OUTPUT_TYPE_DIRECTIVE) && HAVE_GNU_INDIRECT_FUNCTION
5458 ASM_OUTPUT_TYPE_DIRECTIVE
5459 (asm_out_file, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)),
5460 IFUNC_ASM_TYPE);
5461 #else
5462 error_at (DECL_SOURCE_LOCATION (decl),
5463 "ifunc is not supported in this configuration");
5464 #endif
5467 # ifdef ASM_OUTPUT_DEF_FROM_DECLS
5468 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file, decl, target);
5469 # else
5470 ASM_OUTPUT_DEF (asm_out_file,
5471 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)),
5472 IDENTIFIER_POINTER (target));
5473 # endif
5474 #elif defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
5476 const char *name;
5477 tree *p, t;
5479 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5480 # ifdef ASM_WEAKEN_DECL
5481 ASM_WEAKEN_DECL (asm_out_file, decl, name, IDENTIFIER_POINTER (target));
5482 # else
5483 ASM_OUTPUT_WEAK_ALIAS (asm_out_file, name, IDENTIFIER_POINTER (target));
5484 # endif
5485 /* Remove this function from the pending weak list so that
5486 we do not emit multiple .weak directives for it. */
5487 for (p = &weak_decls; (t = *p) ; )
5488 if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
5489 *p = TREE_CHAIN (t);
5490 else
5491 p = &TREE_CHAIN (t);
5493 /* Remove weakrefs to the same target from the pending weakref
5494 list, for the same reason. */
5495 for (p = &weakref_targets; (t = *p) ; )
5497 if (DECL_ASSEMBLER_NAME (decl)
5498 == ultimate_transparent_alias_target (&TREE_VALUE (t)))
5499 *p = TREE_CHAIN (t);
5500 else
5501 p = &TREE_CHAIN (t);
5504 #endif
5508 /* Compute the set of indentifier nodes that is generated by aliases
5509 whose targets are reachable. */
5511 static struct pointer_set_t *
5512 compute_visible_aliases (void)
5514 struct pointer_set_t *visible;
5515 unsigned i;
5516 alias_pair *p;
5517 bool changed;
5519 /* We have to compute the set of visible nodes including aliases
5520 themselves. */
5521 visible = pointer_set_create ();
5524 changed = false;
5525 for (i = 0; VEC_iterate (alias_pair, alias_pairs, i, p); ++i)
5527 struct cgraph_node *fnode = NULL;
5528 struct varpool_node *vnode = NULL;
5529 fnode = cgraph_node_for_asm (p->target);
5530 vnode = (fnode == NULL) ? varpool_node_for_asm (p->target) : NULL;
5531 if ((fnode
5532 || vnode
5533 || pointer_set_contains (visible, p->target))
5534 && !pointer_set_insert (visible, DECL_ASSEMBLER_NAME (p->decl)))
5535 changed = true;
5538 while (changed);
5540 return visible;
5543 /* Remove the alias pairing for functions that are no longer in the call
5544 graph. */
5546 void
5547 remove_unreachable_alias_pairs (void)
5549 struct pointer_set_t *visible;
5550 unsigned i;
5551 alias_pair *p;
5553 if (alias_pairs == NULL)
5554 return;
5556 /* We have to compute the set of visible nodes including aliases
5557 themselves. */
5558 visible = compute_visible_aliases ();
5560 for (i = 0; VEC_iterate (alias_pair, alias_pairs, i, p); )
5562 if (!DECL_EXTERNAL (p->decl))
5564 struct cgraph_node *fnode = NULL;
5565 struct varpool_node *vnode = NULL;
5566 fnode = cgraph_node_for_asm (p->target);
5567 vnode = (fnode == NULL) ? varpool_node_for_asm (p->target) : NULL;
5568 if (!fnode
5569 && !vnode
5570 && !pointer_set_contains (visible, p->target))
5572 VEC_unordered_remove (alias_pair, alias_pairs, i);
5573 continue;
5577 i++;
5580 pointer_set_destroy (visible);
5584 /* First pass of completing pending aliases. Make sure that cgraph knows
5585 which symbols will be required. */
5587 void
5588 finish_aliases_1 (void)
5590 struct pointer_set_t *visible;
5591 unsigned i;
5592 alias_pair *p;
5594 if (alias_pairs == NULL)
5595 return;
5597 /* We have to compute the set of visible nodes including aliases
5598 themselves. */
5599 visible = compute_visible_aliases ();
5601 FOR_EACH_VEC_ELT (alias_pair, alias_pairs, i, p)
5603 tree target_decl;
5605 target_decl = find_decl_and_mark_needed (p->decl, p->target);
5606 if (target_decl == NULL)
5608 if (pointer_set_contains (visible, p->target))
5609 continue;
5611 if (! (p->emitted_diags & ALIAS_DIAG_TO_UNDEF)
5612 && ! lookup_attribute ("weakref", DECL_ATTRIBUTES (p->decl)))
5614 error ("%q+D aliased to undefined symbol %qE",
5615 p->decl, p->target);
5616 p->emitted_diags |= ALIAS_DIAG_TO_UNDEF;
5619 else if (! (p->emitted_diags & ALIAS_DIAG_TO_EXTERN)
5620 && DECL_EXTERNAL (target_decl)
5621 /* We use local aliases for C++ thunks to force the tailcall
5622 to bind locally. This is a hack - to keep it working do
5623 the following (which is not strictly correct). */
5624 && (! TREE_CODE (target_decl) == FUNCTION_DECL
5625 || ! DECL_VIRTUAL_P (target_decl))
5626 && ! lookup_attribute ("weakref", DECL_ATTRIBUTES (p->decl)))
5628 error ("%q+D aliased to external symbol %qE",
5629 p->decl, p->target);
5630 p->emitted_diags |= ALIAS_DIAG_TO_EXTERN;
5634 pointer_set_destroy (visible);
5637 /* Second pass of completing pending aliases. Emit the actual assembly.
5638 This happens at the end of compilation and thus it is assured that the
5639 target symbol has been emitted. */
5641 void
5642 finish_aliases_2 (void)
5644 unsigned i;
5645 alias_pair *p;
5647 FOR_EACH_VEC_ELT (alias_pair, alias_pairs, i, p)
5648 do_assemble_alias (p->decl, p->target);
5650 VEC_truncate (alias_pair, alias_pairs, 0);
5653 /* Emit an assembler directive to make the symbol for DECL an alias to
5654 the symbol for TARGET. */
5656 void
5657 assemble_alias (tree decl, tree target)
5659 tree target_decl;
5660 bool is_weakref = false;
5662 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl)))
5664 tree alias = DECL_ASSEMBLER_NAME (decl);
5666 is_weakref = true;
5668 ultimate_transparent_alias_target (&target);
5670 if (alias == target)
5671 error ("weakref %q+D ultimately targets itself", decl);
5672 else
5674 #ifndef ASM_OUTPUT_WEAKREF
5675 IDENTIFIER_TRANSPARENT_ALIAS (alias) = 1;
5676 TREE_CHAIN (alias) = target;
5677 #endif
5679 if (TREE_PUBLIC (decl))
5680 error ("weakref %q+D must have static linkage", decl);
5682 else
5684 #if !defined (ASM_OUTPUT_DEF)
5685 # if !defined(ASM_OUTPUT_WEAK_ALIAS) && !defined (ASM_WEAKEN_DECL)
5686 error_at (DECL_SOURCE_LOCATION (decl),
5687 "alias definitions not supported in this configuration");
5688 return;
5689 # else
5690 if (!DECL_WEAK (decl))
5692 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl)))
5693 error_at (DECL_SOURCE_LOCATION (decl),
5694 "ifunc is not supported in this configuration");
5695 else
5696 error_at (DECL_SOURCE_LOCATION (decl),
5697 "only weak aliases are supported in this configuration");
5698 return;
5700 # endif
5701 #endif
5703 TREE_USED (decl) = 1;
5705 /* A quirk of the initial implementation of aliases required that the user
5706 add "extern" to all of them. Which is silly, but now historical. Do
5707 note that the symbol is in fact locally defined. */
5708 if (! is_weakref)
5709 DECL_EXTERNAL (decl) = 0;
5711 /* Allow aliases to aliases. */
5712 if (TREE_CODE (decl) == FUNCTION_DECL)
5713 cgraph_node (decl)->alias = true;
5714 else
5715 varpool_node (decl)->alias = true;
5717 /* If the target has already been emitted, we don't have to queue the
5718 alias. This saves a tad of memory. */
5719 if (cgraph_global_info_ready)
5720 target_decl = find_decl_and_mark_needed (decl, target);
5721 else
5722 target_decl= NULL;
5723 if (target_decl && TREE_ASM_WRITTEN (target_decl))
5724 do_assemble_alias (decl, target);
5725 else
5727 alias_pair *p = VEC_safe_push (alias_pair, gc, alias_pairs, NULL);
5728 p->decl = decl;
5729 p->target = target;
5730 p->emitted_diags = ALIAS_DIAG_NONE;
5734 /* Emit an assembler directive to set symbol for DECL visibility to
5735 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
5737 void
5738 default_assemble_visibility (tree decl ATTRIBUTE_UNUSED,
5739 int vis ATTRIBUTE_UNUSED)
5741 #ifdef HAVE_GAS_HIDDEN
5742 static const char * const visibility_types[] = {
5743 NULL, "protected", "hidden", "internal"
5746 const char *name, *type;
5748 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5749 type = visibility_types[vis];
5751 fprintf (asm_out_file, "\t.%s\t", type);
5752 assemble_name (asm_out_file, name);
5753 fprintf (asm_out_file, "\n");
5754 #else
5755 warning (OPT_Wattributes, "visibility attribute not supported "
5756 "in this configuration; ignored");
5757 #endif
5760 /* A helper function to call assemble_visibility when needed for a decl. */
5763 maybe_assemble_visibility (tree decl)
5765 enum symbol_visibility vis = DECL_VISIBILITY (decl);
5767 if (vis != VISIBILITY_DEFAULT)
5769 targetm.asm_out.assemble_visibility (decl, vis);
5770 return 1;
5772 else
5773 return 0;
5776 /* Returns 1 if the target configuration supports defining public symbols
5777 so that one of them will be chosen at link time instead of generating a
5778 multiply-defined symbol error, whether through the use of weak symbols or
5779 a target-specific mechanism for having duplicates discarded. */
5782 supports_one_only (void)
5784 if (SUPPORTS_ONE_ONLY)
5785 return 1;
5786 return TARGET_SUPPORTS_WEAK;
5789 /* Set up DECL as a public symbol that can be defined in multiple
5790 translation units without generating a linker error. */
5792 void
5793 make_decl_one_only (tree decl, tree comdat_group)
5795 gcc_assert (TREE_CODE (decl) == VAR_DECL
5796 || TREE_CODE (decl) == FUNCTION_DECL);
5798 TREE_PUBLIC (decl) = 1;
5800 if (SUPPORTS_ONE_ONLY)
5802 #ifdef MAKE_DECL_ONE_ONLY
5803 MAKE_DECL_ONE_ONLY (decl);
5804 #endif
5805 DECL_COMDAT_GROUP (decl) = comdat_group;
5807 else if (TREE_CODE (decl) == VAR_DECL
5808 && (DECL_INITIAL (decl) == 0 || DECL_INITIAL (decl) == error_mark_node))
5809 DECL_COMMON (decl) = 1;
5810 else
5812 gcc_assert (TARGET_SUPPORTS_WEAK);
5813 DECL_WEAK (decl) = 1;
5817 void
5818 init_varasm_once (void)
5820 section_htab = htab_create_ggc (31, section_entry_hash,
5821 section_entry_eq, NULL);
5822 object_block_htab = htab_create_ggc (31, object_block_entry_hash,
5823 object_block_entry_eq, NULL);
5824 const_desc_htab = htab_create_ggc (1009, const_desc_hash,
5825 const_desc_eq, NULL);
5827 const_alias_set = new_alias_set ();
5828 shared_constant_pool = create_constant_pool ();
5830 #ifdef TEXT_SECTION_ASM_OP
5831 text_section = get_unnamed_section (SECTION_CODE, output_section_asm_op,
5832 TEXT_SECTION_ASM_OP);
5833 #endif
5835 #ifdef DATA_SECTION_ASM_OP
5836 data_section = get_unnamed_section (SECTION_WRITE, output_section_asm_op,
5837 DATA_SECTION_ASM_OP);
5838 #endif
5840 #ifdef SDATA_SECTION_ASM_OP
5841 sdata_section = get_unnamed_section (SECTION_WRITE, output_section_asm_op,
5842 SDATA_SECTION_ASM_OP);
5843 #endif
5845 #ifdef READONLY_DATA_SECTION_ASM_OP
5846 readonly_data_section = get_unnamed_section (0, output_section_asm_op,
5847 READONLY_DATA_SECTION_ASM_OP);
5848 #endif
5850 #ifdef CTORS_SECTION_ASM_OP
5851 ctors_section = get_unnamed_section (0, output_section_asm_op,
5852 CTORS_SECTION_ASM_OP);
5853 #endif
5855 #ifdef DTORS_SECTION_ASM_OP
5856 dtors_section = get_unnamed_section (0, output_section_asm_op,
5857 DTORS_SECTION_ASM_OP);
5858 #endif
5860 #ifdef BSS_SECTION_ASM_OP
5861 bss_section = get_unnamed_section (SECTION_WRITE | SECTION_BSS,
5862 output_section_asm_op,
5863 BSS_SECTION_ASM_OP);
5864 #endif
5866 #ifdef SBSS_SECTION_ASM_OP
5867 sbss_section = get_unnamed_section (SECTION_WRITE | SECTION_BSS,
5868 output_section_asm_op,
5869 SBSS_SECTION_ASM_OP);
5870 #endif
5872 tls_comm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
5873 | SECTION_COMMON, emit_tls_common);
5874 lcomm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
5875 | SECTION_COMMON, emit_local);
5876 comm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
5877 | SECTION_COMMON, emit_common);
5879 #if defined ASM_OUTPUT_ALIGNED_BSS || defined ASM_OUTPUT_BSS
5880 bss_noswitch_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS,
5881 emit_bss);
5882 #endif
5884 targetm.asm_out.init_sections ();
5886 if (readonly_data_section == NULL)
5887 readonly_data_section = text_section;
5890 enum tls_model
5891 decl_default_tls_model (const_tree decl)
5893 enum tls_model kind;
5894 bool is_local;
5896 is_local = targetm.binds_local_p (decl);
5897 if (!flag_shlib)
5899 if (is_local)
5900 kind = TLS_MODEL_LOCAL_EXEC;
5901 else
5902 kind = TLS_MODEL_INITIAL_EXEC;
5905 /* Local dynamic is inefficient when we're not combining the
5906 parts of the address. */
5907 else if (optimize && is_local)
5908 kind = TLS_MODEL_LOCAL_DYNAMIC;
5909 else
5910 kind = TLS_MODEL_GLOBAL_DYNAMIC;
5911 if (kind < flag_tls_default)
5912 kind = flag_tls_default;
5914 return kind;
5917 /* Select a set of attributes for section NAME based on the properties
5918 of DECL and whether or not RELOC indicates that DECL's initializer
5919 might contain runtime relocations.
5921 We make the section read-only and executable for a function decl,
5922 read-only for a const data decl, and writable for a non-const data decl. */
5924 unsigned int
5925 default_section_type_flags (tree decl, const char *name, int reloc)
5927 unsigned int flags;
5929 if (decl && TREE_CODE (decl) == FUNCTION_DECL)
5930 flags = SECTION_CODE;
5931 else if (decl && decl_readonly_section (decl, reloc))
5932 flags = 0;
5933 else
5934 flags = SECTION_WRITE;
5936 if (decl && DECL_ONE_ONLY (decl))
5937 flags |= SECTION_LINKONCE;
5939 if (decl && TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl))
5940 flags |= SECTION_TLS | SECTION_WRITE;
5942 if (strcmp (name, ".bss") == 0
5943 || strncmp (name, ".bss.", 5) == 0
5944 || strncmp (name, ".gnu.linkonce.b.", 16) == 0
5945 || strcmp (name, ".sbss") == 0
5946 || strncmp (name, ".sbss.", 6) == 0
5947 || strncmp (name, ".gnu.linkonce.sb.", 17) == 0)
5948 flags |= SECTION_BSS;
5950 if (strcmp (name, ".tdata") == 0
5951 || strncmp (name, ".tdata.", 7) == 0
5952 || strncmp (name, ".gnu.linkonce.td.", 17) == 0)
5953 flags |= SECTION_TLS;
5955 if (strcmp (name, ".tbss") == 0
5956 || strncmp (name, ".tbss.", 6) == 0
5957 || strncmp (name, ".gnu.linkonce.tb.", 17) == 0)
5958 flags |= SECTION_TLS | SECTION_BSS;
5960 /* These three sections have special ELF types. They are neither
5961 SHT_PROGBITS nor SHT_NOBITS, so when changing sections we don't
5962 want to print a section type (@progbits or @nobits). If someone
5963 is silly enough to emit code or TLS variables to one of these
5964 sections, then don't handle them specially. */
5965 if (!(flags & (SECTION_CODE | SECTION_BSS | SECTION_TLS))
5966 && (strcmp (name, ".init_array") == 0
5967 || strcmp (name, ".fini_array") == 0
5968 || strcmp (name, ".preinit_array") == 0))
5969 flags |= SECTION_NOTYPE;
5971 return flags;
5974 /* Return true if the target supports some form of global BSS,
5975 either through bss_noswitch_section, or by selecting a BSS
5976 section in TARGET_ASM_SELECT_SECTION. */
5978 bool
5979 have_global_bss_p (void)
5981 return bss_noswitch_section || targetm.have_switchable_bss_sections;
5984 /* Output assembly to switch to section NAME with attribute FLAGS.
5985 Four variants for common object file formats. */
5987 void
5988 default_no_named_section (const char *name ATTRIBUTE_UNUSED,
5989 unsigned int flags ATTRIBUTE_UNUSED,
5990 tree decl ATTRIBUTE_UNUSED)
5992 /* Some object formats don't support named sections at all. The
5993 front-end should already have flagged this as an error. */
5994 gcc_unreachable ();
5997 #ifndef TLS_SECTION_ASM_FLAG
5998 #define TLS_SECTION_ASM_FLAG 'T'
5999 #endif
6001 void
6002 default_elf_asm_named_section (const char *name, unsigned int flags,
6003 tree decl ATTRIBUTE_UNUSED)
6005 char flagchars[10], *f = flagchars;
6007 /* If we have already declared this section, we can use an
6008 abbreviated form to switch back to it -- unless this section is
6009 part of a COMDAT groups, in which case GAS requires the full
6010 declaration every time. */
6011 if (!(HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
6012 && (flags & SECTION_DECLARED))
6014 fprintf (asm_out_file, "\t.section\t%s\n", name);
6015 return;
6018 if (!(flags & SECTION_DEBUG))
6019 *f++ = 'a';
6020 if (flags & SECTION_WRITE)
6021 *f++ = 'w';
6022 if (flags & SECTION_CODE)
6023 *f++ = 'x';
6024 if (flags & SECTION_SMALL)
6025 *f++ = 's';
6026 if (flags & SECTION_MERGE)
6027 *f++ = 'M';
6028 if (flags & SECTION_STRINGS)
6029 *f++ = 'S';
6030 if (flags & SECTION_TLS)
6031 *f++ = TLS_SECTION_ASM_FLAG;
6032 if (HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
6033 *f++ = 'G';
6034 *f = '\0';
6036 fprintf (asm_out_file, "\t.section\t%s,\"%s\"", name, flagchars);
6038 if (!(flags & SECTION_NOTYPE))
6040 const char *type;
6041 const char *format;
6043 if (flags & SECTION_BSS)
6044 type = "nobits";
6045 else
6046 type = "progbits";
6048 format = ",@%s";
6049 #ifdef ASM_COMMENT_START
6050 /* On platforms that use "@" as the assembly comment character,
6051 use "%" instead. */
6052 if (strcmp (ASM_COMMENT_START, "@") == 0)
6053 format = ",%%%s";
6054 #endif
6055 fprintf (asm_out_file, format, type);
6057 if (flags & SECTION_ENTSIZE)
6058 fprintf (asm_out_file, ",%d", flags & SECTION_ENTSIZE);
6059 if (HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
6061 if (TREE_CODE (decl) == IDENTIFIER_NODE)
6062 fprintf (asm_out_file, ",%s,comdat", IDENTIFIER_POINTER (decl));
6063 else
6064 fprintf (asm_out_file, ",%s,comdat",
6065 IDENTIFIER_POINTER (DECL_COMDAT_GROUP (decl)));
6069 putc ('\n', asm_out_file);
6072 void
6073 default_coff_asm_named_section (const char *name, unsigned int flags,
6074 tree decl ATTRIBUTE_UNUSED)
6076 char flagchars[8], *f = flagchars;
6078 if (flags & SECTION_WRITE)
6079 *f++ = 'w';
6080 if (flags & SECTION_CODE)
6081 *f++ = 'x';
6082 *f = '\0';
6084 fprintf (asm_out_file, "\t.section\t%s,\"%s\"\n", name, flagchars);
6087 void
6088 default_pe_asm_named_section (const char *name, unsigned int flags,
6089 tree decl)
6091 default_coff_asm_named_section (name, flags, decl);
6093 if (flags & SECTION_LINKONCE)
6095 /* Functions may have been compiled at various levels of
6096 optimization so we can't use `same_size' here.
6097 Instead, have the linker pick one. */
6098 fprintf (asm_out_file, "\t.linkonce %s\n",
6099 (flags & SECTION_CODE ? "discard" : "same_size"));
6103 /* The lame default section selector. */
6105 section *
6106 default_select_section (tree decl, int reloc,
6107 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
6109 if (DECL_P (decl))
6111 if (decl_readonly_section (decl, reloc))
6112 return readonly_data_section;
6114 else if (TREE_CODE (decl) == CONSTRUCTOR)
6116 if (! ((flag_pic && reloc)
6117 || !TREE_READONLY (decl)
6118 || TREE_SIDE_EFFECTS (decl)
6119 || !TREE_CONSTANT (decl)))
6120 return readonly_data_section;
6122 else if (TREE_CODE (decl) == STRING_CST)
6123 return readonly_data_section;
6124 else if (! (flag_pic && reloc))
6125 return readonly_data_section;
6127 return data_section;
6130 enum section_category
6131 categorize_decl_for_section (const_tree decl, int reloc)
6133 enum section_category ret;
6135 if (TREE_CODE (decl) == FUNCTION_DECL)
6136 return SECCAT_TEXT;
6137 else if (TREE_CODE (decl) == STRING_CST)
6139 if (flag_mudflap) /* or !flag_merge_constants */
6140 return SECCAT_RODATA;
6141 else
6142 return SECCAT_RODATA_MERGE_STR;
6144 else if (TREE_CODE (decl) == VAR_DECL)
6146 if (bss_initializer_p (decl))
6147 ret = SECCAT_BSS;
6148 else if (! TREE_READONLY (decl)
6149 || TREE_SIDE_EFFECTS (decl)
6150 || ! TREE_CONSTANT (DECL_INITIAL (decl)))
6152 /* Here the reloc_rw_mask is not testing whether the section should
6153 be read-only or not, but whether the dynamic link will have to
6154 do something. If so, we wish to segregate the data in order to
6155 minimize cache misses inside the dynamic linker. If the data
6156 has a section attribute, ignore reloc_rw_mask() so that all data
6157 in a given named section is catagorized in the same way. */
6158 if (reloc & targetm.asm_out.reloc_rw_mask ()
6159 && !lookup_attribute ("section", DECL_ATTRIBUTES (decl)))
6160 ret = reloc == 1 ? SECCAT_DATA_REL_LOCAL : SECCAT_DATA_REL;
6161 else
6162 ret = SECCAT_DATA;
6164 else if (reloc & targetm.asm_out.reloc_rw_mask ()
6165 && !lookup_attribute ("section", DECL_ATTRIBUTES (decl)))
6166 ret = reloc == 1 ? SECCAT_DATA_REL_RO_LOCAL : SECCAT_DATA_REL_RO;
6167 else if (reloc || flag_merge_constants < 2)
6168 /* C and C++ don't allow different variables to share the same
6169 location. -fmerge-all-constants allows even that (at the
6170 expense of not conforming). */
6171 ret = SECCAT_RODATA;
6172 else if (TREE_CODE (DECL_INITIAL (decl)) == STRING_CST)
6173 ret = SECCAT_RODATA_MERGE_STR_INIT;
6174 else
6175 ret = SECCAT_RODATA_MERGE_CONST;
6177 else if (TREE_CODE (decl) == CONSTRUCTOR)
6179 if ((reloc & targetm.asm_out.reloc_rw_mask ())
6180 || TREE_SIDE_EFFECTS (decl)
6181 || ! TREE_CONSTANT (decl))
6182 ret = SECCAT_DATA;
6183 else
6184 ret = SECCAT_RODATA;
6186 else
6187 ret = SECCAT_RODATA;
6189 /* There are no read-only thread-local sections. */
6190 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl))
6192 /* Note that this would be *just* SECCAT_BSS, except that there's
6193 no concept of a read-only thread-local-data section. */
6194 if (ret == SECCAT_BSS
6195 || (flag_zero_initialized_in_bss
6196 && initializer_zerop (DECL_INITIAL (decl))))
6197 ret = SECCAT_TBSS;
6198 else
6199 ret = SECCAT_TDATA;
6202 /* If the target uses small data sections, select it. */
6203 else if (targetm.in_small_data_p (decl))
6205 if (ret == SECCAT_BSS)
6206 ret = SECCAT_SBSS;
6207 else if (targetm.have_srodata_section && ret == SECCAT_RODATA)
6208 ret = SECCAT_SRODATA;
6209 else
6210 ret = SECCAT_SDATA;
6213 return ret;
6216 bool
6217 decl_readonly_section (const_tree decl, int reloc)
6219 switch (categorize_decl_for_section (decl, reloc))
6221 case SECCAT_RODATA:
6222 case SECCAT_RODATA_MERGE_STR:
6223 case SECCAT_RODATA_MERGE_STR_INIT:
6224 case SECCAT_RODATA_MERGE_CONST:
6225 case SECCAT_SRODATA:
6226 return true;
6227 break;
6228 default:
6229 return false;
6230 break;
6234 /* Select a section based on the above categorization. */
6236 section *
6237 default_elf_select_section (tree decl, int reloc,
6238 unsigned HOST_WIDE_INT align)
6240 const char *sname;
6241 switch (categorize_decl_for_section (decl, reloc))
6243 case SECCAT_TEXT:
6244 /* We're not supposed to be called on FUNCTION_DECLs. */
6245 gcc_unreachable ();
6246 case SECCAT_RODATA:
6247 return readonly_data_section;
6248 case SECCAT_RODATA_MERGE_STR:
6249 return mergeable_string_section (decl, align, 0);
6250 case SECCAT_RODATA_MERGE_STR_INIT:
6251 return mergeable_string_section (DECL_INITIAL (decl), align, 0);
6252 case SECCAT_RODATA_MERGE_CONST:
6253 return mergeable_constant_section (DECL_MODE (decl), align, 0);
6254 case SECCAT_SRODATA:
6255 sname = ".sdata2";
6256 break;
6257 case SECCAT_DATA:
6258 return data_section;
6259 case SECCAT_DATA_REL:
6260 sname = ".data.rel";
6261 break;
6262 case SECCAT_DATA_REL_LOCAL:
6263 sname = ".data.rel.local";
6264 break;
6265 case SECCAT_DATA_REL_RO:
6266 sname = ".data.rel.ro";
6267 break;
6268 case SECCAT_DATA_REL_RO_LOCAL:
6269 sname = ".data.rel.ro.local";
6270 break;
6271 case SECCAT_SDATA:
6272 sname = ".sdata";
6273 break;
6274 case SECCAT_TDATA:
6275 sname = ".tdata";
6276 break;
6277 case SECCAT_BSS:
6278 if (bss_section)
6279 return bss_section;
6280 sname = ".bss";
6281 break;
6282 case SECCAT_SBSS:
6283 sname = ".sbss";
6284 break;
6285 case SECCAT_TBSS:
6286 sname = ".tbss";
6287 break;
6288 default:
6289 gcc_unreachable ();
6292 if (!DECL_P (decl))
6293 decl = NULL_TREE;
6294 return get_named_section (decl, sname, reloc);
6297 /* Construct a unique section name based on the decl name and the
6298 categorization performed above. */
6300 void
6301 default_unique_section (tree decl, int reloc)
6303 /* We only need to use .gnu.linkonce if we don't have COMDAT groups. */
6304 bool one_only = DECL_ONE_ONLY (decl) && !HAVE_COMDAT_GROUP;
6305 const char *prefix, *name, *linkonce;
6306 char *string;
6308 switch (categorize_decl_for_section (decl, reloc))
6310 case SECCAT_TEXT:
6311 prefix = one_only ? ".t" : ".text";
6312 break;
6313 case SECCAT_RODATA:
6314 case SECCAT_RODATA_MERGE_STR:
6315 case SECCAT_RODATA_MERGE_STR_INIT:
6316 case SECCAT_RODATA_MERGE_CONST:
6317 prefix = one_only ? ".r" : ".rodata";
6318 break;
6319 case SECCAT_SRODATA:
6320 prefix = one_only ? ".s2" : ".sdata2";
6321 break;
6322 case SECCAT_DATA:
6323 prefix = one_only ? ".d" : ".data";
6324 break;
6325 case SECCAT_DATA_REL:
6326 prefix = one_only ? ".d.rel" : ".data.rel";
6327 break;
6328 case SECCAT_DATA_REL_LOCAL:
6329 prefix = one_only ? ".d.rel.local" : ".data.rel.local";
6330 break;
6331 case SECCAT_DATA_REL_RO:
6332 prefix = one_only ? ".d.rel.ro" : ".data.rel.ro";
6333 break;
6334 case SECCAT_DATA_REL_RO_LOCAL:
6335 prefix = one_only ? ".d.rel.ro.local" : ".data.rel.ro.local";
6336 break;
6337 case SECCAT_SDATA:
6338 prefix = one_only ? ".s" : ".sdata";
6339 break;
6340 case SECCAT_BSS:
6341 prefix = one_only ? ".b" : ".bss";
6342 break;
6343 case SECCAT_SBSS:
6344 prefix = one_only ? ".sb" : ".sbss";
6345 break;
6346 case SECCAT_TDATA:
6347 prefix = one_only ? ".td" : ".tdata";
6348 break;
6349 case SECCAT_TBSS:
6350 prefix = one_only ? ".tb" : ".tbss";
6351 break;
6352 default:
6353 gcc_unreachable ();
6356 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
6357 name = targetm.strip_name_encoding (name);
6359 /* If we're using one_only, then there needs to be a .gnu.linkonce
6360 prefix to the section name. */
6361 linkonce = one_only ? ".gnu.linkonce" : "";
6363 string = ACONCAT ((linkonce, prefix, ".", name, NULL));
6365 DECL_SECTION_NAME (decl) = build_string (strlen (string), string);
6368 /* Like compute_reloc_for_constant, except for an RTX. The return value
6369 is a mask for which bit 1 indicates a global relocation, and bit 0
6370 indicates a local relocation. */
6372 static int
6373 compute_reloc_for_rtx_1 (rtx *xp, void *data)
6375 int *preloc = (int *) data;
6376 rtx x = *xp;
6378 switch (GET_CODE (x))
6380 case SYMBOL_REF:
6381 *preloc |= SYMBOL_REF_LOCAL_P (x) ? 1 : 2;
6382 break;
6383 case LABEL_REF:
6384 *preloc |= 1;
6385 break;
6386 default:
6387 break;
6390 return 0;
6393 static int
6394 compute_reloc_for_rtx (rtx x)
6396 int reloc;
6398 switch (GET_CODE (x))
6400 case CONST:
6401 case SYMBOL_REF:
6402 case LABEL_REF:
6403 reloc = 0;
6404 for_each_rtx (&x, compute_reloc_for_rtx_1, &reloc);
6405 return reloc;
6407 default:
6408 return 0;
6412 section *
6413 default_select_rtx_section (enum machine_mode mode ATTRIBUTE_UNUSED,
6414 rtx x,
6415 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
6417 if (compute_reloc_for_rtx (x) & targetm.asm_out.reloc_rw_mask ())
6418 return data_section;
6419 else
6420 return readonly_data_section;
6423 section *
6424 default_elf_select_rtx_section (enum machine_mode mode, rtx x,
6425 unsigned HOST_WIDE_INT align)
6427 int reloc = compute_reloc_for_rtx (x);
6429 /* ??? Handle small data here somehow. */
6431 if (reloc & targetm.asm_out.reloc_rw_mask ())
6433 if (reloc == 1)
6434 return get_named_section (NULL, ".data.rel.ro.local", 1);
6435 else
6436 return get_named_section (NULL, ".data.rel.ro", 3);
6439 return mergeable_constant_section (mode, align, 0);
6442 /* Set the generally applicable flags on the SYMBOL_REF for EXP. */
6444 void
6445 default_encode_section_info (tree decl, rtx rtl, int first ATTRIBUTE_UNUSED)
6447 rtx symbol;
6448 int flags;
6450 /* Careful not to prod global register variables. */
6451 if (!MEM_P (rtl))
6452 return;
6453 symbol = XEXP (rtl, 0);
6454 if (GET_CODE (symbol) != SYMBOL_REF)
6455 return;
6457 flags = SYMBOL_REF_FLAGS (symbol) & SYMBOL_FLAG_HAS_BLOCK_INFO;
6458 if (TREE_CODE (decl) == FUNCTION_DECL)
6459 flags |= SYMBOL_FLAG_FUNCTION;
6460 if (targetm.binds_local_p (decl))
6461 flags |= SYMBOL_FLAG_LOCAL;
6462 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl))
6463 flags |= DECL_TLS_MODEL (decl) << SYMBOL_FLAG_TLS_SHIFT;
6464 else if (targetm.in_small_data_p (decl))
6465 flags |= SYMBOL_FLAG_SMALL;
6466 /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names? Without
6467 being PUBLIC, the thing *must* be defined in this translation unit.
6468 Prevent this buglet from being propagated into rtl code as well. */
6469 if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
6470 flags |= SYMBOL_FLAG_EXTERNAL;
6472 SYMBOL_REF_FLAGS (symbol) = flags;
6475 /* By default, we do nothing for encode_section_info, so we need not
6476 do anything but discard the '*' marker. */
6478 const char *
6479 default_strip_name_encoding (const char *str)
6481 return str + (*str == '*');
6484 #ifdef ASM_OUTPUT_DEF
6485 /* The default implementation of TARGET_ASM_OUTPUT_ANCHOR. Define the
6486 anchor relative to ".", the current section position. */
6488 void
6489 default_asm_output_anchor (rtx symbol)
6491 char buffer[100];
6493 sprintf (buffer, "*. + " HOST_WIDE_INT_PRINT_DEC,
6494 SYMBOL_REF_BLOCK_OFFSET (symbol));
6495 ASM_OUTPUT_DEF (asm_out_file, XSTR (symbol, 0), buffer);
6497 #endif
6499 /* The default implementation of TARGET_USE_ANCHORS_FOR_SYMBOL_P. */
6501 bool
6502 default_use_anchors_for_symbol_p (const_rtx symbol)
6504 section *sect;
6505 tree decl;
6507 /* Don't use anchors for mergeable sections. The linker might move
6508 the objects around. */
6509 sect = SYMBOL_REF_BLOCK (symbol)->sect;
6510 if (sect->common.flags & SECTION_MERGE)
6511 return false;
6513 /* Don't use anchors for small data sections. The small data register
6514 acts as an anchor for such sections. */
6515 if (sect->common.flags & SECTION_SMALL)
6516 return false;
6518 decl = SYMBOL_REF_DECL (symbol);
6519 if (decl && DECL_P (decl))
6521 /* Don't use section anchors for decls that might be defined by
6522 other modules. */
6523 if (!targetm.binds_local_p (decl))
6524 return false;
6526 /* Don't use section anchors for decls that will be placed in a
6527 small data section. */
6528 /* ??? Ideally, this check would be redundant with the SECTION_SMALL
6529 one above. The problem is that we only use SECTION_SMALL for
6530 sections that should be marked as small in the section directive. */
6531 if (targetm.in_small_data_p (decl))
6532 return false;
6534 return true;
6537 /* Return true when RESOLUTION indicate that symbol will be bound to the
6538 definition provided by current .o file. */
6540 static bool
6541 resolution_to_local_definition_p (enum ld_plugin_symbol_resolution resolution)
6543 return (resolution == LDPR_PREVAILING_DEF
6544 || resolution == LDPR_PREVAILING_DEF_IRONLY);
6547 /* Return true when RESOLUTION indicate that symbol will be bound locally
6548 within current executable or DSO. */
6550 static bool
6551 resolution_local_p (enum ld_plugin_symbol_resolution resolution)
6553 return (resolution == LDPR_PREVAILING_DEF
6554 || resolution == LDPR_PREVAILING_DEF_IRONLY
6555 || resolution == LDPR_PREEMPTED_REG
6556 || resolution == LDPR_PREEMPTED_IR
6557 || resolution == LDPR_RESOLVED_IR
6558 || resolution == LDPR_RESOLVED_EXEC);
6561 /* Assume ELF-ish defaults, since that's pretty much the most liberal
6562 wrt cross-module name binding. */
6564 bool
6565 default_binds_local_p (const_tree exp)
6567 return default_binds_local_p_1 (exp, flag_shlib);
6570 bool
6571 default_binds_local_p_1 (const_tree exp, int shlib)
6573 bool local_p;
6574 bool resolved_locally = false;
6575 bool resolved_to_local_def = false;
6577 /* With resolution file in hands, take look into resolutions.
6578 We can't just return true for resolved_localy symbols,
6579 because dynamic linking might overwrite symbols
6580 in shared libraries. */
6581 if (TREE_CODE (exp) == VAR_DECL && TREE_PUBLIC (exp)
6582 && (TREE_STATIC (exp) || DECL_EXTERNAL (exp)))
6584 struct varpool_node *vnode = varpool_get_node (exp);
6585 if (vnode && resolution_local_p (vnode->resolution))
6586 resolved_locally = true;
6587 if (vnode
6588 && resolution_to_local_definition_p (vnode->resolution))
6589 resolved_to_local_def = true;
6591 else if (TREE_CODE (exp) == FUNCTION_DECL && TREE_PUBLIC (exp))
6593 struct cgraph_node *node = cgraph_get_node_or_alias (exp);
6594 if (node
6595 && resolution_local_p (node->resolution))
6596 resolved_locally = true;
6597 if (node
6598 && resolution_to_local_definition_p (node->resolution))
6599 resolved_to_local_def = true;
6602 /* A non-decl is an entry in the constant pool. */
6603 if (!DECL_P (exp))
6604 local_p = true;
6605 /* Weakrefs may not bind locally, even though the weakref itself is
6606 always static and therefore local.
6607 FIXME: We can resolve this more curefuly by looking at the weakref
6608 alias. */
6609 else if (lookup_attribute ("weakref", DECL_ATTRIBUTES (exp)))
6610 local_p = false;
6611 /* Static variables are always local. */
6612 else if (! TREE_PUBLIC (exp))
6613 local_p = true;
6614 /* A variable is local if the user has said explicitly that it will
6615 be. */
6616 else if ((DECL_VISIBILITY_SPECIFIED (exp)
6617 || resolved_to_local_def)
6618 && DECL_VISIBILITY (exp) != VISIBILITY_DEFAULT)
6619 local_p = true;
6620 /* Variables defined outside this object might not be local. */
6621 else if (DECL_EXTERNAL (exp) && !resolved_locally)
6622 local_p = false;
6623 /* If defined in this object and visibility is not default, must be
6624 local. */
6625 else if (DECL_VISIBILITY (exp) != VISIBILITY_DEFAULT)
6626 local_p = true;
6627 /* Default visibility weak data can be overridden by a strong symbol
6628 in another module and so are not local. */
6629 else if (DECL_WEAK (exp)
6630 && !resolved_locally)
6631 local_p = false;
6632 /* If PIC, then assume that any global name can be overridden by
6633 symbols resolved from other modules. */
6634 else if (shlib)
6635 local_p = false;
6636 /* Uninitialized COMMON variable may be unified with symbols
6637 resolved from other modules. */
6638 else if (DECL_COMMON (exp)
6639 && !resolved_locally
6640 && (DECL_INITIAL (exp) == NULL
6641 || DECL_INITIAL (exp) == error_mark_node))
6642 local_p = false;
6643 /* Otherwise we're left with initialized (or non-common) global data
6644 which is of necessity defined locally. */
6645 else
6646 local_p = true;
6648 return local_p;
6651 /* Return true when references to DECL must bind to current definition in
6652 final executable.
6654 The condition is usually equivalent to whether the function binds to the
6655 current module (shared library or executable), that is to binds_local_p.
6656 We use this fact to avoid need for another target hook and implement
6657 the logic using binds_local_p and just special cases where
6658 decl_binds_to_current_def_p is stronger than binds local_p. In particular
6659 the weak definitions (that can be overwritten at linktime by other
6660 definition from different object file) and when resolution info is available
6661 we simply use the knowledge passed to us by linker plugin. */
6662 bool
6663 decl_binds_to_current_def_p (tree decl)
6665 gcc_assert (DECL_P (decl));
6666 if (!TREE_PUBLIC (decl))
6667 return true;
6668 if (!targetm.binds_local_p (decl))
6669 return false;
6670 /* When resolution is available, just use it. */
6671 if (TREE_CODE (decl) == VAR_DECL && TREE_PUBLIC (decl)
6672 && (TREE_STATIC (decl) || DECL_EXTERNAL (decl)))
6674 struct varpool_node *vnode = varpool_get_node (decl);
6675 if (vnode
6676 && vnode->resolution != LDPR_UNKNOWN)
6677 return resolution_to_local_definition_p (vnode->resolution);
6679 else if (TREE_CODE (decl) == FUNCTION_DECL && TREE_PUBLIC (decl))
6681 struct cgraph_node *node = cgraph_get_node_or_alias (decl);
6682 if (node
6683 && node->resolution != LDPR_UNKNOWN)
6684 return resolution_to_local_definition_p (node->resolution);
6686 /* Otherwise we have to assume the worst for DECL_WEAK (hidden weaks
6687 binds localy but still can be overwritten).
6688 This rely on fact that binds_local_p behave as decl_replaceable_p
6689 for all other declaration types. */
6690 return !DECL_WEAK (decl);
6693 /* A replaceable function or variable is one which may be replaced
6694 at link-time with an entirely different definition, provided that the
6695 replacement has the same type. For example, functions declared
6696 with __attribute__((weak)) on most systems are replaceable.
6698 COMDAT functions are not replaceable, since all definitions of the
6699 function must be equivalent. It is important that COMDAT functions
6700 not be treated as replaceable so that use of C++ template
6701 instantiations is not penalized. */
6703 bool
6704 decl_replaceable_p (tree decl)
6706 gcc_assert (DECL_P (decl));
6707 if (!TREE_PUBLIC (decl) || DECL_COMDAT (decl))
6708 return false;
6709 return !decl_binds_to_current_def_p (decl);
6712 /* Default function to output code that will globalize a label. A
6713 target must define GLOBAL_ASM_OP or provide its own function to
6714 globalize a label. */
6715 #ifdef GLOBAL_ASM_OP
6716 void
6717 default_globalize_label (FILE * stream, const char *name)
6719 fputs (GLOBAL_ASM_OP, stream);
6720 assemble_name (stream, name);
6721 putc ('\n', stream);
6723 #endif /* GLOBAL_ASM_OP */
6725 /* Default function to output code that will globalize a declaration. */
6726 void
6727 default_globalize_decl_name (FILE * stream, tree decl)
6729 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
6730 targetm.asm_out.globalize_label (stream, name);
6733 /* Default function to output a label for unwind information. The
6734 default is to do nothing. A target that needs nonlocal labels for
6735 unwind information must provide its own function to do this. */
6736 void
6737 default_emit_unwind_label (FILE * stream ATTRIBUTE_UNUSED,
6738 tree decl ATTRIBUTE_UNUSED,
6739 int for_eh ATTRIBUTE_UNUSED,
6740 int empty ATTRIBUTE_UNUSED)
6744 /* Default function to output a label to divide up the exception table.
6745 The default is to do nothing. A target that needs/wants to divide
6746 up the table must provide it's own function to do this. */
6747 void
6748 default_emit_except_table_label (FILE * stream ATTRIBUTE_UNUSED)
6752 /* This is how to output an internal numbered label where PREFIX is
6753 the class of label and LABELNO is the number within the class. */
6755 void
6756 default_generate_internal_label (char *buf, const char *prefix,
6757 unsigned long labelno)
6759 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, labelno);
6762 /* This is how to output an internal numbered label where PREFIX is
6763 the class of label and LABELNO is the number within the class. */
6765 void
6766 default_internal_label (FILE *stream, const char *prefix,
6767 unsigned long labelno)
6769 char *const buf = (char *) alloca (40 + strlen (prefix));
6770 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, labelno);
6771 ASM_OUTPUT_INTERNAL_LABEL (stream, buf);
6775 /* The default implementation of ASM_DECLARE_CONSTANT_NAME. */
6777 void
6778 default_asm_declare_constant_name (FILE *file, const char *name,
6779 const_tree exp ATTRIBUTE_UNUSED,
6780 HOST_WIDE_INT size ATTRIBUTE_UNUSED)
6782 assemble_label (file, name);
6785 /* This is the default behavior at the beginning of a file. It's
6786 controlled by two other target-hook toggles. */
6787 void
6788 default_file_start (void)
6790 if (targetm.asm_file_start_app_off
6791 && !(flag_verbose_asm || flag_debug_asm || flag_dump_rtl_in_asm))
6792 fputs (ASM_APP_OFF, asm_out_file);
6794 if (targetm.asm_file_start_file_directive)
6795 output_file_directive (asm_out_file, main_input_filename);
6798 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
6799 which emits a special section directive used to indicate whether or
6800 not this object file needs an executable stack. This is primarily
6801 a GNU extension to ELF but could be used on other targets. */
6803 int trampolines_created;
6805 void
6806 file_end_indicate_exec_stack (void)
6808 unsigned int flags = SECTION_DEBUG;
6809 if (trampolines_created)
6810 flags |= SECTION_CODE;
6812 switch_to_section (get_section (".note.GNU-stack", flags, NULL));
6815 /* Emit a special section directive to indicate that this object file
6816 was compiled with -fsplit-stack. This is used to let the linker
6817 detect calls between split-stack code and non-split-stack code, so
6818 that it can modify the split-stack code to allocate a sufficiently
6819 large stack. We emit another special section if there are any
6820 functions in this file which have the no_split_stack attribute, to
6821 prevent the linker from warning about being unable to convert the
6822 functions if they call non-split-stack code. */
6824 void
6825 file_end_indicate_split_stack (void)
6827 if (flag_split_stack)
6829 switch_to_section (get_section (".note.GNU-split-stack", SECTION_DEBUG,
6830 NULL));
6831 if (saw_no_split_stack)
6832 switch_to_section (get_section (".note.GNU-no-split-stack",
6833 SECTION_DEBUG, NULL));
6837 /* Output DIRECTIVE (a C string) followed by a newline. This is used as
6838 a get_unnamed_section callback. */
6840 void
6841 output_section_asm_op (const void *directive)
6843 fprintf (asm_out_file, "%s\n", (const char *) directive);
6846 /* Emit assembly code to switch to section NEW_SECTION. Do nothing if
6847 the current section is NEW_SECTION. */
6849 void
6850 switch_to_section (section *new_section)
6852 if (in_section == new_section)
6853 return;
6855 if (new_section->common.flags & SECTION_FORGET)
6856 in_section = NULL;
6857 else
6858 in_section = new_section;
6860 switch (SECTION_STYLE (new_section))
6862 case SECTION_NAMED:
6863 targetm.asm_out.named_section (new_section->named.name,
6864 new_section->named.common.flags,
6865 new_section->named.decl);
6866 break;
6868 case SECTION_UNNAMED:
6869 new_section->unnamed.callback (new_section->unnamed.data);
6870 break;
6872 case SECTION_NOSWITCH:
6873 gcc_unreachable ();
6874 break;
6877 new_section->common.flags |= SECTION_DECLARED;
6880 /* If block symbol SYMBOL has not yet been assigned an offset, place
6881 it at the end of its block. */
6883 void
6884 place_block_symbol (rtx symbol)
6886 unsigned HOST_WIDE_INT size, mask, offset;
6887 struct constant_descriptor_rtx *desc;
6888 unsigned int alignment;
6889 struct object_block *block;
6890 tree decl;
6892 gcc_assert (SYMBOL_REF_BLOCK (symbol));
6893 if (SYMBOL_REF_BLOCK_OFFSET (symbol) >= 0)
6894 return;
6896 /* Work out the symbol's size and alignment. */
6897 if (CONSTANT_POOL_ADDRESS_P (symbol))
6899 desc = SYMBOL_REF_CONSTANT (symbol);
6900 alignment = desc->align;
6901 size = GET_MODE_SIZE (desc->mode);
6903 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
6905 decl = SYMBOL_REF_DECL (symbol);
6906 alignment = DECL_ALIGN (decl);
6907 size = get_constant_size (DECL_INITIAL (decl));
6909 else
6911 decl = SYMBOL_REF_DECL (symbol);
6912 alignment = DECL_ALIGN (decl);
6913 size = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
6916 /* Calculate the object's offset from the start of the block. */
6917 block = SYMBOL_REF_BLOCK (symbol);
6918 mask = alignment / BITS_PER_UNIT - 1;
6919 offset = (block->size + mask) & ~mask;
6920 SYMBOL_REF_BLOCK_OFFSET (symbol) = offset;
6922 /* Record the block's new alignment and size. */
6923 block->alignment = MAX (block->alignment, alignment);
6924 block->size = offset + size;
6926 VEC_safe_push (rtx, gc, block->objects, symbol);
6929 /* Return the anchor that should be used to address byte offset OFFSET
6930 from the first object in BLOCK. MODEL is the TLS model used
6931 to access it. */
6934 get_section_anchor (struct object_block *block, HOST_WIDE_INT offset,
6935 enum tls_model model)
6937 char label[100];
6938 unsigned int begin, middle, end;
6939 unsigned HOST_WIDE_INT min_offset, max_offset, range, bias, delta;
6940 rtx anchor;
6942 /* Work out the anchor's offset. Use an offset of 0 for the first
6943 anchor so that we don't pessimize the case where we take the address
6944 of a variable at the beginning of the block. This is particularly
6945 useful when a block has only one variable assigned to it.
6947 We try to place anchors RANGE bytes apart, so there can then be
6948 anchors at +/-RANGE, +/-2 * RANGE, and so on, up to the limits of
6949 a ptr_mode offset. With some target settings, the lowest such
6950 anchor might be out of range for the lowest ptr_mode offset;
6951 likewise the highest anchor for the highest offset. Use anchors
6952 at the extreme ends of the ptr_mode range in such cases.
6954 All arithmetic uses unsigned integers in order to avoid
6955 signed overflow. */
6956 max_offset = (unsigned HOST_WIDE_INT) targetm.max_anchor_offset;
6957 min_offset = (unsigned HOST_WIDE_INT) targetm.min_anchor_offset;
6958 range = max_offset - min_offset + 1;
6959 if (range == 0)
6960 offset = 0;
6961 else
6963 bias = 1 << (GET_MODE_BITSIZE (ptr_mode) - 1);
6964 if (offset < 0)
6966 delta = -(unsigned HOST_WIDE_INT) offset + max_offset;
6967 delta -= delta % range;
6968 if (delta > bias)
6969 delta = bias;
6970 offset = (HOST_WIDE_INT) (-delta);
6972 else
6974 delta = (unsigned HOST_WIDE_INT) offset - min_offset;
6975 delta -= delta % range;
6976 if (delta > bias - 1)
6977 delta = bias - 1;
6978 offset = (HOST_WIDE_INT) delta;
6982 /* Do a binary search to see if there's already an anchor we can use.
6983 Set BEGIN to the new anchor's index if not. */
6984 begin = 0;
6985 end = VEC_length (rtx, block->anchors);
6986 while (begin != end)
6988 middle = (end + begin) / 2;
6989 anchor = VEC_index (rtx, block->anchors, middle);
6990 if (SYMBOL_REF_BLOCK_OFFSET (anchor) > offset)
6991 end = middle;
6992 else if (SYMBOL_REF_BLOCK_OFFSET (anchor) < offset)
6993 begin = middle + 1;
6994 else if (SYMBOL_REF_TLS_MODEL (anchor) > model)
6995 end = middle;
6996 else if (SYMBOL_REF_TLS_MODEL (anchor) < model)
6997 begin = middle + 1;
6998 else
6999 return anchor;
7002 /* Create a new anchor with a unique label. */
7003 ASM_GENERATE_INTERNAL_LABEL (label, "LANCHOR", anchor_labelno++);
7004 anchor = create_block_symbol (ggc_strdup (label), block, offset);
7005 SYMBOL_REF_FLAGS (anchor) |= SYMBOL_FLAG_LOCAL | SYMBOL_FLAG_ANCHOR;
7006 SYMBOL_REF_FLAGS (anchor) |= model << SYMBOL_FLAG_TLS_SHIFT;
7008 /* Insert it at index BEGIN. */
7009 VEC_safe_insert (rtx, gc, block->anchors, begin, anchor);
7010 return anchor;
7013 /* Output the objects in BLOCK. */
7015 static void
7016 output_object_block (struct object_block *block)
7018 struct constant_descriptor_rtx *desc;
7019 unsigned int i;
7020 HOST_WIDE_INT offset;
7021 tree decl;
7022 rtx symbol;
7024 if (block->objects == NULL)
7025 return;
7027 /* Switch to the section and make sure that the first byte is
7028 suitably aligned. */
7029 switch_to_section (block->sect);
7030 assemble_align (block->alignment);
7032 /* Define the values of all anchors relative to the current section
7033 position. */
7034 FOR_EACH_VEC_ELT (rtx, block->anchors, i, symbol)
7035 targetm.asm_out.output_anchor (symbol);
7037 /* Output the objects themselves. */
7038 offset = 0;
7039 FOR_EACH_VEC_ELT (rtx, block->objects, i, symbol)
7041 /* Move to the object's offset, padding with zeros if necessary. */
7042 assemble_zeros (SYMBOL_REF_BLOCK_OFFSET (symbol) - offset);
7043 offset = SYMBOL_REF_BLOCK_OFFSET (symbol);
7044 if (CONSTANT_POOL_ADDRESS_P (symbol))
7046 desc = SYMBOL_REF_CONSTANT (symbol);
7047 output_constant_pool_1 (desc, 1);
7048 offset += GET_MODE_SIZE (desc->mode);
7050 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
7052 decl = SYMBOL_REF_DECL (symbol);
7053 assemble_constant_contents (DECL_INITIAL (decl), XSTR (symbol, 0),
7054 DECL_ALIGN (decl));
7055 offset += get_constant_size (DECL_INITIAL (decl));
7057 else
7059 decl = SYMBOL_REF_DECL (symbol);
7060 assemble_variable_contents (decl, XSTR (symbol, 0), false);
7061 offset += tree_low_cst (DECL_SIZE_UNIT (decl), 1);
7066 /* A htab_traverse callback used to call output_object_block for
7067 each member of object_block_htab. */
7069 static int
7070 output_object_block_htab (void **slot, void *data ATTRIBUTE_UNUSED)
7072 output_object_block ((struct object_block *) (*slot));
7073 return 1;
7076 /* Output the definitions of all object_blocks. */
7078 void
7079 output_object_blocks (void)
7081 htab_traverse (object_block_htab, output_object_block_htab, NULL);
7084 /* This function provides a possible implementation of the
7085 TARGET_ASM_RECORD_GCC_SWITCHES target hook for ELF targets. When triggered
7086 by -frecord-gcc-switches it creates a new mergeable, string section in the
7087 assembler output file called TARGET_ASM_RECORD_GCC_SWITCHES_SECTION which
7088 contains the switches in ASCII format.
7090 FIXME: This code does not correctly handle double quote characters
7091 that appear inside strings, (it strips them rather than preserving them).
7092 FIXME: ASM_OUTPUT_ASCII, as defined in config/elfos.h will not emit NUL
7093 characters - instead it treats them as sub-string separators. Since
7094 we want to emit NUL strings terminators into the object file we have to use
7095 ASM_OUTPUT_SKIP. */
7098 elf_record_gcc_switches (print_switch_type type, const char * name)
7100 switch (type)
7102 case SWITCH_TYPE_PASSED:
7103 ASM_OUTPUT_ASCII (asm_out_file, name, strlen (name));
7104 ASM_OUTPUT_SKIP (asm_out_file, (unsigned HOST_WIDE_INT) 1);
7105 break;
7107 case SWITCH_TYPE_DESCRIPTIVE:
7108 if (name == NULL)
7110 /* Distinguish between invocations where name is NULL. */
7111 static bool started = false;
7113 if (!started)
7115 section * sec;
7117 sec = get_section (targetm.asm_out.record_gcc_switches_section,
7118 SECTION_DEBUG
7119 | SECTION_MERGE
7120 | SECTION_STRINGS
7121 | (SECTION_ENTSIZE & 1),
7122 NULL);
7123 switch_to_section (sec);
7124 started = true;
7128 default:
7129 break;
7132 /* The return value is currently ignored by the caller, but must be 0.
7133 For -fverbose-asm the return value would be the number of characters
7134 emitted into the assembler file. */
7135 return 0;
7138 /* Emit text to declare externally defined symbols. It is needed to
7139 properly support non-default visibility. */
7140 void
7141 default_elf_asm_output_external (FILE *file ATTRIBUTE_UNUSED,
7142 tree decl,
7143 const char *name ATTRIBUTE_UNUSED)
7145 /* We output the name if and only if TREE_SYMBOL_REFERENCED is
7146 set in order to avoid putting out names that are never really
7147 used. */
7148 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))
7149 && targetm.binds_local_p (decl))
7150 maybe_assemble_visibility (decl);
7153 /* The default hook for TARGET_ASM_OUTPUT_SOURCE_FILENAME. */
7155 void
7156 default_asm_output_source_filename (FILE *file, const char *name)
7158 #ifdef ASM_OUTPUT_SOURCE_FILENAME
7159 ASM_OUTPUT_SOURCE_FILENAME (file, name);
7160 #else
7161 fprintf (file, "\t.file\t");
7162 output_quoted_string (file, name);
7163 putc ('\n', file);
7164 #endif
7167 /* Output a file name in the form wanted by System V. */
7169 void
7170 output_file_directive (FILE *asm_file, const char *input_name)
7172 int len;
7173 const char *na;
7175 if (input_name == NULL)
7176 input_name = "<stdin>";
7177 else
7178 input_name = remap_debug_filename (input_name);
7180 len = strlen (input_name);
7181 na = input_name + len;
7183 /* NA gets INPUT_NAME sans directory names. */
7184 while (na > input_name)
7186 if (IS_DIR_SEPARATOR (na[-1]))
7187 break;
7188 na--;
7191 targetm.asm_out.output_source_filename (asm_file, na);
7194 /* Create a DEBUG_EXPR_DECL / DEBUG_EXPR pair from RTL expression
7195 EXP. */
7197 make_debug_expr_from_rtl (const_rtx exp)
7199 tree ddecl = make_node (DEBUG_EXPR_DECL), type;
7200 enum machine_mode mode = GET_MODE (exp);
7201 rtx dval;
7203 DECL_ARTIFICIAL (ddecl) = 1;
7204 if (REG_P (exp) && REG_EXPR (exp))
7205 type = TREE_TYPE (REG_EXPR (exp));
7206 else if (MEM_P (exp) && MEM_EXPR (exp))
7207 type = TREE_TYPE (MEM_EXPR (exp));
7208 else
7209 type = NULL_TREE;
7210 if (type && TYPE_MODE (type) == mode)
7211 TREE_TYPE (ddecl) = type;
7212 else
7213 TREE_TYPE (ddecl) = lang_hooks.types.type_for_mode (mode, 1);
7214 DECL_MODE (ddecl) = mode;
7215 dval = gen_rtx_DEBUG_EXPR (mode);
7216 DEBUG_EXPR_TREE_DECL (dval) = ddecl;
7217 SET_DECL_RTL (ddecl, dval);
7218 return dval;
7221 #include "gt-varasm.h"