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