OSDN Git Service

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