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