OSDN Git Service

* configure.ac (i[34567]86-*-*): Handle Solaris 2/x86 TLS support
[pf3gnuchains/gcc-fork.git] / gcc / varasm.c
1 /* Output variables, constants and external declarations, for GNU compiler.
2    Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
3    1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
4    2010  Free Software Foundation, Inc.
5
6 This file is part of GCC.
7
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.
12
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.
17
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/>.  */
21
22
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.
26
27    We also output the assembler code for constants stored in memory
28    and are responsible for combining constants with the same value.  */
29
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 "ggc.h"
46 #include "langhooks.h"
47 #include "tm_p.h"
48 #include "debug.h"
49 #include "target.h"
50 #include "targhooks.h"
51 #include "tree-mudflap.h"
52 #include "cgraph.h"
53 #include "cfglayout.h"
54 #include "basic-block.h"
55 #include "tree-iterator.h"
56
57 #ifdef XCOFF_DEBUGGING_INFO
58 #include "xcoffout.h"           /* Needed for external data
59                                    declarations for e.g. AIX 4.x.  */
60 #endif
61
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;
65
66 const char *first_global_object_name;
67 const char *weak_global_object_name;
68
69 struct addr_const;
70 struct constant_descriptor_rtx;
71 struct rtx_constant_pool;
72
73 #define n_deferred_constants (crtl->varasm.deferred_constants)
74
75 /* Number for making the label on the next
76    constant that is stored in memory.  */
77
78 static GTY(()) int const_labelno;
79
80 /* Carry information from ASM_DECLARE_OBJECT_NAME
81    to ASM_FINISH_DECLARE_OBJECT.  */
82
83 int size_directive_output;
84
85 /* The last decl for which assemble_variable was called,
86    if it did ASM_DECLARE_OBJECT_NAME.
87    If the last call to assemble_variable didn't do that,
88    this holds 0.  */
89
90 tree last_assemble_variable_decl;
91
92 /* The following global variable indicates if the first basic block
93    in a function belongs to the cold partition or not.  */
94
95 bool first_function_block_is_cold;
96
97 /* We give all constants their own alias set.  Perhaps redundant with
98    MEM_READONLY_P, but pre-dates it.  */
99
100 static alias_set_type const_alias_set;
101
102 static const char *strip_reg_name (const char *);
103 static int contains_pointers_p (tree);
104 #ifdef ASM_OUTPUT_EXTERNAL
105 static bool incorporeal_function_p (tree);
106 #endif
107 static void decode_addr_const (tree, struct addr_const *);
108 static hashval_t const_desc_hash (const void *);
109 static int const_desc_eq (const void *, const void *);
110 static hashval_t const_hash_1 (const tree);
111 static int compare_constant (const tree, const tree);
112 static tree copy_constant (tree);
113 static void output_constant_def_contents (rtx);
114 static void output_addressed_constants (tree);
115 static unsigned HOST_WIDE_INT array_size_for_constructor (tree);
116 static unsigned min_align (unsigned, unsigned);
117 static void globalize_decl (tree);
118 #ifdef BSS_SECTION_ASM_OP
119 #ifdef ASM_OUTPUT_BSS
120 static void asm_output_bss (FILE *, tree, const char *,
121                             unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT);
122 #endif
123 #ifdef ASM_OUTPUT_ALIGNED_BSS
124 static void asm_output_aligned_bss (FILE *, tree, const char *,
125                                     unsigned HOST_WIDE_INT, int)
126      ATTRIBUTE_UNUSED;
127 #endif
128 #endif /* BSS_SECTION_ASM_OP */
129 static void mark_weak (tree);
130 static void output_constant_pool (const char *, tree);
131 \f
132 /* Well-known sections, each one associated with some sort of *_ASM_OP.  */
133 section *text_section;
134 section *data_section;
135 section *readonly_data_section;
136 section *sdata_section;
137 section *ctors_section;
138 section *dtors_section;
139 section *bss_section;
140 section *sbss_section;
141
142 /* Various forms of common section.  All are guaranteed to be nonnull.  */
143 section *tls_comm_section;
144 section *comm_section;
145 section *lcomm_section;
146
147 /* A SECTION_NOSWITCH section used for declaring global BSS variables.
148    May be null.  */
149 section *bss_noswitch_section;
150
151 /* The section that holds the main exception table, when known.  The section
152    is set either by the target's init_sections hook or by the first call to
153    switch_to_exception_section.  */
154 section *exception_section;
155
156 /* The section that holds the DWARF2 frame unwind information, when known.
157    The section is set either by the target's init_sections hook or by the
158    first call to switch_to_eh_frame_section.  */
159 section *eh_frame_section;
160
161 /* asm_out_file's current section.  This is NULL if no section has yet
162    been selected or if we lose track of what the current section is.  */
163 section *in_section;
164
165 /* True if code for the current function is currently being directed
166    at the cold section.  */
167 bool in_cold_section_p;
168
169 /* A linked list of all the unnamed sections.  */
170 static GTY(()) section *unnamed_sections;
171
172 /* Return a nonzero value if DECL has a section attribute.  */
173 #ifndef IN_NAMED_SECTION
174 #define IN_NAMED_SECTION(DECL) \
175   ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
176    && DECL_SECTION_NAME (DECL) != NULL_TREE)
177 #endif
178
179 /* Hash table of named sections.  */
180 static GTY((param_is (section))) htab_t section_htab;
181
182 /* A table of object_blocks, indexed by section.  */
183 static GTY((param_is (struct object_block))) htab_t object_block_htab;
184
185 /* The next number to use for internal anchor labels.  */
186 static GTY(()) int anchor_labelno;
187
188 /* A pool of constants that can be shared between functions.  */
189 static GTY(()) struct rtx_constant_pool *shared_constant_pool;
190
191 /* TLS emulation.  */
192
193 static GTY ((if_marked ("tree_map_marked_p"), param_is (struct tree_map)))
194      htab_t emutls_htab;
195 static GTY (()) tree emutls_object_type;
196 /* Emulated TLS objects have the TLS model TLS_MODEL_EMULATED.  This
197    macro can be used on them to distinguish the control variable from
198    the initialization template.  */
199 #define DECL_EMUTLS_VAR_P(D)  (TREE_TYPE (D) == emutls_object_type)
200
201 #if !defined (NO_DOT_IN_LABEL)
202 # define EMUTLS_SEPARATOR       "."
203 #elif !defined (NO_DOLLAR_IN_LABEL)
204 # define EMUTLS_SEPARATOR       "$"
205 #else
206 # define EMUTLS_SEPARATOR       "_"
207 #endif
208
209 /* Create an IDENTIFIER_NODE by prefixing PREFIX to the
210    IDENTIFIER_NODE NAME's name.  */
211
212 static tree
213 prefix_name (const char *prefix, tree name)
214 {
215   unsigned plen = strlen (prefix);
216   unsigned nlen = strlen (IDENTIFIER_POINTER (name));
217   char *toname = (char *) alloca (plen + nlen + 1);
218
219   memcpy (toname, prefix, plen);
220   memcpy (toname + plen, IDENTIFIER_POINTER (name), nlen + 1);
221
222   return get_identifier (toname);
223 }
224
225 /* Create an identifier for the struct __emutls_object, given an identifier
226    of the DECL_ASSEMBLY_NAME of the original object.  */
227
228 static tree
229 get_emutls_object_name (tree name)
230 {
231   const char *prefix = (targetm.emutls.var_prefix
232                         ? targetm.emutls.var_prefix
233                         : "__emutls_v" EMUTLS_SEPARATOR);
234   return prefix_name (prefix, name);
235 }
236
237 tree
238 default_emutls_var_fields (tree type, tree *name ATTRIBUTE_UNUSED)
239 {
240   tree word_type_node, field, next_field;
241
242   field = build_decl (UNKNOWN_LOCATION,
243                       FIELD_DECL, get_identifier ("__templ"), ptr_type_node);
244   DECL_CONTEXT (field) = type;
245   next_field = field;
246
247   field = build_decl (UNKNOWN_LOCATION,
248                       FIELD_DECL, get_identifier ("__offset"),
249                       ptr_type_node);
250   DECL_CONTEXT (field) = type;
251   TREE_CHAIN (field) = next_field;
252   next_field = field;
253
254   word_type_node = lang_hooks.types.type_for_mode (word_mode, 1);
255   field = build_decl (UNKNOWN_LOCATION,
256                       FIELD_DECL, get_identifier ("__align"),
257                       word_type_node);
258   DECL_CONTEXT (field) = type;
259   TREE_CHAIN (field) = next_field;
260   next_field = field;
261
262   field = build_decl (UNKNOWN_LOCATION,
263                       FIELD_DECL, get_identifier ("__size"), word_type_node);
264   DECL_CONTEXT (field) = type;
265   TREE_CHAIN (field) = next_field;
266
267   return field;
268 }
269
270 /* Create the structure for struct __emutls_object.  This should match the
271    structure at the top of emutls.c, modulo the union there.  */
272
273 static tree
274 get_emutls_object_type (void)
275 {
276   tree type, type_name, field;
277
278   type = emutls_object_type;
279   if (type)
280     return type;
281
282   emutls_object_type = type = lang_hooks.types.make_type (RECORD_TYPE);
283   type_name = NULL;
284   field = targetm.emutls.var_fields (type, &type_name);
285   if (!type_name)
286     type_name = get_identifier ("__emutls_object");
287   type_name = build_decl (UNKNOWN_LOCATION,
288                           TYPE_DECL, type_name, type);
289   TYPE_NAME (type) = type_name;
290   TYPE_FIELDS (type) = field;
291   layout_type (type);
292
293   return type;
294 }
295
296 /* Create a read-only variable like DECL, with the same DECL_INITIAL.
297    This will be used for initializing the emulated tls data area.  */
298
299 static tree
300 get_emutls_init_templ_addr (tree decl)
301 {
302   tree name, to;
303
304   if (targetm.emutls.register_common && !DECL_INITIAL (decl)
305       && !DECL_SECTION_NAME (decl))
306     return null_pointer_node;
307
308   name = DECL_ASSEMBLER_NAME (decl);
309   if (!targetm.emutls.tmpl_prefix || targetm.emutls.tmpl_prefix[0])
310     {
311       const char *prefix = (targetm.emutls.tmpl_prefix
312                             ? targetm.emutls.tmpl_prefix
313                             : "__emutls_t" EMUTLS_SEPARATOR);
314       name = prefix_name (prefix, name);
315     }
316
317   to = build_decl (DECL_SOURCE_LOCATION (decl),
318                    VAR_DECL, name, TREE_TYPE (decl));
319   SET_DECL_ASSEMBLER_NAME (to, DECL_NAME (to));
320   DECL_TLS_MODEL (to) = TLS_MODEL_EMULATED;
321   DECL_ARTIFICIAL (to) = 1;
322   TREE_USED (to) = TREE_USED (decl);
323   TREE_READONLY (to) = 1;
324   DECL_IGNORED_P (to) = 1;
325   DECL_CONTEXT (to) = DECL_CONTEXT (decl);
326   DECL_SECTION_NAME (to) = DECL_SECTION_NAME (decl);
327
328   DECL_WEAK (to) = DECL_WEAK (decl);
329   if (DECL_ONE_ONLY (decl))
330     {
331       make_decl_one_only (to, DECL_ASSEMBLER_NAME (to));
332       TREE_STATIC (to) = TREE_STATIC (decl);
333       TREE_PUBLIC (to) = TREE_PUBLIC (decl);
334       DECL_VISIBILITY (to) = DECL_VISIBILITY (decl);
335     }
336   else
337     TREE_STATIC (to) = 1;
338
339   DECL_INITIAL (to) = DECL_INITIAL (decl);
340   DECL_INITIAL (decl) = NULL;
341
342   varpool_finalize_decl (to);
343   return build_fold_addr_expr (to);
344 }
345
346 /* When emulating tls, we use a control structure for use by the runtime.
347    Create and return this structure.  */
348
349 tree
350 emutls_decl (tree decl)
351 {
352   tree name, to;
353   struct tree_map *h, in;
354   void **loc;
355
356   if (targetm.have_tls || decl == NULL || decl == error_mark_node
357       || TREE_CODE (decl) != VAR_DECL || ! DECL_THREAD_LOCAL_P (decl))
358     return decl;
359
360   /* Look up the object in the hash; return the control structure if
361      it has already been created.  */
362   if (! emutls_htab)
363     emutls_htab = htab_create_ggc (512, tree_map_hash, tree_map_eq, 0);
364
365   name = DECL_ASSEMBLER_NAME (decl);
366
367   /* Note that we use the hash of the decl's name, rather than a hash
368      of the decl's pointer.  In emutls_finish we iterate through the
369      hash table, and we want this traversal to be predictable.  */
370   in.hash = htab_hash_string (IDENTIFIER_POINTER (name));
371   in.base.from = decl;
372   loc = htab_find_slot_with_hash (emutls_htab, &in, in.hash, INSERT);
373   h = (struct tree_map *) *loc;
374   if (h != NULL)
375     to = h->to;
376   else
377     {
378       to = build_decl (DECL_SOURCE_LOCATION (decl),
379                        VAR_DECL, get_emutls_object_name (name),
380                        get_emutls_object_type ());
381
382       h = GGC_NEW (struct tree_map);
383       h->hash = in.hash;
384       h->base.from = decl;
385       h->to = to;
386       *(struct tree_map **) loc = h;
387
388       DECL_TLS_MODEL (to) = TLS_MODEL_EMULATED;
389       DECL_ARTIFICIAL (to) = 1;
390       DECL_IGNORED_P (to) = 1;
391       TREE_READONLY (to) = 0;
392       SET_DECL_ASSEMBLER_NAME (to, DECL_NAME (to));
393       if (DECL_ONE_ONLY (decl))
394         make_decl_one_only (to, DECL_ASSEMBLER_NAME (to));
395       DECL_CONTEXT (to) = DECL_CONTEXT (decl);
396       if (targetm.emutls.var_align_fixed)
397         /* If we're not allowed to change the proxy object's
398            alignment, pretend it's been set by the user.  */
399         DECL_USER_ALIGN (to) = 1;
400     }
401
402   /* Note that these fields may need to be updated from time to time from
403      the original decl.  Consider:
404         extern __thread int i;
405         int foo() { return i; }
406         __thread int i = 1;
407      in which I goes from external to locally defined and initialized.  */
408
409   TREE_STATIC (to) = TREE_STATIC (decl);
410   TREE_USED (to) = TREE_USED (decl);
411   TREE_PUBLIC (to) = TREE_PUBLIC (decl);
412   DECL_EXTERNAL (to) = DECL_EXTERNAL (decl);
413   DECL_COMMON (to) = DECL_COMMON (decl);
414   DECL_WEAK (to) = DECL_WEAK (decl);
415   DECL_VISIBILITY (to) = DECL_VISIBILITY (decl);
416
417   return to;
418 }
419
420 static int
421 emutls_common_1 (void **loc, void *xstmts)
422 {
423   struct tree_map *h = *(struct tree_map **) loc;
424   tree args, x, *pstmts = (tree *) xstmts;
425   tree word_type_node;
426
427   if (! DECL_COMMON (h->base.from)
428       || (DECL_INITIAL (h->base.from)
429           && DECL_INITIAL (h->base.from) != error_mark_node))
430     return 1;
431
432   word_type_node = lang_hooks.types.type_for_mode (word_mode, 1);
433
434   /* The idea was to call get_emutls_init_templ_addr here, but if we
435      do this and there is an initializer, -fanchor_section loses,
436      because it would be too late to ensure the template is
437      output.  */
438   x = null_pointer_node;
439   args = tree_cons (NULL, x, NULL);
440   x = build_int_cst (word_type_node, DECL_ALIGN_UNIT (h->base.from));
441   args = tree_cons (NULL, x, args);
442   x = fold_convert (word_type_node, DECL_SIZE_UNIT (h->base.from));
443   args = tree_cons (NULL, x, args);
444   x = build_fold_addr_expr (h->to);
445   args = tree_cons (NULL, x, args);
446
447   x = built_in_decls[BUILT_IN_EMUTLS_REGISTER_COMMON];
448   x = build_function_call_expr (UNKNOWN_LOCATION, x, args);
449
450   append_to_statement_list (x, pstmts);
451   return 1;
452 }
453
454 void
455 emutls_finish (void)
456 {
457   if (targetm.emutls.register_common)
458     {
459       tree body = NULL_TREE;
460
461       if (emutls_htab == NULL)
462         return;
463
464       htab_traverse_noresize (emutls_htab, emutls_common_1, &body);
465       if (body == NULL_TREE)
466         return;
467
468       cgraph_build_static_cdtor ('I', body, DEFAULT_INIT_PRIORITY);
469     }
470 }
471
472 /* Helper routines for maintaining section_htab.  */
473
474 static int
475 section_entry_eq (const void *p1, const void *p2)
476 {
477   const section *old = (const section *) p1;
478   const char *new_name = (const char *) p2;
479
480   return strcmp (old->named.name, new_name) == 0;
481 }
482
483 static hashval_t
484 section_entry_hash (const void *p)
485 {
486   const section *old = (const section *) p;
487   return htab_hash_string (old->named.name);
488 }
489
490 /* Return a hash value for section SECT.  */
491
492 static hashval_t
493 hash_section (section *sect)
494 {
495   if (sect->common.flags & SECTION_NAMED)
496     return htab_hash_string (sect->named.name);
497   return sect->common.flags;
498 }
499
500 /* Helper routines for maintaining object_block_htab.  */
501
502 static int
503 object_block_entry_eq (const void *p1, const void *p2)
504 {
505   const struct object_block *old = (const struct object_block *) p1;
506   const section *new_section = (const section *) p2;
507
508   return old->sect == new_section;
509 }
510
511 static hashval_t
512 object_block_entry_hash (const void *p)
513 {
514   const struct object_block *old = (const struct object_block *) p;
515   return hash_section (old->sect);
516 }
517
518 /* Return a new unnamed section with the given fields.  */
519
520 section *
521 get_unnamed_section (unsigned int flags, void (*callback) (const void *),
522                      const void *data)
523 {
524   section *sect;
525
526   sect = GGC_NEW (section);
527   sect->unnamed.common.flags = flags | SECTION_UNNAMED;
528   sect->unnamed.callback = callback;
529   sect->unnamed.data = data;
530   sect->unnamed.next = unnamed_sections;
531
532   unnamed_sections = sect;
533   return sect;
534 }
535
536 /* Return a SECTION_NOSWITCH section with the given fields.  */
537
538 static section *
539 get_noswitch_section (unsigned int flags, noswitch_section_callback callback)
540 {
541   section *sect;
542
543   sect = GGC_NEW (section);
544   sect->noswitch.common.flags = flags | SECTION_NOSWITCH;
545   sect->noswitch.callback = callback;
546
547   return sect;
548 }
549
550 /* Return the named section structure associated with NAME.  Create
551    a new section with the given fields if no such structure exists.  */
552
553 section *
554 get_section (const char *name, unsigned int flags, tree decl)
555 {
556   section *sect, **slot;
557
558   slot = (section **)
559     htab_find_slot_with_hash (section_htab, name,
560                               htab_hash_string (name), INSERT);
561   flags |= SECTION_NAMED;
562   if (*slot == NULL)
563     {
564       sect = GGC_NEW (section);
565       sect->named.common.flags = flags;
566       sect->named.name = ggc_strdup (name);
567       sect->named.decl = decl;
568       *slot = sect;
569     }
570   else
571     {
572       sect = *slot;
573       if ((sect->common.flags & ~SECTION_DECLARED) != flags
574           && ((sect->common.flags | flags) & SECTION_OVERRIDE) == 0)
575         {
576           /* Sanity check user variables for flag changes.  */
577           if (decl == 0)
578             decl = sect->named.decl;
579           gcc_assert (decl);
580           error ("%+D causes a section type conflict", decl);
581         }
582     }
583   return sect;
584 }
585
586 /* Return true if the current compilation mode benefits from having
587    objects grouped into blocks.  */
588
589 static bool
590 use_object_blocks_p (void)
591 {
592   return flag_section_anchors;
593 }
594
595 /* Return the object_block structure for section SECT.  Create a new
596    structure if we haven't created one already.  Return null if SECT
597    itself is null.  */
598
599 static struct object_block *
600 get_block_for_section (section *sect)
601 {
602   struct object_block *block;
603   void **slot;
604
605   if (sect == NULL)
606     return NULL;
607
608   slot = htab_find_slot_with_hash (object_block_htab, sect,
609                                    hash_section (sect), INSERT);
610   block = (struct object_block *) *slot;
611   if (block == NULL)
612     {
613       block = (struct object_block *)
614         ggc_alloc_cleared (sizeof (struct object_block));
615       block->sect = sect;
616       *slot = block;
617     }
618   return block;
619 }
620
621 /* Create a symbol with label LABEL and place it at byte offset
622    OFFSET in BLOCK.  OFFSET can be negative if the symbol's offset
623    is not yet known.  LABEL must be a garbage-collected string.  */
624
625 static rtx
626 create_block_symbol (const char *label, struct object_block *block,
627                      HOST_WIDE_INT offset)
628 {
629   rtx symbol;
630   unsigned int size;
631
632   /* Create the extended SYMBOL_REF.  */
633   size = RTX_HDR_SIZE + sizeof (struct block_symbol);
634   symbol = (rtx) ggc_alloc_zone (size, &rtl_zone);
635
636   /* Initialize the normal SYMBOL_REF fields.  */
637   memset (symbol, 0, size);
638   PUT_CODE (symbol, SYMBOL_REF);
639   PUT_MODE (symbol, Pmode);
640   XSTR (symbol, 0) = label;
641   SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_HAS_BLOCK_INFO;
642
643   /* Initialize the block_symbol stuff.  */
644   SYMBOL_REF_BLOCK (symbol) = block;
645   SYMBOL_REF_BLOCK_OFFSET (symbol) = offset;
646
647   return symbol;
648 }
649
650 static void
651 initialize_cold_section_name (void)
652 {
653   const char *stripped_name;
654   char *name, *buffer;
655   tree dsn;
656
657   gcc_assert (cfun && current_function_decl);
658   if (crtl->subsections.unlikely_text_section_name)
659     return;
660
661   dsn = DECL_SECTION_NAME (current_function_decl);
662   if (flag_function_sections && dsn)
663     {
664       name = (char *) alloca (TREE_STRING_LENGTH (dsn) + 1);
665       memcpy (name, TREE_STRING_POINTER (dsn), TREE_STRING_LENGTH (dsn) + 1);
666
667       stripped_name = targetm.strip_name_encoding (name);
668
669       buffer = ACONCAT ((stripped_name, "_unlikely", NULL));
670       crtl->subsections.unlikely_text_section_name = ggc_strdup (buffer);
671     }
672   else
673     crtl->subsections.unlikely_text_section_name =  UNLIKELY_EXECUTED_TEXT_SECTION_NAME;
674 }
675
676 /* Tell assembler to switch to unlikely-to-be-executed text section.  */
677
678 section *
679 unlikely_text_section (void)
680 {
681   if (cfun)
682     {
683       if (!crtl->subsections.unlikely_text_section_name)
684         initialize_cold_section_name ();
685
686       return get_named_section (NULL, crtl->subsections.unlikely_text_section_name, 0);
687     }
688   else
689     return get_named_section (NULL, UNLIKELY_EXECUTED_TEXT_SECTION_NAME, 0);
690 }
691
692 /* When called within a function context, return true if the function
693    has been assigned a cold text section and if SECT is that section.
694    When called outside a function context, return true if SECT is the
695    default cold section.  */
696
697 bool
698 unlikely_text_section_p (section *sect)
699 {
700   const char *name;
701
702   if (cfun)
703     name = crtl->subsections.unlikely_text_section_name;
704   else
705     name = UNLIKELY_EXECUTED_TEXT_SECTION_NAME;
706
707   return (name
708           && sect
709           && SECTION_STYLE (sect) == SECTION_NAMED
710           && strcmp (name, sect->named.name) == 0);
711 }
712
713 /* Return a section with a particular name and with whatever SECTION_*
714    flags section_type_flags deems appropriate.  The name of the section
715    is taken from NAME if nonnull, otherwise it is taken from DECL's
716    DECL_SECTION_NAME.  DECL is the decl associated with the section
717    (see the section comment for details) and RELOC is as for
718    section_type_flags.  */
719
720 section *
721 get_named_section (tree decl, const char *name, int reloc)
722 {
723   unsigned int flags;
724
725   gcc_assert (!decl || DECL_P (decl));
726   if (name == NULL)
727     name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
728
729   flags = targetm.section_type_flags (decl, name, reloc);
730
731   return get_section (name, flags, decl);
732 }
733
734 /* If required, set DECL_SECTION_NAME to a unique name.  */
735
736 void
737 resolve_unique_section (tree decl, int reloc ATTRIBUTE_UNUSED,
738                         int flag_function_or_data_sections)
739 {
740   if (DECL_SECTION_NAME (decl) == NULL_TREE
741       && targetm.have_named_sections
742       && (flag_function_or_data_sections
743           || DECL_ONE_ONLY (decl)))
744     targetm.asm_out.unique_section (decl, reloc);
745 }
746
747 #ifdef BSS_SECTION_ASM_OP
748
749 #ifdef ASM_OUTPUT_BSS
750
751 /* Utility function for ASM_OUTPUT_BSS for targets to use if
752    they don't support alignments in .bss.
753    ??? It is believed that this function will work in most cases so such
754    support is localized here.  */
755
756 static void
757 asm_output_bss (FILE *file, tree decl ATTRIBUTE_UNUSED,
758                 const char *name,
759                 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
760                 unsigned HOST_WIDE_INT rounded)
761 {
762   gcc_assert (strcmp (XSTR (XEXP (DECL_RTL (decl), 0), 0), name) == 0);
763   targetm.asm_out.globalize_decl_name (file, decl);
764   switch_to_section (bss_section);
765 #ifdef ASM_DECLARE_OBJECT_NAME
766   last_assemble_variable_decl = decl;
767   ASM_DECLARE_OBJECT_NAME (file, name, decl);
768 #else
769   /* Standard thing is just output label for the object.  */
770   ASM_OUTPUT_LABEL (file, name);
771 #endif /* ASM_DECLARE_OBJECT_NAME */
772   ASM_OUTPUT_SKIP (file, rounded ? rounded : 1);
773 }
774
775 #endif
776
777 #ifdef ASM_OUTPUT_ALIGNED_BSS
778
779 /* Utility function for targets to use in implementing
780    ASM_OUTPUT_ALIGNED_BSS.
781    ??? It is believed that this function will work in most cases so such
782    support is localized here.  */
783
784 static void
785 asm_output_aligned_bss (FILE *file, tree decl ATTRIBUTE_UNUSED,
786                         const char *name, unsigned HOST_WIDE_INT size,
787                         int align)
788 {
789   switch_to_section (bss_section);
790   ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
791 #ifdef ASM_DECLARE_OBJECT_NAME
792   last_assemble_variable_decl = decl;
793   ASM_DECLARE_OBJECT_NAME (file, name, decl);
794 #else
795   /* Standard thing is just output label for the object.  */
796   ASM_OUTPUT_LABEL (file, name);
797 #endif /* ASM_DECLARE_OBJECT_NAME */
798   ASM_OUTPUT_SKIP (file, size ? size : 1);
799 }
800
801 #endif
802
803 #endif /* BSS_SECTION_ASM_OP */
804
805 #ifndef USE_SELECT_SECTION_FOR_FUNCTIONS
806 /* Return the hot section for function DECL.  Return text_section for
807    null DECLs.  */
808
809 static section *
810 hot_function_section (tree decl)
811 {
812   if (decl != NULL_TREE
813       && DECL_SECTION_NAME (decl) != NULL_TREE
814       && targetm.have_named_sections)
815     return get_named_section (decl, NULL, 0);
816   else
817     return text_section;
818 }
819 #endif
820
821 /* Return the section for function DECL.
822
823    If DECL is NULL_TREE, return the text section.  We can be passed
824    NULL_TREE under some circumstances by dbxout.c at least.  */
825
826 section *
827 function_section (tree decl)
828 {
829   int reloc = 0;
830
831   if (first_function_block_is_cold)
832     reloc = 1;
833
834 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
835   if (decl != NULL_TREE
836       && DECL_SECTION_NAME (decl) != NULL_TREE)
837     return reloc ? unlikely_text_section ()
838                  : get_named_section (decl, NULL, 0);
839   else
840     return targetm.asm_out.select_section (decl, reloc, DECL_ALIGN (decl));
841 #else
842   return reloc ? unlikely_text_section () : hot_function_section (decl);
843 #endif
844 }
845
846 section *
847 current_function_section (void)
848 {
849 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
850   if (current_function_decl != NULL_TREE
851       && DECL_SECTION_NAME (current_function_decl) != NULL_TREE)
852     return in_cold_section_p ? unlikely_text_section ()
853                              : get_named_section (current_function_decl,
854                                                   NULL, 0);
855   else
856     return targetm.asm_out.select_section (current_function_decl,
857                                            in_cold_section_p,
858                                            DECL_ALIGN (current_function_decl));
859 #else
860   return (in_cold_section_p
861           ? unlikely_text_section ()
862           : hot_function_section (current_function_decl));
863 #endif
864 }
865
866 /* Return the read-only data section associated with function DECL.  */
867
868 section *
869 default_function_rodata_section (tree decl)
870 {
871   if (decl != NULL_TREE && DECL_SECTION_NAME (decl))
872     {
873       const char *name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
874
875       if (DECL_ONE_ONLY (decl) && HAVE_COMDAT_GROUP)
876         {
877           const char *dot;
878           size_t len;
879           char* rname;
880
881           dot = strchr (name + 1, '.');
882           if (!dot)
883             dot = name;
884           len = strlen (dot) + 8;
885           rname = (char *) alloca (len);
886
887           strcpy (rname, ".rodata");
888           strcat (rname, dot);
889           return get_section (rname, SECTION_LINKONCE, decl);
890         }
891       /* For .gnu.linkonce.t.foo we want to use .gnu.linkonce.r.foo.  */
892       else if (DECL_ONE_ONLY (decl)
893                && strncmp (name, ".gnu.linkonce.t.", 16) == 0)
894         {
895           size_t len = strlen (name) + 1;
896           char *rname = (char *) alloca (len);
897
898           memcpy (rname, name, len);
899           rname[14] = 'r';
900           return get_section (rname, SECTION_LINKONCE, decl);
901         }
902       /* For .text.foo we want to use .rodata.foo.  */
903       else if (flag_function_sections && flag_data_sections
904                && strncmp (name, ".text.", 6) == 0)
905         {
906           size_t len = strlen (name) + 1;
907           char *rname = (char *) alloca (len + 2);
908
909           memcpy (rname, ".rodata", 7);
910           memcpy (rname + 7, name + 5, len - 5);
911           return get_section (rname, 0, decl);
912         }
913     }
914
915   return readonly_data_section;
916 }
917
918 /* Return the read-only data section associated with function DECL
919    for targets where that section should be always the single
920    readonly data section.  */
921
922 section *
923 default_no_function_rodata_section (tree decl ATTRIBUTE_UNUSED)
924 {
925   return readonly_data_section;
926 }
927
928 /* Return the section to use for string merging.  */
929
930 static section *
931 mergeable_string_section (tree decl ATTRIBUTE_UNUSED,
932                           unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
933                           unsigned int flags ATTRIBUTE_UNUSED)
934 {
935   HOST_WIDE_INT len;
936
937   if (HAVE_GAS_SHF_MERGE && flag_merge_constants
938       && TREE_CODE (decl) == STRING_CST
939       && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
940       && align <= 256
941       && (len = int_size_in_bytes (TREE_TYPE (decl))) > 0
942       && TREE_STRING_LENGTH (decl) >= len)
943     {
944       enum machine_mode mode;
945       unsigned int modesize;
946       const char *str;
947       HOST_WIDE_INT i;
948       int j, unit;
949       char name[30];
950
951       mode = TYPE_MODE (TREE_TYPE (TREE_TYPE (decl)));
952       modesize = GET_MODE_BITSIZE (mode);
953       if (modesize >= 8 && modesize <= 256
954           && (modesize & (modesize - 1)) == 0)
955         {
956           if (align < modesize)
957             align = modesize;
958
959           str = TREE_STRING_POINTER (decl);
960           unit = GET_MODE_SIZE (mode);
961
962           /* Check for embedded NUL characters.  */
963           for (i = 0; i < len; i += unit)
964             {
965               for (j = 0; j < unit; j++)
966                 if (str[i + j] != '\0')
967                   break;
968               if (j == unit)
969                 break;
970             }
971           if (i == len - unit)
972             {
973               sprintf (name, ".rodata.str%d.%d", modesize / 8,
974                        (int) (align / 8));
975               flags |= (modesize / 8) | SECTION_MERGE | SECTION_STRINGS;
976               return get_section (name, flags, NULL);
977             }
978         }
979     }
980
981   return readonly_data_section;
982 }
983
984 /* Return the section to use for constant merging.  */
985
986 section *
987 mergeable_constant_section (enum machine_mode mode ATTRIBUTE_UNUSED,
988                             unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED,
989                             unsigned int flags ATTRIBUTE_UNUSED)
990 {
991   unsigned int modesize = GET_MODE_BITSIZE (mode);
992
993   if (HAVE_GAS_SHF_MERGE && flag_merge_constants
994       && mode != VOIDmode
995       && mode != BLKmode
996       && modesize <= align
997       && align >= 8
998       && align <= 256
999       && (align & (align - 1)) == 0)
1000     {
1001       char name[24];
1002
1003       sprintf (name, ".rodata.cst%d", (int) (align / 8));
1004       flags |= (align / 8) | SECTION_MERGE;
1005       return get_section (name, flags, NULL);
1006     }
1007   return readonly_data_section;
1008 }
1009 \f
1010 /* Given NAME, a putative register name, discard any customary prefixes.  */
1011
1012 static const char *
1013 strip_reg_name (const char *name)
1014 {
1015 #ifdef REGISTER_PREFIX
1016   if (!strncmp (name, REGISTER_PREFIX, strlen (REGISTER_PREFIX)))
1017     name += strlen (REGISTER_PREFIX);
1018 #endif
1019   if (name[0] == '%' || name[0] == '#')
1020     name++;
1021   return name;
1022 }
1023 \f
1024 /* The user has asked for a DECL to have a particular name.  Set (or
1025    change) it in such a way that we don't prefix an underscore to
1026    it.  */
1027 void
1028 set_user_assembler_name (tree decl, const char *name)
1029 {
1030   char *starred = (char *) alloca (strlen (name) + 2);
1031   starred[0] = '*';
1032   strcpy (starred + 1, name);
1033   change_decl_assembler_name (decl, get_identifier (starred));
1034   SET_DECL_RTL (decl, NULL_RTX);
1035 }
1036 \f
1037 /* Decode an `asm' spec for a declaration as a register name.
1038    Return the register number, or -1 if nothing specified,
1039    or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
1040    or -3 if ASMSPEC is `cc' and is not recognized,
1041    or -4 if ASMSPEC is `memory' and is not recognized.
1042    Accept an exact spelling or a decimal number.
1043    Prefixes such as % are optional.  */
1044
1045 int
1046 decode_reg_name (const char *asmspec)
1047 {
1048   if (asmspec != 0)
1049     {
1050       int i;
1051
1052       /* Get rid of confusing prefixes.  */
1053       asmspec = strip_reg_name (asmspec);
1054
1055       /* Allow a decimal number as a "register name".  */
1056       for (i = strlen (asmspec) - 1; i >= 0; i--)
1057         if (! ISDIGIT (asmspec[i]))
1058           break;
1059       if (asmspec[0] != 0 && i < 0)
1060         {
1061           i = atoi (asmspec);
1062           if (i < FIRST_PSEUDO_REGISTER && i >= 0)
1063             return i;
1064           else
1065             return -2;
1066         }
1067
1068       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1069         if (reg_names[i][0]
1070             && ! strcmp (asmspec, strip_reg_name (reg_names[i])))
1071           return i;
1072
1073 #ifdef ADDITIONAL_REGISTER_NAMES
1074       {
1075         static const struct { const char *const name; const int number; } table[]
1076           = ADDITIONAL_REGISTER_NAMES;
1077
1078         for (i = 0; i < (int) ARRAY_SIZE (table); i++)
1079           if (table[i].name[0]
1080               && ! strcmp (asmspec, table[i].name))
1081             return table[i].number;
1082       }
1083 #endif /* ADDITIONAL_REGISTER_NAMES */
1084
1085       if (!strcmp (asmspec, "memory"))
1086         return -4;
1087
1088       if (!strcmp (asmspec, "cc"))
1089         return -3;
1090
1091       return -2;
1092     }
1093
1094   return -1;
1095 }
1096 \f
1097 /* Return true if DECL's initializer is suitable for a BSS section.  */
1098
1099 static bool
1100 bss_initializer_p (const_tree decl)
1101 {
1102   return (DECL_INITIAL (decl) == NULL
1103           || DECL_INITIAL (decl) == error_mark_node
1104           || (flag_zero_initialized_in_bss
1105               /* Leave constant zeroes in .rodata so they
1106                  can be shared.  */
1107               && !TREE_READONLY (decl)
1108               && initializer_zerop (DECL_INITIAL (decl))));
1109 }
1110
1111 /* Compute the alignment of variable specified by DECL.
1112    DONT_OUTPUT_DATA is from assemble_variable.  */
1113
1114 void
1115 align_variable (tree decl, bool dont_output_data)
1116 {
1117   unsigned int align = DECL_ALIGN (decl);
1118
1119   /* In the case for initialing an array whose length isn't specified,
1120      where we have not yet been able to do the layout,
1121      figure out the proper alignment now.  */
1122   if (dont_output_data && DECL_SIZE (decl) == 0
1123       && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
1124     align = MAX (align, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
1125
1126   /* Some object file formats have a maximum alignment which they support.
1127      In particular, a.out format supports a maximum alignment of 4.  */
1128   if (align > MAX_OFILE_ALIGNMENT)
1129     {
1130       warning (0, "alignment of %q+D is greater than maximum object "
1131                "file alignment.  Using %d", decl,
1132                MAX_OFILE_ALIGNMENT/BITS_PER_UNIT);
1133       align = MAX_OFILE_ALIGNMENT;
1134     }
1135
1136   /* On some machines, it is good to increase alignment sometimes.  */
1137   if (! DECL_USER_ALIGN (decl))
1138     {
1139 #ifdef DATA_ALIGNMENT
1140       unsigned int data_align = DATA_ALIGNMENT (TREE_TYPE (decl), align);
1141       /* Don't increase alignment too much for TLS variables - TLS space
1142          is too precious.  */
1143       if (! DECL_THREAD_LOCAL_P (decl) || data_align <= BITS_PER_WORD)
1144         align = data_align;
1145 #endif
1146 #ifdef CONSTANT_ALIGNMENT
1147       if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
1148         {
1149           unsigned int const_align = CONSTANT_ALIGNMENT (DECL_INITIAL (decl),
1150                                                          align);
1151           /* Don't increase alignment too much for TLS variables - TLS space
1152              is too precious.  */
1153           if (! DECL_THREAD_LOCAL_P (decl) || const_align <= BITS_PER_WORD)
1154             align = const_align;
1155         }
1156 #endif
1157     }
1158
1159   /* Reset the alignment in case we have made it tighter, so we can benefit
1160      from it in get_pointer_alignment.  */
1161   DECL_ALIGN (decl) = align;
1162 }
1163
1164 /* Return the section into which the given VAR_DECL or CONST_DECL
1165    should be placed.  PREFER_NOSWITCH_P is true if a noswitch
1166    section should be used wherever possible.  */
1167
1168 static section *
1169 get_variable_section (tree decl, bool prefer_noswitch_p)
1170 {
1171   addr_space_t as = ADDR_SPACE_GENERIC;
1172   int reloc;
1173
1174   if (TREE_TYPE (decl) != error_mark_node)
1175     as = TYPE_ADDR_SPACE (TREE_TYPE (decl));
1176
1177   if (DECL_COMMON (decl))
1178     {
1179       /* If the decl has been given an explicit section name, or it resides
1180          in a non-generic address space, then it isn't common, and shouldn't
1181          be handled as such.  */
1182       gcc_assert (DECL_SECTION_NAME (decl) == NULL
1183                   && ADDR_SPACE_GENERIC_P (as));
1184       if (DECL_THREAD_LOCAL_P (decl))
1185         return tls_comm_section;
1186       /* This cannot be common bss for an emulated TLS object without
1187          a register_common hook.  */
1188       else if (DECL_TLS_MODEL (decl) == TLS_MODEL_EMULATED
1189                && !targetm.emutls.register_common)
1190         ;
1191       else if (TREE_PUBLIC (decl) && bss_initializer_p (decl))
1192         return comm_section;
1193     }
1194
1195   if (DECL_INITIAL (decl) == error_mark_node)
1196     reloc = contains_pointers_p (TREE_TYPE (decl)) ? 3 : 0;
1197   else if (DECL_INITIAL (decl))
1198     reloc = compute_reloc_for_constant (DECL_INITIAL (decl));
1199   else
1200     reloc = 0;
1201
1202   resolve_unique_section (decl, reloc, flag_data_sections);
1203   if (IN_NAMED_SECTION (decl))
1204     return get_named_section (decl, NULL, reloc);
1205
1206   if (ADDR_SPACE_GENERIC_P (as)
1207       && !DECL_THREAD_LOCAL_P (decl)
1208       && !(prefer_noswitch_p && targetm.have_switchable_bss_sections)
1209       && bss_initializer_p (decl))
1210     {
1211       if (!TREE_PUBLIC (decl))
1212         return lcomm_section;
1213       if (bss_noswitch_section)
1214         return bss_noswitch_section;
1215     }
1216
1217   return targetm.asm_out.select_section (decl, reloc, DECL_ALIGN (decl));
1218 }
1219
1220 /* Return the block into which object_block DECL should be placed.  */
1221
1222 static struct object_block *
1223 get_block_for_decl (tree decl)
1224 {
1225   section *sect;
1226
1227   if (TREE_CODE (decl) == VAR_DECL)
1228     {
1229       /* The object must be defined in this translation unit.  */
1230       if (DECL_EXTERNAL (decl))
1231         return NULL;
1232
1233       /* There's no point using object blocks for something that is
1234          isolated by definition.  */
1235       if (DECL_ONE_ONLY (decl))
1236         return NULL;
1237     }
1238
1239   /* We can only calculate block offsets if the decl has a known
1240      constant size.  */
1241   if (DECL_SIZE_UNIT (decl) == NULL)
1242     return NULL;
1243   if (!host_integerp (DECL_SIZE_UNIT (decl), 1))
1244     return NULL;
1245
1246   /* Find out which section should contain DECL.  We cannot put it into
1247      an object block if it requires a standalone definition.  */
1248   if (TREE_CODE (decl) == VAR_DECL)
1249       align_variable (decl, 0);
1250   sect = get_variable_section (decl, true);
1251   if (SECTION_STYLE (sect) == SECTION_NOSWITCH)
1252     return NULL;
1253
1254   return get_block_for_section (sect);
1255 }
1256
1257 /* Make sure block symbol SYMBOL is in block BLOCK.  */
1258
1259 static void
1260 change_symbol_block (rtx symbol, struct object_block *block)
1261 {
1262   if (block != SYMBOL_REF_BLOCK (symbol))
1263     {
1264       gcc_assert (SYMBOL_REF_BLOCK_OFFSET (symbol) < 0);
1265       SYMBOL_REF_BLOCK (symbol) = block;
1266     }
1267 }
1268
1269 /* Return true if it is possible to put DECL in an object_block.  */
1270
1271 static bool
1272 use_blocks_for_decl_p (tree decl)
1273 {
1274   /* Only data DECLs can be placed into object blocks.  */
1275   if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != CONST_DECL)
1276     return false;
1277
1278   /* Detect decls created by dw2_force_const_mem.  Such decls are
1279      special because DECL_INITIAL doesn't specify the decl's true value.
1280      dw2_output_indirect_constants will instead call assemble_variable
1281      with dont_output_data set to 1 and then print the contents itself.  */
1282   if (DECL_INITIAL (decl) == decl)
1283     return false;
1284
1285   /* If this decl is an alias, then we don't want to emit a definition.  */
1286   if (lookup_attribute ("alias", DECL_ATTRIBUTES (decl)))
1287     return false;
1288
1289   return true;
1290 }
1291
1292 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL.  DECL should
1293    have static storage duration.  In other words, it should not be an
1294    automatic variable, including PARM_DECLs.
1295
1296    There is, however, one exception: this function handles variables
1297    explicitly placed in a particular register by the user.
1298
1299    This is never called for PARM_DECL nodes.  */
1300
1301 void
1302 make_decl_rtl (tree decl)
1303 {
1304   const char *name = 0;
1305   int reg_number;
1306   rtx x;
1307
1308   /* Check that we are not being given an automatic variable.  */
1309   gcc_assert (TREE_CODE (decl) != PARM_DECL
1310               && TREE_CODE (decl) != RESULT_DECL);
1311
1312   /* A weak alias has TREE_PUBLIC set but not the other bits.  */
1313   gcc_assert (TREE_CODE (decl) != VAR_DECL
1314               || TREE_STATIC (decl)
1315               || TREE_PUBLIC (decl)
1316               || DECL_EXTERNAL (decl)
1317               || DECL_REGISTER (decl));
1318
1319   /* And that we were not given a type or a label.  */
1320   gcc_assert (TREE_CODE (decl) != TYPE_DECL
1321               && TREE_CODE (decl) != LABEL_DECL);
1322
1323   /* For a duplicate declaration, we can be called twice on the
1324      same DECL node.  Don't discard the RTL already made.  */
1325   if (DECL_RTL_SET_P (decl))
1326     {
1327       /* If the old RTL had the wrong mode, fix the mode.  */
1328       x = DECL_RTL (decl);
1329       if (GET_MODE (x) != DECL_MODE (decl))
1330         SET_DECL_RTL (decl, adjust_address_nv (x, DECL_MODE (decl), 0));
1331
1332       if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
1333         return;
1334
1335       /* ??? Another way to do this would be to maintain a hashed
1336          table of such critters.  Instead of adding stuff to a DECL
1337          to give certain attributes to it, we could use an external
1338          hash map from DECL to set of attributes.  */
1339
1340       /* Let the target reassign the RTL if it wants.
1341          This is necessary, for example, when one machine specific
1342          decl attribute overrides another.  */
1343       targetm.encode_section_info (decl, DECL_RTL (decl), false);
1344
1345       /* If the symbol has a SYMBOL_REF_BLOCK field, update it based
1346          on the new decl information.  */
1347       if (MEM_P (x)
1348           && GET_CODE (XEXP (x, 0)) == SYMBOL_REF
1349           && SYMBOL_REF_HAS_BLOCK_INFO_P (XEXP (x, 0)))
1350         change_symbol_block (XEXP (x, 0), get_block_for_decl (decl));
1351
1352       /* Make this function static known to the mudflap runtime.  */
1353       if (flag_mudflap && TREE_CODE (decl) == VAR_DECL)
1354         mudflap_enqueue_decl (decl);
1355
1356       return;
1357     }
1358
1359   name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
1360
1361   if (name[0] != '*' && TREE_CODE (decl) != FUNCTION_DECL
1362       && DECL_REGISTER (decl))
1363     {
1364       error ("register name not specified for %q+D", decl);
1365     }
1366   else if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
1367     {
1368       const char *asmspec = name+1;
1369       reg_number = decode_reg_name (asmspec);
1370       /* First detect errors in declaring global registers.  */
1371       if (reg_number == -1)
1372         error ("register name not specified for %q+D", decl);
1373       else if (reg_number < 0)
1374         error ("invalid register name for %q+D", decl);
1375       else if (TYPE_MODE (TREE_TYPE (decl)) == BLKmode)
1376         error ("data type of %q+D isn%'t suitable for a register",
1377                decl);
1378       else if (! HARD_REGNO_MODE_OK (reg_number, TYPE_MODE (TREE_TYPE (decl))))
1379         error ("register specified for %q+D isn%'t suitable for data type",
1380                decl);
1381       /* Now handle properly declared static register variables.  */
1382       else
1383         {
1384           int nregs;
1385
1386           if (DECL_INITIAL (decl) != 0 && TREE_STATIC (decl))
1387             {
1388               DECL_INITIAL (decl) = 0;
1389               error ("global register variable has initial value");
1390             }
1391           if (TREE_THIS_VOLATILE (decl))
1392             warning (OPT_Wvolatile_register_var,
1393                      "optimization may eliminate reads and/or "
1394                      "writes to register variables");
1395
1396           /* If the user specified one of the eliminables registers here,
1397              e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
1398              confused with that register and be eliminated.  This usage is
1399              somewhat suspect...  */
1400
1401           SET_DECL_RTL (decl, gen_rtx_raw_REG (DECL_MODE (decl), reg_number));
1402           ORIGINAL_REGNO (DECL_RTL (decl)) = reg_number;
1403           REG_USERVAR_P (DECL_RTL (decl)) = 1;
1404
1405           if (TREE_STATIC (decl))
1406             {
1407               /* Make this register global, so not usable for anything
1408                  else.  */
1409 #ifdef ASM_DECLARE_REGISTER_GLOBAL
1410               name = IDENTIFIER_POINTER (DECL_NAME (decl));
1411               ASM_DECLARE_REGISTER_GLOBAL (asm_out_file, decl, reg_number, name);
1412 #endif
1413               nregs = hard_regno_nregs[reg_number][DECL_MODE (decl)];
1414               while (nregs > 0)
1415                 globalize_reg (reg_number + --nregs);
1416             }
1417
1418           /* As a register variable, it has no section.  */
1419           return;
1420         }
1421     }
1422   /* Now handle ordinary static variables and functions (in memory).
1423      Also handle vars declared register invalidly.  */
1424   else if (name[0] == '*')
1425   {
1426 #ifdef REGISTER_PREFIX
1427     if (strlen (REGISTER_PREFIX) != 0)
1428       {
1429         reg_number = decode_reg_name (name);
1430         if (reg_number >= 0 || reg_number == -3)
1431           error ("register name given for non-register variable %q+D", decl);
1432       }
1433 #endif
1434   }
1435
1436   /* Specifying a section attribute on a variable forces it into a
1437      non-.bss section, and thus it cannot be common.  */
1438   gcc_assert (!(TREE_CODE (decl) == VAR_DECL
1439               && DECL_SECTION_NAME (decl) != NULL_TREE
1440               && DECL_INITIAL (decl) == NULL_TREE
1441               && DECL_COMMON (decl))
1442               || !DECL_COMMON (decl));
1443
1444   /* Variables can't be both common and weak.  */
1445   gcc_assert (TREE_CODE (decl) != VAR_DECL
1446               || !DECL_WEAK (decl)
1447               || !DECL_COMMON (decl));
1448
1449   if (use_object_blocks_p () && use_blocks_for_decl_p (decl))
1450     x = create_block_symbol (name, get_block_for_decl (decl), -1);
1451   else
1452     {
1453       enum machine_mode address_mode = Pmode;
1454       if (TREE_TYPE (decl) != error_mark_node)
1455         {
1456           addr_space_t as = TYPE_ADDR_SPACE (TREE_TYPE (decl));
1457           address_mode = targetm.addr_space.address_mode (as);
1458         }
1459       x = gen_rtx_SYMBOL_REF (address_mode, name);
1460     }
1461   SYMBOL_REF_WEAK (x) = DECL_WEAK (decl);
1462   SET_SYMBOL_REF_DECL (x, decl);
1463
1464   x = gen_rtx_MEM (DECL_MODE (decl), x);
1465   if (TREE_CODE (decl) != FUNCTION_DECL)
1466     set_mem_attributes (x, decl, 1);
1467   SET_DECL_RTL (decl, x);
1468
1469   /* Optionally set flags or add text to the name to record information
1470      such as that it is a function name.
1471      If the name is changed, the macro ASM_OUTPUT_LABELREF
1472      will have to know how to strip this information.  */
1473   targetm.encode_section_info (decl, DECL_RTL (decl), true);
1474
1475   /* Make this function static known to the mudflap runtime.  */
1476   if (flag_mudflap && TREE_CODE (decl) == VAR_DECL)
1477     mudflap_enqueue_decl (decl);
1478 }
1479
1480 /* Like make_decl_rtl, but inhibit creation of new alias sets when
1481    calling make_decl_rtl.  Also, reset DECL_RTL before returning the
1482    rtl.  */
1483
1484 rtx
1485 make_decl_rtl_for_debug (tree decl)
1486 {
1487   unsigned int save_aliasing_flag, save_mudflap_flag;
1488   rtx rtl;
1489
1490   if (DECL_RTL_SET_P (decl))
1491     return DECL_RTL (decl);
1492
1493   /* Kludge alert!  Somewhere down the call chain, make_decl_rtl will
1494      call new_alias_set.  If running with -fcompare-debug, sometimes
1495      we do not want to create alias sets that will throw the alias
1496      numbers off in the comparison dumps.  So... clearing
1497      flag_strict_aliasing will keep new_alias_set() from creating a
1498      new set.  It is undesirable to register decl with mudflap
1499      in this case as well.  */
1500   save_aliasing_flag = flag_strict_aliasing;
1501   flag_strict_aliasing = 0;
1502   save_mudflap_flag = flag_mudflap;
1503   flag_mudflap = 0;
1504
1505   rtl = DECL_RTL (decl);
1506   /* Reset DECL_RTL back, as various parts of the compiler expects
1507      DECL_RTL set meaning it is actually going to be output.  */
1508   SET_DECL_RTL (decl, NULL);
1509
1510   flag_strict_aliasing = save_aliasing_flag;
1511   flag_mudflap = save_mudflap_flag;
1512
1513   return rtl;
1514 }
1515 \f
1516 /* Output a string of literal assembler code
1517    for an `asm' keyword used between functions.  */
1518
1519 void
1520 assemble_asm (tree string)
1521 {
1522   app_enable ();
1523
1524   if (TREE_CODE (string) == ADDR_EXPR)
1525     string = TREE_OPERAND (string, 0);
1526
1527   fprintf (asm_out_file, "\t%s\n", TREE_STRING_POINTER (string));
1528 }
1529
1530 /* Record an element in the table of global destructors.  SYMBOL is
1531    a SYMBOL_REF of the function to be called; PRIORITY is a number
1532    between 0 and MAX_INIT_PRIORITY.  */
1533
1534 void
1535 default_stabs_asm_out_destructor (rtx symbol ATTRIBUTE_UNUSED,
1536                                   int priority ATTRIBUTE_UNUSED)
1537 {
1538 #if defined DBX_DEBUGGING_INFO || defined XCOFF_DEBUGGING_INFO
1539   /* Tell GNU LD that this is part of the static destructor set.
1540      This will work for any system that uses stabs, most usefully
1541      aout systems.  */
1542   dbxout_begin_simple_stabs ("___DTOR_LIST__", 22 /* N_SETT */);
1543   dbxout_stab_value_label (XSTR (symbol, 0));
1544 #else
1545   sorry ("global destructors not supported on this target");
1546 #endif
1547 }
1548
1549 /* Write the address of the entity given by SYMBOL to SEC.  */
1550 void
1551 assemble_addr_to_section (rtx symbol, section *sec)
1552 {
1553   switch_to_section (sec);
1554   assemble_align (POINTER_SIZE);
1555   assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1556 }
1557
1558 /* Return the numbered .ctors.N (if CONSTRUCTOR_P) or .dtors.N (if
1559    not) section for PRIORITY.  */
1560 section *
1561 get_cdtor_priority_section (int priority, bool constructor_p)
1562 {
1563   char buf[16];
1564
1565   /* ??? This only works reliably with the GNU linker.  */
1566   sprintf (buf, "%s.%.5u",
1567            constructor_p ? ".ctors" : ".dtors",
1568            /* Invert the numbering so the linker puts us in the proper
1569               order; constructors are run from right to left, and the
1570               linker sorts in increasing order.  */
1571            MAX_INIT_PRIORITY - priority);
1572   return get_section (buf, SECTION_WRITE, NULL);
1573 }
1574
1575 void
1576 default_named_section_asm_out_destructor (rtx symbol, int priority)
1577 {
1578   section *sec;
1579
1580   if (priority != DEFAULT_INIT_PRIORITY)
1581     sec = get_cdtor_priority_section (priority,
1582                                       /*constructor_p=*/false);
1583   else
1584     sec = get_section (".dtors", SECTION_WRITE, NULL);
1585
1586   assemble_addr_to_section (symbol, sec);
1587 }
1588
1589 #ifdef DTORS_SECTION_ASM_OP
1590 void
1591 default_dtor_section_asm_out_destructor (rtx symbol,
1592                                          int priority ATTRIBUTE_UNUSED)
1593 {
1594   assemble_addr_to_section (symbol, dtors_section);
1595 }
1596 #endif
1597
1598 /* Likewise for global constructors.  */
1599
1600 void
1601 default_stabs_asm_out_constructor (rtx symbol ATTRIBUTE_UNUSED,
1602                                    int priority ATTRIBUTE_UNUSED)
1603 {
1604 #if defined DBX_DEBUGGING_INFO || defined XCOFF_DEBUGGING_INFO
1605   /* Tell GNU LD that this is part of the static destructor set.
1606      This will work for any system that uses stabs, most usefully
1607      aout systems.  */
1608   dbxout_begin_simple_stabs ("___CTOR_LIST__", 22 /* N_SETT */);
1609   dbxout_stab_value_label (XSTR (symbol, 0));
1610 #else
1611   sorry ("global constructors not supported on this target");
1612 #endif
1613 }
1614
1615 void
1616 default_named_section_asm_out_constructor (rtx symbol, int priority)
1617 {
1618   section *sec;
1619
1620   if (priority != DEFAULT_INIT_PRIORITY)
1621     sec = get_cdtor_priority_section (priority,
1622                                       /*constructor_p=*/true);
1623   else
1624     sec = get_section (".ctors", SECTION_WRITE, NULL);
1625
1626   assemble_addr_to_section (symbol, sec);
1627 }
1628
1629 #ifdef CTORS_SECTION_ASM_OP
1630 void
1631 default_ctor_section_asm_out_constructor (rtx symbol,
1632                                           int priority ATTRIBUTE_UNUSED)
1633 {
1634   assemble_addr_to_section (symbol, ctors_section);
1635 }
1636 #endif
1637 \f
1638 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1639    a nonzero value if the constant pool should be output before the
1640    start of the function, or a zero value if the pool should output
1641    after the end of the function.  The default is to put it before the
1642    start.  */
1643
1644 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1645 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1646 #endif
1647
1648 /* DECL is an object (either VAR_DECL or FUNCTION_DECL) which is going
1649    to be output to assembler.
1650    Set first_global_object_name and weak_global_object_name as appropriate.  */
1651
1652 void
1653 notice_global_symbol (tree decl)
1654 {
1655   const char **type = &first_global_object_name;
1656
1657   if (first_global_object_name
1658       || !TREE_PUBLIC (decl)
1659       || DECL_EXTERNAL (decl)
1660       || !DECL_NAME (decl)
1661       || (TREE_CODE (decl) != FUNCTION_DECL
1662           && (TREE_CODE (decl) != VAR_DECL
1663               || (DECL_COMMON (decl)
1664                   && (DECL_INITIAL (decl) == 0
1665                       || DECL_INITIAL (decl) == error_mark_node))))
1666       || !MEM_P (DECL_RTL (decl)))
1667     return;
1668
1669   /* We win when global object is found, but it is useful to know about weak
1670      symbol as well so we can produce nicer unique names.  */
1671   if (DECL_WEAK (decl) || DECL_ONE_ONLY (decl) || flag_shlib)
1672     type = &weak_global_object_name;
1673
1674   if (!*type)
1675     {
1676       const char *p;
1677       const char *name;
1678       rtx decl_rtl = DECL_RTL (decl);
1679
1680       p = targetm.strip_name_encoding (XSTR (XEXP (decl_rtl, 0), 0));
1681       name = ggc_strdup (p);
1682
1683       *type = name;
1684     }
1685 }
1686
1687 /* Output assembler code for the constant pool of a function and associated
1688    with defining the name of the function.  DECL describes the function.
1689    NAME is the function's name.  For the constant pool, we use the current
1690    constant pool data.  */
1691
1692 void
1693 assemble_start_function (tree decl, const char *fnname)
1694 {
1695   int align;
1696   char tmp_label[100];
1697   bool hot_label_written = false;
1698
1699   crtl->subsections.unlikely_text_section_name = NULL;
1700
1701   first_function_block_is_cold = false;
1702   if (flag_reorder_blocks_and_partition)
1703     {
1704       ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LHOTB", const_labelno);
1705       crtl->subsections.hot_section_label = ggc_strdup (tmp_label);
1706       ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LCOLDB", const_labelno);
1707       crtl->subsections.cold_section_label = ggc_strdup (tmp_label);
1708       ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LHOTE", const_labelno);
1709       crtl->subsections.hot_section_end_label = ggc_strdup (tmp_label);
1710       ASM_GENERATE_INTERNAL_LABEL (tmp_label, "LCOLDE", const_labelno);
1711       crtl->subsections.cold_section_end_label = ggc_strdup (tmp_label);
1712       const_labelno++;
1713     }
1714   else
1715     {
1716       crtl->subsections.hot_section_label = NULL;
1717       crtl->subsections.cold_section_label = NULL;
1718       crtl->subsections.hot_section_end_label = NULL;
1719       crtl->subsections.cold_section_end_label = NULL;
1720     }
1721
1722   /* The following code does not need preprocessing in the assembler.  */
1723
1724   app_disable ();
1725
1726   if (CONSTANT_POOL_BEFORE_FUNCTION)
1727     output_constant_pool (fnname, decl);
1728
1729   resolve_unique_section (decl, 0, flag_function_sections);
1730
1731   /* Make sure the not and cold text (code) sections are properly
1732      aligned.  This is necessary here in the case where the function
1733      has both hot and cold sections, because we don't want to re-set
1734      the alignment when the section switch happens mid-function.  */
1735
1736   if (flag_reorder_blocks_and_partition)
1737     {
1738       switch_to_section (unlikely_text_section ());
1739       assemble_align (DECL_ALIGN (decl));
1740       ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.cold_section_label);
1741
1742       /* When the function starts with a cold section, we need to explicitly
1743          align the hot section and write out the hot section label.
1744          But if the current function is a thunk, we do not have a CFG.  */
1745       if (!cfun->is_thunk
1746           && BB_PARTITION (ENTRY_BLOCK_PTR->next_bb) == BB_COLD_PARTITION)
1747         {
1748           switch_to_section (text_section);
1749           assemble_align (DECL_ALIGN (decl));
1750           ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.hot_section_label);
1751           hot_label_written = true;
1752           first_function_block_is_cold = true;
1753         }
1754     }
1755   else if (DECL_SECTION_NAME (decl))
1756     {
1757       /* Calls to function_section rely on first_function_block_is_cold
1758          being accurate.  The first block may be cold even if we aren't
1759          doing partitioning, if the entire function was decided by
1760          choose_function_section (predict.c) to be cold.  */
1761
1762       initialize_cold_section_name ();
1763
1764       if (crtl->subsections.unlikely_text_section_name
1765           && strcmp (TREE_STRING_POINTER (DECL_SECTION_NAME (decl)),
1766                      crtl->subsections.unlikely_text_section_name) == 0)
1767         first_function_block_is_cold = true;
1768     }
1769
1770   in_cold_section_p = first_function_block_is_cold;
1771
1772   /* Switch to the correct text section for the start of the function.  */
1773
1774   switch_to_section (function_section (decl));
1775   if (flag_reorder_blocks_and_partition
1776       && !hot_label_written)
1777     ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.hot_section_label);
1778
1779   /* Tell assembler to move to target machine's alignment for functions.  */
1780   align = floor_log2 (DECL_ALIGN (decl) / BITS_PER_UNIT);
1781   if (align > 0)
1782     {
1783       ASM_OUTPUT_ALIGN (asm_out_file, align);
1784     }
1785
1786   /* Handle a user-specified function alignment.
1787      Note that we still need to align to DECL_ALIGN, as above,
1788      because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all.  */
1789   if (! DECL_USER_ALIGN (decl)
1790       && align_functions_log > align
1791       && optimize_function_for_speed_p (cfun))
1792     {
1793 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1794       ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file,
1795                                  align_functions_log, align_functions - 1);
1796 #else
1797       ASM_OUTPUT_ALIGN (asm_out_file, align_functions_log);
1798 #endif
1799     }
1800
1801 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1802   ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file, fnname);
1803 #endif
1804
1805   if (!DECL_IGNORED_P (decl))
1806     (*debug_hooks->begin_function) (decl);
1807
1808   /* Make function name accessible from other files, if appropriate.  */
1809
1810   if (TREE_PUBLIC (decl))
1811     {
1812       notice_global_symbol (decl);
1813
1814       globalize_decl (decl);
1815
1816       maybe_assemble_visibility (decl);
1817     }
1818
1819   if (DECL_PRESERVE_P (decl))
1820     targetm.asm_out.mark_decl_preserved (fnname);
1821
1822   /* Do any machine/system dependent processing of the function name.  */
1823 #ifdef ASM_DECLARE_FUNCTION_NAME
1824   ASM_DECLARE_FUNCTION_NAME (asm_out_file, fnname, current_function_decl);
1825 #else
1826   /* Standard thing is just output label for the function.  */
1827   ASM_OUTPUT_LABEL (asm_out_file, fnname);
1828 #endif /* ASM_DECLARE_FUNCTION_NAME */
1829 }
1830
1831 /* Output assembler code associated with defining the size of the
1832    function.  DECL describes the function.  NAME is the function's name.  */
1833
1834 void
1835 assemble_end_function (tree decl, const char *fnname ATTRIBUTE_UNUSED)
1836 {
1837 #ifdef ASM_DECLARE_FUNCTION_SIZE
1838   /* We could have switched section in the middle of the function.  */
1839   if (flag_reorder_blocks_and_partition)
1840     switch_to_section (function_section (decl));
1841   ASM_DECLARE_FUNCTION_SIZE (asm_out_file, fnname, decl);
1842 #endif
1843   if (! CONSTANT_POOL_BEFORE_FUNCTION)
1844     {
1845       output_constant_pool (fnname, decl);
1846       switch_to_section (function_section (decl)); /* need to switch back */
1847     }
1848   /* Output labels for end of hot/cold text sections (to be used by
1849      debug info.)  */
1850   if (flag_reorder_blocks_and_partition)
1851     {
1852       section *save_text_section;
1853
1854       save_text_section = in_section;
1855       switch_to_section (unlikely_text_section ());
1856       ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.cold_section_end_label);
1857       if (first_function_block_is_cold)
1858         switch_to_section (text_section);
1859       else
1860         switch_to_section (function_section (decl));
1861       ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.hot_section_end_label);
1862       switch_to_section (save_text_section);
1863     }
1864 }
1865 \f
1866 /* Assemble code to leave SIZE bytes of zeros.  */
1867
1868 void
1869 assemble_zeros (unsigned HOST_WIDE_INT size)
1870 {
1871   /* Do no output if -fsyntax-only.  */
1872   if (flag_syntax_only)
1873     return;
1874
1875 #ifdef ASM_NO_SKIP_IN_TEXT
1876   /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1877      so we must output 0s explicitly in the text section.  */
1878   if (ASM_NO_SKIP_IN_TEXT && (in_section->common.flags & SECTION_CODE) != 0)
1879     {
1880       unsigned HOST_WIDE_INT i;
1881       for (i = 0; i < size; i++)
1882         assemble_integer (const0_rtx, 1, BITS_PER_UNIT, 1);
1883     }
1884   else
1885 #endif
1886     if (size > 0)
1887       ASM_OUTPUT_SKIP (asm_out_file, size);
1888 }
1889
1890 /* Assemble an alignment pseudo op for an ALIGN-bit boundary.  */
1891
1892 void
1893 assemble_align (int align)
1894 {
1895   if (align > BITS_PER_UNIT)
1896     {
1897       ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
1898     }
1899 }
1900
1901 /* Assemble a string constant with the specified C string as contents.  */
1902
1903 void
1904 assemble_string (const char *p, int size)
1905 {
1906   int pos = 0;
1907   int maximum = 2000;
1908
1909   /* If the string is very long, split it up.  */
1910
1911   while (pos < size)
1912     {
1913       int thissize = size - pos;
1914       if (thissize > maximum)
1915         thissize = maximum;
1916
1917       ASM_OUTPUT_ASCII (asm_out_file, p, thissize);
1918
1919       pos += thissize;
1920       p += thissize;
1921     }
1922 }
1923
1924 \f
1925 /* A noswitch_section_callback for lcomm_section.  */
1926
1927 static bool
1928 emit_local (tree decl ATTRIBUTE_UNUSED,
1929             const char *name ATTRIBUTE_UNUSED,
1930             unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1931             unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1932 {
1933 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1934   ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name,
1935                                  size, DECL_ALIGN (decl));
1936   return true;
1937 #elif defined ASM_OUTPUT_ALIGNED_LOCAL
1938   ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, DECL_ALIGN (decl));
1939   return true;
1940 #else
1941   ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
1942   return false;
1943 #endif
1944 }
1945
1946 /* A noswitch_section_callback for bss_noswitch_section.  */
1947
1948 #if defined ASM_OUTPUT_ALIGNED_BSS || defined ASM_OUTPUT_BSS
1949 static bool
1950 emit_bss (tree decl ATTRIBUTE_UNUSED,
1951           const char *name ATTRIBUTE_UNUSED,
1952           unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1953           unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1954 {
1955 #if defined ASM_OUTPUT_ALIGNED_BSS
1956   ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size, DECL_ALIGN (decl));
1957   return true;
1958 #else
1959   ASM_OUTPUT_BSS (asm_out_file, decl, name, size, rounded);
1960   return false;
1961 #endif
1962 }
1963 #endif
1964
1965 /* A noswitch_section_callback for comm_section.  */
1966
1967 static bool
1968 emit_common (tree decl ATTRIBUTE_UNUSED,
1969              const char *name ATTRIBUTE_UNUSED,
1970              unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1971              unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1972 {
1973 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1974   ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name,
1975                                   size, DECL_ALIGN (decl));
1976   return true;
1977 #elif defined ASM_OUTPUT_ALIGNED_COMMON
1978   ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size, DECL_ALIGN (decl));
1979   return true;
1980 #else
1981   ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded);
1982   return false;
1983 #endif
1984 }
1985
1986 /* A noswitch_section_callback for tls_comm_section.  */
1987
1988 static bool
1989 emit_tls_common (tree decl ATTRIBUTE_UNUSED,
1990                  const char *name ATTRIBUTE_UNUSED,
1991                  unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED,
1992                  unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED)
1993 {
1994 #ifdef ASM_OUTPUT_TLS_COMMON
1995   ASM_OUTPUT_TLS_COMMON (asm_out_file, decl, name, size);
1996   return true;
1997 #else
1998   sorry ("thread-local COMMON data not implemented");
1999   return true;
2000 #endif
2001 }
2002
2003 /* Assemble DECL given that it belongs in SECTION_NOSWITCH section SECT.
2004    NAME is the name of DECL's SYMBOL_REF.  */
2005
2006 static void
2007 assemble_noswitch_variable (tree decl, const char *name, section *sect)
2008 {
2009   unsigned HOST_WIDE_INT size, rounded;
2010
2011   size = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
2012   rounded = size;
2013
2014   /* Don't allocate zero bytes of common,
2015      since that means "undefined external" in the linker.  */
2016   if (size == 0)
2017     rounded = 1;
2018
2019   /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2020      so that each uninitialized object starts on such a boundary.  */
2021   rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
2022   rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
2023              * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
2024
2025   if (!sect->noswitch.callback (decl, name, size, rounded)
2026       && (unsigned HOST_WIDE_INT) DECL_ALIGN_UNIT (decl) > rounded)
2027     warning (0, "requested alignment for %q+D is greater than "
2028              "implemented alignment of %wu", decl, rounded);
2029 }
2030
2031 /* A subroutine of assemble_variable.  Output the label and contents of
2032    DECL, whose address is a SYMBOL_REF with name NAME.  DONT_OUTPUT_DATA
2033    is as for assemble_variable.  */
2034
2035 static void
2036 assemble_variable_contents (tree decl, const char *name,
2037                             bool dont_output_data)
2038 {
2039   /* Do any machine/system dependent processing of the object.  */
2040 #ifdef ASM_DECLARE_OBJECT_NAME
2041   last_assemble_variable_decl = decl;
2042   ASM_DECLARE_OBJECT_NAME (asm_out_file, name, decl);
2043 #else
2044   /* Standard thing is just output label for the object.  */
2045   ASM_OUTPUT_LABEL (asm_out_file, name);
2046 #endif /* ASM_DECLARE_OBJECT_NAME */
2047
2048   if (!dont_output_data)
2049     {
2050       if (DECL_INITIAL (decl)
2051           && DECL_INITIAL (decl) != error_mark_node
2052           && !initializer_zerop (DECL_INITIAL (decl)))
2053         /* Output the actual data.  */
2054         output_constant (DECL_INITIAL (decl),
2055                          tree_low_cst (DECL_SIZE_UNIT (decl), 1),
2056                          DECL_ALIGN (decl));
2057       else
2058         /* Leave space for it.  */
2059         assemble_zeros (tree_low_cst (DECL_SIZE_UNIT (decl), 1));
2060     }
2061 }
2062
2063 /* Initialize emulated tls object TO, which refers to TLS variable
2064    DECL and is initialized by PROXY.  */
2065
2066 tree
2067 default_emutls_var_init (tree to, tree decl, tree proxy)
2068 {
2069   VEC(constructor_elt,gc) *v = VEC_alloc (constructor_elt, gc, 4);
2070   constructor_elt *elt;
2071   tree type = TREE_TYPE (to);
2072   tree field = TYPE_FIELDS (type);
2073
2074   elt = VEC_quick_push (constructor_elt, v, NULL);
2075   elt->index = field;
2076   elt->value = fold_convert (TREE_TYPE (field), DECL_SIZE_UNIT (decl));
2077
2078   elt = VEC_quick_push (constructor_elt, v, NULL);
2079   field = TREE_CHAIN (field);
2080   elt->index = field;
2081   elt->value = build_int_cst (TREE_TYPE (field),
2082                               DECL_ALIGN_UNIT (decl));
2083
2084   elt = VEC_quick_push (constructor_elt, v, NULL);
2085   field = TREE_CHAIN (field);
2086   elt->index = field;
2087   elt->value = null_pointer_node;
2088
2089   elt = VEC_quick_push (constructor_elt, v, NULL);
2090   field = TREE_CHAIN (field);
2091   elt->index = field;
2092   elt->value = proxy;
2093
2094   return build_constructor (type, v);
2095 }
2096
2097 /* Assemble everything that is needed for a variable or function declaration.
2098    Not used for automatic variables, and not used for function definitions.
2099    Should not be called for variables of incomplete structure type.
2100
2101    TOP_LEVEL is nonzero if this variable has file scope.
2102    AT_END is nonzero if this is the special handling, at end of compilation,
2103    to define things that have had only tentative definitions.
2104    DONT_OUTPUT_DATA if nonzero means don't actually output the
2105    initial value (that will be done by the caller).  */
2106
2107 void
2108 assemble_variable (tree decl, int top_level ATTRIBUTE_UNUSED,
2109                    int at_end ATTRIBUTE_UNUSED, int dont_output_data)
2110 {
2111   const char *name;
2112   rtx decl_rtl, symbol;
2113   section *sect;
2114
2115   if (! targetm.have_tls
2116       && TREE_CODE (decl) == VAR_DECL
2117       && DECL_THREAD_LOCAL_P (decl))
2118     {
2119       tree to = emutls_decl (decl);
2120
2121       /* If this variable is defined locally, then we need to initialize the
2122          control structure with size and alignment information.  We do this
2123          at the last moment because tentative definitions can take a locally
2124          defined but uninitialized variable and initialize it later, which
2125          would result in incorrect contents.  */
2126       if (! DECL_EXTERNAL (to)
2127           && (! DECL_COMMON (to)
2128               || (DECL_INITIAL (decl)
2129                   && DECL_INITIAL (decl) != error_mark_node)))
2130         {
2131           DECL_INITIAL (to) = targetm.emutls.var_init
2132             (to, decl, get_emutls_init_templ_addr (decl));
2133
2134           /* Make sure the template is marked as needed early enough.
2135              Without this, if the variable is placed in a
2136              section-anchored block, the template will only be marked
2137              when it's too late.  */
2138           record_references_in_initializer (to, false);
2139         }
2140
2141       decl = to;
2142     }
2143
2144   last_assemble_variable_decl = 0;
2145
2146   /* Normally no need to say anything here for external references,
2147      since assemble_external is called by the language-specific code
2148      when a declaration is first seen.  */
2149
2150   if (DECL_EXTERNAL (decl))
2151     return;
2152
2153   /* Output no assembler code for a function declaration.
2154      Only definitions of functions output anything.  */
2155
2156   if (TREE_CODE (decl) == FUNCTION_DECL)
2157     return;
2158
2159   /* Do nothing for global register variables.  */
2160   if (DECL_RTL_SET_P (decl) && REG_P (DECL_RTL (decl)))
2161     {
2162       TREE_ASM_WRITTEN (decl) = 1;
2163       return;
2164     }
2165
2166   /* If type was incomplete when the variable was declared,
2167      see if it is complete now.  */
2168
2169   if (DECL_SIZE (decl) == 0)
2170     layout_decl (decl, 0);
2171
2172   /* Still incomplete => don't allocate it; treat the tentative defn
2173      (which is what it must have been) as an `extern' reference.  */
2174
2175   if (!dont_output_data && DECL_SIZE (decl) == 0)
2176     {
2177       error ("storage size of %q+D isn%'t known", decl);
2178       TREE_ASM_WRITTEN (decl) = 1;
2179       return;
2180     }
2181
2182   /* The first declaration of a variable that comes through this function
2183      decides whether it is global (in C, has external linkage)
2184      or local (in C, has internal linkage).  So do nothing more
2185      if this function has already run.  */
2186
2187   if (TREE_ASM_WRITTEN (decl))
2188     return;
2189
2190   /* Make sure targetm.encode_section_info is invoked before we set
2191      ASM_WRITTEN.  */
2192   decl_rtl = DECL_RTL (decl);
2193
2194   TREE_ASM_WRITTEN (decl) = 1;
2195
2196   /* Do no output if -fsyntax-only.  */
2197   if (flag_syntax_only)
2198     return;
2199
2200   app_disable ();
2201
2202   if (! dont_output_data
2203       && ! host_integerp (DECL_SIZE_UNIT (decl), 1))
2204     {
2205       error ("size of variable %q+D is too large", decl);
2206       return;
2207     }
2208
2209   gcc_assert (MEM_P (decl_rtl));
2210   gcc_assert (GET_CODE (XEXP (decl_rtl, 0)) == SYMBOL_REF);
2211   symbol = XEXP (decl_rtl, 0);
2212   name = XSTR (symbol, 0);
2213   if (TREE_PUBLIC (decl) && DECL_NAME (decl))
2214     notice_global_symbol (decl);
2215
2216   /* Compute the alignment of this data.  */
2217
2218   align_variable (decl, dont_output_data);
2219   set_mem_align (decl_rtl, DECL_ALIGN (decl));
2220
2221   if (TREE_PUBLIC (decl))
2222     maybe_assemble_visibility (decl);
2223
2224   if (DECL_PRESERVE_P (decl))
2225     targetm.asm_out.mark_decl_preserved (name);
2226
2227   /* First make the assembler name(s) global if appropriate.  */
2228   sect = get_variable_section (decl, false);
2229   if (TREE_PUBLIC (decl)
2230       && (sect->common.flags & SECTION_COMMON) == 0)
2231     globalize_decl (decl);
2232
2233   /* Output any data that we will need to use the address of.  */
2234   if (DECL_INITIAL (decl) && DECL_INITIAL (decl) != error_mark_node)
2235     output_addressed_constants (DECL_INITIAL (decl));
2236
2237   /* dbxout.c needs to know this.  */
2238   if (sect && (sect->common.flags & SECTION_CODE) != 0)
2239     DECL_IN_TEXT_SECTION (decl) = 1;
2240
2241   /* If the decl is part of an object_block, make sure that the decl
2242      has been positioned within its block, but do not write out its
2243      definition yet.  output_object_blocks will do that later.  */
2244   if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol) && SYMBOL_REF_BLOCK (symbol))
2245     {
2246       gcc_assert (!dont_output_data);
2247       place_block_symbol (symbol);
2248     }
2249   else if (SECTION_STYLE (sect) == SECTION_NOSWITCH)
2250     assemble_noswitch_variable (decl, name, sect);
2251   else
2252     {
2253       switch_to_section (sect);
2254       if (DECL_ALIGN (decl) > BITS_PER_UNIT)
2255         ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (DECL_ALIGN_UNIT (decl)));
2256       assemble_variable_contents (decl, name, dont_output_data);
2257     }
2258 }
2259
2260 /* Return 1 if type TYPE contains any pointers.  */
2261
2262 static int
2263 contains_pointers_p (tree type)
2264 {
2265   switch (TREE_CODE (type))
2266     {
2267     case POINTER_TYPE:
2268     case REFERENCE_TYPE:
2269       /* I'm not sure whether OFFSET_TYPE needs this treatment,
2270          so I'll play safe and return 1.  */
2271     case OFFSET_TYPE:
2272       return 1;
2273
2274     case RECORD_TYPE:
2275     case UNION_TYPE:
2276     case QUAL_UNION_TYPE:
2277       {
2278         tree fields;
2279         /* For a type that has fields, see if the fields have pointers.  */
2280         for (fields = TYPE_FIELDS (type); fields; fields = TREE_CHAIN (fields))
2281           if (TREE_CODE (fields) == FIELD_DECL
2282               && contains_pointers_p (TREE_TYPE (fields)))
2283             return 1;
2284         return 0;
2285       }
2286
2287     case ARRAY_TYPE:
2288       /* An array type contains pointers if its element type does.  */
2289       return contains_pointers_p (TREE_TYPE (type));
2290
2291     default:
2292       return 0;
2293     }
2294 }
2295
2296 /* We delay assemble_external processing until
2297    the compilation unit is finalized.  This is the best we can do for
2298    right now (i.e. stage 3 of GCC 4.0) - the right thing is to delay
2299    it all the way to final.  See PR 17982 for further discussion.  */
2300 static GTY(()) tree pending_assemble_externals;
2301
2302 #ifdef ASM_OUTPUT_EXTERNAL
2303 /* True if DECL is a function decl for which no out-of-line copy exists.
2304    It is assumed that DECL's assembler name has been set.  */
2305
2306 static bool
2307 incorporeal_function_p (tree decl)
2308 {
2309   if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
2310     {
2311       const char *name;
2312
2313       if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
2314           && DECL_FUNCTION_CODE (decl) == BUILT_IN_ALLOCA)
2315         return true;
2316
2317       name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2318       if (is_builtin_name (name))
2319         return true;
2320     }
2321   return false;
2322 }
2323
2324 /* Actually do the tests to determine if this is necessary, and invoke
2325    ASM_OUTPUT_EXTERNAL.  */
2326 static void
2327 assemble_external_real (tree decl)
2328 {
2329   rtx rtl = DECL_RTL (decl);
2330
2331   if (MEM_P (rtl) && GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF
2332       && !SYMBOL_REF_USED (XEXP (rtl, 0))
2333       && !incorporeal_function_p (decl))
2334     {
2335       /* Some systems do require some output.  */
2336       SYMBOL_REF_USED (XEXP (rtl, 0)) = 1;
2337       ASM_OUTPUT_EXTERNAL (asm_out_file, decl, XSTR (XEXP (rtl, 0), 0));
2338     }
2339 }
2340 #endif
2341
2342 void
2343 process_pending_assemble_externals (void)
2344 {
2345 #ifdef ASM_OUTPUT_EXTERNAL
2346   tree list;
2347   for (list = pending_assemble_externals; list; list = TREE_CHAIN (list))
2348     assemble_external_real (TREE_VALUE (list));
2349
2350   pending_assemble_externals = 0;
2351 #endif
2352 }
2353
2354 /* This TREE_LIST contains any weak symbol declarations waiting
2355    to be emitted.  */
2356 static GTY(()) tree weak_decls;
2357
2358 /* Output something to declare an external symbol to the assembler,
2359    and qualifiers such as weakness.  (Most assemblers don't need
2360    extern declaration, so we normally output nothing.)  Do nothing if
2361    DECL is not external.  */
2362
2363 void
2364 assemble_external (tree decl ATTRIBUTE_UNUSED)
2365 {
2366   /* Because most platforms do not define ASM_OUTPUT_EXTERNAL, the
2367      main body of this code is only rarely exercised.  To provide some
2368      testing, on all platforms, we make sure that the ASM_OUT_FILE is
2369      open.  If it's not, we should not be calling this function.  */
2370   gcc_assert (asm_out_file);
2371
2372   if (!DECL_P (decl) || !DECL_EXTERNAL (decl) || !TREE_PUBLIC (decl))
2373     return;
2374
2375   /* We want to output annotation for weak and external symbols at
2376      very last to check if they are references or not.  */
2377
2378   if (SUPPORTS_WEAK
2379       && DECL_WEAK (decl)
2380       /* TREE_STATIC is a weird and abused creature which is not
2381          generally the right test for whether an entity has been
2382          locally emitted, inlined or otherwise not-really-extern, but
2383          for declarations that can be weak, it happens to be
2384          match.  */
2385       && !TREE_STATIC (decl)
2386       && lookup_attribute ("weak", DECL_ATTRIBUTES (decl))
2387       && value_member (decl, weak_decls) == NULL_TREE)
2388     weak_decls = tree_cons (NULL, decl, weak_decls);
2389
2390 #ifdef ASM_OUTPUT_EXTERNAL
2391   if (value_member (decl, pending_assemble_externals) == NULL_TREE)
2392     pending_assemble_externals = tree_cons (NULL, decl,
2393                                             pending_assemble_externals);
2394 #endif
2395 }
2396
2397 /* Similar, for calling a library function FUN.  */
2398
2399 void
2400 assemble_external_libcall (rtx fun)
2401 {
2402   /* Declare library function name external when first used, if nec.  */
2403   if (! SYMBOL_REF_USED (fun))
2404     {
2405       SYMBOL_REF_USED (fun) = 1;
2406       targetm.asm_out.external_libcall (fun);
2407     }
2408 }
2409
2410 /* Assemble a label named NAME.  */
2411
2412 void
2413 assemble_label (const char *name)
2414 {
2415   ASM_OUTPUT_LABEL (asm_out_file, name);
2416 }
2417
2418 /* Set the symbol_referenced flag for ID.  */
2419 void
2420 mark_referenced (tree id)
2421 {
2422   TREE_SYMBOL_REFERENCED (id) = 1;
2423 }
2424
2425 /* Set the symbol_referenced flag for DECL and notify callgraph.  */
2426 void
2427 mark_decl_referenced (tree decl)
2428 {
2429   if (TREE_CODE (decl) == FUNCTION_DECL)
2430     {
2431       /* Extern inline functions don't become needed when referenced.
2432          If we know a method will be emitted in other TU and no new
2433          functions can be marked reachable, just use the external
2434          definition.  */
2435       struct cgraph_node *node = cgraph_node (decl);
2436       if (!DECL_EXTERNAL (decl)
2437           && (!node->local.vtable_method || !cgraph_global_info_ready
2438               || !node->local.finalized))
2439         cgraph_mark_needed_node (node);
2440     }
2441   else if (TREE_CODE (decl) == VAR_DECL)
2442     {
2443       struct varpool_node *node = varpool_node (decl);
2444       varpool_mark_needed_node (node);
2445       /* C++ frontend use mark_decl_references to force COMDAT variables
2446          to be output that might appear dead otherwise.  */
2447       node->force_output = true;
2448     }
2449   /* else do nothing - we can get various sorts of CST nodes here,
2450      which do not need to be marked.  */
2451 }
2452
2453
2454 /* Follow the IDENTIFIER_TRANSPARENT_ALIAS chain starting at *ALIAS
2455    until we find an identifier that is not itself a transparent alias.
2456    Modify the alias passed to it by reference (and all aliases on the
2457    way to the ultimate target), such that they do not have to be
2458    followed again, and return the ultimate target of the alias
2459    chain.  */
2460
2461 static inline tree
2462 ultimate_transparent_alias_target (tree *alias)
2463 {
2464   tree target = *alias;
2465
2466   if (IDENTIFIER_TRANSPARENT_ALIAS (target))
2467     {
2468       gcc_assert (TREE_CHAIN (target));
2469       target = ultimate_transparent_alias_target (&TREE_CHAIN (target));
2470       gcc_assert (! IDENTIFIER_TRANSPARENT_ALIAS (target)
2471                   && ! TREE_CHAIN (target));
2472       *alias = target;
2473     }
2474
2475   return target;
2476 }
2477
2478 /* Output to FILE (an assembly file) a reference to NAME.  If NAME
2479    starts with a *, the rest of NAME is output verbatim.  Otherwise
2480    NAME is transformed in a target-specific way (usually by the
2481    addition of an underscore).  */
2482
2483 void
2484 assemble_name_raw (FILE *file, const char *name)
2485 {
2486   if (name[0] == '*')
2487     fputs (&name[1], file);
2488   else
2489     ASM_OUTPUT_LABELREF (file, name);
2490 }
2491
2492 /* Like assemble_name_raw, but should be used when NAME might refer to
2493    an entity that is also represented as a tree (like a function or
2494    variable).  If NAME does refer to such an entity, that entity will
2495    be marked as referenced.  */
2496
2497 void
2498 assemble_name (FILE *file, const char *name)
2499 {
2500   const char *real_name;
2501   tree id;
2502
2503   real_name = targetm.strip_name_encoding (name);
2504
2505   id = maybe_get_identifier (real_name);
2506   if (id)
2507     {
2508       tree id_orig = id;
2509
2510       mark_referenced (id);
2511       ultimate_transparent_alias_target (&id);
2512       if (id != id_orig)
2513         name = IDENTIFIER_POINTER (id);
2514       gcc_assert (! TREE_CHAIN (id));
2515     }
2516
2517   assemble_name_raw (file, name);
2518 }
2519
2520 /* Allocate SIZE bytes writable static space with a gensym name
2521    and return an RTX to refer to its address.  */
2522
2523 rtx
2524 assemble_static_space (unsigned HOST_WIDE_INT size)
2525 {
2526   char name[12];
2527   const char *namestring;
2528   rtx x;
2529
2530   ASM_GENERATE_INTERNAL_LABEL (name, "LF", const_labelno);
2531   ++const_labelno;
2532   namestring = ggc_strdup (name);
2533
2534   x = gen_rtx_SYMBOL_REF (Pmode, namestring);
2535   SYMBOL_REF_FLAGS (x) = SYMBOL_FLAG_LOCAL;
2536
2537 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
2538   ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name, size,
2539                                  BIGGEST_ALIGNMENT);
2540 #else
2541 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
2542   ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, BIGGEST_ALIGNMENT);
2543 #else
2544   {
2545     /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2546        so that each uninitialized object starts on such a boundary.  */
2547     /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL.  */
2548     unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
2549       = ((size + (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1)
2550          / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
2551          * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
2552     ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
2553   }
2554 #endif
2555 #endif
2556   return x;
2557 }
2558
2559 /* Assemble the static constant template for function entry trampolines.
2560    This is done at most once per compilation.
2561    Returns an RTX for the address of the template.  */
2562
2563 static GTY(()) rtx initial_trampoline;
2564
2565 rtx
2566 assemble_trampoline_template (void)
2567 {
2568   char label[256];
2569   const char *name;
2570   int align;
2571   rtx symbol;
2572
2573   gcc_assert (targetm.asm_out.trampoline_template != NULL);
2574
2575   if (initial_trampoline)
2576     return initial_trampoline;
2577
2578   /* By default, put trampoline templates in read-only data section.  */
2579
2580 #ifdef TRAMPOLINE_SECTION
2581   switch_to_section (TRAMPOLINE_SECTION);
2582 #else
2583   switch_to_section (readonly_data_section);
2584 #endif
2585
2586   /* Write the assembler code to define one.  */
2587   align = floor_log2 (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT);
2588   if (align > 0)
2589     ASM_OUTPUT_ALIGN (asm_out_file, align);
2590
2591   targetm.asm_out.internal_label (asm_out_file, "LTRAMP", 0);
2592   targetm.asm_out.trampoline_template (asm_out_file);
2593
2594   /* Record the rtl to refer to it.  */
2595   ASM_GENERATE_INTERNAL_LABEL (label, "LTRAMP", 0);
2596   name = ggc_strdup (label);
2597   symbol = gen_rtx_SYMBOL_REF (Pmode, name);
2598   SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
2599
2600   initial_trampoline = gen_const_mem (BLKmode, symbol);
2601   set_mem_align (initial_trampoline, TRAMPOLINE_ALIGNMENT);
2602   set_mem_size (initial_trampoline, GEN_INT (TRAMPOLINE_SIZE));
2603
2604   return initial_trampoline;
2605 }
2606 \f
2607 /* A and B are either alignments or offsets.  Return the minimum alignment
2608    that may be assumed after adding the two together.  */
2609
2610 static inline unsigned
2611 min_align (unsigned int a, unsigned int b)
2612 {
2613   return (a | b) & -(a | b);
2614 }
2615
2616 /* Return the assembler directive for creating a given kind of integer
2617    object.  SIZE is the number of bytes in the object and ALIGNED_P
2618    indicates whether it is known to be aligned.  Return NULL if the
2619    assembly dialect has no such directive.
2620
2621    The returned string should be printed at the start of a new line and
2622    be followed immediately by the object's initial value.  */
2623
2624 const char *
2625 integer_asm_op (int size, int aligned_p)
2626 {
2627   struct asm_int_op *ops;
2628
2629   if (aligned_p)
2630     ops = &targetm.asm_out.aligned_op;
2631   else
2632     ops = &targetm.asm_out.unaligned_op;
2633
2634   switch (size)
2635     {
2636     case 1:
2637       return targetm.asm_out.byte_op;
2638     case 2:
2639       return ops->hi;
2640     case 4:
2641       return ops->si;
2642     case 8:
2643       return ops->di;
2644     case 16:
2645       return ops->ti;
2646     default:
2647       return NULL;
2648     }
2649 }
2650
2651 /* Use directive OP to assemble an integer object X.  Print OP at the
2652    start of the line, followed immediately by the value of X.  */
2653
2654 void
2655 assemble_integer_with_op (const char *op, rtx x)
2656 {
2657   fputs (op, asm_out_file);
2658   output_addr_const (asm_out_file, x);
2659   fputc ('\n', asm_out_file);
2660 }
2661
2662 /* The default implementation of the asm_out.integer target hook.  */
2663
2664 bool
2665 default_assemble_integer (rtx x ATTRIBUTE_UNUSED,
2666                           unsigned int size ATTRIBUTE_UNUSED,
2667                           int aligned_p ATTRIBUTE_UNUSED)
2668 {
2669   const char *op = integer_asm_op (size, aligned_p);
2670   /* Avoid GAS bugs for large values.  Specifically negative values whose
2671      absolute value fits in a bfd_vma, but not in a bfd_signed_vma.  */
2672   if (size > UNITS_PER_WORD && size > POINTER_SIZE / BITS_PER_UNIT)
2673     return false;
2674   return op && (assemble_integer_with_op (op, x), true);
2675 }
2676
2677 /* Assemble the integer constant X into an object of SIZE bytes.  ALIGN is
2678    the alignment of the integer in bits.  Return 1 if we were able to output
2679    the constant, otherwise 0.  We must be able to output the constant,
2680    if FORCE is nonzero.  */
2681
2682 bool
2683 assemble_integer (rtx x, unsigned int size, unsigned int align, int force)
2684 {
2685   int aligned_p;
2686
2687   aligned_p = (align >= MIN (size * BITS_PER_UNIT, BIGGEST_ALIGNMENT));
2688
2689   /* See if the target hook can handle this kind of object.  */
2690   if (targetm.asm_out.integer (x, size, aligned_p))
2691     return true;
2692
2693   /* If the object is a multi-byte one, try splitting it up.  Split
2694      it into words it if is multi-word, otherwise split it into bytes.  */
2695   if (size > 1)
2696     {
2697       enum machine_mode omode, imode;
2698       unsigned int subalign;
2699       unsigned int subsize, i;
2700       enum mode_class mclass;
2701
2702       subsize = size > UNITS_PER_WORD? UNITS_PER_WORD : 1;
2703       subalign = MIN (align, subsize * BITS_PER_UNIT);
2704       if (GET_CODE (x) == CONST_FIXED)
2705         mclass = GET_MODE_CLASS (GET_MODE (x));
2706       else
2707         mclass = MODE_INT;
2708
2709       omode = mode_for_size (subsize * BITS_PER_UNIT, mclass, 0);
2710       imode = mode_for_size (size * BITS_PER_UNIT, mclass, 0);
2711
2712       for (i = 0; i < size; i += subsize)
2713         {
2714           rtx partial = simplify_subreg (omode, x, imode, i);
2715           if (!partial || !assemble_integer (partial, subsize, subalign, 0))
2716             break;
2717         }
2718       if (i == size)
2719         return true;
2720
2721       /* If we've printed some of it, but not all of it, there's no going
2722          back now.  */
2723       gcc_assert (!i);
2724     }
2725
2726   gcc_assert (!force);
2727
2728   return false;
2729 }
2730 \f
2731 void
2732 assemble_real (REAL_VALUE_TYPE d, enum machine_mode mode, unsigned int align)
2733 {
2734   long data[4] = {0, 0, 0, 0};
2735   int i;
2736   int bitsize, nelts, nunits, units_per;
2737
2738   /* This is hairy.  We have a quantity of known size.  real_to_target
2739      will put it into an array of *host* longs, 32 bits per element
2740      (even if long is more than 32 bits).  We need to determine the
2741      number of array elements that are occupied (nelts) and the number
2742      of *target* min-addressable units that will be occupied in the
2743      object file (nunits).  We cannot assume that 32 divides the
2744      mode's bitsize (size * BITS_PER_UNIT) evenly.
2745
2746      size * BITS_PER_UNIT is used here to make sure that padding bits
2747      (which might appear at either end of the value; real_to_target
2748      will include the padding bits in its output array) are included.  */
2749
2750   nunits = GET_MODE_SIZE (mode);
2751   bitsize = nunits * BITS_PER_UNIT;
2752   nelts = CEIL (bitsize, 32);
2753   units_per = 32 / BITS_PER_UNIT;
2754
2755   real_to_target (data, &d, mode);
2756
2757   /* Put out the first word with the specified alignment.  */
2758   assemble_integer (GEN_INT (data[0]), MIN (nunits, units_per), align, 1);
2759   nunits -= units_per;
2760
2761   /* Subsequent words need only 32-bit alignment.  */
2762   align = min_align (align, 32);
2763
2764   for (i = 1; i < nelts; i++)
2765     {
2766       assemble_integer (GEN_INT (data[i]), MIN (nunits, units_per), align, 1);
2767       nunits -= units_per;
2768     }
2769 }
2770 \f
2771 /* Given an expression EXP with a constant value,
2772    reduce it to the sum of an assembler symbol and an integer.
2773    Store them both in the structure *VALUE.
2774    EXP must be reducible.  */
2775
2776 struct GTY(()) addr_const {
2777   rtx base;
2778   HOST_WIDE_INT offset;
2779 };
2780
2781 static void
2782 decode_addr_const (tree exp, struct addr_const *value)
2783 {
2784   tree target = TREE_OPERAND (exp, 0);
2785   int offset = 0;
2786   rtx x;
2787
2788   while (1)
2789     {
2790       if (TREE_CODE (target) == COMPONENT_REF
2791           && host_integerp (byte_position (TREE_OPERAND (target, 1)), 0))
2792
2793         {
2794           offset += int_byte_position (TREE_OPERAND (target, 1));
2795           target = TREE_OPERAND (target, 0);
2796         }
2797       else if (TREE_CODE (target) == ARRAY_REF
2798                || TREE_CODE (target) == ARRAY_RANGE_REF)
2799         {
2800           offset += (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (target)), 1)
2801                      * tree_low_cst (TREE_OPERAND (target, 1), 0));
2802           target = TREE_OPERAND (target, 0);
2803         }
2804       else
2805         break;
2806     }
2807
2808   switch (TREE_CODE (target))
2809     {
2810     case VAR_DECL:
2811     case FUNCTION_DECL:
2812       x = DECL_RTL (target);
2813       break;
2814
2815     case LABEL_DECL:
2816       x = gen_rtx_MEM (FUNCTION_MODE,
2817                        gen_rtx_LABEL_REF (Pmode, force_label_rtx (target)));
2818       break;
2819
2820     case REAL_CST:
2821     case FIXED_CST:
2822     case STRING_CST:
2823     case COMPLEX_CST:
2824     case CONSTRUCTOR:
2825     case INTEGER_CST:
2826       x = output_constant_def (target, 1);
2827       break;
2828
2829     default:
2830       gcc_unreachable ();
2831     }
2832
2833   gcc_assert (MEM_P (x));
2834   x = XEXP (x, 0);
2835
2836   value->base = x;
2837   value->offset = offset;
2838 }
2839 \f
2840
2841 static GTY((param_is (struct constant_descriptor_tree)))
2842      htab_t const_desc_htab;
2843
2844 static struct constant_descriptor_tree * build_constant_desc (tree);
2845 static void maybe_output_constant_def_contents (struct constant_descriptor_tree *, int);
2846
2847 /* Constant pool accessor function.  */
2848
2849 htab_t
2850 constant_pool_htab (void)
2851 {
2852   return const_desc_htab;
2853 }
2854
2855 /* Compute a hash code for a constant expression.  */
2856
2857 static hashval_t
2858 const_desc_hash (const void *ptr)
2859 {
2860   return ((const struct constant_descriptor_tree *)ptr)->hash;
2861 }
2862
2863 static hashval_t
2864 const_hash_1 (const tree exp)
2865 {
2866   const char *p;
2867   hashval_t hi;
2868   int len, i;
2869   enum tree_code code = TREE_CODE (exp);
2870
2871   /* Either set P and LEN to the address and len of something to hash and
2872      exit the switch or return a value.  */
2873
2874   switch (code)
2875     {
2876     case INTEGER_CST:
2877       p = (char *) &TREE_INT_CST (exp);
2878       len = sizeof TREE_INT_CST (exp);
2879       break;
2880
2881     case REAL_CST:
2882       return real_hash (TREE_REAL_CST_PTR (exp));
2883
2884     case FIXED_CST:
2885       return fixed_hash (TREE_FIXED_CST_PTR (exp));
2886
2887     case STRING_CST:
2888       p = TREE_STRING_POINTER (exp);
2889       len = TREE_STRING_LENGTH (exp);
2890       break;
2891
2892     case COMPLEX_CST:
2893       return (const_hash_1 (TREE_REALPART (exp)) * 5
2894               + const_hash_1 (TREE_IMAGPART (exp)));
2895
2896     case CONSTRUCTOR:
2897       {
2898         unsigned HOST_WIDE_INT idx;
2899         tree value;
2900
2901         hi = 5 + int_size_in_bytes (TREE_TYPE (exp));
2902
2903         FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, value)
2904           if (value)
2905             hi = hi * 603 + const_hash_1 (value);
2906
2907         return hi;
2908       }
2909
2910     case ADDR_EXPR:
2911     case FDESC_EXPR:
2912       {
2913         struct addr_const value;
2914
2915         decode_addr_const (exp, &value);
2916         switch (GET_CODE (value.base))
2917           {
2918           case SYMBOL_REF:
2919             /* Don't hash the address of the SYMBOL_REF;
2920                only use the offset and the symbol name.  */
2921             hi = value.offset;
2922             p = XSTR (value.base, 0);
2923             for (i = 0; p[i] != 0; i++)
2924               hi = ((hi * 613) + (unsigned) (p[i]));
2925             break;
2926
2927           case LABEL_REF:
2928             hi = value.offset + CODE_LABEL_NUMBER (XEXP (value.base, 0)) * 13;
2929             break;
2930
2931           default:
2932             gcc_unreachable ();
2933           }
2934       }
2935       return hi;
2936
2937     case PLUS_EXPR:
2938     case POINTER_PLUS_EXPR:
2939     case MINUS_EXPR:
2940       return (const_hash_1 (TREE_OPERAND (exp, 0)) * 9
2941               + const_hash_1 (TREE_OPERAND (exp, 1)));
2942
2943     CASE_CONVERT:
2944       return const_hash_1 (TREE_OPERAND (exp, 0)) * 7 + 2;
2945
2946     default:
2947       /* A language specific constant. Just hash the code.  */
2948       return code;
2949     }
2950
2951   /* Compute hashing function.  */
2952   hi = len;
2953   for (i = 0; i < len; i++)
2954     hi = ((hi * 613) + (unsigned) (p[i]));
2955
2956   return hi;
2957 }
2958
2959 /* Wrapper of compare_constant, for the htab interface.  */
2960 static int
2961 const_desc_eq (const void *p1, const void *p2)
2962 {
2963   const struct constant_descriptor_tree *const c1
2964     = (const struct constant_descriptor_tree *) p1;
2965   const struct constant_descriptor_tree *const c2
2966     = (const struct constant_descriptor_tree *) p2;
2967   if (c1->hash != c2->hash)
2968     return 0;
2969   return compare_constant (c1->value, c2->value);
2970 }
2971
2972 /* Compare t1 and t2, and return 1 only if they are known to result in
2973    the same bit pattern on output.  */
2974
2975 static int
2976 compare_constant (const tree t1, const tree t2)
2977 {
2978   enum tree_code typecode;
2979
2980   if (t1 == NULL_TREE)
2981     return t2 == NULL_TREE;
2982   if (t2 == NULL_TREE)
2983     return 0;
2984
2985   if (TREE_CODE (t1) != TREE_CODE (t2))
2986     return 0;
2987
2988   switch (TREE_CODE (t1))
2989     {
2990     case INTEGER_CST:
2991       /* Integer constants are the same only if the same width of type.  */
2992       if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2993         return 0;
2994       if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
2995         return 0;
2996       return tree_int_cst_equal (t1, t2);
2997
2998     case REAL_CST:
2999       /* Real constants are the same only if the same width of type.  */
3000       if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
3001         return 0;
3002
3003       return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
3004
3005     case FIXED_CST:
3006       /* Fixed constants are the same only if the same width of type.  */
3007       if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
3008         return 0;
3009
3010       return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
3011
3012     case STRING_CST:
3013       if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
3014         return 0;
3015
3016       return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
3017               && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
3018                          TREE_STRING_LENGTH (t1)));
3019
3020     case COMPLEX_CST:
3021       return (compare_constant (TREE_REALPART (t1), TREE_REALPART (t2))
3022               && compare_constant (TREE_IMAGPART (t1), TREE_IMAGPART (t2)));
3023
3024     case CONSTRUCTOR:
3025       {
3026         VEC(constructor_elt, gc) *v1, *v2;
3027         unsigned HOST_WIDE_INT idx;
3028
3029         typecode = TREE_CODE (TREE_TYPE (t1));
3030         if (typecode != TREE_CODE (TREE_TYPE (t2)))
3031           return 0;
3032
3033         if (typecode == ARRAY_TYPE)
3034           {
3035             HOST_WIDE_INT size_1 = int_size_in_bytes (TREE_TYPE (t1));
3036             /* For arrays, check that the sizes all match.  */
3037             if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2))
3038                 || size_1 == -1
3039                 || size_1 != int_size_in_bytes (TREE_TYPE (t2)))
3040               return 0;
3041           }
3042         else
3043           {
3044             /* For record and union constructors, require exact type
3045                equality.  */
3046             if (TREE_TYPE (t1) != TREE_TYPE (t2))
3047               return 0;
3048           }
3049
3050         v1 = CONSTRUCTOR_ELTS (t1);
3051         v2 = CONSTRUCTOR_ELTS (t2);
3052         if (VEC_length (constructor_elt, v1)
3053             != VEC_length (constructor_elt, v2))
3054             return 0;
3055
3056         for (idx = 0; idx < VEC_length (constructor_elt, v1); ++idx)
3057           {
3058             constructor_elt *c1 = VEC_index (constructor_elt, v1, idx);
3059             constructor_elt *c2 = VEC_index (constructor_elt, v2, idx);
3060
3061             /* Check that each value is the same...  */
3062             if (!compare_constant (c1->value, c2->value))
3063               return 0;
3064             /* ... and that they apply to the same fields!  */
3065             if (typecode == ARRAY_TYPE)
3066               {
3067                 if (!compare_constant (c1->index, c2->index))
3068                   return 0;
3069               }
3070             else
3071               {
3072                 if (c1->index != c2->index)
3073                   return 0;
3074               }
3075           }
3076
3077         return 1;
3078       }
3079
3080     case ADDR_EXPR:
3081     case FDESC_EXPR:
3082       {
3083         struct addr_const value1, value2;
3084
3085         decode_addr_const (t1, &value1);
3086         decode_addr_const (t2, &value2);
3087         return (value1.offset == value2.offset
3088                 && strcmp (XSTR (value1.base, 0), XSTR (value2.base, 0)) == 0);
3089       }
3090
3091     case PLUS_EXPR:
3092     case POINTER_PLUS_EXPR:
3093     case MINUS_EXPR:
3094     case RANGE_EXPR:
3095       return (compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0))
3096               && compare_constant(TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)));
3097
3098     CASE_CONVERT:
3099     case VIEW_CONVERT_EXPR:
3100       return compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
3101
3102     default:
3103       return 0;
3104     }
3105
3106   gcc_unreachable ();
3107 }
3108 \f
3109 /* Make a copy of the whole tree structure for a constant.  This
3110    handles the same types of nodes that compare_constant handles.  */
3111
3112 static tree
3113 copy_constant (tree exp)
3114 {
3115   switch (TREE_CODE (exp))
3116     {
3117     case ADDR_EXPR:
3118       /* For ADDR_EXPR, we do not want to copy the decl whose address
3119          is requested.  We do want to copy constants though.  */
3120       if (CONSTANT_CLASS_P (TREE_OPERAND (exp, 0)))
3121         return build1 (TREE_CODE (exp), TREE_TYPE (exp),
3122                        copy_constant (TREE_OPERAND (exp, 0)));
3123       else
3124         return copy_node (exp);
3125
3126     case INTEGER_CST:
3127     case REAL_CST:
3128     case FIXED_CST:
3129     case STRING_CST:
3130       return copy_node (exp);
3131
3132     case COMPLEX_CST:
3133       return build_complex (TREE_TYPE (exp),
3134                             copy_constant (TREE_REALPART (exp)),
3135                             copy_constant (TREE_IMAGPART (exp)));
3136
3137     case PLUS_EXPR:
3138     case POINTER_PLUS_EXPR:
3139     case MINUS_EXPR:
3140       return build2 (TREE_CODE (exp), TREE_TYPE (exp),
3141                      copy_constant (TREE_OPERAND (exp, 0)),
3142                      copy_constant (TREE_OPERAND (exp, 1)));
3143
3144     CASE_CONVERT:
3145     case VIEW_CONVERT_EXPR:
3146       return build1 (TREE_CODE (exp), TREE_TYPE (exp),
3147                      copy_constant (TREE_OPERAND (exp, 0)));
3148
3149     case CONSTRUCTOR:
3150       {
3151         tree copy = copy_node (exp);
3152         VEC(constructor_elt, gc) *v;
3153         unsigned HOST_WIDE_INT idx;
3154         tree purpose, value;
3155
3156         v = VEC_alloc(constructor_elt, gc, VEC_length(constructor_elt,
3157                                                       CONSTRUCTOR_ELTS (exp)));
3158         FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (exp), idx, purpose, value)
3159           {
3160             constructor_elt *ce = VEC_quick_push (constructor_elt, v, NULL);
3161             ce->index = purpose;
3162             ce->value = copy_constant (value);
3163           }
3164         CONSTRUCTOR_ELTS (copy) = v;
3165         return copy;
3166       }
3167
3168     default:
3169       gcc_unreachable ();
3170     }
3171 }
3172 \f
3173 /* Return the alignment of constant EXP in bits.  */
3174
3175 static unsigned int
3176 get_constant_alignment (tree exp)
3177 {
3178   unsigned int align;
3179
3180   align = TYPE_ALIGN (TREE_TYPE (exp));
3181 #ifdef CONSTANT_ALIGNMENT
3182   align = CONSTANT_ALIGNMENT (exp, align);
3183 #endif
3184   return align;
3185 }
3186
3187 /* Return the section into which constant EXP should be placed.  */
3188
3189 static section *
3190 get_constant_section (tree exp)
3191 {
3192   if (IN_NAMED_SECTION (exp))
3193     return get_named_section (exp, NULL, compute_reloc_for_constant (exp));
3194   else
3195     return targetm.asm_out.select_section (exp,
3196                                            compute_reloc_for_constant (exp),
3197                                            get_constant_alignment (exp));
3198 }
3199
3200 /* Return the size of constant EXP in bytes.  */
3201
3202 static HOST_WIDE_INT
3203 get_constant_size (tree exp)
3204 {
3205   HOST_WIDE_INT size;
3206
3207   size = int_size_in_bytes (TREE_TYPE (exp));
3208   if (TREE_CODE (exp) == STRING_CST)
3209     size = MAX (TREE_STRING_LENGTH (exp), size);
3210   return size;
3211 }
3212
3213 /* Subroutine of output_constant_def:
3214    No constant equal to EXP is known to have been output.
3215    Make a constant descriptor to enter EXP in the hash table.
3216    Assign the label number and construct RTL to refer to the
3217    constant's location in memory.
3218    Caller is responsible for updating the hash table.  */
3219
3220 static struct constant_descriptor_tree *
3221 build_constant_desc (tree exp)
3222 {
3223   rtx symbol;
3224   rtx rtl;
3225   char label[256];
3226   int labelno;
3227   struct constant_descriptor_tree *desc;
3228
3229   desc = GGC_NEW (struct constant_descriptor_tree);
3230   desc->value = copy_constant (exp);
3231
3232   /* Propagate marked-ness to copied constant.  */
3233   if (flag_mudflap && mf_marked_p (exp))
3234     mf_mark (desc->value);
3235
3236   /* Create a string containing the label name, in LABEL.  */
3237   labelno = const_labelno++;
3238   ASM_GENERATE_INTERNAL_LABEL (label, "LC", labelno);
3239
3240   /* We have a symbol name; construct the SYMBOL_REF and the MEM.  */
3241   if (use_object_blocks_p ())
3242     {
3243       section *sect = get_constant_section (exp);
3244       symbol = create_block_symbol (ggc_strdup (label),
3245                                     get_block_for_section (sect), -1);
3246     }
3247   else
3248     symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
3249   SYMBOL_REF_FLAGS (symbol) |= SYMBOL_FLAG_LOCAL;
3250   SET_SYMBOL_REF_DECL (symbol, desc->value);
3251   TREE_CONSTANT_POOL_ADDRESS_P (symbol) = 1;
3252
3253   rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp)), symbol);
3254   set_mem_attributes (rtl, exp, 1);
3255   set_mem_alias_set (rtl, 0);
3256   set_mem_alias_set (rtl, const_alias_set);
3257
3258   /* We cannot share RTX'es in pool entries.
3259      Mark this piece of RTL as required for unsharing.  */
3260   RTX_FLAG (rtl, used) = 1;
3261
3262   /* Set flags or add text to the name to record information, such as
3263      that it is a local symbol.  If the name is changed, the macro
3264      ASM_OUTPUT_LABELREF will have to know how to strip this
3265      information.  This call might invalidate our local variable
3266      SYMBOL; we can't use it afterward.  */
3267
3268   targetm.encode_section_info (exp, rtl, true);
3269
3270   desc->rtl = rtl;
3271
3272   return desc;
3273 }
3274
3275 /* Return an rtx representing a reference to constant data in memory
3276    for the constant expression EXP.
3277
3278    If assembler code for such a constant has already been output,
3279    return an rtx to refer to it.
3280    Otherwise, output such a constant in memory
3281    and generate an rtx for it.
3282
3283    If DEFER is nonzero, this constant can be deferred and output only
3284    if referenced in the function after all optimizations.
3285
3286    `const_desc_table' records which constants already have label strings.  */
3287
3288 rtx
3289 output_constant_def (tree exp, int defer)
3290 {
3291   struct constant_descriptor_tree *desc;
3292   struct constant_descriptor_tree key;
3293   void **loc;
3294
3295   /* Look up EXP in the table of constant descriptors.  If we didn't find
3296      it, create a new one.  */
3297   key.value = exp;
3298   key.hash = const_hash_1 (exp);
3299   loc = htab_find_slot_with_hash (const_desc_htab, &key, key.hash, INSERT);
3300
3301   desc = (struct constant_descriptor_tree *) *loc;
3302   if (desc == 0)
3303     {
3304       desc = build_constant_desc (exp);
3305       desc->hash = key.hash;
3306       *loc = desc;
3307     }
3308
3309   maybe_output_constant_def_contents (desc, defer);
3310   return desc->rtl;
3311 }
3312
3313 /* Subroutine of output_constant_def: Decide whether or not we need to
3314    output the constant DESC now, and if so, do it.  */
3315 static void
3316 maybe_output_constant_def_contents (struct constant_descriptor_tree *desc,
3317                                     int defer)
3318 {
3319   rtx symbol = XEXP (desc->rtl, 0);
3320   tree exp = desc->value;
3321
3322   if (flag_syntax_only)
3323     return;
3324
3325   if (TREE_ASM_WRITTEN (exp))
3326     /* Already output; don't do it again.  */
3327     return;
3328
3329   /* We can always defer constants as long as the context allows
3330      doing so.  */
3331   if (defer)
3332     {
3333       /* Increment n_deferred_constants if it exists.  It needs to be at
3334          least as large as the number of constants actually referred to
3335          by the function.  If it's too small we'll stop looking too early
3336          and fail to emit constants; if it's too large we'll only look
3337          through the entire function when we could have stopped earlier.  */
3338       if (cfun)
3339         n_deferred_constants++;
3340       return;
3341     }
3342
3343   output_constant_def_contents (symbol);
3344 }
3345
3346 /* Subroutine of output_constant_def_contents.  Output the definition
3347    of constant EXP, which is pointed to by label LABEL.  ALIGN is the
3348    constant's alignment in bits.  */
3349
3350 static void
3351 assemble_constant_contents (tree exp, const char *label, unsigned int align)
3352 {
3353   HOST_WIDE_INT size;
3354
3355   size = get_constant_size (exp);
3356
3357   /* Do any machine/system dependent processing of the constant.  */
3358 #ifdef ASM_DECLARE_CONSTANT_NAME
3359   ASM_DECLARE_CONSTANT_NAME (asm_out_file, label, exp, size);
3360 #else
3361   /* Standard thing is just output label for the constant.  */
3362   ASM_OUTPUT_LABEL (asm_out_file, label);
3363 #endif /* ASM_DECLARE_CONSTANT_NAME */
3364
3365   /* Output the value of EXP.  */
3366   output_constant (exp, size, align);
3367 }
3368
3369 /* We must output the constant data referred to by SYMBOL; do so.  */
3370
3371 static void
3372 output_constant_def_contents (rtx symbol)
3373 {
3374   tree exp = SYMBOL_REF_DECL (symbol);
3375   unsigned int align;
3376
3377   /* Make sure any other constants whose addresses appear in EXP
3378      are assigned label numbers.  */
3379   output_addressed_constants (exp);
3380
3381   /* We are no longer deferring this constant.  */
3382   TREE_ASM_WRITTEN (exp) = 1;
3383
3384   /* If the constant is part of an object block, make sure that the
3385      decl has been positioned within its block, but do not write out
3386      its definition yet.  output_object_blocks will do that later.  */
3387   if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol) && SYMBOL_REF_BLOCK (symbol))
3388     place_block_symbol (symbol);
3389   else
3390     {
3391       switch_to_section (get_constant_section (exp));
3392       align = get_constant_alignment (exp);
3393       if (align > BITS_PER_UNIT)
3394         ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
3395       assemble_constant_contents (exp, XSTR (symbol, 0), align);
3396     }
3397   if (flag_mudflap)
3398     mudflap_enqueue_constant (exp);
3399 }
3400
3401 /* Look up EXP in the table of constant descriptors.  Return the rtl
3402    if it has been emitted, else null.  */
3403
3404 rtx
3405 lookup_constant_def (tree exp)
3406 {
3407   struct constant_descriptor_tree *desc;
3408   struct constant_descriptor_tree key;
3409
3410   key.value = exp;
3411   key.hash = const_hash_1 (exp);
3412   desc = (struct constant_descriptor_tree *)
3413     htab_find_with_hash (const_desc_htab, &key, key.hash);
3414
3415   return (desc ? desc->rtl : NULL_RTX);
3416 }
3417 \f
3418 /* Used in the hash tables to avoid outputting the same constant
3419    twice.  Unlike 'struct constant_descriptor_tree', RTX constants
3420    are output once per function, not once per file.  */
3421 /* ??? Only a few targets need per-function constant pools.  Most
3422    can use one per-file pool.  Should add a targetm bit to tell the
3423    difference.  */
3424
3425 struct GTY(()) rtx_constant_pool {
3426   /* Pointers to first and last constant in pool, as ordered by offset.  */
3427   struct constant_descriptor_rtx *first;
3428   struct constant_descriptor_rtx *last;
3429
3430   /* Hash facility for making memory-constants from constant rtl-expressions.
3431      It is used on RISC machines where immediate integer arguments and
3432      constant addresses are restricted so that such constants must be stored
3433      in memory.  */
3434   htab_t GTY((param_is (struct constant_descriptor_rtx))) const_rtx_htab;
3435
3436   /* Current offset in constant pool (does not include any
3437      machine-specific header).  */
3438   HOST_WIDE_INT offset;
3439 };
3440
3441 struct GTY((chain_next ("%h.next"))) constant_descriptor_rtx {
3442   struct constant_descriptor_rtx *next;
3443   rtx mem;
3444   rtx sym;
3445   rtx constant;
3446   HOST_WIDE_INT offset;
3447   hashval_t hash;
3448   enum machine_mode mode;
3449   unsigned int align;
3450   int labelno;
3451   int mark;
3452 };
3453
3454 /* Hash and compare functions for const_rtx_htab.  */
3455
3456 static hashval_t
3457 const_desc_rtx_hash (const void *ptr)
3458 {
3459   const struct constant_descriptor_rtx *const desc
3460     = (const struct constant_descriptor_rtx *) ptr;
3461   return desc->hash;
3462 }
3463
3464 static int
3465 const_desc_rtx_eq (const void *a, const void *b)
3466 {
3467   const struct constant_descriptor_rtx *const x
3468     = (const struct constant_descriptor_rtx *) a;
3469   const struct constant_descriptor_rtx *const y
3470     = (const struct constant_descriptor_rtx *) b;
3471
3472   if (x->mode != y->mode)
3473     return 0;
3474   return rtx_equal_p (x->constant, y->constant);
3475 }
3476
3477 /* This is the worker function for const_rtx_hash, called via for_each_rtx.  */
3478
3479 static int
3480 const_rtx_hash_1 (rtx *xp, void *data)
3481 {
3482   unsigned HOST_WIDE_INT hwi;
3483   enum machine_mode mode;
3484   enum rtx_code code;
3485   hashval_t h, *hp;
3486   rtx x;
3487
3488   x = *xp;
3489   code = GET_CODE (x);
3490   mode = GET_MODE (x);
3491   h = (hashval_t) code * 1048573 + mode;
3492
3493   switch (code)
3494     {
3495     case CONST_INT:
3496       hwi = INTVAL (x);
3497     fold_hwi:
3498       {
3499         int shift = sizeof (hashval_t) * CHAR_BIT;
3500         const int n = sizeof (HOST_WIDE_INT) / sizeof (hashval_t);
3501         int i;
3502
3503         h ^= (hashval_t) hwi;
3504         for (i = 1; i < n; ++i)
3505           {
3506             hwi >>= shift;
3507             h ^= (hashval_t) hwi;
3508           }
3509       }
3510       break;
3511
3512     case CONST_DOUBLE:
3513       if (mode == VOIDmode)
3514         {
3515           hwi = CONST_DOUBLE_LOW (x) ^ CONST_DOUBLE_HIGH (x);
3516           goto fold_hwi;
3517         }
3518       else
3519         h ^= real_hash (CONST_DOUBLE_REAL_VALUE (x));
3520       break;
3521
3522     case CONST_FIXED:
3523       h ^= fixed_hash (CONST_FIXED_VALUE (x));
3524       break;
3525
3526     case CONST_VECTOR:
3527       {
3528         int i;
3529         for (i = XVECLEN (x, 0); i-- > 0; )
3530           h = h * 251 + const_rtx_hash_1 (&XVECEXP (x, 0, i), data);
3531       }
3532       break;
3533
3534     case SYMBOL_REF:
3535       h ^= htab_hash_string (XSTR (x, 0));
3536       break;
3537
3538     case LABEL_REF:
3539       h = h * 251 + CODE_LABEL_NUMBER (XEXP (x, 0));
3540       break;
3541
3542     case UNSPEC:
3543     case UNSPEC_VOLATILE:
3544       h = h * 251 + XINT (x, 1);
3545       break;
3546
3547     default:
3548       break;
3549     }
3550
3551   hp = (hashval_t *) data;
3552   *hp = *hp * 509 + h;
3553   return 0;
3554 }
3555
3556 /* Compute a hash value for X, which should be a constant.  */
3557
3558 static hashval_t
3559 const_rtx_hash (rtx x)
3560 {
3561   hashval_t h = 0;
3562   for_each_rtx (&x, const_rtx_hash_1, &h);
3563   return h;
3564 }
3565
3566 \f
3567 /* Create and return a new rtx constant pool.  */
3568
3569 static struct rtx_constant_pool *
3570 create_constant_pool (void)
3571 {
3572   struct rtx_constant_pool *pool;
3573
3574   pool = GGC_NEW (struct rtx_constant_pool);
3575   pool->const_rtx_htab = htab_create_ggc (31, const_desc_rtx_hash,
3576                                           const_desc_rtx_eq, NULL);
3577   pool->first = NULL;
3578   pool->last = NULL;
3579   pool->offset = 0;
3580   return pool;
3581 }
3582
3583 /* Initialize constant pool hashing for a new function.  */
3584
3585 void
3586 init_varasm_status (void)
3587 {
3588   crtl->varasm.pool = create_constant_pool ();
3589   crtl->varasm.deferred_constants = 0;
3590 }
3591 \f
3592 /* Given a MINUS expression, simplify it if both sides
3593    include the same symbol.  */
3594
3595 rtx
3596 simplify_subtraction (rtx x)
3597 {
3598   rtx r = simplify_rtx (x);
3599   return r ? r : x;
3600 }
3601 \f
3602 /* Given a constant rtx X, make (or find) a memory constant for its value
3603    and return a MEM rtx to refer to it in memory.  */
3604
3605 rtx
3606 force_const_mem (enum machine_mode mode, rtx x)
3607 {
3608   struct constant_descriptor_rtx *desc, tmp;
3609   struct rtx_constant_pool *pool;
3610   char label[256];
3611   rtx def, symbol;
3612   hashval_t hash;
3613   unsigned int align;
3614   void **slot;
3615
3616   /* If we're not allowed to drop X into the constant pool, don't.  */
3617   if (targetm.cannot_force_const_mem (x))
3618     return NULL_RTX;
3619
3620   /* Record that this function has used a constant pool entry.  */
3621   crtl->uses_const_pool = 1;
3622
3623   /* Decide which pool to use.  */
3624   pool = (targetm.use_blocks_for_constant_p (mode, x)
3625           ? shared_constant_pool
3626           : crtl->varasm.pool);
3627
3628   /* Lookup the value in the hashtable.  */
3629   tmp.constant = x;
3630   tmp.mode = mode;
3631   hash = const_rtx_hash (x);
3632   slot = htab_find_slot_with_hash (pool->const_rtx_htab, &tmp, hash, INSERT);
3633   desc = (struct constant_descriptor_rtx *) *slot;
3634
3635   /* If the constant was already present, return its memory.  */
3636   if (desc)
3637     return copy_rtx (desc->mem);
3638
3639   /* Otherwise, create a new descriptor.  */
3640   desc = GGC_NEW (struct constant_descriptor_rtx);
3641   *slot = desc;
3642
3643   /* Align the location counter as required by EXP's data type.  */
3644   align = GET_MODE_ALIGNMENT (mode == VOIDmode ? word_mode : mode);
3645 #ifdef CONSTANT_ALIGNMENT
3646   {
3647     tree type = lang_hooks.types.type_for_mode (mode, 0);
3648     if (type != NULL_TREE)
3649       align = CONSTANT_ALIGNMENT (make_tree (type, x), align);
3650   }
3651 #endif
3652
3653   pool->offset += (align / BITS_PER_UNIT) - 1;
3654   pool->offset &= ~ ((align / BITS_PER_UNIT) - 1);
3655
3656   desc->next = NULL;
3657   desc->constant = tmp.constant;
3658   desc->offset = pool->offset;
3659   desc->hash = hash;
3660   desc->mode = mode;
3661   desc->align = align;
3662   desc->labelno = const_labelno;
3663   desc->mark = 0;
3664
3665   pool->offset += GET_MODE_SIZE (mode);
3666   if (pool->last)
3667     pool->last->next = desc;
3668   else
3669     pool->first = pool->last = desc;
3670   pool->last = desc;
3671
3672   /* Create a string containing the label name, in LABEL.  */
3673   ASM_GENERATE_INTERNAL_LABEL (label, "LC", const_labelno);
3674   ++const_labelno;
3675
3676   /* Construct the SYMBOL_REF.  Make sure to mark it as belonging to
3677      the constants pool.  */
3678   if (use_object_blocks_p () && targetm.use_blocks_for_constant_p (mode, x))
3679     {
3680       section *sect = targetm.asm_out.select_rtx_section (mode, x, align);
3681       symbol = create_block_symbol (ggc_strdup (label),
3682                                     get_block_for_section (sect), -1);
3683     }
3684   else
3685     symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
3686   desc->sym = symbol;
3687   SYMBOL_REF_FLAGS (symbol) |= SYMBOL_FLAG_LOCAL;
3688   CONSTANT_POOL_ADDRESS_P (symbol) = 1;
3689   SET_SYMBOL_REF_CONSTANT (symbol, desc);
3690
3691   /* Construct the MEM.  */
3692   desc->mem = def = gen_const_mem (mode, symbol);
3693   set_mem_attributes (def, lang_hooks.types.type_for_mode (mode, 0), 1);
3694   set_mem_align (def, align);
3695
3696   /* If we're dropping a label to the constant pool, make sure we
3697      don't delete it.  */
3698   if (GET_CODE (x) == LABEL_REF)
3699     LABEL_PRESERVE_P (XEXP (x, 0)) = 1;
3700
3701   return copy_rtx (def);
3702 }
3703 \f
3704 /* Given a constant pool SYMBOL_REF, return the corresponding constant.  */
3705
3706 rtx
3707 get_pool_constant (rtx addr)
3708 {
3709   return SYMBOL_REF_CONSTANT (addr)->constant;
3710 }
3711
3712 /* Given a constant pool SYMBOL_REF, return the corresponding constant
3713    and whether it has been output or not.  */
3714
3715 rtx
3716 get_pool_constant_mark (rtx addr, bool *pmarked)
3717 {
3718   struct constant_descriptor_rtx *desc;
3719
3720   desc = SYMBOL_REF_CONSTANT (addr);
3721   *pmarked = (desc->mark != 0);
3722   return desc->constant;
3723 }
3724
3725 /* Similar, return the mode.  */
3726
3727 enum machine_mode
3728 get_pool_mode (const_rtx addr)
3729 {
3730   return SYMBOL_REF_CONSTANT (addr)->mode;
3731 }
3732
3733 /* Return the size of the constant pool.  */
3734
3735 int
3736 get_pool_size (void)
3737 {
3738   return crtl->varasm.pool->offset;
3739 }
3740 \f
3741 /* Worker function for output_constant_pool_1.  Emit assembly for X
3742    in MODE with known alignment ALIGN.  */
3743
3744 static void
3745 output_constant_pool_2 (enum machine_mode mode, rtx x, unsigned int align)
3746 {
3747   switch (GET_MODE_CLASS (mode))
3748     {
3749     case MODE_FLOAT:
3750     case MODE_DECIMAL_FLOAT:
3751       {
3752         REAL_VALUE_TYPE r;
3753
3754         gcc_assert (GET_CODE (x) == CONST_DOUBLE);
3755         REAL_VALUE_FROM_CONST_DOUBLE (r, x);
3756         assemble_real (r, mode, align);
3757         break;
3758       }
3759
3760     case MODE_INT:
3761     case MODE_PARTIAL_INT:
3762     case MODE_FRACT:
3763     case MODE_UFRACT:
3764     case MODE_ACCUM:
3765     case MODE_UACCUM:
3766       assemble_integer (x, GET_MODE_SIZE (mode), align, 1);
3767       break;
3768
3769     case MODE_VECTOR_FLOAT:
3770     case MODE_VECTOR_INT:
3771     case MODE_VECTOR_FRACT:
3772     case MODE_VECTOR_UFRACT:
3773     case MODE_VECTOR_ACCUM:
3774     case MODE_VECTOR_UACCUM:
3775       {
3776         int i, units;
3777         enum machine_mode submode = GET_MODE_INNER (mode);
3778         unsigned int subalign = MIN (align, GET_MODE_BITSIZE (submode));
3779
3780         gcc_assert (GET_CODE (x) == CONST_VECTOR);
3781         units = CONST_VECTOR_NUNITS (x);
3782
3783         for (i = 0; i < units; i++)
3784           {
3785             rtx elt = CONST_VECTOR_ELT (x, i);
3786             output_constant_pool_2 (submode, elt, i ? subalign : align);
3787           }
3788       }
3789       break;
3790
3791     default:
3792       gcc_unreachable ();
3793     }
3794 }
3795
3796 /* Worker function for output_constant_pool.  Emit constant DESC,
3797    giving it ALIGN bits of alignment.  */
3798
3799 static void
3800 output_constant_pool_1 (struct constant_descriptor_rtx *desc,
3801                         unsigned int align)
3802 {
3803   rtx x, tmp;
3804
3805   x = desc->constant;
3806
3807   /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3808      whose CODE_LABEL has been deleted.  This can occur if a jump table
3809      is eliminated by optimization.  If so, write a constant of zero
3810      instead.  Note that this can also happen by turning the
3811      CODE_LABEL into a NOTE.  */
3812   /* ??? This seems completely and utterly wrong.  Certainly it's
3813      not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3814      functioning even with INSN_DELETED_P and friends.  */
3815
3816   tmp = x;
3817   switch (GET_CODE (tmp))
3818     {
3819     case CONST:
3820       if (GET_CODE (XEXP (tmp, 0)) != PLUS
3821           || GET_CODE (XEXP (XEXP (tmp, 0), 0)) != LABEL_REF)
3822         break;
3823       tmp = XEXP (XEXP (tmp, 0), 0);
3824       /* FALLTHRU  */
3825
3826     case LABEL_REF:
3827       tmp = XEXP (tmp, 0);
3828       gcc_assert (!INSN_DELETED_P (tmp));
3829       gcc_assert (!NOTE_P (tmp)
3830                   || NOTE_KIND (tmp) != NOTE_INSN_DELETED);
3831       break;
3832
3833     default:
3834       break;
3835     }
3836
3837 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3838   ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file, x, desc->mode,
3839                                  align, desc->labelno, done);
3840 #endif
3841
3842   assemble_align (align);
3843
3844   /* Output the label.  */
3845   targetm.asm_out.internal_label (asm_out_file, "LC", desc->labelno);
3846
3847   /* Output the data.  */
3848   output_constant_pool_2 (desc->mode, x, align);
3849
3850   /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
3851      sections have proper size.  */
3852   if (align > GET_MODE_BITSIZE (desc->mode)
3853       && in_section
3854       && (in_section->common.flags & SECTION_MERGE))
3855     assemble_align (align);
3856
3857 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3858  done:
3859 #endif
3860   return;
3861 }
3862
3863 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3864    to as used.  Emit referenced deferred strings.  This function can
3865    be used with for_each_rtx to mark all SYMBOL_REFs in an rtx.  */
3866
3867 static int
3868 mark_constant (rtx *current_rtx, void *data ATTRIBUTE_UNUSED)
3869 {
3870   rtx x = *current_rtx;
3871
3872   if (x == NULL_RTX || GET_CODE (x) != SYMBOL_REF)
3873     return 0;
3874
3875   if (CONSTANT_POOL_ADDRESS_P (x))
3876     {
3877       struct constant_descriptor_rtx *desc = SYMBOL_REF_CONSTANT (x);
3878       if (desc->mark == 0)
3879         {
3880           desc->mark = 1;
3881           for_each_rtx (&desc->constant, mark_constant, NULL);
3882         }
3883     }
3884   else if (TREE_CONSTANT_POOL_ADDRESS_P (x))
3885     {
3886       tree exp = SYMBOL_REF_DECL (x);
3887       if (!TREE_ASM_WRITTEN (exp))
3888         {
3889           n_deferred_constants--;
3890           output_constant_def_contents (x);
3891         }
3892     }
3893
3894   return -1;
3895 }
3896
3897 /* Look through appropriate parts of INSN, marking all entries in the
3898    constant pool which are actually being used.  Entries that are only
3899    referenced by other constants are also marked as used.  Emit
3900    deferred strings that are used.  */
3901
3902 static void
3903 mark_constants (rtx insn)
3904 {
3905   if (!INSN_P (insn))
3906     return;
3907
3908   /* Insns may appear inside a SEQUENCE.  Only check the patterns of
3909      insns, not any notes that may be attached.  We don't want to mark
3910      a constant just because it happens to appear in a REG_EQUIV note.  */
3911   if (GET_CODE (PATTERN (insn)) == SEQUENCE)
3912     {
3913       rtx seq = PATTERN (insn);
3914       int i, n = XVECLEN (seq, 0);
3915       for (i = 0; i < n; ++i)
3916         {
3917           rtx subinsn = XVECEXP (seq, 0, i);
3918           if (INSN_P (subinsn))
3919             for_each_rtx (&PATTERN (subinsn), mark_constant, NULL);
3920         }
3921     }
3922   else
3923     for_each_rtx (&PATTERN (insn), mark_constant, NULL);
3924 }
3925
3926 /* Look through the instructions for this function, and mark all the
3927    entries in POOL which are actually being used.  Emit deferred constants
3928    which have indeed been used.  */
3929
3930 static void
3931 mark_constant_pool (void)
3932 {
3933   rtx insn, link;
3934
3935   if (!crtl->uses_const_pool && n_deferred_constants == 0)
3936     return;
3937
3938   for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3939     mark_constants (insn);
3940
3941   for (link = crtl->epilogue_delay_list;
3942        link;
3943        link = XEXP (link, 1))
3944     mark_constants (XEXP (link, 0));
3945 }
3946
3947 /* Write all the constants in POOL.  */
3948
3949 static void
3950 output_constant_pool_contents (struct rtx_constant_pool *pool)
3951 {
3952   struct constant_descriptor_rtx *desc;
3953
3954   for (desc = pool->first; desc ; desc = desc->next)
3955     if (desc->mark)
3956       {
3957         /* If the constant is part of an object_block, make sure that
3958            the constant has been positioned within its block, but do not
3959            write out its definition yet.  output_object_blocks will do
3960            that later.  */
3961         if (SYMBOL_REF_HAS_BLOCK_INFO_P (desc->sym)
3962             && SYMBOL_REF_BLOCK (desc->sym))
3963           place_block_symbol (desc->sym);
3964         else
3965           {
3966             switch_to_section (targetm.asm_out.select_rtx_section
3967                                (desc->mode, desc->constant, desc->align));
3968             output_constant_pool_1 (desc, desc->align);
3969           }
3970       }
3971 }
3972
3973 /* Mark all constants that are used in the current function, then write
3974    out the function's private constant pool.  */
3975
3976 static void
3977 output_constant_pool (const char *fnname ATTRIBUTE_UNUSED,
3978                       tree fndecl ATTRIBUTE_UNUSED)
3979 {
3980   struct rtx_constant_pool *pool = crtl->varasm.pool;
3981
3982   /* It is possible for gcc to call force_const_mem and then to later
3983      discard the instructions which refer to the constant.  In such a
3984      case we do not need to output the constant.  */
3985   mark_constant_pool ();
3986
3987 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3988   ASM_OUTPUT_POOL_PROLOGUE (asm_out_file, fnname, fndecl, pool->offset);
3989 #endif
3990
3991   output_constant_pool_contents (pool);
3992
3993 #ifdef ASM_OUTPUT_POOL_EPILOGUE
3994   ASM_OUTPUT_POOL_EPILOGUE (asm_out_file, fnname, fndecl, pool->offset);
3995 #endif
3996 }
3997 \f
3998 /* Write the contents of the shared constant pool.  */
3999
4000 void
4001 output_shared_constant_pool (void)
4002 {
4003   output_constant_pool_contents (shared_constant_pool);
4004 }
4005 \f
4006 /* Determine what kind of relocations EXP may need.  */
4007
4008 int
4009 compute_reloc_for_constant (tree exp)
4010 {
4011   int reloc = 0, reloc2;
4012   tree tem;
4013
4014   switch (TREE_CODE (exp))
4015     {
4016     case ADDR_EXPR:
4017     case FDESC_EXPR:
4018       /* Go inside any operations that get_inner_reference can handle and see
4019          if what's inside is a constant: no need to do anything here for
4020          addresses of variables or functions.  */
4021       for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
4022            tem = TREE_OPERAND (tem, 0))
4023         ;
4024
4025       if (TREE_PUBLIC (tem))
4026         reloc |= 2;
4027       else
4028         reloc |= 1;
4029       break;
4030
4031     case PLUS_EXPR:
4032     case POINTER_PLUS_EXPR:
4033       reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
4034       reloc |= compute_reloc_for_constant (TREE_OPERAND (exp, 1));
4035       break;
4036
4037     case MINUS_EXPR:
4038       reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
4039       reloc2 = compute_reloc_for_constant (TREE_OPERAND (exp, 1));
4040       /* The difference of two local labels is computable at link time.  */
4041       if (reloc == 1 && reloc2 == 1)
4042         reloc = 0;
4043       else
4044         reloc |= reloc2;
4045       break;
4046
4047     CASE_CONVERT:
4048     case VIEW_CONVERT_EXPR:
4049       reloc = compute_reloc_for_constant (TREE_OPERAND (exp, 0));
4050       break;
4051
4052     case CONSTRUCTOR:
4053       {
4054         unsigned HOST_WIDE_INT idx;
4055         FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, tem)
4056           if (tem != 0)
4057             reloc |= compute_reloc_for_constant (tem);
4058       }
4059       break;
4060
4061     default:
4062       break;
4063     }
4064   return reloc;
4065 }
4066
4067 /* Find all the constants whose addresses are referenced inside of EXP,
4068    and make sure assembler code with a label has been output for each one.
4069    Indicate whether an ADDR_EXPR has been encountered.  */
4070
4071 static void
4072 output_addressed_constants (tree exp)
4073 {
4074   tree tem;
4075
4076   switch (TREE_CODE (exp))
4077     {
4078     case ADDR_EXPR:
4079     case FDESC_EXPR:
4080       /* Go inside any operations that get_inner_reference can handle and see
4081          if what's inside is a constant: no need to do anything here for
4082          addresses of variables or functions.  */
4083       for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
4084            tem = TREE_OPERAND (tem, 0))
4085         ;
4086
4087       /* If we have an initialized CONST_DECL, retrieve the initializer.  */
4088       if (TREE_CODE (tem) == CONST_DECL && DECL_INITIAL (tem))
4089         tem = DECL_INITIAL (tem);
4090
4091       if (CONSTANT_CLASS_P (tem) || TREE_CODE (tem) == CONSTRUCTOR)
4092         output_constant_def (tem, 0);
4093       break;
4094
4095     case PLUS_EXPR:
4096     case POINTER_PLUS_EXPR:
4097     case MINUS_EXPR:
4098       output_addressed_constants (TREE_OPERAND (exp, 1));
4099       /* Fall through.  */
4100
4101     CASE_CONVERT:
4102     case VIEW_CONVERT_EXPR:
4103       output_addressed_constants (TREE_OPERAND (exp, 0));
4104       break;
4105
4106     case CONSTRUCTOR:
4107       {
4108         unsigned HOST_WIDE_INT idx;
4109         FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), idx, tem)
4110           if (tem != 0)
4111             output_addressed_constants (tem);
4112       }
4113       break;
4114
4115     default:
4116       break;
4117     }
4118 }
4119 \f
4120 /* Whether a constructor CTOR is a valid static constant initializer if all
4121    its elements are.  This used to be internal to initializer_constant_valid_p
4122    and has been exposed to let other functions like categorize_ctor_elements
4123    evaluate the property while walking a constructor for other purposes.  */
4124
4125 bool
4126 constructor_static_from_elts_p (const_tree ctor)
4127 {
4128   return (TREE_CONSTANT (ctor)
4129           && (TREE_CODE (TREE_TYPE (ctor)) == UNION_TYPE
4130               || TREE_CODE (TREE_TYPE (ctor)) == RECORD_TYPE)
4131           && !VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (ctor)));
4132 }
4133
4134 static tree initializer_constant_valid_p_1 (tree value, tree endtype,
4135                                             tree *cache);
4136
4137 /* A subroutine of initializer_constant_valid_p.  VALUE is a MINUS_EXPR,
4138    PLUS_EXPR or POINTER_PLUS_EXPR.  This looks for cases of VALUE
4139    which are valid when ENDTYPE is an integer of any size; in
4140    particular, this does not accept a pointer minus a constant.  This
4141    returns null_pointer_node if the VALUE is an absolute constant
4142    which can be used to initialize a static variable.  Otherwise it
4143    returns NULL.  */
4144
4145 static tree
4146 narrowing_initializer_constant_valid_p (tree value, tree endtype, tree *cache)
4147 {
4148   tree op0, op1;
4149
4150   if (!INTEGRAL_TYPE_P (endtype))
4151     return NULL_TREE;
4152
4153   op0 = TREE_OPERAND (value, 0);
4154   op1 = TREE_OPERAND (value, 1);
4155
4156   /* Like STRIP_NOPS except allow the operand mode to widen.  This
4157      works around a feature of fold that simplifies (int)(p1 - p2) to
4158      ((int)p1 - (int)p2) under the theory that the narrower operation
4159      is cheaper.  */
4160
4161   while (CONVERT_EXPR_P (op0)
4162          || TREE_CODE (op0) == NON_LVALUE_EXPR)
4163     {
4164       tree inner = TREE_OPERAND (op0, 0);
4165       if (inner == error_mark_node
4166           || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
4167           || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0)))
4168               > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
4169         break;
4170       op0 = inner;
4171     }
4172
4173   while (CONVERT_EXPR_P (op1)
4174          || TREE_CODE (op1) == NON_LVALUE_EXPR)
4175     {
4176       tree inner = TREE_OPERAND (op1, 0);
4177       if (inner == error_mark_node
4178           || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
4179           || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op1)))
4180               > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
4181         break;
4182       op1 = inner;
4183     }
4184
4185   op0 = initializer_constant_valid_p_1 (op0, endtype, cache);
4186   if (!op0)
4187     return NULL_TREE;
4188
4189   op1 = initializer_constant_valid_p_1 (op1, endtype,
4190                                         cache ? cache + 2 : NULL);
4191   /* Both initializers must be known.  */
4192   if (op1)
4193     {
4194       if (op0 == op1
4195           && (op0 == null_pointer_node
4196               || TREE_CODE (value) == MINUS_EXPR))
4197         return null_pointer_node;
4198
4199       /* Support differences between labels.  */
4200       if (TREE_CODE (op0) == LABEL_DECL
4201           && TREE_CODE (op1) == LABEL_DECL)
4202         return null_pointer_node;
4203
4204       if (TREE_CODE (op0) == STRING_CST
4205           && TREE_CODE (op1) == STRING_CST
4206           && operand_equal_p (op0, op1, 1))
4207         return null_pointer_node;
4208     }
4209
4210   return NULL_TREE;
4211 }
4212
4213 /* Helper function of initializer_constant_valid_p.
4214    Return nonzero if VALUE is a valid constant-valued expression
4215    for use in initializing a static variable; one that can be an
4216    element of a "constant" initializer.
4217
4218    Return null_pointer_node if the value is absolute;
4219    if it is relocatable, return the variable that determines the relocation.
4220    We assume that VALUE has been folded as much as possible;
4221    therefore, we do not need to check for such things as
4222    arithmetic-combinations of integers.
4223
4224    Use CACHE (pointer to 2 tree values) for caching if non-NULL.  */
4225
4226 static tree
4227 initializer_constant_valid_p_1 (tree value, tree endtype, tree *cache)
4228 {
4229   tree ret;
4230
4231   switch (TREE_CODE (value))
4232     {
4233     case CONSTRUCTOR:
4234       if (constructor_static_from_elts_p (value))
4235         {
4236           unsigned HOST_WIDE_INT idx;
4237           tree elt;
4238           bool absolute = true;
4239
4240           if (cache && cache[0] == value)
4241             return cache[1];
4242           FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value), idx, elt)
4243             {
4244               tree reloc;
4245               reloc = initializer_constant_valid_p_1 (elt, TREE_TYPE (elt),
4246                                                       NULL);
4247               if (!reloc)
4248                 {
4249                   if (cache)
4250                     {
4251                       cache[0] = value;
4252                       cache[1] = NULL_TREE;
4253                     }
4254                   return NULL_TREE;
4255                 }
4256               if (reloc != null_pointer_node)
4257                 absolute = false;
4258             }
4259           /* For a non-absolute relocation, there is no single
4260              variable that can be "the variable that determines the
4261              relocation."  */
4262           if (cache)
4263             {
4264               cache[0] = value;
4265               cache[1] = absolute ? null_pointer_node : error_mark_node;
4266             }
4267           return absolute ? null_pointer_node : error_mark_node;
4268         }
4269
4270       return TREE_STATIC (value) ? null_pointer_node : NULL_TREE;
4271
4272     case INTEGER_CST:
4273     case VECTOR_CST:
4274     case REAL_CST:
4275     case FIXED_CST:
4276     case STRING_CST:
4277     case COMPLEX_CST:
4278       return null_pointer_node;
4279
4280     case ADDR_EXPR:
4281     case FDESC_EXPR:
4282       {
4283         tree op0 = staticp (TREE_OPERAND (value, 0));
4284         if (op0)
4285           {
4286             /* "&(*a).f" is like unto pointer arithmetic.  If "a" turns out
4287                to be a constant, this is old-skool offsetof-like nonsense.  */
4288             if (TREE_CODE (op0) == INDIRECT_REF
4289                 && TREE_CONSTANT (TREE_OPERAND (op0, 0)))
4290               return null_pointer_node;
4291             /* Taking the address of a nested function involves a trampoline,
4292                unless we don't need or want one.  */
4293             if (TREE_CODE (op0) == FUNCTION_DECL
4294                 && DECL_STATIC_CHAIN (op0)
4295                 && !TREE_NO_TRAMPOLINE (value))
4296               return NULL_TREE;
4297             /* "&{...}" requires a temporary to hold the constructed
4298                object.  */
4299             if (TREE_CODE (op0) == CONSTRUCTOR)
4300               return NULL_TREE;
4301           }
4302         return op0;
4303       }
4304
4305     case NON_LVALUE_EXPR:
4306       return initializer_constant_valid_p_1 (TREE_OPERAND (value, 0),
4307                                              endtype, cache);
4308
4309     case VIEW_CONVERT_EXPR:
4310       {
4311         tree src = TREE_OPERAND (value, 0);
4312         tree src_type = TREE_TYPE (src);
4313         tree dest_type = TREE_TYPE (value);
4314
4315         /* Allow view-conversions from aggregate to non-aggregate type only
4316            if the bit pattern is fully preserved afterwards; otherwise, the
4317            RTL expander won't be able to apply a subsequent transformation
4318            to the underlying constructor.  */
4319         if (AGGREGATE_TYPE_P (src_type) && !AGGREGATE_TYPE_P (dest_type))
4320           {
4321             if (TYPE_MODE (endtype) == TYPE_MODE (dest_type))
4322               return initializer_constant_valid_p_1 (src, endtype, cache);
4323             else
4324               return NULL_TREE;
4325           }
4326
4327         /* Allow all other kinds of view-conversion.  */
4328         return initializer_constant_valid_p_1 (src, endtype, cache);
4329       }
4330
4331     CASE_CONVERT:
4332       {
4333         tree src = TREE_OPERAND (value, 0);
4334         tree src_type = TREE_TYPE (src);
4335         tree dest_type = TREE_TYPE (value);
4336
4337         /* Allow conversions between pointer types, floating-point
4338            types, and offset types.  */
4339         if ((POINTER_TYPE_P (dest_type) && POINTER_TYPE_P (src_type))
4340             || (FLOAT_TYPE_P (dest_type) && FLOAT_TYPE_P (src_type))
4341             || (TREE_CODE (dest_type) == OFFSET_TYPE
4342                 && TREE_CODE (src_type) == OFFSET_TYPE))
4343           return initializer_constant_valid_p_1 (src, endtype, cache);
4344
4345         /* Allow length-preserving conversions between integer types.  */
4346         if (INTEGRAL_TYPE_P (dest_type) && INTEGRAL_TYPE_P (src_type)
4347             && (TYPE_PRECISION (dest_type) == TYPE_PRECISION (src_type)))
4348           return initializer_constant_valid_p_1 (src, endtype, cache);
4349
4350         /* Allow conversions between other integer types only if
4351            explicit value.  */
4352         if (INTEGRAL_TYPE_P (dest_type) && INTEGRAL_TYPE_P (src_type))
4353           {
4354             tree inner = initializer_constant_valid_p_1 (src, endtype, cache);
4355             if (inner == null_pointer_node)
4356               return null_pointer_node;
4357             break;
4358           }
4359
4360         /* Allow (int) &foo provided int is as wide as a pointer.  */
4361         if (INTEGRAL_TYPE_P (dest_type) && POINTER_TYPE_P (src_type)
4362             && (TYPE_PRECISION (dest_type) >= TYPE_PRECISION (src_type)))
4363           return initializer_constant_valid_p_1 (src, endtype, cache);
4364
4365         /* Likewise conversions from int to pointers, but also allow
4366            conversions from 0.  */
4367         if ((POINTER_TYPE_P (dest_type)
4368              || TREE_CODE (dest_type) == OFFSET_TYPE)
4369             && INTEGRAL_TYPE_P (src_type))
4370           {
4371             if (TREE_CODE (src) == INTEGER_CST
4372                 && TYPE_PRECISION (dest_type) >= TYPE_PRECISION (src_type))
4373               return null_pointer_node;
4374             if (integer_zerop (src))
4375               return null_pointer_node;
4376             else if (TYPE_PRECISION (dest_type) <= TYPE_PRECISION (src_type))
4377               return initializer_constant_valid_p_1 (src, endtype, cache);
4378           }
4379
4380         /* Allow conversions to struct or union types if the value
4381            inside is okay.  */
4382         if (TREE_CODE (dest_type) == RECORD_TYPE
4383             || TREE_CODE (dest_type) == UNION_TYPE)
4384           return initializer_constant_valid_p_1 (src, endtype, cache);
4385       }
4386       break;
4387
4388     case POINTER_PLUS_EXPR:
4389     case PLUS_EXPR:
4390       /* Any valid floating-point constants will have been folded by now;
4391          with -frounding-math we hit this with addition of two constants.  */
4392       if (TREE_CODE (endtype) == REAL_TYPE)
4393         return NULL_TREE;
4394       if (cache && cache[0] == value)
4395         return cache[1];
4396       if (! INTEGRAL_TYPE_P (endtype)
4397           || TYPE_PRECISION (endtype) >= TYPE_PRECISION (TREE_TYPE (value)))
4398         {
4399           tree ncache[4] = { NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE };
4400           tree valid0
4401             = initializer_constant_valid_p_1 (TREE_OPERAND (value, 0),
4402                                               endtype, ncache);
4403           tree valid1
4404             = initializer_constant_valid_p_1 (TREE_OPERAND (value, 1),
4405                                               endtype, ncache + 2);
4406           /* If either term is absolute, use the other term's relocation.  */
4407           if (valid0 == null_pointer_node)
4408             ret = valid1;
4409           else if (valid1 == null_pointer_node)
4410             ret = valid0;
4411           /* Support narrowing pointer differences.  */
4412           else
4413             ret = narrowing_initializer_constant_valid_p (value, endtype,
4414                                                           ncache);
4415         }
4416       else
4417       /* Support narrowing pointer differences.  */
4418         ret = narrowing_initializer_constant_valid_p (value, endtype, NULL);
4419       if (cache)
4420         {
4421           cache[0] = value;
4422           cache[1] = ret;
4423         }
4424       return ret;
4425
4426     case MINUS_EXPR:
4427       if (TREE_CODE (endtype) == REAL_TYPE)
4428         return NULL_TREE;
4429       if (cache && cache[0] == value)
4430         return cache[1];
4431       if (! INTEGRAL_TYPE_P (endtype)
4432           || TYPE_PRECISION (endtype) >= TYPE_PRECISION (TREE_TYPE (value)))
4433         {
4434           tree ncache[4] = { NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE };
4435           tree valid0
4436             = initializer_constant_valid_p_1 (TREE_OPERAND (value, 0),
4437                                               endtype, ncache);
4438           tree valid1
4439             = initializer_constant_valid_p_1 (TREE_OPERAND (value, 1),
4440                                               endtype, ncache + 2);
4441           /* Win if second argument is absolute.  */
4442           if (valid1 == null_pointer_node)
4443             ret = valid0;
4444           /* Win if both arguments have the same relocation.
4445              Then the value is absolute.  */
4446           else if (valid0 == valid1 && valid0 != 0)
4447             ret = null_pointer_node;
4448           /* Since GCC guarantees that string constants are unique in the
4449              generated code, a subtraction between two copies of the same
4450              constant string is absolute.  */
4451           else if (valid0 && TREE_CODE (valid0) == STRING_CST
4452                    && valid1 && TREE_CODE (valid1) == STRING_CST
4453                    && operand_equal_p (valid0, valid1, 1))
4454             ret = null_pointer_node;
4455           /* Support narrowing differences.  */
4456           else
4457             ret = narrowing_initializer_constant_valid_p (value, endtype,
4458                                                           ncache);
4459         }
4460       else
4461         /* Support narrowing differences.  */
4462         ret = narrowing_initializer_constant_valid_p (value, endtype, NULL);
4463       if (cache)
4464         {
4465           cache[0] = value;
4466           cache[1] = ret;
4467         }
4468       return ret;
4469
4470     default:
4471       break;
4472     }
4473
4474   return NULL_TREE;
4475 }
4476
4477 /* Return nonzero if VALUE is a valid constant-valued expression
4478    for use in initializing a static variable; one that can be an
4479    element of a "constant" initializer.
4480
4481    Return null_pointer_node if the value is absolute;
4482    if it is relocatable, return the variable that determines the relocation.
4483    We assume that VALUE has been folded as much as possible;
4484    therefore, we do not need to check for such things as
4485    arithmetic-combinations of integers.  */
4486 tree
4487 initializer_constant_valid_p (tree value, tree endtype)
4488 {
4489   return initializer_constant_valid_p_1 (value, endtype, NULL);
4490 }
4491 \f
4492 /* Return true if VALUE is a valid constant-valued expression
4493    for use in initializing a static bit-field; one that can be
4494    an element of a "constant" initializer.  */
4495
4496 bool
4497 initializer_constant_valid_for_bitfield_p (tree value)
4498 {
4499   /* For bitfields we support integer constants or possibly nested aggregates
4500      of such.  */
4501   switch (TREE_CODE (value))
4502     {
4503     case CONSTRUCTOR:
4504       {
4505         unsigned HOST_WIDE_INT idx;
4506         tree elt;
4507
4508         FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value), idx, elt)
4509           if (!initializer_constant_valid_for_bitfield_p (elt))
4510             return false;
4511         return true;
4512       }
4513
4514     case INTEGER_CST:
4515       return true;
4516
4517     case VIEW_CONVERT_EXPR:
4518     case NON_LVALUE_EXPR:
4519       return
4520         initializer_constant_valid_for_bitfield_p (TREE_OPERAND (value, 0));
4521
4522     default:
4523       break;
4524     }
4525
4526   return false;
4527 }
4528
4529 /* output_constructor outer state of relevance in recursive calls, typically
4530    for nested aggregate bitfields.  */
4531
4532 typedef struct {
4533   unsigned int bit_offset;  /* current position in ...  */
4534   int byte;                 /* ... the outer byte buffer.  */
4535 } oc_outer_state;
4536
4537 static unsigned HOST_WIDE_INT
4538   output_constructor (tree, unsigned HOST_WIDE_INT, unsigned int,
4539                       oc_outer_state *);
4540
4541 /* Output assembler code for constant EXP to FILE, with no label.
4542    This includes the pseudo-op such as ".int" or ".byte", and a newline.
4543    Assumes output_addressed_constants has been done on EXP already.
4544
4545    Generate exactly SIZE bytes of assembler data, padding at the end
4546    with zeros if necessary.  SIZE must always be specified.
4547
4548    SIZE is important for structure constructors,
4549    since trailing members may have been omitted from the constructor.
4550    It is also important for initialization of arrays from string constants
4551    since the full length of the string constant might not be wanted.
4552    It is also needed for initialization of unions, where the initializer's
4553    type is just one member, and that may not be as long as the union.
4554
4555    There a case in which we would fail to output exactly SIZE bytes:
4556    for a structure constructor that wants to produce more than SIZE bytes.
4557    But such constructors will never be generated for any possible input.
4558
4559    ALIGN is the alignment of the data in bits.  */
4560
4561 void
4562 output_constant (tree exp, unsigned HOST_WIDE_INT size, unsigned int align)
4563 {
4564   enum tree_code code;
4565   unsigned HOST_WIDE_INT thissize;
4566
4567   if (size == 0 || flag_syntax_only)
4568     return;
4569
4570   /* See if we're trying to initialize a pointer in a non-default mode
4571      to the address of some declaration somewhere.  If the target says
4572      the mode is valid for pointers, assume the target has a way of
4573      resolving it.  */
4574   if (TREE_CODE (exp) == NOP_EXPR
4575       && POINTER_TYPE_P (TREE_TYPE (exp))
4576       && targetm.addr_space.valid_pointer_mode
4577            (TYPE_MODE (TREE_TYPE (exp)),
4578             TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp)))))
4579     {
4580       tree saved_type = TREE_TYPE (exp);
4581
4582       /* Peel off any intermediate conversions-to-pointer for valid
4583          pointer modes.  */
4584       while (TREE_CODE (exp) == NOP_EXPR
4585              && POINTER_TYPE_P (TREE_TYPE (exp))
4586              && targetm.addr_space.valid_pointer_mode
4587                   (TYPE_MODE (TREE_TYPE (exp)),
4588                    TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp)))))
4589         exp = TREE_OPERAND (exp, 0);
4590
4591       /* If what we're left with is the address of something, we can
4592          convert the address to the final type and output it that
4593          way.  */
4594       if (TREE_CODE (exp) == ADDR_EXPR)
4595         exp = build1 (ADDR_EXPR, saved_type, TREE_OPERAND (exp, 0));
4596       /* Likewise for constant ints.  */
4597       else if (TREE_CODE (exp) == INTEGER_CST)
4598         exp = build_int_cst_wide (saved_type, TREE_INT_CST_LOW (exp),
4599                                   TREE_INT_CST_HIGH (exp));
4600
4601     }
4602
4603   /* Eliminate any conversions since we'll be outputting the underlying
4604      constant.  */
4605   while (CONVERT_EXPR_P (exp)
4606          || TREE_CODE (exp) == NON_LVALUE_EXPR
4607          || TREE_CODE (exp) == VIEW_CONVERT_EXPR)
4608     {
4609       HOST_WIDE_INT type_size = int_size_in_bytes (TREE_TYPE (exp));
4610       HOST_WIDE_INT op_size = int_size_in_bytes (TREE_TYPE (TREE_OPERAND (exp, 0)));
4611
4612       /* Make sure eliminating the conversion is really a no-op, except with
4613          VIEW_CONVERT_EXPRs to allow for wild Ada unchecked conversions and
4614          union types to allow for Ada unchecked unions.  */
4615       if (type_size > op_size
4616           && TREE_CODE (exp) != VIEW_CONVERT_EXPR
4617           && TREE_CODE (TREE_TYPE (exp)) != UNION_TYPE)
4618         /* Keep the conversion. */
4619         break;
4620       else
4621         exp = TREE_OPERAND (exp, 0);
4622     }
4623
4624   code = TREE_CODE (TREE_TYPE (exp));
4625   thissize = int_size_in_bytes (TREE_TYPE (exp));
4626
4627   /* Allow a constructor with no elements for any data type.
4628      This means to fill the space with zeros.  */
4629   if (TREE_CODE (exp) == CONSTRUCTOR
4630       && VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (exp)))
4631     {
4632       assemble_zeros (size);
4633       return;
4634     }
4635
4636   if (TREE_CODE (exp) == FDESC_EXPR)
4637     {
4638 #ifdef ASM_OUTPUT_FDESC
4639       HOST_WIDE_INT part = tree_low_cst (TREE_OPERAND (exp, 1), 0);
4640       tree decl = TREE_OPERAND (exp, 0);
4641       ASM_OUTPUT_FDESC (asm_out_file, decl, part);
4642 #else
4643       gcc_unreachable ();
4644 #endif
4645       return;
4646     }
4647
4648   /* Now output the underlying data.  If we've handling the padding, return.
4649      Otherwise, break and ensure SIZE is the size written.  */
4650   switch (code)
4651     {
4652     case BOOLEAN_TYPE:
4653     case INTEGER_TYPE:
4654     case ENUMERAL_TYPE:
4655     case POINTER_TYPE:
4656     case REFERENCE_TYPE:
4657     case OFFSET_TYPE:
4658     case FIXED_POINT_TYPE:
4659       if (! assemble_integer (expand_expr (exp, NULL_RTX, VOIDmode,
4660                                            EXPAND_INITIALIZER),
4661                               MIN (size, thissize), align, 0))
4662         error ("initializer for integer/fixed-point value is too complicated");
4663       break;
4664
4665     case REAL_TYPE:
4666       if (TREE_CODE (exp) != REAL_CST)
4667         error ("initializer for floating value is not a floating constant");
4668       else
4669         assemble_real (TREE_REAL_CST (exp), TYPE_MODE (TREE_TYPE (exp)), align);
4670       break;
4671
4672     case COMPLEX_TYPE:
4673       output_constant (TREE_REALPART (exp), thissize / 2, align);
4674       output_constant (TREE_IMAGPART (exp), thissize / 2,
4675                        min_align (align, BITS_PER_UNIT * (thissize / 2)));
4676       break;
4677
4678     case ARRAY_TYPE:
4679     case VECTOR_TYPE:
4680       switch (TREE_CODE (exp))
4681         {
4682         case CONSTRUCTOR:
4683             output_constructor (exp, size, align, NULL);
4684           return;
4685         case STRING_CST:
4686           thissize = MIN ((unsigned HOST_WIDE_INT)TREE_STRING_LENGTH (exp),
4687                           size);
4688           assemble_string (TREE_STRING_POINTER (exp), thissize);
4689           break;
4690
4691         case VECTOR_CST:
4692           {
4693             int elt_size;
4694             tree link;
4695             unsigned int nalign;
4696             enum machine_mode inner;
4697
4698             inner = TYPE_MODE (TREE_TYPE (TREE_TYPE (exp)));
4699             nalign = MIN (align, GET_MODE_ALIGNMENT (inner));
4700
4701             elt_size = GET_MODE_SIZE (inner);
4702
4703             link = TREE_VECTOR_CST_ELTS (exp);
4704             output_constant (TREE_VALUE (link), elt_size, align);
4705             thissize = elt_size;
4706             while ((link = TREE_CHAIN (link)) != NULL)
4707               {
4708                 output_constant (TREE_VALUE (link), elt_size, nalign);
4709                 thissize += elt_size;
4710               }
4711             break;
4712           }
4713         default:
4714           gcc_unreachable ();
4715         }
4716       break;
4717
4718     case RECORD_TYPE:
4719     case UNION_TYPE:
4720       gcc_assert (TREE_CODE (exp) == CONSTRUCTOR);
4721       output_constructor (exp, size, align, NULL);
4722       return;
4723
4724     case ERROR_MARK:
4725       return;
4726
4727     default:
4728       gcc_unreachable ();
4729     }
4730
4731   if (size > thissize)
4732     assemble_zeros (size - thissize);
4733 }
4734
4735 \f
4736 /* Subroutine of output_constructor, used for computing the size of
4737    arrays of unspecified length.  VAL must be a CONSTRUCTOR of an array
4738    type with an unspecified upper bound.  */
4739
4740 static unsigned HOST_WIDE_INT
4741 array_size_for_constructor (tree val)
4742 {
4743   tree max_index, i;
4744   unsigned HOST_WIDE_INT cnt;
4745   tree index, value, tmp;
4746
4747   /* This code used to attempt to handle string constants that are not
4748      arrays of single-bytes, but nothing else does, so there's no point in
4749      doing it here.  */
4750   if (TREE_CODE (val) == STRING_CST)
4751     return TREE_STRING_LENGTH (val);
4752
4753   max_index = NULL_TREE;
4754   FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (val), cnt, index, value)
4755     {
4756       if (TREE_CODE (index) == RANGE_EXPR)
4757         index = TREE_OPERAND (index, 1);
4758       if (max_index == NULL_TREE || tree_int_cst_lt (max_index, index))
4759         max_index = index;
4760     }
4761
4762   if (max_index == NULL_TREE)
4763     return 0;
4764
4765   /* Compute the total number of array elements.  */
4766   tmp = TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val)));
4767   i = size_binop (MINUS_EXPR, fold_convert (sizetype, max_index),
4768                   fold_convert (sizetype, tmp));
4769   i = size_binop (PLUS_EXPR, i, build_int_cst (sizetype, 1));
4770
4771   /* Multiply by the array element unit size to find number of bytes.  */
4772   i = size_binop (MULT_EXPR, i, TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val))));
4773
4774   return tree_low_cst (i, 1);
4775 }
4776
4777 /* Other datastructures + helpers for output_constructor.  */
4778
4779 /* output_constructor local state to support interaction with helpers.  */
4780
4781 typedef struct {
4782
4783   /* Received arguments.  */
4784   tree exp;                     /* Constructor expression.  */
4785   unsigned HOST_WIDE_INT size;  /* # bytes to output - pad if necessary.  */
4786   unsigned int align;           /* Known initial alignment.  */
4787
4788   /* Constructor expression data.  */
4789   tree type;       /* Expression type.  */
4790   tree field;      /* Current field decl in a record.  */
4791   tree min_index;  /* Lower bound if specified for an array.  */
4792
4793   /* Output processing state.  */
4794   HOST_WIDE_INT total_bytes;  /* # bytes output so far / current position.  */
4795   bool byte_buffer_in_use;    /* Whether byte ...  */
4796   int byte;                   /* ... contains part of a bitfield byte yet to
4797                                  be output.  */
4798
4799   int last_relative_index;    /* Implicit or explicit index of the last
4800                                  array element output within a bitfield.  */
4801   /* Current element.  */
4802   tree val;    /* Current element value.  */
4803   tree index;  /* Current element index.  */
4804
4805 } oc_local_state;
4806
4807 /* Helper for output_constructor.  From the current LOCAL state, output a
4808    RANGE_EXPR element.  */
4809
4810 static void
4811 output_constructor_array_range (oc_local_state *local)
4812 {
4813   unsigned HOST_WIDE_INT fieldsize
4814     = int_size_in_bytes (TREE_TYPE (local->type));
4815
4816   HOST_WIDE_INT lo_index
4817     = tree_low_cst (TREE_OPERAND (local->index, 0), 0);
4818   HOST_WIDE_INT hi_index
4819     = tree_low_cst (TREE_OPERAND (local->index, 1), 0);
4820   HOST_WIDE_INT index;
4821
4822   unsigned int align2
4823     = min_align (local->align, fieldsize * BITS_PER_UNIT);
4824
4825   for (index = lo_index; index <= hi_index; index++)
4826     {
4827       /* Output the element's initial value.  */
4828       if (local->val == NULL_TREE)
4829         assemble_zeros (fieldsize);
4830       else
4831         output_constant (local->val, fieldsize, align2);
4832
4833       /* Count its size.  */
4834       local->total_bytes += fieldsize;
4835     }
4836 }
4837
4838 /* Helper for output_constructor.  From the current LOCAL state, output a
4839    field element that is not true bitfield or part of an outer one.  */
4840
4841 static void
4842 output_constructor_regular_field (oc_local_state *local)
4843 {
4844   /* Field size and position.  Since this structure is static, we know the
4845      positions are constant.  */
4846   unsigned HOST_WIDE_INT fieldsize;
4847   HOST_WIDE_INT fieldpos;
4848
4849   unsigned int align2;
4850
4851   if (local->index != NULL_TREE)
4852     fieldpos = (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (local->val)), 1)
4853                 * ((tree_low_cst (local->index, 0)
4854                     - tree_low_cst (local->min_index, 0))));
4855   else if (local->field != NULL_TREE)
4856     fieldpos = int_byte_position (local->field);
4857   else
4858     fieldpos = 0;
4859
4860   /* Output any buffered-up bit-fields preceding this element.  */
4861   if (local->byte_buffer_in_use)
4862     {
4863       assemble_integer (GEN_INT (local->byte), 1, BITS_PER_UNIT, 1);
4864       local->total_bytes++;
4865       local->byte_buffer_in_use = false;
4866     }
4867
4868   /* Advance to offset of this element.
4869      Note no alignment needed in an array, since that is guaranteed
4870      if each element has the proper size.  */
4871   if ((local->field != NULL_TREE || local->index != NULL_TREE)
4872       && fieldpos != local->total_bytes)
4873     {
4874       gcc_assert (fieldpos >= local->total_bytes);
4875       assemble_zeros (fieldpos - local->total_bytes);
4876       local->total_bytes = fieldpos;
4877     }
4878
4879   /* Find the alignment of this element.  */
4880   align2 = min_align (local->align, BITS_PER_UNIT * fieldpos);
4881
4882   /* Determine size this element should occupy.  */
4883   if (local->field)
4884     {
4885       fieldsize = 0;
4886
4887       /* If this is an array with an unspecified upper bound,
4888          the initializer determines the size.  */
4889       /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4890          but we cannot do this until the deprecated support for
4891          initializing zero-length array members is removed.  */
4892       if (TREE_CODE (TREE_TYPE (local->field)) == ARRAY_TYPE
4893           && TYPE_DOMAIN (TREE_TYPE (local->field))
4894           && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (local->field))))
4895         {
4896           fieldsize = array_size_for_constructor (local->val);
4897           /* Given a non-empty initialization, this field had
4898              better be last.  */
4899           gcc_assert (!fieldsize || !TREE_CHAIN (local->field));
4900         }
4901       else if (DECL_SIZE_UNIT (local->field))
4902         {
4903           /* ??? This can't be right.  If the decl size overflows
4904              a host integer we will silently emit no data.  */
4905           if (host_integerp (DECL_SIZE_UNIT (local->field), 1))
4906             fieldsize = tree_low_cst (DECL_SIZE_UNIT (local->field), 1);
4907         }
4908     }
4909   else
4910     fieldsize = int_size_in_bytes (TREE_TYPE (local->type));
4911
4912   /* Output the element's initial value.  */
4913   if (local->val == NULL_TREE)
4914     assemble_zeros (fieldsize);
4915   else
4916     output_constant (local->val, fieldsize, align2);
4917
4918   /* Count its size.  */
4919   local->total_bytes += fieldsize;
4920 }
4921
4922 /* Helper for output_constructor.  From the current LOCAL and OUTER states,
4923    output an element that is a true bitfield or part of an outer one.  */
4924
4925 static void
4926 output_constructor_bitfield (oc_local_state *local, oc_outer_state *outer)
4927 {
4928   /* Bit size of this element.  */
4929   HOST_WIDE_INT ebitsize
4930     = (local->field
4931        ? tree_low_cst (DECL_SIZE (local->field), 1)
4932        : tree_low_cst (TYPE_SIZE (TREE_TYPE (local->type)), 1));
4933
4934   /* Relative index of this element if this is an array component.  */
4935   HOST_WIDE_INT relative_index
4936     = (!local->field
4937        ? (local->index
4938           ? (tree_low_cst (local->index, 0)
4939              - tree_low_cst (local->min_index, 0))
4940           : local->last_relative_index + 1)
4941        : 0);
4942
4943   /* Bit position of this element from the start of the containing
4944      constructor.  */
4945   HOST_WIDE_INT constructor_relative_ebitpos
4946       = (local->field
4947          ? int_bit_position (local->field)
4948          : ebitsize * relative_index);
4949
4950   /* Bit position of this element from the start of a possibly ongoing
4951      outer byte buffer.  */
4952   HOST_WIDE_INT byte_relative_ebitpos
4953       = ((outer ? outer->bit_offset : 0) + constructor_relative_ebitpos);
4954
4955   /* From the start of a possibly ongoing outer byte buffer, offsets to
4956      the first bit of this element and to the first bit past the end of
4957      this element.  */
4958   HOST_WIDE_INT next_offset = byte_relative_ebitpos;
4959   HOST_WIDE_INT end_offset = byte_relative_ebitpos + ebitsize;
4960
4961   local->last_relative_index = relative_index;
4962
4963   if (local->val == NULL_TREE)
4964     local->val = integer_zero_node;
4965
4966   while (TREE_CODE (local->val) == VIEW_CONVERT_EXPR
4967          || TREE_CODE (local->val) == NON_LVALUE_EXPR)
4968     local->val = TREE_OPERAND (local->val, 0);
4969
4970   if (TREE_CODE (local->val) != INTEGER_CST
4971       && TREE_CODE (local->val) != CONSTRUCTOR)
4972     {
4973       error ("invalid initial value for member %qE", DECL_NAME (local->field));
4974       return;
4975     }
4976
4977   /* If this field does not start in this (or, next) byte,
4978      skip some bytes.  */
4979   if (next_offset / BITS_PER_UNIT != local->total_bytes)
4980     {
4981       /* Output remnant of any bit field in previous bytes.  */
4982       if (local->byte_buffer_in_use)
4983         {
4984           assemble_integer (GEN_INT (local->byte), 1, BITS_PER_UNIT, 1);
4985           local->total_bytes++;
4986           local->byte_buffer_in_use = false;
4987         }
4988
4989       /* If still not at proper byte, advance to there.  */
4990       if (next_offset / BITS_PER_UNIT != local->total_bytes)
4991         {
4992           gcc_assert (next_offset / BITS_PER_UNIT >= local->total_bytes);
4993           assemble_zeros (next_offset / BITS_PER_UNIT - local->total_bytes);
4994           local->total_bytes = next_offset / BITS_PER_UNIT;
4995         }
4996     }
4997
4998   /* Set up the buffer if necessary.  */
4999   if (!local->byte_buffer_in_use)
5000     {
5001       local->byte = 0;
5002       if (ebitsize > 0)
5003         local->byte_buffer_in_use = true;
5004     }
5005
5006   /* If this is nested constructor, recurse passing the bit offset and the
5007      pending data, then retrieve the new pending data afterwards.  */
5008   if (TREE_CODE (local->val) == CONSTRUCTOR)
5009     {
5010       oc_outer_state output_state;
5011
5012       output_state.bit_offset = next_offset % BITS_PER_UNIT;
5013       output_state.byte = local->byte;
5014       local->total_bytes
5015           += output_constructor (local->val, 0, 0, &output_state);
5016       local->byte = output_state.byte;
5017       return;
5018     }
5019
5020   /* Otherwise, we must split the element into pieces that fall within
5021      separate bytes, and combine each byte with previous or following
5022      bit-fields.  */
5023   while (next_offset < end_offset)
5024     {
5025       int this_time;
5026       int shift;
5027       HOST_WIDE_INT value;
5028       HOST_WIDE_INT next_byte = next_offset / BITS_PER_UNIT;
5029       HOST_WIDE_INT next_bit = next_offset % BITS_PER_UNIT;
5030
5031       /* Advance from byte to byte
5032          within this element when necessary.  */
5033       while (next_byte != local->total_bytes)
5034         {
5035           assemble_integer (GEN_INT (local->byte), 1, BITS_PER_UNIT, 1);
5036           local->total_bytes++;
5037           local->byte = 0;
5038         }
5039
5040       /* Number of bits we can process at once
5041          (all part of the same byte).  */
5042       this_time = MIN (end_offset - next_offset,
5043                        BITS_PER_UNIT - next_bit);
5044       if (BYTES_BIG_ENDIAN)
5045         {
5046           /* On big-endian machine, take the most significant bits
5047              first (of the bits that are significant)
5048              and put them into bytes from the most significant end.  */
5049           shift = end_offset - next_offset - this_time;
5050
5051           /* Don't try to take a bunch of bits that cross
5052              the word boundary in the INTEGER_CST. We can
5053              only select bits from the LOW or HIGH part
5054              not from both.  */
5055           if (shift < HOST_BITS_PER_WIDE_INT
5056               && shift + this_time > HOST_BITS_PER_WIDE_INT)
5057             {
5058               this_time = shift + this_time - HOST_BITS_PER_WIDE_INT;
5059               shift = HOST_BITS_PER_WIDE_INT;
5060             }
5061
5062           /* Now get the bits from the appropriate constant word.  */
5063           if (shift < HOST_BITS_PER_WIDE_INT)
5064             value = TREE_INT_CST_LOW (local->val);
5065           else
5066             {
5067               gcc_assert (shift < 2 * HOST_BITS_PER_WIDE_INT);
5068               value = TREE_INT_CST_HIGH (local->val);
5069               shift -= HOST_BITS_PER_WIDE_INT;
5070             }
5071
5072           /* Get the result. This works only when:
5073              1 <= this_time <= HOST_BITS_PER_WIDE_INT.  */
5074           local->byte |= (((value >> shift)
5075                            & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
5076                           << (BITS_PER_UNIT - this_time - next_bit));
5077         }
5078       else
5079         {
5080           /* On little-endian machines,
5081              take first the least significant bits of the value
5082              and pack them starting at the least significant
5083              bits of the bytes.  */
5084           shift = next_offset - byte_relative_ebitpos;
5085
5086           /* Don't try to take a bunch of bits that cross
5087              the word boundary in the INTEGER_CST. We can
5088              only select bits from the LOW or HIGH part
5089              not from both.  */
5090           if (shift < HOST_BITS_PER_WIDE_INT
5091               && shift + this_time > HOST_BITS_PER_WIDE_INT)
5092             this_time = (HOST_BITS_PER_WIDE_INT - shift);
5093
5094           /* Now get the bits from the appropriate constant word.  */
5095           if (shift < HOST_BITS_PER_WIDE_INT)
5096             value = TREE_INT_CST_LOW (local->val);
5097           else
5098             {
5099               gcc_assert (shift < 2 * HOST_BITS_PER_WIDE_INT);
5100               value = TREE_INT_CST_HIGH (local->val);
5101               shift -= HOST_BITS_PER_WIDE_INT;
5102             }
5103
5104           /* Get the result. This works only when:
5105              1 <= this_time <= HOST_BITS_PER_WIDE_INT.  */
5106           local->byte |= (((value >> shift)
5107                            & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
5108                           << next_bit);
5109         }
5110
5111       next_offset += this_time;
5112       local->byte_buffer_in_use = true;
5113     }
5114 }
5115
5116 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
5117    Generate at least SIZE bytes, padding if necessary.  OUTER designates the
5118    caller output state of relevance in recursive invocations.  */
5119
5120 static unsigned HOST_WIDE_INT
5121 output_constructor (tree exp, unsigned HOST_WIDE_INT size,
5122                     unsigned int align, oc_outer_state * outer)
5123 {
5124   unsigned HOST_WIDE_INT cnt;
5125   constructor_elt *ce;
5126
5127   oc_local_state local;
5128
5129   /* Setup our local state to communicate with helpers.  */
5130   local.exp = exp;
5131   local.size = size;
5132   local.align = align;
5133
5134   local.total_bytes = 0;
5135   local.byte_buffer_in_use = outer != NULL;
5136   local.byte = outer ? outer->byte : 0;
5137
5138   local.type = TREE_TYPE (exp);
5139
5140   local.last_relative_index = -1;
5141
5142   local.min_index = NULL_TREE;
5143   if (TREE_CODE (local.type) == ARRAY_TYPE
5144       && TYPE_DOMAIN (local.type) != NULL_TREE)
5145     local.min_index = TYPE_MIN_VALUE (TYPE_DOMAIN (local.type));
5146
5147   gcc_assert (HOST_BITS_PER_WIDE_INT >= BITS_PER_UNIT);
5148
5149   /* As CE goes through the elements of the constant, FIELD goes through the
5150      structure fields if the constant is a structure.  If the constant is a
5151      union, we override this by getting the field from the TREE_LIST element.
5152      But the constant could also be an array.  Then FIELD is zero.
5153
5154      There is always a maximum of one element in the chain LINK for unions
5155      (even if the initializer in a source program incorrectly contains
5156      more one).  */
5157
5158   local.field = NULL_TREE;
5159   if (TREE_CODE (local.type) == RECORD_TYPE)
5160     local.field = TYPE_FIELDS (local.type);
5161
5162   for (cnt = 0;
5163        VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (exp), cnt, ce);
5164        cnt++, local.field = local.field ? TREE_CHAIN (local.field) : 0)
5165     {
5166       local.val = ce->value;
5167       local.index = NULL_TREE;
5168
5169       /* The element in a union constructor specifies the proper field
5170          or index.  */
5171       if ((TREE_CODE (local.type) == RECORD_TYPE
5172            || TREE_CODE (local.type) == UNION_TYPE
5173            || TREE_CODE (local.type) == QUAL_UNION_TYPE)
5174           && ce->index != NULL_TREE)
5175         local.field = ce->index;
5176
5177       else if (TREE_CODE (local.type) == ARRAY_TYPE)
5178         local.index = ce->index;
5179
5180 #ifdef ASM_COMMENT_START
5181       if (local.field && flag_verbose_asm)
5182         fprintf (asm_out_file, "%s %s:\n",
5183                  ASM_COMMENT_START,
5184                  DECL_NAME (local.field)
5185                  ? IDENTIFIER_POINTER (DECL_NAME (local.field))
5186                  : "<anonymous>");
5187 #endif
5188
5189       /* Eliminate the marker that makes a cast not be an lvalue.  */
5190       if (local.val != NULL_TREE)
5191         STRIP_NOPS (local.val);
5192
5193       /* Output the current element, using the appropriate helper ...  */
5194
5195       /* For an array slice not part of an outer bitfield.  */
5196       if (!outer
5197           && local.index != NULL_TREE
5198           && TREE_CODE (local.index) == RANGE_EXPR)
5199         output_constructor_array_range (&local);
5200
5201       /* For a field that is neither a true bitfield nor part of an outer one,
5202          known to be at least byte aligned and multiple-of-bytes long.  */
5203       else if (!outer
5204                && (local.field == NULL_TREE
5205                    || !CONSTRUCTOR_BITFIELD_P (local.field)))
5206         output_constructor_regular_field (&local);
5207
5208       /* For a true bitfield or part of an outer one.  */
5209       else
5210         output_constructor_bitfield (&local, outer);
5211     }
5212
5213   /* If we are not at toplevel, save the pending data for our caller.
5214      Otherwise output the pending data and padding zeros as needed. */
5215   if (outer)
5216     outer->byte = local.byte;
5217   else
5218     {
5219       if (local.byte_buffer_in_use)
5220         {
5221           assemble_integer (GEN_INT (local.byte), 1, BITS_PER_UNIT, 1);
5222           local.total_bytes++;
5223         }
5224
5225       if ((unsigned HOST_WIDE_INT)local.total_bytes < local.size)
5226         {
5227           assemble_zeros (local.size - local.total_bytes);
5228           local.total_bytes = local.size;
5229         }
5230     }
5231
5232   return local.total_bytes;
5233 }
5234
5235 /* Mark DECL as weak.  */
5236
5237 static void
5238 mark_weak (tree decl)
5239 {
5240   DECL_WEAK (decl) = 1;
5241
5242   if (DECL_RTL_SET_P (decl)
5243       && MEM_P (DECL_RTL (decl))
5244       && XEXP (DECL_RTL (decl), 0)
5245       && GET_CODE (XEXP (DECL_RTL (decl), 0)) == SYMBOL_REF)
5246     SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl), 0)) = 1;
5247 }
5248
5249 /* Merge weak status between NEWDECL and OLDDECL.  */
5250
5251 void
5252 merge_weak (tree newdecl, tree olddecl)
5253 {
5254   if (DECL_WEAK (newdecl) == DECL_WEAK (olddecl))
5255     {
5256       if (DECL_WEAK (newdecl) && SUPPORTS_WEAK)
5257         {
5258           tree *pwd;
5259           /* We put the NEWDECL on the weak_decls list at some point
5260              and OLDDECL as well.  Keep just OLDDECL on the list.  */
5261           for (pwd = &weak_decls; *pwd; pwd = &TREE_CHAIN (*pwd))
5262             if (TREE_VALUE (*pwd) == newdecl)
5263               {
5264                 *pwd = TREE_CHAIN (*pwd);
5265                 break;
5266               }
5267         }
5268       return;
5269     }
5270
5271   if (DECL_WEAK (newdecl))
5272     {
5273       tree wd;
5274
5275       /* NEWDECL is weak, but OLDDECL is not.  */
5276
5277       /* If we already output the OLDDECL, we're in trouble; we can't
5278          go back and make it weak.  This error cannot be caught in
5279          declare_weak because the NEWDECL and OLDDECL was not yet
5280          been merged; therefore, TREE_ASM_WRITTEN was not set.  */
5281       if (TREE_ASM_WRITTEN (olddecl))
5282         error ("weak declaration of %q+D must precede definition",
5283                newdecl);
5284
5285       /* If we've already generated rtl referencing OLDDECL, we may
5286          have done so in a way that will not function properly with
5287          a weak symbol.  */
5288       else if (TREE_USED (olddecl)
5289                && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl)))
5290         warning (0, "weak declaration of %q+D after first use results "
5291                  "in unspecified behavior", newdecl);
5292
5293       if (SUPPORTS_WEAK)
5294         {
5295           /* We put the NEWDECL on the weak_decls list at some point.
5296              Replace it with the OLDDECL.  */
5297           for (wd = weak_decls; wd; wd = TREE_CHAIN (wd))
5298             if (TREE_VALUE (wd) == newdecl)
5299               {
5300                 TREE_VALUE (wd) = olddecl;
5301                 break;
5302               }
5303           /* We may not find the entry on the list.  If NEWDECL is a
5304              weak alias, then we will have already called
5305              globalize_decl to remove the entry; in that case, we do
5306              not need to do anything.  */
5307         }
5308
5309       /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping.  */
5310       mark_weak (olddecl);
5311     }
5312   else
5313     /* OLDDECL was weak, but NEWDECL was not explicitly marked as
5314        weak.  Just update NEWDECL to indicate that it's weak too.  */
5315     mark_weak (newdecl);
5316 }
5317
5318 /* Declare DECL to be a weak symbol.  */
5319
5320 void
5321 declare_weak (tree decl)
5322 {
5323   if (! TREE_PUBLIC (decl))
5324     error ("weak declaration of %q+D must be public", decl);
5325   else if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
5326     error ("weak declaration of %q+D must precede definition", decl);
5327   else if (!SUPPORTS_WEAK)
5328     warning (0, "weak declaration of %q+D not supported", decl);
5329
5330   mark_weak (decl);
5331   if (!lookup_attribute ("weak", DECL_ATTRIBUTES (decl)))
5332     DECL_ATTRIBUTES (decl)
5333       = tree_cons (get_identifier ("weak"), NULL, DECL_ATTRIBUTES (decl));
5334 }
5335
5336 static void
5337 weak_finish_1 (tree decl)
5338 {
5339 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
5340   const char *const name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5341 #endif
5342
5343   if (! TREE_USED (decl))
5344     return;
5345
5346 #ifdef ASM_WEAKEN_DECL
5347   ASM_WEAKEN_DECL (asm_out_file, decl, name, NULL);
5348 #else
5349 #ifdef ASM_WEAKEN_LABEL
5350   ASM_WEAKEN_LABEL (asm_out_file, name);
5351 #else
5352 #ifdef ASM_OUTPUT_WEAK_ALIAS
5353   {
5354     static bool warn_once = 0;
5355     if (! warn_once)
5356       {
5357         warning (0, "only weak aliases are supported in this configuration");
5358         warn_once = 1;
5359       }
5360     return;
5361   }
5362 #endif
5363 #endif
5364 #endif
5365 }
5366
5367 /* This TREE_LIST contains weakref targets.  */
5368
5369 static GTY(()) tree weakref_targets;
5370
5371 /* Forward declaration.  */
5372 static tree find_decl_and_mark_needed (tree decl, tree target);
5373
5374 /* Emit any pending weak declarations.  */
5375
5376 void
5377 weak_finish (void)
5378 {
5379   tree t;
5380
5381   for (t = weakref_targets; t; t = TREE_CHAIN (t))
5382     {
5383       tree alias_decl = TREE_PURPOSE (t);
5384       tree target = ultimate_transparent_alias_target (&TREE_VALUE (t));
5385
5386       if (! TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (alias_decl)))
5387         /* Remove alias_decl from the weak list, but leave entries for
5388            the target alone.  */
5389         target = NULL_TREE;
5390 #ifndef ASM_OUTPUT_WEAKREF
5391       else if (! TREE_SYMBOL_REFERENCED (target))
5392         {
5393           /* Use ASM_WEAKEN_LABEL only if ASM_WEAKEN_DECL is not
5394              defined, otherwise we and weak_finish_1 would use
5395              different macros.  */
5396 # if defined ASM_WEAKEN_LABEL && ! defined ASM_WEAKEN_DECL
5397           ASM_WEAKEN_LABEL (asm_out_file, IDENTIFIER_POINTER (target));
5398 # else
5399           tree decl = find_decl_and_mark_needed (alias_decl, target);
5400
5401           if (! decl)
5402             {
5403               decl = build_decl (DECL_SOURCE_LOCATION (alias_decl),
5404                                  TREE_CODE (alias_decl), target,
5405                                  TREE_TYPE (alias_decl));
5406
5407               DECL_EXTERNAL (decl) = 1;
5408               TREE_PUBLIC (decl) = 1;
5409               DECL_ARTIFICIAL (decl) = 1;
5410               TREE_NOTHROW (decl) = TREE_NOTHROW (alias_decl);
5411               TREE_USED (decl) = 1;
5412             }
5413
5414           weak_finish_1 (decl);
5415 # endif
5416         }
5417 #endif
5418
5419       {
5420         tree *p;
5421         tree t2;
5422
5423         /* Remove the alias and the target from the pending weak list
5424            so that we do not emit any .weak directives for the former,
5425            nor multiple .weak directives for the latter.  */
5426         for (p = &weak_decls; (t2 = *p) ; )
5427           {
5428             if (TREE_VALUE (t2) == alias_decl
5429                 || target == DECL_ASSEMBLER_NAME (TREE_VALUE (t2)))
5430               *p = TREE_CHAIN (t2);
5431             else
5432               p = &TREE_CHAIN (t2);
5433           }
5434
5435         /* Remove other weakrefs to the same target, to speed things up.  */
5436         for (p = &TREE_CHAIN (t); (t2 = *p) ; )
5437           {
5438             if (target == ultimate_transparent_alias_target (&TREE_VALUE (t2)))
5439               *p = TREE_CHAIN (t2);
5440             else
5441               p = &TREE_CHAIN (t2);
5442           }
5443       }
5444     }
5445
5446   for (t = weak_decls; t; t = TREE_CHAIN (t))
5447     {
5448       tree decl = TREE_VALUE (t);
5449
5450       weak_finish_1 (decl);
5451     }
5452 }
5453
5454 /* Emit the assembly bits to indicate that DECL is globally visible.  */
5455
5456 static void
5457 globalize_decl (tree decl)
5458 {
5459
5460 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
5461   if (DECL_WEAK (decl))
5462     {
5463       const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
5464       tree *p, t;
5465
5466 #ifdef ASM_WEAKEN_DECL
5467       ASM_WEAKEN_DECL (asm_out_file, decl, name, 0);
5468 #else
5469       ASM_WEAKEN_LABEL (asm_out_file, name);
5470 #endif
5471
5472       /* Remove this function from the pending weak list so that
5473          we do not emit multiple .weak directives for it.  */
5474       for (p = &weak_decls; (t = *p) ; )
5475         {
5476           if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
5477             *p = TREE_CHAIN (t);
5478           else
5479             p = &TREE_CHAIN (t);
5480         }
5481
5482       /* Remove weakrefs to the same target from the pending weakref
5483          list, for the same reason.  */
5484       for (p = &weakref_targets; (t = *p) ; )
5485         {
5486           if (DECL_ASSEMBLER_NAME (decl)
5487               == ultimate_transparent_alias_target (&TREE_VALUE (t)))
5488             *p = TREE_CHAIN (t);
5489           else
5490             p = &TREE_CHAIN (t);
5491         }
5492
5493       return;
5494     }
5495 #endif
5496
5497   targetm.asm_out.globalize_decl_name (asm_out_file, decl);
5498 }
5499
5500 VEC(alias_pair,gc) *alias_pairs;
5501
5502 /* Given an assembly name, find the decl it is associated with.  At the
5503    same time, mark it needed for cgraph.  */
5504
5505 static tree
5506 find_decl_and_mark_needed (tree decl, tree target)
5507 {
5508   struct cgraph_node *fnode = NULL;
5509   struct varpool_node *vnode = NULL;
5510
5511   if (TREE_CODE (decl) == FUNCTION_DECL)
5512     {
5513       fnode = cgraph_node_for_asm (target);
5514       if (fnode == NULL)
5515         vnode = varpool_node_for_asm (target);
5516     }
5517   else
5518     {
5519       vnode = varpool_node_for_asm (target);
5520       if (vnode == NULL)
5521         fnode = cgraph_node_for_asm (target);
5522     }
5523
5524   if (fnode)
5525     {
5526       cgraph_mark_needed_node (fnode);
5527       return fnode->decl;
5528     }
5529   else if (vnode)
5530     {
5531       varpool_mark_needed_node (vnode);
5532       return vnode->decl;
5533     }
5534   else
5535     return NULL_TREE;
5536 }
5537
5538 /* Output the assembler code for a define (equate) using ASM_OUTPUT_DEF
5539    or ASM_OUTPUT_DEF_FROM_DECLS.  The function defines the symbol whose
5540    tree node is DECL to have the value of the tree node TARGET.  */
5541
5542 static void
5543 do_assemble_alias (tree decl, tree target)
5544 {
5545   if (TREE_ASM_WRITTEN (decl))
5546     return;
5547
5548   /* We must force creation of DECL_RTL for debug info generation, even though
5549      we don't use it here.  */
5550   make_decl_rtl (decl);
5551
5552   TREE_ASM_WRITTEN (decl) = 1;
5553   TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl)) = 1;
5554
5555   if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl)))
5556     {
5557       ultimate_transparent_alias_target (&target);
5558
5559       if (!targetm.have_tls
5560           && TREE_CODE (decl) == VAR_DECL
5561           && DECL_THREAD_LOCAL_P (decl))
5562         {
5563           decl = emutls_decl (decl);
5564           target = get_emutls_object_name (target);
5565         }
5566
5567       if (!TREE_SYMBOL_REFERENCED (target))
5568         weakref_targets = tree_cons (decl, target, weakref_targets);
5569
5570 #ifdef ASM_OUTPUT_WEAKREF
5571       ASM_OUTPUT_WEAKREF (asm_out_file, decl,
5572                           IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)),
5573                           IDENTIFIER_POINTER (target));
5574 #else
5575       if (!SUPPORTS_WEAK)
5576         {
5577           error_at (DECL_SOURCE_LOCATION (decl),
5578                     "weakref is not supported in this configuration");
5579           return;
5580         }
5581 #endif
5582       return;
5583     }
5584
5585   if (!targetm.have_tls
5586       && TREE_CODE (decl) == VAR_DECL
5587       && DECL_THREAD_LOCAL_P (decl))
5588     {
5589       decl = emutls_decl (decl);
5590       target = get_emutls_object_name (target);
5591     }
5592
5593 #ifdef ASM_OUTPUT_DEF
5594   /* Make name accessible from other files, if appropriate.  */
5595
5596   if (TREE_PUBLIC (decl))
5597     {
5598       globalize_decl (decl);
5599       maybe_assemble_visibility (decl);
5600     }
5601
5602 # ifdef ASM_OUTPUT_DEF_FROM_DECLS
5603   ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file, decl, target);
5604 # else
5605   ASM_OUTPUT_DEF (asm_out_file,
5606                   IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)),
5607                   IDENTIFIER_POINTER (target));
5608 # endif
5609 #elif defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
5610   {
5611     const char *name;
5612     tree *p, t;
5613
5614     name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5615 # ifdef ASM_WEAKEN_DECL
5616     ASM_WEAKEN_DECL (asm_out_file, decl, name, IDENTIFIER_POINTER (target));
5617 # else
5618     ASM_OUTPUT_WEAK_ALIAS (asm_out_file, name, IDENTIFIER_POINTER (target));
5619 # endif
5620     /* Remove this function from the pending weak list so that
5621        we do not emit multiple .weak directives for it.  */
5622     for (p = &weak_decls; (t = *p) ; )
5623       if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
5624         *p = TREE_CHAIN (t);
5625       else
5626         p = &TREE_CHAIN (t);
5627
5628     /* Remove weakrefs to the same target from the pending weakref
5629        list, for the same reason.  */
5630     for (p = &weakref_targets; (t = *p) ; )
5631       {
5632         if (DECL_ASSEMBLER_NAME (decl)
5633             == ultimate_transparent_alias_target (&TREE_VALUE (t)))
5634           *p = TREE_CHAIN (t);
5635         else
5636           p = &TREE_CHAIN (t);
5637       }
5638   }
5639 #endif
5640 }
5641
5642
5643 /* Remove the alias pairing for functions that are no longer in the call
5644    graph.  */
5645
5646 void
5647 remove_unreachable_alias_pairs (void)
5648 {
5649   unsigned i;
5650   alias_pair *p;
5651
5652   if (alias_pairs == NULL)
5653     return;
5654
5655   for (i = 0; VEC_iterate (alias_pair, alias_pairs, i, p); )
5656     {
5657       if (!DECL_EXTERNAL (p->decl))
5658         {
5659           struct cgraph_node *fnode = NULL;
5660           struct varpool_node *vnode = NULL;
5661           fnode = cgraph_node_for_asm (p->target);
5662           vnode = (fnode == NULL) ? varpool_node_for_asm (p->target) : NULL;
5663           if (fnode == NULL && vnode == NULL)
5664             {
5665               VEC_unordered_remove (alias_pair, alias_pairs, i);
5666               continue;
5667             }
5668         }
5669
5670       i++;
5671     }
5672 }
5673
5674
5675 /* First pass of completing pending aliases.  Make sure that cgraph knows
5676    which symbols will be required.  */
5677
5678 void
5679 finish_aliases_1 (void)
5680 {
5681   unsigned i;
5682   alias_pair *p;
5683
5684   for (i = 0; VEC_iterate (alias_pair, alias_pairs, i, p); i++)
5685     {
5686       tree target_decl;
5687
5688       target_decl = find_decl_and_mark_needed (p->decl, p->target);
5689       if (target_decl == NULL)
5690         {
5691           if (! lookup_attribute ("weakref", DECL_ATTRIBUTES (p->decl)))
5692             error ("%q+D aliased to undefined symbol %qE",
5693                    p->decl, p->target);
5694         }
5695       else if (DECL_EXTERNAL (target_decl)
5696                /* We use local aliases for C++ thunks to force the tailcall
5697                   to bind locally.  Of course this is a hack - to keep it
5698                   working do the following (which is not strictly correct).  */
5699                && (! TREE_CODE (target_decl) == FUNCTION_DECL
5700                    || ! DECL_VIRTUAL_P (target_decl))
5701                && ! lookup_attribute ("weakref", DECL_ATTRIBUTES (p->decl)))
5702         error ("%q+D aliased to external symbol %qE",
5703                p->decl, p->target);
5704     }
5705 }
5706
5707 /* Second pass of completing pending aliases.  Emit the actual assembly.
5708    This happens at the end of compilation and thus it is assured that the
5709    target symbol has been emitted.  */
5710
5711 void
5712 finish_aliases_2 (void)
5713 {
5714   unsigned i;
5715   alias_pair *p;
5716
5717   for (i = 0; VEC_iterate (alias_pair, alias_pairs, i, p); i++)
5718     do_assemble_alias (p->decl, p->target);
5719
5720   VEC_truncate (alias_pair, alias_pairs, 0);
5721 }
5722
5723 /* Emit an assembler directive to make the symbol for DECL an alias to
5724    the symbol for TARGET.  */
5725
5726 void
5727 assemble_alias (tree decl, tree target)
5728 {
5729   tree target_decl;
5730   bool is_weakref = false;
5731
5732   if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl)))
5733     {
5734       tree alias = DECL_ASSEMBLER_NAME (decl);
5735
5736       is_weakref = true;
5737
5738       ultimate_transparent_alias_target (&target);
5739
5740       if (alias == target)
5741         error ("weakref %q+D ultimately targets itself", decl);
5742       else
5743         {
5744 #ifndef ASM_OUTPUT_WEAKREF
5745           IDENTIFIER_TRANSPARENT_ALIAS (alias) = 1;
5746           TREE_CHAIN (alias) = target;
5747 #endif
5748         }
5749       if (TREE_PUBLIC (decl))
5750         error ("weakref %q+D must have static linkage", decl);
5751     }
5752   else
5753     {
5754 #if !defined (ASM_OUTPUT_DEF)
5755 # if !defined(ASM_OUTPUT_WEAK_ALIAS) && !defined (ASM_WEAKEN_DECL)
5756       error_at (DECL_SOURCE_LOCATION (decl),
5757                 "alias definitions not supported in this configuration");
5758       return;
5759 # else
5760       if (!DECL_WEAK (decl))
5761         {
5762           error_at (DECL_SOURCE_LOCATION (decl),
5763                     "only weak aliases are supported in this configuration");
5764           return;
5765         }
5766 # endif
5767 #endif
5768     }
5769   TREE_USED (decl) = 1;
5770
5771   /* A quirk of the initial implementation of aliases required that the user
5772      add "extern" to all of them.  Which is silly, but now historical.  Do
5773      note that the symbol is in fact locally defined.  */
5774   if (! is_weakref)
5775     DECL_EXTERNAL (decl) = 0;
5776
5777   /* Allow aliases to aliases.  */
5778   if (TREE_CODE (decl) == FUNCTION_DECL)
5779     cgraph_node (decl)->alias = true;
5780   else
5781     varpool_node (decl)->alias = true;
5782
5783   /* If the target has already been emitted, we don't have to queue the
5784      alias.  This saves a tad of memory.  */
5785   if (cgraph_global_info_ready)
5786     target_decl = find_decl_and_mark_needed (decl, target);
5787   else
5788     target_decl= NULL;
5789   if (target_decl && TREE_ASM_WRITTEN (target_decl))
5790     do_assemble_alias (decl, target);
5791   else
5792     {
5793       alias_pair *p = VEC_safe_push (alias_pair, gc, alias_pairs, NULL);
5794       p->decl = decl;
5795       p->target = target;
5796     }
5797 }
5798
5799 /* Emit an assembler directive to set symbol for DECL visibility to
5800    the visibility type VIS, which must not be VISIBILITY_DEFAULT.  */
5801
5802 void
5803 default_assemble_visibility (tree decl, int vis)
5804 {
5805   static const char * const visibility_types[] = {
5806     NULL, "protected", "hidden", "internal"
5807   };
5808
5809   const char *name, *type;
5810
5811   name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5812   type = visibility_types[vis];
5813
5814 #ifdef HAVE_GAS_HIDDEN
5815   fprintf (asm_out_file, "\t.%s\t", type);
5816   assemble_name (asm_out_file, name);
5817   fprintf (asm_out_file, "\n");
5818 #else
5819   warning (OPT_Wattributes, "visibility attribute not supported "
5820            "in this configuration; ignored");
5821 #endif
5822 }
5823
5824 /* A helper function to call assemble_visibility when needed for a decl.  */
5825
5826 int
5827 maybe_assemble_visibility (tree decl)
5828 {
5829   enum symbol_visibility vis = DECL_VISIBILITY (decl);
5830
5831   if (vis != VISIBILITY_DEFAULT)
5832     {
5833       targetm.asm_out.visibility (decl, vis);
5834       return 1;
5835     }
5836   else
5837     return 0;
5838 }
5839
5840 /* Returns 1 if the target configuration supports defining public symbols
5841    so that one of them will be chosen at link time instead of generating a
5842    multiply-defined symbol error, whether through the use of weak symbols or
5843    a target-specific mechanism for having duplicates discarded.  */
5844
5845 int
5846 supports_one_only (void)
5847 {
5848   if (SUPPORTS_ONE_ONLY)
5849     return 1;
5850   return SUPPORTS_WEAK;
5851 }
5852
5853 /* Set up DECL as a public symbol that can be defined in multiple
5854    translation units without generating a linker error.  */
5855
5856 void
5857 make_decl_one_only (tree decl, tree comdat_group)
5858 {
5859   gcc_assert (TREE_CODE (decl) == VAR_DECL
5860               || TREE_CODE (decl) == FUNCTION_DECL);
5861
5862   TREE_PUBLIC (decl) = 1;
5863
5864   if (SUPPORTS_ONE_ONLY)
5865     {
5866 #ifdef MAKE_DECL_ONE_ONLY
5867       MAKE_DECL_ONE_ONLY (decl);
5868 #endif
5869       DECL_COMDAT_GROUP (decl) = comdat_group;
5870     }
5871   else if (TREE_CODE (decl) == VAR_DECL
5872       && (DECL_INITIAL (decl) == 0 || DECL_INITIAL (decl) == error_mark_node))
5873     DECL_COMMON (decl) = 1;
5874   else
5875     {
5876       gcc_assert (SUPPORTS_WEAK);
5877       DECL_WEAK (decl) = 1;
5878     }
5879 }
5880
5881 void
5882 init_varasm_once (void)
5883 {
5884   section_htab = htab_create_ggc (31, section_entry_hash,
5885                                   section_entry_eq, NULL);
5886   object_block_htab = htab_create_ggc (31, object_block_entry_hash,
5887                                        object_block_entry_eq, NULL);
5888   const_desc_htab = htab_create_ggc (1009, const_desc_hash,
5889                                      const_desc_eq, NULL);
5890
5891   const_alias_set = new_alias_set ();
5892   shared_constant_pool = create_constant_pool ();
5893
5894 #ifdef TEXT_SECTION_ASM_OP
5895   text_section = get_unnamed_section (SECTION_CODE, output_section_asm_op,
5896                                       TEXT_SECTION_ASM_OP);
5897 #endif
5898
5899 #ifdef DATA_SECTION_ASM_OP
5900   data_section = get_unnamed_section (SECTION_WRITE, output_section_asm_op,
5901                                       DATA_SECTION_ASM_OP);
5902 #endif
5903
5904 #ifdef SDATA_SECTION_ASM_OP
5905   sdata_section = get_unnamed_section (SECTION_WRITE, output_section_asm_op,
5906                                        SDATA_SECTION_ASM_OP);
5907 #endif
5908
5909 #ifdef READONLY_DATA_SECTION_ASM_OP
5910   readonly_data_section = get_unnamed_section (0, output_section_asm_op,
5911                                                READONLY_DATA_SECTION_ASM_OP);
5912 #endif
5913
5914 #ifdef CTORS_SECTION_ASM_OP
5915   ctors_section = get_unnamed_section (0, output_section_asm_op,
5916                                        CTORS_SECTION_ASM_OP);
5917 #endif
5918
5919 #ifdef DTORS_SECTION_ASM_OP
5920   dtors_section = get_unnamed_section (0, output_section_asm_op,
5921                                        DTORS_SECTION_ASM_OP);
5922 #endif
5923
5924 #ifdef BSS_SECTION_ASM_OP
5925   bss_section = get_unnamed_section (SECTION_WRITE | SECTION_BSS,
5926                                      output_section_asm_op,
5927                                      BSS_SECTION_ASM_OP);
5928 #endif
5929
5930 #ifdef SBSS_SECTION_ASM_OP
5931   sbss_section = get_unnamed_section (SECTION_WRITE | SECTION_BSS,
5932                                       output_section_asm_op,
5933                                       SBSS_SECTION_ASM_OP);
5934 #endif
5935
5936   tls_comm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
5937                                            | SECTION_COMMON, emit_tls_common);
5938   lcomm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
5939                                         | SECTION_COMMON, emit_local);
5940   comm_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS
5941                                        | SECTION_COMMON, emit_common);
5942
5943 #if defined ASM_OUTPUT_ALIGNED_BSS || defined ASM_OUTPUT_BSS
5944   bss_noswitch_section = get_noswitch_section (SECTION_WRITE | SECTION_BSS,
5945                                                emit_bss);
5946 #endif
5947
5948   targetm.asm_out.init_sections ();
5949
5950   if (readonly_data_section == NULL)
5951     readonly_data_section = text_section;
5952 }
5953
5954 enum tls_model
5955 decl_default_tls_model (const_tree decl)
5956 {
5957   enum tls_model kind;
5958   bool is_local;
5959
5960   is_local = targetm.binds_local_p (decl);
5961   if (!flag_shlib)
5962     {
5963       if (is_local)
5964         kind = TLS_MODEL_LOCAL_EXEC;
5965       else
5966         kind = TLS_MODEL_INITIAL_EXEC;
5967     }
5968
5969   /* Local dynamic is inefficient when we're not combining the
5970      parts of the address.  */
5971   else if (optimize && is_local)
5972     kind = TLS_MODEL_LOCAL_DYNAMIC;
5973   else
5974     kind = TLS_MODEL_GLOBAL_DYNAMIC;
5975   if (kind < flag_tls_default)
5976     kind = flag_tls_default;
5977
5978   return kind;
5979 }
5980
5981 /* Select a set of attributes for section NAME based on the properties
5982    of DECL and whether or not RELOC indicates that DECL's initializer
5983    might contain runtime relocations.
5984
5985    We make the section read-only and executable for a function decl,
5986    read-only for a const data decl, and writable for a non-const data decl.  */
5987
5988 unsigned int
5989 default_section_type_flags (tree decl, const char *name, int reloc)
5990 {
5991   unsigned int flags;
5992
5993   if (decl && TREE_CODE (decl) == FUNCTION_DECL)
5994     flags = SECTION_CODE;
5995   else if (decl && decl_readonly_section (decl, reloc))
5996     flags = 0;
5997   else if (current_function_decl
5998            && cfun
5999            && crtl->subsections.unlikely_text_section_name
6000            && strcmp (name, crtl->subsections.unlikely_text_section_name) == 0)
6001     flags = SECTION_CODE;
6002   else if (!decl
6003            && (!current_function_decl || !cfun)
6004            && strcmp (name, UNLIKELY_EXECUTED_TEXT_SECTION_NAME) == 0)
6005     flags = SECTION_CODE;
6006   else
6007     flags = SECTION_WRITE;
6008
6009   if (decl && DECL_ONE_ONLY (decl))
6010     flags |= SECTION_LINKONCE;
6011
6012   if (decl && TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl))
6013     flags |= SECTION_TLS | SECTION_WRITE;
6014
6015   if (strcmp (name, ".bss") == 0
6016       || strncmp (name, ".bss.", 5) == 0
6017       || strncmp (name, ".gnu.linkonce.b.", 16) == 0
6018       || strcmp (name, ".sbss") == 0
6019       || strncmp (name, ".sbss.", 6) == 0
6020       || strncmp (name, ".gnu.linkonce.sb.", 17) == 0)
6021     flags |= SECTION_BSS;
6022
6023   if (strcmp (name, ".tdata") == 0
6024       || strncmp (name, ".tdata.", 7) == 0
6025       || strncmp (name, ".gnu.linkonce.td.", 17) == 0)
6026     flags |= SECTION_TLS;
6027
6028   if (strcmp (name, ".tbss") == 0
6029       || strncmp (name, ".tbss.", 6) == 0
6030       || strncmp (name, ".gnu.linkonce.tb.", 17) == 0)
6031     flags |= SECTION_TLS | SECTION_BSS;
6032
6033   /* These three sections have special ELF types.  They are neither
6034      SHT_PROGBITS nor SHT_NOBITS, so when changing sections we don't
6035      want to print a section type (@progbits or @nobits).  If someone
6036      is silly enough to emit code or TLS variables to one of these
6037      sections, then don't handle them specially.  */
6038   if (!(flags & (SECTION_CODE | SECTION_BSS | SECTION_TLS))
6039       && (strcmp (name, ".init_array") == 0
6040           || strcmp (name, ".fini_array") == 0
6041           || strcmp (name, ".preinit_array") == 0))
6042     flags |= SECTION_NOTYPE;
6043
6044   return flags;
6045 }
6046
6047 /* Return true if the target supports some form of global BSS,
6048    either through bss_noswitch_section, or by selecting a BSS
6049    section in TARGET_ASM_SELECT_SECTION.  */
6050
6051 bool
6052 have_global_bss_p (void)
6053 {
6054   return bss_noswitch_section || targetm.have_switchable_bss_sections;
6055 }
6056
6057 /* Output assembly to switch to section NAME with attribute FLAGS.
6058    Four variants for common object file formats.  */
6059
6060 void
6061 default_no_named_section (const char *name ATTRIBUTE_UNUSED,
6062                           unsigned int flags ATTRIBUTE_UNUSED,
6063                           tree decl ATTRIBUTE_UNUSED)
6064 {
6065   /* Some object formats don't support named sections at all.  The
6066      front-end should already have flagged this as an error.  */
6067   gcc_unreachable ();
6068 }
6069
6070 #ifndef TLS_SECTION_ASM_FLAG
6071 #define TLS_SECTION_ASM_FLAG 'T'
6072 #endif
6073
6074 void
6075 default_elf_asm_named_section (const char *name, unsigned int flags,
6076                                tree decl ATTRIBUTE_UNUSED)
6077 {
6078   char flagchars[10], *f = flagchars;
6079
6080   /* If we have already declared this section, we can use an
6081      abbreviated form to switch back to it -- unless this section is
6082      part of a COMDAT groups, in which case GAS requires the full
6083      declaration every time.  */
6084   if (!(HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
6085       && (flags & SECTION_DECLARED))
6086     {
6087       fprintf (asm_out_file, "\t.section\t%s\n", name);
6088       return;
6089     }
6090
6091   if (!(flags & SECTION_DEBUG))
6092     *f++ = 'a';
6093   if (flags & SECTION_WRITE)
6094     *f++ = 'w';
6095   if (flags & SECTION_CODE)
6096     *f++ = 'x';
6097   if (flags & SECTION_SMALL)
6098     *f++ = 's';
6099   if (flags & SECTION_MERGE)
6100     *f++ = 'M';
6101   if (flags & SECTION_STRINGS)
6102     *f++ = 'S';
6103   if (flags & SECTION_TLS)
6104     *f++ = TLS_SECTION_ASM_FLAG;
6105   if (HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
6106     *f++ = 'G';
6107   *f = '\0';
6108
6109   fprintf (asm_out_file, "\t.section\t%s,\"%s\"", name, flagchars);
6110
6111   if (!(flags & SECTION_NOTYPE))
6112     {
6113       const char *type;
6114       const char *format;
6115
6116       if (flags & SECTION_BSS)
6117         type = "nobits";
6118       else
6119         type = "progbits";
6120
6121       format = ",@%s";
6122 #ifdef ASM_COMMENT_START
6123       /* On platforms that use "@" as the assembly comment character,
6124          use "%" instead.  */
6125       if (strcmp (ASM_COMMENT_START, "@") == 0)
6126         format = ",%%%s";
6127 #endif
6128       fprintf (asm_out_file, format, type);
6129
6130       if (flags & SECTION_ENTSIZE)
6131         fprintf (asm_out_file, ",%d", flags & SECTION_ENTSIZE);
6132       if (HAVE_COMDAT_GROUP && (flags & SECTION_LINKONCE))
6133         {
6134           if (TREE_CODE (decl) == IDENTIFIER_NODE)
6135             fprintf (asm_out_file, ",%s,comdat", IDENTIFIER_POINTER (decl));
6136           else
6137             fprintf (asm_out_file, ",%s,comdat",
6138                      IDENTIFIER_POINTER (DECL_COMDAT_GROUP (decl)));
6139         }
6140     }
6141
6142   putc ('\n', asm_out_file);
6143 }
6144
6145 void
6146 default_coff_asm_named_section (const char *name, unsigned int flags,
6147                                 tree decl ATTRIBUTE_UNUSED)
6148 {
6149   char flagchars[8], *f = flagchars;
6150
6151   if (flags & SECTION_WRITE)
6152     *f++ = 'w';
6153   if (flags & SECTION_CODE)
6154     *f++ = 'x';
6155   *f = '\0';
6156
6157   fprintf (asm_out_file, "\t.section\t%s,\"%s\"\n", name, flagchars);
6158 }
6159
6160 void
6161 default_pe_asm_named_section (const char *name, unsigned int flags,
6162                               tree decl)
6163 {
6164   default_coff_asm_named_section (name, flags, decl);
6165
6166   if (flags & SECTION_LINKONCE)
6167     {
6168       /* Functions may have been compiled at various levels of
6169          optimization so we can't use `same_size' here.
6170          Instead, have the linker pick one.  */
6171       fprintf (asm_out_file, "\t.linkonce %s\n",
6172                (flags & SECTION_CODE ? "discard" : "same_size"));
6173     }
6174 }
6175 \f
6176 /* The lame default section selector.  */
6177
6178 section *
6179 default_select_section (tree decl, int reloc,
6180                         unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
6181 {
6182   if (DECL_P (decl))
6183     {
6184       if (decl_readonly_section (decl, reloc))
6185         return readonly_data_section;
6186     }
6187   else if (TREE_CODE (decl) == CONSTRUCTOR)
6188     {
6189       if (! ((flag_pic && reloc)
6190              || !TREE_READONLY (decl)
6191              || TREE_SIDE_EFFECTS (decl)
6192              || !TREE_CONSTANT (decl)))
6193         return readonly_data_section;
6194     }
6195   else if (TREE_CODE (decl) == STRING_CST)
6196     return readonly_data_section;
6197   else if (! (flag_pic && reloc))
6198     return readonly_data_section;
6199
6200   return data_section;
6201 }
6202
6203 enum section_category
6204 categorize_decl_for_section (const_tree decl, int reloc)
6205 {
6206   enum section_category ret;
6207
6208   if (TREE_CODE (decl) == FUNCTION_DECL)
6209     return SECCAT_TEXT;
6210   else if (TREE_CODE (decl) == STRING_CST)
6211     {
6212       if (flag_mudflap) /* or !flag_merge_constants */
6213         return SECCAT_RODATA;
6214       else
6215         return SECCAT_RODATA_MERGE_STR;
6216     }
6217   else if (TREE_CODE (decl) == VAR_DECL)
6218     {
6219       if (bss_initializer_p (decl))
6220         ret = SECCAT_BSS;
6221       else if (! TREE_READONLY (decl)
6222                || TREE_SIDE_EFFECTS (decl)
6223                || ! TREE_CONSTANT (DECL_INITIAL (decl)))
6224         {
6225           /* Here the reloc_rw_mask is not testing whether the section should
6226              be read-only or not, but whether the dynamic link will have to
6227              do something.  If so, we wish to segregate the data in order to
6228              minimize cache misses inside the dynamic linker.  */
6229           if (reloc & targetm.asm_out.reloc_rw_mask ())
6230             ret = reloc == 1 ? SECCAT_DATA_REL_LOCAL : SECCAT_DATA_REL;
6231           else
6232             ret = SECCAT_DATA;
6233         }
6234       else if (reloc & targetm.asm_out.reloc_rw_mask ())
6235         ret = reloc == 1 ? SECCAT_DATA_REL_RO_LOCAL : SECCAT_DATA_REL_RO;
6236       else if (reloc || flag_merge_constants < 2)
6237         /* C and C++ don't allow different variables to share the same
6238            location.  -fmerge-all-constants allows even that (at the
6239            expense of not conforming).  */
6240         ret = SECCAT_RODATA;
6241       else if (TREE_CODE (DECL_INITIAL (decl)) == STRING_CST)
6242         ret = SECCAT_RODATA_MERGE_STR_INIT;
6243       else
6244         ret = SECCAT_RODATA_MERGE_CONST;
6245     }
6246   else if (TREE_CODE (decl) == CONSTRUCTOR)
6247     {
6248       if ((reloc & targetm.asm_out.reloc_rw_mask ())
6249           || TREE_SIDE_EFFECTS (decl)
6250           || ! TREE_CONSTANT (decl))
6251         ret = SECCAT_DATA;
6252       else
6253         ret = SECCAT_RODATA;
6254     }
6255   else
6256     ret = SECCAT_RODATA;
6257
6258   /* There are no read-only thread-local sections.  */
6259   if (TREE_CODE (decl) == VAR_DECL && DECL_TLS_MODEL (decl))
6260     {
6261       if (DECL_TLS_MODEL (decl) == TLS_MODEL_EMULATED)
6262         {
6263           if (DECL_EMUTLS_VAR_P (decl))
6264             {
6265               if (targetm.emutls.var_section)
6266                 ret = SECCAT_EMUTLS_VAR;
6267             }
6268           else
6269             {
6270               if (targetm.emutls.tmpl_prefix)
6271                 ret = SECCAT_EMUTLS_TMPL;
6272             }
6273         }
6274       /* Note that this would be *just* SECCAT_BSS, except that there's
6275          no concept of a read-only thread-local-data section.  */
6276       else if (ret == SECCAT_BSS
6277                || (flag_zero_initialized_in_bss
6278                    && initializer_zerop (DECL_INITIAL (decl))))
6279         ret = SECCAT_TBSS;
6280       else
6281         ret = SECCAT_TDATA;
6282     }
6283
6284   /* If the target uses small data sections, select it.  */
6285   else if (targetm.in_small_data_p (decl))
6286     {
6287       if (ret == SECCAT_BSS)
6288         ret = SECCAT_SBSS;
6289       else if (targetm.have_srodata_section && ret == SECCAT_RODATA)
6290         ret = SECCAT_SRODATA;
6291       else
6292         ret = SECCAT_SDATA;
6293     }
6294
6295   return ret;
6296 }
6297
6298 bool
6299 decl_readonly_section (const_tree decl, int reloc)
6300 {
6301   switch (categorize_decl_for_section (decl, reloc))
6302     {
6303     case SECCAT_RODATA:
6304     case SECCAT_RODATA_MERGE_STR:
6305     case SECCAT_RODATA_MERGE_STR_INIT:
6306     case SECCAT_RODATA_MERGE_CONST:
6307     case SECCAT_SRODATA:
6308       return true;
6309       break;
6310     default:
6311       return false;
6312       break;
6313     }
6314 }
6315
6316 /* Select a section based on the above categorization.  */
6317
6318 section *
6319 default_elf_select_section (tree decl, int reloc,
6320                             unsigned HOST_WIDE_INT align)
6321 {
6322   const char *sname;
6323   switch (categorize_decl_for_section (decl, reloc))
6324     {
6325     case SECCAT_TEXT:
6326       /* We're not supposed to be called on FUNCTION_DECLs.  */
6327       gcc_unreachable ();
6328     case SECCAT_RODATA:
6329       return readonly_data_section;
6330     case SECCAT_RODATA_MERGE_STR:
6331       return mergeable_string_section (decl, align, 0);
6332     case SECCAT_RODATA_MERGE_STR_INIT:
6333       return mergeable_string_section (DECL_INITIAL (decl), align, 0);
6334     case SECCAT_RODATA_MERGE_CONST:
6335       return mergeable_constant_section (DECL_MODE (decl), align, 0);
6336     case SECCAT_SRODATA:
6337       sname = ".sdata2";
6338       break;
6339     case SECCAT_DATA:
6340       return data_section;
6341     case SECCAT_DATA_REL:
6342       sname = ".data.rel";
6343       break;
6344     case SECCAT_DATA_REL_LOCAL:
6345       sname = ".data.rel.local";
6346       break;
6347     case SECCAT_DATA_REL_RO:
6348       sname = ".data.rel.ro";
6349       break;
6350     case SECCAT_DATA_REL_RO_LOCAL:
6351       sname = ".data.rel.ro.local";
6352       break;
6353     case SECCAT_SDATA:
6354       sname = ".sdata";
6355       break;
6356     case SECCAT_TDATA:
6357       sname = ".tdata";
6358       break;
6359     case SECCAT_BSS:
6360       if (bss_section)
6361         return bss_section;
6362       sname = ".bss";
6363       break;
6364     case SECCAT_SBSS:
6365       sname = ".sbss";
6366       break;
6367     case SECCAT_TBSS:
6368       sname = ".tbss";
6369       break;
6370     case SECCAT_EMUTLS_VAR:
6371       sname = targetm.emutls.var_section;
6372       break;
6373     case SECCAT_EMUTLS_TMPL:
6374       sname = targetm.emutls.tmpl_section;
6375       break;
6376     default:
6377       gcc_unreachable ();
6378     }
6379
6380   if (!DECL_P (decl))
6381     decl = NULL_TREE;
6382   return get_named_section (decl, sname, reloc);
6383 }
6384
6385 /* Construct a unique section name based on the decl name and the
6386    categorization performed above.  */
6387
6388 void
6389 default_unique_section (tree decl, int reloc)
6390 {
6391   /* We only need to use .gnu.linkonce if we don't have COMDAT groups.  */
6392   bool one_only = DECL_ONE_ONLY (decl) && !HAVE_COMDAT_GROUP;
6393   const char *prefix, *name, *linkonce;
6394   char *string;
6395
6396   switch (categorize_decl_for_section (decl, reloc))
6397     {
6398     case SECCAT_TEXT:
6399       prefix = one_only ? ".t" : ".text";
6400       break;
6401     case SECCAT_RODATA:
6402     case SECCAT_RODATA_MERGE_STR:
6403     case SECCAT_RODATA_MERGE_STR_INIT:
6404     case SECCAT_RODATA_MERGE_CONST:
6405       prefix = one_only ? ".r" : ".rodata";
6406       break;
6407     case SECCAT_SRODATA:
6408       prefix = one_only ? ".s2" : ".sdata2";
6409       break;
6410     case SECCAT_DATA:
6411       prefix = one_only ? ".d" : ".data";
6412       break;
6413     case SECCAT_DATA_REL:
6414       prefix = one_only ? ".d.rel" : ".data.rel";
6415       break;
6416     case SECCAT_DATA_REL_LOCAL:
6417       prefix = one_only ? ".d.rel.local" : ".data.rel.local";
6418       break;
6419     case SECCAT_DATA_REL_RO:
6420       prefix = one_only ? ".d.rel.ro" : ".data.rel.ro";
6421       break;
6422     case SECCAT_DATA_REL_RO_LOCAL:
6423       prefix = one_only ? ".d.rel.ro.local" : ".data.rel.ro.local";
6424       break;
6425     case SECCAT_SDATA:
6426       prefix = one_only ? ".s" : ".sdata";
6427       break;
6428     case SECCAT_BSS:
6429       prefix = one_only ? ".b" : ".bss";
6430       break;
6431     case SECCAT_SBSS:
6432       prefix = one_only ? ".sb" : ".sbss";
6433       break;
6434     case SECCAT_TDATA:
6435       prefix = one_only ? ".td" : ".tdata";
6436       break;
6437     case SECCAT_TBSS:
6438       prefix = one_only ? ".tb" : ".tbss";
6439       break;
6440     case SECCAT_EMUTLS_VAR:
6441       prefix = targetm.emutls.var_section;
6442       break;
6443     case SECCAT_EMUTLS_TMPL:
6444       prefix = targetm.emutls.tmpl_section;
6445       break;
6446     default:
6447       gcc_unreachable ();
6448     }
6449
6450   name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
6451   name = targetm.strip_name_encoding (name);
6452
6453   /* If we're using one_only, then there needs to be a .gnu.linkonce
6454      prefix to the section name.  */
6455   linkonce = one_only ? ".gnu.linkonce" : "";
6456
6457   string = ACONCAT ((linkonce, prefix, ".", name, NULL));
6458
6459   DECL_SECTION_NAME (decl) = build_string (strlen (string), string);
6460 }
6461
6462 /* Like compute_reloc_for_constant, except for an RTX.  The return value
6463    is a mask for which bit 1 indicates a global relocation, and bit 0
6464    indicates a local relocation.  */
6465
6466 static int
6467 compute_reloc_for_rtx_1 (rtx *xp, void *data)
6468 {
6469   int *preloc = (int *) data;
6470   rtx x = *xp;
6471
6472   switch (GET_CODE (x))
6473     {
6474     case SYMBOL_REF:
6475       *preloc |= SYMBOL_REF_LOCAL_P (x) ? 1 : 2;
6476       break;
6477     case LABEL_REF:
6478       *preloc |= 1;
6479       break;
6480     default:
6481       break;
6482     }
6483
6484   return 0;
6485 }
6486
6487 static int
6488 compute_reloc_for_rtx (rtx x)
6489 {
6490   int reloc;
6491
6492   switch (GET_CODE (x))
6493     {
6494     case CONST:
6495     case SYMBOL_REF:
6496     case LABEL_REF:
6497       reloc = 0;
6498       for_each_rtx (&x, compute_reloc_for_rtx_1, &reloc);
6499       return reloc;
6500
6501     default:
6502       return 0;
6503     }
6504 }
6505
6506 section *
6507 default_select_rtx_section (enum machine_mode mode ATTRIBUTE_UNUSED,
6508                             rtx x,
6509                             unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
6510 {
6511   if (compute_reloc_for_rtx (x) & targetm.asm_out.reloc_rw_mask ())
6512     return data_section;
6513   else
6514     return readonly_data_section;
6515 }
6516
6517 section *
6518 default_elf_select_rtx_section (enum machine_mode mode, rtx x,
6519                                 unsigned HOST_WIDE_INT align)
6520 {
6521   int reloc = compute_reloc_for_rtx (x);
6522
6523   /* ??? Handle small data here somehow.  */
6524
6525   if (reloc & targetm.asm_out.reloc_rw_mask ())
6526     {
6527       if (reloc == 1)
6528         return get_named_section (NULL, ".data.rel.ro.local", 1);
6529       else
6530         return get_named_section (NULL, ".data.rel.ro", 3);
6531     }
6532
6533   return mergeable_constant_section (mode, align, 0);
6534 }
6535
6536 /* Set the generally applicable flags on the SYMBOL_REF for EXP.  */
6537
6538 void
6539 default_encode_section_info (tree decl, rtx rtl, int first ATTRIBUTE_UNUSED)
6540 {
6541   rtx symbol;
6542   int flags;
6543
6544   /* Careful not to prod global register variables.  */
6545   if (!MEM_P (rtl))
6546     return;
6547   symbol = XEXP (rtl, 0);
6548   if (GET_CODE (symbol) != SYMBOL_REF)
6549     return;
6550
6551   flags = SYMBOL_REF_FLAGS (symbol) & SYMBOL_FLAG_HAS_BLOCK_INFO;
6552   if (TREE_CODE (decl) == FUNCTION_DECL)
6553     flags |= SYMBOL_FLAG_FUNCTION;
6554   if (targetm.binds_local_p (decl))
6555     flags |= SYMBOL_FLAG_LOCAL;
6556   if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl)
6557       && DECL_TLS_MODEL (decl) != TLS_MODEL_EMULATED)
6558     flags |= DECL_TLS_MODEL (decl) << SYMBOL_FLAG_TLS_SHIFT;
6559   else if (targetm.in_small_data_p (decl))
6560     flags |= SYMBOL_FLAG_SMALL;
6561   /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names?  Without
6562      being PUBLIC, the thing *must* be defined in this translation unit.
6563      Prevent this buglet from being propagated into rtl code as well.  */
6564   if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
6565     flags |= SYMBOL_FLAG_EXTERNAL;
6566
6567   SYMBOL_REF_FLAGS (symbol) = flags;
6568 }
6569
6570 /* By default, we do nothing for encode_section_info, so we need not
6571    do anything but discard the '*' marker.  */
6572
6573 const char *
6574 default_strip_name_encoding (const char *str)
6575 {
6576   return str + (*str == '*');
6577 }
6578
6579 #ifdef ASM_OUTPUT_DEF
6580 /* The default implementation of TARGET_ASM_OUTPUT_ANCHOR.  Define the
6581    anchor relative to ".", the current section position.  */
6582
6583 void
6584 default_asm_output_anchor (rtx symbol)
6585 {
6586   char buffer[100];
6587
6588   sprintf (buffer, "*. + " HOST_WIDE_INT_PRINT_DEC,
6589            SYMBOL_REF_BLOCK_OFFSET (symbol));
6590   ASM_OUTPUT_DEF (asm_out_file, XSTR (symbol, 0), buffer);
6591 }
6592 #endif
6593
6594 /* The default implementation of TARGET_USE_ANCHORS_FOR_SYMBOL_P.  */
6595
6596 bool
6597 default_use_anchors_for_symbol_p (const_rtx symbol)
6598 {
6599   section *sect;
6600   tree decl;
6601
6602   /* Don't use anchors for mergeable sections.  The linker might move
6603      the objects around.  */
6604   sect = SYMBOL_REF_BLOCK (symbol)->sect;
6605   if (sect->common.flags & SECTION_MERGE)
6606     return false;
6607
6608   /* Don't use anchors for small data sections.  The small data register
6609      acts as an anchor for such sections.  */
6610   if (sect->common.flags & SECTION_SMALL)
6611     return false;
6612
6613   decl = SYMBOL_REF_DECL (symbol);
6614   if (decl && DECL_P (decl))
6615     {
6616       /* Don't use section anchors for decls that might be defined by
6617          other modules.  */
6618       if (!targetm.binds_local_p (decl))
6619         return false;
6620
6621       /* Don't use section anchors for decls that will be placed in a
6622          small data section.  */
6623       /* ??? Ideally, this check would be redundant with the SECTION_SMALL
6624          one above.  The problem is that we only use SECTION_SMALL for
6625          sections that should be marked as small in the section directive.  */
6626       if (targetm.in_small_data_p (decl))
6627         return false;
6628     }
6629   return true;
6630 }
6631
6632 /* Assume ELF-ish defaults, since that's pretty much the most liberal
6633    wrt cross-module name binding.  */
6634
6635 bool
6636 default_binds_local_p (const_tree exp)
6637 {
6638   return default_binds_local_p_1 (exp, flag_shlib);
6639 }
6640
6641 bool
6642 default_binds_local_p_1 (const_tree exp, int shlib)
6643 {
6644   bool local_p;
6645
6646   /* A non-decl is an entry in the constant pool.  */
6647   if (!DECL_P (exp))
6648     local_p = true;
6649   /* Weakrefs may not bind locally, even though the weakref itself is
6650      always static and therefore local.  */
6651   else if (lookup_attribute ("weakref", DECL_ATTRIBUTES (exp)))
6652     local_p = false;
6653   /* Static variables are always local.  */
6654   else if (! TREE_PUBLIC (exp))
6655     local_p = true;
6656   /* A variable is local if the user has said explicitly that it will
6657      be.  */
6658   else if (DECL_VISIBILITY_SPECIFIED (exp)
6659            && DECL_VISIBILITY (exp) != VISIBILITY_DEFAULT)
6660     local_p = true;
6661   /* Variables defined outside this object might not be local.  */
6662   else if (DECL_EXTERNAL (exp))
6663     local_p = false;
6664   /* If defined in this object and visibility is not default, must be
6665      local.  */
6666   else if (DECL_VISIBILITY (exp) != VISIBILITY_DEFAULT)
6667     local_p = true;
6668   /* Default visibility weak data can be overridden by a strong symbol
6669      in another module and so are not local.  */
6670   else if (DECL_WEAK (exp))
6671     local_p = false;
6672   /* If PIC, then assume that any global name can be overridden by
6673      symbols resolved from other modules, unless we are compiling with
6674      -fwhole-program, which assumes that names are local.  */
6675   else if (shlib)
6676     local_p = flag_whole_program;
6677   /* Uninitialized COMMON variable may be unified with symbols
6678      resolved from other modules.  */
6679   else if (DECL_COMMON (exp)
6680            && (DECL_INITIAL (exp) == NULL
6681                || DECL_INITIAL (exp) == error_mark_node))
6682     local_p = false;
6683   /* Otherwise we're left with initialized (or non-common) global data
6684      which is of necessity defined locally.  */
6685   else
6686     local_p = true;
6687
6688   return local_p;
6689 }
6690
6691 /* Default function to output code that will globalize a label.  A
6692    target must define GLOBAL_ASM_OP or provide its own function to
6693    globalize a label.  */
6694 #ifdef GLOBAL_ASM_OP
6695 void
6696 default_globalize_label (FILE * stream, const char *name)
6697 {
6698   fputs (GLOBAL_ASM_OP, stream);
6699   assemble_name (stream, name);
6700   putc ('\n', stream);
6701 }
6702 #endif /* GLOBAL_ASM_OP */
6703
6704 /* Default function to output code that will globalize a declaration.  */
6705 void
6706 default_globalize_decl_name (FILE * stream, tree decl)
6707 {
6708   const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
6709   targetm.asm_out.globalize_label (stream, name);
6710 }
6711
6712 /* Default function to output a label for unwind information.  The
6713    default is to do nothing.  A target that needs nonlocal labels for
6714    unwind information must provide its own function to do this.  */
6715 void
6716 default_emit_unwind_label (FILE * stream ATTRIBUTE_UNUSED,
6717                            tree decl ATTRIBUTE_UNUSED,
6718                            int for_eh ATTRIBUTE_UNUSED,
6719                            int empty ATTRIBUTE_UNUSED)
6720 {
6721 }
6722
6723 /* Default function to output a label to divide up the exception table.
6724    The default is to do nothing.  A target that needs/wants to divide
6725    up the table must provide it's own function to do this.  */
6726 void
6727 default_emit_except_table_label (FILE * stream ATTRIBUTE_UNUSED)
6728 {
6729 }
6730
6731 /* This is how to output an internal numbered label where PREFIX is
6732    the class of label and LABELNO is the number within the class.  */
6733
6734 void
6735 default_internal_label (FILE *stream, const char *prefix,
6736                         unsigned long labelno)
6737 {
6738   char *const buf = (char *) alloca (40 + strlen (prefix));
6739   ASM_GENERATE_INTERNAL_LABEL (buf, prefix, labelno);
6740   ASM_OUTPUT_INTERNAL_LABEL (stream, buf);
6741 }
6742
6743 /* This is the default behavior at the beginning of a file.  It's
6744    controlled by two other target-hook toggles.  */
6745 void
6746 default_file_start (void)
6747 {
6748   if (targetm.file_start_app_off
6749       && !(flag_verbose_asm || flag_debug_asm || flag_dump_rtl_in_asm))
6750     fputs (ASM_APP_OFF, asm_out_file);
6751
6752   if (targetm.file_start_file_directive)
6753     output_file_directive (asm_out_file, main_input_filename);
6754 }
6755
6756 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
6757    which emits a special section directive used to indicate whether or
6758    not this object file needs an executable stack.  This is primarily
6759    a GNU extension to ELF but could be used on other targets.  */
6760
6761 int trampolines_created;
6762
6763 void
6764 file_end_indicate_exec_stack (void)
6765 {
6766   unsigned int flags = SECTION_DEBUG;
6767   if (trampolines_created)
6768     flags |= SECTION_CODE;
6769
6770   switch_to_section (get_section (".note.GNU-stack", flags, NULL));
6771 }
6772
6773 /* Output DIRECTIVE (a C string) followed by a newline.  This is used as
6774    a get_unnamed_section callback.  */
6775
6776 void
6777 output_section_asm_op (const void *directive)
6778 {
6779   fprintf (asm_out_file, "%s\n", (const char *) directive);
6780 }
6781
6782 /* Emit assembly code to switch to section NEW_SECTION.  Do nothing if
6783    the current section is NEW_SECTION.  */
6784
6785 void
6786 switch_to_section (section *new_section)
6787 {
6788   if (in_section == new_section)
6789     return;
6790
6791   if (new_section->common.flags & SECTION_FORGET)
6792     in_section = NULL;
6793   else
6794     in_section = new_section;
6795
6796   switch (SECTION_STYLE (new_section))
6797     {
6798     case SECTION_NAMED:
6799       if (cfun
6800           && !crtl->subsections.unlikely_text_section_name
6801           && strcmp (new_section->named.name,
6802                      UNLIKELY_EXECUTED_TEXT_SECTION_NAME) == 0)
6803         crtl->subsections.unlikely_text_section_name = UNLIKELY_EXECUTED_TEXT_SECTION_NAME;
6804
6805       targetm.asm_out.named_section (new_section->named.name,
6806                                      new_section->named.common.flags,
6807                                      new_section->named.decl);
6808       break;
6809
6810     case SECTION_UNNAMED:
6811       new_section->unnamed.callback (new_section->unnamed.data);
6812       break;
6813
6814     case SECTION_NOSWITCH:
6815       gcc_unreachable ();
6816       break;
6817     }
6818
6819   new_section->common.flags |= SECTION_DECLARED;
6820 }
6821
6822 /* If block symbol SYMBOL has not yet been assigned an offset, place
6823    it at the end of its block.  */
6824
6825 void
6826 place_block_symbol (rtx symbol)
6827 {
6828   unsigned HOST_WIDE_INT size, mask, offset;
6829   struct constant_descriptor_rtx *desc;
6830   unsigned int alignment;
6831   struct object_block *block;
6832   tree decl;
6833
6834   gcc_assert (SYMBOL_REF_BLOCK (symbol));
6835   if (SYMBOL_REF_BLOCK_OFFSET (symbol) >= 0)
6836     return;
6837
6838   /* Work out the symbol's size and alignment.  */
6839   if (CONSTANT_POOL_ADDRESS_P (symbol))
6840     {
6841       desc = SYMBOL_REF_CONSTANT (symbol);
6842       alignment = desc->align;
6843       size = GET_MODE_SIZE (desc->mode);
6844     }
6845   else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
6846     {
6847       decl = SYMBOL_REF_DECL (symbol);
6848       alignment = get_constant_alignment (decl);
6849       size = get_constant_size (decl);
6850     }
6851   else
6852     {
6853       decl = SYMBOL_REF_DECL (symbol);
6854       alignment = DECL_ALIGN (decl);
6855       size = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
6856     }
6857
6858   /* Calculate the object's offset from the start of the block.  */
6859   block = SYMBOL_REF_BLOCK (symbol);
6860   mask = alignment / BITS_PER_UNIT - 1;
6861   offset = (block->size + mask) & ~mask;
6862   SYMBOL_REF_BLOCK_OFFSET (symbol) = offset;
6863
6864   /* Record the block's new alignment and size.  */
6865   block->alignment = MAX (block->alignment, alignment);
6866   block->size = offset + size;
6867
6868   VEC_safe_push (rtx, gc, block->objects, symbol);
6869 }
6870
6871 /* Return the anchor that should be used to address byte offset OFFSET
6872    from the first object in BLOCK.  MODEL is the TLS model used
6873    to access it.  */
6874
6875 rtx
6876 get_section_anchor (struct object_block *block, HOST_WIDE_INT offset,
6877                     enum tls_model model)
6878 {
6879   char label[100];
6880   unsigned int begin, middle, end;
6881   unsigned HOST_WIDE_INT min_offset, max_offset, range, bias, delta;
6882   rtx anchor;
6883
6884   /* Work out the anchor's offset.  Use an offset of 0 for the first
6885      anchor so that we don't pessimize the case where we take the address
6886      of a variable at the beginning of the block.  This is particularly
6887      useful when a block has only one variable assigned to it.
6888
6889      We try to place anchors RANGE bytes apart, so there can then be
6890      anchors at +/-RANGE, +/-2 * RANGE, and so on, up to the limits of
6891      a ptr_mode offset.  With some target settings, the lowest such
6892      anchor might be out of range for the lowest ptr_mode offset;
6893      likewise the highest anchor for the highest offset.  Use anchors
6894      at the extreme ends of the ptr_mode range in such cases.
6895
6896      All arithmetic uses unsigned integers in order to avoid
6897      signed overflow.  */
6898   max_offset = (unsigned HOST_WIDE_INT) targetm.max_anchor_offset;
6899   min_offset = (unsigned HOST_WIDE_INT) targetm.min_anchor_offset;
6900   range = max_offset - min_offset + 1;
6901   if (range == 0)
6902     offset = 0;
6903   else
6904     {
6905       bias = 1 << (GET_MODE_BITSIZE (ptr_mode) - 1);
6906       if (offset < 0)
6907         {
6908           delta = -(unsigned HOST_WIDE_INT) offset + max_offset;
6909           delta -= delta % range;
6910           if (delta > bias)
6911             delta = bias;
6912           offset = (HOST_WIDE_INT) (-delta);
6913         }
6914       else
6915         {
6916           delta = (unsigned HOST_WIDE_INT) offset - min_offset;
6917           delta -= delta % range;
6918           if (delta > bias - 1)
6919             delta = bias - 1;
6920           offset = (HOST_WIDE_INT) delta;
6921         }
6922     }
6923
6924   /* Do a binary search to see if there's already an anchor we can use.
6925      Set BEGIN to the new anchor's index if not.  */
6926   begin = 0;
6927   end = VEC_length (rtx, block->anchors);
6928   while (begin != end)
6929     {
6930       middle = (end + begin) / 2;
6931       anchor = VEC_index (rtx, block->anchors, middle);
6932       if (SYMBOL_REF_BLOCK_OFFSET (anchor) > offset)
6933         end = middle;
6934       else if (SYMBOL_REF_BLOCK_OFFSET (anchor) < offset)
6935         begin = middle + 1;
6936       else if (SYMBOL_REF_TLS_MODEL (anchor) > model)
6937         end = middle;
6938       else if (SYMBOL_REF_TLS_MODEL (anchor) < model)
6939         begin = middle + 1;
6940       else
6941         return anchor;
6942     }
6943
6944   /* Create a new anchor with a unique label.  */
6945   ASM_GENERATE_INTERNAL_LABEL (label, "LANCHOR", anchor_labelno++);
6946   anchor = create_block_symbol (ggc_strdup (label), block, offset);
6947   SYMBOL_REF_FLAGS (anchor) |= SYMBOL_FLAG_LOCAL | SYMBOL_FLAG_ANCHOR;
6948   SYMBOL_REF_FLAGS (anchor) |= model << SYMBOL_FLAG_TLS_SHIFT;
6949
6950   /* Insert it at index BEGIN.  */
6951   VEC_safe_insert (rtx, gc, block->anchors, begin, anchor);
6952   return anchor;
6953 }
6954
6955 /* Output the objects in BLOCK.  */
6956
6957 static void
6958 output_object_block (struct object_block *block)
6959 {
6960   struct constant_descriptor_rtx *desc;
6961   unsigned int i;
6962   HOST_WIDE_INT offset;
6963   tree decl;
6964   rtx symbol;
6965
6966   if (block->objects == NULL)
6967     return;
6968
6969   /* Switch to the section and make sure that the first byte is
6970      suitably aligned.  */
6971   switch_to_section (block->sect);
6972   assemble_align (block->alignment);
6973
6974   /* Define the values of all anchors relative to the current section
6975      position.  */
6976   for (i = 0; VEC_iterate (rtx, block->anchors, i, symbol); i++)
6977     targetm.asm_out.output_anchor (symbol);
6978
6979   /* Output the objects themselves.  */
6980   offset = 0;
6981   for (i = 0; VEC_iterate (rtx, block->objects, i, symbol); i++)
6982     {
6983       /* Move to the object's offset, padding with zeros if necessary.  */
6984       assemble_zeros (SYMBOL_REF_BLOCK_OFFSET (symbol) - offset);
6985       offset = SYMBOL_REF_BLOCK_OFFSET (symbol);
6986       if (CONSTANT_POOL_ADDRESS_P (symbol))
6987         {
6988           desc = SYMBOL_REF_CONSTANT (symbol);
6989           output_constant_pool_1 (desc, 1);
6990           offset += GET_MODE_SIZE (desc->mode);
6991         }
6992       else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol))
6993         {
6994           decl = SYMBOL_REF_DECL (symbol);
6995           assemble_constant_contents (decl, XSTR (symbol, 0),
6996                                       get_constant_alignment (decl));
6997           offset += get_constant_size (decl);
6998         }
6999       else
7000         {
7001           decl = SYMBOL_REF_DECL (symbol);
7002           assemble_variable_contents (decl, XSTR (symbol, 0), false);
7003           offset += tree_low_cst (DECL_SIZE_UNIT (decl), 1);
7004         }
7005     }
7006 }
7007
7008 /* A htab_traverse callback used to call output_object_block for
7009    each member of object_block_htab.  */
7010
7011 static int
7012 output_object_block_htab (void **slot, void *data ATTRIBUTE_UNUSED)
7013 {
7014   output_object_block ((struct object_block *) (*slot));
7015   return 1;
7016 }
7017
7018 /* Output the definitions of all object_blocks.  */
7019
7020 void
7021 output_object_blocks (void)
7022 {
7023   htab_traverse (object_block_htab, output_object_block_htab, NULL);
7024 }
7025
7026 /* This function provides a possible implementation of the
7027    TARGET_ASM_RECORD_GCC_SWITCHES target hook for ELF targets.  When triggered
7028    by -frecord-gcc-switches it creates a new mergeable, string section in the
7029    assembler output file called TARGET_ASM_RECORD_GCC_SWITCHES_SECTION which
7030    contains the switches in ASCII format.
7031
7032    FIXME: This code does not correctly handle double quote characters
7033    that appear inside strings, (it strips them rather than preserving them).
7034    FIXME: ASM_OUTPUT_ASCII, as defined in config/elfos.h will not emit NUL
7035    characters - instead it treats them as sub-string separators.  Since
7036    we want to emit NUL strings terminators into the object file we have to use
7037    ASM_OUTPUT_SKIP.  */
7038
7039 int
7040 elf_record_gcc_switches (print_switch_type type, const char * name)
7041 {
7042   static char buffer[1024];
7043
7044   /* This variable is used as part of a simplistic heuristic to detect
7045      command line switches which take an argument:
7046
7047        "If a command line option does not start with a dash then
7048         it is an argument for the previous command line option."
7049
7050      This fails in the case of the command line option which is the name
7051      of the file to compile, but otherwise it is pretty reasonable.  */
7052   static bool previous_name_held_back = FALSE;
7053
7054   switch (type)
7055     {
7056     case SWITCH_TYPE_PASSED:
7057       if (* name != '-')
7058         {
7059           if (previous_name_held_back)
7060             {
7061               unsigned int len = strlen (buffer);
7062
7063               snprintf (buffer + len, sizeof buffer - len, " %s", name);
7064               ASM_OUTPUT_ASCII (asm_out_file, buffer, strlen (buffer));
7065               ASM_OUTPUT_SKIP (asm_out_file, (unsigned HOST_WIDE_INT) 1);
7066               previous_name_held_back = FALSE;
7067             }
7068           else
7069             {
7070               strncpy (buffer, name, sizeof buffer);
7071               ASM_OUTPUT_ASCII (asm_out_file, buffer, strlen (buffer));
7072               ASM_OUTPUT_SKIP (asm_out_file, (unsigned HOST_WIDE_INT) 1);
7073             }
7074         }
7075       else
7076         {
7077           if (previous_name_held_back)
7078             {
7079               ASM_OUTPUT_ASCII (asm_out_file, buffer, strlen (buffer));
7080               ASM_OUTPUT_SKIP (asm_out_file, (unsigned HOST_WIDE_INT) 1);
7081             }
7082
7083           strncpy (buffer, name, sizeof buffer);
7084           previous_name_held_back = TRUE;
7085         }
7086       break;
7087
7088     case SWITCH_TYPE_DESCRIPTIVE:
7089       if (name == NULL)
7090         {
7091           /* Distinguish between invocations where name is NULL.  */
7092           static bool started = false;
7093
7094           if (started)
7095             {
7096               if (previous_name_held_back)
7097                 {
7098                   ASM_OUTPUT_ASCII (asm_out_file, buffer, strlen (buffer));
7099                   ASM_OUTPUT_SKIP (asm_out_file, (unsigned HOST_WIDE_INT) 1);
7100                 }
7101             }
7102           else
7103             {
7104               section * sec;
7105
7106               sec = get_section (targetm.asm_out.record_gcc_switches_section,
7107                                  SECTION_DEBUG
7108                                  | SECTION_MERGE
7109                                  | SECTION_STRINGS
7110                                  | (SECTION_ENTSIZE & 1),
7111                                  NULL);
7112               switch_to_section (sec);
7113               started = true;
7114             }
7115         }
7116
7117     default:
7118       break;
7119     }
7120
7121   /* The return value is currently ignored by the caller, but must be 0.
7122      For -fverbose-asm the return value would be the number of characters
7123      emitted into the assembler file.  */
7124   return 0;
7125 }
7126
7127 /* Emit text to declare externally defined symbols. It is needed to
7128    properly support non-default visibility.  */
7129 void
7130 default_elf_asm_output_external (FILE *file ATTRIBUTE_UNUSED,
7131                                  tree decl,
7132                                  const char *name ATTRIBUTE_UNUSED)
7133 {
7134   /* We output the name if and only if TREE_SYMBOL_REFERENCED is
7135      set in order to avoid putting out names that are never really
7136      used. */
7137   if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))
7138       && targetm.binds_local_p (decl))
7139     maybe_assemble_visibility (decl);
7140 }
7141
7142 #include "gt-varasm.h"