OSDN Git Service

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