OSDN Git Service

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