OSDN Git Service

* alloc-pool.c: Fix comment formatting.
[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 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING.  If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.  */
21
22
23 /* This file handles generation of all the assembler code
24    *except* the instructions of a function.
25    This includes declarations of variables and their initial values.
26
27    We also output the assembler code for constants stored in memory
28    and are responsible for combining constants with the same value.  */
29
30 #include "config.h"
31 #include "system.h"
32 #include "coretypes.h"
33 #include "tm.h"
34 #include "rtl.h"
35 #include "tree.h"
36 #include "flags.h"
37 #include "function.h"
38 #include "expr.h"
39 #include "hard-reg-set.h"
40 #include "regs.h"
41 #include "real.h"
42 #include "output.h"
43 #include "toplev.h"
44 #include "hashtab.h"
45 #include "c-pragma.h"
46 #include "ggc.h"
47 #include "langhooks.h"
48 #include "tm_p.h"
49 #include "debug.h"
50 #include "target.h"
51 #include "cgraph.h"
52
53 #ifdef XCOFF_DEBUGGING_INFO
54 #include "xcoffout.h"           /* Needed for external data
55                                    declarations for e.g. AIX 4.x.  */
56 #endif
57
58 #ifndef TRAMPOLINE_ALIGNMENT
59 #define TRAMPOLINE_ALIGNMENT FUNCTION_BOUNDARY
60 #endif
61
62 #ifndef ASM_STABS_OP
63 #define ASM_STABS_OP "\t.stabs\t"
64 #endif
65
66 /* The (assembler) name of the first globally-visible object output.  */
67 const char *first_global_object_name;
68 const char *weak_global_object_name;
69
70 struct addr_const;
71 struct constant_descriptor_rtx;
72 struct rtx_const;
73 struct pool_constant;
74
75 #define MAX_RTX_HASH_TABLE 61
76
77 struct varasm_status GTY(())
78 {
79   /* Hash facility for making memory-constants
80      from constant rtl-expressions.  It is used on RISC machines
81      where immediate integer arguments and constant addresses are restricted
82      so that such constants must be stored in memory.
83
84      This pool of constants is reinitialized for each function
85      so each function gets its own constants-pool that comes right before
86      it.  */
87   struct constant_descriptor_rtx ** GTY ((length ("MAX_RTX_HASH_TABLE")))
88     x_const_rtx_hash_table;
89   struct pool_constant ** GTY ((length ("MAX_RTX_HASH_TABLE")))
90     x_const_rtx_sym_hash_table;
91
92   /* Pointers to first and last constant in pool.  */
93   struct pool_constant *x_first_pool;
94   struct pool_constant *x_last_pool;
95
96   /* Current offset in constant pool (does not include any machine-specific
97      header).  */
98   HOST_WIDE_INT x_pool_offset;
99
100   /* Number of tree-constants deferred during the expansion of this
101      function.  */
102   unsigned int deferred_constants;
103 };
104
105 #define const_rtx_hash_table (cfun->varasm->x_const_rtx_hash_table)
106 #define const_rtx_sym_hash_table (cfun->varasm->x_const_rtx_sym_hash_table)
107 #define first_pool (cfun->varasm->x_first_pool)
108 #define last_pool (cfun->varasm->x_last_pool)
109 #define pool_offset (cfun->varasm->x_pool_offset)
110 #define n_deferred_constants (cfun->varasm->deferred_constants)
111
112 /* Number for making the label on the next
113    constant that is stored in memory.  */
114
115 static GTY(()) int const_labelno;
116
117 /* Number for making the label on the next
118    static variable internal to a function.  */
119
120 static GTY(()) int var_labelno;
121
122 /* Carry information from ASM_DECLARE_OBJECT_NAME
123    to ASM_FINISH_DECLARE_OBJECT.  */
124
125 int size_directive_output;
126
127 /* The last decl for which assemble_variable was called,
128    if it did ASM_DECLARE_OBJECT_NAME.
129    If the last call to assemble_variable didn't do that,
130    this holds 0.  */
131
132 tree last_assemble_variable_decl;
133
134 /* RTX_UNCHANGING_P in a MEM can mean it is stored into, for initialization.
135    So giving constant the alias set for the type will allow such
136    initializations to appear to conflict with the load of the constant.  We
137    avoid this by giving all constants an alias set for just constants.
138    Since there will be no stores to that alias set, nothing will ever
139    conflict with them.  */
140
141 static HOST_WIDE_INT const_alias_set;
142
143 static const char *strip_reg_name       PARAMS ((const char *));
144 static int contains_pointers_p          PARAMS ((tree));
145 static void decode_addr_const           PARAMS ((tree, struct addr_const *));
146 static hashval_t const_desc_hash        PARAMS ((const void *));
147 static int const_desc_eq                PARAMS ((const void *, const void *));
148 static hashval_t const_hash_1           PARAMS ((const tree));
149 static int compare_constant             PARAMS ((const tree, const tree));
150 static tree copy_constant               PARAMS ((tree));
151 static void output_constant_def_contents  PARAMS ((rtx));
152 static void decode_rtx_const            PARAMS ((enum machine_mode, rtx,
153                                                struct rtx_const *));
154 static unsigned int const_hash_rtx      PARAMS ((enum machine_mode, rtx));
155 static int compare_constant_rtx
156   PARAMS ((enum machine_mode, rtx, struct constant_descriptor_rtx *));
157 static struct constant_descriptor_rtx * record_constant_rtx
158   PARAMS ((enum machine_mode, rtx));
159 static struct pool_constant *find_pool_constant PARAMS ((struct function *, rtx));
160 static void mark_constant_pool          PARAMS ((void));
161 static void mark_constants              PARAMS ((rtx));
162 static int mark_constant                PARAMS ((rtx *current_rtx, void *data));
163 static int output_addressed_constants   PARAMS ((tree));
164 static unsigned HOST_WIDE_INT array_size_for_constructor PARAMS ((tree));
165 static unsigned min_align               PARAMS ((unsigned, unsigned));
166 static void output_constructor          PARAMS ((tree, unsigned HOST_WIDE_INT,
167                                                  unsigned int));
168 static void globalize_decl              PARAMS ((tree));
169 static void maybe_assemble_visibility   PARAMS ((tree));
170 static int in_named_entry_eq            PARAMS ((const void *, const void *));
171 static hashval_t in_named_entry_hash    PARAMS ((const void *));
172 #ifdef ASM_OUTPUT_BSS
173 static void asm_output_bss              PARAMS ((FILE *, tree, const char *,
174                                                 unsigned HOST_WIDE_INT,
175                                                 unsigned HOST_WIDE_INT));
176 #endif
177 #ifdef BSS_SECTION_ASM_OP
178 #ifdef ASM_OUTPUT_ALIGNED_BSS
179 static void asm_output_aligned_bss
180   PARAMS ((FILE *, tree, const char *,
181            unsigned HOST_WIDE_INT, int)) ATTRIBUTE_UNUSED;
182 #endif
183 #endif /* BSS_SECTION_ASM_OP */
184 static bool asm_emit_uninitialised      PARAMS ((tree, const char*,
185                                                  unsigned HOST_WIDE_INT,
186                                                  unsigned HOST_WIDE_INT));
187 static void mark_weak                   PARAMS ((tree));
188 \f
189 enum in_section { no_section, in_text, in_data, in_named
190 #ifdef BSS_SECTION_ASM_OP
191   , in_bss
192 #endif
193 #ifdef CTORS_SECTION_ASM_OP
194   , in_ctors
195 #endif
196 #ifdef DTORS_SECTION_ASM_OP
197   , in_dtors
198 #endif
199 #ifdef READONLY_DATA_SECTION_ASM_OP
200   , in_readonly_data
201 #endif
202 #ifdef EXTRA_SECTIONS
203   , EXTRA_SECTIONS
204 #endif
205 };
206 static GTY(()) enum in_section in_section = no_section;
207
208 /* Return a nonzero value if DECL has a section attribute.  */
209 #ifndef IN_NAMED_SECTION
210 #define IN_NAMED_SECTION(DECL) \
211   ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
212    && DECL_SECTION_NAME (DECL) != NULL_TREE)
213 #endif
214
215 /* Text of section name when in_section == in_named.  */
216 static GTY(()) const char *in_named_name;
217
218 /* Hash table of flags that have been used for a particular named section.  */
219
220 struct in_named_entry GTY(())
221 {
222   const char *name;
223   unsigned int flags;
224   bool declared;
225 };
226
227 static GTY((param_is (struct in_named_entry))) htab_t in_named_htab;
228
229 /* Define functions like text_section for any extra sections.  */
230 #ifdef EXTRA_SECTION_FUNCTIONS
231 EXTRA_SECTION_FUNCTIONS
232 #endif
233
234 /* Tell assembler to switch to text section.  */
235
236 void
237 text_section ()
238 {
239   if (in_section != in_text)
240     {
241       in_section = in_text;
242 #ifdef TEXT_SECTION
243       TEXT_SECTION ();
244 #else
245       fprintf (asm_out_file, "%s\n", TEXT_SECTION_ASM_OP);
246 #endif
247     }
248 }
249
250 /* Tell assembler to switch to data section.  */
251
252 void
253 data_section ()
254 {
255   if (in_section != in_data)
256     {
257       in_section = in_data;
258       if (flag_shared_data)
259         {
260 #ifdef SHARED_SECTION_ASM_OP
261           fprintf (asm_out_file, "%s\n", SHARED_SECTION_ASM_OP);
262 #else
263           fprintf (asm_out_file, "%s\n", DATA_SECTION_ASM_OP);
264 #endif
265         }
266       else
267         fprintf (asm_out_file, "%s\n", DATA_SECTION_ASM_OP);
268     }
269 }
270
271 /* Tell assembler to switch to read-only data section.  This is normally
272    the text section.  */
273
274 void
275 readonly_data_section ()
276 {
277 #ifdef READONLY_DATA_SECTION
278   READONLY_DATA_SECTION ();  /* Note this can call data_section.  */
279 #else
280 #ifdef READONLY_DATA_SECTION_ASM_OP
281   if (in_section != in_readonly_data)
282     {
283       in_section = in_readonly_data;
284       fputs (READONLY_DATA_SECTION_ASM_OP, asm_out_file);
285       fputc ('\n', asm_out_file);
286     }
287 #else
288   text_section ();
289 #endif
290 #endif
291 }
292
293 /* Determine if we're in the text section.  */
294
295 int
296 in_text_section ()
297 {
298   return in_section == in_text;
299 }
300
301 /* Determine if we're in the data section.  */
302
303 int
304 in_data_section ()
305 {
306   return in_section == in_data;
307 }
308
309 /* Helper routines for maintaining in_named_htab.  */
310
311 static int
312 in_named_entry_eq (p1, p2)
313      const void *p1;
314      const void *p2;
315 {
316   const struct in_named_entry *old = p1;
317   const char *new = p2;
318
319   return strcmp (old->name, new) == 0;
320 }
321
322 static hashval_t
323 in_named_entry_hash (p)
324      const void *p;
325 {
326   const struct in_named_entry *old = p;
327   return htab_hash_string (old->name);
328 }
329
330 /* If SECTION has been seen before as a named section, return the flags
331    that were used.  Otherwise, return 0.  Note, that 0 is a perfectly valid
332    set of flags for a section to have, so 0 does not mean that the section
333    has not been seen.  */
334
335 unsigned int
336 get_named_section_flags (section)
337      const char *section;
338 {
339   struct in_named_entry **slot;
340
341   slot = (struct in_named_entry **)
342     htab_find_slot_with_hash (in_named_htab, section,
343                               htab_hash_string (section), NO_INSERT);
344
345   return slot ? (*slot)->flags : 0;
346 }
347
348 /* Returns true if the section has been declared before.   Sets internal
349    flag on this section in in_named_hash so subsequent calls on this
350    section will return false.  */
351
352 bool
353 named_section_first_declaration (name)
354      const char *name;
355 {
356   struct in_named_entry **slot;
357
358   slot = (struct in_named_entry **)
359     htab_find_slot_with_hash (in_named_htab, name,
360                               htab_hash_string (name), NO_INSERT);
361   if (! (*slot)->declared)
362     {
363       (*slot)->declared = true;
364       return true;
365     }
366   else
367     {
368       return false;
369     }
370 }
371
372
373 /* Record FLAGS for SECTION.  If SECTION was previously recorded with a
374    different set of flags, return false.  */
375
376 bool
377 set_named_section_flags (section, flags)
378      const char *section;
379      unsigned int flags;
380 {
381   struct in_named_entry **slot, *entry;
382
383   slot = (struct in_named_entry **)
384     htab_find_slot_with_hash (in_named_htab, section,
385                               htab_hash_string (section), INSERT);
386   entry = *slot;
387
388   if (!entry)
389     {
390       entry = (struct in_named_entry *) ggc_alloc (sizeof (*entry));
391       *slot = entry;
392       entry->name = ggc_strdup (section);
393       entry->flags = flags;
394       entry->declared = false;
395     }
396   else if (entry->flags != flags)
397     return false;
398
399   return true;
400 }
401
402 /* Tell assembler to change to section NAME with attributes FLAGS.  */
403
404 void
405 named_section_flags (name, flags)
406      const char *name;
407      unsigned int flags;
408 {
409   if (in_section != in_named || strcmp (name, in_named_name) != 0)
410     {
411       if (! set_named_section_flags (name, flags))
412         abort ();
413
414       (*targetm.asm_out.named_section) (name, flags);
415
416       if (flags & SECTION_FORGET)
417         in_section = no_section;
418       else
419         {
420           in_named_name = ggc_strdup (name);
421           in_section = in_named;
422         }
423     }
424 }
425
426 /* Tell assembler to change to section NAME for DECL.
427    If DECL is NULL, just switch to section NAME.
428    If NAME is NULL, get the name from DECL.
429    If RELOC is 1, the initializer for DECL contains relocs.  */
430
431 void
432 named_section (decl, name, reloc)
433      tree decl;
434      const char *name;
435      int reloc;
436 {
437   unsigned int flags;
438
439   if (decl != NULL_TREE && !DECL_P (decl))
440     abort ();
441   if (name == NULL)
442     name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
443
444   flags = (* targetm.section_type_flags) (decl, name, reloc);
445
446   /* Sanity check user variables for flag changes.  Non-user
447      section flag changes will abort in named_section_flags.
448      However, don't complain if SECTION_OVERRIDE is set.
449      We trust that the setter knows that it is safe to ignore
450      the default flags for this decl.  */
451   if (decl && ! set_named_section_flags (name, flags))
452     {
453       flags = get_named_section_flags (name);
454       if ((flags & SECTION_OVERRIDE) == 0)
455         error_with_decl (decl, "%s causes a section type conflict");
456     }
457
458   named_section_flags (name, flags);
459 }
460
461 /* If required, set DECL_SECTION_NAME to a unique name.  */
462
463 void
464 resolve_unique_section (decl, reloc, flag_function_or_data_sections)
465      tree decl;
466      int reloc ATTRIBUTE_UNUSED;
467      int flag_function_or_data_sections;
468 {
469   if (DECL_SECTION_NAME (decl) == NULL_TREE
470       && targetm.have_named_sections
471       && (flag_function_or_data_sections
472           || DECL_ONE_ONLY (decl)))
473     (*targetm.asm_out.unique_section) (decl, reloc);
474 }
475
476 #ifdef BSS_SECTION_ASM_OP
477
478 /* Tell the assembler to switch to the bss section.  */
479
480 void
481 bss_section ()
482 {
483   if (in_section != in_bss)
484     {
485 #ifdef SHARED_BSS_SECTION_ASM_OP
486       if (flag_shared_data)
487         fprintf (asm_out_file, "%s\n", SHARED_BSS_SECTION_ASM_OP);
488       else
489 #endif
490         fprintf (asm_out_file, "%s\n", BSS_SECTION_ASM_OP);
491
492       in_section = in_bss;
493     }
494 }
495
496 #ifdef ASM_OUTPUT_BSS
497
498 /* Utility function for ASM_OUTPUT_BSS for targets to use if
499    they don't support alignments in .bss.
500    ??? It is believed that this function will work in most cases so such
501    support is localized here.  */
502
503 static void
504 asm_output_bss (file, decl, name, size, rounded)
505      FILE *file;
506      tree decl ATTRIBUTE_UNUSED;
507      const char *name;
508      unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED, rounded;
509 {
510   (*targetm.asm_out.globalize_label) (file, name);
511   bss_section ();
512 #ifdef ASM_DECLARE_OBJECT_NAME
513   last_assemble_variable_decl = decl;
514   ASM_DECLARE_OBJECT_NAME (file, name, decl);
515 #else
516   /* Standard thing is just output label for the object.  */
517   ASM_OUTPUT_LABEL (file, name);
518 #endif /* ASM_DECLARE_OBJECT_NAME */
519   ASM_OUTPUT_SKIP (file, rounded ? rounded : 1);
520 }
521
522 #endif
523
524 #ifdef ASM_OUTPUT_ALIGNED_BSS
525
526 /* Utility function for targets to use in implementing
527    ASM_OUTPUT_ALIGNED_BSS.
528    ??? It is believed that this function will work in most cases so such
529    support is localized here.  */
530
531 static void
532 asm_output_aligned_bss (file, decl, name, size, align)
533      FILE *file;
534      tree decl ATTRIBUTE_UNUSED;
535      const char *name;
536      unsigned HOST_WIDE_INT size;
537      int align;
538 {
539   bss_section ();
540   ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
541 #ifdef ASM_DECLARE_OBJECT_NAME
542   last_assemble_variable_decl = decl;
543   ASM_DECLARE_OBJECT_NAME (file, name, decl);
544 #else
545   /* Standard thing is just output label for the object.  */
546   ASM_OUTPUT_LABEL (file, name);
547 #endif /* ASM_DECLARE_OBJECT_NAME */
548   ASM_OUTPUT_SKIP (file, size ? size : 1);
549 }
550
551 #endif
552
553 #endif /* BSS_SECTION_ASM_OP */
554
555 /* Switch to the section for function DECL.
556
557    If DECL is NULL_TREE, switch to the text section.
558    ??? It's not clear that we will ever be passed NULL_TREE, but it's
559    safer to handle it.  */
560
561 void
562 function_section (decl)
563      tree decl;
564 {
565   if (decl != NULL_TREE
566       && DECL_SECTION_NAME (decl) != NULL_TREE)
567     named_section (decl, (char *) 0, 0);
568   else
569     text_section ();
570 }
571
572 /* Switch to section for variable DECL.  RELOC is the same as the
573    argument to SELECT_SECTION.  */
574
575 void
576 variable_section (decl, reloc)
577      tree decl;
578      int reloc;
579 {
580   if (IN_NAMED_SECTION (decl))
581     named_section (decl, NULL, reloc);
582   else
583     (*targetm.asm_out.select_section) (decl, reloc, DECL_ALIGN (decl));
584 }
585
586 /* Tell assembler to switch to the section for string merging.  */
587
588 void
589 mergeable_string_section (decl, align, flags)
590      tree decl ATTRIBUTE_UNUSED;
591      unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED;
592      unsigned int flags ATTRIBUTE_UNUSED;
593 {
594 #ifdef HAVE_GAS_SHF_MERGE
595   if (flag_merge_constants
596       && TREE_CODE (decl) == STRING_CST
597       && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
598       && align <= 256
599       && TREE_STRING_LENGTH (decl) >= int_size_in_bytes (TREE_TYPE (decl)))
600     {
601       enum machine_mode mode;
602       unsigned int modesize;
603       const char *str;
604       int i, j, len, unit;
605       char name[30];
606
607       mode = TYPE_MODE (TREE_TYPE (TREE_TYPE (decl)));
608       modesize = GET_MODE_BITSIZE (mode);
609       if (modesize >= 8 && modesize <= 256
610           && (modesize & (modesize - 1)) == 0)
611         {
612           if (align < modesize)
613             align = modesize;
614
615           str = TREE_STRING_POINTER (decl);
616           len = TREE_STRING_LENGTH (decl);
617           unit = GET_MODE_SIZE (mode);
618
619           /* Check for embedded NUL characters.  */
620           for (i = 0; i < len; i += unit)
621             {
622               for (j = 0; j < unit; j++)
623                 if (str[i + j] != '\0')
624                   break;
625               if (j == unit)
626                 break;
627             }
628           if (i == len - unit)
629             {
630               sprintf (name, ".rodata.str%d.%d", modesize / 8,
631                        (int) (align / 8));
632               flags |= (modesize / 8) | SECTION_MERGE | SECTION_STRINGS;
633               if (!i && modesize < align)
634                 {
635                   /* A "" string with requested alignment greater than
636                      character size might cause a problem:
637                      if some other string required even bigger
638                      alignment than "", then linker might think the
639                      "" is just part of padding after some other string
640                      and not put it into the hash table initially.
641                      But this means "" could have smaller alignment
642                      than requested.  */
643 #ifdef ASM_OUTPUT_SECTION_START
644                   named_section_flags (name, flags);
645                   ASM_OUTPUT_SECTION_START (asm_out_file);
646 #else
647                   readonly_data_section ();
648 #endif
649                   return;
650                 }
651
652               named_section_flags (name, flags);
653               return;
654             }
655         }
656     }
657 #endif
658   readonly_data_section ();
659 }
660
661 /* Tell assembler to switch to the section for constant merging.  */
662
663 void
664 mergeable_constant_section (mode, align, flags)
665      enum machine_mode mode ATTRIBUTE_UNUSED;
666      unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED;
667      unsigned int flags ATTRIBUTE_UNUSED;
668 {
669 #ifdef HAVE_GAS_SHF_MERGE
670   unsigned int modesize = GET_MODE_BITSIZE (mode);
671
672   if (flag_merge_constants
673       && mode != VOIDmode
674       && mode != BLKmode
675       && modesize <= align
676       && align >= 8
677       && align <= 256
678       && (align & (align - 1)) == 0)
679     {
680       char name[24];
681
682       sprintf (name, ".rodata.cst%d", (int) (align / 8));
683       flags |= (align / 8) | SECTION_MERGE;
684       named_section_flags (name, flags);
685       return;
686     }
687 #endif
688   readonly_data_section ();
689 }
690 \f
691 /* Given NAME, a putative register name, discard any customary prefixes.  */
692
693 static const char *
694 strip_reg_name (name)
695      const char *name;
696 {
697 #ifdef REGISTER_PREFIX
698   if (!strncmp (name, REGISTER_PREFIX, strlen (REGISTER_PREFIX)))
699     name += strlen (REGISTER_PREFIX);
700 #endif
701   if (name[0] == '%' || name[0] == '#')
702     name++;
703   return name;
704 }
705 \f
706 /* Decode an `asm' spec for a declaration as a register name.
707    Return the register number, or -1 if nothing specified,
708    or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
709    or -3 if ASMSPEC is `cc' and is not recognized,
710    or -4 if ASMSPEC is `memory' and is not recognized.
711    Accept an exact spelling or a decimal number.
712    Prefixes such as % are optional.  */
713
714 int
715 decode_reg_name (asmspec)
716      const char *asmspec;
717 {
718   if (asmspec != 0)
719     {
720       int i;
721
722       /* Get rid of confusing prefixes.  */
723       asmspec = strip_reg_name (asmspec);
724
725       /* Allow a decimal number as a "register name".  */
726       for (i = strlen (asmspec) - 1; i >= 0; i--)
727         if (! ISDIGIT (asmspec[i]))
728           break;
729       if (asmspec[0] != 0 && i < 0)
730         {
731           i = atoi (asmspec);
732           if (i < FIRST_PSEUDO_REGISTER && i >= 0)
733             return i;
734           else
735             return -2;
736         }
737
738       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
739         if (reg_names[i][0]
740             && ! strcmp (asmspec, strip_reg_name (reg_names[i])))
741           return i;
742
743 #ifdef ADDITIONAL_REGISTER_NAMES
744       {
745         static const struct { const char *const name; const int number; } table[]
746           = ADDITIONAL_REGISTER_NAMES;
747
748         for (i = 0; i < (int) ARRAY_SIZE (table); i++)
749           if (! strcmp (asmspec, table[i].name))
750             return table[i].number;
751       }
752 #endif /* ADDITIONAL_REGISTER_NAMES */
753
754       if (!strcmp (asmspec, "memory"))
755         return -4;
756
757       if (!strcmp (asmspec, "cc"))
758         return -3;
759
760       return -2;
761     }
762
763   return -1;
764 }
765 \f
766 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL.  DECL should
767    have static storage duration.  In other words, it should not be an
768    automatic variable, including PARM_DECLs.
769
770    There is, however, one exception: this function handles variables
771    explicitly placed in a particular register by the user.
772
773    ASMSPEC, if not 0, is the string which the user specified as the
774    assembler symbol name.
775
776    This is never called for PARM_DECL nodes.  */
777
778 void
779 make_decl_rtl (decl, asmspec)
780      tree decl;
781      const char *asmspec;
782 {
783   int top_level = (DECL_CONTEXT (decl) == NULL_TREE);
784   const char *name = 0;
785   const char *new_name = 0;
786   int reg_number;
787   rtx x;
788
789   /* Check that we are not being given an automatic variable.  */
790   /* A weak alias has TREE_PUBLIC set but not the other bits.  */
791   if (TREE_CODE (decl) == PARM_DECL
792       || TREE_CODE (decl) == RESULT_DECL
793       || (TREE_CODE (decl) == VAR_DECL
794           && !TREE_STATIC (decl)
795           && !TREE_PUBLIC (decl)
796           && !DECL_EXTERNAL (decl)
797           && !DECL_REGISTER (decl)))
798     abort ();
799   /* And that we were not given a type or a label.  */
800   else if (TREE_CODE (decl) == TYPE_DECL
801            || TREE_CODE (decl) == LABEL_DECL)
802     abort ();
803
804   /* For a duplicate declaration, we can be called twice on the
805      same DECL node.  Don't discard the RTL already made.  */
806   if (DECL_RTL_SET_P (decl))
807     {
808       /* If the old RTL had the wrong mode, fix the mode.  */
809       if (GET_MODE (DECL_RTL (decl)) != DECL_MODE (decl))
810         SET_DECL_RTL (decl, adjust_address_nv (DECL_RTL (decl),
811                                                DECL_MODE (decl), 0));
812
813       /* ??? Another way to do this would be to maintain a hashed
814          table of such critters.  Instead of adding stuff to a DECL
815          to give certain attributes to it, we could use an external
816          hash map from DECL to set of attributes.  */
817
818       /* Let the target reassign the RTL if it wants.
819          This is necessary, for example, when one machine specific
820          decl attribute overrides another.  */
821       (* targetm.encode_section_info) (decl, DECL_RTL (decl), false);
822       return;
823     }
824
825   new_name = name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
826
827   reg_number = decode_reg_name (asmspec);
828   if (reg_number == -2)
829     {
830       /* ASMSPEC is given, and not the name of a register.  Mark the
831          name with a star so assemble_name won't munge it.  */
832       char *starred = alloca (strlen (asmspec) + 2);
833       starred[0] = '*';
834       strcpy (starred + 1, asmspec);
835       new_name = starred;
836     }
837
838   if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
839     {
840       /* First detect errors in declaring global registers.  */
841       if (reg_number == -1)
842         error_with_decl (decl, "register name not specified for `%s'");
843       else if (reg_number < 0)
844         error_with_decl (decl, "invalid register name for `%s'");
845       else if (TYPE_MODE (TREE_TYPE (decl)) == BLKmode)
846         error_with_decl (decl,
847                          "data type of `%s' isn't suitable for a register");
848       else if (! HARD_REGNO_MODE_OK (reg_number, TYPE_MODE (TREE_TYPE (decl))))
849         error_with_decl (decl,
850                          "register specified for `%s' isn't suitable for data type");
851       /* Now handle properly declared static register variables.  */
852       else
853         {
854           int nregs;
855
856           if (DECL_INITIAL (decl) != 0 && TREE_STATIC (decl))
857             {
858               DECL_INITIAL (decl) = 0;
859               error ("global register variable has initial value");
860             }
861           if (TREE_THIS_VOLATILE (decl))
862             warning ("volatile register variables don't work as you might wish");
863
864           /* If the user specified one of the eliminables registers here,
865              e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
866              confused with that register and be eliminated.  This usage is
867              somewhat suspect...  */
868
869           SET_DECL_RTL (decl, gen_rtx_raw_REG (DECL_MODE (decl), reg_number));
870           ORIGINAL_REGNO (DECL_RTL (decl)) = reg_number;
871           REG_USERVAR_P (DECL_RTL (decl)) = 1;
872
873           if (TREE_STATIC (decl))
874             {
875               /* Make this register global, so not usable for anything
876                  else.  */
877 #ifdef ASM_DECLARE_REGISTER_GLOBAL
878               ASM_DECLARE_REGISTER_GLOBAL (asm_out_file, decl, reg_number, name);
879 #endif
880               nregs = HARD_REGNO_NREGS (reg_number, DECL_MODE (decl));
881               while (nregs > 0)
882                 globalize_reg (reg_number + --nregs);
883             }
884
885           /* As a register variable, it has no section.  */
886           return;
887         }
888     }
889
890   /* Now handle ordinary static variables and functions (in memory).
891      Also handle vars declared register invalidly.  */
892
893   if (reg_number >= 0 || reg_number == -3)
894     error_with_decl (decl,
895                      "register name given for non-register variable `%s'");
896
897   /* Specifying a section attribute on a variable forces it into a
898      non-.bss section, and thus it cannot be common.  */
899   if (TREE_CODE (decl) == VAR_DECL
900       && DECL_SECTION_NAME (decl) != NULL_TREE
901       && DECL_INITIAL (decl) == NULL_TREE
902       && DECL_COMMON (decl))
903     DECL_COMMON (decl) = 0;
904
905   /* Variables can't be both common and weak.  */
906   if (TREE_CODE (decl) == VAR_DECL && DECL_WEAK (decl))
907     DECL_COMMON (decl) = 0;
908
909   /* Can't use just the variable's own name for a variable
910      whose scope is less than the whole file, unless it's a member
911      of a local class (which will already be unambiguous).
912      Concatenate a distinguishing number.  */
913   if (!top_level && !TREE_PUBLIC (decl)
914       && ! (DECL_CONTEXT (decl) && TYPE_P (DECL_CONTEXT (decl)))
915       && asmspec == 0
916       && name == IDENTIFIER_POINTER (DECL_NAME (decl)))
917     {
918       char *label;
919
920       ASM_FORMAT_PRIVATE_NAME (label, name, var_labelno);
921       var_labelno++;
922       new_name = label;
923     }
924
925   if (name != new_name)
926     {
927       SET_DECL_ASSEMBLER_NAME (decl, get_identifier (new_name));
928       name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
929     }
930
931   x = gen_rtx_SYMBOL_REF (Pmode, name);
932   SYMBOL_REF_WEAK (x) = DECL_WEAK (decl);
933   SYMBOL_REF_DECL (x) = decl;
934   
935   x = gen_rtx_MEM (DECL_MODE (decl), x);
936   if (TREE_CODE (decl) != FUNCTION_DECL)
937     set_mem_attributes (x, decl, 1);
938   SET_DECL_RTL (decl, x);
939
940   /* Optionally set flags or add text to the name to record information
941      such as that it is a function name.
942      If the name is changed, the macro ASM_OUTPUT_LABELREF
943      will have to know how to strip this information.  */
944   (* targetm.encode_section_info) (decl, DECL_RTL (decl), true);
945 }
946
947 /* Make the rtl for variable VAR be volatile.
948    Use this only for static variables.  */
949
950 void
951 make_var_volatile (var)
952      tree var;
953 {
954   if (GET_CODE (DECL_RTL (var)) != MEM)
955     abort ();
956
957   MEM_VOLATILE_P (DECL_RTL (var)) = 1;
958 }
959 \f
960 /* Output a string of literal assembler code
961    for an `asm' keyword used between functions.  */
962
963 void
964 assemble_asm (string)
965      tree string;
966 {
967   app_enable ();
968
969   if (TREE_CODE (string) == ADDR_EXPR)
970     string = TREE_OPERAND (string, 0);
971
972   fprintf (asm_out_file, "\t%s\n", TREE_STRING_POINTER (string));
973 }
974
975 /* Record an element in the table of global destructors.  SYMBOL is
976    a SYMBOL_REF of the function to be called; PRIORITY is a number
977    between 0 and MAX_INIT_PRIORITY.  */
978
979 void
980 default_stabs_asm_out_destructor (symbol, priority)
981      rtx symbol;
982      int priority ATTRIBUTE_UNUSED;
983 {
984   /* Tell GNU LD that this is part of the static destructor set.
985      This will work for any system that uses stabs, most usefully
986      aout systems.  */
987   fprintf (asm_out_file, "%s\"___DTOR_LIST__\",22,0,0,", ASM_STABS_OP);
988   assemble_name (asm_out_file, XSTR (symbol, 0));
989   fputc ('\n', asm_out_file);
990 }
991
992 void
993 default_named_section_asm_out_destructor (symbol, priority)
994      rtx symbol;
995      int priority;
996 {
997   const char *section = ".dtors";
998   char buf[16];
999
1000   /* ??? This only works reliably with the GNU linker.  */
1001   if (priority != DEFAULT_INIT_PRIORITY)
1002     {
1003       sprintf (buf, ".dtors.%.5u",
1004                /* Invert the numbering so the linker puts us in the proper
1005                   order; constructors are run from right to left, and the
1006                   linker sorts in increasing order.  */
1007                MAX_INIT_PRIORITY - priority);
1008       section = buf;
1009     }
1010
1011   named_section_flags (section, SECTION_WRITE);
1012   assemble_align (POINTER_SIZE);
1013   assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1014 }
1015
1016 #ifdef DTORS_SECTION_ASM_OP
1017 void
1018 dtors_section ()
1019 {
1020   if (in_section != in_dtors)
1021     {
1022       in_section = in_dtors;
1023       fputs (DTORS_SECTION_ASM_OP, asm_out_file);
1024       fputc ('\n', asm_out_file);
1025     }
1026 }
1027
1028 void
1029 default_dtor_section_asm_out_destructor (symbol, priority)
1030      rtx symbol;
1031      int priority ATTRIBUTE_UNUSED;
1032 {
1033   dtors_section ();
1034   assemble_align (POINTER_SIZE);
1035   assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1036 }
1037 #endif
1038
1039 /* Likewise for global constructors.  */
1040
1041 void
1042 default_stabs_asm_out_constructor (symbol, priority)
1043      rtx symbol;
1044      int priority ATTRIBUTE_UNUSED;
1045 {
1046   /* Tell GNU LD that this is part of the static destructor set.
1047      This will work for any system that uses stabs, most usefully
1048      aout systems.  */
1049   fprintf (asm_out_file, "%s\"___CTOR_LIST__\",22,0,0,", ASM_STABS_OP);
1050   assemble_name (asm_out_file, XSTR (symbol, 0));
1051   fputc ('\n', asm_out_file);
1052 }
1053
1054 void
1055 default_named_section_asm_out_constructor (symbol, priority)
1056      rtx symbol;
1057      int priority;
1058 {
1059   const char *section = ".ctors";
1060   char buf[16];
1061
1062   /* ??? This only works reliably with the GNU linker.  */
1063   if (priority != DEFAULT_INIT_PRIORITY)
1064     {
1065       sprintf (buf, ".ctors.%.5u",
1066                /* Invert the numbering so the linker puts us in the proper
1067                   order; constructors are run from right to left, and the
1068                   linker sorts in increasing order.  */
1069                MAX_INIT_PRIORITY - priority);
1070       section = buf;
1071     }
1072
1073   named_section_flags (section, SECTION_WRITE);
1074   assemble_align (POINTER_SIZE);
1075   assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1076 }
1077
1078 #ifdef CTORS_SECTION_ASM_OP
1079 void
1080 ctors_section ()
1081 {
1082   if (in_section != in_ctors)
1083     {
1084       in_section = in_ctors;
1085       fputs (CTORS_SECTION_ASM_OP, asm_out_file);
1086       fputc ('\n', asm_out_file);
1087     }
1088 }
1089
1090 void
1091 default_ctor_section_asm_out_constructor (symbol, priority)
1092      rtx symbol;
1093      int priority ATTRIBUTE_UNUSED;
1094 {
1095   ctors_section ();
1096   assemble_align (POINTER_SIZE);
1097   assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
1098 }
1099 #endif
1100 \f
1101 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1102    a nonzero value if the constant pool should be output before the
1103    start of the function, or a zero value if the pool should output
1104    after the end of the function.  The default is to put it before the
1105    start.  */
1106
1107 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1108 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1109 #endif
1110
1111 /* Output assembler code for the constant pool of a function and associated
1112    with defining the name of the function.  DECL describes the function.
1113    NAME is the function's name.  For the constant pool, we use the current
1114    constant pool data.  */
1115
1116 void
1117 assemble_start_function (decl, fnname)
1118      tree decl;
1119      const char *fnname;
1120 {
1121   int align;
1122
1123   /* The following code does not need preprocessing in the assembler.  */
1124
1125   app_disable ();
1126
1127   if (CONSTANT_POOL_BEFORE_FUNCTION)
1128     output_constant_pool (fnname, decl);
1129
1130   resolve_unique_section (decl, 0, flag_function_sections);
1131   function_section (decl);
1132
1133   /* Tell assembler to move to target machine's alignment for functions.  */
1134   align = floor_log2 (FUNCTION_BOUNDARY / BITS_PER_UNIT);
1135   if (align < force_align_functions_log)
1136     align = force_align_functions_log;
1137   if (align > 0)
1138     {
1139       ASM_OUTPUT_ALIGN (asm_out_file, align);
1140     }
1141
1142   /* Handle a user-specified function alignment.
1143      Note that we still need to align to FUNCTION_BOUNDARY, as above,
1144      because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all.  */
1145   if (align_functions_log > align
1146       && cfun->function_frequency != FUNCTION_FREQUENCY_UNLIKELY_EXECUTED)
1147     {
1148 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1149       ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file,
1150                                  align_functions_log, align_functions - 1);
1151 #else
1152       ASM_OUTPUT_ALIGN (asm_out_file, align_functions_log);
1153 #endif
1154     }
1155
1156 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1157   ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file, fnname);
1158 #endif
1159
1160   (*debug_hooks->begin_function) (decl);
1161
1162   /* Make function name accessible from other files, if appropriate.  */
1163
1164   if (TREE_PUBLIC (decl))
1165     {
1166       if (! first_global_object_name)
1167         {
1168           const char *p;
1169           char *name;
1170
1171           p = (* targetm.strip_name_encoding) (fnname);
1172           name = xstrdup (p);
1173
1174           if (! DECL_WEAK (decl) && ! DECL_ONE_ONLY (decl))
1175             first_global_object_name = name;
1176           else
1177             weak_global_object_name = name;
1178         }
1179
1180       globalize_decl (decl);
1181
1182       maybe_assemble_visibility (decl);
1183     }
1184
1185   /* Do any machine/system dependent processing of the function name */
1186 #ifdef ASM_DECLARE_FUNCTION_NAME
1187   ASM_DECLARE_FUNCTION_NAME (asm_out_file, fnname, current_function_decl);
1188 #else
1189   /* Standard thing is just output label for the function.  */
1190   ASM_OUTPUT_LABEL (asm_out_file, fnname);
1191 #endif /* ASM_DECLARE_FUNCTION_NAME */
1192 }
1193
1194 /* Output assembler code associated with defining the size of the
1195    function.  DECL describes the function.  NAME is the function's name.  */
1196
1197 void
1198 assemble_end_function (decl, fnname)
1199      tree decl;
1200      const char *fnname;
1201 {
1202 #ifdef ASM_DECLARE_FUNCTION_SIZE
1203   ASM_DECLARE_FUNCTION_SIZE (asm_out_file, fnname, decl);
1204 #endif
1205   if (! CONSTANT_POOL_BEFORE_FUNCTION)
1206     {
1207       output_constant_pool (fnname, decl);
1208       function_section (decl);  /* need to switch back */
1209     }
1210 }
1211 \f
1212 /* Assemble code to leave SIZE bytes of zeros.  */
1213
1214 void
1215 assemble_zeros (size)
1216      unsigned HOST_WIDE_INT size;
1217 {
1218   /* Do no output if -fsyntax-only.  */
1219   if (flag_syntax_only)
1220     return;
1221
1222 #ifdef ASM_NO_SKIP_IN_TEXT
1223   /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1224      so we must output 0s explicitly in the text section.  */
1225   if (ASM_NO_SKIP_IN_TEXT && in_text_section ())
1226     {
1227       unsigned HOST_WIDE_INT i;
1228       for (i = 0; i < size; i++)
1229         assemble_integer (const0_rtx, 1, BITS_PER_UNIT, 1);
1230     }
1231   else
1232 #endif
1233     if (size > 0)
1234       ASM_OUTPUT_SKIP (asm_out_file, size);
1235 }
1236
1237 /* Assemble an alignment pseudo op for an ALIGN-bit boundary.  */
1238
1239 void
1240 assemble_align (align)
1241      int align;
1242 {
1243   if (align > BITS_PER_UNIT)
1244     {
1245       ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
1246     }
1247 }
1248
1249 /* Assemble a string constant with the specified C string as contents.  */
1250
1251 void
1252 assemble_string (p, size)
1253      const char *p;
1254      int size;
1255 {
1256   int pos = 0;
1257   int maximum = 2000;
1258
1259   /* If the string is very long, split it up.  */
1260
1261   while (pos < size)
1262     {
1263       int thissize = size - pos;
1264       if (thissize > maximum)
1265         thissize = maximum;
1266
1267       ASM_OUTPUT_ASCII (asm_out_file, p, thissize);
1268
1269       pos += thissize;
1270       p += thissize;
1271     }
1272 }
1273
1274 \f
1275 #if defined  ASM_OUTPUT_ALIGNED_DECL_LOCAL
1276 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1277   ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1278 #else
1279 #if defined  ASM_OUTPUT_ALIGNED_LOCAL
1280 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1281   ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, DECL_ALIGN (decl))
1282 #else
1283 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1284   ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded)
1285 #endif
1286 #endif
1287
1288 #if defined ASM_OUTPUT_ALIGNED_BSS
1289 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1290   ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1291 #else
1292 #if defined ASM_OUTPUT_BSS
1293 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1294   ASM_OUTPUT_BSS (asm_out_file, decl, name, size, rounded)
1295 #else
1296 #undef  ASM_EMIT_BSS
1297 #endif
1298 #endif
1299
1300 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1301 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1302   ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1303 #else
1304 #if defined ASM_OUTPUT_ALIGNED_COMMON
1305 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1306   ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size, DECL_ALIGN (decl))
1307 #else
1308 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1309   ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded)
1310 #endif
1311 #endif
1312
1313 static bool
1314 asm_emit_uninitialised (decl, name, size, rounded)
1315      tree decl;
1316      const char *name;
1317      unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED;
1318      unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED;
1319 {
1320   enum
1321   {
1322     asm_dest_common,
1323     asm_dest_bss,
1324     asm_dest_local
1325   }
1326   destination = asm_dest_local;
1327
1328   /* ??? We should handle .bss via select_section mechanisms rather than
1329      via special target hooks.  That would eliminate this special case.  */
1330   if (TREE_PUBLIC (decl))
1331     {
1332       if (!DECL_COMMON (decl))
1333 #ifdef ASM_EMIT_BSS
1334         destination = asm_dest_bss;
1335 #else
1336         return false;
1337 #endif
1338       else
1339         destination = asm_dest_common;
1340     }
1341
1342   if (destination == asm_dest_bss)
1343     globalize_decl (decl);
1344   resolve_unique_section (decl, 0, flag_data_sections);
1345
1346   if (flag_shared_data)
1347     {
1348       switch (destination)
1349         {
1350 #ifdef ASM_OUTPUT_SHARED_BSS
1351         case asm_dest_bss:
1352           ASM_OUTPUT_SHARED_BSS (asm_out_file, decl, name, size, rounded);
1353           return;
1354 #endif
1355 #ifdef ASM_OUTPUT_SHARED_COMMON
1356         case asm_dest_common:
1357           ASM_OUTPUT_SHARED_COMMON (asm_out_file, name, size, rounded);
1358           return;
1359 #endif
1360 #ifdef ASM_OUTPUT_SHARED_LOCAL
1361         case asm_dest_local:
1362           ASM_OUTPUT_SHARED_LOCAL (asm_out_file, name, size, rounded);
1363           return;
1364 #endif
1365         default:
1366           break;
1367         }
1368     }
1369
1370   switch (destination)
1371     {
1372 #ifdef ASM_EMIT_BSS
1373     case asm_dest_bss:
1374       ASM_EMIT_BSS (decl, name, size, rounded);
1375       break;
1376 #endif
1377     case asm_dest_common:
1378       ASM_EMIT_COMMON (decl, name, size, rounded);
1379       break;
1380     case asm_dest_local:
1381       ASM_EMIT_LOCAL (decl, name, size, rounded);
1382       break;
1383     default:
1384       abort ();
1385     }
1386
1387   return true;
1388 }
1389
1390 /* Assemble everything that is needed for a variable or function declaration.
1391    Not used for automatic variables, and not used for function definitions.
1392    Should not be called for variables of incomplete structure type.
1393
1394    TOP_LEVEL is nonzero if this variable has file scope.
1395    AT_END is nonzero if this is the special handling, at end of compilation,
1396    to define things that have had only tentative definitions.
1397    DONT_OUTPUT_DATA if nonzero means don't actually output the
1398    initial value (that will be done by the caller).  */
1399
1400 void
1401 assemble_variable (decl, top_level, at_end, dont_output_data)
1402      tree decl;
1403      int top_level ATTRIBUTE_UNUSED;
1404      int at_end ATTRIBUTE_UNUSED;
1405      int dont_output_data;
1406 {
1407   const char *name;
1408   unsigned int align;
1409   int reloc = 0;
1410   rtx decl_rtl;
1411
1412   if (lang_hooks.decls.prepare_assemble_variable)
1413     (*lang_hooks.decls.prepare_assemble_variable) (decl);
1414
1415   last_assemble_variable_decl = 0;
1416
1417   /* Normally no need to say anything here for external references,
1418      since assemble_external is called by the language-specific code
1419      when a declaration is first seen.  */
1420
1421   if (DECL_EXTERNAL (decl))
1422     return;
1423
1424   /* Output no assembler code for a function declaration.
1425      Only definitions of functions output anything.  */
1426
1427   if (TREE_CODE (decl) == FUNCTION_DECL)
1428     return;
1429
1430   /* Do nothing for global register variables.  */
1431   if (DECL_RTL_SET_P (decl) && GET_CODE (DECL_RTL (decl)) == REG)
1432     {
1433       TREE_ASM_WRITTEN (decl) = 1;
1434       return;
1435     }
1436
1437   /* If type was incomplete when the variable was declared,
1438      see if it is complete now.  */
1439
1440   if (DECL_SIZE (decl) == 0)
1441     layout_decl (decl, 0);
1442
1443   /* Still incomplete => don't allocate it; treat the tentative defn
1444      (which is what it must have been) as an `extern' reference.  */
1445
1446   if (!dont_output_data && DECL_SIZE (decl) == 0)
1447     {
1448       error ("%Hstorage size of `%s' isn't known",
1449              &DECL_SOURCE_LOCATION (decl),
1450              IDENTIFIER_POINTER (DECL_NAME (decl)));
1451       TREE_ASM_WRITTEN (decl) = 1;
1452       return;
1453     }
1454
1455   /* The first declaration of a variable that comes through this function
1456      decides whether it is global (in C, has external linkage)
1457      or local (in C, has internal linkage).  So do nothing more
1458      if this function has already run.  */
1459
1460   if (TREE_ASM_WRITTEN (decl))
1461     return;
1462
1463   /* Make sure targetm.encode_section_info is invoked before we set
1464      ASM_WRITTEN.  */
1465   decl_rtl = DECL_RTL (decl);
1466
1467   TREE_ASM_WRITTEN (decl) = 1;
1468
1469   /* Do no output if -fsyntax-only.  */
1470   if (flag_syntax_only)
1471     return;
1472
1473   app_disable ();
1474
1475   if (! dont_output_data
1476       && ! host_integerp (DECL_SIZE_UNIT (decl), 1))
1477     {
1478       error_with_decl (decl, "size of variable `%s' is too large");
1479       return;
1480     }
1481
1482   name = XSTR (XEXP (decl_rtl, 0), 0);
1483   if (TREE_PUBLIC (decl) && DECL_NAME (decl)
1484       && ! first_global_object_name
1485       && ! (DECL_COMMON (decl) && (DECL_INITIAL (decl) == 0
1486                                    || DECL_INITIAL (decl) == error_mark_node))
1487       && ! DECL_WEAK (decl)
1488       && ! DECL_ONE_ONLY (decl))
1489     {
1490       const char *p;
1491       char *xname;
1492
1493       p = (* targetm.strip_name_encoding) (name);
1494       xname = xstrdup (p);
1495       first_global_object_name = xname;
1496     }
1497
1498   /* Compute the alignment of this data.  */
1499
1500   align = DECL_ALIGN (decl);
1501
1502   /* In the case for initialing an array whose length isn't specified,
1503      where we have not yet been able to do the layout,
1504      figure out the proper alignment now.  */
1505   if (dont_output_data && DECL_SIZE (decl) == 0
1506       && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
1507     align = MAX (align, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
1508
1509   /* Some object file formats have a maximum alignment which they support.
1510      In particular, a.out format supports a maximum alignment of 4.  */
1511 #ifndef MAX_OFILE_ALIGNMENT
1512 #define MAX_OFILE_ALIGNMENT BIGGEST_ALIGNMENT
1513 #endif
1514   if (align > MAX_OFILE_ALIGNMENT)
1515     {
1516       warning_with_decl (decl,
1517         "alignment of `%s' is greater than maximum object file alignment. Using %d",
1518                          MAX_OFILE_ALIGNMENT/BITS_PER_UNIT);
1519       align = MAX_OFILE_ALIGNMENT;
1520     }
1521
1522   /* On some machines, it is good to increase alignment sometimes.  */
1523   if (! DECL_USER_ALIGN (decl))
1524     {
1525 #ifdef DATA_ALIGNMENT
1526       align = DATA_ALIGNMENT (TREE_TYPE (decl), align);
1527 #endif
1528 #ifdef CONSTANT_ALIGNMENT
1529       if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
1530         align = CONSTANT_ALIGNMENT (DECL_INITIAL (decl), align);
1531 #endif
1532     }
1533
1534   /* Reset the alignment in case we have made it tighter, so we can benefit
1535      from it in get_pointer_alignment.  */
1536   DECL_ALIGN (decl) = align;
1537   set_mem_align (decl_rtl, align);
1538
1539   if (TREE_PUBLIC (decl))
1540     maybe_assemble_visibility (decl);
1541
1542   /* Output any data that we will need to use the address of.  */
1543   if (DECL_INITIAL (decl) == error_mark_node)
1544     reloc = contains_pointers_p (TREE_TYPE (decl)) ? 3 : 0;
1545   else if (DECL_INITIAL (decl))
1546     reloc = output_addressed_constants (DECL_INITIAL (decl));
1547   resolve_unique_section (decl, reloc, flag_data_sections);
1548
1549   /* Handle uninitialized definitions.  */
1550
1551   /* If the decl has been given an explicit section name, then it
1552      isn't common, and shouldn't be handled as such.  */
1553   if (DECL_SECTION_NAME (decl) || dont_output_data)
1554     ;
1555   /* We don't implement common thread-local data at present.  */
1556   else if (DECL_THREAD_LOCAL (decl))
1557     {
1558       if (DECL_COMMON (decl))
1559         sorry ("thread-local COMMON data not implemented");
1560     }
1561   else if (DECL_INITIAL (decl) == 0
1562            || DECL_INITIAL (decl) == error_mark_node
1563            || (flag_zero_initialized_in_bss
1564                /* Leave constant zeroes in .rodata so they can be shared.  */
1565                && !TREE_READONLY (decl)
1566                && initializer_zerop (DECL_INITIAL (decl))))
1567     {
1568       unsigned HOST_WIDE_INT size = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
1569       unsigned HOST_WIDE_INT rounded = size;
1570
1571       /* Don't allocate zero bytes of common,
1572          since that means "undefined external" in the linker.  */
1573       if (size == 0)
1574         rounded = 1;
1575
1576       /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1577          so that each uninitialized object starts on such a boundary.  */
1578       rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
1579       rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1580                  * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1581
1582 #if !defined(ASM_OUTPUT_ALIGNED_COMMON) && !defined(ASM_OUTPUT_ALIGNED_DECL_COMMON) && !defined(ASM_OUTPUT_ALIGNED_BSS)
1583       if ((unsigned HOST_WIDE_INT) DECL_ALIGN (decl) / BITS_PER_UNIT > rounded)
1584         warning_with_decl
1585           (decl, "requested alignment for %s is greater than implemented alignment of %d",rounded);
1586 #endif
1587
1588       /* If the target cannot output uninitialized but not common global data
1589          in .bss, then we have to use .data, so fall through.  */
1590       if (asm_emit_uninitialised (decl, name, size, rounded))
1591         return;
1592     }
1593
1594   /* Handle initialized definitions.
1595      Also handle uninitialized global definitions if -fno-common and the
1596      target doesn't support ASM_OUTPUT_BSS.  */
1597
1598   /* First make the assembler name(s) global if appropriate.  */
1599   if (TREE_PUBLIC (decl) && DECL_NAME (decl))
1600     globalize_decl (decl);
1601
1602   /* Switch to the appropriate section.  */
1603   variable_section (decl, reloc);
1604
1605   /* dbxout.c needs to know this.  */
1606   if (in_text_section ())
1607     DECL_IN_TEXT_SECTION (decl) = 1;
1608
1609   /* Output the alignment of this data.  */
1610   if (align > BITS_PER_UNIT)
1611     {
1612       ASM_OUTPUT_ALIGN (asm_out_file,
1613                         floor_log2 (DECL_ALIGN (decl) / BITS_PER_UNIT));
1614     }
1615
1616   /* Do any machine/system dependent processing of the object.  */
1617 #ifdef ASM_DECLARE_OBJECT_NAME
1618   last_assemble_variable_decl = decl;
1619   ASM_DECLARE_OBJECT_NAME (asm_out_file, name, decl);
1620 #else
1621   /* Standard thing is just output label for the object.  */
1622   ASM_OUTPUT_LABEL (asm_out_file, name);
1623 #endif /* ASM_DECLARE_OBJECT_NAME */
1624
1625   if (!dont_output_data)
1626     {
1627       if (DECL_INITIAL (decl) && DECL_INITIAL (decl) != error_mark_node)
1628         /* Output the actual data.  */
1629         output_constant (DECL_INITIAL (decl),
1630                          tree_low_cst (DECL_SIZE_UNIT (decl), 1),
1631                          align);
1632       else
1633         /* Leave space for it.  */
1634         assemble_zeros (tree_low_cst (DECL_SIZE_UNIT (decl), 1));
1635     }
1636 }
1637
1638 /* Return 1 if type TYPE contains any pointers.  */
1639
1640 static int
1641 contains_pointers_p (type)
1642      tree type;
1643 {
1644   switch (TREE_CODE (type))
1645     {
1646     case POINTER_TYPE:
1647     case REFERENCE_TYPE:
1648       /* I'm not sure whether OFFSET_TYPE needs this treatment,
1649          so I'll play safe and return 1.  */
1650     case OFFSET_TYPE:
1651       return 1;
1652
1653     case RECORD_TYPE:
1654     case UNION_TYPE:
1655     case QUAL_UNION_TYPE:
1656       {
1657         tree fields;
1658         /* For a type that has fields, see if the fields have pointers.  */
1659         for (fields = TYPE_FIELDS (type); fields; fields = TREE_CHAIN (fields))
1660           if (TREE_CODE (fields) == FIELD_DECL
1661               && contains_pointers_p (TREE_TYPE (fields)))
1662             return 1;
1663         return 0;
1664       }
1665
1666     case ARRAY_TYPE:
1667       /* An array type contains pointers if its element type does.  */
1668       return contains_pointers_p (TREE_TYPE (type));
1669
1670     default:
1671       return 0;
1672     }
1673 }
1674
1675 /* Output something to declare an external symbol to the assembler.
1676    (Most assemblers don't need this, so we normally output nothing.)
1677    Do nothing if DECL is not external.  */
1678
1679 void
1680 assemble_external (decl)
1681      tree decl ATTRIBUTE_UNUSED;
1682 {
1683   /* Because most platforms do not define ASM_OUTPUT_EXTERNAL, the
1684      main body of this code is only rarely exercised.  To provide some
1685      testing, on all platforms, we make sure that the ASM_OUT_FILE is
1686      open.  If it's not, we should not be calling this function.  */
1687   if (!asm_out_file)
1688     abort ();
1689
1690 #ifdef ASM_OUTPUT_EXTERNAL
1691   if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
1692     {
1693       rtx rtl = DECL_RTL (decl);
1694
1695       if (GET_CODE (rtl) == MEM && GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF
1696           && ! SYMBOL_REF_USED (XEXP (rtl, 0)))
1697         {
1698           /* Some systems do require some output.  */
1699           SYMBOL_REF_USED (XEXP (rtl, 0)) = 1;
1700           ASM_OUTPUT_EXTERNAL (asm_out_file, decl, XSTR (XEXP (rtl, 0), 0));
1701         }
1702     }
1703 #endif
1704 }
1705
1706 /* Similar, for calling a library function FUN.  */
1707
1708 void
1709 assemble_external_libcall (fun)
1710      rtx fun ATTRIBUTE_UNUSED;
1711 {
1712 #ifdef ASM_OUTPUT_EXTERNAL_LIBCALL
1713   /* Declare library function name external when first used, if nec.  */
1714   if (! SYMBOL_REF_USED (fun))
1715     {
1716       SYMBOL_REF_USED (fun) = 1;
1717       ASM_OUTPUT_EXTERNAL_LIBCALL (asm_out_file, fun);
1718     }
1719 #endif
1720 }
1721
1722 /* Assemble a label named NAME.  */
1723
1724 void
1725 assemble_label (name)
1726      const char *name;
1727 {
1728   ASM_OUTPUT_LABEL (asm_out_file, name);
1729 }
1730
1731 /* Set the symbol_referenced flag for ID and notify callgraph code.  */
1732 void
1733 mark_referenced (id)
1734      tree id;
1735 {
1736   if (!TREE_SYMBOL_REFERENCED (id))
1737     {
1738       struct cgraph_node *node;
1739       struct cgraph_varpool_node *vnode;
1740
1741       if (!cgraph_global_info_ready)
1742         {
1743           node = cgraph_node_for_identifier (id);
1744           if (node)
1745             cgraph_mark_needed_node (node, 1);
1746         }
1747
1748       vnode = cgraph_varpool_node_for_identifier (id);
1749       if (vnode)
1750         cgraph_varpool_mark_needed_node (vnode);
1751     }
1752   TREE_SYMBOL_REFERENCED (id) = 1;
1753 }
1754
1755 /* Output to FILE a reference to the assembler name of a C-level name NAME.
1756    If NAME starts with a *, the rest of NAME is output verbatim.
1757    Otherwise NAME is transformed in an implementation-defined way
1758    (usually by the addition of an underscore).
1759    Many macros in the tm file are defined to call this function.  */
1760
1761 void
1762 assemble_name (file, name)
1763      FILE *file;
1764      const char *name;
1765 {
1766   const char *real_name;
1767   tree id;
1768
1769   real_name = (* targetm.strip_name_encoding) (name);
1770
1771   id = maybe_get_identifier (real_name);
1772   if (id)
1773     mark_referenced (id);
1774
1775   if (name[0] == '*')
1776     fputs (&name[1], file);
1777   else
1778     ASM_OUTPUT_LABELREF (file, name);
1779 }
1780
1781 /* Allocate SIZE bytes writable static space with a gensym name
1782    and return an RTX to refer to its address.  */
1783
1784 rtx
1785 assemble_static_space (size)
1786      unsigned HOST_WIDE_INT size;
1787 {
1788   char name[12];
1789   const char *namestring;
1790   rtx x;
1791
1792 #if 0
1793   if (flag_shared_data)
1794     data_section ();
1795 #endif
1796
1797   ASM_GENERATE_INTERNAL_LABEL (name, "LF", const_labelno);
1798   ++const_labelno;
1799   namestring = ggc_strdup (name);
1800
1801   x = gen_rtx_SYMBOL_REF (Pmode, namestring);
1802   SYMBOL_REF_FLAGS (x) = SYMBOL_FLAG_LOCAL;
1803
1804 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
1805   ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name, size,
1806                                  BIGGEST_ALIGNMENT);
1807 #else
1808 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
1809   ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, BIGGEST_ALIGNMENT);
1810 #else
1811   {
1812     /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1813        so that each uninitialized object starts on such a boundary.  */
1814     /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL.  */
1815     unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
1816       = ((size + (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1)
1817          / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1818          * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1819     ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
1820   }
1821 #endif
1822 #endif
1823   return x;
1824 }
1825
1826 /* Assemble the static constant template for function entry trampolines.
1827    This is done at most once per compilation.
1828    Returns an RTX for the address of the template.  */
1829
1830 #ifdef TRAMPOLINE_TEMPLATE
1831 rtx
1832 assemble_trampoline_template ()
1833 {
1834   char label[256];
1835   const char *name;
1836   int align;
1837   rtx symbol;
1838
1839   /* By default, put trampoline templates in read-only data section.  */
1840
1841 #ifdef TRAMPOLINE_SECTION
1842   TRAMPOLINE_SECTION ();
1843 #else
1844   readonly_data_section ();
1845 #endif
1846
1847   /* Write the assembler code to define one.  */
1848   align = floor_log2 (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT);
1849   if (align > 0)
1850     {
1851       ASM_OUTPUT_ALIGN (asm_out_file, align);
1852     }
1853
1854   (*targetm.asm_out.internal_label) (asm_out_file, "LTRAMP", 0);
1855   TRAMPOLINE_TEMPLATE (asm_out_file);
1856
1857   /* Record the rtl to refer to it.  */
1858   ASM_GENERATE_INTERNAL_LABEL (label, "LTRAMP", 0);
1859   name = ggc_strdup (label);
1860   symbol = gen_rtx_SYMBOL_REF (Pmode, name);
1861   SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
1862
1863   return symbol;
1864 }
1865 #endif
1866 \f
1867 /* A and B are either alignments or offsets.  Return the minimum alignment
1868    that may be assumed after adding the two together.  */
1869
1870 static inline unsigned
1871 min_align (a, b)
1872      unsigned int a, b;
1873 {
1874   return (a | b) & -(a | b);
1875 }
1876
1877 /* Return the assembler directive for creating a given kind of integer
1878    object.  SIZE is the number of bytes in the object and ALIGNED_P
1879    indicates whether it is known to be aligned.  Return NULL if the
1880    assembly dialect has no such directive.
1881
1882    The returned string should be printed at the start of a new line and
1883    be followed immediately by the object's initial value.  */
1884
1885 const char *
1886 integer_asm_op (size, aligned_p)
1887      int size;
1888      int aligned_p;
1889 {
1890   struct asm_int_op *ops;
1891
1892   if (aligned_p)
1893     ops = &targetm.asm_out.aligned_op;
1894   else
1895     ops = &targetm.asm_out.unaligned_op;
1896
1897   switch (size)
1898     {
1899     case 1:
1900       return targetm.asm_out.byte_op;
1901     case 2:
1902       return ops->hi;
1903     case 4:
1904       return ops->si;
1905     case 8:
1906       return ops->di;
1907     case 16:
1908       return ops->ti;
1909     default:
1910       return NULL;
1911     }
1912 }
1913
1914 /* Use directive OP to assemble an integer object X.  Print OP at the
1915    start of the line, followed immediately by the value of X.  */
1916
1917 void
1918 assemble_integer_with_op (op, x)
1919      const char *op;
1920      rtx x;
1921 {
1922   fputs (op, asm_out_file);
1923   output_addr_const (asm_out_file, x);
1924   fputc ('\n', asm_out_file);
1925 }
1926
1927 /* The default implementation of the asm_out.integer target hook.  */
1928
1929 bool
1930 default_assemble_integer (x, size, aligned_p)
1931      rtx x ATTRIBUTE_UNUSED;
1932      unsigned int size ATTRIBUTE_UNUSED;
1933      int aligned_p ATTRIBUTE_UNUSED;
1934 {
1935   const char *op = integer_asm_op (size, aligned_p);
1936   return op && (assemble_integer_with_op (op, x), true);
1937 }
1938
1939 /* Assemble the integer constant X into an object of SIZE bytes.  ALIGN is
1940    the alignment of the integer in bits.  Return 1 if we were able to output
1941    the constant, otherwise 0.  If FORCE is nonzero, abort if we can't output
1942    the constant.  */
1943
1944 bool
1945 assemble_integer (x, size, align, force)
1946      rtx x;
1947      unsigned int size;
1948      unsigned int align;
1949      int force;
1950 {
1951   int aligned_p;
1952
1953   aligned_p = (align >= MIN (size * BITS_PER_UNIT, BIGGEST_ALIGNMENT));
1954
1955   /* See if the target hook can handle this kind of object.  */
1956   if ((*targetm.asm_out.integer) (x, size, aligned_p))
1957     return true;
1958
1959   /* If the object is a multi-byte one, try splitting it up.  Split
1960      it into words it if is multi-word, otherwise split it into bytes.  */
1961   if (size > 1)
1962     {
1963       enum machine_mode omode, imode;
1964       unsigned int subalign;
1965       unsigned int subsize, i;
1966
1967       subsize = size > UNITS_PER_WORD? UNITS_PER_WORD : 1;
1968       subalign = MIN (align, subsize * BITS_PER_UNIT);
1969       omode = mode_for_size (subsize * BITS_PER_UNIT, MODE_INT, 0);
1970       imode = mode_for_size (size * BITS_PER_UNIT, MODE_INT, 0);
1971
1972       for (i = 0; i < size; i += subsize)
1973         {
1974           rtx partial = simplify_subreg (omode, x, imode, i);
1975           if (!partial || !assemble_integer (partial, subsize, subalign, 0))
1976             break;
1977         }
1978       if (i == size)
1979         return true;
1980
1981       /* If we've printed some of it, but not all of it, there's no going
1982          back now.  */
1983       if (i > 0)
1984         abort ();
1985     }
1986
1987   if (force)
1988     abort ();
1989
1990   return false;
1991 }
1992 \f
1993 void
1994 assemble_real (d, mode, align)
1995      REAL_VALUE_TYPE d;
1996      enum machine_mode mode;
1997      unsigned int align;
1998 {
1999   long data[4];
2000   long l;
2001   unsigned int nalign = min_align (align, 32);
2002
2003   switch (BITS_PER_UNIT)
2004     {
2005     case 8:
2006       switch (mode)
2007         {
2008         case SFmode:
2009           REAL_VALUE_TO_TARGET_SINGLE (d, l);
2010           assemble_integer (GEN_INT (l), 4, align, 1);
2011           break;
2012         case DFmode:
2013           REAL_VALUE_TO_TARGET_DOUBLE (d, data);
2014           assemble_integer (GEN_INT (data[0]), 4, align, 1);
2015           assemble_integer (GEN_INT (data[1]), 4, nalign, 1);
2016           break;
2017         case XFmode:
2018           REAL_VALUE_TO_TARGET_LONG_DOUBLE (d, data);
2019           assemble_integer (GEN_INT (data[0]), 4, align, 1);
2020           assemble_integer (GEN_INT (data[1]), 4, nalign, 1);
2021           assemble_integer (GEN_INT (data[2]), 4, nalign, 1);
2022           break;
2023         case TFmode:
2024           REAL_VALUE_TO_TARGET_LONG_DOUBLE (d, data);
2025           assemble_integer (GEN_INT (data[0]), 4, align, 1);
2026           assemble_integer (GEN_INT (data[1]), 4, nalign, 1);
2027           assemble_integer (GEN_INT (data[2]), 4, nalign, 1);
2028           assemble_integer (GEN_INT (data[3]), 4, nalign, 1);
2029           break;
2030         default:
2031           abort ();
2032         }
2033       break;
2034
2035     case 16:
2036       switch (mode)
2037         {
2038         case HFmode:
2039           REAL_VALUE_TO_TARGET_SINGLE (d, l);
2040           assemble_integer (GEN_INT (l), 2, align, 1);
2041           break;
2042         case TQFmode:
2043           REAL_VALUE_TO_TARGET_DOUBLE (d, data);
2044           assemble_integer (GEN_INT (data[0]), 2, align, 1);
2045           assemble_integer (GEN_INT (data[1]), 1, nalign, 1);
2046           break;
2047         default:
2048           abort ();
2049         }
2050       break;
2051
2052     case 32:
2053       switch (mode)
2054         {
2055         case QFmode:
2056           REAL_VALUE_TO_TARGET_SINGLE (d, l);
2057           assemble_integer (GEN_INT (l), 1, align, 1);
2058           break;
2059         case HFmode:
2060           REAL_VALUE_TO_TARGET_DOUBLE (d, data);
2061           assemble_integer (GEN_INT (data[0]), 1, align, 1);
2062           assemble_integer (GEN_INT (data[1]), 1, nalign, 1);
2063           break;
2064         default:
2065           abort ();
2066         }
2067       break;
2068
2069     default:
2070       abort ();
2071     }
2072 }
2073 \f
2074 /* Given an expression EXP with a constant value,
2075    reduce it to the sum of an assembler symbol and an integer.
2076    Store them both in the structure *VALUE.
2077    Abort if EXP does not reduce.  */
2078
2079 struct addr_const GTY(())
2080 {
2081   rtx base;
2082   HOST_WIDE_INT offset;
2083 };
2084
2085 static void
2086 decode_addr_const (exp, value)
2087      tree exp;
2088      struct addr_const *value;
2089 {
2090   tree target = TREE_OPERAND (exp, 0);
2091   int offset = 0;
2092   rtx x;
2093
2094   while (1)
2095     {
2096       if (TREE_CODE (target) == COMPONENT_REF
2097           && host_integerp (byte_position (TREE_OPERAND (target, 1)), 0))
2098
2099         {
2100           offset += int_byte_position (TREE_OPERAND (target, 1));
2101           target = TREE_OPERAND (target, 0);
2102         }
2103       else if (TREE_CODE (target) == ARRAY_REF
2104                || TREE_CODE (target) == ARRAY_RANGE_REF)
2105         {
2106           offset += (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (target)), 1)
2107                      * tree_low_cst (TREE_OPERAND (target, 1), 0));
2108           target = TREE_OPERAND (target, 0);
2109         }
2110       else
2111         break;
2112     }
2113
2114   switch (TREE_CODE (target))
2115     {
2116     case VAR_DECL:
2117     case FUNCTION_DECL:
2118       x = DECL_RTL (target);
2119       break;
2120
2121     case LABEL_DECL:
2122       x = gen_rtx_MEM (FUNCTION_MODE,
2123                        gen_rtx_LABEL_REF (VOIDmode, force_label_rtx (target)));
2124       break;
2125
2126     case REAL_CST:
2127     case STRING_CST:
2128     case COMPLEX_CST:
2129     case CONSTRUCTOR:
2130     case INTEGER_CST:
2131       x = output_constant_def (target, 1);
2132       break;
2133
2134     default:
2135       abort ();
2136     }
2137
2138   if (GET_CODE (x) != MEM)
2139     abort ();
2140   x = XEXP (x, 0);
2141
2142   value->base = x;
2143   value->offset = offset;
2144 }
2145 \f
2146 /* We do RTX_UNSPEC + XINT (blah), so nothing can go after RTX_UNSPEC.  */
2147 enum kind { RTX_UNKNOWN, RTX_DOUBLE, RTX_VECTOR, RTX_INT, RTX_UNSPEC };
2148 struct rtx_const GTY(())
2149 {
2150   ENUM_BITFIELD(kind) kind : 16;
2151   ENUM_BITFIELD(machine_mode) mode : 16;
2152   union rtx_const_un {
2153     REAL_VALUE_TYPE GTY ((tag ("4"))) du;
2154     struct rtx_const_u_addr {
2155       rtx base;
2156       const char *symbol;
2157       HOST_WIDE_INT offset;
2158     } GTY ((tag ("1"))) addr;
2159     struct rtx_const_u_di {
2160       HOST_WIDE_INT high;
2161       HOST_WIDE_INT low;
2162     } GTY ((tag ("0"))) di;
2163
2164     /* The max vector size we have is 16 wide; two variants for
2165        integral and floating point vectors.  */
2166     struct rtx_const_int_vec {
2167       HOST_WIDE_INT high;
2168       HOST_WIDE_INT low;
2169     } GTY ((tag ("2"))) int_vec[16];
2170
2171     REAL_VALUE_TYPE GTY ((tag ("3"))) fp_vec[8];
2172
2173   } GTY ((desc ("%1.kind >= RTX_INT"), descbits ("1"))) un;
2174 };
2175
2176 /* Uniquize all constants that appear in memory.
2177    Each constant in memory thus far output is recorded
2178    in `const_hash_table'.  */
2179
2180 struct constant_descriptor_tree GTY(())
2181 {
2182   /* A MEM for the constant.  */
2183   rtx rtl;
2184
2185   /* The value of the constant.  */
2186   tree value;
2187 };
2188
2189 static GTY((param_is (struct constant_descriptor_tree)))
2190      htab_t const_desc_htab;
2191
2192 static struct constant_descriptor_tree * build_constant_desc PARAMS ((tree));
2193 static void maybe_output_constant_def_contents
2194     PARAMS ((struct constant_descriptor_tree *, int));
2195
2196 /* Compute a hash code for a constant expression.  */
2197
2198 static hashval_t
2199 const_desc_hash (ptr)
2200      const void *ptr;
2201 {
2202   return const_hash_1 (((struct constant_descriptor_tree *)ptr)->value);
2203 }
2204
2205 static hashval_t
2206 const_hash_1 (exp)
2207      const tree exp;
2208 {
2209   const char *p;
2210   hashval_t hi;
2211   int len, i;
2212   enum tree_code code = TREE_CODE (exp);
2213
2214   /* Either set P and LEN to the address and len of something to hash and
2215      exit the switch or return a value.  */
2216
2217   switch (code)
2218     {
2219     case INTEGER_CST:
2220       p = (char *) &TREE_INT_CST (exp);
2221       len = sizeof TREE_INT_CST (exp);
2222       break;
2223
2224     case REAL_CST:
2225       return real_hash (TREE_REAL_CST_PTR (exp));
2226
2227     case STRING_CST:
2228       p = TREE_STRING_POINTER (exp);
2229       len = TREE_STRING_LENGTH (exp);
2230       break;
2231     case COMPLEX_CST:
2232       return (const_hash_1 (TREE_REALPART (exp)) * 5
2233               + const_hash_1 (TREE_IMAGPART (exp)));
2234
2235     case CONSTRUCTOR:
2236       if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2237         {
2238           char *tmp;
2239
2240           len = int_size_in_bytes (TREE_TYPE (exp));
2241           tmp = (char *) alloca (len);
2242           get_set_constructor_bytes (exp, (unsigned char *) tmp, len);
2243           p = tmp;
2244           break;
2245         }
2246       else
2247         {
2248           tree link;
2249
2250           hi = 5 + int_size_in_bytes (TREE_TYPE (exp));
2251
2252           for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2253             if (TREE_VALUE (link))
2254               hi = hi * 603 + const_hash_1 (TREE_VALUE (link));
2255
2256           return hi;
2257         }
2258
2259     case ADDR_EXPR:
2260     case FDESC_EXPR:
2261       {
2262         struct addr_const value;
2263
2264         decode_addr_const (exp, &value);
2265         if (GET_CODE (value.base) == SYMBOL_REF)
2266           {
2267             /* Don't hash the address of the SYMBOL_REF;
2268                only use the offset and the symbol name.  */
2269             hi = value.offset;
2270             p = XSTR (value.base, 0);
2271             for (i = 0; p[i] != 0; i++)
2272               hi = ((hi * 613) + (unsigned) (p[i]));
2273           }
2274         else if (GET_CODE (value.base) == LABEL_REF)
2275           hi = value.offset + CODE_LABEL_NUMBER (XEXP (value.base, 0)) * 13;
2276         else
2277           abort ();
2278       }
2279       return hi;
2280
2281     case PLUS_EXPR:
2282     case MINUS_EXPR:
2283       return (const_hash_1 (TREE_OPERAND (exp, 0)) * 9
2284               + const_hash_1 (TREE_OPERAND (exp, 1)));
2285
2286     case NOP_EXPR:
2287     case CONVERT_EXPR:
2288     case NON_LVALUE_EXPR:
2289       return const_hash_1 (TREE_OPERAND (exp, 0)) * 7 + 2;
2290
2291     default:
2292       /* A language specific constant. Just hash the code.  */
2293       return code;
2294     }
2295
2296   /* Compute hashing function.  */
2297   hi = len;
2298   for (i = 0; i < len; i++)
2299     hi = ((hi * 613) + (unsigned) (p[i]));
2300
2301   return hi;
2302 }
2303
2304 /* Wrapper of compare_constant, for the htab interface.  */
2305 static int
2306 const_desc_eq (p1, p2)
2307      const void *p1;
2308      const void *p2;
2309 {
2310   return compare_constant (((struct constant_descriptor_tree *)p1)->value,
2311                            ((struct constant_descriptor_tree *)p2)->value);
2312 }
2313
2314 /* Compare t1 and t2, and return 1 only if they are known to result in
2315    the same bit pattern on output.  */
2316
2317 static int
2318 compare_constant (t1, t2)
2319      const tree t1;
2320      const tree t2;
2321 {
2322   enum tree_code typecode;
2323
2324   if (t1 == NULL_TREE)
2325     return t2 == NULL_TREE;
2326   if (t2 == NULL_TREE)
2327     return 0;
2328
2329   if (TREE_CODE (t1) != TREE_CODE (t2))
2330     return 0;
2331
2332   switch (TREE_CODE (t1))
2333     {
2334     case INTEGER_CST:
2335       /* Integer constants are the same only if the same width of type.  */
2336       if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2337         return 0;
2338       return tree_int_cst_equal (t1, t2);
2339
2340     case REAL_CST:
2341       /* Real constants are the same only if the same width of type.  */
2342       if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2343         return 0;
2344
2345       return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
2346
2347     case STRING_CST:
2348       if (flag_writable_strings)
2349         return 0;
2350
2351       if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
2352         return 0;
2353
2354       return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
2355               && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
2356                          TREE_STRING_LENGTH (t1)));
2357
2358     case COMPLEX_CST:
2359       return (compare_constant (TREE_REALPART (t1), TREE_REALPART (t2))
2360               && compare_constant (TREE_IMAGPART (t1), TREE_IMAGPART (t2)));
2361
2362     case CONSTRUCTOR:
2363       typecode = TREE_CODE (TREE_TYPE (t1));
2364       if (typecode != TREE_CODE (TREE_TYPE (t2)))
2365         return 0;
2366
2367       if (typecode == SET_TYPE)
2368         {
2369           int len = int_size_in_bytes (TREE_TYPE (t2));
2370           unsigned char *tmp1, *tmp2;
2371
2372           if (int_size_in_bytes (TREE_TYPE (t1)) != len)
2373             return 0;
2374
2375           tmp1 = (unsigned char *) alloca (len);
2376           tmp2 = (unsigned char *) alloca (len);
2377
2378           if (get_set_constructor_bytes (t1, tmp1, len) != NULL_TREE)
2379             return 0;
2380           if (get_set_constructor_bytes (t2, tmp2, len) != NULL_TREE)
2381             return 0;
2382
2383           return memcmp (tmp1, tmp2, len) != 0;
2384         }
2385       else
2386         {
2387           tree l1, l2;
2388
2389           if (typecode == ARRAY_TYPE)
2390             {
2391               HOST_WIDE_INT size_1 = int_size_in_bytes (TREE_TYPE (t1));
2392               /* For arrays, check that the sizes all match.  */
2393               if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2))
2394                   || size_1 == -1
2395                   || size_1 != int_size_in_bytes (TREE_TYPE (t2)))
2396                 return 0;
2397             }
2398           else
2399             {
2400               /* For record and union constructors, require exact type
2401                  equality.  */
2402               if (TREE_TYPE (t1) != TREE_TYPE (t2))
2403                 return 0;
2404             }
2405
2406           for (l1 = CONSTRUCTOR_ELTS (t1), l2 = CONSTRUCTOR_ELTS (t2);
2407                l1 && l2;
2408                l1 = TREE_CHAIN (l1), l2 = TREE_CHAIN (l2))
2409             {
2410               /* Check that each value is the same...  */
2411               if (! compare_constant (TREE_VALUE (l1), TREE_VALUE (l2)))
2412                 return 0;
2413               /* ... and that they apply to the same fields!  */
2414               if (typecode == ARRAY_TYPE)
2415                 {
2416                   if (! compare_constant (TREE_PURPOSE (l1),
2417                                           TREE_PURPOSE (l2)))
2418                     return 0;
2419                 }
2420               else
2421                 {
2422                   if (TREE_PURPOSE (l1) != TREE_PURPOSE (l2))
2423                     return 0;
2424                 }
2425             }
2426
2427           return l1 == NULL_TREE && l2 == NULL_TREE;
2428         }
2429
2430     case ADDR_EXPR:
2431     case FDESC_EXPR:
2432       {
2433         struct addr_const value1, value2;
2434
2435         decode_addr_const (t1, &value1);
2436         decode_addr_const (t2, &value2);
2437         return (value1.offset == value2.offset
2438                 && strcmp (XSTR (value1.base, 0), XSTR (value2.base, 0)) == 0);
2439       }
2440
2441     case PLUS_EXPR:
2442     case MINUS_EXPR:
2443     case RANGE_EXPR:
2444       return (compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0))
2445               && compare_constant(TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1)));
2446
2447     case NOP_EXPR:
2448     case CONVERT_EXPR:
2449     case NON_LVALUE_EXPR:
2450       return compare_constant (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
2451
2452     default:
2453       {
2454         tree nt1, nt2;
2455         nt1 = (*lang_hooks.expand_constant) (t1);
2456         nt2 = (*lang_hooks.expand_constant) (t2);
2457         if (nt1 != t1 || nt2 != t2)
2458           return compare_constant (nt1, nt2);
2459         else
2460           return 0;
2461       }
2462     }
2463
2464   /* Should not get here.  */
2465   abort ();
2466 }
2467 \f
2468 /* Make a copy of the whole tree structure for a constant.  This
2469    handles the same types of nodes that compare_constant handles.  */
2470
2471 static tree
2472 copy_constant (exp)
2473      tree exp;
2474 {
2475   switch (TREE_CODE (exp))
2476     {
2477     case ADDR_EXPR:
2478       /* For ADDR_EXPR, we do not want to copy the decl whose address
2479          is requested.  We do want to copy constants though.  */
2480       if (TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (exp, 0))) == 'c')
2481         return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2482                        copy_constant (TREE_OPERAND (exp, 0)));
2483       else
2484         return copy_node (exp);
2485
2486     case INTEGER_CST:
2487     case REAL_CST:
2488     case STRING_CST:
2489       return copy_node (exp);
2490
2491     case COMPLEX_CST:
2492       return build_complex (TREE_TYPE (exp),
2493                             copy_constant (TREE_REALPART (exp)),
2494                             copy_constant (TREE_IMAGPART (exp)));
2495
2496     case PLUS_EXPR:
2497     case MINUS_EXPR:
2498       return build (TREE_CODE (exp), TREE_TYPE (exp),
2499                     copy_constant (TREE_OPERAND (exp, 0)),
2500                     copy_constant (TREE_OPERAND (exp, 1)));
2501
2502     case NOP_EXPR:
2503     case CONVERT_EXPR:
2504     case NON_LVALUE_EXPR:
2505     case VIEW_CONVERT_EXPR:
2506       return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2507                      copy_constant (TREE_OPERAND (exp, 0)));
2508
2509     case CONSTRUCTOR:
2510       {
2511         tree copy = copy_node (exp);
2512         tree list = copy_list (CONSTRUCTOR_ELTS (exp));
2513         tree tail;
2514
2515         CONSTRUCTOR_ELTS (copy) = list;
2516         for (tail = list; tail; tail = TREE_CHAIN (tail))
2517           TREE_VALUE (tail) = copy_constant (TREE_VALUE (tail));
2518         if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2519           for (tail = list; tail; tail = TREE_CHAIN (tail))
2520             TREE_PURPOSE (tail) = copy_constant (TREE_PURPOSE (tail));
2521
2522         return copy;
2523       }
2524
2525     default:
2526       {
2527         tree t;
2528         t = (*lang_hooks.expand_constant) (exp);
2529         if (t != exp)
2530           return copy_constant (t);
2531         else
2532           abort ();
2533       }
2534     }
2535 }
2536 \f
2537 /* Subroutine of output_constant_def:
2538    No constant equal to EXP is known to have been output.
2539    Make a constant descriptor to enter EXP in the hash table.
2540    Assign the label number and construct RTL to refer to the
2541    constant's location in memory.
2542    Caller is responsible for updating the hash table.  */
2543
2544 static struct constant_descriptor_tree *
2545 build_constant_desc (exp)
2546      tree exp;
2547 {
2548   rtx symbol;
2549   rtx rtl;
2550   char label[256];
2551   int labelno;
2552   struct constant_descriptor_tree *desc;
2553
2554   desc = ggc_alloc (sizeof (*desc));
2555   desc->value = copy_constant (exp);
2556
2557   /* Create a string containing the label name, in LABEL.  */
2558   labelno = const_labelno++;
2559   ASM_GENERATE_INTERNAL_LABEL (label, "LC", labelno);
2560
2561   /* We have a symbol name; construct the SYMBOL_REF and the MEM.  */
2562   symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
2563   SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
2564   SYMBOL_REF_DECL (symbol) = desc->value;
2565   TREE_CONSTANT_POOL_ADDRESS_P (symbol) = 1;
2566
2567   rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp)), symbol);
2568   set_mem_attributes (rtl, exp, 1);
2569   set_mem_alias_set (rtl, 0);
2570   set_mem_alias_set (rtl, const_alias_set);
2571
2572   /* Set flags or add text to the name to record information, such as
2573      that it is a local symbol.  If the name is changed, the macro
2574      ASM_OUTPUT_LABELREF will have to know how to strip this
2575      information.  This call might invalidate our local variable
2576      SYMBOL; we can't use it afterward.  */
2577
2578   (*targetm.encode_section_info) (exp, rtl, true);
2579
2580   desc->rtl = rtl;
2581
2582   return desc;
2583 }
2584
2585 /* Return an rtx representing a reference to constant data in memory
2586    for the constant expression EXP.
2587
2588    If assembler code for such a constant has already been output,
2589    return an rtx to refer to it.
2590    Otherwise, output such a constant in memory
2591    and generate an rtx for it.
2592
2593    If DEFER is nonzero, this constant can be deferred and output only
2594    if referenced in the function after all optimizations.
2595
2596    The const_hash_table records which constants already have label strings.  */
2597
2598 rtx
2599 output_constant_def (exp, defer)
2600      tree exp;
2601      int defer;
2602 {
2603   struct constant_descriptor_tree *desc;
2604   struct constant_descriptor_tree key;
2605   void **loc;
2606
2607   /* Look up EXP in the table of constant descriptors.  If we didn't find
2608      it, create a new one.  */
2609   key.value = exp;
2610   loc = htab_find_slot (const_desc_htab, &key, INSERT);
2611
2612   desc = *loc;
2613   if (desc == 0)
2614     {
2615       desc = build_constant_desc (exp);
2616       *loc = desc;
2617     }
2618
2619   maybe_output_constant_def_contents (desc, defer);
2620   return desc->rtl;
2621 }
2622
2623 /* Subroutine of output_constant_def: Decide whether or not we need to
2624    output the constant DESC now, and if so, do it.  */
2625 static void
2626 maybe_output_constant_def_contents (desc, defer)
2627      struct constant_descriptor_tree *desc;
2628      int defer;
2629 {
2630   rtx symbol = XEXP (desc->rtl, 0);
2631   tree exp = desc->value;
2632
2633   if (flag_syntax_only)
2634     return;
2635
2636   if (TREE_ASM_WRITTEN (exp))
2637     /* Already output; don't do it again.  */
2638     return;
2639
2640   /* The only constants that cannot safely be deferred, assuming the
2641      context allows it, are strings under flag_writable_strings.  */
2642   if (defer && (TREE_CODE (exp) != STRING_CST || !flag_writable_strings))
2643     {
2644       /* Increment n_deferred_constants if it exists.  It needs to be at
2645          least as large as the number of constants actually referred to
2646          by the function.  If it's too small we'll stop looking too early
2647          and fail to emit constants; if it's too large we'll only look
2648          through the entire function when we could have stopped earlier.  */
2649       if (cfun)
2650         n_deferred_constants++;
2651       return;
2652     }
2653
2654   output_constant_def_contents (symbol);
2655 }
2656
2657 /* We must output the constant data referred to by SYMBOL; do so.  */
2658
2659 static void
2660 output_constant_def_contents (symbol)
2661      rtx symbol;
2662 {
2663   tree exp = SYMBOL_REF_DECL (symbol);
2664   const char *label = XSTR (symbol, 0);
2665
2666   /* Make sure any other constants whose addresses appear in EXP
2667      are assigned label numbers.  */
2668   int reloc = output_addressed_constants (exp);
2669
2670   /* Align the location counter as required by EXP's data type.  */
2671   int align = TYPE_ALIGN (TREE_TYPE (exp));
2672 #ifdef CONSTANT_ALIGNMENT
2673   align = CONSTANT_ALIGNMENT (exp, align);
2674 #endif
2675
2676   /* We are no longer deferring this constant.  */
2677   TREE_ASM_WRITTEN (exp) = 1;
2678
2679   if (IN_NAMED_SECTION (exp))
2680     named_section (exp, NULL, reloc);
2681   else
2682     (*targetm.asm_out.select_section) (exp, reloc, align);
2683
2684   if (align > BITS_PER_UNIT)
2685     {
2686       ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
2687     }
2688
2689   /* Output the label itself.  */
2690   ASM_OUTPUT_LABEL (asm_out_file, label);
2691
2692   /* Output the value of EXP.  */
2693   output_constant (exp,
2694                    (TREE_CODE (exp) == STRING_CST
2695                     ? MAX (TREE_STRING_LENGTH (exp),
2696                            int_size_in_bytes (TREE_TYPE (exp)))
2697                     : int_size_in_bytes (TREE_TYPE (exp))),
2698                    align);
2699
2700 }
2701
2702 /* A constant which was deferred in its original location has been
2703    inserted by the RTL inliner into a different function.  The
2704    current function's deferred constant count must be incremented.  */
2705 void
2706 notice_rtl_inlining_of_deferred_constant ()
2707 {
2708   n_deferred_constants++;
2709 }
2710 \f
2711 /* Used in the hash tables to avoid outputting the same constant
2712    twice.  Unlike 'struct constant_descriptor_tree', RTX constants
2713    are output once per function, not once per file; there seems
2714    to be no reason for the difference.  */
2715
2716 struct constant_descriptor_rtx GTY(())
2717 {
2718   /* More constant_descriptors with the same hash code.  */
2719   struct constant_descriptor_rtx *next;
2720
2721   /* A MEM for the constant.  */
2722   rtx rtl;
2723
2724   /* The value of the constant.  */
2725   struct rtx_const value;
2726 };
2727
2728 /* Structure to represent sufficient information about a constant so that
2729    it can be output when the constant pool is output, so that function
2730    integration can be done, and to simplify handling on machines that reference
2731    constant pool as base+displacement.  */
2732
2733 struct pool_constant GTY(())
2734 {
2735   struct constant_descriptor_rtx *desc;
2736   struct pool_constant *next;
2737   struct pool_constant *next_sym;
2738   rtx constant;
2739   enum machine_mode mode;
2740   int labelno;
2741   unsigned int align;
2742   HOST_WIDE_INT offset;
2743   int mark;
2744 };
2745
2746 /* Hash code for a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true.
2747    The argument is XSTR (... , 0)  */
2748
2749 #define SYMHASH(LABEL)  (((unsigned long) (LABEL)) % MAX_RTX_HASH_TABLE)
2750 \f
2751 /* Initialize constant pool hashing for a new function.  */
2752
2753 void
2754 init_varasm_status (f)
2755      struct function *f;
2756 {
2757   struct varasm_status *p;
2758   p = (struct varasm_status *) ggc_alloc (sizeof (struct varasm_status));
2759   f->varasm = p;
2760   p->x_const_rtx_hash_table
2761     = ((struct constant_descriptor_rtx **)
2762        ggc_alloc_cleared (MAX_RTX_HASH_TABLE
2763                           * sizeof (struct constant_descriptor_rtx *)));
2764   p->x_const_rtx_sym_hash_table
2765     = ((struct pool_constant **)
2766        ggc_alloc_cleared (MAX_RTX_HASH_TABLE
2767                           * sizeof (struct pool_constant *)));
2768
2769   p->x_first_pool = p->x_last_pool = 0;
2770   p->x_pool_offset = 0;
2771   p->deferred_constants = 0;
2772 }
2773 \f
2774
2775 /* Express an rtx for a constant integer (perhaps symbolic)
2776    as the sum of a symbol or label plus an explicit integer.
2777    They are stored into VALUE.  */
2778
2779 static void
2780 decode_rtx_const (mode, x, value)
2781      enum machine_mode mode;
2782      rtx x;
2783      struct rtx_const *value;
2784 {
2785   /* Clear the whole structure, including any gaps.  */
2786   memset (value, 0, sizeof (struct rtx_const));
2787
2788   value->kind = RTX_INT;        /* Most usual kind.  */
2789   value->mode = mode;
2790
2791   switch (GET_CODE (x))
2792     {
2793     case CONST_DOUBLE:
2794       value->kind = RTX_DOUBLE;
2795       if (GET_MODE (x) != VOIDmode)
2796         {
2797           const REAL_VALUE_TYPE *r = CONST_DOUBLE_REAL_VALUE (x);
2798
2799           value->mode = GET_MODE (x);
2800
2801           /* Copy the REAL_VALUE_TYPE by members so that we don't
2802              copy garbage from the original structure into our
2803              carefully cleaned hashing structure.  */
2804           value->un.du.class = r->class;
2805           value->un.du.sign = r->sign;
2806           switch (r->class)
2807             {
2808             case rvc_zero:
2809             case rvc_inf:
2810               break;
2811             case rvc_normal:
2812               value->un.du.exp = r->exp;
2813               /* FALLTHRU */
2814             case rvc_nan:
2815               memcpy (value->un.du.sig, r->sig, sizeof (r->sig));
2816               break;
2817             default:
2818               abort ();
2819             }
2820         }
2821       else
2822         {
2823           value->un.di.low = CONST_DOUBLE_LOW (x);
2824           value->un.di.high = CONST_DOUBLE_HIGH (x);
2825         }
2826       break;
2827
2828     case CONST_VECTOR:
2829       {
2830         int units, i;
2831
2832         units = CONST_VECTOR_NUNITS (x);
2833         value->kind = RTX_VECTOR;
2834         value->mode = mode;
2835
2836         if (GET_MODE_CLASS (mode) == MODE_VECTOR_INT)
2837           {
2838             for (i = 0; i < units; ++i)
2839               {
2840                 rtx elt = CONST_VECTOR_ELT (x, i);
2841                 if (GET_CODE (elt) == CONST_INT)
2842                   {
2843                     value->un.int_vec[i].low = INTVAL (elt);
2844                     value->un.int_vec[i].high = 0;
2845                   }
2846                 else
2847                   {
2848                     value->un.int_vec[i].low = CONST_DOUBLE_LOW (elt);
2849                     value->un.int_vec[i].high = CONST_DOUBLE_HIGH (elt);
2850                   }
2851               }
2852           }
2853         else if (GET_MODE_CLASS (mode) == MODE_VECTOR_FLOAT)
2854           {
2855             for (i = 0; i < units; ++i)
2856               {
2857                 const REAL_VALUE_TYPE *r
2858                   = CONST_DOUBLE_REAL_VALUE (CONST_VECTOR_ELT (x, i));
2859                 REAL_VALUE_TYPE *d = &value->un.fp_vec[i];
2860
2861                 /* Copy the REAL_VALUE_TYPE by members so that we don't
2862                    copy garbage from the original structure into our
2863                    carefully cleaned hashing structure.  */
2864                 d->class = r->class;
2865                 d->sign = r->sign;
2866                 switch (r->class)
2867                   {
2868                   case rvc_zero:
2869                   case rvc_inf:
2870                     break;
2871                   case rvc_normal:
2872                     d->exp = r->exp;
2873                     /* FALLTHRU */
2874                   case rvc_nan:
2875                     memcpy (d->sig, r->sig, sizeof (r->sig));
2876                     break;
2877                   default:
2878                     abort ();
2879                   }
2880               }
2881           }
2882         else
2883           abort ();
2884       }
2885       break;
2886
2887     case CONST_INT:
2888       value->un.addr.offset = INTVAL (x);
2889       break;
2890
2891     case SYMBOL_REF:
2892     case LABEL_REF:
2893     case PC:
2894       value->un.addr.base = x;
2895       break;
2896
2897     case CONST:
2898       x = XEXP (x, 0);
2899       if (GET_CODE (x) == PLUS && GET_CODE (XEXP (x, 1)) == CONST_INT)
2900         {
2901           value->un.addr.base = XEXP (x, 0);
2902           value->un.addr.offset = INTVAL (XEXP (x, 1));
2903         }
2904       else if (GET_CODE (x) == MINUS && GET_CODE (XEXP (x, 1)) == CONST_INT)
2905         {
2906           value->un.addr.base = XEXP (x, 0);
2907           value->un.addr.offset = - INTVAL (XEXP (x, 1));
2908         }
2909       else
2910         {
2911           value->un.addr.base = x;
2912           value->un.addr.offset = 0;
2913         }
2914       break;
2915
2916     default:
2917       value->kind = RTX_UNKNOWN;
2918       break;
2919     }
2920
2921   if (value->kind == RTX_INT && value->un.addr.base != 0
2922       && GET_CODE (value->un.addr.base) == UNSPEC)
2923     {
2924       /* For a simple UNSPEC, the base is set to the
2925          operand, the kind field is set to the index of
2926          the unspec expression.
2927          Together with the code below, in case that
2928          the operand is a SYMBOL_REF or LABEL_REF,
2929          the address of the string or the code_label
2930          is taken as base.  */
2931       if (XVECLEN (value->un.addr.base, 0) == 1)
2932         {
2933           value->kind = RTX_UNSPEC + XINT (value->un.addr.base, 1);
2934           value->un.addr.base = XVECEXP (value->un.addr.base, 0, 0);
2935         }
2936     }
2937
2938   if (value->kind >= RTX_INT && value->un.addr.base != 0)
2939     switch (GET_CODE (value->un.addr.base))
2940       {
2941       case SYMBOL_REF:
2942         /* Use the string's address, not the SYMBOL_REF's address,
2943            for the sake of addresses of library routines.  */
2944         value->un.addr.symbol = XSTR (value->un.addr.base, 0);
2945         value->un.addr.base = NULL_RTX;
2946         break;
2947
2948       case LABEL_REF:
2949         /* For a LABEL_REF, compare labels.  */
2950         value->un.addr.base = XEXP (value->un.addr.base, 0);
2951
2952       default:
2953         break;
2954       }
2955 }
2956
2957 /* Given a MINUS expression, simplify it if both sides
2958    include the same symbol.  */
2959
2960 rtx
2961 simplify_subtraction (x)
2962      rtx x;
2963 {
2964   struct rtx_const val0, val1;
2965
2966   decode_rtx_const (GET_MODE (x), XEXP (x, 0), &val0);
2967   decode_rtx_const (GET_MODE (x), XEXP (x, 1), &val1);
2968
2969   if (val0.kind >= RTX_INT
2970       && val0.kind == val1.kind
2971       && val0.un.addr.base == val1.un.addr.base
2972       && val0.un.addr.symbol == val1.un.addr.symbol)
2973     return GEN_INT (val0.un.addr.offset - val1.un.addr.offset);
2974
2975   return x;
2976 }
2977
2978 /* Compute a hash code for a constant RTL expression.  */
2979
2980 static unsigned int
2981 const_hash_rtx (mode, x)
2982      enum machine_mode mode;
2983      rtx x;
2984 {
2985   union {
2986     struct rtx_const value;
2987     unsigned int data[sizeof(struct rtx_const) / sizeof (unsigned int)];
2988   } u;
2989
2990   unsigned int hi;
2991   size_t i;
2992
2993   decode_rtx_const (mode, x, &u.value);
2994
2995   /* Compute hashing function.  */
2996   hi = 0;
2997   for (i = 0; i < ARRAY_SIZE (u.data); i++)
2998     hi = hi * 613 + u.data[i];
2999
3000   return hi % MAX_RTX_HASH_TABLE;
3001 }
3002
3003 /* Compare a constant rtl object X with a constant-descriptor DESC.
3004    Return 1 if DESC describes a constant with the same value as X.  */
3005
3006 static int
3007 compare_constant_rtx (mode, x, desc)
3008      enum machine_mode mode;
3009      rtx x;
3010      struct constant_descriptor_rtx *desc;
3011 {
3012   struct rtx_const value;
3013
3014   decode_rtx_const (mode, x, &value);
3015
3016   /* Compare constant contents.  */
3017   return memcmp (&value, &desc->value, sizeof (struct rtx_const)) == 0;
3018 }
3019
3020 /* Construct a constant descriptor for the rtl-expression X.
3021    It is up to the caller to enter the descriptor in the hash table.  */
3022
3023 static struct constant_descriptor_rtx *
3024 record_constant_rtx (mode, x)
3025      enum machine_mode mode;
3026      rtx x;
3027 {
3028   struct constant_descriptor_rtx *ptr;
3029
3030   ptr = (struct constant_descriptor_rtx *) ggc_alloc (sizeof (*ptr));
3031   decode_rtx_const (mode, x, &ptr->value);
3032
3033   return ptr;
3034 }
3035 \f
3036 /* Given a constant rtx X, return a MEM for the location in memory at which
3037    this constant has been placed.  Return 0 if it not has been placed yet.  */
3038
3039 rtx
3040 mem_for_const_double (x)
3041      rtx x;
3042 {
3043   enum machine_mode mode = GET_MODE (x);
3044   struct constant_descriptor_rtx *desc;
3045
3046   for (desc = const_rtx_hash_table[const_hash_rtx (mode, x)]; desc;
3047        desc = desc->next)
3048     if (compare_constant_rtx (mode, x, desc))
3049       return desc->rtl;
3050
3051   return 0;
3052 }
3053
3054 /* Given a constant rtx X, make (or find) a memory constant for its value
3055    and return a MEM rtx to refer to it in memory.  */
3056
3057 rtx
3058 force_const_mem (mode, x)
3059      enum machine_mode mode;
3060      rtx x;
3061 {
3062   int hash;
3063   struct constant_descriptor_rtx *desc;
3064   char label[256];
3065   rtx def, symbol;
3066   struct pool_constant *pool;
3067   unsigned int align;
3068
3069   /* If we're not allowed to drop X into the constant pool, don't.  */
3070   if ((*targetm.cannot_force_const_mem) (x))
3071     return NULL_RTX;
3072
3073   /* Compute hash code of X.  Search the descriptors for that hash code
3074      to see if any of them describes X.  If yes, we have an rtx to use.  */
3075   hash = const_hash_rtx (mode, x);
3076   for (desc = const_rtx_hash_table[hash]; desc; desc = desc->next)
3077     if (compare_constant_rtx (mode, x, desc))
3078       return desc->rtl;
3079
3080   /* No constant equal to X is known to have been output.
3081      Make a constant descriptor to enter X in the hash table
3082      and make a MEM for it.  */
3083   desc = record_constant_rtx (mode, x);
3084   desc->next = const_rtx_hash_table[hash];
3085   const_rtx_hash_table[hash] = desc;
3086
3087   /* Align the location counter as required by EXP's data type.  */
3088   align = GET_MODE_ALIGNMENT (mode == VOIDmode ? word_mode : mode);
3089 #ifdef CONSTANT_ALIGNMENT
3090   {
3091     tree type = (*lang_hooks.types.type_for_mode) (mode, 0);
3092     if (type != NULL_TREE)
3093       align = CONSTANT_ALIGNMENT (make_tree (type, x), align);
3094   }
3095 #endif
3096
3097   pool_offset += (align / BITS_PER_UNIT) - 1;
3098   pool_offset &= ~ ((align / BITS_PER_UNIT) - 1);
3099
3100   if (GET_CODE (x) == LABEL_REF)
3101     LABEL_PRESERVE_P (XEXP (x, 0)) = 1;
3102
3103   /* Allocate a pool constant descriptor, fill it in, and chain it in.  */
3104   pool = (struct pool_constant *) ggc_alloc (sizeof (struct pool_constant));
3105   pool->desc = desc;
3106   pool->constant = x;
3107   pool->mode = mode;
3108   pool->labelno = const_labelno;
3109   pool->align = align;
3110   pool->offset = pool_offset;
3111   pool->mark = 1;
3112   pool->next = 0;
3113
3114   if (last_pool == 0)
3115     first_pool = pool;
3116   else
3117     last_pool->next = pool;
3118
3119   last_pool = pool;
3120   pool_offset += GET_MODE_SIZE (mode);
3121
3122   /* Create a string containing the label name, in LABEL.  */
3123   ASM_GENERATE_INTERNAL_LABEL (label, "LC", const_labelno);
3124
3125   ++const_labelno;
3126
3127   /* Construct the SYMBOL_REF and the MEM.  */
3128
3129   symbol = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (label));
3130   SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
3131
3132   pool->desc->rtl = def = gen_rtx_MEM (mode, symbol);
3133   set_mem_attributes (def, (*lang_hooks.types.type_for_mode) (mode, 0), 1);
3134   RTX_UNCHANGING_P (def) = 1;
3135
3136   /* Add label to symbol hash table.  */
3137   hash = SYMHASH (XSTR (symbol, 0));
3138   pool->next_sym = const_rtx_sym_hash_table[hash];
3139   const_rtx_sym_hash_table[hash] = pool;
3140
3141   /* Mark the symbol_ref as belonging to this constants pool.  */
3142   CONSTANT_POOL_ADDRESS_P (symbol) = 1;
3143   SYMBOL_REF_FLAGS (symbol) = SYMBOL_FLAG_LOCAL;
3144   current_function_uses_const_pool = 1;
3145
3146   return def;
3147 }
3148 \f
3149 /* Given a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true, return a pointer to
3150    the corresponding pool_constant structure.  */
3151
3152 static struct pool_constant *
3153 find_pool_constant (f, addr)
3154      struct function *f;
3155      rtx addr;
3156 {
3157   struct pool_constant *pool;
3158   const char *label = XSTR (addr, 0);
3159
3160   for (pool = f->varasm->x_const_rtx_sym_hash_table[SYMHASH (label)]; pool;
3161        pool = pool->next_sym)
3162     if (XSTR (XEXP (pool->desc->rtl, 0), 0) == label)
3163       return pool;
3164
3165   abort ();
3166 }
3167
3168 /* Given a constant pool SYMBOL_REF, return the corresponding constant.  */
3169
3170 rtx
3171 get_pool_constant (addr)
3172      rtx addr;
3173 {
3174   return (find_pool_constant (cfun, addr))->constant;
3175 }
3176
3177 /* Given a constant pool SYMBOL_REF, return the corresponding constant
3178    and whether it has been output or not.  */
3179
3180 rtx
3181 get_pool_constant_mark (addr, pmarked)
3182      rtx addr;
3183      bool *pmarked;
3184 {
3185   struct pool_constant *pool = find_pool_constant (cfun, addr);
3186   *pmarked = (pool->mark != 0);
3187   return pool->constant;
3188 }
3189
3190 /* Likewise, but for the constant pool of a specific function.  */
3191
3192 rtx
3193 get_pool_constant_for_function (f, addr)
3194      struct function *f;
3195      rtx addr;
3196 {
3197   return (find_pool_constant (f, addr))->constant;
3198 }
3199
3200 /* Similar, return the mode.  */
3201
3202 enum machine_mode
3203 get_pool_mode (addr)
3204      rtx addr;
3205 {
3206   return (find_pool_constant (cfun, addr))->mode;
3207 }
3208
3209 enum machine_mode
3210 get_pool_mode_for_function (f, addr)
3211      struct function *f;
3212      rtx addr;
3213 {
3214   return (find_pool_constant (f, addr))->mode;
3215 }
3216
3217 /* Similar, return the offset in the constant pool.  */
3218
3219 int
3220 get_pool_offset (addr)
3221      rtx addr;
3222 {
3223   return (find_pool_constant (cfun, addr))->offset;
3224 }
3225
3226 /* Return the size of the constant pool.  */
3227
3228 int
3229 get_pool_size ()
3230 {
3231   return pool_offset;
3232 }
3233 \f
3234 /* Write all the constants in the constant pool.  */
3235
3236 void
3237 output_constant_pool (fnname, fndecl)
3238      const char *fnname ATTRIBUTE_UNUSED;
3239      tree fndecl ATTRIBUTE_UNUSED;
3240 {
3241   struct pool_constant *pool;
3242   rtx x;
3243   REAL_VALUE_TYPE r;
3244
3245   /* It is possible for gcc to call force_const_mem and then to later
3246      discard the instructions which refer to the constant.  In such a
3247      case we do not need to output the constant.  */
3248   mark_constant_pool ();
3249
3250 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3251   ASM_OUTPUT_POOL_PROLOGUE (asm_out_file, fnname, fndecl, pool_offset);
3252 #endif
3253
3254   for (pool = first_pool; pool; pool = pool->next)
3255     {
3256       rtx tmp;
3257
3258       x = pool->constant;
3259
3260       if (! pool->mark)
3261         continue;
3262
3263       /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3264          whose CODE_LABEL has been deleted.  This can occur if a jump table
3265          is eliminated by optimization.  If so, write a constant of zero
3266          instead.  Note that this can also happen by turning the
3267          CODE_LABEL into a NOTE.  */
3268       /* ??? This seems completely and utterly wrong.  Certainly it's
3269          not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3270          functioning even with INSN_DELETED_P and friends.  */
3271
3272       tmp = x;
3273       switch (GET_CODE (x))
3274         {
3275         case CONST:
3276           if (GET_CODE (XEXP (x, 0)) != PLUS
3277               || GET_CODE (XEXP (XEXP (x, 0), 0)) != LABEL_REF)
3278             break;
3279           tmp = XEXP (XEXP (x, 0), 0);
3280           /* FALLTHRU */
3281
3282         case LABEL_REF:
3283           tmp = XEXP (x, 0);
3284           if (INSN_DELETED_P (tmp)
3285               || (GET_CODE (tmp) == NOTE
3286                   && NOTE_LINE_NUMBER (tmp) == NOTE_INSN_DELETED))
3287             {
3288               abort ();
3289               x = const0_rtx;
3290             }
3291           break;
3292
3293         default:
3294           break;
3295         }
3296
3297       /* First switch to correct section.  */
3298       (*targetm.asm_out.select_rtx_section) (pool->mode, x, pool->align);
3299
3300 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3301       ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file, x, pool->mode,
3302                                      pool->align, pool->labelno, done);
3303 #endif
3304
3305       assemble_align (pool->align);
3306
3307       /* Output the label.  */
3308       (*targetm.asm_out.internal_label) (asm_out_file, "LC", pool->labelno);
3309
3310       /* Output the value of the constant itself.  */
3311       switch (GET_MODE_CLASS (pool->mode))
3312         {
3313         case MODE_FLOAT:
3314           if (GET_CODE (x) != CONST_DOUBLE)
3315             abort ();
3316
3317           REAL_VALUE_FROM_CONST_DOUBLE (r, x);
3318           assemble_real (r, pool->mode, pool->align);
3319           break;
3320
3321         case MODE_INT:
3322         case MODE_PARTIAL_INT:
3323           assemble_integer (x, GET_MODE_SIZE (pool->mode), pool->align, 1);
3324           break;
3325
3326         case MODE_VECTOR_FLOAT:
3327           {
3328             int i, units;
3329             rtx elt;
3330
3331             if (GET_CODE (x) != CONST_VECTOR)
3332               abort ();
3333
3334             units = CONST_VECTOR_NUNITS (x);
3335
3336             for (i = 0; i < units; i++)
3337               {
3338                 elt = CONST_VECTOR_ELT (x, i);
3339                 REAL_VALUE_FROM_CONST_DOUBLE (r, elt);
3340                 assemble_real (r, GET_MODE_INNER (pool->mode), pool->align);
3341               }
3342           }
3343           break;
3344
3345         case MODE_VECTOR_INT:
3346           {
3347             int i, units;
3348             rtx elt;
3349
3350             if (GET_CODE (x) != CONST_VECTOR)
3351               abort ();
3352
3353             units = CONST_VECTOR_NUNITS (x);
3354
3355             for (i = 0; i < units; i++)
3356               {
3357                 elt = CONST_VECTOR_ELT (x, i);
3358                 assemble_integer (elt, GET_MODE_UNIT_SIZE (pool->mode),
3359                                   pool->align, 1);
3360               }
3361           }
3362           break;
3363
3364         default:
3365           abort ();
3366         }
3367
3368       /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
3369          sections have proper size.  */
3370       if (pool->align > GET_MODE_BITSIZE (pool->mode)
3371           && in_section == in_named
3372           && get_named_section_flags (in_named_name) & SECTION_MERGE)
3373         assemble_align (pool->align);
3374
3375 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3376     done: ;
3377 #endif
3378     }
3379
3380 #ifdef ASM_OUTPUT_POOL_EPILOGUE
3381   ASM_OUTPUT_POOL_EPILOGUE (asm_out_file, fnname, fndecl, pool_offset);
3382 #endif
3383
3384   /* Done with this pool.  */
3385   first_pool = last_pool = 0;
3386 }
3387
3388 /* Look through the instructions for this function, and mark all the
3389    entries in the constant pool which are actually being used.  Emit
3390    deferred constants which have indeed been used.  */
3391
3392 static void
3393 mark_constant_pool ()
3394 {
3395   rtx insn;
3396   rtx link;
3397   struct pool_constant *pool;
3398
3399   if (first_pool == 0 && n_deferred_constants == 0)
3400     return;
3401
3402   for (pool = first_pool; pool; pool = pool->next)
3403     pool->mark = 0;
3404
3405   for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3406     if (INSN_P (insn))
3407       mark_constants (PATTERN (insn));
3408
3409   for (link = current_function_epilogue_delay_list;
3410        link;
3411        link = XEXP (link, 1))
3412     {
3413       insn = XEXP (link, 0);
3414
3415       if (INSN_P (insn))
3416         mark_constants (PATTERN (insn));
3417     }
3418 }
3419
3420 /* Look through appropriate parts of X, marking all entries in the
3421    constant pool which are actually being used.  Entries that are only
3422    referenced by other constants are also marked as used.  Emit
3423    deferred strings that are used.  */
3424
3425 static void
3426 mark_constants (x)
3427      rtx x;
3428 {
3429   int i;
3430   const char *format_ptr;
3431
3432   if (x == 0)
3433     return;
3434
3435   if (GET_CODE (x) == SYMBOL_REF)
3436     {
3437       mark_constant (&x, NULL);
3438       return;
3439     }
3440
3441   /* Insns may appear inside a SEQUENCE.  Only check the patterns of
3442      insns, not any notes that may be attached.  We don't want to mark
3443      a constant just because it happens to appear in a REG_EQUIV note.  */
3444   if (INSN_P (x))
3445     {
3446       mark_constants (PATTERN (x));
3447       return;
3448     }
3449
3450   format_ptr = GET_RTX_FORMAT (GET_CODE (x));
3451
3452   for (i = 0; i < GET_RTX_LENGTH (GET_CODE (x)); i++)
3453     {
3454       switch (*format_ptr++)
3455         {
3456         case 'e':
3457           mark_constants (XEXP (x, i));
3458           break;
3459
3460         case 'E':
3461           if (XVEC (x, i) != 0)
3462             {
3463               int j;
3464
3465               for (j = 0; j < XVECLEN (x, i); j++)
3466                 mark_constants (XVECEXP (x, i, j));
3467             }
3468           break;
3469
3470         case 'S':
3471         case 's':
3472         case '0':
3473         case 'i':
3474         case 'w':
3475         case 'n':
3476         case 'u':
3477         case 'B':
3478           break;
3479
3480         default:
3481           abort ();
3482         }
3483     }
3484 }
3485
3486 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3487    to as used.  Emit referenced deferred strings.  This function can
3488    be used with for_each_rtx to mark all SYMBOL_REFs in an rtx.  */
3489
3490 static int
3491 mark_constant (current_rtx, data)
3492      rtx *current_rtx;
3493      void *data ATTRIBUTE_UNUSED;
3494 {
3495   rtx x = *current_rtx;
3496
3497   if (x == NULL_RTX)
3498     return 0;
3499
3500   else if (GET_CODE (x) == SYMBOL_REF)
3501     {
3502       if (CONSTANT_POOL_ADDRESS_P (x))
3503         {
3504           struct pool_constant *pool = find_pool_constant (cfun, x);
3505           if (pool->mark == 0)
3506             {
3507               pool->mark = 1;
3508               for_each_rtx (&(pool->constant), &mark_constant, NULL);
3509             }
3510           else
3511             return -1;
3512         }
3513       else if (TREE_CONSTANT_POOL_ADDRESS_P (x))
3514         {
3515           tree exp = SYMBOL_REF_DECL (x);
3516           if (!TREE_ASM_WRITTEN (exp))
3517             {
3518               n_deferred_constants--;
3519               output_constant_def_contents (x);
3520             }
3521         }
3522     }
3523   return 0;
3524 }
3525 \f
3526 /* Find all the constants whose addresses are referenced inside of EXP,
3527    and make sure assembler code with a label has been output for each one.
3528    Indicate whether an ADDR_EXPR has been encountered.  */
3529
3530 static int
3531 output_addressed_constants (exp)
3532      tree exp;
3533 {
3534   int reloc = 0, reloc2;
3535   tree tem;
3536
3537   /* Give the front-end a chance to convert VALUE to something that
3538      looks more like a constant to the back-end.  */
3539   exp = (*lang_hooks.expand_constant) (exp);
3540
3541   switch (TREE_CODE (exp))
3542     {
3543     case ADDR_EXPR:
3544     case FDESC_EXPR:
3545       /* Go inside any operations that get_inner_reference can handle and see
3546          if what's inside is a constant: no need to do anything here for
3547          addresses of variables or functions.  */
3548       for (tem = TREE_OPERAND (exp, 0); handled_component_p (tem);
3549            tem = TREE_OPERAND (tem, 0))
3550         ;
3551
3552       if (TREE_CODE_CLASS (TREE_CODE (tem)) == 'c'
3553           || TREE_CODE (tem) == CONSTRUCTOR)
3554         output_constant_def (tem, 0);
3555
3556       if (TREE_PUBLIC (tem))
3557         reloc |= 2;
3558       else
3559         reloc |= 1;
3560       break;
3561
3562     case PLUS_EXPR:
3563       reloc = output_addressed_constants (TREE_OPERAND (exp, 0));
3564       reloc |= output_addressed_constants (TREE_OPERAND (exp, 1));
3565       break;
3566
3567     case MINUS_EXPR:
3568       reloc = output_addressed_constants (TREE_OPERAND (exp, 0));
3569       reloc2 = output_addressed_constants (TREE_OPERAND (exp, 1));
3570       /* The difference of two local labels is computable at link time.  */
3571       if (reloc == 1 && reloc2 == 1)
3572         reloc = 0;
3573       else
3574         reloc |= reloc2;
3575       break;
3576
3577     case NOP_EXPR:
3578     case CONVERT_EXPR:
3579     case NON_LVALUE_EXPR:
3580       reloc = output_addressed_constants (TREE_OPERAND (exp, 0));
3581       break;
3582
3583     case CONSTRUCTOR:
3584       for (tem = CONSTRUCTOR_ELTS (exp); tem; tem = TREE_CHAIN (tem))
3585         if (TREE_VALUE (tem) != 0)
3586           reloc |= output_addressed_constants (TREE_VALUE (tem));
3587
3588       break;
3589
3590     default:
3591       break;
3592     }
3593   return reloc;
3594 }
3595 \f
3596 /* Return nonzero if VALUE is a valid constant-valued expression
3597    for use in initializing a static variable; one that can be an
3598    element of a "constant" initializer.
3599
3600    Return null_pointer_node if the value is absolute;
3601    if it is relocatable, return the variable that determines the relocation.
3602    We assume that VALUE has been folded as much as possible;
3603    therefore, we do not need to check for such things as
3604    arithmetic-combinations of integers.  */
3605
3606 tree
3607 initializer_constant_valid_p (value, endtype)
3608      tree value;
3609      tree endtype;
3610 {
3611   /* Give the front-end a chance to convert VALUE to something that
3612      looks more like a constant to the back-end.  */
3613   value = (*lang_hooks.expand_constant) (value);
3614
3615   switch (TREE_CODE (value))
3616     {
3617     case CONSTRUCTOR:
3618       if ((TREE_CODE (TREE_TYPE (value)) == UNION_TYPE
3619            || TREE_CODE (TREE_TYPE (value)) == RECORD_TYPE)
3620           && TREE_CONSTANT (value)
3621           && CONSTRUCTOR_ELTS (value))
3622         return
3623           initializer_constant_valid_p (TREE_VALUE (CONSTRUCTOR_ELTS (value)),
3624                                         endtype);
3625
3626       return TREE_STATIC (value) ? null_pointer_node : 0;
3627
3628     case INTEGER_CST:
3629     case VECTOR_CST:
3630     case REAL_CST:
3631     case STRING_CST:
3632     case COMPLEX_CST:
3633       return null_pointer_node;
3634
3635     case ADDR_EXPR:
3636     case FDESC_EXPR:
3637       return staticp (TREE_OPERAND (value, 0)) ? TREE_OPERAND (value, 0) : 0;
3638
3639     case VIEW_CONVERT_EXPR:
3640     case NON_LVALUE_EXPR:
3641       return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3642
3643     case CONVERT_EXPR:
3644     case NOP_EXPR:
3645       /* Allow conversions between pointer types.  */
3646       if (POINTER_TYPE_P (TREE_TYPE (value))
3647           && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3648         return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3649
3650       /* Allow conversions between real types.  */
3651       if (FLOAT_TYPE_P (TREE_TYPE (value))
3652           && FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3653         return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3654
3655       /* Allow length-preserving conversions between integer types.  */
3656       if (INTEGRAL_TYPE_P (TREE_TYPE (value))
3657           && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0)))
3658           && (TYPE_PRECISION (TREE_TYPE (value))
3659               == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0)))))
3660         return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3661
3662       /* Allow conversions between other integer types only if
3663          explicit value.  */
3664       if (INTEGRAL_TYPE_P (TREE_TYPE (value))
3665           && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3666         {
3667           tree inner = initializer_constant_valid_p (TREE_OPERAND (value, 0),
3668                                                      endtype);
3669           if (inner == null_pointer_node)
3670             return null_pointer_node;
3671           break;
3672         }
3673
3674       /* Allow (int) &foo provided int is as wide as a pointer.  */
3675       if (INTEGRAL_TYPE_P (TREE_TYPE (value))
3676           && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0)))
3677           && (TYPE_PRECISION (TREE_TYPE (value))
3678               >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0)))))
3679         return initializer_constant_valid_p (TREE_OPERAND (value, 0),
3680                                              endtype);
3681
3682       /* Likewise conversions from int to pointers, but also allow
3683          conversions from 0.  */
3684       if (POINTER_TYPE_P (TREE_TYPE (value))
3685           && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3686         {
3687           if (integer_zerop (TREE_OPERAND (value, 0)))
3688             return null_pointer_node;
3689           else if (TYPE_PRECISION (TREE_TYPE (value))
3690                    <= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0))))
3691             return initializer_constant_valid_p (TREE_OPERAND (value, 0),
3692                                                  endtype);
3693         }
3694
3695       /* Allow conversions to union types if the value inside is okay.  */
3696       if (TREE_CODE (TREE_TYPE (value)) == UNION_TYPE)
3697         return initializer_constant_valid_p (TREE_OPERAND (value, 0),
3698                                              endtype);
3699       break;
3700
3701     case PLUS_EXPR:
3702       if (! INTEGRAL_TYPE_P (endtype)
3703           || TYPE_PRECISION (endtype) >= POINTER_SIZE)
3704         {
3705           tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
3706                                                       endtype);
3707           tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
3708                                                       endtype);
3709           /* If either term is absolute, use the other terms relocation.  */
3710           if (valid0 == null_pointer_node)
3711             return valid1;
3712           if (valid1 == null_pointer_node)
3713             return valid0;
3714         }
3715       break;
3716
3717     case MINUS_EXPR:
3718       if (! INTEGRAL_TYPE_P (endtype)
3719           || TYPE_PRECISION (endtype) >= POINTER_SIZE)
3720         {
3721           tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
3722                                                       endtype);
3723           tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
3724                                                       endtype);
3725           /* Win if second argument is absolute.  */
3726           if (valid1 == null_pointer_node)
3727             return valid0;
3728           /* Win if both arguments have the same relocation.
3729              Then the value is absolute.  */
3730           if (valid0 == valid1 && valid0 != 0)
3731             return null_pointer_node;
3732
3733           /* Since GCC guarantees that string constants are unique in the
3734              generated code, a subtraction between two copies of the same
3735              constant string is absolute.  */
3736           if (valid0 && TREE_CODE (valid0) == STRING_CST &&
3737               valid1 && TREE_CODE (valid1) == STRING_CST &&
3738               TREE_STRING_POINTER (valid0) == TREE_STRING_POINTER (valid1))
3739             return null_pointer_node;
3740         }
3741
3742       /* Support differences between labels.  */
3743       if (INTEGRAL_TYPE_P (endtype))
3744         {
3745           tree op0, op1;
3746           op0 = TREE_OPERAND (value, 0);
3747           op1 = TREE_OPERAND (value, 1);
3748
3749           /* Like STRIP_NOPS except allow the operand mode to widen.
3750              This works around a feature of fold that simplifies
3751              (int)(p1 - p2) to ((int)p1 - (int)p2) under the theory
3752              that the narrower operation is cheaper.  */
3753
3754           while (TREE_CODE (op0) == NOP_EXPR
3755                  || TREE_CODE (op0) == CONVERT_EXPR
3756                  || TREE_CODE (op0) == NON_LVALUE_EXPR)
3757             {
3758               tree inner = TREE_OPERAND (op0, 0);
3759               if (inner == error_mark_node
3760                   || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
3761                   || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0)))
3762                       > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
3763                 break;
3764               op0 = inner;
3765             }
3766
3767           while (TREE_CODE (op1) == NOP_EXPR
3768                  || TREE_CODE (op1) == CONVERT_EXPR
3769                  || TREE_CODE (op1) == NON_LVALUE_EXPR)
3770             {
3771               tree inner = TREE_OPERAND (op1, 0);
3772               if (inner == error_mark_node
3773                   || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner)))
3774                   || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op1)))
3775                       > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner)))))
3776                 break;
3777               op1 = inner;
3778             }
3779
3780           if (TREE_CODE (op0) == ADDR_EXPR
3781               && TREE_CODE (TREE_OPERAND (op0, 0)) == LABEL_DECL
3782               && TREE_CODE (op1) == ADDR_EXPR
3783               && TREE_CODE (TREE_OPERAND (op1, 0)) == LABEL_DECL)
3784             return null_pointer_node;
3785         }
3786       break;
3787
3788     default:
3789       break;
3790     }
3791
3792   return 0;
3793 }
3794 \f
3795 /* Output assembler code for constant EXP to FILE, with no label.
3796    This includes the pseudo-op such as ".int" or ".byte", and a newline.
3797    Assumes output_addressed_constants has been done on EXP already.
3798
3799    Generate exactly SIZE bytes of assembler data, padding at the end
3800    with zeros if necessary.  SIZE must always be specified.
3801
3802    SIZE is important for structure constructors,
3803    since trailing members may have been omitted from the constructor.
3804    It is also important for initialization of arrays from string constants
3805    since the full length of the string constant might not be wanted.
3806    It is also needed for initialization of unions, where the initializer's
3807    type is just one member, and that may not be as long as the union.
3808
3809    There a case in which we would fail to output exactly SIZE bytes:
3810    for a structure constructor that wants to produce more than SIZE bytes.
3811    But such constructors will never be generated for any possible input.
3812
3813    ALIGN is the alignment of the data in bits.  */
3814
3815 void
3816 output_constant (exp, size, align)
3817      tree exp;
3818      unsigned HOST_WIDE_INT size;
3819      unsigned int align;
3820 {
3821   enum tree_code code;
3822   unsigned HOST_WIDE_INT thissize;
3823
3824   /* Some front-ends use constants other than the standard language-independent
3825      varieties, but which may still be output directly.  Give the front-end a
3826      chance to convert EXP to a language-independent representation.  */
3827   exp = (*lang_hooks.expand_constant) (exp);
3828
3829   if (size == 0 || flag_syntax_only)
3830     return;
3831
3832   /* Eliminate any conversions since we'll be outputting the underlying
3833      constant.  */
3834   while (TREE_CODE (exp) == NOP_EXPR || TREE_CODE (exp) == CONVERT_EXPR
3835          || TREE_CODE (exp) == NON_LVALUE_EXPR
3836          || TREE_CODE (exp) == VIEW_CONVERT_EXPR)
3837     exp = TREE_OPERAND (exp, 0);
3838
3839   code = TREE_CODE (TREE_TYPE (exp));
3840   thissize = int_size_in_bytes (TREE_TYPE (exp));
3841
3842   /* Allow a constructor with no elements for any data type.
3843      This means to fill the space with zeros.  */
3844   if (TREE_CODE (exp) == CONSTRUCTOR && CONSTRUCTOR_ELTS (exp) == 0)
3845     {
3846       assemble_zeros (size);
3847       return;
3848     }
3849
3850   if (TREE_CODE (exp) == FDESC_EXPR)
3851     {
3852 #ifdef ASM_OUTPUT_FDESC
3853       HOST_WIDE_INT part = tree_low_cst (TREE_OPERAND (exp, 1), 0);
3854       tree decl = TREE_OPERAND (exp, 0);
3855       ASM_OUTPUT_FDESC (asm_out_file, decl, part);
3856 #else
3857       abort ();
3858 #endif
3859       return;
3860     }
3861
3862   /* Now output the underlying data.  If we've handling the padding, return.
3863      Otherwise, break and ensure THISSIZE is the size written.  */
3864   switch (code)
3865     {
3866     case CHAR_TYPE:
3867     case BOOLEAN_TYPE:
3868     case INTEGER_TYPE:
3869     case ENUMERAL_TYPE:
3870     case POINTER_TYPE:
3871     case REFERENCE_TYPE:
3872       if (! assemble_integer (expand_expr (exp, NULL_RTX, VOIDmode,
3873                                            EXPAND_INITIALIZER),
3874                               size, align, 0))
3875         error ("initializer for integer value is too complicated");
3876       break;
3877
3878     case REAL_TYPE:
3879       if (TREE_CODE (exp) != REAL_CST)
3880         error ("initializer for floating value is not a floating constant");
3881
3882       assemble_real (TREE_REAL_CST (exp),
3883                      mode_for_size (size * BITS_PER_UNIT, MODE_FLOAT, 0),
3884                      align);
3885       break;
3886
3887     case COMPLEX_TYPE:
3888       output_constant (TREE_REALPART (exp), thissize / 2, align);
3889       output_constant (TREE_IMAGPART (exp), thissize / 2,
3890                        min_align (align, BITS_PER_UNIT * (thissize / 2)));
3891       break;
3892
3893     case ARRAY_TYPE:
3894     case VECTOR_TYPE:
3895       if (TREE_CODE (exp) == CONSTRUCTOR)
3896         {
3897           output_constructor (exp, size, align);
3898           return;
3899         }
3900       else if (TREE_CODE (exp) == STRING_CST)
3901         {
3902           thissize = MIN ((unsigned HOST_WIDE_INT)TREE_STRING_LENGTH (exp),
3903                           size);
3904           assemble_string (TREE_STRING_POINTER (exp), thissize);
3905         }
3906       else if (TREE_CODE (exp) == VECTOR_CST)
3907         {
3908           int elt_size;
3909           tree link;
3910           unsigned int nalign;
3911           enum machine_mode inner;
3912
3913           inner = GET_MODE_INNER (TYPE_MODE (TREE_TYPE (exp)));
3914           nalign = MIN (align, GET_MODE_ALIGNMENT (inner));
3915
3916           elt_size = GET_MODE_UNIT_SIZE (TYPE_MODE (TREE_TYPE (exp)));
3917
3918           link = TREE_VECTOR_CST_ELTS (exp);
3919           output_constant (TREE_VALUE (link), elt_size, align);
3920           while ((link = TREE_CHAIN (link)) != NULL)
3921             output_constant (TREE_VALUE (link), elt_size, nalign);
3922         }
3923       else
3924         abort ();
3925       break;
3926
3927     case RECORD_TYPE:
3928     case UNION_TYPE:
3929       if (TREE_CODE (exp) == CONSTRUCTOR)
3930         output_constructor (exp, size, align);
3931       else
3932         abort ();
3933       return;
3934
3935     case SET_TYPE:
3936       if (TREE_CODE (exp) == INTEGER_CST)
3937         assemble_integer (expand_expr (exp, NULL_RTX,
3938                                        VOIDmode, EXPAND_INITIALIZER),
3939                           thissize, align, 1);
3940       else if (TREE_CODE (exp) == CONSTRUCTOR)
3941         {
3942           unsigned char *buffer = (unsigned char *) alloca (thissize);
3943           if (get_set_constructor_bytes (exp, buffer, thissize))
3944             abort ();
3945           assemble_string ((char *) buffer, thissize);
3946         }
3947       else
3948         error ("unknown set constructor type");
3949       return;
3950
3951     case ERROR_MARK:
3952       return;
3953
3954     default:
3955       abort ();
3956     }
3957
3958   if (size > thissize)
3959     assemble_zeros (size - thissize);
3960 }
3961
3962 \f
3963 /* Subroutine of output_constructor, used for computing the size of
3964    arrays of unspecified length.  VAL must be a CONSTRUCTOR of an array
3965    type with an unspecified upper bound.  */
3966
3967 static unsigned HOST_WIDE_INT
3968 array_size_for_constructor (val)
3969      tree val;
3970 {
3971   tree max_index, i;
3972
3973   /* This code used to attempt to handle string constants that are not
3974      arrays of single-bytes, but nothing else does, so there's no point in
3975      doing it here.  */
3976   if (TREE_CODE (val) == STRING_CST)
3977     return TREE_STRING_LENGTH (val);
3978
3979   max_index = NULL_TREE;
3980   for (i = CONSTRUCTOR_ELTS (val); i; i = TREE_CHAIN (i))
3981     {
3982       tree index = TREE_PURPOSE (i);
3983
3984       if (TREE_CODE (index) == RANGE_EXPR)
3985         index = TREE_OPERAND (index, 1);
3986       if (max_index == NULL_TREE || tree_int_cst_lt (max_index, index))
3987         max_index = index;
3988     }
3989
3990   if (max_index == NULL_TREE)
3991     return 0;
3992
3993   /* Compute the total number of array elements.  */
3994   i = size_binop (MINUS_EXPR, convert (sizetype, max_index),
3995                   convert (sizetype,
3996                            TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val)))));
3997   i = size_binop (PLUS_EXPR, i, convert (sizetype, integer_one_node));
3998
3999   /* Multiply by the array element unit size to find number of bytes.  */
4000   i = size_binop (MULT_EXPR, i, TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val))));
4001
4002   return tree_low_cst (i, 1);
4003 }
4004
4005 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
4006    Generate at least SIZE bytes, padding if necessary.  */
4007
4008 static void
4009 output_constructor (exp, size, align)
4010      tree exp;
4011      unsigned HOST_WIDE_INT size;
4012      unsigned int align;
4013 {
4014   tree type = TREE_TYPE (exp);
4015   tree link, field = 0;
4016   tree min_index = 0;
4017   /* Number of bytes output or skipped so far.
4018      In other words, current position within the constructor.  */
4019   HOST_WIDE_INT total_bytes = 0;
4020   /* Nonzero means BYTE contains part of a byte, to be output.  */
4021   int byte_buffer_in_use = 0;
4022   int byte = 0;
4023
4024   if (HOST_BITS_PER_WIDE_INT < BITS_PER_UNIT)
4025     abort ();
4026
4027   if (TREE_CODE (type) == RECORD_TYPE)
4028     field = TYPE_FIELDS (type);
4029
4030   if (TREE_CODE (type) == ARRAY_TYPE
4031       && TYPE_DOMAIN (type) != 0)
4032     min_index = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
4033
4034   /* As LINK goes through the elements of the constant,
4035      FIELD goes through the structure fields, if the constant is a structure.
4036      if the constant is a union, then we override this,
4037      by getting the field from the TREE_LIST element.
4038      But the constant could also be an array.  Then FIELD is zero.
4039
4040      There is always a maximum of one element in the chain LINK for unions
4041      (even if the initializer in a source program incorrectly contains
4042      more one).  */
4043   for (link = CONSTRUCTOR_ELTS (exp);
4044        link;
4045        link = TREE_CHAIN (link),
4046        field = field ? TREE_CHAIN (field) : 0)
4047     {
4048       tree val = TREE_VALUE (link);
4049       tree index = 0;
4050
4051       /* The element in a union constructor specifies the proper field
4052          or index.  */
4053       if ((TREE_CODE (type) == RECORD_TYPE || TREE_CODE (type) == UNION_TYPE
4054            || TREE_CODE (type) == QUAL_UNION_TYPE)
4055           && TREE_PURPOSE (link) != 0)
4056         field = TREE_PURPOSE (link);
4057
4058       else if (TREE_CODE (type) == ARRAY_TYPE)
4059         index = TREE_PURPOSE (link);
4060
4061       /* Eliminate the marker that makes a cast not be an lvalue.  */
4062       if (val != 0)
4063         STRIP_NOPS (val);
4064
4065       if (index && TREE_CODE (index) == RANGE_EXPR)
4066         {
4067           unsigned HOST_WIDE_INT fieldsize
4068             = int_size_in_bytes (TREE_TYPE (type));
4069           HOST_WIDE_INT lo_index = tree_low_cst (TREE_OPERAND (index, 0), 0);
4070           HOST_WIDE_INT hi_index = tree_low_cst (TREE_OPERAND (index, 1), 0);
4071           HOST_WIDE_INT index;
4072           unsigned int align2 = min_align (align, fieldsize * BITS_PER_UNIT);
4073
4074           for (index = lo_index; index <= hi_index; index++)
4075             {
4076               /* Output the element's initial value.  */
4077               if (val == 0)
4078                 assemble_zeros (fieldsize);
4079               else
4080                 output_constant (val, fieldsize, align2);
4081
4082               /* Count its size.  */
4083               total_bytes += fieldsize;
4084             }
4085         }
4086       else if (field == 0 || !DECL_BIT_FIELD (field))
4087         {
4088           /* An element that is not a bit-field.  */
4089
4090           unsigned HOST_WIDE_INT fieldsize;
4091           /* Since this structure is static,
4092              we know the positions are constant.  */
4093           HOST_WIDE_INT pos = field ? int_byte_position (field) : 0;
4094           unsigned int align2;
4095
4096           if (index != 0)
4097             pos = (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (val)), 1)
4098                    * (tree_low_cst (index, 0) - tree_low_cst (min_index, 0)));
4099
4100           /* Output any buffered-up bit-fields preceding this element.  */
4101           if (byte_buffer_in_use)
4102             {
4103               assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4104               total_bytes++;
4105               byte_buffer_in_use = 0;
4106             }
4107
4108           /* Advance to offset of this element.
4109              Note no alignment needed in an array, since that is guaranteed
4110              if each element has the proper size.  */
4111           if ((field != 0 || index != 0) && pos != total_bytes)
4112             {
4113               assemble_zeros (pos - total_bytes);
4114               total_bytes = pos;
4115             }
4116
4117           /* Find the alignment of this element.  */
4118           align2 = min_align (align, BITS_PER_UNIT * pos);
4119
4120           /* Determine size this element should occupy.  */
4121           if (field)
4122             {
4123               fieldsize = 0;
4124
4125               /* If this is an array with an unspecified upper bound,
4126                  the initializer determines the size.  */
4127               /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4128                  but we cannot do this until the deprecated support for
4129                  initializing zero-length array members is removed.  */
4130               if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
4131                   && TYPE_DOMAIN (TREE_TYPE (field))
4132                   && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field))))
4133                 {
4134                   fieldsize = array_size_for_constructor (val);
4135                   /* Given a non-empty initialization, this field had
4136                      better be last.  */
4137                   if (fieldsize != 0 && TREE_CHAIN (field) != NULL_TREE)
4138                     abort ();
4139                 }
4140               else if (DECL_SIZE_UNIT (field))
4141                 {
4142                   /* ??? This can't be right.  If the decl size overflows
4143                      a host integer we will silently emit no data.  */
4144                   if (host_integerp (DECL_SIZE_UNIT (field), 1))
4145                     fieldsize = tree_low_cst (DECL_SIZE_UNIT (field), 1);
4146                 }
4147             }
4148           else
4149             fieldsize = int_size_in_bytes (TREE_TYPE (type));
4150
4151           /* Output the element's initial value.  */
4152           if (val == 0)
4153             assemble_zeros (fieldsize);
4154           else
4155             output_constant (val, fieldsize, align2);
4156
4157           /* Count its size.  */
4158           total_bytes += fieldsize;
4159         }
4160       else if (val != 0 && TREE_CODE (val) != INTEGER_CST)
4161         error ("invalid initial value for member `%s'",
4162                IDENTIFIER_POINTER (DECL_NAME (field)));
4163       else
4164         {
4165           /* Element that is a bit-field.  */
4166
4167           HOST_WIDE_INT next_offset = int_bit_position (field);
4168           HOST_WIDE_INT end_offset
4169             = (next_offset + tree_low_cst (DECL_SIZE (field), 1));
4170
4171           if (val == 0)
4172             val = integer_zero_node;
4173
4174           /* If this field does not start in this (or, next) byte,
4175              skip some bytes.  */
4176           if (next_offset / BITS_PER_UNIT != total_bytes)
4177             {
4178               /* Output remnant of any bit field in previous bytes.  */
4179               if (byte_buffer_in_use)
4180                 {
4181                   assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4182                   total_bytes++;
4183                   byte_buffer_in_use = 0;
4184                 }
4185
4186               /* If still not at proper byte, advance to there.  */
4187               if (next_offset / BITS_PER_UNIT != total_bytes)
4188                 {
4189                   assemble_zeros (next_offset / BITS_PER_UNIT - total_bytes);
4190                   total_bytes = next_offset / BITS_PER_UNIT;
4191                 }
4192             }
4193
4194           if (! byte_buffer_in_use)
4195             byte = 0;
4196
4197           /* We must split the element into pieces that fall within
4198              separate bytes, and combine each byte with previous or
4199              following bit-fields.  */
4200
4201           /* next_offset is the offset n fbits from the beginning of
4202              the structure to the next bit of this element to be processed.
4203              end_offset is the offset of the first bit past the end of
4204              this element.  */
4205           while (next_offset < end_offset)
4206             {
4207               int this_time;
4208               int shift;
4209               HOST_WIDE_INT value;
4210               HOST_WIDE_INT next_byte = next_offset / BITS_PER_UNIT;
4211               HOST_WIDE_INT next_bit = next_offset % BITS_PER_UNIT;
4212
4213               /* Advance from byte to byte
4214                  within this element when necessary.  */
4215               while (next_byte != total_bytes)
4216                 {
4217                   assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4218                   total_bytes++;
4219                   byte = 0;
4220                 }
4221
4222               /* Number of bits we can process at once
4223                  (all part of the same byte).  */
4224               this_time = MIN (end_offset - next_offset,
4225                                BITS_PER_UNIT - next_bit);
4226               if (BYTES_BIG_ENDIAN)
4227                 {
4228                   /* On big-endian machine, take the most significant bits
4229                      first (of the bits that are significant)
4230                      and put them into bytes from the most significant end.  */
4231                   shift = end_offset - next_offset - this_time;
4232
4233                   /* Don't try to take a bunch of bits that cross
4234                      the word boundary in the INTEGER_CST. We can
4235                      only select bits from the LOW or HIGH part
4236                      not from both.  */
4237                   if (shift < HOST_BITS_PER_WIDE_INT
4238                       && shift + this_time > HOST_BITS_PER_WIDE_INT)
4239                     {
4240                       this_time = shift + this_time - HOST_BITS_PER_WIDE_INT;
4241                       shift = HOST_BITS_PER_WIDE_INT;
4242                     }
4243
4244                   /* Now get the bits from the appropriate constant word.  */
4245                   if (shift < HOST_BITS_PER_WIDE_INT)
4246                     value = TREE_INT_CST_LOW (val);
4247                   else if (shift < 2 * HOST_BITS_PER_WIDE_INT)
4248                     {
4249                       value = TREE_INT_CST_HIGH (val);
4250                       shift -= HOST_BITS_PER_WIDE_INT;
4251                     }
4252                   else
4253                     abort ();
4254
4255                   /* Get the result. This works only when:
4256                      1 <= this_time <= HOST_BITS_PER_WIDE_INT.  */
4257                   byte |= (((value >> shift)
4258                             & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4259                            << (BITS_PER_UNIT - this_time - next_bit));
4260                 }
4261               else
4262                 {
4263                   /* On little-endian machines,
4264                      take first the least significant bits of the value
4265                      and pack them starting at the least significant
4266                      bits of the bytes.  */
4267                   shift = next_offset - int_bit_position (field);
4268
4269                   /* Don't try to take a bunch of bits that cross
4270                      the word boundary in the INTEGER_CST. We can
4271                      only select bits from the LOW or HIGH part
4272                      not from both.  */
4273                   if (shift < HOST_BITS_PER_WIDE_INT
4274                       && shift + this_time > HOST_BITS_PER_WIDE_INT)
4275                     this_time = (HOST_BITS_PER_WIDE_INT - shift);
4276
4277                   /* Now get the bits from the appropriate constant word.  */
4278                   if (shift < HOST_BITS_PER_WIDE_INT)
4279                     value = TREE_INT_CST_LOW (val);
4280                   else if (shift < 2 * HOST_BITS_PER_WIDE_INT)
4281                     {
4282                       value = TREE_INT_CST_HIGH (val);
4283                       shift -= HOST_BITS_PER_WIDE_INT;
4284                     }
4285                   else
4286                     abort ();
4287
4288                   /* Get the result. This works only when:
4289                      1 <= this_time <= HOST_BITS_PER_WIDE_INT.  */
4290                   byte |= (((value >> shift)
4291                             & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4292                            << next_bit);
4293                 }
4294
4295               next_offset += this_time;
4296               byte_buffer_in_use = 1;
4297             }
4298         }
4299     }
4300
4301   if (byte_buffer_in_use)
4302     {
4303       assemble_integer (GEN_INT (byte), 1, BITS_PER_UNIT, 1);
4304       total_bytes++;
4305     }
4306
4307   if ((unsigned HOST_WIDE_INT)total_bytes < size)
4308     assemble_zeros (size - total_bytes);
4309 }
4310
4311 /* This TREE_LIST contains any weak symbol declarations waiting
4312    to be emitted.  */
4313 static GTY(()) tree weak_decls;
4314
4315 /* Mark DECL as weak.  */
4316
4317 static void
4318 mark_weak (decl)
4319      tree decl;
4320 {
4321   DECL_WEAK (decl) = 1;
4322
4323   if (DECL_RTL_SET_P (decl)
4324       && GET_CODE (DECL_RTL (decl)) == MEM
4325       && XEXP (DECL_RTL (decl), 0)
4326       && GET_CODE (XEXP (DECL_RTL (decl), 0)) == SYMBOL_REF)
4327     SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl), 0)) = 1;
4328 }
4329
4330 /* Merge weak status between NEWDECL and OLDDECL.  */
4331
4332 void
4333 merge_weak (newdecl, olddecl)
4334      tree newdecl;
4335      tree olddecl;
4336 {
4337   if (DECL_WEAK (newdecl) == DECL_WEAK (olddecl))
4338     return;
4339
4340   if (DECL_WEAK (newdecl))
4341     {
4342       tree wd;
4343
4344       /* NEWDECL is weak, but OLDDECL is not.  */
4345
4346       /* If we already output the OLDDECL, we're in trouble; we can't
4347          go back and make it weak.  This error cannot caught in
4348          declare_weak because the NEWDECL and OLDDECL was not yet
4349          been merged; therefore, TREE_ASM_WRITTEN was not set.  */
4350       if (TREE_ASM_WRITTEN (olddecl))
4351         error_with_decl (newdecl,
4352                          "weak declaration of `%s' must precede definition");
4353
4354       /* If we've already generated rtl referencing OLDDECL, we may
4355          have done so in a way that will not function properly with
4356          a weak symbol.  */
4357       else if (TREE_USED (olddecl)
4358                && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl)))
4359         warning_with_decl (newdecl, "weak declaration of `%s' after first use results in unspecified behavior");
4360
4361       if (SUPPORTS_WEAK)
4362         {
4363           /* We put the NEWDECL on the weak_decls list at some point.
4364              Replace it with the OLDDECL.  */
4365           for (wd = weak_decls; wd; wd = TREE_CHAIN (wd))
4366             if (TREE_VALUE (wd) == newdecl)
4367               {
4368                 TREE_VALUE (wd) = olddecl;
4369                 break;
4370               }
4371           /* We may not find the entry on the list.  If NEWDECL is a
4372              weak alias, then we will have already called
4373              globalize_decl to remove the entry; in that case, we do
4374              not need to do anything.  */
4375         }
4376
4377       /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping.  */
4378       mark_weak (olddecl);
4379     }
4380   else
4381     /* OLDDECL was weak, but NEWDECL was not explicitly marked as
4382        weak.  Just update NEWDECL to indicate that it's weak too.  */
4383     mark_weak (newdecl);
4384 }
4385
4386 /* Declare DECL to be a weak symbol.  */
4387
4388 void
4389 declare_weak (decl)
4390      tree decl;
4391 {
4392   if (! TREE_PUBLIC (decl))
4393     error_with_decl (decl, "weak declaration of `%s' must be public");
4394   else if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
4395     error_with_decl (decl, "weak declaration of `%s' must precede definition");
4396   else if (SUPPORTS_WEAK)
4397     {
4398       if (! DECL_WEAK (decl))
4399         weak_decls = tree_cons (NULL, decl, weak_decls);
4400     }
4401   else
4402     warning_with_decl (decl, "weak declaration of `%s' not supported");
4403
4404   mark_weak (decl);
4405 }
4406
4407 /* Emit any pending weak declarations.  */
4408
4409 void
4410 weak_finish ()
4411 {
4412   tree t;
4413
4414   for (t = weak_decls; t; t = TREE_CHAIN (t))
4415     {
4416       tree decl = TREE_VALUE (t);
4417 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
4418       const char *const name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
4419 #endif
4420
4421       if (! TREE_USED (decl))
4422         continue;
4423
4424 #ifdef ASM_WEAKEN_DECL
4425       ASM_WEAKEN_DECL (asm_out_file, decl, name, NULL);
4426 #else
4427 #ifdef ASM_WEAKEN_LABEL
4428       ASM_WEAKEN_LABEL (asm_out_file, name);
4429 #else
4430 #ifdef ASM_OUTPUT_WEAK_ALIAS
4431       warning ("only weak aliases are supported in this configuration");
4432       return;
4433 #endif
4434 #endif
4435 #endif
4436     }
4437 }
4438
4439 /* Emit the assembly bits to indicate that DECL is globally visible.  */
4440
4441 static void
4442 globalize_decl (decl)
4443      tree decl;
4444 {
4445   const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
4446
4447 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
4448   if (DECL_WEAK (decl))
4449     {
4450       tree *p, t;
4451
4452 #ifdef ASM_WEAKEN_DECL
4453       ASM_WEAKEN_DECL (asm_out_file, decl, name, 0);
4454 #else
4455       ASM_WEAKEN_LABEL (asm_out_file, name);
4456 #endif
4457
4458       /* Remove this function from the pending weak list so that
4459          we do not emit multiple .weak directives for it.  */
4460       for (p = &weak_decls; (t = *p) ; )
4461         {
4462           if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
4463             *p = TREE_CHAIN (t);
4464           else
4465             p = &TREE_CHAIN (t);
4466         }
4467       return;
4468     }
4469 #endif
4470
4471   (*targetm.asm_out.globalize_label) (asm_out_file, name);
4472 }
4473
4474 /* Emit an assembler directive to make the symbol for DECL an alias to
4475    the symbol for TARGET.  */
4476
4477 void
4478 assemble_alias (decl, target)
4479      tree decl, target ATTRIBUTE_UNUSED;
4480 {
4481   const char *name;
4482
4483   /* We must force creation of DECL_RTL for debug info generation, even though
4484      we don't use it here.  */
4485   make_decl_rtl (decl, NULL);
4486
4487   name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
4488
4489 #ifdef ASM_OUTPUT_DEF
4490   /* Make name accessible from other files, if appropriate.  */
4491
4492   if (TREE_PUBLIC (decl))
4493     {
4494       globalize_decl (decl);
4495       maybe_assemble_visibility (decl);
4496     }
4497
4498 #ifdef ASM_OUTPUT_DEF_FROM_DECLS
4499   ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file, decl, target);
4500 #else
4501   ASM_OUTPUT_DEF (asm_out_file, name, IDENTIFIER_POINTER (target));
4502 #endif
4503 #else /* !ASM_OUTPUT_DEF */
4504 #if defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
4505   if (! DECL_WEAK (decl))
4506     warning ("only weak aliases are supported in this configuration");
4507
4508 #ifdef ASM_WEAKEN_DECL
4509   ASM_WEAKEN_DECL (asm_out_file, decl, name, IDENTIFIER_POINTER (target));
4510 #else
4511   ASM_OUTPUT_WEAK_ALIAS (asm_out_file, name, IDENTIFIER_POINTER (target));
4512 #endif
4513 #else
4514   warning ("alias definitions not supported in this configuration; ignored");
4515 #endif
4516 #endif
4517
4518   TREE_USED (decl) = 1;
4519   TREE_ASM_WRITTEN (decl) = 1;
4520   TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl)) = 1;
4521 }
4522
4523 /* Emit an assembler directive to set symbol for DECL visibility to
4524    the visibility type VIS, which must not be VISIBILITY_DEFAULT.  */
4525
4526 void
4527 default_assemble_visibility (decl, vis)
4528      tree decl;
4529      int vis;
4530 {
4531   static const char * const visibility_types[] = {
4532     NULL, "internal", "hidden", "protected"
4533   };
4534
4535   const char *name, *type;
4536
4537   name = (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
4538   type = visibility_types[vis];
4539
4540 #ifdef HAVE_GAS_HIDDEN
4541   fprintf (asm_out_file, "\t.%s\t", type);
4542   assemble_name (asm_out_file, name);
4543   fprintf (asm_out_file, "\n");
4544 #else
4545   warning ("visibility attribute not supported in this configuration; ignored");
4546 #endif
4547 }
4548
4549 /* A helper function to call assemble_visibility when needed for a decl.  */
4550
4551 static void
4552 maybe_assemble_visibility (decl)
4553      tree decl;
4554 {
4555   enum symbol_visibility vis = decl_visibility (decl);
4556
4557   if (vis != VISIBILITY_DEFAULT)
4558     (* targetm.asm_out.visibility) (decl, vis);
4559 }
4560
4561 /* Returns 1 if the target configuration supports defining public symbols
4562    so that one of them will be chosen at link time instead of generating a
4563    multiply-defined symbol error, whether through the use of weak symbols or
4564    a target-specific mechanism for having duplicates discarded.  */
4565
4566 int
4567 supports_one_only ()
4568 {
4569   if (SUPPORTS_ONE_ONLY)
4570     return 1;
4571   return SUPPORTS_WEAK;
4572 }
4573
4574 /* Set up DECL as a public symbol that can be defined in multiple
4575    translation units without generating a linker error.  */
4576
4577 void
4578 make_decl_one_only (decl)
4579      tree decl;
4580 {
4581   if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != FUNCTION_DECL)
4582     abort ();
4583
4584   TREE_PUBLIC (decl) = 1;
4585
4586   if (TREE_CODE (decl) == VAR_DECL
4587       && (DECL_INITIAL (decl) == 0 || DECL_INITIAL (decl) == error_mark_node))
4588     DECL_COMMON (decl) = 1;
4589   else if (SUPPORTS_ONE_ONLY)
4590     {
4591 #ifdef MAKE_DECL_ONE_ONLY
4592       MAKE_DECL_ONE_ONLY (decl);
4593 #endif
4594       DECL_ONE_ONLY (decl) = 1;
4595     }
4596   else if (SUPPORTS_WEAK)
4597     DECL_WEAK (decl) = 1;
4598   else
4599     abort ();
4600 }
4601
4602 void
4603 init_varasm_once ()
4604 {
4605   in_named_htab = htab_create_ggc (31, in_named_entry_hash,
4606                                    in_named_entry_eq, NULL);
4607   const_desc_htab = htab_create_ggc (1009, const_desc_hash,
4608                                      const_desc_eq, NULL);
4609
4610   const_alias_set = new_alias_set ();
4611 }
4612
4613 enum tls_model
4614 decl_tls_model (decl)
4615      tree decl;
4616 {
4617   enum tls_model kind;
4618   tree attr = lookup_attribute ("tls_model", DECL_ATTRIBUTES (decl));
4619   bool is_local;
4620
4621   if (attr)
4622     {
4623       attr = TREE_VALUE (TREE_VALUE (attr));
4624       if (TREE_CODE (attr) != STRING_CST)
4625         abort ();
4626       if (!strcmp (TREE_STRING_POINTER (attr), "local-exec"))
4627         kind = TLS_MODEL_LOCAL_EXEC;
4628       else if (!strcmp (TREE_STRING_POINTER (attr), "initial-exec"))
4629         kind = TLS_MODEL_INITIAL_EXEC;
4630       else if (!strcmp (TREE_STRING_POINTER (attr), "local-dynamic"))
4631         kind = optimize ? TLS_MODEL_LOCAL_DYNAMIC : TLS_MODEL_GLOBAL_DYNAMIC;
4632       else if (!strcmp (TREE_STRING_POINTER (attr), "global-dynamic"))
4633         kind = TLS_MODEL_GLOBAL_DYNAMIC;
4634       else
4635         abort ();
4636       return kind;
4637     }
4638
4639   is_local = (*targetm.binds_local_p) (decl);
4640   if (!flag_pic)
4641     {
4642       if (is_local)
4643         kind = TLS_MODEL_LOCAL_EXEC;
4644       else
4645         kind = TLS_MODEL_INITIAL_EXEC;
4646     }
4647   /* Local dynamic is inefficient when we're not combining the
4648      parts of the address.  */
4649   else if (optimize && is_local)
4650     kind = TLS_MODEL_LOCAL_DYNAMIC;
4651   else
4652     kind = TLS_MODEL_GLOBAL_DYNAMIC;
4653   if (kind < flag_tls_default)
4654     kind = flag_tls_default;
4655
4656   return kind;
4657 }
4658
4659 enum symbol_visibility
4660 decl_visibility (decl)
4661      tree decl;
4662 {
4663   tree attr = lookup_attribute ("visibility", DECL_ATTRIBUTES (decl));
4664
4665   if (attr)
4666     {
4667       const char *which = TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr)));
4668
4669       if (strcmp (which, "default") == 0)
4670         return VISIBILITY_DEFAULT;
4671       if (strcmp (which, "internal") == 0)
4672         return VISIBILITY_INTERNAL;
4673       if (strcmp (which, "hidden") == 0)
4674         return VISIBILITY_HIDDEN;
4675       if (strcmp (which, "protected") == 0)
4676         return VISIBILITY_PROTECTED;
4677
4678       abort ();
4679     }
4680
4681   return VISIBILITY_DEFAULT;
4682 }
4683
4684 /* Select a set of attributes for section NAME based on the properties
4685    of DECL and whether or not RELOC indicates that DECL's initializer
4686    might contain runtime relocations.
4687
4688    We make the section read-only and executable for a function decl,
4689    read-only for a const data decl, and writable for a non-const data decl.  */
4690
4691 unsigned int
4692 default_section_type_flags (decl, name, reloc)
4693      tree decl;
4694      const char *name;
4695      int reloc;
4696 {
4697   return default_section_type_flags_1 (decl, name, reloc, flag_pic);
4698 }
4699
4700 unsigned int
4701 default_section_type_flags_1 (decl, name, reloc, shlib)
4702      tree decl;
4703      const char *name;
4704      int reloc;
4705      int shlib;
4706 {
4707   unsigned int flags;
4708
4709   if (decl && TREE_CODE (decl) == FUNCTION_DECL)
4710     flags = SECTION_CODE;
4711   else if (decl && decl_readonly_section_1 (decl, reloc, shlib))
4712     flags = 0;
4713   else
4714     flags = SECTION_WRITE;
4715
4716   if (decl && DECL_ONE_ONLY (decl))
4717     flags |= SECTION_LINKONCE;
4718
4719   if (decl && TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL (decl))
4720     flags |= SECTION_TLS | SECTION_WRITE;
4721
4722   if (strcmp (name, ".bss") == 0
4723       || strncmp (name, ".bss.", 5) == 0
4724       || strncmp (name, ".gnu.linkonce.b.", 16) == 0
4725       || strcmp (name, ".sbss") == 0
4726       || strncmp (name, ".sbss.", 6) == 0
4727       || strncmp (name, ".gnu.linkonce.sb.", 17) == 0
4728       || strcmp (name, ".tbss") == 0
4729       || strncmp (name, ".gnu.linkonce.tb.", 17) == 0)
4730     flags |= SECTION_BSS;
4731
4732   if (strcmp (name, ".tdata") == 0
4733       || strcmp (name, ".tbss") == 0
4734       || strncmp (name, ".gnu.linkonce.td.", 17) == 0
4735       || strncmp (name, ".gnu.linkonce.tb.", 17) == 0)
4736     flags |= SECTION_TLS;
4737
4738   /* These three sections have special ELF types.  They are neither
4739      SHT_PROGBITS nor SHT_NOBITS, so when changing sections we don't
4740      want to print a section type (@progbits or @nobits).  If someone
4741      is silly enough to emit code or TLS variables to one of these
4742      sections, then don't handle them specially.  */
4743   if (!(flags & (SECTION_CODE | SECTION_BSS | SECTION_TLS))
4744       && (strcmp (name, ".init_array") == 0
4745           || strcmp (name, ".fini_array") == 0
4746           || strcmp (name, ".preinit_array") == 0))
4747     flags |= SECTION_NOTYPE;
4748
4749   return flags;
4750 }
4751
4752 /* Output assembly to switch to section NAME with attribute FLAGS.
4753    Four variants for common object file formats.  */
4754
4755 void
4756 default_no_named_section (name, flags)
4757      const char *name ATTRIBUTE_UNUSED;
4758      unsigned int flags ATTRIBUTE_UNUSED;
4759 {
4760   /* Some object formats don't support named sections at all.  The
4761      front-end should already have flagged this as an error.  */
4762   abort ();
4763 }
4764
4765 void
4766 default_elf_asm_named_section (name, flags)
4767      const char *name;
4768      unsigned int flags;
4769 {
4770   char flagchars[10], *f = flagchars;
4771
4772   if (! named_section_first_declaration (name))
4773     {
4774       fprintf (asm_out_file, "\t.section\t%s\n", name);
4775       return;
4776     }
4777
4778   if (!(flags & SECTION_DEBUG))
4779     *f++ = 'a';
4780   if (flags & SECTION_WRITE)
4781     *f++ = 'w';
4782   if (flags & SECTION_CODE)
4783     *f++ = 'x';
4784   if (flags & SECTION_SMALL)
4785     *f++ = 's';
4786   if (flags & SECTION_MERGE)
4787     *f++ = 'M';
4788   if (flags & SECTION_STRINGS)
4789     *f++ = 'S';
4790   if (flags & SECTION_TLS)
4791     *f++ = 'T';
4792   *f = '\0';
4793
4794   fprintf (asm_out_file, "\t.section\t%s,\"%s\"", name, flagchars);
4795
4796   if (!(flags & SECTION_NOTYPE))
4797     {
4798       const char *type;
4799
4800       if (flags & SECTION_BSS)
4801         type = "nobits";
4802       else
4803         type = "progbits";
4804
4805       fprintf (asm_out_file, ",@%s", type);
4806
4807       if (flags & SECTION_ENTSIZE)
4808         fprintf (asm_out_file, ",%d", flags & SECTION_ENTSIZE);
4809     }
4810
4811   putc ('\n', asm_out_file);
4812 }
4813
4814 void
4815 default_coff_asm_named_section (name, flags)
4816      const char *name;
4817      unsigned int flags;
4818 {
4819   char flagchars[8], *f = flagchars;
4820
4821   if (flags & SECTION_WRITE)
4822     *f++ = 'w';
4823   if (flags & SECTION_CODE)
4824     *f++ = 'x';
4825   *f = '\0';
4826
4827   fprintf (asm_out_file, "\t.section\t%s,\"%s\"\n", name, flagchars);
4828 }
4829
4830 void
4831 default_pe_asm_named_section (name, flags)
4832      const char *name;
4833      unsigned int flags;
4834 {
4835   default_coff_asm_named_section (name, flags);
4836
4837   if (flags & SECTION_LINKONCE)
4838     {
4839       /* Functions may have been compiled at various levels of
4840          optimization so we can't use `same_size' here.
4841          Instead, have the linker pick one.  */
4842       fprintf (asm_out_file, "\t.linkonce %s\n",
4843                (flags & SECTION_CODE ? "discard" : "same_size"));
4844     }
4845 }
4846 \f
4847 /* Used for vtable gc in GNU binutils.  Record that the pointer at OFFSET
4848    from SYMBOL is used in all classes derived from SYMBOL.  */
4849
4850 void
4851 assemble_vtable_entry (symbol, offset)
4852      rtx symbol;
4853      HOST_WIDE_INT offset;
4854 {
4855   fputs ("\t.vtable_entry ", asm_out_file);
4856   output_addr_const (asm_out_file, symbol);
4857   fprintf (asm_out_file, ", " HOST_WIDE_INT_PRINT_DEC "\n", offset);
4858 }
4859
4860 /* Used for vtable gc in GNU binutils.  Record the class hierarchy by noting
4861    that the vtable symbol CHILD is derived from the vtable symbol PARENT.  */
4862
4863 void
4864 assemble_vtable_inherit (child, parent)
4865      rtx child, parent;
4866 {
4867   fputs ("\t.vtable_inherit ", asm_out_file);
4868   output_addr_const (asm_out_file, child);
4869   fputs (", ", asm_out_file);
4870   output_addr_const (asm_out_file, parent);
4871   fputc ('\n', asm_out_file);
4872 }
4873 \f
4874 /* The lame default section selector.  */
4875
4876 void
4877 default_select_section (decl, reloc, align)
4878      tree decl;
4879      int reloc;
4880      unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED;
4881 {
4882   bool readonly = false;
4883
4884   if (DECL_P (decl))
4885     {
4886       if (decl_readonly_section (decl, reloc))
4887         readonly = true;
4888     }
4889   else if (TREE_CODE (decl) == CONSTRUCTOR)
4890     {
4891       if (! ((flag_pic && reloc)
4892              || !TREE_READONLY (decl)
4893              || TREE_SIDE_EFFECTS (decl)
4894              || !TREE_CONSTANT (decl)))
4895         readonly = true;
4896     }
4897   else if (TREE_CODE (decl) == STRING_CST)
4898     readonly = !flag_writable_strings;
4899   else if (! (flag_pic && reloc))
4900     readonly = true;
4901
4902   if (readonly)
4903     readonly_data_section ();
4904   else
4905     data_section ();
4906 }
4907
4908 /* A helper function for default_elf_select_section and
4909    default_elf_unique_section.  Categorizes the DECL.  */
4910
4911 enum section_category
4912 {
4913   SECCAT_TEXT,
4914
4915   SECCAT_RODATA,
4916   SECCAT_RODATA_MERGE_STR,
4917   SECCAT_RODATA_MERGE_STR_INIT,
4918   SECCAT_RODATA_MERGE_CONST,
4919   SECCAT_SRODATA,
4920
4921   SECCAT_DATA,
4922
4923   /* To optimize loading of shared programs, define following subsections
4924      of data section:
4925         _REL    Contains data that has relocations, so they get grouped
4926                 together and dynamic linker will visit fewer pages in memory.
4927         _RO     Contains data that is otherwise read-only.  This is useful
4928                 with prelinking as most relocations won't be dynamically
4929                 linked and thus stay read only.
4930         _LOCAL  Marks data containing relocations only to local objects.
4931                 These relocations will get fully resolved by prelinking.  */
4932   SECCAT_DATA_REL,
4933   SECCAT_DATA_REL_LOCAL,
4934   SECCAT_DATA_REL_RO,
4935   SECCAT_DATA_REL_RO_LOCAL,
4936
4937   SECCAT_SDATA,
4938   SECCAT_TDATA,
4939
4940   SECCAT_BSS,
4941   SECCAT_SBSS,
4942   SECCAT_TBSS
4943 };
4944
4945 static enum section_category
4946 categorize_decl_for_section PARAMS ((tree, int, int));
4947
4948 static enum section_category
4949 categorize_decl_for_section (decl, reloc, shlib)
4950      tree decl;
4951      int reloc;
4952      int shlib;
4953 {
4954   enum section_category ret;
4955
4956   if (TREE_CODE (decl) == FUNCTION_DECL)
4957     return SECCAT_TEXT;
4958   else if (TREE_CODE (decl) == STRING_CST)
4959     {
4960       if (flag_writable_strings)
4961         return SECCAT_DATA;
4962       else
4963         return SECCAT_RODATA_MERGE_STR;
4964     }
4965   else if (TREE_CODE (decl) == VAR_DECL)
4966     {
4967       if (DECL_INITIAL (decl) == NULL
4968           || DECL_INITIAL (decl) == error_mark_node)
4969         ret = SECCAT_BSS;
4970       else if (! TREE_READONLY (decl)
4971                || TREE_SIDE_EFFECTS (decl)
4972                || ! TREE_CONSTANT (DECL_INITIAL (decl)))
4973         {
4974           if (shlib && (reloc & 2))
4975             ret = SECCAT_DATA_REL;
4976           else if (shlib && reloc)
4977             ret = SECCAT_DATA_REL_LOCAL;
4978           else
4979             ret = SECCAT_DATA;
4980         }
4981       else if (shlib && (reloc & 2))
4982         ret = SECCAT_DATA_REL_RO;
4983       else if (shlib && reloc)
4984         ret = SECCAT_DATA_REL_RO_LOCAL;
4985       else if (reloc || flag_merge_constants < 2)
4986         /* C and C++ don't allow different variables to share the same
4987            location.  -fmerge-all-constants allows even that (at the
4988            expense of not conforming).  */
4989         ret = SECCAT_RODATA;
4990       else if (TREE_CODE (DECL_INITIAL (decl)) == STRING_CST)
4991         ret = SECCAT_RODATA_MERGE_STR_INIT;
4992       else
4993         ret = SECCAT_RODATA_MERGE_CONST;
4994     }
4995   else if (TREE_CODE (decl) == CONSTRUCTOR)
4996     {
4997       if ((shlib && reloc)
4998           || TREE_SIDE_EFFECTS (decl)
4999           || ! TREE_CONSTANT (decl))
5000         ret = SECCAT_DATA;
5001       else
5002         ret = SECCAT_RODATA;
5003     }
5004   else
5005     ret = SECCAT_RODATA;
5006
5007   /* There are no read-only thread-local sections.  */
5008   if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL (decl))
5009     {
5010       if (ret == SECCAT_BSS)
5011         ret = SECCAT_TBSS;
5012       else
5013         ret = SECCAT_TDATA;
5014     }
5015
5016   /* If the target uses small data sections, select it.  */
5017   else if ((*targetm.in_small_data_p) (decl))
5018     {
5019       if (ret == SECCAT_BSS)
5020         ret = SECCAT_SBSS;
5021       else if (targetm.have_srodata_section && ret == SECCAT_RODATA)
5022         ret = SECCAT_SRODATA;
5023       else
5024         ret = SECCAT_SDATA;
5025     }
5026
5027   return ret;
5028 }
5029
5030 bool
5031 decl_readonly_section (decl, reloc)
5032      tree decl;
5033      int reloc;
5034 {
5035   return decl_readonly_section_1 (decl, reloc, flag_pic);
5036 }
5037
5038 bool
5039 decl_readonly_section_1 (decl, reloc, shlib)
5040      tree decl;
5041      int reloc;
5042      int shlib;
5043 {
5044   switch (categorize_decl_for_section (decl, reloc, shlib))
5045     {
5046     case SECCAT_RODATA:
5047     case SECCAT_RODATA_MERGE_STR:
5048     case SECCAT_RODATA_MERGE_STR_INIT:
5049     case SECCAT_RODATA_MERGE_CONST:
5050     case SECCAT_SRODATA:
5051       return true;
5052       break;
5053     default:
5054       return false;
5055       break;
5056     }
5057 }
5058
5059 /* Select a section based on the above categorization.  */
5060
5061 void
5062 default_elf_select_section (decl, reloc, align)
5063      tree decl;
5064      int reloc;
5065      unsigned HOST_WIDE_INT align;
5066 {
5067   default_elf_select_section_1 (decl, reloc, align, flag_pic);
5068 }
5069
5070 void
5071 default_elf_select_section_1 (decl, reloc, align, shlib)
5072      tree decl;
5073      int reloc;
5074      unsigned HOST_WIDE_INT align;
5075      int shlib;
5076 {
5077   switch (categorize_decl_for_section (decl, reloc, shlib))
5078     {
5079     case SECCAT_TEXT:
5080       /* We're not supposed to be called on FUNCTION_DECLs.  */
5081       abort ();
5082     case SECCAT_RODATA:
5083       readonly_data_section ();
5084       break;
5085     case SECCAT_RODATA_MERGE_STR:
5086       mergeable_string_section (decl, align, 0);
5087       break;
5088     case SECCAT_RODATA_MERGE_STR_INIT:
5089       mergeable_string_section (DECL_INITIAL (decl), align, 0);
5090       break;
5091     case SECCAT_RODATA_MERGE_CONST:
5092       mergeable_constant_section (DECL_MODE (decl), align, 0);
5093       break;
5094     case SECCAT_SRODATA:
5095       named_section (NULL_TREE, ".sdata2", reloc);
5096       break;
5097     case SECCAT_DATA:
5098       data_section ();
5099       break;
5100     case SECCAT_DATA_REL:
5101       named_section (NULL_TREE, ".data.rel", reloc);
5102       break;
5103     case SECCAT_DATA_REL_LOCAL:
5104       named_section (NULL_TREE, ".data.rel.local", reloc);
5105       break;
5106     case SECCAT_DATA_REL_RO:
5107       named_section (NULL_TREE, ".data.rel.ro", reloc);
5108       break;
5109     case SECCAT_DATA_REL_RO_LOCAL:
5110       named_section (NULL_TREE, ".data.rel.ro.local", reloc);
5111       break;
5112     case SECCAT_SDATA:
5113       named_section (NULL_TREE, ".sdata", reloc);
5114       break;
5115     case SECCAT_TDATA:
5116       named_section (NULL_TREE, ".tdata", reloc);
5117       break;
5118     case SECCAT_BSS:
5119 #ifdef BSS_SECTION_ASM_OP
5120       bss_section ();
5121 #else
5122       named_section (NULL_TREE, ".bss", reloc);
5123 #endif
5124       break;
5125     case SECCAT_SBSS:
5126       named_section (NULL_TREE, ".sbss", reloc);
5127       break;
5128     case SECCAT_TBSS:
5129       named_section (NULL_TREE, ".tbss", reloc);
5130       break;
5131     default:
5132       abort ();
5133     }
5134 }
5135
5136 /* Construct a unique section name based on the decl name and the
5137    categorization performed above.  */
5138
5139 void
5140 default_unique_section (decl, reloc)
5141      tree decl;
5142      int reloc;
5143 {
5144   default_unique_section_1 (decl, reloc, flag_pic);
5145 }
5146
5147 void
5148 default_unique_section_1 (decl, reloc, shlib)
5149      tree decl;
5150      int reloc;
5151      int shlib;
5152 {
5153   bool one_only = DECL_ONE_ONLY (decl);
5154   const char *prefix, *name;
5155   size_t nlen, plen;
5156   char *string;
5157
5158   switch (categorize_decl_for_section (decl, reloc, shlib))
5159     {
5160     case SECCAT_TEXT:
5161       prefix = one_only ? ".gnu.linkonce.t." : ".text.";
5162       break;
5163     case SECCAT_RODATA:
5164     case SECCAT_RODATA_MERGE_STR:
5165     case SECCAT_RODATA_MERGE_STR_INIT:
5166     case SECCAT_RODATA_MERGE_CONST:
5167       prefix = one_only ? ".gnu.linkonce.r." : ".rodata.";
5168       break;
5169     case SECCAT_SRODATA:
5170       prefix = one_only ? ".gnu.linkonce.s2." : ".sdata2.";
5171       break;
5172     case SECCAT_DATA:
5173     case SECCAT_DATA_REL:
5174     case SECCAT_DATA_REL_LOCAL:
5175     case SECCAT_DATA_REL_RO:
5176     case SECCAT_DATA_REL_RO_LOCAL:
5177       prefix = one_only ? ".gnu.linkonce.d." : ".data.";
5178       break;
5179     case SECCAT_SDATA:
5180       prefix = one_only ? ".gnu.linkonce.s." : ".sdata.";
5181       break;
5182     case SECCAT_BSS:
5183       prefix = one_only ? ".gnu.linkonce.b." : ".bss.";
5184       break;
5185     case SECCAT_SBSS:
5186       prefix = one_only ? ".gnu.linkonce.sb." : ".sbss.";
5187       break;
5188     case SECCAT_TDATA:
5189       prefix = one_only ? ".gnu.linkonce.td." : ".tdata.";
5190       break;
5191     case SECCAT_TBSS:
5192       prefix = one_only ? ".gnu.linkonce.tb." : ".tbss.";
5193       break;
5194     default:
5195       abort ();
5196     }
5197   plen = strlen (prefix);
5198
5199   name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
5200   name = (* targetm.strip_name_encoding) (name);
5201   nlen = strlen (name);
5202
5203   string = alloca (nlen + plen + 1);
5204   memcpy (string, prefix, plen);
5205   memcpy (string + plen, name, nlen + 1);
5206
5207   DECL_SECTION_NAME (decl) = build_string (nlen + plen, string);
5208 }
5209
5210 void
5211 default_select_rtx_section (mode, x, align)
5212      enum machine_mode mode ATTRIBUTE_UNUSED;
5213      rtx x;
5214      unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED;
5215 {
5216   if (flag_pic)
5217     switch (GET_CODE (x))
5218       {
5219       case CONST:
5220       case SYMBOL_REF:
5221       case LABEL_REF:
5222         data_section ();
5223         return;
5224
5225       default:
5226         break;
5227       }
5228
5229   readonly_data_section ();
5230 }
5231
5232 void
5233 default_elf_select_rtx_section (mode, x, align)
5234      enum machine_mode mode;
5235      rtx x;
5236      unsigned HOST_WIDE_INT align;
5237 {
5238   /* ??? Handle small data here somehow.  */
5239
5240   if (flag_pic)
5241     switch (GET_CODE (x))
5242       {
5243       case CONST:
5244       case SYMBOL_REF:
5245         named_section (NULL_TREE, ".data.rel.ro", 3);
5246         return;
5247
5248       case LABEL_REF:
5249         named_section (NULL_TREE, ".data.rel.ro.local", 1);
5250         return;
5251
5252       default:
5253         break;
5254       }
5255
5256   mergeable_constant_section (mode, align, 0);
5257 }
5258
5259 /* Set the generally applicable flags on the SYMBOL_REF for EXP.  */
5260
5261 void
5262 default_encode_section_info (decl, rtl, first)
5263      tree decl;
5264      rtx rtl;
5265      int first ATTRIBUTE_UNUSED;
5266 {
5267   rtx symbol;
5268   int flags;
5269
5270   /* Careful not to prod global register variables.  */
5271   if (GET_CODE (rtl) != MEM)
5272     return;
5273   symbol = XEXP (rtl, 0);
5274   if (GET_CODE (symbol) != SYMBOL_REF)
5275     return;
5276
5277   flags = 0;
5278   if (TREE_CODE (decl) == FUNCTION_DECL)
5279     flags |= SYMBOL_FLAG_FUNCTION;
5280   if ((*targetm.binds_local_p) (decl))
5281     flags |= SYMBOL_FLAG_LOCAL;
5282   if ((*targetm.in_small_data_p) (decl))
5283     flags |= SYMBOL_FLAG_SMALL;
5284   if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL (decl))
5285     flags |= decl_tls_model (decl) << SYMBOL_FLAG_TLS_SHIFT;
5286   /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names?  Without
5287      being PUBLIC, the thing *must* be defined in this translation unit.
5288      Prevent this buglet from being propagated into rtl code as well.  */
5289   if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
5290     flags |= SYMBOL_FLAG_EXTERNAL;
5291
5292   SYMBOL_REF_FLAGS (symbol) = flags;
5293 }
5294
5295 /* By default, we do nothing for encode_section_info, so we need not
5296    do anything but discard the '*' marker.  */
5297
5298 const char *
5299 default_strip_name_encoding (str)
5300      const char *str;
5301 {
5302   return str + (*str == '*');
5303 }
5304
5305 /* Assume ELF-ish defaults, since that's pretty much the most liberal
5306    wrt cross-module name binding.  */
5307
5308 bool
5309 default_binds_local_p (exp)
5310      tree exp;
5311 {
5312   return default_binds_local_p_1 (exp, flag_shlib);
5313 }
5314
5315 bool
5316 default_binds_local_p_1 (exp, shlib)
5317      tree exp;
5318      int shlib;
5319 {
5320   bool local_p;
5321
5322   /* A non-decl is an entry in the constant pool.  */
5323   if (!DECL_P (exp))
5324     local_p = true;
5325   /* Static variables are always local.  */
5326   else if (! TREE_PUBLIC (exp))
5327     local_p = true;
5328   /* A variable is local if the user tells us so.  */
5329   else if (decl_visibility (exp) != VISIBILITY_DEFAULT)
5330     local_p = true;
5331   /* Otherwise, variables defined outside this object may not be local.  */
5332   else if (DECL_EXTERNAL (exp))
5333     local_p = false;
5334   /* Linkonce and weak data are never local.  */
5335   else if (DECL_ONE_ONLY (exp) || DECL_WEAK (exp))
5336     local_p = false;
5337   /* If PIC, then assume that any global name can be overridden by
5338      symbols resolved from other modules.  */
5339   else if (shlib)
5340     local_p = false;
5341   /* Uninitialized COMMON variable may be unified with symbols
5342      resolved from other modules.  */
5343   else if (DECL_COMMON (exp)
5344            && (DECL_INITIAL (exp) == NULL
5345                || DECL_INITIAL (exp) == error_mark_node))
5346     local_p = false;
5347   /* Otherwise we're left with initialized (or non-common) global data
5348      which is of necessity defined locally.  */
5349   else
5350     local_p = true;
5351
5352   return local_p;
5353 }
5354
5355 /* Determine whether or not a pointer mode is valid. Assume defaults
5356    of ptr_mode or Pmode - can be overridden.  */
5357 bool
5358 default_valid_pointer_mode (mode)
5359      enum machine_mode mode;
5360 {
5361   return (mode == ptr_mode || mode == Pmode);
5362 }
5363
5364 /* Default function to output code that will globalize a label.  A
5365    target must define GLOBAL_ASM_OP or provide it's own function to
5366    globalize a label.  */
5367 #ifdef GLOBAL_ASM_OP
5368 void
5369 default_globalize_label (stream, name)
5370      FILE * stream;
5371      const char *name;
5372 {
5373   fputs (GLOBAL_ASM_OP, stream);
5374   assemble_name (stream, name);
5375   putc ('\n', stream);
5376 }
5377 #endif /* GLOBAL_ASM_OP */
5378   
5379 /* This is how to output an internal numbered label where PREFIX is
5380    the class of label and LABELNO is the number within the class.  */
5381
5382 void
5383 default_internal_label (stream, prefix, labelno)
5384      FILE *stream;
5385      const char *prefix;
5386      unsigned long labelno;
5387 {
5388   char *const buf = alloca (40 + strlen (prefix));
5389   ASM_GENERATE_INTERNAL_LABEL (buf, prefix, labelno);
5390   ASM_OUTPUT_LABEL (stream, buf);
5391 }
5392
5393 /* This is the default behavior at the beginning of a file.  It's
5394    controlled by two other target-hook toggles.  */
5395 void
5396 default_file_start ()
5397 {
5398   if (targetm.file_start_app_off && !flag_verbose_asm)
5399     fputs (ASM_APP_OFF, asm_out_file);
5400
5401   if (targetm.file_start_file_directive)
5402     output_file_directive (asm_out_file, main_input_filename);
5403 }
5404
5405 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
5406    which emits a special section directive used to indicate whether or
5407    not this object file needs an executable stack.  This is primarily
5408    a GNU extension to ELF but could be used on other targets.  */
5409 void
5410 file_end_indicate_exec_stack ()
5411 {
5412   unsigned int flags = SECTION_DEBUG;
5413   if (trampolines_created)
5414     flags |= SECTION_CODE;
5415
5416   named_section_flags (".note.GNU-stack", flags);
5417 }
5418
5419 #include "gt-varasm.h"