mips.h (set_volatile): Delete.
[official-gcc.git] / gcc / varasm.c
blobe85824577f6361dd7be7ca4e62cda499b0c80c63
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
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 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 "real.h"
42 #include "output.h"
43 #include "toplev.h"
44 #include "hashtab.h"
45 #include "c-pragma.h"
46 #include "ggc.h"
47 #include "langhooks.h"
48 #include "tm_p.h"
49 #include "debug.h"
50 #include "target.h"
51 #include "tree-mudflap.h"
52 #include "cgraph.h"
53 #include "cfglayout.h"
54 #include "basic-block.h"
55 #include "tree-iterator.h"
57 #ifdef XCOFF_DEBUGGING_INFO
58 #include "xcoffout.h" /* Needed for external data
59 declarations for e.g. AIX 4.x. */
60 #endif
62 /* The (assembler) name of the first globally-visible object output. */
63 extern GTY(()) const char *first_global_object_name;
64 extern GTY(()) const char *weak_global_object_name;
66 const char *first_global_object_name;
67 const char *weak_global_object_name;
69 struct addr_const;
70 struct constant_descriptor_rtx;
71 struct rtx_constant_pool;
73 struct varasm_status GTY(())
75 /* If we're using a per-function constant pool, this is it. */
76 struct rtx_constant_pool *pool;
78 /* Number of tree-constants deferred during the expansion of this
79 function. */
80 unsigned int deferred_constants;
83 #define n_deferred_constants (cfun->varasm->deferred_constants)
85 /* Number for making the label on the next
86 constant that is stored in memory. */
88 static GTY(()) int const_labelno;
90 /* Carry information from ASM_DECLARE_OBJECT_NAME
91 to ASM_FINISH_DECLARE_OBJECT. */
93 int size_directive_output;
95 /* The last decl for which assemble_variable was called,
96 if it did ASM_DECLARE_OBJECT_NAME.
97 If the last call to assemble_variable didn't do that,
98 this holds 0. */
100 tree last_assemble_variable_decl;
102 /* The following global variable indicates if the first basic block
103 in a function belongs to the cold partition or not. */
105 bool first_function_block_is_cold;
107 /* We give all constants their own alias set. Perhaps redundant with
108 MEM_READONLY_P, but pre-dates it. */
110 static alias_set_type const_alias_set;
112 static const char *strip_reg_name (const char *);
113 static int contains_pointers_p (tree);
114 #ifdef ASM_OUTPUT_EXTERNAL
115 static bool incorporeal_function_p (tree);
116 #endif
117 static void decode_addr_const (tree, struct addr_const *);
118 static hashval_t const_desc_hash (const void *);
119 static int const_desc_eq (const void *, const void *);
120 static hashval_t const_hash_1 (const tree);
121 static int compare_constant (const tree, const tree);
122 static tree copy_constant (tree);
123 static void output_constant_def_contents (rtx);
124 static void output_addressed_constants (tree);
125 static unsigned HOST_WIDE_INT array_size_for_constructor (tree);
126 static unsigned min_align (unsigned, unsigned);
127 static void output_constructor (tree, unsigned HOST_WIDE_INT, unsigned int);
128 static void globalize_decl (tree);
129 #ifdef BSS_SECTION_ASM_OP
130 #ifdef ASM_OUTPUT_BSS
131 static void asm_output_bss (FILE *, tree, const char *,
132 unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT);
133 #endif
134 #ifdef ASM_OUTPUT_ALIGNED_BSS
135 static void asm_output_aligned_bss (FILE *, tree, const char *,
136 unsigned HOST_WIDE_INT, int)
137 ATTRIBUTE_UNUSED;
138 #endif
139 #endif /* BSS_SECTION_ASM_OP */
140 static void mark_weak (tree);
141 static void output_constant_pool (const char *, tree);
143 /* Well-known sections, each one associated with some sort of *_ASM_OP. */
144 section *text_section;
145 section *data_section;
146 section *readonly_data_section;
147 section *sdata_section;
148 section *ctors_section;
149 section *dtors_section;
150 section *bss_section;
151 section *sbss_section;
153 /* Various forms of common section. All are guaranteed to be nonnull. */
154 section *tls_comm_section;
155 section *comm_section;
156 section *lcomm_section;
158 /* A SECTION_NOSWITCH section used for declaring global BSS variables.
159 May be null. */
160 section *bss_noswitch_section;
162 /* The section that holds the main exception table, when known. The section
163 is set either by the target's init_sections hook or by the first call to
164 switch_to_exception_section. */
165 section *exception_section;
167 /* The section that holds the DWARF2 frame unwind information, when known.
168 The section is set either by the target's init_sections hook or by the
169 first call to switch_to_eh_frame_section. */
170 section *eh_frame_section;
172 /* asm_out_file's current section. This is NULL if no section has yet
173 been selected or if we lose track of what the current section is. */
174 section *in_section;
176 /* True if code for the current function is currently being directed
177 at the cold section. */
178 bool in_cold_section_p;
180 /* A linked list of all the unnamed sections. */
181 static GTY(()) section *unnamed_sections;
183 /* Return a nonzero value if DECL has a section attribute. */
184 #ifndef IN_NAMED_SECTION
185 #define IN_NAMED_SECTION(DECL) \
186 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
187 && DECL_SECTION_NAME (DECL) != NULL_TREE)
188 #endif
190 /* Hash table of named sections. */
191 static GTY((param_is (section))) htab_t section_htab;
193 /* A table of object_blocks, indexed by section. */
194 static GTY((param_is (struct object_block))) htab_t object_block_htab;
196 /* The next number to use for internal anchor labels. */
197 static GTY(()) int anchor_labelno;
199 /* A pool of constants that can be shared between functions. */
200 static GTY(()) struct rtx_constant_pool *shared_constant_pool;
202 /* TLS emulation. */
204 static GTY ((if_marked ("tree_map_marked_p"), param_is (struct tree_map)))
205 htab_t emutls_htab;
206 static GTY (()) tree emutls_object_type;
208 #ifndef NO_DOT_IN_LABEL
209 # define EMUTLS_VAR_PREFIX "__emutls_v."
210 # define EMUTLS_TMPL_PREFIX "__emutls_t."
211 #elif !defined NO_DOLLAR_IN_LABEL
212 # define EMUTLS_VAR_PREFIX "__emutls_v$"
213 # define EMUTLS_TMPL_PREFIX "__emutls_t$"
214 #else
215 # define EMUTLS_VAR_PREFIX "__emutls_v_"
216 # define EMUTLS_TMPL_PREFIX "__emutls_t_"
217 #endif
219 /* Create an identifier for the struct __emutls_object, given an identifier
220 of the DECL_ASSEMBLY_NAME of the original object. */
222 static tree
223 get_emutls_object_name (tree name)
225 char *toname = alloca (strlen (IDENTIFIER_POINTER (name))
226 + sizeof (EMUTLS_VAR_PREFIX));
227 strcpy (toname, EMUTLS_VAR_PREFIX);
228 strcpy (toname + sizeof (EMUTLS_VAR_PREFIX) - 1, IDENTIFIER_POINTER (name));
230 return get_identifier (toname);
233 /* Create the structure for struct __emutls_object. This should match the
234 structure at the top of emutls.c, modulo the union there. */
236 static tree
237 get_emutls_object_type (void)
239 tree type, type_name, field, next_field, word_type_node;
241 type = emutls_object_type;
242 if (type)
243 return type;
245 emutls_object_type = type = lang_hooks.types.make_type (RECORD_TYPE);
246 type_name = get_identifier ("__emutls_object");
247 type_name = build_decl (TYPE_DECL, type_name, type);
248 TYPE_NAME (type) = type_name;
250 field = build_decl (FIELD_DECL, get_identifier ("__templ"), ptr_type_node);
251 DECL_CONTEXT (field) = type;
252 next_field = field;
254 field = build_decl (FIELD_DECL, get_identifier ("__offset"), ptr_type_node);
255 DECL_CONTEXT (field) = type;
256 TREE_CHAIN (field) = next_field;
257 next_field = field;
259 word_type_node = lang_hooks.types.type_for_mode (word_mode, 1);
260 field = build_decl (FIELD_DECL, get_identifier ("__align"), word_type_node);
261 DECL_CONTEXT (field) = type;
262 TREE_CHAIN (field) = next_field;
263 next_field = field;
265 field = build_decl (FIELD_DECL, get_identifier ("__size"), word_type_node);
266 DECL_CONTEXT (field) = type;
267 TREE_CHAIN (field) = next_field;
269 TYPE_FIELDS (type) = field;
270 layout_type (type);
272 return type;
275 /* Create a read-only variable like DECL, with the same DECL_INITIAL.
276 This will be used for initializing the emulated tls data area. */
278 static tree
279 get_emutls_init_templ_addr (tree decl)
281 tree name, to;
282 char *toname;
284 if (!DECL_INITIAL (decl))
285 return null_pointer_node;
287 name = DECL_ASSEMBLER_NAME (decl);
288 toname = alloca (strlen (IDENTIFIER_POINTER (name))
289 + sizeof (EMUTLS_TMPL_PREFIX));
290 strcpy (toname, EMUTLS_TMPL_PREFIX);
291 strcpy (toname + sizeof (EMUTLS_TMPL_PREFIX) - 1, IDENTIFIER_POINTER (name));
292 name = get_identifier (toname);
294 to = build_decl (VAR_DECL, name, TREE_TYPE (decl));
295 SET_DECL_ASSEMBLER_NAME (to, DECL_NAME (to));
297 DECL_ARTIFICIAL (to) = 1;
298 TREE_USED (to) = TREE_USED (decl);
299 TREE_READONLY (to) = 1;
300 DECL_IGNORED_P (to) = 1;
301 DECL_CONTEXT (to) = DECL_CONTEXT (decl);
302 DECL_WEAK (to) = DECL_WEAK (decl);
303 if (DECL_ONE_ONLY (decl))
305 make_decl_one_only (to);
306 TREE_STATIC (to) = TREE_STATIC (decl);
307 TREE_PUBLIC (to) = TREE_PUBLIC (decl);
308 DECL_VISIBILITY (to) = DECL_VISIBILITY (decl);
310 else
311 TREE_STATIC (to) = 1;
313 DECL_INITIAL (to) = DECL_INITIAL (decl);
314 DECL_INITIAL (decl) = NULL;
316 varpool_finalize_decl (to);
317 return build_fold_addr_expr (to);
320 /* When emulating tls, we use a control structure for use by the runtime.
321 Create and return this structure. */
323 tree
324 emutls_decl (tree decl)
326 tree name, to;
327 struct tree_map *h, in;
328 void **loc;
330 if (targetm.have_tls || decl == NULL || decl == error_mark_node
331 || TREE_CODE (decl) != VAR_DECL || ! DECL_THREAD_LOCAL_P (decl))
332 return decl;
334 /* Look up the object in the hash; return the control structure if
335 it has already been created. */
336 if (! emutls_htab)
337 emutls_htab = htab_create_ggc (512, tree_map_hash, tree_map_eq, 0);
339 name = DECL_ASSEMBLER_NAME (decl);
341 /* Note that we use the hash of the decl's name, rather than a hash
342 of the decl's pointer. In emutls_finish we iterate through the
343 hash table, and we want this traversal to be predictable. */
344 in.hash = htab_hash_string (IDENTIFIER_POINTER (name));
345 in.base.from = decl;
346 loc = htab_find_slot_with_hash (emutls_htab, &in, in.hash, INSERT);
347 h = *loc;
348 if (h != NULL)
349 to = h->to;
350 else
352 to = build_decl (VAR_DECL, get_emutls_object_name (name),
353 get_emutls_object_type ());
355 h = ggc_alloc (sizeof (struct tree_map));
356 h->hash = in.hash;
357 h->base.from = decl;
358 h->to = to;
359 *(struct tree_map **) loc = h;
361 DECL_ARTIFICIAL (to) = 1;
362 DECL_IGNORED_P (to) = 1;
363 TREE_READONLY (to) = 0;
365 SET_DECL_ASSEMBLER_NAME (to, DECL_NAME (to));
366 if (DECL_ONE_ONLY (decl))
367 make_decl_one_only (to);
368 DECL_CONTEXT (to) = DECL_CONTEXT (decl);
371 /* Note that these fields may need to be updated from time to time from
372 the original decl. Consider:
373 extern __thread int i;
374 int foo() { return i; }
375 __thread int i = 1;
376 in which I goes from external to locally defined and initialized. */
378 TREE_STATIC (to) = TREE_STATIC (decl);
379 TREE_USED (to) = TREE_USED (decl);
380 TREE_PUBLIC (to) = TREE_PUBLIC (decl);
381 DECL_EXTERNAL (to) = DECL_EXTERNAL (decl);
382 DECL_COMMON (to) = DECL_COMMON (decl);
383 DECL_WEAK (to) = DECL_WEAK (decl);
384 DECL_VISIBILITY (to) = DECL_VISIBILITY (decl);
386 return to;
389 static int
390 emutls_common_1 (void **loc, void *xstmts)
392 struct tree_map *h = *(struct tree_map **) loc;
393 tree args, x, *pstmts = (tree *) xstmts;
394 tree word_type_node;
396 if (! DECL_COMMON (h->base.from)
397 || (DECL_INITIAL (h->base.from)
398 && DECL_INITIAL (h->base.from) != error_mark_node))
399 return 1;
401 word_type_node = lang_hooks.types.type_for_mode (word_mode, 1);
403 /* The idea was to call get_emutls_init_templ_addr here, but if we
404 do this and there is an initializer, -fanchor_section loses,
405 because it would be too late to ensure the template is
406 output. */
407 x = null_pointer_node;
408 args = tree_cons (NULL, x, NULL);
409 x = build_int_cst (word_type_node, DECL_ALIGN_UNIT (h->base.from));
410 args = tree_cons (NULL, x, args);
411 x = fold_convert (word_type_node, DECL_SIZE_UNIT (h->base.from));
412 args = tree_cons (NULL, x, args);
413 x = build_fold_addr_expr (h->to);
414 args = tree_cons (NULL, x, args);
416 x = built_in_decls[BUILT_IN_EMUTLS_REGISTER_COMMON];
417 x = build_function_call_expr (x, args);
419 append_to_statement_list (x, pstmts);
420 return 1;
423 void
424 emutls_finish (void)
426 tree body = NULL_TREE;
428 if (emutls_htab == NULL)
429 return;
431 htab_traverse_noresize (emutls_htab, emutls_common_1, &body);
432 if (body == NULL_TREE)
433 return;
435 cgraph_build_static_cdtor ('I', body, DEFAULT_INIT_PRIORITY);
438 /* Helper routines for maintaining section_htab. */
440 static int
441 section_entry_eq (const void *p1, const void *p2)
443 const section *old = p1;
444 const char *new = p2;
446 return strcmp (old->named.name, new) == 0;
449 static hashval_t
450 section_entry_hash (const void *p)
452 const section *old = p;
453 return htab_hash_string (old->named.name);
456 /* Return a hash value for section SECT. */
458 static hashval_t
459 hash_section (section *sect)
461 if (sect->common.flags & SECTION_NAMED)
462 return htab_hash_string (sect->named.name);
463 return sect->common.flags;
466 /* Helper routines for maintaining object_block_htab. */
468 static int
469 object_block_entry_eq (const void *p1, const void *p2)
471 const struct object_block *old = p1;
472 const section *new = p2;
474 return old->sect == new;
477 static hashval_t
478 object_block_entry_hash (const void *p)
480 const struct object_block *old = p;
481 return hash_section (old->sect);
484 /* Return a new unnamed section with the given fields. */
486 section *
487 get_unnamed_section (unsigned int flags, void (*callback) (const void *),
488 const void *data)
490 section *sect;
492 sect = ggc_alloc (sizeof (struct unnamed_section));
493 sect->unnamed.common.flags = flags | SECTION_UNNAMED;
494 sect->unnamed.callback = callback;
495 sect->unnamed.data = data;
496 sect->unnamed.next = unnamed_sections;
498 unnamed_sections = sect;
499 return sect;
502 /* Return a SECTION_NOSWITCH section with the given fields. */
504 static section *
505 get_noswitch_section (unsigned int flags, noswitch_section_callback callback)
507 section *sect;
509 sect = ggc_alloc (sizeof (struct unnamed_section));
510 sect->noswitch.common.flags = flags | SECTION_NOSWITCH;
511 sect->noswitch.callback = callback;
513 return sect;
516 /* Return the named section structure associated with NAME. Create
517 a new section with the given fields if no such structure exists. */
519 section *
520 get_section (const char *name, unsigned int flags, tree decl)
522 section *sect, **slot;
524 slot = (section **)
525 htab_find_slot_with_hash (section_htab, name,
526 htab_hash_string (name), INSERT);
527 flags |= SECTION_NAMED;
528 if (*slot == NULL)
530 sect = ggc_alloc (sizeof (struct named_section));
531 sect->named.common.flags = flags;
532 sect->named.name = ggc_strdup (name);
533 sect->named.decl = decl;
534 *slot = sect;
536 else
538 sect = *slot;
539 if ((sect->common.flags & ~SECTION_DECLARED) != flags
540 && ((sect->common.flags | flags) & SECTION_OVERRIDE) == 0)
542 /* Sanity check user variables for flag changes. */
543 if (decl == 0)
544 decl = sect->named.decl;
545 gcc_assert (decl);
546 error ("%+D causes a section type conflict", decl);
549 return sect;
552 /* Return true if the current compilation mode benefits from having
553 objects grouped into blocks. */
555 static bool
556 use_object_blocks_p (void)
558 return flag_section_anchors;
561 /* Return the object_block structure for section SECT. Create a new
562 structure if we haven't created one already. Return null if SECT
563 itself is null. */
565 static struct object_block *
566 get_block_for_section (section *sect)
568 struct object_block *block;
569 void **slot;
571 if (sect == NULL)
572 return NULL;
574 slot = htab_find_slot_with_hash (object_block_htab, sect,
575 hash_section (sect), INSERT);
576 block = (struct object_block *) *slot;
577 if (block == NULL)
579 block = (struct object_block *)
580 ggc_alloc_cleared (sizeof (struct object_block));
581 block->sect = sect;
582 *slot = block;
584 return block;
587 /* Create a symbol with label LABEL and place it at byte offset
588 OFFSET in BLOCK. OFFSET can be negative if the symbol's offset
589 is not yet known. LABEL must be a garbage-collected string. */
591 static rtx
592 create_block_symbol (const char *label, struct object_block *block,
593 HOST_WIDE_INT offset)
595 rtx symbol;
596 unsigned int size;
598 /* Create the extended SYMBOL_REF. */
599 size = RTX_HDR_SIZE + sizeof (struct block_symbol);
600 symbol = ggc_alloc_zone (size, &rtl_zone);
602 /* Initialize the normal SYMBOL_REF fields. */
603 memset (symbol, 0, size);
604 PUT_CODE (symbol, SYMBOL_REF);
605 PUT_MODE (symbol, Pmode);
606 XSTR (symbol, 0) = label;
607 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_HAS_BLOCK_INFO;
609 /* Initialize the block_symbol stuff. */
610 SYMBOL_REF_BLOCK (symbol) = block;
611 SYMBOL_REF_BLOCK_OFFSET (symbol) = offset;
613 return symbol;
616 static void
617 initialize_cold_section_name (void)
619 const char *stripped_name;
620 char *name, *buffer;
621 tree dsn;
623 gcc_assert (cfun && current_function_decl);
624 if (cfun->unlikely_text_section_name)
625 return;
627 dsn = DECL_SECTION_NAME (current_function_decl);
628 if (flag_function_sections && dsn)
630 name = alloca (TREE_STRING_LENGTH (dsn) + 1);
631 memcpy (name, TREE_STRING_POINTER (dsn), TREE_STRING_LENGTH (dsn) + 1);
633 stripped_name = targetm.strip_name_encoding (name);
635 buffer = ACONCAT ((stripped_name, "_unlikely", NULL));
636 cfun->unlikely_text_section_name = ggc_strdup (buffer);
638 else
639 cfun->unlikely_text_section_name = UNLIKELY_EXECUTED_TEXT_SECTION_NAME;
642 /* Tell assembler to switch to unlikely-to-be-executed text section. */
644 section *
645 unlikely_text_section (void)
647 if (cfun)
649 if (!cfun->unlikely_text_section_name)
650 initialize_cold_section_name ();
652 return get_named_section (NULL, cfun->unlikely_text_section_name, 0);
654 else
655 return get_named_section (NULL, UNLIKELY_EXECUTED_TEXT_SECTION_NAME, 0);
658 /* When called within a function context, return true if the function
659 has been assigned a cold text section and if SECT is that section.
660 When called outside a function context, return true if SECT is the
661 default cold section. */
663 bool
664 unlikely_text_section_p (section *sect)
666 const char *name;
668 if (cfun)
669 name = cfun->unlikely_text_section_name;
670 else
671 name = UNLIKELY_EXECUTED_TEXT_SECTION_NAME;
673 return (name
674 && sect
675 && SECTION_STYLE (sect) == SECTION_NAMED
676 && strcmp (name, sect->named.name) == 0);
679 /* Return a section with a particular name and with whatever SECTION_*
680 flags section_type_flags deems appropriate. The name of the section
681 is taken from NAME if nonnull, otherwise it is taken from DECL's
682 DECL_SECTION_NAME. DECL is the decl associated with the section
683 (see the section comment for details) and RELOC is as for
684 section_type_flags. */
686 section *
687 get_named_section (tree decl, const char *name, int reloc)
689 unsigned int flags;
691 gcc_assert (!decl || DECL_P (decl));
692 if (name == NULL)
693 name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
695 flags = targetm.section_type_flags (decl, name, reloc);
697 return get_section (name, flags, decl);
700 /* If required, set DECL_SECTION_NAME to a unique name. */
702 void
703 resolve_unique_section (tree decl, int reloc ATTRIBUTE_UNUSED,
704 int flag_function_or_data_sections)
706 if (DECL_SECTION_NAME (decl) == NULL_TREE
707 && targetm.have_named_sections
708 && (flag_function_or_data_sections
709 || DECL_ONE_ONLY (decl)))
710 targetm.asm_out.unique_section (decl, reloc);
713 #ifdef BSS_SECTION_ASM_OP
715 #ifdef ASM_OUTPUT_BSS
717 /* Utility function for ASM_OUTPUT_BSS for targets to use if
718 they don't support alignments in .bss.
719 ??? It is believed that this function will work in most cases so such
720 support is localized here. */
722 static void
723 asm_output_bss (FILE *file, tree decl ATTRIBUTE_UNUSED,
724 const char *name,
725 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
726 unsigned HOST_WIDE_INT rounded)
728 gcc_assert (strcmp (XSTR (XEXP (DECL_RTL (decl), 0), 0), name) == 0);
729 targetm.asm_out.globalize_decl_name (file, decl);
730 switch_to_section (bss_section);
731 #ifdef ASM_DECLARE_OBJECT_NAME
732 last_assemble_variable_decl = decl;
733 ASM_DECLARE_OBJECT_NAME (file, name, decl);
734 #else
735 /* Standard thing is just output label for the object. */
736 ASM_OUTPUT_LABEL (file, name);
737 #endif /* ASM_DECLARE_OBJECT_NAME */
738 ASM_OUTPUT_SKIP (file, rounded ? rounded : 1);
741 #endif
743 #ifdef ASM_OUTPUT_ALIGNED_BSS
745 /* Utility function for targets to use in implementing
746 ASM_OUTPUT_ALIGNED_BSS.
747 ??? It is believed that this function will work in most cases so such
748 support is localized here. */
750 static void
751 asm_output_aligned_bss (FILE *file, tree decl ATTRIBUTE_UNUSED,
752 const char *name, unsigned HOST_WIDE_INT size,
753 int align)
755 switch_to_section (bss_section);
756 ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
757 #ifdef ASM_DECLARE_OBJECT_NAME
758 last_assemble_variable_decl = decl;
759 ASM_DECLARE_OBJECT_NAME (file, name, decl);
760 #else
761 /* Standard thing is just output label for the object. */
762 ASM_OUTPUT_LABEL (file, name);
763 #endif /* ASM_DECLARE_OBJECT_NAME */
764 ASM_OUTPUT_SKIP (file, size ? size : 1);
767 #endif
769 #endif /* BSS_SECTION_ASM_OP */
771 #ifndef USE_SELECT_SECTION_FOR_FUNCTIONS
772 /* Return the hot section for function DECL. Return text_section for
773 null DECLs. */
775 static section *
776 hot_function_section (tree decl)
778 if (decl != NULL_TREE
779 && DECL_SECTION_NAME (decl) != NULL_TREE
780 && targetm.have_named_sections)
781 return get_named_section (decl, NULL, 0);
782 else
783 return text_section;
785 #endif
787 /* Return the section for function DECL.
789 If DECL is NULL_TREE, return the text section. We can be passed
790 NULL_TREE under some circumstances by dbxout.c at least. */
792 section *
793 function_section (tree decl)
795 int reloc = 0;
797 if (first_function_block_is_cold)
798 reloc = 1;
800 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
801 if (decl != NULL_TREE
802 && DECL_SECTION_NAME (decl) != NULL_TREE)
803 return reloc ? unlikely_text_section ()
804 : get_named_section (decl, NULL, 0);
805 else
806 return targetm.asm_out.select_section (decl, reloc, DECL_ALIGN (decl));
807 #else
808 return reloc ? unlikely_text_section () : hot_function_section (decl);
809 #endif
812 section *
813 current_function_section (void)
815 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
816 if (current_function_decl != NULL_TREE
817 && DECL_SECTION_NAME (current_function_decl) != NULL_TREE)
818 return in_cold_section_p ? unlikely_text_section ()
819 : get_named_section (current_function_decl,
820 NULL, 0);
821 else
822 return targetm.asm_out.select_section (current_function_decl,
823 in_cold_section_p,
824 DECL_ALIGN (current_function_decl));
825 #else
826 return (in_cold_section_p
827 ? unlikely_text_section ()
828 : hot_function_section (current_function_decl));
829 #endif
832 /* Return the read-only data section associated with function DECL. */
834 section *
835 default_function_rodata_section (tree decl)
837 if (decl != NULL_TREE && DECL_SECTION_NAME (decl))
839 const char *name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
841 if (DECL_ONE_ONLY (decl) && HAVE_COMDAT_GROUP)
843 size_t len = strlen (name) + 3;
844 char* rname = alloca (len);
846 strcpy (rname, ".rodata");
847 strcat (rname, name + 5);
848 return get_section (rname, SECTION_LINKONCE, decl);
850 /* For .gnu.linkonce.t.foo we want to use .gnu.linkonce.r.foo. */
851 else if (DECL_ONE_ONLY (decl)
852 && strncmp (name, ".gnu.linkonce.t.", 16) == 0)
854 size_t len = strlen (name) + 1;
855 char *rname = alloca (len);
857 memcpy (rname, name, len);
858 rname[14] = 'r';
859 return get_section (rname, SECTION_LINKONCE, decl);
861 /* For .text.foo we want to use .rodata.foo. */
862 else if (flag_function_sections && flag_data_sections
863 && strncmp (name, ".text.", 6) == 0)
865 size_t len = strlen (name) + 1;
866 char *rname = alloca (len + 2);
868 memcpy (rname, ".rodata", 7);
869 memcpy (rname + 7, name + 5, len - 5);
870 return get_section (rname, 0, decl);
874 return readonly_data_section;
877 /* Return the read-only data section associated with function DECL
878 for targets where that section should be always the single
879 readonly data section. */
881 section *
882 default_no_function_rodata_section (tree decl ATTRIBUTE_UNUSED)
884 return readonly_data_section;
887 /* Return the section to use for string merging. */
889 static section *
890 mergeable_string_section (tree decl ATTRIBUTE_UNUSED,
891 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
892 unsigned int flags ATTRIBUTE_UNUSED)
894 HOST_WIDE_INT len;
896 if (HAVE_GAS_SHF_MERGE && flag_merge_constants
897 && TREE_CODE (decl) == STRING_CST
898 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
899 && align <= 256
900 && (len = int_size_in_bytes (TREE_TYPE (decl))) > 0
901 && TREE_STRING_LENGTH (decl) >= len)
903 enum machine_mode mode;
904 unsigned int modesize;
905 const char *str;
906 HOST_WIDE_INT i;
907 int j, unit;
908 char name[30];
910 mode = TYPE_MODE (TREE_TYPE (TREE_TYPE (decl)));
911 modesize = GET_MODE_BITSIZE (mode);
912 if (modesize >= 8 && modesize <= 256
913 && (modesize & (modesize - 1)) == 0)
915 if (align < modesize)
916 align = modesize;
918 str = TREE_STRING_POINTER (decl);
919 unit = GET_MODE_SIZE (mode);
921 /* Check for embedded NUL characters. */
922 for (i = 0; i < len; i += unit)
924 for (j = 0; j < unit; j++)
925 if (str[i + j] != '\0')
926 break;
927 if (j == unit)
928 break;
930 if (i == len - unit)
932 sprintf (name, ".rodata.str%d.%d", modesize / 8,
933 (int) (align / 8));
934 flags |= (modesize / 8) | SECTION_MERGE | SECTION_STRINGS;
935 return get_section (name, flags, NULL);
940 return readonly_data_section;
943 /* Return the section to use for constant merging. */
945 section *
946 mergeable_constant_section (enum machine_mode mode ATTRIBUTE_UNUSED,
947 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
948 unsigned int flags ATTRIBUTE_UNUSED)
950 unsigned int modesize = GET_MODE_BITSIZE (mode);
952 if (HAVE_GAS_SHF_MERGE && flag_merge_constants
953 && mode != VOIDmode
954 && mode != BLKmode
955 && modesize <= align
956 && align >= 8
957 && align <= 256
958 && (align & (align - 1)) == 0)
960 char name[24];
962 sprintf (name, ".rodata.cst%d", (int) (align / 8));
963 flags |= (align / 8) | SECTION_MERGE;
964 return get_section (name, flags, NULL);
966 return readonly_data_section;
969 /* Given NAME, a putative register name, discard any customary prefixes. */
971 static const char *
972 strip_reg_name (const char *name)
974 #ifdef REGISTER_PREFIX
975 if (!strncmp (name, REGISTER_PREFIX, strlen (REGISTER_PREFIX)))
976 name += strlen (REGISTER_PREFIX);
977 #endif
978 if (name[0] == '%' || name[0] == '#')
979 name++;
980 return name;
983 /* The user has asked for a DECL to have a particular name. Set (or
984 change) it in such a way that we don't prefix an underscore to
985 it. */
986 void
987 set_user_assembler_name (tree decl, const char *name)
989 char *starred = alloca (strlen (name) + 2);
990 starred[0] = '*';
991 strcpy (starred + 1, name);
992 change_decl_assembler_name (decl, get_identifier (starred));
993 SET_DECL_RTL (decl, NULL_RTX);
996 /* Decode an `asm' spec for a declaration as a register name.
997 Return the register number, or -1 if nothing specified,
998 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
999 or -3 if ASMSPEC is `cc' and is not recognized,
1000 or -4 if ASMSPEC is `memory' and is not recognized.
1001 Accept an exact spelling or a decimal number.
1002 Prefixes such as % are optional. */
1005 decode_reg_name (const char *asmspec)
1007 if (asmspec != 0)
1009 int i;
1011 /* Get rid of confusing prefixes. */
1012 asmspec = strip_reg_name (asmspec);
1014 /* Allow a decimal number as a "register name". */
1015 for (i = strlen (asmspec) - 1; i >= 0; i--)
1016 if (! ISDIGIT (asmspec[i]))
1017 break;
1018 if (asmspec[0] != 0 && i < 0)
1020 i = atoi (asmspec);
1021 if (i < FIRST_PSEUDO_REGISTER && i >= 0)
1022 return i;
1023 else
1024 return -2;
1027 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1028 if (reg_names[i][0]
1029 && ! strcmp (asmspec, strip_reg_name (reg_names[i])))
1030 return i;
1032 #ifdef ADDITIONAL_REGISTER_NAMES
1034 static const struct { const char *const name; const int number; } table[]
1035 = ADDITIONAL_REGISTER_NAMES;
1037 for (i = 0; i < (int) ARRAY_SIZE (table); i++)
1038 if (table[i].name[0]
1039 && ! strcmp (asmspec, table[i].name))
1040 return table[i].number;
1042 #endif /* ADDITIONAL_REGISTER_NAMES */
1044 if (!strcmp (asmspec, "memory"))
1045 return -4;
1047 if (!strcmp (asmspec, "cc"))
1048 return -3;
1050 return -2;
1053 return -1;
1056 /* Return true if DECL's initializer is suitable for a BSS section. */
1058 static bool
1059 bss_initializer_p (const_tree decl)
1061 return (DECL_INITIAL (decl) == NULL
1062 || DECL_INITIAL (decl) == error_mark_node
1063 || (flag_zero_initialized_in_bss
1064 /* Leave constant zeroes in .rodata so they
1065 can be shared. */
1066 && !TREE_READONLY (decl)
1067 && initializer_zerop (DECL_INITIAL (decl))));
1070 /* Compute the alignment of variable specified by DECL.
1071 DONT_OUTPUT_DATA is from assemble_variable. */
1073 void
1074 align_variable (tree decl, bool dont_output_data)
1076 unsigned int align = DECL_ALIGN (decl);
1078 /* In the case for initialing an array whose length isn't specified,
1079 where we have not yet been able to do the layout,
1080 figure out the proper alignment now. */
1081 if (dont_output_data && DECL_SIZE (decl) == 0
1082 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
1083 align = MAX (align, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
1085 /* Some object file formats have a maximum alignment which they support.
1086 In particular, a.out format supports a maximum alignment of 4. */
1087 if (align > MAX_OFILE_ALIGNMENT)
1089 warning (0, "alignment of %q+D is greater than maximum object "
1090 "file alignment. Using %d", decl,
1091 MAX_OFILE_ALIGNMENT/BITS_PER_UNIT);
1092 align = MAX_OFILE_ALIGNMENT;
1095 /* On some machines, it is good to increase alignment sometimes. */
1096 if (! DECL_USER_ALIGN (decl))
1098 #ifdef DATA_ALIGNMENT
1099 unsigned int data_align = DATA_ALIGNMENT (TREE_TYPE (decl), align);
1100 /* Don't increase alignment too much for TLS variables - TLS space
1101 is too precious. */
1102 if (! DECL_THREAD_LOCAL_P (decl) || data_align <= BITS_PER_WORD)
1103 align = data_align;
1104 #endif
1105 #ifdef CONSTANT_ALIGNMENT
1106 if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
1108 unsigned int const_align = CONSTANT_ALIGNMENT (DECL_INITIAL (decl),
1109 align);
1110 /* Don't increase alignment too much for TLS variables - TLS space
1111 is too precious. */
1112 if (! DECL_THREAD_LOCAL_P (decl) || const_align <= BITS_PER_WORD)
1113 align = const_align;
1115 #endif
1118 /* Reset the alignment in case we have made it tighter, so we can benefit
1119 from it in get_pointer_alignment. */
1120 DECL_ALIGN (decl) = align;
1123 /* Return the section into which the given VAR_DECL or CONST_DECL
1124 should be placed. PREFER_NOSWITCH_P is true if a noswitch
1125 section should be used wherever possible. */
1127 static section *
1128 get_variable_section (tree decl, bool prefer_noswitch_p)
1130 int reloc;
1132 /* If the decl has been given an explicit section name, then it
1133 isn't common, and shouldn't be handled as such. */
1134 if (DECL_COMMON (decl) && DECL_SECTION_NAME (decl) == NULL)
1136 if (DECL_THREAD_LOCAL_P (decl))
1137 return tls_comm_section;
1138 if (TREE_PUBLIC (decl) && bss_initializer_p (decl))
1139 return comm_section;
1142 if (DECL_INITIAL (decl) == error_mark_node)
1143 reloc = contains_pointers_p (TREE_TYPE (decl)) ? 3 : 0;
1144 else if (DECL_INITIAL (decl))
1145 reloc = compute_reloc_for_constant (DECL_INITIAL (decl));
1146 else
1147 reloc = 0;
1149 resolve_unique_section (decl, reloc, flag_data_sections);
1150 if (IN_NAMED_SECTION (decl))
1151 return get_named_section (decl, NULL, reloc);
1153 if (!DECL_THREAD_LOCAL_P (decl)
1154 && !(prefer_noswitch_p && targetm.have_switchable_bss_sections)
1155 && bss_initializer_p (decl))
1157 if (!TREE_PUBLIC (decl))
1158 return lcomm_section;
1159 if (bss_noswitch_section)
1160 return bss_noswitch_section;
1163 return targetm.asm_out.select_section (decl, reloc, DECL_ALIGN (decl));
1166 /* Return the block into which object_block DECL should be placed. */
1168 static struct object_block *
1169 get_block_for_decl (tree decl)
1171 section *sect;
1173 if (TREE_CODE (decl) == VAR_DECL)
1175 /* The object must be defined in this translation unit. */
1176 if (DECL_EXTERNAL (decl))
1177 return NULL;
1179 /* There's no point using object blocks for something that is
1180 isolated by definition. */
1181 if (DECL_ONE_ONLY (decl))
1182 return NULL;
1185 /* We can only calculate block offsets if the decl has a known
1186 constant size. */
1187 if (DECL_SIZE_UNIT (decl) == NULL)
1188 return NULL;
1189 if (!host_integerp (DECL_SIZE_UNIT (decl), 1))
1190 return NULL;
1192 /* Find out which section should contain DECL. We cannot put it into
1193 an object block if it requires a standalone definition. */
1194 if (TREE_CODE (decl) == VAR_DECL)
1195 align_variable (decl, 0);
1196 sect = get_variable_section (decl, true);
1197 if (SECTION_STYLE (sect) == SECTION_NOSWITCH)
1198 return NULL;
1200 return get_block_for_section (sect);
1203 /* Make sure block symbol SYMBOL is in block BLOCK. */
1205 static void
1206 change_symbol_block (rtx symbol, struct object_block *block)
1208 if (block != SYMBOL_REF_BLOCK (symbol))
1210 gcc_assert (SYMBOL_REF_BLOCK_OFFSET (symbol) < 0);
1211 SYMBOL_REF_BLOCK (symbol) = block;
1215 /* Return true if it is possible to put DECL in an object_block. */
1217 static bool
1218 use_blocks_for_decl_p (tree decl)
1220 /* Only data DECLs can be placed into object blocks. */
1221 if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != CONST_DECL)
1222 return false;
1224 /* Detect decls created by dw2_force_const_mem. Such decls are
1225 special because DECL_INITIAL doesn't specify the decl's true value.
1226 dw2_output_indirect_constants will instead call assemble_variable
1227 with dont_output_data set to 1 and then print the contents itself. */
1228 if (DECL_INITIAL (decl) == decl)
1229 return false;
1231 /* If this decl is an alias, then we don't want to emit a definition. */
1232 if (lookup_attribute ("alias", DECL_ATTRIBUTES (decl)))
1233 return false;
1235 return true;
1238 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
1239 have static storage duration. In other words, it should not be an
1240 automatic variable, including PARM_DECLs.
1242 There is, however, one exception: this function handles variables
1243 explicitly placed in a particular register by the user.
1245 This is never called for PARM_DECL nodes. */
1247 void
1248 make_decl_rtl (tree decl)
1250 const char *name = 0;
1251 int reg_number;
1252 rtx x;
1254 /* Check that we are not being given an automatic variable. */
1255 gcc_assert (TREE_CODE (decl) != PARM_DECL
1256 && TREE_CODE (decl) != RESULT_DECL);
1258 /* A weak alias has TREE_PUBLIC set but not the other bits. */
1259 gcc_assert (TREE_CODE (decl) != VAR_DECL
1260 || TREE_STATIC (decl)
1261 || TREE_PUBLIC (decl)
1262 || DECL_EXTERNAL (decl)
1263 || DECL_REGISTER (decl));
1265 /* And that we were not given a type or a label. */
1266 gcc_assert (TREE_CODE (decl) != TYPE_DECL
1267 && TREE_CODE (decl) != LABEL_DECL);
1269 /* For a duplicate declaration, we can be called twice on the
1270 same DECL node. Don't discard the RTL already made. */
1271 if (DECL_RTL_SET_P (decl))
1273 /* If the old RTL had the wrong mode, fix the mode. */
1274 x = DECL_RTL (decl);
1275 if (GET_MODE (x) != DECL_MODE (decl))
1276 SET_DECL_RTL (decl, adjust_address_nv (x, DECL_MODE (decl), 0));
1278 if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
1279 return;
1281 /* ??? Another way to do this would be to maintain a hashed
1282 table of such critters. Instead of adding stuff to a DECL
1283 to give certain attributes to it, we could use an external
1284 hash map from DECL to set of attributes. */
1286 /* Let the target reassign the RTL if it wants.
1287 This is necessary, for example, when one machine specific
1288 decl attribute overrides another. */
1289 targetm.encode_section_info (decl, DECL_RTL (decl), false);
1291 /* If the symbol has a SYMBOL_REF_BLOCK field, update it based
1292 on the new decl information. */
1293 if (MEM_P (x)
1294 && GET_CODE (XEXP (x, 0)) == SYMBOL_REF
1295 && SYMBOL_REF_HAS_BLOCK_INFO_P (XEXP (x, 0)))
1296 change_symbol_block (XEXP (x, 0), get_block_for_decl (decl));
1298 /* Make this function static known to the mudflap runtime. */
1299 if (flag_mudflap && TREE_CODE (decl) == VAR_DECL)
1300 mudflap_enqueue_decl (decl);
1302 return;
1305 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
1307 if (name[0] != '*' && TREE_CODE (decl) != FUNCTION_DECL
1308 && DECL_REGISTER (decl))
1310 error ("register name not specified for %q+D", decl);
1312 else if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
1314 const char *asmspec = name+1;
1315 reg_number = decode_reg_name (asmspec);
1316 /* First detect errors in declaring global registers. */
1317 if (reg_number == -1)
1318 error ("register name not specified for %q+D", decl);
1319 else if (reg_number < 0)
1320 error ("invalid register name for %q+D", decl);
1321 else if (TYPE_MODE (TREE_TYPE (decl)) == BLKmode)
1322 error ("data type of %q+D isn%'t suitable for a register",
1323 decl);
1324 else if (! HARD_REGNO_MODE_OK (reg_number, TYPE_MODE (TREE_TYPE (decl))))
1325 error ("register specified for %q+D isn%'t suitable for data type",
1326 decl);
1327 /* Now handle properly declared static register variables. */
1328 else
1330 int nregs;
1332 if (DECL_INITIAL (decl) != 0 && TREE_STATIC (decl))
1334 DECL_INITIAL (decl) = 0;
1335 error ("global register variable has initial value");
1337 if (TREE_THIS_VOLATILE (decl))
1338 warning (OPT_Wvolatile_register_var,
1339 "optimization may eliminate reads and/or "
1340 "writes to register variables");
1342 /* If the user specified one of the eliminables registers here,
1343 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
1344 confused with that register and be eliminated. This usage is
1345 somewhat suspect... */
1347 SET_DECL_RTL (decl, gen_rtx_raw_REG (DECL_MODE (decl), reg_number));
1348 ORIGINAL_REGNO (DECL_RTL (decl)) = reg_number;
1349 REG_USERVAR_P (DECL_RTL (decl)) = 1;
1351 if (TREE_STATIC (decl))
1353 /* Make this register global, so not usable for anything
1354 else. */
1355 #ifdef ASM_DECLARE_REGISTER_GLOBAL
1356 name = IDENTIFIER_POINTER (DECL_NAME (decl));
1357 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file, decl, reg_number, name);
1358 #endif
1359 nregs = hard_regno_nregs[reg_number][DECL_MODE (decl)];
1360 while (nregs > 0)
1361 globalize_reg (reg_number + --nregs);
1364 /* As a register variable, it has no section. */
1365 return;
1368 /* Now handle ordinary static variables and functions (in memory).
1369 Also handle vars declared register invalidly. */
1370 else if (name[0] == '*')
1372 #ifdef REGISTER_PREFIX
1373 if (strlen (REGISTER_PREFIX) != 0)
1375 reg_number = decode_reg_name (name);
1376 if (reg_number >= 0 || reg_number == -3)
1377 error ("register name given for non-register variable %q+D", decl);
1379 #endif
1382 /* Specifying a section attribute on a variable forces it into a
1383 non-.bss section, and thus it cannot be common. */
1384 if (TREE_CODE (decl) == VAR_DECL
1385 && DECL_SECTION_NAME (decl) != NULL_TREE
1386 && DECL_INITIAL (decl) == NULL_TREE
1387 && DECL_COMMON (decl))
1388 DECL_COMMON (decl) = 0;
1390 /* Variables can't be both common and weak. */
1391 if (TREE_CODE (decl) == VAR_DECL && DECL_WEAK (decl))
1392 DECL_COMMON (decl) = 0;
1394 if (use_object_blocks_p () && use_blocks_for_decl_p (decl))
1395 x = create_block_symbol (name, get_block_for_decl (decl), -1);
1396 else
1397 x = gen_rtx_SYMBOL_REF (Pmode, name);
1398 SYMBOL_REF_WEAK (x) = DECL_WEAK (decl);
1399 SET_SYMBOL_REF_DECL (x, decl);
1401 x = gen_rtx_MEM (DECL_MODE (decl), x);
1402 if (TREE_CODE (decl) != FUNCTION_DECL)
1403 set_mem_attributes (x, decl, 1);
1404 SET_DECL_RTL (decl, x);
1406 /* Optionally set flags or add text to the name to record information
1407 such as that it is a function name.
1408 If the name is changed, the macro ASM_OUTPUT_LABELREF
1409 will have to know how to strip this information. */
1410 targetm.encode_section_info (decl, DECL_RTL (decl), true);
1412 /* Make this function static known to the mudflap runtime. */
1413 if (flag_mudflap && TREE_CODE (decl) == VAR_DECL)
1414 mudflap_enqueue_decl (decl);
1417 /* Output a string of literal assembler code
1418 for an `asm' keyword used between functions. */
1420 void
1421 assemble_asm (tree string)
1423 app_enable ();
1425 if (TREE_CODE (string) == ADDR_EXPR)
1426 string = TREE_OPERAND (string, 0);
1428 fprintf (asm_out_file, "\t%s\n", TREE_STRING_POINTER (string));
1431 /* Record an element in the table of global destructors. SYMBOL is
1432 a SYMBOL_REF of the function to be called; PRIORITY is a number
1433 between 0 and MAX_INIT_PRIORITY. */
1435 void
1436 default_stabs_asm_out_destructor (rtx symbol ATTRIBUTE_UNUSED,
1437 int priority ATTRIBUTE_UNUSED)
1439 #if defined DBX_DEBUGGING_INFO || defined XCOFF_DEBUGGING_INFO
1440 /* Tell GNU LD that this is part of the static destructor set.
1441 This will work for any system that uses stabs, most usefully
1442 aout systems. */
1443 dbxout_begin_simple_stabs ("___DTOR_LIST__", 22 /* N_SETT */);
1444 dbxout_stab_value_label (XSTR (symbol, 0));
1445 #else
1446 sorry ("global destructors not supported on this target");
1447 #endif
1450 /* Write the address of the entity given by SYMBOL to SEC. */
1451 void
1452 assemble_addr_to_section (rtx symbol, section *sec)
1454 switch_to_section (sec);
1455 assemble_align (POINTER_SIZE);
1456 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1459 /* Return the numbered .ctors.N (if CONSTRUCTOR_P) or .dtors.N (if
1460 not) section for PRIORITY. */
1461 section *
1462 get_cdtor_priority_section (int priority, bool constructor_p)
1464 char buf[16];
1466 /* ??? This only works reliably with the GNU linker. */
1467 sprintf (buf, "%s.%.5u",
1468 constructor_p ? ".ctors" : ".dtors",
1469 /* Invert the numbering so the linker puts us in the proper
1470 order; constructors are run from right to left, and the
1471 linker sorts in increasing order. */
1472 MAX_INIT_PRIORITY - priority);
1473 return get_section (buf, SECTION_WRITE, NULL);
1476 void
1477 default_named_section_asm_out_destructor (rtx symbol, int priority)
1479 section *sec;
1481 if (priority != DEFAULT_INIT_PRIORITY)
1482 sec = get_cdtor_priority_section (priority,
1483 /*constructor_p=*/false);
1484 else
1485 sec = get_section (".dtors", SECTION_WRITE, NULL);
1487 assemble_addr_to_section (symbol, sec);
1490 #ifdef DTORS_SECTION_ASM_OP
1491 void
1492 default_dtor_section_asm_out_destructor (rtx symbol,
1493 int priority ATTRIBUTE_UNUSED)
1495 assemble_addr_to_section (symbol, dtors_section);
1497 #endif
1499 /* Likewise for global constructors. */
1501 void
1502 default_stabs_asm_out_constructor (rtx symbol ATTRIBUTE_UNUSED,
1503 int priority ATTRIBUTE_UNUSED)
1505 #if defined DBX_DEBUGGING_INFO || defined XCOFF_DEBUGGING_INFO
1506 /* Tell GNU LD that this is part of the static destructor set.
1507 This will work for any system that uses stabs, most usefully
1508 aout systems. */
1509 dbxout_begin_simple_stabs ("___CTOR_LIST__", 22 /* N_SETT */);
1510 dbxout_stab_value_label (XSTR (symbol, 0));
1511 #else
1512 sorry ("global constructors not supported on this target");
1513 #endif
1516 void
1517 default_named_section_asm_out_constructor (rtx symbol, int priority)
1519 section *sec;
1521 if (priority != DEFAULT_INIT_PRIORITY)
1522 sec = get_cdtor_priority_section (priority,
1523 /*constructor_p=*/true);
1524 else
1525 sec = get_section (".ctors", SECTION_WRITE, NULL);
1527 assemble_addr_to_section (symbol, sec);
1530 #ifdef CTORS_SECTION_ASM_OP
1531 void
1532 default_ctor_section_asm_out_constructor (rtx symbol,
1533 int priority ATTRIBUTE_UNUSED)
1535 assemble_addr_to_section (symbol, ctors_section);
1537 #endif
1539 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1540 a nonzero value if the constant pool should be output before the
1541 start of the function, or a zero value if the pool should output
1542 after the end of the function. The default is to put it before the
1543 start. */
1545 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1546 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1547 #endif
1549 /* DECL is an object (either VAR_DECL or FUNCTION_DECL) which is going
1550 to be output to assembler.
1551 Set first_global_object_name and weak_global_object_name as appropriate. */
1553 void
1554 notice_global_symbol (tree decl)
1556 const char **type = &first_global_object_name;
1558 if (first_global_object_name
1559 || !TREE_PUBLIC (decl)
1560 || DECL_EXTERNAL (decl)
1561 || !DECL_NAME (decl)
1562 || (TREE_CODE (decl) != FUNCTION_DECL
1563 && (TREE_CODE (decl) != VAR_DECL
1564 || (DECL_COMMON (decl)
1565 && (DECL_INITIAL (decl) == 0
1566 || DECL_INITIAL (decl) == error_mark_node))))
1567 || !MEM_P (DECL_RTL (decl)))
1568 return;
1570 /* We win when global object is found, but it is useful to know about weak
1571 symbol as well so we can produce nicer unique names. */
1572 if (DECL_WEAK (decl) || DECL_ONE_ONLY (decl) || flag_shlib)
1573 type = &weak_global_object_name;
1575 if (!*type)
1577 const char *p;
1578 const char *name;
1579 rtx decl_rtl = DECL_RTL (decl);
1581 p = targetm.strip_name_encoding (XSTR (XEXP (decl_rtl, 0), 0));
1582 name = ggc_strdup (p);
1584 *type = name;
1588 /* Output assembler code for the constant pool of a function and associated
1589 with defining the name of the function. DECL describes the function.
1590 NAME is the function's name. For the constant pool, we use the current
1591 constant pool data. */
1593 void
1594 assemble_start_function (tree decl, const char *fnname)
1596 int align;
1597 char tmp_label[100];
1598 bool hot_label_written = false;
1600 cfun->unlikely_text_section_name = NULL;
1602 first_function_block_is_cold = false;
1603 if (flag_reorder_blocks_and_partition)
1605 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LHOTB", const_labelno);
1606 cfun->hot_section_label = ggc_strdup (tmp_label);
1607 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LCOLDB", const_labelno);
1608 cfun->cold_section_label = ggc_strdup (tmp_label);
1609 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LHOTE", const_labelno);
1610 cfun->hot_section_end_label = ggc_strdup (tmp_label);
1611 ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LCOLDE", const_labelno);
1612 cfun->cold_section_end_label = ggc_strdup (tmp_label);
1613 const_labelno++;
1615 else
1617 cfun->hot_section_label = NULL;
1618 cfun->cold_section_label = NULL;
1619 cfun->hot_section_end_label = NULL;
1620 cfun->cold_section_end_label = NULL;
1623 /* The following code does not need preprocessing in the assembler. */
1625 app_disable ();
1627 if (CONSTANT_POOL_BEFORE_FUNCTION)
1628 output_constant_pool (fnname, decl);
1630 resolve_unique_section (decl, 0, flag_function_sections);
1632 /* Make sure the not and cold text (code) sections are properly
1633 aligned. This is necessary here in the case where the function
1634 has both hot and cold sections, because we don't want to re-set
1635 the alignment when the section switch happens mid-function. */
1637 if (flag_reorder_blocks_and_partition)
1639 switch_to_section (unlikely_text_section ());
1640 assemble_align (DECL_ALIGN (decl));
1641 ASM_OUTPUT_LABEL (asm_out_file, cfun->cold_section_label);
1643 /* When the function starts with a cold section, we need to explicitly
1644 align the hot section and write out the hot section label.
1645 But if the current function is a thunk, we do not have a CFG. */
1646 if (!current_function_is_thunk
1647 && BB_PARTITION (ENTRY_BLOCK_PTR->next_bb) == BB_COLD_PARTITION)
1649 switch_to_section (text_section);
1650 assemble_align (DECL_ALIGN (decl));
1651 ASM_OUTPUT_LABEL (asm_out_file, cfun->hot_section_label);
1652 hot_label_written = true;
1653 first_function_block_is_cold = true;
1656 else if (DECL_SECTION_NAME (decl))
1658 /* Calls to function_section rely on first_function_block_is_cold
1659 being accurate. The first block may be cold even if we aren't
1660 doing partitioning, if the entire function was decided by
1661 choose_function_section (predict.c) to be cold. */
1663 initialize_cold_section_name ();
1665 if (cfun->unlikely_text_section_name
1666 && strcmp (TREE_STRING_POINTER (DECL_SECTION_NAME (decl)),
1667 cfun->unlikely_text_section_name) == 0)
1668 first_function_block_is_cold = true;
1671 in_cold_section_p = first_function_block_is_cold;
1673 /* Switch to the correct text section for the start of the function. */
1675 switch_to_section (function_section (decl));
1676 if (flag_reorder_blocks_and_partition
1677 && !hot_label_written)
1678 ASM_OUTPUT_LABEL (asm_out_file, cfun->hot_section_label);
1680 /* Tell assembler to move to target machine's alignment for functions. */
1681 align = floor_log2 (DECL_ALIGN (decl) / BITS_PER_UNIT);
1682 if (align > 0)
1684 ASM_OUTPUT_ALIGN (asm_out_file, align);
1687 /* Handle a user-specified function alignment.
1688 Note that we still need to align to DECL_ALIGN, as above,
1689 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1690 if (! DECL_USER_ALIGN (decl)
1691 && align_functions_log > align
1692 && cfun->function_frequency != FUNCTION_FREQUENCY_UNLIKELY_EXECUTED)
1694 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1695 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file,
1696 align_functions_log, align_functions - 1);
1697 #else
1698 ASM_OUTPUT_ALIGN (asm_out_file, align_functions_log);
1699 #endif
1702 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1703 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file, fnname);
1704 #endif
1706 (*debug_hooks->begin_function) (decl);
1708 /* Make function name accessible from other files, if appropriate. */
1710 if (TREE_PUBLIC (decl))
1712 notice_global_symbol (decl);
1714 globalize_decl (decl);
1716 maybe_assemble_visibility (decl);
1719 if (DECL_PRESERVE_P (decl))
1720 targetm.asm_out.mark_decl_preserved (fnname);
1722 /* Do any machine/system dependent processing of the function name. */
1723 #ifdef ASM_DECLARE_FUNCTION_NAME
1724 ASM_DECLARE_FUNCTION_NAME (asm_out_file, fnname, current_function_decl);
1725 #else
1726 /* Standard thing is just output label for the function. */
1727 ASM_OUTPUT_LABEL (asm_out_file, fnname);
1728 #endif /* ASM_DECLARE_FUNCTION_NAME */
1731 /* Output assembler code associated with defining the size of the
1732 function. DECL describes the function. NAME is the function's name. */
1734 void
1735 assemble_end_function (tree decl, const char *fnname ATTRIBUTE_UNUSED)
1737 #ifdef ASM_DECLARE_FUNCTION_SIZE
1738 /* We could have switched section in the middle of the function. */
1739 if (flag_reorder_blocks_and_partition)
1740 switch_to_section (function_section (decl));
1741 ASM_DECLARE_FUNCTION_SIZE (asm_out_file, fnname, decl);
1742 #endif
1743 if (! CONSTANT_POOL_BEFORE_FUNCTION)
1745 output_constant_pool (fnname, decl);
1746 switch_to_section (function_section (decl)); /* need to switch back */
1748 /* Output labels for end of hot/cold text sections (to be used by
1749 debug info.) */
1750 if (flag_reorder_blocks_and_partition)
1752 section *save_text_section;
1754 save_text_section = in_section;
1755 switch_to_section (unlikely_text_section ());
1756 ASM_OUTPUT_LABEL (asm_out_file, cfun->cold_section_end_label);
1757 if (first_function_block_is_cold)
1758 switch_to_section (text_section);
1759 else
1760 switch_to_section (function_section (decl));
1761 ASM_OUTPUT_LABEL (asm_out_file, cfun->hot_section_end_label);
1762 switch_to_section (save_text_section);
1766 /* Assemble code to leave SIZE bytes of zeros. */
1768 void
1769 assemble_zeros (unsigned HOST_WIDE_INT size)
1771 /* Do no output if -fsyntax-only. */
1772 if (flag_syntax_only)
1773 return;
1775 #ifdef ASM_NO_SKIP_IN_TEXT
1776 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1777 so we must output 0s explicitly in the text section. */
1778 if (ASM_NO_SKIP_IN_TEXT && (in_section->common.flags & SECTION_CODE) != 0)
1780 unsigned HOST_WIDE_INT i;
1781 for (i = 0; i < size; i++)
1782 assemble_integer (const0_rtx, 1, BITS_PER_UNIT, 1);
1784 else
1785 #endif
1786 if (size > 0)
1787 ASM_OUTPUT_SKIP (asm_out_file, size);
1790 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1792 void
1793 assemble_align (int align)
1795 if (align > BITS_PER_UNIT)
1797 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
1801 /* Assemble a string constant with the specified C string as contents. */
1803 void
1804 assemble_string (const char *p, int size)
1806 int pos = 0;
1807 int maximum = 2000;
1809 /* If the string is very long, split it up. */
1811 while (pos < size)
1813 int thissize = size - pos;
1814 if (thissize > maximum)
1815 thissize = maximum;
1817 ASM_OUTPUT_ASCII (asm_out_file, p, thissize);
1819 pos += thissize;
1820 p += thissize;
1825 /* A noswitch_section_callback for lcomm_section. */
1827 static bool
1828 emit_local (tree decl ATTRIBUTE_UNUSED,
1829 const char *name ATTRIBUTE_UNUSED,
1830 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1831 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1833 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1834 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name,
1835 size, DECL_ALIGN (decl));
1836 return true;
1837 #elif defined ASM_OUTPUT_ALIGNED_LOCAL
1838 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, DECL_ALIGN (decl));
1839 return true;
1840 #else
1841 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
1842 return false;
1843 #endif
1846 /* A noswitch_section_callback for bss_noswitch_section. */
1848 #if defined ASM_OUTPUT_ALIGNED_BSS || defined ASM_OUTPUT_BSS
1849 static bool
1850 emit_bss (tree decl ATTRIBUTE_UNUSED,
1851 const char *name ATTRIBUTE_UNUSED,
1852 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1853 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1855 #if defined ASM_OUTPUT_ALIGNED_BSS
1856 ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size, DECL_ALIGN (decl));
1857 return true;
1858 #else
1859 ASM_OUTPUT_BSS (asm_out_file, decl, name, size, rounded);
1860 return false;
1861 #endif
1863 #endif
1865 /* A noswitch_section_callback for comm_section. */
1867 static bool
1868 emit_common (tree decl ATTRIBUTE_UNUSED,
1869 const char *name ATTRIBUTE_UNUSED,
1870 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1871 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1873 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1874 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name,
1875 size, DECL_ALIGN (decl));
1876 return true;
1877 #elif defined ASM_OUTPUT_ALIGNED_COMMON
1878 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size, DECL_ALIGN (decl));
1879 return true;
1880 #else
1881 ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded);
1882 return false;
1883 #endif
1886 /* A noswitch_section_callback for tls_comm_section. */
1888 static bool
1889 emit_tls_common (tree decl ATTRIBUTE_UNUSED,
1890 const char *name ATTRIBUTE_UNUSED,
1891 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1892 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1894 #ifdef ASM_OUTPUT_TLS_COMMON
1895 ASM_OUTPUT_TLS_COMMON (asm_out_file, decl, name, size);
1896 return true;
1897 #else
1898 sorry ("thread-local COMMON data not implemented");
1899 return true;
1900 #endif
1903 /* Assemble DECL given that it belongs in SECTION_NOSWITCH section SECT.
1904 NAME is the name of DECL's SYMBOL_REF. */
1906 static void
1907 assemble_noswitch_variable (tree decl, const char *name, section *sect)
1909 unsigned HOST_WIDE_INT size, rounded;
1911 size = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
1912 rounded = size;
1914 /* Don't allocate zero bytes of common,
1915 since that means "undefined external" in the linker. */
1916 if (size == 0)
1917 rounded = 1;
1919 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1920 so that each uninitialized object starts on such a boundary. */
1921 rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
1922 rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1923 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1925 if (!sect->noswitch.callback (decl, name, size, rounded)
1926 && (unsigned HOST_WIDE_INT) DECL_ALIGN_UNIT (decl) > rounded)
1927 warning (0, "requested alignment for %q+D is greater than "
1928 "implemented alignment of %wu", decl, rounded);
1931 /* A subroutine of assemble_variable. Output the label and contents of
1932 DECL, whose address is a SYMBOL_REF with name NAME. DONT_OUTPUT_DATA
1933 is as for assemble_variable. */
1935 static void
1936 assemble_variable_contents (tree decl, const char *name,
1937 bool dont_output_data)
1939 /* Do any machine/system dependent processing of the object. */
1940 #ifdef ASM_DECLARE_OBJECT_NAME
1941 last_assemble_variable_decl = decl;
1942 ASM_DECLARE_OBJECT_NAME (asm_out_file, name, decl);
1943 #else
1944 /* Standard thing is just output label for the object. */
1945 ASM_OUTPUT_LABEL (asm_out_file, name);
1946 #endif /* ASM_DECLARE_OBJECT_NAME */
1948 if (!dont_output_data)
1950 if (DECL_INITIAL (decl)
1951 && DECL_INITIAL (decl) != error_mark_node
1952 && !initializer_zerop (DECL_INITIAL (decl)))
1953 /* Output the actual data. */
1954 output_constant (DECL_INITIAL (decl),
1955 tree_low_cst (DECL_SIZE_UNIT (decl), 1),
1956 DECL_ALIGN (decl));
1957 else
1958 /* Leave space for it. */
1959 assemble_zeros (tree_low_cst (DECL_SIZE_UNIT (decl), 1));
1963 /* Assemble everything that is needed for a variable or function declaration.
1964 Not used for automatic variables, and not used for function definitions.
1965 Should not be called for variables of incomplete structure type.
1967 TOP_LEVEL is nonzero if this variable has file scope.
1968 AT_END is nonzero if this is the special handling, at end of compilation,
1969 to define things that have had only tentative definitions.
1970 DONT_OUTPUT_DATA if nonzero means don't actually output the
1971 initial value (that will be done by the caller). */
1973 void
1974 assemble_variable (tree decl, int top_level ATTRIBUTE_UNUSED,
1975 int at_end ATTRIBUTE_UNUSED, int dont_output_data)
1977 const char *name;
1978 rtx decl_rtl, symbol;
1979 section *sect;
1981 if (! targetm.have_tls
1982 && TREE_CODE (decl) == VAR_DECL
1983 && DECL_THREAD_LOCAL_P (decl))
1985 tree to = emutls_decl (decl);
1987 /* If this variable is defined locally, then we need to initialize the
1988 control structure with size and alignment information. We do this
1989 at the last moment because tentative definitions can take a locally
1990 defined but uninitialized variable and initialize it later, which
1991 would result in incorrect contents. */
1992 if (! DECL_EXTERNAL (to)
1993 && (! DECL_COMMON (to)
1994 || (DECL_INITIAL (decl)
1995 && DECL_INITIAL (decl) != error_mark_node)))
1997 VEC(constructor_elt,gc) *v = VEC_alloc (constructor_elt, gc, 4);
1998 constructor_elt *elt;
1999 tree type = TREE_TYPE (to);
2000 tree field = TYPE_FIELDS (type);
2002 elt = VEC_quick_push (constructor_elt, v, NULL);
2003 elt->index = field;
2004 elt->value = fold_convert (TREE_TYPE (field), DECL_SIZE_UNIT (decl));
2006 elt = VEC_quick_push (constructor_elt, v, NULL);
2007 field = TREE_CHAIN (field);
2008 elt->index = field;
2009 elt->value = build_int_cst (TREE_TYPE (field),
2010 DECL_ALIGN_UNIT (decl));
2012 elt = VEC_quick_push (constructor_elt, v, NULL);
2013 field = TREE_CHAIN (field);
2014 elt->index = field;
2015 elt->value = null_pointer_node;
2017 elt = VEC_quick_push (constructor_elt, v, NULL);
2018 field = TREE_CHAIN (field);
2019 elt->index = field;
2020 elt->value = get_emutls_init_templ_addr (decl);
2022 DECL_INITIAL (to) = build_constructor (type, v);
2024 /* Make sure the template is marked as needed early enough.
2025 Without this, if the variable is placed in a
2026 section-anchored block, the template will only be marked
2027 when it's too late. */
2028 record_references_in_initializer (to);
2031 decl = to;
2034 last_assemble_variable_decl = 0;
2036 /* Normally no need to say anything here for external references,
2037 since assemble_external is called by the language-specific code
2038 when a declaration is first seen. */
2040 if (DECL_EXTERNAL (decl))
2041 return;
2043 /* Output no assembler code for a function declaration.
2044 Only definitions of functions output anything. */
2046 if (TREE_CODE (decl) == FUNCTION_DECL)
2047 return;
2049 /* Do nothing for global register variables. */
2050 if (DECL_RTL_SET_P (decl) && REG_P (DECL_RTL (decl)))
2052 TREE_ASM_WRITTEN (decl) = 1;
2053 return;
2056 /* If type was incomplete when the variable was declared,
2057 see if it is complete now. */
2059 if (DECL_SIZE (decl) == 0)
2060 layout_decl (decl, 0);
2062 /* Still incomplete => don't allocate it; treat the tentative defn
2063 (which is what it must have been) as an `extern' reference. */
2065 if (!dont_output_data && DECL_SIZE (decl) == 0)
2067 error ("storage size of %q+D isn%'t known", decl);
2068 TREE_ASM_WRITTEN (decl) = 1;
2069 return;
2072 /* The first declaration of a variable that comes through this function
2073 decides whether it is global (in C, has external linkage)
2074 or local (in C, has internal linkage). So do nothing more
2075 if this function has already run. */
2077 if (TREE_ASM_WRITTEN (decl))
2078 return;
2080 /* Make sure targetm.encode_section_info is invoked before we set
2081 ASM_WRITTEN. */
2082 decl_rtl = DECL_RTL (decl);
2084 TREE_ASM_WRITTEN (decl) = 1;
2086 /* Do no output if -fsyntax-only. */
2087 if (flag_syntax_only)
2088 return;
2090 app_disable ();
2092 if (! dont_output_data
2093 && ! host_integerp (DECL_SIZE_UNIT (decl), 1))
2095 error ("size of variable %q+D is too large", decl);
2096 return;
2099 gcc_assert (MEM_P (decl_rtl));
2100 gcc_assert (GET_CODE (XEXP (decl_rtl, 0)) == SYMBOL_REF);
2101 symbol = XEXP (decl_rtl, 0);
2102 name = XSTR (symbol, 0);
2103 if (TREE_PUBLIC (decl) && DECL_NAME (decl))
2104 notice_global_symbol (decl);
2106 /* Compute the alignment of this data. */
2108 align_variable (decl, dont_output_data);
2109 set_mem_align (decl_rtl, DECL_ALIGN (decl));
2111 if (TREE_PUBLIC (decl))
2112 maybe_assemble_visibility (decl);
2114 if (DECL_PRESERVE_P (decl))
2115 targetm.asm_out.mark_decl_preserved (name);
2117 /* First make the assembler name(s) global if appropriate. */
2118 sect = get_variable_section (decl, false);
2119 if (TREE_PUBLIC (decl)
2120 && DECL_NAME (decl)
2121 && (sect->common.flags & SECTION_COMMON) == 0)
2122 globalize_decl (decl);
2124 /* Output any data that we will need to use the address of. */
2125 if (DECL_INITIAL (decl) && DECL_INITIAL (decl) != error_mark_node)
2126 output_addressed_constants (DECL_INITIAL (decl));
2128 /* dbxout.c needs to know this. */
2129 if (sect && (sect->common.flags & SECTION_CODE) != 0)
2130 DECL_IN_TEXT_SECTION (decl) = 1;
2132 /* If the decl is part of an object_block, make sure that the decl
2133 has been positioned within its block, but do not write out its
2134 definition yet. output_object_blocks will do that later. */
2135 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol) && SYMBOL_REF_BLOCK (symbol))
2137 gcc_assert (!dont_output_data);
2138 place_block_symbol (symbol);
2140 else if (SECTION_STYLE (sect) == SECTION_NOSWITCH)
2141 assemble_noswitch_variable (decl, name, sect);
2142 else
2144 switch_to_section (sect);
2145 if (DECL_ALIGN (decl) > BITS_PER_UNIT)
2146 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (DECL_ALIGN_UNIT (decl)));
2147 assemble_variable_contents (decl, name, dont_output_data);
2151 /* Return 1 if type TYPE contains any pointers. */
2153 static int
2154 contains_pointers_p (tree type)
2156 switch (TREE_CODE (type))
2158 case POINTER_TYPE:
2159 case REFERENCE_TYPE:
2160 /* I'm not sure whether OFFSET_TYPE needs this treatment,
2161 so I'll play safe and return 1. */
2162 case OFFSET_TYPE:
2163 return 1;
2165 case RECORD_TYPE:
2166 case UNION_TYPE:
2167 case QUAL_UNION_TYPE:
2169 tree fields;
2170 /* For a type that has fields, see if the fields have pointers. */
2171 for (fields = TYPE_FIELDS (type); fields; fields = TREE_CHAIN (fields))
2172 if (TREE_CODE (fields) == FIELD_DECL
2173 && contains_pointers_p (TREE_TYPE (fields)))
2174 return 1;
2175 return 0;
2178 case ARRAY_TYPE:
2179 /* An array type contains pointers if its element type does. */
2180 return contains_pointers_p (TREE_TYPE (type));
2182 default:
2183 return 0;
2187 /* In unit-at-a-time mode, we delay assemble_external processing until
2188 the compilation unit is finalized. This is the best we can do for
2189 right now (i.e. stage 3 of GCC 4.0) - the right thing is to delay
2190 it all the way to final. See PR 17982 for further discussion. */
2191 static GTY(()) tree pending_assemble_externals;
2193 #ifdef ASM_OUTPUT_EXTERNAL
2194 /* True if DECL is a function decl for which no out-of-line copy exists.
2195 It is assumed that DECL's assembler name has been set. */
2197 static bool
2198 incorporeal_function_p (tree decl)
2200 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
2202 const char *name;
2204 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
2205 && DECL_FUNCTION_CODE (decl) == BUILT_IN_ALLOCA)
2206 return true;
2208 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2209 if (strncmp (name, "__builtin_", strlen ("__builtin_")) == 0)
2210 return true;
2212 return false;
2215 /* Actually do the tests to determine if this is necessary, and invoke
2216 ASM_OUTPUT_EXTERNAL. */
2217 static void
2218 assemble_external_real (tree decl)
2220 rtx rtl = DECL_RTL (decl);
2222 if (MEM_P (rtl) && GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF
2223 && !SYMBOL_REF_USED (XEXP (rtl, 0))
2224 && !incorporeal_function_p (decl))
2226 /* Some systems do require some output. */
2227 SYMBOL_REF_USED (XEXP (rtl, 0)) = 1;
2228 ASM_OUTPUT_EXTERNAL (asm_out_file, decl, XSTR (XEXP (rtl, 0), 0));
2231 #endif
2233 void
2234 process_pending_assemble_externals (void)
2236 #ifdef ASM_OUTPUT_EXTERNAL
2237 tree list;
2238 for (list = pending_assemble_externals; list; list = TREE_CHAIN (list))
2239 assemble_external_real (TREE_VALUE (list));
2241 pending_assemble_externals = 0;
2242 #endif
2245 /* Output something to declare an external symbol to the assembler.
2246 (Most assemblers don't need this, so we normally output nothing.)
2247 Do nothing if DECL is not external. */
2249 void
2250 assemble_external (tree decl ATTRIBUTE_UNUSED)
2252 /* Because most platforms do not define ASM_OUTPUT_EXTERNAL, the
2253 main body of this code is only rarely exercised. To provide some
2254 testing, on all platforms, we make sure that the ASM_OUT_FILE is
2255 open. If it's not, we should not be calling this function. */
2256 gcc_assert (asm_out_file);
2258 #ifdef ASM_OUTPUT_EXTERNAL
2259 if (!DECL_P (decl) || !DECL_EXTERNAL (decl) || !TREE_PUBLIC (decl))
2260 return;
2262 /* We want to output external symbols at very last to check if they
2263 are references or not. */
2264 pending_assemble_externals = tree_cons (0, decl,
2265 pending_assemble_externals);
2266 #endif
2269 /* Similar, for calling a library function FUN. */
2271 void
2272 assemble_external_libcall (rtx fun)
2274 /* Declare library function name external when first used, if nec. */
2275 if (! SYMBOL_REF_USED (fun))
2277 SYMBOL_REF_USED (fun) = 1;
2278 targetm.asm_out.external_libcall (fun);
2282 /* Assemble a label named NAME. */
2284 void
2285 assemble_label (const char *name)
2287 ASM_OUTPUT_LABEL (asm_out_file, name);
2290 /* Set the symbol_referenced flag for ID. */
2291 void
2292 mark_referenced (tree id)
2294 TREE_SYMBOL_REFERENCED (id) = 1;
2297 /* Set the symbol_referenced flag for DECL and notify callgraph. */
2298 void
2299 mark_decl_referenced (tree decl)
2301 if (TREE_CODE (decl) == FUNCTION_DECL)
2303 /* Extern inline functions don't become needed when referenced.
2304 If we know a method will be emitted in other TU and no new
2305 functions can be marked reachable, just use the external
2306 definition. */
2307 struct cgraph_node *node = cgraph_node (decl);
2308 if (!DECL_EXTERNAL (decl)
2309 && (!node->local.vtable_method || !cgraph_global_info_ready
2310 || !node->local.finalized))
2311 cgraph_mark_needed_node (node);
2313 else if (TREE_CODE (decl) == VAR_DECL)
2315 struct varpool_node *node = varpool_node (decl);
2316 varpool_mark_needed_node (node);
2317 /* C++ frontend use mark_decl_references to force COMDAT variables
2318 to be output that might appear dead otherwise. */
2319 node->force_output = true;
2321 /* else do nothing - we can get various sorts of CST nodes here,
2322 which do not need to be marked. */
2326 /* Follow the IDENTIFIER_TRANSPARENT_ALIAS chain starting at *ALIAS
2327 until we find an identifier that is not itself a transparent alias.
2328 Modify the alias passed to it by reference (and all aliases on the
2329 way to the ultimate target), such that they do not have to be
2330 followed again, and return the ultimate target of the alias
2331 chain. */
2333 static inline tree
2334 ultimate_transparent_alias_target (tree *alias)
2336 tree target = *alias;
2338 if (IDENTIFIER_TRANSPARENT_ALIAS (target))
2340 gcc_assert (TREE_CHAIN (target));
2341 target = ultimate_transparent_alias_target (&TREE_CHAIN (target));
2342 gcc_assert (! IDENTIFIER_TRANSPARENT_ALIAS (target)
2343 && ! TREE_CHAIN (target));
2344 *alias = target;
2347 return target;
2350 /* Output to FILE (an assembly file) a reference to NAME. If NAME
2351 starts with a *, the rest of NAME is output verbatim. Otherwise
2352 NAME is transformed in a target-specific way (usually by the
2353 addition of an underscore). */
2355 void
2356 assemble_name_raw (FILE *file, const char *name)
2358 if (name[0] == '*')
2359 fputs (&name[1], file);
2360 else
2361 ASM_OUTPUT_LABELREF (file, name);
2364 /* Like assemble_name_raw, but should be used when NAME might refer to
2365 an entity that is also represented as a tree (like a function or
2366 variable). If NAME does refer to such an entity, that entity will
2367 be marked as referenced. */
2369 void
2370 assemble_name (FILE *file, const char *name)
2372 const char *real_name;
2373 tree id;
2375 real_name = targetm.strip_name_encoding (name);
2377 id = maybe_get_identifier (real_name);
2378 if (id)
2380 tree id_orig = id;
2382 mark_referenced (id);
2383 ultimate_transparent_alias_target (&id);
2384 if (id != id_orig)
2385 name = IDENTIFIER_POINTER (id);
2386 gcc_assert (! TREE_CHAIN (id));
2389 assemble_name_raw (file, name);
2392 /* Allocate SIZE bytes writable static space with a gensym name
2393 and return an RTX to refer to its address. */
2396 assemble_static_space (unsigned HOST_WIDE_INT size)
2398 char name[12];
2399 const char *namestring;
2400 rtx x;
2402 ASM_GENERATE_INTERNAL_LABEL (name, "LF", const_labelno);
2403 ++const_labelno;
2404 namestring = ggc_strdup (name);
2406 x = gen_rtx_SYMBOL_REF (Pmode, namestring);
2407 SYMBOL_REF_FLAGS (x) = SYMBOL_FLAG_LOCAL;
2409 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
2410 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name, size,
2411 BIGGEST_ALIGNMENT);
2412 #else
2413 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
2414 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, BIGGEST_ALIGNMENT);
2415 #else
2417 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2418 so that each uninitialized object starts on such a boundary. */
2419 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
2420 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
2421 = ((size + (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1)
2422 / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
2423 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
2424 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
2426 #endif
2427 #endif
2428 return x;
2431 /* Assemble the static constant template for function entry trampolines.
2432 This is done at most once per compilation.
2433 Returns an RTX for the address of the template. */
2435 static GTY(()) rtx initial_trampoline;
2437 #ifdef TRAMPOLINE_TEMPLATE
2439 assemble_trampoline_template (void)
2441 char label[256];
2442 const char *name;
2443 int align;
2444 rtx symbol;
2446 if (initial_trampoline)
2447 return initial_trampoline;
2449 /* By default, put trampoline templates in read-only data section. */
2451 #ifdef TRAMPOLINE_SECTION
2452 switch_to_section (TRAMPOLINE_SECTION);
2453 #else
2454 switch_to_section (readonly_data_section);
2455 #endif
2457 /* Write the assembler code to define one. */
2458 align = floor_log2 (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT);
2459 if (align > 0)
2461 ASM_OUTPUT_ALIGN (asm_out_file, align);
2464 targetm.asm_out.internal_label (asm_out_file, "LTRAMP", 0);
2465 TRAMPOLINE_TEMPLATE (asm_out_file);
2467 /* Record the rtl to refer to it. */
2468 ASM_GENERATE_INTERNAL_LABEL (label, "LTRAMP", 0);
2469 name = ggc_strdup (label);
2470 symbol = gen_rtx_SYMBOL_REF (Pmode, name);
2471 SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
2473 initial_trampoline = gen_rtx_MEM (BLKmode, symbol);
2474 set_mem_align (initial_trampoline, TRAMPOLINE_ALIGNMENT);
2476 return initial_trampoline;
2478 #endif
2480 /* A and B are either alignments or offsets. Return the minimum alignment
2481 that may be assumed after adding the two together. */
2483 static inline unsigned
2484 min_align (unsigned int a, unsigned int b)
2486 return (a | b) & -(a | b);
2489 /* Return the assembler directive for creating a given kind of integer
2490 object. SIZE is the number of bytes in the object and ALIGNED_P
2491 indicates whether it is known to be aligned. Return NULL if the
2492 assembly dialect has no such directive.
2494 The returned string should be printed at the start of a new line and
2495 be followed immediately by the object's initial value. */
2497 const char *
2498 integer_asm_op (int size, int aligned_p)
2500 struct asm_int_op *ops;
2502 if (aligned_p)
2503 ops = &targetm.asm_out.aligned_op;
2504 else
2505 ops = &targetm.asm_out.unaligned_op;
2507 switch (size)
2509 case 1:
2510 return targetm.asm_out.byte_op;
2511 case 2:
2512 return ops->hi;
2513 case 4:
2514 return ops->si;
2515 case 8:
2516 return ops->di;
2517 case 16:
2518 return ops->ti;
2519 default:
2520 return NULL;
2524 /* Use directive OP to assemble an integer object X. Print OP at the
2525 start of the line, followed immediately by the value of X. */
2527 void
2528 assemble_integer_with_op (const char *op, rtx x)
2530 fputs (op, asm_out_file);
2531 output_addr_const (asm_out_file, x);
2532 fputc ('\n', asm_out_file);
2535 /* The default implementation of the asm_out.integer target hook. */
2537 bool
2538 default_assemble_integer (rtx x ATTRIBUTE_UNUSED,
2539 unsigned int size ATTRIBUTE_UNUSED,
2540 int aligned_p ATTRIBUTE_UNUSED)
2542 const char *op = integer_asm_op (size, aligned_p);
2543 /* Avoid GAS bugs for large values. Specifically negative values whose
2544 absolute value fits in a bfd_vma, but not in a bfd_signed_vma. */
2545 if (size > UNITS_PER_WORD && size > POINTER_SIZE / BITS_PER_UNIT)
2546 return false;
2547 return op && (assemble_integer_with_op (op, x), true);
2550 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
2551 the alignment of the integer in bits. Return 1 if we were able to output
2552 the constant, otherwise 0. We must be able to output the constant,
2553 if FORCE is nonzero. */
2555 bool
2556 assemble_integer (rtx x, unsigned int size, unsigned int align, int force)
2558 int aligned_p;
2560 aligned_p = (align >= MIN (size * BITS_PER_UNIT, BIGGEST_ALIGNMENT));
2562 /* See if the target hook can handle this kind of object. */
2563 if (targetm.asm_out.integer (x, size, aligned_p))
2564 return true;
2566 /* If the object is a multi-byte one, try splitting it up. Split
2567 it into words it if is multi-word, otherwise split it into bytes. */
2568 if (size > 1)
2570 enum machine_mode omode, imode;
2571 unsigned int subalign;
2572 unsigned int subsize, i;
2573 unsigned char mclass;
2575 subsize = size > UNITS_PER_WORD? UNITS_PER_WORD : 1;
2576 subalign = MIN (align, subsize * BITS_PER_UNIT);
2577 if (GET_CODE (x) == CONST_FIXED)
2578 mclass = GET_MODE_CLASS (GET_MODE (x));
2579 else
2580 mclass = MODE_INT;
2582 omode = mode_for_size (subsize * BITS_PER_UNIT, mclass, 0);
2583 imode = mode_for_size (size * BITS_PER_UNIT, mclass, 0);
2585 for (i = 0; i < size; i += subsize)
2587 rtx partial = simplify_subreg (omode, x, imode, i);
2588 if (!partial || !assemble_integer (partial, subsize, subalign, 0))
2589 break;
2591 if (i == size)
2592 return true;
2594 /* If we've printed some of it, but not all of it, there's no going
2595 back now. */
2596 gcc_assert (!i);
2599 gcc_assert (!force);
2601 return false;
2604 void
2605 assemble_real (REAL_VALUE_TYPE d, enum machine_mode mode, unsigned int align)
2607 long data[4] = {0, 0, 0, 0};
2608 int i;
2609 int bitsize, nelts, nunits, units_per;
2611 /* This is hairy. We have a quantity of known size. real_to_target
2612 will put it into an array of *host* longs, 32 bits per element
2613 (even if long is more than 32 bits). We need to determine the
2614 number of array elements that are occupied (nelts) and the number
2615 of *target* min-addressable units that will be occupied in the
2616 object file (nunits). We cannot assume that 32 divides the
2617 mode's bitsize (size * BITS_PER_UNIT) evenly.
2619 size * BITS_PER_UNIT is used here to make sure that padding bits
2620 (which might appear at either end of the value; real_to_target
2621 will include the padding bits in its output array) are included. */
2623 nunits = GET_MODE_SIZE (mode);
2624 bitsize = nunits * BITS_PER_UNIT;
2625 nelts = CEIL (bitsize, 32);
2626 units_per = 32 / BITS_PER_UNIT;
2628 real_to_target (data, &d, mode);
2630 /* Put out the first word with the specified alignment. */
2631 assemble_integer (GEN_INT (data[0]), MIN (nunits, units_per), align, 1);
2632 nunits -= units_per;
2634 /* Subsequent words need only 32-bit alignment. */
2635 align = min_align (align, 32);
2637 for (i = 1; i < nelts; i++)
2639 assemble_integer (GEN_INT (data[i]), MIN (nunits, units_per), align, 1);
2640 nunits -= units_per;
2644 /* Given an expression EXP with a constant value,
2645 reduce it to the sum of an assembler symbol and an integer.
2646 Store them both in the structure *VALUE.
2647 EXP must be reducible. */
2649 struct addr_const GTY(())
2651 rtx base;
2652 HOST_WIDE_INT offset;
2655 static void
2656 decode_addr_const (tree exp, struct addr_const *value)
2658 tree target = TREE_OPERAND (exp, 0);
2659 int offset = 0;
2660 rtx x;
2662 while (1)
2664 if (TREE_CODE (target) == COMPONENT_REF
2665 && host_integerp (byte_position (TREE_OPERAND (target, 1)), 0))
2668 offset += int_byte_position (TREE_OPERAND (target, 1));
2669 target = TREE_OPERAND (target, 0);
2671 else if (TREE_CODE (target) == ARRAY_REF
2672 || TREE_CODE (target) == ARRAY_RANGE_REF)
2674 offset += (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (target)), 1)
2675 * tree_low_cst (TREE_OPERAND (target, 1), 0));
2676 target = TREE_OPERAND (target, 0);
2678 else
2679 break;
2682 switch (TREE_CODE (target))
2684 case VAR_DECL:
2685 case FUNCTION_DECL:
2686 x = DECL_RTL (target);
2687 break;
2689 case LABEL_DECL:
2690 x = gen_rtx_MEM (FUNCTION_MODE,
2691 gen_rtx_LABEL_REF (Pmode, force_label_rtx (target)));
2692 break;
2694 case REAL_CST:
2695 case FIXED_CST:
2696 case STRING_CST:
2697 case COMPLEX_CST:
2698 case CONSTRUCTOR:
2699 case INTEGER_CST:
2700 x = output_constant_def (target, 1);
2701 break;
2703 default:
2704 gcc_unreachable ();
2707 gcc_assert (MEM_P (x));
2708 x = XEXP (x, 0);
2710 value->base = x;
2711 value->offset = offset;
2714 /* Uniquize all constants that appear in memory.
2715 Each constant in memory thus far output is recorded
2716 in `const_desc_table'. */
2718 struct constant_descriptor_tree GTY(())
2720 /* A MEM for the constant. */
2721 rtx rtl;
2723 /* The value of the constant. */
2724 tree value;
2726 /* Hash of value. Computing the hash from value each time
2727 hashfn is called can't work properly, as that means recursive
2728 use of the hash table during hash table expansion. */
2729 hashval_t hash;
2732 static GTY((param_is (struct constant_descriptor_tree)))
2733 htab_t const_desc_htab;
2735 static struct constant_descriptor_tree * build_constant_desc (tree);
2736 static void maybe_output_constant_def_contents (struct constant_descriptor_tree *, int);
2738 /* Compute a hash code for a constant expression. */
2740 static hashval_t
2741 const_desc_hash (const void *ptr)
2743 return ((const struct constant_descriptor_tree *)ptr)->hash;
2746 static hashval_t
2747 const_hash_1 (const tree exp)
2749 const char *p;
2750 hashval_t hi;
2751 int len, i;
2752 enum tree_code code = TREE_CODE (exp);
2754 /* Either set P and LEN to the address and len of something to hash and
2755 exit the switch or return a value. */
2757 switch (code)
2759 case INTEGER_CST:
2760 p = (char *) &TREE_INT_CST (exp);
2761 len = sizeof TREE_INT_CST (exp);
2762 break;
2764 case REAL_CST:
2765 return real_hash (TREE_REAL_CST_PTR (exp));
2767 case FIXED_CST:
2768 return fixed_hash (TREE_FIXED_CST_PTR (exp));
2770 case STRING_CST:
2771 p = TREE_STRING_POINTER (exp);
2772 len = TREE_STRING_LENGTH (exp);
2773 break;
2775 case COMPLEX_CST:
2776 return (const_hash_1 (TREE_REALPART (exp)) * 5
2777 + const_hash_1 (TREE_IMAGPART (exp)));
2779 case CONSTRUCTOR:
2781 unsigned HOST_WIDE_INT idx;
2782 tree value;
2784 hi = 5 + int_size_in_bytes (TREE_TYPE (exp));
2786 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, value)
2787 if (value)
2788 hi = hi * 603 + const_hash_1 (value);
2790 return hi;
2793 case ADDR_EXPR:
2794 case FDESC_EXPR:
2796 struct addr_const value;
2798 decode_addr_const (exp, &value);
2799 switch (GET_CODE (value.base))
2801 case SYMBOL_REF:
2802 /* Don't hash the address of the SYMBOL_REF;
2803 only use the offset and the symbol name. */
2804 hi = value.offset;
2805 p = XSTR (value.base, 0);
2806 for (i = 0; p[i] != 0; i++)
2807 hi = ((hi * 613) + (unsigned) (p[i]));
2808 break;
2810 case LABEL_REF:
2811 hi = value.offset + CODE_LABEL_NUMBER (XEXP (value.base, 0)) * 13;
2812 break;
2814 default:
2815 gcc_unreachable ();
2818 return hi;
2820 case PLUS_EXPR:
2821 case POINTER_PLUS_EXPR:
2822 case MINUS_EXPR:
2823 return (const_hash_1 (TREE_OPERAND (exp, 0)) * 9
2824 + const_hash_1 (TREE_OPERAND (exp, 1)));
2826 case NOP_EXPR:
2827 case CONVERT_EXPR:
2828 case NON_LVALUE_EXPR:
2829 return const_hash_1 (TREE_OPERAND (exp, 0)) * 7 + 2;
2831 default:
2832 /* A language specific constant. Just hash the code. */
2833 return code;
2836 /* Compute hashing function. */
2837 hi = len;
2838 for (i = 0; i < len; i++)
2839 hi = ((hi * 613) + (unsigned) (p[i]));
2841 return hi;
2844 /* Wrapper of compare_constant, for the htab interface. */
2845 static int
2846 const_desc_eq (const void *p1, const void *p2)
2848 const struct constant_descriptor_tree *c1 = p1;
2849 const struct constant_descriptor_tree *c2 = p2;
2850 if (c1->hash != c2->hash)
2851 return 0;
2852 return compare_constant (c1->value, c2->value);
2855 /* Compare t1 and t2, and return 1 only if they are known to result in
2856 the same bit pattern on output. */
2858 static int
2859 compare_constant (const tree t1, const tree t2)
2861 enum tree_code typecode;
2863 if (t1 == NULL_TREE)
2864 return t2 == NULL_TREE;
2865 if (t2 == NULL_TREE)
2866 return 0;
2868 if (TREE_CODE (t1) != TREE_CODE (t2))
2869 return 0;
2871 switch (TREE_CODE (t1))
2873 case INTEGER_CST:
2874 /* Integer constants are the same only if the same width of type. */
2875 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2876 return 0;
2877 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
2878 return 0;
2879 return tree_int_cst_equal (t1, t2);
2881 case REAL_CST:
2882 /* Real constants are the same only if the same width of type. */
2883 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2884 return 0;
2886 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
2888 case FIXED_CST:
2889 /* Fixed constants are the same only if the same width of type. */
2890 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2891 return 0;
2893 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
2895 case STRING_CST:
2896 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
2897 return 0;
2899 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
2900 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
2901 TREE_STRING_LENGTH (t1)));
2903 case COMPLEX_CST:
2904 return (compare_constant (TREE_REALPART (t1), TREE_REALPART (t2))
2905 && compare_constant (TREE_IMAGPART (t1), TREE_IMAGPART (t2)));
2907 case CONSTRUCTOR:
2909 VEC(constructor_elt, gc) *v1, *v2;
2910 unsigned HOST_WIDE_INT idx;
2912 typecode = TREE_CODE (TREE_TYPE (t1));
2913 if (typecode != TREE_CODE (TREE_TYPE (t2)))
2914 return 0;
2916 if (typecode == ARRAY_TYPE)
2918 HOST_WIDE_INT size_1 = int_size_in_bytes (TREE_TYPE (t1));
2919 /* For arrays, check that the sizes all match. */
2920 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2))
2921 || size_1 == -1
2922 || size_1 != int_size_in_bytes (TREE_TYPE (t2)))
2923 return 0;
2925 else
2927 /* For record and union constructors, require exact type
2928 equality. */
2929 if (TREE_TYPE (t1) != TREE_TYPE (t2))
2930 return 0;
2933 v1 = CONSTRUCTOR_ELTS (t1);
2934 v2 = CONSTRUCTOR_ELTS (t2);
2935 if (VEC_length (constructor_elt, v1)
2936 != VEC_length (constructor_elt, v2))
2937 return 0;
2939 for (idx = 0; idx < VEC_length (constructor_elt, v1); ++idx)
2941 constructor_elt *c1 = VEC_index (constructor_elt, v1, idx);
2942 constructor_elt *c2 = VEC_index (constructor_elt, v2, idx);
2944 /* Check that each value is the same... */
2945 if (!compare_constant (c1->value, c2->value))
2946 return 0;
2947 /* ... and that they apply to the same fields! */
2948 if (typecode == ARRAY_TYPE)
2950 if (!compare_constant (c1->index, c2->index))
2951 return 0;
2953 else
2955 if (c1->index != c2->index)
2956 return 0;
2960 return 1;
2963 case ADDR_EXPR:
2964 case FDESC_EXPR:
2966 struct addr_const value1, value2;
2968 decode_addr_const (t1, &value1);
2969 decode_addr_const (t2, &value2);
2970 return (value1.offset == value2.offset
2971 && strcmp (XSTR (value1.base, 0), XSTR (value2.base, 0)) == 0);
2974 case PLUS_EXPR:
2975 case POINTER_PLUS_EXPR:
2976 case MINUS_EXPR:
2977 case RANGE_EXPR:
2978 return (compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0))
2979 && compare_constant(TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)));
2981 case NOP_EXPR:
2982 case CONVERT_EXPR:
2983 case NON_LVALUE_EXPR:
2984 case VIEW_CONVERT_EXPR:
2985 return compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
2987 default:
2988 return 0;
2991 gcc_unreachable ();
2994 /* Make a copy of the whole tree structure for a constant. This
2995 handles the same types of nodes that compare_constant handles. */
2997 static tree
2998 copy_constant (tree exp)
3000 switch (TREE_CODE (exp))
3002 case ADDR_EXPR:
3003 /* For ADDR_EXPR, we do not want to copy the decl whose address
3004 is requested. We do want to copy constants though. */
3005 if (CONSTANT_CLASS_P (TREE_OPERAND (exp, 0)))
3006 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
3007 copy_constant (TREE_OPERAND (exp, 0)));
3008 else
3009 return copy_node (exp);
3011 case INTEGER_CST:
3012 case REAL_CST:
3013 case FIXED_CST:
3014 case STRING_CST:
3015 return copy_node (exp);
3017 case COMPLEX_CST:
3018 return build_complex (TREE_TYPE (exp),
3019 copy_constant (TREE_REALPART (exp)),
3020 copy_constant (TREE_IMAGPART (exp)));
3022 case PLUS_EXPR:
3023 case POINTER_PLUS_EXPR:
3024 case MINUS_EXPR:
3025 return build2 (TREE_CODE (exp), TREE_TYPE (exp),
3026 copy_constant (TREE_OPERAND (exp, 0)),
3027 copy_constant (TREE_OPERAND (exp, 1)));
3029 case NOP_EXPR:
3030 case CONVERT_EXPR:
3031 case NON_LVALUE_EXPR:
3032 case VIEW_CONVERT_EXPR:
3033 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
3034 copy_constant (TREE_OPERAND (exp, 0)));
3036 case CONSTRUCTOR:
3038 tree copy = copy_node (exp);
3039 VEC(constructor_elt, gc) *v;
3040 unsigned HOST_WIDE_INT idx;
3041 tree purpose, value;
3043 v = VEC_alloc(constructor_elt, gc, VEC_length(constructor_elt,
3044 CONSTRUCTOR_ELTS (exp)));
3045 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp), idx, purpose, value)
3047 constructor_elt *ce = VEC_quick_push (constructor_elt, v, NULL);
3048 ce->index = purpose;
3049 ce->value = copy_constant (value);
3051 CONSTRUCTOR_ELTS (copy) = v;
3052 return copy;
3055 default:
3056 gcc_unreachable ();
3060 /* Return the alignment of constant EXP in bits. */
3062 static unsigned int
3063 get_constant_alignment (tree exp)
3065 unsigned int align;
3067 align = TYPE_ALIGN (TREE_TYPE (exp));
3068 #ifdef CONSTANT_ALIGNMENT
3069 align = CONSTANT_ALIGNMENT (exp, align);
3070 #endif
3071 return align;
3074 /* Return the section into which constant EXP should be placed. */
3076 static section *
3077 get_constant_section (tree exp)
3079 if (IN_NAMED_SECTION (exp))
3080 return get_named_section (exp, NULL, compute_reloc_for_constant (exp));
3081 else
3082 return targetm.asm_out.select_section (exp,
3083 compute_reloc_for_constant (exp),
3084 get_constant_alignment (exp));
3087 /* Return the size of constant EXP in bytes. */
3089 static HOST_WIDE_INT
3090 get_constant_size (tree exp)
3092 HOST_WIDE_INT size;
3094 size = int_size_in_bytes (TREE_TYPE (exp));
3095 if (TREE_CODE (exp) == STRING_CST)
3096 size = MAX (TREE_STRING_LENGTH (exp), size);
3097 return size;
3100 /* Subroutine of output_constant_def:
3101 No constant equal to EXP is known to have been output.
3102 Make a constant descriptor to enter EXP in the hash table.
3103 Assign the label number and construct RTL to refer to the
3104 constant's location in memory.
3105 Caller is responsible for updating the hash table. */
3107 static struct constant_descriptor_tree *
3108 build_constant_desc (tree exp)
3110 rtx symbol;
3111 rtx rtl;
3112 char label[256];
3113 int labelno;
3114 struct constant_descriptor_tree *desc;
3116 desc = ggc_alloc (sizeof (*desc));
3117 desc->value = copy_constant (exp);
3119 /* Propagate marked-ness to copied constant. */
3120 if (flag_mudflap && mf_marked_p (exp))
3121 mf_mark (desc->value);
3123 /* Create a string containing the label name, in LABEL. */
3124 labelno = const_labelno++;
3125 ASM_GENERATE_INTERNAL_LABEL (label, "LC", labelno);
3127 /* We have a symbol name; construct the SYMBOL_REF and the MEM. */
3128 if (use_object_blocks_p ())
3130 section *sect = get_constant_section (exp);
3131 symbol = create_block_symbol (ggc_strdup (label),
3132 get_block_for_section (sect), -1);
3134 else
3135 symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
3136 SYMBOL_REF_FLAGS (symbol) |= SYMBOL_FLAG_LOCAL;
3137 SET_SYMBOL_REF_DECL (symbol, desc->value);
3138 TREE_CONSTANT_POOL_ADDRESS_P (symbol) = 1;
3140 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp)), symbol);
3141 set_mem_attributes (rtl, exp, 1);
3142 set_mem_alias_set (rtl, 0);
3143 set_mem_alias_set (rtl, const_alias_set);
3145 /* Set flags or add text to the name to record information, such as
3146 that it is a local symbol. If the name is changed, the macro
3147 ASM_OUTPUT_LABELREF will have to know how to strip this
3148 information. This call might invalidate our local variable
3149 SYMBOL; we can't use it afterward. */
3151 targetm.encode_section_info (exp, rtl, true);
3153 desc->rtl = rtl;
3155 return desc;
3158 /* Return an rtx representing a reference to constant data in memory
3159 for the constant expression EXP.
3161 If assembler code for such a constant has already been output,
3162 return an rtx to refer to it.
3163 Otherwise, output such a constant in memory
3164 and generate an rtx for it.
3166 If DEFER is nonzero, this constant can be deferred and output only
3167 if referenced in the function after all optimizations.
3169 `const_desc_table' records which constants already have label strings. */
3172 output_constant_def (tree exp, int defer)
3174 struct constant_descriptor_tree *desc;
3175 struct constant_descriptor_tree key;
3176 void **loc;
3178 /* Look up EXP in the table of constant descriptors. If we didn't find
3179 it, create a new one. */
3180 key.value = exp;
3181 key.hash = const_hash_1 (exp);
3182 loc = htab_find_slot_with_hash (const_desc_htab, &key, key.hash, INSERT);
3184 desc = *loc;
3185 if (desc == 0)
3187 desc = build_constant_desc (exp);
3188 desc->hash = key.hash;
3189 *loc = desc;
3192 maybe_output_constant_def_contents (desc, defer);
3193 return desc->rtl;
3196 /* Subroutine of output_constant_def: Decide whether or not we need to
3197 output the constant DESC now, and if so, do it. */
3198 static void
3199 maybe_output_constant_def_contents (struct constant_descriptor_tree *desc,
3200 int defer)
3202 rtx symbol = XEXP (desc->rtl, 0);
3203 tree exp = desc->value;
3205 if (flag_syntax_only)
3206 return;
3208 if (TREE_ASM_WRITTEN (exp))
3209 /* Already output; don't do it again. */
3210 return;
3212 /* We can always defer constants as long as the context allows
3213 doing so. */
3214 if (defer)
3216 /* Increment n_deferred_constants if it exists. It needs to be at
3217 least as large as the number of constants actually referred to
3218 by the function. If it's too small we'll stop looking too early
3219 and fail to emit constants; if it's too large we'll only look
3220 through the entire function when we could have stopped earlier. */
3221 if (cfun)
3222 n_deferred_constants++;
3223 return;
3226 output_constant_def_contents (symbol);
3229 /* Subroutine of output_constant_def_contents. Output the definition
3230 of constant EXP, which is pointed to by label LABEL. ALIGN is the
3231 constant's alignment in bits. */
3233 static void
3234 assemble_constant_contents (tree exp, const char *label, unsigned int align)
3236 HOST_WIDE_INT size;
3238 size = get_constant_size (exp);
3240 /* Do any machine/system dependent processing of the constant. */
3241 #ifdef ASM_DECLARE_CONSTANT_NAME
3242 ASM_DECLARE_CONSTANT_NAME (asm_out_file, label, exp, size);
3243 #else
3244 /* Standard thing is just output label for the constant. */
3245 ASM_OUTPUT_LABEL (asm_out_file, label);
3246 #endif /* ASM_DECLARE_CONSTANT_NAME */
3248 /* Output the value of EXP. */
3249 output_constant (exp, size, align);
3252 /* We must output the constant data referred to by SYMBOL; do so. */
3254 static void
3255 output_constant_def_contents (rtx symbol)
3257 tree exp = SYMBOL_REF_DECL (symbol);
3258 unsigned int align;
3260 /* Make sure any other constants whose addresses appear in EXP
3261 are assigned label numbers. */
3262 output_addressed_constants (exp);
3264 /* We are no longer deferring this constant. */
3265 TREE_ASM_WRITTEN (exp) = 1;
3267 /* If the constant is part of an object block, make sure that the
3268 decl has been positioned within its block, but do not write out
3269 its definition yet. output_object_blocks will do that later. */
3270 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol) && SYMBOL_REF_BLOCK (symbol))
3271 place_block_symbol (symbol);
3272 else
3274 switch_to_section (get_constant_section (exp));
3275 align = get_constant_alignment (exp);
3276 if (align > BITS_PER_UNIT)
3277 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
3278 assemble_constant_contents (exp, XSTR (symbol, 0), align);
3280 if (flag_mudflap)
3281 mudflap_enqueue_constant (exp);
3284 /* Look up EXP in the table of constant descriptors. Return the rtl
3285 if it has been emitted, else null. */
3288 lookup_constant_def (tree exp)
3290 struct constant_descriptor_tree *desc;
3291 struct constant_descriptor_tree key;
3293 key.value = exp;
3294 key.hash = const_hash_1 (exp);
3295 desc = htab_find_with_hash (const_desc_htab, &key, key.hash);
3297 return (desc ? desc->rtl : NULL_RTX);
3300 /* Used in the hash tables to avoid outputting the same constant
3301 twice. Unlike 'struct constant_descriptor_tree', RTX constants
3302 are output once per function, not once per file. */
3303 /* ??? Only a few targets need per-function constant pools. Most
3304 can use one per-file pool. Should add a targetm bit to tell the
3305 difference. */
3307 struct rtx_constant_pool GTY(())
3309 /* Pointers to first and last constant in pool, as ordered by offset. */
3310 struct constant_descriptor_rtx *first;
3311 struct constant_descriptor_rtx *last;
3313 /* Hash facility for making memory-constants from constant rtl-expressions.
3314 It is used on RISC machines where immediate integer arguments and
3315 constant addresses are restricted so that such constants must be stored
3316 in memory. */
3317 htab_t GTY((param_is (struct constant_descriptor_rtx))) const_rtx_htab;
3319 /* Current offset in constant pool (does not include any
3320 machine-specific header). */
3321 HOST_WIDE_INT offset;
3324 struct constant_descriptor_rtx GTY((chain_next ("%h.next")))
3326 struct constant_descriptor_rtx *next;
3327 rtx mem;
3328 rtx sym;
3329 rtx constant;
3330 HOST_WIDE_INT offset;
3331 hashval_t hash;
3332 enum machine_mode mode;
3333 unsigned int align;
3334 int labelno;
3335 int mark;
3338 /* Hash and compare functions for const_rtx_htab. */
3340 static hashval_t
3341 const_desc_rtx_hash (const void *ptr)
3343 const struct constant_descriptor_rtx *desc = ptr;
3344 return desc->hash;
3347 static int
3348 const_desc_rtx_eq (const void *a, const void *b)
3350 const struct constant_descriptor_rtx *x = a;
3351 const struct constant_descriptor_rtx *y = b;
3353 if (x->mode != y->mode)
3354 return 0;
3355 return rtx_equal_p (x->constant, y->constant);
3358 /* This is the worker function for const_rtx_hash, called via for_each_rtx. */
3360 static int
3361 const_rtx_hash_1 (rtx *xp, void *data)
3363 unsigned HOST_WIDE_INT hwi;
3364 enum machine_mode mode;
3365 enum rtx_code code;
3366 hashval_t h, *hp;
3367 rtx x;
3369 x = *xp;
3370 code = GET_CODE (x);
3371 mode = GET_MODE (x);
3372 h = (hashval_t) code * 1048573 + mode;
3374 switch (code)
3376 case CONST_INT:
3377 hwi = INTVAL (x);
3378 fold_hwi:
3380 const int shift = sizeof (hashval_t) * CHAR_BIT;
3381 const int n = sizeof (HOST_WIDE_INT) / sizeof (hashval_t);
3382 int i;
3384 h ^= (hashval_t) hwi;
3385 for (i = 1; i < n; ++i)
3387 hwi >>= shift;
3388 h ^= (hashval_t) hwi;
3391 break;
3393 case CONST_DOUBLE:
3394 if (mode == VOIDmode)
3396 hwi = CONST_DOUBLE_LOW (x) ^ CONST_DOUBLE_HIGH (x);
3397 goto fold_hwi;
3399 else
3400 h ^= real_hash (CONST_DOUBLE_REAL_VALUE (x));
3401 break;
3403 case CONST_FIXED:
3404 h ^= fixed_hash (CONST_FIXED_VALUE (x));
3405 break;
3407 case CONST_VECTOR:
3409 int i;
3410 for (i = XVECLEN (x, 0); i-- > 0; )
3411 h = h * 251 + const_rtx_hash_1 (&XVECEXP (x, 0, i), data);
3413 break;
3415 case SYMBOL_REF:
3416 h ^= htab_hash_string (XSTR (x, 0));
3417 break;
3419 case LABEL_REF:
3420 h = h * 251 + CODE_LABEL_NUMBER (XEXP (x, 0));
3421 break;
3423 case UNSPEC:
3424 case UNSPEC_VOLATILE:
3425 h = h * 251 + XINT (x, 1);
3426 break;
3428 default:
3429 break;
3432 hp = data;
3433 *hp = *hp * 509 + h;
3434 return 0;
3437 /* Compute a hash value for X, which should be a constant. */
3439 static hashval_t
3440 const_rtx_hash (rtx x)
3442 hashval_t h = 0;
3443 for_each_rtx (&x, const_rtx_hash_1, &h);
3444 return h;
3448 /* Create and return a new rtx constant pool. */
3450 static struct rtx_constant_pool *
3451 create_constant_pool (void)
3453 struct rtx_constant_pool *pool;
3455 pool = ggc_alloc (sizeof (struct rtx_constant_pool));
3456 pool->const_rtx_htab = htab_create_ggc (31, const_desc_rtx_hash,
3457 const_desc_rtx_eq, NULL);
3458 pool->first = NULL;
3459 pool->last = NULL;
3460 pool->offset = 0;
3461 return pool;
3464 /* Initialize constant pool hashing for a new function. */
3466 void
3467 init_varasm_status (struct function *f)
3469 struct varasm_status *p;
3471 p = ggc_alloc (sizeof (struct varasm_status));
3472 f->varasm = p;
3474 p->pool = create_constant_pool ();
3475 p->deferred_constants = 0;
3478 /* Given a MINUS expression, simplify it if both sides
3479 include the same symbol. */
3482 simplify_subtraction (rtx x)
3484 rtx r = simplify_rtx (x);
3485 return r ? r : x;
3488 /* Given a constant rtx X, make (or find) a memory constant for its value
3489 and return a MEM rtx to refer to it in memory. */
3492 force_const_mem (enum machine_mode mode, rtx x)
3494 struct constant_descriptor_rtx *desc, tmp;
3495 struct rtx_constant_pool *pool;
3496 char label[256];
3497 rtx def, symbol;
3498 hashval_t hash;
3499 unsigned int align;
3500 void **slot;
3502 /* If we're not allowed to drop X into the constant pool, don't. */
3503 if (targetm.cannot_force_const_mem (x))
3504 return NULL_RTX;
3506 /* Record that this function has used a constant pool entry. */
3507 current_function_uses_const_pool = 1;
3509 /* Decide which pool to use. */
3510 pool = (targetm.use_blocks_for_constant_p (mode, x)
3511 ? shared_constant_pool
3512 : cfun->varasm->pool);
3514 /* Lookup the value in the hashtable. */
3515 tmp.constant = x;
3516 tmp.mode = mode;
3517 hash = const_rtx_hash (x);
3518 slot = htab_find_slot_with_hash (pool->const_rtx_htab, &tmp, hash, INSERT);
3519 desc = *slot;
3521 /* If the constant was already present, return its memory. */
3522 if (desc)
3523 return copy_rtx (desc->mem);
3525 /* Otherwise, create a new descriptor. */
3526 desc = ggc_alloc (sizeof (*desc));
3527 *slot = desc;
3529 /* Align the location counter as required by EXP's data type. */
3530 align = GET_MODE_ALIGNMENT (mode == VOIDmode ? word_mode : mode);
3531 #ifdef CONSTANT_ALIGNMENT
3533 tree type = lang_hooks.types.type_for_mode (mode, 0);
3534 if (type != NULL_TREE)
3535 align = CONSTANT_ALIGNMENT (make_tree (type, x), align);
3537 #endif
3539 pool->offset += (align / BITS_PER_UNIT) - 1;
3540 pool->offset &= ~ ((align / BITS_PER_UNIT) - 1);
3542 desc->next = NULL;
3543 desc->constant = tmp.constant;
3544 desc->offset = pool->offset;
3545 desc->hash = hash;
3546 desc->mode = mode;
3547 desc->align = align;
3548 desc->labelno = const_labelno;
3549 desc->mark = 0;
3551 pool->offset += GET_MODE_SIZE (mode);
3552 if (pool->last)
3553 pool->last->next = desc;
3554 else
3555 pool->first = pool->last = desc;
3556 pool->last = desc;
3558 /* Create a string containing the label name, in LABEL. */
3559 ASM_GENERATE_INTERNAL_LABEL (label, "LC", const_labelno);
3560 ++const_labelno;
3562 /* Construct the SYMBOL_REF. Make sure to mark it as belonging to
3563 the constants pool. */
3564 if (use_object_blocks_p () && targetm.use_blocks_for_constant_p (mode, x))
3566 section *sect = targetm.asm_out.select_rtx_section (mode, x, align);
3567 symbol = create_block_symbol (ggc_strdup (label),
3568 get_block_for_section (sect), -1);
3570 else
3571 symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
3572 desc->sym = symbol;
3573 SYMBOL_REF_FLAGS (symbol) |= SYMBOL_FLAG_LOCAL;
3574 CONSTANT_POOL_ADDRESS_P (symbol) = 1;
3575 SET_SYMBOL_REF_CONSTANT (symbol, desc);
3577 /* Construct the MEM. */
3578 desc->mem = def = gen_const_mem (mode, symbol);
3579 set_mem_attributes (def, lang_hooks.types.type_for_mode (mode, 0), 1);
3580 set_mem_align (def, align);
3582 /* If we're dropping a label to the constant pool, make sure we
3583 don't delete it. */
3584 if (GET_CODE (x) == LABEL_REF)
3585 LABEL_PRESERVE_P (XEXP (x, 0)) = 1;
3587 return copy_rtx (def);
3590 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3593 get_pool_constant (rtx addr)
3595 return SYMBOL_REF_CONSTANT (addr)->constant;
3598 /* Given a constant pool SYMBOL_REF, return the corresponding constant
3599 and whether it has been output or not. */
3602 get_pool_constant_mark (rtx addr, bool *pmarked)
3604 struct constant_descriptor_rtx *desc;
3606 desc = SYMBOL_REF_CONSTANT (addr);
3607 *pmarked = (desc->mark != 0);
3608 return desc->constant;
3611 /* Similar, return the mode. */
3613 enum machine_mode
3614 get_pool_mode (const_rtx addr)
3616 return SYMBOL_REF_CONSTANT (addr)->mode;
3619 /* Return the size of the constant pool. */
3622 get_pool_size (void)
3624 return cfun->varasm->pool->offset;
3627 /* Worker function for output_constant_pool_1. Emit assembly for X
3628 in MODE with known alignment ALIGN. */
3630 static void
3631 output_constant_pool_2 (enum machine_mode mode, rtx x, unsigned int align)
3633 switch (GET_MODE_CLASS (mode))
3635 case MODE_FLOAT:
3636 case MODE_DECIMAL_FLOAT:
3638 REAL_VALUE_TYPE r;
3640 gcc_assert (GET_CODE (x) == CONST_DOUBLE);
3641 REAL_VALUE_FROM_CONST_DOUBLE (r, x);
3642 assemble_real (r, mode, align);
3643 break;
3646 case MODE_INT:
3647 case MODE_PARTIAL_INT:
3648 case MODE_FRACT:
3649 case MODE_UFRACT:
3650 case MODE_ACCUM:
3651 case MODE_UACCUM:
3652 assemble_integer (x, GET_MODE_SIZE (mode), align, 1);
3653 break;
3655 case MODE_VECTOR_FLOAT:
3656 case MODE_VECTOR_INT:
3657 case MODE_VECTOR_FRACT:
3658 case MODE_VECTOR_UFRACT:
3659 case MODE_VECTOR_ACCUM:
3660 case MODE_VECTOR_UACCUM:
3662 int i, units;
3663 enum machine_mode submode = GET_MODE_INNER (mode);
3664 unsigned int subalign = MIN (align, GET_MODE_BITSIZE (submode));
3666 gcc_assert (GET_CODE (x) == CONST_VECTOR);
3667 units = CONST_VECTOR_NUNITS (x);
3669 for (i = 0; i < units; i++)
3671 rtx elt = CONST_VECTOR_ELT (x, i);
3672 output_constant_pool_2 (submode, elt, i ? subalign : align);
3675 break;
3677 default:
3678 gcc_unreachable ();
3682 /* Worker function for output_constant_pool. Emit constant DESC,
3683 giving it ALIGN bits of alignment. */
3685 static void
3686 output_constant_pool_1 (struct constant_descriptor_rtx *desc,
3687 unsigned int align)
3689 rtx x, tmp;
3691 x = desc->constant;
3693 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3694 whose CODE_LABEL has been deleted. This can occur if a jump table
3695 is eliminated by optimization. If so, write a constant of zero
3696 instead. Note that this can also happen by turning the
3697 CODE_LABEL into a NOTE. */
3698 /* ??? This seems completely and utterly wrong. Certainly it's
3699 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3700 functioning even with INSN_DELETED_P and friends. */
3702 tmp = x;
3703 switch (GET_CODE (x))
3705 case CONST:
3706 if (GET_CODE (XEXP (x, 0)) != PLUS
3707 || GET_CODE (XEXP (XEXP (x, 0), 0)) != LABEL_REF)
3708 break;
3709 tmp = XEXP (XEXP (x, 0), 0);
3710 /* FALLTHRU */
3712 case LABEL_REF:
3713 tmp = XEXP (x, 0);
3714 gcc_assert (!INSN_DELETED_P (tmp));
3715 gcc_assert (!NOTE_P (tmp)
3716 || NOTE_KIND (tmp) != NOTE_INSN_DELETED);
3717 break;
3719 default:
3720 break;
3723 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3724 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file, x, desc->mode,
3725 align, desc->labelno, done);
3726 #endif
3728 assemble_align (align);
3730 /* Output the label. */
3731 targetm.asm_out.internal_label (asm_out_file, "LC", desc->labelno);
3733 /* Output the data. */
3734 output_constant_pool_2 (desc->mode, x, align);
3736 /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
3737 sections have proper size. */
3738 if (align > GET_MODE_BITSIZE (desc->mode)
3739 && in_section
3740 && (in_section->common.flags & SECTION_MERGE))
3741 assemble_align (align);
3743 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3744 done:
3745 #endif
3746 return;
3749 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3750 to as used. Emit referenced deferred strings. This function can
3751 be used with for_each_rtx to mark all SYMBOL_REFs in an rtx. */
3753 static int
3754 mark_constant (rtx *current_rtx, void *data ATTRIBUTE_UNUSED)
3756 rtx x = *current_rtx;
3758 if (x == NULL_RTX || GET_CODE (x) != SYMBOL_REF)
3759 return 0;
3761 if (CONSTANT_POOL_ADDRESS_P (x))
3763 struct constant_descriptor_rtx *desc = SYMBOL_REF_CONSTANT (x);
3764 if (desc->mark == 0)
3766 desc->mark = 1;
3767 for_each_rtx (&desc->constant, mark_constant, NULL);
3770 else if (TREE_CONSTANT_POOL_ADDRESS_P (x))
3772 tree exp = SYMBOL_REF_DECL (x);
3773 if (!TREE_ASM_WRITTEN (exp))
3775 n_deferred_constants--;
3776 output_constant_def_contents (x);
3780 return -1;
3783 /* Look through appropriate parts of INSN, marking all entries in the
3784 constant pool which are actually being used. Entries that are only
3785 referenced by other constants are also marked as used. Emit
3786 deferred strings that are used. */
3788 static void
3789 mark_constants (rtx insn)
3791 if (!INSN_P (insn))
3792 return;
3794 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3795 insns, not any notes that may be attached. We don't want to mark
3796 a constant just because it happens to appear in a REG_EQUIV note. */
3797 if (GET_CODE (PATTERN (insn)) == SEQUENCE)
3799 rtx seq = PATTERN (insn);
3800 int i, n = XVECLEN (seq, 0);
3801 for (i = 0; i < n; ++i)
3803 rtx subinsn = XVECEXP (seq, 0, i);
3804 if (INSN_P (subinsn))
3805 for_each_rtx (&PATTERN (subinsn), mark_constant, NULL);
3808 else
3809 for_each_rtx (&PATTERN (insn), mark_constant, NULL);
3812 /* Look through the instructions for this function, and mark all the
3813 entries in POOL which are actually being used. Emit deferred constants
3814 which have indeed been used. */
3816 static void
3817 mark_constant_pool (void)
3819 rtx insn, link;
3821 if (!current_function_uses_const_pool && n_deferred_constants == 0)
3822 return;
3824 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3825 mark_constants (insn);
3827 for (link = current_function_epilogue_delay_list;
3828 link;
3829 link = XEXP (link, 1))
3830 mark_constants (XEXP (link, 0));
3833 /* Write all the constants in POOL. */
3835 static void
3836 output_constant_pool_contents (struct rtx_constant_pool *pool)
3838 struct constant_descriptor_rtx *desc;
3840 for (desc = pool->first; desc ; desc = desc->next)
3841 if (desc->mark)
3843 /* If the constant is part of an object_block, make sure that
3844 the constant has been positioned within its block, but do not
3845 write out its definition yet. output_object_blocks will do
3846 that later. */
3847 if (SYMBOL_REF_HAS_BLOCK_INFO_P (desc->sym)
3848 && SYMBOL_REF_BLOCK (desc->sym))
3849 place_block_symbol (desc->sym);
3850 else
3852 switch_to_section (targetm.asm_out.select_rtx_section
3853 (desc->mode, desc->constant, desc->align));
3854 output_constant_pool_1 (desc, desc->align);
3859 /* Mark all constants that are used in the current function, then write
3860 out the function's private constant pool. */
3862 static void
3863 output_constant_pool (const char *fnname ATTRIBUTE_UNUSED,
3864 tree fndecl ATTRIBUTE_UNUSED)
3866 struct rtx_constant_pool *pool = cfun->varasm->pool;
3868 /* It is possible for gcc to call force_const_mem and then to later
3869 discard the instructions which refer to the constant. In such a
3870 case we do not need to output the constant. */
3871 mark_constant_pool ();
3873 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3874 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file, fnname, fndecl, pool->offset);
3875 #endif
3877 output_constant_pool_contents (pool);
3879 #ifdef ASM_OUTPUT_POOL_EPILOGUE
3880 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file, fnname, fndecl, pool->offset);
3881 #endif
3884 /* Write the contents of the shared constant pool. */
3886 void
3887 output_shared_constant_pool (void)
3889 output_constant_pool_contents (shared_constant_pool);
3892 /* Determine what kind of relocations EXP may need. */
3895 compute_reloc_for_constant (tree exp)
3897 int reloc = 0, reloc2;
3898 tree tem;
3900 switch (TREE_CODE (exp))
3902 case ADDR_EXPR:
3903 case FDESC_EXPR:
3904 /* Go inside any operations that get_inner_reference can handle and see
3905 if what's inside is a constant: no need to do anything here for
3906 addresses of variables or functions. */
3907 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
3908 tem = TREE_OPERAND (tem, 0))
3911 if (TREE_PUBLIC (tem))
3912 reloc |= 2;
3913 else
3914 reloc |= 1;
3915 break;
3917 case PLUS_EXPR:
3918 case POINTER_PLUS_EXPR:
3919 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3920 reloc |= compute_reloc_for_constant (TREE_OPERAND (exp, 1));
3921 break;
3923 case MINUS_EXPR:
3924 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3925 reloc2 = compute_reloc_for_constant (TREE_OPERAND (exp, 1));
3926 /* The difference of two local labels is computable at link time. */
3927 if (reloc == 1 && reloc2 == 1)
3928 reloc = 0;
3929 else
3930 reloc |= reloc2;
3931 break;
3933 case NOP_EXPR:
3934 case CONVERT_EXPR:
3935 case NON_LVALUE_EXPR:
3936 case VIEW_CONVERT_EXPR:
3937 reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
3938 break;
3940 case CONSTRUCTOR:
3942 unsigned HOST_WIDE_INT idx;
3943 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, tem)
3944 if (tem != 0)
3945 reloc |= compute_reloc_for_constant (tem);
3947 break;
3949 default:
3950 break;
3952 return reloc;
3955 /* Find all the constants whose addresses are referenced inside of EXP,
3956 and make sure assembler code with a label has been output for each one.
3957 Indicate whether an ADDR_EXPR has been encountered. */
3959 static void
3960 output_addressed_constants (tree exp)
3962 tree tem;
3964 switch (TREE_CODE (exp))
3966 case ADDR_EXPR:
3967 case FDESC_EXPR:
3968 /* Go inside any operations that get_inner_reference can handle and see
3969 if what's inside is a constant: no need to do anything here for
3970 addresses of variables or functions. */
3971 for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
3972 tem = TREE_OPERAND (tem, 0))
3975 /* If we have an initialized CONST_DECL, retrieve the initializer. */
3976 if (TREE_CODE (tem) == CONST_DECL && DECL_INITIAL (tem))
3977 tem = DECL_INITIAL (tem);
3979 if (CONSTANT_CLASS_P (tem) || TREE_CODE (tem) == CONSTRUCTOR)
3980 output_constant_def (tem, 0);
3981 break;
3983 case PLUS_EXPR:
3984 case POINTER_PLUS_EXPR:
3985 case MINUS_EXPR:
3986 output_addressed_constants (TREE_OPERAND (exp, 1));
3987 /* Fall through. */
3989 case NOP_EXPR:
3990 case CONVERT_EXPR:
3991 case NON_LVALUE_EXPR:
3992 case VIEW_CONVERT_EXPR:
3993 output_addressed_constants (TREE_OPERAND (exp, 0));
3994 break;
3996 case CONSTRUCTOR:
3998 unsigned HOST_WIDE_INT idx;
3999 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, tem)
4000 if (tem != 0)
4001 output_addressed_constants (tem);
4003 break;
4005 default:
4006 break;
4010 /* Whether a constructor CTOR is a valid static constant initializer if all
4011 its elements are. This used to be internal to initializer_constant_valid_p
4012 and has been exposed to let other functions like categorize_ctor_elements
4013 evaluate the property while walking a constructor for other purposes. */
4015 bool
4016 constructor_static_from_elts_p (const_tree ctor)
4018 return (TREE_CONSTANT (ctor)
4019 && (TREE_CODE (TREE_TYPE (ctor)) == UNION_TYPE
4020 || TREE_CODE (TREE_TYPE (ctor)) == RECORD_TYPE)
4021 && !VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (ctor)));
4024 /* Return nonzero if VALUE is a valid constant-valued expression
4025 for use in initializing a static variable; one that can be an
4026 element of a "constant" initializer.
4028 Return null_pointer_node if the value is absolute;
4029 if it is relocatable, return the variable that determines the relocation.
4030 We assume that VALUE has been folded as much as possible;
4031 therefore, we do not need to check for such things as
4032 arithmetic-combinations of integers. */
4034 tree
4035 initializer_constant_valid_p (tree value, tree endtype)
4037 switch (TREE_CODE (value))
4039 case CONSTRUCTOR:
4040 if (constructor_static_from_elts_p (value))
4042 unsigned HOST_WIDE_INT idx;
4043 tree elt;
4044 bool absolute = true;
4046 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value), idx, elt)
4048 tree reloc;
4049 reloc = initializer_constant_valid_p (elt, TREE_TYPE (elt));
4050 if (!reloc)
4051 return NULL_TREE;
4052 if (reloc != null_pointer_node)
4053 absolute = false;
4055 /* For a non-absolute relocation, there is no single
4056 variable that can be "the variable that determines the
4057 relocation." */
4058 return absolute ? null_pointer_node : error_mark_node;
4061 return TREE_STATIC (value) ? null_pointer_node : NULL_TREE;
4063 case INTEGER_CST:
4064 case VECTOR_CST:
4065 case REAL_CST:
4066 case FIXED_CST:
4067 case STRING_CST:
4068 case COMPLEX_CST:
4069 return null_pointer_node;
4071 case ADDR_EXPR:
4072 case FDESC_EXPR:
4073 value = staticp (TREE_OPERAND (value, 0));
4074 if (value)
4076 /* "&(*a).f" is like unto pointer arithmetic. If "a" turns out to
4077 be a constant, this is old-skool offsetof-like nonsense. */
4078 if (TREE_CODE (value) == INDIRECT_REF
4079 && TREE_CONSTANT (TREE_OPERAND (value, 0)))
4080 return null_pointer_node;
4081 /* Taking the address of a nested function involves a trampoline. */
4082 if (TREE_CODE (value) == FUNCTION_DECL
4083 && decl_function_context (value)
4084 && !DECL_NO_STATIC_CHAIN (value))
4085 return NULL_TREE;
4086 /* "&{...}" requires a temporary to hold the constructed
4087 object. */
4088 if (TREE_CODE (value) == CONSTRUCTOR)
4089 return NULL_TREE;
4091 return value;
4093 case VIEW_CONVERT_EXPR:
4094 case NON_LVALUE_EXPR:
4095 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
4097 case CONVERT_EXPR:
4098 case NOP_EXPR:
4100 tree src;
4101 tree src_type;
4102 tree dest_type;
4104 src = TREE_OPERAND (value, 0);
4105 src_type = TREE_TYPE (src);
4106 dest_type = TREE_TYPE (value);
4108 /* Allow conversions between pointer types, floating-point
4109 types, and offset types. */
4110 if ((POINTER_TYPE_P (dest_type) && POINTER_TYPE_P (src_type))
4111 || (FLOAT_TYPE_P (dest_type) && FLOAT_TYPE_P (src_type))
4112 || (TREE_CODE (dest_type) == OFFSET_TYPE
4113 && TREE_CODE (src_type) == OFFSET_TYPE))
4114 return initializer_constant_valid_p (src, endtype);
4116 /* Allow length-preserving conversions between integer types. */
4117 if (INTEGRAL_TYPE_P (dest_type) && INTEGRAL_TYPE_P (src_type)
4118 && (TYPE_PRECISION (dest_type) == TYPE_PRECISION (src_type)))
4119 return initializer_constant_valid_p (src, endtype);
4121 /* Allow conversions between other integer types only if
4122 explicit value. */
4123 if (INTEGRAL_TYPE_P (dest_type) && INTEGRAL_TYPE_P (src_type))
4125 tree inner = initializer_constant_valid_p (src, endtype);
4126 if (inner == null_pointer_node)
4127 return null_pointer_node;
4128 break;
4131 /* Allow (int) &foo provided int is as wide as a pointer. */
4132 if (INTEGRAL_TYPE_P (dest_type) && POINTER_TYPE_P (src_type)
4133 && (TYPE_PRECISION (dest_type) >= TYPE_PRECISION (src_type)))
4134 return initializer_constant_valid_p (src, endtype);
4136 /* Likewise conversions from int to pointers, but also allow
4137 conversions from 0. */
4138 if ((POINTER_TYPE_P (dest_type)
4139 || TREE_CODE (dest_type) == OFFSET_TYPE)
4140 && INTEGRAL_TYPE_P (src_type))
4142 if (TREE_CODE (src) == INTEGER_CST
4143 && TYPE_PRECISION (dest_type) >= TYPE_PRECISION (src_type))
4144 return null_pointer_node;
4145 if (integer_zerop (src))
4146 return null_pointer_node;
4147 else if (TYPE_PRECISION (dest_type) <= TYPE_PRECISION (src_type))
4148 return initializer_constant_valid_p (src, endtype);
4151 /* Allow conversions to struct or union types if the value
4152 inside is okay. */
4153 if (TREE_CODE (dest_type) == RECORD_TYPE
4154 || TREE_CODE (dest_type) == UNION_TYPE)
4155 return initializer_constant_valid_p (src, endtype);
4157 break;
4159 case POINTER_PLUS_EXPR:
4160 case PLUS_EXPR:
4161 if (! INTEGRAL_TYPE_P (endtype)
4162 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
4164 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
4165 endtype);
4166 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
4167 endtype);
4168 /* If either term is absolute, use the other term's relocation. */
4169 if (valid0 == null_pointer_node)
4170 return valid1;
4171 if (valid1 == null_pointer_node)
4172 return valid0;
4174 break;
4176 case MINUS_EXPR:
4177 if (! INTEGRAL_TYPE_P (endtype)
4178 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
4180 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
4181 endtype);
4182 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
4183 endtype);
4184 /* Win if second argument is absolute. */
4185 if (valid1 == null_pointer_node)
4186 return valid0;
4187 /* Win if both arguments have the same relocation.
4188 Then the value is absolute. */
4189 if (valid0 == valid1 && valid0 != 0)
4190 return null_pointer_node;
4192 /* Since GCC guarantees that string constants are unique in the
4193 generated code, a subtraction between two copies of the same
4194 constant string is absolute. */
4195 if (valid0 && TREE_CODE (valid0) == STRING_CST
4196 && valid1 && TREE_CODE (valid1) == STRING_CST
4197 && operand_equal_p (valid0, valid1, 1))
4198 return null_pointer_node;
4201 /* Support narrowing differences. */
4202 if (INTEGRAL_TYPE_P (endtype))
4204 tree op0, op1;
4206 op0 = TREE_OPERAND (value, 0);
4207 op1 = TREE_OPERAND (value, 1);
4209 /* Like STRIP_NOPS except allow the operand mode to widen.
4210 This works around a feature of fold that simplifies
4211 (int)(p1 - p2) to ((int)p1 - (int)p2) under the theory
4212 that the narrower operation is cheaper. */
4214 while (TREE_CODE (op0) == NOP_EXPR
4215 || TREE_CODE (op0) == CONVERT_EXPR
4216 || TREE_CODE (op0) == NON_LVALUE_EXPR)
4218 tree inner = TREE_OPERAND (op0, 0);
4219 if (inner == error_mark_node
4220 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
4221 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0)))
4222 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
4223 break;
4224 op0 = inner;
4227 while (TREE_CODE (op1) == NOP_EXPR
4228 || TREE_CODE (op1) == CONVERT_EXPR
4229 || TREE_CODE (op1) == NON_LVALUE_EXPR)
4231 tree inner = TREE_OPERAND (op1, 0);
4232 if (inner == error_mark_node
4233 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
4234 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op1)))
4235 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
4236 break;
4237 op1 = inner;
4240 op0 = initializer_constant_valid_p (op0, endtype);
4241 op1 = initializer_constant_valid_p (op1, endtype);
4243 /* Both initializers must be known. */
4244 if (op0 && op1)
4246 if (op0 == op1)
4247 return null_pointer_node;
4249 /* Support differences between labels. */
4250 if (TREE_CODE (op0) == LABEL_DECL
4251 && TREE_CODE (op1) == LABEL_DECL)
4252 return null_pointer_node;
4254 if (TREE_CODE (op0) == STRING_CST
4255 && TREE_CODE (op1) == STRING_CST
4256 && operand_equal_p (op0, op1, 1))
4257 return null_pointer_node;
4260 break;
4262 default:
4263 break;
4266 return 0;
4269 /* Output assembler code for constant EXP to FILE, with no label.
4270 This includes the pseudo-op such as ".int" or ".byte", and a newline.
4271 Assumes output_addressed_constants has been done on EXP already.
4273 Generate exactly SIZE bytes of assembler data, padding at the end
4274 with zeros if necessary. SIZE must always be specified.
4276 SIZE is important for structure constructors,
4277 since trailing members may have been omitted from the constructor.
4278 It is also important for initialization of arrays from string constants
4279 since the full length of the string constant might not be wanted.
4280 It is also needed for initialization of unions, where the initializer's
4281 type is just one member, and that may not be as long as the union.
4283 There a case in which we would fail to output exactly SIZE bytes:
4284 for a structure constructor that wants to produce more than SIZE bytes.
4285 But such constructors will never be generated for any possible input.
4287 ALIGN is the alignment of the data in bits. */
4289 void
4290 output_constant (tree exp, unsigned HOST_WIDE_INT size, unsigned int align)
4292 enum tree_code code;
4293 unsigned HOST_WIDE_INT thissize;
4295 if (size == 0 || flag_syntax_only)
4296 return;
4298 /* See if we're trying to initialize a pointer in a non-default mode
4299 to the address of some declaration somewhere. If the target says
4300 the mode is valid for pointers, assume the target has a way of
4301 resolving it. */
4302 if (TREE_CODE (exp) == NOP_EXPR
4303 && POINTER_TYPE_P (TREE_TYPE (exp))
4304 && targetm.valid_pointer_mode (TYPE_MODE (TREE_TYPE (exp))))
4306 tree saved_type = TREE_TYPE (exp);
4308 /* Peel off any intermediate conversions-to-pointer for valid
4309 pointer modes. */
4310 while (TREE_CODE (exp) == NOP_EXPR
4311 && POINTER_TYPE_P (TREE_TYPE (exp))
4312 && targetm.valid_pointer_mode (TYPE_MODE (TREE_TYPE (exp))))
4313 exp = TREE_OPERAND (exp, 0);
4315 /* If what we're left with is the address of something, we can
4316 convert the address to the final type and output it that
4317 way. */
4318 if (TREE_CODE (exp) == ADDR_EXPR)
4319 exp = build1 (ADDR_EXPR, saved_type, TREE_OPERAND (exp, 0));
4320 /* Likewise for constant ints. */
4321 else if (TREE_CODE (exp) == INTEGER_CST)
4322 exp = build_int_cst_wide (saved_type, TREE_INT_CST_LOW (exp),
4323 TREE_INT_CST_HIGH (exp));
4327 /* Eliminate any conversions since we'll be outputting the underlying
4328 constant. */
4329 while (TREE_CODE (exp) == NOP_EXPR || TREE_CODE (exp) == CONVERT_EXPR
4330 || TREE_CODE (exp) == NON_LVALUE_EXPR
4331 || TREE_CODE (exp) == VIEW_CONVERT_EXPR)
4333 HOST_WIDE_INT type_size = int_size_in_bytes (TREE_TYPE (exp));
4334 HOST_WIDE_INT op_size = int_size_in_bytes (TREE_TYPE (TREE_OPERAND (exp, 0)));
4336 /* Make sure eliminating the conversion is really a no-op, except with
4337 VIEW_CONVERT_EXPRs to allow for wild Ada unchecked conversions and
4338 union types to allow for Ada unchecked unions. */
4339 if (type_size > op_size
4340 && TREE_CODE (exp) != VIEW_CONVERT_EXPR
4341 && TREE_CODE (TREE_TYPE (exp)) != UNION_TYPE)
4342 /* Keep the conversion. */
4343 break;
4344 else
4345 exp = TREE_OPERAND (exp, 0);
4348 code = TREE_CODE (TREE_TYPE (exp));
4349 thissize = int_size_in_bytes (TREE_TYPE (exp));
4351 /* Allow a constructor with no elements for any data type.
4352 This means to fill the space with zeros. */
4353 if (TREE_CODE (exp) == CONSTRUCTOR
4354 && VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (exp)))
4356 assemble_zeros (size);
4357 return;
4360 if (TREE_CODE (exp) == FDESC_EXPR)
4362 #ifdef ASM_OUTPUT_FDESC
4363 HOST_WIDE_INT part = tree_low_cst (TREE_OPERAND (exp, 1), 0);
4364 tree decl = TREE_OPERAND (exp, 0);
4365 ASM_OUTPUT_FDESC (asm_out_file, decl, part);
4366 #else
4367 gcc_unreachable ();
4368 #endif
4369 return;
4372 /* Now output the underlying data. If we've handling the padding, return.
4373 Otherwise, break and ensure SIZE is the size written. */
4374 switch (code)
4376 case BOOLEAN_TYPE:
4377 case INTEGER_TYPE:
4378 case ENUMERAL_TYPE:
4379 case POINTER_TYPE:
4380 case REFERENCE_TYPE:
4381 case OFFSET_TYPE:
4382 case FIXED_POINT_TYPE:
4383 if (! assemble_integer (expand_expr (exp, NULL_RTX, VOIDmode,
4384 EXPAND_INITIALIZER),
4385 MIN (size, thissize), align, 0))
4386 error ("initializer for integer/fixed-point value is too complicated");
4387 break;
4389 case REAL_TYPE:
4390 if (TREE_CODE (exp) != REAL_CST)
4391 error ("initializer for floating value is not a floating constant");
4393 assemble_real (TREE_REAL_CST (exp), TYPE_MODE (TREE_TYPE (exp)), align);
4394 break;
4396 case COMPLEX_TYPE:
4397 output_constant (TREE_REALPART (exp), thissize / 2, align);
4398 output_constant (TREE_IMAGPART (exp), thissize / 2,
4399 min_align (align, BITS_PER_UNIT * (thissize / 2)));
4400 break;
4402 case ARRAY_TYPE:
4403 case VECTOR_TYPE:
4404 switch (TREE_CODE (exp))
4406 case CONSTRUCTOR:
4407 output_constructor (exp, size, align);
4408 return;
4409 case STRING_CST:
4410 thissize = MIN ((unsigned HOST_WIDE_INT)TREE_STRING_LENGTH (exp),
4411 size);
4412 assemble_string (TREE_STRING_POINTER (exp), thissize);
4413 break;
4415 case VECTOR_CST:
4417 int elt_size;
4418 tree link;
4419 unsigned int nalign;
4420 enum machine_mode inner;
4422 inner = TYPE_MODE (TREE_TYPE (TREE_TYPE (exp)));
4423 nalign = MIN (align, GET_MODE_ALIGNMENT (inner));
4425 elt_size = GET_MODE_SIZE (inner);
4427 link = TREE_VECTOR_CST_ELTS (exp);
4428 output_constant (TREE_VALUE (link), elt_size, align);
4429 thissize = elt_size;
4430 while ((link = TREE_CHAIN (link)) != NULL)
4432 output_constant (TREE_VALUE (link), elt_size, nalign);
4433 thissize += elt_size;
4435 break;
4437 default:
4438 gcc_unreachable ();
4440 break;
4442 case RECORD_TYPE:
4443 case UNION_TYPE:
4444 gcc_assert (TREE_CODE (exp) == CONSTRUCTOR);
4445 output_constructor (exp, size, align);
4446 return;
4448 case ERROR_MARK:
4449 return;
4451 default:
4452 gcc_unreachable ();
4455 if (size > thissize)
4456 assemble_zeros (size - thissize);
4460 /* Subroutine of output_constructor, used for computing the size of
4461 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
4462 type with an unspecified upper bound. */
4464 static unsigned HOST_WIDE_INT
4465 array_size_for_constructor (tree val)
4467 tree max_index, i;
4468 unsigned HOST_WIDE_INT cnt;
4469 tree index, value, tmp;
4471 /* This code used to attempt to handle string constants that are not
4472 arrays of single-bytes, but nothing else does, so there's no point in
4473 doing it here. */
4474 if (TREE_CODE (val) == STRING_CST)
4475 return TREE_STRING_LENGTH (val);
4477 max_index = NULL_TREE;
4478 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (val), cnt, index, value)
4480 if (TREE_CODE (index) == RANGE_EXPR)
4481 index = TREE_OPERAND (index, 1);
4482 if (max_index == NULL_TREE || tree_int_cst_lt (max_index, index))
4483 max_index = index;
4486 if (max_index == NULL_TREE)
4487 return 0;
4489 /* Compute the total number of array elements. */
4490 tmp = TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val)));
4491 i = size_binop (MINUS_EXPR, fold_convert (sizetype, max_index),
4492 fold_convert (sizetype, tmp));
4493 i = size_binop (PLUS_EXPR, i, build_int_cst (sizetype, 1));
4495 /* Multiply by the array element unit size to find number of bytes. */
4496 i = size_binop (MULT_EXPR, i, TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val))));
4498 return tree_low_cst (i, 1);
4501 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
4502 Generate at least SIZE bytes, padding if necessary. */
4504 static void
4505 output_constructor (tree exp, unsigned HOST_WIDE_INT size,
4506 unsigned int align)
4508 tree type = TREE_TYPE (exp);
4509 tree field = 0;
4510 tree min_index = 0;
4511 /* Number of bytes output or skipped so far.
4512 In other words, current position within the constructor. */
4513 HOST_WIDE_INT total_bytes = 0;
4514 /* Nonzero means BYTE contains part of a byte, to be output. */
4515 int byte_buffer_in_use = 0;
4516 int byte = 0;
4517 unsigned HOST_WIDE_INT cnt;
4518 constructor_elt *ce;
4520 gcc_assert (HOST_BITS_PER_WIDE_INT >= BITS_PER_UNIT);
4522 if (TREE_CODE (type) == RECORD_TYPE)
4523 field = TYPE_FIELDS (type);
4525 if (TREE_CODE (type) == ARRAY_TYPE
4526 && TYPE_DOMAIN (type) != 0)
4527 min_index = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
4529 /* As LINK goes through the elements of the constant,
4530 FIELD goes through the structure fields, if the constant is a structure.
4531 if the constant is a union, then we override this,
4532 by getting the field from the TREE_LIST element.
4533 But the constant could also be an array. Then FIELD is zero.
4535 There is always a maximum of one element in the chain LINK for unions
4536 (even if the initializer in a source program incorrectly contains
4537 more one). */
4538 for (cnt = 0;
4539 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (exp), cnt, ce);
4540 cnt++, field = field ? TREE_CHAIN (field) : 0)
4542 tree val = ce->value;
4543 tree index = 0;
4545 /* The element in a union constructor specifies the proper field
4546 or index. */
4547 if ((TREE_CODE (type) == RECORD_TYPE || TREE_CODE (type) == UNION_TYPE
4548 || TREE_CODE (type) == QUAL_UNION_TYPE)
4549 && ce->index != 0)
4550 field = ce->index;
4552 else if (TREE_CODE (type) == ARRAY_TYPE)
4553 index = ce->index;
4555 #ifdef ASM_COMMENT_START
4556 if (field && flag_verbose_asm)
4557 fprintf (asm_out_file, "%s %s:\n",
4558 ASM_COMMENT_START,
4559 DECL_NAME (field)
4560 ? IDENTIFIER_POINTER (DECL_NAME (field))
4561 : "<anonymous>");
4562 #endif
4564 /* Eliminate the marker that makes a cast not be an lvalue. */
4565 if (val != 0)
4566 STRIP_NOPS (val);
4568 if (index && TREE_CODE (index) == RANGE_EXPR)
4570 unsigned HOST_WIDE_INT fieldsize
4571 = int_size_in_bytes (TREE_TYPE (type));
4572 HOST_WIDE_INT lo_index = tree_low_cst (TREE_OPERAND (index, 0), 0);
4573 HOST_WIDE_INT hi_index = tree_low_cst (TREE_OPERAND (index, 1), 0);
4574 HOST_WIDE_INT index;
4575 unsigned int align2 = min_align (align, fieldsize * BITS_PER_UNIT);
4577 for (index = lo_index; index <= hi_index; index++)
4579 /* Output the element's initial value. */
4580 if (val == 0)
4581 assemble_zeros (fieldsize);
4582 else
4583 output_constant (val, fieldsize, align2);
4585 /* Count its size. */
4586 total_bytes += fieldsize;
4589 else if (field == 0 || !DECL_BIT_FIELD (field))
4591 /* An element that is not a bit-field. */
4593 unsigned HOST_WIDE_INT fieldsize;
4594 /* Since this structure is static,
4595 we know the positions are constant. */
4596 HOST_WIDE_INT pos = field ? int_byte_position (field) : 0;
4597 unsigned int align2;
4599 if (index != 0)
4600 pos = (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (val)), 1)
4601 * (tree_low_cst (index, 0) - tree_low_cst (min_index, 0)));
4603 /* Output any buffered-up bit-fields preceding this element. */
4604 if (byte_buffer_in_use)
4606 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4607 total_bytes++;
4608 byte_buffer_in_use = 0;
4611 /* Advance to offset of this element.
4612 Note no alignment needed in an array, since that is guaranteed
4613 if each element has the proper size. */
4614 if ((field != 0 || index != 0) && pos != total_bytes)
4616 gcc_assert (pos >= total_bytes);
4617 assemble_zeros (pos - total_bytes);
4618 total_bytes = pos;
4621 /* Find the alignment of this element. */
4622 align2 = min_align (align, BITS_PER_UNIT * pos);
4624 /* Determine size this element should occupy. */
4625 if (field)
4627 fieldsize = 0;
4629 /* If this is an array with an unspecified upper bound,
4630 the initializer determines the size. */
4631 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4632 but we cannot do this until the deprecated support for
4633 initializing zero-length array members is removed. */
4634 if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
4635 && TYPE_DOMAIN (TREE_TYPE (field))
4636 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field))))
4638 fieldsize = array_size_for_constructor (val);
4639 /* Given a non-empty initialization, this field had
4640 better be last. */
4641 gcc_assert (!fieldsize || !TREE_CHAIN (field));
4643 else if (DECL_SIZE_UNIT (field))
4645 /* ??? This can't be right. If the decl size overflows
4646 a host integer we will silently emit no data. */
4647 if (host_integerp (DECL_SIZE_UNIT (field), 1))
4648 fieldsize = tree_low_cst (DECL_SIZE_UNIT (field), 1);
4651 else
4652 fieldsize = int_size_in_bytes (TREE_TYPE (type));
4654 /* Output the element's initial value. */
4655 if (val == 0)
4656 assemble_zeros (fieldsize);
4657 else
4658 output_constant (val, fieldsize, align2);
4660 /* Count its size. */
4661 total_bytes += fieldsize;
4663 else if (val != 0 && TREE_CODE (val) != INTEGER_CST)
4664 error ("invalid initial value for member %qs",
4665 IDENTIFIER_POINTER (DECL_NAME (field)));
4666 else
4668 /* Element that is a bit-field. */
4670 HOST_WIDE_INT next_offset = int_bit_position (field);
4671 HOST_WIDE_INT end_offset
4672 = (next_offset + tree_low_cst (DECL_SIZE (field), 1));
4674 if (val == 0)
4675 val = integer_zero_node;
4677 /* If this field does not start in this (or, next) byte,
4678 skip some bytes. */
4679 if (next_offset / BITS_PER_UNIT != total_bytes)
4681 /* Output remnant of any bit field in previous bytes. */
4682 if (byte_buffer_in_use)
4684 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4685 total_bytes++;
4686 byte_buffer_in_use = 0;
4689 /* If still not at proper byte, advance to there. */
4690 if (next_offset / BITS_PER_UNIT != total_bytes)
4692 gcc_assert (next_offset / BITS_PER_UNIT >= total_bytes);
4693 assemble_zeros (next_offset / BITS_PER_UNIT - total_bytes);
4694 total_bytes = next_offset / BITS_PER_UNIT;
4698 if (! byte_buffer_in_use)
4699 byte = 0;
4701 /* We must split the element into pieces that fall within
4702 separate bytes, and combine each byte with previous or
4703 following bit-fields. */
4705 /* next_offset is the offset n fbits from the beginning of
4706 the structure to the next bit of this element to be processed.
4707 end_offset is the offset of the first bit past the end of
4708 this element. */
4709 while (next_offset < end_offset)
4711 int this_time;
4712 int shift;
4713 HOST_WIDE_INT value;
4714 HOST_WIDE_INT next_byte = next_offset / BITS_PER_UNIT;
4715 HOST_WIDE_INT next_bit = next_offset % BITS_PER_UNIT;
4717 /* Advance from byte to byte
4718 within this element when necessary. */
4719 while (next_byte != total_bytes)
4721 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4722 total_bytes++;
4723 byte = 0;
4726 /* Number of bits we can process at once
4727 (all part of the same byte). */
4728 this_time = MIN (end_offset - next_offset,
4729 BITS_PER_UNIT - next_bit);
4730 if (BYTES_BIG_ENDIAN)
4732 /* On big-endian machine, take the most significant bits
4733 first (of the bits that are significant)
4734 and put them into bytes from the most significant end. */
4735 shift = end_offset - next_offset - this_time;
4737 /* Don't try to take a bunch of bits that cross
4738 the word boundary in the INTEGER_CST. We can
4739 only select bits from the LOW or HIGH part
4740 not from both. */
4741 if (shift < HOST_BITS_PER_WIDE_INT
4742 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4744 this_time = shift + this_time - HOST_BITS_PER_WIDE_INT;
4745 shift = HOST_BITS_PER_WIDE_INT;
4748 /* Now get the bits from the appropriate constant word. */
4749 if (shift < HOST_BITS_PER_WIDE_INT)
4750 value = TREE_INT_CST_LOW (val);
4751 else
4753 gcc_assert (shift < 2 * HOST_BITS_PER_WIDE_INT);
4754 value = TREE_INT_CST_HIGH (val);
4755 shift -= HOST_BITS_PER_WIDE_INT;
4758 /* Get the result. This works only when:
4759 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4760 byte |= (((value >> shift)
4761 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4762 << (BITS_PER_UNIT - this_time - next_bit));
4764 else
4766 /* On little-endian machines,
4767 take first the least significant bits of the value
4768 and pack them starting at the least significant
4769 bits of the bytes. */
4770 shift = next_offset - int_bit_position (field);
4772 /* Don't try to take a bunch of bits that cross
4773 the word boundary in the INTEGER_CST. We can
4774 only select bits from the LOW or HIGH part
4775 not from both. */
4776 if (shift < HOST_BITS_PER_WIDE_INT
4777 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4778 this_time = (HOST_BITS_PER_WIDE_INT - shift);
4780 /* Now get the bits from the appropriate constant word. */
4781 if (shift < HOST_BITS_PER_WIDE_INT)
4782 value = TREE_INT_CST_LOW (val);
4783 else
4785 gcc_assert (shift < 2 * HOST_BITS_PER_WIDE_INT);
4786 value = TREE_INT_CST_HIGH (val);
4787 shift -= HOST_BITS_PER_WIDE_INT;
4790 /* Get the result. This works only when:
4791 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4792 byte |= (((value >> shift)
4793 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4794 << next_bit);
4797 next_offset += this_time;
4798 byte_buffer_in_use = 1;
4803 if (byte_buffer_in_use)
4805 assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4806 total_bytes++;
4809 if ((unsigned HOST_WIDE_INT)total_bytes < size)
4810 assemble_zeros (size - total_bytes);
4813 /* This TREE_LIST contains any weak symbol declarations waiting
4814 to be emitted. */
4815 static GTY(()) tree weak_decls;
4817 /* Mark DECL as weak. */
4819 static void
4820 mark_weak (tree decl)
4822 DECL_WEAK (decl) = 1;
4824 if (DECL_RTL_SET_P (decl)
4825 && MEM_P (DECL_RTL (decl))
4826 && XEXP (DECL_RTL (decl), 0)
4827 && GET_CODE (XEXP (DECL_RTL (decl), 0)) == SYMBOL_REF)
4828 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl), 0)) = 1;
4831 /* Merge weak status between NEWDECL and OLDDECL. */
4833 void
4834 merge_weak (tree newdecl, tree olddecl)
4836 if (DECL_WEAK (newdecl) == DECL_WEAK (olddecl))
4838 if (DECL_WEAK (newdecl) && SUPPORTS_WEAK)
4840 tree *pwd;
4841 /* We put the NEWDECL on the weak_decls list at some point
4842 and OLDDECL as well. Keep just OLDDECL on the list. */
4843 for (pwd = &weak_decls; *pwd; pwd = &TREE_CHAIN (*pwd))
4844 if (TREE_VALUE (*pwd) == newdecl)
4846 *pwd = TREE_CHAIN (*pwd);
4847 break;
4850 return;
4853 if (DECL_WEAK (newdecl))
4855 tree wd;
4857 /* NEWDECL is weak, but OLDDECL is not. */
4859 /* If we already output the OLDDECL, we're in trouble; we can't
4860 go back and make it weak. This error cannot caught in
4861 declare_weak because the NEWDECL and OLDDECL was not yet
4862 been merged; therefore, TREE_ASM_WRITTEN was not set. */
4863 if (TREE_ASM_WRITTEN (olddecl))
4864 error ("weak declaration of %q+D must precede definition",
4865 newdecl);
4867 /* If we've already generated rtl referencing OLDDECL, we may
4868 have done so in a way that will not function properly with
4869 a weak symbol. */
4870 else if (TREE_USED (olddecl)
4871 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl)))
4872 warning (0, "weak declaration of %q+D after first use results "
4873 "in unspecified behavior", newdecl);
4875 if (SUPPORTS_WEAK)
4877 /* We put the NEWDECL on the weak_decls list at some point.
4878 Replace it with the OLDDECL. */
4879 for (wd = weak_decls; wd; wd = TREE_CHAIN (wd))
4880 if (TREE_VALUE (wd) == newdecl)
4882 TREE_VALUE (wd) = olddecl;
4883 break;
4885 /* We may not find the entry on the list. If NEWDECL is a
4886 weak alias, then we will have already called
4887 globalize_decl to remove the entry; in that case, we do
4888 not need to do anything. */
4891 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
4892 mark_weak (olddecl);
4894 else
4895 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
4896 weak. Just update NEWDECL to indicate that it's weak too. */
4897 mark_weak (newdecl);
4900 /* Declare DECL to be a weak symbol. */
4902 void
4903 declare_weak (tree decl)
4905 if (! TREE_PUBLIC (decl))
4906 error ("weak declaration of %q+D must be public", decl);
4907 else if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
4908 error ("weak declaration of %q+D must precede definition", decl);
4909 else if (SUPPORTS_WEAK)
4911 if (! DECL_WEAK (decl))
4912 weak_decls = tree_cons (NULL, decl, weak_decls);
4914 else
4915 warning (0, "weak declaration of %q+D not supported", decl);
4917 mark_weak (decl);
4920 static void
4921 weak_finish_1 (tree decl)
4923 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
4924 const char *const name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
4925 #endif
4927 if (! TREE_USED (decl))
4928 return;
4930 #ifdef ASM_WEAKEN_DECL
4931 ASM_WEAKEN_DECL (asm_out_file, decl, name, NULL);
4932 #else
4933 #ifdef ASM_WEAKEN_LABEL
4934 ASM_WEAKEN_LABEL (asm_out_file, name);
4935 #else
4936 #ifdef ASM_OUTPUT_WEAK_ALIAS
4938 static bool warn_once = 0;
4939 if (! warn_once)
4941 warning (0, "only weak aliases are supported in this configuration");
4942 warn_once = 1;
4944 return;
4946 #endif
4947 #endif
4948 #endif
4951 /* This TREE_LIST contains weakref targets. */
4953 static GTY(()) tree weakref_targets;
4955 /* Forward declaration. */
4956 static tree find_decl_and_mark_needed (tree decl, tree target);
4958 /* Emit any pending weak declarations. */
4960 void
4961 weak_finish (void)
4963 tree t;
4965 for (t = weakref_targets; t; t = TREE_CHAIN (t))
4967 tree alias_decl = TREE_PURPOSE (t);
4968 tree target = ultimate_transparent_alias_target (&TREE_VALUE (t));
4970 if (! TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (alias_decl)))
4971 /* Remove alias_decl from the weak list, but leave entries for
4972 the target alone. */
4973 target = NULL_TREE;
4974 #ifndef ASM_OUTPUT_WEAKREF
4975 else if (! TREE_SYMBOL_REFERENCED (target))
4977 /* Use ASM_WEAKEN_LABEL only if ASM_WEAKEN_DECL is not
4978 defined, otherwise we and weak_finish_1 would use a
4979 different macros. */
4980 # if defined ASM_WEAKEN_LABEL && ! defined ASM_WEAKEN_DECL
4981 ASM_WEAKEN_LABEL (asm_out_file, IDENTIFIER_POINTER (target));
4982 # else
4983 tree decl = find_decl_and_mark_needed (alias_decl, target);
4985 if (! decl)
4987 decl = build_decl (TREE_CODE (alias_decl), target,
4988 TREE_TYPE (alias_decl));
4990 DECL_EXTERNAL (decl) = 1;
4991 TREE_PUBLIC (decl) = 1;
4992 DECL_ARTIFICIAL (decl) = 1;
4993 TREE_NOTHROW (decl) = TREE_NOTHROW (alias_decl);
4994 TREE_USED (decl) = 1;
4997 weak_finish_1 (decl);
4998 # endif
5000 #endif
5003 tree *p;
5004 tree t2;
5006 /* Remove the alias and the target from the pending weak list
5007 so that we do not emit any .weak directives for the former,
5008 nor multiple .weak directives for the latter. */
5009 for (p = &weak_decls; (t2 = *p) ; )
5011 if (TREE_VALUE (t2) == alias_decl
5012 || target == DECL_ASSEMBLER_NAME (TREE_VALUE (t2)))
5013 *p = TREE_CHAIN (t2);
5014 else
5015 p = &TREE_CHAIN (t2);
5018 /* Remove other weakrefs to the same target, to speed things up. */
5019 for (p = &TREE_CHAIN (t); (t2 = *p) ; )
5021 if (target == ultimate_transparent_alias_target (&TREE_VALUE (t2)))
5022 *p = TREE_CHAIN (t2);
5023 else
5024 p = &TREE_CHAIN (t2);
5029 for (t = weak_decls; t; t = TREE_CHAIN (t))
5031 tree decl = TREE_VALUE (t);
5033 weak_finish_1 (decl);
5037 /* Emit the assembly bits to indicate that DECL is globally visible. */
5039 static void
5040 globalize_decl (tree decl)
5043 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
5044 if (DECL_WEAK (decl))
5046 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
5047 tree *p, t;
5049 #ifdef ASM_WEAKEN_DECL
5050 ASM_WEAKEN_DECL (asm_out_file, decl, name, 0);
5051 #else
5052 ASM_WEAKEN_LABEL (asm_out_file, name);
5053 #endif
5055 /* Remove this function from the pending weak list so that
5056 we do not emit multiple .weak directives for it. */
5057 for (p = &weak_decls; (t = *p) ; )
5059 if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
5060 *p = TREE_CHAIN (t);
5061 else
5062 p = &TREE_CHAIN (t);
5065 /* Remove weakrefs to the same target from the pending weakref
5066 list, for the same reason. */
5067 for (p = &weakref_targets; (t = *p) ; )
5069 if (DECL_ASSEMBLER_NAME (decl)
5070 == ultimate_transparent_alias_target (&TREE_VALUE (t)))
5071 *p = TREE_CHAIN (t);
5072 else
5073 p = &TREE_CHAIN (t);
5076 return;
5078 #endif
5080 targetm.asm_out.globalize_decl_name (asm_out_file, decl);
5083 /* We have to be able to tell cgraph about the needed-ness of the target
5084 of an alias. This requires that the decl have been defined. Aliases
5085 that precede their definition have to be queued for later processing. */
5087 typedef struct alias_pair GTY(())
5089 tree decl;
5090 tree target;
5091 } alias_pair;
5093 /* Define gc'd vector type. */
5094 DEF_VEC_O(alias_pair);
5095 DEF_VEC_ALLOC_O(alias_pair,gc);
5097 static GTY(()) VEC(alias_pair,gc) *alias_pairs;
5099 /* Given an assembly name, find the decl it is associated with. At the
5100 same time, mark it needed for cgraph. */
5102 static tree
5103 find_decl_and_mark_needed (tree decl, tree target)
5105 struct cgraph_node *fnode = NULL;
5106 struct varpool_node *vnode = NULL;
5108 if (TREE_CODE (decl) == FUNCTION_DECL)
5110 fnode = cgraph_node_for_asm (target);
5111 if (fnode == NULL)
5112 vnode = varpool_node_for_asm (target);
5114 else
5116 vnode = varpool_node_for_asm (target);
5117 if (vnode == NULL)
5118 fnode = cgraph_node_for_asm (target);
5121 if (fnode)
5123 /* We can't mark function nodes as used after cgraph global info
5124 is finished. This wouldn't generally be necessary, but C++
5125 virtual table thunks are introduced late in the game and
5126 might seem like they need marking, although in fact they
5127 don't. */
5128 if (! cgraph_global_info_ready)
5129 cgraph_mark_needed_node (fnode);
5130 return fnode->decl;
5132 else if (vnode)
5134 varpool_mark_needed_node (vnode);
5135 return vnode->decl;
5137 else
5138 return NULL_TREE;
5141 /* Output the assembler code for a define (equate) using ASM_OUTPUT_DEF
5142 or ASM_OUTPUT_DEF_FROM_DECLS. The function defines the symbol whose
5143 tree node is DECL to have the value of the tree node TARGET. */
5145 static void
5146 do_assemble_alias (tree decl, tree target)
5148 if (TREE_ASM_WRITTEN (decl))
5149 return;
5151 TREE_ASM_WRITTEN (decl) = 1;
5152 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl)) = 1;
5154 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl)))
5156 ultimate_transparent_alias_target (&target);
5158 if (!targetm.have_tls
5159 && TREE_CODE (decl) == VAR_DECL
5160 && DECL_THREAD_LOCAL_P (decl))
5162 decl = emutls_decl (decl);
5163 target = get_emutls_object_name (target);
5166 if (!TREE_SYMBOL_REFERENCED (target))
5167 weakref_targets = tree_cons (decl, target, weakref_targets);
5169 #ifdef ASM_OUTPUT_WEAKREF
5170 ASM_OUTPUT_WEAKREF (asm_out_file, decl,
5171 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)),
5172 IDENTIFIER_POINTER (target));
5173 #else
5174 if (!SUPPORTS_WEAK)
5176 error ("%Jweakref is not supported in this configuration", decl);
5177 return;
5179 #endif
5180 return;
5183 if (!targetm.have_tls
5184 && TREE_CODE (decl) == VAR_DECL
5185 && DECL_THREAD_LOCAL_P (decl))
5187 decl = emutls_decl (decl);
5188 target = get_emutls_object_name (target);
5191 #ifdef ASM_OUTPUT_DEF
5192 /* Make name accessible from other files, if appropriate. */
5194 if (TREE_PUBLIC (decl))
5196 globalize_decl (decl);
5197 maybe_assemble_visibility (decl);
5200 # ifdef ASM_OUTPUT_DEF_FROM_DECLS
5201 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file, decl, target);
5202 # else
5203 ASM_OUTPUT_DEF (asm_out_file,
5204 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)),
5205 IDENTIFIER_POINTER (target));
5206 # endif
5207 #elif defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
5209 const char *name;
5210 tree *p, t;
5212 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5213 # ifdef ASM_WEAKEN_DECL
5214 ASM_WEAKEN_DECL (asm_out_file, decl, name, IDENTIFIER_POINTER (target));
5215 # else
5216 ASM_OUTPUT_WEAK_ALIAS (asm_out_file, name, IDENTIFIER_POINTER (target));
5217 # endif
5218 /* Remove this function from the pending weak list so that
5219 we do not emit multiple .weak directives for it. */
5220 for (p = &weak_decls; (t = *p) ; )
5221 if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
5222 *p = TREE_CHAIN (t);
5223 else
5224 p = &TREE_CHAIN (t);
5226 /* Remove weakrefs to the same target from the pending weakref
5227 list, for the same reason. */
5228 for (p = &weakref_targets; (t = *p) ; )
5230 if (DECL_ASSEMBLER_NAME (decl)
5231 == ultimate_transparent_alias_target (&TREE_VALUE (t)))
5232 *p = TREE_CHAIN (t);
5233 else
5234 p = &TREE_CHAIN (t);
5237 #endif
5240 /* First pass of completing pending aliases. Make sure that cgraph knows
5241 which symbols will be required. */
5243 void
5244 finish_aliases_1 (void)
5246 unsigned i;
5247 alias_pair *p;
5249 for (i = 0; VEC_iterate (alias_pair, alias_pairs, i, p); i++)
5251 tree target_decl;
5253 target_decl = find_decl_and_mark_needed (p->decl, p->target);
5254 if (target_decl == NULL)
5256 if (! lookup_attribute ("weakref", DECL_ATTRIBUTES (p->decl)))
5257 error ("%q+D aliased to undefined symbol %qs",
5258 p->decl, IDENTIFIER_POINTER (p->target));
5260 else if (DECL_EXTERNAL (target_decl)
5261 && ! lookup_attribute ("weakref", DECL_ATTRIBUTES (p->decl)))
5262 error ("%q+D aliased to external symbol %qs",
5263 p->decl, IDENTIFIER_POINTER (p->target));
5267 /* Second pass of completing pending aliases. Emit the actual assembly.
5268 This happens at the end of compilation and thus it is assured that the
5269 target symbol has been emitted. */
5271 void
5272 finish_aliases_2 (void)
5274 unsigned i;
5275 alias_pair *p;
5277 for (i = 0; VEC_iterate (alias_pair, alias_pairs, i, p); i++)
5278 do_assemble_alias (p->decl, p->target);
5280 VEC_truncate (alias_pair, alias_pairs, 0);
5283 /* Emit an assembler directive to make the symbol for DECL an alias to
5284 the symbol for TARGET. */
5286 void
5287 assemble_alias (tree decl, tree target)
5289 tree target_decl;
5290 bool is_weakref = false;
5292 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl)))
5294 tree alias = DECL_ASSEMBLER_NAME (decl);
5296 is_weakref = true;
5298 ultimate_transparent_alias_target (&target);
5300 if (alias == target)
5301 error ("weakref %q+D ultimately targets itself", decl);
5302 else
5304 #ifndef ASM_OUTPUT_WEAKREF
5305 IDENTIFIER_TRANSPARENT_ALIAS (alias) = 1;
5306 TREE_CHAIN (alias) = target;
5307 #endif
5309 if (TREE_PUBLIC (decl))
5310 error ("weakref %q+D must have static linkage", decl);
5312 else
5314 #if !defined (ASM_OUTPUT_DEF)
5315 # if !defined(ASM_OUTPUT_WEAK_ALIAS) && !defined (ASM_WEAKEN_DECL)
5316 error ("%Jalias definitions not supported in this configuration", decl);
5317 return;
5318 # else
5319 if (!DECL_WEAK (decl))
5321 error ("%Jonly weak aliases are supported in this configuration", decl);
5322 return;
5324 # endif
5325 #endif
5328 /* We must force creation of DECL_RTL for debug info generation, even though
5329 we don't use it here. */
5330 make_decl_rtl (decl);
5331 TREE_USED (decl) = 1;
5333 /* A quirk of the initial implementation of aliases required that the user
5334 add "extern" to all of them. Which is silly, but now historical. Do
5335 note that the symbol is in fact locally defined. */
5336 if (! is_weakref)
5337 DECL_EXTERNAL (decl) = 0;
5339 /* Allow aliases to aliases. */
5340 if (TREE_CODE (decl) == FUNCTION_DECL)
5341 cgraph_node (decl)->alias = true;
5342 else
5343 varpool_node (decl)->alias = true;
5345 /* If the target has already been emitted, we don't have to queue the
5346 alias. This saves a tad o memory. */
5347 target_decl = find_decl_and_mark_needed (decl, target);
5348 if (target_decl && TREE_ASM_WRITTEN (target_decl))
5349 do_assemble_alias (decl, target);
5350 else
5352 alias_pair *p = VEC_safe_push (alias_pair, gc, alias_pairs, NULL);
5353 p->decl = decl;
5354 p->target = target;
5358 /* Emit an assembler directive to set symbol for DECL visibility to
5359 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
5361 void
5362 default_assemble_visibility (tree decl, int vis)
5364 static const char * const visibility_types[] = {
5365 NULL, "protected", "hidden", "internal"
5368 const char *name, *type;
5370 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5371 type = visibility_types[vis];
5373 #ifdef HAVE_GAS_HIDDEN
5374 fprintf (asm_out_file, "\t.%s\t", type);
5375 assemble_name (asm_out_file, name);
5376 fprintf (asm_out_file, "\n");
5377 #else
5378 warning (OPT_Wattributes, "visibility attribute not supported "
5379 "in this configuration; ignored");
5380 #endif
5383 /* A helper function to call assemble_visibility when needed for a decl. */
5386 maybe_assemble_visibility (tree decl)
5388 enum symbol_visibility vis = DECL_VISIBILITY (decl);
5390 if (vis != VISIBILITY_DEFAULT)
5392 targetm.asm_out.visibility (decl, vis);
5393 return 1;
5395 else
5396 return 0;
5399 /* Returns 1 if the target configuration supports defining public symbols
5400 so that one of them will be chosen at link time instead of generating a
5401 multiply-defined symbol error, whether through the use of weak symbols or
5402 a target-specific mechanism for having duplicates discarded. */
5405 supports_one_only (void)
5407 if (SUPPORTS_ONE_ONLY)
5408 return 1;
5409 return SUPPORTS_WEAK;
5412 /* Set up DECL as a public symbol that can be defined in multiple
5413 translation units without generating a linker error. */
5415 void
5416 make_decl_one_only (tree decl)
5418 gcc_assert (TREE_CODE (decl) == VAR_DECL
5419 || TREE_CODE (decl) == FUNCTION_DECL);
5421 TREE_PUBLIC (decl) = 1;
5423 if (SUPPORTS_ONE_ONLY)
5425 #ifdef MAKE_DECL_ONE_ONLY
5426 MAKE_DECL_ONE_ONLY (decl);
5427 #endif
5428 DECL_ONE_ONLY (decl) = 1;
5430 else if (TREE_CODE (decl) == VAR_DECL
5431 && (DECL_INITIAL (decl) == 0 || DECL_INITIAL (decl) == error_mark_node))
5432 DECL_COMMON (decl) = 1;
5433 else
5435 gcc_assert (SUPPORTS_WEAK);
5436 DECL_WEAK (decl) = 1;
5440 void
5441 init_varasm_once (void)
5443 section_htab = htab_create_ggc (31, section_entry_hash,
5444 section_entry_eq, NULL);
5445 object_block_htab = htab_create_ggc (31, object_block_entry_hash,
5446 object_block_entry_eq, NULL);
5447 const_desc_htab = htab_create_ggc (1009, const_desc_hash,
5448 const_desc_eq, NULL);
5450 const_alias_set = new_alias_set ();
5451 shared_constant_pool = create_constant_pool ();
5453 #ifdef TEXT_SECTION_ASM_OP
5454 text_section = get_unnamed_section (SECTION_CODE, output_section_asm_op,
5455 TEXT_SECTION_ASM_OP);
5456 #endif
5458 #ifdef DATA_SECTION_ASM_OP
5459 data_section = get_unnamed_section (SECTION_WRITE, output_section_asm_op,
5460 DATA_SECTION_ASM_OP);
5461 #endif
5463 #ifdef SDATA_SECTION_ASM_OP
5464 sdata_section = get_unnamed_section (SECTION_WRITE, output_section_asm_op,
5465 SDATA_SECTION_ASM_OP);
5466 #endif
5468 #ifdef READONLY_DATA_SECTION_ASM_OP
5469 readonly_data_section = get_unnamed_section (0, output_section_asm_op,
5470 READONLY_DATA_SECTION_ASM_OP);
5471 #endif
5473 #ifdef CTORS_SECTION_ASM_OP
5474 ctors_section = get_unnamed_section (0, output_section_asm_op,
5475 CTORS_SECTION_ASM_OP);
5476 #endif
5478 #ifdef DTORS_SECTION_ASM_OP
5479 dtors_section = get_unnamed_section (0, output_section_asm_op,
5480 DTORS_SECTION_ASM_OP);
5481 #endif
5483 #ifdef BSS_SECTION_ASM_OP
5484 bss_section = get_unnamed_section (SECTION_WRITE | SECTION_BSS,
5485 output_section_asm_op,
5486 BSS_SECTION_ASM_OP);
5487 #endif
5489 #ifdef SBSS_SECTION_ASM_OP
5490 sbss_section = get_unnamed_section (SECTION_WRITE | SECTION_BSS,
5491 output_section_asm_op,
5492 SBSS_SECTION_ASM_OP);
5493 #endif
5495 tls_comm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
5496 | SECTION_COMMON, emit_tls_common);
5497 lcomm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
5498 | SECTION_COMMON, emit_local);
5499 comm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
5500 | SECTION_COMMON, emit_common);
5502 #if defined ASM_OUTPUT_ALIGNED_BSS || defined ASM_OUTPUT_BSS
5503 bss_noswitch_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS,
5504 emit_bss);
5505 #endif
5507 targetm.asm_out.init_sections ();
5509 if (readonly_data_section == NULL)
5510 readonly_data_section = text_section;
5513 enum tls_model
5514 decl_default_tls_model (const_tree decl)
5516 enum tls_model kind;
5517 bool is_local;
5519 is_local = targetm.binds_local_p (decl);
5520 if (!flag_shlib)
5522 if (is_local)
5523 kind = TLS_MODEL_LOCAL_EXEC;
5524 else
5525 kind = TLS_MODEL_INITIAL_EXEC;
5528 /* Local dynamic is inefficient when we're not combining the
5529 parts of the address. */
5530 else if (optimize && is_local)
5531 kind = TLS_MODEL_LOCAL_DYNAMIC;
5532 else
5533 kind = TLS_MODEL_GLOBAL_DYNAMIC;
5534 if (kind < flag_tls_default)
5535 kind = flag_tls_default;
5537 return kind;
5540 /* Select a set of attributes for section NAME based on the properties
5541 of DECL and whether or not RELOC indicates that DECL's initializer
5542 might contain runtime relocations.
5544 We make the section read-only and executable for a function decl,
5545 read-only for a const data decl, and writable for a non-const data decl. */
5547 unsigned int
5548 default_section_type_flags (tree decl, const char *name, int reloc)
5550 unsigned int flags;
5552 if (decl && TREE_CODE (decl) == FUNCTION_DECL)
5553 flags = SECTION_CODE;
5554 else if (decl && decl_readonly_section (decl, reloc))
5555 flags = 0;
5556 else if (current_function_decl
5557 && cfun
5558 && cfun->unlikely_text_section_name
5559 && strcmp (name, cfun->unlikely_text_section_name) == 0)
5560 flags = SECTION_CODE;
5561 else if (!decl
5562 && (!current_function_decl || !cfun)
5563 && strcmp (name, UNLIKELY_EXECUTED_TEXT_SECTION_NAME) == 0)
5564 flags = SECTION_CODE;
5565 else
5566 flags = SECTION_WRITE;
5568 if (decl && DECL_ONE_ONLY (decl))
5569 flags |= SECTION_LINKONCE;
5571 if (decl && TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl))
5572 flags |= SECTION_TLS | SECTION_WRITE;
5574 if (strcmp (name, ".bss") == 0
5575 || strncmp (name, ".bss.", 5) == 0
5576 || strncmp (name, ".gnu.linkonce.b.", 16) == 0
5577 || strcmp (name, ".sbss") == 0
5578 || strncmp (name, ".sbss.", 6) == 0
5579 || strncmp (name, ".gnu.linkonce.sb.", 17) == 0)
5580 flags |= SECTION_BSS;
5582 if (strcmp (name, ".tdata") == 0
5583 || strncmp (name, ".tdata.", 7) == 0
5584 || strncmp (name, ".gnu.linkonce.td.", 17) == 0)
5585 flags |= SECTION_TLS;
5587 if (strcmp (name, ".tbss") == 0
5588 || strncmp (name, ".tbss.", 6) == 0
5589 || strncmp (name, ".gnu.linkonce.tb.", 17) == 0)
5590 flags |= SECTION_TLS | SECTION_BSS;
5592 /* These three sections have special ELF types. They are neither
5593 SHT_PROGBITS nor SHT_NOBITS, so when changing sections we don't
5594 want to print a section type (@progbits or @nobits). If someone
5595 is silly enough to emit code or TLS variables to one of these
5596 sections, then don't handle them specially. */
5597 if (!(flags & (SECTION_CODE | SECTION_BSS | SECTION_TLS))
5598 && (strcmp (name, ".init_array") == 0
5599 || strcmp (name, ".fini_array") == 0
5600 || strcmp (name, ".preinit_array") == 0))
5601 flags |= SECTION_NOTYPE;
5603 return flags;
5606 /* Return true if the target supports some form of global BSS,
5607 either through bss_noswitch_section, or by selecting a BSS
5608 section in TARGET_ASM_SELECT_SECTION. */
5610 bool
5611 have_global_bss_p (void)
5613 return bss_noswitch_section || targetm.have_switchable_bss_sections;
5616 /* Output assembly to switch to section NAME with attribute FLAGS.
5617 Four variants for common object file formats. */
5619 void
5620 default_no_named_section (const char *name ATTRIBUTE_UNUSED,
5621 unsigned int flags ATTRIBUTE_UNUSED,
5622 tree decl ATTRIBUTE_UNUSED)
5624 /* Some object formats don't support named sections at all. The
5625 front-end should already have flagged this as an error. */
5626 gcc_unreachable ();
5629 void
5630 default_elf_asm_named_section (const char *name, unsigned int flags,
5631 tree decl ATTRIBUTE_UNUSED)
5633 char flagchars[10], *f = flagchars;
5635 /* If we have already declared this section, we can use an
5636 abbreviated form to switch back to it -- unless this section is
5637 part of a COMDAT groups, in which case GAS requires the full
5638 declaration every time. */
5639 if (!(HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
5640 && (flags & SECTION_DECLARED))
5642 fprintf (asm_out_file, "\t.section\t%s\n", name);
5643 return;
5646 if (!(flags & SECTION_DEBUG))
5647 *f++ = 'a';
5648 if (flags & SECTION_WRITE)
5649 *f++ = 'w';
5650 if (flags & SECTION_CODE)
5651 *f++ = 'x';
5652 if (flags & SECTION_SMALL)
5653 *f++ = 's';
5654 if (flags & SECTION_MERGE)
5655 *f++ = 'M';
5656 if (flags & SECTION_STRINGS)
5657 *f++ = 'S';
5658 if (flags & SECTION_TLS)
5659 *f++ = 'T';
5660 if (HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
5661 *f++ = 'G';
5662 *f = '\0';
5664 fprintf (asm_out_file, "\t.section\t%s,\"%s\"", name, flagchars);
5666 if (!(flags & SECTION_NOTYPE))
5668 const char *type;
5669 const char *format;
5671 if (flags & SECTION_BSS)
5672 type = "nobits";
5673 else
5674 type = "progbits";
5676 format = ",@%s";
5677 #ifdef ASM_COMMENT_START
5678 /* On platforms that use "@" as the assembly comment character,
5679 use "%" instead. */
5680 if (strcmp (ASM_COMMENT_START, "@") == 0)
5681 format = ",%%%s";
5682 #endif
5683 fprintf (asm_out_file, format, type);
5685 if (flags & SECTION_ENTSIZE)
5686 fprintf (asm_out_file, ",%d", flags & SECTION_ENTSIZE);
5687 if (HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
5688 fprintf (asm_out_file, ",%s,comdat",
5689 lang_hooks.decls.comdat_group (decl));
5692 putc ('\n', asm_out_file);
5695 void
5696 default_coff_asm_named_section (const char *name, unsigned int flags,
5697 tree decl ATTRIBUTE_UNUSED)
5699 char flagchars[8], *f = flagchars;
5701 if (flags & SECTION_WRITE)
5702 *f++ = 'w';
5703 if (flags & SECTION_CODE)
5704 *f++ = 'x';
5705 *f = '\0';
5707 fprintf (asm_out_file, "\t.section\t%s,\"%s\"\n", name, flagchars);
5710 void
5711 default_pe_asm_named_section (const char *name, unsigned int flags,
5712 tree decl)
5714 default_coff_asm_named_section (name, flags, decl);
5716 if (flags & SECTION_LINKONCE)
5718 /* Functions may have been compiled at various levels of
5719 optimization so we can't use `same_size' here.
5720 Instead, have the linker pick one. */
5721 fprintf (asm_out_file, "\t.linkonce %s\n",
5722 (flags & SECTION_CODE ? "discard" : "same_size"));
5726 /* The lame default section selector. */
5728 section *
5729 default_select_section (tree decl, int reloc,
5730 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
5732 if (DECL_P (decl))
5734 if (decl_readonly_section (decl, reloc))
5735 return readonly_data_section;
5737 else if (TREE_CODE (decl) == CONSTRUCTOR)
5739 if (! ((flag_pic && reloc)
5740 || !TREE_READONLY (decl)
5741 || TREE_SIDE_EFFECTS (decl)
5742 || !TREE_CONSTANT (decl)))
5743 return readonly_data_section;
5745 else if (TREE_CODE (decl) == STRING_CST)
5746 return readonly_data_section;
5747 else if (! (flag_pic && reloc))
5748 return readonly_data_section;
5750 return data_section;
5753 enum section_category
5754 categorize_decl_for_section (const_tree decl, int reloc)
5756 enum section_category ret;
5758 if (TREE_CODE (decl) == FUNCTION_DECL)
5759 return SECCAT_TEXT;
5760 else if (TREE_CODE (decl) == STRING_CST)
5762 if (flag_mudflap) /* or !flag_merge_constants */
5763 return SECCAT_RODATA;
5764 else
5765 return SECCAT_RODATA_MERGE_STR;
5767 else if (TREE_CODE (decl) == VAR_DECL)
5769 if (bss_initializer_p (decl))
5770 ret = SECCAT_BSS;
5771 else if (! TREE_READONLY (decl)
5772 || TREE_SIDE_EFFECTS (decl)
5773 || ! TREE_CONSTANT (DECL_INITIAL (decl)))
5775 /* Here the reloc_rw_mask is not testing whether the section should
5776 be read-only or not, but whether the dynamic link will have to
5777 do something. If so, we wish to segregate the data in order to
5778 minimize cache misses inside the dynamic linker. */
5779 if (reloc & targetm.asm_out.reloc_rw_mask ())
5780 ret = reloc == 1 ? SECCAT_DATA_REL_LOCAL : SECCAT_DATA_REL;
5781 else
5782 ret = SECCAT_DATA;
5784 else if (reloc & targetm.asm_out.reloc_rw_mask ())
5785 ret = reloc == 1 ? SECCAT_DATA_REL_RO_LOCAL : SECCAT_DATA_REL_RO;
5786 else if (reloc || flag_merge_constants < 2)
5787 /* C and C++ don't allow different variables to share the same
5788 location. -fmerge-all-constants allows even that (at the
5789 expense of not conforming). */
5790 ret = SECCAT_RODATA;
5791 else if (TREE_CODE (DECL_INITIAL (decl)) == STRING_CST)
5792 ret = SECCAT_RODATA_MERGE_STR_INIT;
5793 else
5794 ret = SECCAT_RODATA_MERGE_CONST;
5796 else if (TREE_CODE (decl) == CONSTRUCTOR)
5798 if ((reloc & targetm.asm_out.reloc_rw_mask ())
5799 || TREE_SIDE_EFFECTS (decl)
5800 || ! TREE_CONSTANT (decl))
5801 ret = SECCAT_DATA;
5802 else
5803 ret = SECCAT_RODATA;
5805 else
5806 ret = SECCAT_RODATA;
5808 /* There are no read-only thread-local sections. */
5809 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl))
5811 /* Note that this would be *just* SECCAT_BSS, except that there's
5812 no concept of a read-only thread-local-data section. */
5813 if (ret == SECCAT_BSS
5814 || (flag_zero_initialized_in_bss
5815 && initializer_zerop (DECL_INITIAL (decl))))
5816 ret = SECCAT_TBSS;
5817 else
5818 ret = SECCAT_TDATA;
5821 /* If the target uses small data sections, select it. */
5822 else if (targetm.in_small_data_p (decl))
5824 if (ret == SECCAT_BSS)
5825 ret = SECCAT_SBSS;
5826 else if (targetm.have_srodata_section && ret == SECCAT_RODATA)
5827 ret = SECCAT_SRODATA;
5828 else
5829 ret = SECCAT_SDATA;
5832 return ret;
5835 bool
5836 decl_readonly_section (const_tree decl, int reloc)
5838 switch (categorize_decl_for_section (decl, reloc))
5840 case SECCAT_RODATA:
5841 case SECCAT_RODATA_MERGE_STR:
5842 case SECCAT_RODATA_MERGE_STR_INIT:
5843 case SECCAT_RODATA_MERGE_CONST:
5844 case SECCAT_SRODATA:
5845 return true;
5846 break;
5847 default:
5848 return false;
5849 break;
5853 /* Select a section based on the above categorization. */
5855 section *
5856 default_elf_select_section (tree decl, int reloc,
5857 unsigned HOST_WIDE_INT align)
5859 const char *sname;
5860 switch (categorize_decl_for_section (decl, reloc))
5862 case SECCAT_TEXT:
5863 /* We're not supposed to be called on FUNCTION_DECLs. */
5864 gcc_unreachable ();
5865 case SECCAT_RODATA:
5866 return readonly_data_section;
5867 case SECCAT_RODATA_MERGE_STR:
5868 return mergeable_string_section (decl, align, 0);
5869 case SECCAT_RODATA_MERGE_STR_INIT:
5870 return mergeable_string_section (DECL_INITIAL (decl), align, 0);
5871 case SECCAT_RODATA_MERGE_CONST:
5872 return mergeable_constant_section (DECL_MODE (decl), align, 0);
5873 case SECCAT_SRODATA:
5874 sname = ".sdata2";
5875 break;
5876 case SECCAT_DATA:
5877 return data_section;
5878 case SECCAT_DATA_REL:
5879 sname = ".data.rel";
5880 break;
5881 case SECCAT_DATA_REL_LOCAL:
5882 sname = ".data.rel.local";
5883 break;
5884 case SECCAT_DATA_REL_RO:
5885 sname = ".data.rel.ro";
5886 break;
5887 case SECCAT_DATA_REL_RO_LOCAL:
5888 sname = ".data.rel.ro.local";
5889 break;
5890 case SECCAT_SDATA:
5891 sname = ".sdata";
5892 break;
5893 case SECCAT_TDATA:
5894 sname = ".tdata";
5895 break;
5896 case SECCAT_BSS:
5897 if (bss_section)
5898 return bss_section;
5899 sname = ".bss";
5900 break;
5901 case SECCAT_SBSS:
5902 sname = ".sbss";
5903 break;
5904 case SECCAT_TBSS:
5905 sname = ".tbss";
5906 break;
5907 default:
5908 gcc_unreachable ();
5911 if (!DECL_P (decl))
5912 decl = NULL_TREE;
5913 return get_named_section (decl, sname, reloc);
5916 /* Construct a unique section name based on the decl name and the
5917 categorization performed above. */
5919 void
5920 default_unique_section (tree decl, int reloc)
5922 /* We only need to use .gnu.linkonce if we don't have COMDAT groups. */
5923 bool one_only = DECL_ONE_ONLY (decl) && !HAVE_COMDAT_GROUP;
5924 const char *prefix, *name;
5925 size_t nlen, plen;
5926 char *string;
5928 switch (categorize_decl_for_section (decl, reloc))
5930 case SECCAT_TEXT:
5931 prefix = one_only ? ".gnu.linkonce.t." : ".text.";
5932 break;
5933 case SECCAT_RODATA:
5934 case SECCAT_RODATA_MERGE_STR:
5935 case SECCAT_RODATA_MERGE_STR_INIT:
5936 case SECCAT_RODATA_MERGE_CONST:
5937 prefix = one_only ? ".gnu.linkonce.r." : ".rodata.";
5938 break;
5939 case SECCAT_SRODATA:
5940 prefix = one_only ? ".gnu.linkonce.s2." : ".sdata2.";
5941 break;
5942 case SECCAT_DATA:
5943 prefix = one_only ? ".gnu.linkonce.d." : ".data.";
5944 break;
5945 case SECCAT_DATA_REL:
5946 prefix = one_only ? ".gnu.linkonce.d.rel." : ".data.rel.";
5947 break;
5948 case SECCAT_DATA_REL_LOCAL:
5949 prefix = one_only ? ".gnu.linkonce.d.rel.local." : ".data.rel.local.";
5950 break;
5951 case SECCAT_DATA_REL_RO:
5952 prefix = one_only ? ".gnu.linkonce.d.rel.ro." : ".data.rel.ro.";
5953 break;
5954 case SECCAT_DATA_REL_RO_LOCAL:
5955 prefix = one_only ? ".gnu.linkonce.d.rel.ro.local."
5956 : ".data.rel.ro.local.";
5957 break;
5958 case SECCAT_SDATA:
5959 prefix = one_only ? ".gnu.linkonce.s." : ".sdata.";
5960 break;
5961 case SECCAT_BSS:
5962 prefix = one_only ? ".gnu.linkonce.b." : ".bss.";
5963 break;
5964 case SECCAT_SBSS:
5965 prefix = one_only ? ".gnu.linkonce.sb." : ".sbss.";
5966 break;
5967 case SECCAT_TDATA:
5968 prefix = one_only ? ".gnu.linkonce.td." : ".tdata.";
5969 break;
5970 case SECCAT_TBSS:
5971 prefix = one_only ? ".gnu.linkonce.tb." : ".tbss.";
5972 break;
5973 default:
5974 gcc_unreachable ();
5976 plen = strlen (prefix);
5978 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5979 name = targetm.strip_name_encoding (name);
5980 nlen = strlen (name);
5982 string = alloca (nlen + plen + 1);
5983 memcpy (string, prefix, plen);
5984 memcpy (string + plen, name, nlen + 1);
5986 DECL_SECTION_NAME (decl) = build_string (nlen + plen, string);
5989 /* Like compute_reloc_for_constant, except for an RTX. The return value
5990 is a mask for which bit 1 indicates a global relocation, and bit 0
5991 indicates a local relocation. */
5993 static int
5994 compute_reloc_for_rtx_1 (rtx *xp, void *data)
5996 int *preloc = data;
5997 rtx x = *xp;
5999 switch (GET_CODE (x))
6001 case SYMBOL_REF:
6002 *preloc |= SYMBOL_REF_LOCAL_P (x) ? 1 : 2;
6003 break;
6004 case LABEL_REF:
6005 *preloc |= 1;
6006 break;
6007 default:
6008 break;
6011 return 0;
6014 static int
6015 compute_reloc_for_rtx (rtx x)
6017 int reloc;
6019 switch (GET_CODE (x))
6021 case CONST:
6022 case SYMBOL_REF:
6023 case LABEL_REF:
6024 reloc = 0;
6025 for_each_rtx (&x, compute_reloc_for_rtx_1, &reloc);
6026 return reloc;
6028 default:
6029 return 0;
6033 section *
6034 default_select_rtx_section (enum machine_mode mode ATTRIBUTE_UNUSED,
6035 rtx x,
6036 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
6038 if (compute_reloc_for_rtx (x) & targetm.asm_out.reloc_rw_mask ())
6039 return data_section;
6040 else
6041 return readonly_data_section;
6044 section *
6045 default_elf_select_rtx_section (enum machine_mode mode, rtx x,
6046 unsigned HOST_WIDE_INT align)
6048 int reloc = compute_reloc_for_rtx (x);
6050 /* ??? Handle small data here somehow. */
6052 if (reloc & targetm.asm_out.reloc_rw_mask ())
6054 if (reloc == 1)
6055 return get_named_section (NULL, ".data.rel.ro.local", 1);
6056 else
6057 return get_named_section (NULL, ".data.rel.ro", 3);
6060 return mergeable_constant_section (mode, align, 0);
6063 /* Set the generally applicable flags on the SYMBOL_REF for EXP. */
6065 void
6066 default_encode_section_info (tree decl, rtx rtl, int first ATTRIBUTE_UNUSED)
6068 rtx symbol;
6069 int flags;
6071 /* Careful not to prod global register variables. */
6072 if (!MEM_P (rtl))
6073 return;
6074 symbol = XEXP (rtl, 0);
6075 if (GET_CODE (symbol) != SYMBOL_REF)
6076 return;
6078 flags = SYMBOL_REF_FLAGS (symbol) & SYMBOL_FLAG_HAS_BLOCK_INFO;
6079 if (TREE_CODE (decl) == FUNCTION_DECL)
6080 flags |= SYMBOL_FLAG_FUNCTION;
6081 if (targetm.binds_local_p (decl))
6082 flags |= SYMBOL_FLAG_LOCAL;
6083 if (targetm.have_tls && TREE_CODE (decl) == VAR_DECL
6084 && DECL_THREAD_LOCAL_P (decl))
6085 flags |= DECL_TLS_MODEL (decl) << SYMBOL_FLAG_TLS_SHIFT;
6086 else if (targetm.in_small_data_p (decl))
6087 flags |= SYMBOL_FLAG_SMALL;
6088 /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names? Without
6089 being PUBLIC, the thing *must* be defined in this translation unit.
6090 Prevent this buglet from being propagated into rtl code as well. */
6091 if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
6092 flags |= SYMBOL_FLAG_EXTERNAL;
6094 SYMBOL_REF_FLAGS (symbol) = flags;
6097 /* By default, we do nothing for encode_section_info, so we need not
6098 do anything but discard the '*' marker. */
6100 const char *
6101 default_strip_name_encoding (const char *str)
6103 return str + (*str == '*');
6106 #ifdef ASM_OUTPUT_DEF
6107 /* The default implementation of TARGET_ASM_OUTPUT_ANCHOR. Define the
6108 anchor relative to ".", the current section position. */
6110 void
6111 default_asm_output_anchor (rtx symbol)
6113 char buffer[100];
6115 sprintf (buffer, "*. + " HOST_WIDE_INT_PRINT_DEC,
6116 SYMBOL_REF_BLOCK_OFFSET (symbol));
6117 ASM_OUTPUT_DEF (asm_out_file, XSTR (symbol, 0), buffer);
6119 #endif
6121 /* The default implementation of TARGET_USE_ANCHORS_FOR_SYMBOL_P. */
6123 bool
6124 default_use_anchors_for_symbol_p (const_rtx symbol)
6126 section *sect;
6127 tree decl;
6129 /* Don't use anchors for mergeable sections. The linker might move
6130 the objects around. */
6131 sect = SYMBOL_REF_BLOCK (symbol)->sect;
6132 if (sect->common.flags & SECTION_MERGE)
6133 return false;
6135 /* Don't use anchors for small data sections. The small data register
6136 acts as an anchor for such sections. */
6137 if (sect->common.flags & SECTION_SMALL)
6138 return false;
6140 decl = SYMBOL_REF_DECL (symbol);
6141 if (decl && DECL_P (decl))
6143 /* Don't use section anchors for decls that might be defined by
6144 other modules. */
6145 if (!targetm.binds_local_p (decl))
6146 return false;
6148 /* Don't use section anchors for decls that will be placed in a
6149 small data section. */
6150 /* ??? Ideally, this check would be redundant with the SECTION_SMALL
6151 one above. The problem is that we only use SECTION_SMALL for
6152 sections that should be marked as small in the section directive. */
6153 if (targetm.in_small_data_p (decl))
6154 return false;
6156 return true;
6159 /* Assume ELF-ish defaults, since that's pretty much the most liberal
6160 wrt cross-module name binding. */
6162 bool
6163 default_binds_local_p (const_tree exp)
6165 return default_binds_local_p_1 (exp, flag_shlib);
6168 bool
6169 default_binds_local_p_1 (const_tree exp, int shlib)
6171 bool local_p;
6173 /* A non-decl is an entry in the constant pool. */
6174 if (!DECL_P (exp))
6175 local_p = true;
6176 /* Weakrefs may not bind locally, even though the weakref itself is
6177 always static and therefore local. */
6178 else if (lookup_attribute ("weakref", DECL_ATTRIBUTES (exp)))
6179 local_p = false;
6180 /* Static variables are always local. */
6181 else if (! TREE_PUBLIC (exp))
6182 local_p = true;
6183 /* A variable is local if the user has said explicitly that it will
6184 be. */
6185 else if (DECL_VISIBILITY_SPECIFIED (exp)
6186 && DECL_VISIBILITY (exp) != VISIBILITY_DEFAULT)
6187 local_p = true;
6188 /* Variables defined outside this object might not be local. */
6189 else if (DECL_EXTERNAL (exp))
6190 local_p = false;
6191 /* If defined in this object and visibility is not default, must be
6192 local. */
6193 else if (DECL_VISIBILITY (exp) != VISIBILITY_DEFAULT)
6194 local_p = true;
6195 /* Default visibility weak data can be overridden by a strong symbol
6196 in another module and so are not local. */
6197 else if (DECL_WEAK (exp))
6198 local_p = false;
6199 /* If PIC, then assume that any global name can be overridden by
6200 symbols resolved from other modules, unless we are compiling with
6201 -fwhole-program, which assumes that names are local. */
6202 else if (shlib)
6203 local_p = flag_whole_program;
6204 /* Uninitialized COMMON variable may be unified with symbols
6205 resolved from other modules. */
6206 else if (DECL_COMMON (exp)
6207 && (DECL_INITIAL (exp) == NULL
6208 || DECL_INITIAL (exp) == error_mark_node))
6209 local_p = false;
6210 /* Otherwise we're left with initialized (or non-common) global data
6211 which is of necessity defined locally. */
6212 else
6213 local_p = true;
6215 return local_p;
6218 /* Determine whether or not a pointer mode is valid. Assume defaults
6219 of ptr_mode or Pmode - can be overridden. */
6220 bool
6221 default_valid_pointer_mode (enum machine_mode mode)
6223 return (mode == ptr_mode || mode == Pmode);
6226 /* Default function to output code that will globalize a label. A
6227 target must define GLOBAL_ASM_OP or provide its own function to
6228 globalize a label. */
6229 #ifdef GLOBAL_ASM_OP
6230 void
6231 default_globalize_label (FILE * stream, const char *name)
6233 fputs (GLOBAL_ASM_OP, stream);
6234 assemble_name (stream, name);
6235 putc ('\n', stream);
6237 #endif /* GLOBAL_ASM_OP */
6239 /* Default function to output code that will globalize a declaration. */
6240 void
6241 default_globalize_decl_name (FILE * stream, tree decl)
6243 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
6244 targetm.asm_out.globalize_label (stream, name);
6247 /* Default function to output a label for unwind information. The
6248 default is to do nothing. A target that needs nonlocal labels for
6249 unwind information must provide its own function to do this. */
6250 void
6251 default_emit_unwind_label (FILE * stream ATTRIBUTE_UNUSED,
6252 tree decl ATTRIBUTE_UNUSED,
6253 int for_eh ATTRIBUTE_UNUSED,
6254 int empty ATTRIBUTE_UNUSED)
6258 /* Default function to output a label to divide up the exception table.
6259 The default is to do nothing. A target that needs/wants to divide
6260 up the table must provide it's own function to do this. */
6261 void
6262 default_emit_except_table_label (FILE * stream ATTRIBUTE_UNUSED)
6266 /* This is how to output an internal numbered label where PREFIX is
6267 the class of label and LABELNO is the number within the class. */
6269 void
6270 default_internal_label (FILE *stream, const char *prefix,
6271 unsigned long labelno)
6273 char *const buf = alloca (40 + strlen (prefix));
6274 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, labelno);
6275 ASM_OUTPUT_INTERNAL_LABEL (stream, buf);
6278 /* This is the default behavior at the beginning of a file. It's
6279 controlled by two other target-hook toggles. */
6280 void
6281 default_file_start (void)
6283 if (targetm.file_start_app_off && !flag_verbose_asm)
6284 fputs (ASM_APP_OFF, asm_out_file);
6286 if (targetm.file_start_file_directive)
6287 output_file_directive (asm_out_file, main_input_filename);
6290 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
6291 which emits a special section directive used to indicate whether or
6292 not this object file needs an executable stack. This is primarily
6293 a GNU extension to ELF but could be used on other targets. */
6295 int trampolines_created;
6297 void
6298 file_end_indicate_exec_stack (void)
6300 unsigned int flags = SECTION_DEBUG;
6301 if (trampolines_created)
6302 flags |= SECTION_CODE;
6304 switch_to_section (get_section (".note.GNU-stack", flags, NULL));
6307 /* Output DIRECTIVE (a C string) followed by a newline. This is used as
6308 a get_unnamed_section callback. */
6310 void
6311 output_section_asm_op (const void *directive)
6313 fprintf (asm_out_file, "%s\n", (const char *) directive);
6316 /* Emit assembly code to switch to section NEW_SECTION. Do nothing if
6317 the current section is NEW_SECTION. */
6319 void
6320 switch_to_section (section *new_section)
6322 if (in_section == new_section)
6323 return;
6325 if (new_section->common.flags & SECTION_FORGET)
6326 in_section = NULL;
6327 else
6328 in_section = new_section;
6330 switch (SECTION_STYLE (new_section))
6332 case SECTION_NAMED:
6333 if (cfun
6334 && !cfun->unlikely_text_section_name
6335 && strcmp (new_section->named.name,
6336 UNLIKELY_EXECUTED_TEXT_SECTION_NAME) == 0)
6337 cfun->unlikely_text_section_name = UNLIKELY_EXECUTED_TEXT_SECTION_NAME;
6339 targetm.asm_out.named_section (new_section->named.name,
6340 new_section->named.common.flags,
6341 new_section->named.decl);
6342 break;
6344 case SECTION_UNNAMED:
6345 new_section->unnamed.callback (new_section->unnamed.data);
6346 break;
6348 case SECTION_NOSWITCH:
6349 gcc_unreachable ();
6350 break;
6353 new_section->common.flags |= SECTION_DECLARED;
6356 /* If block symbol SYMBOL has not yet been assigned an offset, place
6357 it at the end of its block. */
6359 void
6360 place_block_symbol (rtx symbol)
6362 unsigned HOST_WIDE_INT size, mask, offset;
6363 struct constant_descriptor_rtx *desc;
6364 unsigned int alignment;
6365 struct object_block *block;
6366 tree decl;
6368 gcc_assert (SYMBOL_REF_BLOCK (symbol));
6369 if (SYMBOL_REF_BLOCK_OFFSET (symbol) >= 0)
6370 return;
6372 /* Work out the symbol's size and alignment. */
6373 if (CONSTANT_POOL_ADDRESS_P (symbol))
6375 desc = SYMBOL_REF_CONSTANT (symbol);
6376 alignment = desc->align;
6377 size = GET_MODE_SIZE (desc->mode);
6379 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
6381 decl = SYMBOL_REF_DECL (symbol);
6382 alignment = get_constant_alignment (decl);
6383 size = get_constant_size (decl);
6385 else
6387 decl = SYMBOL_REF_DECL (symbol);
6388 alignment = DECL_ALIGN (decl);
6389 size = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
6392 /* Calculate the object's offset from the start of the block. */
6393 block = SYMBOL_REF_BLOCK (symbol);
6394 mask = alignment / BITS_PER_UNIT - 1;
6395 offset = (block->size + mask) & ~mask;
6396 SYMBOL_REF_BLOCK_OFFSET (symbol) = offset;
6398 /* Record the block's new alignment and size. */
6399 block->alignment = MAX (block->alignment, alignment);
6400 block->size = offset + size;
6402 VEC_safe_push (rtx, gc, block->objects, symbol);
6405 /* Return the anchor that should be used to address byte offset OFFSET
6406 from the first object in BLOCK. MODEL is the TLS model used
6407 to access it. */
6410 get_section_anchor (struct object_block *block, HOST_WIDE_INT offset,
6411 enum tls_model model)
6413 char label[100];
6414 unsigned int begin, middle, end;
6415 unsigned HOST_WIDE_INT min_offset, max_offset, range, bias, delta;
6416 rtx anchor;
6418 /* Work out the anchor's offset. Use an offset of 0 for the first
6419 anchor so that we don't pessimize the case where we take the address
6420 of a variable at the beginning of the block. This is particularly
6421 useful when a block has only one variable assigned to it.
6423 We try to place anchors RANGE bytes apart, so there can then be
6424 anchors at +/-RANGE, +/-2 * RANGE, and so on, up to the limits of
6425 a ptr_mode offset. With some target settings, the lowest such
6426 anchor might be out of range for the lowest ptr_mode offset;
6427 likewise the highest anchor for the highest offset. Use anchors
6428 at the extreme ends of the ptr_mode range in such cases.
6430 All arithmetic uses unsigned integers in order to avoid
6431 signed overflow. */
6432 max_offset = (unsigned HOST_WIDE_INT) targetm.max_anchor_offset;
6433 min_offset = (unsigned HOST_WIDE_INT) targetm.min_anchor_offset;
6434 range = max_offset - min_offset + 1;
6435 if (range == 0)
6436 offset = 0;
6437 else
6439 bias = 1 << (GET_MODE_BITSIZE (ptr_mode) - 1);
6440 if (offset < 0)
6442 delta = -(unsigned HOST_WIDE_INT) offset + max_offset;
6443 delta -= delta % range;
6444 if (delta > bias)
6445 delta = bias;
6446 offset = (HOST_WIDE_INT) (-delta);
6448 else
6450 delta = (unsigned HOST_WIDE_INT) offset - min_offset;
6451 delta -= delta % range;
6452 if (delta > bias - 1)
6453 delta = bias - 1;
6454 offset = (HOST_WIDE_INT) delta;
6458 /* Do a binary search to see if there's already an anchor we can use.
6459 Set BEGIN to the new anchor's index if not. */
6460 begin = 0;
6461 end = VEC_length (rtx, block->anchors);
6462 while (begin != end)
6464 middle = (end + begin) / 2;
6465 anchor = VEC_index (rtx, block->anchors, middle);
6466 if (SYMBOL_REF_BLOCK_OFFSET (anchor) > offset)
6467 end = middle;
6468 else if (SYMBOL_REF_BLOCK_OFFSET (anchor) < offset)
6469 begin = middle + 1;
6470 else if (SYMBOL_REF_TLS_MODEL (anchor) > model)
6471 end = middle;
6472 else if (SYMBOL_REF_TLS_MODEL (anchor) < model)
6473 begin = middle + 1;
6474 else
6475 return anchor;
6478 /* Create a new anchor with a unique label. */
6479 ASM_GENERATE_INTERNAL_LABEL (label, "LANCHOR", anchor_labelno++);
6480 anchor = create_block_symbol (ggc_strdup (label), block, offset);
6481 SYMBOL_REF_FLAGS (anchor) |= SYMBOL_FLAG_LOCAL | SYMBOL_FLAG_ANCHOR;
6482 SYMBOL_REF_FLAGS (anchor) |= model << SYMBOL_FLAG_TLS_SHIFT;
6484 /* Insert it at index BEGIN. */
6485 VEC_safe_insert (rtx, gc, block->anchors, begin, anchor);
6486 return anchor;
6489 /* Output the objects in BLOCK. */
6491 static void
6492 output_object_block (struct object_block *block)
6494 struct constant_descriptor_rtx *desc;
6495 unsigned int i;
6496 HOST_WIDE_INT offset;
6497 tree decl;
6498 rtx symbol;
6500 if (block->objects == NULL)
6501 return;
6503 /* Switch to the section and make sure that the first byte is
6504 suitably aligned. */
6505 switch_to_section (block->sect);
6506 assemble_align (block->alignment);
6508 /* Define the values of all anchors relative to the current section
6509 position. */
6510 for (i = 0; VEC_iterate (rtx, block->anchors, i, symbol); i++)
6511 targetm.asm_out.output_anchor (symbol);
6513 /* Output the objects themselves. */
6514 offset = 0;
6515 for (i = 0; VEC_iterate (rtx, block->objects, i, symbol); i++)
6517 /* Move to the object's offset, padding with zeros if necessary. */
6518 assemble_zeros (SYMBOL_REF_BLOCK_OFFSET (symbol) - offset);
6519 offset = SYMBOL_REF_BLOCK_OFFSET (symbol);
6520 if (CONSTANT_POOL_ADDRESS_P (symbol))
6522 desc = SYMBOL_REF_CONSTANT (symbol);
6523 output_constant_pool_1 (desc, 1);
6524 offset += GET_MODE_SIZE (desc->mode);
6526 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
6528 decl = SYMBOL_REF_DECL (symbol);
6529 assemble_constant_contents (decl, XSTR (symbol, 0),
6530 get_constant_alignment (decl));
6531 offset += get_constant_size (decl);
6533 else
6535 decl = SYMBOL_REF_DECL (symbol);
6536 assemble_variable_contents (decl, XSTR (symbol, 0), false);
6537 offset += tree_low_cst (DECL_SIZE_UNIT (decl), 1);
6542 /* A htab_traverse callback used to call output_object_block for
6543 each member of object_block_htab. */
6545 static int
6546 output_object_block_htab (void **slot, void *data ATTRIBUTE_UNUSED)
6548 output_object_block ((struct object_block *) (*slot));
6549 return 1;
6552 /* Output the definitions of all object_blocks. */
6554 void
6555 output_object_blocks (void)
6557 htab_traverse (object_block_htab, output_object_block_htab, NULL);
6560 /* This function provides a possible implementation of the
6561 TARGET_ASM_RECORD_GCC_SWITCHES target hook for ELF targets. When triggered
6562 by -frecord-gcc-switches it creates a new mergeable, string section in the
6563 assembler output file called TARGET_ASM_RECORD_GCC_SWITCHES_SECTION which
6564 contains the switches in ASCII format.
6566 FIXME: This code does not correctly handle double quote characters
6567 that appear inside strings, (it strips them rather than preserving them).
6568 FIXME: ASM_OUTPUT_ASCII, as defined in config/elfos.h will not emit NUL
6569 characters - instead it treats them as sub-string separators. Since
6570 we want to emit NUL strings terminators into the object file we have to use
6571 ASM_OUTPUT_SKIP. */
6574 elf_record_gcc_switches (print_switch_type type, const char * name)
6576 static char buffer[1024];
6578 /* This variable is used as part of a simplistic heuristic to detect
6579 command line switches which take an argument:
6581 "If a command line option does not start with a dash then
6582 it is an argument for the previous command line option."
6584 This fails in the case of the command line option which is the name
6585 of the file to compile, but otherwise it is pretty reasonable. */
6586 static bool previous_name_held_back = FALSE;
6588 switch (type)
6590 case SWITCH_TYPE_PASSED:
6591 if (* name != '-')
6593 if (previous_name_held_back)
6595 unsigned int len = strlen (buffer);
6597 snprintf (buffer + len, sizeof buffer - len, " %s", name);
6598 ASM_OUTPUT_ASCII (asm_out_file, buffer, strlen (buffer));
6599 ASM_OUTPUT_SKIP (asm_out_file, (unsigned HOST_WIDE_INT) 1);
6600 previous_name_held_back = FALSE;
6602 else
6604 strncpy (buffer, name, sizeof buffer);
6605 ASM_OUTPUT_ASCII (asm_out_file, buffer, strlen (buffer));
6606 ASM_OUTPUT_SKIP (asm_out_file, (unsigned HOST_WIDE_INT) 1);
6609 else
6611 if (previous_name_held_back)
6613 ASM_OUTPUT_ASCII (asm_out_file, buffer, strlen (buffer));
6614 ASM_OUTPUT_SKIP (asm_out_file, (unsigned HOST_WIDE_INT) 1);
6617 strncpy (buffer, name, sizeof buffer);
6618 previous_name_held_back = TRUE;
6620 break;
6622 case SWITCH_TYPE_DESCRIPTIVE:
6623 if (name == NULL)
6625 /* Distinguish between invocations where name is NULL. */
6626 static bool started = false;
6628 if (started)
6630 if (previous_name_held_back)
6632 ASM_OUTPUT_ASCII (asm_out_file, buffer, strlen (buffer));
6633 ASM_OUTPUT_SKIP (asm_out_file, (unsigned HOST_WIDE_INT) 1);
6636 else
6638 section * sec;
6640 sec = get_section (targetm.asm_out.record_gcc_switches_section,
6641 SECTION_DEBUG
6642 | SECTION_MERGE
6643 | SECTION_STRINGS
6644 | (SECTION_ENTSIZE & 1),
6645 NULL);
6646 switch_to_section (sec);
6647 started = true;
6651 default:
6652 break;
6655 /* The return value is currently ignored by the caller, but must be 0.
6656 For -fverbose-asm the return value would be the number of characters
6657 emitted into the assembler file. */
6658 return 0;
6661 /* Emit text to declare externally defined symbols. It is needed to
6662 properly support non-default visibility. */
6663 void
6664 default_elf_asm_output_external (FILE *file ATTRIBUTE_UNUSED,
6665 tree decl,
6666 const char *name ATTRIBUTE_UNUSED)
6668 /* We output the name if and only if TREE_SYMBOL_REFERENCED is
6669 set in order to avoid putting out names that are never really
6670 used. */
6671 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))
6672 && targetm.binds_local_p (decl))
6673 maybe_assemble_visibility (decl);
6676 #include "gt-varasm.h"